feat: add in app donation details, crypto addresses

closes #842
This commit is contained in:
Zane Schepke
2025-09-09 10:15:06 -04:00
parent 5bd497c8bb
commit 050efe2fb3
30 changed files with 1858 additions and 108 deletions
@@ -67,6 +67,8 @@ import com.zaneschepke.wireguardautotunnel.ui.screens.settings.logs.LogsScreen
import com.zaneschepke.wireguardautotunnel.ui.screens.settings.monitoring.TunnelMonitoringScreen
import com.zaneschepke.wireguardautotunnel.ui.screens.settings.system.SystemFeaturesScreen
import com.zaneschepke.wireguardautotunnel.ui.screens.support.SupportScreen
import com.zaneschepke.wireguardautotunnel.ui.screens.support.donate.DonateScreen
import com.zaneschepke.wireguardautotunnel.ui.screens.support.donate.crypto.AddressesScreen
import com.zaneschepke.wireguardautotunnel.ui.screens.support.license.LicenseScreen
import com.zaneschepke.wireguardautotunnel.ui.screens.tunnels.TunnelsScreen
import com.zaneschepke.wireguardautotunnel.ui.screens.tunnels.autotunnel.TunnelAutoTunnelScreen
@@ -388,6 +390,8 @@ class MainActivity : AppCompatActivity() {
SupportScreen(viewModel)
}
composable<Route.License> { LicenseScreen() }
composable<Route.Donate> { DonateScreen(navController) }
composable<Route.Addresses> { AddressesScreen() }
}
}
}
@@ -58,4 +58,8 @@ sealed class Route {
@Keep @Serializable data object WifiDetectionMethod : Route()
@Keep @Serializable data object LocationDisclosure : Route()
@Keep @Serializable data object Donate : Route()
@Keep @Serializable data object Addresses : Route()
}
@@ -17,6 +17,7 @@ import androidx.navigation.toRoute
import com.zaneschepke.wireguardautotunnel.R
import com.zaneschepke.wireguardautotunnel.ui.common.button.ActionIconButton
import com.zaneschepke.wireguardautotunnel.ui.navigation.Route
import com.zaneschepke.wireguardautotunnel.ui.navigation.Route.Config
import com.zaneschepke.wireguardautotunnel.ui.sideeffect.LocalSideEffect
import com.zaneschepke.wireguardautotunnel.ui.state.NavbarState
import com.zaneschepke.wireguardautotunnel.viewmodel.SharedAppViewModel
@@ -66,6 +67,8 @@ fun NavHostController.currentBackStackEntryAsNavbarState(
backStackEntry?.toRoute<Route.WifiDetectionMethod>()
Route.LocationDisclosure::class.simpleName ->
backStackEntry?.toRoute<Route.LocationDisclosure>()
Route.Donate::class.simpleName -> backStackEntry?.toRoute<Route.Donate>()
Route.Addresses::class.simpleName -> backStackEntry?.toRoute<Route.Addresses>()
else -> null
}
}
@@ -233,7 +236,7 @@ fun NavHostController.currentBackStackEntryAsNavbarState(
sharedViewModel.postSideEffect(LocalSideEffect.Modal.QR)
}
ActionIconButton(Icons.Rounded.Edit, R.string.edit_tunnel) {
navigate(Route.Config(route.id))
navigate(Config(route.id))
}
}
},
@@ -294,6 +297,18 @@ fun NavHostController.currentBackStackEntryAsNavbarState(
topTitle = { Text(stringResource(R.string.wifi_detection_method)) },
showBottomItems = true,
)
Route.Donate -> {
NavbarState(
topTitle = { Text(stringResource(R.string.donate_title)) },
showBottomItems = true,
)
}
Route.Addresses -> {
NavbarState(
topTitle = { Text(stringResource(R.string.addresses)) },
showBottomItems = true,
)
}
Route.TunnelsGraph,
Route.SettingsGraph,
Route.AutoTunnelGraph,
@@ -9,7 +9,7 @@ import androidx.compose.runtime.Composable
import androidx.compose.ui.platform.LocalContext
import androidx.compose.ui.res.stringResource
import com.zaneschepke.wireguardautotunnel.R
import com.zaneschepke.wireguardautotunnel.ui.common.button.ForwardButton
import com.zaneschepke.wireguardautotunnel.ui.common.button.LaunchButton
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SelectionItem
import com.zaneschepke.wireguardautotunnel.util.extensions.launchNotificationSettings
@@ -25,7 +25,7 @@ fun NotificationsItem(): SelectionItem {
MaterialTheme.typography.bodyMedium.copy(MaterialTheme.colorScheme.onSurface),
)
},
trailing = { ForwardButton { context.launchNotificationSettings() } },
trailing = { LaunchButton { context.launchNotificationSettings() } },
onClick = { context.launchNotificationSettings() },
)
}
@@ -26,7 +26,9 @@ import com.zaneschepke.wireguardautotunnel.ui.LocalNavController
import com.zaneschepke.wireguardautotunnel.ui.common.SectionDivider
import com.zaneschepke.wireguardautotunnel.ui.common.dialog.InfoDialog
import com.zaneschepke.wireguardautotunnel.ui.common.label.GroupLabel
import com.zaneschepke.wireguardautotunnel.ui.navigation.Route
import com.zaneschepke.wireguardautotunnel.ui.screens.support.components.ContactSupportOptions
import com.zaneschepke.wireguardautotunnel.ui.screens.support.components.DonateSection
import com.zaneschepke.wireguardautotunnel.ui.screens.support.components.GeneralSupportOptions
import com.zaneschepke.wireguardautotunnel.ui.screens.support.components.UpdateSection
import com.zaneschepke.wireguardautotunnel.util.Constants
@@ -134,7 +136,9 @@ fun SupportScreen(viewModel: SupportViewModel) {
stringResource(R.string.thank_you),
modifier = Modifier.padding(horizontal = 12.dp).padding(bottom = 12.dp),
)
UpdateSection() { viewModel.checkForUpdate() }
UpdateSection { viewModel.checkForUpdate() }
SectionDivider()
DonateSection { navController.navigate(Route.Donate) }
SectionDivider()
GeneralSupportOptions(navController)
SectionDivider()
@@ -2,7 +2,6 @@ package com.zaneschepke.wireguardautotunnel.ui.screens.support.components
import androidx.compose.foundation.layout.size
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.outlined.Favorite
import androidx.compose.material.icons.outlined.Mail
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
@@ -10,16 +9,13 @@ import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.res.vectorResource
import com.zaneschepke.wireguardautotunnel.BuildConfig
import com.zaneschepke.wireguardautotunnel.R
import com.zaneschepke.wireguardautotunnel.ui.common.button.ForwardButton
import com.zaneschepke.wireguardautotunnel.ui.common.button.LaunchButton
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SelectionItem
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SelectionItemLabel
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SelectionLabelType
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SurfaceSelectionGroupButton
import com.zaneschepke.wireguardautotunnel.ui.theme.iconSize
import com.zaneschepke.wireguardautotunnel.util.Constants
import com.zaneschepke.wireguardautotunnel.util.extensions.launchSupportEmail
import com.zaneschepke.wireguardautotunnel.util.extensions.openWebUrl
@@ -27,106 +23,77 @@ import com.zaneschepke.wireguardautotunnel.util.extensions.openWebUrl
fun ContactSupportOptions(context: android.content.Context) {
SurfaceSelectionGroupButton(
items =
buildList {
addAll(
listOf(
SelectionItem(
leading = {
Icon(
ImageVector.vectorResource(R.drawable.matrix),
contentDescription = null,
Modifier.size(iconSize),
)
},
title = {
SelectionItemLabel(
stringResource(R.string.join_matrix),
SelectionLabelType.TITLE,
)
},
trailing = {
LaunchButton {
context.openWebUrl(context.getString(R.string.matrix_url))
}
},
onClick = { context.openWebUrl(context.getString(R.string.matrix_url)) },
),
SelectionItem(
leading = {
Icon(
ImageVector.vectorResource(R.drawable.telegram),
contentDescription = null,
Modifier.size(iconSize),
)
},
title = {
SelectionItemLabel(
stringResource(R.string.join_telegram),
SelectionLabelType.TITLE,
)
},
trailing = {
LaunchButton {
context.openWebUrl(context.getString(R.string.telegram_url))
}
},
onClick = {
context.openWebUrl(context.getString(R.string.telegram_url))
},
),
SelectionItem(
leading = {
Icon(
ImageVector.vectorResource(R.drawable.github),
contentDescription = null,
Modifier.size(iconSize),
)
},
title = {
SelectionItemLabel(
stringResource(R.string.open_issue),
SelectionLabelType.TITLE,
)
},
trailing = {
LaunchButton {
context.openWebUrl(context.getString(R.string.github_url))
}
},
onClick = { context.openWebUrl(context.getString(R.string.github_url)) },
),
SelectionItem(
leading = { Icon(Icons.Outlined.Mail, contentDescription = null) },
title = {
SelectionItemLabel(
stringResource(R.string.email_description),
SelectionLabelType.TITLE,
)
},
trailing = { LaunchButton { context.launchSupportEmail() } },
onClick = { context.launchSupportEmail() },
),
)
)
if (BuildConfig.FLAVOR != Constants.GOOGLE_PLAY_FLAVOR) {
add(
SelectionItem(
leading = { Icon(Icons.Outlined.Favorite, contentDescription = null) },
title = {
SelectionItemLabel(
stringResource(R.string.donate),
SelectionLabelType.TITLE,
)
},
trailing = {
ForwardButton {
context.openWebUrl(context.getString(R.string.donate_url))
}
},
onClick = { context.openWebUrl(context.getString(R.string.donate_url)) },
listOf(
SelectionItem(
leading = {
Icon(
ImageVector.vectorResource(R.drawable.matrix),
contentDescription = null,
Modifier.size(iconSize),
)
)
}
}
},
title = {
SelectionItemLabel(
stringResource(R.string.join_matrix),
SelectionLabelType.TITLE,
)
},
trailing = {
LaunchButton { context.openWebUrl(context.getString(R.string.matrix_url)) }
},
onClick = { context.openWebUrl(context.getString(R.string.matrix_url)) },
),
SelectionItem(
leading = {
Icon(
ImageVector.vectorResource(R.drawable.telegram),
contentDescription = null,
Modifier.size(iconSize),
)
},
title = {
SelectionItemLabel(
stringResource(R.string.join_telegram),
SelectionLabelType.TITLE,
)
},
trailing = {
LaunchButton {
context.openWebUrl(context.getString(R.string.telegram_url))
}
},
onClick = { context.openWebUrl(context.getString(R.string.telegram_url)) },
),
SelectionItem(
leading = {
Icon(
ImageVector.vectorResource(R.drawable.github),
contentDescription = null,
Modifier.size(iconSize),
)
},
title = {
SelectionItemLabel(
stringResource(R.string.open_issue),
SelectionLabelType.TITLE,
)
},
trailing = {
LaunchButton { context.openWebUrl(context.getString(R.string.github_url)) }
},
onClick = { context.openWebUrl(context.getString(R.string.github_url)) },
),
SelectionItem(
leading = { Icon(Icons.Outlined.Mail, contentDescription = null) },
title = {
SelectionItemLabel(
stringResource(R.string.email_description),
SelectionLabelType.TITLE,
)
},
trailing = { LaunchButton { context.launchSupportEmail() } },
onClick = { context.launchSupportEmail() },
),
)
)
}
@@ -0,0 +1,29 @@
package com.zaneschepke.wireguardautotunnel.ui.screens.support.components
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.outlined.Favorite
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.res.stringResource
import com.zaneschepke.wireguardautotunnel.R
import com.zaneschepke.wireguardautotunnel.ui.common.button.ForwardButton
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SelectionItem
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SelectionItemLabel
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SelectionLabelType
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SurfaceSelectionGroupButton
@Composable
fun DonateSection(onClick: () -> Unit) {
SurfaceSelectionGroupButton(
listOf(
SelectionItem(
leading = { Icon(Icons.Outlined.Favorite, contentDescription = null) },
title = {
SelectionItemLabel(stringResource(R.string.donate), SelectionLabelType.TITLE)
},
trailing = { ForwardButton { onClick() } },
onClick = onClick,
)
)
)
}
@@ -0,0 +1,41 @@
package com.zaneschepke.wireguardautotunnel.ui.screens.support.donate
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.rememberScrollState
import androidx.compose.foundation.verticalScroll
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.unit.dp
import androidx.navigation.NavController
import com.zaneschepke.wireguardautotunnel.BuildConfig
import com.zaneschepke.wireguardautotunnel.ui.common.SectionDivider
import com.zaneschepke.wireguardautotunnel.ui.navigation.Route
import com.zaneschepke.wireguardautotunnel.ui.screens.support.donate.components.DonationHeroSection
import com.zaneschepke.wireguardautotunnel.ui.screens.support.donate.components.DonationOptions
import com.zaneschepke.wireguardautotunnel.ui.screens.support.donate.components.GoogleDonationMessage
import com.zaneschepke.wireguardautotunnel.util.Constants
@Composable
fun DonateScreen(navController: NavController) {
Column(
horizontalAlignment = Alignment.Start,
verticalArrangement = Arrangement.spacedBy(12.dp, Alignment.Top),
modifier =
Modifier.fillMaxSize()
.verticalScroll(rememberScrollState())
.padding(vertical = 24.dp)
.padding(horizontal = 12.dp),
) {
DonationHeroSection()
SectionDivider()
if (BuildConfig.FLAVOR != Constants.GOOGLE_PLAY_FLAVOR) {
DonationOptions { navController.navigate(Route.Addresses) }
} else {
GoogleDonationMessage()
}
}
}
@@ -0,0 +1,65 @@
package com.zaneschepke.wireguardautotunnel.ui.screens.support.donate.components
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material3.Card
import androidx.compose.material3.CardDefaults
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
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 com.zaneschepke.wireguardautotunnel.R
@Composable
fun DonationHeroSection() {
Card(
modifier = Modifier.fillMaxWidth(),
shape = RoundedCornerShape(12.dp),
colors = CardDefaults.cardColors(containerColor = MaterialTheme.colorScheme.surface),
) {
Column(
modifier = Modifier.fillMaxWidth().padding(horizontal = 16.dp),
horizontalAlignment = Alignment.Start,
verticalArrangement = Arrangement.spacedBy(12.dp),
) {
Text(
text = stringResource(R.string.donation_thanks_intro),
style = MaterialTheme.typography.bodySmall,
textAlign = TextAlign.Start,
)
Text(
text = stringResource(R.string.donation_dev_message),
style = MaterialTheme.typography.bodySmall,
textAlign = TextAlign.Start,
)
Text(
text = stringResource(R.string.donation_closing),
style = MaterialTheme.typography.bodySmall,
textAlign = TextAlign.Start,
)
Text(
text = stringResource(R.string.donation_signoff),
style = MaterialTheme.typography.bodySmall,
fontWeight = FontWeight.Bold,
textAlign = TextAlign.Start,
)
Text(
text = stringResource(R.string.dev_name),
style = MaterialTheme.typography.bodySmall,
fontWeight = FontWeight.Bold,
textAlign = TextAlign.Start,
)
}
}
}
@@ -0,0 +1,97 @@
package com.zaneschepke.wireguardautotunnel.ui.screens.support.donate.components
import androidx.compose.foundation.layout.size
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.outlined.CurrencyBitcoin
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.platform.LocalContext
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.res.vectorResource
import com.zaneschepke.wireguardautotunnel.R
import com.zaneschepke.wireguardautotunnel.ui.common.button.ForwardButton
import com.zaneschepke.wireguardautotunnel.ui.common.button.LaunchButton
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SelectionItem
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SelectionItemLabel
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SelectionLabelType
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SurfaceSelectionGroupButton
import com.zaneschepke.wireguardautotunnel.ui.theme.iconSize
import com.zaneschepke.wireguardautotunnel.util.extensions.openWebUrl
@Composable
fun DonationOptions(onAddressesClick: () -> Unit) {
val context = LocalContext.current
SurfaceSelectionGroupButton(
listOf(
SelectionItem(
leading = {
Icon(
Icons.Outlined.CurrencyBitcoin,
contentDescription = null,
modifier = Modifier.size(iconSize),
)
},
title = {
SelectionItemLabel(stringResource(R.string.crypto), SelectionLabelType.TITLE)
},
trailing = { ForwardButton { onAddressesClick() } },
onClick = onAddressesClick,
),
SelectionItem(
leading = {
Icon(
ImageVector.vectorResource(R.drawable.github),
contentDescription = null,
modifier = Modifier.size(iconSize),
)
},
title = {
SelectionItemLabel(
stringResource(R.string.github_sponsors),
SelectionLabelType.TITLE,
)
},
trailing = {
LaunchButton {
context.openWebUrl(context.getString(R.string.github_sponsors_url))
}
},
onClick = { context.openWebUrl(context.getString(R.string.github_sponsors_url)) },
),
SelectionItem(
leading = {
Icon(
ImageVector.vectorResource(R.drawable.liberapay),
contentDescription = null,
modifier = Modifier.size(iconSize),
)
},
title = {
SelectionItemLabel(stringResource(R.string.liberapay), SelectionLabelType.TITLE)
},
trailing = {
LaunchButton { context.openWebUrl(context.getString(R.string.liberapay_url)) }
},
onClick = { context.openWebUrl(context.getString(R.string.liberapay_url)) },
),
SelectionItem(
leading = {
Icon(
ImageVector.vectorResource(R.drawable.kofi),
contentDescription = null,
modifier = Modifier.size(iconSize),
)
},
title = {
SelectionItemLabel(stringResource(R.string.kofi), SelectionLabelType.TITLE)
},
trailing = {
LaunchButton { context.openWebUrl(context.getString(R.string.kofi_url)) }
},
onClick = { context.openWebUrl(context.getString(R.string.kofi_url)) },
),
)
)
}
@@ -0,0 +1,39 @@
package com.zaneschepke.wireguardautotunnel.ui.screens.support.donate.components
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material3.Card
import androidx.compose.material3.CardDefaults
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.text.style.TextAlign
import androidx.compose.ui.unit.dp
import com.zaneschepke.wireguardautotunnel.R
@Composable
fun GoogleDonationMessage() {
Card(
modifier = Modifier.fillMaxWidth(),
shape = RoundedCornerShape(12.dp),
colors = CardDefaults.cardColors(containerColor = MaterialTheme.colorScheme.surface),
) {
Column(
modifier = Modifier.fillMaxWidth().padding(horizontal = 16.dp),
horizontalAlignment = Alignment.Start,
verticalArrangement = Arrangement.spacedBy(12.dp),
) {
Text(
text = stringResource(R.string.google_donation_message),
style = MaterialTheme.typography.bodySmall,
textAlign = TextAlign.Start,
)
}
}
}
@@ -0,0 +1,87 @@
package com.zaneschepke.wireguardautotunnel.ui.screens.support.donate.crypto
import androidx.annotation.DrawableRes
import androidx.annotation.StringRes
import com.zaneschepke.wireguardautotunnel.R
data class Address(
@StringRes val name: Int,
@StringRes val address: Int,
@DrawableRes val icon: Int,
) {
companion object {
val allAddresses =
listOf(
Address(
name = R.string.bitcoin,
address = R.string.bitcoin_address,
icon = R.drawable.btc,
),
Address(
name = R.string.monero,
address = R.string.monero_address,
icon = R.drawable.xmr,
),
Address(
name = R.string.ethereum,
address = R.string.ethereum_address,
icon = R.drawable.eth,
),
Address(
name = R.string.litecoin_mweb,
address = R.string.litecoin_mweb_address,
icon = R.drawable.ltc,
),
Address(
name = R.string.litecoin,
address = R.string.litecoin_address,
icon = R.drawable.ltc,
),
Address(
name = R.string.doge,
address = R.string.doge_address,
icon = R.drawable.doge,
),
Address(
name = R.string.polygon,
address = R.string.polygon_address,
icon = R.drawable.polygon,
),
Address(
name = R.string.solana,
address = R.string.solana_address,
icon = R.drawable.solana,
),
Address(
name = R.string.tron,
address = R.string.tron_address,
icon = R.drawable.tron,
),
Address(
name = R.string.bitcoin_cash,
address = R.string.bitcoin_cash_address,
icon = R.drawable.bitcoin_cash,
),
Address(
name = R.string.nano,
address = R.string.nano_address,
icon = R.drawable.nano,
),
Address(
name = R.string.zano,
address = R.string.zano_address,
icon = R.drawable.zano,
),
Address(
name = R.string.decred,
address = R.string.decred_address,
icon = R.drawable.decred,
),
Address(
name = R.string.wownero,
address = R.string.wownero_address,
icon = R.drawable.wownero,
),
)
}
}
@@ -0,0 +1,33 @@
package com.zaneschepke.wireguardautotunnel.ui.screens.support.donate.crypto
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.rememberScrollState
import androidx.compose.foundation.verticalScroll
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.unit.dp
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SurfaceSelectionGroupButton
import com.zaneschepke.wireguardautotunnel.ui.common.functions.rememberClipboardHelper
import com.zaneschepke.wireguardautotunnel.ui.screens.support.donate.crypto.components.addressItem
@Composable
fun AddressesScreen() {
Column(
horizontalAlignment = Alignment.Start,
verticalArrangement = Arrangement.spacedBy(12.dp, Alignment.Top),
modifier =
Modifier.fillMaxSize()
.verticalScroll(rememberScrollState())
.padding(vertical = 24.dp)
.padding(horizontal = 12.dp),
) {
val clipboard = rememberClipboardHelper()
SurfaceSelectionGroupButton(
Address.allAddresses.map { addressItem(it) { address -> clipboard.copy(address) } }
)
}
}
@@ -0,0 +1,54 @@
package com.zaneschepke.wireguardautotunnel.ui.screens.support.donate.crypto.components
import androidx.compose.foundation.Image
import androidx.compose.foundation.layout.size
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.outlined.CopyAll
import androidx.compose.material3.Icon
import androidx.compose.material3.IconButton
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
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.style.TextOverflow
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SelectionItem
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SelectionItemLabel
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SelectionLabelType
import com.zaneschepke.wireguardautotunnel.ui.screens.support.donate.crypto.Address
import com.zaneschepke.wireguardautotunnel.ui.theme.iconSize
@Composable
fun addressItem(address: Address, onClick: (address: String) -> Unit): SelectionItem {
val context = LocalContext.current
val walletAddress = context.getString(address.address)
return SelectionItem(
leading = {
Image(
painter = painterResource(id = address.icon),
contentDescription = null,
modifier = Modifier.size(iconSize),
)
},
trailing = {
IconButton(onClick = { onClick(walletAddress) }) {
Icon(Icons.Outlined.CopyAll, contentDescription = null)
}
},
title = { SelectionItemLabel(stringResource(address.name), SelectionLabelType.TITLE) },
description = {
Text(
text = walletAddress,
style =
MaterialTheme.typography.bodySmall.copy(
color = MaterialTheme.colorScheme.outline
),
maxLines = 1,
overflow = TextOverflow.Ellipsis,
)
},
onClick = { onClick(walletAddress) },
)
}
@@ -0,0 +1,7 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="300dp" android:viewportHeight="788" android:viewportWidth="788" android:width="300dp">
<path android:fillColor="#0AC18E" android:pathData="M394,394m-394,0a394,394 0,1 1,788 0a394,394 0,1 1,-788 0"/>
<path android:fillColor="#FFFFFF" android:pathData="M516.9,261.7c-19.8,-44.9 -65.3,-54.5 -121,-45.2L378,147.1L335.8,158l17.6,69.2c-11.1,2.8 -22.5,5.2 -33.8,8.4L302,166.8l-42.2,10.9l17.9,69.4c-9.1,2.6 -85.2,22.1 -85.2,22.1l11.6,45.2c0,0 31,-8.7 30.7,-8c17.2,-4.5 25.3,4.1 29.1,12.2l49.2,190.2c0.6,5.5 -0.4,14.9 -12.2,18.1c0.7,0.4 -30.7,7.9 -30.7,7.9l4.6,52.7c0,0 75.4,-19.3 85.3,-21.8l18.1,70.2l42.2,-10.9l-18.1,-70.7c11.6,-2.7 22.9,-5.5 33.9,-8.4l18,70.3l42.2,-10.9l-18.1,-70.1c65,-15.8 110.9,-56.8 101.5,-119.5c-6,-37.8 -47.3,-68.8 -81.6,-72.3C519.3,324.7 530,297.4 516.9,261.7L516.9,261.7zM496.6,427.2c8.4,62.1 -77.9,69.7 -106.4,77.2l-24.8,-92.9C394,404 482.4,372.5 496.6,427.2zM444.6,300.7c8.9,55.2 -64.9,61.6 -88.7,67.7l-22.6,-84.3C357.2,278.2 426.5,249.6 444.6,300.7z"/>
</vector>
+9
View File
@@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="500dp"
android:height="500dp"
android:viewportWidth="500"
android:viewportHeight="500">
<path
android:pathData="M43.43,125.14c7.71,-10.77 14.88,-21.9 23.56,-31.99c15.8,-18.34 33.69,-34.06 54.18,-47.08c18.38,-11.67 37.76,-20.87 58.5,-27.31c32.29,-10.02 65.26,-13 98.84,-9.16c24.54,2.8 48.19,9.07 70.71,19.22c13.63,6.14 26.46,13.73 39.03,21.93c25.33,16.51 45.62,38.01 62.58,62.58c18.12,26.24 29.89,55.42 36.35,86.72c4.53,21.98 6.45,44.17 4.5,66.5c-2.4,27.54 -8.51,54.09 -19.94,79.6c-9.66,21.58 -21.59,41.4 -36.86,59.3c-14.94,17.51 -31.79,32.83 -51.15,45.46c-13.18,8.6 -26.93,16.28 -41.43,21.98c-24.27,9.54 -49.45,15.99 -75.79,17.11c-18.55,0.8 -36.99,0.48 -55.28,-2.76c-15.71,-2.79 -31.05,-6.86 -46.06,-12.5c-14.57,-5.47 -28.69,-11.95 -41.71,-20.14c-18.77,-11.81 -35.68,-26.15 -50.74,-42.66c-16.77,-18.4 -30.37,-38.81 -40.78,-61.34c-14.7,-31.83 -21.93,-65.4 -22.36,-100.43c-0.16,-13.17 1.35,-26.24 3.11,-39.28c0.13,-0.93 -0,-1.9 -0.01,-2.85c1.54,-0.95 1.4,-2.62 1.68,-4.07c3.91,-20.48 10.49,-40.06 19.42,-58.91C36.93,138.4 41.3,132.31 43.43,125.14zM325.16,254.51c6.54,-3.47 12.75,-5.47 17.66,-9.85c18.92,-16.9 23.96,-56.67 -6.75,-75.83c-9.57,-5.97 -19.77,-10.39 -30.77,-14.91c1.82,-14.73 7.71,-28.52 9.62,-43.6c-9.08,-2.25 -17.58,-5.23 -26.42,-6.19c-3.62,14.18 -7.09,27.77 -10.67,41.84c-6.78,-2.08 -13.76,-1.88 -20.14,-5.47c2.3,-14.39 7.77,-27.87 9.27,-42.31c-9.32,-1.46 -17.22,-5.09 -26.26,-5.49c-3.56,14.21 -7.01,27.96 -10.59,42.22c-17.94,-2.75 -34.42,-8.92 -52.52,-12.24c-3.98,8.91 -5.74,18.31 -7.33,28.31c5.9,1.39 11.02,2.62 16.16,3.81c12.97,3 16.52,10.09 13.44,21.42c-2.19,8.06 -4.17,16.19 -6.18,24.3c-7.24,29.16 -14.43,58.33 -21.72,87.48c-1.64,6.57 -5.73,8.71 -12.4,7.73c-6.56,-0.96 -12.76,-3.91 -19.99,-3.69c-3.14,10.03 -9.38,18.87 -11.59,29.95c17.24,4.39 33.91,8.64 51.34,13.08c-1.31,15.21 -7.61,29.13 -9.48,44.44c8.74,2.1 16.97,4.07 25.54,6.12c5.65,-14.04 6.96,-28.8 12.23,-43.33c6.35,3.27 13.4,2.32 19.61,6.43c-3.39,14 -6.76,27.95 -10.18,42.08c8.99,3.22 17.75,4.53 26.76,6.77c3.64,-14.6 7.17,-28.73 10.58,-42.39c2.12,-1.09 3.68,-0.89 5.14,-0.57c14.11,3.02 28.39,3.73 42.68,2.14c12.37,-1.37 23.34,-6.09 32.15,-15.37c9.79,-10.32 14.71,-22.95 17.08,-36.53c1.93,-11.06 1.44,-22.28 -5.06,-32.07C341.26,265.1 334.27,259.24 325.16,254.51zM223.13,312.17c17.41,4.32 34.8,8.95 53.02,5.62c9.72,-1.77 17.04,-6.73 19.99,-16.5c2.78,-9.22 1.16,-17.59 -5.67,-24.88c-7.11,-7.58 -16.25,-11.51 -25.68,-14.81c-11.26,-3.93 -22.68,-7.51 -34.99,-8.48c-4.72,19.17 -9.29,37.77 -13.97,56.79C218.8,310.84 220.93,311.63 223.13,312.17zM284.63,231.85c9.63,-1.37 17.61,-7.74 19.96,-16.39c2.87,-10.58 -0.34,-19.86 -8.9,-26.18c-9.72,-7.16 -20.91,-10.81 -32.47,-13.34c-4.31,-0.94 -8.54,-3.45 -13.76,-1.76c-4.14,16.84 -8.3,33.75 -12.6,51.21C253.32,229.54 268.47,234.14 284.63,231.85z"
android:fillColor="#F39321"/>
</vector>
+38
View File
@@ -0,0 +1,38 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="102.6dp"
android:height="79.1dp"
android:viewportWidth="102.6"
android:viewportHeight="79.1">
<path
android:pathData="M45.1,49.1h25.3c9.4,0 17.1,-7.6 17.1,-17.1S79.9,15 70.5,15h-8.1L45.1,0h25.3c17.7,-0.1 32.1,14.2 32.1,31.9c0.1,13.1 -7.9,24.9 -20.1,29.8l20,17.3H79.6L45.1,49.1z">
<aapt:attr name="android:fillColor">
<gradient
android:startX="45.15"
android:startY="39.51"
android:endX="102.48"
android:endY="39.51"
android:type="linear">
<item android:offset="0" android:color="#FF62D0C9"/>
<item android:offset="1" android:color="#FF7DE2AC"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M57.5,30H32.2c-9.4,0 -17.1,7.6 -17.1,17.1s7.6,17.1 17.1,17.1h8.1l17.2,15H32.2C14.5,79.2 0.1,64.9 0,47.3c-0.1,-13.2 7.9,-25 20.1,-29.9L0.1,0H23L57.5,30z"
android:fillColor="#4971FA"/>
<path
android:pathData="M57.5,30H32.2c-9.4,0 -17.1,7.6 -17.1,17.1s7.6,17.1 17.1,17.1h8.1l17.2,15H32.2C14.5,79.2 0.1,64.9 0,47.3c-0.1,-13.2 7.9,-25 20.1,-29.9L0.1,0H23L57.5,30z">
<aapt:attr name="android:fillColor">
<gradient
android:startX="0.18"
android:startY="39.55"
android:endX="57.51"
android:endY="39.55"
android:type="linear">
<item android:offset="0" android:color="#FF3268FB"/>
<item android:offset="1" android:color="#FF4795FA"/>
</gradient>
</aapt:attr>
</path>
</vector>
+977
View File
@@ -0,0 +1,977 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="500dp" android:viewportHeight="1236" android:viewportWidth="1236" android:width="500dp">
<path android:fillColor="#988430" android:pathData="M618,618m-618,0a618,618 0,1 1,1236 0a618,618 0,1 1,-1236 0"/>
<path android:fillColor="#7a6a2a" android:pathData="M618,618m-598.2,0a598.2,598.2 0,1 1,1196.4 0a598.2,598.2 0,1 1,-1196.4 0"/>
<path android:fillColor="#ba9f33" android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#e2cc85" android:pathData="M470.2,860l-19.6,-37.1 11.4,-46.4 81.3,-31.4 -34.6,-71 17.1,-71.7 32.1,-64.2 99.2,-15.6 72.9,-69.5L887.4,465l30.9,168.3 -59.5,211.9 -33.9,109.7 -137.4,5.2 -63.8,-44.2 -74.7,-31.2z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#f1d789" android:pathData="M711.2,858.8s-19,8.7 -51.4,6.7c-9.4,-12.6 -75.1,-18.5 -75.1,-18.5s-8.2,-2.5 -22.7,3.5c-14.6,5.9 -28.4,5.2 -41.3,8.4 -12.9,3.2 -25.7,-13.6 -35.6,-17.1 -9.9,-3.7 -23,-12.6 -23,-12.6l-27.7,-2.7 -55.6,-23.5 -88.3,-88 -24,37.6 -7.4,46.5 26.7,55.1 71.9,65.5 140.2,35.6 83.1,-24.5 104.1,-44 26.1,-28z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#f4ecb4" android:pathData="M213.1,547.8l17.8,-53.9 21.2,-34.8 68.3,-5.7 -20.5,59.8 -57.1,101.6 23.7,90.7 -42,21 -12.9,-19.8 -10.4,-45.4 -0.7,-51z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#f3e19d" android:pathData="M289.7,855.1l-13.1,-18.3s-3.5,-8.7 -1.5,-16.3c2,-7.7 1.7,-8.2 0.7,-11.1s-9.4,-12.9 -8.9,-21.5c0.5,-8.7 -0.7,-11.6 5.7,-18.5 6.7,-6.7 4.7,-18.3 4.7,-18.3l8.7,5.4 2,-3s3.2,2.5 3.2,6.4c0.7,-5.4 -2.2,-30.4 4.4,-36.1 6.7,-5.7 18.3,26.7 18.3,26.7l-7.2,-47 -18.5,-48.2 -32.9,-44 -2,-48.5v-4.2s-15.1,23.2 -19.3,41.5c-3,12.6 4.2,27.9 2.7,46 -1.2,18 -2.7,16.6 1.7,23.7s15.1,21.8 10.9,32.4c-3.7,9.1 -16.3,2.7 -16.3,2.7s-2.5,7.4 -5.9,10.1c-1.2,-4.4 -2.5,-7.2 -4.9,-9.9 -0.2,1.7 -0.7,4 -0.7,4s-2.2,-6.9 -4.4,-15.6c-3,-11.6 -6.2,-26.9 -9.1,-35.1 -1.2,4.7 -4.2,19 -4.2,19l1.7,22 8.2,30.2 7.9,19.8 7.7,24.2 6.7,16.3 5.4,12.4 4.7,27.9 22.7,24 12.1,5.4 8.8,-4.5z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#f2e8b0" android:pathData="M225,503.8s-16.3,27.7 -21,55.6c-4.7,27.9 -8.9,57.4 -5.9,95.4 3,38.3 8.7,61.8 13.3,78.6 7.9,27.9 28.4,66.7 28.4,66.7l0.7,-1.5s-5.4,-9.9 -8.2,-20.5c-2.7,-10.6 -3.7,-23.2 -6.2,-28.9 -2.2,-5.7 -5.9,-10.6 -7.7,-17.6 -1.7,-6.7 -2,-17.3 -7.2,-25.2 -2.2,-3.2 -4.9,-11.6 -5.7,-20 -1,-12.6 0.5,-26.7 -0.7,-38.3 -2.2,-19.3 -3.7,-32.4 -1.7,-42.5 2,-10.1 12.4,-38.8 18.8,-61.6 4.2,-14.6 1.7,-26.9 9.4,-39.6 7.7,-12.6 12.4,-23.7 14.1,-31.4 2,-7 -20.4,30.8 -20.4,30.8z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#f5eec0" android:pathData="M302.3,492.7s-8.4,2.5 -12.4,6.9c-4,4.2 -5.7,7.7 -11.1,14.8 -5.4,7.2 -5.7,12.9 -10.1,21.8 -4.4,8.7 -14.1,21.8 -15.3,26.5 -1.2,4.7 -3.2,26.7 -5.7,37.1 -2.2,10.4 2.5,23.2 2.5,23.2l5.7,-1.2s0,7.4 5.7,12.4c5.7,4.9 6.7,-16.6 6.7,-16.6l21.3,-71.9 32.1,-21.8 3.5,-17.6 -22.9,-13.6z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#e6db9d" android:pathData="M317.9,525.3s-15.1,1 -22.5,6.4c-3,2.2 -4.2,4 -7.4,6.7 -5.9,4.9 -11.9,9.4 -14.8,15.8 -3.2,6.4 -6.7,16.1 -9.1,34.4 -1,7.7 -1,14.8 -1.7,21 -1,8.4 -2.5,15.1 -1.7,19.8 1,9.6 10.9,14.6 11.9,25.5l20.5,-10.4 19.3,-76.1 41,-25.7 -23.2,-26 -12.3,8.6z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#e5cb7a" android:pathData="M321.1,1204.6l-91.5,2.2 -48.5,-3.7s3,-35.6 3.7,-44c1.7,-5.2 7.4,-20 9.1,-22.7 1.2,-4 2.7,-14.1 -0.7,-26.5 2.2,-3.5 9.1,-5.4 16.8,-74.4 3,-25.7 3.5,-45.2 5.7,-57.4 3.2,-17.3 5.4,-23.7 4.9,-30.2 -0.7,-10.4 -1.5,-18 -0.5,-26 1.5,-10.6 11.9,-23.2 11.6,-31.9 -0.2,-6.9 -3.7,-11.4 -6.7,-15.6 -3,-4.2 -5.4,-7.7 -5.4,-7.7s20.5,-14.1 20.3,-70.9c0.7,0.2 1.2,0.5 1.2,0.5l10.1,28.7 6.9,8.4 26.5,49.4 34.1,33.1 50.4,33.9 31.6,34.4 3.2,91.7 -41.3,53.6 -41.5,75.1z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#d8c173" android:pathData="M335.9,1125.5s0.7,-11.4 10.1,-18.8c1.5,2.5 2.5,4.9 2.2,6.7 1.7,-3 13.6,-22.2 40.5,-27.2 26.9,-4.9 33.4,-24.5 33.4,-24.5l57.1,-51.9 65.3,-60.1 79.4,-27.9 37.1,-9.1s0.7,2.7 -0.7,8.7c6.9,-0.5 22.2,-4 38.1,-9.6 6.4,-2.5 12.4,-3.5 15.6,-0.2 4.7,4.4 5.4,14.8 5.7,21 7.7,-1.7 16.6,-9.1 23.7,-8.4 11.4,1.2 21.5,14.6 33.1,14.6 15.3,0 22.2,-9.4 32.9,-16.8 6.4,-4.4 15.6,-9.9 20.8,-13.6 12.4,-9.1 143.6,-49.2 143.6,-49.2l46,3 7.4,49.4 -4,129.8 -210.6,110 -332,50.9 -135.2,-34.6 -9.5,-42.2z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#f1d789" android:pathData="M195.5,1204.9s12.1,-27.4 17.8,-67c4.7,-32.4 0.5,-39.8 1.7,-50.2 1.7,-15.6 19.3,-46 20.8,-51.9 1.2,12.1 4.7,57.8 17.3,68 -2.7,4 -7.2,17.8 8.9,28.4 -2.7,5.7 -8.2,12.6 -4.7,23 3.5,10.4 7.7,25.2 5.7,41.5 -5.7,1.2 -11.9,3.7 -16.8,8.4 -4.9,4.4 -50.7,-0.2 -50.7,-0.2z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#e0cd81" android:pathData="M402.9,1185.8l73.7,-20.5 3.2,1s1.7,1 1.7,4.4c4.7,-2.7 8.7,-2.2 11.6,-4 1.5,3.2 3,13.8 9.6,15.1 6.9,1.5 14.3,-3 21.8,-8.7 7.4,-5.9 15.8,-13.3 22.2,-16.3 1.2,2 4.2,8.2 6.2,13.3 8.4,-6.7 23,-33.9 43.8,-33.4 2,-4.7 9.4,-21.8 28.9,-34.9 19.3,-13.1 31.4,-14.1 46.5,-12.9 5.9,-7.7 13.6,-14.6 21.8,-19.5 2.5,1 9.4,5.2 18,1.2 8.7,-4 18.5,-19.5 31.4,-21.5 11.4,-1.7 20,4.2 20,4.2s37.6,-37.3 63.5,-49.7c-1,-3 -3,-14.3 27.4,-39.3 1.7,1.5 0.5,5.7 1.7,5.9 0.5,0 7.9,-3.2 17.3,-10.4 11.6,-8.7 25.5,-17.8 33.9,-20.3 15.8,-4.7 32.6,4.9 32.6,4.9s2,-1.5 4.7,-2.2c4,-0.7 6.9,-1.2 9.1,-2 -0.2,5.2 2.7,14.1 0,21.8 0,0 4.2,2.5 9.9,4.2 -1.7,3.7 -5.4,13.1 -11.6,17.6 5.2,2.5 5.9,5.4 13.3,7.9 -3,4.2 -7.9,11.4 -10.1,15.8 -2.2,4.7 -10.1,24.2 -13.6,31.6 -3.7,7.4 -8.7,21 -11.1,23.7 -2.5,2.7 -11.1,14.3 -17.8,20 5.9,-2.2 30.2,-9.6 40.5,-12.4 -6.2,9.1 -63.5,94.2 -63.5,94.2L774.1,1199l-56.6,9.6 -294.9,-0.2 -26,-12.9 6.3,-9.7z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#dfc57c" android:pathData="M320.4,522.6s-8.7,0 -10.4,1.2c-1.7,1.2 8.7,3.7 11.9,4.9 3.2,1.2 10.1,6.7 11.9,11.1 1.7,4.2 62.5,28.7 62.5,28.7l43,-2.2 14.8,-20.5 -28.2,-24.7 19.8,-58.3 -26.2,4.2 -63,37.6 -31.6,12.1 -4.5,5.9z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#e5cc7c" android:pathData="M414.8,541.9s1.7,3.2 5.9,3.2c8.9,0 17.1,2.2 20.5,6.7 5.7,7.2 21.5,30.2 21.5,30.2l37.8,13.6 2.5,-44.5 -41.3,-28.7 -47,17.3v2.2z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#d2c281" android:pathData="M407.4,558.4s6.9,0.5 15.6,-2.7 23,-10.1 29.2,-7.4c8.7,3.7 6.9,15.3 16.3,25.7 5.7,6.4 16.1,6.2 22,13.1 5.9,6.9 26.2,3.7 26.2,3.7l7.7,41.5 -30.9,39.6 -10.1,49.2h-41.8L403.4,706l-18.8,-45.5 9.4,-46 13.4,-56.1z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#e2c270" android:pathData="M488.2,560.4s1.5,0.5 3.2,0.5c-1.2,1 -3.7,3.2 -2.7,8.9s4.2,12.9 1.5,17.3c1.2,1.5 3,3.2 4.7,8.2 1.7,4.9 2.2,9.4 13.3,10.1 -2.5,1.5 -4.4,3.5 -4.4,3.5s7.7,6.7 11.6,12.9c4,-0.2 14.6,-3.5 14.6,-3.5l2.2,1.5 4.7,-2s-4.4,-1.7 -1.2,-12.4c3,-9.4 5.7,-8.9 5.9,-9.6 0.2,-0.7 2.2,-10.6 2.2,-14.6 1.5,-5.2 2.7,-21 2.7,-21l-3.2,-34.9 -18,-10.9 -14.6,-14.1 -13.8,26 -9.1,9.1 -0.7,22.5 1.1,2.5z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#ccb360" android:pathData="M531.5,531.2s3.2,9.1 4.4,16.1c0.7,-2.2 0.7,-4.2 0.7,-4.2s2.5,13.8 3,19.5c1,-0.2 2,-0.5 2.2,0.5 0.2,1 2.5,12.1 2,18.3 1.2,-2.2 6.9,-10.9 16.8,-16.8 4,-2.5 8.7,-5.2 13.6,-5.4 7.7,-0.2 13.3,4.9 22.5,4.9 22.2,0 42.3,-16.3 57.1,-21.3 10.9,-3.7 20.3,-6.4 26.9,-12.4 3.2,-2.7 8.9,-8.7 14.1,-17.6 6.9,-11.9 14.1,-22.2 21.3,-23.5 -5.7,1 -9.9,0.7 -9.9,0.7s2.2,-2.2 5.9,-5.2 8.2,-6.7 14.6,-6.7c11.4,0 17.1,1.7 23.5,1.7 6.4,-0.2 10.1,-1.7 10.1,-1.7s6.7,4.7 21.8,4.7c15.1,0.2 25.2,1.5 33.1,2.2 7.9,0.7 34.4,-2.2 42,-2 7.9,0.2 14.3,3.5 14.3,3.5L847,415.3l-88,-76.9 -52.4,37.1 -80.6,80.6 -78,28.9 -16.3,18.3v27.9h-0.2z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#d5b457" android:pathData="M706.5,490.4s2.2,-2.2 5.9,-5.2 8.2,-6.7 14.6,-6.7c11.4,0 17.1,1.7 23.5,1.7 6.4,-0.2 10.1,-1.7 10.1,-1.7s6.7,4.7 21.8,4.7c15.1,0.2 25.2,1.5 33.1,2.2 7.9,0.7 34.4,-2.2 42,-2 7.9,0.2 14.3,3.5 14.3,3.5l-11.1,-32.1 -12.9,-24.5L811,390s-44.2,-26 -44.5,-26.2c-0.2,-0.2 -15.3,-4.2 -15.3,-4.2l-40,24.2 -36.3,93.9 -0.7,19.8 23.5,11.1c5.9,-9.9 12.4,-17.8 18.5,-18.8 -5.5,0.6 -9.7,0.6 -9.7,0.6z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#d2b257" android:pathData="M706,497.1c-3.5,0.2 -6.4,-0.5 -7.2,-3 -3,-8.4 -5.4,-9.6 -7.9,-9.6s-5.9,5.4 -7.9,5.9 -4.4,-6.2 -4.4,-6.2l-2.2,-1s-12.9,8.4 -22,18.3 -24,26.7 -30.7,29.7c-6.7,3 -29.7,4 -37.6,5.7 -7.9,1.7 -16.6,7.4 -17.8,8.7s3.5,2.7 4.2,4c0.7,1.2 -7.7,0.7 -8.4,2 -0.5,1 2,6.7 3.2,9.6 2.2,-1 4.4,-1.7 6.9,-1.7 7.7,-0.2 13.3,4.9 22.5,4.9 22.2,0 42.3,-16.3 57.1,-21.3 10.9,-3.7 20.3,-6.4 26.9,-12.4 3.2,-2.7 8.9,-8.7 14.1,-17.6 3.8,-6.1 7.5,-11.8 11.2,-16z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#d2b159" android:pathData="M387.6,992s-2,-7.4 -20.3,-26.5c-5.2,-5.4 -8.4,-9.9 -11.9,-13.1 -8.7,-8.2 -13.8,-10.4 -20,-15.1 -13.6,-10.1 -28.4,-10.1 -39.8,-22.5 -11.4,-12.4 -24.7,-36.1 -33.9,-60.3 -9.1,-24.2 -11.6,-31.9 -11.6,-32.6s2.5,-5.4 5.7,-4.7c3.2,0.7 3.2,6.9 4,8.4 0.2,0.5 2.5,3.7 5.4,6.9 4.7,5.4 11.4,11.9 14.8,21.5 -0.7,-8.2 -3.5,-17.3 -3.5,-17.3s17.6,11.1 32.6,22.7c15.1,11.6 21.3,15.6 25.7,23 4.4,7.4 14.8,26.9 19.8,32.6s73.2,27.2 73.2,27.2l32.4,24.2 16.1,35.3 -12.6,19.8 -24.2,5.2 -39.3,-17.6 -12.6,-17.1z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#c2a44d" android:pathData="M300.3,870.4s8.2,13.1 28.2,25.5c18,10.9 46.5,20.8 71.9,26.7 14.6,3.5 29.2,6.2 42.3,6.4 35.3,0.5 59.6,-9.6 89.7,-12.9 16.3,-1.7 36.3,-3 57.1,-7.9 26.7,-6.4 42.5,-13.6 64,-23.7 15.6,-7.2 29.9,-12.6 41.5,-19.5 16.3,-9.6 28.2,-20.3 42,-23.5 -1.7,4.7 -3.5,13.1 -17.1,21.8 7.2,-0.2 17.1,-0.7 17.1,-0.7s-9.6,5.7 -26.5,18.5c-10.4,7.9 -24.2,21.3 -38.3,30.2 -9.1,5.7 -19,9.9 -25.5,13.3 -15.8,8.7 -22.2,13.1 -32.6,23.7 3.7,-0.2 4,0 4,0S605,950 595.6,955c-2,0 -5.4,-0.7 -11.4,1 -4.7,1.5 -10.9,4.9 -17.3,6.7 -9.1,2.7 -12.1,1.5 -12.1,1.5l1.5,3s-11.9,-0.2 -15.8,0.2c0.7,0.2 0.5,0.5 0.5,0.5s-0.5,0 -2,0.7c-1.2,0.7 -3.2,2 -6.2,2.7 -1.2,0.2 -2.2,0.2 -3.7,0.5 0.5,1.2 4.4,7.9 6.2,11.9 -1.5,1 -24,18 -24,18s1,1.5 1.7,3.5c0.7,2.2 1,5.4 1.7,6.9 1.7,3 2.7,3.5 2.7,3.5s-2.7,0.5 -7.4,1.7c-4,1 -8.9,2.7 -15.8,3.7 -2,0.2 -4.2,0.5 -6.4,0.5 1,2.2 5.4,10.6 -2.7,20.3 -8.2,9.6 -10.6,11.1 -13.1,17.3 -0.7,-0.5 -2,-1.5 -4,-2.5 -2.7,-1.2 -6.4,-3 -7.7,-5.4 -0.2,1 -1.2,4.9 -3,9.4 -2.5,6.7 -6.2,13.3 -6.9,18.3 -2.7,-3 -7.7,-8.9 -14.6,-7.7 -6.9,1.2 -12.4,10.6 -13.6,13.3 0,-1.7 -1.2,-3 -1.5,-1 -0.2,2.2 -4,25.2 -25.2,43.8 -0.2,-4.7 -0.2,-15.1 -0.7,-18.5 -2,2 -4.4,4.9 -18.8,11.1 -14.1,6.2 -11.9,12.4 -11.9,12.4s-1.2,-9.9 6.4,-20.3c7.7,-10.4 12.4,-15.3 12.4,-16.1 0,-0.2 -0.2,-1.2 -1,-2.2 -1,-1 -3,-2.2 -3,-3 1.2,-0.5 13.1,-6.2 12.4,-18 -0.7,-10.6 -5.2,-16.1 -8.4,-20 -0.5,-0.5 4.7,-4.2 4,-5.4 -0.5,-0.7 -6.9,-5.4 -7.7,-7.9 0.2,-1.2 0.5,-3.2 1,-4.4 0.7,-2.2 1.2,-3.7 1,-5.2 -0.5,-2.5 -3.2,-9.4 -4,-10.1 0.7,0.2 5.7,0 5.7,0s-4,-6.4 -4.7,-9.4c-0.7,-3 -2.2,-10.9 -3,-12.4 1.7,0.2 5.9,0.5 5.9,0 0.2,-1.5 -3.7,-4 -2,-5.9 1.2,0.2 3.5,1.2 5.7,4 -1.2,-3.2 -3.2,-9.4 -7.4,-11.9 2,-0.7 8.7,-2.5 14.6,1s7.9,8.4 7.9,8.4 3.5,2.7 8.9,6.7c6.2,4.9 14.1,11.9 26.7,16.8 2.7,1.5 9.6,1.5 14.6,0.5 3,-0.7 4.7,-1.7 6.2,-2.5 1.2,-0.7 2.2,-1 2.2,-1s-2,-4 -3.7,-6.2c1.7,0 3.7,0.2 3.7,0.2s1.2,-2.7 -4.2,-7.9c1.2,-1.2 2.7,-2 2.7,-4 -1.7,-0.2 -4.7,-2.7 -5.4,-3.7 1,-0.7 2.5,-3 4.2,-3.7 -1.5,-1.2 -5.2,-6.2 -6.9,-6.7 1.7,-0.5 4.7,-2.2 4.7,-2.2s-8.4,-2.2 -11.1,-4c-2.7,-2 -6.7,-5.4 -9.1,-6.4 -2.5,-1 -6.9,-1.5 -8.7,-3.5 1.7,0.5 4.4,0 6.4,0 1.5,0 2.2,0.2 2.7,0.2 -0.2,-0.7 -0.2,-2.2 3.7,-2.7 3.7,-0.7 5.4,-1.7 5.4,-1.7s-3.7,-0.2 -7.9,-4.2 -7.7,-7.2 -10.1,-7.7c-2.5,-0.5 -7.2,1.7 -10.1,1.5 -4,-0.5 -5.7,-2.5 -5.7,-2.5s-13.3,1.2 -42.8,-16.8c-25.5,-15.6 -36.6,-29.4 -36.6,-29.4s-3,-1 -6.9,-3.2c-9.6,-5 -22.9,-15.4 -22.5,-29z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#caa13e" android:pathData="M668.2,270.2s3.5,1 5.9,4c4.7,5.4 7.7,15.6 -3,26.5 4.2,1.5 5.9,2 9.6,1.5 -3.7,4.4 -12.1,13.8 -12.6,22 -0.5,6.7 3.7,8.7 3.7,8.7s-6.4,7.4 -6.7,19.8c1.5,-1.7 4.9,-5.4 9.9,-9.4 7.4,-5.9 17.6,-12.6 24.5,-16.8 -0.2,2.7 0.7,5.2 0.7,5.2s12.9,-10.6 23.7,-5.9c4.9,2.2 2.7,9.1 2.7,9.1s6.7,-2.5 11.4,2.2 11.4,16.8 14.8,21.5c1.5,2.2 5.4,6.4 9.4,12.9 4.7,7.7 9.9,18.3 13.6,28.7 0.2,-5.2 1.5,-13.3 16.3,-8.2 14.8,5.2 31.6,16.1 45.7,37.6 14.1,21.5 17.6,45.7 24.7,54.9 7.2,8.9 14.6,23.7 15.1,29.9s-2.2,26.2 12.6,80.3c4.2,-16.8 10.6,-54.1 10.6,-54.1l3.5,-32.9 4,-101.8L802,317.6l-83.1,-60.3 -54.1,5.2 3.4,7.7z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#b59544" android:pathData="M865.7,421.7s-1.5,-9.9 -26.5,-26.7c-25,-16.6 -44.5,-16.6 -62.5,-30.7 -13.8,-11.1 -28.2,-36.6 -37.6,-45 -9.1,-8.3 -10.6,-32.3 -10.6,-32.3l30.7,-25.7 45.7,-66 38.6,-42.5 18.5,25.7 25.7,30.2 14.3,60.6 5.2,88.7 -41.5,63.7z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#c89d3a" android:pathData="M896.6,528s1.7,-19.3 -4.9,-39.8 -21,-56.9 -27.7,-70.5c-2.7,-15.1 -0.7,-16.3 2.2,-18 3,-1.7 13.8,-7.9 19.8,-29.7 5.9,-21.8 24.5,-22.5 24.5,-22.5l11.4,-8.4 17.3,43.3 15.1,39.1 4.7,29.9 3.5,25.5 -8.2,53.9 -40.5,36.6 -17.2,-39.4z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#ceb052" android:pathData="M321.1,1204.6s-9.1,-16.8 -9.6,-24c-0.2,-6.9 2.5,-11.4 2.5,-11.4s-3.5,-5.2 -6.7,-6.4c0.7,-3.5 2,-7.7 4.7,-10.6 2.7,-3.2 7.9,-7.4 8.9,-8.9s1.5,-3.5 4.4,-4c3,-0.5 6.2,-0.5 6.2,-4.4v-7.2s1.2,-0.7 2.2,-2c0.7,-1 1.2,-2.2 1.7,-2.5 1,-0.5 5.7,-2 8.2,-1.5 2.5,0.5 9.1,3.2 12.6,3 7.2,-0.2 15.6,-5.7 28.9,-3.2 20,3.7 24.7,17.3 36.3,25 7.9,5.4 16.1,3 17.3,3h2.7c0.5,0 4.2,-4.2 6.2,-4 4,0.2 4.4,3.5 6.9,3.7 5.9,0.7 17.3,-3 23,-1.5 2.7,0.7 6.2,3.5 7.2,7.2 1.2,3.7 0.2,8.4 -2.7,11.1 -6.2,5.7 -12.1,11.1 -13.3,15.8 1.7,1.2 4.7,4 4.7,4s-2.7,2.5 -7.7,4.9c-2.2,1 -5.7,2.7 -9.6,3.2 -7.4,0.7 -16.6,1.7 -22,9.6s-24,3.5 -24,3.5l-89,-2.4z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#cca847" android:pathData="M864,929s15.6,-20.8 21,-31.1c5.4,-10.6 -17.1,-145.1 -17.1,-145.1l45.2,-148.1 -1.2,-48.2s2.2,-44.5 7.4,-63.8c6.2,11.1 25.5,24.5 29.7,31.6 2,-13.6 8.7,-42.3 7.7,-72.9 3.7,5.7 12.6,63 12.6,63l8.9,38.6 11.6,41 12.9,43.3 7.7,29.9 4.4,7.2 3.7,12.6 3.5,13.6 10.1,31.9 5.9,26.2 4.7,47.5s1.7,5.9 2.2,11.1c0.2,5.2 -0.7,8.2 -0.7,9.1 0,1 1.7,11.4 1,19.3 -1,7.9 -1,14.1 -7.2,19.8 -6.2,5.7 -10.1,39.6 -10.1,39.6l-11.1,-7.4s2.2,-10.1 -3,-19.3c-5.2,-9.1 -15.3,-11.1 -21,-9.6 -5.7,1.2 -17.1,3 -20.8,6.2 -3.5,3.2 -12.1,13.1 -20,17.6 -9.9,5.9 -26,6.4 -34.6,8.4 -8.7,2 -18.3,7.9 -28.4,14.8 -10.5,6.8 -21.1,11.7 -25,13.2z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#c39d3c" android:pathData="M864,1147.5s8.7,5.7 24.7,9.6 56.9,27.4 56.9,27.4l34.4,21 42.5,3.2 37.3,-5.2s1.2,-15.8 -1.2,-74.7c-2.5,-59.1 -4.4,-67.5 -4.4,-71.9 0,-4.4 -1.5,-79.4 -3.2,-95.7 -1.7,-16.3 -0.5,-32.9 -1,-42.5s-5.9,-48.7 -8.4,-58.8c-2.7,-10.1 -7.9,-15.1 -8.7,-15.1 -0.7,0.2 -4.9,19 -4.9,23.7s-1,16.1 -1,19c-0.7,-0.2 -1,-2 -1,-2.7 -1,2.5 -2.2,6.9 -2.7,7.4s0.7,-4.2 0,-5.2 -2,-0.5 -1.7,-3c0.2,-2.5 0.7,-4.4 0.7,-4.4s-3,4.4 -5.2,15.6c-2.2,11.1 -2.2,11.4 -3,12.4 -0.7,1.2 -4.7,5.2 -4.9,6.7 -0.2,2.7 3.7,5.4 4,6.9 0.2,2.5 -3.5,14.1 -4.7,19.8 -1.2,5.7 -0.7,16.8 -2,22.5 -1,5.2 -2,8.2 -5.4,10.4 2.5,0.5 4.9,1.2 4.9,1.2s3.5,14.8 -5.4,27.4c-3.2,4.4 -4,6.4 -7.4,10.4 -6.7,7.4 -11.9,15.8 -12.4,21.3 -0.5,-2 -0.7,-4.9 -0.7,-4.9s-10.4,12.1 -14.8,19c-5.7,8.9 -13.6,8.4 -15.8,10.6 -2.2,2.2 -2.7,6.2 -2,9.4 -2,0.5 -5.7,1.2 -8.2,8.9 -1.2,4 -4.2,7.9 -8.9,10.6 -4.7,2.7 -10.4,3.5 -13.3,4.2 2.5,0.7 3.5,0.7 4.7,1.5 -1.5,2.5 -8.4,6.4 -16.1,11.4 -7.7,4.7 -11.4,11.6 -13.3,16.1 -2,4.2 -4.9,6.9 -9.6,7.4 2,1.2 4.9,4 6.4,4.9 -2.2,0.5 -5.9,0.5 -12.6,6.2 -7,5.8 -9.4,7.5 -12.6,8z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#d2ba6b" android:pathData="M715.4,1202.9s6.2,-9.6 21.8,-15.6c15.6,-6.2 32.1,-7.4 38.6,-9.4 6.2,-2 11.1,-4.7 18.8,-6.2 -0.7,5.9 -1,10.6 -2.7,14.6 5.7,1 20,-10.1 27.7,-12.6 7.7,-2.5 25.2,-6.2 26.7,-7.4 1.5,-1.2 4.7,-8.4 5.7,-8.7 1,-0.2 3.7,1.5 5.4,1.5 3.2,0 25.7,-20.8 43.5,-20.5 17.6,0.2 37.6,14.8 34.6,27.9 4.7,-2.7 9.6,-5.2 13.6,-4.2 -0.5,1.7 -0.7,3.7 -0.7,3.7s9.6,-2.2 12.1,1c2.7,3.2 1.2,6.2 7.7,13.8 5.2,6.4 3.7,7.9 2.7,10.1 2.5,0.7 14.8,4.9 26.2,15.6 11.4,10.6 -91,4 -91,4l-188.9,-1.7 -1.8,-5.9z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#c0993a" android:pathData="M1012.5,783.6s-3.2,17.3 -8.9,28.2c-5.7,10.9 -11.9,26 -11.9,26s0,-5.4 1.2,-10.1c-7.2,4.2 -24.7,14.3 -29.7,18.8 -4.7,4.2 -12.6,11.6 -14.6,15.1 4.7,-13.8 9.6,-26.2 10.4,-31.9 -7.2,5.2 -40.8,32.9 -58.3,51.2L846.2,925s-8.4,4.7 -19.3,9.1c-9.4,4 -20.5,7.4 -28.7,10.6 2.2,-5.9 5.7,-11.1 10.6,-16.1 5.2,-4.9 20.8,-21.8 23.2,-29.7 2.2,-8.2 2.7,-13.1 -0.2,-20 -2.7,0.7 -8.9,1 -13.1,2.2 -4.2,1.2 -8.7,5.7 -8.7,5.7s3.2,-18.3 10.1,-35.6c-5.2,0.2 -14.1,1.7 -14.1,1.7s12.4,-20.8 33.6,-35.3c-3.5,0.7 -11.4,2.7 -19,5.9 -12.4,5.2 -26,12.9 -36.1,17.1 5.7,-7.9 45.7,-65 69.5,-118.2 23.7,-53.1 32.6,-66.7 37.8,-95.2 2.7,-14.1 2,-34.9 2.7,-53.6 0.7,-18.5 3,-35.1 1.5,-46.2 6.2,7.7 29.4,29.4 30.2,77.9 0.7,48.5 -22.2,114 -46.5,149.3 5.9,1.7 21.3,3.7 37.1,-23.7s15.6,-35.1 21.3,-46.5c0.7,5.7 0.5,7.7 0.5,7.7s23,-27.9 33.9,-63c2.2,15.1 8.7,28.4 -1.5,56.1 -9.1,25 -21,31.1 -21,31.1s5.9,-1 14.6,-6.2c1.5,3.7 1.2,7.9 3.7,9.4s5.9,4 6.4,6.4c2.7,-4 6.9,-9.1 8.2,-12.9 -1,7.9 -1.7,42.5 2,60.1 7.7,-0.7 15.6,-1.2 21,-15.1 -3.7,13.6 -3.7,21.8 -1.2,33.4 4.1,-2.8 7.8,-7.8 7.8,-7.8z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#a88f33" android:pathData="M752.7,232.4s-7.7,3.2 -20.8,3.2c-11.4,0 -8.2,-4.4 -26,-4.4 -27.4,0 -123.1,15.8 -139.9,15.6 -10.9,-0.2 36.8,4.7 36.8,4.7l121.9,1.7 24.5,-2 9.1,-18.5 -5.6,-0.3z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#e3c571" android:pathData="M436.6,470.7s-15.6,11.9 -22.2,21c-6.7,9.1 -10.1,15.1 -17.6,22.5 2.5,0.2 5.2,-0.7 5.2,-0.7s0,2 -1.2,2.5c2.5,-0.2 4.4,0.7 5.7,2 -2.2,1.2 -8.2,7.2 -3.5,14.3 3.5,5.4 10.9,5.9 10.9,5.9s-1.7,4.9 5.4,4.4c15.3,-0.7 32.4,-7.4 40.3,-5.7 7.9,2 12.4,2.7 18,12.4 5.9,9.6 11.1,11.1 11.1,11.1s3.5,-8.9 2.7,-22.2c4.7,-11.4 4.7,-22.5 4.7,-22.5l-5.2,-38.3 -22.7,-28.7 -29.4,16.3 -2.2,5.7z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#d8b65b" android:pathData="M464.5,465s2.2,5.2 11.4,5.7c-1,2.2 -1,2.5 -0.7,4.2 0.2,1.7 0.5,4.2 0.5,4.2s1.2,-0.5 2.7,-2c0.5,2.2 -0.5,5.7 0,8.2 0.5,2.5 1.5,4.4 1.5,4.4s0.2,-0.5 0.5,-1c0.2,-0.5 2,5.4 6.9,9.9 0,-1.2 0.5,-2 0.5,-2s0,1.7 1.2,3.5c-0.5,-0.2 -1,-0.7 -1,-0.7s0.5,15.8 3.2,24c0.7,-1 1,-1.2 1.2,-1.7 0,-0.5 -0.2,4.4 -0.7,7.9 -0.7,3.5 -0.2,8.4 -0.2,8.4s2.7,-2.2 5.9,-3.5c3,-1.2 7.9,-4.9 10.9,-13.1s4,-14.3 4,-14.3 1.7,3.2 2,5.9c0.2,2.5 4.9,1.2 4.9,1.2l1,-10.9 5.9,-24.7 5.4,-15.3 26,-40.5 47,-36.1 41,9.4 34.6,-47 -59.6,-35.8 -56.4,5.9 -51.2,70.9 -41,64.3 -7.4,10.6z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#d3ae4d" android:pathData="M759.9,362.4s-3.5,0.7 -13.6,5.9 -17.1,6.9 -21,14.6c-4,7.7 -4.2,13.8 -4.2,13.8s6.9,-3 10.9,-4c4.2,-1 8.9,-0.7 8.4,1 -0.5,1.5 -2,3.2 -2,3.2s7.9,-0.2 7.7,3.7c-0.2,4 -1.5,8.2 -3,10.1 -1.5,2 -7.7,4.9 -8.4,7.2 -1.7,4.7 0.7,4.9 -0.2,8.7 -0.7,3.7 -4,10.9 -14.8,23.5 -11.1,12.6 -15.8,21.5 -15.8,21.5s-5.4,-10.1 -8.2,-18.8c-2,1 -12.6,6.9 -12.6,6.9L658.5,374l0.5,-5.7s2.2,-2.7 2.7,-7.7c-3.7,-1.2 -4.2,-2.2 -9.1,-6.9 -4.9,-4.7 -8.9,-10.4 -17.1,-14.3 -1.2,-2.2 -2.7,-5.2 -8.7,-6.4 -5.9,-1.2 -9.6,-2.2 -9.6,-2.2s3.2,-1.2 4.7,-3.7c-3.7,0.5 -6.7,1.7 -14.8,1.5 -8.2,-0.2 -9.1,-0.5 -13.6,0.2s-9.9,2.7 -11.9,-4.2c-2.2,-1.7 -6.9,-0.2 -10.9,5.7s-5.4,10.6 -13.1,12.9c-0.2,1.5 -1,5.4 -3.5,9.6 -2.2,3.7 -5.7,7.4 -10.4,12.9 -7.4,8.7 -6.2,23 -18,33.9 -11.9,10.9 2,-30.2 2,-30.2l19,-45.5 54.1,-52.9 84,-5.7 8.2,43.5 41,14.1 25.9,39.5z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#caa13e" android:pathData="M773.2,372l-35.3,-50.9 -24.7,-19s-17.6,-32.4 -18.8,-33.4c-1,-0.7 -17.6,-2.5 -28.2,-3.2l2,4.9s3.5,1 5.9,4c4.7,5.4 7.7,15.6 -3,26.5 4.2,1.5 5.9,2 9.6,1.5 -3.7,4.4 -12.1,13.8 -12.6,22 -0.5,6.7 3.7,8.7 3.7,8.7s-6.4,7.4 -6.7,19.8c1.5,-1.7 4.9,-5.4 9.9,-9.4 7.4,-5.9 17.6,-12.6 24.5,-16.8 -0.2,2.7 0.7,5.2 0.7,5.2s12.9,-10.6 23.7,-5.9c4.9,2.2 2.7,9.1 2.7,9.1s6.7,-2.5 11.4,2.2 11.4,16.8 14.8,21.5c1.5,2.2 5.4,6.4 9.4,12.9 4.7,7.7 9.9,18.3 13.6,28.7 0.2,-4 1,-9.6 7.9,-9.6L773.2,372z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#f4efc8" android:pathData="M244,516.6s-2.5,-6.2 0,-18.3c2.5,-12.1 6.4,-17.8 7.7,-35.6 1.2,-17.8 12.9,-40 12.9,-40l32.1,-14.6 22.7,6.2 6.7,30.4 -28.7,15.8s-1.5,6.7 -9.6,12.1c-8.2,5.4 -19.3,9.6 -22,15.1 -2.7,5.7 -3.5,10.6 -3.5,10.6s-8.2,-1.7 -13.1,3.7c-5.2,5.5 -5,10.4 -5.2,14.6z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#ebcc73" android:pathData="M308.8,508.5s-2.7,1.7 -4.7,5.9c-2,-3.2 -6.7,-22.2 -6.9,-39.3 -0.2,-17.1 -1.2,-21.3 2.7,-27.2 4,-5.9 19.5,-12.1 17.3,-22.7 -2.2,-10.1 -11.4,-14.3 -22.7,-11.4 -7.9,2 -13.8,18.8 -22,27.2 -6.2,6.4 -13.6,5.4 -15.6,8.9 -2.7,4.7 -0.2,9.4 -1,12.4 -0.2,1 -2.7,6.4 -7.2,12.9 -9.1,13.1 -24.5,31.6 -26.5,48.2 0.7,-9.4 0.2,-9.6 2.7,-20l-1.5,-2.5 9.9,-32.4 6.4,-26.7 14.3,-44.7 25.2,-45.7 24.5,-27.4 25.5,1.7 3,38.3 14.6,71.9 30.7,37.8 -49.2,33.1 -19.5,1.7z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#e5c66b" android:pathData="M324.1,522.1s-4.2,1 -5.7,0.2c-1.5,-0.7 -3,-1.7 -2.5,-2.7 0.5,-1 3.2,-2.7 3.2,-3.5 0,-0.7 -0.2,-2.7 -2.5,-3s-3,1.2 -3,1.2 -2.2,-1.7 -4,-2c1.5,-0.2 3.2,-0.2 3.2,-0.2s-4.2,-2 -8.7,-2.5c2.5,-1.5 7.4,-5.9 10.6,-5.9s5.2,-0.5 4.7,-2.2c-0.5,-1.7 -3,-4.2 -5.7,-5.2 1,-1.2 1.7,-3 -0.7,-7.9 -2.5,-4.9 -1.5,-8.2 -0.7,-9.4 0.7,-1.5 3.2,-4.2 4.4,-5.9 1.2,-1.7 2.2,-4 4.2,-5.2 1,-0.7 4.2,-2 7.4,-3.2 3.5,-1.2 6.4,-2.7 8.4,-1.2 2.2,1.5 1.2,3.5 1.2,3.5s6.9,-2.5 13.1,0.7c6.2,3 21.3,4.9 21.3,4.9l5.4,10.9 -35.8,30.7 -14.8,7.4 -3,0.5z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#e6bd62" android:pathData="M373.8,471.9s-11.1,7.4 -13.6,10.1c1.5,0.2 4,1.2 3,2.7 -1.2,1.5 -8.4,6.7 -12.4,11.6 -4.2,4.9 -8.2,11.1 -9.6,14.1 -1.5,2.7 -12.9,10.6 -16.8,11.6 8.2,0 24.7,-10.1 30.9,-10.1 -0.2,3 1.7,6.4 5.2,6.7 3.5,0.2 13.6,2.2 27.2,-6.2 13.6,-8.2 9.1,-14.3 14.8,-18.3 10.9,-7.2 15.3,-13.6 21.3,-17.6 5.9,-4 9.1,-4.9 9.1,-4.9s0.2,-3 2,-2.7c1.7,0.2 2.2,1.7 2.2,1.7s10.4,-7.4 23.7,-9.4c-0.5,-0.2 -0.7,-0.7 -0.7,-0.7s1,-0.5 1.2,-1c0,0 0.7,-1 1.2,-0.5s1.2,4.2 2.2,5.7c2.2,-1 6.4,-10.4 6.4,-10.4l10.1,-28.9V399l-7.9,1.5 -59.3,25.2 -36,37.3 -4.2,8.9z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#b6933f" android:pathData="M544.6,342.4s5.2,-1.2 9.1,-3.7c-1.2,3.2 -1.2,6.7 -6.4,14.3 -5.2,7.7 -5.4,8.7 -9.6,16.6 -4.2,8.2 -4.7,20 -8.7,25.2 3.2,-1.5 5.7,-1.7 5.7,-1.7s-4,3.5 -5.7,7.2c-1.7,3.7 -4.7,11.4 -12.1,16.1 -7.4,4.7 -16.8,7.7 -26.9,18.8 -10.1,10.9 -20.5,24.7 -25.7,29.7 2.7,-4.7 6.4,-14.1 7.4,-20.3 1,-6.2 -0.2,-13.6 1.5,-21.8 1.7,-8.2 1.7,-14.1 9.9,-28.4 8.2,-14.3 22.2,-64 22.2,-64l30.2,-9.6 9.1,21.6z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#c49937" android:pathData="M522.8,324.1s-9.1,13.1 -11.6,24.7 -0.2,10.6 -1.7,16.3c-1.5,5.7 0,10.6 0,10.6s4,-7.2 12.6,-12.4 15.6,-8.9 19.8,-13.3c4.2,-4.7 7.7,-12.4 16.8,-18.3 -3.7,-0.5 -8.9,-2.2 -9.9,-2 3.7,-4.2 14.8,-10.6 26,-18.3 11.1,-7.9 10.4,-11.1 28.4,-19 -5.9,1 -8.7,-0.5 -13.6,0 2,-4.2 8.9,-6.2 15.8,-13.1 6.9,-6.9 -4.4,-17.1 -4.4,-17.1l-52.7,31.9 -25.5,30z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#dfc068" android:pathData="M379.7,300.3l1.2,-9.6 15.1,-24.2 15.8,-42.5v-58.1l-1.2,-33.6 2.5,-22 1.9,-7 2,-2.7 12.9,6.7 17.8,24.2 1.7,46.7 -17.3,73.7 -49.4,53.9z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#a88f33" android:pathData="M419,97.9s-7.9,0.2 -9.6,33.1c-1.7,32.9 -2.5,50.2 -3.7,66.5s-4,26.2 -5.4,35.8c-1.5,9.6 -2.2,22.7 -6.7,30.7 -2,3.7 -6.2,15.3 -16.1,24 -11.1,9.6 -27.7,16.3 -30.2,16.8 -4.4,1 -26.7,3.2 -35.8,8.2 -3.2,1.7 -8.7,3.7 -14.8,9.4 -12.1,10.9 -28.2,30.4 -39.8,53.9 -17.8,35.1 -35.6,134.2 -35.6,134.2l4,-6.7s0.5,-8.9 9.4,-24.5c8.7,-15.6 6.2,-33.1 18.3,-63 4.7,-11.4 10.6,-26.2 17.8,-38.8 11.4,-20.5 25.2,-38.1 39.1,-47.7 22.7,-15.6 47.7,-19 47.7,-19l26.9,-17.8s4.7,-9.1 10.9,-19.5c8.7,-14.6 19.8,-30.9 22.2,-54.6 3.7,-35.1 -5.2,-58.1 -4.7,-78.9 0.5,-20.8 0.7,-36.1 4.9,-39.8s1.2,-2.3 1.2,-2.3z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#c99e3d" android:pathData="M419,254.9s11.9,-29.2 17.3,-55.1c1,-5.2 3,-10.4 3.5,-14.6 2.5,-24.5 3.2,-34.6 0,-48 -2.5,-9.9 -12.1,-18.8 -17.1,-25.7 -4.9,-7.2 -7.2,-9.9 -6.2,-11.4s4.9,-4 8.7,-3.7c3.7,0.2 13.3,1 21.3,9.9 7.7,8.9 13.8,39.1 13.8,39.1l6.4,39.8 16.3,50.2 -64,19.5z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#b58634" android:pathData="M530.5,224.5s-2.2,1 -6.2,0c0.2,2 -0.2,5.9 -4,8.4 -4.2,-1.7 -43.5,1.7 -43.5,1.7s-18.3,-3.2 -24,-27.4c-4,-16.1 3,-38.3 0.7,-52.9 -3.5,-21.5 -8.4,-25.7 -8.9,-32.4 -0.5,-6.7 -1,-8.4 -1,-12.6 -2.2,-0.5 -3.5,-1.2 -5.7,-1.2 -0.5,-2 0.5,-3.7 -1.7,-7.2 1.2,0.5 9.4,1.5 19,10.6 7.9,7.4 7.9,10.1 9.1,11.6 1.5,1.5 13.6,11.9 18.8,22.2s15.3,43.3 17.6,48.7c0.7,2.2 2.2,4.4 5.9,9.4 5.8,7.2 14.3,19.1 23.9,21.1z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#a88f33" android:pathData="M465.7,123.6c3.7,5.9 10.6,17.8 16.3,30.4 5.9,13.3 9.4,24.2 16.8,33.1 -4,-11.6 -11.1,-34.4 -15.3,-42.5 -4.7,-8.6 -14.3,-17.8 -17.8,-21z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#e6c367" android:pathData="M397.7,288s-10.1,2.5 -28.9,12.4c-6.2,3.2 -12.1,5.9 -17.8,8.4 -14.8,6.7 -30.7,12.9 -43.3,16.3 1,1.2 1.5,1.7 1.5,1.7s0,4.9 2.7,7.7c-1.5,1.5 -21.5,15.1 -15.6,60.6 4,-1.5 8.7,-3.5 9.4,-3.5 1.2,0.2 1.5,3.5 3,3.5s6.4,-2 11.6,-8.7c-0.2,2.7 -3.2,29.9 12.9,48.2 3,-3.5 10.6,-15.1 10.6,-15.1l0.2,-3.7s0.7,-12.9 4.9,-24.7c4.2,-11.9 12.4,-20.5 12.4,-20.5l42.8,-61.1 -6.4,-21.5z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#dcba5a" android:pathData="M357.7,377.7s-3,2.2 -6.4,3.2c-0.7,-2.5 -1.7,-11.1 4.2,-19.5 6.9,-10.1 22,-23.2 26.2,-33.6 2.7,-6.7 1.5,-23.5 25.5,-45s33.4,-28.9 33.4,-28.9l38.8,-19.5 47.7,18.8 -23.7,92.9 -18.4,43.5 -73.2,-13.8 -54.1,1.9z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#e9ce77" android:pathData="M385.6,352.5l9.1,-11.4V333s10.1,-2.7 21,-13.8c10.9,-11.1 26,-32.4 39.3,-31.1 13.3,1.5 14.6,28.9 15.1,36.6 0.5,7.7 2.2,25.2 4.9,34.6 3,9.4 -32.4,45 -32.4,45l-24,18.3 -33,-70.1z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#cdae50" android:pathData="M413.8,447.4s7.4,-11.6 2,-14.1c3.2,-7.2 9.1,-14.8 9.1,-14.8s4.2,-10.4 17.8,-23.2c13.6,-12.9 22,-21.3 24.2,-29.9 2.2,-8.7 2.2,-17.1 2.2,-17.1s2.7,2.2 4.7,3.2c2.2,1 12.6,9.6 11.1,26.9 -1.5,17.3 -7.9,24.5 -7.9,24.5s-6.2,6.2 -10.6,9.4c-4.7,3.2 -6.4,6.9 -14.3,7.2 1.2,-1 2.7,-1.5 2.7,-1.5s-8.2,-1 -12.6,3 -13.8,16.3 -18.5,20c-4.7,3 -9.9,6.4 -9.9,6.4z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#d2a83e" android:pathData="M746.3,252.9s-15.8,-6.4 -36.8,-7.2c-21,-0.7 -51.7,0.5 -81.8,0.7 -32.4,0.2 -61.8,-11.1 -102.6,-13.1 -6.7,-4 -23.7,-21.5 -76.9,15.6 3.2,-0.2 38.6,-8.2 50.9,7.2 12.4,15.3 8.9,41.3 7.2,47.5 -3.2,13.8 -13.6,33.9 -17.8,48s-3.2,21.5 -6.2,31.4 -9.6,14.8 -5.7,26.2c5.2,-3.2 7.9,-3.2 16.6,-22.7 8.7,-19.5 6.9,-33.4 21.3,-49.9 14.1,-16.6 37.6,-39.3 46.5,-45 8.9,-5.7 79.8,-42.5 154,-7.4 17.9,-1.9 31.3,-31.3 31.3,-31.3z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#c29637" android:pathData="M478.1,239.3s-0.2,-1.7 -0.5,-2.2c-1.2,-2.5 -2.7,-4 -2.7,-4s-17.6,-3.2 -26.5,-2.2c-15.6,1.7 -29.7,21 -36.3,30.9 -6.7,9.9 -14.8,25.2 -23.7,33.1 0.2,-1.2 -0.5,-2.2 -0.5,-2.2s0.5,0.7 -0.5,1.7 -1,1.5 -0.5,2l1.5,1.5c0.5,0 14.3,-6.2 33.1,-23.7 20,-18.3 35.3,-27.7 43.3,-30.9 6.1,-2.8 13.3,-4 13.3,-4z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#ac8132" android:pathData="M819.5,164.1s-3.2,4 -7.2,8.4c-8.9,9.4 -20.5,20 -30.4,30.9 -9.4,10.4 -20,18.5 -31.9,32.1 -11.9,13.6 -25.7,28.7 -29.2,33.1 -3.2,4.4 -5.7,11.6 -5.7,15.3 -1.7,-1.2 -3.7,-2.5 -3.7,-2.5s1,2 3,4.4c2.5,3.5 6.4,7.9 8.4,10.6 3.2,4.4 4.9,9.6 5.2,11.4 1.2,0.2 8.9,1.7 18.5,-14.1 9.6,-15.8 22.2,-33.1 22.2,-33.1l20,-29.7 12.6,-25.2 15.8,-28.2 2.4,-13.4z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#a88f33" android:pathData="M840,143.9s-12.1,9.9 -16.8,15.8c-4.7,5.9 -15.8,21.5 -15.8,21.5l4,-0.5 20.3,-18 7.9,-14.1 0.4,-4.7z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#a67a2e" android:pathData="M836.3,938.6s-0.2,-8.2 4.4,-13.1c4.7,-4.9 16.6,-12.1 28.2,-39.1 11.6,-26.9 12.9,-33.1 12.9,-33.1s-20.8,17.8 -33.6,22c3,-6.2 4.7,-10.6 6.2,-13.8 -1.7,-1.5 -8.9,-3.2 -9.6,-4 4,-4 6.2,-13.8 14.3,-20.3 10.4,-7.9 29.4,-21.5 44.2,-33.6 14.8,-12.1 43.8,-40.3 47.5,-48.5 2.2,3.2 2.7,5.2 2.7,5.2s-14.6,19 -22.2,31.1c-6.7,10.4 -6.2,16.3 -6.2,16.3l13.8,-5.9s4,14.8 -14.1,37.3c7.9,-3 11.1,-1.2 15.6,-3.7 -7.4,4.7 -17.6,11.1 -27.2,28.7 -9.4,17.6 -22.2,38.1 -43.8,50.9 -21,13.5 -33.1,23.6 -33.1,23.6z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#8c6228" android:pathData="M782.1,263.3s-8.2,17.1 -9.4,30.4c-0.2,3.2 -1,5.7 -1,9.4 -0.2,11.9 0.7,25.2 -2,31.4 -1,-2.5 -1.5,-4.2 -2.5,-5.2 -1.5,4.2 -4.2,17.3 -6.4,22.2 -1,-3.2 -3.2,-14.3 -3,-27.4 0.2,-13.1 0.5,-15.6 0.5,-18.3 -0.5,4 -3.2,9.4 -4.2,12.6 -1.5,-2.7 -3.2,-6.2 -5.2,-9.1 -1.2,2 -2.7,4.9 -4,6.4 -0.2,-1.2 -0.7,-4.4 -1,-8.9 -0.2,-5.2 -0.5,-11.9 -0.2,-13.3 0.5,-2.7 4.7,-13.3 13.6,-23 10.6,-11.6 21.5,-33.9 24.7,-40.8 3.2,-6.9 16.8,-35.6 16.8,-35.6h10.4l-15.1,34.4s-9.1,18.8 -13.8,25.7c-4.7,6.9 -14.6,26.7 -19,34.4 3.2,-4.2 5.9,-6.4 9.1,-10.4 3.1,-2.8 11.7,-14.9 11.7,-14.9z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#cba94c" android:pathData="M840.2,142.6s-2,7.2 -7.9,14.3c-6.2,7.4 -19.5,17.3 -26,25.2 -5.9,7.7 -17.8,28.7 -12.4,53.6 2,-5.4 5.7,-16.1 15.6,-28.2s20.5,-26 25.7,-36.8c5.2,-10.9 5.9,-19.5 5.9,-19.5l2,-2.5 -1.2,-5.7 -1.7,-0.4z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#a88f33" android:pathData="M1042.7,805.9s-4,-10.9 -5.2,-20.8c-1.2,-9.9 2,-11.9 -1.7,-23.2 -2.2,-6.9 -6.2,-5.9 -7.2,-6.9s-1.7,-11.4 -1.5,-17.1c0.2,-5.7 -0.2,-13.1 -1.2,-16.3 -1.5,-1.2 -2.5,-2.2 -4.7,-9.6 -2.5,-7.4 -3.7,-11.1 -4.9,-13.3s-4.7,-4.2 -4.7,-6.4c0,-4.4 4,-6.7 4,-7.9 -0.2,-2.5 -3.2,-0.5 -4,-1.2 -1,-1.2 2.5,-8.4 1.2,-9.4 -0.5,-0.5 -4,3.7 -4.9,2.5 -1,-1.2 -2.2,-13.1 -4,-21 -1.7,-7.7 -3.5,-13.3 -3.7,-15.6 -0.2,-2.2 -13.8,-41 -17.1,-50.4 -3.2,-9.4 -5.7,-19.5 -6.7,-24.2 -1,-4.7 -1.7,-14.3 -2.2,-13.3 -0.5,1 -0.2,5.9 -1,5.7 -0.7,-0.2 -3.2,-17.3 -4,-20 -0.7,-2.7 -4.9,-11.9 -5.9,-18.5 -1,-6.7 -3.2,-24.2 -4.7,-36.1 -1.5,-11.9 -2.2,-16.8 -2.2,-19.8 0,-1.5 0.5,-10.1 -1.2,-21.8 -2,-12.6 -5.9,-27.9 -9.4,-36.8 -6.7,-16.8 -24.5,-59.8 -27.7,-70.5 0,-2.7 3.5,-1.2 3.5,-1.2s8.7,21.8 15.1,38.6c6.2,16.8 12.1,31.6 13.6,33.1 1.2,1.5 10.6,18 14.8,45s5.7,51.9 8.2,68.5c1.2,7.9 2.2,16.3 4.7,24.7 2.7,9.1 6.9,18.5 12.4,32.9 4.7,12.1 8.2,22.2 10.1,30.9 2.2,11.1 2.2,19.5 3.5,25 1.2,4.7 3,14.1 7.2,27.7s10.4,31.1 14.6,42c8.2,21.8 11.9,40 13.1,49.7 1.1,10 4.8,44.6 3.8,55z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#be9c44" android:pathData="M840.7,141.4l-0.5,1.2s1.5,0.5 1.2,2.5c0,1 0,4.9 -0.5,8.2 -0.5,3.5 -1.5,6.2 -1.7,8.4 0,4.7 0.7,10.1 -5.9,23.5 -2,3.7 -3.2,6.9 -4.2,9.1 -2.5,5.4 -3,6.2 -5.2,8.7 3.5,-2 16.1,-9.9 22.5,-8.7 -4.4,2.5 -11.1,7.4 -15.3,13.8 1,0.2 5.2,1 11.9,0 11.1,-1.7 23.5,-5.7 34.4,-4.9 11.9,0.7 7.2,-14.3 7.2,-14.3l-13.8,-30.2 -26,-18.3 -4.1,1z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#a17c34" android:pathData="M908.5,367.6s-11.6,-11.6 -16.3,-51.4c-4.7,-40 -3.7,-98.9 -3.7,-98.9l-9.4,-23s-2,-15.3 -6.9,-21c-4.9,-5.7 -14.6,-15.3 -19,-20 -4.4,-4.7 -9.4,-11.1 -12.4,-12.1 1.5,-2.5 8.2,-16.6 33.9,-16.8 25.7,-0.2 33.6,14.1 36.3,19.3 2.7,5.2 14.8,27.7 19.3,70.5 4.2,42.8 4.4,46 3.7,60.8 -0.5,8.2 -3.2,27.2 -7.9,47.5 -4.3,17.2 -9,36.4 -17.6,45.1z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#8c6228" android:pathData="M872.1,401.7s5.4,0.7 11.1,-2.5c3.7,-0.2 17.1,1.5 27.4,-11.6 0.7,3 2.5,11.1 -2.2,18.3 2.5,-2.5 6.2,-3.5 6.7,-4.2 0.2,3.7 3.7,15.1 -11.1,42.8 4,-4.4 8.7,-4.2 12.9,-4.7 0.2,5.2 3,22.7 -4.4,32.1 -4.9,6.4 -12.9,4.4 -12.9,4.4s0.2,-2.2 0,-4.2c-0.2,-2.7 -1.2,-5.4 -0.5,-7.2 -1,-0.5 -5.2,-2.2 -10.4,-7.2 -8.7,-8.2 -20,-22.2 -20.8,-32.6 -1,-11.6 9.4,-14.1 9.4,-14.1s-1.2,-1 -2.2,-2.7c-0.5,-1.7 -1,-4.4 -3,-6.6z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#92723a" android:pathData="M795,275.9s-0.5,-0.7 -3.2,2.5c0.5,-3.2 1,-6.2 1.2,-9.1 1,-2.2 2.7,-4.9 4.9,-7.4 -1.5,3 -2.5,5.7 -2.5,5.7s3.7,-6.9 9.1,-11.1c3.7,-3 8.4,-4.4 10.4,-7.2 2.2,-3 1.7,-3.5 2.2,-4 0,0 4.9,-3.2 12.4,-12.6 1,-1.2 2.5,-2.5 3.5,-3.7 1.7,-0.7 5.7,-2.5 10.4,-4.9 4.9,-2.7 10.4,-6.4 13.8,-7.9 6.7,-3 13.8,-2.7 17.1,-7.4 2.5,-0.7 5.2,-8.2 4.7,-14.6 3.7,1.5 22.7,13.3 29.2,39.1 4.7,18.3 -3.7,46.5 -7.2,60.1 -3.5,13.6 -4,23.7 -8.9,29.9 -6.2,8.2 -26.2,19.8 -31.1,25.5 -4.2,4.7 -16.8,16.6 -16.3,25.2 0.5,6.4 8.4,9.9 10.1,11.1 1.7,1.2 1.7,2.7 4.9,2s4.4,-2.2 5.7,-2.2c1.5,0.2 1.5,0.5 2.2,0.5s1.5,-0.2 1.5,-0.2 -0.5,9.1 -21.8,11.9c-1.5,0.2 -3,0.7 -4.9,1 2.5,-1.2 4,-1.2 6.7,-4.9 -3,-0.5 -11.6,-1 -13.8,-1.7 0.7,-1.2 3,-4.4 4.9,-5.9 1.7,-1.5 -0.2,-2 -1.7,-1.2 -0.7,0.5 -4,2.7 -7.4,5.7 -2.5,2.2 -4.7,5.2 -8.7,7.9 -1.2,-4 -1,-11.6 3.7,-17.1 -1.2,0.2 -3.5,3.7 -5.7,3 -0.2,-1.5 -0.5,-6.4 0.7,-10.9s7.7,-12.4 7.7,-12.4l31.4,-56.1 6.7,-42.5 -71.9,13.9z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#b18e3e" android:pathData="M793.3,278.3s-1.7,1.2 1.7,3.5c-0.5,0.7 -1.7,3.2 -3.2,4.9 -1.7,2 -3.5,3.2 -4.2,4.9 -1.5,3.5 -2.7,5.9 -2.7,7.4s-0.5,11.1 -4.7,17.3c-1.5,2.2 -3.2,5.9 -4.4,8.4 -2.5,4.4 -4.7,7.9 -5.2,9.9 -1,3.5 -1.7,13.1 -1.7,13.1s2.2,-2.7 3,-3.7c-1.2,2.5 -2.5,5.2 -4.4,7.2 1.2,-1 4.7,-3.5 10.6,-8.7 8.2,-6.9 21,-18.5 36.6,-27.7 -4.7,1.7 -8.7,1.7 -11.9,2.2 2.5,-2.5 25,-28.9 36.8,-31.4 1.2,-1.5 1,-3.2 1,-3.2l-10.1,-1 -20.5,4.4 -3,-15.8 -13.7,8.3z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#543e26" android:pathData="M825.9,368.3s-2.7,2.7 -5.2,9.4c-0.7,-0.7 -3,-3.2 -4.9,-6.7 -3.7,-6.2 -9.4,-14.1 -22.7,-9.6 -0.2,-4.2 -0.5,-6.4 0,-9.4 2.2,-0.5 8.9,-5.9 15.6,-13.8 4.7,-5.4 9.1,-11.6 12.1,-19.5 2,-1.5 5.4,-4 9.9,-6.9 6.4,-4.4 14.1,-10.4 15.3,-17.1 -3,1.2 -9.4,4.2 -19,3.7 3.7,-1.7 9.4,-3.5 8.7,-10.9 1.5,-1 2.7,-1.7 2.7,-1.7s-1.2,-0.5 -3.5,-0.5c-0.2,-0.7 -0.5,-1.7 -2.2,-1.2 -1.7,0.5 -2,0.5 -2.2,1.2 -0.7,0.2 -3,0 -4.7,1.2 -1.7,1.2 -6.4,5.2 -8.2,5.9 0.7,-1.2 1.7,-3 1.7,-3s-4.9,0.5 -8.4,2c-6.4,2.2 -13.8,6.2 -21.3,10.1 0.7,-1.2 1,-2 1.5,-2.2 0.5,-0.2 1.7,-0.5 1.7,-0.7 0,-0.2 -0.5,-2 -0.2,-2.7 0.2,-0.7 4.4,-8.9 7.9,-13.6 3.5,-4.7 4.2,-11.4 4.2,-11.4l15.3,-7.7 43,-9.9 27.9,1.7 -3.5,19.3 -16.5,33.7 -14.1,30.7 -16.1,18.8 -14.8,10.8z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#806031" android:pathData="M895.6,284.8s-16.8,20.8 -21.5,24c3,-6.4 21.5,-44.5 28.2,-55.1 -1.5,-1.2 -3.5,-1.2 1.2,-19.8 -4,9.4 -5.4,14.3 -8.7,16.8 -3.2,2.5 -3.7,1.7 -5.9,1.7 0.7,-1.2 0.5,-2.5 0.5,-2.5s-14.1,-1.7 -23.7,-1.7 -28.7,5.2 -39.3,9.4c-8.4,3.5 -13.1,3.5 -16.1,5.7 -3,2.5 -4.7,5.2 -6.2,5.9 -1.2,0.7 -6.9,2.5 -8.2,4.4 -1.2,2 -3.2,4.2 -3.2,4.7s-0.5,1.2 1,0.7c0.5,-0.2 4.2,-2.2 8.4,-4.7 5.7,-3.2 12.6,-6.9 17.6,-9.1 14.3,-5.7 18.8,-4.7 25.2,-5.9 6.7,-1.2 16.3,-4 22.7,-4 6.4,-0.2 18.5,0 21.3,0.5 -1.2,1 -2.2,2.2 -1.7,6.4 0,1.2 -1,2.5 -2,5.4 -3,8.2 -8.7,21.8 -11.9,28.7 -4.4,9.4 -9.4,17.3 -11.9,22.2 -2.5,4.9 -7.9,17.8 -13.3,24.7 -5.4,6.9 -8.2,11.1 -9.9,12.6s-13.8,10.4 -12.9,13.6c2.2,-0.7 16.1,-5.9 26.2,-17.3 10.1,-11.4 12.1,-18.3 20,-24.5 7.9,-6.2 14.1,-16.6 17.8,-25.2 3.1,-8 2.4,-10.5 6.3,-17.6z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#b6903c" android:pathData="M533.5,440s-2.2,9.1 -7.2,13.6c-4.9,4.4 -13.6,8.2 -14.6,15.6 -1.2,7.4 8.7,11.1 8.7,11.1s-5.4,8.9 -5.4,15.6c0,6.9 -0.2,8.2 0.5,14.8 -1.2,0.7 -2,2 -2,2s0.5,6.4 5.4,10.4 9.1,6.4 11.6,5.4c0.5,1 1,2.5 1,2.5s3.7,-9.4 6.2,-17.6c2.5,-8.4 4.7,-7.2 5.7,-18.5 1,-11.4 11.9,-30.7 11.9,-30.7l7.4,-16.6 -12.1,-9.4 -17.1,1.8z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#685026" android:pathData="M556,456.3s-3.7,3.7 -6.9,8.2c-3.2,4.4 -5.7,8.4 -10.4,10.1 -4.7,1.7 -7.7,1.7 -7.4,6.4s4.7,6.7 7.2,9.1c2.7,2.5 4.9,6.7 3.7,11.4 1.5,-0.7 4.2,-1.5 6.7,-6.9s20,-38.3 20,-38.3H556z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#d4b968" android:pathData="M624.9,380.4s1.5,-4 0,-6.9c-1.5,-3 -10.6,-4 -15.1,-7.4 -4.7,-3.5 -10.4,-5.9 -15.1,-4.4 0.7,-1.7 3.5,-5.4 1.2,-6.2 -2.2,-0.7 -10.4,3 -12.6,4.7 -2.2,1.7 -7.2,3.7 -8.2,4.9s-2.7,3.5 -3.7,2.5c-1,-0.7 -1.5,-2.5 -3.2,-1.5 -1.7,1 -9.9,7.7 -11.4,11.6s-4.9,12.6 -15.1,22.5c-10.1,9.9 -14.6,16.3 -11.6,20 3,3.7 4.4,1 4.9,4.2 0.2,1.5 0.5,5.4 -0.5,9.4 -1.2,5.2 -3.2,10.1 -0.5,11.1 6.9,2.2 13.6,-2 15.1,-0.7 3,2.7 -1.7,12.4 5.4,14.3 7.2,2 14.3,-1.7 14.3,-1.7l26.2,-14.1 25.2,-13.3 12.9,-25.5 -6.9,-21.3 -1.3,-2.2z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#cca849" android:pathData="M600.2,441.3s-4.4,-6.7 1,-12.6c5.4,-5.9 13.1,-8.4 16.1,-12.1 -1,-1.2 -2.2,-1.5 -2.2,-1.5s2.7,-5.4 8.7,-8.2c-1.5,-1.5 -3.5,-2.7 -5.7,-2.7 -4.9,0 -7.9,3 -12.4,3 -4.4,0 -4.9,-2.2 -4.9,-2.2s7.4,-0.7 6.7,-4c-0.7,-3.5 -2,-3.5 -2,-3.5s14.3,-5.9 16.8,-9.1c2.5,-3.2 2.2,-6.9 2.7,-8.4 1.7,0 11.6,-5.2 15.6,-3s1.2,8.2 1.2,8.2 12.1,-9.1 18.3,-18c5.4,0.5 7.9,-3.7 11.9,-3.7 4.9,0 12.6,6.7 14.1,21 1,8.2 2.5,12.9 1,27.4 -0.7,8.2 -0.5,25.7 2,34.4 1.7,6.9 5.7,6.2 5.7,6.2s-0.7,3 -3.5,5.4c-2.7,2.5 -3,9.1 -2.7,11.6 0.5,2.5 1.5,5.4 1.5,5.4s-3.2,3.7 -4,6.2c-0.7,2.5 -4,4.2 -6.4,4.2 -2.5,0 -1.2,-0.2 -4.4,0s-4.2,0.7 -6.2,0 -3.5,-1.5 -2.7,-7.9c0.7,-6.4 -24.7,-21.3 -24.7,-21.3l-41.5,-14.8z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#585136" android:pathData="M552.5,504.5s9.1,12.1 46.5,12.1c17.8,0 24,-1.7 27.7,-2.7 4,-1 19,-6.9 34.1,-24.7 13.6,-16.1 10.6,-22.7 10.6,-22.7l-7.9,-1.2 -25.7,3.5 -76.1,32.4 -9.2,3.3z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#252211" android:pathData="M580.4,507.5s-32.4,7.2 -32.4,-13.3c0,-20 20,-41 25,-44.7 5.2,-3.7 17.6,-7.9 17.6,-7.9h29.9l5.7,15.1 -2.5,32.6 -43.3,18.2z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#c3b378" android:pathData="M610.3,447.7s-6.2,-5.7 -20.3,2 -25.5,23.7 -26.2,38.3c-0.7,12.9 10.6,22.5 28.2,23 13.1,0.5 21,-1 25,-2 -1,-1.2 -6.2,-7.7 -6.2,-7.7l-0.5,-53.6z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#e6d89c" android:pathData="M604.2,450.9s-1.5,-1.2 -5.9,1.2c-3.7,2 -9.1,7.2 -13.3,10.9 -2.7,2.2 -4.4,3.2 -5.9,4.9 -6.2,7.4 -11.4,19.5 -8.4,25.5 3,5.9 12.9,12.9 38.1,8.2l-4.6,-50.7z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#252211" android:pathData="M596,463.3s-4,6.2 -4,16.1c0,10.1 5.7,26.2 26.7,27.4 16.1,1 26.9,-23.2 38.6,-32.6 8.9,-7.2 14.3,-7.4 14.3,-7.4s-9.1,-9.9 -33.4,-22.7c-24,-12.9 -50.9,-14.6 -65.5,5.2 6.9,-0.5 29.2,-6.2 29.2,-6.2l10.9,3.5 -16.8,16.7z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#6f674d" android:pathData="M627.4,476.4c-0.7,-1.5 -1.2,-3.5 1.7,-4 3,-0.5 4.2,-0.2 5.2,2s2,4 0.5,4.9c-1.5,0.8 -5.4,0 -7.4,-2.9zM622.7,462.3s-1,0.7 -0.5,-0.7c0.2,-1.7 1.5,-4.7 4.7,-4 3.2,0.7 2.5,4.2 2,5.2s-3.2,2.7 -5.2,2 -1,-2.5 -1,-2.5z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#ac924c" android:pathData="M352,468.7s7.9,5.9 17.1,5.7c9.1,-0.2 20.8,-9.6 26.2,-15.6 3.2,-3.5 5.9,-7.2 8.9,-10.1 2.5,-2.5 4.2,-3.7 5.4,-5.4 1.7,-2 3.5,-5.7 4.4,-6.9 -2.2,1.7 -5.4,4.7 -8.7,6.7 -3.2,2 -10.1,5.7 -12.9,6.7 -2.7,1 -30.7,15.8 -30.7,15.8l-9.7,3.1z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#9f8e57" android:pathData="M364.1,394.8s4.4,-3 12.9,-4.9c8.2,-2 24.7,-3.5 24.7,-3.5l13.6,5.9 5.4,20.5 -9.9,21.3 -12.6,7.9 -14.3,-23 -19.8,-24.2z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#eac970" android:pathData="M346.3,413.1l-4.7,3.5s1.2,-2.2 2.2,-8.9c1,-6.7 6.2,-23 13.8,-32.4s7.4,-8.9 7.4,-8.9 -2.2,-0.5 -4,1c1,-2.2 7.4,-10.1 13.8,-14.1s8.9,-5.2 15.6,-2c6.7,3.2 8.4,4.9 13.3,4.7s9.1,-5.4 9.1,-5.4 1,3.2 -2.7,10.6c-3.7,7.4 -18.3,22.5 -18.3,22.5l-30.4,20.8 -15.1,8.6z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#d7bc6b" android:pathData="M368.8,392.3s22,3 28.7,-3.2c0.2,0.7 1,0.7 1,1.2s-0.5,1 -0.5,1 1.2,-0.2 2.2,-0.2c1,0.2 1.7,0.5 2.7,0.5 1,0 2.2,-0.2 2.2,-0.2s-0.2,1.7 -1.5,2.5c1,0 2,0.2 2,1s0.2,3.2 -1,3.7c-1.5,0.5 -3,-0.2 -3,-0.2s0,2.7 1.5,5.4c2,3.7 6.2,7.9 11.9,6.7 0,0 3,7.2 -9.6,23.2 -1.7,2.2 -3.5,5.2 -5.7,7.7 -1.7,4 -2,5.9 -2,5.9s21.3,-8.2 27.4,-26.9c6.2,-18.8 7.4,-37.3 6.2,-54.6 -0.2,-4.9 -1,-8.4 -2.2,-10.9 -3,-6.2 -11.4,-5.2 -14.8,-1.7 -4.9,4.9 -13.1,17.1 -24.5,25.5 -11.6,8.4 -12.1,9.9 -21,13.6z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#585136" android:pathData="M342.4,419.3s-4.2,2.5 -6.4,11.9c-2.2,9.6 2,21.3 4.4,25 2.5,3.7 7.9,13.8 19.3,14.3 2.5,0 5.4,-0.5 8.2,-1.7 4,-1.7 7.9,-4.4 11.1,-6.9 4.9,-3.7 8.9,-6.9 8.4,-7.2 -1.2,-0.5 -30.2,-24.5 -30.2,-24.5L346.3,418l-3.9,1.3z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#453a25" android:pathData="M369.8,459.1s5.9,-0.5 9.4,-2.7 -20.5,-26 -20.5,-26l1.7,25.7 9.4,3z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#84754b" android:pathData="M344.3,417.5s-3,5.7 -3,7.2c-0.5,4.9 1,20.3 2.2,25.2 1.2,5.2 7.7,13.1 16.1,13.1 5.2,0 12.4,-3.2 12.4,-4 0,-1 -7.4,-2 -9.4,-5.7 -1.2,-2 -1.7,-6.9 -2,-11.9 -0.2,-3.2 -0.2,-6.7 1,-7.9 2.7,-3 3.2,-11.6 3.2,-11.6l9.6,-17.8h-12.6l-15.1,9.4 -2.4,4z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#252211" android:pathData="M340.6,423s9.9,-13.1 18.8,-16.1c8.9,-3 12.9,-1.2 12.9,-1.2l-5.2,13.3 -7.4,8.2 0.5,4.2s-1.2,11.1 6.2,18.8c7.4,7.7 12.9,7.4 16.1,7.4 3.2,0 12.4,-2.7 17.1,-13.8 4.2,-10.4 7.7,-23.7 -0.7,-37.1 -8.2,-13.3 -22.7,-13.8 -25.5,-13.8 -2.8,0.1 -24.8,1.1 -32.8,30.1z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#f7f7e7" android:pathData="M594.5,467.5c-3.7,-1.7 -0.2,-12.1 3.5,-15.3 3.7,-3.2 8.4,-6.9 16.6,-7.4 3,-0.2 5.9,1.7 5.4,3.7 -0.7,3.7 -5.9,8.9 -10.6,12.6 -6.5,5.1 -10.7,8.3 -14.9,6.4z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#f8f6de" android:pathData="M394.5,410.8c2.7,-0.2 6.2,2 6.9,4.9 0.7,3.2 -1.7,9.6 -6.9,9.6 -4.2,0 -6.4,-5.2 -6.4,-6.7s0.7,-3 1,-3.5c0.2,-0.3 0.7,-3.8 5.4,-4.3z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#d4c38b" android:pathData="M355.5,413.1s-6.9,3.2 -10.1,9.9c-3.2,6.7 -2.5,13.3 -2,15.8s3,8.7 4.7,10.9c1.7,2.2 4,3.7 5.7,3.5 1.7,-0.2 5.2,-4.7 5.2,-7.4s0.2,-14.1 3.5,-20.3c2.9,-6.2 -7,-12.4 -7,-12.4z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#e2d59d" android:pathData="M356.5,412.6c-1.2,0.7 -3.2,1.7 -2.7,3 0.5,1.2 4.7,2 6.2,4.9 1.7,3 1.7,6.2 1.2,7.7 0.5,-0.2 2,-1 3.5,-2.5 2.2,-2.5 4.9,-5.9 7.2,-5.9 1.5,0 3,0.7 4.4,0.7 2.2,0 4.4,-0.7 4.7,-3 0.5,-3 -4.2,-5.7 -6.9,-5.2 0.5,-2 1.2,-4.9 -1,-6.9s-9.1,1.5 -10.6,2.5c-1.6,1 -6,4.7 -6,4.7z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#cbac5a" android:pathData="M515.4,622.7l14.8,-4.4 4.2,3s3,6.4 7.7,7.2c-1.5,3.2 -5.4,5.9 -5.2,8.2s2.2,4 2.2,4 -13.3,22 12.9,44.2c-6.2,2.5 -14.1,5.9 -18.3,7.9 3,0.7 9.4,2 12.1,4.4 2.7,2.5 2.7,3.2 5.2,4.7s4,3.5 3.5,4.4c-1.7,-1 -7.4,-4 -8.4,-1.2 -1,2.7 -24.7,1.7 -24.7,1.7l-40,7.7s1.5,-4 -2.7,-7.7c-4.9,-4.4 -10.9,0.2 -17.3,-4.7 -8.4,-6.4 -8.7,-13.8 -11.4,-16.6 2.7,-1.7 8.2,-4.2 21.3,-5.9 -0.5,-1 -2.2,-4 -1.2,-6.7 1.2,-3.5 6.2,-5.7 4.7,-9.9 2.2,-0.5 3.2,-0.5 8.7,-7.4 5.2,-6.9 8.4,-8.4 12.4,-8.9s6.4,0 13.8,-6.9c5.2,-4.9 3.5,-9.1 3.5,-9.1s3.4,-1.1 2.2,-8z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#d6bc6f" android:pathData="M471.7,624.9c0.2,-1 1,-1.5 6.4,-1s39.6,-3.2 48.9,-3.7c9.4,-0.7 42.5,-0.2 58.6,3.2s32.4,7.4 40.3,9.4c7.9,2.2 10.4,3 10.1,4 -0.2,1 -2,2 -3,1.7 -1,-0.2 -27.2,-8.2 -35.3,-9.9s-36.1,-6.2 -51.4,-5.9c-14.3,0.2 -20,-0.2 -32.1,1.2 -12.1,1.5 -32.1,3.5 -38.1,2.7 -5.9,-0.7 -4.7,-0.7 -4.4,-1.7z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#dfc677" android:pathData="M552.2,703.3s20.5,11.1 27.9,24.7c5.4,10.1 -3.2,15.1 -3.2,15.1s11.6,0 10.1,6.4c-0.7,4 -20,14.8 -32.9,20.5 -13.1,5.7 -12.6,5.4 -19,6.4 -6.2,1 -23.2,-2 -26.7,3 -3.5,4.9 -2,10.1 -1,10.9 1,0.7 9.1,1.7 9.1,1.7s-1.7,4.7 -18.5,5.2 -21,1.7 -22,3.5c-1,1.7 3.2,0.7 10.9,2 7.7,1.2 18.5,2 18.5,2s-3.5,3 -12.6,5.4c-10.4,2.7 -26.7,5.2 -31.6,8.2 2.5,1.7 6.2,4.2 7.9,4.4 -4.2,1 -10.1,3.2 -11.1,4 1.5,1 3.5,2.2 3.5,2.2s-8.4,10.1 -13.3,12.6 -33.1,15.6 -42.8,13.1c-24.2,-6.4 -27.2,-32.9 -33.1,-34.9 -8.9,-3 -13.1,3 -21,-1.2 3.5,-2.5 5.4,-4 9.1,-5.7 -4,-2 -24.7,-15.1 -24.7,-15.1s-2.5,-5.7 -7.2,-13.8c-4,-6.9 -9.9,-16.1 -14.3,-24.2 -9.6,-17.8 -10.1,-26 -18.8,-36.1 1.5,-2 6.7,-1.7 6.7,-1.7l72.9,24 129.3,3.7 33.6,-48 14.3,1.7z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#c4a859" android:pathData="M360.7,776.5s1,1.2 2.7,2.2c2.5,1.7 6.2,3.7 8.7,6.7 1,-1.5 3.5,-4.2 7.9,0s9.9,1.2 13.3,2.2c3.5,1.2 3.7,1.7 3.7,1.7s2,-1.7 6.4,-3.5c2.7,-1 5.9,-1.7 9.4,-2.7 3.2,-0.7 6.7,-1.7 9.1,-1.7 2.2,1.5 10.1,9.9 41.8,-2.5 29.9,-11.6 36.8,-12.9 41.8,-11.1 0.5,-1.2 1,-3.5 8.7,-3.2 0,-3.2 -6.4,-14.1 -6.4,-14.1l-35.3,-12.1h-19.3L395.3,749l-32.1,18.3 -2.5,9.2z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#927d49" android:pathData="M341.4,756.2s0.7,5.4 8.7,11.1c7.9,5.7 10.4,9.1 10.4,9.1s1.5,-2 2.7,-4c1.2,-2.2 2.2,-4.7 4.2,-5.4 4,-1.7 13.1,1.5 15.1,1 1.7,-0.5 1.2,-4 3,-4 4.2,-0.2 6.9,2.7 8.4,2.7s5.2,-0.2 5.7,-1 0.7,-9.1 6.4,-13.1c6.2,-4.4 13.8,-2.5 15.8,-1.5 0,1.5 0.2,5.2 4.2,5.4 4,0.2 4.4,-0.5 7.9,0.7s7.7,-0.2 9.6,5.7c1.7,-0.5 5.7,-1 4.7,-6.7 2,-1.5 3.7,-2.5 7.9,-8.4 1,-1.5 2.7,-3.2 4,-5.4 3.5,0 7.7,-0.7 13.3,4.2 -1.7,1.2 -2.7,2 -3.2,3.2 0.5,0.5 2.5,2.5 4,4.7 1.5,2 2.5,4.4 4.4,4.9 4.2,1.2 11.1,-0.5 18.8,0 7.4,0.5 13.6,3.2 16.3,4.9 1,-0.5 1,-0.7 3.5,-0.2 2.5,0.5 4.4,0.7 1.7,-2.5 1.5,0.7 3.2,2.2 4.7,0.7 1.5,-1.5 2.7,-3.7 6.9,-4.2s5.7,0.2 7.4,-4.2c2.2,-5.4 -5.4,-5.4 -5.4,-5.4s3.5,-3.2 7.4,-7.4c4.7,-4.4 10.1,-10.1 11.4,-17.1 2.2,-12.9 -10.4,-14.6 -10.4,-14.6l-61.1,18.8 -74.7,-3.7 -63.7,31.7z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#6e6342" android:pathData="M286.5,579.7s-2,2.5 -3.2,8.4c-1.2,5.9 -0.7,5.2 -1.7,9.4s-13.3,46 -8.7,60.1 12.6,19.3 17.6,30.7c1,2.5 2,4 2.5,6.2 1.7,7.4 0.2,13.1 2.2,20.5 0.7,2.5 2.5,5.4 5.2,8.4 5.9,6.2 15.6,12.1 19.8,16.3 5.9,6.2 14.3,18.8 25,20 5.7,0.7 13.8,-1.7 20.5,-5.7 5.9,-3.7 9.6,-8.9 15.8,-11.9 4.4,-2.2 9.1,-3 13.3,-4 8.7,-1.7 16.6,-2 21.3,-1 7.2,1.5 24.2,6.7 33.6,6.7 3.7,0 12.4,-0.5 21.8,-3 14.3,-4.2 31.6,-11.4 43,-14.6 6.7,-2 12.1,-2.5 17.6,-3.7 9.4,-2.2 17.3,-5.2 21.8,-10.9 -3,-3.5 -6.7,-8.9 -26.7,-8.7 -22.7,0.5 -48.9,13.1 -61.8,15.1 -12.9,2 -18.5,3.7 -32.9,-1.5 -14.1,-5.2 -14.6,-8.7 -14.6,-8.7s-14.8,-10.4 -21,-36.8c-6.2,-26.5 0,-45.7 16.1,-64 4.2,-4.7 3.2,-8.9 3.2,-8.9s10.6,-14.3 7.7,-27.7c-3.2,-13.3 -23.7,-10.6 -23.7,-10.6l-113.7,19.9z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#39331f" android:pathData="M303.6,624.2s-1.5,2.7 -1.2,5.4c0.2,2.7 1,6.2 9.1,14.1 6.9,6.9 5.4,14.6 5.4,14.6s3.5,0.7 12.9,-3.7c7.4,-3.5 9.9,2.7 9.9,2.7s3,-1.7 6.9,-2.2c4,-0.5 6.2,-2 6.2,-2s8.7,8.9 16.3,13.1c6.9,3.7 10.9,6.2 14.3,3.7 3.2,-2.2 3.2,-6.7 3,-8.7 0,0 -1,-2.5 -3,-5.2 -2.2,-3.2 -5.7,-6.9 -5.9,-9.9 -0.5,-6.9 5.2,-15.1 4,-17.1 -1.2,-2 -5.7,-2.5 -16.8,1.5 -11.5,3.8 -61.1,-6.3 -61.1,-6.3z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#292311" android:pathData="M329.8,668.9s-5.7,-5.4 -3.7,-31.6c3,-0.2 7.2,0.7 7.2,0.7s3.1,20.3 -3.5,30.9z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#252211" android:pathData="M289.2,559.7s1,-0.7 2.2,-2c-2,3.7 -11.1,18.5 -3.7,41.8 7.4,23.2 26,40.5 48.9,41.3s34.9,-10.4 48.7,-27.2c5.4,-6.7 11.6,-15.1 17.1,-20.8 8.2,-8.9 14.6,-11.4 14.6,-20 0,-17.6 -18,-25.5 -44.5,-33.4 -26.5,-7.9 -50.4,-6.9 -62.8,-1.5 -12.1,5.9 -17.3,12.1 -20.5,21.8z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#3f3824" android:pathData="M374.3,676.8l2,-1s0.5,-7.9 3.7,-7.7c3.2,0.5 4.7,4.7 4.4,6.2 -0.2,1.5 -1,4 -4.2,3.7 -4.2,0.1 -5.9,-1.2 -5.9,-1.2z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#2d2815" android:pathData="M365.4,643.2s2,-0.7 4.4,1.7c2,0 10.6,-1 13.3,0.7 2.7,1.7 3.5,3.2 3.5,3.2s-10.1,2.2 -15.6,0c-5.6,-1.9 -5.6,-5.6 -5.6,-5.6z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#82764f" android:pathData="M409.9,644.7c0,-0.5 -5.4,-4.2 -11.1,-5.4 -1,-0.2 -1.2,0.5 -2,0.5 -0.5,-0.2 -0.7,-1.7 -0.7,-1.7l-3.2,1.7s-0.5,0.7 1.2,2c1.5,1.2 4,2.2 4.7,4.2 0.7,2 0.7,2.7 1,3 0.2,0.2 3.7,0 5.4,-1 1.7,-1.1 4.9,-2.6 4.7,-3.3z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#2d2816" android:pathData="M359.4,665s1,-6.9 7.7,-7.2c6.9,-0.5 8.2,6.2 8.2,6.2l-4,4c0,-0.1 -3,-4.3 -11.9,-3z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#574f35" android:pathData="M402.9,635.3s-3.7,4 -11.9,5.2c-0.7,-1 -2.2,-3 0,-6.2s4.7,-4.2 7.2,-3.2c2.5,0.5 4.2,2.2 4.7,4.2z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#82764f" android:pathData="M418,640.2c0.2,-1 -0.5,-1.2 0,-1.7s3.2,-1.5 3.7,-1c0.2,0.2 0,1 0,2s0,2 -0.5,2.7c-0.7,1 -2.7,1.5 -3.7,1.2 -1,-0.2 -1.2,-1.7 -1.2,-2 0.5,-0.2 1.7,-0.7 1.7,-1.2zM435.1,629.4c0,-0.5 1.7,-1.5 2.7,-1.5 1.5,0 1.5,1.2 1.7,1.5 0.5,0.2 0.5,-0.2 1,0.7 0.5,1 1.2,2.5 0.7,3.5s-2.5,1.7 -3,1.5c-0.7,-0.5 -2.9,-5 -3.1,-5.7z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#6e6342" android:pathData="M400.7,642.5s2.2,0.5 5.2,3c-1,0.7 -2.5,1.5 -2.5,1.5s-0.2,-2.3 -2.7,-4.5z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#585136" android:pathData="M395.8,620.5c-0.5,-0.5 1.5,-1.7 2.7,-1.5 1.2,0.2 1.7,1 3,1.2s1.5,-0.5 2,-1 2.2,-0.2 2.5,0c0.2,0.2 0.5,0.7 0.5,0.7s0,-1.2 1,-2c1,-0.7 2,-0.7 2.7,-0.5 0.2,0.7 1.2,3.2 1,3.7 -0.2,0.5 -3.2,1.2 -3.7,0.7 0.5,1.2 2.7,3.7 3,4.2 0.2,0.5 -2.2,1.7 -3.2,1.5 -1.4,-0.1 -10,-5.1 -11.5,-7zM408.9,603.9s-0.2,-0.7 -1,-1.2c-0.7,-0.2 -3,0 -3,1.2s2,7.9 4.2,11.4c2.5,3.5 4.2,6.4 5.9,7.2 1.7,0.7 2.7,-0.5 3,-1 0.2,-0.5 0.7,-4.2 0.5,-12.9 -0.2,-8.7 -0.5,-17.1 -1,-17.6s-2.5,-0.5 -3.2,0.5 -5.2,10.9 -5.4,12.4z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#574f35" android:pathData="M400,655.1s-3.5,-2.2 -6.9,-0.7c-3.2,1.5 -3,7.4 -3,7.4s2.2,1 4.4,-0.5 5,-4 5.5,-6.2z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#82764f" android:pathData="M406.6,663c-0.2,-2 -2,-2 -2,-3 0.2,-1 1.2,-1.7 2.2,-1.7 1,0 2,1.2 3.2,2 1.2,0.7 3,2 3.2,3.5s-2,5.7 -4.4,5.7c-2.4,-0.1 -1.7,-4.5 -2.2,-6.5zM425.9,660.3s-4,1.2 -3.7,0c0.2,-1.2 1.2,-1.5 2.5,-1.5 0.5,-0.5 1.5,-1.2 2.5,-1.2s1.5,0.5 1.5,0.5 2.7,-1.2 3.5,-0.5c0.7,0.7 0.2,0.7 0.7,1.5 0.5,0.7 1.2,2.2 1.2,3s-3,2.5 -5.4,2.2c-2.8,-0.6 -2.3,-3.5 -2.8,-4zM449.2,655.8s1.2,0.7 0.2,1.5c-0.7,0.7 -4.2,2 -7.2,2.2 -3,0 -5.7,0.5 -5.7,-0.5s2.5,-3 4,-3.5c0.5,-0.7 1.5,-1.2 2.5,-1.2 1.2,0 5.9,-0.5 7.2,-0.7 1.2,-0.2 2.2,0.5 1.5,1.5 -0.3,0.7 -2.5,0.7 -2.5,0.7zM456.1,624.9s-1.5,3.2 -3.2,3.2c-1.7,-0.2 -1.7,-0.7 -1.7,-1.2 0,-0.7 1.7,-2.5 1.5,-3 -0.5,0 -1.7,0 -1.5,-1.2 0,-1 1.7,-2.2 3.2,-2 0.5,-0.5 2.2,-1.5 4,-1.5 1.7,0 3.2,0.5 3.2,1.5s-2,3.2 -2.7,3.7c-0.8,0.8 -1.8,1.3 -2.8,0.5zM433.3,684s-2,0.2 -2,1.2c0,0.5 0.5,0.5 1.2,0.2 0.5,0 1.2,-0.2 1.2,-0.2 0.2,0.2 0.2,1.2 1.7,1.2 0.7,0 2.2,-0.5 3.5,-1.2 1.2,-0.5 2.2,-1 2.2,-2 -0.5,-1.7 -1.5,-2.5 -3,-2.5s-2.2,0.5 -2.2,0.5 -0.5,-1 -2.2,0c-1.7,1 -1.5,1 -1,1.5 0.9,0.8 0.6,1.3 0.6,1.3zM422,694.4c0,-0.5 2.5,-1.5 3.2,-1.2 0.7,0.2 2.7,4 2.7,4.4 0,0.5 -2.5,1.7 -3.5,1.7s-2.7,-1.7 -2.7,-2c0,-0.2 1.2,-0.5 1.2,-0.7 0.3,-0.5 -0.9,-1.7 -0.9,-2.2zM414.1,679.8c0.5,-0.2 0.5,-0.7 1.2,-1.2s1.5,-0.2 1.5,-0.2 0.5,-1 1.7,-1.2c1.2,-0.2 2.2,0 2,0.5 0,1.5 1,2.5 1,3.7 0,1.2 -0.7,2.7 -3.2,3.7 -2.5,0.7 -5.9,0.7 -6.4,0.5 -0.5,-0.2 -1,-2.2 -0.5,-3.2 0.4,-1.1 1.9,-2.1 2.7,-2.6z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#6e6342" android:pathData="M417.3,680.5s-1.7,1 -1.7,1.5c-0.2,0.5 -0.2,1.2 -0.2,1.5s2.2,-0.2 2.5,-0.5c0.1,-0.2 -0.6,-2 -0.6,-2.5z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#585136" android:pathData="M402.4,675.8c1,0.2 2.7,0 4,0.5 1,0.5 1.7,1.5 0.7,2.7 -1,1.2 -2,3 -4.2,2.7 -2.5,-0.2 -4.9,-1.5 -4.9,-2.5 -0.2,-1.2 0.5,-2.7 1.2,-3.5 1,-0.8 1.5,-0.3 3.2,0.1z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#574f35" android:pathData="M401.2,676.8s-3.2,2.5 -4,3.7c-1,1.2 -5.9,7.4 -7.4,8.7 0.5,-1 1.7,-2.5 1.7,-2.5s-3,1.7 -4.2,5.4c-1.2,3.7 6.7,5.7 11.9,7.2s7.2,2 7.2,2 -3,-4.4 -4.9,-9.1c-2,-4.7 -3,-5.2 -1.7,-7.4 1,-2.2 2.5,-3.7 2.5,-5.4 -0.6,-1.6 -1.1,-2.6 -1.1,-2.6z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#252211" android:pathData="M287.2,684.7s0.7,0.2 2.2,0c1.5,-0.2 17.1,-5.9 33.4,-4.9 7.2,0.5 20,1.5 36.1,5.9 20.5,5.4 46,16.1 62.5,22.2 4.4,1.7 8.7,4.7 11.9,5.9 12.6,4.9 13.1,4.9 20.5,6.2 8.7,1.2 17.6,-1.7 26.9,-3.7 11.4,-2.5 30.9,-3.7 48,-6.2 8.9,-1.2 16.3,-3.7 16.3,-3.7s-13.6,13.6 -46.2,18.5c-16.3,2.5 -29.7,1.7 -39.8,0.5 -10.4,-1 -17.3,-2.5 -22.5,-4 -5.9,-1.7 -18,-6.2 -32.9,-9.9 -10.4,-2.7 -22,-4.7 -35.3,-7.2 -32.8,-6 -68.4,-12.9 -81.1,-19.6z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#cfb66c" android:pathData="M270.2,552c-3.5,-3.2 -7.2,-6.4 -10.6,-9.6 -3.5,-3.2 -6.9,-6.4 -10.4,-9.6l-10.4,-9.9c-1.7,-1.7 -3.5,-3.2 -5.2,-4.9 -1.7,-1.5 -3.7,-3.2 -5.4,-4.7 -13.8,-13.1 -27.7,-26.2 -41.3,-39.3 14.1,12.9 27.9,25.7 42,38.8l4.9,4.9c1.7,1.7 3.5,3.2 5.2,4.9l10.4,9.6c3.5,3.2 6.9,6.4 10.4,9.9s6.9,6.7 10.4,9.9zM87,550s50.2,5.2 74.7,8.7c22.7,3.2 93.7,14.1 93.7,14.1M87,550c14.1,1.2 28.2,2.7 42.3,4.2 7.2,0.7 14.1,1.5 21,2.2l10.6,1.2c3.5,0.5 6.9,1 10.4,1.5l42,6.7 21,3.5c6.9,1.2 13.8,2.5 21,3.7 -6.9,-0.7 -14.1,-1.7 -21,-2.7l-21,-3 -42,-6.2c-3.5,-0.5 -6.9,-1.2 -10.4,-1.7l-10.6,-1.2c-6.9,-0.7 -14.1,-1.7 -21,-2.5 -14.1,-1.7 -28.2,-3.5 -42.3,-5.7zM250.4,585.9s-53.6,13.6 -71.7,18.8C160.9,609.6 107,626 107,626"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#cfb66c" android:pathData="M250.4,585.9c-11.9,3.5 -23.7,6.9 -35.8,10.1l-35.8,9.6c-11.9,3.5 -23.7,6.9 -35.6,10.4l-17.8,4.9c-5.9,1.7 -11.9,3.2 -18,4.9 5.9,-2 11.9,-4 17.8,-5.7l17.8,-5.7c11.9,-3.7 23.7,-7.2 35.6,-10.9 12.1,-3 24,-6.2 36.1,-9.1 11.5,-2.9 23.6,-5.8 35.7,-8.5zM114.5,659c5.9,-2.2 73.9,-33.9 89.7,-41.3 7.9,-3.7 30.9,-11.9 30.9,-11.9"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#cfb66c" android:pathData="M114.5,659c5.2,-2 10.1,-4.4 15.1,-6.7l14.8,-6.9 29.7,-14.3c9.9,-4.7 19.5,-9.9 29.7,-14.3 5.2,-2.2 10.4,-4 15.6,-5.7l7.9,-2.5c2.7,-0.7 5.2,-1.5 7.9,-2.2 -9.9,4.7 -20.3,8.7 -30.2,13.3 -9.9,4.9 -20,8.9 -30.2,13.3l-30.2,13.3c-10.1,4.1 -20,8.5 -30.1,12.7zM121.1,686.7s61.6,-36.1 82.8,-47.7c11.1,-6.2 47,-24 47,-24"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#cfb66c" android:pathData="M121.1,686.7c10.4,-6.4 21,-12.9 31.6,-19.5l15.8,-9.6c5.4,-3.2 10.6,-6.2 16.1,-9.4 5.4,-3.2 10.6,-6.4 16.1,-9.4 2.7,-1.7 5.4,-3 8.2,-4.2l8.4,-4.2c11.1,-5.4 22.2,-10.9 33.9,-15.6 -10.6,6.7 -21.5,12.4 -32.4,18.3 -5.4,3 -10.9,5.7 -16.3,8.7 -5.4,3 -10.6,6.2 -16.1,9.1 -5.4,3.2 -10.6,6.2 -16.1,9.1l-16.3,8.9c-11.1,6 -22,11.9 -32.9,17.8zM250.4,622.9s-38.3,29.4 -50.7,38.8c-12.4,9.4 -48.9,35.8 -48.9,35.8"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#cfb66c" android:pathData="M250.4,622.9c-7.9,6.7 -16.3,13.1 -24.5,19.3l-24.7,19c-8.4,6.2 -16.6,12.6 -25,18.8 -8.4,6.2 -16.8,12.1 -25.7,17.8 7.9,-6.7 16.3,-12.9 24.7,-19s17.1,-12.1 25.2,-18.3l24.7,-19c8.5,-6.2 16.7,-12.6 25.3,-18.6zM206.7,692.9s8.9,-7.4 20,-17.8c13.8,-12.9 30.7,-29.4 36.1,-32.4"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#cfb66c" android:pathData="M206.7,692.9c4.4,-4.4 9.1,-8.7 13.8,-12.9l7.2,-6.2c2.2,-2 4.7,-4.2 6.9,-6.4 4.4,-4.4 8.7,-9.1 13.1,-13.6 2.2,-2.2 4.4,-4.4 6.9,-6.4 1.2,-1 2.5,-2 4,-2.7 1.2,-0.7 2.5,-2 4.2,-2.2 -1,1.5 -2.2,2.2 -3.2,3.5 -1.2,1 -2.2,2.2 -3.2,3.2 -2.2,2.2 -4.7,4.2 -6.9,6.2 -4.7,4 -9.6,7.9 -14.3,12.1 -4.7,4.2 -9.1,8.7 -13.8,12.9 -5.1,4.3 -9.8,8.5 -14.7,12.5zM266.5,652.9s-32.6,31.9 -39.3,37.1"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#cfb66c" android:pathData="M266.5,652.9c-3,3.5 -6.2,6.7 -9.4,9.6l-9.9,9.4c-3.2,3.2 -6.2,6.4 -9.6,9.6 -3.5,3 -6.7,5.9 -10.4,8.7l9.6,-9.4c3.2,-3.2 6.7,-5.9 10.1,-9.1l9.6,-9.4c3.3,-3.3 6.5,-6.5 10,-9.4zM268,670.2s-3.7,10.9 -10.6,24.5c-8.4,16.8 -21,37.8 -26.5,48.5"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#cfb66c" android:pathData="M268,670.2c0,3.7 -1,6.9 -2.2,10.1 -1.2,3.2 -2.5,6.4 -4,9.4s-3.2,6.2 -4.9,9.1c-1.7,3 -3.7,5.9 -5.2,8.9l-10.1,17.8c-3.5,5.9 -6.9,11.9 -10.6,17.6 2.5,-6.4 5.9,-12.4 9.1,-18.3 3.5,-5.9 6.7,-11.9 9.9,-18 1.5,-3 3,-6.2 4.2,-9.4 1.5,-3.2 3,-6.2 4.2,-9.1 1.5,-3.2 2.7,-6.2 4.2,-9.1 1.7,-3.1 3.1,-6.1 5.4,-9z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#dec270" android:pathData="M303.6,752.2s-9.9,13.1 -8.9,29.7c2.7,-8.7 6.1,-22 8.9,-29.7zM313,765.3s-3.5,35.6 -6.4,53.1c4.1,-20.2 4.9,-18.5 6.4,-53.1zM378.5,820.5s-14.8,43.5 -15.1,55.6c3.2,-12.4 9.4,-37.8 15.1,-55.6z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#cbaf59" android:pathData="M413.1,749.5s24,39.6 42,73.4c-4.9,-17 -16.1,-48.2 -42,-73.4z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#e3c677" android:pathData="M477.6,807.8s18.8,32.4 35.6,71.9c-2,-17 -7.4,-46.1 -35.6,-71.9z"/>
</group>
<group>
<clip-path android:pathData="M618,618m-585.6,0a585.6,585.6 0,1 1,1171.2 0a585.6,585.6 0,1 1,-1171.2 0"/>
<path android:fillColor="#ecd592" android:pathData="M667.2,866.2c4,-2.5 11.9,-16.1 18.8,-19.5 6.9,-3.5 12.1,-4.2 18.3,-11.1 6.2,-7.2 7.9,-11.6 21.5,-17.3 19,-8.2 5.9,-18.8 5.9,-18.8s3.2,-3.2 6.7,-5.7c4.9,-3.7 10.6,-8.2 10.1,-16.1 -0.7,-13.3 -3.2,-32.6 -14.1,-43.8 10.6,-2.2 30.9,-3.7 43.5,-6.9 14.6,-3.7 21.3,-8.9 21.3,-8.9s-8.4,-14.3 5.2,-28.7c13.6,-14.3 24.7,-23 32.9,-39.1 -9.4,-1.2 -23.7,-6.2 -60.3,7.7 2.7,1.2 5.7,3.2 5.7,3.2s-22.5,6.2 -30.7,13.1c-14.3,12.1 -16.1,22 -31.6,29.4 -15.6,7.4 -31.1,5.4 -44,11.4 -12.9,5.9 -14.8,11.1 -19.5,13.3 1,1.2 -0.2,3.2 1.7,4.9 -1.2,1.7 -8.2,13.1 -15.3,13.1 0.7,2.7 6.7,4.7 6.7,4.7s-4.4,3.2 -15.6,4c5.7,5.9 11.1,12.4 26,21.8 -1.2,2.5 -6.2,6.2 -4.2,10.9 2.2,4.7 7.9,11.1 30.7,16.3 -11.6,0.5 -25.2,3.2 -43.5,0.7 -18.3,-2.2 -21.3,-3.5 -32.6,-0.7 1.2,1.2 4.4,1.2 7.2,4.4 -3,0.2 -21.8,-2.2 -28.2,6.2 -6.7,8.7 -9.6,23 -9.1,32.6 -3.5,1.7 -6.9,4.7 -5.2,10.9s10.6,8.2 16.3,12.1c5.7,4.2 6.2,5.7 11.6,4.7 5.7,-1.2 14.1,-6.9 19,-6.9s8.4,3.7 8.4,3.7 13.3,-6.4 14.6,-5.2c1.2,1.2 0.2,8.9 1.5,10.1 1.3,0.9 16.3,-8 20.3,-10.5z"/>
</group>
<path android:fillAlpha="0.8" android:fillColor="#fff" android:pathData="M957.9,466c-62.5,-161.4 -217,-191.3 -217,-191.3H300.1l1.7,164.4h87.8v367.1h-89.5v164.1h428.6c103.3,0 186.1,-103.8 186.1,-103.8C1047.4,678.3 957.9,466 957.9,466zM731,755.9s-33.6,48.5 -70.2,48.5h-73.2l-1.7,-364.9h93.9s43.5,9.1 73.9,95.2c0,0 40.3,123.3 -22.7,221.2z" android:strokeAlpha="0.8"/>
</vector>
+15
View File
@@ -0,0 +1,15 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="300dp" android:viewportHeight="500" android:viewportWidth="500" android:width="300dp">
<path android:fillColor="#2F3030" android:pathData="M249.98,6.55l148,244.56l-147.45,-63.02z"/>
<path android:fillColor="#828384" android:pathData="M102.39,251.11l147.59,-244.56l0.55,181.54z"/>
<path android:fillColor="#343535" android:pathData="M249.98,341.29l-147.59,-90.17l148.14,-63.02z"/>
<path android:fillColor="#131313" android:pathData="M397.98,251.11l-147.45,-63.02l-0.55,153.19z"/>
<path android:fillColor="#2F3030" android:pathData="M249.98,372.33l148,-87.73l-148,208.53z"/>
<path android:fillColor="#828384" android:pathData="M249.98,372.33l-147.59,-87.73l147.59,208.53z"/>
</vector>
+5
View File
@@ -0,0 +1,5 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="300dp" android:viewportHeight="24" android:viewportWidth="24" android:width="300dp">
<path android:fillColor="#000000" android:pathData="M23.881,8.948c-0.773,-4.085 -4.859,-4.593 -4.859,-4.593L0.723,4.355c-0.604,0 -0.679,0.798 -0.679,0.798s-0.082,7.324 -0.022,11.822c0.164,2.424 2.586,2.672 2.586,2.672s8.267,-0.023 11.966,-0.049c2.438,-0.426 2.683,-2.566 2.658,-3.734 4.352,0.24 7.422,-2.831 6.649,-6.916zM12.819,12.459c-1.246,1.453 -4.011,3.976 -4.011,3.976s-0.121,0.119 -0.31,0.023c-0.076,-0.057 -0.108,-0.09 -0.108,-0.09 -0.443,-0.441 -3.368,-3.049 -4.034,-3.954 -0.709,-0.965 -1.041,-2.7 -0.091,-3.71 0.951,-1.01 3.005,-1.086 4.363,0.407 0,0 1.565,-1.782 3.468,-0.963 1.904,0.82 1.832,3.011 0.723,4.311zM18.992,12.937c-0.928,0.116 -1.682,0.028 -1.682,0.028L17.31,7.284h1.77s1.971,0.551 1.971,2.638c0,1.913 -0.985,2.667 -2.059,3.015z"/>
</vector>
+9
View File
@@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="800dp"
android:height="800dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:pathData="M2.32,0A2.321,2.321 0,0 0,0 2.32v19.36A2.321,2.321 0,0 0,2.32 24h19.36A2.32,2.32 0,0 0,24 21.68L24,2.32A2.32,2.32 0,0 0,21.68 0zM11.528,3.98l-2.27,9.405a2.953,2.953 0,0 0,-0.073 0.539,0.853 0.853,0 0,0 0.09,0.432 0.7,0.7 0,0 0,0.334 0.302c0.157,0.077 0.378,0.126 0.661,0.147l-0.49,2.008c-0.772,0 -1.38,-0.1 -1.82,-0.3 -0.441,-0.203 -0.757,-0.477 -0.947,-0.826a2.391,2.391 0,0 1,-0.278 -1.2c0.005,-0.452 0.068,-0.933 0.188,-1.445l2.074,-8.67zM15.428,7.868c0.61,0 1.135,0.092 1.576,0.277 0.44,0.185 0.802,0.438 1.085,0.76 0.283,0.32 0.493,0.696 0.629,1.126 0.136,0.43 0.204,0.89 0.204,1.379v0.001c0,0.794 -0.13,1.52 -0.392,2.179a5.16,5.16 0,0 1,-1.086 1.706,4.84 4.84,0 0,1 -1.665,1.118c-0.648,0.267 -1.353,0.4 -2.114,0.4 -0.37,0 -0.74,-0.033 -1.11,-0.098l-0.735,2.956L9.403,19.672l2.71,-11.298c0.435,-0.13 0.934,-0.248 1.494,-0.351a10.045,10.045 0,0 1,1.821 -0.155zM15.118,9.909a4.67,4.67 0,0 0,-0.98 0.098l-1.143,4.752c0.185,0.044 0.413,0.065 0.685,0.065 0.425,0 0.812,-0.079 1.16,-0.237a2.556,2.556 0,0 0,0.89 -0.661c0.244,-0.283 0.435,-0.623 0.571,-1.02a4.03,4.03 0,0 0,0.204 -1.315c0,-0.468 -0.104,-0.865 -0.31,-1.192 -0.207,-0.326 -0.566,-0.49 -1.077,-0.49z"
android:fillColor="#000000"/>
</vector>
+12
View File
@@ -0,0 +1,12 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="500dp"
android:height="500dp"
android:viewportWidth="500"
android:viewportHeight="500">
<path
android:pathData="M249.8,250.2m-248.4,0a248.4,248.4 0,1 1,496.8 0a248.4,248.4 0,1 1,-496.8 0"
android:fillColor="#335E9F"/>
<path
android:pathData="M139.4,402.6l37,-120.2l-40.3,12.3l10.7,-29.6l37,-11.5l51.7,-170.1c1.1,-3.6 4.5,-6.1 8.3,-6.1h52.8c5.8,0 9.9,5.6 8.3,11.1l-42,140.4l37.9,-10.7l-6.9,28.6l-39.1,11.8l-27.3,87.2h139c4.2,0 7.2,4 6.1,8l-12.1,44.2c-0.8,2.7 -3.2,4.6 -6.1,4.6H139.4z"
android:fillColor="#FFFFFF"/>
</vector>
+9
View File
@@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="300dp" android:viewportHeight="1080" android:viewportWidth="1080" android:width="300dp">
<path android:fillColor="#209CE9" android:pathData="M540,540m-540,0a540,540 0,1 1,1080 0a540,540 0,1 1,-1080 0"/>
<path android:fillColor="#FFFFFF" android:pathData="M792.9,881h-52.5L541.1,570.6L338.8,881h-52.1l226.8,-351.7L306.9,206.2h53.5L542,490.4l185.4,-284.2h50.2L568.8,528.4L792.9,881z"/>
<path android:fillColor="#FFFFFF" android:pathData="M336.5,508.7h408.3v38.4H336.5V508.7zM336.5,623.9h408.3v38.4H336.5L336.5,623.9z"/>
</vector>
+9
View File
@@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="178dp"
android:height="161dp"
android:viewportWidth="178"
android:viewportHeight="161">
<path
android:pathData="M66.8,54.7l-16.7,-9.7L0,74.1v58l50.1,29l50.1,-29V41.9L128,25.8l27.8,16.1v32.2L128,90.2l-16.7,-9.7v25.8l16.7,9.7l50.1,-29V29L128,0L77.9,29v90.2l-27.8,16.1l-27.8,-16.1V86.9l27.8,-16.1l16.7,9.7V54.7z"
android:fillColor="#6C00F6"/>
</vector>
+49
View File
@@ -0,0 +1,49 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="397.7dp"
android:height="311.7dp"
android:viewportWidth="397.7"
android:viewportHeight="311.7">
<path
android:pathData="M64.6,237.9c2.4,-2.4 5.7,-3.8 9.2,-3.8h317.4c5.8,0 8.7,7 4.6,11.1l-62.7,62.7c-2.4,2.4 -5.7,3.8 -9.2,3.8H6.5c-5.8,0 -8.7,-7 -4.6,-11.1L64.6,237.9z">
<aapt:attr name="android:fillColor">
<gradient
android:startX="360.88"
android:startY="-37.46"
android:endX="141.21"
android:endY="383.29"
android:type="linear">
<item android:offset="0" android:color="#FF00FFA3"/>
<item android:offset="1" android:color="#FFDC1FFF"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M64.6,3.8C67.1,1.4 70.4,0 73.8,0h317.4c5.8,0 8.7,7 4.6,11.1l-62.7,62.7c-2.4,2.4 -5.7,3.8 -9.2,3.8H6.5c-5.8,0 -8.7,-7 -4.6,-11.1L64.6,3.8z">
<aapt:attr name="android:fillColor">
<gradient
android:startX="264.83"
android:startY="-87.6"
android:endX="45.16"
android:endY="333.15"
android:type="linear">
<item android:offset="0" android:color="#FF00FFA3"/>
<item android:offset="1" android:color="#FFDC1FFF"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M333.1,120.1c-2.4,-2.4 -5.7,-3.8 -9.2,-3.8H6.5c-5.8,0 -8.7,7 -4.6,11.1l62.7,62.7c2.4,2.4 5.7,3.8 9.2,3.8h317.4c5.8,0 8.7,-7 4.6,-11.1L333.1,120.1z">
<aapt:attr name="android:fillColor">
<gradient
android:startX="312.55"
android:startY="-62.69"
android:endX="92.88"
android:endY="358.06"
android:type="linear">
<item android:offset="0" android:color="#FF00FFA3"/>
<item android:offset="1" android:color="#FFDC1FFF"/>
</gradient>
</aapt:attr>
</path>
</vector>
+9
View File
@@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="64dp"
android:height="64dp"
android:viewportWidth="64"
android:viewportHeight="64">
<path
android:pathData="M61.55,19.28c-3,-2.77 -7.15,-7 -10.53,-10l-0.2,-0.14a3.82,3.82 0,0 0,-1.11 -0.62l0,0C41.56,7 3.63,-0.09 2.89,0a1.4,1.4 0,0 0,-0.58 0.22L2.12,0.37a2.23,2.23 0,0 0,-0.52 0.84l-0.05,0.13v0.71l0,0.11C5.82,14.05 22.68,53 26,62.14c0.2,0.62 0.58,1.8 1.29,1.86h0.16c0.38,0 2,-2.14 2,-2.14S58.41,26.74 61.34,23a9.46,9.46 0,0 0,1 -1.48A2.41,2.41 0,0 0,61.55 19.28ZM36.88,23.37 L49.24,13.12l7.25,6.68ZM32.08,22.7L10.8,5.26l34.43,6.35ZM34,27.27l21.78,-3.51 -24.9,30ZM7.91,7 L30.3,26 27.06,53.78Z"
android:fillColor="#ff060a"/>
</vector>
+15
View File
@@ -0,0 +1,15 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="64dp"
android:height="64dp"
android:viewportWidth="64"
android:viewportHeight="64">
<path
android:pathData="M61.5,19.5C54.6,3.3 35.8,-4.3 19.5,2.5s-23.9,25.7 -17,41.9s25.7,23.9 41.9,17c7.7,-3.2 13.8,-9.3 17,-17C64.8,36.5 64.8,27.5 61.5,19.5z"
android:fillColor="#FF2AD4"/>
<path
android:pathData="M7.4,26.3h8.2v15.6v6.4l4.6,-4.4l11.9,-11.2l11.8,11.2l4.6,4.4v-6.4l0,-15.6h8.1c0.4,1.8 0.6,3.7 0.6,5.6c0,13.9 -11.3,25.3 -25.2,25.3S6.7,45.8 6.7,31.9C6.7,30 6.9,28.1 7.4,26.3M5.3,23.5C0.7,38.3 8.9,54 23.7,58.6s30.5,-3.7 35,-18.4c0.8,-2.7 1.3,-5.5 1.3,-8.3c0,-2.8 -0.4,-5.6 -1.3,-8.4H45.8l-0.1,18.4L32.1,28.8L18.3,41.9V23.5H5.3z"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M18.3,20.8H21v2.8v12l9.1,-8.7l1.9,-1.8l1.9,1.8l9.1,8.6v-12v-2.7h14.7C51.5,6.6 34.9,0.2 20.8,6.4c-6.4,2.8 -11.6,8 -14.4,14.4H18.3z"
android:fillColor="#FFCC00"/>
</vector>
+9
View File
@@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="300.03195dp" android:viewportHeight="3756.5" android:viewportWidth="3756.1" android:width="300dp">
<path android:fillColor="#fff" android:pathData="M3756,1878.1C3756,2915.3 2915.3,3756.1 1878,3756.1S0,2915.3 0,1878.1 840.8,0 1878,0 3756,840.8 3756,1878.1Z"/>
<path android:fillColor="#f26822" android:pathData="M1878,0c-1036.9,0 -1879.1,842.1 -1877.8,1878 0.3,207.3 33.3,406.6 95.3,593.1h561.9L657.5,891.3L1878,2111.8 3098.6,891.3v1579.9h562c62.1,-186.5 95,-385.9 95.4,-593.1C3757.7,841 2915,0.3 1878,0.3Z"/>
<path android:fillColor="#4d4d4d" android:pathData="M1597.3,2392.4l-532.7,-532.7v994.1L657.4,2853.9l-384.3,0.1c329.6,540.8 925.3,902.6 1604.9,902.6S3153.4,3394.6 3483,2853.9L2691.3,2853.9L2691.3,1859.7l-532.7,532.7 -280.6,280.6 -280.6,-280.6h0Z"/>
</vector>
+95
View File
@@ -0,0 +1,95 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="119dp"
android:height="120dp"
android:viewportWidth="119"
android:viewportHeight="120">
<path
android:pathData="M69.59,0H83.33C88.03,-0 91.99,-0 95.23,0.27C98.62,0.55 101.85,1.16 104.92,2.76C109.59,5.18 113.39,9.05 115.77,13.81C117.33,16.93 117.93,20.22 118.21,23.67C118.47,26.97 118.47,31 118.47,35.79V49.06C118.47,53.86 118.47,57.89 118.21,61.19C117.93,64.64 117.33,67.93 115.77,71.05C113.39,75.81 109.59,79.68 104.92,82.1C101.85,83.69 98.62,84.31 95.23,84.59C91.99,84.86 88.03,84.86 83.33,84.86H42.3C39.42,84.86 36.82,83.1 35.7,80.39C34.59,77.68 35.18,74.56 37.19,72.47L71.07,37.32L81.28,47.53L59.35,70.29H83.04C88.11,70.29 91.48,70.28 94.07,70.06C96.57,69.86 97.71,69.49 98.42,69.12C100.4,68.09 102.01,66.45 103.02,64.44C103.38,63.71 103.74,62.55 103.95,60C104.16,57.36 104.17,53.93 104.17,48.77V36.09C104.17,30.92 104.16,27.49 103.95,24.86C103.74,22.31 103.38,21.15 103.02,20.42C102.01,18.41 100.4,16.77 98.42,15.74C97.71,15.37 96.57,15 94.07,14.79C91.48,14.58 88.11,14.57 83.04,14.57H69.88C64.75,14.57 61.34,14.58 58.73,14.8C56.19,15.01 55.05,15.38 54.33,15.76C52.34,16.8 50.72,18.46 49.73,20.5C49.37,21.24 49.01,22.41 48.84,24.99C48.65,27.66 48.69,31.13 48.75,36.35L48.82,42.34L34.51,42.52L34.44,36.23C34.38,31.39 34.33,27.31 34.56,23.98C34.8,20.49 35.37,17.16 36.92,14C39.28,9.18 43.09,5.26 47.79,2.8C50.88,1.18 54.13,0.56 57.56,0.27C60.83,-0 64.83,-0 69.59,0Z"
android:fillType="evenOdd">
<aapt:attr name="android:fillColor">
<gradient
android:startX="56.45"
android:startY="84.2"
android:endX="57.42"
android:endY="-0.11"
android:type="linear">
<item android:offset="0.43" android:color="#FF498FFD"/>
<item android:offset="1" android:color="#FF16D1D6"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M69.59,0H83.33C88.03,-0 91.99,-0 95.23,0.27C98.62,0.55 101.85,1.16 104.92,2.76C109.59,5.18 113.39,9.05 115.77,13.81C117.33,16.93 117.93,20.22 118.21,23.67C118.47,26.97 118.47,31 118.47,35.79V49.06C118.47,53.86 118.47,57.89 118.21,61.19C117.93,64.64 117.33,67.93 115.77,71.05C113.39,75.81 109.59,79.68 104.92,82.1C101.85,83.69 98.62,84.31 95.23,84.59C91.99,84.86 88.03,84.86 83.33,84.86H42.3C39.42,84.86 36.82,83.1 35.7,80.39C34.59,77.68 35.18,74.56 37.19,72.47L71.07,37.32L81.28,47.53L59.35,70.29H83.04C88.11,70.29 91.48,70.28 94.07,70.06C96.57,69.86 97.71,69.49 98.42,69.12C100.4,68.09 102.01,66.45 103.02,64.44C103.38,63.71 103.74,62.55 103.95,60C104.16,57.36 104.17,53.93 104.17,48.77V36.09C104.17,30.92 104.16,27.49 103.95,24.86C103.74,22.31 103.38,21.15 103.02,20.42C102.01,18.41 100.4,16.77 98.42,15.74C97.71,15.37 96.57,15 94.07,14.79C91.48,14.58 88.11,14.57 83.04,14.57H69.88C64.75,14.57 61.34,14.58 58.73,14.8C56.19,15.01 55.05,15.38 54.33,15.76C52.34,16.8 50.72,18.46 49.73,20.5C49.37,21.24 49.01,22.41 48.84,24.99C48.65,27.66 48.69,31.13 48.75,36.35L48.82,42.34L34.51,42.52L34.44,36.23C34.38,31.39 34.33,27.31 34.56,23.98C34.8,20.49 35.37,17.16 36.92,14C39.28,9.18 43.09,5.26 47.79,2.8C50.88,1.18 54.13,0.56 57.56,0.27C60.83,-0 64.83,-0 69.59,0Z"
android:fillType="evenOdd">
<aapt:attr name="android:fillColor">
<gradient
android:centerX="33.4"
android:centerY="25.69"
android:gradientRadius="54.1"
android:type="radial">
<item android:offset="0" android:color="#FF18CFD7"/>
<item android:offset="1" android:color="#0018CFD7"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M69.59,0H83.33C88.03,-0 91.99,-0 95.23,0.27C98.62,0.55 101.85,1.16 104.92,2.76C109.59,5.18 113.39,9.05 115.77,13.81C117.33,16.93 117.93,20.22 118.21,23.67C118.47,26.97 118.47,31 118.47,35.79V49.06C118.47,53.86 118.47,57.89 118.21,61.19C117.93,64.64 117.33,67.93 115.77,71.05C113.39,75.81 109.59,79.68 104.92,82.1C101.85,83.69 98.62,84.31 95.23,84.59C91.99,84.86 88.03,84.86 83.33,84.86H42.3C39.42,84.86 36.82,83.1 35.7,80.39C34.59,77.68 35.18,74.56 37.19,72.47L71.07,37.32L81.28,47.53L59.35,70.29H83.04C88.11,70.29 91.48,70.28 94.07,70.06C96.57,69.86 97.71,69.49 98.42,69.12C100.4,68.09 102.01,66.45 103.02,64.44C103.38,63.71 103.74,62.55 103.95,60C104.16,57.36 104.17,53.93 104.17,48.77V36.09C104.17,30.92 104.16,27.49 103.95,24.86C103.74,22.31 103.38,21.15 103.02,20.42C102.01,18.41 100.4,16.77 98.42,15.74C97.71,15.37 96.57,15 94.07,14.79C91.48,14.58 88.11,14.57 83.04,14.57H69.88C64.75,14.57 61.34,14.58 58.73,14.8C56.19,15.01 55.05,15.38 54.33,15.76C52.34,16.8 50.72,18.46 49.73,20.5C49.37,21.24 49.01,22.41 48.84,24.99C48.65,27.66 48.69,31.13 48.75,36.35L48.82,42.34L34.51,42.52L34.44,36.23C34.38,31.39 34.33,27.31 34.56,23.98C34.8,20.49 35.37,17.16 36.92,14C39.28,9.18 43.09,5.26 47.79,2.8C50.88,1.18 54.13,0.56 57.56,0.27C60.83,-0 64.83,-0 69.59,0Z"
android:fillType="evenOdd">
<aapt:attr name="android:fillColor">
<gradient
android:centerX="64.99"
android:centerY="49.78"
android:gradientRadius="20.28"
android:type="radial">
<item android:offset="0" android:color="#FF4990FE"/>
<item android:offset="0.35" android:color="#FF4990FE"/>
<item android:offset="1" android:color="#004990FE"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M69.59,0H83.33C88.03,-0 91.99,-0 95.23,0.27C98.62,0.55 101.85,1.16 104.92,2.76C109.59,5.18 113.39,9.05 115.77,13.81C117.33,16.93 117.93,20.22 118.21,23.67C118.47,26.97 118.47,31 118.47,35.79V49.06C118.47,53.86 118.47,57.89 118.21,61.19C117.93,64.64 117.33,67.93 115.77,71.05C113.39,75.81 109.59,79.68 104.92,82.1C101.85,83.69 98.62,84.31 95.23,84.59C91.99,84.86 88.03,84.86 83.33,84.86H42.3C39.42,84.86 36.82,83.1 35.7,80.39C34.59,77.68 35.18,74.56 37.19,72.47L71.07,37.32L81.28,47.53L59.35,70.29H83.04C88.11,70.29 91.48,70.28 94.07,70.06C96.57,69.86 97.71,69.49 98.42,69.12C100.4,68.09 102.01,66.45 103.02,64.44C103.38,63.71 103.74,62.55 103.95,60C104.16,57.36 104.17,53.93 104.17,48.77V36.09C104.17,30.92 104.16,27.49 103.95,24.86C103.74,22.31 103.38,21.15 103.02,20.42C102.01,18.41 100.4,16.77 98.42,15.74C97.71,15.37 96.57,15 94.07,14.79C91.48,14.58 88.11,14.57 83.04,14.57H69.88C64.75,14.57 61.34,14.58 58.73,14.8C56.19,15.01 55.05,15.38 54.33,15.76C52.34,16.8 50.72,18.46 49.73,20.5C49.37,21.24 49.01,22.41 48.84,24.99C48.65,27.66 48.69,31.13 48.75,36.35L48.82,42.34L34.51,42.52L34.44,36.23C34.38,31.39 34.33,27.31 34.56,23.98C34.8,20.49 35.37,17.16 36.92,14C39.28,9.18 43.09,5.26 47.79,2.8C50.88,1.18 54.13,0.56 57.56,0.27C60.83,-0 64.83,-0 69.59,0Z"
android:fillType="evenOdd">
<aapt:attr name="android:fillColor">
<gradient
android:centerX="40.23"
android:centerY="77.32"
android:gradientRadius="36.98"
android:type="radial">
<item android:offset="0" android:color="#FF4990FE"/>
<item android:offset="0.41" android:color="#FF4990FE"/>
<item android:offset="1" android:color="#004990FE"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M24.41,105.21C27,105.42 30.37,105.43 35.43,105.43H48.82C53.44,105.43 56.51,105.42 58.88,105.24C61.17,105.07 62.23,104.76 62.88,104.45C65.17,103.38 67.01,101.51 68.06,99.18C68.36,98.51 68.67,97.44 68.84,95.1C69.01,92.69 69.02,89.56 69.02,84.86H83.33L83.33,85.12C83.33,89.49 83.33,93.17 83.11,96.19C82.88,99.34 82.37,102.36 81.07,105.26C78.59,110.76 74.25,115.17 68.85,117.7C66,119.03 63.04,119.54 59.94,119.78C56.98,120 53.37,120 49.08,120L35.15,120C30.44,120 26.48,120 23.24,119.73C19.85,119.45 16.62,118.84 13.56,117.24C8.88,114.82 5.09,110.95 2.7,106.19C1.14,103.07 0.54,99.78 0.26,96.33C-0,93.03 -0,89 -0,84.21V70.94C-0,66.14 -0,62.11 0.26,58.81C0.54,55.36 1.14,52.07 2.7,48.95C5.09,44.19 8.88,40.32 13.56,37.9C16.62,36.31 19.85,35.69 23.24,35.41C26.48,35.14 30.44,35.14 35.15,35.14H76.17C80.12,35.14 83.33,38.4 83.33,42.43C83.33,46.45 80.12,49.71 76.17,49.71H35.43C30.37,49.71 27,49.72 24.41,49.94C21.9,50.14 20.77,50.51 20.05,50.88C18.07,51.91 16.46,53.55 15.45,55.56C15.09,56.29 14.73,57.45 14.52,60C14.31,62.64 14.31,66.07 14.31,71.23V83.91C14.31,89.07 14.31,92.51 14.52,95.14C14.73,97.69 15.09,98.85 15.45,99.58C16.46,101.59 18.07,103.23 20.05,104.26C20.77,104.63 21.9,105 24.41,105.21Z"
android:fillType="evenOdd">
<aapt:attr name="android:fillColor">
<gradient
android:startX="83.77"
android:startY="120.33"
android:endX="84.08"
android:endY="34.3"
android:type="linear">
<item android:offset="0" android:color="#FF2950FF"/>
<item android:offset="0.82" android:color="#FF498FFD"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M24.41,105.21C27,105.42 30.37,105.43 35.43,105.43H48.82C53.44,105.43 56.51,105.42 58.88,105.24C61.17,105.07 62.23,104.76 62.88,104.45C65.17,103.38 67.01,101.51 68.06,99.18C68.36,98.51 68.67,97.44 68.84,95.1C69.01,92.69 69.02,89.56 69.02,84.86H83.33L83.33,85.12C83.33,89.49 83.33,93.17 83.11,96.19C82.88,99.34 82.37,102.36 81.07,105.26C78.59,110.76 74.25,115.17 68.85,117.7C66,119.03 63.04,119.54 59.94,119.78C56.98,120 53.37,120 49.08,120L35.15,120C30.44,120 26.48,120 23.24,119.73C19.85,119.45 16.62,118.84 13.56,117.24C8.88,114.82 5.09,110.95 2.7,106.19C1.14,103.07 0.54,99.78 0.26,96.33C-0,93.03 -0,89 -0,84.21V70.94C-0,66.14 -0,62.11 0.26,58.81C0.54,55.36 1.14,52.07 2.7,48.95C5.09,44.19 8.88,40.32 13.56,37.9C16.62,36.31 19.85,35.69 23.24,35.41C26.48,35.14 30.44,35.14 35.15,35.14H76.17C80.12,35.14 83.33,38.4 83.33,42.43C83.33,46.45 80.12,49.71 76.17,49.71H35.43C30.37,49.71 27,49.72 24.41,49.94C21.9,50.14 20.77,50.51 20.05,50.88C18.07,51.91 16.46,53.55 15.45,55.56C15.09,56.29 14.73,57.45 14.52,60C14.31,62.64 14.31,66.07 14.31,71.23V83.91C14.31,89.07 14.31,92.51 14.52,95.14C14.73,97.69 15.09,98.85 15.45,99.58C16.46,101.59 18.07,103.23 20.05,104.26C20.77,104.63 21.9,105 24.41,105.21Z"
android:fillType="evenOdd">
<aapt:attr name="android:fillColor">
<gradient
android:centerX="83.77"
android:centerY="84.2"
android:gradientRadius="36.57"
android:type="radial">
<item android:offset="0.34" android:color="#FF2950FF"/>
<item android:offset="0.79" android:color="#002950FF"/>
</gradient>
</aapt:attr>
</path>
</vector>
+44
View File
@@ -5,6 +5,9 @@
<string name="vpn_channel_id" translatable="false">VPN Channel</string>
<string name="vpn_channel_name">VPN Notification Channel</string>
<string name="github_url" translatable="false">https://github.com/wgtunnel/wgtunnel/issues</string>
<string name="github_sponsors_url" translatable="false">https://github.com/sponsors/zaneschepke</string>
<string name="kofi_url" translatable="false">https://ko-fi.com/zaneschepke</string>
<string name="liberapay_url" translatable="false">https://liberapay.com/zaneschepke</string>
<string name="docs_url" translatable="false">https://wgtunnel.com/docs/</string>
<string name="getting_started_url" translatable="false">https://wgtunnel.com/docs/getting-started</string>
<string name="privacy_policy_url" translatable="false">https://wgtunnel.com/docs/privacy-policy/</string>
@@ -389,4 +392,45 @@
<string name="disabled">Disabled</string>
<string name="mode_disabled_template">Feature unavailable in %1$s mode.</string>
<string name="lockdown">Lockdown</string>
<string name="donate_title">Donate</string>
<string name="crypto">Cryptocurrency addresses</string>
<string name="github_sponsors">GitHub Sponsors</string>
<string name="liberapay">Liberapay</string>
<string name="kofi">Ko-fi</string>
<string name="bitcoin_address" translatable="false">sp1qqt0lyj230963nudpq550fhgah5yeghlhsm3x8ev2zhrqsz77mhmk7qedks8hh9pyj85ljzl3rcjrznf8v24ytfrv0p3exzprvdyfrvc3ws8wsrk2</string>
<string name="litecoin_mweb_address" translatable="false">ltcmweb1qqtykdawtseq80pvxaksann0p30j0cce3chxd708msyv3t2dc0p8suq75ud38kmmpdwgx2n2am99ly45nc5wpqz6rerhn6a35cxgwr60fg5ln0hqn</string>
<string name="litecoin_address" translatable="false">ltc1q08kck658kalgsz0exzjlnf02fmnmdknuy4dj3s</string>
<string name="ethereum_address" translatable="false">0x68fC6E808a9c54e0E1ac1AC58D94D22677cF1d32</string>
<string name="bitcoin_cash_address" translatable="false">bitcoincash:qrc53zat8xgwjrxmf6qrhtcd3vxghemxfvdrzp0fd2</string>
<string name="nano_address" translatable="false">nano_33j1bhzbttrcd5o7hcsejeg9ud7pym9yfcguuyia3zrjd8oa15t4s5aegqkr</string>
<string name="solana_address" translatable="false">3kA2yhXixyiTEJ8Z3W4sNNoVaTryRh7off6U6Gkp6HWi</string>
<string name="doge_address" translatable="false">DFoH9ZvTNH5FyWj9eACRndfNxYHT2WjEZ1</string>
<string name="polygon_address" translatable="false">0x68fC6E808a9c54e0E1ac1AC58D94D22677cF1d32</string>
<string name="tron_address" translatable="false">TRUMaqeD2xvAJhbkSS6ukk4dhBemzn9S7T</string>
<string name="monero_address" translatable="false">475Ed2RuwdJHFsb9xRRa9EUG2P1eEmEQ3iXMxHS1Aft9LBFVVr1RWaJctGNrfa591hgU9uoqPfkyp3Bmfgcunijf6HN6RC1</string>
<string name="zano_address" translatable="false">ZxCf8vqktThRZr1j2XnBD642PSdxa89ebj75ed6wiBDDeqe2XsKA2xbCnRfGEohtreJSDoJH8yD1Ybww49bnSQm129hA2T2aB</string>
<string name="decred_address" translatable="false">DsU5jf8Hw1UPzCsq9pnyTkoxhEBHpF3jeUQ</string>
<string name="wownero_address" translatable="false">WW49juDFehq8VoBBVtjoHzYoFJzXdwThDf6v7LVNkMdVTAKCqjtnk9DB5PFt7S8596KET4i195zJu92xbZu6ZLYk1nVEh4n22</string>
<string name="bitcoin" translatable="false">Bitcoin Mainnet</string>
<string name="monero" translatable="false">Monero Mainnet</string>
<string name="ethereum" translatable="false">Ethereum Mainnet (ETH/ERC-20)</string>
<string name="litecoin_mweb" formatted="false">Litecoin MWEB</string>
<string name="litecoin" translatable="false">Litecoin Mainnet</string>
<string name="doge" translatable="false">Dogecoin Mainnet</string>
<string name="polygon" translatable="false">Polygon Mainnet (POL/ERC-20)</string>
<string name="solana" translatable="false">Solana Mainnet (SOL/SPL)</string>
<string name="tron" translatable="false">Tron Mainnet (TRX/TRC-20)</string>
<string name="bitcoin_cash" translatable="false">Bitcoin Cash Mainnet</string>
<string name="nano" translatable="false">Nano Mainnet</string>
<string name="zano" translatable="false">Zano Mainnet</string>
<string name="decred" translatable="false">Decred Mainnet</string>
<string name="wownero" translatable="false">Wownero Mainnet</string>
<string name="donation_thanks_intro">Thank you for considering donating to this project!</string>
<string name="donation_dev_message">As the sole developer, I work tirelessly to make WG Tunnel the best free and open-source WireGuard client for Android, but this is only possible with your support.</string>
<string name="donation_closing">It\'s my dream to work for you on this project full-time.</string>
<string name="donation_signoff">Gratefully,</string>
<string name="dev_name" translatable="false">Zane</string>
<string name="google_donation_message">Unfortunately, due to Google\'s policies, donation links are not allowed in
the Play Store version of this app. Please browse the project\'s webpages to find where to donate.
</string>
</resources>