mirror of
https://github.com/inotia00/revanced-patches.git
synced 2025-05-23 18:37:14 +02:00
feat(YouTube Music): add Visual preferences icons for YouTube Music
patch https://github.com/inotia00/ReVanced_Extended/issues/2216
This commit is contained in:
parent
0f0a48b1d4
commit
8f5be6fd22
@ -79,7 +79,7 @@ object CustomBrandingIconPatch : BaseResourcePatch(
|
||||
private val splashIconResourceGroups =
|
||||
largeDrawableDirectories.getResourceGroup(splashIconResourceFileNames)
|
||||
|
||||
private val AppIcon = stringPatchOption(
|
||||
val AppIcon = stringPatchOption(
|
||||
key = "AppIcon",
|
||||
default = DEFAULT_ICON,
|
||||
values = availableIcon,
|
||||
|
@ -0,0 +1,147 @@
|
||||
package app.revanced.patches.music.layout.visual
|
||||
|
||||
import app.revanced.patcher.data.ResourceContext
|
||||
import app.revanced.patcher.patch.options.PatchOption.PatchExtensions.stringPatchOption
|
||||
import app.revanced.patches.music.layout.branding.icon.CustomBrandingIconPatch
|
||||
import app.revanced.patches.music.utils.compatibility.Constants.COMPATIBLE_PACKAGE
|
||||
import app.revanced.patches.music.utils.settings.ResourceUtils.SETTINGS_HEADER_PATH
|
||||
import app.revanced.patches.music.utils.settings.SettingsPatch
|
||||
import app.revanced.util.ResourceGroup
|
||||
import app.revanced.util.copyResources
|
||||
import app.revanced.util.doRecursively
|
||||
import app.revanced.util.patch.BaseResourcePatch
|
||||
import app.revanced.util.underBarOrThrow
|
||||
import org.w3c.dom.Element
|
||||
import java.io.Closeable
|
||||
|
||||
@Suppress("DEPRECATION", "unused")
|
||||
object VisualPreferencesIconsPatch : BaseResourcePatch(
|
||||
name = "Visual preferences icons for YouTube Music",
|
||||
description = "Adds icons to specific preferences in the settings.",
|
||||
dependencies = setOf(SettingsPatch::class),
|
||||
compatiblePackages = COMPATIBLE_PACKAGE
|
||||
), Closeable {
|
||||
private const val DEFAULT_ICON = "extension"
|
||||
|
||||
private val RVXSettingsMenuIcon = stringPatchOption(
|
||||
key = "RVXSettingsMenuIcon",
|
||||
default = DEFAULT_ICON,
|
||||
values = mapOf(
|
||||
"Custom branding icon" to "custom_branding_icon",
|
||||
"Extension" to DEFAULT_ICON,
|
||||
"Gear" to "gear",
|
||||
"ReVanced" to "revanced",
|
||||
"ReVanced Colored" to "revanced_colored",
|
||||
),
|
||||
title = "RVX settings menu icon",
|
||||
description = "The icon for the RVX settings menu.",
|
||||
required = true
|
||||
)
|
||||
|
||||
private lateinit var context: ResourceContext
|
||||
|
||||
override fun execute(context: ResourceContext) {
|
||||
this.context = context
|
||||
|
||||
// Check patch options first.
|
||||
val selectedIconType = RVXSettingsMenuIcon
|
||||
.underBarOrThrow()
|
||||
|
||||
val customBrandingIconType = CustomBrandingIconPatch.AppIcon
|
||||
.underBarOrThrow()
|
||||
|
||||
// region copy shared resources.
|
||||
|
||||
arrayOf(
|
||||
ResourceGroup(
|
||||
"drawable",
|
||||
*preferenceKey.map { it + "_icon.xml" }.toTypedArray()
|
||||
),
|
||||
).forEach { resourceGroup ->
|
||||
context.copyResources("music/visual/shared", resourceGroup)
|
||||
}
|
||||
|
||||
// endregion.
|
||||
|
||||
// region copy RVX settings menu icon.
|
||||
|
||||
val iconPath = when (selectedIconType) {
|
||||
"custom_branding_icon" -> "music/branding/$customBrandingIconType/settings"
|
||||
else -> "music/visual/icons/$selectedIconType"
|
||||
}
|
||||
val resourceGroup = ResourceGroup(
|
||||
"drawable",
|
||||
"revanced_extended_settings_icon.xml"
|
||||
)
|
||||
|
||||
try {
|
||||
context.copyResources(iconPath, resourceGroup)
|
||||
} catch (_: Exception) {
|
||||
// Ignore if resource copy fails
|
||||
}
|
||||
|
||||
// endregion.
|
||||
}
|
||||
|
||||
override fun close() {
|
||||
|
||||
// region set visual preferences icon.
|
||||
|
||||
context.xmlEditor[SETTINGS_HEADER_PATH].use { editor ->
|
||||
editor.file.doRecursively loop@{ node ->
|
||||
if (node !is Element) return@loop
|
||||
|
||||
node.getAttributeNode("android:key")
|
||||
?.textContent
|
||||
?.removePrefix("@string/")
|
||||
?.let { title ->
|
||||
val drawableName = when (title) {
|
||||
in preferenceKey -> title + "_icon"
|
||||
else -> null
|
||||
}
|
||||
|
||||
drawableName?.let {
|
||||
node.setAttribute("android:icon", "@drawable/$it")
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// endregion.
|
||||
|
||||
}
|
||||
|
||||
// region preference key and icon.
|
||||
|
||||
private val preferenceKey = setOf(
|
||||
// YouTube settings.
|
||||
"pref_key_parent_tools",
|
||||
"settings_header_general",
|
||||
"settings_header_playback",
|
||||
"settings_header_data_saving",
|
||||
"settings_header_downloads_and_storage",
|
||||
"settings_header_notifications",
|
||||
"settings_header_privacy_and_location",
|
||||
"settings_header_recommendations",
|
||||
"settings_header_paid_memberships",
|
||||
"settings_header_about_youtube_music",
|
||||
|
||||
// RVX settings.
|
||||
"revanced_extended_settings",
|
||||
|
||||
"revanced_preference_screen_account",
|
||||
"revanced_preference_screen_action_bar",
|
||||
"revanced_preference_screen_ads",
|
||||
"revanced_preference_screen_flyout",
|
||||
"revanced_preference_screen_general",
|
||||
"revanced_preference_screen_navigation",
|
||||
"revanced_preference_screen_player",
|
||||
"revanced_preference_screen_video",
|
||||
"revanced_preference_screen_ryd",
|
||||
"revanced_preference_screen_sb",
|
||||
"revanced_preference_screen_misc",
|
||||
)
|
||||
|
||||
// endregion.
|
||||
|
||||
}
|
@ -104,6 +104,22 @@ object ResourceUtils {
|
||||
}
|
||||
}
|
||||
|
||||
fun ResourceContext.setPreferenceScreenIcon(
|
||||
category: String
|
||||
) {
|
||||
this.xmlEditor[SETTINGS_HEADER_PATH].use { editor ->
|
||||
editor.file.doRecursively loop@{
|
||||
if (it !is Element) return@loop
|
||||
|
||||
it.getAttributeNode("android:key")?.let { attribute ->
|
||||
if (attribute.textContent == "revanced_preference_screen_$category") {
|
||||
it.cloneNodes(it.parentNode)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fun ResourceContext.sortPreferenceCategory(
|
||||
category: String
|
||||
) {
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,31 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:name="vector"
|
||||
android:width="48.0dp"
|
||||
android:height="48.0dp"
|
||||
android:viewportWidth="192.0"
|
||||
android:viewportHeight="192.0">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="60"
|
||||
android:pivotY="96">
|
||||
<path
|
||||
android:name="red_circle"
|
||||
android:pathData="M 177.216 96 C 177.216 140.854 140.854 177.216 96 177.216 C 51.146 177.216 14.784 140.854 14.784 96 C 14.784 51.146 51.146 14.784 96 14.784 C 140.854 14.784 177.216 51.146 177.216 96 Z"
|
||||
android:fillColor="#ff0000"
|
||||
android:strokeColor="#00000000"
|
||||
android:strokeWidth="1"/>
|
||||
<path
|
||||
android:name="white_circle"
|
||||
android:pathData="M 145.863 96 C 145.863 123.539 123.539 145.863 96 145.863 C 68.461 145.863 46.137 123.539 46.137 96 C 46.137 68.461 68.461 46.137 96 46.137 C 123.539 46.137 145.863 68.461 145.863 96 Z"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#ffffff"
|
||||
android:strokeWidth="5"/>
|
||||
<path
|
||||
android:name="triangle"
|
||||
android:pathData="M 82.986 100.056 C 82.984 104.411 82.987 113.362 82.986 117.747 L 119.859 95.055 L 82.986 74.254 L 82.986 100.056 Z"
|
||||
android:fillColor="#ffffff"
|
||||
android:strokeWidth="1"/>
|
||||
</group>
|
||||
</vector>
|
Binary file not shown.
After Width: | Height: | Size: 100 B |
18
src/main/resources/music/settings/icons/drawable/icon.xml
Normal file
18
src/main/resources/music/settings/icons/drawable/icon.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:name="vector"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="300"
|
||||
android:pivotY="480">
|
||||
<path
|
||||
android:name="path"
|
||||
android:pathData=""
|
||||
android:fillColor="@android:color/white" />
|
||||
</group>
|
||||
</vector>
|
@ -0,0 +1,18 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:name="vector"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="300"
|
||||
android:pivotY="480">
|
||||
<path
|
||||
android:name="path"
|
||||
android:pathData="M 359.846 800 L 190.769 800 Q 178.481 800 169.24 790.76 Q 160 781.519 160 769.231 L 160 600.154 Q 192.461 588.231 213.192 560.654 Q 233.923 533.077 233.923 498.538 Q 233.923 464 213.192 436.808 Q 192.461 409.615 160 396.923 L 160 227.846 Q 160 215.558 169.24 206.317 Q 178.481 197.077 190.769 197.077 L 358.538 197.077 Q 374.154 164 401.115 144.307 Q 428.077 124.615 462.308 124.615 Q 496.539 124.615 523.5 144.307 Q 550.462 164 566.077 197.077 L 732.154 197.077 Q 744.442 197.077 753.683 206.317 Q 762.923 215.558 762.923 227.846 L 762.923 393.923 Q 796 409.538 814.962 437.346 Q 833.923 465.154 833.923 499.385 Q 833.923 533.615 814.962 559.846 Q 796 586.077 762.923 601.692 L 762.923 769.231 Q 762.923 781.519 753.683 790.76 Q 744.442 800 732.154 800 L 563.077 800 Q 549.615 765.077 521.627 745.577 Q 493.638 726.077 461.281 726.077 Q 428.923 726.077 400.731 745.577 Q 372.538 765.077 359.846 800 Z M 190.769 769.231 L 343.846 769.231 Q 361.154 732.077 393.102 713.692 Q 425.05 695.308 461.487 695.308 Q 497.923 695.308 529.846 713.692 Q 561.769 732.077 579.077 769.231 L 732.154 769.231 L 732.154 575.769 L 734.077 575.769 Q 768.693 571.154 785.923 548.923 Q 803.154 526.692 803.154 499.769 Q 803.154 472.846 785.923 450.231 Q 768.693 427.616 734.077 423 L 732.154 423 L 732.154 227.846 L 538.692 227.846 L 538.692 224.461 Q 534.077 189.846 511.846 172.615 Q 489.615 155.384 462.308 155.384 Q 435 155.384 412.769 172.615 Q 390.539 189.846 385.923 224.461 L 385.923 227.846 L 190.769 227.846 L 190.769 378.615 Q 225.842 394.893 245.267 427.694 Q 264.692 460.494 264.692 498.761 Q 264.692 536.869 245.192 569.819 Q 225.692 602.769 190.769 618.462 L 190.769 769.231 Z M 462.692 499.769 Z"
|
||||
android:fillColor="@android:color/white" />
|
||||
</group>
|
||||
</vector>
|
@ -0,0 +1,18 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:name="vector"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="300"
|
||||
android:pivotY="480">
|
||||
<path
|
||||
android:name="path"
|
||||
android:pathData="M 413.384 840 L 397.231 725.539 Q 375.154 718.539 348.769 703.846 Q 322.385 689.154 304.077 672.308 L 198.384 720.154 L 131.538 601.538 L 225.692 531.769 Q 223.692 519.692 222.423 506.269 Q 221.154 492.846 221.154 480.769 Q 221.154 469.462 222.423 456.038 Q 223.692 442.615 225.692 428.231 L 131.538 357.692 L 198.384 241.384 L 303.308 287.692 Q 323.923 270.846 348.769 256.538 Q 373.615 242.231 396.461 235.461 L 413.384 120 L 546.616 120 L 562.769 235.231 Q 587.923 244.538 610.577 257.192 Q 633.231 269.846 653.615 287.692 L 762.385 241.384 L 828.462 357.692 L 731.231 429.308 Q 734.769 443.154 735.654 455.808 Q 736.539 468.462 736.539 480 Q 736.539 490.769 735.269 503.308 Q 734 515.846 731.231 531.231 L 827.693 601.538 L 760.846 720.154 L 653.615 671.539 Q 632.231 689.923 609.423 703.962 Q 586.616 718 562.769 724.769 L 546.616 840 L 413.384 840 Z M 438.308 809.231 L 520.923 809.231 L 535.692 698 Q 566.385 690 592.039 675.308 Q 617.692 660.615 644 635.846 L 746.923 680.308 L 786.923 610.615 L 696 543.154 Q 700 524.615 702.115 509.654 Q 704.231 494.692 704.231 480 Q 704.231 463.769 702.231 449.577 Q 700.231 435.385 696 418.385 L 788.462 349.385 L 748.462 279.692 L 643.231 324.154 Q 624.077 302.769 593.539 284.115 Q 563 265.461 534.923 262 L 521.692 150.769 L 438.308 150.769 L 425.846 261.231 Q 393.385 267.461 366.961 282.538 Q 340.538 297.615 315.231 323.385 L 211.538 279.692 L 171.538 349.385 L 262.461 416.077 Q 257.692 430.769 255.577 446.885 Q 253.461 463 253.461 480.769 Q 253.461 497 255.577 512.346 Q 257.692 527.692 261.692 543.154 L 171.538 610.615 L 211.538 680.308 L 314.461 636.615 Q 338.461 661.385 365.269 676.077 Q 392.077 690.769 425.077 698.769 L 438.308 809.231 Z M 477.692 575.385 Q 517.846 575.385 545.462 547.769 Q 573.077 520.154 573.077 480 Q 573.077 439.846 545.462 412.231 Q 517.846 384.615 477.692 384.615 Q 438.308 384.615 410.308 412.231 Q 382.307 439.846 382.307 480 Q 382.307 520.154 410.308 547.769 Q 438.308 575.385 477.692 575.385 Z M 480 480 Z"
|
||||
android:fillColor="@android:color/white" />
|
||||
</group>
|
||||
</vector>
|
@ -0,0 +1,18 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:name="vector"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="300"
|
||||
android:pivotY="480">
|
||||
<path
|
||||
android:name="path"
|
||||
android:pathData="M 508.307 801.447 L 508.427 801.359 L 508.558 801.282 C 508.653 801.227 508.807 801.137 509.101 800.965 C 509.188 800.915 509.279 800.863 509.352 800.82 L 508.982 801.036 L 508.919 801.306 L 508.993 801.141 C 509.012 801.096 509.033 801.048 509.056 800.994 L 509.887 800.507 L 509.566 800.695 L 509.307 800.817 L 510.104 798.616 C 510.405 797.931 510.782 797.068 511.183 796.156 C 512.732 792.638 515.009 787.461 517.929 780.829 C 523.767 767.566 532.17 748.481 542.422 725.192 C 562.927 678.615 590.831 615.23 620.423 547.996 C 679.606 413.526 745.535 263.666 772.515 202.088 L 776.867 192.102 L 775.709 190.797 C 775.625 190.704 775.555 190.624 775.466 190.527 L 775.148 190.146 L 774.956 189.903 L 774.749 189.633 L 774.705 189.573 L 774.624 189.467 L 774.294 188.88 L 774.216 188.733 C 774.12 188.495 774.049 188.341 774.044 188.331 C 774.029 188.293 773.962 188.128 773.923 188.029 L 773.542 187.058 L 771.399 186.164 L 771.091 186.128 C 770.505 186.07 769.801 186.059 768.528 186.059 L 739.146 186.059 L 738.666 188.201 L 735.756 188.201 L 735.103 189.69 C 703.414 261.868 561.506 585.113 512.529 696.668 C 509.902 701.613 504.577 708.36 500.119 711.712 L 500.026 711.777 C 495.482 714.407 486.838 717.746 480.568 717.746 C 475.413 717.746 471.437 716.618 467.748 715.113 L 466.554 714.623 L 464.164 713.645 L 465.311 712.109 L 461.408 709.167 L 459.969 710.823 L 457.696 708.669 C 454.481 705.617 451.473 702.104 449.174 697.841 C 399.883 585.575 254.436 254.401 225.082 187.553 L 224.791 186.896 L 224.427 186.067 C 214.928 186.185 192.776 187.468 183.133 188.018 L 186.76 197.869 L 187.185 198.84 C 241.505 322.819 414.178 716.902 449.698 797.973 L 449.736 798.062 L 449.815 798.241 L 450.025 798.972 L 450.064 799.121 L 450.084 799.205 L 450.082 799.204 L 449.978 798.888 L 449.686 798.888 L 450.087 799.218 L 450.165 799.549 L 450.087 799.218 L 452.77 801.428 L 453.358 802.359 L 454.773 802.319 C 455.125 802.309 455.597 802.295 456.294 802.295 L 504.843 802.295 C 505.411 802.295 505.878 802.303 506.283 802.309 L 506.672 802.315 L 507.147 802.322 L 508.216 801.513 L 508.307 801.447 Z M 448.298 800.346 L 447.562 797.244 L 450.084 799.206 L 450.244 799.885 L 448.298 800.346 Z M 509.803 800.561 C 510.002 800.5 510.546 800.417 510.89 800.395 L 511.151 800.378 L 511.352 800.476 C 511.569 800.581 511.982 800.863 512.178 801.04 L 512.328 801.174 L 512.358 801.244 L 512.125 801.175 L 511.553 803.091 L 512.398 803.343 C 512.344 803.451 512.295 803.539 512.261 803.587 C 512.165 803.702 512.01 803.854 511.963 803.895 C 511.914 803.934 511.842 803.987 511.833 803.994 C 511.787 804.025 511.733 804.059 511.725 804.063 L 510.9 804.56 L 509.553 802.495 L 510.268 802.708 L 510.677 802.368 L 509.39 800.837 L 507.982 802.027 L 507.523 801.89 L 509.511 800.727 C 509.512 800.727 509.512 800.726 509.512 800.726 L 509.76 800.581 L 509.803 800.561 Z M 445.023 795.176 L 450.085 799.212 L 450.551 801.194 L 446.659 802.112 L 445.023 795.176 Z M 512.961 493.441 C 506.401 502.452 492.62 511.449 480.566 511.449 C 468.45 511.449 453.787 501.023 447.272 492.018 L 447.244 491.978 L 447.218 491.934 C 409.076 425.869 321.462 274.04 283.371 208.059 L 283.271 207.868 L 283.245 207.809 C 278.676 197.319 279.008 181.256 283.631 170.951 L 283.87 170.456 L 283.91 170.397 L 283.955 170.33 L 283.998 170.268 L 284.203 169.966 L 284.321 169.795 C 290.806 160.687 304.864 151.503 316.918 151.503 L 644.217 151.503 C 656.343 151.503 670.748 161.532 677.251 170.525 L 677.34 170.648 L 677.367 170.694 L 677.395 170.743 L 677.431 170.806 L 677.693 171.276 L 677.757 171.405 L 677.815 171.527 C 682.418 181.952 681.903 198.457 677.366 208.81 L 677.278 208.985 L 677.24 209.052 C 639.163 275.001 551.167 427.279 513.017 493.355 L 512.991 493.401 L 512.961 493.441 Z M 511.164 800.888 L 508.923 808.498 L 508.923 800.219 L 511.164 800.888 Z"
|
||||
android:fillColor="@android:color/white" />
|
||||
</group>
|
||||
</vector>
|
File diff suppressed because one or more lines are too long
@ -0,0 +1,18 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:name="vector"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="300"
|
||||
android:pivotY="480">
|
||||
<path
|
||||
android:name="path"
|
||||
android:pathData="M 359.846 800 L 190.769 800 Q 178.481 800 169.24 790.76 Q 160 781.519 160 769.231 L 160 600.154 Q 192.461 588.231 213.192 560.654 Q 233.923 533.077 233.923 498.538 Q 233.923 464 213.192 436.808 Q 192.461 409.615 160 396.923 L 160 227.846 Q 160 215.558 169.24 206.317 Q 178.481 197.077 190.769 197.077 L 358.538 197.077 Q 374.154 164 401.115 144.307 Q 428.077 124.615 462.308 124.615 Q 496.539 124.615 523.5 144.307 Q 550.462 164 566.077 197.077 L 732.154 197.077 Q 744.442 197.077 753.683 206.317 Q 762.923 215.558 762.923 227.846 L 762.923 393.923 Q 796 409.538 814.962 437.346 Q 833.923 465.154 833.923 499.385 Q 833.923 533.615 814.962 559.846 Q 796 586.077 762.923 601.692 L 762.923 769.231 Q 762.923 781.519 753.683 790.76 Q 744.442 800 732.154 800 L 563.077 800 Q 549.615 765.077 521.627 745.577 Q 493.638 726.077 461.281 726.077 Q 428.923 726.077 400.731 745.577 Q 372.538 765.077 359.846 800 Z M 190.769 769.231 L 343.846 769.231 Q 361.154 732.077 393.102 713.692 Q 425.05 695.308 461.487 695.308 Q 497.923 695.308 529.846 713.692 Q 561.769 732.077 579.077 769.231 L 732.154 769.231 L 732.154 575.769 L 734.077 575.769 Q 768.693 571.154 785.923 548.923 Q 803.154 526.692 803.154 499.769 Q 803.154 472.846 785.923 450.231 Q 768.693 427.616 734.077 423 L 732.154 423 L 732.154 227.846 L 538.692 227.846 L 538.692 224.461 Q 534.077 189.846 511.846 172.615 Q 489.615 155.384 462.308 155.384 Q 435 155.384 412.769 172.615 Q 390.539 189.846 385.923 224.461 L 385.923 227.846 L 190.769 227.846 L 190.769 378.615 Q 225.842 394.893 245.267 427.694 Q 264.692 460.494 264.692 498.761 Q 264.692 536.869 245.192 569.819 Q 225.692 602.769 190.769 618.462 L 190.769 769.231 Z M 462.692 499.769 Z"
|
||||
android:fillColor="@android:color/white" />
|
||||
</group>
|
||||
</vector>
|
@ -0,0 +1,18 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:name="vector"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="300"
|
||||
android:pivotY="480">
|
||||
<path
|
||||
android:name="path"
|
||||
android:pathData="M 413.384 840 L 397.231 725.539 Q 375.154 718.539 348.769 703.846 Q 322.385 689.154 304.077 672.308 L 198.384 720.154 L 131.538 601.538 L 225.692 531.769 Q 223.692 519.692 222.423 506.269 Q 221.154 492.846 221.154 480.769 Q 221.154 469.462 222.423 456.038 Q 223.692 442.615 225.692 428.231 L 131.538 357.692 L 198.384 241.384 L 303.308 287.692 Q 323.923 270.846 348.769 256.538 Q 373.615 242.231 396.461 235.461 L 413.384 120 L 546.616 120 L 562.769 235.231 Q 587.923 244.538 610.577 257.192 Q 633.231 269.846 653.615 287.692 L 762.385 241.384 L 828.462 357.692 L 731.231 429.308 Q 734.769 443.154 735.654 455.808 Q 736.539 468.462 736.539 480 Q 736.539 490.769 735.269 503.308 Q 734 515.846 731.231 531.231 L 827.693 601.538 L 760.846 720.154 L 653.615 671.539 Q 632.231 689.923 609.423 703.962 Q 586.616 718 562.769 724.769 L 546.616 840 L 413.384 840 Z M 438.308 809.231 L 520.923 809.231 L 535.692 698 Q 566.385 690 592.039 675.308 Q 617.692 660.615 644 635.846 L 746.923 680.308 L 786.923 610.615 L 696 543.154 Q 700 524.615 702.115 509.654 Q 704.231 494.692 704.231 480 Q 704.231 463.769 702.231 449.577 Q 700.231 435.385 696 418.385 L 788.462 349.385 L 748.462 279.692 L 643.231 324.154 Q 624.077 302.769 593.539 284.115 Q 563 265.461 534.923 262 L 521.692 150.769 L 438.308 150.769 L 425.846 261.231 Q 393.385 267.461 366.961 282.538 Q 340.538 297.615 315.231 323.385 L 211.538 279.692 L 171.538 349.385 L 262.461 416.077 Q 257.692 430.769 255.577 446.885 Q 253.461 463 253.461 480.769 Q 253.461 497 255.577 512.346 Q 257.692 527.692 261.692 543.154 L 171.538 610.615 L 211.538 680.308 L 314.461 636.615 Q 338.461 661.385 365.269 676.077 Q 392.077 690.769 425.077 698.769 L 438.308 809.231 Z M 477.692 575.385 Q 517.846 575.385 545.462 547.769 Q 573.077 520.154 573.077 480 Q 573.077 439.846 545.462 412.231 Q 517.846 384.615 477.692 384.615 Q 438.308 384.615 410.308 412.231 Q 382.307 439.846 382.307 480 Q 382.307 520.154 410.308 547.769 Q 438.308 575.385 477.692 575.385 Z M 480 480 Z"
|
||||
android:fillColor="@android:color/white" />
|
||||
</group>
|
||||
</vector>
|
@ -0,0 +1,18 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:name="vector"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="300"
|
||||
android:pivotY="480">
|
||||
<path
|
||||
android:name="path"
|
||||
android:pathData="M 508.307 801.447 L 508.427 801.359 L 508.558 801.282 C 508.653 801.227 508.807 801.137 509.101 800.965 C 509.188 800.915 509.279 800.863 509.352 800.82 L 508.982 801.036 L 508.919 801.306 L 508.993 801.141 C 509.012 801.096 509.033 801.048 509.056 800.994 L 509.887 800.507 L 509.566 800.695 L 509.307 800.817 L 510.104 798.616 C 510.405 797.931 510.782 797.068 511.183 796.156 C 512.732 792.638 515.009 787.461 517.929 780.829 C 523.767 767.566 532.17 748.481 542.422 725.192 C 562.927 678.615 590.831 615.23 620.423 547.996 C 679.606 413.526 745.535 263.666 772.515 202.088 L 776.867 192.102 L 775.709 190.797 C 775.625 190.704 775.555 190.624 775.466 190.527 L 775.148 190.146 L 774.956 189.903 L 774.749 189.633 L 774.705 189.573 L 774.624 189.467 L 774.294 188.88 L 774.216 188.733 C 774.12 188.495 774.049 188.341 774.044 188.331 C 774.029 188.293 773.962 188.128 773.923 188.029 L 773.542 187.058 L 771.399 186.164 L 771.091 186.128 C 770.505 186.07 769.801 186.059 768.528 186.059 L 739.146 186.059 L 738.666 188.201 L 735.756 188.201 L 735.103 189.69 C 703.414 261.868 561.506 585.113 512.529 696.668 C 509.902 701.613 504.577 708.36 500.119 711.712 L 500.026 711.777 C 495.482 714.407 486.838 717.746 480.568 717.746 C 475.413 717.746 471.437 716.618 467.748 715.113 L 466.554 714.623 L 464.164 713.645 L 465.311 712.109 L 461.408 709.167 L 459.969 710.823 L 457.696 708.669 C 454.481 705.617 451.473 702.104 449.174 697.841 C 399.883 585.575 254.436 254.401 225.082 187.553 L 224.791 186.896 L 224.427 186.067 C 214.928 186.185 192.776 187.468 183.133 188.018 L 186.76 197.869 L 187.185 198.84 C 241.505 322.819 414.178 716.902 449.698 797.973 L 449.736 798.062 L 449.815 798.241 L 450.025 798.972 L 450.064 799.121 L 450.084 799.205 L 450.082 799.204 L 449.978 798.888 L 449.686 798.888 L 450.087 799.218 L 450.165 799.549 L 450.087 799.218 L 452.77 801.428 L 453.358 802.359 L 454.773 802.319 C 455.125 802.309 455.597 802.295 456.294 802.295 L 504.843 802.295 C 505.411 802.295 505.878 802.303 506.283 802.309 L 506.672 802.315 L 507.147 802.322 L 508.216 801.513 L 508.307 801.447 Z M 448.298 800.346 L 447.562 797.244 L 450.084 799.206 L 450.244 799.885 L 448.298 800.346 Z M 509.803 800.561 C 510.002 800.5 510.546 800.417 510.89 800.395 L 511.151 800.378 L 511.352 800.476 C 511.569 800.581 511.982 800.863 512.178 801.04 L 512.328 801.174 L 512.358 801.244 L 512.125 801.175 L 511.553 803.091 L 512.398 803.343 C 512.344 803.451 512.295 803.539 512.261 803.587 C 512.165 803.702 512.01 803.854 511.963 803.895 C 511.914 803.934 511.842 803.987 511.833 803.994 C 511.787 804.025 511.733 804.059 511.725 804.063 L 510.9 804.56 L 509.553 802.495 L 510.268 802.708 L 510.677 802.368 L 509.39 800.837 L 507.982 802.027 L 507.523 801.89 L 509.511 800.727 C 509.512 800.727 509.512 800.726 509.512 800.726 L 509.76 800.581 L 509.803 800.561 Z M 445.023 795.176 L 450.085 799.212 L 450.551 801.194 L 446.659 802.112 L 445.023 795.176 Z M 512.961 493.441 C 506.401 502.452 492.62 511.449 480.566 511.449 C 468.45 511.449 453.787 501.023 447.272 492.018 L 447.244 491.978 L 447.218 491.934 C 409.076 425.869 321.462 274.04 283.371 208.059 L 283.271 207.868 L 283.245 207.809 C 278.676 197.319 279.008 181.256 283.631 170.951 L 283.87 170.456 L 283.91 170.397 L 283.955 170.33 L 283.998 170.268 L 284.203 169.966 L 284.321 169.795 C 290.806 160.687 304.864 151.503 316.918 151.503 L 644.217 151.503 C 656.343 151.503 670.748 161.532 677.251 170.525 L 677.34 170.648 L 677.367 170.694 L 677.395 170.743 L 677.431 170.806 L 677.693 171.276 L 677.757 171.405 L 677.815 171.527 C 682.418 181.952 681.903 198.457 677.366 208.81 L 677.278 208.985 L 677.24 209.052 C 639.163 275.001 551.167 427.279 513.017 493.355 L 512.991 493.401 L 512.961 493.441 Z M 511.164 800.888 L 508.923 808.498 L 508.923 800.219 L 511.164 800.888 Z"
|
||||
android:fillColor="@android:color/white" />
|
||||
</group>
|
||||
</vector>
|
File diff suppressed because one or more lines are too long
@ -0,0 +1,18 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:name="vector"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="300"
|
||||
android:pivotY="480">
|
||||
<path
|
||||
android:name="path"
|
||||
android:pathData="M 677.462 535.154 Q 645.289 535.154 622.645 512.509 Q 600 489.865 600 457.692 Q 600 425.52 622.768 402.875 Q 645.535 380.231 677.077 380.231 Q 709.634 380.231 731.894 402.999 Q 754.154 425.766 754.154 457.308 Q 754.154 489.865 731.894 512.509 Q 709.634 535.154 677.462 535.154 Z M 498.769 744.616 L 498.769 710.539 Q 498.769 691.462 507.333 677.169 Q 515.897 662.877 532.308 656 Q 566.333 640.077 602.359 632.231 Q 638.385 624.385 677.462 624.385 Q 714.98 624.385 751.067 632.115 Q 787.154 639.846 822.615 656 Q 838.192 662.923 846.789 677.192 Q 855.385 691.462 855.385 710.539 L 855.385 744.616 L 498.769 744.616 Z M 384.615 455.154 Q 335.115 455.154 302.173 422.212 Q 269.231 389.269 269.231 339.385 Q 269.231 289.5 302.173 256.942 Q 335.115 224.384 384.615 224.384 Q 434.116 224.384 467.058 256.942 Q 500 289.5 500 339.385 Q 500 389.269 467.058 422.212 Q 434.116 455.154 384.615 455.154 Z M 384.615 339.769 Z M 104.615 744.616 L 104.615 686.769 Q 104.615 660.817 118.923 639.062 Q 133.231 617.308 159.205 606.923 Q 216.538 580.769 271.851 567.308 Q 327.164 553.846 384.315 553.846 Q 407.385 553.846 427 554.923 Q 446.616 556 467.923 559.692 Q 461.327 565.904 454.731 573.269 Q 448.135 580.635 441.539 586.846 Q 428.539 586 414.308 585.308 Q 400.077 584.615 384.615 584.615 Q 331.042 584.615 278.79 595.346 Q 226.539 606.077 173.538 634 Q 158.769 641.769 147.077 655.616 Q 135.385 669.462 135.385 686.769 L 135.385 713.846 L 397.231 713.846 L 397.231 744.616 L 104.615 744.616 Z M 397.231 713.846 Z M 384.615 424.385 Q 420.539 424.385 444.885 400.038 Q 469.231 375.692 469.231 339.769 Q 469.231 303.846 444.885 279.5 Q 420.539 255.154 384.615 255.154 Q 348.692 255.154 324.346 279.5 Q 300 303.846 300 339.769 Q 300 375.692 324.346 400.038 Q 348.692 424.385 384.615 424.385 Z"
|
||||
android:fillColor="@android:color/white" />
|
||||
</group>
|
||||
</vector>
|
@ -0,0 +1,18 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:name="vector"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="300"
|
||||
android:pivotY="480">
|
||||
<path
|
||||
android:name="path"
|
||||
android:pathData="M 359.846 800 L 190.769 800 Q 178.481 800 169.24 790.76 Q 160 781.519 160 769.231 L 160 600.154 Q 192.461 588.231 213.192 560.654 Q 233.923 533.077 233.923 498.538 Q 233.923 464 213.192 436.808 Q 192.461 409.615 160 396.923 L 160 227.846 Q 160 215.558 169.24 206.317 Q 178.481 197.077 190.769 197.077 L 358.538 197.077 Q 374.154 164 401.115 144.307 Q 428.077 124.615 462.308 124.615 Q 496.539 124.615 523.5 144.307 Q 550.462 164 566.077 197.077 L 732.154 197.077 Q 744.442 197.077 753.683 206.317 Q 762.923 215.558 762.923 227.846 L 762.923 393.923 Q 796 409.538 814.962 437.346 Q 833.923 465.154 833.923 499.385 Q 833.923 533.615 814.962 559.846 Q 796 586.077 762.923 601.692 L 762.923 769.231 Q 762.923 781.519 753.683 790.76 Q 744.442 800 732.154 800 L 563.077 800 Q 549.615 765.077 521.627 745.577 Q 493.638 726.077 461.281 726.077 Q 428.923 726.077 400.731 745.577 Q 372.538 765.077 359.846 800 Z M 190.769 769.231 L 343.846 769.231 Q 361.154 732.077 393.102 713.692 Q 425.05 695.308 461.487 695.308 Q 497.923 695.308 529.846 713.692 Q 561.769 732.077 579.077 769.231 L 732.154 769.231 L 732.154 575.769 L 734.077 575.769 Q 768.693 571.154 785.923 548.923 Q 803.154 526.692 803.154 499.769 Q 803.154 472.846 785.923 450.231 Q 768.693 427.616 734.077 423 L 732.154 423 L 732.154 227.846 L 538.692 227.846 L 538.692 224.461 Q 534.077 189.846 511.846 172.615 Q 489.615 155.384 462.308 155.384 Q 435 155.384 412.769 172.615 Q 390.539 189.846 385.923 224.461 L 385.923 227.846 L 190.769 227.846 L 190.769 378.615 Q 225.842 394.893 245.267 427.694 Q 264.692 460.494 264.692 498.761 Q 264.692 536.869 245.192 569.819 Q 225.692 602.769 190.769 618.462 L 190.769 769.231 Z M 462.692 499.769 Z"
|
||||
android:fillColor="@android:color/white" />
|
||||
</group>
|
||||
</vector>
|
@ -0,0 +1,18 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:name="vector"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="300"
|
||||
android:pivotY="480">
|
||||
<path
|
||||
android:name="path"
|
||||
android:pathData="M 480 455.154 Q 430.5 455.154 397.558 422.212 Q 364.615 389.269 364.615 339.385 Q 364.615 289.5 397.558 256.942 Q 430.5 224.384 480 224.384 Q 529.5 224.384 562.443 256.942 Q 595.385 289.5 595.385 339.385 Q 595.385 389.269 562.443 422.212 Q 529.5 455.154 480 455.154 Z M 200 744.616 L 200 686.769 Q 200 660.308 215.154 639.462 Q 230.307 618.615 254.923 606.923 Q 314.231 580.769 369.938 567.308 Q 425.645 553.846 479.976 553.846 Q 534.308 553.846 589.923 567.423 Q 645.539 581 704.425 607.274 Q 729.872 618.771 744.936 639.54 Q 760 660.308 760 686.769 L 760 744.616 L 200 744.616 Z M 230.769 713.846 L 729.231 713.846 L 729.231 686.769 Q 729.231 671.539 718.962 657.423 Q 708.692 643.308 690.846 634 Q 636.846 607.615 585.241 596.115 Q 533.636 584.615 480 584.615 Q 426.364 584.615 374.144 596.115 Q 321.923 607.615 268.923 634 Q 251.077 643.308 240.923 657.423 Q 230.769 671.539 230.769 686.769 L 230.769 713.846 Z M 480 424.385 Q 515.923 424.385 540.269 400.038 Q 564.615 375.692 564.615 339.769 Q 564.615 303.846 540.269 279.5 Q 515.923 255.154 480 255.154 Q 444.077 255.154 419.731 279.5 Q 395.385 303.846 395.385 339.769 Q 395.385 375.692 419.731 400.038 Q 444.077 424.385 480 424.385 Z M 480 339.769 Z M 480 713.846 Z"
|
||||
android:fillColor="@android:color/white" />
|
||||
</group>
|
||||
</vector>
|
@ -0,0 +1,18 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:name="vector"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="300"
|
||||
android:pivotY="480">
|
||||
<path
|
||||
android:name="path"
|
||||
android:pathData="M 258.308 662.923 L 701.692 662.923 L 701.692 589.461 L 258.308 589.461 L 258.308 662.923 Z M 175.384 760 Q 152.327 760 136.163 743.837 Q 120 727.673 120 704.616 L 120 255.384 Q 120 232.327 136.163 216.163 Q 152.327 200 175.384 200 L 784.616 200 Q 807.673 200 823.837 216.163 Q 840 232.327 840 255.384 L 840 704.616 Q 840 727.673 823.837 743.837 Q 807.673 760 784.616 760 L 175.384 760 Z M 175.384 729.231 L 784.616 729.231 Q 793.846 729.231 801.539 721.539 Q 809.231 713.846 809.231 704.616 L 809.231 255.384 Q 809.231 246.154 801.539 238.461 Q 793.846 230.769 784.616 230.769 L 175.384 230.769 Q 166.154 230.769 158.461 238.461 Q 150.769 246.154 150.769 255.384 L 150.769 704.616 Q 150.769 713.846 158.461 721.539 Q 166.154 729.231 175.384 729.231 Z M 150.769 729.231 L 150.769 230.769 L 150.769 729.231 Z"
|
||||
android:fillColor="@android:color/white" />
|
||||
</group>
|
||||
</vector>
|
@ -0,0 +1,18 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:name="vector"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="300"
|
||||
android:pivotY="480">
|
||||
<path
|
||||
android:name="path"
|
||||
android:pathData="M 721.539 495.385 L 721.539 464.615 L 846.154 464.615 L 846.154 495.385 L 721.539 495.385 Z M 766.154 758.462 L 665.923 683.846 L 685 659.692 L 785.231 734.308 L 766.154 758.462 Z M 683.385 297 L 664.308 272.846 L 763.077 198.461 L 782.154 222.615 L 683.385 297 Z M 224.615 718.462 L 224.615 566.154 L 169.231 566.154 Q 146.788 566.154 130.317 549.683 Q 113.846 533.212 113.846 510.769 L 113.846 449.231 Q 113.846 426.788 130.317 410.317 Q 146.788 393.846 169.231 393.846 L 327.692 393.846 L 486.154 300 L 486.154 660 L 327.692 566.154 L 255.385 566.154 L 255.385 718.462 L 224.615 718.462 Z M 455.385 605.539 L 455.385 354.461 L 336 424.615 L 169.231 424.615 Q 160 424.615 152.308 432.308 Q 144.615 440 144.615 449.231 L 144.615 510.769 Q 144.615 520 152.308 527.692 Q 160 535.385 169.231 535.385 L 336 535.385 L 455.385 605.539 Z M 556.923 595.539 L 556.923 364.461 Q 577 383.077 589.269 413.346 Q 601.539 443.615 601.539 480 Q 601.539 516.385 589.269 546.654 Q 577 576.923 556.923 595.539 Z M 300 480 Z"
|
||||
android:fillColor="@android:color/white" />
|
||||
</group>
|
||||
</vector>
|
@ -0,0 +1,18 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:name="vector"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="300"
|
||||
android:pivotY="480">
|
||||
<path
|
||||
android:name="path"
|
||||
android:pathData="M 392.385 741.231 L 392.385 710.461 L 800 710.461 L 800 741.231 L 392.385 741.231 Z M 392.385 495.385 L 392.385 464.615 L 800 464.615 L 800 495.385 L 392.385 495.385 Z M 392.385 249.308 L 392.385 218.538 L 800 218.538 L 800 249.308 L 392.385 249.308 Z M 208.299 772.846 Q 188.209 772.846 174.22 759.063 Q 160.231 745.279 160.231 725.577 Q 160.231 705.875 174.13 691.976 Q 188.029 678.077 207.731 678.077 Q 227.433 678.077 241.216 692.451 Q 255 706.825 255 726.462 Q 255 745.273 241.282 759.06 Q 227.563 772.846 208.299 772.846 Z M 208.299 527 Q 188.209 527 174.22 512.92 Q 160.231 498.839 160.231 480 Q 160.231 461.161 174.377 447.08 Q 188.523 433 208.387 433 Q 227.427 433 241.213 447.08 Q 255 461.161 255 480 Q 255 498.839 241.282 512.92 Q 227.563 527 208.299 527 Z M 207.231 280.923 Q 188.391 280.923 174.311 266.843 Q 160.231 252.763 160.231 233.923 Q 160.231 215.084 174.311 201.003 Q 188.391 186.923 207.615 186.923 Q 226.839 186.923 240.92 201.003 Q 255 215.084 255 233.923 Q 255 252.763 240.968 266.843 Q 226.936 280.923 207.231 280.923 Z"
|
||||
android:fillColor="@android:color/white" />
|
||||
</group>
|
||||
</vector>
|
@ -0,0 +1,18 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:name="vector"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="300"
|
||||
android:pivotY="480">
|
||||
<path
|
||||
android:name="path"
|
||||
android:pathData="M 702.308 766.923 Q 652.877 766.923 618.746 732.793 Q 584.615 698.662 584.615 649.231 Q 584.615 599.8 618.746 565.669 Q 652.877 531.538 702.308 531.538 Q 751.739 531.538 785.869 565.669 Q 820 599.8 820 649.231 Q 820 698.662 785.869 732.793 Q 751.739 766.923 702.308 766.923 Z M 702.121 736.154 Q 738.769 736.154 764 711.11 Q 789.231 686.065 789.231 649.417 Q 789.231 612.769 764.187 587.539 Q 739.142 562.308 702.494 562.308 Q 665.846 562.308 640.615 587.352 Q 615.385 612.396 615.385 649.044 Q 615.385 685.692 640.429 710.923 Q 665.473 736.154 702.121 736.154 Z M 181.538 664.616 L 181.538 633.846 L 489.231 633.846 L 489.231 664.616 L 181.538 664.616 Z M 257.692 428.462 Q 208.261 428.462 174.131 394.331 Q 140 360.2 140 310.769 Q 140 261.338 174.131 227.207 Q 208.261 193.077 257.692 193.077 Q 307.123 193.077 341.254 227.207 Q 375.385 261.338 375.385 310.769 Q 375.385 360.2 341.254 394.331 Q 307.123 428.462 257.692 428.462 Z M 257.506 397.692 Q 294.154 397.692 319.385 372.648 Q 344.615 347.604 344.615 310.956 Q 344.615 274.308 319.571 249.077 Q 294.527 223.846 257.879 223.846 Q 221.231 223.846 196 248.89 Q 170.769 273.935 170.769 310.583 Q 170.769 347.231 195.813 372.461 Q 220.858 397.692 257.506 397.692 Z M 470.769 326.154 L 470.769 295.384 L 778.462 295.384 L 778.462 326.154 L 470.769 326.154 Z M 702.308 649.231 Z M 257.692 310.769 Z"
|
||||
android:fillColor="@android:color/white" />
|
||||
</group>
|
||||
</vector>
|
@ -0,0 +1,18 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:name="vector"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="300"
|
||||
android:pivotY="480">
|
||||
<path
|
||||
android:name="path"
|
||||
android:pathData="M 658.231 466.308 L 495.231 303.308 L 658.231 140.307 L 821.231 303.308 L 658.231 466.308 Z M 184.615 416.615 L 184.615 184.846 L 415.615 184.846 L 415.615 416.615 L 184.615 416.615 Z M 543.385 775.385 L 543.385 544.385 L 775.154 544.385 L 775.154 775.385 L 543.385 775.385 Z M 184.615 775.385 L 184.615 544.385 L 415.615 544.385 L 415.615 775.385 L 184.615 775.385 Z M 215.384 385.846 L 384.846 385.846 L 384.846 215.615 L 215.384 215.615 L 215.384 385.846 Z M 660.462 425.308 L 780.231 305.538 L 660.462 185 L 539.923 305.538 L 660.462 425.308 Z M 574.154 744.616 L 744.385 744.616 L 744.385 575.154 L 574.154 575.154 L 574.154 744.616 Z M 215.384 744.616 L 384.846 744.616 L 384.846 575.154 L 215.384 575.154 L 215.384 744.616 Z M 384.846 385.846 Z M 539.923 305.538 Z M 384.846 575.154 Z M 574.154 575.154 Z"
|
||||
android:fillColor="@android:color/white" />
|
||||
</group>
|
||||
</vector>
|
@ -0,0 +1,18 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:name="vector"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="300"
|
||||
android:pivotY="480">
|
||||
<path
|
||||
android:name="path"
|
||||
android:pathData="M 160 640 L 160 320 L 800 320 L 800 466.154 L 769.231 466.154 L 769.231 350.769 L 190.769 350.769 L 190.769 609.231 L 601.538 609.231 L 601.538 640 L 160 640 Z M 190.769 609.231 L 190.769 350.769 L 190.769 609.231 Z M 871.692 758.308 L 718.462 605.308 L 718.462 740 L 687.692 740 L 687.692 552.308 L 875.385 552.308 L 875.385 583.077 L 740.462 583.077 L 892.923 737.077 L 871.692 758.308 Z"
|
||||
android:fillColor="@android:color/white" />
|
||||
</group>
|
||||
</vector>
|
@ -0,0 +1,18 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:name="vector"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="300"
|
||||
android:pivotY="480">
|
||||
<path
|
||||
android:name="path"
|
||||
android:pathData="M 401.461 618.462 L 618.462 480 L 401.461 341.538 L 401.461 618.462 Z M 480.134 840 Q 405.692 840 340.34 811.661 Q 274.987 783.321 225.859 734.239 Q 176.732 685.157 148.366 619.866 Q 120 554.575 120 480.134 Q 120 405.461 148.339 339.724 Q 176.679 273.987 225.761 225.359 Q 274.843 176.732 340.134 148.366 Q 405.425 120 479.866 120 Q 554.539 120 620.276 148.339 Q 686.013 176.679 734.641 225.261 Q 783.268 273.843 811.634 339.518 Q 840 405.194 840 479.866 Q 840 554.308 811.661 619.66 Q 783.321 685.013 734.739 734.141 Q 686.157 783.268 620.482 811.634 Q 554.806 840 480.134 840 Z M 480 809.231 Q 617.385 809.231 713.308 713.192 Q 809.231 617.154 809.231 480 Q 809.231 342.615 713.308 246.692 Q 617.385 150.769 480 150.769 Q 342.846 150.769 246.808 246.692 Q 150.769 342.615 150.769 480 Q 150.769 617.154 246.808 713.192 Q 342.846 809.231 480 809.231 Z M 480 480 Z"
|
||||
android:fillColor="@android:color/white" />
|
||||
</group>
|
||||
</vector>
|
@ -0,0 +1,18 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:name="vector"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="300"
|
||||
android:pivotY="480">
|
||||
<path
|
||||
android:name="path"
|
||||
android:pathData="M 262.654 192.307 L 666 192.307 L 666 628.923 L 415.692 880 L 403.602 871.186 Q 398.384 866.308 395.384 859.231 Q 392.384 852.154 392.384 843.769 L 392.384 839.923 L 433.538 628.923 L 136.846 628.923 Q 115.461 628.923 98.461 611.923 Q 81.461 594.923 81.461 573.538 L 81.461 523.176 Q 81.461 517.615 81.115 511.269 Q 80.769 504.923 83 499.461 L 195.154 237.153 Q 202.494 218.211 222.441 205.259 Q 242.388 192.307 262.654 192.307 Z M 635.231 223.077 L 256.692 223.077 Q 248.231 223.077 239.385 227.692 Q 230.538 232.307 225.923 243.077 L 112.231 512.077 L 112.231 573.538 Q 112.231 583.538 119.154 590.846 Q 126.077 598.154 136.846 598.154 L 470.615 598.154 L 424.538 829.461 L 635.231 615.461 L 635.231 223.077 Z M 635.231 615.461 L 635.231 223.077 L 635.231 615.461 Z M 666 628.923 L 666 598.154 L 809 598.154 L 809 223.077 L 666 223.077 L 666 192.307 L 839.769 192.307 L 839.769 628.923 L 666 628.923 Z"
|
||||
android:fillColor="@android:color/white" />
|
||||
</group>
|
||||
</vector>
|
@ -0,0 +1,18 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:name="vector"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="300"
|
||||
android:pivotY="480">
|
||||
<path
|
||||
android:name="path"
|
||||
android:pathData="M 480 838.231 Q 359.231 801.693 279.615 690.346 Q 200 579 200 440.846 L 200 227.461 L 480 122.846 L 760 227.461 L 760 440.846 Q 760 579 680.385 690.346 Q 600.769 801.693 480 838.231 Z M 480 805.462 Q 588.846 770.539 659.039 668.5 Q 729.231 566.462 729.231 440.846 L 729.231 248.692 L 480 155.308 L 230.769 248.692 L 230.769 440.846 Q 230.769 566.462 300.961 668.5 Q 371.154 770.539 480 805.462 Z M 480 480.769 Z"
|
||||
android:fillColor="@android:color/white" />
|
||||
</group>
|
||||
</vector>
|
@ -0,0 +1,18 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:name="vector"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="300"
|
||||
android:pivotY="480">
|
||||
<path
|
||||
android:name="path"
|
||||
android:pathData="M 443.231 546.231 L 657.077 409.231 L 443.231 272.231 L 443.231 546.231 Z M 296.923 698.462 Q 273.865 698.462 257.702 682.298 Q 241.538 666.135 241.538 643.077 L 241.538 175.384 Q 241.538 152.327 257.702 136.163 Q 273.865 120 296.923 120 L 764.616 120 Q 787.673 120 803.837 136.163 Q 820 152.327 820 175.384 L 820 643.077 Q 820 666.135 803.837 682.298 Q 787.673 698.462 764.616 698.462 L 296.923 698.462 Z M 296.923 667.693 L 764.616 667.693 Q 773.846 667.693 781.539 660 Q 789.231 652.308 789.231 643.077 L 789.231 175.384 Q 789.231 166.154 781.539 158.461 Q 773.846 150.769 764.616 150.769 L 296.923 150.769 Q 287.692 150.769 280 158.461 Q 272.308 166.154 272.308 175.384 L 272.308 643.077 Q 272.308 652.308 280 660 Q 287.692 667.693 296.923 667.693 Z M 195.384 800 Q 172.327 800 156.163 783.837 Q 140 767.674 140 744.616 L 140 246.154 L 170.769 246.154 L 170.769 744.616 Q 170.769 753.847 178.461 761.539 Q 186.154 769.231 195.384 769.231 L 693.847 769.231 L 693.847 800 L 195.384 800 Z M 272.308 150.769 L 272.308 667.693 L 272.308 150.769 Z"
|
||||
android:fillColor="@android:color/white" />
|
||||
</group>
|
||||
</vector>
|
@ -0,0 +1,18 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:name="vector"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="300"
|
||||
android:pivotY="480">
|
||||
<path
|
||||
android:name="path"
|
||||
android:pathData="M 466.077 660 L 496.846 660 L 496.846 440 L 466.077 440 L 466.077 660 Z M 479.982 386 Q 489 386 495.231 380.069 Q 501.462 374.138 501.462 364.769 Q 501.462 355.319 495.248 349.198 Q 489.035 343.077 480.018 343.077 Q 470.231 343.077 464.385 349.198 Q 458.538 355.319 458.538 364.769 Q 458.538 374.138 464.752 380.069 Q 470.965 386 479.982 386 Z M 480.4 840 Q 405.224 840 340.106 811.661 Q 274.987 783.321 225.859 734.239 Q 176.732 685.157 148.366 620.026 Q 120 554.894 120 479.634 Q 120 405.143 148.339 339.565 Q 176.679 273.987 225.761 225.359 Q 274.843 176.732 339.974 148.366 Q 405.106 120 480.366 120 Q 554.857 120 620.435 148.339 Q 686.013 176.679 734.641 225.261 Q 783.268 273.843 811.634 339.518 Q 840 405.194 840 479.6 Q 840 554.776 811.661 619.894 Q 783.321 685.013 734.739 733.956 Q 686.157 782.9 620.482 811.45 Q 554.806 840 480.4 840 Z M 480.5 809.231 Q 617.385 809.231 713.308 713.192 Q 809.231 617.154 809.231 479.5 Q 809.231 342.615 713.495 246.692 Q 617.76 150.769 480 150.769 Q 342.846 150.769 246.808 246.505 Q 150.769 342.24 150.769 480 Q 150.769 617.154 246.808 713.192 Q 342.846 809.231 480.5 809.231 Z M 480 480 Z"
|
||||
android:fillColor="@android:color/white" />
|
||||
</group>
|
||||
</vector>
|
@ -0,0 +1,18 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:name="vector"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="300"
|
||||
android:pivotY="480">
|
||||
<path
|
||||
android:name="path"
|
||||
android:pathData="M 120 840 L 840 120 L 840 840 L 120 840 Z M 374.462 809.231 L 809.231 809.231 L 809.231 194 L 374.462 628.769 L 374.462 809.231 Z"
|
||||
android:fillColor="@android:color/white" />
|
||||
</group>
|
||||
</vector>
|
@ -0,0 +1,18 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:name="vector"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="300"
|
||||
android:pivotY="480">
|
||||
<path
|
||||
android:name="path"
|
||||
android:pathData="M 480 626.231 L 341.615 487.846 L 363.846 466.384 L 464.615 566.384 L 464.615 200 L 495.385 200 L 495.385 566.384 L 596.154 466.384 L 618.385 487.846 L 480 626.231 Z M 255.384 760 Q 232.327 760 216.163 743.837 Q 200 727.673 200 704.616 L 200 597 L 230.769 597 L 230.769 704.616 Q 230.769 713.846 238.461 721.539 Q 246.154 729.231 255.384 729.231 L 704.616 729.231 Q 713.846 729.231 721.539 721.539 Q 729.231 713.846 729.231 704.616 L 729.231 597 L 760 597 L 760 704.616 Q 760 727.673 743.837 743.837 Q 727.673 760 704.616 760 L 255.384 760 Z"
|
||||
android:fillColor="@android:color/white" />
|
||||
</group>
|
||||
</vector>
|
@ -0,0 +1,18 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:name="vector"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="300"
|
||||
android:pivotY="480">
|
||||
<path
|
||||
android:name="path"
|
||||
android:pathData="M 702.308 766.923 Q 652.877 766.923 618.746 732.793 Q 584.615 698.662 584.615 649.231 Q 584.615 599.8 618.746 565.669 Q 652.877 531.538 702.308 531.538 Q 751.739 531.538 785.869 565.669 Q 820 599.8 820 649.231 Q 820 698.662 785.869 732.793 Q 751.739 766.923 702.308 766.923 Z M 702.121 736.154 Q 738.769 736.154 764 711.11 Q 789.231 686.065 789.231 649.417 Q 789.231 612.769 764.187 587.539 Q 739.142 562.308 702.494 562.308 Q 665.846 562.308 640.615 587.352 Q 615.385 612.396 615.385 649.044 Q 615.385 685.692 640.429 710.923 Q 665.473 736.154 702.121 736.154 Z M 181.538 664.616 L 181.538 633.846 L 489.231 633.846 L 489.231 664.616 L 181.538 664.616 Z M 257.692 428.462 Q 208.261 428.462 174.131 394.331 Q 140 360.2 140 310.769 Q 140 261.338 174.131 227.207 Q 208.261 193.077 257.692 193.077 Q 307.123 193.077 341.254 227.207 Q 375.385 261.338 375.385 310.769 Q 375.385 360.2 341.254 394.331 Q 307.123 428.462 257.692 428.462 Z M 257.506 397.692 Q 294.154 397.692 319.385 372.648 Q 344.615 347.604 344.615 310.956 Q 344.615 274.308 319.571 249.077 Q 294.527 223.846 257.879 223.846 Q 221.231 223.846 196 248.89 Q 170.769 273.935 170.769 310.583 Q 170.769 347.231 195.813 372.461 Q 220.858 397.692 257.506 397.692 Z M 470.769 326.154 L 470.769 295.384 L 778.462 295.384 L 778.462 326.154 L 470.769 326.154 Z M 702.308 649.231 Z M 257.692 310.769 Z"
|
||||
android:fillColor="@android:color/white" />
|
||||
</group>
|
||||
</vector>
|
@ -0,0 +1,18 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:name="vector"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="300"
|
||||
android:pivotY="480">
|
||||
<path
|
||||
android:name="path"
|
||||
android:pathData="M 200 750.769 L 200 720 L 264.615 720 L 264.615 392.154 Q 264.615 313.673 313.731 252.875 Q 362.846 192.077 440 178.538 L 440 160 Q 440 143.333 451.64 131.666 Q 463.28 120 479.91 120 Q 496.539 120 508.269 131.666 Q 520 143.333 520 160 L 520 178.923 Q 597.154 192.077 646.269 252.875 Q 695.385 313.673 695.385 392.154 L 695.385 720 L 760 720 L 760 750.769 L 200 750.769 Z M 480 463.385 Z M 479.864 855.385 Q 453.154 855.385 434.269 836.404 Q 415.385 817.423 415.385 790.769 L 544.615 790.769 Q 544.615 817.615 525.595 836.5 Q 506.574 855.385 479.864 855.385 Z M 295.385 720 L 664.615 720 L 664.615 392.154 Q 664.615 315.615 610.577 261.577 Q 556.538 207.539 480 207.539 Q 403.462 207.539 349.423 261.577 Q 295.385 315.615 295.385 392.154 L 295.385 720 Z"
|
||||
android:fillColor="@android:color/white" />
|
||||
</group>
|
||||
</vector>
|
@ -0,0 +1,18 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:name="vector"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="300"
|
||||
android:pivotY="480">
|
||||
<path
|
||||
android:name="path"
|
||||
android:pathData="M 64.62 703.08 Q 54.9 703.08 47.45 695.63 Q 40 688.17 40 678.46 L 40 673.15 Q 40 638.43 78.04 615.37 Q 116.08 592.31 176.53 592.31 Q 184.85 592.31 195.31 593.19 Q 205.77 594.08 216.77 595.73 Q 211.08 610.77 207.85 625.51 Q 204.62 640.25 204.62 655 L 204.62 703.08 L 64.62 703.08 Z M 308.01 703.08 Q 295.71 703.08 287.86 695.13 Q 280 687.17 280 675.38 L 280 658.08 Q 280 633.9 294.04 613.87 Q 308.08 593.85 335.46 579.23 Q 362.85 564.62 399.27 557.31 Q 435.69 550 479.69 550 Q 524.54 550 560.96 557.31 Q 597.38 564.62 624.77 579.23 Q 652.15 593.85 666.08 613.87 Q 680 633.9 680 658.08 L 680 675.38 Q 680 687.17 672.05 695.13 Q 664.1 703.08 652.31 703.08 L 308.01 703.08 Z M 755.38 703.08 L 755.38 655.11 Q 755.38 638.99 752.65 624.11 Q 749.92 609.23 743.46 595.8 Q 756 594.08 766.02 593.19 Q 776.04 592.31 784.62 592.31 Q 845.19 592.31 882.6 614.92 Q 920 637.54 920 673.15 L 920 678.46 Q 920 688.17 912.55 695.63 Q 905.1 703.08 895.38 703.08 L 755.38 703.08 Z M 310 672.31 L 650 672.31 L 650 660.92 Q 652.31 624.69 606.04 602.73 Q 559.77 580.77 480 580.77 Q 401 580.77 354.35 602.73 Q 307.69 624.69 310 661.15 L 310 672.31 Z M 175.52 559.23 Q 154.08 559.23 138.96 543.91 Q 123.85 528.59 123.85 506.92 Q 123.85 485.62 139.17 470.5 Q 154.49 455.38 176.15 455.38 Q 197.46 455.38 212.96 470.5 Q 228.46 485.62 228.46 507.59 Q 228.46 528.23 213.38 543.73 Q 198.31 559.23 175.52 559.23 Z M 784.18 559.23 Q 763.31 559.23 747.81 543.67 Q 732.31 528.11 732.31 507.15 Q 732.31 485.62 747.87 470.5 Q 763.43 455.38 784.76 455.38 Q 806.69 455.38 821.81 470.5 Q 836.92 485.62 836.92 507.36 Q 836.92 528.71 821.9 543.97 Q 806.88 559.23 784.18 559.23 Z M 480.27 520 Q 443.85 520 418.08 494.42 Q 392.31 468.85 392.31 432.31 Q 392.31 395.04 417.88 369.83 Q 443.46 344.61 480 344.61 Q 517.27 344.61 542.48 369.75 Q 567.69 394.88 567.69 432.04 Q 567.69 468.46 542.56 494.23 Q 517.43 520 480.27 520 Z M 480.74 489.23 Q 504.46 489.23 520.69 472.65 Q 536.92 456.07 536.92 431.57 Q 536.92 407.85 520.64 391.61 Q 504.36 375.38 480.35 375.38 Q 456.54 375.38 439.81 391.67 Q 423.08 407.95 423.08 431.96 Q 423.08 455.77 439.66 472.5 Q 456.24 489.23 480.74 489.23 Z M 480 672.31 Z M 480 432.31 Z"
|
||||
android:fillColor="@android:color/white" />
|
||||
</group>
|
||||
</vector>
|
@ -0,0 +1,18 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:name="vector"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="300"
|
||||
android:pivotY="480">
|
||||
<path
|
||||
android:name="path"
|
||||
android:pathData="M 404.615 615.077 L 404.615 344.923 L 615.077 480 L 404.615 615.077 Z M 483.154 880 Q 360.615 880 264.077 816.962 Q 167.538 753.923 110.769 637.616 L 110.769 799.769 L 79.999 799.769 L 79.999 584.615 L 293.385 584.615 L 293.385 615.385 L 134.769 615.385 Q 183.308 724.231 276 786.731 Q 368.692 849.231 483.154 849.231 Q 604.923 849.231 701.154 776.423 Q 797.385 703.615 832.308 586.308 L 862.846 592.385 Q 826 721.462 721.346 800.731 Q 616.692 880.001 483.154 880.001 Z M 82 440 Q 89.769 377.385 110.154 328.423 Q 130.538 279.461 169.692 227.461 L 192.692 248.923 Q 159.231 293.154 140.923 336.615 Q 122.615 380.077 112.769 440 L 81.999 440 Z M 248.692 193.692 L 227.461 170.461 Q 276.077 132.615 330.154 111.077 Q 384.231 89.538 441.231 83.538 L 441.231 114.308 Q 392.308 119.308 343.308 139.038 Q 294.308 158.769 248.692 193.692 Z M 709.769 193.692 Q 671.692 161.538 619.769 140.038 Q 567.846 118.538 520 114.308 L 520 83.538 Q 578 88.769 631.192 111.077 Q 684.385 133.384 731.769 171.231 L 709.769 193.692 Z M 845.692 440 Q 839.154 385.154 818.462 336.615 Q 797.769 288.077 763.308 248.461 L 785.308 226 Q 824.385 273.077 847.539 327.115 Q 870.693 381.154 876.462 440 L 845.692 440 Z"
|
||||
android:fillColor="@android:color/white" />
|
||||
</group>
|
||||
</vector>
|
@ -0,0 +1,18 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:name="vector"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="300"
|
||||
android:pivotY="480">
|
||||
<path
|
||||
android:name="path"
|
||||
android:pathData="M 684.729 684.615 Q 710.29 684.615 728.184 666.249 Q 746.077 647.882 746.077 622.905 Q 746.077 597.928 727.959 579.81 Q 709.842 561.692 684.864 561.692 Q 659.887 561.692 641.52 579.493 Q 623.154 597.294 623.154 622.724 Q 623.154 648.154 641.481 666.385 Q 659.808 684.615 684.729 684.615 Z M 684.115 806.539 Q 716.846 806.539 743.462 792.923 Q 770.077 779.308 787.539 754.077 Q 763.077 740.077 737.615 733.077 Q 712.153 726.077 684.654 726.077 Q 657.155 726.077 631.154 733.077 Q 605.154 740.077 581.692 754.077 Q 599.154 779.308 625.269 792.923 Q 651.385 806.539 684.115 806.539 Z M 480 838.462 Q 360.461 803.385 280.231 693.5 Q 200 583.615 200 441.077 L 200 227.461 L 480 122.846 L 760 227.461 L 760 473.615 Q 752.923 471.231 744.231 468.423 Q 735.539 465.615 729.231 464.385 L 729.231 247.923 L 480 156.538 L 230.769 247.923 L 230.769 441.077 Q 230.769 514 253.731 576.077 Q 276.692 638.154 314.308 686.654 Q 351.923 735.154 399.077 767.538 Q 446.231 799.923 495.385 812.385 L 497.692 811.615 Q 500.615 814.385 504.923 819.385 Q 509.231 824.385 511.846 827 Q 503.615 831.231 495.538 833.731 Q 487.462 836.231 480 838.462 Z M 685.947 840 Q 621.893 840 576.908 794.885 Q 531.923 749.769 531.923 686.077 Q 531.923 621.242 576.898 576.082 Q 621.873 530.923 686.447 530.923 Q 750 530.923 795.116 576.082 Q 840.231 621.242 840.231 686.077 Q 840.231 749.769 795.116 794.885 Q 750 840 685.947 840 Z M 480 484.077 Z"
|
||||
android:fillColor="@android:color/white" />
|
||||
</group>
|
||||
</vector>
|
@ -0,0 +1,18 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:name="vector"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="300"
|
||||
android:pivotY="480">
|
||||
<path
|
||||
android:name="path"
|
||||
android:pathData="M 154.549 522.836 C 141.802 522.76 130.526 518.188 121.587 509.249 C 112.648 500.31 108.076 489.034 108 476.288 L 108 275.82 C 108.018 272.336 108.684 268.793 109.932 265.561 C 111.233 262.309 113.607 258.829 116.76 255.527 L 265.165 107.122 L 266.577 108.636 L 277.46 120.297 C 279.338 122.448 281.014 124.528 282.445 126.484 C 283.964 128.61 284.859 130.909 284.935 132.787 L 284.935 138.502 L 256.798 261.445 L 415.652 261.445 C 429.902 261.515 442.178 266.323 451.606 275.751 C 461.035 285.18 465.843 297.458 465.913 311.705 L 465.913 319.564 C 465.909 323.12 465.613 326.217 465.055 328.622 C 464.496 330.97 463.687 333.457 462.714 335.834 L 390.388 502.885 C 387.809 508.903 383.763 513.903 378.598 517.459 C 373.355 520.95 366.752 522.8 359.348 522.836 Z M 362.98 494.087 L 437.164 321.379 L 437.164 307.993 C 437.232 302.584 435.671 298.552 432.187 295.183 C 428.817 291.698 424.775 290.126 419.364 290.194 L 221.183 290.194 L 248.351 164.585 L 136.749 276.953 L 136.749 476.288 C 136.683 481.703 138.242 485.735 141.725 489.098 C 145.09 492.582 149.134 494.153 154.549 494.087 Z M 693.423 851.364 L 682.539 839.702 C 680.643 837.526 679.027 835.383 677.78 833.395 C 676.49 831.279 675.74 829.041 675.684 827.212 L 675.684 821.502 L 703.214 698.555 L 544.349 698.555 C 530.097 698.485 517.82 693.676 508.393 684.249 C 498.966 674.822 494.157 662.544 494.087 648.294 L 494.087 640.436 C 494.091 636.88 494.387 633.783 494.945 631.377 C 495.503 629.029 496.313 626.546 497.287 624.168 L 569.608 456.505 C 572.092 450.522 576.136 445.614 581.374 442.232 C 586.659 438.938 593.264 437.196 600.652 437.164 L 805.451 437.164 C 818.198 437.24 829.474 441.812 838.413 450.751 C 847.352 459.69 851.924 470.966 852 483.712 L 852 684.18 C 851.982 687.665 851.316 691.206 850.067 694.439 C 848.767 697.69 846.393 701.171 843.24 704.473 L 694.835 852.878 Z M 597.018 465.913 L 522.836 638.002 L 522.836 652.007 C 522.768 657.416 524.329 661.448 527.813 664.817 C 531.183 668.302 535.225 669.874 540.636 669.806 L 739.451 669.806 L 711.693 794.779 L 823.251 683.042 L 823.251 483.711 C 823.319 478.302 821.758 474.27 818.273 470.901 C 814.904 467.416 810.862 465.844 805.451 465.913 Z"
|
||||
android:fillColor="@android:color/white" />
|
||||
</group>
|
||||
</vector>
|
Loading…
x
Reference in New Issue
Block a user