commit
b5179c3c0e
|
|
@ -482,7 +482,7 @@ fun AppEntrypoint(
|
|||
|
||||
RevoltTheme(
|
||||
requestedTheme = LoadedSettings.theme,
|
||||
colourOverrides = SyncedSettings.android.colourOverrides
|
||||
colourOverrides = SyncedSettings.android.colourOverrides,
|
||||
) {
|
||||
Box(
|
||||
Modifier
|
||||
|
|
|
|||
|
|
@ -0,0 +1,4 @@
|
|||
package chat.revolt.composables.generic
|
||||
|
||||
class DefaultButtonStyle {
|
||||
}
|
||||
|
|
@ -13,6 +13,7 @@ import androidx.compose.foundation.layout.padding
|
|||
import androidx.compose.foundation.layout.safeDrawingPadding
|
||||
import androidx.compose.foundation.layout.size
|
||||
import androidx.compose.foundation.rememberScrollState
|
||||
import androidx.compose.foundation.shape.CornerSize
|
||||
import androidx.compose.foundation.verticalScroll
|
||||
import androidx.compose.material3.Button
|
||||
import androidx.compose.material3.Card
|
||||
|
|
@ -193,7 +194,13 @@ fun ChoosePlatformScreen(navController: NavController) {
|
|||
modifier = Modifier
|
||||
.padding(top = 32.dp, bottom = 16.dp)
|
||||
.fillMaxWidth()
|
||||
.testTag("confirm_platform_button")
|
||||
.testTag("confirm_platform_button"),
|
||||
shape = MaterialTheme.shapes.small.copy(
|
||||
topStart = CornerSize(8.dp),
|
||||
topEnd = CornerSize(8.dp),
|
||||
bottomStart = CornerSize(8.dp),
|
||||
bottomEnd = CornerSize(8.dp)
|
||||
)
|
||||
) {
|
||||
Text(text = stringResource(R.string.confirm))
|
||||
}
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@ import androidx.compose.foundation.layout.fillMaxWidth
|
|||
import androidx.compose.foundation.layout.height
|
||||
import androidx.compose.foundation.layout.padding
|
||||
import androidx.compose.foundation.layout.safeDrawingPadding
|
||||
import androidx.compose.foundation.shape.CornerSize
|
||||
import androidx.compose.material3.Button
|
||||
import androidx.compose.material3.ElevatedButton
|
||||
import androidx.compose.material3.LocalContentColor
|
||||
|
|
@ -37,8 +38,10 @@ import androidx.compose.ui.text.font.FontWeight
|
|||
import androidx.compose.ui.text.style.TextAlign
|
||||
import androidx.compose.ui.unit.dp
|
||||
import androidx.compose.ui.unit.sp
|
||||
import androidx.compose.ui.tooling.preview.Preview
|
||||
import androidx.navigation.NavController
|
||||
import chat.revolt.R
|
||||
import androidx.navigation.compose.rememberNavController
|
||||
|
||||
@OptIn(ExperimentalFoundationApi::class)
|
||||
@Composable
|
||||
|
|
@ -130,7 +133,13 @@ fun LoginGreetingScreen(navController: NavController) {
|
|||
onClick = { navController.navigate("login/login") },
|
||||
modifier = Modifier
|
||||
.fillMaxWidth()
|
||||
.testTag("view_login_page_button")
|
||||
.testTag("view_login_page_button"),
|
||||
shape = MaterialTheme.shapes.small.copy(
|
||||
topStart = CornerSize(8.dp),
|
||||
topEnd = CornerSize(8.dp),
|
||||
bottomStart = CornerSize(8.dp),
|
||||
bottomEnd = CornerSize(8.dp)
|
||||
)
|
||||
) {
|
||||
Text(text = stringResource(R.string.login))
|
||||
}
|
||||
|
|
@ -141,7 +150,13 @@ fun LoginGreetingScreen(navController: NavController) {
|
|||
onClick = { navController.navigate("register/details") },
|
||||
modifier = Modifier
|
||||
.fillMaxWidth()
|
||||
.testTag("view_signup_page_button")
|
||||
.testTag("view_signup_page_button"),
|
||||
shape = MaterialTheme.shapes.small.copy(
|
||||
topStart = CornerSize(8.dp),
|
||||
topEnd = CornerSize(8.dp),
|
||||
bottomStart = CornerSize(8.dp),
|
||||
bottomEnd = CornerSize(8.dp)
|
||||
)
|
||||
) {
|
||||
Text(text = stringResource(R.string.signup))
|
||||
}
|
||||
|
|
@ -171,3 +186,11 @@ fun LoginGreetingScreen(navController: NavController) {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Preview(showBackground = true)
|
||||
@Composable
|
||||
fun LoginGreetingScreenPreview() {
|
||||
val navController = rememberNavController()
|
||||
LoginGreetingScreen(navController)
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@ package chat.revolt.screens.login
|
|||
|
||||
import android.util.Log
|
||||
import androidx.compose.foundation.Image
|
||||
import androidx.compose.foundation.clickable
|
||||
import androidx.compose.foundation.layout.Arrangement
|
||||
import androidx.compose.foundation.layout.Column
|
||||
import androidx.compose.foundation.layout.Row
|
||||
|
|
@ -12,6 +13,7 @@ import androidx.compose.foundation.layout.height
|
|||
import androidx.compose.foundation.layout.imePadding
|
||||
import androidx.compose.foundation.layout.padding
|
||||
import androidx.compose.foundation.layout.size
|
||||
import androidx.compose.foundation.shape.CornerSize
|
||||
import androidx.compose.foundation.text.input.TextObfuscationMode
|
||||
import androidx.compose.foundation.text.input.rememberTextFieldState
|
||||
import androidx.compose.material3.Button
|
||||
|
|
@ -212,7 +214,13 @@ fun LoginScreen(navController: NavController, viewModel: LoginViewModel = hiltVi
|
|||
},
|
||||
onClick = { navController.popBackStack() }
|
||||
)
|
||||
Text(text = "Register")
|
||||
Text(
|
||||
modifier = Modifier.clickable {
|
||||
navController.popBackStack()
|
||||
navController.navigate("register/details")
|
||||
},
|
||||
text = "Register"
|
||||
)
|
||||
}
|
||||
},
|
||||
)
|
||||
|
|
@ -336,7 +344,13 @@ fun LoginScreen(navController: NavController, viewModel: LoginViewModel = hiltVi
|
|||
},
|
||||
modifier = Modifier
|
||||
.fillMaxWidth()
|
||||
.testTag("confirm_platform_button")
|
||||
.testTag("confirm_platform_button"),
|
||||
shape = MaterialTheme.shapes.small.copy(
|
||||
topStart = CornerSize(8.dp),
|
||||
topEnd = CornerSize(8.dp),
|
||||
bottomStart = CornerSize(8.dp),
|
||||
bottomEnd = CornerSize(8.dp)
|
||||
)
|
||||
) {
|
||||
Text(text = stringResource(R.string.login))
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,20 @@
|
|||
package chat.revolt.screens.register
|
||||
|
||||
import androidx.compose.foundation.Image
|
||||
import androidx.compose.foundation.layout.Arrangement
|
||||
import androidx.compose.foundation.layout.Column
|
||||
import androidx.compose.foundation.layout.ExperimentalLayoutApi
|
||||
import androidx.compose.foundation.layout.Spacer
|
||||
import androidx.compose.foundation.layout.fillMaxSize
|
||||
import androidx.compose.foundation.layout.fillMaxWidth
|
||||
import androidx.compose.foundation.layout.height
|
||||
import androidx.compose.foundation.layout.padding
|
||||
import androidx.compose.foundation.layout.imeNestedScroll
|
||||
import androidx.compose.foundation.layout.safeDrawingPadding
|
||||
import androidx.compose.foundation.layout.size
|
||||
import androidx.compose.foundation.layout.sizeIn
|
||||
import androidx.compose.material3.Button
|
||||
import androidx.compose.material3.ButtonDefaults
|
||||
import androidx.compose.material3.MaterialTheme
|
||||
import androidx.compose.material3.Text
|
||||
import androidx.compose.runtime.Composable
|
||||
|
|
@ -18,19 +24,24 @@ import androidx.compose.runtime.rememberCoroutineScope
|
|||
import androidx.compose.ui.Alignment
|
||||
import androidx.compose.ui.Modifier
|
||||
import androidx.compose.ui.platform.LocalContext
|
||||
import androidx.compose.ui.res.painterResource
|
||||
import androidx.compose.ui.res.stringResource
|
||||
import androidx.compose.ui.text.font.FontWeight
|
||||
import androidx.compose.ui.text.style.TextAlign
|
||||
import androidx.compose.ui.unit.dp
|
||||
import androidx.compose.ui.unit.sp
|
||||
import androidx.compose.ui.tooling.preview.Preview
|
||||
import androidx.navigation.NavController
|
||||
import androidx.navigation.compose.rememberNavController
|
||||
import chat.revolt.R
|
||||
import chat.revolt.api.routes.onboard.OnboardingCompletionBody
|
||||
import chat.revolt.api.routes.onboard.completeOnboarding
|
||||
import chat.revolt.composables.generic.DefaultButtonStyle
|
||||
import chat.revolt.composables.generic.FormTextField
|
||||
import chat.revolt.persistence.KVStorage
|
||||
import kotlinx.coroutines.launch
|
||||
|
||||
@OptIn(ExperimentalLayoutApi::class)
|
||||
@Composable
|
||||
fun OnboardingScreen(navController: NavController, onOnboardingComplete: () -> Unit) {
|
||||
val coroutineScope = rememberCoroutineScope()
|
||||
|
|
@ -67,7 +78,8 @@ fun OnboardingScreen(navController: NavController, onOnboardingComplete: () -> U
|
|||
modifier = Modifier
|
||||
.fillMaxSize()
|
||||
.padding(20.dp)
|
||||
.safeDrawingPadding(),
|
||||
.safeDrawingPadding()
|
||||
.imeNestedScroll(),
|
||||
verticalArrangement = Arrangement.Center,
|
||||
horizontalAlignment = Alignment.CenterHorizontally
|
||||
) {
|
||||
|
|
@ -77,6 +89,13 @@ fun OnboardingScreen(navController: NavController, onOnboardingComplete: () -> U
|
|||
verticalArrangement = Arrangement.Center,
|
||||
horizontalAlignment = Alignment.CenterHorizontally
|
||||
) {
|
||||
Image(
|
||||
modifier = Modifier
|
||||
.size(width = 343.dp, height = 197.dp),
|
||||
painter = painterResource(R.drawable.find_and_recognize_character_img),
|
||||
contentDescription = "Finder and Recognizer Character"
|
||||
)
|
||||
Spacer(modifier = Modifier.height(32.dp))
|
||||
Text(
|
||||
text = stringResource(R.string.onboarding_welcome),
|
||||
style = MaterialTheme.typography.displaySmall.copy(
|
||||
|
|
@ -146,11 +165,29 @@ fun OnboardingScreen(navController: NavController, onOnboardingComplete: () -> U
|
|||
horizontalAlignment = Alignment.CenterHorizontally
|
||||
) {
|
||||
FormTextField(
|
||||
modifier = Modifier.fillMaxWidth(),
|
||||
value = username.value,
|
||||
onChange = { username.value = it },
|
||||
label = stringResource(R.string.onboarding_username)
|
||||
)
|
||||
|
||||
Spacer(modifier = Modifier.height(32.dp))
|
||||
Button(
|
||||
modifier = Modifier.fillMaxWidth(),
|
||||
onClick = {
|
||||
coroutineScope.launch {
|
||||
onboard()
|
||||
}
|
||||
},
|
||||
enabled = username.value.isNotBlank(),
|
||||
shape = MaterialTheme.shapes.small.copy(
|
||||
topStart = androidx.compose.foundation.shape.CornerSize(8.dp),
|
||||
topEnd = androidx.compose.foundation.shape.CornerSize(8.dp),
|
||||
bottomStart = androidx.compose.foundation.shape.CornerSize(8.dp),
|
||||
bottomEnd = androidx.compose.foundation.shape.CornerSize(8.dp)
|
||||
)
|
||||
) {
|
||||
Text(text = stringResource(R.string.complete_registration))
|
||||
}
|
||||
if (error.value.isNotBlank()) {
|
||||
Text(
|
||||
text = error.value,
|
||||
|
|
@ -161,16 +198,12 @@ fun OnboardingScreen(navController: NavController, onOnboardingComplete: () -> U
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
Button(
|
||||
onClick = {
|
||||
coroutineScope.launch {
|
||||
onboard()
|
||||
}
|
||||
},
|
||||
enabled = username.value.isNotBlank()
|
||||
) {
|
||||
Text(text = stringResource(R.string.next))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Preview(backgroundColor = 0xFFFFFFFF, showBackground = true)
|
||||
@Composable
|
||||
fun OnboardingScreenPreview() {
|
||||
val navController = rememberNavController()
|
||||
OnboardingScreen(navController = navController, onOnboardingComplete = {})
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@ package chat.revolt.screens.register
|
|||
|
||||
import android.content.Context
|
||||
import androidx.compose.foundation.Image
|
||||
import androidx.compose.foundation.clickable
|
||||
import androidx.compose.foundation.layout.Arrangement
|
||||
import androidx.compose.foundation.layout.Column
|
||||
import androidx.compose.foundation.layout.Row
|
||||
|
|
@ -12,6 +13,7 @@ import androidx.compose.foundation.layout.height
|
|||
import androidx.compose.foundation.layout.imePadding
|
||||
import androidx.compose.foundation.layout.padding
|
||||
import androidx.compose.foundation.layout.size
|
||||
import androidx.compose.foundation.shape.CornerSize
|
||||
import androidx.compose.material3.Button
|
||||
import androidx.compose.material3.ExperimentalMaterial3Api
|
||||
import androidx.compose.material3.HorizontalDivider
|
||||
|
|
@ -129,7 +131,8 @@ fun RegisterDetailsScreen(
|
|||
topBar = {
|
||||
Column {
|
||||
TopAppBar(
|
||||
modifier = Modifier.fillMaxWidth()
|
||||
modifier = Modifier
|
||||
.fillMaxWidth()
|
||||
.padding(horizontal = 16.dp),
|
||||
title = {},
|
||||
actions = {
|
||||
|
|
@ -147,7 +150,13 @@ fun RegisterDetailsScreen(
|
|||
},
|
||||
onClick = { navController.popBackStack() }
|
||||
)
|
||||
Text(text = stringResource(R.string.login))
|
||||
Text(
|
||||
modifier = Modifier.clickable {
|
||||
navController.popBackStack()
|
||||
navController.navigate("login/login")
|
||||
},
|
||||
text = stringResource(R.string.login)
|
||||
)
|
||||
}
|
||||
},
|
||||
)
|
||||
|
|
@ -168,7 +177,7 @@ fun RegisterDetailsScreen(
|
|||
Image(
|
||||
modifier = Modifier
|
||||
.size(120.dp),
|
||||
painter = painterResource(R.drawable.login_charachter_img),
|
||||
painter = painterResource(R.drawable.register_happy_img),
|
||||
contentDescription = "Login character"
|
||||
)
|
||||
Spacer(modifier = Modifier.height(4.dp))
|
||||
|
|
@ -212,7 +221,9 @@ fun RegisterDetailsScreen(
|
|||
label = stringResource(R.string.register_email),
|
||||
type = KeyboardType.Email,
|
||||
action = ImeAction.Next,
|
||||
modifier = Modifier.fillMaxWidth().semantics { contentType = ContentType.EmailAddress }
|
||||
modifier = Modifier
|
||||
.fillMaxWidth()
|
||||
.semantics { contentType = ContentType.EmailAddress }
|
||||
)
|
||||
Spacer(modifier = Modifier.height(16.dp))
|
||||
FormTextField(
|
||||
|
|
@ -221,7 +232,9 @@ fun RegisterDetailsScreen(
|
|||
label = stringResource(R.string.register_password),
|
||||
type = KeyboardType.Email,
|
||||
action = ImeAction.Next,
|
||||
modifier = Modifier.fillMaxWidth().semantics { contentType = ContentType.EmailAddress }
|
||||
modifier = Modifier
|
||||
.fillMaxWidth()
|
||||
.semantics { contentType = ContentType.EmailAddress }
|
||||
)
|
||||
Spacer(modifier = Modifier.height(32.dp))
|
||||
|
||||
|
|
@ -235,7 +248,13 @@ fun RegisterDetailsScreen(
|
|||
},
|
||||
modifier = Modifier
|
||||
.fillMaxWidth()
|
||||
.testTag("setup_continue_button")
|
||||
.testTag("setup_continue_button"),
|
||||
shape = MaterialTheme.shapes.small.copy(
|
||||
topStart = CornerSize(8.dp),
|
||||
topEnd = CornerSize(8.dp),
|
||||
bottomStart = CornerSize(8.dp),
|
||||
bottomEnd = CornerSize(8.dp)
|
||||
)
|
||||
) {
|
||||
Text(text = stringResource(R.string.continue_))
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,28 +3,42 @@ package chat.revolt.screens.register
|
|||
import android.content.Intent
|
||||
import androidx.activity.compose.rememberLauncherForActivityResult
|
||||
import androidx.activity.result.contract.ActivityResultContracts
|
||||
import androidx.compose.foundation.Image
|
||||
import androidx.compose.foundation.clickable
|
||||
import androidx.compose.foundation.layout.Arrangement
|
||||
import androidx.compose.foundation.layout.Column
|
||||
import androidx.compose.foundation.layout.Row
|
||||
import androidx.compose.foundation.layout.Spacer
|
||||
import androidx.compose.foundation.layout.fillMaxSize
|
||||
import androidx.compose.foundation.layout.fillMaxWidth
|
||||
import androidx.compose.foundation.layout.height
|
||||
import androidx.compose.foundation.layout.padding
|
||||
import androidx.compose.foundation.layout.safeDrawingPadding
|
||||
import androidx.compose.foundation.shape.CornerSize
|
||||
import androidx.compose.material3.Button
|
||||
import androidx.compose.material3.ExperimentalMaterial3Api
|
||||
import androidx.compose.material3.HorizontalDivider
|
||||
import androidx.compose.material3.Icon
|
||||
import androidx.compose.material3.IconButton
|
||||
import androidx.compose.material3.MaterialTheme
|
||||
import androidx.compose.material3.Scaffold
|
||||
import androidx.compose.material3.Text
|
||||
import androidx.compose.material3.TopAppBar
|
||||
import androidx.compose.runtime.Composable
|
||||
import androidx.compose.ui.Alignment
|
||||
import androidx.compose.ui.Modifier
|
||||
import androidx.compose.ui.res.painterResource
|
||||
import androidx.compose.ui.res.stringResource
|
||||
import androidx.compose.ui.text.font.FontWeight
|
||||
import androidx.compose.ui.text.style.TextAlign
|
||||
import androidx.compose.ui.unit.dp
|
||||
import androidx.compose.ui.unit.sp
|
||||
import androidx.compose.ui.tooling.preview.Preview
|
||||
import androidx.navigation.compose.rememberNavController
|
||||
import androidx.navigation.NavController
|
||||
import chat.revolt.R
|
||||
|
||||
@OptIn(ExperimentalMaterial3Api::class)
|
||||
@Composable
|
||||
fun RegisterVerifyScreen(navController: NavController, email: String) {
|
||||
val intentLauncher =
|
||||
|
|
@ -32,20 +46,48 @@ fun RegisterVerifyScreen(navController: NavController, email: String) {
|
|||
contract = ActivityResultContracts.StartActivityForResult()
|
||||
) {}
|
||||
|
||||
Column(
|
||||
modifier = Modifier
|
||||
.fillMaxSize()
|
||||
.padding(20.dp)
|
||||
.safeDrawingPadding(),
|
||||
verticalArrangement = Arrangement.Center,
|
||||
horizontalAlignment = Alignment.CenterHorizontally
|
||||
) {
|
||||
Scaffold(
|
||||
topBar = {
|
||||
Column {
|
||||
TopAppBar(
|
||||
modifier = Modifier
|
||||
.fillMaxWidth()
|
||||
.padding(horizontal = 16.dp),
|
||||
title = {},
|
||||
actions = {
|
||||
Row(
|
||||
modifier = Modifier.fillMaxWidth(),
|
||||
horizontalArrangement = Arrangement.Start,
|
||||
verticalAlignment = Alignment.CenterVertically,
|
||||
) {
|
||||
IconButton(
|
||||
content = {
|
||||
Icon(
|
||||
painter = painterResource(R.drawable.icn_arrow_back_24dp),
|
||||
contentDescription = stringResource(R.string.back)
|
||||
)
|
||||
},
|
||||
onClick = { navController.popBackStack() }
|
||||
)
|
||||
}
|
||||
},
|
||||
)
|
||||
HorizontalDivider()
|
||||
}
|
||||
},
|
||||
) { innerPadding ->
|
||||
Column(
|
||||
modifier = Modifier
|
||||
.weight(1f),
|
||||
verticalArrangement = Arrangement.Center,
|
||||
modifier = Modifier.fillMaxSize()
|
||||
.padding(innerPadding)
|
||||
.padding(16.dp),
|
||||
verticalArrangement = Arrangement.Top,
|
||||
horizontalAlignment = Alignment.CenterHorizontally
|
||||
) {
|
||||
Image(
|
||||
painter = painterResource(R.drawable.main_img),
|
||||
contentDescription = "Mail Image"
|
||||
)
|
||||
Spacer(modifier = Modifier.height(4.dp))
|
||||
Text(
|
||||
text = stringResource(R.string.check_mail),
|
||||
style = MaterialTheme.typography.displaySmall.copy(
|
||||
|
|
@ -65,7 +107,8 @@ fun RegisterVerifyScreen(navController: NavController, email: String) {
|
|||
color = MaterialTheme.colorScheme.onBackground.copy(
|
||||
alpha = 0.5f
|
||||
),
|
||||
style = MaterialTheme.typography.titleMedium.copy(
|
||||
style = MaterialTheme.typography.bodySmall.copy(
|
||||
fontSize = 15.sp,
|
||||
textAlign = TextAlign.Center,
|
||||
fontWeight = FontWeight.Normal
|
||||
),
|
||||
|
|
@ -74,31 +117,33 @@ fun RegisterVerifyScreen(navController: NavController, email: String) {
|
|||
.fillMaxWidth()
|
||||
)
|
||||
|
||||
Spacer(modifier = Modifier.height(10.dp))
|
||||
Spacer(modifier = Modifier.height(32.dp))
|
||||
|
||||
Text(
|
||||
text = stringResource(R.string.verify_then_choose_username),
|
||||
color = MaterialTheme.colorScheme.onBackground.copy(
|
||||
alpha = 0.5f
|
||||
),
|
||||
style = MaterialTheme.typography.titleMedium.copy(
|
||||
textAlign = TextAlign.Center,
|
||||
fontWeight = FontWeight.Normal
|
||||
),
|
||||
Button(
|
||||
modifier = Modifier
|
||||
.padding(horizontal = 20.dp)
|
||||
.fillMaxWidth()
|
||||
)
|
||||
|
||||
Spacer(modifier = Modifier.height(40.dp))
|
||||
|
||||
Button(onClick = {
|
||||
val intent = Intent(Intent.ACTION_MAIN)
|
||||
intent.addCategory(Intent.CATEGORY_APP_EMAIL)
|
||||
intentLauncher.launch(intent)
|
||||
}) {
|
||||
.fillMaxWidth(),
|
||||
onClick = {
|
||||
val intent = Intent(Intent.ACTION_MAIN)
|
||||
intent.addCategory(Intent.CATEGORY_APP_EMAIL)
|
||||
intentLauncher.launch(intent)
|
||||
},
|
||||
shape = MaterialTheme.shapes.small.copy(
|
||||
topStart = CornerSize(8.dp),
|
||||
topEnd = CornerSize(8.dp),
|
||||
bottomStart = CornerSize(8.dp),
|
||||
bottomEnd = CornerSize(8.dp)
|
||||
)
|
||||
) {
|
||||
Text(text = stringResource(R.string.open_mail_app))
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Preview(backgroundColor = 0xffffffff, showBackground = true)
|
||||
@Composable
|
||||
fun RegisterVerifyScreenPreview() {
|
||||
val navController = rememberNavController()
|
||||
val email = "design@abron.co"
|
||||
RegisterVerifyScreen(navController = navController, email = email)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,6 +4,8 @@ import android.annotation.SuppressLint
|
|||
import android.app.Activity
|
||||
import android.os.Build
|
||||
import androidx.compose.foundation.isSystemInDarkTheme
|
||||
import androidx.compose.foundation.shape.CornerBasedShape
|
||||
import androidx.compose.foundation.shape.CornerSize
|
||||
import androidx.compose.material3.ColorScheme
|
||||
import androidx.compose.material3.MaterialTheme
|
||||
import androidx.compose.material3.darkColorScheme
|
||||
|
|
@ -16,6 +18,7 @@ import androidx.compose.ui.graphics.Color
|
|||
import androidx.compose.ui.graphics.toArgb
|
||||
import androidx.compose.ui.platform.LocalContext
|
||||
import androidx.compose.ui.platform.LocalView
|
||||
import androidx.compose.ui.unit.dp
|
||||
import androidx.core.view.ViewCompat
|
||||
|
||||
val LightColorScheme = lightColorScheme(
|
||||
|
|
@ -178,6 +181,14 @@ fun RevoltTheme(
|
|||
val colorScheme = getColorScheme(requestedTheme, colourOverrides)
|
||||
|
||||
MaterialTheme(
|
||||
shapes = MaterialTheme.shapes.copy(
|
||||
small = MaterialTheme.shapes.small.copy(
|
||||
topStart = CornerSize(8.dp),
|
||||
topEnd = CornerSize(8.dp),
|
||||
bottomStart = CornerSize(8.dp),
|
||||
bottomEnd = CornerSize(8.dp)
|
||||
)
|
||||
),
|
||||
colorScheme = colorScheme,
|
||||
typography = RevoltTypography,
|
||||
content = content
|
||||
|
|
|
|||
|
|
@ -0,0 +1,165 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="141dp"
|
||||
android:height="80dp"
|
||||
android:viewportWidth="141"
|
||||
android:viewportHeight="80">
|
||||
<path
|
||||
android:pathData="M71.55,43.48C69.27,48.79 67.43,54.29 66.07,59.9C65.42,62.54 64.88,65.21 64.45,67.89C64.26,69.07 64.23,70.35 63.75,71.46C63.29,72.49 62.53,73.38 61.57,73.97C60.94,74.35 60.25,74.61 59.65,75.03C58.94,75.52 58.3,76.45 58.51,77.35C58.67,78.05 59.37,78.5 60.07,78.71C61.38,79.11 62.79,78.91 64.07,78.47C64.38,78.36 64.69,78.24 65,78.1C65.2,78.01 65.6,77.71 65.82,77.71C66.13,77.71 66.05,77.76 66.03,78.09C66.01,78.49 65.95,78.89 65.91,79.28C67.15,79.57 68.42,79.66 69.69,79.76C70.64,79.83 71.63,79.89 72.52,79.53C74.67,68.96 76.63,58.1 82,48.57C82.08,48.43 82.16,48.29 82.24,48.15"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M71.39,43.39C70.08,46.45 68.91,49.57 67.89,52.74C66.87,55.94 66,59.18 65.29,62.47C64.92,64.15 64.6,65.85 64.32,67.55C64.07,69.05 64.07,70.63 63.27,71.97C62.92,72.57 62.45,73.1 61.9,73.52C61.3,73.97 60.59,74.25 59.94,74.62C59.34,74.97 58.8,75.45 58.5,76.09C58.23,76.67 58.19,77.37 58.57,77.92C58.93,78.46 59.54,78.77 60.15,78.93C60.92,79.14 61.72,79.16 62.5,79.05C63.3,78.94 64.07,78.7 64.81,78.39C65.09,78.27 65.34,78.12 65.61,77.98C65.67,77.95 65.73,77.92 65.79,77.91C65.83,77.9 65.89,77.92 65.92,77.9L65.93,77.91C65.99,77.92 65.96,77.89 65.87,77.81C65.86,77.81 65.87,77.85 65.87,77.86C65.85,77.91 65.85,77.99 65.85,78.04C65.82,78.46 65.77,78.87 65.73,79.28C65.72,79.36 65.79,79.45 65.87,79.47C67.23,79.78 68.63,79.88 70.02,79.97C70.65,80.01 71.3,80.03 71.92,79.9C72.07,79.87 72.22,79.84 72.36,79.79C72.51,79.74 72.67,79.71 72.71,79.55C72.8,79.24 72.84,78.91 72.91,78.6C73.42,76.07 73.92,73.55 74.47,71.03C75.02,68.51 75.62,65.99 76.3,63.49C76.99,61.01 77.76,58.56 78.68,56.16C79.6,53.75 80.67,51.39 81.91,49.13C82.08,48.83 82.24,48.54 82.41,48.25C82.53,48.03 82.2,47.84 82.08,48.05C79.93,51.79 78.28,55.8 76.97,59.91C75.66,63.99 74.68,68.17 73.8,72.36C73.29,74.73 72.82,77.1 72.34,79.48L72.47,79.34C71.48,79.74 70.38,79.62 69.34,79.54C68.21,79.46 67.08,79.36 65.97,79.1L66.11,79.28C66.15,78.87 66.2,78.46 66.23,78.04C66.25,77.85 66.29,77.62 66.05,77.54C65.8,77.46 65.54,77.58 65.33,77.7C65.05,77.86 64.77,78 64.46,78.12C63.03,78.69 61.3,79.04 59.83,78.42C59.25,78.18 58.7,77.74 58.67,77.07C58.63,76.39 59.07,75.75 59.58,75.33C60.16,74.84 60.91,74.58 61.56,74.2C62.15,73.86 62.68,73.4 63.12,72.86C63.55,72.32 63.9,71.7 64.12,71.03C64.35,70.3 64.43,69.53 64.53,68.77C64.73,67.11 65.06,65.46 65.39,63.83C66.06,60.53 66.89,57.27 67.88,54.06C68.85,50.9 69.96,47.79 71.23,44.74C71.39,44.35 71.56,43.96 71.72,43.58C71.82,43.35 71.49,43.16 71.39,43.39Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M71.55,43.48C69.27,48.79 67.43,54.29 66.07,59.9C65.28,63.14 64.76,66.43 64.04,69.67C64.01,69.81 63.98,69.97 64.05,70.09C64.12,70.25 64.3,70.31 64.46,70.36C66.47,71.01 68.5,71.66 70.59,72.02C71.64,72.21 72.71,72.32 73.79,72.32C74.36,72.32 74.54,72.41 74.79,71.95C75.01,71.54 75.07,70.91 75.19,70.46C76.23,66.66 77.32,62.85 78.69,59.15C80.24,54.97 84.45,46.44 87.05,42.8"
|
||||
android:fillColor="#3B1954"/>
|
||||
<path
|
||||
android:pathData="M81.14,53.01C81.01,51.96 80.65,50.94 80.11,50.03C79.56,49.11 78.53,48.37 77.79,47.58C77.58,47.36 77.37,47.13 77.1,47.01C76.02,46.51 76.1,47.84 76.08,48.51C76.06,49.45 76.13,50.38 76.28,51.3C76.57,53.14 77.14,54.92 77.81,56.66C78.19,57.62 78.69,58.68 78.55,59.74C79.14,57.93 79.9,56.18 80.82,54.51C80.95,54.26 81.1,54.01 81.15,53.73C81.2,53.49 81.18,53.24 81.14,53.01Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M80.33,46.85C79.89,51.42 79.9,56.77 83.45,61.34C85.12,63.48 87.27,67.09 89.1,69.1C89.9,69.99 90.89,70.81 91.45,71.87C91.98,72.87 92.2,74.03 92.07,75.15C91.98,75.87 91.75,76.57 91.7,77.3C91.65,78.16 91.97,79.24 92.81,79.64C93.46,79.95 94.25,79.68 94.85,79.27C95.98,78.49 96.7,77.26 97.15,75.99C97.26,75.68 97.35,75.36 97.44,75.03C97.5,74.82 97.51,74.32 97.65,74.15C97.83,73.9 97.83,74 98.08,74.22C98.37,74.48 98.65,74.78 98.93,75.05C99.93,74.27 100.79,73.33 101.65,72.4C102.3,71.7 102.97,70.96 103.24,70.04C96.3,61.78 89.01,53.48 84.89,43.36C84.83,43.21 84.77,43.06 84.71,42.91"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M80.14,46.85C79.86,49.78 79.8,52.77 80.51,55.64C80.89,57.17 81.48,58.65 82.3,60C82.71,60.68 83.2,61.3 83.67,61.94C84.1,62.53 84.51,63.12 84.92,63.72C85.81,65.01 86.68,66.32 87.61,67.58C88.03,68.13 88.45,68.67 88.91,69.18C89.45,69.78 90.04,70.31 90.56,70.92C91.11,71.57 91.52,72.31 91.74,73.13C91.97,74 91.95,74.87 91.78,75.74C91.62,76.51 91.42,77.28 91.56,78.07C91.67,78.71 91.98,79.35 92.54,79.71C93.2,80.13 94.02,79.96 94.67,79.61C95.33,79.24 95.88,78.67 96.32,78.06C96.77,77.42 97.1,76.71 97.36,75.97C97.49,75.59 97.62,75.2 97.67,74.8C97.69,74.66 97.71,74.51 97.75,74.37C97.77,74.31 97.83,74.26 97.85,74.2L97.87,74.18L97.76,74.19C97.76,74.2 97.86,74.28 97.87,74.3C98.19,74.59 98.49,74.89 98.8,75.19C98.88,75.27 98.99,75.25 99.07,75.19C100.14,74.34 101.08,73.32 102,72.31C102.41,71.85 102.82,71.38 103.11,70.83C103.18,70.7 103.25,70.57 103.3,70.44C103.35,70.32 103.44,70.15 103.42,70.02C103.41,69.89 103.25,69.76 103.17,69.66C103.06,69.53 102.95,69.4 102.84,69.27C101.18,67.3 99.51,65.33 97.88,63.33C96.23,61.32 94.62,59.27 93.08,57.17C91.56,55.09 90.12,52.95 88.8,50.73C87.48,48.5 86.28,46.18 85.27,43.79C85.14,43.48 85.02,43.17 84.9,42.86C84.81,42.63 84.44,42.73 84.53,42.96C85.33,44.98 86.26,46.94 87.29,48.85C88.32,50.73 89.44,52.56 90.63,54.34C91.83,56.13 93.1,57.88 94.42,59.59C95.72,61.29 97.07,62.96 98.44,64.61C99.81,66.27 101.2,67.92 102.59,69.57C102.76,69.77 102.93,69.97 103.1,70.18L103.05,69.99C102.75,71.01 101.97,71.78 101.27,72.54C100.49,73.38 99.7,74.21 98.8,74.92H99.07C98.76,74.61 98.44,74.31 98.12,74.01C98.04,73.92 97.95,73.82 97.82,73.82C97.67,73.81 97.56,73.94 97.48,74.05C97.32,74.29 97.33,74.6 97.28,74.88C97.21,75.29 97.05,75.71 96.9,76.1C96.64,76.81 96.29,77.51 95.81,78.1C95.33,78.7 94.7,79.28 93.94,79.5C93.58,79.61 93.18,79.62 92.84,79.44C92.56,79.29 92.34,79.05 92.19,78.77C91.85,78.13 91.84,77.4 91.97,76.71C92.12,75.84 92.35,75 92.28,74.11C92.22,73.28 91.99,72.46 91.59,71.73C91.21,71.02 90.65,70.43 90.1,69.86C89.58,69.34 89.08,68.82 88.62,68.25C87.65,67.06 86.8,65.79 85.94,64.53C85.51,63.9 85.09,63.28 84.65,62.66C84.25,62.08 83.82,61.52 83.4,60.95C82.44,59.65 81.7,58.2 81.2,56.67C80.28,53.83 80.21,50.82 80.43,47.88C80.46,47.53 80.49,47.19 80.52,46.85C80.55,46.6 80.17,46.6 80.14,46.85Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M76.33,46.66C76.74,51.1 79.72,55.64 81.88,59.54C84.15,63.62 87.32,66.92 90.25,70.53C90.34,70.65 90.44,70.76 90.58,70.79C90.74,70.83 90.9,70.73 91.05,70.64C92.81,69.46 94.57,68.28 96.16,66.88C96.96,66.17 97.72,65.4 98.39,64.57C98.75,64.11 98.92,64.03 98.72,63.55C98.53,63.12 98.08,62.69 97.81,62.31C95.26,58.84 92.59,55.37 91.24,51.23C89.94,47.27 89.89,42.89 91.2,38.92"
|
||||
android:fillColor="#3B1954"/>
|
||||
<path
|
||||
android:pathData="M71.39,43.39C70,46.62 68.77,49.92 67.72,53.27C66.65,56.66 65.77,60.11 65.07,63.6C64.72,65.36 64.39,67.13 64.02,68.89C63.97,69.1 63.93,69.32 63.88,69.53C63.84,69.73 63.78,69.95 63.86,70.15C64,70.49 64.45,70.56 64.76,70.66C65.6,70.93 66.45,71.2 67.3,71.44C69.03,71.93 70.79,72.34 72.59,72.47C73.02,72.5 73.45,72.51 73.88,72.51C74.12,72.52 74.4,72.55 74.61,72.43C74.86,72.3 74.99,72.01 75.08,71.76C75.2,71.42 75.25,71.05 75.33,70.7C75.53,69.85 75.79,69.01 76.03,68.17C76.27,67.3 76.52,66.43 76.78,65.57C77.29,63.84 77.83,62.13 78.43,60.43C78.57,60.02 78.72,59.61 78.87,59.2C78.96,58.97 78.59,58.87 78.51,59.1C77.29,62.38 76.3,65.73 75.37,69.09C75.26,69.51 75.14,69.93 75.03,70.35C74.93,70.7 74.88,71.05 74.79,71.4C74.73,71.62 74.65,71.98 74.42,72.1C74.35,72.14 74.27,72.14 74.19,72.14C74.04,72.14 73.88,72.13 73.72,72.13C71.98,72.12 70.25,71.82 68.56,71.39C67.72,71.17 66.9,70.93 66.07,70.67C65.67,70.55 65.27,70.42 64.86,70.29C64.69,70.24 64.48,70.2 64.32,70.1C64.13,69.99 64.22,69.78 64.25,69.6C64.63,67.89 64.96,66.16 65.29,64.44C65.96,61.04 66.77,57.68 67.78,54.36C68.77,51.11 69.91,47.91 71.21,44.77C71.38,44.37 71.55,43.97 71.72,43.58C71.81,43.35 71.48,43.16 71.39,43.39Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M76.13,46.66C76.34,48.78 77.07,50.8 77.96,52.73C78.89,54.72 80,56.61 81.09,58.52C81.62,59.46 82.14,60.41 82.73,61.33C83.33,62.26 83.98,63.16 84.65,64.04C85.98,65.78 87.42,67.44 88.83,69.12C89.19,69.55 89.55,69.99 89.91,70.42C90.06,70.61 90.2,70.85 90.43,70.94C90.67,71.05 90.91,70.95 91.12,70.82C92.1,70.18 93.06,69.52 94,68.83C94.93,68.16 95.84,67.44 96.68,66.66C97.1,66.28 97.5,65.88 97.87,65.46C98.07,65.24 98.26,65.02 98.44,64.79C98.59,64.61 98.75,64.44 98.88,64.25C99.11,63.88 98.92,63.45 98.7,63.13C98.41,62.7 98.05,62.33 97.75,61.92C97.1,61.04 96.45,60.16 95.82,59.27C94.56,57.5 93.37,55.67 92.43,53.71C91.47,51.69 90.82,49.53 90.56,47.31C90.3,45.07 90.41,42.77 90.93,40.57C91.06,40.03 91.21,39.5 91.38,38.97C91.46,38.74 91.09,38.64 91.01,38.87C90.32,40.98 90,43.21 90.05,45.43C90.1,47.64 90.51,49.84 91.27,51.92C92,53.92 93.03,55.79 94.19,57.56C94.78,58.46 95.4,59.34 96.03,60.21C96.34,60.64 96.66,61.07 96.97,61.5C97.28,61.92 97.57,62.34 97.9,62.73C98.07,62.93 98.24,63.13 98.38,63.34C98.48,63.49 98.63,63.71 98.61,63.9C98.59,64.06 98.43,64.21 98.34,64.32C98.16,64.54 97.98,64.76 97.8,64.97C97.06,65.81 96.25,66.58 95.39,67.29C94.5,68.02 93.58,68.69 92.64,69.33C92.16,69.66 91.68,69.98 91.19,70.31C91.04,70.41 90.74,70.7 90.54,70.57C90.45,70.51 90.38,70.4 90.3,70.31C90.21,70.2 90.12,70.09 90.03,69.98C88.65,68.3 87.22,66.66 85.86,64.97C84.5,63.28 83.22,61.53 82.16,59.64C81.11,57.79 80.03,55.96 79.05,54.07C78.07,52.18 77.19,50.21 76.74,48.12C76.64,47.64 76.56,47.15 76.52,46.66C76.49,46.41 76.11,46.41 76.13,46.66Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M88.22,44.74C88.87,44.8 89.55,44.88 90.17,44.68C90.17,43.27 90.59,40.98 91.34,39.79C90.53,39.96 89.68,40.76 88.86,40.72C85.98,40.55 83.1,40.85 80.23,41.13C78.81,41.27 77.39,41.41 75.96,41.48C74.76,41.55 73.64,41.53 72.5,42.01C72.38,42.06 72.26,42.12 72.17,42.21C72.08,42.29 72.03,42.4 71.97,42.5C71.43,43.54 70.78,44.68 70.49,45.81C73.21,44.96 76.36,44.74 79.21,44.57C82.21,44.38 85.23,44.44 88.22,44.74Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M88.22,44.93C88.88,44.99 89.57,45.06 90.22,44.86C90.3,44.83 90.36,44.76 90.36,44.68C90.36,43.84 90.48,43.01 90.66,42.2C90.83,41.41 91.07,40.59 91.5,39.89C91.59,39.74 91.44,39.57 91.28,39.61C90.65,39.75 90.13,40.16 89.53,40.39C89.38,40.45 89.23,40.5 89.08,40.52C88.9,40.54 88.72,40.52 88.54,40.51C88.12,40.49 87.71,40.48 87.3,40.48C85.63,40.47 83.97,40.59 82.31,40.74C80.68,40.88 79.04,41.07 77.4,41.19C76.61,41.26 75.82,41.3 75.03,41.34C74.29,41.38 73.54,41.45 72.84,41.68C72.47,41.8 72.08,41.93 71.88,42.27C71.66,42.63 71.48,43.01 71.29,43.38C70.89,44.14 70.52,44.93 70.3,45.76C70.27,45.89 70.4,46.04 70.54,45.99C72.65,45.34 74.87,45.07 77.07,44.9C79.42,44.72 81.77,44.61 84.13,44.67C85.49,44.71 86.86,44.79 88.22,44.93C88.46,44.95 88.46,44.57 88.22,44.55C85.78,44.31 83.33,44.22 80.89,44.3C78.62,44.37 76.33,44.52 74.08,44.84C72.85,45.01 71.62,45.26 70.44,45.63L70.67,45.86C70.86,45.13 71.18,44.43 71.52,43.76C71.7,43.42 71.88,43.09 72.05,42.75C72.12,42.61 72.19,42.45 72.3,42.35C72.42,42.22 72.61,42.16 72.77,42.1C73.46,41.85 74.18,41.77 74.91,41.72C75.69,41.68 76.47,41.65 77.25,41.59C80.48,41.34 83.7,40.88 86.95,40.86C87.39,40.86 87.84,40.86 88.28,40.88C88.67,40.89 89.05,40.94 89.42,40.83C90.11,40.63 90.68,40.13 91.39,39.98L91.17,39.7C90.72,40.42 90.47,41.27 90.29,42.1C90.1,42.94 89.98,43.81 89.98,44.68L90.12,44.49C89.5,44.68 88.85,44.61 88.22,44.55C87.97,44.52 87.97,44.9 88.22,44.93Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M60.39,38.56C58.93,41.36 57.5,44.17 56.1,47C56.01,45.99 55.93,45.01 55.76,44.01C55.39,41.79 54.99,39.69 53.5,37.91C53.3,37.67 53.07,37.42 52.77,37.28C51.27,36.58 49.44,36.79 47.95,37.46C46.87,37.95 46.72,39.4 47.04,40.42C47.33,41.36 47.92,42.18 48.25,43.1C48.94,45.07 48.41,47.39 48.39,49.43C48.38,51.7 48.54,53.99 49.03,56.21C49.25,57.19 49.44,57.95 50.19,58.69C50.88,59.37 51.8,59.82 52.76,59.98C56.12,60.57 58.91,58.12 60.76,55.61C62.99,52.59 64.55,49.47 65.74,45.9C65.96,45.25 66.16,44.59 66.34,43.92"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M60.23,38.46C59.09,40.64 57.98,42.83 56.88,45.03C56.56,45.65 56.25,46.28 55.94,46.9L56.3,47C56.19,45.8 56.06,44.61 55.86,43.43C55.69,42.42 55.48,41.42 55.14,40.45C54.79,39.48 54.31,38.57 53.64,37.78C53.48,37.58 53.3,37.4 53.09,37.25C52.88,37.1 52.62,37 52.38,36.92C51.88,36.75 51.35,36.67 50.82,36.66C50.29,36.64 49.75,36.71 49.23,36.83C48.74,36.94 48.22,37.1 47.77,37.34C47.04,37.73 46.73,38.56 46.7,39.34C46.68,40.33 47.13,41.19 47.56,42.04C47.81,42.53 48.05,43.03 48.19,43.57C48.33,44.1 48.39,44.65 48.41,45.19C48.44,46.31 48.31,47.42 48.24,48.53C48.17,49.7 48.2,50.89 48.28,52.07C48.35,53.28 48.5,54.49 48.73,55.69C48.92,56.64 49.11,57.65 49.71,58.44C50.98,60.07 53.28,60.56 55.21,60.09C57.08,59.63 58.67,58.36 59.93,56.95C60.61,56.19 61.2,55.36 61.77,54.51C62.38,53.61 62.94,52.69 63.46,51.73C64.49,49.81 65.33,47.79 66.01,45.71C66.2,45.14 66.37,44.56 66.53,43.97C66.59,43.74 66.22,43.63 66.16,43.87C65.6,45.98 64.84,48.04 63.9,50.01C63,51.9 61.92,53.71 60.68,55.4C59.6,56.89 58.28,58.28 56.63,59.14C54.95,60.02 52.87,60.19 51.19,59.21C50.76,58.96 50.36,58.64 50.05,58.25C49.77,57.9 49.58,57.5 49.45,57.08C49.14,56.05 48.96,54.96 48.83,53.89C48.68,52.72 48.61,51.54 48.59,50.36C48.58,49.26 48.65,48.18 48.73,47.09C48.8,46.04 48.85,44.97 48.66,43.93C48.57,43.4 48.4,42.91 48.18,42.43C47.95,41.94 47.68,41.47 47.46,40.98C47.13,40.24 46.95,39.42 47.21,38.62C47.31,38.28 47.52,37.96 47.82,37.76C48.21,37.49 48.72,37.35 49.18,37.23C50.17,36.98 51.24,36.95 52.22,37.27C52.46,37.34 52.7,37.43 52.9,37.58C53.1,37.72 53.26,37.91 53.41,38.09C53.73,38.48 54.01,38.91 54.25,39.35C54.71,40.22 55,41.16 55.22,42.11C55.45,43.15 55.63,44.2 55.75,45.25C55.81,45.83 55.86,46.42 55.91,47C55.93,47.17 56.18,47.28 56.27,47.09C57.36,44.89 58.47,42.7 59.59,40.52C59.91,39.9 60.23,39.27 60.56,38.65C60.67,38.44 60.34,38.24 60.23,38.46Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M48.91,29.5L65.38,45.38L94.2,41.51L100.75,18.38C99.75,17.33 98.75,16.29 97.75,15.24C95.6,13.01 93.46,10.77 91.31,8.53C89.3,6.43 87.29,4.34 85.28,2.24C84.75,1.69 84.24,1.1 83.68,0.58C83.12,0.05 82.05,0.21 81.31,0.26C79.9,0.37 78.53,0.73 77.16,1.05C72.93,2.07 68.47,2.79 64.25,1.71C62.53,1.27 60.84,0.54 59.07,0.62C58.25,0.67 57.37,0.93 56.89,1.6C56.42,2.27 56.57,3.4 57.34,3.69C56.52,3.23 55.53,3.06 54.61,3.24C53.93,3.38 53.23,3.76 53.05,4.43C52.77,5.51 53.86,5.99 54.7,6.32C54.4,6.21 54.05,6.33 53.83,6.57C53.62,6.81 53.53,7.14 53.54,7.46C53.56,7.97 53.84,8.61 54.28,8.9C54.78,9.23 55.52,9.37 56.1,9.44C56.06,9.44 55.65,10.82 55.6,10.96C55.45,11.43 55.24,11.88 55.08,12.35C54.72,13.41 54.36,14.47 53.99,15.53C52.98,18.43 51.94,21.33 50.88,24.22C50.23,25.98 49.57,27.74 48.91,29.5Z"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M48.77,29.63C49.47,30.3 50.16,30.97 50.86,31.64C52.46,33.18 54.06,34.73 55.66,36.27C57.43,37.98 59.2,39.69 60.98,41.4C62.21,42.59 63.45,43.78 64.69,44.98C64.87,45.15 65.04,45.38 65.25,45.52C65.42,45.64 65.81,45.52 66,45.49C67.4,45.3 68.79,45.12 70.19,44.93C72.44,44.63 74.69,44.32 76.94,44.02C79.43,43.69 81.92,43.35 84.42,43.01L90.76,42.16C91.87,42.01 92.99,41.86 94.1,41.71C94.15,41.71 94.2,41.7 94.25,41.69C94.32,41.68 94.37,41.62 94.39,41.56C94.58,40.89 94.77,40.22 94.96,39.55C95.42,37.91 95.88,36.27 96.35,34.63C96.93,32.57 97.51,30.51 98.1,28.45C98.64,26.53 99.19,24.61 99.73,22.69C100.08,21.45 100.43,20.22 100.78,18.99C100.83,18.81 100.92,18.61 100.94,18.43C100.96,18.27 100.85,18.2 100.75,18.09C100.56,17.89 100.36,17.69 100.17,17.5C99.79,17.1 99.41,16.7 99.03,16.3C98.28,15.52 97.53,14.74 96.78,13.95C93.77,10.82 90.76,7.68 87.76,4.55C87.01,3.77 86.27,2.99 85.52,2.21C85.16,1.84 84.82,1.46 84.46,1.09C84.18,0.79 83.89,0.42 83.51,0.23C82.84,-0.11 82.03,0.01 81.32,0.07C80.3,0.15 79.3,0.35 78.31,0.58C74.26,1.53 70.11,2.49 65.93,1.86C64.92,1.71 63.95,1.44 62.97,1.15C62.03,0.86 61.09,0.58 60.11,0.47C58.72,0.32 56.51,0.63 56.44,2.42C56.41,3.04 56.71,3.63 57.3,3.88C57.5,3.96 57.63,3.63 57.44,3.53C56.69,3.11 55.82,2.91 54.96,3C54.28,3.07 53.54,3.31 53.12,3.88C52.75,4.37 52.71,5.06 53.1,5.56C53.48,6.04 54.09,6.29 54.65,6.5L54.75,6.14C54.27,5.99 53.77,6.24 53.53,6.67C53.28,7.13 53.32,7.7 53.51,8.18C53.7,8.65 54.02,9.02 54.49,9.23C55,9.46 55.55,9.56 56.1,9.63L56.01,9.28C55.91,9.33 55.88,9.46 55.85,9.55C55.78,9.73 55.73,9.91 55.67,10.1C55.57,10.42 55.48,10.76 55.36,11.08C55.11,11.78 54.84,12.47 54.6,13.17C54.35,13.9 54.1,14.64 53.84,15.38C52.8,18.38 51.72,21.38 50.63,24.36C50,26.06 49.37,27.75 48.72,29.45C48.64,29.68 49.01,29.78 49.09,29.55C50.2,26.62 51.29,23.69 52.34,20.75C52.87,19.29 53.39,17.82 53.9,16.35C54.41,14.91 54.86,13.43 55.41,12.01C55.6,11.52 55.78,11.05 55.93,10.55C56,10.33 56.06,10.12 56.13,9.9C56.16,9.82 56.19,9.73 56.22,9.65C56.26,9.54 56.29,9.56 56.2,9.61C56.39,9.51 56.27,9.27 56.1,9.25C55.35,9.16 54.41,9.01 53.99,8.3C53.8,7.97 53.68,7.57 53.75,7.19C53.82,6.76 54.18,6.37 54.65,6.5C54.89,6.57 54.98,6.22 54.75,6.14C54.31,5.96 53.82,5.77 53.48,5.42C53.09,5.01 53.13,4.4 53.51,4C53.93,3.55 54.59,3.39 55.18,3.37C55.9,3.33 56.62,3.51 57.25,3.86L57.4,3.51C56.83,3.27 56.71,2.53 56.9,2.01C57.14,1.32 57.91,0.99 58.58,0.87C60.31,0.56 62.07,1.3 63.7,1.76C67.17,2.75 70.81,2.52 74.32,1.86C76.1,1.53 77.84,1.03 79.61,0.69C80.43,0.53 81.25,0.43 82.08,0.39C82.42,0.38 82.76,0.38 83.08,0.47C83.47,0.57 83.72,0.87 83.99,1.15C86.6,3.83 89.16,6.56 91.75,9.26C94.37,12 97,14.73 99.62,17.47C99.95,17.81 100.29,18.16 100.62,18.51L100.57,18.32C100.35,19.09 100.14,19.86 99.92,20.62C99.4,22.46 98.88,24.3 98.36,26.14C97.72,28.37 97.09,30.6 96.46,32.82C95.92,34.75 95.37,36.68 94.83,38.6C94.65,39.24 94.47,39.87 94.29,40.51C94.23,40.71 94.17,40.91 94.12,41.1C94.09,41.2 94.04,41.32 94.03,41.42C94.03,41.43 94.02,41.44 94.02,41.46L94.15,41.32C93.19,41.45 92.23,41.58 91.26,41.71C88.97,42.02 86.68,42.33 84.39,42.64C81.62,43.01 78.85,43.38 76.08,43.75C73.68,44.08 71.28,44.4 68.88,44.72L66.5,45.04C66.14,45.09 65.73,45.1 65.38,45.19C65.37,45.2 65.35,45.2 65.33,45.2L65.52,45.25C64.97,44.72 64.43,44.2 63.88,43.67C62.57,42.4 61.25,41.14 59.94,39.87C58.36,38.35 56.78,36.82 55.2,35.29C53.82,33.97 52.45,32.65 51.08,31.32C50.62,30.89 50.17,30.45 49.72,30.02C49.51,29.81 49.3,29.58 49.07,29.39C49.06,29.38 49.05,29.37 49.04,29.36C48.87,29.19 48.6,29.46 48.77,29.63Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M55.88,9.64C56.63,9.73 57.41,9.52 58.02,9.06C58.1,9 58.14,8.9 58.09,8.8C58.04,8.72 57.91,8.67 57.82,8.73C57.27,9.15 56.57,9.34 55.88,9.25C55.78,9.24 55.69,9.35 55.69,9.44C55.69,9.56 55.78,9.62 55.88,9.64Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M59.69,21.78C59.98,21.16 60.69,20.86 61.3,20.66C61.99,20.43 62.77,20.39 63.38,20.84C63.58,20.99 63.77,20.66 63.57,20.51C62.89,20.01 61.98,20.04 61.2,20.29C60.49,20.52 59.7,20.88 59.36,21.59C59.26,21.81 59.59,22 59.69,21.78Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M61.21,24.04C61.79,23.5 62.67,23.36 63.4,23.66C63.49,23.7 63.61,23.62 63.63,23.52C63.66,23.42 63.59,23.33 63.5,23.29C62.64,22.94 61.62,23.15 60.94,23.77C60.76,23.94 61.03,24.21 61.21,24.04Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M55.85,25.5C55.94,25.62 55.89,25.83 55.84,25.95C55.78,26.11 55.69,26.23 55.54,26.31C55.12,26.55 54.63,26.64 54.15,26.64C53.94,26.64 53.67,26.63 53.54,26.42C53.45,26.27 53.46,26.05 53.53,25.89C53.68,25.57 54.04,25.43 54.36,25.34C54.59,25.28 54.82,25.24 55.06,25.25C55.31,25.26 55.67,25.31 55.85,25.5C56.01,25.67 56.28,25.4 56.12,25.23C55.9,25 55.53,24.91 55.22,24.88C54.93,24.85 54.62,24.88 54.33,24.95C53.89,25.06 53.4,25.27 53.2,25.71C53.08,25.95 53.06,26.24 53.16,26.5C53.28,26.82 53.57,26.97 53.9,27C54.5,27.07 55.17,26.95 55.7,26.66C56.18,26.41 56.48,25.69 56.12,25.23C56.05,25.14 55.91,25.16 55.85,25.23C55.76,25.31 55.78,25.41 55.85,25.5Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M54.53,25.88C54.61,26.22 54.48,26.75 54.05,26.73C53.62,26.72 53.24,26.44 53.4,25.97C53.45,25.81 53.55,25.67 53.69,25.57C53.9,25.42 54.24,25.39 54.42,25.62C54.48,25.7 54.51,25.79 54.53,25.88Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M54.35,25.93C54.35,25.94 54.35,25.96 54.35,25.97C54.36,26.01 54.35,25.98 54.35,25.97C54.35,25.97 54.36,26.03 54.36,26.04C54.36,26.06 54.36,26.09 54.36,26.11C54.36,26.13 54.36,26.18 54.35,26.2L54.36,26.18C54.35,26.18 54.35,26.19 54.35,26.2C54.35,26.22 54.35,26.23 54.34,26.24C54.34,26.26 54.33,26.28 54.33,26.3C54.32,26.32 54.32,26.33 54.31,26.34L54.31,26.35C54.3,26.37 54.3,26.37 54.31,26.34C54.32,26.36 54.28,26.41 54.27,26.42C54.27,26.42 54.25,26.45 54.25,26.45C54.25,26.45 54.28,26.42 54.26,26.44C54.24,26.46 54.23,26.48 54.21,26.5C54.18,26.52 54.25,26.47 54.21,26.5C54.2,26.5 54.19,26.51 54.18,26.51C54.18,26.52 54.15,26.53 54.15,26.53C54.15,26.53 54.19,26.51 54.15,26.53C54.13,26.53 54.12,26.53 54.11,26.54C54.06,26.55 54.15,26.54 54.11,26.54C54.08,26.54 54.05,26.54 54.02,26.54C54,26.54 53.93,26.52 53.98,26.54C53.94,26.53 53.91,26.52 53.87,26.51C53.85,26.51 53.82,26.5 53.79,26.49C53.75,26.47 53.81,26.5 53.79,26.49C53.78,26.48 53.77,26.48 53.76,26.47C53.73,26.46 53.71,26.44 53.69,26.43C53.68,26.42 53.64,26.39 53.68,26.42C53.67,26.41 53.65,26.4 53.64,26.39C53.63,26.38 53.59,26.33 53.62,26.37C53.6,26.35 53.59,26.33 53.58,26.3C53.57,26.29 53.56,26.25 53.58,26.3C53.57,26.29 53.57,26.27 53.56,26.26C53.56,26.25 53.56,26.24 53.55,26.23C53.54,26.18 53.55,26.26 53.55,26.22C53.55,26.19 53.55,26.16 53.55,26.13C53.56,26.08 53.54,26.17 53.55,26.12C53.56,26.1 53.56,26.08 53.57,26.07C53.57,26.04 53.58,26.01 53.59,25.98C53.58,26.02 53.6,25.96 53.6,25.96C53.62,25.94 53.63,25.92 53.64,25.9C53.67,25.85 53.69,25.82 53.75,25.77C53.75,25.76 53.8,25.73 53.77,25.75C53.78,25.74 53.8,25.73 53.81,25.72C53.84,25.7 53.87,25.69 53.9,25.67C53.9,25.67 53.87,25.68 53.9,25.67C53.92,25.67 53.94,25.66 53.96,25.66C53.97,25.65 53.99,25.65 54,25.65C54.02,25.64 54.02,25.64 54,25.65C54.01,25.65 54.01,25.65 54.02,25.64C54.05,25.64 54.08,25.64 54.11,25.65C54.06,25.64 54.11,25.65 54.12,25.65C54.14,25.65 54.16,25.66 54.18,25.67C54.22,25.68 54.15,25.64 54.19,25.67C54.2,25.68 54.22,25.69 54.24,25.7C54.2,25.68 54.23,25.7 54.24,25.7C54.25,25.72 54.26,25.73 54.27,25.74C54.25,25.71 54.28,25.76 54.29,25.77C54.29,25.77 54.32,25.83 54.31,25.81C54.33,25.85 54.34,25.89 54.35,25.93C54.37,26.03 54.49,26.1 54.58,26.07C54.68,26.03 54.74,25.94 54.71,25.83C54.67,25.64 54.57,25.45 54.4,25.35C54.24,25.26 54.06,25.25 53.88,25.28C53.53,25.36 53.24,25.69 53.18,26.04C53.16,26.21 53.17,26.38 53.27,26.53C53.35,26.66 53.47,26.76 53.6,26.82C53.89,26.95 54.27,26.99 54.51,26.74C54.73,26.51 54.78,26.14 54.71,25.83C54.69,25.73 54.57,25.67 54.48,25.7C54.38,25.73 54.32,25.83 54.35,25.93Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M46.5,36.54C43.49,35.87 41.03,32.89 41.19,29.77C41.28,27.77 42.27,25.93 44.22,25.21C45.56,24.71 47.14,24.89 48.33,25.68C49.76,26.61 50.56,28.28 50.94,29.95C51.2,31.13 51.29,32.36 51,33.53C50.66,34.88 49.73,36.42 48.23,36.67C47.96,36.71 47.69,36.69 47.41,36.68C47.1,36.66 46.8,36.61 46.5,36.54Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M47.99,35.82C48.95,37.23 49.77,38.73 50.46,40.29C50.66,40.75 51,41.49 51.64,41.15C52.3,40.81 51.67,39.82 51.48,39.37C50.8,37.79 50.07,36.22 49.27,34.69"
|
||||
android:fillColor="#3B1954"/>
|
||||
<path
|
||||
android:pathData="M48.61,38.43C49.11,38.59 49.64,38.68 50.17,38.68C50.6,38.68 51.14,38.49 51.55,38.55C51.64,38.56 51.72,38.62 51.78,38.69C52.04,38.99 51.97,39.52 51.64,39.74C52.44,39.39 52.74,40.45 52.36,40.98C52.63,40.98 52.89,41.16 53,41.41C53.11,41.66 53.05,41.97 52.87,42.17C53.17,42.28 53.35,42.62 53.33,42.93C53.27,43.96 51.62,44.37 50.83,44.13"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M48.56,38.61C48.95,38.74 49.34,38.82 49.75,38.85C50.12,38.88 50.47,38.85 50.84,38.79C51.1,38.74 51.55,38.61 51.7,38.9C51.81,39.12 51.75,39.43 51.54,39.57C51.38,39.69 51.48,40.01 51.69,39.92C51.94,39.82 52.17,39.86 52.28,40.13C52.38,40.37 52.35,40.67 52.2,40.88C52.12,41.01 52.23,41.16 52.37,41.17C52.8,41.19 53.02,41.7 52.74,42.03C52.67,42.11 52.65,42.28 52.78,42.33C53.1,42.47 53.23,42.85 53.09,43.17C52.98,43.42 52.76,43.6 52.53,43.72C52.05,43.98 51.41,44.1 50.88,43.95C50.64,43.88 50.54,44.25 50.78,44.32C51.45,44.5 52.29,44.34 52.87,43.96C53.16,43.77 53.41,43.5 53.5,43.15C53.6,42.7 53.41,42.19 52.97,42L53.01,42.3C53.24,42.03 53.32,41.65 53.17,41.31C53.03,41 52.71,40.81 52.37,40.79L52.53,41.08C52.76,40.74 52.77,40.28 52.6,39.92C52.41,39.52 51.99,39.39 51.59,39.55L51.74,39.9C52.33,39.49 52.25,38.37 51.41,38.35C50.99,38.34 50.59,38.49 50.17,38.49C49.66,38.49 49.15,38.4 48.66,38.25C48.43,38.17 48.33,38.54 48.56,38.61Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M55.8,45.74C56.01,47.87 56.04,50.01 55.89,52.15C55.87,52.39 56.26,52.39 56.27,52.15C56.42,50.01 56.39,47.87 56.18,45.74C56.16,45.5 55.77,45.5 55.8,45.74Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M51.6,38.26C51.55,38.24 51.52,38.2 51.49,38.15C51.48,38.13 51.47,38.12 51.46,38.1C51.45,38.09 51.44,38.06 51.45,38.08C51.43,38.04 51.42,38 51.41,37.97C51.39,37.88 51.39,37.82 51.39,37.73C51.39,37.69 51.4,37.67 51.41,37.63C51.41,37.61 51.42,37.59 51.42,37.56C51.44,37.5 51.41,37.58 51.44,37.54C51.45,37.5 51.47,37.47 51.49,37.44C51.5,37.43 51.5,37.43 51.49,37.44C51.49,37.44 51.5,37.43 51.51,37.42C51.52,37.41 51.53,37.4 51.54,37.39C51.55,37.38 51.57,37.36 51.58,37.35C51.56,37.37 51.61,37.34 51.61,37.34C51.62,37.33 51.64,37.32 51.66,37.31C51.63,37.32 51.68,37.3 51.69,37.3C51.76,37.28 51.83,37.28 51.91,37.29C51.98,37.3 52.08,37.33 52.16,37.35C52.26,37.37 52.37,37.31 52.39,37.21C52.42,37.11 52.36,37 52.26,36.98C52.03,36.92 51.78,36.86 51.54,36.95C51.35,37.02 51.19,37.17 51.1,37.36C50.91,37.76 51.01,38.36 51.41,38.59C51.62,38.72 51.81,38.39 51.6,38.26Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M92.08,30.35C95.11,31.94 97.97,33.87 100.58,36.09C100.73,36.22 100.89,36.36 100.97,36.55C101.05,36.72 101.05,36.92 101.05,37.11C101.03,40.84 100.73,44.6 101.22,48.31C101.35,49.27 101.53,50.23 101.81,51.16C102.1,52.13 102.24,53.19 102.5,54.18C102.65,54.76 102.8,55.35 103.08,55.88C103.15,55.99 103.22,56.11 103.34,56.18C104.16,56.68 104.18,55.18 104.26,54.8C104.65,55.55 105.17,56.33 105.98,56.57C106.05,56.59 106.12,56.61 106.19,56.59C106.31,56.56 106.38,56.43 106.42,56.31C106.54,55.94 106.52,55.52 106.37,55.16C106.54,55.38 106.75,55.57 107.01,55.67C107.27,55.76 107.58,55.73 107.8,55.56C107.97,55.41 108.06,55.17 108.06,54.94C108.07,54.7 107.99,54.48 107.9,54.26C108.1,54.51 108.35,54.78 108.67,54.79C108.92,54.8 109.15,54.63 109.24,54.4C109.33,54.17 109.27,53.89 109.11,53.71C109.28,53.9 109.57,53.95 109.81,53.85C110.05,53.76 110.22,53.54 110.31,53.31C110.4,53.05 110.4,52.76 110.3,52.5C110.18,52.19 109.94,51.94 109.7,51.7C109.49,51.49 109.28,51.27 109.05,51.08C108.73,50.81 108.39,50.58 108.1,50.29C107.45,49.6 107.67,48.83 107.77,47.97C107.88,47.04 108.01,46.11 108.14,45.18C108.41,43.33 108.67,41.48 108.71,39.61C108.73,38.74 108.69,37.86 108.59,37C108.19,33.52 106.92,30.1 104.68,27.41C102.25,24.47 98.84,22.54 95.41,20.88"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M91.98,30.52C94.01,31.59 95.97,32.8 97.82,34.16C98.74,34.83 99.65,35.53 100.5,36.28C100.74,36.48 100.85,36.67 100.86,36.99C100.86,37.28 100.85,37.58 100.85,37.88C100.84,38.5 100.82,39.12 100.81,39.74C100.75,42.21 100.67,44.69 100.9,47.16C101.01,48.35 101.18,49.54 101.47,50.69C101.62,51.26 101.79,51.82 101.91,52.39C102.03,52.96 102.13,53.54 102.28,54.11C102.41,54.65 102.56,55.2 102.79,55.72C102.95,56.08 103.2,56.49 103.66,56.47C104.26,56.44 104.34,55.57 104.4,55.13C104.42,55.02 104.42,54.95 104.44,54.85L104.09,54.9C104.45,55.58 104.91,56.31 105.63,56.65C105.99,56.81 106.38,56.88 106.56,56.45C106.74,56.03 106.71,55.53 106.55,55.11L106.23,55.29C106.59,55.75 107.19,56.1 107.76,55.81C108.39,55.49 108.3,54.7 108.06,54.17L107.76,54.4C108.08,54.79 108.55,55.18 109.07,54.88C109.55,54.6 109.57,53.98 109.25,53.57L108.97,53.84C109.4,54.29 110.09,54.07 110.38,53.59C110.74,52.98 110.52,52.31 110.08,51.82C109.62,51.3 109.08,50.89 108.55,50.44C108.31,50.24 108.07,50.02 107.95,49.73C107.84,49.47 107.83,49.19 107.85,48.91C107.89,48.24 108,47.56 108.09,46.89C108.19,46.12 108.31,45.35 108.42,44.58C108.63,43.07 108.83,41.55 108.89,40.03C108.99,37.23 108.53,34.41 107.49,31.8C106.5,29.36 105,27.18 103.03,25.43C101.04,23.66 98.73,22.33 96.37,21.14C96.08,21 95.79,20.85 95.5,20.71C95.28,20.61 95.09,20.93 95.31,21.04C97.59,22.15 99.86,23.37 101.86,24.95C102.86,25.73 103.78,26.61 104.58,27.59C105.39,28.57 106.07,29.65 106.62,30.79C107.77,33.14 108.4,35.76 108.5,38.37C108.62,41.34 108.04,44.27 107.67,47.2C107.62,47.55 107.59,47.9 107.54,48.25C107.5,48.52 107.46,48.79 107.46,49.07C107.45,49.65 107.66,50.15 108.1,50.55C108.34,50.78 108.61,50.96 108.86,51.17C109.13,51.39 109.37,51.63 109.61,51.88C109.82,52.1 110.06,52.34 110.14,52.64C110.23,52.95 110.17,53.31 109.94,53.54C109.75,53.73 109.44,53.78 109.25,53.57C109.07,53.39 108.83,53.65 108.97,53.84C109.17,54.09 109.11,54.49 108.78,54.59C108.47,54.68 108.2,54.34 108.03,54.13C107.88,53.95 107.65,54.18 107.73,54.36C107.89,54.72 108,55.32 107.52,55.5C107.11,55.64 106.74,55.32 106.5,55.02C106.39,54.88 106.11,55.04 106.18,55.21C106.31,55.54 106.35,55.92 106.23,56.26C106.21,56.31 106.19,56.39 106.14,56.41C106.08,56.43 105.96,56.37 105.9,56.35C105.76,56.3 105.63,56.22 105.51,56.14C105.02,55.79 104.7,55.23 104.42,54.7C104.35,54.57 104.1,54.59 104.07,54.75C104.03,54.98 104.01,55.22 103.97,55.45C103.93,55.64 103.89,55.97 103.71,56.07C103.63,56.11 103.53,56.08 103.45,56.03C103.23,55.9 103.12,55.55 103.04,55.33C102.84,54.82 102.7,54.28 102.58,53.75C102.45,53.19 102.35,52.62 102.23,52.06C102.11,51.51 101.94,50.97 101.8,50.42C101.52,49.28 101.36,48.1 101.26,46.92C101.06,44.52 101.13,42.11 101.19,39.7C101.21,39.1 101.22,38.49 101.23,37.88C101.23,37.59 101.24,37.31 101.24,37.02C101.24,36.76 101.19,36.5 101.04,36.29C100.89,36.08 100.68,35.93 100.49,35.77C100.27,35.58 100.05,35.41 99.83,35.23C99.41,34.88 98.98,34.55 98.54,34.22C96.76,32.87 94.88,31.66 92.92,30.59C92.67,30.45 92.42,30.32 92.17,30.19C91.95,30.08 91.76,30.41 91.98,30.52Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M48.3,27.64C47.5,26.38 45.86,25.66 44.42,26.2C43.3,26.61 42.64,27.67 42.43,28.8C42.32,29.38 42.31,29.98 42.4,30.57C42.49,31.19 42.71,31.76 43,32.31C43.67,33.61 44.73,34.84 46.1,35.43C46.87,35.77 47.73,35.88 48.55,35.69C49.46,35.47 49.9,34.63 50.04,33.77C50.07,33.53 49.71,33.43 49.67,33.67C49.56,34.34 49.27,35.08 48.56,35.29C47.89,35.49 47.16,35.42 46.52,35.19C45.24,34.74 44.23,33.65 43.55,32.51C43.25,32.01 42.98,31.47 42.84,30.89C42.72,30.38 42.69,29.84 42.74,29.32C42.83,28.33 43.26,27.28 44.15,26.75C45.47,25.97 47.18,26.59 47.97,27.83C48.1,28.04 48.43,27.85 48.3,27.64Z"
|
||||
android:fillColor="#3B1954"/>
|
||||
<path
|
||||
android:pathData="M48.74,29.14C49.11,29.81 49.38,30.54 49.54,31.29C49.59,31.53 49.96,31.43 49.91,31.19C49.74,30.41 49.46,29.65 49.07,28.94C48.96,28.73 48.63,28.92 48.74,29.14Z"
|
||||
android:fillColor="#3B1954"/>
|
||||
<path
|
||||
android:pathData="M43.62,30.27C43.45,30.14 43.44,29.59 43.43,29.44C43.42,29.09 43.48,28.74 43.57,28.4C43.64,28.17 43.88,27.92 44.06,27.76C44.21,27.62 44.44,27.47 44.65,27.57C44.69,27.59 44.72,27.62 44.74,27.66C44.83,27.8 44.8,27.99 44.72,28.13C44.64,28.27 44.52,28.39 44.41,28.51C44.32,28.61 44.24,28.72 44.17,28.84C44,29.11 43.89,29.42 43.83,29.74C43.81,29.87 43.83,29.99 43.83,30.12C43.84,30.21 43.83,30.3 43.72,30.31C43.68,30.31 43.65,30.3 43.62,30.27Z"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M43.76,30.14C43.69,30.08 43.67,29.93 43.65,29.83C43.64,29.71 43.63,29.59 43.63,29.47C43.62,29.26 43.63,29.05 43.67,28.84C43.71,28.63 43.75,28.43 43.87,28.25C43.97,28.11 44.1,27.98 44.23,27.87C44.32,27.79 44.58,27.62 44.6,27.84C44.62,28.02 44.45,28.18 44.34,28.31C44.19,28.47 44.06,28.65 43.95,28.84C43.83,29.06 43.74,29.29 43.69,29.52C43.66,29.64 43.63,29.76 43.63,29.88C43.63,29.94 43.64,30.01 43.64,30.07C43.64,30.09 43.64,30.12 43.65,30.13C43.65,30.14 43.65,30.15 43.65,30.16C43.65,30.19 43.67,30.18 43.72,30.11C43.51,29.98 43.32,30.31 43.53,30.44C43.77,30.59 44.02,30.41 44.03,30.15C44.03,30.01 44,29.88 44.03,29.74C44.05,29.6 44.09,29.46 44.15,29.32C44.25,29.05 44.41,28.8 44.61,28.58C44.79,28.38 44.97,28.17 44.98,27.89C45,27.63 44.84,27.38 44.56,27.35C44.3,27.32 44.07,27.49 43.89,27.66C43.71,27.83 43.53,28.03 43.43,28.26C43.31,28.53 43.27,28.86 43.25,29.15C43.23,29.37 43.24,29.59 43.27,29.81C43.3,30.01 43.33,30.26 43.49,30.41C43.67,30.57 43.94,30.31 43.76,30.14Z"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M29.6,28.68C32.69,28.14 35.78,27.64 38.89,27.2C39.66,27.09 40.43,26.99 41.21,26.89C41.31,26.88 41.4,26.81 41.4,26.7C41.4,26.61 41.31,26.5 41.21,26.51C38.19,26.89 35.18,27.35 32.18,27.85C31.28,28 30.39,28.16 29.5,28.32C29.26,28.36 29.36,28.73 29.6,28.68Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M24.58,29.63C25.39,29.47 26.2,29.31 27,29.16C27.25,29.11 27.14,28.74 26.9,28.79C26.09,28.94 25.29,29.1 24.48,29.26C24.24,29.31 24.34,29.68 24.58,29.63Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M30.33,54.79C29.72,55.41 29.11,56.02 28.5,56.63C28.33,56.81 28.6,57.08 28.77,56.9C29.38,56.29 29.99,55.68 30.6,55.06C30.77,54.89 30.5,54.62 30.33,54.79Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M46.13,37.11C44.42,39.21 42.68,41.29 40.9,43.33C39.13,45.38 37.32,47.4 35.48,49.39C34.45,50.5 33.41,51.61 32.36,52.7C32.19,52.88 32.46,53.15 32.63,52.97C34.5,51.02 36.35,49.03 38.16,47.02C39.97,45 41.75,42.96 43.49,40.89C44.47,39.73 45.44,38.56 46.4,37.38C46.55,37.19 46.28,36.92 46.13,37.11Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M37.13,35.29C38.09,35.01 39.04,34.73 40,34.45C40.24,34.38 40.14,34.02 39.9,34.08C38.94,34.37 37.98,34.65 37.02,34.93C36.79,34.99 36.89,35.36 37.13,35.29Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M39.65,23.45C40.05,23.67 40.46,23.88 40.87,24.1C40.96,24.15 41.08,24.13 41.13,24.03C41.18,23.94 41.15,23.82 41.06,23.77C40.65,23.56 40.25,23.34 39.84,23.13C39.75,23.08 39.63,23.1 39.58,23.19C39.53,23.28 39.55,23.4 39.65,23.45Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M46.02,41.25L45.74,42.33C45.71,42.42 45.77,42.54 45.87,42.56C45.97,42.58 46.08,42.53 46.11,42.43L46.39,41.35C46.42,41.25 46.36,41.14 46.26,41.12C46.16,41.09 46.05,41.15 46.02,41.25Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M56.98,3.68C57.44,4.04 58.03,4.23 58.61,4.15C58.71,4.14 58.8,4.07 58.8,3.96C58.8,3.87 58.71,3.76 58.61,3.77C58.13,3.83 57.63,3.72 57.25,3.41C57.17,3.35 57.06,3.33 56.98,3.41C56.91,3.48 56.9,3.62 56.98,3.68Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M54.44,6.41C54.84,6.6 55.31,6.64 55.73,6.48C55.82,6.44 55.9,6.35 55.86,6.25C55.83,6.16 55.73,6.07 55.63,6.11C55.54,6.15 55.45,6.17 55.35,6.19C55.29,6.2 55.39,6.19 55.32,6.19C55.3,6.19 55.27,6.2 55.25,6.2C55.2,6.2 55.16,6.2 55.11,6.2C55.09,6.2 55.07,6.2 55.05,6.19C55.04,6.19 54.98,6.19 55.01,6.19C54.97,6.18 54.92,6.18 54.88,6.16C54.84,6.15 54.79,6.14 54.75,6.13C54.74,6.12 54.68,6.1 54.71,6.11C54.68,6.1 54.66,6.09 54.64,6.08C54.55,6.03 54.43,6.05 54.38,6.14C54.33,6.23 54.35,6.36 54.44,6.41Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M81.12,45.52C82.34,46.66 84.04,47.23 85.7,47.08C86.18,47.04 86.65,46.94 87.1,46.78C87.33,46.7 87.23,46.33 87,46.42C85.09,47.08 82.87,46.63 81.39,45.25C81.21,45.08 80.94,45.35 81.12,45.52Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M83.83,47.03C84.87,50.19 86.18,53.27 87.73,56.21C89.28,59.15 91.08,61.96 93.09,64.6C94.23,66.09 95.43,67.52 96.7,68.9C96.86,69.08 97.13,68.81 96.97,68.63C94.72,66.2 92.68,63.58 90.88,60.81C89.08,58.06 87.51,55.16 86.19,52.15C85.45,50.44 84.78,48.7 84.2,46.93C84.12,46.7 83.75,46.8 83.83,47.03Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M69.23,70.68C69.92,67.91 70.7,65.15 71.58,62.43C72.46,59.7 73.43,57.01 74.48,54.35C75.07,52.85 75.7,51.37 76.34,49.9C76.44,49.68 76.11,49.48 76.02,49.71C74.85,52.34 73.78,55.01 72.79,57.72C71.81,60.41 70.92,63.13 70.13,65.88C69.67,67.44 69.25,69.01 68.86,70.58C68.8,70.82 69.17,70.92 69.23,70.68Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M44.05,77.03C43.28,76.62 42.68,75.93 42.38,75.11C42.24,74.71 42.12,74.21 42.21,73.78C42.3,73.36 42.7,73.17 43.1,73.19C43.64,73.21 44.09,73.62 44.47,73.96C44.63,74.1 44.89,73.92 44.77,73.73C44.12,72.69 44.22,71.3 44.94,70.32C45.11,70.08 45.33,69.86 45.58,69.7C45.83,69.54 46.23,69.38 46.47,69.63C46.6,69.76 46.65,69.95 46.7,70.11C46.77,70.32 46.83,70.53 46.89,70.74C46.99,71.15 47.07,71.56 47.13,71.97C47.26,72.92 47.26,73.88 47.14,74.83C47.11,75.06 47.44,75.07 47.51,74.88C47.69,74.41 47.91,73.91 48.3,73.57C48.61,73.3 49.09,73.16 49.49,73.31C49.96,73.5 50.06,74.07 50,74.52C49.93,75 49.67,75.45 49.29,75.74L49.55,76C49.98,75.35 50.99,75.53 51.54,75.9C51.86,76.11 52.14,76.45 52.14,76.84C52.13,77.18 51.95,77.52 51.61,77.6L51.79,77.92C52.17,77.5 53.07,77.71 53.15,78.31C53.17,78.55 53.56,78.55 53.53,78.31C53.42,77.41 52.14,76.95 51.52,77.65C51.4,77.79 51.52,78.02 51.71,77.97C52.49,77.78 52.7,76.8 52.32,76.17C51.92,75.49 51.03,75.11 50.26,75.2C49.84,75.25 49.46,75.44 49.22,75.8C49.12,75.96 49.33,76.18 49.48,76.07C50.23,75.5 50.66,74.41 50.23,73.52C49.81,72.63 48.62,72.76 47.99,73.34C47.58,73.72 47.34,74.26 47.15,74.78L47.52,74.83C47.64,73.88 47.64,72.92 47.51,71.98C47.45,71.51 47.36,71.04 47.24,70.58C47.18,70.37 47.12,70.16 47.05,69.96C46.98,69.74 46.9,69.53 46.74,69.36C46.17,68.78 45.28,69.36 44.85,69.82C44.38,70.33 44.09,70.99 43.99,71.68C43.88,72.45 44.02,73.25 44.44,73.92L44.74,73.69C44.33,73.32 43.87,72.92 43.31,72.83C42.84,72.75 42.32,72.87 42.03,73.26C41.7,73.7 41.78,74.33 41.9,74.82C42.02,75.32 42.24,75.8 42.55,76.21C42.9,76.69 43.34,77.08 43.86,77.36C44.08,77.47 44.27,77.14 44.05,77.03Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M110.32,77C110.01,76.6 109.79,76.15 109.69,75.65C109.59,75.21 109.56,74.72 109.71,74.29C109.83,73.92 110.16,73.59 110.57,73.8C111.03,74.05 111.1,74.63 111.16,75.1L111.53,75C111.38,74.14 111.81,73.22 112.54,72.77C112.71,72.67 112.97,72.51 113.06,72.76C113.15,73 113.16,73.3 113.16,73.56C113.17,74.1 113.05,74.64 112.82,75.13C112.74,75.29 112.86,75.43 113.03,75.41C113.36,75.36 113.69,75.21 114.03,75.2C114.31,75.19 114.57,75.31 114.77,75.5C115.17,75.92 115.1,76.58 114.67,76.94L114.94,77.21C115.14,76.97 115.47,76.86 115.77,76.96C116.07,77.07 116.26,77.37 116.26,77.68C116.26,77.93 116.65,77.93 116.65,77.68C116.64,77.21 116.36,76.78 115.92,76.61C115.49,76.45 114.97,76.59 114.67,76.94C114.51,77.13 114.75,77.37 114.94,77.21C115.5,76.73 115.57,75.87 115.1,75.3C114.87,75.03 114.53,74.86 114.17,74.82C113.75,74.78 113.35,74.98 112.93,75.04L113.14,75.32C113.37,74.84 113.51,74.33 113.54,73.81C113.55,73.55 113.54,73.29 113.5,73.04C113.47,72.81 113.44,72.55 113.27,72.38C112.92,72.04 112.39,72.38 112.09,72.62C111.75,72.89 111.49,73.25 111.33,73.65C111.13,74.11 111.08,74.61 111.16,75.1C111.21,75.34 111.56,75.23 111.53,75C111.47,74.53 111.38,74.02 111.03,73.68C110.72,73.38 110.27,73.25 109.88,73.46C109.13,73.87 109.16,75.02 109.31,75.73C109.43,76.26 109.66,76.76 109.99,77.19C110.05,77.27 110.15,77.32 110.25,77.26C110.33,77.21 110.38,77.08 110.32,77Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M53.67,23.28C53.89,22.94 54.18,22.66 54.52,22.45C54.85,22.24 55.28,22.04 55.68,22.11C56.47,22.25 56.84,23.24 56.99,23.92C57.18,24.75 57.15,25.62 57.2,26.46C57.22,26.89 57.25,27.34 57.36,27.75C57.45,28.13 57.65,28.49 58.01,28.67C58.39,28.86 58.82,28.74 59.08,28.42C59.4,28.03 59.39,27.51 59.35,27.04C59.33,26.79 58.95,26.79 58.97,27.04C59,27.44 59.05,27.92 58.74,28.23C58.45,28.52 58.05,28.34 57.87,28.03C57.66,27.67 57.64,27.2 57.6,26.79C57.57,26.37 57.56,25.95 57.55,25.53C57.51,24.71 57.46,23.87 57.14,23.11C56.86,22.44 56.33,21.71 55.52,21.72C55.07,21.72 54.61,21.93 54.25,22.17C53.88,22.41 53.58,22.72 53.34,23.08C53.2,23.29 53.53,23.48 53.67,23.28Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M58.9,30.55C59.04,31.03 59.53,31.31 60.01,31.37C60.47,31.42 60.95,31.29 61.34,31.03C62.23,30.42 62.49,29.28 62.45,28.26C62.44,28.01 62.06,28.01 62.07,28.26C62.1,29.09 61.94,30.06 61.25,30.62C60.95,30.86 60.57,31.01 60.18,31C59.83,30.99 59.38,30.82 59.27,30.45C59.2,30.21 58.83,30.31 58.9,30.55Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M62.03,28.42C62.08,28.38 62.14,28.34 62.19,28.31C62.22,28.3 62.24,28.28 62.27,28.27C62.28,28.26 62.3,28.26 62.31,28.25C62.33,28.24 62.33,28.24 62.3,28.25C62.31,28.25 62.32,28.25 62.33,28.24C62.38,28.22 62.44,28.2 62.5,28.19C62.53,28.18 62.57,28.17 62.6,28.17C62.61,28.17 62.62,28.17 62.62,28.16C62.64,28.16 62.64,28.16 62.61,28.17C62.62,28.17 62.64,28.16 62.66,28.16C62.71,28.16 62.76,28.14 62.79,28.11C62.83,28.07 62.85,28.02 62.85,27.97C62.84,27.88 62.76,27.77 62.66,27.78C62.36,27.81 62.07,27.91 61.84,28.09C61.79,28.12 61.76,28.15 61.75,28.2C61.74,28.25 61.74,28.31 61.77,28.35C61.82,28.43 61.94,28.48 62.03,28.42Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M91.31,8.53C89.3,6.43 87.29,4.34 85.28,2.24C84.75,1.69 84.24,1.1 83.68,0.58C83.12,0.05 82.05,0.21 81.32,0.26C79.9,0.37 78.53,0.73 77.16,1.05C72.93,2.07 68.47,2.79 64.25,1.71C62.53,1.27 60.84,0.54 59.07,0.62C58.25,0.67 57.37,0.93 56.89,1.6C56.45,2.22 56.55,3.22 57.17,3.61C56.39,3.21 55.47,3.08 54.61,3.24C53.93,3.38 53.23,3.76 53.05,4.43C52.77,5.51 53.86,5.99 54.7,6.32C54.4,6.21 54.05,6.33 53.83,6.57C53.62,6.81 53.53,7.14 53.54,7.46C53.56,7.97 53.84,8.61 54.28,8.9C54.75,9.21 55.43,9.35 55.99,9.43C56.27,9.39 56.56,9.33 56.83,9.26C58.35,8.87 59.74,8.12 61.12,7.36C62.64,6.53 64.16,5.7 65.68,4.87C65.19,7.36 67.37,9.75 69.82,10.41C71.38,10.83 73.15,10.78 74.42,11.77C75.46,12.59 75.92,13.92 76.33,15.17C75.99,13.63 77.08,11.96 78.59,11.54C80.11,11.11 81.84,11.89 82.64,13.24C83.44,14.6 83.33,16.4 82.47,17.72C87.54,20.11 93.62,19.72 98.55,22.38C98.85,22.54 99.16,22.72 99.48,22.88C99.88,21.47 100.75,18.38 100.75,18.38C99.75,17.33 98.75,16.29 97.75,15.24C95.6,13.01 93.46,10.77 91.31,8.53Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M91.44,8.39C89.33,6.19 87.19,4.01 85.11,1.78C84.89,1.54 84.67,1.31 84.44,1.07C84.2,0.82 83.97,0.54 83.69,0.33C83.27,0.03 82.72,-0.01 82.22,0.01C80.89,0.04 79.57,0.29 78.27,0.59C75.43,1.26 72.59,1.93 69.66,2.04C68.22,2.1 66.77,2.03 65.35,1.76C63.96,1.5 62.64,0.99 61.27,0.67C59.99,0.37 58.37,0.18 57.24,1C56.77,1.34 56.46,1.83 56.43,2.41C56.41,2.94 56.63,3.47 57.07,3.77L57.27,3.44C56.52,3.07 55.68,2.91 54.85,3.01C54.17,3.1 53.46,3.36 53.06,3.95C52.72,4.45 52.74,5.13 53.13,5.6C53.51,6.06 54.11,6.29 54.65,6.5L54.75,6.14C54.3,6 53.83,6.2 53.58,6.59C53.32,6.97 53.3,7.46 53.41,7.89C53.52,8.33 53.76,8.76 54.13,9.03C54.53,9.31 55.03,9.45 55.5,9.54C55.74,9.59 55.96,9.62 56.21,9.58C56.51,9.53 56.8,9.47 57.09,9.39C57.65,9.23 58.2,9.02 58.73,8.79C59.84,8.31 60.89,7.7 61.96,7.12C63.23,6.42 64.5,5.73 65.78,5.03L65.5,4.82C65.11,6.87 66.39,8.78 68.08,9.84C69.02,10.43 70.04,10.68 71.12,10.87C72.2,11.05 73.37,11.21 74.27,11.89C75.31,12.69 75.75,14.02 76.14,15.22C76.22,15.45 76.56,15.36 76.51,15.12C76.16,13.43 77.56,11.72 79.25,11.62C81.02,11.51 82.59,12.83 82.92,14.54C83.12,15.6 82.88,16.72 82.31,17.62C82.26,17.7 82.28,17.84 82.38,17.88C86.59,19.86 91.34,19.93 95.71,21.38C96.33,21.58 96.93,21.82 97.52,22.08C98.16,22.37 98.76,22.72 99.38,23.04C99.49,23.1 99.63,23.05 99.66,22.93C99.91,22.04 100.16,21.15 100.42,20.26C100.53,19.86 100.64,19.46 100.75,19.07C100.81,18.86 100.9,18.65 100.93,18.44C100.96,18.26 100.81,18.16 100.69,18.04C100.41,17.74 100.13,17.45 99.84,17.15C99.32,16.61 98.8,16.06 98.27,15.52C97.2,14.4 96.13,13.28 95.06,12.16C93.85,10.91 92.65,9.65 91.44,8.39C91.27,8.22 91,8.49 91.17,8.66C93.63,11.22 96.08,13.78 98.53,16.33C99.22,17.06 99.92,17.78 100.62,18.51L100.57,18.32C100.14,19.83 99.72,21.33 99.29,22.83L99.57,22.71C98.53,22.18 97.52,21.63 96.41,21.22C95.34,20.83 94.23,20.53 93.11,20.28C90.85,19.76 88.55,19.43 86.3,18.85C85.02,18.52 83.76,18.11 82.57,17.55L82.64,17.81C83.73,16.08 83.63,13.6 82.02,12.21C80.56,10.96 78.3,10.86 76.97,12.35C76.27,13.13 75.93,14.19 76.14,15.22L76.51,15.12C76.18,14.1 75.82,13.05 75.13,12.21C74.43,11.35 73.42,10.93 72.36,10.7C71.28,10.47 70.16,10.4 69.14,9.97C68.19,9.57 67.33,8.91 66.71,8.09C66.03,7.18 65.65,6.05 65.86,4.92C65.89,4.76 65.74,4.62 65.58,4.7C63.67,5.75 61.77,6.83 59.83,7.84C58.91,8.32 57.96,8.76 56.95,9.03C56.73,9.09 56.5,9.14 56.28,9.19C56.02,9.23 55.82,9.21 55.56,9.16C55.14,9.08 54.66,8.97 54.31,8.69C53.96,8.41 53.74,7.91 53.73,7.46C53.71,6.95 54.06,6.33 54.65,6.5C54.89,6.57 54.97,6.22 54.75,6.14C54.31,5.96 53.83,5.77 53.49,5.43C53.12,5.05 53.11,4.49 53.43,4.08C53.8,3.62 54.44,3.43 55.01,3.38C55.72,3.32 56.44,3.46 57.07,3.77C57.29,3.88 57.47,3.58 57.27,3.44C56.86,3.17 56.74,2.61 56.85,2.16C56.98,1.62 57.44,1.25 57.94,1.05C59.09,0.59 60.43,0.84 61.59,1.14C62.9,1.49 64.17,1.95 65.51,2.18C66.84,2.4 68.19,2.47 69.53,2.43C72.27,2.33 74.96,1.78 77.61,1.14C78.94,0.82 80.25,0.54 81.62,0.43C82.12,0.39 82.67,0.33 83.16,0.49C83.43,0.58 83.61,0.76 83.8,0.96C84.04,1.2 84.27,1.45 84.51,1.69C86.69,4.05 88.95,6.34 91.17,8.66C91.34,8.84 91.61,8.57 91.44,8.39Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M80.18,14.18C79.65,14.47 79.25,14.98 79.1,15.56C79.06,15.73 79.03,15.93 79.12,16.1C79.19,16.24 79.35,16.35 79.52,16.34C79.87,16.32 79.96,15.8 79.61,15.69C79.38,15.61 79.28,15.98 79.51,16.06C79.47,16.04 79.48,16.03 79.46,16.01L79.45,15.99C79.45,16.01 79.45,16.01 79.45,16C79.45,15.99 79.47,15.97 79.45,16C79.46,15.98 79.47,15.97 79.49,15.96C79.49,15.96 79.49,15.96 79.49,15.96C79.49,15.96 79.47,15.94 79.46,15.93C79.44,15.9 79.44,15.86 79.44,15.83C79.45,15.65 79.52,15.46 79.6,15.3C79.77,14.96 80.04,14.69 80.37,14.51C80.58,14.39 80.39,14.06 80.18,14.18Z"
|
||||
android:fillColor="#662D91"/>
|
||||
</vector>
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="75dp"
|
||||
android:height="64dp"
|
||||
android:viewportWidth="75"
|
||||
android:viewportHeight="64">
|
||||
<path
|
||||
android:pathData="M59.465,10.255C63.353,10.576 67.644,11.139 71.325,12.446C72.351,12.81 73.476,13.261 73.935,14.236C74.297,15.003 74.144,15.9 73.974,16.73C72.732,22.781 71.311,28.714 70.048,34.761C68.739,41.026 67.148,47.18 64.822,53.157C64.543,53.873 64.238,54.609 63.67,55.132C63.045,55.708 62.184,55.951 61.351,56.14C56.115,57.322 50.667,57.051 45.307,56.701C37.179,56.17 29.057,55.47 20.99,54.338C16.898,53.764 12.81,53.1 8.767,52.25C6.542,51.782 2.035,51.159 1.079,48.847C0.574,47.627 0.98,46.246 1.377,44.988C4.695,34.466 7.148,23.68 8.704,12.769C8.893,11.441 9.075,10.09 9.626,8.864C11.376,4.968 15.508,6.106 19.021,6.314C23.578,6.584 28.13,6.943 32.672,7.391C39.271,8.041 45.922,9.452 52.517,9.831C54.838,9.964 57.16,10.064 59.465,10.255Z"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M11.625,10.979C12.908,12.264 13.548,13.476 14.5,14.945C15.741,16.859 17.539,18.559 19.039,20.28C22.186,23.89 25.381,27.463 28.699,30.921C30.226,32.512 31.869,34.134 33.986,34.793C36.879,35.693 39.99,34.608 42.775,33.424C53.015,29.071 63.133,23.171 71.564,15.999"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M11.407,10.756C11.531,10.635 11.731,10.636 11.853,10.759C12.903,11.811 13.539,12.824 14.231,13.927C14.404,14.204 14.582,14.486 14.77,14.776C15.628,16.101 16.749,17.31 17.868,18.519C18.346,19.035 18.824,19.551 19.281,20.076C22.427,23.685 25.618,27.253 28.932,30.706C30.464,32.303 32.056,33.864 34.084,34.495C36.852,35.356 39.86,34.324 42.653,33.137C52.869,28.794 62.958,22.91 71.361,15.762C71.493,15.65 71.693,15.664 71.807,15.795C71.921,15.925 71.906,16.122 71.774,16.234C63.313,23.43 53.168,29.346 42.903,33.709C40.125,34.89 36.911,36.028 33.894,35.089C31.688,34.403 29.993,32.718 28.473,31.134C25.15,27.671 21.951,24.094 18.803,20.482C18.373,19.989 17.912,19.49 17.443,18.984C16.307,17.758 15.127,16.483 14.238,15.112L14.504,14.944L14.238,15.112C14.039,14.806 13.856,14.514 13.679,14.232C12.992,13.138 12.399,12.194 11.403,11.196C11.281,11.073 11.283,10.876 11.407,10.756Z"
|
||||
android:fillColor="#662D91"
|
||||
android:fillType="evenOdd"/>
|
||||
<path
|
||||
android:pathData="M48.167,31.514C51.828,36.477 55.168,41.669 58.156,47.053C58.99,48.555 59.796,50.071 60.575,51.601C60.775,51.995 61.375,51.649 61.174,51.255C58.382,45.77 55.235,40.462 51.755,35.373C50.785,33.954 49.788,32.552 48.766,31.168C48.506,30.815 47.903,31.157 48.167,31.514Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M5.061,46.634C8.078,43.61 11.31,40.776 14.646,38.098C15.519,37.397 16.402,36.709 17.302,36.043C17.656,35.781 17.31,35.186 16.952,35.451C13.488,38.017 10.198,40.83 7.048,43.762C6.208,44.544 5.38,45.338 4.57,46.15C4.256,46.464 4.746,46.949 5.061,46.634Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M34.757,25.321C36.373,24.654 38.474,25.641 39.143,27.188C39.54,28.107 39.599,29.244 38.998,30.048C38.813,30.295 38.574,30.5 38.314,30.669C37.514,31.19 36.492,31.367 35.56,31.146C32.907,30.52 31.94,26.483 34.757,25.321Z"
|
||||
android:fillColor="#662D91"/>
|
||||
</vector>
|
||||
|
|
@ -0,0 +1,213 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="65dp"
|
||||
android:height="64dp"
|
||||
android:viewportWidth="65"
|
||||
android:viewportHeight="64">
|
||||
<path
|
||||
android:pathData="M32.347,5.767C32.075,5.763 31.906,5.415 32.006,5.162C32.106,4.909 32.384,4.766 32.654,4.733C32.394,4.652 32.428,4.225 32.662,4.084C32.895,3.943 33.195,4.007 33.454,4.093C33.383,3.873 33.311,3.648 33.324,3.417C33.336,3.186 33.45,2.946 33.661,2.851C33.865,2.759 34.112,2.823 34.292,2.956C34.472,3.088 34.599,3.279 34.723,3.465C34.556,3.073 35.024,2.619 35.438,2.719C35.853,2.819 36.086,3.311 36.003,3.729C36.015,3.241 36.603,2.883 37.06,3.058C37.516,3.232 37.727,3.837 37.522,4.28C37.64,3.884 38.113,3.618 38.5,3.765C38.886,3.911 39.053,4.474 38.778,4.783C39.006,4.626 39.265,4.462 39.537,4.507C39.81,4.552 40.008,4.939 39.793,5.113C40.141,4.966 40.615,4.848 40.84,5.152C40.903,5.236 40.932,5.341 40.939,5.446C40.968,5.873 40.639,6.259 40.248,6.433C39.858,6.608 39.417,6.617 38.989,6.623C37.66,6.642 36.33,6.661 35.001,6.68"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M32.343,5.589C32.174,5.576 32.115,5.339 32.174,5.208C32.264,5.009 32.499,4.933 32.697,4.904C32.89,4.876 32.839,4.617 32.697,4.562C32.583,4.518 32.666,4.306 32.727,4.252C32.899,4.098 33.215,4.203 33.403,4.264C33.529,4.305 33.661,4.172 33.621,4.046C33.528,3.756 33.351,3.223 33.706,3.025C34.071,2.821 34.4,3.305 34.566,3.555C34.67,3.712 34.963,3.617 34.89,3.418C34.778,3.113 35.133,2.805 35.43,2.902C35.737,3.002 35.879,3.384 35.828,3.682L36.176,3.729C36.199,3.35 36.664,3.085 37.008,3.228C37.36,3.374 37.511,3.852 37.365,4.19L37.689,4.326C37.787,4.031 38.16,3.796 38.463,3.943C38.706,4.061 38.829,4.438 38.649,4.657C38.531,4.8 38.684,5.058 38.864,4.935C39.037,4.817 39.277,4.633 39.502,4.682C39.616,4.707 39.777,4.881 39.664,4.988C39.542,5.102 39.668,5.354 39.836,5.284C40.045,5.198 40.322,5.084 40.55,5.158C40.809,5.242 40.789,5.576 40.696,5.778C40.431,6.352 39.723,6.428 39.169,6.442C37.779,6.477 36.388,6.482 34.997,6.502C34.769,6.505 34.769,6.86 34.997,6.857C36.315,6.838 37.633,6.819 38.951,6.8C39.499,6.792 40.108,6.784 40.571,6.448C40.95,6.173 41.247,5.67 41.059,5.195C40.84,4.643 40.176,4.762 39.742,4.942L39.915,5.238C40.168,5 40.046,4.604 39.784,4.425C39.426,4.18 38.994,4.419 38.685,4.629L38.9,4.908C39.223,4.514 39.099,3.875 38.64,3.636C38.13,3.371 37.518,3.722 37.347,4.232C37.284,4.42 37.591,4.555 37.671,4.369C37.907,3.823 37.694,3.101 37.103,2.886C36.525,2.677 35.858,3.123 35.822,3.729C35.81,3.926 36.136,3.974 36.17,3.776C36.258,3.267 35.999,2.637 35.438,2.539C34.918,2.449 34.353,2.982 34.548,3.512L34.872,3.375C34.597,2.96 34.129,2.423 33.567,2.698C33.012,2.969 33.126,3.664 33.279,4.14L33.497,3.922C33.134,3.804 32.614,3.733 32.381,4.12C32.213,4.402 32.283,4.78 32.603,4.904V4.562C32.242,4.615 31.853,4.847 31.802,5.24C31.758,5.585 31.99,5.917 32.343,5.944C32.571,5.961 32.57,5.606 32.343,5.589Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M32.67,16.951C31.205,17.074 29.685,16.963 28.354,16.339C27.024,15.716 25.908,14.517 25.652,13.07C25.451,11.941 25.786,10.759 26.41,9.797C27.033,8.835 27.926,8.074 28.887,7.448C32.593,5.035 37.508,4.596 41.583,6.313C42.858,6.85 44.072,7.603 44.937,8.682C45.802,9.762 46.281,11.201 46.001,12.556C45.707,13.978 44.624,15.135 43.366,15.862C42.109,16.588 40.678,16.945 39.268,17.294"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M32.673,16.774C31.128,16.901 29.487,16.784 28.109,16.013C26.953,15.367 25.995,14.25 25.808,12.908C25.592,11.365 26.376,9.879 27.444,8.82C28.474,7.799 29.78,7.027 31.117,6.479C33.775,5.391 36.774,5.154 39.566,5.834C42.255,6.489 45.378,8.113 45.859,11.128C46.086,12.556 45.473,13.889 44.44,14.855C43.311,15.911 41.824,16.44 40.357,16.835C39.981,16.937 39.603,17.03 39.225,17.124C39.003,17.179 39.097,17.521 39.319,17.466C40.915,17.071 42.574,16.661 43.943,15.708C45.116,14.892 46.066,13.683 46.235,12.23C46.412,10.707 45.722,9.195 44.678,8.117C43.613,7.019 42.199,6.298 40.763,5.812C37.898,4.843 34.707,4.87 31.844,5.832C30.409,6.314 29.038,7.028 27.857,7.978C26.627,8.968 25.639,10.312 25.449,11.915C25.275,13.391 25.952,14.79 27.075,15.728C28.3,16.751 29.892,17.144 31.462,17.172C31.866,17.179 32.27,17.162 32.673,17.129C32.899,17.111 32.901,16.756 32.673,16.774Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M31.22,7.485C31.797,7.628 32.339,7.87 32.833,8.201L32.875,7.877C32.52,8.019 32.166,8.162 31.811,8.305C31.722,8.34 31.66,8.423 31.687,8.523C31.71,8.607 31.816,8.683 31.905,8.647C32.26,8.504 32.615,8.361 32.969,8.219C33.111,8.161 33.146,7.985 33.012,7.895C32.495,7.548 31.918,7.293 31.314,7.143C31.093,7.088 30.998,7.429 31.22,7.485Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M38.021,7.286C37.421,7.66 36.681,7.696 36.047,7.996C35.907,8.063 35.95,8.284 36.09,8.32C36.587,8.448 37.084,8.576 37.582,8.704C37.803,8.76 37.897,8.418 37.676,8.362C37.179,8.234 36.681,8.106 36.184,7.978L36.226,8.302C36.862,8.001 37.594,7.969 38.2,7.592C38.393,7.471 38.215,7.164 38.021,7.286Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M33.656,6.512C33.862,6.449 33.934,6.874 33.959,7.003C34.002,7.226 34.006,7.455 34.006,7.681C34.005,8.192 33.987,8.704 33.959,9.215C33.947,9.443 34.301,9.443 34.314,9.215C34.348,8.587 34.39,7.945 34.351,7.316C34.326,6.906 34.183,5.979 33.561,6.17C33.344,6.237 33.437,6.579 33.656,6.512Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M33.509,10.607C34.152,11.049 35.063,10.915 35.542,10.297C35.601,10.221 35.616,10.12 35.542,10.046C35.481,9.985 35.35,9.97 35.291,10.046C35.108,10.283 34.856,10.446 34.56,10.502C34.255,10.56 33.94,10.474 33.688,10.301C33.61,10.246 33.492,10.286 33.446,10.364C33.394,10.452 33.43,10.552 33.509,10.607Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M35.458,9.702C35.364,9.835 35.344,10.003 35.369,10.16C35.381,10.231 35.408,10.302 35.444,10.364C35.488,10.441 35.547,10.499 35.617,10.552C35.651,10.578 35.714,10.58 35.753,10.569C35.794,10.558 35.839,10.526 35.859,10.488C35.881,10.447 35.892,10.397 35.877,10.351C35.862,10.305 35.835,10.275 35.796,10.245C35.845,10.283 35.806,10.253 35.795,10.242C35.785,10.233 35.776,10.224 35.768,10.214C35.757,10.201 35.75,10.182 35.776,10.225C35.773,10.22 35.77,10.216 35.767,10.212C35.758,10.2 35.751,10.187 35.744,10.174C35.741,10.169 35.738,10.163 35.735,10.157C35.732,10.15 35.721,10.126 35.734,10.156C35.748,10.189 35.731,10.145 35.728,10.136C35.72,10.109 35.714,10.082 35.71,10.054L35.716,10.101C35.711,10.059 35.711,10.017 35.717,9.974L35.71,10.021C35.715,9.99 35.723,9.96 35.734,9.929C35.743,9.902 35.714,9.97 35.728,9.943C35.732,9.935 35.735,9.928 35.739,9.921C35.747,9.907 35.755,9.894 35.764,9.881C35.79,9.845 35.793,9.785 35.782,9.744C35.771,9.703 35.739,9.658 35.701,9.638C35.61,9.59 35.515,9.621 35.458,9.702Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M33.592,10.761C33.685,10.687 33.753,10.568 33.778,10.452C33.807,10.315 33.791,10.18 33.729,10.054C33.71,10.016 33.663,9.984 33.623,9.973C33.581,9.961 33.524,9.966 33.486,9.991C33.401,10.046 33.379,10.144 33.423,10.233C33.427,10.241 33.431,10.25 33.434,10.258L33.416,10.216C33.428,10.245 33.436,10.276 33.441,10.307L33.435,10.26C33.44,10.298 33.44,10.337 33.435,10.375L33.441,10.328C33.436,10.364 33.426,10.399 33.412,10.433L33.43,10.39C33.416,10.424 33.398,10.455 33.375,10.484L33.403,10.448C33.385,10.471 33.364,10.492 33.341,10.51C33.308,10.537 33.289,10.595 33.289,10.636C33.289,10.679 33.308,10.731 33.341,10.761C33.375,10.792 33.419,10.815 33.466,10.813L33.514,10.807C33.544,10.798 33.57,10.783 33.592,10.761Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M27.714,15.689C29.07,16.606 30.791,16.866 32.383,16.555C32.607,16.512 32.701,16.854 32.478,16.897C32.067,16.978 31.649,17.026 31.231,17.035C29.566,17.069 27.892,16.492 26.699,15.311C26.42,15.034 26.171,14.73 25.957,14.403L25.914,13.621C26.317,14.452 26.953,15.175 27.714,15.689Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M47.609,42.94C47.992,43.665 48.456,44.347 48.989,44.969C48.996,44.978 49.005,44.987 49.016,44.99C49.037,44.996 49.056,44.979 49.071,44.964C49.538,44.474 49.747,43.693 49.537,43.04C49.308,42.33 48.837,41.704 48.292,41.205"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M47.46,43.028C47.715,43.508 48.002,43.969 48.324,44.407C48.484,44.625 48.648,44.843 48.827,45.046C49.011,45.252 49.17,45.136 49.314,44.956C49.591,44.606 49.756,44.18 49.793,43.735C49.832,43.265 49.681,42.82 49.467,42.408C49.205,41.905 48.836,41.461 48.421,41.078C48.253,40.923 48.002,41.173 48.17,41.329C48.692,41.811 49.154,42.399 49.37,43.085C49.465,43.387 49.467,43.708 49.39,44.014C49.351,44.172 49.293,44.325 49.215,44.468C49.175,44.542 49.13,44.613 49.081,44.681C49.06,44.709 49.038,44.736 49.016,44.763C49,44.782 48.983,44.8 48.966,44.819C48.942,44.843 48.944,44.843 48.973,44.817L49.145,44.863C48.995,44.745 48.874,44.55 48.759,44.4C48.634,44.237 48.514,44.071 48.399,43.902C48.169,43.563 47.958,43.211 47.766,42.849C47.659,42.647 47.353,42.826 47.46,43.028Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M31.774,34.672C30.079,37.731 29.376,41.694 30.149,45.125C30.332,45.941 30.599,46.751 31.076,47.438C32.148,48.986 33.93,49.12 35.66,48.955C36.951,48.831 38.186,48.38 39.387,47.888C41.152,47.165 42.877,46.344 44.552,45.431C46.086,44.595 47.618,43.657 49.332,43.235C50.483,42.951 52.685,42.973 53.122,44.44C53.275,44.952 53.364,45.569 53.835,45.821C54.39,46.119 55.066,45.672 55.416,45.149C56.066,44.175 56.158,42.885 55.777,41.778C55.396,40.67 54.579,39.743 53.599,39.101C54.074,38.915 54.3,38.342 54.251,37.835C54.201,37.328 53.938,36.87 53.681,36.43C53.141,35.506 52.601,34.582 52.061,33.658C49.768,34.813 47.473,35.963 45.175,37.109C44,37.694 42.824,38.279 41.647,38.863C41.117,39.125 39.736,40.267 39.163,40.002C40,36.439 40.842,33.062 40.891,29.363"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M31.621,34.584C30.013,37.499 29.317,41 29.814,44.301C30.051,45.873 30.551,47.655 31.981,48.55C33.225,49.329 34.878,49.285 36.275,49.052C37.22,48.894 38.131,48.58 39.019,48.228C39.897,47.88 40.765,47.504 41.622,47.107C42.507,46.696 43.38,46.261 44.241,45.802C45.035,45.378 45.813,44.925 46.612,44.511C47.906,43.841 49.32,43.209 50.808,43.277C51.367,43.303 51.965,43.417 52.425,43.753C52.631,43.903 52.801,44.107 52.9,44.343C53.03,44.65 53.071,44.988 53.197,45.298C53.323,45.607 53.518,45.883 53.834,46.017C54.18,46.163 54.564,46.084 54.88,45.9C55.551,45.509 55.931,44.729 56.088,43.995C56.43,42.389 55.761,40.784 54.602,39.673C54.321,39.404 54.013,39.164 53.689,38.95V39.256C54.092,39.085 54.339,38.678 54.409,38.258C54.496,37.738 54.318,37.236 54.08,36.78C53.802,36.247 53.479,35.735 53.176,35.215C52.855,34.667 52.535,34.118 52.214,33.569C52.164,33.483 52.057,33.463 51.971,33.506C50.021,34.489 48.068,35.468 46.114,36.444C45.143,36.929 44.172,37.412 43.201,37.895C42.456,38.265 41.69,38.601 40.994,39.058C40.684,39.262 40.373,39.468 40.043,39.639C39.846,39.741 39.484,39.949 39.253,39.85L39.334,40.051C39.978,37.313 40.648,34.571 40.929,31.767C41.009,30.969 41.057,30.167 41.069,29.365C41.072,29.136 40.717,29.136 40.714,29.365C40.673,32.16 40.158,34.906 39.537,37.624C39.36,38.402 39.175,39.179 38.992,39.956C38.976,40.025 39.001,40.126 39.074,40.157C39.619,40.389 40.284,39.931 40.727,39.653C40.996,39.484 41.257,39.302 41.528,39.136C41.903,38.905 42.316,38.73 42.71,38.534C44.732,37.53 46.752,36.522 48.77,35.511C49.897,34.946 51.024,34.38 52.15,33.812L51.908,33.748C52.472,34.715 53.042,35.679 53.602,36.648C53.838,37.059 54.088,37.512 54.08,38C54.073,38.396 53.888,38.789 53.51,38.95C53.378,39.006 53.412,39.191 53.51,39.256C54.799,40.109 55.806,41.484 55.824,43.076C55.833,43.826 55.631,44.672 55.119,45.245C54.891,45.501 54.558,45.752 54.197,45.741C53.853,45.729 53.64,45.456 53.522,45.161C53.399,44.853 53.355,44.519 53.228,44.214C53.127,43.974 52.975,43.758 52.78,43.586C52.368,43.222 51.826,43.044 51.289,42.968C49.978,42.782 48.72,43.157 47.527,43.679C46.729,44.027 45.965,44.449 45.204,44.87C44.407,45.312 43.606,45.745 42.791,46.152C41.976,46.558 41.15,46.944 40.315,47.307C39.465,47.676 38.606,48.037 37.723,48.323C36.889,48.592 36.04,48.767 35.165,48.817C34.474,48.856 33.771,48.836 33.1,48.651C32.448,48.471 31.866,48.122 31.425,47.605C30.873,46.959 30.575,46.126 30.375,45.312C29.601,42.177 30.079,38.723 31.405,35.803C31.565,35.449 31.74,35.103 31.927,34.763C32.037,34.563 31.731,34.384 31.621,34.584Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M29.133,29.854C26.249,32.362 24.574,35.944 22.892,39.376C21.569,42.074 20.192,44.745 18.762,47.388C17.542,49.643 16.472,52.399 14.774,54.316C13.988,55.203 12.164,56.437 10.97,55.479C10.554,55.144 10.129,54.687 9.598,54.747C8.973,54.817 8.67,55.569 8.68,56.198C8.698,57.369 9.356,58.483 10.299,59.177C11.242,59.872 12.441,60.171 13.611,60.142C13.327,60.565 13.466,61.165 13.795,61.554C14.124,61.943 14.601,62.171 15.063,62.387C16.032,62.84 17.001,63.294 17.971,63.747C22.522,55.409 27.177,47.112 32.113,38.994C33.181,37.238 34.298,35.534 35.354,33.766C35.762,33.083 36.173,32.394 36.436,31.643C36.698,30.891 36.806,30.064 36.594,29.297"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M29.005,29.729C26.806,31.65 25.296,34.194 23.983,36.769C23.28,38.146 22.616,39.544 21.924,40.927C21.155,42.463 20.369,43.99 19.566,45.507C18.843,46.873 18.118,48.234 17.434,49.62C16.786,50.931 16.122,52.249 15.256,53.432C14.551,54.396 13.611,55.349 12.397,55.606C12.126,55.663 11.84,55.67 11.572,55.596C11.268,55.511 11.045,55.315 10.809,55.116C10.352,54.734 9.74,54.341 9.156,54.721C8.682,55.03 8.494,55.659 8.5,56.199C8.508,56.867 8.721,57.527 9.067,58.095C9.813,59.317 11.13,60.047 12.525,60.252C12.885,60.305 13.246,60.328 13.609,60.321L13.456,60.054C13.198,60.463 13.246,60.974 13.467,61.389C13.7,61.827 14.131,62.119 14.561,62.342C15.079,62.61 15.618,62.843 16.146,63.091C16.724,63.361 17.301,63.631 17.879,63.901C17.964,63.941 18.072,63.928 18.122,63.838C19.373,61.545 20.632,59.256 21.902,56.974C23.167,54.701 24.443,52.433 25.734,50.175C27.026,47.917 28.332,45.668 29.657,43.429C30.983,41.19 32.326,38.961 33.711,36.757C34.394,35.671 35.079,34.585 35.729,33.478C36.329,32.457 36.89,31.346 36.881,30.132C36.879,29.835 36.839,29.538 36.763,29.251C36.704,29.03 36.362,29.124 36.421,29.345C36.742,30.56 36.271,31.78 35.688,32.835C35.084,33.928 34.406,34.984 33.742,36.041C32.378,38.215 31.042,40.405 29.73,42.611C28.413,44.828 27.114,47.056 25.831,49.293C24.548,51.529 23.28,53.775 22.023,56.027C20.761,58.289 19.511,60.557 18.269,62.829C18.117,63.106 17.966,63.382 17.815,63.659L18.058,63.595C17.054,63.126 16.049,62.66 15.047,62.186C14.64,61.994 14.209,61.785 13.918,61.43C13.647,61.1 13.523,60.612 13.762,60.233C13.833,60.119 13.741,59.963 13.609,59.966C12.185,59.994 10.714,59.538 9.756,58.439C9.322,57.941 9.015,57.33 8.899,56.679C8.806,56.154 8.828,55.448 9.273,55.074C9.821,54.614 10.433,55.279 10.842,55.605C11.299,55.968 11.858,56.064 12.424,55.961C13.571,55.751 14.545,54.908 15.249,54.022C16.131,52.913 16.808,51.659 17.442,50.397C17.765,49.754 18.077,49.107 18.401,48.465C18.74,47.791 19.103,47.13 19.458,46.464C20.992,43.595 22.429,40.682 23.876,37.769C25.132,35.241 26.5,32.698 28.51,30.679C28.75,30.437 28.999,30.205 29.256,29.98C29.428,29.83 29.177,29.58 29.005,29.729Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M26.106,20.406C23.505,16.777 21.333,12.842 19.649,8.707C19.345,7.961 18.953,7.248 19,6.43C19.045,5.646 19.315,4.873 19.781,4.239C19.978,3.972 20.219,3.64 20.069,3.345C19.931,3.074 19.551,3.045 19.256,3.12C18.648,3.276 18.123,3.727 17.878,4.305C17.827,3.542 17.923,2.783 17.821,2.023C17.743,1.438 17.554,0.857 17.197,0.388C17.146,0.321 17.089,0.254 17.013,0.216C16.938,0.178 16.838,0.174 16.774,0.229C16.719,0.275 16.699,0.349 16.683,0.418C16.467,1.325 16.638,2.41 16.789,3.326C16.704,2.813 16.657,2.387 16.41,1.92C16.166,1.462 15.987,1.038 15.594,0.675C15.51,0.597 15.407,0.52 15.292,0.532C15.182,0.544 15.097,0.641 15.064,0.746C15.031,0.852 15.041,0.966 15.053,1.075C15.152,1.954 15.563,2.86 15.991,3.628C15.765,3.223 15.595,2.816 15.31,2.442C15.049,2.102 14.737,1.783 14.4,1.517C14.296,1.435 14.188,1.351 14.061,1.315C13.934,1.278 13.781,1.299 13.697,1.401C13.586,1.535 13.635,1.734 13.696,1.896C14.037,2.814 14.566,3.626 15.073,4.458C14.907,4.186 14.552,4.044 14.318,3.847C14.068,3.638 13.88,3.449 13.566,3.317C13.488,3.285 13.404,3.255 13.32,3.266C13.16,3.286 13.05,3.452 13.04,3.614C13.016,4.018 13.346,4.359 13.562,4.663C14.193,5.551 14.645,5.932 14.332,6.969C14.035,7.957 14.15,9.032 14.77,9.88C14.91,10.072 15.073,10.251 15.173,10.467C15.28,10.698 15.306,10.957 15.338,11.209C15.556,12.934 16.087,14.602 16.648,16.248C17.611,19.069 18.679,21.875 20.207,24.435C21.734,26.995 24.516,31.005 30.783,32.287"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M26.257,20.316C24.464,17.812 22.873,15.164 21.506,12.404C20.819,11.016 20.222,9.594 19.611,8.173C19.468,7.84 19.328,7.504 19.244,7.151C19.155,6.777 19.156,6.399 19.221,6.02C19.28,5.667 19.385,5.319 19.537,4.995C19.688,4.673 19.898,4.403 20.089,4.106C20.273,3.819 20.396,3.438 20.147,3.148C19.939,2.907 19.587,2.877 19.294,2.93C18.605,3.055 18,3.584 17.723,4.215L18.054,4.304C18.015,3.689 18.067,3.073 18.036,2.458C18.008,1.909 17.904,1.365 17.679,0.861C17.538,0.547 17.141,-0.246 16.682,0.075C16.494,0.207 16.476,0.504 16.447,0.711C16.411,0.973 16.398,1.238 16.403,1.502C16.414,2.131 16.514,2.754 16.616,3.373C16.653,3.598 16.994,3.502 16.958,3.279C16.881,2.809 16.812,2.343 16.602,1.911C16.399,1.495 16.187,1.063 15.879,0.714C15.745,0.563 15.575,0.381 15.362,0.357C15.149,0.334 14.968,0.481 14.899,0.676C14.824,0.891 14.876,1.139 14.914,1.357C14.958,1.616 15.027,1.871 15.11,2.121C15.295,2.676 15.552,3.205 15.835,3.717C15.946,3.916 16.252,3.738 16.142,3.538C15.889,3.079 15.675,2.611 15.342,2.201C15.051,1.843 14.688,1.441 14.278,1.217C13.908,1.014 13.413,1.182 13.455,1.661C13.474,1.885 13.58,2.1 13.668,2.303C13.769,2.54 13.882,2.772 14.003,3C14.285,3.529 14.606,4.036 14.918,4.547L15.224,4.368C15.047,4.099 14.773,3.961 14.518,3.779C14.243,3.583 14.019,3.333 13.707,3.188C13.404,3.046 13.068,3.051 12.915,3.394C12.786,3.681 12.902,4.012 13.056,4.265C13.381,4.799 13.857,5.245 14.129,5.812C14.416,6.413 14.087,7.012 14.018,7.624C13.942,8.305 14.066,9.006 14.389,9.611C14.564,9.937 14.846,10.197 15.005,10.53C15.17,10.875 15.166,11.302 15.224,11.675C15.476,13.297 15.985,14.865 16.516,16.414C17.503,19.299 18.613,22.159 20.202,24.773C21.115,26.274 22.178,27.687 23.484,28.87C25.249,30.468 27.387,31.59 29.682,32.209C30.03,32.302 30.381,32.384 30.734,32.457C30.956,32.503 31.052,32.161 30.828,32.115C28.478,31.631 26.236,30.667 24.361,29.155C22.986,28.045 21.846,26.687 20.891,25.206C19.438,22.954 18.361,20.496 17.444,17.984C16.909,16.516 16.384,15.033 15.982,13.522C15.78,12.761 15.613,11.99 15.513,11.209C15.469,10.863 15.427,10.523 15.239,10.221C15.049,9.916 14.804,9.659 14.645,9.332C14.346,8.72 14.283,8.005 14.419,7.342C14.483,7.028 14.598,6.73 14.608,6.407C14.617,6.15 14.558,5.902 14.452,5.67C14.201,5.12 13.753,4.67 13.418,4.172C13.338,4.053 13.263,3.928 13.23,3.787C13.2,3.658 13.205,3.419 13.396,3.446C13.714,3.491 13.989,3.813 14.226,4.001C14.453,4.181 14.755,4.299 14.918,4.547C15.043,4.736 15.344,4.564 15.224,4.368C14.934,3.892 14.635,3.42 14.368,2.93C14.24,2.695 14.119,2.455 14.011,2.21C13.959,2.091 13.908,1.971 13.865,1.849C13.836,1.769 13.767,1.613 13.822,1.528C14.015,1.229 14.833,2.152 14.958,2.294C15.334,2.722 15.563,3.223 15.835,3.717L16.142,3.538C15.883,3.071 15.646,2.59 15.472,2.085C15.386,1.835 15.315,1.581 15.266,1.321C15.246,1.214 15.126,0.557 15.407,0.751C15.795,1.019 16.004,1.53 16.215,1.933C16.454,2.391 16.534,2.868 16.616,3.373L16.958,3.279C16.863,2.701 16.771,2.12 16.758,1.533C16.751,1.233 16.762,0.929 16.817,0.633C16.835,0.533 16.833,0.321 16.968,0.398C17.066,0.454 17.147,0.622 17.202,0.712C17.866,1.809 17.624,3.092 17.699,4.304C17.709,4.461 17.953,4.568 18.029,4.394C18.271,3.845 18.78,3.37 19.388,3.272C19.639,3.232 20,3.3 19.924,3.633C19.856,3.938 19.576,4.198 19.419,4.461C19.074,5.039 18.871,5.701 18.824,6.372C18.774,7.094 19.049,7.758 19.329,8.407C19.908,9.753 20.471,11.1 21.118,12.416C21.769,13.743 22.472,15.044 23.225,16.316C24.072,17.748 24.983,19.142 25.951,20.495C26.083,20.678 26.391,20.502 26.257,20.316Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M15.623,53.223C15.357,53.608 15.075,53.976 14.774,54.316C13.988,55.203 12.164,56.437 10.97,55.479C10.554,55.144 10.129,54.687 9.598,54.747C8.973,54.817 8.67,55.569 8.68,56.198C8.698,57.369 9.356,58.483 10.299,59.178C11.242,59.872 12.441,60.171 13.611,60.142C13.327,60.565 13.466,61.165 13.795,61.554C14.124,61.944 14.601,62.171 15.063,62.387C16.032,62.84 17.001,63.294 17.971,63.747C19,61.863 20.735,58.726 21.776,56.847C20.335,54.732 17.744,54.471 15.623,53.223Z"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M15.469,53.134C14.839,54.042 14.116,54.871 13.105,55.359C12.687,55.562 12.196,55.709 11.727,55.63C11.182,55.539 10.854,55.103 10.415,54.813C9.984,54.528 9.445,54.462 9.032,54.816C8.679,55.118 8.527,55.619 8.504,56.069C8.447,57.185 9.038,58.303 9.847,59.038C10.863,59.96 12.259,60.347 13.61,60.321L13.457,60.054C13.206,60.452 13.246,60.944 13.45,61.353C13.675,61.807 14.115,62.109 14.552,62.337C15.075,62.609 15.619,62.844 16.153,63.093C16.729,63.363 17.305,63.632 17.88,63.901C17.965,63.941 18.074,63.928 18.123,63.838C19.126,61.999 20.14,60.167 21.155,58.334C21.412,57.868 21.67,57.403 21.928,56.937C21.958,56.884 21.964,56.81 21.928,56.758C21.385,55.969 20.642,55.374 19.802,54.925C18.962,54.476 18.061,54.159 17.185,53.791C16.681,53.579 16.184,53.347 15.711,53.07C15.514,52.955 15.335,53.262 15.532,53.377C17.126,54.308 19.017,54.678 20.511,55.788C20.941,56.108 21.318,56.496 21.622,56.937V56.758C20.607,58.59 19.593,60.423 18.584,62.259C18.327,62.725 18.072,63.192 17.817,63.659L18.059,63.595C17.049,63.122 16.035,62.654 15.027,62.176C14.62,61.983 14.188,61.77 13.903,61.409C13.643,61.08 13.529,60.604 13.763,60.233C13.835,60.119 13.742,59.963 13.61,59.966C12.441,59.989 11.228,59.695 10.298,58.957C9.462,58.294 8.858,57.263 8.856,56.178C8.855,55.773 8.981,55.258 9.343,55.023C9.826,54.71 10.329,55.173 10.682,55.471C11.052,55.783 11.441,55.991 11.935,56.004C12.396,56.016 12.85,55.872 13.263,55.676C14.338,55.164 15.108,54.274 15.775,53.313C15.905,53.125 15.598,52.948 15.469,53.134Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M36.596,29.297L29.135,29.854C26.251,32.362 24.576,35.944 22.893,39.376C21.571,42.074 20.194,44.745 18.764,47.388C17.761,49.243 16.858,51.436 15.625,53.222C15.807,52.958 19.164,55.899 19.47,56.142C20.715,57.129 22.192,58.383 22.251,59.861C23.277,58.506 24.368,56.754 25.191,55.267C28.826,48.699 32.277,42.03 35.537,35.268C35.998,34.313 36.48,33.304 36.495,32.222C36.508,31.251 36.866,30.274 36.596,29.297Z"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M30.739,37.043C29.749,39.09 29.375,41.382 29.246,43.652C29.21,44.295 29.192,44.939 29.197,45.584C29.201,46.14 29.221,46.701 29.128,47.249C29.052,47.692 28.903,48.121 28.688,48.515C28.926,47.998 29.232,47.622 29.554,47.176C29.943,46.637 30.226,45.976 30.551,45.395C30.786,44.974 31.025,44.543 31.111,44.069C31.183,43.673 31.145,43.267 31.122,42.865C31.011,40.931 31.255,38.978 31.837,37.13"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M30.586,36.954C29.262,39.71 28.992,42.856 29.022,45.874C29.027,46.317 29.031,46.765 28.957,47.203C28.884,47.632 28.74,48.043 28.535,48.426L28.841,48.605C29.163,47.92 29.687,47.368 30.057,46.712C30.245,46.377 30.411,46.032 30.591,45.693C30.768,45.361 30.962,45.038 31.106,44.689C31.423,43.928 31.298,43.149 31.278,42.35C31.258,41.532 31.301,40.713 31.405,39.902C31.524,38.978 31.73,38.066 32.008,37.178C32.077,36.96 31.735,36.866 31.666,37.084C31.186,38.619 30.931,40.224 30.919,41.833C30.916,42.242 30.932,42.649 30.957,43.056C30.981,43.46 30.998,43.864 30.885,44.256C30.778,44.63 30.585,44.968 30.398,45.306C30.218,45.631 30.055,45.965 29.881,46.293C29.683,46.666 29.457,47.013 29.207,47.353C28.955,47.695 28.715,48.041 28.535,48.426C28.439,48.63 28.731,48.809 28.841,48.605C29.207,47.924 29.359,47.189 29.376,46.42C29.394,45.619 29.369,44.82 29.405,44.019C29.474,42.51 29.642,40.999 30.023,39.535C30.239,38.709 30.523,37.903 30.892,37.133C30.99,36.929 30.685,36.748 30.586,36.954Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M36.597,29.12C35.489,29.202 34.381,29.285 33.273,29.368C31.931,29.468 30.59,29.568 29.249,29.668C29.213,29.671 29.176,29.671 29.141,29.676C29.062,29.688 29.027,29.715 28.968,29.766C28.826,29.888 28.688,30.016 28.552,30.146C28.038,30.635 27.56,31.162 27.116,31.715C26.218,32.835 25.453,34.054 24.76,35.309C24.059,36.578 23.428,37.884 22.791,39.185C22.045,40.708 21.282,42.223 20.502,43.729C19.741,45.198 18.932,46.644 18.183,48.12C17.493,49.48 16.86,50.872 16.079,52.184C15.887,52.507 15.685,52.824 15.473,53.133C15.36,53.297 15.625,53.506 15.751,53.348C15.741,53.36 15.666,53.388 15.674,53.383C15.663,53.39 15.638,53.366 15.663,53.384C15.673,53.391 15.693,53.393 15.703,53.397C15.733,53.409 15.675,53.384 15.707,53.399C15.723,53.406 15.738,53.414 15.753,53.422C15.788,53.44 15.823,53.46 15.858,53.48C16.05,53.594 16.231,53.727 16.41,53.859C16.9,54.222 17.371,54.61 17.84,54.999C18.253,55.341 18.662,55.689 19.072,56.037C19.542,56.437 20.034,56.81 20.488,57.23C21.232,57.92 22.021,58.794 22.075,59.861C22.084,60.048 22.301,60.088 22.405,59.951C23.663,58.285 24.724,56.484 25.73,54.658C26.841,52.641 27.935,50.615 29.011,48.579C30.087,46.543 31.146,44.498 32.187,42.444C33.228,40.39 34.251,38.327 35.257,36.255C35.723,35.295 36.259,34.329 36.524,33.289C36.657,32.766 36.649,32.247 36.706,31.715C36.764,31.165 36.879,30.618 36.874,30.062C36.872,29.788 36.837,29.515 36.768,29.25C36.71,29.029 36.368,29.123 36.426,29.344C36.568,29.887 36.52,30.443 36.445,30.993C36.409,31.265 36.367,31.537 36.341,31.81C36.316,32.079 36.324,32.349 36.292,32.617C36.168,33.678 35.64,34.651 35.182,35.598C34.194,37.641 33.189,39.676 32.166,41.702C31.138,43.738 30.093,45.765 29.03,47.783C27.968,49.801 26.888,51.81 25.792,53.81C24.784,55.647 23.755,57.468 22.537,59.175C22.393,59.376 22.247,59.575 22.099,59.772L22.429,59.861C22.339,58.07 20.648,56.91 19.409,55.86C18.49,55.081 17.579,54.29 16.613,53.571C16.406,53.416 16.195,53.258 15.967,53.134C15.844,53.067 15.617,52.951 15.5,53.097L15.779,53.312C16.779,51.856 17.517,50.244 18.303,48.668C19.139,46.995 20.057,45.362 20.916,43.7C21.78,42.028 22.618,40.342 23.446,38.652C24.179,37.156 24.922,35.66 25.791,34.237C26.75,32.668 27.871,31.193 29.261,29.979L29.136,30.031C29.979,29.968 30.822,29.906 31.665,29.843L35.675,29.543C35.982,29.52 36.289,29.497 36.597,29.474C36.823,29.458 36.825,29.103 36.597,29.12Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M17.778,4.349C17.626,4.252 17.427,4.279 17.251,4.323C16.902,4.409 16.561,4.548 16.282,4.775C16.003,5.001 15.791,5.322 15.742,5.678"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M17.87,4.195C17.642,4.063 17.381,4.103 17.138,4.168C16.884,4.237 16.632,4.334 16.407,4.471C15.99,4.725 15.647,5.137 15.573,5.63C15.559,5.725 15.597,5.821 15.697,5.848C15.781,5.871 15.901,5.82 15.915,5.724C15.974,5.33 16.223,5.006 16.556,4.796C16.735,4.682 16.93,4.6 17.132,4.539C17.3,4.488 17.526,4.405 17.691,4.501C17.889,4.616 18.068,4.31 17.87,4.195Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M52.955,44.487C53.129,45.081 53.264,45.882 53.97,46.062C54.675,46.242 55.326,45.658 55.66,45.1C56.464,43.756 56.286,42.028 55.474,40.734C55.022,40.013 54.4,39.416 53.692,38.948V39.254C54.095,39.083 54.343,38.677 54.413,38.256C54.5,37.737 54.321,37.234 54.084,36.779C53.806,36.246 53.483,35.733 53.179,35.214C52.859,34.665 52.538,34.117 52.218,33.568C52.167,33.481 52.061,33.461 51.975,33.504C50.161,34.418 48.346,35.328 46.529,36.236C46.444,36.278 46.32,36.315 46.251,36.384C46.179,36.457 46.178,36.597 46.16,36.693C46.121,36.901 46.09,37.111 46.064,37.321C46.008,37.772 45.983,38.227 45.984,38.681C45.987,39.545 46.086,40.411 46.269,41.255C46.478,42.22 46.818,43.131 47.228,44.027C47.271,44.12 47.391,44.127 47.471,44.091C48.321,43.703 49.23,43.353 50.171,43.285C50.868,43.235 51.643,43.285 52.261,43.643C52.592,43.835 52.841,44.12 52.955,44.487C53.022,44.704 53.365,44.611 53.297,44.392C52.806,42.816 50.647,42.742 49.318,43.057C48.618,43.222 47.944,43.487 47.292,43.785L47.534,43.848C47.017,42.718 46.639,41.554 46.459,40.321C46.278,39.075 46.292,37.791 46.547,36.557L46.466,36.663C48.363,35.715 50.26,34.765 52.154,33.811L51.911,33.747C52.476,34.714 53.046,35.677 53.605,36.647C53.842,37.057 54.091,37.51 54.083,37.998C54.077,38.395 53.891,38.787 53.513,38.948C53.382,39.004 53.415,39.189 53.513,39.254C54.608,39.979 55.504,41.071 55.758,42.382C55.886,43.042 55.842,43.738 55.615,44.371C55.411,44.938 55.002,45.602 54.362,45.726C53.599,45.874 53.45,44.916 53.297,44.392C53.233,44.174 52.89,44.267 52.955,44.487Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M31.777,34.672C31.447,34.865 31.152,35.931 31.01,36.282C30.204,38.268 29.846,40.461 29.772,42.597C29.661,45.794 29.841,49.191 33.327,50.402C35.121,51.026 37.095,50.967 38.949,50.556C41.3,50.035 44.037,49.131 46.065,47.836C47.231,47.092 48.294,46.146 48.999,44.956C48.021,43.751 47.284,42.354 46.828,40.872C46.6,40.13 46.442,39.368 46.358,38.596C46.327,38.308 46.045,36.676 46.376,36.51C45.977,36.709 45.578,36.91 45.179,37.109C44.003,37.695 42.827,38.279 41.65,38.863C41.12,39.125 39.739,40.267 39.167,40.002C40.004,36.439 40.845,33.062 40.894,29.363"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M31.689,34.52C31.347,34.738 31.2,35.235 31.069,35.593C30.892,36.078 30.704,36.56 30.538,37.049C30.097,38.353 29.836,39.714 29.698,41.083C29.584,42.207 29.545,43.348 29.587,44.477C29.622,45.432 29.731,46.402 30.037,47.312C30.328,48.175 30.806,48.974 31.5,49.573C32.367,50.321 33.478,50.719 34.595,50.909C35.943,51.139 37.325,51.062 38.663,50.798C39.911,50.553 41.146,50.2 42.345,49.778C44.676,48.957 47.087,47.794 48.637,45.799C48.824,45.558 48.996,45.308 49.153,45.047C49.197,44.973 49.175,44.894 49.125,44.832C48.244,43.741 47.56,42.49 47.109,41.162C46.736,40.065 46.549,38.922 46.432,37.772C46.408,37.529 46.389,37.284 46.396,37.04C46.399,36.952 46.403,36.864 46.423,36.779C46.43,36.75 46.443,36.71 46.447,36.694C46.457,36.661 46.456,36.671 46.466,36.665C46.666,36.55 46.49,36.257 46.287,36.358C45.078,36.963 43.868,37.566 42.657,38.167C42.194,38.397 41.709,38.603 41.271,38.881C40.935,39.094 40.609,39.322 40.263,39.521C40.075,39.629 39.882,39.734 39.675,39.803C39.557,39.843 39.381,39.903 39.257,39.85L39.338,40.051C39.982,37.313 40.652,34.571 40.933,31.767C41.014,30.969 41.061,30.167 41.073,29.365C41.076,29.136 40.721,29.136 40.718,29.365C40.677,32.16 40.162,34.906 39.542,37.624C39.364,38.402 39.179,39.179 38.996,39.956C38.98,40.025 39.005,40.126 39.078,40.157C39.408,40.297 39.76,40.166 40.067,40.024C40.458,39.843 40.818,39.6 41.178,39.364C41.565,39.11 41.964,38.906 42.38,38.7C43.019,38.383 43.658,38.065 44.296,37.748C45.02,37.387 45.743,37.026 46.466,36.665L46.287,36.358C45.969,36.541 46.032,37.113 46.049,37.415C46.071,37.797 46.138,38.233 46.18,38.578C46.363,40.116 46.787,41.599 47.497,42.978C47.882,43.726 48.346,44.429 48.874,45.083L48.847,44.868C47.595,46.963 45.337,48.233 43.13,49.107C41.981,49.563 40.797,49.928 39.597,50.224C38.333,50.536 37.051,50.744 35.745,50.68C34.563,50.622 33.329,50.36 32.312,49.731C31.55,49.26 30.969,48.575 30.594,47.764C30.219,46.951 30.055,46.048 29.982,45.16C29.9,44.177 29.917,43.182 29.968,42.197C30.036,40.875 30.215,39.558 30.545,38.275C30.71,37.634 30.913,37.002 31.159,36.387C31.311,36.007 31.419,35.608 31.594,35.236C31.658,35.1 31.734,34.911 31.868,34.826C32.06,34.704 31.882,34.397 31.689,34.52Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M22.577,14.825C20.822,15.575 19.263,16.8 18.179,18.377C18.049,18.566 17.926,18.76 17.811,18.959C17.754,19.058 17.696,19.158 17.645,19.261C17.579,19.396 17.645,19.499 17.697,19.629C17.907,20.158 18.126,20.683 18.356,21.203C18.821,22.253 19.333,23.283 19.91,24.276C20.512,25.309 21.172,26.31 21.933,27.234C22.853,28.35 23.922,29.34 25.121,30.15C26.597,31.147 28.258,31.853 29.984,32.285C30.234,32.348 30.486,32.405 30.738,32.457C30.961,32.503 31.056,32.161 30.832,32.115C28.274,31.587 25.859,30.487 23.891,28.754C22.491,27.521 21.375,26.031 20.419,24.438C19.443,22.814 18.65,21.089 17.957,19.327L17.939,19.463C18.971,17.499 20.728,15.999 22.756,15.131C22.965,15.041 22.785,14.736 22.577,14.825Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M28.302,29.577C26.444,28.698 25.25,26.759 24.831,24.747C24.413,22.736 24.673,20.645 25.082,18.631C24.197,19.402 23.305,20.18 22.592,21.112C21.878,22.044 21.347,23.153 21.288,24.326C21.166,26.75 22.818,28.208 24.558,29.532C26.388,30.924 28.536,31.827 30.782,32.287"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M28.393,29.424C27.115,28.811 26.167,27.703 25.574,26.431C24.885,24.955 24.726,23.3 24.826,21.69C24.889,20.676 25.054,19.673 25.256,18.678C25.291,18.502 25.095,18.387 24.959,18.506C23.849,19.472 22.716,20.464 21.952,21.741C21.253,22.909 20.916,24.282 21.224,25.628C21.485,26.77 22.206,27.724 23.047,28.511C23.999,29.401 25.077,30.192 26.218,30.819C27.629,31.593 29.162,32.133 30.737,32.458C30.96,32.504 31.055,32.162 30.831,32.116C29.487,31.838 28.173,31.407 26.942,30.797C25.777,30.219 24.706,29.478 23.718,28.635C22.879,27.918 22.082,27.077 21.707,26.019C21.272,24.795 21.45,23.469 22.033,22.325C22.769,20.883 24.008,19.803 25.21,18.756L24.913,18.584C24.548,20.391 24.295,22.252 24.544,24.093C24.746,25.594 25.308,27.05 26.288,28.218C26.817,28.848 27.471,29.374 28.214,29.73C28.419,29.828 28.599,29.522 28.393,29.424Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M27.68,31.654C28.645,32.804 30.257,33.119 31.738,33.363C32.729,33.526 33.721,33.689 34.712,33.853C35.734,34.021 36.769,34.193 37.715,34.614C38.662,35.035 39.525,35.74 39.915,36.699C40.64,33.825 40.871,30.827 40.598,27.875"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M27.561,31.78C28.644,33.05 30.405,33.321 31.961,33.577C32.987,33.746 34.014,33.912 35.04,34.085C35.986,34.244 36.952,34.429 37.82,34.855C38.639,35.257 39.393,35.887 39.75,36.746C39.812,36.895 40.045,36.933 40.092,36.746C40.655,34.5 40.927,32.181 40.889,29.866C40.879,29.201 40.842,28.537 40.781,27.875C40.761,27.649 40.406,27.647 40.427,27.875C40.636,30.16 40.55,32.472 40.158,34.734C40.046,35.378 39.909,36.018 39.75,36.652H40.092C39.38,34.942 37.567,34.214 35.869,33.876C34.869,33.677 33.856,33.532 32.849,33.366C31.951,33.218 31.041,33.098 30.161,32.861C29.275,32.622 28.418,32.24 27.811,31.529C27.663,31.355 27.413,31.607 27.561,31.78Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M28.522,31.815C25.567,30.834 23.102,28.703 22.779,25.437C22.586,23.493 23.165,21.541 24.181,19.893C25.075,18.442 26.602,17.311 28.086,16.487C29.711,15.584 32.006,15.208 33.846,15.077C35.894,14.932 37.983,15.196 39.882,15.997C41.543,16.698 43.061,17.82 44.021,19.346C45.501,21.699 45.731,24.664 44.528,27.185C43.523,29.291 41.64,30.927 39.47,31.787C38.476,32.181 37.425,32.421 36.364,32.562C33.739,32.911 31.035,32.65 28.522,31.815Z"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M28.569,31.644C26.963,31.107 25.443,30.211 24.368,28.882C23.157,27.385 22.724,25.442 23.002,23.551C23.169,22.416 23.569,21.321 24.132,20.323C24.647,19.413 25.338,18.648 26.147,17.99C26.924,17.358 27.797,16.785 28.711,16.371C29.642,15.949 30.651,15.698 31.656,15.52C33.78,15.143 35.986,15.07 38.092,15.592C40.082,16.083 42.001,17.094 43.325,18.687C44.623,20.248 45.25,22.345 45.099,24.362C44.951,26.346 44.011,28.179 42.596,29.56C41.099,31.021 39.183,31.879 37.141,32.26C34.861,32.685 32.482,32.616 30.221,32.104C29.663,31.978 29.112,31.823 28.569,31.644C28.351,31.573 28.258,31.915 28.474,31.986C30.763,32.741 33.205,33.034 35.606,32.823C37.83,32.627 40.028,32.018 41.838,30.669C43.453,29.466 44.711,27.769 45.218,25.804C45.746,23.757 45.444,21.546 44.431,19.695C43.43,17.865 41.723,16.559 39.814,15.778C37.656,14.896 35.309,14.728 33.01,14.974C31.954,15.087 30.9,15.266 29.881,15.568C28.879,15.864 27.963,16.312 27.087,16.877C26.187,17.458 25.332,18.138 24.641,18.961C23.925,19.813 23.402,20.833 23.044,21.884C22.358,23.895 22.369,26.166 23.395,28.059C24.234,29.607 25.659,30.759 27.237,31.495C27.64,31.682 28.053,31.846 28.474,31.986C28.691,32.059 28.784,31.716 28.569,31.644Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M41.686,21.542C44.758,18.303 47.448,14.701 49.681,10.836C50.084,10.138 50.57,9.485 50.635,8.669C50.698,7.885 50.536,7.083 50.16,6.392C50.002,6.1 49.808,5.738 49.998,5.466C50.171,5.216 50.551,5.24 50.833,5.355C51.414,5.591 51.873,6.11 52.036,6.716C52.192,5.968 52.2,5.203 52.405,4.464C52.562,3.895 52.829,3.346 53.247,2.929C53.307,2.87 53.372,2.811 53.452,2.784C53.532,2.756 53.631,2.767 53.688,2.83C53.736,2.882 53.745,2.959 53.752,3.029C53.842,3.957 53.524,5.009 53.249,5.896C53.403,5.399 53.508,4.983 53.817,4.555C54.121,4.134 54.356,3.738 54.795,3.433C54.889,3.367 55.002,3.304 55.113,3.332C55.221,3.359 55.293,3.467 55.311,3.576C55.329,3.685 55.304,3.796 55.276,3.903C55.058,4.76 54.528,5.601 53.999,6.303C54.278,5.933 54.501,5.553 54.835,5.222C55.14,4.921 55.493,4.647 55.863,4.43C55.978,4.363 56.095,4.295 56.226,4.276C56.357,4.257 56.506,4.299 56.576,4.411C56.667,4.559 56.591,4.749 56.509,4.902C56.046,5.764 55.411,6.496 54.795,7.251C54.996,7.004 55.367,6.912 55.626,6.75C55.902,6.576 56.114,6.415 56.444,6.328C56.525,6.306 56.612,6.288 56.694,6.31C56.85,6.352 56.936,6.532 56.924,6.693C56.892,7.096 56.519,7.39 56.263,7.661C55.517,8.454 55.017,8.77 55.185,9.84C55.345,10.859 55.084,11.909 54.354,12.664C54.189,12.835 54.002,12.99 53.874,13.19C53.737,13.405 53.676,13.657 53.61,13.903C53.158,15.582 52.404,17.162 51.624,18.715C50.284,21.379 48.842,24.012 46.979,26.339C45.116,28.667 41.813,32.259 35.43,32.673"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M41.81,21.667C43.841,19.523 45.708,17.223 47.386,14.792C48.224,13.579 49.015,12.333 49.756,11.058C50.101,10.465 50.514,9.885 50.71,9.22C50.903,8.562 50.847,7.816 50.662,7.162C50.556,6.788 50.381,6.457 50.211,6.11C50.141,5.966 50.043,5.759 50.123,5.599C50.189,5.465 50.349,5.441 50.484,5.451C50.797,5.472 51.104,5.671 51.327,5.88C51.584,6.122 51.768,6.424 51.864,6.763C51.91,6.923 52.17,6.941 52.206,6.763C52.445,5.582 52.38,4.281 53.166,3.285C53.245,3.184 53.34,3.051 53.451,2.983C53.605,2.887 53.58,3.095 53.585,3.201C53.598,3.502 53.574,3.804 53.526,4.101C53.43,4.696 53.255,5.274 53.077,5.849L53.419,5.943C53.567,5.464 53.709,5.011 54.002,4.598C54.142,4.401 54.276,4.199 54.431,4.013C54.577,3.838 54.768,3.615 54.983,3.524C55.271,3.404 55.054,4.038 55.02,4.141C54.935,4.396 54.826,4.642 54.702,4.881C54.459,5.351 54.162,5.791 53.845,6.214L54.151,6.393C54.476,5.956 54.763,5.511 55.174,5.147C55.37,4.973 55.58,4.816 55.801,4.675C55.917,4.602 56.293,4.316 56.421,4.501C56.487,4.596 56.383,4.759 56.34,4.839C56.277,4.956 56.21,5.07 56.141,5.182C56.004,5.406 55.855,5.622 55.7,5.834C55.373,6.278 55.016,6.699 54.668,7.126C54.526,7.3 54.766,7.55 54.919,7.377C55.122,7.144 55.436,7.069 55.694,6.915C55.832,6.832 55.963,6.739 56.103,6.66C56.227,6.59 56.497,6.428 56.645,6.481C56.783,6.53 56.749,6.728 56.712,6.831C56.662,6.968 56.567,7.087 56.47,7.194C56.264,7.422 56.041,7.638 55.826,7.858C55.479,8.212 55.108,8.587 55.009,9.093C54.951,9.39 54.987,9.674 55.024,9.971C55.066,10.3 55.063,10.641 55.007,10.968C54.889,11.65 54.56,12.213 54.071,12.694C53.825,12.936 53.642,13.185 53.534,13.516C53.418,13.869 53.335,14.233 53.221,14.587C52.736,16.085 52.039,17.501 51.329,18.903C50.002,21.526 48.56,24.111 46.702,26.4C45.621,27.733 44.413,28.964 42.997,29.943C41.056,31.284 38.806,32.105 36.467,32.397C36.122,32.44 35.776,32.472 35.428,32.495C35.202,32.51 35.2,32.865 35.428,32.85C37.968,32.681 40.453,31.969 42.618,30.615C44.194,29.63 45.547,28.347 46.731,26.922C48.605,24.666 50.076,22.128 51.41,19.525C52.138,18.104 52.862,16.669 53.399,15.162C53.538,14.773 53.663,14.379 53.771,13.981C53.818,13.808 53.859,13.632 53.929,13.467C54.006,13.285 54.125,13.141 54.263,13.003C54.753,12.512 55.13,11.98 55.3,11.296C55.382,10.962 55.417,10.614 55.403,10.27C55.39,9.947 55.305,9.628 55.335,9.304C55.384,8.761 55.806,8.386 56.164,8.019C56.383,7.795 56.621,7.577 56.817,7.333C56.997,7.108 57.157,6.81 57.082,6.513C56.87,5.672 55.858,6.423 55.454,6.643C55.182,6.793 54.879,6.885 54.668,7.126L54.919,7.377C55.242,6.981 55.57,6.589 55.879,6.182C56.187,5.777 56.513,5.343 56.717,4.875C56.8,4.684 56.833,4.464 56.701,4.287C56.581,4.126 56.369,4.072 56.178,4.105C55.939,4.145 55.72,4.302 55.523,4.433C55.322,4.568 55.128,4.717 54.946,4.877C54.502,5.265 54.194,5.745 53.845,6.214C53.708,6.397 54.015,6.573 54.151,6.393C54.462,5.978 54.753,5.547 54.994,5.088C55.211,4.674 55.451,4.185 55.489,3.713C55.506,3.513 55.431,3.296 55.245,3.196C55.022,3.074 54.788,3.213 54.61,3.349C54.245,3.627 53.991,4.002 53.729,4.372C53.405,4.829 53.24,5.319 53.077,5.849C53.01,6.067 53.352,6.161 53.419,5.943C53.585,5.407 53.749,4.868 53.848,4.315C53.896,4.044 53.932,3.768 53.941,3.493C53.948,3.27 53.975,2.959 53.854,2.762C53.734,2.567 53.476,2.557 53.293,2.664C53.088,2.784 52.926,3.007 52.791,3.198C52.487,3.625 52.292,4.13 52.176,4.639C52.024,5.308 52,5.997 51.864,6.669H52.206C52.036,6.069 51.618,5.542 51.057,5.263C50.801,5.136 50.506,5.049 50.221,5.119C49.938,5.187 49.745,5.431 49.741,5.721C49.737,6.056 49.946,6.349 50.087,6.638C50.251,6.978 50.362,7.345 50.422,7.717C50.481,8.084 50.498,8.482 50.433,8.85C50.37,9.208 50.224,9.541 50.051,9.857C49.7,10.499 49.311,11.125 48.932,11.751C48.529,12.417 48.113,13.074 47.683,13.722C46.831,15.007 45.928,16.258 44.974,17.468C43.897,18.836 42.756,20.153 41.559,21.417C41.402,21.582 41.652,21.833 41.81,21.667Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M52.178,6.945C52.364,6.869 52.567,6.967 52.738,7.047C52.923,7.133 53.106,7.236 53.263,7.367C53.562,7.619 53.785,7.969 53.789,8.369C53.792,8.597 54.146,8.598 54.144,8.369C54.138,7.869 53.872,7.408 53.49,7.097C53.298,6.941 53.087,6.815 52.86,6.715C52.621,6.609 52.343,6.497 52.083,6.603C51.995,6.64 51.932,6.721 51.96,6.821C51.983,6.905 52.089,6.982 52.178,6.945Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M33.113,20.362C33.612,20.112 34.264,20.168 34.707,20.513C34.783,20.571 34.884,20.586 34.958,20.513C35.019,20.451 35.034,20.321 34.958,20.262C34.381,19.814 33.59,19.728 32.934,20.056C32.73,20.158 32.909,20.464 33.113,20.362Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M27.998,19.365C28.242,19.396 28.515,19.429 28.738,19.552C28.763,19.566 28.788,19.581 28.811,19.597C28.831,19.61 28.857,19.629 28.86,19.632C28.904,19.668 28.945,19.708 28.982,19.752C29.001,19.776 28.971,19.736 28.989,19.761C28.998,19.774 29.007,19.787 29.015,19.8C29.03,19.824 29.043,19.848 29.056,19.874C29.069,19.901 29.049,19.854 29.06,19.882C29.066,19.897 29.071,19.912 29.075,19.926C29.079,19.938 29.082,19.95 29.085,19.962C29.085,19.962 29.095,20.018 29.091,19.989C29.104,20.084 29.164,20.167 29.269,20.167C29.355,20.167 29.458,20.085 29.446,19.989C29.406,19.677 29.217,19.425 28.95,19.265C28.663,19.092 28.323,19.051 27.998,19.011C27.902,18.999 27.82,19.101 27.82,19.188C27.82,19.294 27.902,19.353 27.998,19.365Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M44.567,18.245C45.371,20.372 47.244,21.821 49.157,22.916C49.355,23.029 49.534,22.723 49.336,22.61C47.512,21.566 45.678,20.184 44.909,18.151C44.829,17.94 44.486,18.031 44.567,18.245Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M20.313,59.766C20.657,59.948 21.045,60.059 21.44,60.088C21.641,60.103 21.851,60.095 22.033,60.014C22.215,59.933 22.364,59.766 22.365,59.578C22.366,59.476 22.324,59.377 22.279,59.283C22.029,58.754 21.677,58.266 21.244,57.852C21.238,58.17 21.009,58.44 20.826,58.709C20.612,59.023 20.449,59.367 20.345,59.726"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M20.222,59.919C20.515,60.071 20.829,60.181 21.156,60.232C21.476,60.282 21.819,60.305 22.121,60.167C22.403,60.038 22.591,59.748 22.524,59.436C22.49,59.28 22.403,59.129 22.328,58.989C22.253,58.848 22.17,58.71 22.081,58.577C21.875,58.269 21.635,57.984 21.368,57.726C21.254,57.616 21.072,57.699 21.065,57.851C21.051,58.175 20.784,58.442 20.618,58.701C20.424,59.003 20.275,59.334 20.173,59.678C20.108,59.898 20.45,59.991 20.515,59.773C20.62,59.419 20.779,59.088 20.988,58.783C21.186,58.494 21.403,58.216 21.42,57.851L21.117,57.977C21.367,58.218 21.593,58.482 21.786,58.772C21.878,58.911 21.963,59.054 22.04,59.202C22.103,59.322 22.224,59.497 22.176,59.638C22.075,59.937 21.65,59.929 21.399,59.907C21.052,59.877 20.71,59.774 20.401,59.613C20.199,59.508 20.019,59.814 20.222,59.919Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M39.198,39.118C38.747,40.771 38.264,42.416 37.751,44.051C37.683,44.27 38.025,44.363 38.093,44.146C38.606,42.51 39.089,40.865 39.54,39.212C39.6,38.992 39.258,38.897 39.198,39.118Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M49.386,42.15C49.365,42.465 49.439,42.783 49.589,43.061C49.633,43.143 49.753,43.175 49.832,43.125C49.915,43.071 49.943,42.969 49.895,42.882C49.879,42.852 49.864,42.822 49.85,42.792C49.846,42.783 49.842,42.774 49.838,42.765C49.847,42.785 49.847,42.786 49.839,42.768C49.834,42.754 49.829,42.741 49.824,42.727C49.8,42.662 49.78,42.595 49.765,42.526C49.758,42.493 49.753,42.46 49.747,42.427C49.745,42.414 49.746,42.417 49.749,42.438C49.747,42.429 49.746,42.419 49.745,42.41C49.743,42.393 49.742,42.376 49.741,42.359C49.736,42.29 49.736,42.22 49.741,42.15C49.747,42.057 49.655,41.969 49.564,41.973C49.462,41.977 49.393,42.051 49.386,42.15Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M50.577,41.92C50.489,42.24 50.529,42.583 50.684,42.877C50.727,42.959 50.848,42.991 50.926,42.94C51.01,42.886 51.036,42.786 50.99,42.698C50.981,42.681 50.973,42.665 50.965,42.648C50.961,42.64 50.957,42.631 50.954,42.623C50.961,42.642 50.963,42.645 50.958,42.633C50.946,42.601 50.934,42.569 50.924,42.535C50.915,42.504 50.907,42.473 50.901,42.441C50.898,42.428 50.896,42.414 50.893,42.4C50.89,42.38 50.89,42.382 50.894,42.406C50.893,42.397 50.891,42.388 50.891,42.379C50.884,42.314 50.883,42.249 50.888,42.185C50.889,42.167 50.889,42.147 50.893,42.13C50.883,42.174 50.893,42.133 50.895,42.122C50.901,42.086 50.91,42.05 50.919,42.014C50.944,41.925 50.889,41.817 50.796,41.796C50.702,41.775 50.604,41.824 50.577,41.92Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M51.758,42.24V43.06C51.758,43.153 51.839,43.242 51.935,43.237C52.031,43.233 52.112,43.16 52.112,43.06V42.24C52.112,42.147 52.031,42.058 51.935,42.063C51.839,42.067 51.758,42.141 51.758,42.24Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M12.424,56.129C12.54,56.405 12.656,56.68 12.771,56.956C12.79,57.001 12.809,57.037 12.853,57.062C12.891,57.084 12.947,57.094 12.99,57.08C13.071,57.054 13.152,56.953 13.113,56.862C12.998,56.586 12.882,56.31 12.766,56.035C12.747,55.99 12.728,55.954 12.684,55.929C12.646,55.906 12.59,55.897 12.548,55.911C12.466,55.937 12.385,56.037 12.424,56.129Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M13.322,55.365C13.436,55.531 13.539,55.704 13.631,55.883C13.725,56.067 13.792,56.222 13.86,56.412C13.891,56.499 13.982,56.567 14.078,56.536C14.164,56.508 14.235,56.411 14.202,56.318C14.059,55.918 13.868,55.537 13.628,55.186C13.576,55.11 13.47,55.068 13.386,55.122C13.31,55.172 13.266,55.283 13.322,55.365Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M14.262,55.125C14.339,55.187 14.41,55.254 14.476,55.327C14.492,55.345 14.508,55.363 14.523,55.381C14.532,55.391 14.54,55.402 14.549,55.412C14.551,55.415 14.57,55.44 14.559,55.425C14.546,55.408 14.572,55.442 14.574,55.446C14.58,55.454 14.587,55.463 14.593,55.472C14.608,55.493 14.623,55.515 14.637,55.538C14.689,55.618 14.733,55.702 14.773,55.789C14.794,55.836 14.766,55.771 14.777,55.798C14.782,55.811 14.787,55.823 14.792,55.835C14.8,55.857 14.809,55.88 14.816,55.903C14.833,55.95 14.847,55.999 14.859,56.048C14.882,56.137 14.987,56.201 15.077,56.171C15.17,56.141 15.226,56.05 15.201,55.953C15.094,55.534 14.85,55.147 14.513,54.875C14.441,54.816 14.332,54.799 14.262,54.875C14.203,54.939 14.185,55.063 14.262,55.125Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M12.622,54.16C12.229,54.096 11.935,53.694 11.988,53.297C12.016,53.093 12.16,52.878 12.369,52.829C12.463,52.807 12.549,52.828 12.617,52.896C12.669,52.947 12.719,53.036 12.685,53.109L13.009,53.152C12.983,52.965 12.943,52.723 13.057,52.557C13.135,52.443 13.281,52.373 13.388,52.489C13.516,52.627 13.573,52.85 13.625,53.025C13.693,53.254 13.735,53.487 13.751,53.725C13.766,53.951 14.121,53.953 14.106,53.725C14.084,53.405 14.026,53.089 13.921,52.786C13.832,52.528 13.719,52.216 13.445,52.106C13.185,52.003 12.907,52.147 12.759,52.366C12.584,52.625 12.627,52.954 12.667,53.246C12.688,53.394 12.93,53.42 12.991,53.288C13.116,53.021 13.009,52.73 12.771,52.566C12.52,52.394 12.198,52.464 11.974,52.644C11.551,52.985 11.54,53.617 11.838,54.042C12.001,54.275 12.242,54.456 12.528,54.502C12.622,54.517 12.719,54.477 12.746,54.378C12.769,54.293 12.717,54.175 12.622,54.16Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M50.41,44.292C50.318,44.871 50.407,45.455 50.676,45.977C50.726,46.075 50.881,46.095 50.954,46.013C51.346,45.572 51.511,44.983 51.414,44.402L51.072,44.496C51.216,44.889 51.424,45.246 51.694,45.565C51.777,45.662 51.967,45.613 51.99,45.486C52.094,44.921 51.854,44.343 51.376,44.021C51.297,43.967 51.18,44.006 51.134,44.085C51.083,44.172 51.118,44.273 51.197,44.327C51.534,44.554 51.721,44.992 51.648,45.392L51.944,45.314C51.716,45.045 51.535,44.734 51.414,44.402C51.335,44.186 51.035,44.272 51.072,44.496C51.147,44.944 51.004,45.423 50.704,45.762L50.982,45.798C50.761,45.367 50.676,44.865 50.752,44.386C50.767,44.292 50.728,44.195 50.628,44.168C50.544,44.145 50.425,44.197 50.41,44.292Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M32.435,63.465C31.756,62.463 31.132,61.424 30.569,60.353C30.433,60.093 30.294,59.833 30.171,59.566C30.062,59.326 29.943,59.016 30.05,58.755C30.143,58.53 30.393,58.363 30.611,58.533C30.813,58.692 30.964,58.948 31.107,59.158C31.471,59.697 31.763,60.28 31.979,60.893C32.056,61.112 32.354,61.021 32.321,60.798C32.233,60.213 32.28,59.612 32.449,59.046C32.534,58.762 32.65,58.489 32.796,58.231C32.911,58.03 33.074,57.757 33.342,57.771C33.597,57.784 33.797,58.022 33.866,58.25C33.96,58.558 33.896,58.894 33.841,59.203C33.725,59.854 33.607,60.506 33.49,61.157C33.462,61.309 33.666,61.485 33.786,61.33C34.25,60.73 35.316,60.492 35.696,61.312C35.767,61.465 35.802,61.64 35.784,61.809C35.764,61.994 35.676,62.121 35.561,62.26C35.442,62.404 35.361,62.591 35.481,62.76C35.589,62.911 35.799,62.952 35.933,62.813C36.091,62.649 35.841,62.398 35.682,62.563C35.744,62.598 35.782,62.588 35.796,62.532C35.811,62.512 35.826,62.493 35.843,62.474C35.877,62.434 35.913,62.395 35.944,62.352C35.995,62.283 36.033,62.21 36.065,62.132C36.129,61.972 36.152,61.796 36.138,61.624C36.109,61.264 35.933,60.915 35.649,60.689C34.995,60.171 34.012,60.462 33.535,61.079L33.832,61.251C33.945,60.622 34.058,59.992 34.171,59.362C34.265,58.837 34.374,58.232 34.013,57.78C33.707,57.397 33.182,57.29 32.803,57.631C32.617,57.799 32.49,58.036 32.381,58.258C32.262,58.498 32.164,58.75 32.091,59.007C31.916,59.622 31.885,60.262 31.979,60.893L32.321,60.798C32.102,60.175 31.812,59.579 31.446,59.029C31.169,58.612 30.746,57.879 30.141,58.168C29.52,58.465 29.618,59.199 29.853,59.717C30.144,60.359 30.495,60.981 30.846,61.592C31.247,62.292 31.676,62.976 32.129,63.644C32.256,63.832 32.563,63.655 32.435,63.465Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M28.647,17.531C29.063,17.114 29.691,16.944 30.261,17.096C30.482,17.155 30.576,16.813 30.356,16.754C29.665,16.57 28.901,16.774 28.396,17.28C28.234,17.442 28.485,17.693 28.647,17.531Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M33.311,17.402C33.672,17.378 34.029,17.457 34.341,17.642C34.681,17.843 34.914,18.161 35.138,18.478C35.193,18.556 35.292,18.593 35.38,18.542C35.457,18.496 35.499,18.378 35.444,18.299C35.184,17.931 34.914,17.568 34.52,17.335C34.158,17.122 33.731,17.019 33.311,17.048C33.085,17.063 33.083,17.418 33.311,17.402Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M30.435,25.147C30.385,24.885 30.644,24.656 30.888,24.638C31.145,24.619 31.388,24.791 31.536,24.986C31.723,25.232 31.794,25.553 31.833,25.854C31.871,26.158 31.892,26.469 31.885,26.776C31.877,27.089 31.832,27.399 31.75,27.701C31.674,27.983 31.579,28.346 31.34,28.536C30.709,29.037 30.548,27.726 30.521,27.369C30.505,27.142 30.15,27.141 30.167,27.369C30.192,27.711 30.25,28.056 30.365,28.381C30.457,28.639 30.609,28.902 30.895,28.975C31.58,29.152 31.926,28.376 32.076,27.855C32.269,27.183 32.27,26.484 32.18,25.796C32.104,25.215 31.875,24.601 31.294,24.361C30.704,24.117 29.962,24.562 30.094,25.241C30.137,25.465 30.479,25.37 30.435,25.147Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M30.398,27.884C30.333,27.663 30.302,27.433 30.305,27.203C30.307,27.038 30.337,26.856 30.465,26.752C30.552,26.682 30.668,26.661 30.779,26.645C31.081,26.602 31.387,26.577 31.693,26.569C31.738,26.568 31.786,26.567 31.825,26.59C31.878,26.619 31.903,26.682 31.92,26.741C32.065,27.269 31.849,27.822 31.626,28.321C31.586,28.411 31.542,28.503 31.466,28.565C31.323,28.68 31.106,28.649 30.951,28.552C30.782,28.446 30.659,28.271 30.616,28.076"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M30.567,27.835C30.515,27.653 30.485,27.468 30.481,27.278C30.479,27.162 30.472,26.998 30.558,26.906C30.648,26.808 30.845,26.811 30.967,26.797C31.157,26.774 31.347,26.759 31.538,26.75C31.583,26.748 31.628,26.746 31.672,26.745C31.686,26.745 31.713,26.749 31.726,26.744C31.757,26.733 31.741,26.754 31.725,26.731C31.763,26.786 31.771,26.877 31.779,26.94C31.801,27.106 31.786,27.277 31.751,27.44C31.712,27.621 31.652,27.796 31.584,27.967C31.529,28.104 31.478,28.276 31.385,28.393C31.298,28.503 31.142,28.461 31.038,28.397C30.905,28.315 30.822,28.177 30.786,28.028C30.733,27.806 30.391,27.9 30.444,28.122C30.539,28.52 30.926,28.886 31.358,28.803C31.571,28.762 31.693,28.595 31.777,28.409C31.88,28.182 31.978,27.951 32.048,27.712C32.112,27.49 32.153,27.255 32.141,27.023C32.13,26.818 32.1,26.528 31.892,26.426C31.784,26.373 31.655,26.39 31.538,26.396C31.411,26.401 31.284,26.41 31.157,26.422C30.936,26.443 30.685,26.448 30.479,26.538C29.977,26.759 30.107,27.515 30.225,27.929C30.288,28.149 30.63,28.055 30.567,27.835Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M30.255,21.343C29.932,21.223 29.544,21.356 29.335,21.622C29.091,21.932 29.133,22.344 29.38,22.638C29.516,22.8 29.707,22.893 29.914,22.917C30.009,22.928 30.091,22.828 30.091,22.74C30.091,22.635 30.01,22.574 29.914,22.563C29.954,22.567 29.888,22.557 29.881,22.555C29.86,22.549 29.84,22.543 29.819,22.535C29.854,22.548 29.795,22.523 29.788,22.519C29.774,22.512 29.76,22.503 29.747,22.495C29.713,22.473 29.637,22.399 29.614,22.365C29.56,22.285 29.549,22.263 29.529,22.169C29.527,22.159 29.525,22.148 29.523,22.138C29.525,22.158 29.526,22.158 29.524,22.136C29.523,22.115 29.521,22.094 29.522,22.072C29.522,22.064 29.531,22 29.524,22.038C29.527,22.02 29.531,22.001 29.536,21.983C29.542,21.965 29.547,21.948 29.554,21.931C29.539,21.967 29.567,21.909 29.57,21.902C29.581,21.884 29.592,21.867 29.604,21.85C29.584,21.879 29.615,21.836 29.621,21.83C29.633,21.817 29.646,21.803 29.659,21.791C29.664,21.786 29.714,21.746 29.684,21.768C29.716,21.744 29.75,21.723 29.785,21.705C29.792,21.702 29.843,21.681 29.808,21.694C29.828,21.686 29.848,21.679 29.868,21.673C29.888,21.668 29.909,21.664 29.929,21.659C29.95,21.655 29.95,21.655 29.929,21.658C29.937,21.657 29.945,21.656 29.952,21.656C29.992,21.654 30.031,21.653 30.07,21.657C30.028,21.653 30.092,21.664 30.1,21.666C30.121,21.671 30.141,21.678 30.16,21.685C30.25,21.718 30.355,21.648 30.379,21.561C30.406,21.462 30.345,21.376 30.255,21.343Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M13.965,22.636C14.384,24.84 15.388,26.918 16.836,28.63C17.249,29.118 17.699,29.574 18.18,29.995C18.351,30.144 18.603,29.894 18.431,29.744C16.775,28.295 15.507,26.419 14.786,24.34C14.582,23.753 14.423,23.152 14.307,22.542C14.264,22.318 13.922,22.413 13.965,22.636Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M12.832,28.095C13.106,29.494 13.875,30.78 14.979,31.682C15.154,31.826 15.407,31.576 15.23,31.431C14.167,30.563 13.438,29.348 13.174,28.001C13.13,27.777 12.788,27.872 12.832,28.095Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M26.235,14.199C25.991,13.7 26.549,13.239 26.917,12.995C27.405,12.672 27.934,12.57 28.514,12.627C29.718,12.745 30.837,13.386 31.848,14.006C34.085,15.379 36.085,17.085 38.199,18.633C39.401,19.514 40.624,20.366 41.862,21.196C42.052,21.323 42.23,21.016 42.041,20.889C40.876,20.109 39.724,19.308 38.59,18.482C37.458,17.658 36.356,16.796 35.244,15.944C34.139,15.098 33.008,14.289 31.815,13.571C30.753,12.933 29.554,12.299 28.288,12.257C27.608,12.235 27.01,12.457 26.48,12.876C26.019,13.241 25.64,13.788 25.929,14.378C26.029,14.583 26.335,14.403 26.235,14.199Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M33.578,14.743C34.428,14.113 35.418,13.627 36.473,13.55C39.203,13.351 41.992,14.949 43.35,17.299C43.579,17.695 43.816,18.124 43.779,18.58C43.746,19.003 43.482,19.369 43.213,19.696C42.886,20.094 42.535,20.471 42.185,20.849C42.141,20.896 42.095,20.945 42.035,20.969C41.959,21 41.873,20.987 41.794,20.967C41.401,20.867 41.065,20.62 40.74,20.377C40.379,20.107 40.016,19.837 39.654,19.567C38.417,18.643 37.18,17.719 35.953,16.782C35.233,16.231 34.517,15.676 33.801,15.121C33.652,15.005 33.496,14.781 33.64,14.659"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M33.671,14.897C34.34,14.405 35.083,13.998 35.899,13.815C36.616,13.655 37.384,13.685 38.103,13.817C39.538,14.08 40.883,14.788 41.937,15.794C42.476,16.308 42.928,16.896 43.29,17.547C43.494,17.912 43.687,18.323 43.575,18.75C43.471,19.143 43.184,19.467 42.926,19.769C42.779,19.94 42.629,20.108 42.478,20.275C42.334,20.433 42.183,20.651 42.011,20.777C41.875,20.877 41.588,20.713 41.46,20.645C41.272,20.545 41.098,20.421 40.927,20.295C40.172,19.737 39.423,19.173 38.672,18.611C37.812,17.968 36.953,17.323 36.1,16.67C35.672,16.344 35.246,16.016 34.821,15.687C34.724,15.612 33.696,14.863 33.769,14.785C33.925,14.619 33.674,14.368 33.518,14.535C33.182,14.893 33.687,15.254 33.941,15.451C34.337,15.758 34.734,16.065 35.131,16.371C35.961,17.01 36.796,17.644 37.633,18.273C38.476,18.906 39.321,19.536 40.166,20.167C40.555,20.458 40.941,20.795 41.384,21.003C41.554,21.083 41.753,21.168 41.944,21.166C42.17,21.163 42.304,20.986 42.445,20.834C42.789,20.463 43.134,20.091 43.447,19.692C43.702,19.367 43.928,19.004 43.96,18.581C43.997,18.107 43.766,17.662 43.537,17.263C43.342,16.924 43.122,16.602 42.878,16.296C41.879,15.045 40.476,14.108 38.942,13.653C38.079,13.398 37.144,13.284 36.248,13.397C35.236,13.524 34.306,13.992 33.492,14.591C33.31,14.724 33.487,15.032 33.671,14.897Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M26.36,13.296C26.369,13.492 26.468,13.65 26.624,13.767C26.774,13.88 26.955,13.923 27.125,14C27.477,14.159 27.617,14.565 27.927,14.782C27.999,14.832 28.082,14.873 28.166,14.896C28.228,14.912 28.343,14.907 28.363,14.941C28.395,14.993 28.384,15.081 28.4,15.14C28.42,15.214 28.454,15.282 28.499,15.344C28.587,15.463 28.706,15.549 28.825,15.636C28.927,15.711 29.048,15.792 29.087,15.92C29.152,16.138 29.494,16.045 29.429,15.825C29.339,15.528 29.074,15.413 28.862,15.218C28.749,15.115 28.744,15.022 28.713,14.879C28.67,14.685 28.545,14.592 28.353,14.567C27.975,14.519 27.829,14.11 27.575,13.876C27.43,13.742 27.259,13.671 27.076,13.602C26.94,13.551 26.722,13.47 26.714,13.296C26.704,13.069 26.349,13.067 26.36,13.296Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M27.757,12.601C27.842,12.758 27.953,12.899 28.091,13.012C28.232,13.127 28.402,13.19 28.547,13.296C28.781,13.468 28.821,13.803 28.999,14.022C29.096,14.14 29.222,14.214 29.37,14.251C29.453,14.272 29.538,14.281 29.614,14.324C29.697,14.371 29.761,14.446 29.822,14.517C30.114,14.856 30.389,15.21 30.672,15.556C30.817,15.733 31.066,15.481 30.923,15.305C30.65,14.971 30.38,14.634 30.104,14.303C29.988,14.164 29.859,14.036 29.688,13.969C29.545,13.913 29.378,13.923 29.271,13.797C29.093,13.586 29.057,13.29 28.854,13.092C28.727,12.968 28.562,12.904 28.415,12.81C28.263,12.714 28.148,12.58 28.063,12.422C27.955,12.221 27.649,12.4 27.757,12.601Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M30.748,13.397C30.848,13.434 30.897,13.625 30.94,13.721C30.974,13.798 31.013,13.87 31.066,13.936C31.13,14.015 31.213,14.056 31.295,14.112C31.379,14.168 31.425,14.285 31.476,14.369C31.544,14.48 31.611,14.59 31.679,14.701C31.814,14.923 31.949,15.145 32.084,15.367C32.203,15.562 32.509,15.384 32.39,15.188C32.248,14.955 32.106,14.721 31.963,14.487C31.889,14.365 31.814,14.242 31.74,14.12C31.672,14.009 31.61,13.899 31.501,13.823C31.434,13.776 31.365,13.753 31.318,13.682C31.271,13.611 31.241,13.529 31.207,13.451C31.13,13.272 31.031,13.125 30.842,13.055C30.752,13.022 30.648,13.092 30.624,13.179C30.597,13.278 30.657,13.364 30.748,13.397Z"
|
||||
android:fillColor="#662D91"/>
|
||||
</vector>
|
||||
|
|
@ -0,0 +1,165 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="343dp"
|
||||
android:height="197dp"
|
||||
android:viewportWidth="343"
|
||||
android:viewportHeight="197">
|
||||
<path
|
||||
android:pathData="M174.1,107.07C168.49,120.15 163.97,133.69 160.6,147.51C159.02,154.01 157.69,160.57 156.62,167.17C156.15,170.08 156.08,173.24 154.89,175.96C153.77,178.5 151.88,180.7 149.52,182.16C147.98,183.1 146.27,183.73 144.8,184.75C143.06,185.96 141.47,188.25 141.99,190.47C142.4,192.2 144.12,193.31 145.82,193.83C149.07,194.82 152.52,194.32 155.67,193.23C156.45,192.96 157.21,192.66 157.97,192.33C158.48,192.1 159.44,191.37 160,191.36C160.75,191.35 160.55,191.49 160.51,192.31C160.46,193.28 160.32,194.26 160.22,195.24C163.26,195.95 166.4,196.18 169.51,196.4C171.86,196.57 174.31,196.73 176.49,195.83C181.79,169.81 186.62,143.07 199.83,119.62C200.03,119.26 200.23,118.92 200.43,118.57"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M173.7,106.83C170.46,114.37 167.58,122.06 165.07,129.88C162.55,137.75 160.41,145.74 158.66,153.82C157.76,157.98 156.97,162.15 156.28,166.35C155.67,170.03 155.66,173.93 153.7,177.23C152.83,178.69 151.68,180 150.32,181.03C148.84,182.16 147.1,182.83 145.49,183.76C144.01,184.61 142.68,185.79 141.95,187.37C141.28,188.81 141.18,190.53 142.11,191.89C143.01,193.2 144.51,193.96 146.01,194.37C147.9,194.89 149.88,194.93 151.8,194.66C153.76,194.39 155.66,193.8 157.48,193.04C158.18,192.75 158.8,192.37 159.46,192.02C159.6,191.95 159.75,191.88 159.9,191.85C159.99,191.83 160.15,191.87 160.23,191.83L160.26,191.84C160.38,191.88 160.33,191.8 160.09,191.6C160.08,191.61 160.1,191.7 160.09,191.72C160.04,191.85 160.05,192.04 160.04,192.18C159.97,193.2 159.85,194.22 159.75,195.24C159.73,195.43 159.91,195.65 160.09,195.69C163.44,196.46 166.89,196.7 170.31,196.93C171.88,197.03 173.46,197.07 175.01,196.76C175.37,196.69 175.73,196.6 176.08,196.48C176.45,196.36 176.84,196.28 176.95,195.88C177.16,195.12 177.27,194.31 177.43,193.54C178.69,187.33 179.93,181.11 181.28,174.92C182.63,168.69 184.1,162.49 185.79,156.35C187.48,150.25 189.39,144.21 191.65,138.29C193.92,132.36 196.54,126.55 199.61,120.98C200.01,120.25 200.41,119.53 200.83,118.8C201.13,118.28 200.32,117.81 200.02,118.33C194.72,127.54 190.66,137.41 187.43,147.53C184.22,157.58 181.8,167.87 179.62,178.19C178.38,184.02 177.22,189.87 176.03,195.71L176.36,195.38C173.9,196.36 171.21,196.06 168.64,195.87C165.86,195.66 163.07,195.41 160.34,194.78L160.69,195.24C160.79,194.22 160.9,193.2 160.98,192.18C161.02,191.7 161.12,191.13 160.53,190.94C159.93,190.75 159.3,191.04 158.78,191.33C158.07,191.73 157.39,192.08 156.63,192.38C153.1,193.76 148.85,194.63 145.22,193.11C143.81,192.52 142.44,191.42 142.36,189.79C142.28,188.1 143.35,186.53 144.6,185.49C146.04,184.29 147.88,183.66 149.48,182.72C150.94,181.87 152.25,180.74 153.32,179.42C154.4,178.07 155.25,176.55 155.78,174.91C156.36,173.11 156.56,171.22 156.79,169.35C157.29,165.26 158.1,161.2 158.92,157.17C160.57,149.06 162.61,141.04 165.04,133.13C167.43,125.35 170.18,117.69 173.3,110.17C173.7,109.21 174.1,108.26 174.51,107.31C174.74,106.76 173.93,106.28 173.7,106.83Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M174.11,107.07C168.49,120.14 163.97,133.69 160.6,147.51C158.66,155.48 157.39,163.57 155.62,171.57C155.54,171.91 155.47,172.29 155.62,172.61C155.81,172.98 156.25,173.14 156.64,173.27C161.61,174.86 166.6,176.45 171.74,177.36C174.34,177.81 176.97,178.09 179.61,178.09C181.03,178.09 181.46,178.31 182.08,177.16C182.63,176.15 182.77,174.63 183.07,173.51C185.63,164.14 188.3,154.78 191.68,145.66C195.5,135.37 205.86,114.36 212.26,105.4"
|
||||
android:fillColor="#3B1954"/>
|
||||
<path
|
||||
android:pathData="M197.73,130.53C197.39,127.95 196.51,125.45 195.18,123.21C193.83,120.93 191.29,119.12 189.47,117.18C188.96,116.63 188.43,116.07 187.76,115.76C185.1,114.53 185.31,117.82 185.26,119.46C185.2,121.76 185.38,124.06 185.74,126.33C186.46,130.86 187.87,135.25 189.52,139.51C190.45,141.88 191.68,144.5 191.35,147.1C192.8,142.66 194.67,138.35 196.92,134.24C197.26,133.62 197.61,133 197.74,132.3C197.85,131.72 197.8,131.12 197.73,130.53Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M195.73,115.36C194.63,126.63 194.67,139.8 203.4,151.04C207.51,156.32 212.8,165.22 217.31,170.16C219.29,172.34 221.72,174.36 223.11,176.99C224.41,179.44 224.96,182.29 224.62,185.05C224.4,186.83 223.84,188.56 223.72,190.35C223.59,192.46 224.39,195.13 226.45,196.11C228.06,196.87 230,196.21 231.47,195.2C234.26,193.28 236.02,190.27 237.13,187.13C237.41,186.35 237.64,185.57 237.85,184.77C237.99,184.24 238.02,183.02 238.36,182.59C238.82,181.99 238.8,182.23 239.42,182.77C240.15,183.42 240.83,184.14 241.53,184.82C243.99,182.88 246.11,180.58 248.23,178.28C249.83,176.55 251.47,174.74 252.13,172.48C235.05,152.13 217.1,131.71 206.96,106.78C206.8,106.4 206.65,106.03 206.51,105.66"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M195.25,115.36C194.55,122.57 194.41,129.94 196.16,137.02C197.09,140.79 198.55,144.43 200.57,147.76C201.58,149.43 202.78,150.96 203.94,152.53C205,153.97 206.02,155.44 207.03,156.91C209.21,160.09 211.34,163.31 213.65,166.4C214.67,167.76 215.71,169.1 216.85,170.36C218.17,171.82 219.63,173.15 220.9,174.64C222.27,176.24 223.28,178.05 223.81,180.09C224.37,182.22 224.33,184.36 223.9,186.5C223.51,188.4 223.02,190.3 223.36,192.25C223.63,193.82 224.41,195.4 225.78,196.28C227.41,197.32 229.42,196.91 231.01,196.03C232.65,195.12 234.01,193.73 235.09,192.21C236.2,190.65 237.01,188.89 237.64,187.09C237.97,186.14 238.28,185.18 238.42,184.19C238.47,183.84 238.5,183.47 238.61,183.14C238.66,182.98 238.8,182.87 238.85,182.72L238.91,182.66L238.64,182.68C238.63,182.72 238.88,182.92 238.92,182.95C239.68,183.68 240.44,184.42 241.2,185.15C241.39,185.35 241.66,185.31 241.86,185.15C244.5,183.05 246.8,180.55 249.07,178.06C250.09,176.94 251.09,175.77 251.81,174.43C251.99,174.11 252.14,173.78 252.28,173.45C252.4,173.16 252.63,172.73 252.58,172.41C252.54,172.1 252.15,171.78 251.95,171.55C251.68,171.23 251.41,170.91 251.15,170.59C247.05,165.72 242.95,160.87 238.92,155.95C234.86,150.99 230.89,145.96 227.11,140.79C223.37,135.66 219.81,130.4 216.57,124.93C213.31,119.43 210.36,113.72 207.89,107.82C207.57,107.06 207.26,106.3 206.95,105.53C206.73,104.98 205.82,105.22 206.05,105.78C208.02,110.75 210.31,115.6 212.86,120.3C215.38,124.93 218.14,129.43 221.08,133.82C224.03,138.23 227.16,142.52 230.4,146.73C233.62,150.92 236.94,155.03 240.3,159.1C243.69,163.19 247.12,167.25 250.53,171.31C250.95,171.81 251.37,172.31 251.79,172.81L251.67,172.35C250.92,174.85 249,176.76 247.27,178.63C245.36,180.69 243.4,182.73 241.2,184.49H241.86C241.09,183.74 240.31,182.99 239.53,182.24C239.31,182.03 239.1,181.78 238.77,181.77C238.41,181.76 238.13,182.07 237.95,182.35C237.56,182.94 237.57,183.71 237.45,184.38C237.27,185.4 236.89,186.43 236.53,187.41C235.87,189.16 235,190.86 233.84,192.33C232.65,193.81 231.09,195.23 229.23,195.77C228.34,196.03 227.36,196.07 226.52,195.62C225.82,195.25 225.3,194.65 224.93,193.97C224.07,192.4 224.07,190.61 224.37,188.9C224.75,186.75 225.31,184.69 225.15,182.49C225,180.44 224.43,178.43 223.44,176.62C222.5,174.89 221.13,173.44 219.77,172.04C218.5,170.75 217.26,169.46 216.12,168.06C213.74,165.14 211.64,162.01 209.52,158.9C208.47,157.36 207.43,155.82 206.36,154.3C205.36,152.87 204.3,151.49 203.27,150.1C200.9,146.9 199.07,143.32 197.85,139.54C195.6,132.56 195.41,125.15 195.97,117.89C196.03,117.05 196.11,116.2 196.19,115.36C196.25,114.76 195.31,114.76 195.25,115.36Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M185.85,114.89C186.87,125.82 194.2,137.01 199.53,146.61C205.11,156.67 212.91,164.79 220.12,173.69C220.35,173.96 220.59,174.25 220.94,174.33C221.35,174.42 221.75,174.17 222.09,173.94C226.43,171.05 230.78,168.15 234.69,164.69C236.67,162.94 238.52,161.06 240.17,158.99C241.05,157.88 241.49,157.68 240.98,156.48C240.53,155.42 239.42,154.36 238.74,153.43C232.47,144.89 225.89,136.34 222.56,126.16C219.37,116.39 219.25,105.61 222.47,95.84"
|
||||
android:fillColor="#3B1954"/>
|
||||
<path
|
||||
android:pathData="M173.7,106.83C170.28,114.79 167.26,122.92 164.66,131.18C162.04,139.53 159.85,148.01 158.14,156.6C157.28,160.95 156.48,165.3 155.55,169.63C155.44,170.16 155.33,170.69 155.21,171.22C155.1,171.72 154.96,172.24 155.17,172.73C155.51,173.58 156.61,173.75 157.38,174C159.46,174.66 161.54,175.32 163.63,175.92C167.88,177.14 172.23,178.13 176.66,178.45C177.72,178.53 178.78,178.55 179.84,178.56C180.43,178.57 181.11,178.66 181.64,178.36C182.24,178.02 182.57,177.32 182.79,176.71C183.1,175.86 183.22,174.96 183.41,174.09C183.89,172 184.54,169.93 185.12,167.87C185.72,165.73 186.34,163.59 186.97,161.45C188.23,157.21 189.57,152.99 191.04,148.82C191.39,147.8 191.76,146.79 192.13,145.79C192.34,145.22 191.43,144.98 191.23,145.54C188.24,153.6 185.8,161.85 183.51,170.13C183.23,171.17 182.94,172.2 182.66,173.24C182.43,174.09 182.31,174.96 182.08,175.81C181.94,176.35 181.72,177.26 181.17,177.55C181,177.64 180.8,177.64 180.61,177.64C180.22,177.64 179.84,177.62 179.45,177.62C175.15,177.6 170.9,176.85 166.74,175.79C164.68,175.26 162.63,174.66 160.6,174.03C159.61,173.73 158.62,173.41 157.63,173.09C157.2,172.96 156.69,172.86 156.29,172.62C155.82,172.35 156.04,171.82 156.13,171.39C157.06,167.17 157.86,162.91 158.69,158.67C160.33,150.3 162.34,142.03 164.82,133.87C167.24,125.86 170.07,117.97 173.27,110.24C173.68,109.26 174.09,108.28 174.51,107.31C174.74,106.76 173.93,106.28 173.7,106.83Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M185.38,114.89C185.88,120.11 187.69,125.11 189.89,129.84C192.16,134.74 194.9,139.41 197.58,144.1C198.9,146.42 200.18,148.77 201.63,151.02C203.11,153.32 204.7,155.54 206.35,157.7C209.64,161.99 213.18,166.08 216.65,170.22C217.54,171.28 218.43,172.35 219.3,173.42C219.68,173.88 220.04,174.46 220.59,174.7C221.19,174.96 221.77,174.71 222.28,174.38C224.69,172.82 227.07,171.19 229.39,169.5C231.68,167.84 233.91,166.08 235.99,164.15C237.01,163.21 237.99,162.22 238.92,161.19C239.4,160.65 239.87,160.11 240.32,159.55C240.68,159.11 241.08,158.69 241.39,158.22C241.97,157.31 241.49,156.26 240.95,155.45C240.24,154.41 239.36,153.49 238.62,152.47C237.02,150.3 235.42,148.14 233.86,145.95C230.77,141.59 227.83,137.09 225.52,132.26C223.16,127.29 221.56,121.98 220.92,116.51C220.27,110.97 220.55,105.33 221.82,99.9C222.13,98.57 222.5,97.26 222.93,95.96C223.12,95.39 222.21,95.14 222.02,95.71C220.32,100.91 219.53,106.4 219.66,111.86C219.78,117.31 220.79,122.74 222.66,127.86C224.45,132.77 227,137.37 229.85,141.75C231.3,143.97 232.83,146.13 234.38,148.27C235.15,149.34 235.93,150.39 236.7,151.45C237.45,152.47 238.17,153.51 238.99,154.48C239.39,154.97 239.82,155.45 240.17,155.98C240.42,156.35 240.77,156.89 240.73,157.36C240.7,157.76 240.29,158.11 240.06,158.39C239.62,158.93 239.19,159.47 238.73,159.99C236.93,162.06 234.91,163.95 232.79,165.7C230.62,167.49 228.34,169.14 226.02,170.74C224.85,171.54 223.66,172.34 222.47,173.13C222.1,173.38 221.34,174.11 220.87,173.79C220.63,173.63 220.46,173.35 220.28,173.14C220.06,172.86 219.84,172.59 219.61,172.32C216.22,168.18 212.68,164.16 209.33,159.98C206,155.83 202.84,151.51 200.22,146.87C197.64,142.31 194.97,137.8 192.56,133.15C190.15,128.5 187.99,123.64 186.89,118.5C186.63,117.31 186.44,116.1 186.32,114.89C186.27,114.29 185.33,114.29 185.38,114.89Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M215.14,110.17C216.75,110.33 218.41,110.51 219.95,110.01C219.95,106.56 220.98,100.92 222.82,97.99C220.83,98.39 218.74,100.38 216.71,100.26C209.62,99.86 202.52,100.58 195.47,101.28C191.97,101.62 188.47,101.96 184.96,102.15C182,102.32 179.23,102.26 176.44,103.45C176.14,103.57 175.84,103.72 175.61,103.94C175.4,104.15 175.26,104.4 175.13,104.66C173.8,107.2 172.2,110.03 171.48,112.81C178.18,110.71 185.93,110.17 192.95,109.74C200.35,109.29 207.77,109.43 215.14,110.17Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M215.14,110.64C216.79,110.8 218.46,110.96 220.07,110.46C220.27,110.4 220.42,110.22 220.42,110.01C220.43,107.97 220.71,105.92 221.15,103.93C221.58,101.96 222.16,99.95 223.23,98.22C223.46,97.86 223.08,97.45 222.7,97.53C221.13,97.87 219.84,98.89 218.37,99.47C218.02,99.6 217.65,99.72 217.27,99.77C216.83,99.83 216.37,99.77 215.93,99.75C214.91,99.71 213.9,99.68 212.88,99.68C208.78,99.66 204.69,99.95 200.61,100.31C196.58,100.68 192.55,101.12 188.52,101.44C186.57,101.6 184.62,101.69 182.66,101.79C180.85,101.89 179.01,102.06 177.27,102.63C176.37,102.93 175.42,103.25 174.9,104.1C174.37,104.97 173.93,105.92 173.46,106.83C172.49,108.7 171.57,110.63 171.03,112.68C170.94,113.01 171.26,113.36 171.61,113.26C176.81,111.64 182.27,110.99 187.68,110.57C193.47,110.11 199.27,109.85 205.07,110C208.44,110.09 211.8,110.3 215.14,110.64C215.74,110.69 215.74,109.75 215.14,109.7C209.15,109.1 203.12,108.9 197.09,109.08C191.5,109.26 185.87,109.63 180.33,110.42C177.3,110.85 174.28,111.44 171.36,112.35L171.94,112.93C172.41,111.12 173.19,109.42 174.04,107.76C174.46,106.92 174.9,106.1 175.34,105.27C175.51,104.94 175.67,104.54 175.94,104.28C176.24,103.97 176.71,103.83 177.11,103.68C178.8,103.06 180.59,102.85 182.38,102.75C184.3,102.64 186.21,102.56 188.13,102.41C196.09,101.8 204.02,100.66 212.02,100.62C213.11,100.61 214.21,100.63 215.3,100.67C216.26,100.7 217.19,100.82 218.12,100.54C219.81,100.05 221.21,98.82 222.95,98.44L222.42,97.75C221.31,99.54 220.69,101.64 220.24,103.68C219.79,105.75 219.49,107.89 219.48,110.01L219.82,109.56C218.3,110.03 216.7,109.85 215.14,109.7C214.54,109.64 214.55,110.57 215.14,110.64Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M146.61,94.95C143.02,101.84 139.5,108.77 136.05,115.73C135.83,113.26 135.62,110.82 135.21,108.37C134.31,102.9 133.31,97.73 129.65,93.36C129.14,92.75 128.58,92.15 127.85,91.81C124.16,90.07 119.65,90.59 115.98,92.25C113.32,93.46 112.94,97.03 113.73,99.54C114.46,101.84 115.91,103.86 116.71,106.14C118.4,110.98 117.11,116.69 117.07,121.72C117.03,127.32 117.42,132.95 118.65,138.42C119.19,140.84 119.64,142.71 121.49,144.51C123.2,146.19 125.46,147.3 127.81,147.71C136.1,149.15 142.98,143.11 147.52,136.95C153.02,129.5 156.86,121.81 159.79,113.03C160.33,111.42 160.83,109.8 161.26,108.16"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M146.2,94.71C143.41,100.08 140.66,105.47 137.95,110.88C137.18,112.42 136.41,113.96 135.64,115.5L136.52,115.73C136.26,112.79 135.95,109.86 135.45,106.95C135.02,104.47 134.52,101.99 133.67,99.61C132.82,97.22 131.62,94.98 129.99,93.03C129.58,92.55 129.15,92.09 128.63,91.72C128.11,91.35 127.47,91.11 126.87,90.91C125.64,90.49 124.34,90.29 123.04,90.26C121.73,90.24 120.41,90.39 119.13,90.69C117.9,90.97 116.63,91.37 115.52,91.96C113.72,92.91 112.96,94.96 112.9,96.89C112.83,99.3 113.94,101.43 115.01,103.52C115.63,104.74 116.22,105.96 116.57,107.29C116.91,108.6 117.06,109.94 117.1,111.28C117.18,114.03 116.85,116.76 116.68,119.5C116.51,122.39 116.59,125.32 116.77,128.21C116.96,131.2 117.32,134.19 117.89,137.13C118.36,139.47 118.81,141.97 120.32,143.91C123.43,147.92 129.08,149.12 133.85,147.96C138.46,146.84 142.36,143.72 145.46,140.24C147.13,138.36 148.61,136.32 150.01,134.24C151.5,132.02 152.89,129.74 154.15,127.39C156.71,122.66 158.77,117.68 160.44,112.57C160.9,111.15 161.33,109.72 161.71,108.29C161.87,107.7 160.96,107.45 160.8,108.04C159.44,113.22 157.55,118.3 155.25,123.14C153.04,127.81 150.38,132.26 147.33,136.43C144.65,140.08 141.4,143.52 137.34,145.64C133.2,147.79 128.09,148.23 123.96,145.81C122.89,145.18 121.91,144.39 121.13,143.43C120.45,142.59 119.99,141.6 119.67,140.57C118.89,138.03 118.46,135.33 118.13,132.7C117.77,129.82 117.59,126.91 117.55,124.01C117.51,121.31 117.69,118.65 117.88,115.96C118.07,113.37 118.19,110.74 117.72,108.17C117.49,106.89 117.08,105.67 116.53,104.48C115.98,103.28 115.32,102.13 114.77,100.92C113.94,99.09 113.51,97.07 114.14,95.11C114.4,94.27 114.9,93.47 115.65,92.98C116.62,92.33 117.87,91.98 118.99,91.69C121.44,91.06 124.07,90.98 126.5,91.77C127.07,91.96 127.66,92.18 128.16,92.53C128.64,92.88 129.03,93.34 129.41,93.8C130.2,94.76 130.89,95.81 131.47,96.9C132.61,99.04 133.33,101.36 133.86,103.71C134.43,106.25 134.87,108.84 135.16,111.43C135.33,112.86 135.45,114.3 135.58,115.73C135.62,116.16 136.23,116.43 136.45,115.97C139.14,110.55 141.87,105.15 144.64,99.77C145.43,98.24 146.22,96.71 147.01,95.19C147.29,94.65 146.48,94.18 146.2,94.71Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M118.34,72.64L158.91,111.76L229.87,102.21L246.01,45.25C243.54,42.68 241.08,40.11 238.61,37.54C233.32,32.03 228.04,26.52 222.76,21C217.8,15.84 212.85,10.68 207.9,5.51C206.6,4.15 205.34,2.71 203.98,1.42C202.59,0.12 199.95,0.51 198.14,0.65C194.67,0.9 191.28,1.79 187.9,2.6C177.48,5.09 166.5,6.88 156.12,4.22C151.89,3.14 147.73,1.32 143.37,1.54C141.34,1.64 139.18,2.3 138.01,3.95C136.83,5.6 137.22,8.37 139.12,9.1C137.1,7.94 134.65,7.54 132.37,7.99C130.71,8.31 128.98,9.26 128.55,10.9C127.85,13.57 130.53,14.76 132.6,15.56C131.86,15.3 130.99,15.6 130.47,16.18C129.94,16.76 129.72,17.58 129.75,18.37C129.79,19.62 130.49,21.21 131.58,21.92C132.8,22.73 134.62,23.07 136.06,23.25C135.95,23.23 134.94,26.65 134.83,26.98C134.45,28.15 133.94,29.24 133.54,30.41C132.65,33.02 131.76,35.63 130.85,38.23C128.36,45.39 125.81,52.52 123.19,59.64C121.6,63.98 119.98,68.31 118.34,72.64Z"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M118,72.97C119.71,74.62 121.43,76.27 123.14,77.92C127.07,81.71 131.01,85.51 134.95,89.31C139.32,93.52 143.69,97.74 148.06,101.95C151.1,104.88 154.15,107.82 157.19,110.75C157.63,111.18 158.07,111.74 158.58,112.09C159,112.39 159.95,112.09 160.43,112.03C163.87,111.56 167.3,111.1 170.74,110.64C176.28,109.89 181.82,109.15 187.35,108.4C193.5,107.58 199.64,106.75 205.78,105.92L221.4,103.82C224.14,103.45 226.88,103.08 229.62,102.72C229.75,102.7 229.87,102.68 230,102.67C230.15,102.64 230.29,102.48 230.33,102.34C230.79,100.69 231.26,99.04 231.73,97.39C232.87,93.35 234.02,89.31 235.16,85.27C236.6,80.2 238.03,75.13 239.47,70.07C240.81,65.33 242.15,60.6 243.49,55.86C244.35,52.83 245.21,49.8 246.07,46.77C246.19,46.33 246.41,45.83 246.46,45.38C246.5,44.99 246.24,44.81 245.99,44.55C245.52,44.06 245.05,43.57 244.58,43.08C243.64,42.1 242.7,41.12 241.76,40.14C239.91,38.21 238.06,36.29 236.21,34.36C228.81,26.64 221.4,18.92 214,11.19C212.16,9.28 210.33,7.37 208.49,5.45C207.62,4.54 206.76,3.6 205.89,2.68C205.19,1.94 204.47,1.02 203.55,0.56C201.91,-0.28 199.9,0.04 198.14,0.18C195.64,0.38 193.17,0.86 190.73,1.44C180.76,3.77 170.55,6.13 160.26,4.58C157.77,4.2 155.37,3.55 152.97,2.83C150.66,2.12 148.33,1.42 145.92,1.15C142.5,0.78 137.06,1.54 136.88,5.96C136.81,7.49 137.55,8.95 138.99,9.55C139.49,9.75 139.81,8.94 139.35,8.69C137.5,7.66 135.35,7.17 133.24,7.39C131.56,7.56 129.75,8.14 128.7,9.55C127.79,10.77 127.71,12.46 128.66,13.68C129.59,14.88 131.1,15.48 132.48,16.01L132.73,15.11C131.55,14.76 130.31,15.35 129.72,16.42C129.1,17.56 129.19,18.95 129.66,20.13C130.14,21.31 130.93,22.2 132.09,22.73C133.34,23.3 134.7,23.55 136.06,23.72L135.82,22.84C135.59,22.97 135.51,23.3 135.43,23.52C135.27,23.96 135.13,24.41 134.99,24.86C134.74,25.67 134.51,26.49 134.23,27.29C133.62,29.01 132.95,30.7 132.36,32.42C131.74,34.24 131.11,36.05 130.48,37.87C127.91,45.26 125.27,52.64 122.57,59.99C121.03,64.17 119.47,68.34 117.88,72.51C117.67,73.08 118.58,73.32 118.79,72.76C121.52,65.56 124.19,58.34 126.8,51.1C128.09,47.49 129.37,43.88 130.64,40.26C131.88,36.71 132.99,33.08 134.35,29.56C134.81,28.38 135.26,27.2 135.63,25.99C135.79,25.45 135.96,24.91 136.13,24.37C136.2,24.17 136.26,23.97 136.34,23.77C136.44,23.49 136.51,23.54 136.29,23.65C136.75,23.42 136.47,22.83 136.06,22.78C134.21,22.55 131.88,22.19 130.85,20.44C130.38,19.64 130.1,18.64 130.26,17.7C130.44,16.65 131.33,15.68 132.48,16.01C133.07,16.19 133.28,15.32 132.73,15.11C131.63,14.68 130.43,14.21 129.6,13.34C128.64,12.34 128.74,10.84 129.68,9.84C130.71,8.75 132.33,8.36 133.78,8.29C135.56,8.21 137.32,8.63 138.88,9.5L139.24,8.64C137.85,8.06 137.56,6.24 138.01,4.95C138.61,3.25 140.52,2.44 142.16,2.14C146.41,1.38 150.74,3.19 154.75,4.33C163.31,6.77 172.26,6.21 180.91,4.59C185.29,3.77 189.57,2.54 193.95,1.7C195.95,1.31 197.99,1.07 200.03,0.97C200.85,0.93 201.69,0.93 202.49,1.15C203.45,1.41 204.06,2.14 204.73,2.83C211.15,9.43 217.46,16.16 223.83,22.81C230.29,29.54 236.75,36.28 243.21,43.01C244.03,43.87 244.85,44.72 245.68,45.58L245.55,45.12C245.02,47.01 244.49,48.9 243.95,50.78C242.67,55.32 241.38,59.85 240.1,64.38C238.55,69.86 236.99,75.35 235.44,80.83C234.1,85.57 232.75,90.32 231.41,95.06C230.97,96.62 230.52,98.19 230.08,99.75C229.94,100.24 229.8,100.73 229.67,101.22C229.6,101.46 229.47,101.74 229.45,101.99C229.45,102.02 229.43,102.06 229.42,102.09L229.75,101.76C227.38,102.08 225.01,102.4 222.64,102.72C217,103.48 211.35,104.24 205.71,104.99C198.89,105.91 192.07,106.83 185.25,107.75C179.34,108.54 173.43,109.34 167.51,110.13L161.66,110.92C160.77,111.04 159.77,111.05 158.9,111.29C158.87,111.3 158.82,111.3 158.79,111.31L159.24,111.43C157.9,110.13 156.55,108.83 155.2,107.53C151.97,104.42 148.74,101.3 145.51,98.18C141.61,94.42 137.71,90.67 133.82,86.91C130.44,83.65 127.06,80.39 123.67,77.13C122.56,76.06 121.45,74.99 120.34,73.91C119.81,73.4 119.3,72.85 118.74,72.37C118.71,72.35 118.69,72.33 118.67,72.3C118.23,71.88 117.57,72.55 118,72.97Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M135.5,23.73C137.35,23.96 139.28,23.44 140.77,22.32C140.97,22.16 141.07,21.91 140.94,21.67C140.82,21.48 140.5,21.35 140.29,21.51C138.92,22.54 137.21,23 135.5,22.79C135.25,22.76 135.03,23.03 135.03,23.26C135.03,23.54 135.25,23.7 135.5,23.73Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M144.9,53.63C145.61,52.12 147.34,51.36 148.85,50.87C150.56,50.31 152.48,50.22 153.98,51.33C154.47,51.69 154.94,50.87 154.46,50.52C152.76,49.27 150.52,49.34 148.6,49.96C146.87,50.52 144.9,51.42 144.09,53.16C143.83,53.7 144.64,54.18 144.9,53.63Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M148.65,59.2C150.08,57.87 152.23,57.52 154.03,58.26C154.26,58.35 154.54,58.15 154.6,57.93C154.68,57.66 154.51,57.45 154.28,57.35C152.17,56.49 149.64,57 147.98,58.54C147.54,58.95 148.2,59.61 148.65,59.2Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M135.43,62.78C135.65,63.08 135.52,63.59 135.41,63.9C135.27,64.29 135.04,64.59 134.68,64.79C133.65,65.37 132.43,65.6 131.26,65.59C130.74,65.59 130.06,65.57 129.75,65.06C129.52,64.68 129.54,64.15 129.73,63.74C130.08,62.97 130.99,62.61 131.76,62.4C132.32,62.25 132.9,62.16 133.49,62.18C134.1,62.2 134.99,62.31 135.43,62.78C135.84,63.22 136.51,62.56 136.09,62.12C135.55,61.55 134.64,61.35 133.89,61.27C133.16,61.19 132.42,61.28 131.7,61.45C130.62,61.71 129.4,62.24 128.9,63.3C128.61,63.9 128.56,64.63 128.8,65.25C129.11,66.03 129.83,66.4 130.63,66.5C132.11,66.67 133.75,66.35 135.06,65.65C136.24,65.02 136.98,63.27 136.09,62.12C135.93,61.91 135.59,61.96 135.43,62.12C135.23,62.31 135.27,62.58 135.43,62.78Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M132.19,63.74C132.37,64.57 132.06,65.86 131,65.82C129.94,65.79 129.01,65.1 129.4,63.94C129.53,63.56 129.78,63.21 130.12,62.97C130.65,62.59 131.48,62.53 131.91,63.09C132.05,63.28 132.13,63.51 132.19,63.74Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M131.73,63.86C131.73,63.89 131.74,63.92 131.74,63.95C131.76,64.05 131.73,63.97 131.75,63.94C131.73,63.96 131.76,64.1 131.76,64.13C131.76,64.18 131.76,64.24 131.76,64.29C131.76,64.35 131.77,64.46 131.74,64.52L131.75,64.46C131.75,64.48 131.74,64.5 131.74,64.52C131.74,64.55 131.73,64.59 131.72,64.62C131.71,64.67 131.7,64.72 131.68,64.77C131.67,64.81 131.66,64.84 131.65,64.87L131.64,64.9C131.62,64.94 131.62,64.94 131.65,64.87C131.66,64.91 131.57,65.03 131.55,65.06C131.54,65.07 131.5,65.14 131.5,65.14C131.49,65.14 131.57,65.05 131.51,65.12C131.48,65.16 131.43,65.2 131.39,65.24C131.32,65.32 131.48,65.19 131.39,65.24C131.37,65.26 131.34,65.28 131.32,65.29C131.31,65.29 131.24,65.33 131.24,65.33C131.23,65.32 131.35,65.29 131.23,65.33C131.2,65.34 131.17,65.34 131.14,65.35C131.04,65.38 131.25,65.35 131.13,65.35C131.06,65.35 130.99,65.35 130.92,65.35C130.88,65.35 130.7,65.32 130.82,65.34C130.73,65.32 130.65,65.31 130.56,65.29C130.49,65.27 130.43,65.24 130.36,65.22C130.25,65.18 130.41,65.26 130.36,65.22C130.33,65.2 130.3,65.19 130.28,65.18C130.22,65.15 130.16,65.12 130.1,65.08C130.08,65.06 130,64.99 130.09,65.07C130.06,65.04 130.02,65.01 129.99,64.98C129.97,64.96 129.86,64.82 129.94,64.93C129.9,64.88 129.86,64.83 129.84,64.77C129.82,64.74 129.79,64.65 129.83,64.76C129.82,64.73 129.81,64.7 129.8,64.67C129.79,64.64 129.79,64.61 129.78,64.59C129.75,64.47 129.77,64.66 129.77,64.56C129.77,64.49 129.77,64.41 129.77,64.34C129.78,64.22 129.75,64.44 129.78,64.31C129.79,64.27 129.8,64.23 129.81,64.19C129.82,64.12 129.85,64.05 129.88,63.98C129.84,64.07 129.9,63.93 129.9,63.93C129.93,63.88 129.96,63.82 129.99,63.77C130.07,63.65 130.12,63.58 130.27,63.45C130.27,63.45 130.38,63.35 130.31,63.4C130.34,63.38 130.38,63.36 130.41,63.34C130.48,63.29 130.56,63.25 130.63,63.22C130.62,63.22 130.54,63.25 130.63,63.22C130.67,63.21 130.72,63.19 130.77,63.18C130.8,63.17 130.84,63.16 130.88,63.15C130.93,63.15 130.93,63.15 130.86,63.15C130.89,63.15 130.91,63.15 130.94,63.15C131.01,63.14 131.08,63.15 131.16,63.15C131.03,63.14 131.15,63.15 131.17,63.16C131.22,63.17 131.26,63.19 131.31,63.2C131.42,63.23 131.24,63.15 131.33,63.21C131.37,63.24 131.41,63.26 131.46,63.29C131.37,63.23 131.44,63.28 131.46,63.3C131.49,63.33 131.52,63.36 131.55,63.39C131.49,63.32 131.58,63.44 131.58,63.45C131.59,63.46 131.66,63.62 131.63,63.54C131.68,63.65 131.7,63.75 131.73,63.86C131.78,64.1 132.07,64.26 132.31,64.19C132.56,64.11 132.69,63.87 132.63,63.61C132.52,63.13 132.28,62.68 131.85,62.43C131.47,62.2 131.02,62.17 130.59,62.26C129.72,62.44 129,63.25 128.86,64.12C128.8,64.54 128.84,64.96 129.07,65.33C129.27,65.64 129.56,65.89 129.9,66.04C130.61,66.36 131.53,66.45 132.12,65.85C132.68,65.27 132.8,64.36 132.63,63.61C132.58,63.37 132.29,63.21 132.06,63.28C131.8,63.36 131.67,63.6 131.73,63.86Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M112.4,89.99C105,88.32 98.95,80.98 99.32,73.3C99.56,68.39 101.99,63.86 106.79,62.08C110.1,60.86 113.97,61.3 116.92,63.23C120.44,65.54 122.41,69.64 123.33,73.75C123.98,76.65 124.2,79.69 123.48,82.56C122.64,85.89 120.36,89.68 116.67,90.29C116.01,90.4 115.33,90.36 114.65,90.32C113.89,90.27 113.14,90.16 112.4,89.99Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M116.09,88.21C118.44,91.69 120.48,95.37 122.17,99.22C122.66,100.33 123.49,102.16 125.08,101.34C126.71,100.49 125.16,98.06 124.68,96.95C123,93.04 121.21,89.19 119.24,85.42"
|
||||
android:fillColor="#3B1954"/>
|
||||
<path
|
||||
android:pathData="M117.61,94.63C118.85,95.04 120.15,95.24 121.46,95.25C122.5,95.25 123.83,94.77 124.84,94.92C125.07,94.96 125.27,95.11 125.42,95.28C126.07,96.02 125.88,97.32 125.06,97.85C127.03,97 127.78,99.6 126.85,100.91C127.52,100.92 128.16,101.35 128.42,101.97C128.68,102.58 128.55,103.34 128.1,103.83C128.83,104.12 129.29,104.94 129.24,105.73C129.09,108.25 125.03,109.25 123.07,108.68"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M117.48,95.09C118.43,95.39 119.41,95.58 120.4,95.67C121.32,95.75 122.18,95.68 123.09,95.52C123.74,95.41 124.83,95.07 125.21,95.8C125.48,96.34 125.33,97.09 124.82,97.44C124.42,97.72 124.66,98.52 125.18,98.3C125.81,98.05 126.37,98.15 126.64,98.82C126.88,99.42 126.8,100.14 126.44,100.67C126.23,100.99 126.52,101.36 126.85,101.38C127.91,101.43 128.47,102.69 127.76,103.5C127.59,103.7 127.56,104.11 127.86,104.24C128.67,104.59 128.96,105.51 128.63,106.31C128.37,106.92 127.82,107.36 127.24,107.66C126.07,108.29 124.49,108.59 123.19,108.22C122.61,108.06 122.36,108.97 122.94,109.13C124.6,109.59 126.67,109.19 128.09,108.25C128.81,107.78 129.43,107.11 129.63,106.25C129.9,105.15 129.41,103.9 128.33,103.43L128.43,104.16C129.01,103.49 129.2,102.56 128.83,101.73C128.48,100.95 127.69,100.48 126.85,100.44L127.25,101.15C127.81,100.32 127.85,99.19 127.43,98.3C126.96,97.32 125.91,97 124.93,97.4L125.3,98.26C126.77,97.23 126.56,94.48 124.49,94.43C123.47,94.4 122.48,94.77 121.45,94.78C120.19,94.79 118.93,94.56 117.73,94.18C117.15,94 116.91,94.9 117.48,95.09Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M135.31,112.64C135.82,117.88 135.9,123.16 135.54,128.41C135.49,129.01 136.43,129.01 136.48,128.41C136.84,123.16 136.76,117.88 136.25,112.64C136.19,112.05 135.25,112.04 135.31,112.64Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M124.97,94.23C124.85,94.16 124.76,94.07 124.68,93.94C124.66,93.9 124.64,93.86 124.61,93.82C124.61,93.8 124.57,93.72 124.59,93.77C124.56,93.68 124.53,93.59 124.5,93.49C124.45,93.29 124.44,93.13 124.45,92.91C124.46,92.82 124.46,92.77 124.49,92.67C124.5,92.61 124.52,92.56 124.53,92.5C124.58,92.35 124.5,92.55 124.56,92.43C124.6,92.36 124.64,92.28 124.69,92.21C124.71,92.18 124.71,92.18 124.69,92.21C124.71,92.19 124.72,92.17 124.74,92.16C124.76,92.13 124.79,92.1 124.82,92.07C124.85,92.04 124.89,92.01 124.92,91.98C124.86,92.03 124.98,91.95 124.98,91.95C125.02,91.92 125.06,91.9 125.1,91.88C125.03,91.91 125.17,91.86 125.18,91.86C125.36,91.81 125.52,91.81 125.73,91.83C125.89,91.85 126.15,91.92 126.34,91.97C126.59,92.03 126.85,91.89 126.92,91.64C126.99,91.4 126.84,91.13 126.59,91.06C126.02,90.91 125.4,90.78 124.83,90.99C124.35,91.16 123.94,91.54 123.73,92C123.28,92.98 123.51,94.46 124.49,95.04C125.02,95.35 125.49,94.54 124.97,94.23Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M224.65,74.75C232.12,78.66 239.15,83.41 245.58,88.87C245.96,89.2 246.35,89.54 246.55,90C246.74,90.43 246.75,90.92 246.74,91.39C246.68,100.58 245.96,109.82 247.17,118.96C247.48,121.34 247.92,123.7 248.61,125.98C249.33,128.38 249.66,130.99 250.3,133.43C250.67,134.86 251.05,136.3 251.75,137.6C251.91,137.89 252.09,138.18 252.37,138.35C254.4,139.56 254.45,135.89 254.64,134.95C255.61,136.8 256.88,138.72 258.88,139.31C259.05,139.37 259.23,139.4 259.41,139.35C259.7,139.27 259.86,138.96 259.95,138.67C260.25,137.75 260.21,136.72 259.84,135.83C260.25,136.37 260.78,136.85 261.42,137.08C262.06,137.31 262.83,137.25 263.36,136.81C263.79,136.44 264.01,135.85 264.01,135.28C264.02,134.71 263.84,134.15 263.6,133.63C264.11,134.24 264.71,134.91 265.5,134.93C266.11,134.95 266.7,134.53 266.92,133.96C267.14,133.39 266.99,132.71 266.6,132.25C267,132.73 267.73,132.85 268.32,132.62C268.89,132.38 269.32,131.85 269.53,131.27C269.76,130.63 269.76,129.92 269.52,129.29C269.24,128.51 268.63,127.9 268.05,127.31C267.52,126.78 267,126.26 266.43,125.78C265.66,125.13 264.8,124.57 264.11,123.83C262.49,122.14 263.05,120.23 263.29,118.13C263.55,115.83 263.88,113.55 264.21,111.27C264.86,106.71 265.52,102.14 265.61,97.54C265.65,95.39 265.57,93.24 265.32,91.11C264.33,82.54 261.2,74.13 255.69,67.49C249.7,60.27 241.29,55.52 232.85,51.41"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M224.41,75.15C229.42,77.78 234.24,80.78 238.8,84.12C241.06,85.77 243.29,87.49 245.4,89.34C245.97,89.84 246.25,90.3 246.27,91.08C246.29,91.81 246.26,92.55 246.25,93.29C246.22,94.81 246.19,96.33 246.15,97.86C246,103.95 245.82,110.06 246.38,116.13C246.65,119.06 247.05,121.98 247.79,124.82C248.16,126.22 248.57,127.6 248.87,129.01C249.16,130.43 249.41,131.84 249.76,133.24C250.1,134.59 250.46,135.93 251.03,137.2C251.43,138.09 252.04,139.11 253.17,139.06C254.66,138.99 254.86,136.85 255,135.75C255.03,135.5 255.05,135.3 255.09,135.07L254.24,135.18C255.12,136.87 256.24,138.66 258.03,139.49C258.91,139.9 259.87,140.06 260.32,139.01C260.76,137.98 260.69,136.73 260.29,135.7L259.5,136.16C260.38,137.27 261.87,138.13 263.27,137.42C264.81,136.64 264.59,134.71 264,133.39L263.27,133.96C264.05,134.91 265.22,135.88 266.49,135.14C267.68,134.44 267.72,132.93 266.93,131.92L266.26,132.58C267.31,133.7 269.01,133.15 269.72,131.96C270.6,130.47 270.05,128.82 268.99,127.62C267.85,126.33 266.53,125.31 265.21,124.22C264.62,123.73 264.04,123.18 263.73,122.46C263.47,121.82 263.44,121.13 263.48,120.44C263.58,118.79 263.87,117.11 264.09,115.46C264.34,113.56 264.62,111.67 264.89,109.77C265.42,106.06 265.9,102.33 266.04,98.57C266.3,91.68 265.17,84.73 262.59,78.31C260.17,72.29 256.46,66.93 251.61,62.61C246.73,58.27 241.03,54.98 235.21,52.06C234.51,51.7 233.8,51.35 233.08,51.01C232.54,50.74 232.07,51.55 232.61,51.82C238.24,54.56 243.82,57.54 248.74,61.43C251.19,63.37 253.47,65.53 255.45,67.94C257.44,70.35 259.11,73.02 260.47,75.83C263.28,81.61 264.85,88.07 265.1,94.49C265.39,101.8 263.97,109.02 263.05,116.24C262.93,117.1 262.84,117.96 262.73,118.82C262.64,119.48 262.54,120.15 262.52,120.82C262.5,122.27 263.03,123.5 264.09,124.49C264.69,125.04 265.36,125.5 265.98,126.01C266.63,126.55 267.23,127.15 267.82,127.75C268.36,128.29 268.92,128.88 269.14,129.64C269.34,130.38 269.2,131.27 268.64,131.83C268.17,132.31 267.42,132.44 266.93,131.92C266.5,131.47 265.9,132.12 266.26,132.58C266.74,133.19 266.59,134.19 265.79,134.42C265.01,134.65 264.36,133.82 263.93,133.29C263.56,132.85 262.99,133.42 263.19,133.86C263.58,134.74 263.85,136.24 262.68,136.66C261.67,137.02 260.75,136.23 260.17,135.49C259.88,135.13 259.22,135.53 259.38,135.95C259.7,136.77 259.8,137.7 259.5,138.54C259.46,138.65 259.4,138.85 259.28,138.9C259.13,138.96 258.83,138.81 258.69,138.76C258.35,138.63 258.03,138.45 257.74,138.24C256.52,137.37 255.73,136.01 255.05,134.71C254.87,134.37 254.26,134.43 254.19,134.82C254.08,135.4 254.04,135.98 253.93,136.55C253.85,137.01 253.73,137.82 253.29,138.07C253.11,138.18 252.84,138.09 252.65,137.97C252.12,137.64 251.85,136.8 251.64,136.26C251.15,135 250.82,133.67 250.52,132.36C250.2,130.98 249.96,129.59 249.65,128.21C249.36,126.85 248.93,125.52 248.6,124.17C247.89,121.34 247.51,118.44 247.26,115.53C246.77,109.63 246.94,103.69 247.09,97.77C247.13,96.28 247.16,94.78 247.19,93.29C247.2,92.58 247.22,91.87 247.21,91.16C247.2,90.51 247.1,89.89 246.71,89.36C246.34,88.86 245.83,88.47 245.35,88.07C244.82,87.63 244.29,87.19 243.75,86.75C242.7,85.9 241.64,85.07 240.56,84.26C236.17,80.95 231.54,77.97 226.72,75.33C226.11,74.99 225.5,74.67 224.88,74.34C224.35,74.06 223.87,74.87 224.41,75.15Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M116.84,68.06C114.87,64.95 110.84,63.2 107.28,64.52C104.54,65.54 102.92,68.14 102.38,70.92C102.11,72.36 102.09,73.83 102.3,75.28C102.53,76.8 103.08,78.21 103.79,79.56C105.45,82.76 108.06,85.79 111.42,87.25C113.31,88.07 115.44,88.37 117.46,87.88C119.69,87.34 120.77,85.28 121.12,83.17C121.21,82.58 120.31,82.32 120.21,82.92C119.94,84.57 119.22,86.38 117.47,86.9C115.84,87.39 114.04,87.22 112.45,86.66C109.3,85.54 106.82,82.87 105.14,80.06C104.4,78.82 103.75,77.48 103.41,76.07C103.11,74.8 103.03,73.49 103.14,72.2C103.36,69.75 104.42,67.17 106.61,65.87C109.86,63.94 114.09,65.48 116.03,68.54C116.35,69.05 117.16,68.58 116.84,68.06Z"
|
||||
android:fillColor="#3B1954"/>
|
||||
<path
|
||||
android:pathData="M117.94,71.74C118.85,73.41 119.5,75.2 119.89,77.05C120.02,77.65 120.92,77.4 120.8,76.8C120.39,74.87 119.7,73 118.75,71.27C118.46,70.74 117.65,71.21 117.94,71.74Z"
|
||||
android:fillColor="#3B1954"/>
|
||||
<path
|
||||
android:pathData="M105.33,74.55C104.92,74.21 104.87,72.86 104.86,72.49C104.84,71.63 104.97,70.77 105.21,69.95C105.38,69.37 105.98,68.75 106.41,68.36C106.79,68.02 107.33,67.64 107.86,67.89C107.95,67.94 108.03,68.02 108.09,68.11C108.29,68.46 108.22,68.91 108.03,69.27C107.84,69.62 107.54,69.9 107.28,70.21C107.06,70.46 106.86,70.73 106.68,71.01C106.26,71.69 105.99,72.45 105.85,73.23C105.79,73.56 105.83,73.84 105.85,74.17C105.87,74.39 105.84,74.61 105.57,74.63C105.48,74.64 105.4,74.61 105.33,74.55Z"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M105.66,74.22C105.49,74.06 105.44,73.69 105.4,73.45C105.35,73.16 105.34,72.86 105.33,72.57C105.31,72.05 105.34,71.53 105.44,71.01C105.53,70.51 105.62,70 105.92,69.58C106.17,69.22 106.49,68.9 106.82,68.62C107.04,68.43 107.68,68.01 107.74,68.55C107.78,69.01 107.36,69.41 107.08,69.71C106.72,70.12 106.39,70.55 106.12,71.03C105.83,71.55 105.61,72.12 105.47,72.7C105.4,72.99 105.34,73.29 105.34,73.59C105.34,73.74 105.36,73.89 105.37,74.05C105.37,74.09 105.36,74.17 105.38,74.21C105.38,74.23 105.38,74.25 105.38,74.27C105.38,74.35 105.44,74.31 105.56,74.15C105.05,73.82 104.58,74.63 105.09,74.96C105.67,75.34 106.31,74.9 106.32,74.25C106.32,73.91 106.26,73.58 106.32,73.24C106.38,72.89 106.48,72.54 106.61,72.21C106.86,71.53 107.26,70.91 107.75,70.38C108.19,69.89 108.63,69.38 108.67,68.69C108.72,68.03 108.32,67.43 107.64,67.35C106.99,67.28 106.42,67.7 105.97,68.12C105.53,68.54 105.08,69.02 104.84,69.59C104.55,70.26 104.45,71.06 104.4,71.78C104.36,72.32 104.39,72.87 104.45,73.41C104.51,73.91 104.6,74.52 104.99,74.88C105.44,75.29 106.1,74.63 105.66,74.22Z"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M70.8,70.63C78.4,69.28 86.03,68.06 93.68,66.98C95.58,66.72 97.48,66.46 99.39,66.22C99.64,66.19 99.85,66.03 99.86,65.75C99.86,65.52 99.64,65.25 99.39,65.28C91.95,66.22 84.54,67.36 77.15,68.59C74.95,68.96 72.75,69.34 70.55,69.73C69.96,69.83 70.21,70.74 70.8,70.63Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M58.43,72.97C60.42,72.56 62.41,72.18 64.4,71.8C64.99,71.69 64.74,70.78 64.15,70.89C62.16,71.27 60.17,71.66 58.18,72.06C57.59,72.18 57.84,73.09 58.43,72.97Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M72.59,134.93C71.1,136.44 69.6,137.96 68.09,139.46C67.66,139.89 68.33,140.55 68.76,140.12C70.26,138.62 71.76,137.11 73.25,135.59C73.68,135.16 73.01,134.49 72.59,134.93Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M111.49,91.38C107.29,96.56 103,101.67 98.63,106.71C94.26,111.75 89.81,116.72 85.28,121.61C82.74,124.36 80.18,127.08 77.59,129.78C77.17,130.21 77.83,130.88 78.25,130.44C82.87,125.63 87.41,120.74 91.87,115.78C96.33,110.82 100.71,105.79 105,100.69C107.41,97.83 109.8,94.95 112.15,92.04C112.53,91.58 111.87,90.91 111.49,91.38Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M89.34,86.91C91.7,86.22 94.06,85.53 96.42,84.84C97,84.67 96.76,83.76 96.17,83.93C93.81,84.62 91.45,85.31 89.09,86C88.51,86.17 88.76,87.08 89.34,86.91Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M95.54,57.76C96.54,58.29 97.54,58.82 98.55,59.35C98.76,59.46 99.07,59.41 99.19,59.18C99.3,58.96 99.25,58.66 99.02,58.53C98.02,58 97.02,57.48 96.01,56.95C95.8,56.83 95.49,56.88 95.37,57.11C95.26,57.33 95.31,57.63 95.54,57.76Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M111.24,101.58L110.54,104.23C110.48,104.47 110.62,104.75 110.87,104.81C111.11,104.86 111.38,104.73 111.44,104.48L112.14,101.83C112.21,101.59 112.07,101.31 111.82,101.25C111.57,101.19 111.31,101.32 111.24,101.58Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M138.21,9.07C139.35,9.96 140.79,10.41 142.23,10.22C142.49,10.19 142.7,10.03 142.7,9.75C142.7,9.53 142.49,9.25 142.23,9.28C141.06,9.44 139.83,9.15 138.88,8.41C138.68,8.25 138.41,8.21 138.21,8.41C138.05,8.57 138.01,8.91 138.21,9.07Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M131.97,15.77C132.95,16.26 134.11,16.35 135.14,15.96C135.37,15.87 135.55,15.64 135.46,15.38C135.39,15.16 135.13,14.96 134.89,15.05C134.66,15.14 134.44,15.2 134.2,15.24C134.05,15.27 134.29,15.23 134.14,15.25C134.08,15.25 134.01,15.26 133.95,15.26C133.84,15.27 133.73,15.27 133.62,15.27C133.56,15.26 133.51,15.26 133.45,15.25C133.43,15.25 133.28,15.23 133.37,15.25C133.26,15.23 133.15,15.21 133.04,15.18C132.93,15.15 132.83,15.12 132.72,15.08C132.71,15.08 132.55,15.01 132.62,15.04C132.56,15.02 132.5,14.99 132.44,14.96C132.22,14.85 131.92,14.9 131.8,15.13C131.69,15.34 131.74,15.65 131.97,15.77Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M197.67,112.1C200.66,114.89 204.86,116.3 208.94,115.94C210.12,115.84 211.27,115.6 212.39,115.21C212.96,115.01 212.71,114.1 212.14,114.3C207.45,115.95 201.97,114.83 198.33,111.43C197.89,111.02 197.23,111.68 197.67,112.1Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M204.33,115.81C206.89,123.6 210.11,131.17 213.94,138.42C217.75,145.66 222.17,152.58 227.13,159.09C229.93,162.74 232.89,166.27 236.01,169.66C236.42,170.1 237.09,169.44 236.68,168.99C231.15,163.01 226.13,156.57 221.68,149.74C217.26,142.97 213.4,135.83 210.15,128.42C208.31,124.21 206.67,119.92 205.24,115.56C205.05,114.99 204.14,115.24 204.33,115.81Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M168.38,174.06C170.08,167.22 172.02,160.44 174.18,153.73C176.33,147.02 178.72,140.38 181.32,133.83C182.78,130.15 184.31,126.5 185.9,122.88C186.15,122.33 185.34,121.86 185.09,122.41C182.23,128.89 179.58,135.47 177.16,142.13C174.75,148.76 172.56,155.46 170.59,162.23C169.48,166.07 168.44,169.93 167.47,173.81C167.32,174.39 168.23,174.64 168.38,174.06Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M106.38,189.68C104.49,188.68 103,186.97 102.27,184.95C101.92,183.96 101.61,182.74 101.84,181.69C102.06,180.64 103.04,180.18 104.05,180.22C105.38,180.29 106.48,181.29 107.42,182.13C107.8,182.47 108.45,182.03 108.16,181.56C106.55,179.01 106.8,175.57 108.56,173.16C108.99,172.57 109.54,172.02 110.16,171.63C110.76,171.25 111.75,170.85 112.35,171.47C112.65,171.78 112.77,172.25 112.9,172.65C113.07,173.16 113.22,173.68 113.36,174.2C113.62,175.19 113.82,176.2 113.96,177.22C114.29,179.55 114.29,181.93 113.99,184.27C113.91,184.83 114.74,184.85 114.91,184.39C115.35,183.22 115.88,182.01 116.84,181.17C117.61,180.49 118.79,180.15 119.77,180.53C120.93,180.98 121.18,182.4 121.02,183.5C120.86,184.67 120.22,185.79 119.28,186.5L119.92,187.14C120.98,185.54 123.46,186 124.82,186.9C125.6,187.41 126.29,188.24 126.29,189.22C126.28,190.04 125.82,190.89 124.99,191.1L125.44,191.88C126.37,190.83 128.6,191.36 128.77,192.83C128.85,193.43 129.79,193.43 129.71,192.83C129.45,190.62 126.31,189.49 124.78,191.22C124.47,191.57 124.76,192.12 125.24,192C127.16,191.52 127.68,189.11 126.75,187.56C125.75,185.89 123.57,184.96 121.68,185.19C120.63,185.31 119.7,185.78 119.11,186.67C118.86,187.04 119.37,187.59 119.75,187.31C121.6,185.92 122.65,183.23 121.6,181.04C120.55,178.85 117.62,179.16 116.08,180.59C115.06,181.54 114.49,182.86 114,184.14L114.92,184.27C115.22,181.93 115.22,179.57 114.91,177.24C114.75,176.08 114.53,174.94 114.23,173.81C114.09,173.29 113.93,172.77 113.76,172.26C113.59,171.74 113.4,171.2 113.01,170.8C111.6,169.36 109.41,170.79 108.36,171.94C107.2,173.2 106.47,174.81 106.24,176.5C105.97,178.41 106.31,180.39 107.35,182.03L108.08,181.46C107.07,180.55 105.94,179.57 104.55,179.34C103.41,179.15 102.13,179.45 101.4,180.4C100.59,181.47 100.79,183.03 101.08,184.25C101.38,185.48 101.93,186.66 102.67,187.68C103.53,188.84 104.63,189.81 105.91,190.49C106.44,190.77 106.92,189.96 106.38,189.68Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M269.57,189.61C268.82,188.63 268.28,187.51 268.02,186.3C267.78,185.21 267.71,183.99 268.07,182.93C268.38,182.03 269.18,181.22 270.18,181.74C271.32,182.34 271.49,183.79 271.65,184.93L272.56,184.68C272.19,182.58 273.23,180.3 275.05,179.19C275.45,178.95 276.09,178.55 276.32,179.17C276.54,179.77 276.57,180.5 276.58,181.13C276.59,182.47 276.3,183.79 275.72,184.99C275.53,185.39 275.84,185.74 276.25,185.68C277.08,185.57 277.87,185.2 278.7,185.18C279.39,185.16 280.04,185.44 280.52,185.93C281.52,186.94 281.34,188.57 280.29,189.47L280.95,190.14C281.45,189.55 282.26,189.26 283.01,189.52C283.74,189.78 284.21,190.53 284.21,191.29C284.21,191.89 285.15,191.89 285.15,191.29C285.15,190.14 284.44,189.07 283.36,188.66C282.3,188.25 281.02,188.61 280.29,189.47C279.89,189.94 280.49,190.53 280.95,190.14C282.33,188.96 282.51,186.82 281.34,185.43C280.77,184.76 279.94,184.33 279.07,184.25C278.01,184.15 277.03,184.63 276,184.78L276.53,185.47C277.09,184.3 277.43,183.05 277.5,181.75C277.54,181.11 277.51,180.48 277.42,179.85C277.34,179.3 277.26,178.65 276.84,178.24C275.98,177.38 274.67,178.24 273.93,178.84C273.1,179.5 272.46,180.39 272.05,181.36C271.58,182.49 271.44,183.72 271.65,184.93C271.76,185.53 272.64,185.26 272.56,184.68C272.4,183.52 272.19,182.28 271.32,181.42C270.57,180.69 269.46,180.38 268.5,180.9C266.65,181.91 266.72,184.73 267.1,186.48C267.37,187.79 267.95,189.03 268.76,190.09C268.92,190.29 269.17,190.39 269.4,190.25C269.6,190.14 269.73,189.81 269.57,189.61Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M130.06,57.32C130.61,56.49 131.33,55.79 132.18,55.28C132.99,54.78 134.04,54.28 135.02,54.45C136.97,54.78 137.88,57.23 138.26,58.9C138.72,60.95 138.65,63.08 138.76,65.17C138.82,66.22 138.89,67.32 139.15,68.34C139.38,69.26 139.87,70.16 140.75,70.6C141.7,71.06 142.74,70.78 143.4,69.98C144.18,69.01 144.15,67.76 144.06,66.58C144.01,65.98 143.07,65.98 143.12,66.58C143.2,67.56 143.32,68.76 142.55,69.52C141.83,70.23 140.86,69.79 140.41,69.02C139.89,68.14 139.84,66.97 139.76,65.98C139.68,64.94 139.65,63.91 139.61,62.87C139.54,60.86 139.4,58.79 138.62,56.91C137.93,55.26 136.62,53.47 134.63,53.48C133.53,53.49 132.4,54 131.49,54.6C130.6,55.19 129.85,55.95 129.25,56.84C128.91,57.35 129.73,57.82 130.06,57.32Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M142.93,75.23C143.29,76.42 144.49,77.1 145.67,77.25C146.81,77.38 147.99,77.04 148.94,76.4C151.15,74.91 151.77,72.1 151.68,69.59C151.66,68.98 150.72,68.98 150.74,69.59C150.81,71.64 150.43,74.03 148.73,75.4C147.99,75.99 147.05,76.35 146.1,76.34C145.22,76.32 144.11,75.9 143.84,74.98C143.67,74.4 142.76,74.65 142.93,75.23Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M150.65,69.98C150.78,69.88 150.92,69.79 151.06,69.71C151.12,69.68 151.18,69.65 151.25,69.62C151.28,69.6 151.32,69.58 151.36,69.56C151.4,69.54 151.39,69.55 151.33,69.58C151.35,69.57 151.37,69.56 151.38,69.55C151.52,69.5 151.67,69.45 151.82,69.42C151.9,69.4 151.98,69.38 152.05,69.37C152.07,69.36 152.1,69.36 152.12,69.36C152.17,69.35 152.15,69.35 152.08,69.36C152.12,69.37 152.16,69.35 152.2,69.35C152.33,69.34 152.44,69.3 152.53,69.21C152.62,69.13 152.68,69 152.67,68.88C152.66,68.64 152.46,68.39 152.2,68.41C151.47,68.48 150.76,68.72 150.18,69.17C150.07,69.24 150,69.32 149.96,69.45C149.93,69.56 149.94,69.71 150.01,69.81C150.13,70 150.44,70.14 150.65,69.98Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M222.76,21C217.8,15.84 212.85,10.68 207.9,5.51C206.6,4.15 205.35,2.71 203.98,1.42C202.6,0.12 199.95,0.51 198.14,0.65C194.67,0.9 191.28,1.79 187.9,2.6C177.48,5.09 166.51,6.88 156.12,4.22C151.89,3.14 147.73,1.32 143.37,1.54C141.34,1.64 139.19,2.3 138.01,3.95C136.93,5.46 137.17,7.93 138.69,8.88C136.76,7.9 134.5,7.57 132.37,7.99C130.71,8.31 128.98,9.26 128.55,10.9C127.85,13.56 130.53,14.76 132.6,15.56C131.86,15.3 130.99,15.6 130.47,16.18C129.94,16.76 129.72,17.58 129.75,18.37C129.79,19.62 130.49,21.21 131.58,21.92C132.73,22.67 134.39,23.02 135.77,23.21C136.48,23.11 137.17,22.97 137.85,22.8C141.59,21.85 145.02,19.98 148.4,18.13C152.15,16.08 155.9,14.03 159.64,11.98C158.44,18.12 163.81,24 169.85,25.62C173.69,26.66 178.05,26.54 181.18,28.99C183.73,31 184.85,34.27 185.86,37.35C185.02,33.57 187.71,29.46 191.44,28.41C195.17,27.37 199.43,29.28 201.4,32.61C203.37,35.94 203.09,40.38 200.99,43.63C213.47,49.51 228.45,48.56 240.59,55.12C241.32,55.51 242.09,55.93 242.87,56.33C243.85,52.86 246.01,45.25 246.01,45.25C243.54,42.68 241.08,40.11 238.61,37.54C233.33,32.03 228.04,26.51 222.76,21Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M223.09,20.67C217.89,15.25 212.61,9.88 207.48,4.39C206.94,3.8 206.4,3.21 205.85,2.63C205.26,2.02 204.67,1.33 203.99,0.82C202.96,0.08 201.6,-0.01 200.38,0.02C197.09,0.11 193.84,0.7 190.65,1.45C183.65,3.1 176.66,4.74 169.46,5.02C165.91,5.16 162.33,4.99 158.84,4.34C155.41,3.7 152.16,2.44 148.77,1.65C145.63,0.92 141.65,0.44 138.85,2.46C137.7,3.29 136.94,4.5 136.88,5.94C136.82,7.25 137.35,8.54 138.45,9.28L138.93,8.47C137.08,7.56 135.02,7.17 132.97,7.42C131.31,7.63 129.55,8.28 128.57,9.72C127.73,10.97 127.78,12.62 128.74,13.78C129.68,14.91 131.14,15.5 132.48,16.01L132.73,15.11C131.62,14.78 130.46,15.28 129.84,16.23C129.22,17.17 129.17,18.37 129.43,19.44C129.7,20.51 130.3,21.58 131.21,22.24C132.18,22.94 133.42,23.27 134.57,23.49C135.18,23.6 135.71,23.7 136.32,23.6C137.05,23.48 137.78,23.31 138.5,23.11C139.87,22.73 141.21,22.22 142.52,21.65C145.26,20.45 147.86,18.96 150.48,17.53C153.61,15.82 156.74,14.1 159.88,12.39L159.19,11.86C158.24,16.92 161.39,21.62 165.55,24.24C167.86,25.69 170.39,26.3 173.05,26.76C175.71,27.21 178.58,27.61 180.79,29.29C183.37,31.24 184.44,34.52 185.4,37.47C185.59,38.05 186.43,37.81 186.31,37.22C185.45,33.07 188.89,28.86 193.06,28.61C197.43,28.35 201.29,31.59 202.1,35.81C202.59,38.42 202,41.16 200.59,43.39C200.46,43.6 200.53,43.93 200.76,44.04C211.13,48.89 222.82,49.09 233.59,52.65C235.11,53.15 236.6,53.72 238.05,54.38C239.62,55.09 241.1,55.95 242.63,56.74C242.9,56.88 243.23,56.76 243.32,56.46C243.94,54.27 244.56,52.08 245.18,49.89C245.46,48.91 245.74,47.93 246.01,46.95C246.16,46.45 246.37,45.92 246.45,45.41C246.52,44.96 246.14,44.71 245.86,44.41C245.16,43.69 244.46,42.96 243.77,42.23C242.48,40.89 241.19,39.55 239.91,38.21C237.27,35.46 234.63,32.7 231.99,29.95C229.02,26.86 226.05,23.76 223.09,20.67C222.67,20.23 222,20.9 222.42,21.34C228.46,27.63 234.49,33.92 240.53,40.22C242.24,42 243.96,43.79 245.68,45.58L245.55,45.12C244.51,48.82 243.46,52.51 242.41,56.21L243.1,55.93C240.54,54.61 238.05,53.26 235.33,52.26C232.67,51.29 229.94,50.56 227.18,49.93C221.62,48.67 215.96,47.84 210.43,46.42C207.28,45.61 204.18,44.61 201.23,43.23L201.4,43.87C204.1,39.6 203.84,33.49 199.87,30.07C196.27,26.98 190.72,26.74 187.44,30.42C185.73,32.33 184.88,34.93 185.4,37.47L186.31,37.22C185.49,34.71 184.62,32.13 182.92,30.06C181.19,27.94 178.7,26.92 176.09,26.36C173.44,25.79 170.67,25.61 168.16,24.54C165.82,23.56 163.7,21.95 162.18,19.92C160.49,17.69 159.57,14.9 160.1,12.11C160.17,11.71 159.78,11.37 159.4,11.58C154.69,14.16 150.01,16.82 145.23,19.3C142.96,20.48 140.62,21.56 138.14,22.24C137.6,22.39 137.04,22.51 136.49,22.62C135.85,22.74 135.36,22.69 134.73,22.56C133.69,22.36 132.5,22.08 131.66,21.4C130.79,20.71 130.25,19.47 130.22,18.36C130.18,17.12 131.02,15.58 132.48,16.01C133.07,16.19 133.28,15.32 132.73,15.11C131.64,14.69 130.45,14.22 129.62,13.36C128.72,12.44 128.7,11.06 129.49,10.05C130.4,8.9 131.98,8.44 133.38,8.32C135.13,8.16 136.88,8.51 138.45,9.28C138.99,9.55 139.43,8.81 138.93,8.47C137.92,7.8 137.63,6.43 137.9,5.31C138.22,3.98 139.35,3.07 140.57,2.58C143.4,1.44 146.72,2.07 149.57,2.81C152.8,3.66 155.93,4.8 159.24,5.36C162.5,5.91 165.82,6.08 169.12,5.97C175.86,5.75 182.49,4.39 189.02,2.81C192.29,2.02 195.53,1.33 198.89,1.05C200.13,0.95 201.48,0.8 202.68,1.21C203.34,1.43 203.79,1.88 204.27,2.36C204.86,2.95 205.43,3.56 206,4.17C211.39,9.97 216.94,15.62 222.42,21.34C222.84,21.77 223.51,21.11 223.09,20.67Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M195.33,34.91C194.04,35.62 193.06,36.88 192.7,38.31C192.59,38.75 192.52,39.22 192.73,39.64C192.91,40 193.3,40.26 193.71,40.24C194.59,40.19 194.79,38.92 193.95,38.64C193.38,38.45 193.13,39.35 193.7,39.54C193.59,39.5 193.61,39.48 193.56,39.41L193.56,39.37C193.56,39.42 193.56,39.43 193.56,39.4C193.54,39.37 193.6,39.33 193.55,39.39C193.57,39.35 193.6,39.32 193.64,39.31C193.64,39.31 193.65,39.3 193.65,39.3C193.65,39.3 193.59,39.25 193.57,39.23C193.53,39.17 193.53,39.06 193.53,38.99C193.54,38.55 193.73,38.07 193.93,37.68C194.35,36.85 195,36.17 195.81,35.72C196.34,35.43 195.86,34.62 195.33,34.91Z"
|
||||
android:fillColor="#662D91"/>
|
||||
</vector>
|
||||
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
<string name="back">← Back</string>
|
||||
<string name="next">Next →</string>
|
||||
<string name="complete_registration">Complete Registration</string>
|
||||
<string name="ok">OK</string>
|
||||
<string name="cancel">Cancel</string>
|
||||
<string name="share">Share</string>
|
||||
|
|
@ -16,8 +17,8 @@
|
|||
<string name="privacy_policy">Privacy Policy</string>
|
||||
<string name="community_guidelines">Community Guidelines</string>
|
||||
|
||||
<string name="login_onboarding_heading">Find your community, connect with the world.</string>
|
||||
<string name="login_onboarding_body">Revolt is one of the best ways to stay connected with your friends and community, anywhere, anytime.</string>
|
||||
<string name="login_onboarding_heading">Welcome to PepChat!</string>
|
||||
<string name="login_onboarding_body">Join endless chats and connections; PepChat is your place to vibe with friends!</string>
|
||||
|
||||
<string name="email">Email</string>
|
||||
<string name="password">Password</string>
|
||||
|
|
@ -58,15 +59,14 @@
|
|||
<string name="register_password">Password</string>
|
||||
<string name="register_password_rules">Eight or more, common ones are bad. Symbols and numbers recommended.</string>
|
||||
|
||||
<string name="check_mail">Check your mail!</string>
|
||||
<string name="instructions_at_mail">We\'ve sent further instructions to %1$s.</string>
|
||||
<string name="verify_then_choose_username">Verify your email, and then we\'ll get on with choosing your username.</string>
|
||||
<string name="open_mail_app">Open mail app</string>
|
||||
<string name="check_mail">Check Your Email</string>
|
||||
<string name="instructions_at_mail">We sent a verification mail to %1$s.</string>
|
||||
<string name="open_mail_app">Verify in Your Inbox</string>
|
||||
|
||||
<string name="onboarding_welcome">Welcome!</string>
|
||||
<string name="onboarding_lead">It\'s time to choose a username!</string>
|
||||
<string name="onboarding_others">Others will find, recognise and mention you with this name.</string>
|
||||
<string name="onboarding_changeable">But if you change your mind, you can change your username at any time in your User Settings.</string>
|
||||
<string name="onboarding_welcome">Name Yourself!</string>
|
||||
<string name="onboarding_lead">It\'s time to choose a username.</string>
|
||||
<string name="onboarding_others">Others can find, recognize, and mention you with this name; choose wisely!</string>
|
||||
<string name="onboarding_changeable">You can change it anytime in User Settings. You’ll get a unique number tag, visible in Settings.</string>
|
||||
<string name="onboarding_username">Username</string>
|
||||
|
||||
<string name="token_invalid_toast">You have been logged out. Please log in again.</string>
|
||||
|
|
|
|||
Loading…
Reference in New Issue