[#1657] Redesign SendConfirmation subscreens

* [#1657] Improve sub-screens previews

* Initial design structure changes

* Bottom bar by screen stage

* Bottom bar paddings

* TopAppBar for all screens

* Content part - success (partly)

* Fix SendConfirmationContent composable scrolling

* Improve SendConfirmationSending UI

* SendConfirmationSending subscreen final UI

* SendingConfirmationSuccess subscreen UI

* SendConfirmationFailure UI

* Failed/Success view transaction logic

* SendConfirmationGrpcFailire UI

* MultipleTrxFailure UI partly done

* MultipleTrxFailure screen UI

* Gradient Scaffold for subscreens

* Fix static code analysis warnings

* Changelogs update

* Screen images update

* WhatNewEs changelog update

* Update Spanish translation keys
This commit is contained in:
Honza Rychnovský 2024-11-13 09:24:35 +01:00 committed by GitHub
parent 60fa9268e6
commit 882605d7a9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
35 changed files with 1920 additions and 499 deletions

View File

@ -10,6 +10,8 @@ and this application adheres to [Semantic Versioning](https://semver.org/spec/v2
- The device authentication feature on the Zashi app launch has been added
- Zashi app now supports Spanish language
- The Flexa SDK has been adopted to enable payments using the embedded Flexa UI
- New Sending, Success, Failure, and GrpcFailure subscreens of the Send Confirmation screen have been added
- New Copy Transaction IDs feature has been added to the MultipleTransactionFailure screen
### Changelog
- Shielded transactions are properly indicated in transaction history

View File

@ -13,6 +13,8 @@ directly impact users rather than highlighting other key architectural updates.*
- The device authentication feature on the Zashi app launch has been added
- Zashi app now supports Spanish language
- The Flexa SDK has been adopted to enable payments using the embedded Flexa UI
- New Sending, Success, Failure, and GrpcFailure subscreens of the Send Confirmation screen have been added
- New Copy Transaction IDs feature has been added to the MultipleTransactionFailure screen
### Changelog
- Shielded transactions are properly indicated in transaction history

View File

@ -13,6 +13,8 @@ directly impact users rather than highlighting other key architectural updates.*
- The device authentication feature on the Zashi app launch has been added
- Zashi app now supports Spanish language
- The Flexa SDK has been adopted to enable payments using the embedded Flexa UI
- New Sending, Success, Failure, and GrpcFailure subscreens of the Send Confirmation screen have been added
- New Copy Transaction IDs feature has been added to the MultipleTransactionFailure screen
### Changelog
- Shielded transactions are properly indicated in transaction history

View File

@ -1,10 +1,12 @@
package co.electriccoin.zcash.ui.design.component
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.PaddingValues
import androidx.compose.material3.Scaffold
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.tooling.preview.Preview
import co.electriccoin.zcash.ui.design.theme.ZcashTheme
@ -35,3 +37,25 @@ fun BlankBgScaffold(
modifier = modifier,
)
}
@Composable
fun GradientBgScaffold(
startColor: Color,
endColor: Color,
modifier: Modifier = Modifier,
topBar: @Composable () -> Unit = {},
bottomBar: @Composable () -> Unit = {},
snackbarHost: @Composable () -> Unit = {},
content: @Composable (PaddingValues) -> Unit
) {
Scaffold(
containerColor = Color.Transparent,
topBar = topBar,
snackbarHost = snackbarHost,
bottomBar = bottomBar,
content = content,
modifier =
modifier
.background(zashiVerticalGradient(startColor, endColor)),
)
}

View File

@ -24,10 +24,10 @@ fun ZashiBottomBar(
content: @Composable () -> Unit,
) {
Surface(
modifier = modifier,
shape = RoundedCornerShape(topStart = 32.dp, topEnd = 32.dp),
shadowElevation = 4.dp,
color = ZashiColors.Surfaces.bgPrimary
color = ZashiColors.Surfaces.bgPrimary,
modifier = modifier,
) {
Column {
Spacer(modifier = Modifier.height(16.dp))

View File

@ -3,11 +3,13 @@ package co.electriccoin.zcash.ui.design.component
import androidx.compose.foundation.BorderStroke
import androidx.compose.foundation.Image
import androidx.compose.foundation.isSystemInDarkTheme
import androidx.compose.foundation.layout.PaddingValues
import androidx.compose.foundation.layout.RowScope
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.size
import androidx.compose.foundation.layout.width
import androidx.compose.foundation.layout.wrapContentWidth
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material3.Button
import androidx.compose.material3.ButtonDefaults
@ -100,6 +102,7 @@ fun ZashiButton(
onClick = onClick,
modifier = modifier,
shape = RoundedCornerShape(12.dp),
contentPadding = PaddingValues(horizontal = 10.dp),
enabled = enabled,
colors = colors.toButtonColors(),
border = colors.borderColor.takeIf { it != Color.Unspecified }?.let { BorderStroke(1.dp, it) },
@ -269,3 +272,17 @@ private fun DestroyPreview() =
)
}
}
@PreviewScreens
@Composable
private fun SmallWidthPreview() =
ZcashTheme {
BlankSurface {
ZashiButton(
modifier = Modifier.wrapContentWidth(),
text = "Small Width Button",
colors = ZashiButtonDefaults.destructive1Colors(),
onClick = {},
)
}
}

View File

@ -12,9 +12,9 @@ import co.electriccoin.zcash.ui.design.theme.internal.TopAppBarColors
@Composable
@Suppress("LongParameterList")
fun ZashiSmallTopAppBar(
title: String?,
subtitle: String?,
modifier: Modifier = Modifier,
title: String? = null,
subtitle: String? = null,
showTitleLogo: Boolean = false,
colors: TopAppBarColors = ZcashTheme.colors.topAppBarColors,
navigationAction: @Composable () -> Unit = {},

View File

@ -0,0 +1,13 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:pathData="M18,6L6,18M6,6L18,18"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#E8E8E8"
android:strokeLineCap="round"/>
</vector>

View File

@ -0,0 +1,13 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:pathData="M18,6L6,18M6,6L18,18"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#231F20"
android:strokeLineCap="round"/>
</vector>

View File

@ -371,7 +371,7 @@ private fun MainActivity.NavigationHome(
goScan = { navController.navigateJustOnce(ScanNavigationArgs(ScanNavigationArgs.DEFAULT)) },
goSendConfirmation = { zecSend ->
navController.currentBackStackEntry?.savedStateHandle?.let { handle ->
fillInHandleForConfirmation(handle, zecSend, SendConfirmationStage.Confirmation)
fillInHandleForConfirmation(handle, zecSend, SendConfirmationStage.Prepared)
}
navController.navigateJustOnce(SEND_CONFIRMATION)
},

View File

@ -247,7 +247,7 @@ class AuthenticationViewModel(
// returning to biometric authentication, such as a button. The operation was canceled
// because [BiometricPrompt.ERROR_LOCKOUT] occurred too many times.
BiometricPrompt.ERROR_USER_CANCELED -> {
authenticationResult.value = AuthenticationResult.Failed
authenticationResult.value = AuthenticationResult.Canceled
// The following values are just for testing purposes, so we can easier reproduce other
// non-success results obtained from [BiometricPrompt]
// = AuthenticationResult.Failed

View File

@ -87,7 +87,6 @@ fun Home(
@Composable
@Suppress("LongMethod")
@OptIn(ExperimentalFoundationApi::class)
private fun HomeContent(
pagerState: PagerState,
subScreens: ImmutableList<TabItem>

View File

@ -22,6 +22,7 @@ import cash.z.ecc.android.sdk.model.Proposal
import cash.z.ecc.android.sdk.model.UnifiedSpendingKey
import cash.z.ecc.android.sdk.model.ZecSend
import co.electriccoin.zcash.di.koinActivityViewModel
import co.electriccoin.zcash.spackle.ClipboardManagerUtil
import co.electriccoin.zcash.spackle.Twig
import co.electriccoin.zcash.ui.MainActivity
import co.electriccoin.zcash.ui.R
@ -124,25 +125,23 @@ internal fun WrapSendConfirmation(
val (stage, setStage) =
rememberSaveable(stateSaver = SendConfirmationStage.Saver) {
mutableStateOf(arguments.initialStage ?: SendConfirmationStage.Confirmation)
mutableStateOf(arguments.initialStage ?: SendConfirmationStage.Prepared)
}
val submissionResults = createTransactionsViewModel.submissions.collectAsState().value.toImmutableList()
val onBackAction = {
when (stage) {
SendConfirmationStage.Confirmation -> goBack(false)
SendConfirmationStage.Sending -> { // no action - wait until the sending is done
}
is SendConfirmationStage.Failure -> setStage(SendConfirmationStage.Confirmation)
is SendConfirmationStage.FailureGrpc -> {
setStage(SendConfirmationStage.Confirmation)
SendConfirmationStage.Prepared -> goBack(false)
SendConfirmationStage.Sending -> { /* No action - wait until the sending is done */ }
SendConfirmationStage.Success -> {
goHome()
}
is SendConfirmationStage.MultipleTrxFailure -> { // no action - wait until report the result
is SendConfirmationStage.Failure -> setStage(SendConfirmationStage.Prepared)
is SendConfirmationStage.FailureGrpc -> {
goHome()
}
is SendConfirmationStage.MultipleTrxFailure -> { /* No action - wait until the sending is done */ }
is SendConfirmationStage.MultipleTrxFailureReported -> goBack(true)
}
}
@ -171,12 +170,12 @@ internal fun WrapSendConfirmation(
submissionResults = submissionResults,
snackbarHostState = snackbarHostState,
onBack = onBackAction,
onContactSupport = { stageToGo, body ->
onContactSupport = { stageToGo ->
val fullMessage =
when (stageToGo) {
is SendConfirmationStage.Failure -> {
EmailUtil.formatMessage(
body = body,
body = stageToGo.stackTrace,
supportInfo = supportMessage?.toSupportString(SupportInfoType.entries.toSet())
)
}
@ -209,11 +208,22 @@ internal fun WrapSendConfirmation(
setStage(stageToGo)
scope.launch {
snackbarHostState.showSnackbar(
message = activity.getString(R.string.send_confirmation_multiple_report_unable_open_email)
message =
activity.getString(
R.string.send_confirmation_multiple_trx_failure_report_unable_open_email
)
)
}
}
},
onMultipleTrxFailureIdsCopy = { idsString ->
Twig.info { "Multiple Trx IDs copied: $idsString" }
ClipboardManagerUtil.copyToClipboard(
activity.applicationContext,
activity.getString(R.string.send_confirmation_multiple_trx_failure_copy_tag),
idsString
)
},
onConfirmation = {
// Check and trigger authentication if required, or just submit transactions otherwise
lifecycleScope.launch {
@ -225,7 +235,6 @@ internal fun WrapSendConfirmation(
} else {
runSendFundsAction(
createTransactionsViewModel = createTransactionsViewModel,
goHome = goHome,
// The not-null assertion operator is necessary here even if we check its
// nullability before due to property is declared in different module. See more
// details on the Kotlin forum
@ -238,6 +247,12 @@ internal fun WrapSendConfirmation(
}
}
},
onViewTransactions = {
val trxIds = submissionResults.map { it.txIdString() }
Twig.debug { "Transactions IDs passing to a new Transaction Details: $trxIds" }
// Once we implement transaction details screen we can start passing the trx ids to its destination
goHome()
},
topAppBarSubTitleState = topAppBarSubTitleState,
exchangeRate = exchangeRateState,
contactName = foundContact.value?.name
@ -253,7 +268,6 @@ internal fun WrapSendConfirmation(
lifecycleScope.launch {
runSendFundsAction(
createTransactionsViewModel = createTransactionsViewModel,
goHome = goHome,
// The not-null assertion operator is necessary here even if we check its
// nullability before due to property is declared in different module. See more
// details on the Kotlin forum
@ -280,7 +294,6 @@ internal fun WrapSendConfirmation(
@Suppress("LongParameterList")
suspend fun runSendFundsAction(
createTransactionsViewModel: CreateTransactionsViewModel,
goHome: () -> Unit,
proposal: Proposal,
setStage: (SendConfirmationStage) -> Unit,
spendingKey: UnifiedSpendingKey,
@ -299,7 +312,6 @@ suspend fun runSendFundsAction(
Twig.debug { "Transactions submitted with result: $submitResult" }
processSubmissionResult(
goHome = goHome,
setStage = setStage,
submitResult = submitResult
)
@ -332,13 +344,11 @@ private suspend fun submitTransactions(
private fun processSubmissionResult(
submitResult: SubmitResult,
setStage: (SendConfirmationStage) -> Unit,
goHome: () -> Unit
setStage: (SendConfirmationStage) -> Unit
) {
when (submitResult) {
SubmitResult.Success -> {
setStage(SendConfirmationStage.Confirmation)
goHome()
setStage(SendConfirmationStage.Success)
}
is SubmitResult.SimpleTrxFailure.SimpleTrxFailureSubmit -> {
setStage(SendConfirmationStage.Failure(submitResult.toErrorMessage(), submitResult.toErrorStacktrace()))

View File

@ -3,10 +3,12 @@ package co.electriccoin.zcash.ui.screen.sendconfirmation.model
import androidx.compose.runtime.saveable.mapSaver
sealed class SendConfirmationStage {
data object Confirmation : SendConfirmationStage()
data object Prepared : SendConfirmationStage()
data object Sending : SendConfirmationStage()
data object Success : SendConfirmationStage()
data class Failure(
val error: String,
val stackTrace: String,
@ -20,18 +22,20 @@ sealed class SendConfirmationStage {
fun toStringName(): String {
return when (this) {
Confirmation -> TYPE_CONFIRMATION
Prepared -> TYPE_PREPARED
is Failure -> TYPE_FAILURE
is FailureGrpc -> TYPE_FAILURE_GRPC
MultipleTrxFailure -> TYPE_MULTIPLE_TRX_FAILURE
MultipleTrxFailureReported -> TYPE_MULTIPLE_TRX_FAILURE_REPORTED
Sending -> TYPE_SENDING
Success -> TYPE_SUCCESS
}
}
companion object {
private const val TYPE_CONFIRMATION = "confirmation" // $NON-NLS
private const val TYPE_PREPARED = "prepared" // $NON-NLS
private const val TYPE_SENDING = "sending" // $NON-NLS
private const val TYPE_SUCCESS = "success" // $NON-NLS
private const val TYPE_FAILURE = "failure" // $NON-NLS
private const val TYPE_FAILURE_GRPC = "type_failure_grpc" // $NON-NLS
private const val TYPE_MULTIPLE_TRX_FAILURE = "multiple_trx_failure" // $NON-NLS
@ -52,8 +56,9 @@ sealed class SendConfirmationStage {
} else {
val sendStageString = (it[KEY_TYPE] as String)
when (sendStageString) {
TYPE_CONFIRMATION -> Confirmation
TYPE_PREPARED -> Prepared
TYPE_SENDING -> Sending
TYPE_SUCCESS -> Success
TYPE_FAILURE ->
Failure(
error = (it[KEY_ERROR] as String),
@ -72,8 +77,9 @@ sealed class SendConfirmationStage {
private fun SendConfirmationStage.toSaverMap(): HashMap<String, String> {
val saverMap = HashMap<String, String>()
when (this) {
Confirmation -> saverMap[KEY_TYPE] = TYPE_CONFIRMATION
Prepared -> saverMap[KEY_TYPE] = TYPE_PREPARED
Sending -> saverMap[KEY_TYPE] = TYPE_SENDING
Success -> saverMap[KEY_TYPE] = TYPE_SUCCESS
is Failure -> {
saverMap[KEY_TYPE] = TYPE_FAILURE
saverMap[KEY_ERROR] = this.error
@ -89,14 +95,15 @@ sealed class SendConfirmationStage {
fun fromStringName(stringName: String?): SendConfirmationStage {
return when (stringName) {
TYPE_CONFIRMATION -> Confirmation
TYPE_PREPARED -> Prepared
TYPE_SENDING -> Sending
TYPE_SUCCESS -> Success
// Add the String error and stackTrace parameter storing and retrieving
TYPE_FAILURE -> Failure("", "")
TYPE_FAILURE_GRPC -> FailureGrpc
TYPE_MULTIPLE_TRX_FAILURE -> MultipleTrxFailure
TYPE_MULTIPLE_TRX_FAILURE_REPORTED -> MultipleTrxFailureReported
else -> Confirmation
else -> Prepared
}
}
}

View File

@ -1,6 +1,7 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="back_navigation">Atrás</string>
<string name="back_navigation_content_description">Atrás</string>
<string name="close_navigation_content_description">Close</string>
<string name="fiat_currency_conversion_rate_unavailable">No disponible</string>
<string name="empty_char">-</string>

View File

@ -1,6 +1,7 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="back_navigation">Back</string>
<string name="back_navigation_content_description">Back</string>
<string name="close_navigation_content_description">Close</string>
<string name="fiat_currency_conversion_rate_unavailable">Unavailable</string>
<string name="empty_char">-</string>

View File

@ -0,0 +1,76 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="95dp"
android:height="120dp"
android:viewportWidth="95"
android:viewportHeight="120">
<group>
<clip-path
android:pathData="M0,0h94.58v120h-94.58z"/>
<path
android:pathData="M51.92,9.22C51.92,6.44 53.35,3.66 55.76,2.21C56.89,1.53 58.6,1.09 59.28,2.57C59.96,4.05 59.8,6.08 59.34,7.65C59.07,8.53 60.33,9.03 60.8,8.27C62.15,6.07 64.36,4.54 66.89,4.04C67.49,3.92 68.3,3.76 68.87,4.05C69.54,4.37 69.67,5.29 69.82,5.95C70.19,7.52 70.24,9.11 70.06,10.7C69.99,11.23 70.62,11.59 71.06,11.47C73.26,10.88 74.81,8.68 77.09,8.43C78.35,8.28 79.18,9.13 79.31,10.33C79.44,11.54 78.79,12.79 78.25,13.87C77.98,14.4 78.31,15.08 78.94,15.07C81.04,15.05 85.21,13.87 86.31,16.54C86.84,17.82 85.67,19.06 84.67,19.7C83.56,20.41 82.21,20.7 80.91,20.49C80.23,20.38 79.43,21.26 80.13,21.82C81.12,22.59 82.01,23.47 82.74,24.49C83.07,24.95 83.37,25.43 83.63,25.93C83.88,26.38 84.42,27.2 84.25,27.72C83.96,28.61 81.69,28.56 80.91,28.5C79.65,28.39 78.48,27.9 77.46,27.17C76.87,26.76 76.1,27.44 76.29,28.07C76.81,29.9 77.17,32.04 76.29,33.81C76.11,34.18 75.82,34.72 75.44,34.92C74.91,35.2 74.36,34.77 73.89,34.51C72.89,33.94 71.92,33.32 70.99,32.65C70.54,32.33 69.97,32.68 69.82,33.13C69.23,34.87 68.46,37.12 66.68,37.98C64.41,39.07 62.09,37.08 60.79,35.39C60.45,34.94 59.73,34.81 59.42,35.39C58.58,36.92 57.17,38.45 55.31,38.58C53.65,38.69 51.99,37.31 52.21,35.59C52.31,34.74 51.11,34.59 50.72,35.18C49.31,37.33 46.6,38.67 44.12,37.52C41.84,36.47 40.99,33.43 42.92,31.62C43.51,31.06 42.89,30.09 42.15,30.29C39.15,31.06 34.84,32.11 32.53,29.26C31.64,28.16 31.36,26.37 32.31,25.22C33.33,23.98 35.18,23.96 36.64,24.12C37.39,24.21 37.6,23.23 37.21,22.76C35.76,21.05 33.93,18.86 34.62,16.45C35.32,14.04 38.09,12.99 40.27,14.18C40.88,14.51 41.62,13.96 41.44,13.28C40.74,10.62 40.59,6.92 43.49,5.48C46.59,3.93 48.93,7.6 50.16,9.85C50.66,10.75 52.03,9.95 51.54,9.04C50.6,7.35 49.58,5.63 47.94,4.54C46.43,3.53 44.56,3.23 42.9,3.99C39.16,5.69 39,10.26 39.9,13.7L41.07,12.8C38.24,11.25 34.65,12.33 33.34,15.33C31.94,18.54 34.07,21.51 36.07,23.88L36.64,22.52C34.74,22.31 32.55,22.56 31.2,24.06C29.85,25.57 29.87,27.68 30.72,29.37C32.95,33.75 38.75,32.79 42.57,31.81L41.8,30.48C39.22,32.91 40.08,37.14 43.09,38.77C46.38,40.55 50.15,38.92 52.1,35.97L50.61,35.56C50.3,37.97 52.53,39.99 54.82,40.14C57.43,40.31 59.61,38.31 60.78,36.17H59.41C61.12,38.38 63.88,40.65 66.87,39.59C69.43,38.68 70.55,35.9 71.35,33.52L70.19,33.99C71.43,34.87 72.76,35.85 74.19,36.41C75.46,36.9 76.5,36.29 77.25,35.25C78.84,33.04 78.54,30.08 77.83,27.61L76.66,28.51C77.99,29.46 79.57,29.99 81.2,30.07C82.56,30.14 84.72,29.95 85.56,28.71C86.45,27.41 85.36,25.62 84.67,24.47C83.78,23 82.62,21.71 81.27,20.66L80.5,21.99C82.22,22.26 83.99,21.99 85.48,21.04C86.98,20.09 88.24,18.54 88.01,16.74C87.82,15.18 86.52,14.08 85.12,13.56C83.15,12.82 80.98,13.42 78.94,13.44L79.63,14.64C80.33,13.26 81.06,11.76 80.9,10.17C80.76,8.84 80.09,7.6 78.83,7.06C75.65,5.68 73.4,9.15 70.65,9.89L71.65,10.65C71.88,8.67 71.74,6.62 71.16,4.71C70.6,2.89 69.33,2.11 67.45,2.31C64.13,2.66 61.16,4.58 59.42,7.42L60.87,8.04C61.47,6.06 61.58,3.64 60.65,1.73C59.8,0 57.81,-0.33 56.08,0.3C52.52,1.6 50.32,5.56 50.32,9.22C50.32,10.25 51.91,10.25 51.91,9.22H51.92Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M61.32,21.69C65.73,19.66 71.38,18.73 75.46,21.99L75.63,20.74C71.28,23.72 65.83,22.38 61.41,20.32C60.49,19.88 59.68,21.26 60.61,21.69C65.52,23.99 71.59,25.42 76.43,22.12C76.81,21.85 77.02,21.21 76.59,20.86C71.88,17.09 65.65,17.93 60.51,20.3C59.59,20.73 60.39,22.11 61.32,21.68V21.69Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M41.69,22.46C43.82,20.69 46.46,19.49 49.21,19.15C50.61,18.98 51.99,19.12 53.24,19.8C54.43,20.44 55.41,21.36 56.38,22.27L56.55,21.02C54.46,22.43 51.77,22.29 49.35,22.43C46.77,22.56 44.28,22.52 41.85,21.53C40.9,21.15 40.49,22.69 41.42,23.07C44.06,24.14 46.83,24.16 49.62,24C52.24,23.86 55.09,23.92 57.35,22.39C57.76,22.12 57.91,21.51 57.51,21.14C56.41,20.11 55.28,19.05 53.93,18.35C52.47,17.59 50.86,17.36 49.23,17.54C46.02,17.91 43.03,19.26 40.56,21.31C39.77,21.97 40.9,23.09 41.69,22.44L41.69,22.46Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M34.66,20.83C25.88,23.6 20.46,31.58 17.1,39.7C15.14,44.45 13.63,49.39 12.03,54.27C10.35,59.4 8.69,64.54 7.12,69.71C5.59,74.77 4.16,79.85 2.88,84.98C1.62,90.1 0.39,95.3 0.08,100.58C-0.19,105.16 0.11,110.36 2.47,114.42C3.5,116.2 5,117.66 6.89,118.5C9.11,119.48 11.59,119.67 13.97,119.84C19.89,120.24 25.83,119.88 31.69,119.04C33.11,118.83 34.59,118.68 35.98,118.32C36.88,118.09 37.68,117.43 37.53,116.42C37.17,113.99 33.1,113.96 31.33,114.13C30.33,114.22 30.29,115.67 31.33,115.72C33.08,115.8 34.77,115.33 36.22,114.35C36.66,114.04 36.73,113.5 36.38,113.09C35.78,112.4 34.93,112.05 34.01,112.12C33.15,112.18 32.89,113.43 33.8,113.69C35.18,114.08 36.61,113.27 36.97,111.88C37.14,111.24 36.58,110.82 36,110.9C28.45,112.01 20.66,111.65 13.26,109.76C11.88,109.41 10.47,108.98 9.28,108.14C7.87,107.15 7.37,105.67 7.33,104C7.22,100.27 7.71,96.46 8.33,92.79C9.57,85.36 11.76,78.12 14.07,70.96C16.3,64.02 18.58,57.06 21.31,50.3C23.99,43.67 27.47,37.17 33.08,32.56C33.87,31.91 32.74,30.79 31.95,31.43C26.76,35.71 23.31,41.6 20.68,47.7C17.67,54.68 15.31,61.97 12.96,69.2C10.51,76.75 8.15,84.37 6.82,92.2C6.16,96.02 5.66,99.96 5.73,103.84C5.76,105.48 6.09,107.07 7.16,108.35C8.08,109.44 9.36,110.13 10.67,110.63C12.53,111.35 14.53,111.74 16.48,112.1C18.66,112.5 20.85,112.79 23.06,112.96C27.53,113.29 32,113.1 36.43,112.45L35.45,111.47C35.3,112.04 34.8,112.32 34.24,112.16L34.03,113.73C34.56,113.69 34.92,113.83 35.27,114.23L35.43,112.98C34.19,113.81 32.84,114.2 31.35,114.13V115.73C32.47,115.61 33.59,115.66 34.69,115.94C34.88,115.99 36.08,116.31 35.98,116.66C35.94,116.8 35,116.9 34.85,116.93C32.38,117.37 29.89,117.73 27.39,117.98C22.6,118.46 17.76,118.57 12.96,118.17C10.81,118 8.53,117.73 6.65,116.58C4.95,115.55 3.79,113.82 3.07,112C1.4,107.81 1.4,103 1.85,98.58C2.35,93.79 3.51,89.08 4.68,84.42C5.86,79.77 7.24,74.88 8.67,70.15C10.09,65.42 11.54,60.93 13.04,56.35C14.54,51.76 15.9,47.38 17.54,42.97C20.7,34.41 25.81,25.31 35.09,22.38C36.07,22.08 35.65,20.54 34.66,20.85V20.83Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M83.82,28.78C86.27,35.51 86,42.77 85.02,49.76C83.97,57.2 82.45,64.59 81.13,71.99C80.44,75.8 79.76,79.62 79.07,83.43C78.47,86.76 77.95,90.13 77.13,93.41C76.38,96.4 75.33,99.36 73.54,101.9C71.74,104.43 69.12,106.3 66.25,107.54C58.9,110.69 50.64,109.9 42.93,111.46C42.32,111.57 42.19,112.38 42.58,112.79C44.07,114.34 46.03,115.22 48.17,115.37V113.77C46.6,113.89 45.02,113.99 43.44,114.11C42.76,114.15 42.39,114.94 42.88,115.46C44.15,116.81 45.93,117.34 47.74,117.02L47.32,115.49C46.16,115.74 45.01,115.98 43.85,116.23C43.11,116.39 43.17,117.31 43.66,117.69C46.86,120.14 51,120.27 54.84,119.72C58.68,119.16 62.63,118.08 66.34,116.8C70.04,115.51 73.4,113.92 76.28,111.43C79.5,108.64 81.34,104.92 82.61,100.93C84.05,96.39 85.25,91.76 86.47,87.16C87.75,82.32 88.96,77.47 90.02,72.58C92.11,63 93.69,53.28 94.31,43.48C94.48,40.8 94.61,38.1 94.57,35.42C94.53,32.91 94.21,30.4 93.21,28.09C91.54,24.26 88.21,21.29 84.25,19.97C83.27,19.64 82.86,21.18 83.83,21.51C87.23,22.64 90.07,25.18 91.61,28.43C93.51,32.4 93.03,37.19 92.83,41.45C92.37,50.83 90.99,60.14 89.09,69.32C87.21,78.45 84.81,87.45 82.27,96.42C81.13,100.42 80.06,104.65 77.41,107.96C75.15,110.79 72.03,112.74 68.73,114.17C64.94,115.81 60.82,116.91 56.77,117.75C52.73,118.6 48.01,119.01 44.48,116.31L44.29,117.77C45.44,117.52 46.6,117.27 47.75,117.02C48.77,116.81 48.33,115.31 47.33,115.49C46.07,115.71 44.88,115.25 44.01,114.34L43.44,115.7C45.02,115.59 46.6,115.48 48.17,115.37C49.2,115.29 49.2,113.84 48.17,113.77C46.45,113.65 44.9,112.9 43.71,111.66L43.35,112.99C50.57,111.53 58.13,112.11 65.15,109.65C68.09,108.63 70.89,107.11 73.09,104.89C75.29,102.66 76.74,99.88 77.75,96.95C78.83,93.82 79.4,90.57 79.99,87.32C80.69,83.39 81.4,79.46 82.1,75.53C83.49,67.83 84.99,60.15 86.22,52.42C87.45,44.7 88.18,36.1 85.36,28.36C85.02,27.4 83.47,27.81 83.83,28.78H83.82Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M32.84,40.99C33.5,45.11 30.19,48.45 27.54,51.1C24.88,53.75 22.33,56.84 21.07,60.53C20.57,61.98 21.09,63.44 22.48,64.13C23.87,64.83 25.37,64.56 26.56,63.7C27.97,62.7 28.93,61.12 29.8,59.66C30.79,58.03 31.64,56.31 32.35,54.53C34,50.47 34.87,46.12 34.96,41.74C34.98,40.72 33.39,40.72 33.37,41.74C33.29,45.27 32.69,48.75 31.57,52.09C30.45,55.43 28.97,58.56 26.86,61.2C26.02,62.26 24.72,63.39 23.28,62.75C21.54,61.98 23.13,59.76 23.69,58.64C24.52,57.03 25.49,55.56 26.71,54.22C27.93,52.88 29.19,51.73 30.4,50.44C32.91,47.75 34.98,44.39 34.37,40.57C34.2,39.55 32.67,39.99 32.83,40.99H32.84Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M43.64,45.24C41.65,48.83 38.87,51.86 36.49,55.18C35.27,56.87 34.21,58.66 33.23,60.5C32.33,62.2 31.14,64.02 30.87,65.96C30.65,67.59 31.28,69.37 32.86,70.06C34.44,70.75 36.28,70.02 37.52,68.88C40.26,66.35 41.67,62.48 42.81,59.03C44.35,54.37 45.95,49.58 46.09,44.63C46.12,43.6 44.52,43.6 44.49,44.63C44.39,48.53 43.28,52.28 42.11,55.97C41.08,59.23 40.09,62.58 38.21,65.47C37.4,66.73 36.24,68.44 34.64,68.71C32.49,69.06 32.16,66.75 32.68,65.21C33.28,63.46 34.34,61.77 35.23,60.15C36.12,58.54 37.07,57.06 38.13,55.61C40.45,52.44 43.1,49.5 45.01,46.04C45.51,45.14 44.13,44.34 43.64,45.24Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M55.93,44.86C55.55,48.37 54.79,51.93 52.74,54.87C51.02,57.35 48.63,59.29 47,61.84C45.9,63.55 43.94,68.58 47.72,68.53C49.18,68.51 50.56,67.51 51.61,66.58C52.75,65.55 53.68,64.26 54.36,62.87C56.16,59.23 56.25,55.09 56.06,51.12C56.01,50.1 54.41,50.09 54.46,51.12C54.62,54.35 54.63,57.67 53.54,60.76C52.7,63.13 50.84,66.09 48.27,66.83C46.3,67.41 47.27,64.77 47.7,63.85C48.26,62.67 49.05,61.63 49.89,60.64C51.61,58.64 53.57,56.79 54.87,54.47C56.52,51.53 57.16,48.17 57.52,44.85C57.64,43.83 56.04,43.84 55.93,44.85V44.86Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M65.99,45.65C65.01,49.64 63.18,53.3 61.46,57C60.62,58.83 59.8,60.67 59.12,62.57C58.51,64.31 57.88,66.21 57.76,68.07C57.67,69.53 58.34,71.24 60.03,71.3C61.73,71.36 63.01,69.73 63.89,68.44C66.03,65.27 67.55,61.66 68.36,57.93C69.31,53.63 69.34,49.18 68.44,44.87C68.22,43.86 66.69,44.29 66.9,45.29C68.3,51.99 67.25,59.13 64.01,65.16C63.28,66.51 62.45,68.17 61.24,69.17C60.68,69.63 59.8,70.04 59.44,69.13C59.16,68.39 59.43,67.44 59.59,66.7C60.32,63.3 61.75,60.12 63.22,56.98C64.88,53.44 66.59,49.89 67.53,46.07C67.78,45.07 66.24,44.65 65.99,45.65V45.65Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M78.15,40.03C78.5,44.2 75.24,47.31 73.23,50.59C71.33,53.66 70.25,57.26 70.15,60.87C70.11,62.2 70.33,63.76 71.32,64.75C72.42,65.85 74.04,65.63 75.22,64.78C77.94,62.81 78.69,59.08 79.14,55.97C79.82,51.34 79.87,46.65 79.91,41.98C79.92,40.95 78.33,40.95 78.32,41.98C78.28,45.61 78.26,49.23 77.92,52.85C77.64,55.89 77.36,59.47 75.6,62.08C74.95,63.05 73.18,64.9 72.2,63.29C71.52,62.17 71.72,60.58 71.86,59.35C72.23,56.01 73.53,52.92 75.43,50.16C77.53,47.11 80.09,43.98 79.76,40.04C79.67,39.02 78.08,39.01 78.16,40.04L78.15,40.03Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M74.23,69.07C72.62,73.25 69.18,80.79 67.2,84.8C65.23,88.82 63.72,93.27 64.3,97.71C64.34,98.03 64.43,98.4 64.72,98.54C65.04,98.69 65.42,98.47 65.71,98.23C68.35,96.06 69.98,92.9 71.18,89.7C73.62,83.26 74.61,76.29 74.1,69.43"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M73.47,68.86C72.09,72.43 70.5,75.92 68.9,79.38C67.2,83.05 65.16,86.65 64.11,90.57C63.49,92.88 63.19,95.33 63.5,97.71C63.62,98.52 64.01,99.39 64.97,99.38C65.93,99.37 66.72,98.44 67.32,97.84C70.45,94.63 72.1,90.1 73.28,85.86C74.75,80.52 75.29,74.94 74.9,69.42C74.83,68.4 73.23,68.39 73.3,69.42C73.63,73.93 73.33,78.47 72.37,82.89C71.48,86.95 70.18,91.19 67.84,94.67C67.35,95.4 66.81,96.08 66.19,96.71C66.03,96.87 65.33,97.74 65.08,97.71C65.05,97.71 64.99,96.33 64.98,96.12C64.93,93.95 65.35,91.82 66.01,89.76C67.13,86.28 68.96,83.03 70.49,79.71C72.02,76.39 73.64,72.82 75,69.28C75.37,68.32 73.83,67.9 73.46,68.85L73.47,68.86Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M61.55,75.66C58.89,79.86 55.34,83.44 52.63,87.6C49.93,91.76 48.06,96.89 49.35,101.68C49.59,102.58 50.06,103.56 50.96,103.79C52.05,104.07 53.03,103.11 53.63,102.17C54.67,100.52 55.35,98.67 55.99,96.83C58.32,90.13 60.34,83.32 62.01,76.44"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M60.86,75.27C56.3,82.39 48.91,88.34 48.19,97.32C48.04,99.15 48.16,101.31 49,102.99C49.79,104.57 51.52,105.13 53,104.05C54.59,102.89 55.4,100.7 56.09,98.93C56.93,96.76 57.64,94.54 58.36,92.33C60.03,87.16 61.51,81.93 62.8,76.66C63.04,75.66 61.5,75.23 61.26,76.23C60.25,80.34 59.14,84.42 57.91,88.47C57.27,90.54 56.61,92.61 55.91,94.68C55.29,96.52 54.7,98.4 53.85,100.15C53.32,101.24 51.51,104.55 50.39,102.18C49.67,100.65 49.66,98.66 49.83,97.02C50.22,93.24 52.07,89.75 54.24,86.69C56.8,83.06 59.86,79.82 62.26,76.07C62.81,75.2 61.43,74.4 60.88,75.26L60.86,75.27Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M51.05,74.01C48.57,79.46 45.46,84.63 41.81,89.37C38.98,93.05 35.73,96.69 34.76,101.23C34.44,102.7 34.7,104.68 36.16,105.01C37.43,105.3 38.5,104.07 39.2,102.97C44.85,94.07 49.03,84.24 51.5,73.99"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M50.36,73.61C48.13,78.47 45.43,83.11 42.27,87.43C39.48,91.26 36.02,94.8 34.44,99.36C33.85,101.07 33.34,103.39 34.61,104.94C36.05,106.68 38.19,105.61 39.33,104.16C40.81,102.27 41.95,100.03 43.1,97.93C44.36,95.62 45.53,93.25 46.6,90.84C48.98,85.48 50.88,79.91 52.27,74.2C52.51,73.2 50.97,72.78 50.73,73.78C48.5,82.94 44.95,91.75 40.16,99.87C39.59,100.85 39.01,101.84 38.38,102.77C37.94,103.4 37.08,104.6 36.17,104.19C35.46,103.87 35.4,102.77 35.44,102.11C35.49,101.09 35.86,100.05 36.24,99.11C37.88,95.02 41.08,91.75 43.65,88.24C46.8,83.92 49.51,79.28 51.74,74.42C52.17,73.49 50.79,72.68 50.37,73.61H50.36Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M39.21,76.66C34.12,82.48 29.76,88.94 26.28,95.85C25.22,97.97 24.22,100.18 24.01,102.55C23.95,103.31 24.03,104.18 24.65,104.62C25.61,105.3 26.88,104.35 27.62,103.43C33.82,95.78 36.46,85.92 38.94,76.39"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M38.65,76.1C35.5,79.7 32.62,83.54 30.06,87.57C28.78,89.59 27.59,91.65 26.47,93.75C25.35,95.86 24.17,98.08 23.57,100.44C23.18,101.99 22.67,104.52 24.46,105.43C26.37,106.41 28.06,104.19 29.04,102.89C31.72,99.36 33.69,95.37 35.29,91.25C37.13,86.48 38.43,81.54 39.72,76.61C39.98,75.61 38.44,75.19 38.18,76.18C36.17,83.89 34.11,91.76 29.98,98.65C29.02,100.26 27.96,102.04 26.61,103.35C25.99,103.95 24.96,104.47 24.81,103.24C24.69,102.26 25.01,101.16 25.29,100.23C25.92,98.14 26.98,96.19 28,94.27C29.02,92.35 30.06,90.57 31.18,88.77C33.74,84.7 36.61,80.84 39.78,77.22C40.45,76.44 39.33,75.32 38.65,76.09L38.65,76.1Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M27.03,71.62C23.96,80.21 14.29,85.36 11.93,94.19C11.71,94.99 11.59,95.92 12.06,96.62C12.58,97.38 13.67,97.55 14.53,97.25C15.4,96.96 16.09,96.29 16.69,95.6C19.62,92.32 21.57,88.31 23.48,84.35C25.47,80.24 27.5,75.88 27.17,71.33"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M26.25,71.41C23.55,78.83 16.3,83.3 12.68,90.18C11.83,91.79 10.74,93.98 10.97,95.86C11.21,97.83 13.29,98.62 15,97.93C17.01,97.12 18.47,94.82 19.63,93.11C20.95,91.16 22.05,89.07 23.09,86.97C25.5,82.11 28.3,76.92 27.98,71.33C27.91,70.31 26.32,70.31 26.38,71.33C26.66,75.95 24.62,80.18 22.66,84.23C20.7,88.28 18.89,92.1 15.94,95.26C15.34,95.9 14.58,96.66 13.62,96.6C12.27,96.52 12.5,95.11 12.76,94.17C13.23,92.51 13.99,90.97 14.9,89.52C16.77,86.56 19.23,84.04 21.53,81.42C24.06,78.54 26.46,75.49 27.78,71.84C28.14,70.88 26.59,70.46 26.25,71.42L26.25,71.41Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M68.48,18.66C68.11,19.36 67.75,20.06 67.45,20.8C67.15,21.53 66.82,22.39 67.11,23.17C67.2,23.41 67.33,23.59 67.57,23.69C67.79,23.78 68.07,23.79 68.28,23.65C68.93,23.2 69.22,22.48 69.53,21.79C69.87,21.06 70.19,20.32 70.43,19.55C70.56,19.15 70.29,18.66 69.87,18.57C69.44,18.47 69.03,18.71 68.9,19.13C68.79,19.46 68.68,19.78 68.55,20.1C68.51,20.19 68.48,20.29 68.44,20.37C68.49,20.24 68.41,20.42 68.4,20.45C68.33,20.61 68.26,20.76 68.19,20.92C68.05,21.22 67.9,21.53 67.76,21.82C67.69,21.95 67.62,22.07 67.55,22.19C67.47,22.32 67.66,22.09 67.53,22.21C67.5,22.24 67.47,22.26 67.44,22.29C67.53,22.23 67.54,22.22 67.47,22.27L68.63,22.75C68.62,22.7 68.61,22.66 68.59,22.62C68.57,22.53 68.57,22.53 68.59,22.63C68.57,22.6 68.59,22.47 68.59,22.43C68.59,22.33 68.6,22.33 68.59,22.43C68.6,22.38 68.61,22.33 68.62,22.29C68.63,22.22 68.66,22.16 68.67,22.09C68.72,21.92 68.77,21.77 68.83,21.61C68.85,21.53 68.88,21.46 68.92,21.38C68.93,21.35 69.02,21.12 68.96,21.27C69.22,20.65 69.54,20.05 69.85,19.46C70.04,19.09 69.96,18.57 69.57,18.37C69.2,18.18 68.68,18.26 68.48,18.65V18.66Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M48.43,17.96L47.22,20.05L46.59,21.12C46.35,21.54 46.01,21.99 46.17,22.51C46.33,23.02 46.77,23.28 47.27,23.28C47.67,23.28 48.03,23.11 48.35,22.87C48.9,22.44 49.25,21.85 49.53,21.22C49.88,20.39 50.21,19.56 50.54,18.73C50.7,18.34 50.37,17.84 49.98,17.75C49.52,17.64 49.17,17.89 49.01,18.31C48.76,18.91 48.52,19.52 48.27,20.12C48.24,20.19 48.21,20.26 48.18,20.32C48.16,20.39 48.13,20.49 48.17,20.36C48.13,20.49 48.06,20.61 48.01,20.73C47.95,20.84 47.89,20.95 47.84,21.05C47.8,21.11 47.69,21.37 47.62,21.38C47.62,21.38 47.72,21.26 47.66,21.34C47.64,21.36 47.62,21.38 47.6,21.41C47.56,21.45 47.52,21.49 47.48,21.53C47.47,21.55 47.37,21.65 47.35,21.65C47.34,21.65 47.48,21.57 47.39,21.62C47.35,21.64 47.33,21.66 47.29,21.68C47.26,21.7 47.14,21.75 47.26,21.7C47.38,21.66 47.3,21.69 47.27,21.7C47.13,21.73 47.43,21.7 47.29,21.7C47.15,21.7 47.45,21.74 47.33,21.7C47.59,21.78 47.76,22.08 47.69,22.34C47.64,22.57 47.72,22.34 47.76,22.29L47.88,22.08L48.14,21.63L48.64,20.75L49.8,18.77C50.01,18.41 49.89,17.89 49.52,17.68C49.14,17.47 48.65,17.58 48.42,17.96L48.43,17.96Z"
android:fillColor="#E8E8E8"/>
</group>
</vector>

View File

@ -0,0 +1,52 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="120dp"
android:height="120dp"
android:viewportWidth="120"
android:viewportHeight="120">
<group>
<clip-path
android:pathData="M0,0h120v120h-120z"/>
<path
android:pathData="M61.77,8.55C39.81,8.61 17.86,20.55 6.88,39.67C-4.1,58.8 -1.88,81.36 10.36,98.28C16.89,107.31 25.98,113.58 36.67,116.72C43.21,118.64 50.06,119.46 56.85,119.83C63.64,120.2 70.91,120.03 77.67,118.19C89.11,115.09 98.71,107.14 105.14,97.36C112.41,86.32 115.57,73.01 116.26,59.95C116.62,53.21 116.33,46.34 113.64,40.05C111.15,34.22 107.01,29.22 102.44,24.89C93.41,16.35 81.96,9.87 69.47,8.38C66.43,8.02 63.38,8 60.34,8.31C58.47,8.5 58.46,11.43 60.34,11.24C72.36,10.01 84.03,14.45 93.68,21.4C98.57,24.93 103.19,29.2 106.79,34.06C110.39,38.92 112.8,44.8 113.31,51.1C113.81,57.39 113.28,64.13 112.18,70.47C111.09,76.81 109.35,82.93 106.64,88.68C101.83,98.91 93.99,107.84 83.71,112.83C78.08,115.56 71.89,116.74 65.67,117C59.11,117.26 52.4,116.84 45.93,115.79C34.87,113.98 24.56,109.7 16.79,101.47C3.49,87.41 -0.84,65.53 6.3,47.57C14.01,28.12 33.71,14.62 54.2,11.96C56.71,11.63 59.23,11.48 61.77,11.47C63.66,11.47 63.67,8.54 61.77,8.54V8.55Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M97.9,21.81C105.68,19.09 112.79,14.5 118.46,8.53C118.93,11.33 118,14.16 116.99,16.82C114.91,22.25 112.38,27.5 109.85,32.73C106.69,28.81 103.09,25.23 99.14,22.09"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M98.3,23.23C106.33,20.39 113.61,15.73 119.5,9.57L117.05,8.92C117.6,12.91 115.35,17.2 113.81,20.75C112.18,24.55 110.38,28.27 108.58,32L110.89,31.7C107.72,27.77 104.14,24.21 100.19,21.06C98.73,19.89 96.63,21.95 98.11,23.13C102.06,26.29 105.64,29.85 108.81,33.77C109.38,34.48 110.74,34.27 111.12,33.48C113.11,29.36 115.09,25.25 116.86,21.04C118.63,16.84 120.51,12.69 119.87,8.14C119.71,7.02 118.11,6.77 117.41,7.5C111.88,13.28 105.06,17.73 97.5,20.41C95.73,21.03 96.5,23.87 98.29,23.23H98.3Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M28.84,19.12C22.69,13.28 16.57,7.39 10.5,1.45C10.18,12.59 9.87,23.74 9.55,34.88C13.74,28.01 20.35,22.63 27.94,19.89"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M29.88,18.08C23.73,12.24 17.61,6.35 11.55,0.42C10.62,-0.49 9.07,0.19 9.04,1.46C8.72,12.6 8.4,23.75 8.09,34.89C8.05,36.39 10.08,36.84 10.83,35.64C14.88,29.08 21.08,23.98 28.34,21.32C30.1,20.67 29.35,17.84 27.56,18.49C19.56,21.43 12.76,26.92 8.28,34.16L11.03,34.9C11.35,23.76 11.67,12.61 11.98,1.47L9.48,2.51C15.54,8.44 21.66,14.33 27.81,20.18C29.18,21.48 31.26,19.41 29.89,18.11L29.88,18.08Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M95.24,32.82C86.51,40.57 80.35,51.13 77.91,62.51C82.21,63.64 86.9,62.08 90.35,59.29C93.8,56.49 96.18,52.59 98.1,48.6C99.66,45.32 100.98,41.87 101.26,38.26C101.41,36.33 101.15,34.14 99.67,32.88C98.19,31.62 95.28,32.24 95.12,34.18"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M94.19,31.78C85.29,39.74 79.03,50.47 76.49,62.12C76.32,62.88 76.71,63.73 77.51,63.93C85.46,65.86 92.53,60.62 96.64,54.27C98.81,50.91 100.63,47.13 101.77,43.3C102.76,39.98 103.7,35.28 101.19,32.36C99.19,30.02 94.2,30.2 93.68,33.78C93.42,35.63 96.25,36.43 96.52,34.57C96.67,33.57 97.97,33.45 98.7,33.98C99.91,34.87 99.87,36.94 99.77,38.26C99.47,42.35 97.68,46.32 95.77,49.9C92.43,56.18 86.25,63.02 78.29,61.09L79.31,62.9C81.75,51.69 87.7,41.51 96.26,33.85C97.67,32.59 95.58,30.52 94.18,31.78H94.19Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M37.71,58.54C38.02,50.78 37.61,42.89 34.44,35.79C33.65,34.04 32.64,32.34 31.1,31.18C29.57,30.03 27.42,29.55 25.68,30.36C24.27,31.02 23.31,32.41 22.89,33.91C22.48,35.41 22.54,36.99 22.72,38.53C23.42,44.44 25.88,50.12 29.7,54.69C31.72,57.11 34.71,59.39 37.76,58.59"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M39.18,58.54C39.39,52.99 39.25,47.38 38.01,41.93C37,37.48 35.21,31.36 30.68,29.24C28.53,28.24 25.99,28.2 24.04,29.66C21.99,31.18 21.17,33.73 21.11,36.2C21,41.28 22.84,46.64 25.34,51.01C27.84,55.37 32.29,61.27 38.15,60C40,59.59 39.21,56.77 37.36,57.17C33.36,58.05 30.05,53.13 28.3,50.24C26.18,46.75 24.75,42.81 24.22,38.75C23.95,36.72 23.79,34.28 25.18,32.58C26.48,31.01 28.65,31.23 30.19,32.35C31.74,33.48 32.65,35.3 33.37,37.01C34.22,39.05 34.85,41.2 35.31,43.37C36.36,48.36 36.42,53.49 36.23,58.55C36.16,60.44 39.11,60.44 39.17,58.55L39.18,58.54Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M1.62,62.02C9.12,63.13 16.58,64.42 24.01,65.92C31.44,67.42 38.71,69.2 46.07,70.84C53.43,72.47 60.84,73.64 68.37,74.03C75.91,74.42 83.58,74.28 91.17,74.14C99.43,73.99 107.77,73.51 115.77,71.26C117.59,70.76 116.82,67.92 114.99,68.44C107.92,70.41 100.6,70.98 93.29,71.17C85.98,71.35 78.29,71.46 70.81,71.2C63.33,70.95 56.01,69.99 48.71,68.42C41.41,66.85 34.37,65.07 27.16,63.58C18.96,61.88 10.7,60.43 2.41,59.21C0.56,58.93 -0.25,61.76 1.62,62.03V62.02Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M84.59,73.19C84.88,80.84 84.72,88.52 84.1,96.15C84.01,97.23 85.42,98.02 86.32,97.42C96.81,90.34 106.24,81.78 114.23,71.98C115.42,70.53 113.35,68.44 112.15,69.91C104.32,79.51 95.12,87.95 84.83,94.89L87.05,96.16C87.68,88.53 87.85,80.85 87.54,73.2C87.47,71.31 84.53,71.3 84.6,73.2L84.59,73.19Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M52.29,71.96C52.29,81.14 52.29,90.32 52.3,99.5C52.3,100.51 53.24,101.1 54.16,100.92C57.22,100.31 59.6,98.28 61.87,96.27C64.48,93.96 67.02,91.58 69.52,89.15C74.44,84.34 79.14,79.3 83.59,74.04C84.8,72.61 82.74,70.52 81.51,71.97C77.26,76.99 72.79,81.81 68.11,86.43C65.79,88.71 63.42,90.94 61.01,93.11C58.77,95.14 56.48,97.47 53.4,98.09L55.26,99.5C55.26,90.32 55.26,81.14 55.25,71.96C55.25,70.07 52.3,70.06 52.3,71.96H52.29Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M16.87,65.51C16.87,74.66 16.87,83.8 16.87,92.94C16.87,93.89 17.81,94.62 18.73,94.36C24.53,92.72 29.18,88.26 33.76,84.58C38.93,80.43 44.03,76.21 49.08,71.93C50.52,70.7 48.43,68.64 47,69.86C42.2,73.93 37.34,77.95 32.44,81.9C30.11,83.78 27.81,85.68 25.41,87.49C23.01,89.29 20.72,90.76 17.95,91.54L19.81,92.96C19.81,83.82 19.81,74.68 19.81,65.53C19.81,63.65 16.87,63.64 16.87,65.53V65.51Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M17.49,64.34C12.52,68.8 7.33,72.97 1.91,76.86C1.26,77.32 0.96,78.14 1.38,78.86C1.75,79.49 2.75,79.85 3.39,79.39C9.01,75.35 14.42,71.03 19.57,66.42C20.99,65.16 18.9,63.08 17.49,64.34Z"
android:fillColor="#E8E8E8"/>
</group>
</vector>

View File

@ -0,0 +1,22 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="149dp"
android:height="120dp"
android:viewportWidth="149"
android:viewportHeight="120">
<group>
<clip-path
android:pathData="M0.23,0h148v119.93h-148z"/>
<path
android:pathData="M68.25,73.02C56.69,85.64 45.13,98.26 33.57,110.88L35.58,112.06C40.42,98.94 47.36,86.6 56.09,75.67C56.8,74.78 56.17,73.31 54.92,73.66C39.43,77.89 23.94,82.11 8.46,86.35L9.39,88.56C21.54,81.31 32.45,72.04 41.54,61.19C42.32,60.26 41.59,58.92 40.37,59.18C28.17,61.66 15.98,64.13 3.79,66.61L4.72,68.82C12.69,64.42 20.68,60.03 28.65,55.64C29.61,55.12 29.32,53.75 28.37,53.44C19.48,50.47 10.82,46.87 2.44,42.65L1.83,44.91C9.05,44.73 16.28,44.92 23.49,45.46C24.65,45.55 24.92,44.14 24.34,43.4C17.61,34.91 11.76,25.75 6.85,16.09L5.2,17.74C15.41,25.13 25.27,32.99 34.76,41.27C35.47,41.89 36.92,41.54 36.82,40.42C35.76,28.69 34.69,16.96 33.63,5.22L31.38,5.84C37.49,15.81 43.59,25.79 49.7,35.76C50.25,36.66 51.6,36.47 51.9,35.48C55.32,24.44 57.87,13.16 59.53,1.73L57.32,2.02C61.18,10.32 63.76,19.17 65.05,28.23C65.19,29.25 66.83,29.4 67.25,28.51C71.19,20.38 74.73,12.04 77.85,3.56L75.48,3.24C75.9,11.79 75.48,20.38 74.17,28.83C74.01,29.87 74.95,30.71 75.94,30.2C88.52,23.71 100.8,16.66 112.74,9.09L111.28,7.19C105.11,13.28 98.93,19.36 92.76,25.45C91.94,26.27 92.77,27.87 93.94,27.47C109.26,22.23 124.58,17 139.9,11.76L138.73,9.74C127.56,18.72 116.39,27.7 105.23,36.68C104.56,37.22 104.91,38.56 105.76,38.69C119.41,40.9 133.05,43.09 146.7,45.3L147.02,42.92C135.36,42.82 123.73,43.58 112.19,45.19C111.04,45.36 111.18,46.87 111.9,47.4C116.65,50.89 121.33,54.47 125.92,58.17C130.95,62.23 136.07,66.38 140.43,71.18C141.23,72.05 141.94,72.88 142.56,73.85C142.7,74.07 142.83,74.28 142.94,74.5C143.03,74.66 143.16,75 143.1,74.84C143.16,75 143.21,75.16 143.25,75.32C143.27,75.44 143.36,75.53 143.25,75.26C143.28,75.33 143.25,75.45 143.25,75.53L145.07,74.48C132.98,67.73 120.55,60.86 106.74,58.47C105.72,58.3 104.83,59.27 105.37,60.24C112.12,72.37 118.88,84.5 125.63,96.62C127.54,100.07 129.46,103.52 131.38,106.96L133.03,105.31C120.11,97.89 107.89,89.27 96.59,79.53C93.39,76.78 90.26,73.93 87.21,71.01C86.47,70.3 85.14,70.8 85.15,71.87C85.34,87.54 83.29,103.18 79.06,118.28H81.39C76.43,103.83 72.94,88.87 71.06,73.71C70.87,72.19 68.46,72.16 68.65,73.71C70.56,89.09 74.03,104.25 79.05,118.92C79.43,120.02 81.05,120.12 81.38,118.92C85.67,103.63 87.75,87.76 87.56,71.88L85.5,72.73C96.37,83.13 108.21,92.52 120.83,100.71C124.43,103.04 128.09,105.27 131.8,107.41C132.87,108.02 134.04,106.81 133.45,105.76C126.7,93.64 119.95,81.51 113.2,69.39C111.28,65.94 109.36,62.49 107.45,59.04L106.08,60.82C119.71,63.16 131.91,69.92 143.84,76.58C144.67,77.04 145.6,76.45 145.66,75.53C145.77,73.76 144.26,72 143.22,70.73C141.39,68.5 139.27,66.51 137.15,64.57C131.82,59.71 126.16,55.22 120.45,50.83C118.03,48.97 115.58,47.13 113.13,45.32L112.84,47.53C124.16,45.95 135.6,45.24 147.03,45.35C148.35,45.36 148.73,43.2 147.35,42.97C133.7,40.77 120.06,38.57 106.41,36.37L106.94,38.38C118.11,29.4 129.27,20.42 140.43,11.44C141.37,10.69 140.36,9.05 139.26,9.43C123.94,14.67 108.61,19.9 93.29,25.14L94.47,27.16C100.64,21.07 106.82,14.99 112.99,8.9C113.95,7.95 112.7,6.25 111.53,7C99.58,14.59 87.3,21.63 74.73,28.11L76.5,29.48C77.85,20.8 78.33,12.02 77.89,3.24C77.82,1.84 75.98,1.65 75.51,2.92C72.46,11.22 69,19.35 65.14,27.3L67.35,27.58C66.03,18.31 63.32,9.3 59.38,0.8C58.96,-0.1 57.32,0.07 57.18,1.09C55.51,12.51 52.96,23.8 49.55,34.83L51.76,34.55C45.65,24.57 39.54,14.6 33.44,4.62C32.86,3.67 31.08,3.98 31.18,5.23C32.25,16.96 33.31,28.69 34.37,40.42L36.43,39.57C26.78,31.14 16.74,23.17 6.38,15.65C5.32,14.88 4.23,16.33 4.73,17.3C9.74,27.14 15.74,36.45 22.61,45.1L23.46,43.04C16.25,42.51 9.03,42.33 1.81,42.49C0.67,42.51 0.08,44.18 1.19,44.74C9.75,49.05 18.61,52.74 27.7,55.77L27.41,53.57C19.44,57.96 11.45,62.35 3.48,66.74C2.23,67.43 3.11,69.22 4.41,68.95C16.61,66.47 28.8,63.99 40.99,61.51L39.81,59.49C30.85,70.19 20.14,79.33 8.15,86.48C6.98,87.18 7.74,89.05 9.08,88.69C24.56,84.46 40.05,80.23 55.54,75.99L54.36,73.98C45.35,85.24 38.21,97.88 33.23,111.42C32.81,112.56 34.46,113.45 35.24,112.6C46.8,99.98 58.36,87.36 69.92,74.73C70.96,73.59 69.27,71.88 68.21,73.03L68.25,73.02Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M63.06,40.38C63.15,42.65 63.56,44.91 64.31,47.05C64.52,47.65 65.14,48.11 65.8,47.89C66.38,47.71 66.87,47.04 66.64,46.41C65.91,44.33 65.55,42.43 65.47,40.38C65.45,39.76 64.93,39.14 64.26,39.18C63.63,39.2 63.03,39.71 63.05,40.38H63.06Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M69.63,38.44C69.73,41.36 70.24,44.27 71.14,47.05C71.35,47.67 71.98,48.07 72.63,47.89C73.23,47.73 73.67,47.03 73.47,46.41C72.62,43.8 72.14,41.16 72.04,38.44C72.02,37.79 71.5,37.23 70.83,37.23C70.16,37.23 69.6,37.79 69.63,38.44Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M55.07,46.77C58.23,52.05 62.58,56.56 67.78,59.85C70.37,61.49 73.37,63.12 76.54,62.92C79.71,62.73 81.94,60.91 83.09,58.06C84.56,54.47 84.98,50.32 84.87,46.48C84.83,44.93 82.42,44.92 82.46,46.48C82.52,48.55 82.4,50.61 82.04,52.64C81.75,54.33 81.38,56.15 80.63,57.7C78.92,61.19 75,60.91 71.95,59.44C65.81,56.48 60.64,51.37 57.15,45.55C56.35,44.22 54.27,45.43 55.07,46.77Z"
android:fillColor="#E8E8E8"/>
</group>
</vector>

View File

@ -0,0 +1,52 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="149dp"
android:height="148dp"
android:viewportWidth="149"
android:viewportHeight="148">
<group>
<clip-path
android:pathData="M0.27,0h148.46v148h-148.46z"/>
<path
android:pathData="M83.15,71.48C83.62,68.97 84.64,66.63 85.38,64.2C86.13,61.78 86.46,59.22 85.91,56.65C85.34,53.96 84.28,51.31 83.3,48.74C82.31,46.17 81.23,43.64 80.06,41.15C79.13,39.17 78.13,36.83 76.03,35.85C73.64,34.73 71.04,35.74 68.78,36.68C66.3,37.71 63.7,38.75 61.43,40.16C59.42,41.41 58.94,43.76 60.36,45.69C61.79,47.62 64.16,48.12 66.33,48.23C69.36,48.39 72.48,47.93 75.4,47.17C76.66,46.85 76.13,44.89 74.86,45.22C72.48,45.84 70.06,46.18 67.61,46.22C65.99,46.25 64.14,46.15 62.75,45.21C62.16,44.82 61.64,44.21 61.54,43.48C61.37,42.31 62.54,41.83 63.4,41.38C65.52,40.28 67.7,39.28 69.92,38.38C71.73,37.65 74.12,36.66 75.83,38.1C77.33,39.35 78.07,41.6 78.86,43.32C80.79,47.56 82.68,52.03 83.82,56.56C84.46,59.1 84.14,61.48 83.36,63.94C82.62,66.27 81.66,68.53 81.22,70.94C80.98,72.22 82.93,72.77 83.17,71.48H83.15Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M66.56,48.36C67.32,48.66 68.16,48.78 68.95,48.95C69.41,49.04 69.88,49.14 70.34,49.27C70.55,49.33 70.76,49.39 70.96,49.46C71.05,49.49 71.15,49.52 71.23,49.56C71.35,49.6 71.23,49.56 71.21,49.54C71.26,49.56 71.32,49.59 71.37,49.62C71.44,49.65 71.52,49.7 71.59,49.74C71.68,49.79 71.75,49.87 71.62,49.75C71.84,49.95 72.07,50.16 72.25,50.4C72.57,50.81 72.81,51.29 72.91,51.79C73.08,52.72 72.62,53.56 71.89,54.17C71.49,54.5 70.99,54.74 70.53,54.99C70.45,55.03 70.26,55.11 70.45,55.04C70.36,55.07 70.28,55.09 70.19,55.11C69.99,55.18 70.24,55.13 70.05,55.13C69.87,55.14 69.69,55.15 69.52,55.16C68.22,55.2 68.22,57.23 69.52,57.19C70.14,57.17 70.73,57.12 71.3,56.86C71.77,56.64 72.26,56.36 72.69,56.07C73.91,55.24 74.79,54.01 74.94,52.53C75.08,51.06 74.35,49.62 73.34,48.6C72.54,47.8 71.5,47.47 70.42,47.21C69.35,46.96 68.14,46.83 67.07,46.42C66.57,46.21 65.96,46.64 65.83,47.13C65.67,47.7 66.02,48.17 66.53,48.37L66.56,48.36Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M50.85,53.81C54.23,53.6 57.64,53.73 60.99,54.28C63.58,54.7 66.24,55.28 68.5,56.67C69.71,57.4 73.65,61 70.88,62.04C69.96,62.39 68.92,62.38 67.96,62.42C66.91,62.47 65.85,62.49 64.8,62.58C63.51,62.69 63.5,64.71 64.8,64.6C66.7,64.44 68.64,64.55 70.53,64.21C71.57,64.03 72.63,63.6 73.26,62.72C74.03,61.65 73.9,60.29 73.4,59.15C71.44,54.59 65.98,53.04 61.52,52.32C57.99,51.74 54.41,51.56 50.84,51.78C49.54,51.86 49.54,53.89 50.84,53.8L50.85,53.81Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M49.35,62.1C52.23,62.14 55.1,62.41 57.93,62.96C60.52,63.45 63.29,64.03 65.58,65.39C66.55,65.97 67.41,66.77 67.95,67.78C68.32,68.45 68.91,70.36 67.8,70.61C67.24,70.73 66.57,70.67 66,70.68C65.24,70.7 64.47,70.71 63.7,70.71C62.29,70.71 60.86,70.67 59.44,70.61C56.15,70.47 52.86,70.15 49.6,69.67C48.32,69.49 47.77,71.44 49.06,71.63C52.45,72.13 55.85,72.47 59.27,72.63C60.97,72.7 62.66,72.73 64.35,72.73C65.17,72.73 65.99,72.71 66.81,72.68C67.55,72.66 68.36,72.66 69.04,72.3C70.24,71.67 70.54,70.12 70.4,68.88C70.24,67.55 69.59,66.37 68.72,65.38C66.7,63.08 63.54,62.16 60.68,61.48C56.97,60.58 53.16,60.12 49.34,60.06C48.04,60.04 48.04,62.07 49.34,62.09L49.35,62.1Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M52.35,44.17C54.72,43.96 57.08,44.12 59.4,44.65C59.93,44.77 60.49,44.48 60.65,43.94C60.79,43.42 60.48,42.82 59.94,42.69C57.46,42.12 54.89,41.92 52.36,42.13C51.81,42.18 51.35,42.57 51.35,43.15C51.35,43.66 51.81,44.21 52.36,44.16L52.35,44.17Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M83.29,66.13C84.78,70.29 86.67,74.45 89.89,77.57C93.12,80.69 97.57,82.49 101.81,84.12C103.02,84.59 103.55,82.63 102.35,82.17C98.45,80.66 94.39,79.09 91.33,76.14C88.28,73.19 86.62,69.42 85.25,65.6C84.81,64.38 82.86,64.9 83.3,66.14L83.29,66.13Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M82.36,100.83C77.53,94.8 71.74,89.6 65.27,85.39C64.18,84.67 63.16,86.43 64.25,87.14C70.58,91.26 76.21,96.37 80.94,102.26C81.76,103.28 83.18,101.83 82.37,100.83H82.36Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M73.15,84.78C70.9,84.78 68.66,84.78 66.42,84.78C65.47,84.78 64.51,84.83 63.56,84.76C62.5,84.69 61.65,84.28 60.79,83.67C57.2,81.18 53.73,78.51 50.2,75.92C48.45,74.63 46.69,73.34 44.93,72.05C43.57,71.05 42.03,70.03 41.11,68.56C39.28,65.58 43.07,63.41 43.49,60.58C43.64,59.52 43.3,58.59 43.02,57.57C42.78,56.74 42.71,55.86 42.84,55C43.11,53.25 44.08,51.64 45.55,50.65C46,50.35 46.21,49.75 45.92,49.27C44.98,47.73 44.19,45.84 44.69,44.03C45.07,42.65 46.45,41.28 47.97,41.55C48.57,41.66 49.3,41.29 49.25,40.57C49.14,38.89 48.94,36.75 50.23,35.44C51.45,34.19 53.49,34.04 55.13,33.96C59.19,33.76 63.25,34.67 66.84,36.55C67.99,37.15 69.02,35.41 67.86,34.8C63.62,32.58 58.73,31.53 53.95,32.02C51.99,32.22 49.88,32.7 48.54,34.28C47.06,36.03 47.08,38.42 47.22,40.58L48.5,39.6C46.13,39.18 43.91,40.62 42.98,42.8C41.92,45.29 42.82,48.1 44.16,50.29L44.53,48.9C41.56,50.89 40.07,54.66 41.07,58.11C41.33,59.03 41.7,59.86 41.36,60.8C41.1,61.56 40.6,62.21 40.15,62.87C39.17,64.29 38.33,65.8 38.61,67.59C38.89,69.39 40.09,70.74 41.36,71.84C43.05,73.31 44.95,74.56 46.75,75.88C50.63,78.72 54.51,81.57 58.39,84.41C59.34,85.1 60.25,85.85 61.34,86.3C62.43,86.75 63.58,86.8 64.74,86.8C67.55,86.8 70.35,86.79 73.15,86.79C74.46,86.79 74.46,84.76 73.15,84.76L73.15,84.78Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M91.56,120.53C89.45,119.13 87.33,117.73 85.22,116.33C83.62,115.27 81.88,114 81.53,112.11C81.2,110.35 82.2,108.64 83.17,107.14C88.71,98.66 95.05,90.7 102.08,83.42L101.01,84.69C103.31,82.51 104.36,81.34 106.54,81.4C107.39,81.42 108.18,81.84 108.9,82.3C111.62,84.03 113.94,86.33 116.23,88.6C116.23,88.6 109.35,99.92 106.69,103.45C103.25,108 91.58,120.55 91.58,120.55L91.56,120.53Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M92.08,119.66C90.7,118.75 89.32,117.83 87.94,116.92C86.72,116.11 85.42,115.35 84.28,114.42C83.26,113.57 82.35,112.5 82.49,111.09C82.64,109.58 83.66,108.24 84.47,107.01C87.92,101.77 91.68,96.74 95.73,91.95C98,89.27 100.36,86.67 102.79,84.13L101.36,82.7L100.29,83.97C99.46,84.96 100.77,86.31 101.73,85.4C103.58,83.65 105.47,81.42 108.15,83.02C110.83,84.62 113.23,87.04 115.52,89.31L115.36,88.08C112.6,92.62 109.82,97.19 106.79,101.56C105.3,103.72 103.56,105.7 101.82,107.7C99.58,110.28 97.29,112.81 94.99,115.33C93.62,116.83 92.24,118.33 90.86,119.81C89.98,120.76 91.4,122.2 92.29,121.24C95.74,117.54 99.14,113.8 102.48,110.01C104.35,107.88 106.26,105.75 107.93,103.45C109.82,100.84 111.52,98.09 113.23,95.36C114.54,93.28 115.83,91.18 117.11,89.08C117.34,88.7 117.27,88.17 116.96,87.85C115.59,86.5 114.23,85.15 112.77,83.9C111.31,82.65 109.86,81.44 108.16,80.73C104.94,79.38 102.45,81.91 100.31,83.94L101.74,85.38L102.81,84.11C103.64,83.13 102.29,81.72 101.38,82.67C96.65,87.58 92.25,92.77 88.18,98.22C86.14,100.95 84.17,103.75 82.32,106.6C81.47,107.91 80.64,109.33 80.49,110.92C80.34,112.52 80.95,113.83 81.95,114.95C83.03,116.17 84.49,117.02 85.84,117.91C87.58,119.06 89.33,120.22 91.08,121.38C92.16,122.1 93.18,120.35 92.1,119.63L92.08,119.66Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M119.31,146.1C113.08,142.39 107.2,138.13 101.74,133.36C100.37,132.16 99.02,130.93 97.71,129.67C96.61,128.62 95.19,127.5 94.61,126.04C93.94,124.38 95.27,122.93 96.29,121.76C97.46,120.41 98.75,119.16 100.06,117.95C102.64,115.55 105.22,113.19 107.5,110.51C109.78,107.82 111.79,105.03 113.73,102.15C115.71,99.21 117.6,96.2 119.54,93.22C119.99,92.53 120.45,91.83 120.91,91.15C121.36,90.5 121.89,89.75 122.76,89.87C124.34,90.08 125.84,91.31 127.01,92.28C130.1,94.82 133.19,97.31 136.52,99.54C139.85,101.77 143.5,103.86 147.18,105.67C148.35,106.24 149.38,104.5 148.2,103.92C141.27,100.52 134.87,96.26 128.97,91.29C126.7,89.38 122.71,86.09 119.99,89.04C118.8,90.33 117.92,91.98 116.97,93.45C115.95,95.02 114.94,96.6 113.92,98.17C111.87,101.31 109.78,104.44 107.45,107.38C105.11,110.32 102.48,112.97 99.7,115.52C98.31,116.79 96.92,118.07 95.63,119.45C94.47,120.71 93.1,122.12 92.57,123.8C91.45,127.34 95.22,130.17 97.47,132.26C103.83,138.18 110.82,143.41 118.27,147.87C119.39,148.53 120.41,146.79 119.29,146.12L119.31,146.1Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M74.94,35.23C74.52,31.28 74.19,29.78 73.31,25.9C71.08,27.23 68.86,28.57 66.63,29.9C65.39,26.06 63.5,22.44 61.06,19.23L53.8,25.68C52.05,23.4 50.03,21.33 47.79,19.53C46.65,23.82 45.13,28.01 43.26,32.03C40.97,30.9 38.69,29.78 36.41,28.65C37.14,32.59 37.57,36.59 37.69,40.59C34.89,40.34 32.06,40.36 29.26,40.66C32.28,45.27 35.29,49.87 38.31,54.49C34.27,56.15 30.01,57.28 25.68,57.84C27.92,60.45 29.94,63.23 31.74,66.16C32.08,66.71 32.41,67.38 32.15,67.97C31.97,68.38 31.55,68.63 31.14,68.83C27.55,70.67 23.7,71.98 19.73,72.7C24.15,74.87 33,75.29 37.79,76.43C36.69,79.24 31.71,87.92 31.71,87.92C39.14,85.89 46.22,82.31 51.29,79.14C51.29,79.14 37.79,69.68 38.46,66.98C39.14,64.28 42.75,60.88 42.51,59.82C41.84,56.85 39.14,54.82 41.84,52.12C44.54,49.42 42.11,46.44 43.66,43.88C45.21,41.32 47.42,39.3 47.33,39.3C47.23,39.29 47.14,32.9 53.93,33.04C62.77,33.21 70.2,36.59 70.2,36.59L74.93,35.24L74.94,35.23Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M75.95,35.23C75.6,31.98 75.01,28.82 74.29,25.63C74.15,24.99 73.34,24.7 72.8,25.02C70.57,26.35 68.35,27.69 66.12,29.02L67.61,29.63C66.32,25.7 64.42,22.02 61.94,18.71C61.53,18.17 60.88,18.04 60.34,18.51C57.92,20.67 55.51,22.81 53.08,24.97H54.51C52.75,22.68 50.74,20.63 48.5,18.82C47.94,18.35 47.02,18.46 46.81,19.26C45.69,23.47 44.21,27.57 42.38,31.52L43.76,31.15C41.48,30.03 39.2,28.9 36.92,27.78C36.1,27.37 35.27,28.03 35.44,28.92C36.14,32.77 36.55,36.67 36.68,40.59L37.69,39.57C34.88,39.33 32.07,39.35 29.26,39.64C28.55,39.71 27.93,40.46 28.38,41.16C31.4,45.77 34.42,50.38 37.43,54.99L38.04,53.51C34.08,55.13 29.92,56.26 25.67,56.82C24.79,56.94 24.35,57.84 24.95,58.55C26.25,60.07 27.48,61.64 28.63,63.27C29.24,64.12 29.81,64.99 30.37,65.87C30.61,66.25 30.88,66.63 31.07,67.03C31.32,67.55 31.19,67.64 30.73,67.89C27.25,69.78 23.35,70.99 19.46,71.71C18.63,71.87 18.46,73.2 19.22,73.56C22.02,74.92 25.18,75.43 28.22,75.9C31.27,76.37 34.46,76.68 37.52,77.4L36.81,76.15C35.94,78.33 34.59,80.64 33.42,82.78C32.57,84.32 31.71,85.86 30.84,87.39C30.4,88.15 31.12,89.11 31.98,88.87C38.97,86.95 45.66,83.83 51.81,79.99C52.49,79.57 52.43,78.68 51.81,78.24C48.42,75.87 45.08,73.34 42.09,70.49C41.33,69.77 40.51,68.97 39.95,68.16C39.84,67.99 39.73,67.81 39.63,67.64C39.58,67.56 39.54,67.47 39.51,67.39C39.6,67.61 39.51,67.36 39.49,67.33C39.47,67.27 39.47,67.18 39.44,67.12C39.53,67.3 39.44,67.28 39.45,67.14C39.42,67.45 39.44,67.22 39.47,67.14C39.53,66.94 39.59,66.74 39.66,66.55C40.35,64.89 41.59,63.5 42.59,62.04C42.92,61.56 43.26,61.06 43.44,60.5C43.69,59.69 43.33,58.86 43.02,58.12C42.4,56.63 41,54.84 42.15,53.28C42.83,52.35 43.6,51.68 43.96,50.54C44.27,49.55 44.23,48.5 44.17,47.47C44.11,46.66 44.01,45.79 44.26,45C44.59,43.95 45.46,42.97 46.15,42.13C46.65,41.53 47.18,40.95 47.71,40.38C48.08,39.99 48.48,39.61 48.31,39.01C48.27,38.84 47.81,37.94 48.31,39C48.27,38.92 48.29,39.3 48.34,39.18C48.37,39.12 48.33,38.99 48.34,38.91C48.39,38.42 48.34,38.53 48.45,38.06C48.64,37.16 48.97,36.34 49.58,35.64C50.45,34.64 51.71,34.15 53.01,34.05C55.36,33.87 57.85,34.24 60.15,34.66C62.27,35.04 64.36,35.57 66.41,36.23C67.09,36.45 67.76,36.68 68.43,36.93C68.69,37.03 68.94,37.13 69.2,37.23C69.28,37.27 69.36,37.3 69.45,37.33C69.72,37.45 69.39,37.31 69.51,37.36C70.36,37.72 71.06,37.38 71.9,37.14C73,36.82 74.11,36.51 75.21,36.19C76.46,35.83 75.94,33.88 74.67,34.24C73.1,34.69 71.52,35.14 69.94,35.59L70.73,35.69C67.05,34.03 63,33 59.02,32.43C56.2,32.03 52.92,31.49 50.23,32.69C48.58,33.43 47.4,34.83 46.79,36.5C46.54,37.17 46.4,37.87 46.34,38.58C46.31,38.76 46.3,38.95 46.31,39.14C46.31,39.26 46.33,39.4 46.36,39.51C46.36,39.52 46.36,39.53 46.37,39.54L46.47,39.78C46.72,40.13 46.69,40.05 46.38,39.55L46.48,38.77C46.7,38.43 46.32,38.91 46.21,39.03C45.89,39.37 45.58,39.71 45.27,40.05C44.4,41.05 43.57,42.09 42.88,43.22C42.27,44.23 42.07,45.36 42.11,46.53C42.14,47.64 42.36,48.79 42.05,49.88C41.69,51.17 40.44,51.9 39.95,53.14C39.53,54.18 39.64,55.3 40.03,56.32C40.42,57.35 41.04,58.38 41.39,59.46C41.43,59.59 41.47,59.7 41.5,59.82C41.68,60.42 41.52,60.01 41.53,59.95C41.57,59.78 41.51,59.98 41.49,60C41.26,60.3 41.09,60.69 40.87,61.01C39.7,62.71 38.28,64.33 37.62,66.32C37.25,67.43 37.67,68.4 38.33,69.31C40.13,71.8 42.68,73.79 45.07,75.69C46.94,77.17 48.85,78.62 50.81,79.99V78.24C44.8,81.99 38.3,85.03 31.46,86.92L32.61,88.4C33.52,86.82 34.4,85.23 35.28,83.63C36.52,81.36 37.83,79.08 38.78,76.68C38.98,76.18 38.57,75.54 38.08,75.43C35.1,74.73 32.05,74.43 29.03,73.97C26.02,73.51 22.96,73.1 20.26,71.8L20.02,73.65C22.35,73.21 24.65,72.59 26.89,71.78C28.03,71.35 29.16,70.88 30.28,70.36C31.15,69.96 32.27,69.56 32.86,68.75C33.51,67.84 33.26,66.78 32.77,65.87C32.21,64.83 31.51,63.85 30.85,62.88C29.48,60.88 27.99,58.95 26.41,57.11L25.7,58.84C30.13,58.25 34.46,57.14 38.6,55.45C39.17,55.22 39.6,54.56 39.21,53.96C36.19,49.35 33.18,44.74 30.16,40.13L29.28,41.65C32.09,41.36 34.9,41.34 37.71,41.59C38.24,41.64 38.74,41.09 38.72,40.58C38.59,36.48 38.15,32.41 37.41,28.38L35.92,29.52C38.2,30.65 40.49,31.77 42.76,32.9C43.22,33.12 43.9,33.06 44.15,32.53C46.06,28.43 47.61,24.17 48.79,19.79L47.09,20.24C49.33,22.06 51.34,24.12 53.1,26.39C53.45,26.84 54.17,26.72 54.53,26.39C56.95,24.24 59.37,22.09 61.79,19.94L60.2,19.73C62.58,22.9 64.43,26.4 65.66,30.16C65.87,30.77 66.57,31.11 67.15,30.77C69.38,29.44 71.6,28.1 73.83,26.77L72.34,26.16C73.02,29.17 73.61,32.16 73.94,35.23C74.07,36.51 76.1,36.52 75.96,35.23L75.95,35.23Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M43.51,88.37C34.77,92.3 25.58,95.21 16.19,97.09L17.33,98.57C20.65,93.51 23.96,88.46 27.28,83.4C27.61,82.9 27.3,82.02 26.67,81.92C21.98,81.15 17.71,83.43 13.2,84.22L14.19,85.92C16.15,84.34 18.07,82.67 19.8,80.84C20.25,80.37 20.17,79.59 19.6,79.24C15.48,76.77 11.29,74.41 7.04,72.16L6.8,74.01C8.07,73.79 9.3,73.25 10.48,72.77C12.13,72.09 13.76,71.36 15.38,70.63C17,69.9 18.57,69.18 20.18,68.51C21.37,68.03 22.59,67.49 23.86,67.27C24.73,67.12 24.83,65.81 24.1,65.42C17.48,61.81 10.86,58.18 4.18,54.67C3.31,54.21 1.48,52.8 0.53,53.62L1.96,55.05C1.43,55.67 1.39,55.26 1.64,55.27C1.74,55.27 1.86,55.23 1.96,55.22C2.28,55.16 2.61,55.12 2.94,55.07C3.06,55.06 2.84,55.09 3.09,55.05C3.21,55.04 3.32,55.02 3.44,55.01C3.75,54.97 4.05,54.93 4.35,54.89C5,54.81 5.66,54.72 6.31,54.64C9.76,54.21 13.2,53.79 16.65,53.35C20.1,52.91 23.41,52.5 26.79,52.02C27.87,51.87 28.95,51.72 30.03,51.52C30.61,51.41 31.44,51.35 31.77,50.77C32.2,50.04 31.57,49.49 31.07,49.02C30.38,48.35 29.71,47.69 29.04,47C27.74,45.67 26.5,44.3 25.3,42.88C22.86,39.99 20.65,36.92 18.65,33.71L17.77,35.24C22.43,35.44 27.05,36.02 31.7,36.23C32.25,36.25 32.71,35.74 32.71,35.21C32.83,28.64 32.94,21.92 32.1,15.39L30.57,16.27C34.31,18.26 37.62,20.91 40.39,24.12C41.03,24.87 42.01,24.18 42.11,23.41C42.79,18.08 43.69,12.78 44.81,7.53C44.93,6.96 45.01,6.36 45.19,5.81C45.36,5.29 45.53,5.34 45.92,5.69C46.83,6.5 47.44,7.79 48.12,8.79C49.7,11.11 51.26,13.43 52.84,15.76C53.2,16.3 53.94,16.44 54.43,15.96C58.88,11.62 62.79,6.75 66.1,1.49L64.24,1.25C66.27,7.25 67.67,13.44 68.36,19.73C68.46,20.61 69.4,21.06 70.09,20.45C74.08,16.94 78.08,13.43 82.07,9.93L80.34,9.21C79.99,15.59 79.26,21.94 78.12,28.22C77.89,29.5 79.85,30.05 80.07,28.76C81.24,22.3 82.01,15.77 82.36,9.21C82.42,8.27 81.25,7.96 80.64,8.5C76.64,12 72.65,15.51 68.65,19.02L70.38,19.73C69.67,13.26 68.28,6.88 66.19,0.71C65.91,-0.11 64.81,-0.29 64.34,0.47C61.12,5.59 57.32,10.29 52.99,14.52L54.59,14.72C52.7,11.93 50.82,9.15 48.94,6.36C48.23,5.32 47.55,4.07 46.34,3.55C45.13,3.03 43.91,3.65 43.4,4.84C42.84,6.19 42.68,7.8 42.4,9.23C42.11,10.66 41.82,12.24 41.55,13.74C40.99,16.94 40.51,20.17 40.09,23.4L41.82,22.68C38.96,19.36 35.48,16.58 31.61,14.51C31,14.2 29.98,14.57 30.08,15.39C30.92,21.92 30.82,28.64 30.69,35.21L31.71,34.2C27.05,34 22.43,33.42 17.78,33.21C17.02,33.18 16.51,34.1 16.9,34.74C20.61,40.7 25.08,46.16 30.19,50.97L29.89,50.25C29.88,49.96 30.29,49.3 30.53,49.34C30.47,49.33 30.36,49.39 30.31,49.4C30.08,49.45 29.86,49.5 29.63,49.54C28.88,49.68 28.11,49.79 27.36,49.91C25,50.25 22.64,50.56 20.29,50.86C15.05,51.54 9.81,52.16 4.57,52.83C3.68,52.94 2.78,53.05 1.89,53.18C1.48,53.24 0.84,53.25 0.54,53.6C-0.3,54.59 0.98,55.89 1.97,55.03C1.74,55.13 1.49,55.23 1.26,55.33C1.09,55.34 0.81,55.2 1,55.3C1.17,55.38 1.34,55.47 1.52,55.55C2.11,55.85 2.69,56.15 3.26,56.46C5.04,57.39 6.81,58.34 8.58,59.29C12.52,61.42 16.46,63.56 20.4,65.7C21.3,66.18 22.2,66.67 23.09,67.16L23.33,65.31C22.06,65.53 20.83,66.07 19.65,66.55C18,67.24 16.38,67.97 14.76,68.7C13.14,69.42 11.57,70.14 9.95,70.81C8.77,71.3 7.54,71.83 6.27,72.05C5.42,72.21 5.29,73.52 6.03,73.9C10.28,76.15 14.47,78.51 18.59,80.99L18.38,79.39C16.65,81.22 14.74,82.9 12.77,84.47C11.9,85.17 12.88,86.32 13.76,86.17C17.82,85.46 21.93,83.17 26.15,83.86L25.54,82.38C22.23,87.44 18.91,92.49 15.59,97.55C15.07,98.34 15.93,99.19 16.74,99.03C26.31,97.11 35.62,94.11 44.53,90.11C45.72,89.58 44.69,87.83 43.51,88.36L43.51,88.37Z"
android:fillColor="#E8E8E8"/>
</group>
</vector>

View File

@ -0,0 +1,15 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="149dp"
android:height="148dp"
android:viewportWidth="149"
android:viewportHeight="148">
<path
android:pathData="M105.52,12C90.76,12 76.09,14.18 61.34,14.18C60.65,14.18 60.02,14.66 59.83,15.33C54.78,32.98 48.68,50.35 41.48,67.24C39.46,71.99 37.35,76.71 35.17,81.4C34.78,82.24 35.04,83.48 36.1,83.69C42.9,85.07 49.85,85.09 56.66,83.76L54.69,82.25C54.46,97.56 52.74,112.81 48.63,127.58C48.14,129.38 50.49,130.15 51.48,128.78C65.36,109.68 79.11,90.47 92.92,71.32C96.86,65.86 100.81,60.41 104.76,54.97C105.32,54.22 104.76,52.84 103.84,52.69C94.59,51.16 85.22,50.46 75.85,50.62L77.2,52.97C86.53,39.9 96.33,27.16 106.57,14.78C107.85,13.24 105.65,11.03 104.37,12.58C93.97,25.16 84,38.11 74.51,51.4C73.82,52.38 74.75,53.76 75.86,53.75C84.95,53.59 94.04,54.23 103.01,55.71L102.09,53.43C88.21,72.52 74.46,91.73 60.64,110.88C56.7,116.34 52.75,121.79 48.8,127.23L51.65,128.43C55.83,113.41 57.58,97.84 57.81,82.27C57.83,81.2 56.81,80.59 55.84,80.77C49.59,81.98 43.17,81.95 36.93,80.69L37.86,82.98C45.7,66.16 52.52,48.88 58.24,31.22C59.86,26.23 61.39,21.21 62.83,16.15L61.33,17.3C76.08,17.3 90.75,15.12 105.51,15.12C107.53,15.12 107.53,12 105.52,12Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M52.39,126.26C69.44,99.98 85.91,79.07 105.9,54.96C96.98,53.55 88.07,52.14 79.15,50.73C88.27,38.56 97.4,26.41 106.52,14.24L110.9,15.42L111.11,15.14C103.13,26.11 95.14,37.09 87.15,48.05C95.7,46.99 104.46,47.53 112.82,49.63C94.01,79.02 77.57,104.77 58.76,134.16C55.74,131.94 55.55,131.52 51.34,127.31"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M53.99,127.19C66.47,107.97 80.14,89.61 94.51,71.77C98.71,66.57 102.95,61.41 107.22,56.26C108,55.31 107.91,53.41 106.41,53.17C97.48,51.76 88.57,50.35 79.65,48.94L80.76,51.65C89.88,39.48 99.01,27.33 108.13,15.16L106.05,16.01L110.43,17.19C111.3,17.42 112.01,17.01 112.51,16.34L112.72,16.06L109.53,14.19C101.55,25.17 93.56,36.14 85.57,47.11C84.79,48.17 85.82,50.04 87.16,49.89C95.59,48.86 104.1,49.35 112.34,51.4L111.23,48.7C97.25,70.52 83.31,92.35 69.34,114.18C65.29,120.53 61.22,126.87 57.15,133.21L59.68,132.55C57.09,130.62 54.91,128.27 52.64,125.99C50.95,124.3 48.34,126.91 50.02,128.6C52.54,131.12 54.95,133.61 57.82,135.73C58.64,136.34 59.85,135.83 60.35,135.07C74.32,113.24 88.27,91.41 102.24,69.58C106.29,63.23 110.36,56.89 114.42,50.55C115.05,49.56 114.44,48.12 113.32,47.84C104.77,45.72 95.9,45.14 87.16,46.2L88.75,48.98C96.74,38.01 104.73,27.03 112.71,16.07C113.31,15.25 112.85,14.01 112.05,13.54C111.1,12.97 110.12,13.41 109.52,14.2L109.31,14.49L111.4,13.63L107.02,12.45C106.15,12.22 105.44,12.63 104.93,13.31C95.81,25.47 86.68,37.63 77.56,49.79C76.88,50.69 77.56,52.33 78.66,52.5C87.58,53.91 96.49,55.32 105.42,56.73L104.61,53.65C89.84,71.46 75.39,89.53 62.13,108.5C58.25,114.04 54.48,119.64 50.8,125.32C49.51,127.32 52.7,129.18 53.99,127.19Z"
android:fillColor="#E8E8E8"/>
</vector>

View File

@ -0,0 +1,111 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="90dp"
android:height="90dp"
android:viewportWidth="90"
android:viewportHeight="90">
<path
android:pathData="M46.025,77.262V85.698L1.915,60.229V51.794L46.025,77.262Z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#FDA29B"
android:strokeLineCap="round"/>
<path
android:pathData="M46.025,64.29V68.828L9.747,47.88L1.915,43.36V34.925L17.579,43.964L21.064,45.984L36.46,54.869C37.877,56.669 39.37,58.364 40.969,59.953C42.559,61.533 44.244,62.988 46.025,64.29Z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#FDA29B"
android:strokeLineCap="round"/>
<path
android:pathData="M28.561,41.876L9.747,31.009L1.915,26.49V18.055L17.579,27.093L21.064,29.113L25.066,31.421C25.497,33.221 25.985,34.973 26.541,36.696C26.569,36.801 26.608,36.897 26.646,37.003C27.163,38.63 27.814,40.258 28.561,41.876Z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#FDA29B"
android:strokeLineCap="round"/>
<path
android:pathData="M65.173,67.688V76.124L46.024,85.698V77.263L57.341,71.604L65.173,67.688Z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#FDA29B"
android:strokeLineCap="round"/>
<path
android:pathData="M65.174,67.688L57.342,71.604L46.025,77.263L1.915,51.795L9.747,47.879L46.025,68.828L49.519,67.085L57.342,63.169L65.174,67.688Z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#FDA29B"
android:strokeLineCap="round"/>
<path
android:pathData="M64.044,32.272C63.632,31.449 63.182,30.625 62.694,29.792C59.295,23.923 55.226,19.528 50.477,16.589C50.218,16.426 49.96,16.273 49.692,16.12C45.039,13.43 41.027,12.826 37.628,14.31L36.689,14.78C35.933,15.21 35.254,15.727 34.669,16.33C33.061,17.939 32.036,20.16 31.586,22.994C31.404,24.105 31.318,25.302 31.318,26.594C31.318,27.15 31.337,27.715 31.376,28.27C31.433,29.342 31.558,30.424 31.74,31.516C32.161,34.034 32.908,36.581 33.98,39.166C34.363,40.104 34.794,41.042 35.282,41.99C35.703,42.861 36.182,43.733 36.689,44.614C38.327,47.438 40.117,49.918 42.061,52.063C44.388,54.619 46.925,56.697 49.692,58.296C51.224,59.176 52.669,59.837 54.067,60.268H54.077C57.323,61.273 60.195,61.062 62.694,59.636C63.211,59.349 63.68,59.014 64.12,58.64C64.504,58.324 64.858,57.979 65.174,57.597C67.041,55.433 68.008,52.321 68.065,48.261C68.075,48.108 68.075,47.965 68.075,47.812C68.075,42.766 66.734,37.586 64.044,32.272ZM50.984,49.966C50.611,50.176 50.19,50.138 49.692,49.86C49.29,49.621 48.916,49.267 48.61,48.788C48.533,48.692 48.466,48.587 48.409,48.482C48.045,47.85 47.854,47.246 47.854,46.691C47.854,46.136 48.045,45.743 48.409,45.533C48.772,45.322 49.203,45.36 49.692,45.638C50.19,45.925 50.611,46.385 50.984,47.017C51.07,47.18 51.157,47.333 51.224,47.486C51.425,47.945 51.53,48.386 51.53,48.807C51.53,49.372 51.348,49.755 50.984,49.966ZM51.53,42.488L47.854,40.362V23.492L51.53,25.618V42.488Z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#FDA29B"
android:strokeLineCap="round"/>
<path
android:pathData="M51.53,25.618V38.525L47.854,40.363V23.493L51.53,25.618Z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#FDA29B"
android:strokeLineCap="round"/>
<path
android:pathData="M51.53,38.524V42.488L47.854,40.363L51.53,38.524Z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#FDA29B"
android:strokeLineCap="round"/>
<path
android:pathData="M33.979,39.166L32.055,40.133L28.56,41.876C27.813,40.258 27.162,38.63 26.645,37.002C26.607,36.897 26.569,36.801 26.54,36.696C25.985,34.973 25.496,33.221 25.065,31.42L28.55,29.678L31.375,28.271C31.432,29.343 31.557,30.425 31.739,31.516C32.16,34.034 32.907,36.581 33.979,39.166Z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#FDA29B"
android:strokeLineCap="round"/>
<path
android:pathData="M31.586,22.995C31.404,24.105 31.318,25.302 31.318,26.595C31.318,27.15 31.337,27.715 31.376,28.27L28.551,29.678L25.066,31.42L21.064,29.113L17.579,27.093L1.915,18.054L21.064,8.48L34.669,16.331C33.061,17.94 32.036,20.161 31.586,22.995Z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#FDA29B"
android:strokeLineCap="round"/>
<path
android:pathData="M42.061,52.063L39.945,53.125L36.46,54.868L21.064,45.983L17.579,43.963L1.915,34.924L9.747,31.008L28.561,41.875L32.056,40.133L35.282,41.99C35.703,42.861 36.182,43.733 36.689,44.614C38.327,47.438 40.117,49.918 42.061,52.063Z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#FDA29B"
android:strokeLineCap="round"/>
<path
android:pathData="M51.53,48.808C51.53,49.373 51.348,49.756 50.984,49.966C50.611,50.177 50.19,50.139 49.692,49.861C49.29,49.622 48.916,49.267 48.61,48.789C48.533,48.693 48.466,48.588 48.409,48.482C48.045,47.85 47.854,47.247 47.854,46.692C47.854,46.137 48.045,45.744 48.409,45.533C48.773,45.323 49.203,45.361 49.692,45.639C50.19,45.926 50.611,46.386 50.984,47.017C51.07,47.18 51.157,47.333 51.224,47.486C51.425,47.946 51.53,48.387 51.53,48.808Z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#FDA29B"
android:strokeLineCap="round"/>
<path
android:pathData="M54.067,60.269L53.129,60.738L46.025,64.29C44.244,62.988 42.559,61.533 40.97,59.953C39.371,58.363 37.877,56.669 36.46,54.869L39.945,53.126L42.061,52.063C44.388,54.62 46.925,56.697 49.692,58.297C51.224,59.177 52.669,59.838 54.067,60.269Z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#FDA29B"
android:strokeLineCap="round"/>
<path
android:pathData="M65.173,58.401V59.254L57.341,63.169L49.519,67.085L46.024,68.828V64.29L53.129,60.737L54.067,60.268H54.076C57.322,61.274 60.195,61.063 62.694,59.636L64.379,58.794L65.173,58.401Z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#FDA29B"
android:strokeLineCap="round"/>
<path
android:pathData="M87.224,38.237C87.224,44.078 85.433,48.013 81.843,50.062L80.962,50.502L65.174,58.401L64.379,58.794L62.694,59.636C63.211,59.349 63.68,59.014 64.12,58.641C64.503,58.325 64.858,57.98 65.174,57.597C67.041,55.433 68.008,52.321 68.065,48.262C68.075,48.109 68.075,47.965 68.075,47.812C68.075,42.766 66.734,37.586 64.044,32.272C63.632,31.449 63.182,30.626 62.694,29.793C59.295,23.924 55.226,19.529 50.477,16.59C50.218,16.427 49.96,16.274 49.692,16.12C45.039,13.43 41.027,12.827 37.628,14.311L55.839,5.205C59.429,3.157 63.757,3.607 68.841,6.546C73.925,9.476 78.262,14.033 81.843,20.218C85.433,26.403 87.224,32.407 87.224,38.237Z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#FDA29B"
android:strokeLineCap="round"/>
</vector>

View File

@ -0,0 +1,78 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="76dp"
android:height="120dp"
android:viewportWidth="76"
android:viewportHeight="120">
<group>
<clip-path
android:pathData="M0,0h75.48v120h-75.48z"/>
<path
android:pathData="M17.1,21.66C14.4,22.48 13.03,25.39 11.99,28.01C6.93,40.79 6.66,54.62 9.76,68C10.2,69.91 10.91,71.94 12.56,73.01C13.55,73.65 25.96,69.98 27.08,74.46C27.73,77.09 31.31,98.21 32.38,110.28C32.48,111.39 32.52,112.56 32.01,113.55C31.48,114.55 30.48,115.2 29.48,115.73C24.23,118.55 18.05,119.6 12.16,118.69C10.77,118.47 9.33,118.11 8.24,117.22C6.54,115.83 6.05,113.47 5.69,111.29C1.85,87.82 0.79,63.96 1.01,40.17C1.12,29.46 1.55,18.44 5.94,8.68C7.24,5.78 9.07,2.86 12,1.63C14.95,0.4 18.3,1.15 21.4,1.93C22.54,2.21 23.75,2.54 24.52,3.41C25.47,4.47 25.51,6.03 25.5,7.45C25.49,11.91 25.76,19.87 25.45,20.52C24.24,23.07 19.79,20.85 17.1,21.67V21.66ZM13.92,73.14C5.48,74.98 6.24,36.32 11.95,27.76C13.26,25.79 14.36,23.54 15.9,22.49C18.28,20.87 23.2,21.92 25.11,21.84C25.97,21.8 25.88,18.93 25.11,18.55C19.16,15.57 12.5,19.69 10.25,22.47C7.67,25.66 6.53,29.75 5.76,33.78C3.28,46.73 4.03,60.3 7.93,72.89C8.43,74.48 9,76.1 10.1,77.34C13.07,80.65 23.23,79.3 27.08,77.09C27.08,77.09 29.05,69.86 13.93,73.14H13.92Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M16.84,20.71C14.61,21.44 13.15,23.26 12.12,25.29C10.94,27.65 10.07,30.21 9.32,32.73C7.7,38.2 6.87,43.91 6.76,49.61C6.65,55.32 7.28,61.21 8.49,66.88C8.98,69.17 9.53,71.79 11.41,73.38C12.32,74.16 13.12,74.13 14.25,73.99C17.18,73.63 20.14,73.02 23.1,73.24C23.71,73.28 24.31,73.38 24.89,73.58C25.09,73.65 25.28,73.74 25.51,73.88C25.65,73.97 25.64,73.97 25.72,74.04C25.76,74.08 25.96,74.32 25.89,74.22C26.23,74.69 26.31,75.58 26.45,76.26C27.83,83.39 28.91,90.58 29.91,97.77C30.47,101.84 31.01,105.93 31.37,110.03C31.48,111.21 31.65,112.58 30.83,113.56C30.02,114.54 28.67,115.09 27.55,115.6C25.1,116.74 22.43,117.49 19.74,117.83C17.06,118.16 14.31,118.14 11.69,117.61C10.45,117.37 9.22,116.97 8.38,115.98C7.61,115.11 7.25,113.96 6.99,112.85C6.34,110.06 6.02,107.17 5.63,104.34C5.2,101.3 4.81,98.25 4.47,95.2C3.1,82.98 2.38,70.69 2.11,58.4C1.97,52.23 1.95,46.07 2.01,39.9C2.06,34.25 2.2,28.57 3.01,22.97C3.79,17.58 5.11,11.97 7.79,7.18C8.93,5.16 10.5,3.17 12.77,2.4C15.44,1.49 18.36,2.2 21.01,2.86C22.12,3.13 23.47,3.4 24.07,4.49C24.61,5.48 24.52,6.73 24.52,7.82C24.52,9.94 24.56,12.06 24.59,14.19C24.61,15.95 24.66,17.72 24.59,19.48C24.58,19.71 24.57,19.95 24.54,20.19C24.56,20.01 24.59,20.09 24.53,20.19C24.51,20.22 24.53,20.23 24.42,20.35C23.93,20.85 23.14,20.83 22.48,20.81C20.6,20.74 18.7,20.21 16.84,20.73C15.62,21.06 16.14,22.97 17.36,22.63C19.25,22.11 21.26,22.89 23.18,22.78C24.8,22.68 26.34,21.86 26.51,20.11C26.66,18.53 26.58,16.91 26.57,15.32C26.54,13.1 26.5,10.87 26.49,8.65C26.47,6.31 26.65,3.62 24.5,2.11C23.44,1.36 22.1,1.09 20.86,0.79C19.43,0.44 17.98,0.14 16.51,0.03C13.74,-0.17 11.1,0.55 9,2.41C7.14,4.05 5.91,6.31 4.93,8.56C0.12,19.51 0.06,31.74 -0,43.48C-0.06,56.23 0.28,68.99 1.23,81.71C1.71,88.06 2.35,94.4 3.16,100.72C3.57,103.84 4.01,106.96 4.51,110.07C4.9,112.56 5.2,115.3 6.91,117.29C8.62,119.28 11.71,119.72 14.28,119.92C17.07,120.14 19.9,119.91 22.64,119.31C25.37,118.72 28.11,117.72 30.51,116.29C31.65,115.61 32.65,114.74 33.12,113.47C33.55,112.29 33.44,111 33.33,109.76C32.52,101.08 31.18,92.43 29.77,83.83C29.3,80.94 28.83,78.06 28.25,75.2C28.06,74.26 27.86,73.35 27.12,72.65C26.09,71.68 24.62,71.39 23.26,71.28C20.23,71.01 17.05,71.68 14.16,72.03C13.73,72.08 13.3,72.07 12.88,72.11C12.71,72.13 13.14,72.09 12.91,72.11C12.95,72.11 13.12,72.24 13.06,72.17C12.99,72.08 12.81,71.98 12.73,71.92C12.28,71.53 11.95,71.05 11.67,70.53C11.07,69.42 10.8,68.15 10.53,66.91C10.2,65.43 9.91,63.93 9.67,62.43C7.77,50.79 8.62,38.42 13.27,27.5C14.09,25.56 15.22,23.32 17.37,22.62C18.57,22.22 18.05,20.32 16.84,20.71H16.84Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M13.66,72.19C13.53,72.22 13.5,72.22 13.66,72.2C13.58,72.2 13.51,72.22 13.44,72.22C13.33,72.22 12.94,72.17 13.24,72.22C13.11,72.2 12.99,72.16 12.86,72.13C12.82,72.12 12.63,72.05 12.78,72.11C12.93,72.17 12.71,72.07 12.67,72.05C12.56,71.98 12.44,71.91 12.32,71.83C12.47,71.93 12.25,71.76 12.14,71.66C12.03,71.55 11.93,71.43 11.82,71.31C11.7,71.17 11.82,71.32 11.78,71.28C11.72,71.19 11.66,71.11 11.6,71.02C10.63,69.58 10.19,67.97 9.79,66.2C8.63,61.14 8.5,55.82 8.63,50.65C8.75,45.48 9.22,39.85 10.44,34.62C10.89,32.71 11.43,30.75 12.28,29.14C12.99,27.77 13.88,26.45 14.75,25.18C15.27,24.42 15.86,23.62 16.68,23.17C17.35,22.8 18.16,22.67 18.91,22.61C20.63,22.48 22.35,22.7 24.08,22.8C24.7,22.84 25.4,22.93 25.93,22.52C26.48,22.09 26.63,21.36 26.68,20.7C26.73,20.04 26.65,19.29 26.37,18.66C26.02,17.83 25.34,17.55 24.54,17.24C22.6,16.48 20.47,16.38 18.42,16.75C15.04,17.34 11.51,19.26 9.38,21.98C6.58,25.53 5.42,29.99 4.64,34.36C2.86,44.24 2.9,54.4 4.76,64.26C5.23,66.71 5.8,69.13 6.48,71.52C7.09,73.64 7.68,75.9 9.08,77.66C10.96,80.05 14.46,80.37 17.29,80.32C20.45,80.26 23.75,79.7 26.65,78.41C27.26,78.14 27.9,77.87 28.06,77.18C28.14,76.8 28.16,76.4 28.13,76.02C27.8,71.85 22.95,71.16 19.61,71.33C17.6,71.44 15.61,71.78 13.64,72.2C12.4,72.46 12.93,74.37 14.17,74.1C16.37,73.63 18.61,73.25 20.87,73.28C21.57,73.29 22.27,73.33 22.95,73.46C23.24,73.51 23.53,73.58 23.81,73.67C24.12,73.76 24.24,73.81 24.44,73.91C24.64,74 24.82,74.1 24.99,74.21C25.08,74.27 25.17,74.33 25.26,74.4C25.1,74.27 25.3,74.43 25.36,74.49C25.47,74.61 25.59,74.72 25.7,74.85C25.53,74.66 25.82,75.04 25.87,75.13C25.91,75.2 25.94,75.28 25.98,75.35C25.91,75.13 26.06,75.5 25.98,75.35C26.03,75.49 26.07,75.63 26.1,75.77C26.15,75.94 26.15,76.12 26.14,75.9C26.15,76.02 26.15,76.14 26.16,76.26C26.16,76.37 26.15,76.48 26.15,76.58C26.15,76.88 26.12,76.61 26.15,76.6C26.14,76.6 26.12,76.8 26.11,76.83L26.57,76.24C24.51,77.39 22.01,77.91 19.7,78.17C17.38,78.44 14.58,78.57 12.3,77.65C11.16,77.19 10.46,76.39 9.89,75.31C9.01,73.64 8.56,71.7 8.07,69.88C7.02,66 6.25,62.04 5.8,58.04C4.9,49.98 5.18,41.76 6.74,33.79C7.43,30.29 8.39,26.74 10.47,23.78C12.07,21.51 14.65,19.87 17.28,19.05C18.8,18.58 20.42,18.36 22.01,18.59C22.83,18.72 23.6,18.98 24.36,19.29C24.77,19.45 24.48,19.25 24.56,19.42C24.67,19.64 24.69,19.93 24.71,20.17C24.72,20.37 24.73,20.59 24.69,20.79C24.69,20.84 24.66,21.04 24.64,21.01L24.59,21.11C24.69,20.98 24.81,20.9 24.95,20.86C24.95,20.86 23.59,20.79 23.41,20.77C21.98,20.66 20.55,20.53 19.11,20.62C17.76,20.71 16.34,20.95 15.22,21.76C13.85,22.76 12.95,24.28 12.07,25.69C11.09,27.28 10.19,28.74 9.56,30.5C8.24,34.2 7.66,38.17 7.22,42.06C6.71,46.64 6.52,51.28 6.67,55.88C6.8,59.9 7.11,64.04 8.19,67.93C8.81,70.2 9.9,73.38 12.47,74.08C13.04,74.23 13.61,74.21 14.17,74.09C15.41,73.83 14.89,71.93 13.65,72.19L13.66,72.19Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M15.01,46.18C14.6,46.16 14.33,46.6 14.15,46.97C13.95,47.42 13.75,47.96 14.02,48.38C14.25,48.73 14.76,48.82 15.13,48.62C15.5,48.43 15.71,48.02 15.74,47.6C15.76,47.18 15.62,46.78 15.4,46.42"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M15.01,45.2C14.25,45.17 13.66,45.75 13.35,46.39C13.04,47.03 12.76,47.77 12.99,48.48C13.24,49.25 13.99,49.77 14.81,49.71C15.27,49.67 15.66,49.51 16.01,49.21C16.29,48.96 16.48,48.63 16.6,48.28C16.76,47.87 16.75,47.42 16.68,47C16.62,46.62 16.45,46.25 16.25,45.92C16.13,45.71 15.9,45.53 15.67,45.47C15.43,45.4 15.11,45.43 14.9,45.57C14.46,45.85 14.27,46.44 14.55,46.92C14.61,47.03 14.67,47.14 14.73,47.26L14.63,47.03C14.7,47.2 14.75,47.38 14.78,47.56L14.74,47.3C14.76,47.43 14.76,47.57 14.74,47.7L14.78,47.44C14.76,47.56 14.73,47.67 14.69,47.78L14.79,47.55C14.74,47.65 14.69,47.74 14.63,47.83L14.78,47.62C14.72,47.7 14.66,47.76 14.58,47.83L14.79,47.67C14.72,47.72 14.65,47.76 14.58,47.79L14.81,47.7C14.73,47.73 14.65,47.75 14.57,47.76L14.83,47.73C14.76,47.73 14.68,47.73 14.6,47.73L14.87,47.76C14.78,47.75 14.7,47.73 14.62,47.7L14.85,47.79C14.8,47.77 14.74,47.74 14.69,47.7L14.89,47.86C14.84,47.82 14.8,47.78 14.76,47.73L14.91,47.93C14.87,47.87 14.83,47.81 14.81,47.75L14.9,47.98C14.88,47.91 14.86,47.84 14.85,47.76L14.89,48.03C14.87,47.92 14.89,47.83 14.89,47.73L14.85,47.99C14.89,47.78 14.96,47.58 15.04,47.38L14.95,47.62C15.04,47.4 15.14,47.19 15.28,47L15.13,47.21C15.19,47.14 15.25,47.08 15.31,47.02L15.11,47.17C15.16,47.14 15.22,47.11 15.27,47.08L15.04,47.18C15.09,47.16 15.14,47.15 15.19,47.14L14.92,47.18C14.95,47.18 14.98,47.18 15.02,47.18C15.54,47.19 16.03,46.71 16.01,46.19C15.99,45.67 15.57,45.22 15.02,45.2L15.01,45.2Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M20.93,53.94C20.6,54.26 20.25,54.62 20.14,55.07C19.97,55.85 20.76,56.66 21.54,56.53C22.32,56.39 22.77,55.35 22.34,54.69"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M20.23,53.25C19.99,53.48 19.77,53.72 19.57,54C19.38,54.26 19.23,54.57 19.18,54.89C19.12,55.25 19.12,55.63 19.25,55.98C19.39,56.33 19.57,56.64 19.84,56.9C20.38,57.41 21.16,57.66 21.89,57.46C22.46,57.3 22.98,56.86 23.24,56.32C23.55,55.64 23.6,54.84 23.19,54.19C23.06,53.97 22.85,53.8 22.6,53.73C22.36,53.67 22.05,53.7 21.84,53.83C21.4,54.11 21.2,54.71 21.49,55.18C21.52,55.24 21.55,55.29 21.57,55.35L21.47,55.12C21.51,55.2 21.53,55.29 21.54,55.38L21.51,55.12C21.52,55.23 21.52,55.34 21.51,55.45L21.54,55.19C21.52,55.3 21.49,55.41 21.45,55.51L21.55,55.28C21.5,55.4 21.44,55.5 21.36,55.6L21.52,55.4C21.46,55.48 21.38,55.55 21.3,55.61L21.51,55.46C21.43,55.52 21.34,55.57 21.24,55.61L21.47,55.51C21.4,55.54 21.32,55.57 21.24,55.58L21.5,55.54C21.41,55.56 21.32,55.56 21.22,55.54L21.48,55.58C21.38,55.56 21.28,55.54 21.18,55.5L21.41,55.59C21.32,55.55 21.22,55.5 21.14,55.43L21.34,55.59C21.25,55.51 21.16,55.43 21.09,55.34L21.24,55.54C21.17,55.45 21.11,55.34 21.06,55.23L21.16,55.47C21.12,55.37 21.09,55.27 21.08,55.16L21.12,55.42C21.11,55.33 21.11,55.24 21.12,55.14L21.08,55.4C21.1,55.3 21.13,55.2 21.17,55.1L21.07,55.34C21.13,55.2 21.21,55.07 21.3,54.96L21.15,55.16C21.3,54.97 21.46,54.81 21.63,54.64C22.01,54.29 22.02,53.6 21.63,53.25C21.25,52.9 20.64,52.87 20.24,53.25H20.23Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M13.39,59.14L13.37,61C13.37,61.29 13.42,61.67 13.7,61.74C13.83,61.78 13.97,61.73 14.09,61.66C14.72,61.31 14.92,60.38 14.48,59.81"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M12.4,59.14L12.38,60.66C12.38,60.91 12.38,61.15 12.41,61.39C12.46,61.74 12.58,62.04 12.81,62.31C13.13,62.69 13.63,62.78 14.09,62.71C14.43,62.65 14.72,62.45 14.97,62.23C15.31,61.93 15.57,61.46 15.64,61.02C15.74,60.45 15.68,59.81 15.33,59.32C15.17,59.1 15,58.93 14.74,58.86C14.5,58.79 14.19,58.82 13.98,58.96C13.77,59.09 13.58,59.3 13.52,59.55C13.47,59.8 13.47,60.1 13.62,60.31C13.67,60.38 13.72,60.46 13.75,60.54L13.65,60.3C13.69,60.4 13.73,60.51 13.74,60.62L13.7,60.35C13.72,60.48 13.72,60.59 13.7,60.71L13.74,60.45C13.72,60.57 13.69,60.7 13.63,60.83L13.73,60.59C13.69,60.69 13.63,60.78 13.57,60.88L13.72,60.67C13.66,60.75 13.59,60.82 13.52,60.88L13.72,60.73C13.65,60.78 13.58,60.82 13.5,60.86L13.73,60.76C13.68,60.78 13.62,60.8 13.55,60.81L13.82,60.77C13.82,60.77 13.76,60.77 13.73,60.77L13.99,60.81C13.95,60.8 13.92,60.8 13.88,60.78L14.12,60.88C14.12,60.88 14.07,60.84 14.04,60.83L14.25,60.98C14.25,60.98 14.2,60.94 14.19,60.92L14.34,61.12C14.31,61.08 14.28,61.03 14.27,60.99L14.36,61.23C14.34,61.15 14.32,61.08 14.31,61L14.35,61.27C14.3,60.94 14.33,60.61 14.34,60.29L14.35,59.16C14.35,58.64 13.89,58.14 13.36,58.17C12.83,58.19 12.38,58.6 12.37,59.16L12.4,59.14Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M23.85,62.53C23.29,62.5 22.73,62.8 22.44,63.28C22.76,63.83 23.61,63.82 24.11,63.44C24.61,63.05 23.58,63.21 23.79,62.62"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M23.85,61.54C23.63,61.53 23.4,61.57 23.18,61.62C22.96,61.67 22.74,61.76 22.54,61.86C22.35,61.97 22.17,62.11 22.01,62.26C21.85,62.4 21.7,62.59 21.59,62.78C21.41,63.08 21.41,63.48 21.59,63.78C21.83,64.18 22.21,64.47 22.66,64.61C23.04,64.73 23.47,64.71 23.85,64.63C24.23,64.54 24.59,64.34 24.86,64.08C25.31,63.65 25.35,62.94 24.9,62.5C24.8,62.4 24.69,62.32 24.56,62.26C24.5,62.23 24.44,62.2 24.38,62.16L24.58,62.31C24.58,62.31 24.53,62.27 24.51,62.24L24.67,62.45C24.67,62.45 24.64,62.4 24.63,62.39L24.73,62.62C24.73,62.62 24.72,62.58 24.71,62.55L24.75,62.82C24.75,62.82 24.75,62.75 24.75,62.72L24.71,62.99C24.71,62.95 24.72,62.91 24.74,62.88C24.82,62.65 24.76,62.33 24.64,62.12C24.51,61.91 24.28,61.72 24.05,61.67C23.8,61.61 23.51,61.62 23.29,61.77L23.08,61.92C22.96,62.04 22.88,62.19 22.83,62.35C22.75,62.59 22.75,62.86 22.81,63.11C22.84,63.22 22.89,63.34 22.96,63.43C23.02,63.52 23.08,63.62 23.17,63.69C23.29,63.79 23.4,63.88 23.54,63.95C23.59,63.97 23.65,63.99 23.7,64.03L23.5,63.88C23.5,63.88 23.51,63.9 23.53,63.91L23.37,63.71C23.37,63.71 23.38,63.72 23.39,63.72L23.29,63.49C23.29,63.49 23.29,63.5 23.29,63.51L23.25,63.25C23.25,63.25 23.25,63.26 23.25,63.26L23.29,63C23.29,63 23.29,63.02 23.28,63.02L23.38,62.79C23.38,62.79 23.37,62.82 23.35,62.83L23.51,62.63C23.48,62.66 23.44,62.7 23.4,62.73L23.6,62.58C23.51,62.64 23.41,62.7 23.31,62.74L23.54,62.64C23.43,62.69 23.32,62.72 23.19,62.74L23.46,62.7C23.34,62.71 23.22,62.72 23.1,62.7L23.37,62.74C23.27,62.72 23.18,62.7 23.1,62.66L23.33,62.76C23.26,62.73 23.19,62.69 23.13,62.64L23.33,62.8C23.28,62.75 23.23,62.71 23.19,62.66L23.34,62.86C23.34,62.86 23.31,62.8 23.29,62.77V63.77C23.32,63.72 23.35,63.67 23.39,63.62L23.23,63.82C23.32,63.72 23.41,63.63 23.51,63.54L23.31,63.69C23.42,63.61 23.53,63.55 23.66,63.49L23.42,63.59C23.55,63.53 23.69,63.5 23.83,63.48L23.57,63.52C23.66,63.5 23.75,63.5 23.85,63.5C24.09,63.52 24.37,63.39 24.55,63.21C24.72,63.04 24.85,62.76 24.83,62.51C24.82,62.27 24.74,61.99 24.55,61.81C24.36,61.64 24.12,61.54 23.85,61.53L23.85,61.54Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M17.32,65.22C17.08,65.95 17.05,66.74 17.24,67.48C17.91,67.04 18.19,66.11 17.88,65.38"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M16.37,64.96C16.07,65.85 16.06,66.83 16.29,67.73C16.44,68.32 17.21,68.68 17.74,68.32C18.27,67.97 18.67,67.44 18.87,66.81C18.96,66.54 18.99,66.25 18.99,65.97C18.98,65.68 18.94,65.38 18.83,65.11C18.73,64.87 18.61,64.66 18.37,64.52C18.16,64.4 17.85,64.34 17.61,64.42C17.37,64.5 17.15,64.65 17.02,64.88C16.9,65.11 16.83,65.4 16.92,65.64C16.97,65.76 17.01,65.9 17.03,66.03L16.99,65.76C17.01,65.92 17.01,66.07 16.99,66.23L17.03,65.97C17,66.13 16.96,66.29 16.9,66.44L17,66.21C16.94,66.35 16.86,66.49 16.76,66.62L16.92,66.41C16.83,66.52 16.74,66.62 16.64,66.7L16.84,66.55C16.81,66.57 16.77,66.6 16.74,66.62L18.19,67.21C18.15,67.05 18.12,66.89 18.1,66.73L18.13,67C18.09,66.65 18.09,66.29 18.13,65.94L18.1,66.21C18.13,65.96 18.19,65.73 18.26,65.49C18.34,65.26 18.29,64.94 18.16,64.73C18.04,64.52 17.81,64.33 17.57,64.28C17.03,64.15 16.53,64.44 16.36,64.96L16.37,64.96Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M22.07,41.01C21.77,41.39 21.57,41.84 21.47,42.31C21.42,42.56 21.4,42.82 21.51,43.05C21.8,43.66 22.83,43.5 23.13,42.89C23.43,42.29 23.19,41.56 22.82,41"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M21.38,40.32C21.16,40.59 20.96,40.86 20.82,41.18C20.68,41.5 20.57,41.8 20.51,42.12C20.48,42.32 20.44,42.53 20.45,42.73C20.47,43.03 20.52,43.25 20.65,43.52C20.78,43.79 21.03,44.06 21.3,44.2C21.58,44.35 21.9,44.44 22.23,44.42C22.57,44.41 22.86,44.33 23.17,44.18C23.38,44.08 23.59,43.92 23.75,43.74C23.86,43.59 23.96,43.47 24.03,43.31C24.08,43.2 24.13,43.08 24.17,42.96C24.21,42.81 24.23,42.65 24.24,42.51C24.29,42.17 24.23,41.81 24.13,41.49C24.03,41.14 23.87,40.81 23.67,40.51C23.53,40.3 23.34,40.13 23.08,40.06C22.85,39.99 22.53,40.02 22.32,40.16C22.11,40.29 21.92,40.49 21.87,40.74C21.81,41 21.82,41.29 21.97,41.51C22.07,41.67 22.16,41.83 22.24,42.01L22.14,41.78C22.22,41.96 22.28,42.15 22.3,42.35L22.27,42.09C22.29,42.23 22.29,42.37 22.27,42.51L22.3,42.24C22.29,42.35 22.26,42.45 22.22,42.55L22.32,42.32C22.28,42.4 22.24,42.47 22.19,42.54L22.34,42.34C22.29,42.4 22.23,42.46 22.16,42.51L22.36,42.36C22.29,42.42 22.21,42.46 22.13,42.5L22.36,42.4C22.27,42.43 22.17,42.46 22.07,42.48L22.33,42.44C22.24,42.45 22.14,42.45 22.05,42.44L22.31,42.48C22.24,42.46 22.17,42.45 22.11,42.42L22.34,42.52C22.29,42.5 22.24,42.47 22.2,42.43L22.4,42.59C22.36,42.55 22.32,42.51 22.29,42.47L22.44,42.67C22.41,42.63 22.38,42.58 22.35,42.53L22.45,42.76C22.42,42.69 22.4,42.61 22.39,42.53L22.43,42.8C22.41,42.68 22.42,42.57 22.43,42.45L22.4,42.72C22.43,42.46 22.51,42.21 22.6,41.97L22.51,42.21C22.61,41.97 22.74,41.75 22.9,41.54L22.75,41.74L22.77,41.71C22.87,41.62 22.94,41.51 22.97,41.39C23.03,41.27 23.07,41.14 23.06,41.01C23.06,40.77 22.95,40.48 22.77,40.31C22.59,40.14 22.33,40.01 22.07,40.02C21.83,40.03 21.53,40.11 21.37,40.31L21.38,40.32Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M16.03,36.73C15.74,36.88 15.95,37.39 16.27,37.4C16.59,37.42 16.86,37.15 17.02,36.88C17.38,36.29 17.48,35.45 16.98,34.98C16.62,34.65 16.02,34.63 15.65,34.94C15.27,35.25 15.17,35.84 15.41,36.26"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M15.53,35.88C15.02,36.17 14.77,36.83 14.98,37.39C15.19,37.94 15.65,38.37 16.27,38.39C17.26,38.41 17.93,37.51 18.18,36.65C18.43,35.85 18.3,34.98 17.74,34.35C17.14,33.66 15.98,33.53 15.22,34.02C14.32,34.6 14.03,35.81 14.55,36.75C14.81,37.2 15.46,37.39 15.9,37.1C16.35,36.82 16.53,36.24 16.26,35.75C16.24,35.72 16.22,35.67 16.2,35.63L16.3,35.86C16.27,35.78 16.24,35.69 16.23,35.6L16.27,35.87C16.25,35.78 16.26,35.69 16.27,35.6L16.23,35.86C16.24,35.76 16.27,35.67 16.31,35.57L16.21,35.8C16.25,35.72 16.29,35.64 16.35,35.57L16.19,35.77C16.24,35.71 16.3,35.65 16.36,35.6L16.16,35.76C16.22,35.71 16.29,35.67 16.37,35.64L16.13,35.74C16.22,35.7 16.3,35.68 16.4,35.67L16.13,35.71C16.22,35.7 16.32,35.7 16.41,35.71L16.14,35.67C16.24,35.68 16.32,35.71 16.41,35.74L16.17,35.64C16.26,35.68 16.34,35.72 16.41,35.78L16.21,35.62C16.27,35.67 16.33,35.73 16.38,35.8L16.22,35.59C16.28,35.67 16.32,35.74 16.35,35.82L16.25,35.59C16.3,35.69 16.32,35.8 16.34,35.91L16.3,35.64C16.32,35.79 16.32,35.94 16.3,36.08L16.34,35.82C16.32,36 16.27,36.16 16.2,36.33L16.3,36.1C16.23,36.25 16.15,36.4 16.05,36.53L16.21,36.33C16.14,36.41 16.08,36.48 16,36.54L16.2,36.39C16.14,36.43 16.08,36.47 16.02,36.5L16.25,36.4C16.21,36.42 16.16,36.43 16.11,36.44L16.38,36.4C16.33,36.4 16.29,36.41 16.24,36.4L16.51,36.44C16.51,36.44 16.46,36.43 16.43,36.42L16.67,36.52C16.64,36.51 16.6,36.49 16.58,36.47L16.78,36.62C16.75,36.6 16.72,36.57 16.69,36.53L16.84,36.73C16.82,36.7 16.8,36.66 16.78,36.62L16.88,36.86C16.86,36.82 16.85,36.78 16.84,36.73L16.88,37C16.88,36.97 16.88,36.94 16.88,36.91L16.84,37.17C16.84,37.17 16.86,37.13 16.86,37.11L16.76,37.34C16.76,37.34 16.78,37.32 16.79,37.31L16.64,37.51C16.64,37.51 16.67,37.47 16.68,37.46L16.48,37.61C16.48,37.61 16.51,37.59 16.52,37.59C16.74,37.47 16.91,37.23 16.98,37C17.05,36.77 17.02,36.45 16.88,36.24C16.59,35.78 16.01,35.61 15.53,35.88Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M19.14,25.88C18.62,26.01 18.3,26.66 18.53,27.14C18.75,27.62 19.5,27.76 19.87,27.37C20.23,26.98 20.01,26.22 19.49,26.11"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M18.87,24.93C18.75,24.96 18.64,25.01 18.53,25.06C18.48,25.08 18.45,25.1 18.41,25.12C18.31,25.18 18.21,25.26 18.12,25.34C18.09,25.37 18.05,25.41 18.02,25.44C17.91,25.56 17.8,25.69 17.72,25.84C17.67,25.95 17.62,26.06 17.58,26.17C17.56,26.22 17.54,26.26 17.53,26.31C17.51,26.39 17.5,26.47 17.49,26.56C17.48,26.65 17.46,26.73 17.46,26.82C17.46,26.94 17.49,27.06 17.51,27.18C17.51,27.23 17.53,27.27 17.54,27.31C17.59,27.47 17.65,27.63 17.75,27.76C17.81,27.85 17.89,27.95 17.97,28.03C18.05,28.11 18.15,28.19 18.24,28.25C18.37,28.35 18.53,28.41 18.67,28.47C18.8,28.52 18.91,28.54 19.04,28.55C19.17,28.56 19.28,28.58 19.41,28.57C19.54,28.56 19.66,28.54 19.77,28.51C19.85,28.49 19.92,28.46 19.99,28.43C20.2,28.34 20.33,28.25 20.5,28.11C20.62,28 20.72,27.87 20.8,27.74C20.85,27.64 20.9,27.53 20.94,27.42C20.95,27.38 20.97,27.34 20.98,27.3C21.01,27.15 21.04,26.98 21.03,26.82C21.02,26.69 21,26.57 20.98,26.44C20.97,26.4 20.96,26.36 20.94,26.31C20.89,26.16 20.82,25.99 20.73,25.86C20.57,25.64 20.44,25.51 20.22,25.35C20.18,25.33 20.14,25.3 20.11,25.28C19.99,25.23 19.87,25.17 19.75,25.15C19.49,25.09 19.22,25.11 18.99,25.25C18.79,25.37 18.59,25.6 18.53,25.83C18.48,26.09 18.49,26.37 18.63,26.6C18.77,26.81 18.97,27 19.22,27.05C19.26,27.06 19.29,27.07 19.33,27.09L19.1,26.99C19.15,27.01 19.2,27.04 19.24,27.07L19.04,26.92C19.09,26.95 19.12,27 19.17,27.04L19.01,26.84C19.06,26.9 19.09,26.96 19.12,27.03L19.02,26.79C19.06,26.87 19.07,26.94 19.09,27.02L19.05,26.76C19.06,26.83 19.06,26.9 19.05,26.97L19.09,26.71C19.08,26.77 19.06,26.84 19.04,26.9L19.14,26.66C19.11,26.71 19.09,26.76 19.06,26.81L19.21,26.6C19.17,26.65 19.14,26.69 19.09,26.73L19.29,26.57C19.24,26.61 19.18,26.64 19.12,26.66L19.36,26.57C19.29,26.59 19.23,26.61 19.16,26.62L19.42,26.58C19.34,26.6 19.26,26.59 19.18,26.58L19.44,26.62C19.36,26.61 19.28,26.59 19.2,26.55L19.44,26.65C19.37,26.62 19.3,26.58 19.24,26.53L19.44,26.69C19.39,26.65 19.34,26.6 19.31,26.55L19.46,26.76C19.42,26.71 19.39,26.65 19.36,26.59L19.46,26.82C19.44,26.76 19.42,26.69 19.41,26.63L19.44,26.89C19.44,26.82 19.44,26.74 19.44,26.67L19.41,26.93C19.42,26.85 19.44,26.76 19.47,26.68L19.37,26.92C19.41,26.84 19.45,26.76 19.51,26.69L19.36,26.89C19.41,26.83 19.47,26.77 19.53,26.72L19.33,26.87C19.39,26.83 19.45,26.79 19.52,26.76L19.29,26.86C19.33,26.85 19.36,26.84 19.39,26.82C19.63,26.76 19.86,26.58 19.98,26.37C20.11,26.15 20.16,25.85 20.08,25.61C20,25.37 19.85,25.14 19.63,25.02C19.4,24.9 19.13,24.85 18.86,24.92L18.87,24.93Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M24.22,30.19C23.78,30.47 23.83,31.22 24.27,31.51C24.71,31.8 25.34,31.65 25.68,31.25C26.01,30.85 26.09,30.28 25.98,29.77C25.9,29.42 25.71,29.07 25.38,28.93C25.05,28.79 24.58,29.01 24.59,29.37"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M23.72,29.33C23.35,29.58 23.07,29.94 22.98,30.39C22.89,30.83 22.95,31.29 23.16,31.71C23.56,32.51 24.59,32.82 25.41,32.55C26.23,32.28 26.84,31.58 26.96,30.72C27.03,30.27 27.03,29.84 26.9,29.4C26.79,29.02 26.58,28.61 26.27,28.35C25.83,27.97 25.24,27.79 24.67,27.98C24.06,28.2 23.63,28.7 23.61,29.37C23.59,29.89 24.07,30.38 24.59,30.36C25.12,30.34 25.56,29.92 25.58,29.37C25.58,29.35 25.58,29.33 25.58,29.31L25.55,29.57C25.55,29.54 25.56,29.5 25.58,29.46L25.48,29.7C25.48,29.7 25.5,29.65 25.52,29.62L25.37,29.83C25.4,29.79 25.43,29.75 25.47,29.72L25.27,29.88C25.31,29.84 25.36,29.82 25.4,29.8L25.17,29.9C25.22,29.88 25.28,29.86 25.34,29.85L25.08,29.89C25.13,29.89 25.18,29.88 25.23,29.89L24.97,29.85C25.02,29.86 25.07,29.87 25.12,29.89L24.88,29.79C24.95,29.82 25.01,29.86 25.07,29.9L24.86,29.75C24.92,29.8 24.97,29.84 25.02,29.9L24.86,29.7C24.93,29.79 24.99,29.88 25.03,29.99L24.93,29.75C24.99,29.89 25.03,30.04 25.05,30.19L25.01,29.93C25.04,30.1 25.04,30.28 25.01,30.45L25.05,30.19C25.03,30.34 24.99,30.48 24.94,30.61L25.04,30.38C24.99,30.49 24.93,30.59 24.86,30.69L25.01,30.48C24.95,30.56 24.88,30.63 24.81,30.69L25.01,30.54C24.93,30.61 24.83,30.66 24.74,30.7L24.97,30.61C24.87,30.65 24.77,30.67 24.66,30.69L24.93,30.66C24.83,30.67 24.74,30.67 24.64,30.66L24.91,30.69C24.83,30.68 24.75,30.66 24.67,30.63L24.91,30.73C24.85,30.7 24.78,30.67 24.73,30.63L24.93,30.78C24.88,30.74 24.83,30.69 24.78,30.64L24.94,30.84C24.9,30.78 24.86,30.72 24.83,30.66L24.93,30.89C24.9,30.82 24.88,30.74 24.87,30.66L24.91,30.92C24.9,30.84 24.9,30.76 24.91,30.68L24.87,30.94C24.88,30.88 24.9,30.81 24.93,30.74L24.83,30.97C24.85,30.92 24.88,30.87 24.91,30.82L24.76,31.02C24.79,30.99 24.83,30.95 24.86,30.92L24.66,31.07C24.66,31.07 24.69,31.05 24.71,31.04C24.93,30.89 25.09,30.7 25.17,30.45C25.23,30.21 25.2,29.89 25.07,29.68C24.93,29.48 24.73,29.29 24.48,29.23C24.23,29.18 23.94,29.18 23.72,29.33L23.72,29.33Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M29.37,31.21L59.04,20.14C59.21,20.08 59.32,20.33 59.15,20.41L36.82,30.66C36.66,30.73 36.74,30.97 36.91,30.93L63.02,25.28C63.2,25.25 63.28,25.49 63.12,25.56L31.44,39.63C31.28,39.71 31.37,39.96 31.54,39.9L68.16,28.97C68.33,28.92 68.42,29.16 68.26,29.24L33.2,46.09C33.03,46.17 33.13,46.41 33.3,46.36L68.82,34.93C68.99,34.87 69.09,35.12 68.92,35.2L35.92,50.95C35.76,51.03 35.85,51.27 36.02,51.22L73.12,41.11C73.29,41.06 73.38,41.32 73.21,41.39L31.32,59.16C31.16,59.24 31.25,59.48 31.42,59.44L74.62,47.68C74.8,47.64 74.89,47.89 74.72,47.96L40.04,61.75C39.89,61.81 39.93,62.04 40.1,62.04L70.47,60.18C70.66,60.17 70.69,60.44 70.5,60.47L38.8,65.74C38.63,65.77 38.64,66.01 38.8,66.03L74.45,69.91C74.64,69.93 74.62,70.2 74.43,70.2H32.01"
android:strokeWidth="1.31416"
android:fillColor="#00000000"
android:strokeColor="#E8E8E8"/>
</group>
</vector>

View File

@ -0,0 +1,31 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="125dp"
android:height="130dp"
android:viewportWidth="125"
android:viewportHeight="130">
<group>
<clip-path
android:pathData="M0.14,0h123.95v129.89h-123.95z"/>
<path
android:pathData="M70.13,100.81C66.05,104.38 66.07,111.11 65.27,116.03C64.87,118.49 64.44,121.25 62.99,123.34C61.13,126.04 57.45,126.07 54.75,124.66C50.55,122.46 49.04,117.53 48.57,113.12L46.19,113.44C47.44,117.61 45.93,122.48 42.36,125.06C40.94,126.09 39.64,125.77 38.98,124.07C37.88,121.2 36.92,118.28 35.89,115.38L33.68,116.31C34.54,118.19 33.86,120.66 33.05,122.43C32.24,124.2 30.73,126.51 28.64,127.01C26.55,127.51 24.97,125.62 24.08,124C23.01,122.06 22.37,119.59 22.88,117.39C23.17,116.12 21.26,115.15 20.67,116.46C19.52,119.02 18.04,121.43 16.19,123.56C14.93,125 12.05,128.75 9.9,127.02C8.06,125.54 7.7,122.37 7.21,120.24C6.48,117.09 5.85,113.92 5.32,110.74C3.3,98.62 2.47,86.19 2.59,73.91C2.7,63.09 3.85,52.12 7.67,41.92C11.49,31.72 18.58,22.85 27.66,16.47C45.64,3.83 70.34,-1.86 91.38,6.04C109.26,12.76 123.23,31.25 121.53,50.81C120.62,61.29 114.74,70.62 107.36,77.82C99.04,85.93 88.72,91.36 78.44,96.53C75.75,97.88 73.05,99.23 70.38,100.61C69,101.32 70.22,103.41 71.6,102.7C82.8,96.92 94.45,91.74 104.32,83.75C112.9,76.8 120.25,67.62 122.98,56.74C127.97,36.84 115.7,15.71 98.18,6.44C77.07,-4.71 50.55,-0.34 30.77,11.56C20.89,17.51 12.53,25.72 7.5,36.19C2.53,46.57 0.72,58.15 0.28,69.56C-0.21,82.28 0.61,95.19 2.43,107.78C2.93,111.22 3.53,114.64 4.24,118.04C4.83,120.84 5.29,123.86 6.55,126.45C7.5,128.41 9.24,130.11 11.57,129.86C14.25,129.58 16.53,126.86 18.16,124.94C20.03,122.74 21.56,120.3 22.75,117.67L20.54,116.74C19.43,121.57 22.74,130.71 29.04,129.39C31.87,128.8 33.97,126.13 35.13,123.64C36.37,120.99 37.03,117.83 35.76,115.07C35.19,113.83 33.09,114.71 33.55,116C34.23,117.91 34.88,119.82 35.56,121.73C36.11,123.27 36.53,125.14 37.52,126.47C38.79,128.17 41.17,128.54 42.99,127.52C47.94,124.72 50.1,118.08 48.52,112.79C48.15,111.54 45.99,111.7 46.14,113.11C46.6,117.39 47.79,121.96 51.06,124.99C53.96,127.68 58.4,128.95 62.1,127.2C67.59,124.61 67.57,116.41 68.38,111.32C68.86,108.3 69.39,104.63 71.82,102.51C72.99,101.48 71.28,99.78 70.11,100.8L70.13,100.81Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M54.11,47.82C51.25,45.91 47.15,45.41 43.34,48.28C42.38,49 41.67,49.99 41.22,51.1C39.4,55.56 38.77,60.42 38.66,65.23C38.53,70.84 39.09,76.47 40.31,81.95C41.14,85.67 42.32,89.4 44.6,92.44C46.24,94.62 49.11,96.49 51.56,95.3C52.62,94.78 53.35,93.79 53.98,92.79C59.54,83.88 59.09,72.61 58.45,62.12C58.14,57.03 57.64,51.49 54.1,47.82"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M54.72,46.77C51.65,44.8 47.89,44.52 44.59,46.1C40.56,48.03 39.29,52.06 38.43,56.16C36.57,64.98 37.27,74.59 39.39,83.31C40.32,87.14 41.72,91.26 44.49,94.17C47.05,96.86 51.2,98.1 53.93,94.94C56.44,92.04 57.89,87.94 58.76,84.27C59.7,80.33 60.01,76.25 60.03,72.2C60.06,67.64 59.87,63 59.37,58.46C58.91,54.28 57.9,50.13 54.96,46.97C53.9,45.83 52.19,47.54 53.25,48.68C55.48,51.07 56.38,54.26 56.82,57.43C57.3,60.84 57.4,64.34 57.53,67.78C57.78,74.68 57.59,81.86 54.93,88.33C53.83,91 51.86,95.83 48.22,94.02C45.06,92.45 43.44,88.51 42.44,85.34C40.11,77.94 39.42,69.79 40.02,62.08C40.19,59.86 40.51,57.66 41.06,55.5C41.54,53.59 42.06,51.28 43.45,49.81C46.1,47.01 50.38,46.88 53.49,48.88C54.8,49.72 56.02,47.63 54.71,46.79L54.72,46.77Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M21.4,53.99C20.34,52.61 19.69,51.36 18.18,50.48C16.67,49.6 14.66,49.36 13.23,50.36C12.15,51.11 11.59,52.4 11.13,53.63C7.56,63.23 6.82,73.87 9.04,83.87C9.86,87.54 12.02,91.86 15.78,91.77C19.63,91.67 21.53,87.09 22.27,83.31C24.44,72.22 22.35,57.8 21.4,53.98"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M22.45,53.38C21.44,52.04 20.55,50.6 19.13,49.65C17.71,48.7 15.91,48.28 14.26,48.63C10.59,49.42 9.58,54.11 8.7,57.17C6.38,65.28 5.97,73.9 7.48,82.2C8.05,85.34 8.94,88.74 11.28,91.05C13.38,93.13 16.57,93.63 19.05,91.89C21.53,90.15 22.71,86.95 23.34,84.1C24.12,80.53 24.38,76.81 24.43,73.16C24.51,66.72 24.11,59.93 22.57,53.65C22.2,52.14 19.87,52.78 20.24,54.29C21.3,58.61 21.68,63.17 21.9,67.61C22.06,70.74 22.07,73.88 21.86,77C21.65,80.12 21.33,83.05 20.33,85.88C19.58,87.98 18.08,90.71 15.47,90.54C12.86,90.37 11.36,87.33 10.65,85.13C9.65,82.01 9.27,78.62 9.09,75.36C8.88,71.71 9.03,68.03 9.59,64.42C10.15,60.81 11.04,56.71 12.59,53.22C13.34,51.54 14.59,50.55 16.48,51.05C18.37,51.55 19.28,53.15 20.37,54.58C21.3,55.81 23.4,54.6 22.46,53.36L22.45,53.38Z"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M33.87,88.93C32.8,88.54 31.57,89.27 31.03,90.28C30.49,91.29 29.33,97.02 29.99,97.85C31.43,99.67 37.19,99.18 37.62,96.9C38.05,94.61 35.44,91.13 34.04,89.27"
android:fillColor="#E8E8E8"/>
<path
android:pathData="M34.19,87.76C32.57,87.23 30.76,88.21 29.98,89.66C29.6,90.37 29.42,91.21 29.24,91.99C28.99,93.09 28.8,94.19 28.67,95.31C28.57,96.15 28.46,97.09 28.7,97.92C28.99,98.94 30.02,99.52 30.97,99.83C31.97,100.16 33.09,100.23 34.13,100.12C36.27,99.9 38.78,98.97 38.86,96.46C38.91,94.96 38.2,93.47 37.48,92.19C36.76,90.91 35.93,89.79 35.07,88.65C34.68,88.13 34.03,87.86 33.41,88.22C32.9,88.52 32.58,89.35 32.98,89.88C33.63,90.75 34.27,91.62 34.86,92.53C35.17,93.02 35.46,93.52 35.73,94.04C35.8,94.17 35.86,94.3 35.92,94.44C35.94,94.48 36.06,94.76 36,94.6C36.11,94.87 36.21,95.15 36.29,95.43C36.35,95.66 36.41,95.89 36.44,96.13C36.41,95.89 36.44,96.18 36.44,96.27C36.44,96.39 36.44,96.5 36.44,96.61C36.44,96.84 36.44,96.61 36.44,96.57C36.44,96.59 36.44,96.65 36.42,96.67C36.41,96.68 36.4,96.75 36.39,96.76C36.36,96.97 36.42,96.63 36.44,96.65C36.45,96.66 36.35,96.8 36.34,96.82C36.27,96.98 36.38,96.77 36.41,96.74C36.38,96.77 36.35,96.81 36.32,96.84C36.26,96.9 36.19,96.95 36.14,97.01C36.07,97.1 36.23,96.94 36.24,96.94C36.2,96.97 36.16,97 36.12,97.03C35.96,97.13 35.8,97.21 35.63,97.31C35.44,97.42 35.82,97.25 35.61,97.32C35.51,97.35 35.42,97.39 35.32,97.42C35.1,97.49 34.88,97.55 34.66,97.6C34.57,97.62 34.48,97.64 34.38,97.65C34.32,97.66 34.25,97.67 34.19,97.68C34.19,97.68 34.42,97.66 34.27,97.67C34.05,97.69 33.82,97.71 33.6,97.72C33.39,97.72 33.18,97.72 32.98,97.72C32.87,97.72 32.76,97.71 32.65,97.7C32.6,97.7 32.56,97.7 32.51,97.69C32.21,97.67 32.68,97.73 32.51,97.69C32.32,97.65 32.13,97.62 31.94,97.58C31.84,97.56 31.75,97.53 31.65,97.5C31.59,97.48 31.28,97.36 31.45,97.43C31.62,97.5 31.39,97.4 31.34,97.38C31.26,97.34 31.19,97.29 31.11,97.25C30.96,97.16 31.01,97.15 31.12,97.27C31.07,97.21 30.98,97.13 30.92,97.08C30.75,96.95 31.07,97.31 30.98,97.15C30.98,97.15 31.06,97.48 31.03,97.26C31.03,97.22 31.01,97.16 31,97.11C30.95,96.96 31.02,97.43 31,97.14C30.99,96.78 30.99,96.43 31.01,96.07C31.02,95.87 31.04,95.68 31.06,95.48C31.07,95.37 31.09,95.26 31.1,95.15C31.12,94.94 31.07,95.32 31.12,95.03C31.19,94.56 31.27,94.09 31.36,93.63C31.53,92.76 31.71,91.89 32,91.05C32.02,90.98 32.05,90.91 32.08,90.84C32.15,90.63 31.96,91.05 32.04,90.94C32.23,90.67 32.25,90.6 32.43,90.41C32.52,90.31 32.52,90.31 32.69,90.21C32.74,90.18 32.8,90.15 32.86,90.12C33.03,90.03 32.65,90.16 32.98,90.08C33.04,90.06 33.1,90.05 33.16,90.03C33.35,89.99 33.01,90.03 33.2,90.03C33.23,90.03 33.48,90.05 33.34,90.03C33.23,90.01 33.54,90.1 33.54,90.09C34.16,90.29 34.86,89.85 35.03,89.25C35.21,88.59 34.81,87.97 34.19,87.76Z"
android:fillColor="#E8E8E8"/>
</group>
</vector>

View File

@ -0,0 +1,76 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="95dp"
android:height="120dp"
android:viewportWidth="95"
android:viewportHeight="120">
<group>
<clip-path
android:pathData="M0,0h94.58v120h-94.58z"/>
<path
android:pathData="M51.92,9.22C51.92,6.44 53.35,3.66 55.76,2.21C56.89,1.53 58.6,1.09 59.28,2.57C59.96,4.05 59.8,6.08 59.34,7.65C59.07,8.53 60.33,9.03 60.8,8.27C62.15,6.07 64.36,4.54 66.89,4.04C67.49,3.92 68.3,3.76 68.87,4.05C69.54,4.37 69.67,5.29 69.82,5.95C70.19,7.52 70.24,9.11 70.06,10.7C69.99,11.23 70.62,11.59 71.06,11.47C73.26,10.88 74.81,8.68 77.09,8.43C78.35,8.28 79.18,9.13 79.31,10.33C79.44,11.54 78.79,12.79 78.25,13.87C77.98,14.4 78.31,15.08 78.94,15.07C81.04,15.05 85.21,13.87 86.31,16.54C86.84,17.82 85.67,19.06 84.67,19.7C83.56,20.41 82.21,20.7 80.91,20.49C80.23,20.38 79.43,21.26 80.13,21.82C81.12,22.59 82.01,23.47 82.74,24.49C83.07,24.95 83.37,25.43 83.63,25.93C83.88,26.38 84.42,27.2 84.25,27.72C83.96,28.61 81.69,28.56 80.91,28.5C79.65,28.39 78.48,27.9 77.46,27.17C76.87,26.76 76.1,27.44 76.29,28.07C76.81,29.9 77.17,32.04 76.29,33.81C76.11,34.18 75.82,34.72 75.44,34.92C74.91,35.2 74.36,34.77 73.89,34.51C72.89,33.94 71.92,33.32 70.99,32.65C70.54,32.33 69.97,32.68 69.82,33.13C69.23,34.87 68.46,37.12 66.68,37.98C64.41,39.07 62.09,37.08 60.79,35.39C60.45,34.94 59.73,34.81 59.42,35.39C58.58,36.92 57.17,38.45 55.31,38.58C53.65,38.69 51.99,37.31 52.21,35.59C52.31,34.74 51.11,34.59 50.72,35.18C49.31,37.33 46.6,38.67 44.12,37.52C41.84,36.47 40.99,33.43 42.92,31.62C43.51,31.06 42.89,30.09 42.15,30.29C39.15,31.06 34.84,32.11 32.53,29.26C31.64,28.16 31.36,26.37 32.31,25.22C33.33,23.98 35.18,23.96 36.64,24.12C37.39,24.21 37.6,23.23 37.21,22.76C35.76,21.05 33.93,18.86 34.62,16.45C35.32,14.04 38.09,12.99 40.27,14.18C40.88,14.51 41.62,13.96 41.44,13.28C40.74,10.62 40.59,6.92 43.49,5.48C46.59,3.93 48.93,7.6 50.16,9.85C50.66,10.75 52.03,9.95 51.54,9.04C50.6,7.35 49.58,5.63 47.94,4.54C46.43,3.53 44.56,3.23 42.9,3.99C39.16,5.69 39,10.26 39.9,13.7L41.07,12.8C38.24,11.25 34.65,12.33 33.34,15.33C31.94,18.54 34.07,21.51 36.07,23.88L36.64,22.52C34.74,22.31 32.55,22.56 31.2,24.06C29.85,25.57 29.87,27.68 30.72,29.37C32.95,33.75 38.75,32.79 42.57,31.81L41.8,30.48C39.22,32.91 40.08,37.14 43.09,38.77C46.38,40.55 50.15,38.92 52.1,35.97L50.61,35.56C50.3,37.97 52.53,39.99 54.82,40.14C57.43,40.31 59.61,38.31 60.78,36.17H59.41C61.12,38.38 63.88,40.65 66.87,39.59C69.43,38.68 70.55,35.9 71.35,33.52L70.19,33.99C71.43,34.87 72.76,35.85 74.19,36.41C75.46,36.9 76.5,36.29 77.25,35.25C78.84,33.04 78.54,30.08 77.83,27.61L76.66,28.51C77.99,29.46 79.57,29.99 81.2,30.07C82.56,30.14 84.72,29.95 85.56,28.71C86.45,27.41 85.36,25.62 84.67,24.47C83.78,23 82.62,21.71 81.27,20.66L80.5,21.99C82.22,22.26 83.99,21.99 85.48,21.04C86.98,20.09 88.24,18.54 88.01,16.74C87.82,15.18 86.52,14.08 85.12,13.56C83.15,12.82 80.98,13.42 78.94,13.44L79.63,14.64C80.33,13.26 81.06,11.76 80.9,10.17C80.76,8.84 80.09,7.6 78.83,7.06C75.65,5.68 73.4,9.15 70.65,9.89L71.65,10.65C71.88,8.67 71.74,6.62 71.16,4.71C70.6,2.89 69.33,2.11 67.45,2.31C64.13,2.66 61.16,4.58 59.42,7.42L60.87,8.04C61.47,6.06 61.58,3.64 60.65,1.73C59.8,0 57.81,-0.33 56.08,0.3C52.52,1.6 50.32,5.56 50.32,9.22C50.32,10.25 51.91,10.25 51.91,9.22H51.92Z"
android:fillColor="#231F20"/>
<path
android:pathData="M61.32,21.69C65.73,19.66 71.38,18.73 75.46,21.99L75.63,20.74C71.28,23.72 65.83,22.38 61.41,20.32C60.49,19.88 59.68,21.26 60.61,21.69C65.52,23.99 71.59,25.42 76.43,22.12C76.81,21.85 77.02,21.21 76.59,20.86C71.88,17.09 65.65,17.93 60.51,20.3C59.59,20.73 60.39,22.11 61.32,21.68V21.69Z"
android:fillColor="#231F20"/>
<path
android:pathData="M41.69,22.46C43.82,20.69 46.46,19.49 49.21,19.15C50.61,18.98 51.99,19.12 53.24,19.8C54.43,20.44 55.41,21.36 56.38,22.27L56.55,21.02C54.46,22.43 51.77,22.29 49.35,22.43C46.77,22.56 44.28,22.52 41.85,21.53C40.9,21.15 40.49,22.69 41.42,23.07C44.06,24.14 46.83,24.16 49.62,24C52.24,23.86 55.09,23.92 57.35,22.39C57.76,22.12 57.91,21.51 57.51,21.14C56.41,20.11 55.28,19.05 53.93,18.35C52.47,17.59 50.86,17.36 49.23,17.54C46.02,17.91 43.03,19.26 40.56,21.31C39.77,21.97 40.9,23.09 41.69,22.44L41.69,22.46Z"
android:fillColor="#231F20"/>
<path
android:pathData="M34.66,20.83C25.88,23.6 20.46,31.58 17.1,39.7C15.14,44.45 13.63,49.39 12.03,54.27C10.35,59.4 8.69,64.54 7.12,69.71C5.59,74.77 4.16,79.85 2.88,84.98C1.62,90.1 0.39,95.3 0.08,100.58C-0.19,105.16 0.11,110.36 2.47,114.42C3.5,116.2 5,117.66 6.89,118.5C9.11,119.48 11.59,119.67 13.97,119.84C19.89,120.24 25.83,119.88 31.69,119.04C33.11,118.83 34.59,118.68 35.98,118.32C36.88,118.09 37.68,117.43 37.53,116.42C37.17,113.99 33.1,113.96 31.33,114.13C30.33,114.22 30.29,115.67 31.33,115.72C33.08,115.8 34.77,115.33 36.22,114.35C36.66,114.04 36.73,113.5 36.38,113.09C35.78,112.4 34.93,112.05 34.01,112.12C33.15,112.18 32.89,113.43 33.8,113.69C35.18,114.08 36.61,113.27 36.97,111.88C37.14,111.24 36.58,110.82 36,110.9C28.45,112.01 20.66,111.65 13.26,109.76C11.88,109.41 10.47,108.98 9.28,108.14C7.87,107.15 7.37,105.67 7.33,104C7.22,100.27 7.71,96.46 8.33,92.79C9.57,85.36 11.76,78.12 14.07,70.96C16.3,64.02 18.58,57.06 21.31,50.3C23.99,43.67 27.47,37.17 33.08,32.56C33.87,31.91 32.74,30.79 31.95,31.43C26.76,35.71 23.31,41.6 20.68,47.7C17.67,54.68 15.31,61.97 12.96,69.2C10.51,76.75 8.15,84.37 6.82,92.2C6.16,96.02 5.66,99.96 5.73,103.84C5.76,105.48 6.09,107.07 7.16,108.35C8.08,109.44 9.36,110.13 10.67,110.63C12.53,111.35 14.53,111.74 16.48,112.1C18.66,112.5 20.85,112.79 23.06,112.96C27.53,113.29 32,113.1 36.43,112.45L35.45,111.47C35.3,112.04 34.8,112.32 34.24,112.16L34.03,113.73C34.56,113.69 34.92,113.83 35.27,114.23L35.43,112.98C34.19,113.81 32.84,114.2 31.35,114.13V115.73C32.47,115.61 33.59,115.66 34.69,115.94C34.88,115.99 36.08,116.31 35.98,116.66C35.94,116.8 35,116.9 34.85,116.93C32.38,117.37 29.89,117.73 27.39,117.98C22.6,118.46 17.76,118.57 12.96,118.17C10.81,118 8.53,117.73 6.65,116.58C4.95,115.55 3.79,113.82 3.07,112C1.4,107.81 1.4,103 1.85,98.58C2.35,93.79 3.51,89.08 4.68,84.42C5.86,79.77 7.24,74.88 8.67,70.15C10.09,65.42 11.54,60.93 13.04,56.35C14.54,51.76 15.9,47.38 17.54,42.97C20.7,34.41 25.81,25.31 35.09,22.38C36.07,22.08 35.65,20.54 34.66,20.85V20.83Z"
android:fillColor="#231F20"/>
<path
android:pathData="M83.82,28.78C86.27,35.51 86,42.77 85.02,49.76C83.97,57.2 82.45,64.59 81.13,71.99C80.44,75.8 79.76,79.62 79.07,83.43C78.47,86.76 77.95,90.13 77.13,93.41C76.38,96.4 75.33,99.36 73.54,101.9C71.74,104.43 69.12,106.3 66.25,107.54C58.9,110.69 50.64,109.9 42.93,111.46C42.32,111.57 42.19,112.38 42.58,112.79C44.07,114.34 46.03,115.22 48.17,115.37V113.77C46.6,113.89 45.02,113.99 43.44,114.11C42.76,114.15 42.39,114.94 42.88,115.46C44.15,116.81 45.93,117.34 47.74,117.02L47.32,115.49C46.16,115.74 45.01,115.98 43.85,116.23C43.11,116.39 43.17,117.31 43.66,117.69C46.86,120.14 51,120.27 54.84,119.72C58.68,119.16 62.63,118.08 66.34,116.8C70.04,115.51 73.4,113.92 76.28,111.43C79.5,108.64 81.34,104.92 82.61,100.93C84.05,96.39 85.25,91.76 86.47,87.16C87.75,82.32 88.96,77.47 90.02,72.58C92.11,63 93.69,53.28 94.31,43.48C94.48,40.8 94.61,38.1 94.57,35.42C94.53,32.91 94.21,30.4 93.21,28.09C91.54,24.26 88.21,21.29 84.25,19.97C83.27,19.64 82.86,21.18 83.83,21.51C87.23,22.64 90.07,25.18 91.61,28.43C93.51,32.4 93.03,37.19 92.83,41.45C92.37,50.83 90.99,60.14 89.09,69.32C87.21,78.45 84.81,87.45 82.27,96.42C81.13,100.42 80.06,104.65 77.41,107.96C75.15,110.79 72.03,112.74 68.73,114.17C64.94,115.81 60.82,116.91 56.77,117.75C52.73,118.6 48.01,119.01 44.48,116.31L44.29,117.77C45.44,117.52 46.6,117.27 47.75,117.02C48.77,116.81 48.33,115.31 47.33,115.49C46.07,115.71 44.88,115.25 44.01,114.34L43.44,115.7C45.02,115.59 46.6,115.48 48.17,115.37C49.2,115.29 49.2,113.84 48.17,113.77C46.45,113.65 44.9,112.9 43.71,111.66L43.35,112.99C50.57,111.53 58.13,112.11 65.15,109.65C68.09,108.63 70.89,107.11 73.09,104.89C75.29,102.66 76.74,99.88 77.75,96.95C78.83,93.82 79.4,90.57 79.99,87.32C80.69,83.39 81.4,79.46 82.1,75.53C83.49,67.83 84.99,60.15 86.22,52.42C87.45,44.7 88.18,36.1 85.36,28.36C85.02,27.4 83.47,27.81 83.83,28.78H83.82Z"
android:fillColor="#231F20"/>
<path
android:pathData="M32.84,40.99C33.5,45.11 30.19,48.45 27.54,51.1C24.88,53.75 22.33,56.84 21.07,60.53C20.57,61.98 21.09,63.44 22.48,64.13C23.87,64.83 25.37,64.56 26.56,63.7C27.97,62.7 28.93,61.12 29.8,59.66C30.79,58.03 31.64,56.31 32.35,54.53C34,50.47 34.87,46.12 34.96,41.74C34.98,40.72 33.39,40.72 33.37,41.74C33.29,45.27 32.69,48.75 31.57,52.09C30.45,55.43 28.97,58.56 26.86,61.2C26.02,62.26 24.72,63.39 23.28,62.75C21.54,61.98 23.13,59.76 23.69,58.64C24.52,57.03 25.49,55.56 26.71,54.22C27.93,52.88 29.19,51.73 30.4,50.44C32.91,47.75 34.98,44.39 34.37,40.57C34.2,39.55 32.67,39.99 32.83,40.99H32.84Z"
android:fillColor="#231F20"/>
<path
android:pathData="M43.64,45.24C41.65,48.83 38.87,51.86 36.49,55.18C35.27,56.87 34.21,58.66 33.23,60.5C32.33,62.2 31.14,64.02 30.87,65.96C30.65,67.59 31.28,69.37 32.86,70.06C34.44,70.75 36.28,70.02 37.52,68.88C40.26,66.35 41.67,62.48 42.81,59.03C44.35,54.37 45.95,49.58 46.09,44.63C46.12,43.6 44.52,43.6 44.49,44.63C44.39,48.53 43.28,52.28 42.11,55.97C41.08,59.23 40.09,62.58 38.21,65.47C37.4,66.73 36.24,68.44 34.64,68.71C32.49,69.06 32.16,66.75 32.68,65.21C33.28,63.46 34.34,61.77 35.23,60.15C36.12,58.54 37.07,57.06 38.13,55.61C40.45,52.44 43.1,49.5 45.01,46.04C45.51,45.14 44.13,44.34 43.64,45.24Z"
android:fillColor="#231F20"/>
<path
android:pathData="M55.93,44.86C55.55,48.37 54.79,51.93 52.74,54.87C51.02,57.35 48.63,59.29 47,61.84C45.9,63.55 43.94,68.58 47.72,68.53C49.18,68.51 50.56,67.51 51.61,66.58C52.75,65.55 53.68,64.26 54.36,62.87C56.16,59.23 56.25,55.09 56.06,51.12C56.01,50.1 54.41,50.09 54.46,51.12C54.62,54.35 54.63,57.67 53.54,60.76C52.7,63.13 50.84,66.09 48.27,66.83C46.3,67.41 47.27,64.77 47.7,63.85C48.26,62.67 49.05,61.63 49.89,60.64C51.61,58.64 53.57,56.79 54.87,54.47C56.52,51.53 57.16,48.17 57.52,44.85C57.64,43.83 56.04,43.84 55.93,44.85V44.86Z"
android:fillColor="#231F20"/>
<path
android:pathData="M65.99,45.65C65.01,49.64 63.18,53.3 61.46,57C60.62,58.83 59.8,60.67 59.12,62.57C58.51,64.31 57.88,66.21 57.76,68.07C57.67,69.53 58.34,71.24 60.03,71.3C61.73,71.36 63.01,69.73 63.89,68.44C66.03,65.27 67.55,61.66 68.36,57.93C69.31,53.63 69.34,49.18 68.44,44.87C68.22,43.86 66.69,44.29 66.9,45.29C68.3,51.99 67.25,59.13 64.01,65.16C63.28,66.51 62.45,68.17 61.24,69.17C60.68,69.63 59.8,70.04 59.44,69.13C59.16,68.39 59.43,67.44 59.59,66.7C60.32,63.3 61.75,60.12 63.22,56.98C64.88,53.44 66.59,49.89 67.53,46.07C67.78,45.07 66.24,44.65 65.99,45.65V45.65Z"
android:fillColor="#231F20"/>
<path
android:pathData="M78.15,40.03C78.5,44.2 75.24,47.31 73.23,50.59C71.33,53.66 70.25,57.26 70.15,60.87C70.11,62.2 70.33,63.76 71.32,64.75C72.42,65.85 74.04,65.63 75.22,64.78C77.94,62.81 78.69,59.08 79.14,55.97C79.82,51.34 79.87,46.65 79.91,41.98C79.92,40.95 78.33,40.95 78.32,41.98C78.28,45.61 78.26,49.23 77.92,52.85C77.64,55.89 77.36,59.47 75.6,62.08C74.95,63.05 73.18,64.9 72.2,63.29C71.52,62.17 71.72,60.58 71.86,59.35C72.23,56.01 73.53,52.92 75.43,50.16C77.53,47.11 80.09,43.98 79.76,40.04C79.67,39.02 78.08,39.01 78.16,40.04L78.15,40.03Z"
android:fillColor="#231F20"/>
<path
android:pathData="M74.23,69.07C72.62,73.25 69.18,80.79 67.2,84.8C65.23,88.82 63.72,93.27 64.3,97.71C64.34,98.03 64.43,98.4 64.72,98.54C65.04,98.69 65.42,98.47 65.71,98.23C68.35,96.06 69.98,92.9 71.18,89.7C73.62,83.26 74.61,76.29 74.1,69.43"
android:fillColor="#231F20"/>
<path
android:pathData="M73.47,68.86C72.09,72.43 70.5,75.92 68.9,79.38C67.2,83.05 65.16,86.65 64.11,90.57C63.49,92.88 63.19,95.33 63.5,97.71C63.62,98.52 64.01,99.39 64.97,99.38C65.93,99.37 66.72,98.44 67.32,97.84C70.45,94.63 72.1,90.1 73.28,85.86C74.75,80.52 75.29,74.94 74.9,69.42C74.83,68.4 73.23,68.39 73.3,69.42C73.63,73.93 73.33,78.47 72.37,82.89C71.48,86.95 70.18,91.19 67.84,94.67C67.35,95.4 66.81,96.08 66.19,96.71C66.03,96.87 65.33,97.74 65.08,97.71C65.05,97.71 64.99,96.33 64.98,96.12C64.93,93.95 65.35,91.82 66.01,89.76C67.13,86.28 68.96,83.03 70.49,79.71C72.02,76.39 73.64,72.82 75,69.28C75.37,68.32 73.83,67.9 73.46,68.85L73.47,68.86Z"
android:fillColor="#231F20"/>
<path
android:pathData="M61.55,75.66C58.89,79.86 55.34,83.44 52.63,87.6C49.93,91.76 48.06,96.89 49.35,101.68C49.59,102.58 50.06,103.56 50.96,103.79C52.05,104.07 53.03,103.11 53.63,102.17C54.67,100.52 55.35,98.67 55.99,96.83C58.32,90.13 60.34,83.32 62.01,76.44"
android:fillColor="#231F20"/>
<path
android:pathData="M60.86,75.27C56.3,82.39 48.91,88.34 48.19,97.32C48.04,99.15 48.16,101.31 49,102.99C49.79,104.57 51.52,105.13 53,104.05C54.59,102.89 55.4,100.7 56.09,98.93C56.93,96.76 57.64,94.54 58.36,92.33C60.03,87.16 61.51,81.93 62.8,76.66C63.04,75.66 61.5,75.23 61.26,76.23C60.25,80.34 59.14,84.42 57.91,88.47C57.27,90.54 56.61,92.61 55.91,94.68C55.29,96.52 54.7,98.4 53.85,100.15C53.32,101.24 51.51,104.55 50.39,102.18C49.67,100.65 49.66,98.66 49.83,97.02C50.22,93.24 52.07,89.75 54.24,86.69C56.8,83.06 59.86,79.82 62.26,76.07C62.81,75.2 61.43,74.4 60.88,75.26L60.86,75.27Z"
android:fillColor="#231F20"/>
<path
android:pathData="M51.05,74.01C48.57,79.46 45.46,84.63 41.81,89.37C38.98,93.05 35.73,96.69 34.76,101.23C34.44,102.7 34.7,104.68 36.16,105.01C37.43,105.3 38.5,104.07 39.2,102.97C44.85,94.07 49.03,84.24 51.5,73.99"
android:fillColor="#231F20"/>
<path
android:pathData="M50.36,73.61C48.13,78.47 45.43,83.11 42.27,87.43C39.48,91.26 36.02,94.8 34.44,99.36C33.85,101.07 33.34,103.39 34.61,104.94C36.05,106.68 38.19,105.61 39.33,104.16C40.81,102.27 41.95,100.03 43.1,97.93C44.36,95.62 45.53,93.25 46.6,90.84C48.98,85.48 50.88,79.91 52.27,74.2C52.51,73.2 50.97,72.78 50.73,73.78C48.5,82.94 44.95,91.75 40.16,99.87C39.59,100.85 39.01,101.84 38.38,102.77C37.94,103.4 37.08,104.6 36.17,104.19C35.46,103.87 35.4,102.77 35.44,102.11C35.49,101.09 35.86,100.05 36.24,99.11C37.88,95.02 41.08,91.75 43.65,88.24C46.8,83.92 49.51,79.28 51.74,74.42C52.17,73.49 50.79,72.68 50.37,73.61H50.36Z"
android:fillColor="#231F20"/>
<path
android:pathData="M39.21,76.66C34.12,82.48 29.76,88.94 26.28,95.85C25.22,97.97 24.22,100.18 24.01,102.55C23.95,103.31 24.03,104.18 24.65,104.62C25.61,105.3 26.88,104.35 27.62,103.43C33.82,95.78 36.46,85.92 38.94,76.39"
android:fillColor="#231F20"/>
<path
android:pathData="M38.65,76.1C35.5,79.7 32.62,83.54 30.06,87.57C28.78,89.59 27.59,91.65 26.47,93.75C25.35,95.86 24.17,98.08 23.57,100.44C23.18,101.99 22.67,104.52 24.46,105.43C26.37,106.41 28.06,104.19 29.04,102.89C31.72,99.36 33.69,95.37 35.29,91.25C37.13,86.48 38.43,81.54 39.72,76.61C39.98,75.61 38.44,75.19 38.18,76.18C36.17,83.89 34.11,91.76 29.98,98.65C29.02,100.26 27.96,102.04 26.61,103.35C25.99,103.95 24.96,104.47 24.81,103.24C24.69,102.26 25.01,101.16 25.29,100.23C25.92,98.14 26.98,96.19 28,94.27C29.02,92.35 30.06,90.57 31.18,88.77C33.74,84.7 36.61,80.84 39.78,77.22C40.45,76.44 39.33,75.32 38.65,76.09L38.65,76.1Z"
android:fillColor="#231F20"/>
<path
android:pathData="M27.03,71.62C23.96,80.21 14.29,85.36 11.93,94.19C11.71,94.99 11.59,95.92 12.06,96.62C12.58,97.38 13.67,97.55 14.53,97.25C15.4,96.96 16.09,96.29 16.69,95.6C19.62,92.32 21.57,88.31 23.48,84.35C25.47,80.24 27.5,75.88 27.17,71.33"
android:fillColor="#231F20"/>
<path
android:pathData="M26.25,71.41C23.55,78.83 16.3,83.3 12.68,90.18C11.83,91.79 10.74,93.98 10.97,95.86C11.21,97.83 13.29,98.62 15,97.93C17.01,97.12 18.47,94.82 19.63,93.11C20.95,91.16 22.05,89.07 23.09,86.97C25.5,82.11 28.3,76.92 27.98,71.33C27.91,70.31 26.32,70.31 26.38,71.33C26.66,75.95 24.62,80.18 22.66,84.23C20.7,88.28 18.89,92.1 15.94,95.26C15.34,95.9 14.58,96.66 13.62,96.6C12.27,96.52 12.5,95.11 12.76,94.17C13.23,92.51 13.99,90.97 14.9,89.52C16.77,86.56 19.23,84.04 21.53,81.42C24.06,78.54 26.46,75.49 27.78,71.84C28.14,70.88 26.59,70.46 26.25,71.42L26.25,71.41Z"
android:fillColor="#231F20"/>
<path
android:pathData="M68.48,18.66C68.11,19.36 67.75,20.06 67.45,20.8C67.15,21.53 66.82,22.39 67.11,23.17C67.2,23.41 67.33,23.59 67.57,23.69C67.79,23.78 68.07,23.79 68.28,23.65C68.93,23.2 69.22,22.48 69.53,21.79C69.87,21.06 70.19,20.32 70.43,19.55C70.56,19.15 70.29,18.66 69.87,18.57C69.44,18.47 69.03,18.71 68.9,19.13C68.79,19.46 68.68,19.78 68.55,20.1C68.51,20.19 68.48,20.29 68.44,20.37C68.49,20.24 68.41,20.42 68.4,20.45C68.33,20.61 68.26,20.76 68.19,20.92C68.05,21.22 67.9,21.53 67.76,21.82C67.69,21.95 67.62,22.07 67.55,22.19C67.47,22.32 67.66,22.09 67.53,22.21C67.5,22.24 67.47,22.26 67.44,22.29C67.53,22.23 67.54,22.22 67.47,22.27L68.63,22.75C68.62,22.7 68.61,22.66 68.59,22.62C68.57,22.53 68.57,22.53 68.59,22.63C68.57,22.6 68.59,22.47 68.59,22.43C68.59,22.33 68.6,22.33 68.59,22.43C68.6,22.38 68.61,22.33 68.62,22.29C68.63,22.22 68.66,22.16 68.67,22.09C68.72,21.92 68.77,21.77 68.83,21.61C68.85,21.53 68.88,21.46 68.92,21.38C68.93,21.35 69.02,21.12 68.96,21.27C69.22,20.65 69.54,20.05 69.85,19.46C70.04,19.09 69.96,18.57 69.57,18.37C69.2,18.18 68.68,18.26 68.48,18.65V18.66Z"
android:fillColor="#231F20"/>
<path
android:pathData="M48.43,17.96L47.22,20.05L46.59,21.12C46.35,21.54 46.01,21.99 46.17,22.51C46.33,23.02 46.77,23.28 47.27,23.28C47.67,23.28 48.03,23.11 48.35,22.87C48.9,22.44 49.25,21.85 49.53,21.22C49.88,20.39 50.21,19.56 50.54,18.73C50.7,18.34 50.37,17.84 49.98,17.75C49.52,17.64 49.17,17.89 49.01,18.31C48.76,18.91 48.52,19.52 48.27,20.12C48.24,20.19 48.21,20.26 48.18,20.32C48.16,20.39 48.13,20.49 48.17,20.36C48.13,20.49 48.06,20.61 48.01,20.73C47.95,20.84 47.89,20.95 47.84,21.05C47.8,21.11 47.69,21.37 47.62,21.38C47.62,21.38 47.72,21.26 47.66,21.34C47.64,21.36 47.62,21.38 47.6,21.41C47.56,21.45 47.52,21.49 47.48,21.53C47.47,21.55 47.37,21.65 47.35,21.65C47.34,21.65 47.48,21.57 47.39,21.62C47.35,21.64 47.33,21.66 47.29,21.68C47.26,21.7 47.14,21.75 47.26,21.7C47.38,21.66 47.3,21.69 47.27,21.7C47.13,21.73 47.43,21.7 47.29,21.7C47.15,21.7 47.45,21.74 47.33,21.7C47.59,21.78 47.76,22.08 47.69,22.34C47.64,22.57 47.72,22.34 47.76,22.29L47.88,22.08L48.14,21.63L48.64,20.75L49.8,18.77C50.01,18.41 49.89,17.89 49.52,17.68C49.14,17.47 48.65,17.58 48.42,17.96L48.43,17.96Z"
android:fillColor="#231F20"/>
</group>
</vector>

View File

@ -0,0 +1,52 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="120dp"
android:height="120dp"
android:viewportWidth="120"
android:viewportHeight="120">
<group>
<clip-path
android:pathData="M0,0h120v120h-120z"/>
<path
android:pathData="M61.77,8.55C39.81,8.61 17.86,20.55 6.88,39.67C-4.1,58.8 -1.88,81.36 10.36,98.28C16.89,107.31 25.98,113.58 36.67,116.72C43.21,118.64 50.06,119.46 56.85,119.83C63.64,120.2 70.91,120.03 77.67,118.19C89.11,115.09 98.71,107.14 105.14,97.36C112.41,86.32 115.57,73.01 116.26,59.95C116.62,53.21 116.33,46.34 113.64,40.05C111.15,34.22 107.01,29.22 102.44,24.89C93.41,16.35 81.96,9.87 69.47,8.38C66.43,8.02 63.38,8 60.34,8.31C58.47,8.5 58.46,11.43 60.34,11.24C72.36,10.01 84.03,14.45 93.68,21.4C98.57,24.93 103.19,29.2 106.79,34.06C110.39,38.92 112.8,44.8 113.31,51.1C113.81,57.39 113.28,64.13 112.18,70.47C111.09,76.81 109.35,82.93 106.64,88.68C101.83,98.91 93.99,107.84 83.71,112.83C78.08,115.56 71.89,116.74 65.67,117C59.11,117.26 52.4,116.84 45.93,115.79C34.87,113.98 24.56,109.7 16.79,101.47C3.49,87.41 -0.84,65.53 6.3,47.57C14.01,28.12 33.71,14.62 54.2,11.96C56.71,11.63 59.23,11.48 61.77,11.47C63.66,11.47 63.67,8.54 61.77,8.54V8.55Z"
android:fillColor="#231F20"/>
<path
android:pathData="M97.9,21.81C105.68,19.09 112.79,14.5 118.46,8.53C118.93,11.33 118,14.16 116.99,16.82C114.91,22.25 112.38,27.5 109.85,32.73C106.69,28.81 103.09,25.23 99.14,22.09"
android:fillColor="#231F20"/>
<path
android:pathData="M98.3,23.23C106.33,20.39 113.61,15.73 119.5,9.57L117.05,8.92C117.6,12.91 115.35,17.2 113.81,20.75C112.18,24.55 110.38,28.27 108.58,32L110.89,31.7C107.72,27.77 104.14,24.21 100.19,21.06C98.73,19.89 96.63,21.95 98.11,23.13C102.06,26.29 105.64,29.85 108.81,33.77C109.38,34.48 110.74,34.27 111.12,33.48C113.11,29.36 115.09,25.25 116.86,21.04C118.63,16.84 120.51,12.69 119.87,8.14C119.71,7.02 118.11,6.77 117.41,7.5C111.88,13.28 105.06,17.73 97.5,20.41C95.73,21.03 96.5,23.87 98.29,23.23H98.3Z"
android:fillColor="#231F20"/>
<path
android:pathData="M28.84,19.12C22.69,13.28 16.57,7.39 10.5,1.45C10.18,12.59 9.87,23.74 9.55,34.88C13.74,28.01 20.35,22.63 27.94,19.89"
android:fillColor="#231F20"/>
<path
android:pathData="M29.88,18.08C23.73,12.24 17.61,6.35 11.55,0.42C10.62,-0.49 9.07,0.19 9.04,1.46C8.72,12.6 8.4,23.75 8.09,34.89C8.05,36.39 10.08,36.84 10.83,35.64C14.88,29.08 21.08,23.98 28.34,21.32C30.1,20.67 29.35,17.84 27.56,18.49C19.56,21.43 12.76,26.92 8.28,34.16L11.03,34.9C11.35,23.76 11.67,12.61 11.98,1.47L9.48,2.51C15.54,8.44 21.66,14.33 27.81,20.18C29.18,21.48 31.26,19.41 29.89,18.11L29.88,18.08Z"
android:fillColor="#231F20"/>
<path
android:pathData="M95.24,32.82C86.51,40.57 80.35,51.13 77.91,62.51C82.21,63.64 86.9,62.08 90.35,59.29C93.8,56.49 96.18,52.59 98.1,48.6C99.66,45.32 100.98,41.87 101.26,38.26C101.41,36.33 101.15,34.14 99.67,32.88C98.19,31.62 95.28,32.24 95.12,34.18"
android:fillColor="#231F20"/>
<path
android:pathData="M94.19,31.78C85.29,39.74 79.03,50.47 76.49,62.12C76.32,62.88 76.71,63.73 77.51,63.93C85.46,65.86 92.53,60.62 96.64,54.27C98.81,50.91 100.63,47.13 101.77,43.3C102.76,39.98 103.7,35.28 101.19,32.36C99.19,30.02 94.2,30.2 93.68,33.78C93.42,35.63 96.25,36.43 96.52,34.57C96.67,33.57 97.97,33.45 98.7,33.98C99.91,34.87 99.87,36.94 99.77,38.26C99.47,42.35 97.68,46.32 95.77,49.9C92.43,56.18 86.25,63.02 78.29,61.09L79.31,62.9C81.75,51.69 87.7,41.51 96.26,33.85C97.67,32.59 95.58,30.52 94.18,31.78H94.19Z"
android:fillColor="#231F20"/>
<path
android:pathData="M37.71,58.54C38.02,50.78 37.61,42.89 34.44,35.79C33.65,34.04 32.64,32.34 31.1,31.18C29.57,30.03 27.42,29.55 25.68,30.36C24.27,31.02 23.31,32.41 22.89,33.91C22.48,35.41 22.54,36.99 22.72,38.53C23.42,44.44 25.88,50.12 29.7,54.69C31.72,57.11 34.71,59.39 37.76,58.59"
android:fillColor="#231F20"/>
<path
android:pathData="M39.18,58.54C39.39,52.99 39.25,47.38 38.01,41.93C37,37.48 35.21,31.36 30.68,29.24C28.53,28.24 25.99,28.2 24.04,29.66C21.99,31.18 21.17,33.73 21.11,36.2C21,41.28 22.84,46.64 25.34,51.01C27.84,55.37 32.29,61.27 38.15,60C40,59.59 39.21,56.77 37.36,57.17C33.36,58.05 30.05,53.13 28.3,50.24C26.18,46.75 24.75,42.81 24.22,38.75C23.95,36.72 23.79,34.28 25.18,32.58C26.48,31.01 28.65,31.23 30.19,32.35C31.74,33.48 32.65,35.3 33.37,37.01C34.22,39.05 34.85,41.2 35.31,43.37C36.36,48.36 36.42,53.49 36.23,58.55C36.16,60.44 39.11,60.44 39.17,58.55L39.18,58.54Z"
android:fillColor="#231F20"/>
<path
android:pathData="M1.62,62.02C9.12,63.13 16.58,64.42 24.01,65.92C31.44,67.42 38.71,69.2 46.07,70.84C53.43,72.47 60.84,73.64 68.37,74.03C75.91,74.42 83.58,74.28 91.17,74.14C99.43,73.99 107.77,73.51 115.77,71.26C117.59,70.76 116.82,67.92 114.99,68.44C107.92,70.41 100.6,70.98 93.29,71.17C85.98,71.35 78.29,71.46 70.81,71.2C63.33,70.95 56.01,69.99 48.71,68.42C41.41,66.85 34.37,65.07 27.16,63.58C18.96,61.88 10.7,60.43 2.41,59.21C0.56,58.93 -0.25,61.76 1.62,62.03V62.02Z"
android:fillColor="#231F20"/>
<path
android:pathData="M84.59,73.19C84.88,80.84 84.72,88.52 84.1,96.15C84.01,97.23 85.42,98.02 86.32,97.42C96.81,90.34 106.24,81.78 114.23,71.98C115.42,70.53 113.35,68.44 112.15,69.91C104.32,79.51 95.12,87.95 84.83,94.89L87.05,96.16C87.68,88.53 87.85,80.85 87.54,73.2C87.47,71.31 84.53,71.3 84.6,73.2L84.59,73.19Z"
android:fillColor="#231F20"/>
<path
android:pathData="M52.29,71.96C52.29,81.14 52.29,90.32 52.3,99.5C52.3,100.51 53.24,101.1 54.16,100.92C57.22,100.31 59.6,98.28 61.87,96.27C64.48,93.96 67.02,91.58 69.52,89.15C74.44,84.34 79.14,79.3 83.59,74.04C84.8,72.61 82.74,70.52 81.51,71.97C77.26,76.99 72.79,81.81 68.11,86.43C65.79,88.71 63.42,90.94 61.01,93.11C58.77,95.14 56.48,97.47 53.4,98.09L55.26,99.5C55.26,90.32 55.26,81.14 55.25,71.96C55.25,70.07 52.3,70.06 52.3,71.96H52.29Z"
android:fillColor="#231F20"/>
<path
android:pathData="M16.87,65.51C16.87,74.66 16.87,83.8 16.87,92.94C16.87,93.89 17.81,94.62 18.73,94.36C24.53,92.72 29.18,88.26 33.76,84.58C38.93,80.43 44.03,76.21 49.08,71.93C50.52,70.7 48.43,68.64 47,69.86C42.2,73.93 37.34,77.95 32.44,81.9C30.11,83.78 27.81,85.68 25.41,87.49C23.01,89.29 20.72,90.76 17.95,91.54L19.81,92.96C19.81,83.82 19.81,74.68 19.81,65.53C19.81,63.65 16.87,63.64 16.87,65.53V65.51Z"
android:fillColor="#231F20"/>
<path
android:pathData="M17.49,64.34C12.52,68.8 7.33,72.97 1.91,76.86C1.26,77.32 0.96,78.14 1.38,78.86C1.75,79.49 2.75,79.85 3.39,79.39C9.01,75.35 14.42,71.03 19.57,66.42C20.99,65.16 18.9,63.08 17.49,64.34Z"
android:fillColor="#231F20"/>
</group>
</vector>

View File

@ -0,0 +1,22 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="149dp"
android:height="120dp"
android:viewportWidth="149"
android:viewportHeight="120">
<group>
<clip-path
android:pathData="M0.23,0h148v119.93h-148z"/>
<path
android:pathData="M68.25,73.02C56.69,85.64 45.13,98.26 33.57,110.88L35.58,112.06C40.42,98.94 47.36,86.6 56.09,75.67C56.8,74.78 56.17,73.31 54.92,73.66C39.43,77.89 23.94,82.11 8.46,86.35L9.39,88.56C21.54,81.31 32.45,72.04 41.54,61.19C42.32,60.26 41.59,58.92 40.37,59.18C28.17,61.66 15.98,64.13 3.79,66.61L4.72,68.82C12.69,64.42 20.68,60.03 28.65,55.64C29.61,55.12 29.32,53.75 28.37,53.44C19.48,50.47 10.82,46.87 2.44,42.65L1.83,44.91C9.05,44.73 16.28,44.92 23.49,45.46C24.65,45.55 24.92,44.14 24.34,43.4C17.61,34.91 11.76,25.75 6.85,16.09L5.2,17.74C15.41,25.13 25.27,32.99 34.76,41.27C35.47,41.89 36.92,41.54 36.82,40.42C35.76,28.69 34.69,16.96 33.63,5.22L31.38,5.84C37.49,15.81 43.59,25.79 49.7,35.76C50.25,36.66 51.6,36.47 51.9,35.48C55.32,24.44 57.87,13.16 59.53,1.73L57.32,2.02C61.18,10.32 63.76,19.17 65.05,28.23C65.19,29.25 66.83,29.4 67.25,28.51C71.19,20.38 74.73,12.04 77.85,3.56L75.48,3.24C75.9,11.79 75.48,20.38 74.17,28.83C74.01,29.87 74.95,30.71 75.94,30.2C88.52,23.71 100.8,16.66 112.74,9.09L111.28,7.19C105.11,13.28 98.93,19.36 92.76,25.45C91.94,26.27 92.77,27.87 93.94,27.47C109.26,22.23 124.58,17 139.9,11.76L138.73,9.74C127.56,18.72 116.39,27.7 105.23,36.68C104.56,37.22 104.91,38.56 105.76,38.69C119.41,40.9 133.05,43.09 146.7,45.3L147.02,42.92C135.36,42.82 123.73,43.58 112.19,45.19C111.04,45.36 111.18,46.87 111.9,47.4C116.65,50.89 121.33,54.47 125.92,58.17C130.95,62.23 136.07,66.38 140.43,71.18C141.23,72.05 141.94,72.88 142.56,73.85C142.7,74.07 142.83,74.28 142.94,74.5C143.03,74.66 143.16,75 143.1,74.84C143.16,75 143.21,75.16 143.25,75.32C143.27,75.44 143.36,75.53 143.25,75.26C143.28,75.33 143.25,75.45 143.25,75.53L145.07,74.48C132.98,67.73 120.55,60.86 106.74,58.47C105.72,58.3 104.83,59.27 105.37,60.24C112.12,72.37 118.88,84.5 125.63,96.62C127.54,100.07 129.46,103.52 131.38,106.96L133.03,105.31C120.11,97.89 107.89,89.27 96.59,79.53C93.39,76.78 90.26,73.93 87.21,71.01C86.47,70.3 85.14,70.8 85.15,71.87C85.34,87.54 83.29,103.18 79.06,118.28H81.39C76.43,103.83 72.94,88.87 71.06,73.71C70.87,72.19 68.46,72.16 68.65,73.71C70.56,89.09 74.03,104.25 79.05,118.92C79.43,120.02 81.05,120.12 81.38,118.92C85.67,103.63 87.75,87.76 87.56,71.88L85.5,72.73C96.37,83.13 108.21,92.52 120.83,100.71C124.43,103.04 128.09,105.27 131.8,107.41C132.87,108.02 134.04,106.81 133.45,105.76C126.7,93.64 119.95,81.51 113.2,69.39C111.28,65.94 109.36,62.49 107.45,59.04L106.08,60.82C119.71,63.16 131.91,69.92 143.84,76.58C144.67,77.04 145.6,76.45 145.66,75.53C145.77,73.76 144.26,72 143.22,70.73C141.39,68.5 139.27,66.51 137.15,64.57C131.82,59.71 126.16,55.22 120.45,50.83C118.03,48.97 115.58,47.13 113.13,45.32L112.84,47.53C124.16,45.95 135.6,45.24 147.03,45.35C148.35,45.36 148.73,43.2 147.35,42.97C133.7,40.77 120.06,38.57 106.41,36.37L106.94,38.38C118.11,29.4 129.27,20.42 140.43,11.44C141.37,10.69 140.36,9.05 139.26,9.43C123.94,14.67 108.61,19.9 93.29,25.14L94.47,27.16C100.64,21.07 106.82,14.99 112.99,8.9C113.95,7.95 112.7,6.25 111.53,7C99.58,14.59 87.3,21.63 74.73,28.11L76.5,29.48C77.85,20.8 78.33,12.02 77.89,3.24C77.82,1.84 75.98,1.65 75.51,2.92C72.46,11.22 69,19.35 65.14,27.3L67.35,27.58C66.03,18.31 63.32,9.3 59.38,0.8C58.96,-0.1 57.32,0.07 57.18,1.09C55.51,12.51 52.96,23.8 49.55,34.83L51.76,34.55C45.65,24.57 39.54,14.6 33.44,4.62C32.86,3.67 31.08,3.98 31.18,5.23C32.25,16.96 33.31,28.69 34.37,40.42L36.43,39.57C26.78,31.14 16.74,23.17 6.38,15.65C5.32,14.88 4.23,16.33 4.73,17.3C9.74,27.14 15.74,36.45 22.61,45.1L23.46,43.04C16.25,42.51 9.03,42.33 1.81,42.49C0.67,42.51 0.08,44.18 1.19,44.74C9.75,49.05 18.61,52.74 27.7,55.77L27.41,53.57C19.44,57.96 11.45,62.35 3.48,66.74C2.23,67.43 3.11,69.22 4.41,68.95C16.61,66.47 28.8,63.99 40.99,61.51L39.81,59.49C30.85,70.19 20.14,79.33 8.15,86.48C6.98,87.18 7.74,89.05 9.08,88.69C24.56,84.46 40.05,80.23 55.54,75.99L54.36,73.98C45.35,85.24 38.21,97.88 33.23,111.42C32.81,112.56 34.46,113.45 35.24,112.6C46.8,99.98 58.36,87.36 69.92,74.73C70.96,73.59 69.27,71.88 68.21,73.03L68.25,73.02Z"
android:fillColor="#231F20"/>
<path
android:pathData="M63.06,40.38C63.15,42.65 63.56,44.91 64.31,47.05C64.52,47.65 65.14,48.11 65.8,47.89C66.38,47.71 66.87,47.04 66.64,46.41C65.91,44.33 65.55,42.43 65.47,40.38C65.45,39.76 64.93,39.14 64.26,39.18C63.63,39.2 63.03,39.71 63.05,40.38H63.06Z"
android:fillColor="#231F20"/>
<path
android:pathData="M69.63,38.44C69.73,41.36 70.24,44.27 71.14,47.05C71.35,47.67 71.98,48.07 72.63,47.89C73.23,47.73 73.67,47.03 73.47,46.41C72.62,43.8 72.14,41.16 72.04,38.44C72.02,37.79 71.5,37.23 70.83,37.23C70.16,37.23 69.6,37.79 69.63,38.44Z"
android:fillColor="#231F20"/>
<path
android:pathData="M55.07,46.77C58.23,52.05 62.58,56.56 67.78,59.85C70.37,61.49 73.37,63.12 76.54,62.92C79.71,62.73 81.94,60.91 83.09,58.06C84.56,54.47 84.98,50.32 84.87,46.48C84.83,44.93 82.42,44.92 82.46,46.48C82.52,48.55 82.4,50.61 82.04,52.64C81.75,54.33 81.38,56.15 80.63,57.7C78.92,61.19 75,60.91 71.95,59.44C65.81,56.48 60.64,51.37 57.15,45.55C56.35,44.22 54.27,45.43 55.07,46.77Z"
android:fillColor="#231F20"/>
</group>
</vector>

View File

@ -0,0 +1,52 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="149dp"
android:height="148dp"
android:viewportWidth="149"
android:viewportHeight="148">
<group>
<clip-path
android:pathData="M0.27,0h148.46v148h-148.46z"/>
<path
android:pathData="M83.15,71.48C83.62,68.97 84.64,66.63 85.38,64.2C86.13,61.78 86.46,59.22 85.91,56.65C85.34,53.96 84.28,51.31 83.3,48.74C82.31,46.17 81.23,43.64 80.06,41.15C79.13,39.17 78.13,36.83 76.03,35.85C73.64,34.73 71.04,35.74 68.78,36.68C66.3,37.71 63.7,38.75 61.43,40.16C59.42,41.41 58.94,43.76 60.36,45.69C61.79,47.62 64.16,48.12 66.33,48.23C69.36,48.39 72.48,47.93 75.4,47.17C76.66,46.85 76.13,44.89 74.86,45.22C72.48,45.84 70.06,46.18 67.61,46.22C65.99,46.25 64.14,46.15 62.75,45.21C62.16,44.82 61.64,44.21 61.54,43.48C61.37,42.31 62.54,41.83 63.4,41.38C65.52,40.28 67.7,39.28 69.92,38.38C71.73,37.65 74.12,36.66 75.83,38.1C77.33,39.35 78.07,41.6 78.86,43.32C80.79,47.56 82.68,52.03 83.82,56.56C84.46,59.1 84.14,61.48 83.36,63.94C82.62,66.27 81.66,68.53 81.22,70.94C80.98,72.22 82.93,72.77 83.17,71.48H83.15Z"
android:fillColor="#231F20"/>
<path
android:pathData="M66.56,48.36C67.32,48.66 68.16,48.78 68.95,48.95C69.41,49.04 69.88,49.14 70.34,49.27C70.55,49.33 70.76,49.39 70.96,49.46C71.05,49.49 71.15,49.52 71.23,49.56C71.35,49.6 71.23,49.56 71.21,49.54C71.26,49.56 71.32,49.59 71.37,49.62C71.44,49.65 71.52,49.7 71.59,49.74C71.68,49.79 71.75,49.87 71.62,49.75C71.84,49.95 72.07,50.16 72.25,50.4C72.57,50.81 72.81,51.29 72.91,51.79C73.08,52.72 72.62,53.56 71.89,54.17C71.49,54.5 70.99,54.74 70.53,54.99C70.45,55.03 70.26,55.11 70.45,55.04C70.36,55.07 70.28,55.09 70.19,55.11C69.99,55.18 70.24,55.13 70.05,55.13C69.87,55.14 69.69,55.15 69.52,55.16C68.22,55.2 68.22,57.23 69.52,57.19C70.14,57.17 70.73,57.12 71.3,56.86C71.77,56.64 72.26,56.36 72.69,56.07C73.91,55.24 74.79,54.01 74.94,52.53C75.08,51.06 74.35,49.62 73.34,48.6C72.54,47.8 71.5,47.47 70.42,47.21C69.35,46.96 68.14,46.83 67.07,46.42C66.57,46.21 65.96,46.64 65.83,47.13C65.67,47.7 66.02,48.17 66.53,48.37L66.56,48.36Z"
android:fillColor="#231F20"/>
<path
android:pathData="M50.85,53.81C54.23,53.6 57.64,53.73 60.99,54.28C63.58,54.7 66.24,55.28 68.5,56.67C69.71,57.4 73.65,61 70.88,62.04C69.96,62.39 68.92,62.38 67.96,62.42C66.91,62.47 65.85,62.49 64.8,62.58C63.51,62.69 63.5,64.71 64.8,64.6C66.7,64.44 68.64,64.55 70.53,64.21C71.57,64.03 72.63,63.6 73.26,62.72C74.03,61.65 73.9,60.29 73.4,59.15C71.44,54.59 65.98,53.04 61.52,52.32C57.99,51.74 54.41,51.56 50.84,51.78C49.54,51.86 49.54,53.89 50.84,53.8L50.85,53.81Z"
android:fillColor="#231F20"/>
<path
android:pathData="M49.35,62.1C52.23,62.14 55.1,62.41 57.93,62.96C60.52,63.45 63.29,64.03 65.58,65.39C66.55,65.97 67.41,66.77 67.95,67.78C68.32,68.45 68.91,70.36 67.8,70.61C67.24,70.73 66.57,70.67 66,70.68C65.24,70.7 64.47,70.71 63.7,70.71C62.29,70.71 60.86,70.67 59.44,70.61C56.15,70.47 52.86,70.15 49.6,69.67C48.32,69.49 47.77,71.44 49.06,71.63C52.45,72.13 55.85,72.47 59.27,72.63C60.97,72.7 62.66,72.73 64.35,72.73C65.17,72.73 65.99,72.71 66.81,72.68C67.55,72.66 68.36,72.66 69.04,72.3C70.24,71.67 70.54,70.12 70.4,68.88C70.24,67.55 69.59,66.37 68.72,65.38C66.7,63.08 63.54,62.16 60.68,61.48C56.97,60.58 53.16,60.12 49.34,60.06C48.04,60.04 48.04,62.07 49.34,62.09L49.35,62.1Z"
android:fillColor="#231F20"/>
<path
android:pathData="M52.35,44.17C54.72,43.96 57.08,44.12 59.4,44.65C59.93,44.77 60.49,44.48 60.65,43.94C60.79,43.42 60.48,42.82 59.94,42.69C57.46,42.12 54.89,41.92 52.36,42.13C51.81,42.18 51.35,42.57 51.35,43.15C51.35,43.66 51.81,44.21 52.36,44.16L52.35,44.17Z"
android:fillColor="#231F20"/>
<path
android:pathData="M83.29,66.13C84.78,70.29 86.67,74.45 89.89,77.57C93.12,80.69 97.57,82.49 101.81,84.12C103.02,84.59 103.55,82.63 102.35,82.17C98.45,80.66 94.39,79.09 91.33,76.14C88.28,73.19 86.62,69.42 85.25,65.6C84.81,64.38 82.86,64.9 83.3,66.14L83.29,66.13Z"
android:fillColor="#231F20"/>
<path
android:pathData="M82.36,100.83C77.53,94.8 71.74,89.6 65.27,85.39C64.18,84.67 63.16,86.43 64.25,87.14C70.58,91.26 76.21,96.37 80.94,102.26C81.76,103.28 83.18,101.83 82.37,100.83H82.36Z"
android:fillColor="#231F20"/>
<path
android:pathData="M73.15,84.78C70.9,84.78 68.66,84.78 66.42,84.78C65.47,84.78 64.51,84.83 63.56,84.76C62.5,84.69 61.65,84.28 60.79,83.67C57.2,81.18 53.73,78.51 50.2,75.92C48.45,74.63 46.69,73.34 44.93,72.05C43.57,71.05 42.03,70.03 41.11,68.56C39.28,65.58 43.07,63.41 43.49,60.58C43.64,59.52 43.3,58.59 43.02,57.57C42.78,56.74 42.71,55.86 42.84,55C43.11,53.25 44.08,51.64 45.55,50.65C46,50.35 46.21,49.75 45.92,49.27C44.98,47.73 44.19,45.84 44.69,44.03C45.07,42.65 46.45,41.28 47.97,41.55C48.57,41.66 49.3,41.29 49.25,40.57C49.14,38.89 48.94,36.75 50.23,35.44C51.45,34.19 53.49,34.04 55.13,33.96C59.19,33.76 63.25,34.67 66.84,36.55C67.99,37.15 69.02,35.41 67.86,34.8C63.62,32.58 58.73,31.53 53.95,32.02C51.99,32.22 49.88,32.7 48.54,34.28C47.06,36.03 47.08,38.42 47.22,40.58L48.5,39.6C46.13,39.18 43.91,40.62 42.98,42.8C41.92,45.29 42.82,48.1 44.16,50.29L44.53,48.9C41.56,50.89 40.07,54.66 41.07,58.11C41.33,59.03 41.7,59.86 41.36,60.8C41.1,61.56 40.6,62.21 40.15,62.87C39.17,64.29 38.33,65.8 38.61,67.59C38.89,69.39 40.09,70.74 41.36,71.84C43.05,73.31 44.95,74.56 46.75,75.88C50.63,78.72 54.51,81.57 58.39,84.41C59.34,85.1 60.25,85.85 61.34,86.3C62.43,86.75 63.58,86.8 64.74,86.8C67.55,86.8 70.35,86.79 73.15,86.79C74.46,86.79 74.46,84.76 73.15,84.76L73.15,84.78Z"
android:fillColor="#231F20"/>
<path
android:pathData="M91.56,120.53C89.45,119.13 87.33,117.73 85.22,116.33C83.62,115.27 81.88,114 81.53,112.11C81.2,110.35 82.2,108.64 83.17,107.14C88.71,98.66 95.05,90.7 102.08,83.42L101.01,84.69C103.31,82.51 104.36,81.34 106.54,81.4C107.39,81.42 108.18,81.84 108.9,82.3C111.62,84.03 113.94,86.33 116.23,88.6C116.23,88.6 109.35,99.92 106.69,103.45C103.25,108 91.58,120.55 91.58,120.55L91.56,120.53Z"
android:fillColor="#231F20"/>
<path
android:pathData="M92.08,119.66C90.7,118.75 89.32,117.83 87.94,116.92C86.72,116.11 85.42,115.35 84.28,114.42C83.26,113.57 82.35,112.5 82.49,111.09C82.64,109.58 83.66,108.24 84.47,107.01C87.92,101.77 91.68,96.74 95.73,91.95C98,89.27 100.36,86.67 102.79,84.13L101.36,82.7L100.29,83.97C99.46,84.96 100.77,86.31 101.73,85.4C103.58,83.65 105.47,81.42 108.15,83.02C110.83,84.62 113.23,87.04 115.52,89.31L115.36,88.08C112.6,92.62 109.82,97.19 106.79,101.56C105.3,103.72 103.56,105.7 101.82,107.7C99.58,110.28 97.29,112.81 94.99,115.33C93.62,116.83 92.24,118.33 90.86,119.81C89.98,120.76 91.4,122.2 92.29,121.24C95.74,117.54 99.14,113.8 102.48,110.01C104.35,107.88 106.26,105.75 107.93,103.45C109.82,100.84 111.52,98.09 113.23,95.36C114.54,93.28 115.83,91.18 117.11,89.08C117.34,88.7 117.27,88.17 116.96,87.85C115.59,86.5 114.23,85.15 112.77,83.9C111.31,82.65 109.86,81.44 108.16,80.73C104.94,79.38 102.45,81.91 100.31,83.94L101.74,85.38L102.81,84.11C103.64,83.13 102.29,81.72 101.38,82.67C96.65,87.58 92.25,92.77 88.18,98.22C86.14,100.95 84.17,103.75 82.32,106.6C81.47,107.91 80.64,109.33 80.49,110.92C80.34,112.52 80.95,113.83 81.95,114.95C83.03,116.17 84.49,117.02 85.84,117.91C87.58,119.06 89.33,120.22 91.08,121.38C92.16,122.1 93.18,120.35 92.1,119.63L92.08,119.66Z"
android:fillColor="#231F20"/>
<path
android:pathData="M119.31,146.1C113.08,142.39 107.2,138.13 101.74,133.36C100.37,132.16 99.02,130.93 97.71,129.67C96.61,128.62 95.19,127.5 94.61,126.04C93.94,124.38 95.27,122.93 96.29,121.76C97.46,120.41 98.75,119.16 100.06,117.95C102.64,115.55 105.22,113.19 107.5,110.51C109.78,107.82 111.79,105.03 113.73,102.15C115.71,99.21 117.6,96.2 119.54,93.22C119.99,92.53 120.45,91.83 120.91,91.15C121.36,90.5 121.89,89.75 122.76,89.87C124.34,90.08 125.84,91.31 127.01,92.28C130.1,94.82 133.19,97.31 136.52,99.54C139.85,101.77 143.5,103.86 147.18,105.67C148.35,106.24 149.38,104.5 148.2,103.92C141.27,100.52 134.87,96.26 128.97,91.29C126.7,89.38 122.71,86.09 119.99,89.04C118.8,90.33 117.92,91.98 116.97,93.45C115.95,95.02 114.94,96.6 113.92,98.17C111.87,101.31 109.78,104.44 107.45,107.38C105.11,110.32 102.48,112.97 99.7,115.52C98.31,116.79 96.92,118.07 95.63,119.45C94.47,120.71 93.1,122.12 92.57,123.8C91.45,127.34 95.22,130.17 97.47,132.26C103.83,138.18 110.82,143.41 118.27,147.87C119.39,148.53 120.41,146.79 119.29,146.12L119.31,146.1Z"
android:fillColor="#231F20"/>
<path
android:pathData="M74.94,35.23C74.52,31.28 74.19,29.78 73.31,25.9C71.08,27.23 68.86,28.57 66.63,29.9C65.39,26.06 63.5,22.44 61.06,19.23L53.8,25.68C52.05,23.4 50.03,21.33 47.79,19.53C46.65,23.82 45.13,28.01 43.26,32.03C40.97,30.9 38.69,29.78 36.41,28.65C37.14,32.59 37.57,36.59 37.69,40.59C34.89,40.34 32.06,40.36 29.26,40.66C32.28,45.27 35.29,49.87 38.31,54.49C34.27,56.15 30.01,57.28 25.68,57.84C27.92,60.45 29.94,63.23 31.74,66.16C32.08,66.71 32.41,67.38 32.15,67.97C31.97,68.38 31.55,68.63 31.14,68.83C27.55,70.67 23.7,71.98 19.73,72.7C24.15,74.87 33,75.29 37.79,76.43C36.69,79.24 31.71,87.92 31.71,87.92C39.14,85.89 46.22,82.31 51.29,79.14C51.29,79.14 37.79,69.68 38.46,66.98C39.14,64.28 42.75,60.88 42.51,59.82C41.84,56.85 39.14,54.82 41.84,52.12C44.54,49.42 42.11,46.44 43.66,43.88C45.21,41.32 47.42,39.3 47.33,39.3C47.23,39.29 47.14,32.9 53.93,33.04C62.77,33.21 70.2,36.59 70.2,36.59L74.93,35.24L74.94,35.23Z"
android:fillColor="#231F20"/>
<path
android:pathData="M75.95,35.23C75.6,31.98 75.01,28.82 74.29,25.63C74.15,24.99 73.34,24.7 72.8,25.02C70.57,26.35 68.35,27.69 66.12,29.02L67.61,29.63C66.32,25.7 64.42,22.02 61.94,18.71C61.53,18.17 60.88,18.04 60.34,18.51C57.92,20.67 55.51,22.81 53.08,24.97H54.51C52.75,22.68 50.74,20.63 48.5,18.82C47.94,18.35 47.02,18.46 46.81,19.26C45.69,23.47 44.21,27.57 42.38,31.52L43.76,31.15C41.48,30.03 39.2,28.9 36.92,27.78C36.1,27.37 35.27,28.03 35.44,28.92C36.14,32.77 36.55,36.67 36.68,40.59L37.69,39.57C34.88,39.33 32.07,39.35 29.26,39.64C28.55,39.71 27.93,40.46 28.38,41.16C31.4,45.77 34.42,50.38 37.43,54.99L38.04,53.51C34.08,55.13 29.92,56.26 25.67,56.82C24.79,56.94 24.35,57.84 24.95,58.55C26.25,60.07 27.48,61.64 28.63,63.27C29.24,64.12 29.81,64.99 30.37,65.87C30.61,66.25 30.88,66.63 31.07,67.03C31.32,67.55 31.19,67.64 30.73,67.89C27.25,69.78 23.35,70.99 19.46,71.71C18.63,71.87 18.46,73.2 19.22,73.56C22.02,74.92 25.18,75.43 28.22,75.9C31.27,76.37 34.46,76.68 37.52,77.4L36.81,76.15C35.94,78.33 34.59,80.64 33.42,82.78C32.57,84.32 31.71,85.86 30.84,87.39C30.4,88.15 31.12,89.11 31.98,88.87C38.97,86.95 45.66,83.83 51.81,79.99C52.49,79.57 52.43,78.68 51.81,78.24C48.42,75.87 45.08,73.34 42.09,70.49C41.33,69.77 40.51,68.97 39.95,68.16C39.84,67.99 39.73,67.81 39.63,67.64C39.58,67.56 39.54,67.47 39.51,67.39C39.6,67.61 39.51,67.36 39.49,67.33C39.47,67.27 39.47,67.18 39.44,67.12C39.53,67.3 39.44,67.28 39.45,67.14C39.42,67.45 39.44,67.22 39.47,67.14C39.53,66.94 39.59,66.74 39.66,66.55C40.35,64.89 41.59,63.5 42.59,62.04C42.92,61.56 43.26,61.06 43.44,60.5C43.69,59.69 43.33,58.86 43.02,58.12C42.4,56.63 41,54.84 42.15,53.28C42.83,52.35 43.6,51.68 43.96,50.54C44.27,49.55 44.23,48.5 44.17,47.47C44.11,46.66 44.01,45.79 44.26,45C44.59,43.95 45.46,42.97 46.15,42.13C46.65,41.53 47.18,40.95 47.71,40.38C48.08,39.99 48.48,39.61 48.31,39.01C48.27,38.84 47.81,37.94 48.31,39C48.27,38.92 48.29,39.3 48.34,39.18C48.37,39.12 48.33,38.99 48.34,38.91C48.39,38.42 48.34,38.53 48.45,38.06C48.64,37.16 48.97,36.34 49.58,35.64C50.45,34.64 51.71,34.15 53.01,34.05C55.36,33.87 57.85,34.24 60.15,34.66C62.27,35.04 64.36,35.57 66.41,36.23C67.09,36.45 67.76,36.68 68.43,36.93C68.69,37.03 68.94,37.13 69.2,37.23C69.28,37.27 69.36,37.3 69.45,37.33C69.72,37.45 69.39,37.31 69.51,37.36C70.36,37.72 71.06,37.38 71.9,37.14C73,36.82 74.11,36.51 75.21,36.19C76.46,35.83 75.94,33.88 74.67,34.24C73.1,34.69 71.52,35.14 69.94,35.59L70.73,35.69C67.05,34.03 63,33 59.02,32.43C56.2,32.03 52.92,31.49 50.23,32.69C48.58,33.43 47.4,34.83 46.79,36.5C46.54,37.17 46.4,37.87 46.34,38.58C46.31,38.76 46.3,38.95 46.31,39.14C46.31,39.26 46.33,39.4 46.36,39.51C46.36,39.52 46.36,39.53 46.37,39.54L46.47,39.78C46.72,40.13 46.69,40.05 46.38,39.55L46.48,38.77C46.7,38.43 46.32,38.91 46.21,39.03C45.89,39.37 45.58,39.71 45.27,40.05C44.4,41.05 43.57,42.09 42.88,43.22C42.27,44.23 42.07,45.36 42.11,46.53C42.14,47.64 42.36,48.79 42.05,49.88C41.69,51.17 40.44,51.9 39.95,53.14C39.53,54.18 39.64,55.3 40.03,56.32C40.42,57.35 41.04,58.38 41.39,59.46C41.43,59.59 41.47,59.7 41.5,59.82C41.68,60.42 41.52,60.01 41.53,59.95C41.57,59.78 41.51,59.98 41.49,60C41.26,60.3 41.09,60.69 40.87,61.01C39.7,62.71 38.28,64.33 37.62,66.32C37.25,67.43 37.67,68.4 38.33,69.31C40.13,71.8 42.68,73.79 45.07,75.69C46.94,77.17 48.85,78.62 50.81,79.99V78.24C44.8,81.99 38.3,85.03 31.46,86.92L32.61,88.4C33.52,86.82 34.4,85.23 35.28,83.63C36.52,81.36 37.83,79.08 38.78,76.68C38.98,76.18 38.57,75.54 38.08,75.43C35.1,74.73 32.05,74.43 29.03,73.97C26.02,73.51 22.96,73.1 20.26,71.8L20.02,73.65C22.35,73.21 24.65,72.59 26.89,71.78C28.03,71.35 29.16,70.88 30.28,70.36C31.15,69.96 32.27,69.56 32.86,68.75C33.51,67.84 33.26,66.78 32.77,65.87C32.21,64.83 31.51,63.85 30.85,62.88C29.48,60.88 27.99,58.95 26.41,57.11L25.7,58.84C30.13,58.25 34.46,57.14 38.6,55.45C39.17,55.22 39.6,54.56 39.21,53.96C36.19,49.35 33.18,44.74 30.16,40.13L29.28,41.65C32.09,41.36 34.9,41.34 37.71,41.59C38.24,41.64 38.74,41.09 38.72,40.58C38.59,36.48 38.15,32.41 37.41,28.38L35.92,29.52C38.2,30.65 40.49,31.77 42.76,32.9C43.22,33.12 43.9,33.06 44.15,32.53C46.06,28.43 47.61,24.17 48.79,19.79L47.09,20.24C49.33,22.06 51.34,24.12 53.1,26.39C53.45,26.84 54.17,26.72 54.53,26.39C56.95,24.24 59.37,22.09 61.79,19.94L60.2,19.73C62.58,22.9 64.43,26.4 65.66,30.16C65.87,30.77 66.57,31.11 67.15,30.77C69.38,29.44 71.6,28.1 73.83,26.77L72.34,26.16C73.02,29.17 73.61,32.16 73.94,35.23C74.07,36.51 76.1,36.52 75.96,35.23L75.95,35.23Z"
android:fillColor="#231F20"/>
<path
android:pathData="M43.51,88.37C34.77,92.3 25.58,95.21 16.19,97.09L17.33,98.57C20.65,93.51 23.96,88.46 27.28,83.4C27.61,82.9 27.3,82.02 26.67,81.92C21.98,81.15 17.71,83.43 13.2,84.22L14.19,85.92C16.15,84.34 18.07,82.67 19.8,80.84C20.25,80.37 20.17,79.59 19.6,79.24C15.48,76.77 11.29,74.41 7.04,72.16L6.8,74.01C8.07,73.79 9.3,73.25 10.48,72.77C12.13,72.09 13.76,71.36 15.38,70.63C17,69.9 18.57,69.18 20.18,68.51C21.37,68.03 22.59,67.49 23.86,67.27C24.73,67.12 24.83,65.81 24.1,65.42C17.48,61.81 10.86,58.18 4.18,54.67C3.31,54.21 1.48,52.8 0.53,53.62L1.96,55.05C1.43,55.67 1.39,55.26 1.64,55.27C1.74,55.27 1.86,55.23 1.96,55.22C2.28,55.16 2.61,55.12 2.94,55.07C3.06,55.06 2.84,55.09 3.09,55.05C3.21,55.04 3.32,55.02 3.44,55.01C3.75,54.97 4.05,54.93 4.35,54.89C5,54.81 5.66,54.72 6.31,54.64C9.76,54.21 13.2,53.79 16.65,53.35C20.1,52.91 23.41,52.5 26.79,52.02C27.87,51.87 28.95,51.72 30.03,51.52C30.61,51.41 31.44,51.35 31.77,50.77C32.2,50.04 31.57,49.49 31.07,49.02C30.38,48.35 29.71,47.69 29.04,47C27.74,45.67 26.5,44.3 25.3,42.88C22.86,39.99 20.65,36.92 18.65,33.71L17.77,35.24C22.43,35.44 27.05,36.02 31.7,36.23C32.25,36.25 32.71,35.74 32.71,35.21C32.83,28.64 32.94,21.92 32.1,15.39L30.57,16.27C34.31,18.26 37.62,20.91 40.39,24.12C41.03,24.87 42.01,24.18 42.11,23.41C42.79,18.08 43.69,12.78 44.81,7.53C44.93,6.96 45.01,6.36 45.19,5.81C45.36,5.29 45.53,5.34 45.92,5.69C46.83,6.5 47.44,7.79 48.12,8.79C49.7,11.11 51.26,13.43 52.84,15.76C53.2,16.3 53.94,16.44 54.43,15.96C58.88,11.62 62.79,6.75 66.1,1.49L64.24,1.25C66.27,7.25 67.67,13.44 68.36,19.73C68.46,20.61 69.4,21.06 70.09,20.45C74.08,16.94 78.08,13.43 82.07,9.93L80.34,9.21C79.99,15.59 79.26,21.94 78.12,28.22C77.89,29.5 79.85,30.05 80.07,28.76C81.24,22.3 82.01,15.77 82.36,9.21C82.42,8.27 81.25,7.96 80.64,8.5C76.64,12 72.65,15.51 68.65,19.02L70.38,19.73C69.67,13.26 68.28,6.88 66.19,0.71C65.91,-0.11 64.81,-0.29 64.34,0.47C61.12,5.59 57.32,10.29 52.99,14.52L54.59,14.72C52.7,11.93 50.82,9.15 48.94,6.36C48.23,5.32 47.55,4.07 46.34,3.55C45.13,3.03 43.91,3.65 43.4,4.84C42.84,6.19 42.68,7.8 42.4,9.23C42.11,10.66 41.82,12.24 41.55,13.74C40.99,16.94 40.51,20.17 40.09,23.4L41.82,22.68C38.96,19.36 35.48,16.58 31.61,14.51C31,14.2 29.98,14.57 30.08,15.39C30.92,21.92 30.82,28.64 30.69,35.21L31.71,34.2C27.05,34 22.43,33.42 17.78,33.21C17.02,33.18 16.51,34.1 16.9,34.74C20.61,40.7 25.08,46.16 30.19,50.97L29.89,50.25C29.88,49.96 30.29,49.3 30.53,49.34C30.47,49.33 30.36,49.39 30.31,49.4C30.08,49.45 29.86,49.5 29.63,49.54C28.88,49.68 28.11,49.79 27.36,49.91C25,50.25 22.64,50.56 20.29,50.86C15.05,51.54 9.81,52.16 4.57,52.83C3.68,52.94 2.78,53.05 1.89,53.18C1.48,53.24 0.84,53.25 0.54,53.6C-0.3,54.59 0.98,55.89 1.97,55.03C1.74,55.13 1.49,55.23 1.26,55.33C1.09,55.34 0.81,55.2 1,55.3C1.17,55.38 1.34,55.47 1.52,55.55C2.11,55.85 2.69,56.15 3.26,56.46C5.04,57.39 6.81,58.34 8.58,59.29C12.52,61.42 16.46,63.56 20.4,65.7C21.3,66.18 22.2,66.67 23.09,67.16L23.33,65.31C22.06,65.53 20.83,66.07 19.65,66.55C18,67.24 16.38,67.97 14.76,68.7C13.14,69.42 11.57,70.14 9.95,70.81C8.77,71.3 7.54,71.83 6.27,72.05C5.42,72.21 5.29,73.52 6.03,73.9C10.28,76.15 14.47,78.51 18.59,80.99L18.38,79.39C16.65,81.22 14.74,82.9 12.77,84.47C11.9,85.17 12.88,86.32 13.76,86.17C17.82,85.46 21.93,83.17 26.15,83.86L25.54,82.38C22.23,87.44 18.91,92.49 15.59,97.55C15.07,98.34 15.93,99.19 16.74,99.03C26.31,97.11 35.62,94.11 44.53,90.11C45.72,89.58 44.69,87.83 43.51,88.36L43.51,88.37Z"
android:fillColor="#231F20"/>
</group>
</vector>

View File

@ -0,0 +1,15 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="149dp"
android:height="148dp"
android:viewportWidth="149"
android:viewportHeight="148">
<path
android:pathData="M105.52,12C90.76,12 76.09,14.18 61.34,14.18C60.65,14.18 60.02,14.66 59.83,15.33C54.78,32.98 48.68,50.35 41.48,67.24C39.46,71.99 37.35,76.71 35.17,81.4C34.78,82.24 35.04,83.48 36.1,83.69C42.9,85.07 49.85,85.09 56.66,83.76L54.69,82.25C54.46,97.56 52.74,112.81 48.63,127.58C48.14,129.38 50.49,130.15 51.48,128.78C65.36,109.68 79.11,90.47 92.92,71.32C96.86,65.86 100.81,60.41 104.76,54.97C105.32,54.22 104.76,52.84 103.84,52.69C94.59,51.16 85.22,50.46 75.85,50.62L77.2,52.97C86.53,39.9 96.33,27.16 106.57,14.78C107.85,13.24 105.65,11.03 104.37,12.58C93.97,25.16 84,38.11 74.51,51.4C73.82,52.38 74.75,53.76 75.86,53.75C84.95,53.59 94.04,54.23 103.01,55.71L102.09,53.43C88.21,72.52 74.46,91.73 60.64,110.88C56.7,116.34 52.75,121.79 48.8,127.23L51.65,128.43C55.83,113.41 57.58,97.84 57.81,82.27C57.83,81.2 56.81,80.59 55.84,80.77C49.59,81.98 43.17,81.95 36.93,80.69L37.86,82.98C45.7,66.16 52.52,48.88 58.24,31.22C59.86,26.23 61.39,21.21 62.83,16.15L61.33,17.3C76.08,17.3 90.75,15.12 105.51,15.12C107.53,15.12 107.53,12 105.52,12Z"
android:fillColor="#231F20"/>
<path
android:pathData="M52.39,126.26C69.44,99.98 85.91,79.07 105.9,54.96C96.98,53.55 88.07,52.14 79.15,50.73C88.27,38.56 97.4,26.41 106.52,14.24L110.9,15.42L111.11,15.14C103.13,26.11 95.14,37.09 87.15,48.05C95.7,46.99 104.46,47.53 112.82,49.63C94.01,79.02 77.57,104.77 58.76,134.16C55.74,131.94 55.55,131.52 51.34,127.31"
android:fillColor="#231F20"/>
<path
android:pathData="M53.99,127.19C66.47,107.97 80.14,89.61 94.51,71.77C98.71,66.57 102.95,61.41 107.22,56.26C108,55.31 107.91,53.41 106.41,53.17C97.48,51.76 88.57,50.35 79.65,48.94L80.76,51.65C89.88,39.48 99.01,27.33 108.13,15.16L106.05,16.01L110.43,17.19C111.3,17.42 112.01,17.01 112.51,16.34L112.72,16.06L109.53,14.19C101.55,25.17 93.56,36.14 85.57,47.11C84.79,48.17 85.82,50.04 87.16,49.89C95.59,48.86 104.1,49.35 112.34,51.4L111.23,48.7C97.25,70.52 83.31,92.35 69.34,114.18C65.29,120.53 61.22,126.87 57.15,133.21L59.68,132.55C57.09,130.62 54.91,128.27 52.64,125.99C50.95,124.3 48.34,126.91 50.02,128.6C52.54,131.12 54.95,133.61 57.82,135.73C58.64,136.34 59.85,135.83 60.35,135.07C74.32,113.24 88.27,91.41 102.24,69.58C106.29,63.23 110.36,56.89 114.42,50.55C115.05,49.56 114.44,48.12 113.32,47.84C104.77,45.72 95.9,45.14 87.16,46.2L88.75,48.98C96.74,38.01 104.73,27.03 112.71,16.07C113.31,15.25 112.85,14.01 112.05,13.54C111.1,12.97 110.12,13.41 109.52,14.2L109.31,14.49L111.4,13.63L107.02,12.45C106.15,12.22 105.44,12.63 104.93,13.31C95.81,25.47 86.68,37.63 77.56,49.79C76.88,50.69 77.56,52.33 78.66,52.5C87.58,53.91 96.49,55.32 105.42,56.73L104.61,53.65C89.84,71.46 75.39,89.53 62.13,108.5C58.25,114.04 54.48,119.64 50.8,125.32C49.51,127.32 52.7,129.18 53.99,127.19Z"
android:fillColor="#231F20"/>
</vector>

View File

@ -0,0 +1,111 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="91dp"
android:height="90dp"
android:viewportWidth="91"
android:viewportHeight="90">
<path
android:pathData="M46.525,77.262V85.698L2.415,60.229V51.794L46.525,77.262Z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#B42318"
android:strokeLineCap="round"/>
<path
android:pathData="M46.525,64.29V68.828L10.247,47.88L2.415,43.36V34.925L18.079,43.964L21.564,45.984L36.96,54.869C38.377,56.669 39.87,58.364 41.469,59.953C43.059,61.533 44.744,62.988 46.525,64.29Z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#B42318"
android:strokeLineCap="round"/>
<path
android:pathData="M29.061,41.876L10.247,31.009L2.415,26.49V18.055L18.079,27.093L21.564,29.113L25.566,31.421C25.997,33.221 26.485,34.973 27.041,36.696C27.069,36.801 27.108,36.897 27.146,37.003C27.663,38.63 28.314,40.258 29.061,41.876Z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#B42318"
android:strokeLineCap="round"/>
<path
android:pathData="M65.673,67.688V76.124L46.524,85.698V77.263L57.841,71.604L65.673,67.688Z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#B42318"
android:strokeLineCap="round"/>
<path
android:pathData="M65.674,67.688L57.842,71.604L46.525,77.263L2.415,51.795L10.247,47.879L46.525,68.828L50.019,67.085L57.842,63.169L65.674,67.688Z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#B42318"
android:strokeLineCap="round"/>
<path
android:pathData="M64.544,32.272C64.132,31.449 63.682,30.625 63.194,29.792C59.795,23.923 55.726,19.528 50.977,16.589C50.718,16.426 50.46,16.273 50.192,16.12C45.539,13.43 41.527,12.826 38.128,14.31L37.189,14.78C36.433,15.21 35.754,15.727 35.169,16.33C33.561,17.939 32.536,20.16 32.086,22.994C31.904,24.105 31.818,25.302 31.818,26.594C31.818,27.15 31.837,27.715 31.876,28.27C31.933,29.342 32.058,30.424 32.24,31.516C32.661,34.034 33.408,36.581 34.48,39.166C34.863,40.104 35.294,41.042 35.782,41.99C36.203,42.861 36.682,43.733 37.189,44.614C38.827,47.438 40.617,49.918 42.561,52.063C44.888,54.619 47.425,56.697 50.192,58.296C51.724,59.176 53.169,59.837 54.567,60.268H54.577C57.823,61.273 60.695,61.062 63.194,59.636C63.711,59.349 64.18,59.014 64.62,58.64C65.004,58.324 65.358,57.979 65.674,57.597C67.541,55.433 68.508,52.321 68.565,48.261C68.575,48.108 68.575,47.965 68.575,47.812C68.575,42.766 67.234,37.586 64.544,32.272ZM51.484,49.966C51.111,50.176 50.69,50.138 50.192,49.86C49.79,49.621 49.416,49.267 49.11,48.788C49.033,48.692 48.966,48.587 48.909,48.482C48.545,47.85 48.354,47.246 48.354,46.691C48.354,46.136 48.545,45.743 48.909,45.533C49.272,45.322 49.703,45.36 50.192,45.638C50.69,45.925 51.111,46.385 51.484,47.017C51.57,47.18 51.657,47.333 51.724,47.486C51.925,47.945 52.03,48.386 52.03,48.807C52.03,49.372 51.848,49.755 51.484,49.966ZM52.03,42.488L48.354,40.362V23.492L52.03,25.618V42.488Z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#B42318"
android:strokeLineCap="round"/>
<path
android:pathData="M52.03,25.618V38.525L48.354,40.363V23.493L52.03,25.618Z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#B42318"
android:strokeLineCap="round"/>
<path
android:pathData="M52.03,38.524V42.488L48.354,40.363L52.03,38.524Z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#B42318"
android:strokeLineCap="round"/>
<path
android:pathData="M34.479,39.166L32.555,40.133L29.06,41.876C28.313,40.258 27.662,38.63 27.145,37.002C27.107,36.897 27.069,36.801 27.04,36.696C26.485,34.973 25.996,33.221 25.565,31.42L29.05,29.678L31.875,28.271C31.932,29.343 32.057,30.425 32.239,31.516C32.66,34.034 33.407,36.581 34.479,39.166Z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#B42318"
android:strokeLineCap="round"/>
<path
android:pathData="M32.086,22.995C31.904,24.105 31.818,25.302 31.818,26.595C31.818,27.15 31.837,27.715 31.876,28.27L29.051,29.678L25.566,31.42L21.564,29.113L18.079,27.093L2.415,18.054L21.564,8.48L35.169,16.331C33.561,17.94 32.536,20.161 32.086,22.995Z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#B42318"
android:strokeLineCap="round"/>
<path
android:pathData="M42.561,52.063L40.445,53.125L36.96,54.868L21.564,45.983L18.079,43.963L2.415,34.924L10.247,31.008L29.061,41.875L32.556,40.133L35.782,41.99C36.203,42.861 36.682,43.733 37.189,44.614C38.827,47.438 40.617,49.918 42.561,52.063Z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#B42318"
android:strokeLineCap="round"/>
<path
android:pathData="M52.03,48.808C52.03,49.373 51.848,49.756 51.484,49.966C51.111,50.177 50.69,50.139 50.192,49.861C49.79,49.622 49.416,49.267 49.11,48.789C49.033,48.693 48.966,48.588 48.909,48.482C48.545,47.85 48.354,47.247 48.354,46.692C48.354,46.137 48.545,45.744 48.909,45.533C49.273,45.323 49.703,45.361 50.192,45.639C50.69,45.926 51.111,46.386 51.484,47.017C51.57,47.18 51.657,47.333 51.724,47.486C51.925,47.946 52.03,48.387 52.03,48.808Z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#B42318"
android:strokeLineCap="round"/>
<path
android:pathData="M54.567,60.269L53.629,60.738L46.525,64.29C44.744,62.988 43.059,61.533 41.47,59.953C39.871,58.363 38.377,56.669 36.96,54.869L40.445,53.126L42.561,52.063C44.888,54.62 47.425,56.697 50.192,58.297C51.724,59.177 53.169,59.838 54.567,60.269Z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#B42318"
android:strokeLineCap="round"/>
<path
android:pathData="M65.673,58.401V59.254L57.841,63.169L50.019,67.085L46.524,68.828V64.29L53.629,60.737L54.567,60.268H54.576C57.822,61.274 60.695,61.063 63.194,59.636L64.879,58.794L65.673,58.401Z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#B42318"
android:strokeLineCap="round"/>
<path
android:pathData="M87.724,38.237C87.724,44.078 85.933,48.013 82.343,50.062L81.462,50.502L65.674,58.401L64.879,58.794L63.194,59.636C63.711,59.349 64.18,59.014 64.62,58.641C65.003,58.325 65.358,57.98 65.674,57.597C67.541,55.433 68.508,52.321 68.565,48.262C68.575,48.109 68.575,47.965 68.575,47.812C68.575,42.766 67.234,37.586 64.544,32.272C64.132,31.449 63.682,30.626 63.194,29.793C59.795,23.924 55.726,19.529 50.977,16.59C50.718,16.427 50.46,16.274 50.192,16.12C45.539,13.43 41.527,12.827 38.128,14.311L56.339,5.205C59.929,3.157 64.257,3.607 69.341,6.546C74.425,9.476 78.762,14.033 82.343,20.218C85.933,26.403 87.724,32.407 87.724,38.237Z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#B42318"
android:strokeLineCap="round"/>
</vector>

View File

@ -0,0 +1,78 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="76dp"
android:height="120dp"
android:viewportWidth="76"
android:viewportHeight="120">
<group>
<clip-path
android:pathData="M0,0h75.48v120h-75.48z"/>
<path
android:pathData="M17.1,21.66C14.4,22.48 13.03,25.39 11.99,28.01C6.93,40.79 6.66,54.62 9.76,68C10.2,69.91 10.91,71.94 12.56,73.01C13.55,73.65 25.96,69.98 27.08,74.46C27.73,77.09 31.31,98.21 32.38,110.28C32.48,111.39 32.52,112.56 32.01,113.55C31.48,114.55 30.48,115.2 29.48,115.73C24.23,118.55 18.05,119.6 12.16,118.69C10.77,118.47 9.33,118.11 8.24,117.22C6.54,115.83 6.05,113.47 5.69,111.29C1.85,87.82 0.79,63.96 1.01,40.17C1.12,29.46 1.55,18.44 5.94,8.68C7.24,5.78 9.07,2.86 12,1.63C14.95,0.4 18.3,1.15 21.4,1.93C22.54,2.21 23.75,2.54 24.52,3.41C25.47,4.47 25.51,6.03 25.5,7.45C25.49,11.91 25.76,19.87 25.45,20.52C24.24,23.07 19.79,20.85 17.1,21.67V21.66ZM13.92,73.14C5.48,74.98 6.24,36.32 11.95,27.76C13.26,25.79 14.36,23.54 15.9,22.49C18.28,20.87 23.2,21.92 25.11,21.84C25.97,21.8 25.88,18.93 25.11,18.55C19.16,15.57 12.5,19.69 10.25,22.47C7.67,25.66 6.53,29.75 5.76,33.78C3.28,46.73 4.03,60.3 7.93,72.89C8.43,74.48 9,76.1 10.1,77.34C13.07,80.65 23.23,79.3 27.08,77.09C27.08,77.09 29.05,69.86 13.93,73.14H13.92Z"
android:fillColor="#231F20"/>
<path
android:pathData="M16.84,20.71C14.61,21.44 13.15,23.26 12.12,25.29C10.94,27.65 10.07,30.21 9.32,32.73C7.7,38.2 6.87,43.91 6.76,49.61C6.65,55.32 7.28,61.21 8.49,66.88C8.98,69.17 9.53,71.79 11.41,73.38C12.32,74.16 13.12,74.13 14.25,73.99C17.18,73.63 20.14,73.02 23.1,73.24C23.71,73.28 24.31,73.38 24.89,73.58C25.09,73.65 25.28,73.74 25.51,73.88C25.65,73.97 25.64,73.97 25.72,74.04C25.76,74.08 25.96,74.32 25.89,74.22C26.23,74.69 26.31,75.58 26.45,76.26C27.83,83.39 28.91,90.58 29.91,97.77C30.47,101.84 31.01,105.93 31.37,110.03C31.48,111.21 31.65,112.58 30.83,113.56C30.02,114.54 28.67,115.09 27.55,115.6C25.1,116.74 22.43,117.49 19.74,117.83C17.06,118.16 14.31,118.14 11.69,117.61C10.45,117.37 9.22,116.97 8.38,115.98C7.61,115.11 7.25,113.96 6.99,112.85C6.34,110.06 6.02,107.17 5.63,104.34C5.2,101.3 4.81,98.25 4.47,95.2C3.1,82.98 2.38,70.69 2.11,58.4C1.97,52.23 1.95,46.07 2.01,39.9C2.06,34.25 2.2,28.57 3.01,22.97C3.79,17.58 5.11,11.97 7.79,7.18C8.93,5.16 10.5,3.17 12.77,2.4C15.44,1.49 18.36,2.2 21.01,2.86C22.12,3.13 23.47,3.4 24.07,4.49C24.61,5.48 24.52,6.73 24.52,7.82C24.52,9.94 24.56,12.06 24.59,14.19C24.61,15.95 24.66,17.72 24.59,19.48C24.58,19.71 24.57,19.95 24.54,20.19C24.56,20.01 24.59,20.09 24.53,20.19C24.51,20.22 24.53,20.23 24.42,20.35C23.93,20.85 23.14,20.83 22.48,20.81C20.6,20.74 18.7,20.21 16.84,20.73C15.62,21.06 16.14,22.97 17.36,22.63C19.25,22.11 21.26,22.89 23.18,22.78C24.8,22.68 26.34,21.86 26.51,20.11C26.66,18.53 26.58,16.91 26.57,15.32C26.54,13.1 26.5,10.87 26.49,8.65C26.47,6.31 26.65,3.62 24.5,2.11C23.44,1.36 22.1,1.09 20.86,0.79C19.43,0.44 17.98,0.14 16.51,0.03C13.74,-0.17 11.1,0.55 9,2.41C7.14,4.05 5.91,6.31 4.93,8.56C0.12,19.51 0.06,31.74 -0,43.48C-0.06,56.23 0.28,68.99 1.23,81.71C1.71,88.06 2.35,94.4 3.16,100.72C3.57,103.84 4.01,106.96 4.51,110.07C4.9,112.56 5.2,115.3 6.91,117.29C8.62,119.28 11.71,119.72 14.28,119.92C17.07,120.14 19.9,119.91 22.64,119.31C25.37,118.72 28.11,117.72 30.51,116.29C31.65,115.61 32.65,114.74 33.12,113.47C33.55,112.29 33.44,111 33.33,109.76C32.52,101.08 31.18,92.43 29.77,83.83C29.3,80.94 28.83,78.06 28.25,75.2C28.06,74.26 27.86,73.35 27.12,72.65C26.09,71.68 24.62,71.39 23.26,71.28C20.23,71.01 17.05,71.68 14.16,72.03C13.73,72.08 13.3,72.07 12.88,72.11C12.71,72.13 13.14,72.09 12.91,72.11C12.95,72.11 13.12,72.24 13.06,72.17C12.99,72.08 12.81,71.98 12.73,71.92C12.28,71.53 11.95,71.05 11.67,70.53C11.07,69.42 10.8,68.15 10.53,66.91C10.2,65.43 9.91,63.93 9.67,62.43C7.77,50.79 8.62,38.42 13.27,27.5C14.09,25.56 15.22,23.32 17.37,22.62C18.57,22.22 18.05,20.32 16.84,20.71H16.84Z"
android:fillColor="#231F20"/>
<path
android:pathData="M13.66,72.19C13.53,72.22 13.5,72.22 13.66,72.2C13.58,72.2 13.51,72.22 13.44,72.22C13.33,72.22 12.94,72.17 13.24,72.22C13.11,72.2 12.99,72.16 12.86,72.13C12.82,72.12 12.63,72.05 12.78,72.11C12.93,72.17 12.71,72.07 12.67,72.05C12.56,71.98 12.44,71.91 12.32,71.83C12.47,71.93 12.25,71.76 12.14,71.66C12.03,71.55 11.93,71.43 11.82,71.31C11.7,71.17 11.82,71.32 11.78,71.28C11.72,71.19 11.66,71.11 11.6,71.02C10.63,69.58 10.19,67.97 9.79,66.2C8.63,61.14 8.5,55.82 8.63,50.65C8.75,45.48 9.22,39.85 10.44,34.62C10.89,32.71 11.43,30.75 12.28,29.14C12.99,27.77 13.88,26.45 14.75,25.18C15.27,24.42 15.86,23.62 16.68,23.17C17.35,22.8 18.16,22.67 18.91,22.61C20.63,22.48 22.35,22.7 24.08,22.8C24.7,22.84 25.4,22.93 25.93,22.52C26.48,22.09 26.63,21.36 26.68,20.7C26.73,20.04 26.65,19.29 26.37,18.66C26.02,17.83 25.34,17.55 24.54,17.24C22.6,16.48 20.47,16.38 18.42,16.75C15.04,17.34 11.51,19.26 9.38,21.98C6.58,25.53 5.42,29.99 4.64,34.36C2.86,44.24 2.9,54.4 4.76,64.26C5.23,66.71 5.8,69.13 6.48,71.52C7.09,73.64 7.68,75.9 9.08,77.66C10.96,80.05 14.46,80.37 17.29,80.32C20.45,80.26 23.75,79.7 26.65,78.41C27.26,78.14 27.9,77.87 28.06,77.18C28.14,76.8 28.16,76.4 28.13,76.02C27.8,71.85 22.95,71.16 19.61,71.33C17.6,71.44 15.61,71.78 13.64,72.2C12.4,72.46 12.93,74.37 14.17,74.1C16.37,73.63 18.61,73.25 20.87,73.28C21.57,73.29 22.27,73.33 22.95,73.46C23.24,73.51 23.53,73.58 23.81,73.67C24.12,73.76 24.24,73.81 24.44,73.91C24.64,74 24.82,74.1 24.99,74.21C25.08,74.27 25.17,74.33 25.26,74.4C25.1,74.27 25.3,74.43 25.36,74.49C25.47,74.61 25.59,74.72 25.7,74.85C25.53,74.66 25.82,75.04 25.87,75.13C25.91,75.2 25.94,75.28 25.98,75.35C25.91,75.13 26.06,75.5 25.98,75.35C26.03,75.49 26.07,75.63 26.1,75.77C26.15,75.94 26.15,76.12 26.14,75.9C26.15,76.02 26.15,76.14 26.16,76.26C26.16,76.37 26.15,76.48 26.15,76.58C26.15,76.88 26.12,76.61 26.15,76.6C26.14,76.6 26.12,76.8 26.11,76.83L26.57,76.24C24.51,77.39 22.01,77.91 19.7,78.17C17.38,78.44 14.58,78.57 12.3,77.65C11.16,77.19 10.46,76.39 9.89,75.31C9.01,73.64 8.56,71.7 8.07,69.88C7.02,66 6.25,62.04 5.8,58.04C4.9,49.98 5.18,41.76 6.74,33.79C7.43,30.29 8.39,26.74 10.47,23.78C12.07,21.51 14.65,19.87 17.28,19.05C18.8,18.58 20.42,18.36 22.01,18.59C22.83,18.72 23.6,18.98 24.36,19.29C24.77,19.45 24.48,19.25 24.56,19.42C24.67,19.64 24.69,19.93 24.71,20.17C24.72,20.37 24.73,20.59 24.69,20.79C24.69,20.84 24.66,21.04 24.64,21.01L24.59,21.11C24.69,20.98 24.81,20.9 24.95,20.86C24.95,20.86 23.59,20.79 23.41,20.77C21.98,20.66 20.55,20.53 19.11,20.62C17.76,20.71 16.34,20.95 15.22,21.76C13.85,22.76 12.95,24.28 12.07,25.69C11.09,27.28 10.19,28.74 9.56,30.5C8.24,34.2 7.66,38.17 7.22,42.06C6.71,46.64 6.52,51.28 6.67,55.88C6.8,59.9 7.11,64.04 8.19,67.93C8.81,70.2 9.9,73.38 12.47,74.08C13.04,74.23 13.61,74.21 14.17,74.09C15.41,73.83 14.89,71.93 13.65,72.19L13.66,72.19Z"
android:fillColor="#231F20"/>
<path
android:pathData="M15.01,46.18C14.6,46.16 14.33,46.6 14.15,46.97C13.95,47.42 13.75,47.96 14.02,48.38C14.25,48.73 14.76,48.82 15.13,48.62C15.5,48.43 15.71,48.02 15.74,47.6C15.76,47.18 15.62,46.78 15.4,46.42"
android:fillColor="#231F20"/>
<path
android:pathData="M15.01,45.2C14.25,45.17 13.66,45.75 13.35,46.39C13.04,47.03 12.76,47.77 12.99,48.48C13.24,49.25 13.99,49.77 14.81,49.71C15.27,49.67 15.66,49.51 16.01,49.21C16.29,48.96 16.48,48.63 16.6,48.28C16.76,47.87 16.75,47.42 16.68,47C16.62,46.62 16.45,46.25 16.25,45.92C16.13,45.71 15.9,45.53 15.67,45.47C15.43,45.4 15.11,45.43 14.9,45.57C14.46,45.85 14.27,46.44 14.55,46.92C14.61,47.03 14.67,47.14 14.73,47.26L14.63,47.03C14.7,47.2 14.75,47.38 14.78,47.56L14.74,47.3C14.76,47.43 14.76,47.57 14.74,47.7L14.78,47.44C14.76,47.56 14.73,47.67 14.69,47.78L14.79,47.55C14.74,47.65 14.69,47.74 14.63,47.83L14.78,47.62C14.72,47.7 14.66,47.76 14.58,47.83L14.79,47.67C14.72,47.72 14.65,47.76 14.58,47.79L14.81,47.7C14.73,47.73 14.65,47.75 14.57,47.76L14.83,47.73C14.76,47.73 14.68,47.73 14.6,47.73L14.87,47.76C14.78,47.75 14.7,47.73 14.62,47.7L14.85,47.79C14.8,47.77 14.74,47.74 14.69,47.7L14.89,47.86C14.84,47.82 14.8,47.78 14.76,47.73L14.91,47.93C14.87,47.87 14.83,47.81 14.81,47.75L14.9,47.98C14.88,47.91 14.86,47.84 14.85,47.76L14.89,48.03C14.87,47.92 14.89,47.83 14.89,47.73L14.85,47.99C14.89,47.78 14.96,47.58 15.04,47.38L14.95,47.62C15.04,47.4 15.14,47.19 15.28,47L15.13,47.21C15.19,47.14 15.25,47.08 15.31,47.02L15.11,47.17C15.16,47.14 15.22,47.11 15.27,47.08L15.04,47.18C15.09,47.16 15.14,47.15 15.19,47.14L14.92,47.18C14.95,47.18 14.98,47.18 15.02,47.18C15.54,47.19 16.03,46.71 16.01,46.19C15.99,45.67 15.57,45.22 15.02,45.2L15.01,45.2Z"
android:fillColor="#231F20"/>
<path
android:pathData="M20.93,53.94C20.6,54.26 20.25,54.62 20.14,55.07C19.97,55.85 20.76,56.66 21.54,56.53C22.32,56.39 22.77,55.35 22.34,54.69"
android:fillColor="#231F20"/>
<path
android:pathData="M20.23,53.25C19.99,53.48 19.77,53.72 19.57,54C19.38,54.26 19.23,54.57 19.18,54.89C19.12,55.25 19.12,55.63 19.25,55.98C19.39,56.33 19.57,56.64 19.84,56.9C20.38,57.41 21.16,57.66 21.89,57.46C22.46,57.3 22.98,56.86 23.24,56.32C23.55,55.64 23.6,54.84 23.19,54.19C23.06,53.97 22.85,53.8 22.6,53.73C22.36,53.67 22.05,53.7 21.84,53.83C21.4,54.11 21.2,54.71 21.49,55.18C21.52,55.24 21.55,55.29 21.57,55.35L21.47,55.12C21.51,55.2 21.53,55.29 21.54,55.38L21.51,55.12C21.52,55.23 21.52,55.34 21.51,55.45L21.54,55.19C21.52,55.3 21.49,55.41 21.45,55.51L21.55,55.28C21.5,55.4 21.44,55.5 21.36,55.6L21.52,55.4C21.46,55.48 21.38,55.55 21.3,55.61L21.51,55.46C21.43,55.52 21.34,55.57 21.24,55.61L21.47,55.51C21.4,55.54 21.32,55.57 21.24,55.58L21.5,55.54C21.41,55.56 21.32,55.56 21.22,55.54L21.48,55.58C21.38,55.56 21.28,55.54 21.18,55.5L21.41,55.59C21.32,55.55 21.22,55.5 21.14,55.43L21.34,55.59C21.25,55.51 21.16,55.43 21.09,55.34L21.24,55.54C21.17,55.45 21.11,55.34 21.06,55.23L21.16,55.47C21.12,55.37 21.09,55.27 21.08,55.16L21.12,55.42C21.11,55.33 21.11,55.24 21.12,55.14L21.08,55.4C21.1,55.3 21.13,55.2 21.17,55.1L21.07,55.34C21.13,55.2 21.21,55.07 21.3,54.96L21.15,55.16C21.3,54.97 21.46,54.81 21.63,54.64C22.01,54.29 22.02,53.6 21.63,53.25C21.25,52.9 20.64,52.87 20.24,53.25H20.23Z"
android:fillColor="#231F20"/>
<path
android:pathData="M13.39,59.14L13.37,61C13.37,61.29 13.42,61.67 13.7,61.74C13.83,61.78 13.97,61.73 14.09,61.66C14.72,61.31 14.92,60.38 14.48,59.81"
android:fillColor="#231F20"/>
<path
android:pathData="M12.4,59.14L12.38,60.66C12.38,60.91 12.38,61.15 12.41,61.39C12.46,61.74 12.58,62.04 12.81,62.31C13.13,62.69 13.63,62.78 14.09,62.71C14.43,62.65 14.72,62.45 14.97,62.23C15.31,61.93 15.57,61.46 15.64,61.02C15.74,60.45 15.68,59.81 15.33,59.32C15.17,59.1 15,58.93 14.74,58.86C14.5,58.79 14.19,58.82 13.98,58.96C13.77,59.09 13.58,59.3 13.52,59.55C13.47,59.8 13.47,60.1 13.62,60.31C13.67,60.38 13.72,60.46 13.75,60.54L13.65,60.3C13.69,60.4 13.73,60.51 13.74,60.62L13.7,60.35C13.72,60.48 13.72,60.59 13.7,60.71L13.74,60.45C13.72,60.57 13.69,60.7 13.63,60.83L13.73,60.59C13.69,60.69 13.63,60.78 13.57,60.88L13.72,60.67C13.66,60.75 13.59,60.82 13.52,60.88L13.72,60.73C13.65,60.78 13.58,60.82 13.5,60.86L13.73,60.76C13.68,60.78 13.62,60.8 13.55,60.81L13.82,60.77C13.82,60.77 13.76,60.77 13.73,60.77L13.99,60.81C13.95,60.8 13.92,60.8 13.88,60.78L14.12,60.88C14.12,60.88 14.07,60.84 14.04,60.83L14.25,60.98C14.25,60.98 14.2,60.94 14.19,60.92L14.34,61.12C14.31,61.08 14.28,61.03 14.27,60.99L14.36,61.23C14.34,61.15 14.32,61.08 14.31,61L14.35,61.27C14.3,60.94 14.33,60.61 14.34,60.29L14.35,59.16C14.35,58.64 13.89,58.14 13.36,58.17C12.83,58.19 12.38,58.6 12.37,59.16L12.4,59.14Z"
android:fillColor="#231F20"/>
<path
android:pathData="M23.85,62.53C23.29,62.5 22.73,62.8 22.44,63.28C22.76,63.83 23.61,63.82 24.11,63.44C24.61,63.05 23.58,63.21 23.79,62.62"
android:fillColor="#231F20"/>
<path
android:pathData="M23.85,61.54C23.63,61.53 23.4,61.57 23.18,61.62C22.96,61.67 22.74,61.76 22.54,61.86C22.35,61.97 22.17,62.11 22.01,62.26C21.85,62.4 21.7,62.59 21.59,62.78C21.41,63.08 21.41,63.48 21.59,63.78C21.83,64.18 22.21,64.47 22.66,64.61C23.04,64.73 23.47,64.71 23.85,64.63C24.23,64.54 24.59,64.34 24.86,64.08C25.31,63.65 25.35,62.94 24.9,62.5C24.8,62.4 24.69,62.32 24.56,62.26C24.5,62.23 24.44,62.2 24.38,62.16L24.58,62.31C24.58,62.31 24.53,62.27 24.51,62.24L24.67,62.45C24.67,62.45 24.64,62.4 24.63,62.39L24.73,62.62C24.73,62.62 24.72,62.58 24.71,62.55L24.75,62.82C24.75,62.82 24.75,62.75 24.75,62.72L24.71,62.99C24.71,62.95 24.72,62.91 24.74,62.88C24.82,62.65 24.76,62.33 24.64,62.12C24.51,61.91 24.28,61.72 24.05,61.67C23.8,61.61 23.51,61.62 23.29,61.77L23.08,61.92C22.96,62.04 22.88,62.19 22.83,62.35C22.75,62.59 22.75,62.86 22.81,63.11C22.84,63.22 22.89,63.34 22.96,63.43C23.02,63.52 23.08,63.62 23.17,63.69C23.29,63.79 23.4,63.88 23.54,63.95C23.59,63.97 23.65,63.99 23.7,64.03L23.5,63.88C23.5,63.88 23.51,63.9 23.53,63.91L23.37,63.71C23.37,63.71 23.38,63.72 23.39,63.72L23.29,63.49C23.29,63.49 23.29,63.5 23.29,63.51L23.25,63.25C23.25,63.25 23.25,63.26 23.25,63.26L23.29,63C23.29,63 23.29,63.02 23.28,63.02L23.38,62.79C23.38,62.79 23.37,62.82 23.35,62.83L23.51,62.63C23.48,62.66 23.44,62.7 23.4,62.73L23.6,62.58C23.51,62.64 23.41,62.7 23.31,62.74L23.54,62.64C23.43,62.69 23.32,62.72 23.19,62.74L23.46,62.7C23.34,62.71 23.22,62.72 23.1,62.7L23.37,62.74C23.27,62.72 23.18,62.7 23.1,62.66L23.33,62.76C23.26,62.73 23.19,62.69 23.13,62.64L23.33,62.8C23.28,62.75 23.23,62.71 23.19,62.66L23.34,62.86C23.34,62.86 23.31,62.8 23.29,62.77V63.77C23.32,63.72 23.35,63.67 23.39,63.62L23.23,63.82C23.32,63.72 23.41,63.63 23.51,63.54L23.31,63.69C23.42,63.61 23.53,63.55 23.66,63.49L23.42,63.59C23.55,63.53 23.69,63.5 23.83,63.48L23.57,63.52C23.66,63.5 23.75,63.5 23.85,63.5C24.09,63.52 24.37,63.39 24.55,63.21C24.72,63.04 24.85,62.76 24.83,62.51C24.82,62.27 24.74,61.99 24.55,61.81C24.36,61.64 24.12,61.54 23.85,61.53L23.85,61.54Z"
android:fillColor="#231F20"/>
<path
android:pathData="M17.32,65.22C17.08,65.95 17.05,66.74 17.24,67.48C17.91,67.04 18.19,66.11 17.88,65.38"
android:fillColor="#231F20"/>
<path
android:pathData="M16.37,64.96C16.07,65.85 16.06,66.83 16.29,67.73C16.44,68.32 17.21,68.68 17.74,68.32C18.27,67.97 18.67,67.44 18.87,66.81C18.96,66.54 18.99,66.25 18.99,65.97C18.98,65.68 18.94,65.38 18.83,65.11C18.73,64.87 18.61,64.66 18.37,64.52C18.16,64.4 17.85,64.34 17.61,64.42C17.37,64.5 17.15,64.65 17.02,64.88C16.9,65.11 16.83,65.4 16.92,65.64C16.97,65.76 17.01,65.9 17.03,66.03L16.99,65.76C17.01,65.92 17.01,66.07 16.99,66.23L17.03,65.97C17,66.13 16.96,66.29 16.9,66.44L17,66.21C16.94,66.35 16.86,66.49 16.76,66.62L16.92,66.41C16.83,66.52 16.74,66.62 16.64,66.7L16.84,66.55C16.81,66.57 16.77,66.6 16.74,66.62L18.19,67.21C18.15,67.05 18.12,66.89 18.1,66.73L18.13,67C18.09,66.65 18.09,66.29 18.13,65.94L18.1,66.21C18.13,65.96 18.19,65.73 18.26,65.49C18.34,65.26 18.29,64.94 18.16,64.73C18.04,64.52 17.81,64.33 17.57,64.28C17.03,64.15 16.53,64.44 16.36,64.96L16.37,64.96Z"
android:fillColor="#231F20"/>
<path
android:pathData="M22.07,41.01C21.77,41.39 21.57,41.84 21.47,42.31C21.42,42.56 21.4,42.82 21.51,43.05C21.8,43.66 22.83,43.5 23.13,42.89C23.43,42.29 23.19,41.56 22.82,41"
android:fillColor="#231F20"/>
<path
android:pathData="M21.38,40.32C21.16,40.59 20.96,40.86 20.82,41.18C20.68,41.5 20.57,41.8 20.51,42.12C20.48,42.32 20.44,42.53 20.45,42.73C20.47,43.03 20.52,43.25 20.65,43.52C20.78,43.79 21.03,44.06 21.3,44.2C21.58,44.35 21.9,44.44 22.23,44.42C22.57,44.41 22.86,44.33 23.17,44.18C23.38,44.08 23.59,43.92 23.75,43.74C23.86,43.59 23.96,43.47 24.03,43.31C24.08,43.2 24.13,43.08 24.17,42.96C24.21,42.81 24.23,42.65 24.24,42.51C24.29,42.17 24.23,41.81 24.13,41.49C24.03,41.14 23.87,40.81 23.67,40.51C23.53,40.3 23.34,40.13 23.08,40.06C22.85,39.99 22.53,40.02 22.32,40.16C22.11,40.29 21.92,40.49 21.87,40.74C21.81,41 21.82,41.29 21.97,41.51C22.07,41.67 22.16,41.83 22.24,42.01L22.14,41.78C22.22,41.96 22.28,42.15 22.3,42.35L22.27,42.09C22.29,42.23 22.29,42.37 22.27,42.51L22.3,42.24C22.29,42.35 22.26,42.45 22.22,42.55L22.32,42.32C22.28,42.4 22.24,42.47 22.19,42.54L22.34,42.34C22.29,42.4 22.23,42.46 22.16,42.51L22.36,42.36C22.29,42.42 22.21,42.46 22.13,42.5L22.36,42.4C22.27,42.43 22.17,42.46 22.07,42.48L22.33,42.44C22.24,42.45 22.14,42.45 22.05,42.44L22.31,42.48C22.24,42.46 22.17,42.45 22.11,42.42L22.34,42.52C22.29,42.5 22.24,42.47 22.2,42.43L22.4,42.59C22.36,42.55 22.32,42.51 22.29,42.47L22.44,42.67C22.41,42.63 22.38,42.58 22.35,42.53L22.45,42.76C22.42,42.69 22.4,42.61 22.39,42.53L22.43,42.8C22.41,42.68 22.42,42.57 22.43,42.45L22.4,42.72C22.43,42.46 22.51,42.21 22.6,41.97L22.51,42.21C22.61,41.97 22.74,41.75 22.9,41.54L22.75,41.74L22.77,41.71C22.87,41.62 22.94,41.51 22.97,41.39C23.03,41.27 23.07,41.14 23.06,41.01C23.06,40.77 22.95,40.48 22.77,40.31C22.59,40.14 22.33,40.01 22.07,40.02C21.83,40.03 21.53,40.11 21.37,40.31L21.38,40.32Z"
android:fillColor="#231F20"/>
<path
android:pathData="M16.03,36.73C15.74,36.88 15.95,37.39 16.27,37.4C16.59,37.42 16.86,37.15 17.02,36.88C17.38,36.29 17.48,35.45 16.98,34.98C16.62,34.65 16.02,34.63 15.65,34.94C15.27,35.25 15.17,35.84 15.41,36.26"
android:fillColor="#231F20"/>
<path
android:pathData="M15.53,35.88C15.02,36.17 14.77,36.83 14.98,37.39C15.19,37.94 15.65,38.37 16.27,38.39C17.26,38.41 17.93,37.51 18.18,36.65C18.43,35.85 18.3,34.98 17.74,34.35C17.14,33.66 15.98,33.53 15.22,34.02C14.32,34.6 14.03,35.81 14.55,36.75C14.81,37.2 15.46,37.39 15.9,37.1C16.35,36.82 16.53,36.24 16.26,35.75C16.24,35.72 16.22,35.67 16.2,35.63L16.3,35.86C16.27,35.78 16.24,35.69 16.23,35.6L16.27,35.87C16.25,35.78 16.26,35.69 16.27,35.6L16.23,35.86C16.24,35.76 16.27,35.67 16.31,35.57L16.21,35.8C16.25,35.72 16.29,35.64 16.35,35.57L16.19,35.77C16.24,35.71 16.3,35.65 16.36,35.6L16.16,35.76C16.22,35.71 16.29,35.67 16.37,35.64L16.13,35.74C16.22,35.7 16.3,35.68 16.4,35.67L16.13,35.71C16.22,35.7 16.32,35.7 16.41,35.71L16.14,35.67C16.24,35.68 16.32,35.71 16.41,35.74L16.17,35.64C16.26,35.68 16.34,35.72 16.41,35.78L16.21,35.62C16.27,35.67 16.33,35.73 16.38,35.8L16.22,35.59C16.28,35.67 16.32,35.74 16.35,35.82L16.25,35.59C16.3,35.69 16.32,35.8 16.34,35.91L16.3,35.64C16.32,35.79 16.32,35.94 16.3,36.08L16.34,35.82C16.32,36 16.27,36.16 16.2,36.33L16.3,36.1C16.23,36.25 16.15,36.4 16.05,36.53L16.21,36.33C16.14,36.41 16.08,36.48 16,36.54L16.2,36.39C16.14,36.43 16.08,36.47 16.02,36.5L16.25,36.4C16.21,36.42 16.16,36.43 16.11,36.44L16.38,36.4C16.33,36.4 16.29,36.41 16.24,36.4L16.51,36.44C16.51,36.44 16.46,36.43 16.43,36.42L16.67,36.52C16.64,36.51 16.6,36.49 16.58,36.47L16.78,36.62C16.75,36.6 16.72,36.57 16.69,36.53L16.84,36.73C16.82,36.7 16.8,36.66 16.78,36.62L16.88,36.86C16.86,36.82 16.85,36.78 16.84,36.73L16.88,37C16.88,36.97 16.88,36.94 16.88,36.91L16.84,37.17C16.84,37.17 16.86,37.13 16.86,37.11L16.76,37.34C16.76,37.34 16.78,37.32 16.79,37.31L16.64,37.51C16.64,37.51 16.67,37.47 16.68,37.46L16.48,37.61C16.48,37.61 16.51,37.59 16.52,37.59C16.74,37.47 16.91,37.23 16.98,37C17.05,36.77 17.02,36.45 16.88,36.24C16.59,35.78 16.01,35.61 15.53,35.88Z"
android:fillColor="#231F20"/>
<path
android:pathData="M19.14,25.88C18.62,26.01 18.3,26.66 18.53,27.14C18.75,27.62 19.5,27.76 19.87,27.37C20.23,26.98 20.01,26.22 19.49,26.11"
android:fillColor="#231F20"/>
<path
android:pathData="M18.87,24.93C18.75,24.96 18.64,25.01 18.53,25.06C18.48,25.08 18.45,25.1 18.41,25.12C18.31,25.18 18.21,25.26 18.12,25.34C18.09,25.37 18.05,25.41 18.02,25.44C17.91,25.56 17.8,25.69 17.72,25.84C17.67,25.95 17.62,26.06 17.58,26.17C17.56,26.22 17.54,26.26 17.53,26.31C17.51,26.39 17.5,26.47 17.49,26.56C17.48,26.65 17.46,26.73 17.46,26.82C17.46,26.94 17.49,27.06 17.51,27.18C17.51,27.23 17.53,27.27 17.54,27.31C17.59,27.47 17.65,27.63 17.75,27.76C17.81,27.85 17.89,27.95 17.97,28.03C18.05,28.11 18.15,28.19 18.24,28.25C18.37,28.35 18.53,28.41 18.67,28.47C18.8,28.52 18.91,28.54 19.04,28.55C19.17,28.56 19.28,28.58 19.41,28.57C19.54,28.56 19.66,28.54 19.77,28.51C19.85,28.49 19.92,28.46 19.99,28.43C20.2,28.34 20.33,28.25 20.5,28.11C20.62,28 20.72,27.87 20.8,27.74C20.85,27.64 20.9,27.53 20.94,27.42C20.95,27.38 20.97,27.34 20.98,27.3C21.01,27.15 21.04,26.98 21.03,26.82C21.02,26.69 21,26.57 20.98,26.44C20.97,26.4 20.96,26.36 20.94,26.31C20.89,26.16 20.82,25.99 20.73,25.86C20.57,25.64 20.44,25.51 20.22,25.35C20.18,25.33 20.14,25.3 20.11,25.28C19.99,25.23 19.87,25.17 19.75,25.15C19.49,25.09 19.22,25.11 18.99,25.25C18.79,25.37 18.59,25.6 18.53,25.83C18.48,26.09 18.49,26.37 18.63,26.6C18.77,26.81 18.97,27 19.22,27.05C19.26,27.06 19.29,27.07 19.33,27.09L19.1,26.99C19.15,27.01 19.2,27.04 19.24,27.07L19.04,26.92C19.09,26.95 19.12,27 19.17,27.04L19.01,26.84C19.06,26.9 19.09,26.96 19.12,27.03L19.02,26.79C19.06,26.87 19.07,26.94 19.09,27.02L19.05,26.76C19.06,26.83 19.06,26.9 19.05,26.97L19.09,26.71C19.08,26.77 19.06,26.84 19.04,26.9L19.14,26.66C19.11,26.71 19.09,26.76 19.06,26.81L19.21,26.6C19.17,26.65 19.14,26.69 19.09,26.73L19.29,26.57C19.24,26.61 19.18,26.64 19.12,26.66L19.36,26.57C19.29,26.59 19.23,26.61 19.16,26.62L19.42,26.58C19.34,26.6 19.26,26.59 19.18,26.58L19.44,26.62C19.36,26.61 19.28,26.59 19.2,26.55L19.44,26.65C19.37,26.62 19.3,26.58 19.24,26.53L19.44,26.69C19.39,26.65 19.34,26.6 19.31,26.55L19.46,26.76C19.42,26.71 19.39,26.65 19.36,26.59L19.46,26.82C19.44,26.76 19.42,26.69 19.41,26.63L19.44,26.89C19.44,26.82 19.44,26.74 19.44,26.67L19.41,26.93C19.42,26.85 19.44,26.76 19.47,26.68L19.37,26.92C19.41,26.84 19.45,26.76 19.51,26.69L19.36,26.89C19.41,26.83 19.47,26.77 19.53,26.72L19.33,26.87C19.39,26.83 19.45,26.79 19.52,26.76L19.29,26.86C19.33,26.85 19.36,26.84 19.39,26.82C19.63,26.76 19.86,26.58 19.98,26.37C20.11,26.15 20.16,25.85 20.08,25.61C20,25.37 19.85,25.14 19.63,25.02C19.4,24.9 19.13,24.85 18.86,24.92L18.87,24.93Z"
android:fillColor="#231F20"/>
<path
android:pathData="M24.22,30.19C23.78,30.47 23.83,31.22 24.27,31.51C24.71,31.8 25.34,31.65 25.68,31.25C26.01,30.85 26.09,30.28 25.98,29.77C25.9,29.42 25.71,29.07 25.38,28.93C25.05,28.79 24.58,29.01 24.59,29.37"
android:fillColor="#231F20"/>
<path
android:pathData="M23.72,29.33C23.35,29.58 23.07,29.94 22.98,30.39C22.89,30.83 22.95,31.29 23.16,31.71C23.56,32.51 24.59,32.82 25.41,32.55C26.23,32.28 26.84,31.58 26.96,30.72C27.03,30.27 27.03,29.84 26.9,29.4C26.79,29.02 26.58,28.61 26.27,28.35C25.83,27.97 25.24,27.79 24.67,27.98C24.06,28.2 23.63,28.7 23.61,29.37C23.59,29.89 24.07,30.38 24.59,30.36C25.12,30.34 25.56,29.92 25.58,29.37C25.58,29.35 25.58,29.33 25.58,29.31L25.55,29.57C25.55,29.54 25.56,29.5 25.58,29.46L25.48,29.7C25.48,29.7 25.5,29.65 25.52,29.62L25.37,29.83C25.4,29.79 25.43,29.75 25.47,29.72L25.27,29.88C25.31,29.84 25.36,29.82 25.4,29.8L25.17,29.9C25.22,29.88 25.28,29.86 25.34,29.85L25.08,29.89C25.13,29.89 25.18,29.88 25.23,29.89L24.97,29.85C25.02,29.86 25.07,29.87 25.12,29.89L24.88,29.79C24.95,29.82 25.01,29.86 25.07,29.9L24.86,29.75C24.92,29.8 24.97,29.84 25.02,29.9L24.86,29.7C24.93,29.79 24.99,29.88 25.03,29.99L24.93,29.75C24.99,29.89 25.03,30.04 25.05,30.19L25.01,29.93C25.04,30.1 25.04,30.28 25.01,30.45L25.05,30.19C25.03,30.34 24.99,30.48 24.94,30.61L25.04,30.38C24.99,30.49 24.93,30.59 24.86,30.69L25.01,30.48C24.95,30.56 24.88,30.63 24.81,30.69L25.01,30.54C24.93,30.61 24.83,30.66 24.74,30.7L24.97,30.61C24.87,30.65 24.77,30.67 24.66,30.69L24.93,30.66C24.83,30.67 24.74,30.67 24.64,30.66L24.91,30.69C24.83,30.68 24.75,30.66 24.67,30.63L24.91,30.73C24.85,30.7 24.78,30.67 24.73,30.63L24.93,30.78C24.88,30.74 24.83,30.69 24.78,30.64L24.94,30.84C24.9,30.78 24.86,30.72 24.83,30.66L24.93,30.89C24.9,30.82 24.88,30.74 24.87,30.66L24.91,30.92C24.9,30.84 24.9,30.76 24.91,30.68L24.87,30.94C24.88,30.88 24.9,30.81 24.93,30.74L24.83,30.97C24.85,30.92 24.88,30.87 24.91,30.82L24.76,31.02C24.79,30.99 24.83,30.95 24.86,30.92L24.66,31.07C24.66,31.07 24.69,31.05 24.71,31.04C24.93,30.89 25.09,30.7 25.17,30.45C25.23,30.21 25.2,29.89 25.07,29.68C24.93,29.48 24.73,29.29 24.48,29.23C24.23,29.18 23.94,29.18 23.72,29.33L23.72,29.33Z"
android:fillColor="#231F20"/>
<path
android:pathData="M29.37,31.21L59.04,20.14C59.21,20.08 59.32,20.33 59.15,20.41L36.82,30.66C36.66,30.73 36.74,30.97 36.91,30.93L63.02,25.28C63.2,25.25 63.28,25.49 63.12,25.56L31.44,39.63C31.28,39.71 31.37,39.96 31.54,39.9L68.16,28.97C68.33,28.92 68.42,29.16 68.26,29.24L33.2,46.09C33.03,46.17 33.13,46.41 33.3,46.36L68.82,34.93C68.99,34.87 69.09,35.12 68.92,35.2L35.92,50.95C35.76,51.03 35.85,51.27 36.02,51.22L73.12,41.11C73.29,41.06 73.38,41.32 73.21,41.39L31.32,59.16C31.16,59.24 31.25,59.48 31.42,59.44L74.62,47.68C74.8,47.64 74.89,47.89 74.72,47.96L40.04,61.75C39.89,61.81 39.93,62.04 40.1,62.04L70.47,60.18C70.66,60.17 70.69,60.44 70.5,60.47L38.8,65.74C38.63,65.77 38.64,66.01 38.8,66.03L74.45,69.91C74.64,69.93 74.62,70.2 74.43,70.2H32.01"
android:strokeWidth="1.31416"
android:fillColor="#00000000"
android:strokeColor="#231F20"/>
</group>
</vector>

View File

@ -0,0 +1,31 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="125dp"
android:height="130dp"
android:viewportWidth="125"
android:viewportHeight="130">
<group>
<clip-path
android:pathData="M0.14,0h123.95v129.89h-123.95z"/>
<path
android:pathData="M70.13,100.81C66.05,104.38 66.07,111.11 65.27,116.03C64.87,118.49 64.44,121.25 62.99,123.34C61.13,126.04 57.45,126.07 54.75,124.66C50.55,122.46 49.04,117.53 48.57,113.12L46.19,113.44C47.44,117.61 45.93,122.48 42.36,125.06C40.94,126.09 39.64,125.77 38.98,124.07C37.88,121.2 36.92,118.28 35.89,115.38L33.68,116.31C34.54,118.19 33.86,120.66 33.05,122.43C32.24,124.2 30.73,126.51 28.64,127.01C26.55,127.51 24.97,125.62 24.08,124C23.01,122.06 22.37,119.59 22.88,117.39C23.17,116.12 21.26,115.15 20.67,116.46C19.52,119.02 18.04,121.43 16.19,123.56C14.93,125 12.05,128.75 9.9,127.02C8.06,125.54 7.7,122.37 7.21,120.24C6.48,117.09 5.85,113.92 5.32,110.74C3.3,98.62 2.47,86.19 2.59,73.91C2.7,63.09 3.85,52.12 7.67,41.92C11.49,31.72 18.58,22.85 27.66,16.47C45.64,3.83 70.34,-1.86 91.38,6.04C109.26,12.76 123.23,31.25 121.53,50.81C120.62,61.29 114.74,70.62 107.36,77.82C99.04,85.93 88.72,91.36 78.44,96.53C75.75,97.88 73.05,99.23 70.38,100.61C69,101.32 70.22,103.41 71.6,102.7C82.8,96.92 94.45,91.74 104.32,83.75C112.9,76.8 120.25,67.62 122.98,56.74C127.97,36.84 115.7,15.71 98.18,6.44C77.07,-4.71 50.55,-0.34 30.77,11.56C20.89,17.51 12.53,25.72 7.5,36.19C2.53,46.57 0.72,58.15 0.28,69.56C-0.21,82.28 0.61,95.19 2.43,107.78C2.93,111.22 3.53,114.64 4.24,118.04C4.83,120.84 5.29,123.86 6.55,126.45C7.5,128.41 9.24,130.11 11.57,129.86C14.25,129.58 16.53,126.86 18.16,124.94C20.03,122.74 21.56,120.3 22.75,117.67L20.54,116.74C19.43,121.57 22.74,130.71 29.04,129.39C31.87,128.8 33.97,126.13 35.13,123.64C36.37,120.99 37.03,117.83 35.76,115.07C35.19,113.83 33.09,114.71 33.55,116C34.23,117.91 34.88,119.82 35.56,121.73C36.11,123.27 36.53,125.14 37.52,126.47C38.79,128.17 41.17,128.54 42.99,127.52C47.94,124.72 50.1,118.08 48.52,112.79C48.15,111.54 45.99,111.7 46.14,113.11C46.6,117.39 47.79,121.96 51.06,124.99C53.96,127.68 58.4,128.95 62.1,127.2C67.59,124.61 67.57,116.41 68.38,111.32C68.86,108.3 69.39,104.63 71.82,102.51C72.99,101.48 71.28,99.78 70.11,100.8L70.13,100.81Z"
android:fillColor="#231F20"/>
<path
android:pathData="M54.11,47.82C51.25,45.91 47.15,45.41 43.34,48.28C42.38,49 41.67,49.99 41.22,51.1C39.4,55.56 38.77,60.42 38.66,65.23C38.53,70.84 39.09,76.47 40.31,81.95C41.14,85.67 42.32,89.4 44.6,92.44C46.24,94.62 49.11,96.49 51.56,95.3C52.62,94.78 53.35,93.79 53.98,92.79C59.54,83.88 59.09,72.61 58.45,62.12C58.14,57.03 57.64,51.49 54.1,47.82"
android:fillColor="#231F20"/>
<path
android:pathData="M54.72,46.77C51.65,44.8 47.89,44.52 44.59,46.1C40.56,48.03 39.29,52.06 38.43,56.16C36.57,64.98 37.27,74.59 39.39,83.31C40.32,87.14 41.72,91.26 44.49,94.17C47.05,96.86 51.2,98.1 53.93,94.94C56.44,92.04 57.89,87.94 58.76,84.27C59.7,80.33 60.01,76.25 60.03,72.2C60.06,67.64 59.87,63 59.37,58.46C58.91,54.28 57.9,50.13 54.96,46.97C53.9,45.83 52.19,47.54 53.25,48.68C55.48,51.07 56.38,54.26 56.82,57.43C57.3,60.84 57.4,64.34 57.53,67.78C57.78,74.68 57.59,81.86 54.93,88.33C53.83,91 51.86,95.83 48.22,94.02C45.06,92.45 43.44,88.51 42.44,85.34C40.11,77.94 39.42,69.79 40.02,62.08C40.19,59.86 40.51,57.66 41.06,55.5C41.54,53.59 42.06,51.28 43.45,49.81C46.1,47.01 50.38,46.88 53.49,48.88C54.8,49.72 56.02,47.63 54.71,46.79L54.72,46.77Z"
android:fillColor="#231F20"/>
<path
android:pathData="M21.4,53.99C20.34,52.61 19.69,51.36 18.18,50.48C16.67,49.6 14.66,49.36 13.23,50.36C12.15,51.11 11.59,52.4 11.13,53.63C7.56,63.23 6.82,73.87 9.04,83.87C9.86,87.54 12.02,91.86 15.78,91.77C19.63,91.67 21.53,87.09 22.27,83.31C24.44,72.22 22.35,57.8 21.4,53.98"
android:fillColor="#231F20"/>
<path
android:pathData="M22.45,53.38C21.44,52.04 20.55,50.6 19.13,49.65C17.71,48.7 15.91,48.28 14.26,48.63C10.59,49.42 9.58,54.11 8.7,57.17C6.38,65.28 5.97,73.9 7.48,82.2C8.05,85.34 8.94,88.74 11.28,91.05C13.38,93.13 16.57,93.63 19.05,91.89C21.53,90.15 22.71,86.95 23.34,84.1C24.12,80.53 24.38,76.81 24.43,73.16C24.51,66.72 24.11,59.93 22.57,53.65C22.2,52.14 19.87,52.78 20.24,54.29C21.3,58.61 21.68,63.17 21.9,67.61C22.06,70.74 22.07,73.88 21.86,77C21.65,80.12 21.33,83.05 20.33,85.88C19.58,87.98 18.08,90.71 15.47,90.54C12.86,90.37 11.36,87.33 10.65,85.13C9.65,82.01 9.27,78.62 9.09,75.36C8.88,71.71 9.03,68.03 9.59,64.42C10.15,60.81 11.04,56.71 12.59,53.22C13.34,51.54 14.59,50.55 16.48,51.05C18.37,51.55 19.28,53.15 20.37,54.58C21.3,55.81 23.4,54.6 22.46,53.36L22.45,53.38Z"
android:fillColor="#231F20"/>
<path
android:pathData="M33.87,88.93C32.8,88.54 31.57,89.27 31.03,90.28C30.49,91.29 29.33,97.02 29.99,97.85C31.43,99.67 37.19,99.18 37.62,96.9C38.05,94.61 35.44,91.13 34.04,89.27"
android:fillColor="#231F20"/>
<path
android:pathData="M34.19,87.76C32.57,87.23 30.76,88.21 29.98,89.66C29.6,90.37 29.42,91.21 29.24,91.99C28.99,93.09 28.8,94.19 28.67,95.31C28.57,96.15 28.46,97.09 28.7,97.92C28.99,98.94 30.02,99.52 30.97,99.83C31.97,100.16 33.09,100.23 34.13,100.12C36.27,99.9 38.78,98.97 38.86,96.46C38.91,94.96 38.2,93.47 37.48,92.19C36.76,90.91 35.93,89.79 35.07,88.65C34.68,88.13 34.03,87.86 33.41,88.22C32.9,88.52 32.58,89.35 32.98,89.88C33.63,90.75 34.27,91.62 34.86,92.53C35.17,93.02 35.46,93.52 35.73,94.04C35.8,94.17 35.86,94.3 35.92,94.44C35.94,94.48 36.06,94.76 36,94.6C36.11,94.87 36.21,95.15 36.29,95.43C36.35,95.66 36.41,95.89 36.44,96.13C36.41,95.89 36.44,96.18 36.44,96.27C36.44,96.39 36.44,96.5 36.44,96.61C36.44,96.84 36.44,96.61 36.44,96.57C36.44,96.59 36.44,96.65 36.42,96.67C36.41,96.68 36.4,96.75 36.39,96.76C36.36,96.97 36.42,96.63 36.44,96.65C36.45,96.66 36.35,96.8 36.34,96.82C36.27,96.98 36.38,96.77 36.41,96.74C36.38,96.77 36.35,96.81 36.32,96.84C36.26,96.9 36.19,96.95 36.14,97.01C36.07,97.1 36.23,96.94 36.24,96.94C36.2,96.97 36.16,97 36.12,97.03C35.96,97.13 35.8,97.21 35.63,97.31C35.44,97.42 35.82,97.25 35.61,97.32C35.51,97.35 35.42,97.39 35.32,97.42C35.1,97.49 34.88,97.55 34.66,97.6C34.57,97.62 34.48,97.64 34.38,97.65C34.32,97.66 34.25,97.67 34.19,97.68C34.19,97.68 34.42,97.66 34.27,97.67C34.05,97.69 33.82,97.71 33.6,97.72C33.39,97.72 33.18,97.72 32.98,97.72C32.87,97.72 32.76,97.71 32.65,97.7C32.6,97.7 32.56,97.7 32.51,97.69C32.21,97.67 32.68,97.73 32.51,97.69C32.32,97.65 32.13,97.62 31.94,97.58C31.84,97.56 31.75,97.53 31.65,97.5C31.59,97.48 31.28,97.36 31.45,97.43C31.62,97.5 31.39,97.4 31.34,97.38C31.26,97.34 31.19,97.29 31.11,97.25C30.96,97.16 31.01,97.15 31.12,97.27C31.07,97.21 30.98,97.13 30.92,97.08C30.75,96.95 31.07,97.31 30.98,97.15C30.98,97.15 31.06,97.48 31.03,97.26C31.03,97.22 31.01,97.16 31,97.11C30.95,96.96 31.02,97.43 31,97.14C30.99,96.78 30.99,96.43 31.01,96.07C31.02,95.87 31.04,95.68 31.06,95.48C31.07,95.37 31.09,95.26 31.1,95.15C31.12,94.94 31.07,95.32 31.12,95.03C31.19,94.56 31.27,94.09 31.36,93.63C31.53,92.76 31.71,91.89 32,91.05C32.02,90.98 32.05,90.91 32.08,90.84C32.15,90.63 31.96,91.05 32.04,90.94C32.23,90.67 32.25,90.6 32.43,90.41C32.52,90.31 32.52,90.31 32.69,90.21C32.74,90.18 32.8,90.15 32.86,90.12C33.03,90.03 32.65,90.16 32.98,90.08C33.04,90.06 33.1,90.05 33.16,90.03C33.35,89.99 33.01,90.03 33.2,90.03C33.23,90.03 33.48,90.05 33.34,90.03C33.23,90.01 33.54,90.1 33.54,90.09C34.16,90.29 34.86,89.85 35.03,89.25C35.21,88.59 34.81,87.97 34.19,87.76Z"
android:fillColor="#231F20"/>
</group>
</vector>

View File

@ -9,23 +9,39 @@
<string name="send_confirmation_send_button">Enviar</string>
<string name="send_confirmation_back_button">Cancelar</string>
<string name="send_confirmation_dialog_error_title">Transacción Fallida</string>
<string name="send_confirmation_dialog_error_text">Ocurrió un error y el intento de enviar fondos falló. Inténtelo de nuevo, por favor.</string>
<string name="send_confirmation_dialog_error_ok_btn">OK</string>
<string name="send_confirmation_dialog_error_report_btn">Reportar</string>
<string name="send_confirmation_dialog_error_grpc_title">Error de Conexión</string>
<string name="send_confirmation_dialog_error_grpc_text">Zashi encontró algunos problemas de conexión al enviar la transacción a la red. Volverá a intentarlo durante los próximos minutos.</string>
<string name="send_confirmation_dialog_error_grpc_btn">OK</string>
<string name="send_confirmation_multiple_error_title">Error de Transacción</string>
<string name="send_confirmation_multiple_error_text_1">Enviar a este destinatario requirió múltiples transacciones, pero solo algunas de ellas se completaron con éxito. Tus fondos están seguros, pero deben recuperarse con la ayuda del soporte del equipo de Zashi.</string>
<string name="send_confirmation_multiple_error_text_2">Por favor, usa el botón de abajo para contactarnos y recuperar tus fondos. Tu mensaje para nosotros estará pre-rellenado con todos los datos necesarios para resolver este problema.</string>
<string name="send_confirmation_multiple_error_trx_title">IDs DE TRANSACCIÓN:</string>
<string name="send_confirmation_multiple_error_trx_item" formatted="true">
<xliff:g id="order" example="1">%1$d. </xliff:g>ID:
<string name="send_confirmation_sending_title">Sending…</string>
<string name="send_confirmation_sending_subtitle">Your tokens are being sent to\n
<xliff:g example="zs12ghrbdjfs24383x5T…" id="index">%1$s</xliff:g>
</string>
<string name="send_confirmation_multiple_error_btn">Contactar Soporte</string>
<string name="send_confirmation_success_title">Sent!</string>
<string name="send_confirmation_success_subtitle">Your tokens were successfully sent to\n
<xliff:g example="zs12ghrbdjfs24383x5T…" id="index">%1$s</xliff:g>
</string>
<string name="send_confirmation_success_view_trx">View Transaction</string>
<string name="send_confirmation_success_btn_close">Close</string>
<string name="send_confirmation_failure_title">Send Failed</string>
<string name="send_confirmation_failure_subtitle">There was an error attempting to send tokens.\n
Try it again, please.</string>
<string name="send_confirmation_failure_view_trx">View Transaction</string>
<string name="send_confirmation_failure_close_button">Close</string>
<string name="send_confirmation_failure_report_button">Report</string>
<string name="send_confirmation_failure_grpc_title">Connection Error</string>
<string name="send_confirmation_failure_grpc_subtitle">Zashi encountered connection issues when submitting the
transaction. It will retry in the next few minutes.</string>
<string name="send_confirmation_failure_grpc_close_button">Close</string>
<string name="send_confirmation_multiple_trx_failure_title">Send Failed</string>
<string name="send_confirmation_multiple_trx_failure_text_1">Send to this recipient required multiple
transactions but only some of them succeeded and the rest failed. Your funds are safe but need to be
recovered with assistance from our side.</string>
<string name="send_confirmation_multiple_trx_failure_text_2">Please use the button below to contact us. it
automatically prepares all the data we need in order to help you restore your funds.</string>
<string name="send_confirmation_multiple_trx_failure_copy_button">Copy transaction IDs</string>
<string name="send_confirmation_multiple_trx_failure_report_button">Contact Support</string>
<string name="send_confirmation_multiple_trx_failure_ids_title">Transaction IDs</string>
<string name="send_confirmation_multiple_report_text">Hola, equipo de Zashi.\n\nAl enviar una transacción a una dirección TEX, encontré un estado de error. Me pongo en contacto para recibir orientación sobre cómo recuperar mis fondos.\n\nGracias.</string>
<string name="send_confirmation_multiple_report_statuses" formatted="true">Estados de la transacción:</string>
@ -41,6 +57,7 @@
código: <xliff:g example="123" id="code">%3$d</xliff:g>,
descripción: <xliff:g example="Network unreachable" id="desc">%4$s</xliff:g>
</string>
<string name="send_confirmation_multiple_report_unable_open_email">No se pudo iniciar la aplicación de correo.</string>
<string name="send_confirmation_multiple_trx_failure_report_unable_open_email">Unable to launch email app.</string>
<string name="send_confirmation_multiple_trx_failure_copy_tag">Transaction IDs</string>
</resources>

View File

@ -9,28 +9,39 @@
<string name="send_confirmation_send_button">Send</string>
<string name="send_confirmation_back_button">Cancel</string>
<string name="send_confirmation_dialog_error_title">Transaction Failed</string>
<string name="send_confirmation_dialog_error_text">An error occurred and the attempt to send funds failed. Try it again, please.</string>
<string name="send_confirmation_dialog_error_ok_btn">OK</string>
<string name="send_confirmation_dialog_error_report_btn">Report</string>
<string name="send_confirmation_dialog_error_grpc_title">Connection Error</string>
<string name="send_confirmation_dialog_error_grpc_text">Zashi encountered some connection issues when submitting
the transaction to the network. It will retry during the next few minutes.</string>
<string name="send_confirmation_dialog_error_grpc_btn">OK</string>
<string name="send_confirmation_multiple_error_title">Transaction error</string>
<string name="send_confirmation_multiple_error_text_1">Sending to this recipient required multiple transactions,
but only some of them succeeded. Your funds are safe, but they need to be recovered with the help of Zashi
team support.</string>
<string name="send_confirmation_multiple_error_text_2">Please use the button below to contact us and recover your
funds. Your message to us will be pre-populated with all the data we need to resolve this issue.</string>
<string name="send_confirmation_multiple_error_trx_title">TRANSACTION IDs:</string>
<string name="send_confirmation_multiple_error_trx_item" formatted="true">
<xliff:g id="order" example="1">%1$d. </xliff:g>ID:
<string name="send_confirmation_sending_title">Sending…</string>
<string name="send_confirmation_sending_subtitle">Your tokens are being sent to\n
<xliff:g example="zs12ghrbdjfs24383x5T…" id="index">%1$s</xliff:g>
</string>
<string name="send_confirmation_multiple_error_btn">Contact Support</string>
<string name="send_confirmation_success_title">Sent!</string>
<string name="send_confirmation_success_subtitle">Your tokens were successfully sent to\n
<xliff:g example="zs12ghrbdjfs24383x5T…" id="index">%1$s</xliff:g>
</string>
<string name="send_confirmation_success_view_trx">View Transaction</string>
<string name="send_confirmation_success_btn_close">Close</string>
<string name="send_confirmation_failure_title">Send Failed</string>
<string name="send_confirmation_failure_subtitle">There was an error attempting to send tokens.\n
Try it again, please.</string>
<string name="send_confirmation_failure_view_trx">View Transaction</string>
<string name="send_confirmation_failure_close_button">Close</string>
<string name="send_confirmation_failure_report_button">Report</string>
<string name="send_confirmation_failure_grpc_title">Connection Error</string>
<string name="send_confirmation_failure_grpc_subtitle">Zashi encountered connection issues when submitting the
transaction. It will retry in the next few minutes.</string>
<string name="send_confirmation_failure_grpc_close_button">Close</string>
<string name="send_confirmation_multiple_trx_failure_title">Send Failed</string>
<string name="send_confirmation_multiple_trx_failure_text_1">Send to this recipient required multiple
transactions but only some of them succeeded and the rest failed. Your funds are safe but need to be
recovered with assistance from our side.</string>
<string name="send_confirmation_multiple_trx_failure_text_2">Please use the button below to contact us. it
automatically prepares all the data we need in order to help you restore your funds.</string>
<string name="send_confirmation_multiple_trx_failure_copy_button">Copy transaction IDs</string>
<string name="send_confirmation_multiple_trx_failure_report_button">Contact Support</string>
<string name="send_confirmation_multiple_trx_failure_ids_title">Transaction IDs</string>
<string name="send_confirmation_multiple_report_text">Hi, Zashi Team.\n\nWhile sending a transaction to a TEX
address, I encountered an error state. I\'m reaching out to get guidance on how to recover my funds.\n\nThank
you.</string>
@ -47,6 +58,7 @@
code: <xliff:g example="123" id="code">%3$d</xliff:g>,
description: <xliff:g example="Network unreachable" id="desc">%4$s</xliff:g>
</string>
<string name="send_confirmation_multiple_report_unable_open_email">Unable to launch email app.</string>
<string name="send_confirmation_multiple_trx_failure_report_unable_open_email">Unable to launch email app.</string>
<string name="send_confirmation_multiple_trx_failure_copy_tag">Transaction IDs</string>
</resources>