turning hashtag icons into programmable vectors
@@ -25,9 +25,24 @@ import androidx.compose.material3.Text
|
||||
import androidx.compose.runtime.Composable
|
||||
import androidx.compose.runtime.Immutable
|
||||
import androidx.compose.ui.Modifier
|
||||
import androidx.compose.ui.graphics.vector.ImageVector
|
||||
import androidx.compose.ui.tooling.preview.Preview
|
||||
import androidx.compose.ui.unit.dp
|
||||
import com.vitorpamplona.amethyst.R
|
||||
import com.vitorpamplona.amethyst.commons.hashtags.Amethyst
|
||||
import com.vitorpamplona.amethyst.commons.hashtags.Btc
|
||||
import com.vitorpamplona.amethyst.commons.hashtags.Cashu
|
||||
import com.vitorpamplona.amethyst.commons.hashtags.Coffee
|
||||
import com.vitorpamplona.amethyst.commons.hashtags.CustomHashTagIcons
|
||||
import com.vitorpamplona.amethyst.commons.hashtags.Footstr
|
||||
import com.vitorpamplona.amethyst.commons.hashtags.Grownostr
|
||||
import com.vitorpamplona.amethyst.commons.hashtags.Lightning
|
||||
import com.vitorpamplona.amethyst.commons.hashtags.Mate
|
||||
import com.vitorpamplona.amethyst.commons.hashtags.Nostr
|
||||
import com.vitorpamplona.amethyst.commons.hashtags.Plebs
|
||||
import com.vitorpamplona.amethyst.commons.hashtags.Skull
|
||||
import com.vitorpamplona.amethyst.commons.hashtags.Tunestr
|
||||
import com.vitorpamplona.amethyst.commons.hashtags.Weed
|
||||
import com.vitorpamplona.amethyst.commons.hashtags.Zap
|
||||
import com.vitorpamplona.amethyst.commons.richtext.HashTagSegment
|
||||
import com.vitorpamplona.amethyst.commons.richtext.RegularTextSegment
|
||||
import com.vitorpamplona.amethyst.ui.components.HashTag
|
||||
@@ -42,7 +57,7 @@ fun RenderHashTagIcons() {
|
||||
|
||||
ThemeComparisonColumn {
|
||||
RenderRegular(
|
||||
"Testing rendering of hashtags: #Bitcoin, #nostr, #lightning, #zap, #amethyst, #cashu, #plebs, #coffee, #skullofsatoshi, #grownostr, #footstr, #tunestr, #weed",
|
||||
"Testing rendering of hashtags: #Bitcoin, #nostr, #lightning, #zap, #amethyst, #cashu, #plebs, #coffee, #skullofsatoshi, #grownostr, #footstr, #tunestr, #weed, #mate",
|
||||
EmptyTagList,
|
||||
) { word, state ->
|
||||
when (word) {
|
||||
@@ -67,28 +82,30 @@ fun checkForHashtagWithIcon(tag: String): HashtagIcon? {
|
||||
"grownostr", "gardening", "garden" -> growstr
|
||||
"footstr" -> footstr
|
||||
"tunestr", "music", "nowplaying" -> tunestr
|
||||
"mate", "matechain", "matestr" -> matestr
|
||||
"weed", "weedstr", "420", "cannabis", "marijuana" -> weed
|
||||
else -> null
|
||||
}
|
||||
}
|
||||
|
||||
val bitcoin = HashtagIcon(R.drawable.ht_btc, "Bitcoin", Modifier.padding(start = 1.dp, bottom = 1.dp, top = 1.dp))
|
||||
val nostr = HashtagIcon(R.drawable.ht_nostr, "Nostr", Modifier.padding(start = 1.dp, bottom = 1.dp, top = 1.dp))
|
||||
val lightning = HashtagIcon(R.drawable.lightning, "Lightning", Modifier.padding(start = 1.dp, bottom = 1.dp, top = 1.dp))
|
||||
val zap = HashtagIcon(R.drawable.zap, "Zap", Modifier.padding(start = 1.dp, bottom = 1.dp, top = 1.dp))
|
||||
val amethyst = HashtagIcon(R.drawable.amethyst, "Amethyst", Modifier.padding(start = 2.dp, bottom = 1.dp, top = 1.dp))
|
||||
val cashu = HashtagIcon(R.drawable.cashu, "Cashu", Modifier.padding(start = 1.dp, bottom = 1.dp, top = 1.dp))
|
||||
val plebs = HashtagIcon(R.drawable.plebs, "Pleb", Modifier.padding(start = 2.dp, bottom = 1.dp, top = 1.dp))
|
||||
val coffee = HashtagIcon(R.drawable.coffee, "Coffee", Modifier.padding(start = 3.dp, bottom = 1.dp, top = 1.dp))
|
||||
val skull = HashtagIcon(R.drawable.skull, "SkullofSatoshi", Modifier.padding(start = 1.dp, bottom = 1.dp, top = 1.dp))
|
||||
val growstr = HashtagIcon(R.drawable.grownostr, "GrowNostr", Modifier.padding(start = 1.dp, bottom = 1.dp, top = 1.dp))
|
||||
val footstr = HashtagIcon(R.drawable.footstr, "Footstr", Modifier.padding(start = 2.dp, bottom = 1.dp, top = 1.dp))
|
||||
val tunestr = HashtagIcon(R.drawable.tunestr, "Tunestr", Modifier.padding(start = 1.dp, bottom = 1.dp, top = 1.dp))
|
||||
val weed = HashtagIcon(R.drawable.weed, "Weed", Modifier.padding(start = 1.dp, bottom = 0.dp, top = 0.dp))
|
||||
val bitcoin = HashtagIcon(CustomHashTagIcons.Btc, "Bitcoin", Modifier.padding(start = 1.dp, bottom = 1.dp, top = 1.dp))
|
||||
val nostr = HashtagIcon(CustomHashTagIcons.Nostr, "Nostr", Modifier.padding(start = 1.dp, bottom = 1.dp, top = 1.dp))
|
||||
val lightning = HashtagIcon(CustomHashTagIcons.Lightning, "Lightning", Modifier.padding(start = 1.dp, bottom = 1.dp, top = 1.dp))
|
||||
val zap = HashtagIcon(CustomHashTagIcons.Zap, "Zap", Modifier.padding(start = 1.dp, bottom = 1.dp, top = 1.dp))
|
||||
val amethyst = HashtagIcon(CustomHashTagIcons.Amethyst, "Amethyst", Modifier.padding(start = 2.dp, bottom = 1.dp, top = 1.dp))
|
||||
val cashu = HashtagIcon(CustomHashTagIcons.Cashu, "Cashu", Modifier.padding(start = 1.dp, bottom = 1.dp, top = 1.dp))
|
||||
val plebs = HashtagIcon(CustomHashTagIcons.Plebs, "Pleb", Modifier.padding(start = 2.dp, bottom = 1.dp, top = 1.dp))
|
||||
val coffee = HashtagIcon(CustomHashTagIcons.Coffee, "Coffee", Modifier.padding(start = 3.dp, bottom = 1.dp, top = 1.dp))
|
||||
val skull = HashtagIcon(CustomHashTagIcons.Skull, "SkullofSatoshi", Modifier.padding(start = 1.dp, bottom = 1.dp, top = 1.dp))
|
||||
val growstr = HashtagIcon(CustomHashTagIcons.Grownostr, "GrowNostr", Modifier.padding(start = 1.dp, bottom = 1.dp, top = 1.dp))
|
||||
val footstr = HashtagIcon(CustomHashTagIcons.Footstr, "Footstr", Modifier.padding(start = 2.dp, bottom = 1.dp, top = 1.dp))
|
||||
val tunestr = HashtagIcon(CustomHashTagIcons.Tunestr, "Tunestr", Modifier.padding(start = 1.dp, bottom = 1.dp, top = 1.dp))
|
||||
val weed = HashtagIcon(CustomHashTagIcons.Weed, "Weed", Modifier.padding(start = 1.dp, bottom = 0.dp, top = 0.dp))
|
||||
val matestr = HashtagIcon(CustomHashTagIcons.Mate, "Mate", Modifier.padding(start = 1.dp, bottom = 0.dp, top = 0.dp))
|
||||
|
||||
@Immutable
|
||||
class HashtagIcon(
|
||||
val icon: Int,
|
||||
val icon: ImageVector,
|
||||
val description: String,
|
||||
val modifier: Modifier = Modifier,
|
||||
)
|
||||
|
||||
@@ -53,7 +53,6 @@ import androidx.compose.ui.draw.clip
|
||||
import androidx.compose.ui.graphics.Color
|
||||
import androidx.compose.ui.platform.LocalClipboardManager
|
||||
import androidx.compose.ui.platform.LocalContext
|
||||
import androidx.compose.ui.res.painterResource
|
||||
import androidx.compose.ui.res.stringResource
|
||||
import androidx.compose.ui.text.AnnotatedString
|
||||
import androidx.compose.ui.text.font.FontWeight
|
||||
@@ -65,6 +64,8 @@ import androidx.core.content.ContextCompat.startActivity
|
||||
import androidx.lifecycle.viewmodel.compose.viewModel
|
||||
import com.fasterxml.jackson.databind.node.TextNode
|
||||
import com.vitorpamplona.amethyst.R
|
||||
import com.vitorpamplona.amethyst.commons.hashtags.Cashu
|
||||
import com.vitorpamplona.amethyst.commons.hashtags.CustomHashTagIcons
|
||||
import com.vitorpamplona.amethyst.model.ThemeType
|
||||
import com.vitorpamplona.amethyst.service.CachedCashuProcessor
|
||||
import com.vitorpamplona.amethyst.service.CashuToken
|
||||
@@ -182,7 +183,7 @@ fun CashuPreview(
|
||||
.padding(bottom = 10.dp),
|
||||
) {
|
||||
Icon(
|
||||
painter = painterResource(R.drawable.cashu),
|
||||
imageVector = CustomHashTagIcons.Cashu,
|
||||
null,
|
||||
modifier = Size20Modifier,
|
||||
tint = Color.Unspecified,
|
||||
@@ -320,7 +321,7 @@ fun CashuPreviewNew(
|
||||
verticalAlignment = Alignment.CenterVertically,
|
||||
) {
|
||||
Icon(
|
||||
painter = painterResource(R.drawable.cashu),
|
||||
imageVector = CustomHashTagIcons.Cashu,
|
||||
null,
|
||||
modifier = Modifier.size(13.dp),
|
||||
tint = Color.Unspecified,
|
||||
|
||||
@@ -44,13 +44,14 @@ import androidx.compose.ui.Modifier
|
||||
import androidx.compose.ui.draw.clip
|
||||
import androidx.compose.ui.graphics.Color
|
||||
import androidx.compose.ui.platform.LocalContext
|
||||
import androidx.compose.ui.res.painterResource
|
||||
import androidx.compose.ui.res.stringResource
|
||||
import androidx.compose.ui.text.font.FontWeight
|
||||
import androidx.compose.ui.text.style.TextDirection
|
||||
import androidx.compose.ui.unit.dp
|
||||
import androidx.compose.ui.unit.sp
|
||||
import com.vitorpamplona.amethyst.R
|
||||
import com.vitorpamplona.amethyst.commons.hashtags.CustomHashTagIcons
|
||||
import com.vitorpamplona.amethyst.commons.hashtags.Lightning
|
||||
import com.vitorpamplona.amethyst.service.lnurl.CachedLnInvoiceParser
|
||||
import com.vitorpamplona.amethyst.service.lnurl.InvoiceAmount
|
||||
import com.vitorpamplona.amethyst.ui.note.ErrorMessageDialog
|
||||
@@ -135,7 +136,7 @@ fun InvoicePreview(
|
||||
.padding(bottom = 10.dp),
|
||||
) {
|
||||
Icon(
|
||||
painter = painterResource(R.drawable.lightning),
|
||||
imageVector = CustomHashTagIcons.Lightning,
|
||||
null,
|
||||
modifier = Size20Modifier,
|
||||
tint = Color.Unspecified,
|
||||
|
||||
@@ -44,7 +44,6 @@ import androidx.compose.ui.Modifier
|
||||
import androidx.compose.ui.draw.clip
|
||||
import androidx.compose.ui.graphics.Color
|
||||
import androidx.compose.ui.platform.LocalContext
|
||||
import androidx.compose.ui.res.painterResource
|
||||
import androidx.compose.ui.res.stringResource
|
||||
import androidx.compose.ui.text.font.FontWeight
|
||||
import androidx.compose.ui.text.input.KeyboardCapitalization
|
||||
@@ -52,6 +51,8 @@ import androidx.compose.ui.text.input.KeyboardType
|
||||
import androidx.compose.ui.unit.dp
|
||||
import androidx.compose.ui.unit.sp
|
||||
import com.vitorpamplona.amethyst.R
|
||||
import com.vitorpamplona.amethyst.commons.hashtags.CustomHashTagIcons
|
||||
import com.vitorpamplona.amethyst.commons.hashtags.Lightning
|
||||
import com.vitorpamplona.amethyst.model.Account
|
||||
import com.vitorpamplona.amethyst.model.LocalCache
|
||||
import com.vitorpamplona.amethyst.service.lnurl.LightningAddressResolver
|
||||
@@ -118,7 +119,7 @@ fun InvoiceRequest(
|
||||
modifier = Modifier.fillMaxWidth().padding(bottom = 10.dp),
|
||||
) {
|
||||
Icon(
|
||||
painter = painterResource(R.drawable.lightning),
|
||||
imageVector = CustomHashTagIcons.Lightning,
|
||||
null,
|
||||
modifier = Size20Modifier,
|
||||
tint = Color.Unspecified,
|
||||
|
||||
@@ -52,7 +52,6 @@ import androidx.compose.ui.platform.LocalDensity
|
||||
import androidx.compose.ui.platform.LocalFontFamilyResolver
|
||||
import androidx.compose.ui.platform.LocalLayoutDirection
|
||||
import androidx.compose.ui.platform.LocalUriHandler
|
||||
import androidx.compose.ui.res.painterResource
|
||||
import androidx.compose.ui.text.Placeholder
|
||||
import androidx.compose.ui.text.PlaceholderVerticalAlign
|
||||
import androidx.compose.ui.text.SpanStyle
|
||||
@@ -761,7 +760,7 @@ private fun InlineIcon(hashtagIcon: HashtagIcon) =
|
||||
),
|
||||
) {
|
||||
Icon(
|
||||
painter = painterResource(hashtagIcon.icon),
|
||||
imageVector = hashtagIcon.icon,
|
||||
contentDescription = hashtagIcon.description,
|
||||
tint = Color.Unspecified,
|
||||
modifier = hashtagIcon.modifier,
|
||||
|
||||
@@ -34,13 +34,14 @@ import androidx.compose.runtime.Composable
|
||||
import androidx.compose.ui.Alignment
|
||||
import androidx.compose.ui.Modifier
|
||||
import androidx.compose.ui.graphics.Color
|
||||
import androidx.compose.ui.res.painterResource
|
||||
import androidx.compose.ui.res.stringResource
|
||||
import androidx.compose.ui.text.font.FontWeight
|
||||
import androidx.compose.ui.text.input.KeyboardType
|
||||
import androidx.compose.ui.unit.dp
|
||||
import androidx.compose.ui.unit.sp
|
||||
import com.vitorpamplona.amethyst.R
|
||||
import com.vitorpamplona.amethyst.commons.hashtags.CustomHashTagIcons
|
||||
import com.vitorpamplona.amethyst.commons.hashtags.Lightning
|
||||
import com.vitorpamplona.amethyst.ui.actions.NewPostViewModel
|
||||
import com.vitorpamplona.amethyst.ui.theme.DividerThickness
|
||||
import com.vitorpamplona.amethyst.ui.theme.Size20Modifier
|
||||
@@ -59,7 +60,7 @@ fun ZapRaiserRequest(
|
||||
modifier = Modifier.fillMaxWidth().padding(bottom = 10.dp),
|
||||
) {
|
||||
Icon(
|
||||
painter = painterResource(R.drawable.lightning),
|
||||
imageVector = CustomHashTagIcons.Lightning,
|
||||
null,
|
||||
modifier = Size20Modifier,
|
||||
tint = Color.Unspecified,
|
||||
|
||||
@@ -63,6 +63,8 @@ import androidx.compose.ui.tooling.preview.Preview
|
||||
import androidx.compose.ui.unit.Dp
|
||||
import androidx.compose.ui.unit.dp
|
||||
import com.vitorpamplona.amethyst.R
|
||||
import com.vitorpamplona.amethyst.commons.hashtags.Cashu
|
||||
import com.vitorpamplona.amethyst.commons.hashtags.CustomHashTagIcons
|
||||
import com.vitorpamplona.amethyst.ui.theme.BitcoinOrange
|
||||
import com.vitorpamplona.amethyst.ui.theme.Size18Modifier
|
||||
import com.vitorpamplona.amethyst.ui.theme.Size20Modifier
|
||||
@@ -231,7 +233,7 @@ fun ZapIcon(
|
||||
@Composable
|
||||
fun CashuIcon(modifier: Modifier) {
|
||||
Icon(
|
||||
painter = painterResource(R.drawable.cashu),
|
||||
imageVector = CustomHashTagIcons.Cashu,
|
||||
"Cashu",
|
||||
tint = Color.Unspecified,
|
||||
modifier = modifier,
|
||||
|
||||
@@ -45,12 +45,12 @@ import androidx.compose.runtime.setValue
|
||||
import androidx.compose.ui.Alignment
|
||||
import androidx.compose.ui.Modifier
|
||||
import androidx.compose.ui.platform.LocalUriHandler
|
||||
import androidx.compose.ui.res.painterResource
|
||||
import androidx.compose.ui.text.AnnotatedString
|
||||
import androidx.compose.ui.text.style.TextOverflow
|
||||
import androidx.compose.ui.unit.dp
|
||||
import androidx.compose.ui.unit.sp
|
||||
import com.vitorpamplona.amethyst.R
|
||||
import com.vitorpamplona.amethyst.commons.hashtags.CustomHashTagIcons
|
||||
import com.vitorpamplona.amethyst.commons.hashtags.Tunestr
|
||||
import com.vitorpamplona.amethyst.model.AddressableNote
|
||||
import com.vitorpamplona.amethyst.model.Note
|
||||
import com.vitorpamplona.amethyst.model.User
|
||||
@@ -231,7 +231,7 @@ fun DisplayStatus(
|
||||
when (type) {
|
||||
"music" ->
|
||||
Icon(
|
||||
painter = painterResource(id = R.drawable.tunestr),
|
||||
imageVector = CustomHashTagIcons.Tunestr,
|
||||
null,
|
||||
modifier = Size15Modifier.padding(end = Size5dp),
|
||||
tint = MaterialTheme.colorScheme.placeholderText,
|
||||
|
||||
|
Before Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 5.5 KiB |
|
Before Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 7.2 KiB |
|
Before Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 17 KiB |
@@ -1,21 +0,0 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="800dp"
|
||||
android:height="800dp"
|
||||
android:viewportWidth="128"
|
||||
android:viewportHeight="128">
|
||||
<path
|
||||
android:pathData="M93.99,8.97c-21.91,0 -29.96,22.39 -29.96,22.39s-7.94,-22.39 -30,-22.39c-16.58,0 -35.48,13.14 -28.5,43.01c6.98,29.87 58.56,67.08 58.56,67.08s51.39,-37.21 58.38,-67.08c6.98,-29.87 -10.56,-43.01 -28.48,-43.01z"
|
||||
android:fillColor="#424242"/>
|
||||
<path
|
||||
android:pathData="M30.65,11.2c17.2,0 25.74,18.49 28.5,25.98c0.39,1.07 1.88,1.1 2.33,0.06L64,31.35C60.45,20.01 50.69,8.97 34.03,8.97c-6.9,0 -14.19,2.28 -19.86,7.09c5.01,-3.29 10.88,-4.86 16.48,-4.86z"
|
||||
android:fillColor="#575757"/>
|
||||
<path
|
||||
android:pathData="M93.99,8.97c-5.29,0 -9.77,1.54 -13.53,3.85c2.64,-1.02 5.56,-1.62 8.8,-1.62c16.21,0 30.72,12.29 24.17,40.7c-5.62,24.39 -38.46,53.98 -48.49,65.27c-0.64,0.72 -0.86,1.88 -0.86,1.88s51.39,-37.21 58.38,-67.08c6.99,-29.86 -11.89,-43 -28.47,-43z"
|
||||
android:fillColor="#575757"/>
|
||||
<path
|
||||
android:pathData="M17.04,24.82c3.75,-4.68 10.45,-8.55 16.13,-4.09c3.07,2.41 1.73,7.35 -1.02,9.43c-4,3.04 -7.48,4.87 -9.92,9.63c-1.46,2.86 -2.34,5.99 -2.79,9.18c-0.18,1.26 -1.83,1.57 -2.45,0.46c-4.22,-7.48 -5.42,-17.78 0.05,-24.61z"
|
||||
android:fillColor="#787878"/>
|
||||
<path
|
||||
android:pathData="M77.16,34.66c-1.76,0 -3,-1.7 -2.36,-3.34c1.19,-3.02 2.73,-5.94 4.58,-8.54c2.74,-3.84 7.95,-6.08 11.25,-3.75c3.38,2.38 2.94,7.14 0.57,9.44c-5.09,4.93 -11.51,6.19 -14.04,6.19z"
|
||||
android:fillColor="#787878"/>
|
||||
</vector>
|
||||
@@ -1,11 +0,0 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:autoMirrored="true" android:height="400dp" android:viewportHeight="400" android:viewportWidth="400" android:width="400dp">
|
||||
|
||||
<path android:fillColor="#d6c09a" android:pathData="M248.92,2.15V25.23h25.24v71.09h-25.24l0.23,24.77 -22.16,0.01 -0.14,69.22 22.06,-0.53v45.33h74.48v24.31h24.93v24h23.39v69.24h-23.08v23.08h-24.93v23H126.2v-23H100.5V352.45H74.96V329.68H51.8V282.9H25.95V49.24h26.08V25.16H74.57V2.15Z" android:strokeColor="#d6c09a" android:strokeWidth="1.23101"/>
|
||||
|
||||
<path android:fillColor="#bb9366" android:pathData="M74.39,2.27L74.39,25.27L51.85,25.27L51.85,49.35L25.77,49.35l0.41,233.66L51.71,283.02C52.43,236.9 76.75,25.19 125.24,25.35L125.38,2.27ZM51.62,283v46.79h23.16v22.77L99.94,352.57L99.94,331.11L75.16,331.11v-47.89zM100.32,354.12v21.76h25.47v-21.76zM323.6,354.5v21.38h24.85v-21.38zM126.02,377.51v21.38h197.5v-21.38z" android:strokeColor="#bb9366" android:strokeWidth="1.23101"/>
|
||||
|
||||
<path android:fillColor="#c4a47b" android:pathData="M74.47,25.2 L125.28,25.71V49.25H100.51V213.59h24.93v47.39h48.63v24h25.7v22.93h22.93v23h125.95v23.47h-24.85v23H125.97v-23.39h-25.85V331H75.35V283.29L51.58,283.07 51.49,49.32h22.77z" android:strokeColor="#c4a47b" android:strokeWidth="1.23101"/>
|
||||
|
||||
<path android:fillColor="#000000" android:pathData="m25.6,120.68v18.25h9.75v10.55h8.15v9.93h10.19v7.71h67.43v-7.98h10.01v-9.84h10.19v-20.82h17.72v20.65h10.28v9.75h7.89v7.8h67.52v-7.62h9.75v-9.84h10.37v-10.37h9.57v-17.81zM178.7,128.19h9.39v10.15l10.56,0.04v10.01h9.4v-10.15h-9.32L198.73,128.19l9.61,0.04v10.1h8.81l0.05,10.23 9.22,0.05v9.57l-9.26,-0.04 0.04,-9.57h-8.91v9.22h-9.57v-9.17l-10.63,-0.09 0.05,-10.15 -9.44,-0.04zM43.41,129.54h9.39v10.15l10.56,0.04v10.01h9.4L72.76,139.59h-9.32v-10.05l9.61,0.04v10.1h8.81l0.05,10.23 9.22,0.05v9.57l-9.26,-0.04 0.04,-9.57h-8.91v9.22h-9.57v-9.17l-10.63,-0.09 0.05,-10.15 -9.44,-0.04z" android:strokeColor="#00000000" android:strokeWidth="1.23101"/>
|
||||
|
||||
</vector>
|
||||
@@ -1,29 +0,0 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:autoMirrored="true" android:height="30dp" android:viewportHeight="512" android:viewportWidth="512" android:width="30dp">
|
||||
|
||||
<path android:fillColor="#00ffff" android:pathData="m204.58,84.84c1.81,1.81 0.93,0.93 0,0zM366.27,85.89c1.81,1.81 0.93,0.93 0,0z" android:strokeWidth="1.04994"/>
|
||||
|
||||
<path android:fillColor="#e0e0e0" android:pathData="M195.83,118.87C160.28,121.55 58.06,148.41 62.84,207.68c0.81,23.29 2.03,46.55 5.06,69.67C71.12,304.53 75.5,331.75 84.25,357.83 99.45,396.09 133.39,425.8 173.08,436.37c40.81,11.15 76.45,13.42 125.26,-1.3 37.88,-10.35 71.39,-38.36 83.88,-76.19 3.45,-9.2 5.45,-18.7 7.15,-28.35 20.03,1.02 40.62,-1.27 59.85,-7.38 27.45,-9.62 55.11,-30.92 57.75,-61.92 2.01,-19.22 -3.32,-39.88 -18.9,-52.41C470.37,192.65 445.5,189.27 422.47,190.88c-5.92,-1.92 -19.27,4.39 -19.71,-4.26 -21.54,-42.19 -74.52,-63.24 -116.57,-67.4 -15.34,-1.4 -54.8,-3.05 -90.36,-0.36zM258.21,145.74c35.71,4.41 74.76,9.19 102.82,33.63 12.65,10.58 23.31,29.73 12.25,45.12 -18.88,25.81 -51.74,35.57 -81.55,42.38 -31.35,6.81 -63.84,5.8 -95.54,2.68 -33.37,-5.07 -69.43,-11.31 -95.46,-34.59C90.48,225.01 85.35,208.69 94.1,196.13 109.59,170.88 139.79,160.48 166.78,152.36 177.5,149.63 188.33,146.97 199.33,145.74m229.72,86.97c8.71,0.05 17.28,0.93 25.22,4.74 16.86,8.49 9.47,33.24 -5.05,40.17 -16.12,8.15 -34.77,10.16 -52.5,11.96 1.83,-18.91 4.28,-37.82 6.3,-56.7 8.48,0.54 17.32,-0.23 26.03,-0.17z"/>
|
||||
|
||||
<path android:fillColor="#6d4b41" android:pathData="M90.72,207.67a141.92,61.23 0,1 0,283.84 0a141.92,61.23 0,1 0,-283.84 0z" android:strokeColor="#6d4b41" android:strokeWidth="8.81928"/>
|
||||
|
||||
<path android:fillColor="#b59075" android:pathData="m251.83,158.34c-37.4,0.76 -63.37,0.1 -100.79,11.35 -16.24,6.8 -36.12,14.4 -42.83,32.06 4.78,30.85 60.55,22.12 56.07,2.79 -4.14,-14.16 14.98,-19.74 25.61,-15.9 21.73,3.91 40.06,18.16 61.95,21.12 8.81,1.94 20.57,-2.79 17.76,-13.62 -3.87,-6.98 0.16,-14.74 8.49,-14.61 25.36,-1.83 47.16,13.81 70.35,21.12 7.05,3.96 15.78,-3.15 8.55,-9.65 -28.17,-23.15 -72.37,-35.31 -105.14,-34.65z" android:strokeWidth="1.04994"/>
|
||||
|
||||
<path android:fillColor="#b59074" android:pathData="m293.92,199.81c-6.74,4.63 0.26,16.2 -8.58,20.25 -16.21,10.23 -35.7,0.44 -52.4,-3.62 -14.16,-3.75 -29.52,-10.91 -44.1,-6.12 -10.46,5.46 -3.97,21.89 7.35,19.42 7.85,-1.08 15.55,-2.72 23.1,1.05 22.27,6.96 45.97,11.51 69.3,8.72 10.75,-2.04 15.9,-12.26 24.15,-17.82 10.27,-2.43 22.45,12.8 30.51,1.75 3.64,-11.74 -12.07,-16.18 -20.32,-19.7 -9.31,-3.26 -19.11,-5.82 -29,-3.92z" android:strokeWidth="1.04994"/>
|
||||
|
||||
<path android:fillColor="#6aa5ac" android:pathData="m403.02,222.38c-0.03,0.81 0.01,9.73 0.05,10.48 34.64,-0.06 53.3,2.38 65.08,16.87 4.08,5.36 7.47,10.62 10.15,8.41 -1.56,-19.68 -20.18,-34.58 -36.44,-36.16 -12.8,-1.15 -26.08,-1.13 -38.85,0.41z" android:strokeWidth="1.04994"/>
|
||||
|
||||
<path android:fillColor="#bbced3" android:pathData="m460.31,242.29c10.12,17.21 -6.22,36.21 -22.95,40.03 -13.31,3.43 -26.93,6.24 -40.63,7.26 -1.51,4.61 -7.2,17.18 1.16,15.75 18.92,-0.45 38.87,-2.29 55.71,-11.66 13.42,-7.05 22.47,-20.88 24.65,-35.78 -5.45,2.16 -11.7,-14.71 -17.94,-15.61z" android:strokeWidth="1.04994"/>
|
||||
|
||||
<path android:fillColor="#97827b" android:pathData="m113.24,244.43c1.81,1.81 0.93,0.93 0,0zM350.52,244.43c1.81,1.81 0.93,0.93 0,0z" android:strokeWidth="1.04994"/>
|
||||
|
||||
<path android:fillColor="#a79691" android:pathData="m345.28,247.58c1.81,1.81 0.93,0.93 0,0zM120.59,248.63c1.81,1.81 0.93,0.93 0,0z" android:strokeWidth="1.04994"/>
|
||||
|
||||
<path android:fillColor="#bbced3" android:pathData="m70.19,296.93c0.63,13.99 -1.65,28.32 2.1,42 -28.14,7.44 -58.32,24.8 -66.82,54.6 -8.2,25.34 9.63,50 29.11,64.51 42.76,32.57 96.75,46.56 149.39,52.05 25.57,3.02 51.57,2.3 77.31,1.67 57.38,-3.76 116.7,-14.92 165.89,-46.49 24.11,-15.17 48.19,-40.13 45.79,-70.7 -3.39,-27.59 -31.45,-41.66 -55.24,-49 -6.86,-2.02 -13.84,-4.05 -21,-4.55 2.55,-12.39 4.11,-10.88 -7.59,-11.3 -3.15,19.86 -11.24,41.84 -22.36,58.55 -9.33,27.17 -32.88,46.95 -58.24,58.8 41.17,-5.65 76.47,-60.67 84,-91.35 21.08,4.35 45.07,10.03 58.39,28.35 9.97,15.41 -3.74,32.74 -13.88,44.07 -102.21,85.13 -293.12,73.31 -394.85,9.37 -11.24,-12.66 -26.76,-34.25 -13.84,-51.49 11.01,-15.95 29.05,-25.58 47.1,-31.34 12.87,37.17 39.6,70.25 75.07,87.9 2.31,-2 -10.94,-7.59 -14.17,-11.11C123.07,420.24 108.45,408.22 102.36,391.48 104.48,388.76 94.88,380.02 91.98,372.52 78.86,349.74 75.03,323.23 70.95,297.75Z" android:strokeWidth="1.04994"/>
|
||||
|
||||
<path android:fillColor="#e0e0e0" android:pathData="m392.52,355.73c-11.61,47 -52.91,84.19 -99.67,96.08 -25.96,8.69 -52.52,9.95 -79.6,8.14 -28.82,-2.72 -56.32,-11.95 -80.06,-28.48 -26.74,-18.75 -46.22,-46.56 -57.75,-76.79 -21.27,6.03 -44.59,18.66 -52.06,40.95 -4.03,54.61 91.6,82.66 133.95,89.65 55.07,8.77 123.34,7.5 172.19,-3.47 36.3,-7.73 158.11,-59.91 118.33,-103.03 -14.75,-13.87 -35.78,-19.85 -55.33,-23.05z" android:strokeWidth="1.04994"/>
|
||||
|
||||
<path android:fillColor="#6aa5ac" android:pathData="m366.72,388.63c-25.24,35.36 -71.86,51.22 -113.53,54.89 -24.65,3.21 -48.92,0.37 -73.1,-5.06 -29.29,-7.57 -59.67,-27.71 -79.05,-51.06 20.56,60.68 97.11,78.57 150.78,73.33 45.36,-4.71 103.34,-25.75 114.89,-72.09z" android:strokeWidth="1.04994"/>
|
||||
|
||||
<path android:fillAlpha="0.632035" android:fillColor="#b9cdd5" android:pathData="m335.91,14.7c6.08,8.5 9.15,22.2 -1.52,28.6 -15.58,5.87 -32.81,4.14 -49.14,6.08 -29.97,2.84 -64.82,9.68 -81.49,37.77 -5.63,8.93 -7.22,19.09 -8.77,29.39 -0.01,0 -0.03,0 -0.04,0.01 -0.05,15.85 2.98,29.87 9.47,43.37l-0.15,0c8.96,13.26 19.47,29.83 35.83,35.99 11.44,2.56 10.87,-12.15 10.96,-20.16 -0.35,-14.02 1.13,-23.58 8.29,-32.41 -0,-0 -1.71,3.22 -0,0 1.71,-3.22 6.5,-8.89 11.21,-13.75 4.71,-4.86 13.22,-8.82 20.48,-11.6 7.26,-2.78 72.31,-24.48 85.15,-42.38C390.23,49.26 375.54,12.28 348.25,1.22 338.86,-2.77 332.82,9.41 335.91,14.7Z" android:strokeWidth="1.04994"/>
|
||||
|
||||
</vector>
|
||||
@@ -1,5 +0,0 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:autoMirrored="true" android:height="30dp" android:viewportHeight="236" android:viewportWidth="236" android:width="30dp">
|
||||
|
||||
<path android:fillColor="#e102c2" android:pathData="M172.02,18.47 L184.05,17.34C183.46,10.98 181.09,5.5 177.47,0.07M192.47,156.68c15.59,0.84 18.54,6.44 27.81,-9.06 8.36,-13.98 2.99,-28.3 6.5,-43.05 1.28,-5.38 3.72,-10.25 4.06,-15.86 0.33,-5.42 -1.49,-10.52 -2.09,-15.86 -0.56,-5.04 -0.38,-10.68 -5.27,-14.04 -5.44,-3.73 -9.84,1.11 -10.44,6.11 -0.58,4.87 0.23,9.84 -0.26,14.73 -0.42,4.27 -1.94,8.12 -2.05,12.46 -0.08,3.44 -1.44,9 -6.24,9 -8.64,0 -6.69,-13.22 -7.85,-18.06 -2.12,-8.86 -5.55,-16.83 -6.37,-26.06 -0.61,-6.81 1.68,-13.51 0.77,-20.39 -0.62,-4.66 -2.98,-11.24 -8.25,-12.86 -7.27,-2.23 -10.64,5.21 -10.75,10.6 -0.12,5.82 2.06,11.23 2.34,16.99 0.45,9.25 1.18,18.81 1.32,28 0.05,3.17 -1.3,6.19 -1.1,9.39 0.3,4.76 7.3,11.04 3.84,15.45 -4.18,5.32 -10.2,-0.54 -12.8,-4.12 -5.16,-7.1 -8.58,-15.32 -13.3,-22.63 -2.22,-3.44 -5.69,-6.28 -10.26,-5.17 -12.21,2.95 -2.34,18.13 1.65,23.28 10.47,13.53 19.59,27.62 30.78,40.78 6.23,7.32 15.1,11.08 17.96,20.39m25.26,-125.75c1.05,7.34 2.41,14.05 2.41,21.52l9.62,3.4c-0.44,-9.51 -3.84,-18.97 -12.03,-24.92m-80.59,15.86c-4.55,7.61 -6.27,16.45 -3.61,24.92 3.23,-1.54 6.07,-2.76 9.62,-3.4 -1.06,-6.79 -3.05,-15.3 -6.01,-21.52m-78.18,1.13c-1.52,6.9 -3.73,13.68 -6.01,20.39L66.18,69.45C63.78,62.51 62.59,54.31 58.96,47.92M45.73,207.66c2.62,-8.55 8.78,-9.62 13.92,-15.98 8.24,-10.19 17.12,-20.09 25,-30.46 3.56,-4.69 6.04,-10.01 9.62,-14.73 3.92,-5.15 14.26,-20.37 1.9,-23.28 -4.61,-1.08 -8.06,1.69 -10.32,5.17 -4.74,7.29 -8.19,15.57 -13.31,22.63 -2.52,3.48 -7.67,8.82 -11.94,4.3 -4.31,-4.56 2.59,-10.65 3.01,-15.63 0.28,-3.28 -1.02,-6.31 -1.07,-9.54 -0.18,-12.86 1.34,-26.46 3.26,-39.17 0.92,-6.05 -0.09,-19.43 -10.41,-16.26 -5.27,1.62 -7.63,8.2 -8.25,12.86 -0.81,6.12 1.07,12.08 0.59,18.13 -0.8,10.11 -4.17,18.64 -6.36,28.32 -1.11,4.9 1.13,17.89 -7.69,17.89 -5.48,0 -6.35,-6.21 -6.36,-9.96 -0.01,-4.02 -1.95,-7.4 -2.29,-11.33 -0.41,-4.87 0.61,-9.83 0.15,-14.73 -0.44,-4.69 -4.81,-9.94 -10.29,-6.76 -5.15,2.99 -4.94,9.81 -5.48,14.69 -0.55,4.94 -2.24,9.71 -2.14,14.73 0.12,5.62 2.27,10.53 3.8,15.86 4.38,15.24 -1.81,29.59 7.01,44.18 2.41,3.99 5.78,9.18 10.77,10.54 4.79,1.31 11.71,-1.44 16.84,-1.48M19.27,81.91C12.51,89.01 8.66,97.25 8.44,106.83c3.19,-1.41 6.2,-2.59 9.62,-3.4 0,-6.5 3.11,-15.61 1.2,-21.52m80.59,15.86c-0.33,7.13 -3.12,13.51 -4.81,20.39 3.41,1.23 6.45,2.82 9.62,4.53 2.55,-8.11 1.77,-18.72 -4.81,-24.92m92.75,69.95c-12.85,5.17 -0.98,22.19 10.58,17.44 14.95,-6.13 2.9,-22.87 -10.58,-17.44m-9.75,20.68c0,7.66 -0.57,15.04 -1.2,22.66 5.29,-5.31 10,-12.13 14.43,-18.13 -4.68,-1.02 -8.89,-2.61 -13.23,-4.53M34.91,218.46c-13.57,3.16 -4.32,20.77 7.21,17.99 7.88,-1.9 12.63,-11.14 5.51,-16.78 -3.21,-2.54 -8.91,-2.1 -12.72,-1.21" android:strokeWidth="1.16731"/>
|
||||
|
||||
</vector>
|
||||
@@ -1,31 +0,0 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:autoMirrored="true" android:height="30dp" android:viewportHeight="128" android:viewportWidth="128" android:width="30dp">
|
||||
|
||||
<path android:fillColor="#6200ee" android:pathData="M9.22,0.49C32.03,17.55 41.73,30.89 55.97,46.5 58.13,41.35 55.87,32.95 54.17,27.76 47.61,7.76 28.73,0.5 9.22,0.49Z" android:strokeWidth="1.23984"/>
|
||||
|
||||
<path android:fillColor="#6200ee" android:pathData="M71.43,71.77C80.15,58.93 119.83,33.38 120.81,24.04 99.67,24.48 79.22,31.77 72.71,53.8c-1.57,5.31 -1.28,12.49 -1.28,17.98z" android:strokeWidth="1.23984"/>
|
||||
|
||||
<path android:fillColor="#3700b3" android:pathData="M106.9,34.15C85.73,55.38 83.29,51.88 72.93,73.42 99.01,72.3 124.1,52.45 120.96,24.2c-6.39,2.87 -10.26,5.06 -14.06,9.95z" android:strokeWidth="1.23984"/>
|
||||
|
||||
<path android:fillColor="#3700b3" android:pathData="M8.75,0.49C9.99,16.18 11.87,33.64 26.58,42.19c8.31,4.83 18,6.14 27.28,7.89C51.37,34.85 52.38,36.2 23.79,11.48 19.47,7.83 15.87,4.35 8.75,0.49Z" android:strokeWidth="1.23984"/>
|
||||
|
||||
<path android:fillColor="#818181" android:pathData="m32.78,4.21 l1.24,1.24z" android:strokeWidth="1.23984"/>
|
||||
|
||||
<path android:fillColor="#35b458" android:pathData="m21.62,10.4c1.73,1.78 2.77,2.54 4.96,3.72 -3,0.9 -5.54,1.18 -8.68,1.24v3.72c12.33,0 18.72,3.25 26.04,13.64h-8.68v3.72c3.97,0 8.64,-0.58 11.99,1.99 5.09,3.9 6.28,10.83 7.86,16.61 4.07,14.86 6.19,30.48 6.19,45.87 0,7.1 -12.14,35.85 4.96,24.8 2.2,-11.69 -0.79,-24.1 -0.55,-34.72 3.59,-12.15 10.48,-24.1 19.15,-30.58 4.71,-1.59 11.08,2.02 12.4,-4.13L84.85,57.52C92.59,48.01 98.34,42.67 110.89,42.64v-2.48h-8.68l4.96,-6.2C99.44,34.3 94.62,42.1 88.57,46.36 88.31,42.96 88.2,42.12 84.85,41.4 84.47,54.13 72.01,71.54 63.78,79.84 63.68,68.4 61.36,55.48 56.36,45.12 53.38,38.94 48.97,33.72 45.69,27.76c-1.76,-3.21 -2.34,-6.79 -4.23,-9.92 -0.85,1.55 -0.93,1.92 -1.24,3.72C34.74,17.12 29,10.14 21.62,10.4Z" android:strokeWidth="1.23984"/>
|
||||
|
||||
<path android:fillColor="#818181" android:pathData="m42.7,10.4 l1.24,1.24z" android:strokeWidth="1.23984"/>
|
||||
|
||||
<path android:fillColor="#818181" android:pathData="m103.45,25.28 l1.24,1.24z" android:strokeWidth="1.23984"/>
|
||||
|
||||
<path android:fillColor="#01ff01" android:pathData="m12.94,27.76 l1.24,1.24 -1.24,-1.24m76.87,2.48 l1.24,1.24z" android:strokeWidth="1.23984"/>
|
||||
|
||||
<path android:fillColor="#818181" android:pathData="m73.7,48.84 l1.24,1.24z" android:strokeWidth="1.23984"/>
|
||||
|
||||
<path android:fillColor="#f99721" android:pathData="m0.08,127.88c9.29,0 23.31,0 33.06,-0.19 18.28,-0.22 37.95,-11.49 49.61,-18.06 -6.53,-6.66 -21.68,-9.69 -28.93,-6.42 -6.34,4.41 -16.53,6.01 -23.4,9.19 -10.62,8.43 -25.2,8.66 -30.33,15.49z" android:strokeWidth="1.18196"/>
|
||||
|
||||
<path android:fillColor="#857f2d" android:pathData="m61.97,101.52 l1.01,1.01z" android:strokeWidth="1.01399"/>
|
||||
|
||||
<path android:fillColor="#ffff01" android:pathData="m51.83,105.57 l1.01,1.01 -1.01,-1.01m23.32,0 l1.01,1.01z" android:strokeWidth="1.01399"/>
|
||||
|
||||
<path android:fillColor="#df7f07" android:pathData="m31.33,127.88h96.76c-5.65,-7.8 -12.98,-6.4 -22.04,-10.16 -9.52,-3.96 -14.56,-9.59 -27.04,-7.55 -9.57,1.56 -14.28,7.56 -22.67,10.01 -9.68,2.83 -17.4,1.08 -25,7.71z" android:strokeWidth="1.19243"/>
|
||||
|
||||
</vector>
|
||||
@@ -1,15 +0,0 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:autoMirrored="true" android:height="512dp" android:viewportHeight="512" android:viewportWidth="512" android:width="512dp">
|
||||
|
||||
<path android:fillColor="#feb804" android:pathData="M405.81,0.32C398.49,10.85 392.37,18.66 387.21,28.1 347.37,84.64 306.07,140.12 265.2,195.92c-6.72,6.21 -2.23,18.18 7.3,15.63 15.68,3.42 21.45,-10.42 21.45,-10.42 0,0 77.89,-124.01 115.84,-186.59 2.59,-5.52 4.24,-14.8 -3.99,-14.23z" android:strokeWidth="1.04238"/>
|
||||
|
||||
<path android:fillColor="#ffc927" android:pathData="m134.11,269.93 l84.15,-1.04 23.28,8.34 -22.14,38.79 -109.77,188.45 3.59,0.32 279.74,-251.78 45.05,-42.48 -136.78,0.48 -35.28,-0.67L406.13,0.17c0,0 -223.08,181.66 -329.74,270.15l-1.05,0.84z" android:strokeWidth="1.04238"/>
|
||||
|
||||
<path android:fillColor="#feb804" android:pathData="m109.66,504.46c0.64,10.48 14.14,7.32 18.78,1.43 110.11,-98.52 227.42,-195.83 322.37,-283.08 2.86,-9.82 -3.79,-12.45 -12.85,-12.17 -78.5,71.81 -160.72,147.93 -240.44,218.41 -26.97,23.78 -53.64,47.9 -80.56,71.73 -2.16,1.7 -4.6,3.11 -7.3,3.68zM233.74,290.74c6.73,-10.68 15.61,-23.14 -0.04,-21.83 -52.45,-0 -100.96,0.79 -149.97,2.26 -7.99,-0.01 -8.92,-2.35 -12.91,9.06 -4.91,14.03 13.18,11.66 21.97,11.6 42.7,-0.17 85.45,0.63 128.07,-1.04 5,-0.01 7.71,-0.11 12.88,-0.04z" android:strokeWidth="1.04238"/>
|
||||
|
||||
<path android:fillColor="#ffe567" android:pathData="m296,97.74c-8.58,4.87 -15.26,12.45 -23,18.53 -35.76,30.9 -71.36,61.98 -107.63,92.28C151.57,220.67 137.06,232.03 124.04,245c-4.43,3.73 -6.85,10.69 -2.84,15.61 5.44,7.37 15.93,3.73 21.79,-1.14 10.01,-8.23 19.2,-17.38 28.7,-26.18 10.02,-9.86 19.61,-20.18 30.3,-29.34 9.8,-9.67 19.3,-19.67 29.71,-28.7 9.65,-9.6 19.13,-19.36 29.35,-28.35 10.46,-10.35 20.91,-20.72 30.73,-31.68 3.95,-4.61 10.41,-8.49 10.76,-15.09 -0.53,-3.16 -4.13,-3.24 -6.55,-2.4z" android:strokeWidth="1"/>
|
||||
|
||||
<path android:fillColor="#ffd84b" android:pathData="m265,273.67c-10.03,4.07 -14.76,14.57 -20.73,22.92 -7.91,12 -15.59,24.15 -23.69,36.03 -6.85,10.4 -13.5,20.93 -20.45,31.26 -7.07,11.27 -14.61,22.23 -21.71,33.48 -4.09,6.76 -9.12,13.12 -11.75,20.64 -1.05,3.04 1.15,7.25 4.72,6.31 5.83,-1.77 8.7,-7.81 12.38,-12.19 29.29,-39.13 58.73,-78.14 87.92,-117.34 3.73,-5 6.11,-12.68 2.56,-18.38 -2.25,-2.58 -5.96,-3.68 -9.26,-2.73z" android:strokeWidth="1"/>
|
||||
|
||||
<path android:fillColor="#ffd84b" android:pathData="M276,279L276,285L276.58,283.92L276.63,283.5L276.81,282.74L276.81,281.26L276.63,280.5L276.58,280.08L276,279Z" android:strokeWidth="1"/>
|
||||
|
||||
</vector>
|
||||
@@ -1,11 +0,0 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:autoMirrored="true" android:height="30dp" android:viewportHeight="512" android:viewportWidth="512" android:width="30dp">
|
||||
|
||||
<path android:fillColor="#226699" android:pathData="m240.08,212.39c36.87,-40.18 42.78,-59.05 41.13,-100.9C277,50.2 219.66,-13.1 154.47,3.27 98.99,29.17 78.41,76.67 87.06,130.37c3.33,19.78 11.27,38.92 23.31,55 3.8,5.07 7.79,10.56 13.1,14.15 29.58,11.55 63.27,28.18 92,32.55 49.4,5.06 16.32,4.07 24.6,-19.68z" android:strokeWidth="1"/>
|
||||
|
||||
<path android:fillColor="#55acee" android:pathData="m267.47,229.37c-25.72,6.13 -53.18,4.36 -76,-3.34 -20.82,-7.2 -41.71,-15.31 -62,-23.89 -13.66,-5.78 -26.84,-12.79 -42,-12.77 -10.84,0.01 -25.74,2.17 -33.79,10.21 -12.71,12.72 -10.63,39.82 0.12,52.79 8,9.65 20.69,14.76 31.67,20.25 23.9,11.95 48.7,21.9 73,32.98 10.32,4.71 26.02,8.83 33.39,17.87 8.39,10.3 7.94,31.97 8.2,44.72 9.82,0 21.75,-2.39 31.41,-4.33 25.64,-5.16 48.79,-18.57 71,-31.89 19.64,-11.78 43.51,-31.47 68,-22.64 21.49,7.75 29.19,33.23 20.1,53.04 -4.48,9.75 -12.74,16.53 -21.1,22.87 -47.95,36.4 -106.39,61.13 -167,61.13v44c0.57,13.76 -3.29,20.25 13,21.83 77.7,0.66 162.39,0.17 231,0.17 8.37,0 21.25,2.25 22.81,-9 2.18,-15.74 0.19,-33.11 0.19,-49 -0.45,-63.01 -2.27,-108.37 -12.6,-160 -2.13,-10.58 -4.93,-21.42 -13.44,-28.85 -6.41,-5.6 -18.73,2.11 -25.96,4.1 -19.39,5.35 -53.74,8.08 -62.79,-15.26 -9.33,-24.05 13.94,-39.8 28.79,-54.04 33.42,-27.88 43.86,-89.36 34.58,-125.96 -19.6,-76.14 -102.29,-105.04 -163.01,-34 -2.71,5.55 4.59,12.39 7.12,17 7.8,14.19 12.88,29.08 15.7,45 4.02,22.71 0.21,46.9 -8.81,68 -1.2,8.8 -13.79,19.12 -14.67,26 -0.54,5.91 8.62,9.85 11.49,14.09 3.23,4.77 1.6,13.38 1.6,18.91z" android:strokeWidth="1"/>
|
||||
|
||||
<path android:fillColor="#226699" android:pathData="m359.66,263.19c19.06,20.66 79.63,9.79 95.85,-13.82 8.68,-13.52 9.7,-39.1 -3.13,-50.67 -38.38,-27.49 -128.22,26.09 -92.72,64.49z" android:strokeWidth="1"/>
|
||||
|
||||
<path android:fillColor="#226699" android:pathData="m202.93,505.36c0.59,-18.53 -1.14,-37.92 -0.75,-57.16 14.33,0 28.11,-2.78 42.29,-5.14 44.72,-7.45 88.98,-29.99 125,-57.05 8.09,-6.07 16.01,-12.4 20.62,-21.63 9.25,-18.5 3.95,-45.81 -16.62,-54.07 -20,-8.03 -39.1,1.93 -56,12.07 -23.17,13.9 -46.41,28.64 -72,37.69 -10.64,2.62 -32.58,8.46 -41.85,4.71 -3.52,-16.69 -3.3,-31.8 -11.76,-42.18 -24.67,-17.17 -70.54,-35.84 -115.39,-54.99 -2.59,-1.37 -5.91,-4.18 -9,-3.97 -4.75,0.33 -8.88,7.11 -11.07,10.75 -22.39,67.4 -18.92,158.86 -18.93,219 0.22,13.62 -0.39,18.98 15,19h30c23.68,-4.03 130.22,11.25 120.46,-7.01z" android:strokeWidth="1"/>
|
||||
|
||||
</vector>
|
||||
@@ -1,63 +0,0 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:autoMirrored="true" android:height="30dp" android:viewportHeight="521" android:viewportWidth="521" android:width="30dp">
|
||||
|
||||
<path android:fillColor="#100f0f" android:pathData="m166.04,80.02c-17.59,-6.8 -44.53,4.02 -36.94,26.7 2.1,23.63 5.97,47.17 3.47,70.99 -2.74,24.02 -32.14,35.56 -36.13,61.12 -17.98,47.59 -10.44,101.14 7.34,147.59 -5.49,19.93 -10.79,48.41 11.27,61.19 17.73,13.08 40.75,11.29 60.41,18.04 20.5,12.32 -10.44,42.99 15.69,51.95 18.1,2.85 17.83,3.66 56.46,3.83 23.29,0.37 51.14,0.26 66.03,-3.18 17.85,-3.74 39.3,-7.9 29.23,-32.48 0.75,-28.57 30.29,-42.62 54.42,-48.44 24.04,-0.98 29.12,-26.79 19.49,-44.7 -5.32,-21.48 6.12,-42.36 4.25,-64.15 9.22,-22.32 5.23,-47.01 3.79,-70.4 -3.12,-31.07 -19.99,-60.88 -47.91,-76.09 -19.16,-14.77 -41.79,-26.32 -51.95,-49.92 -13.21,-19.23 -10.24,-46.18 -25.23,-63.73 -12.88,-9.26 -34.33,6.8 -32.65,-16.3 -4.24,-18.5 -22.62,-63.83 -43.89,-35.8 -0.8,10.21 7,46.6 -3.09,20.07 -8.91,-17.61 -6.24,-23.9 -23.01,-35.87 -33.29,-3.67 -17.66,22.16 -29.25,36.91 -11.2,9.78 -1.8,29.63 -1.78,42.68z" android:strokeWidth="1.04573"/>
|
||||
|
||||
<path android:fillColor="#29b34a" android:pathData="m197.42,67.47c10.4,-9.94 32.5,-7.13 19.03,-25.22 -10.23,-16.23 -7.15,-34.88 -28.12,-37.02 -13.71,16.67 -8.26,27.41 3.86,41.46 2.33,6.77 3.64,13.83 5.23,20.79z" android:strokeWidth="1.04573"/>
|
||||
|
||||
<path android:fillColor="#136c37" android:pathData="m253.88,115.57c2.51,-17.6 -3.28,-35.98 9.78,-50.51 -6.68,-17 -8.37,-38.33 -21.78,-51.31 -23.22,-3.06 -6.87,32.18 -7.34,44.92 15.5,13.03 12.4,35.88 18.82,53.61z" android:strokeWidth="1.04573"/>
|
||||
|
||||
<path android:fillColor="#136c37" android:pathData="m169.18,49.39c-0.97,1.1 -1.7,6.81 6.67,43.02 6.06,18.19 12.64,46.96 24.45,57.3 2.53,-36.48 -3.51,-73.18 -18.6,-106.12 -2.68,-5.86 -9.24,2.22 -12.52,5.79z" android:strokeWidth="1.04573"/>
|
||||
|
||||
<path android:fillColor="#29b34a" android:pathData="m204.74,104.07c0.62,-7.84 3.93,-37.85 6.9,-19.43 -3.32,23.59 -5.05,47.14 -4.77,71.23 -0.84,28.44 -19.72,-11.42 -22.99,-22.25 -10.17,-15.42 -5.61,-50.82 -31.3,-48.37 -28.19,-1.43 -14.52,32.27 -14.95,49.15 3.38,16.6 -2.99,44.2 2.46,54.01 15.8,-3.46 -17.14,24.03 -21.74,34.01 -27.95,42.53 -22.51,97.34 -10.09,144.23 1.34,14.76 3.43,18.52 17.3,14.78 -10.15,11.19 -29.78,28.99 -13.96,47.86 14.78,25.27 46.31,12.63 66.71,26.55 16.96,5.18 5.17,30.14 22.72,23.09 9.8,7.16 9.21,22.01 19.43,5.38 19.77,-21.95 28.47,35.56 35.96,6.99 4.72,-20.5 27.27,-14.18 31.97,2.83 3.48,-14.21 17.35,-16.83 26.14,-5.23 9.61,-16.1 27.49,-17.18 35.9,-35.21 12.96,-16.26 34.62,-16.63 51.52,-25.79 17.62,-15.14 3.57,-40.19 -5.85,-56.12 17.86,12.19 9.98,-26.69 16.12,-38.69 7.23,-36.19 12.77,-76.04 -5.91,-109.9 -14.87,-32.02 -48.57,-51.65 -82.98,-54.86 -28.39,-9.94 30.2,-0.92 8.31,-16.56 -19.66,-20.98 -23.94,-50.27 -32.65,-76.3 -11.31,-10.06 -41.45,-4.62 -30.09,9.78 -0.12,11.71 -7.06,27.87 -5.35,6.94 1.89,-16.45 -3.85,-11.1 -1.64,1.76 -0.07,15.92 3.32,46.99 -3.51,53.77 -11.54,-23.03 -15.18,-49.22 -20.73,-74.16 -11.24,-22.76 -44.57,-8.54 -33.97,21.59 0.54,2.96 0.77,5.94 1.02,8.93z" android:strokeWidth="1.04573"/>
|
||||
|
||||
<path android:fillColor="#100f0f" android:pathData="m141.99,137.53c5.43,-6.56 6.77,-44.71 -3.76,-38.14 -0.11,12.72 4.24,25.29 3.76,38.14z" android:strokeWidth="1.04573"/>
|
||||
|
||||
<path android:fillColor="#100f0f" android:pathData="m190.1,178.76c-23.35,4.43 -48.58,19.13 -56.06,42.87 -2.02,30.08 23.87,1.52 32.26,-8.59 9.02,-13.1 39.17,-19.98 37.21,-34.48 -4.43,-1.08 -8.98,-0.39 -13.42,0.2z" android:strokeWidth="1.04573"/>
|
||||
|
||||
<path android:fillColor="#ffffff" android:pathData="m137.81,233.74c18.97,-10.81 30.28,-32.52 50.84,-42.38 10.08,-4.82 18.91,-12.58 1.88,-9.75 -23.62,5.7 -57.72,22.99 -52.71,52.13z" android:strokeWidth="1.04573"/>
|
||||
|
||||
<path android:fillColor="#100f0f" android:pathData="m176.5,382.23c-10.89,10.08 -47.39,-14.78 -33.15,10 22.96,15.3 54.04,2.59 73.06,-13.68 25.35,-20.63 34.48,-66.26 5.31,-87.73 -28.87,-23.83 -81.68,-12.07 -90.91,26.17 -5.56,28.61 14.87,63.5 45.69,65.24z" android:strokeWidth="1.04573"/>
|
||||
|
||||
<path android:fillColor="#100f0f" android:pathData="m380.42,379.09c-10.32,0 -50.27,12.13 -23.12,1.31 34.33,-13.64 44.66,-68.99 10.94,-89.15 -29.71,-20.53 -81.33,-7.62 -88.3,30.57 -5.96,36.87 22.87,76.76 61.7,76.25 13.69,-0.46 36.37,-1.58 38.78,-18.97z" android:strokeWidth="1.04573"/>
|
||||
|
||||
<path android:fillColor="#ffffff" android:pathData="m178.59,317.4c-1.61,19.73 20.89,-2.92 0,0z" android:strokeWidth="1.04573"/>
|
||||
|
||||
<path android:fillColor="#ffffff" android:pathData="m333.36,318.44c-9.35,14.82 15.03,7.85 3.2,1.02z" android:strokeWidth="1.04573"/>
|
||||
|
||||
<path android:fillColor="#ffffff" android:pathData="m182.78,346.68c19.05,3.54 12.91,-18.62 -0.32,-6.87 -0.44,2.36 -1.2,4.04 0.32,6.87z" android:strokeWidth="1.04573"/>
|
||||
|
||||
<path android:fillColor="#ffffff" android:pathData="m328.13,347.72c18.68,9.03 16.71,-14.75 1.53,-5.83l-0.71,1.92z" android:strokeWidth="1.04573"/>
|
||||
|
||||
<path android:fillColor="#100f0f" android:pathData="m261.2,452.3c-0.01,-31.75 -0.13,-63.62 -4.18,-95.16 -21.21,6.72 -22.06,34.27 -29.88,51.75 -15,21.75 1.78,51.06 28.51,43.7l2.75,-0.18z" android:strokeWidth="1.04573"/>
|
||||
|
||||
<path android:fillColor="#100f0f" android:pathData="m268.52,362.36c-5.53,25.01 1.03,50.79 1.09,76.12 2.32,33.71 45.43,-4.75 27.67,-24.31 -9.59,-16.84 -13.05,-39.45 -28.77,-51.81z" android:strokeWidth="1.04573"/>
|
||||
|
||||
<path android:fillColor="#f9a318" android:pathData="m185.91,282.89c2.81,7.36 -1.01,19.99 6.8,23.39 13.4,7.92 5.01,23.19 18.02,31.43 3.29,15.59 -20.21,16.4 -9.52,32.47 10.79,11.43 33.6,-18.83 33.28,-34.78 4.95,-24.56 -15.22,-46.82 -38.79,-50.42 -3.24,-0.81 -6.51,-1.48 -9.79,-2.09z" android:strokeWidth="1.04573"/>
|
||||
|
||||
<path android:fillColor="#f9a318" android:pathData="m174.41,283.93c-0.8,9.41 7.36,32.46 3.76,10.44 -1.91,-2.35 0.64,-11.74 -3.76,-10.44z" android:strokeWidth="1.04573"/>
|
||||
|
||||
<path android:fillColor="#f9a318" android:pathData="m316.63,378.05c3.07,-11.08 3.28,-20.16 -2.79,-29.21 -1.49,-24.51 13.44,-41.07 17.43,-62.81 -28.09,0.39 -54.7,27.47 -46.08,56.4 3.62,16.06 15.22,30.98 31.44,35.62z" android:strokeWidth="1.04573"/>
|
||||
|
||||
<path android:fillColor="#f9a318" android:pathData="m163.95,287.07c-20.93,9.04 -36.19,32.9 -27.19,55.42 6.5,19.04 24.51,34.53 44.97,35.56 -4.62,-20.38 -19.13,-36.55 -18.62,-60.58 2.35,-10.49 8.59,-19.63 0.85,-30.39z" android:strokeWidth="1.04573"/>
|
||||
|
||||
<path android:fillColor="#f9a318" android:pathData="m340.68,287.07c-4.46,8.04 -2.17,32.41 0.12,9.87 -2.31,-1.88 6.22,-11.53 -0.12,-9.87z" android:strokeWidth="1.04573"/>
|
||||
|
||||
<path android:fillColor="#f9a318" android:pathData="m351.14,289.16c-6.29,17.56 7.98,33.69 3.62,48.78 15.16,21.46 -25.38,21.09 -17.21,43.24 35.01,-1.12 60.32,-47.8 37.82,-75.93 -6.39,-7.4 -14.86,-13.21 -24.23,-16.1z" android:strokeWidth="1.04573"/>
|
||||
|
||||
<path android:fillColor="#f9a318" android:pathData="m188,358.18c-1.68,13.58 8.33,26.7 3.23,7.21 -1.15,-2.13 0.63,-8.45 -3.23,-7.21z" android:strokeWidth="1.04573"/>
|
||||
|
||||
<path android:fillColor="#f9a318" android:pathData="m329.18,360.27c-4.17,9.07 -2.34,32.64 0.25,10.42 -0.99,-2.22 4.74,-12.03 -0.25,-10.42z" android:strokeWidth="1.04573"/>
|
||||
|
||||
<path android:fillColor="#203d1b" android:pathData="m318.72,509.81c27.62,9.81 24.31,-50.6 1.55,-25.14 -4.51,7.62 -2.5,16.89 -1.55,25.14z" android:strokeWidth="1.04573"/>
|
||||
|
||||
<path android:fillColor="#203d1b" android:pathData="m206.83,511.9c8.1,-14.52 -14.15,-44 -19,-18.82 -4.34,14.51 5.62,21.31 19,18.82z" android:strokeWidth="1.04573"/>
|
||||
|
||||
<path android:fillColor="#203d1b" android:pathData="m248.66,517.13c3.68,-23.67 -27.25,-48.54 -35.51,-15.61 -7.9,22.96 23.23,17.53 35.51,15.61zM292.58,516.09c26.31,9.48 28.2,-26.17 7.34,-31.63 -11.74,5.5 -7.38,21.53 -7.34,31.63z" android:strokeWidth="1.04573"/>
|
||||
|
||||
<path android:fillColor="#203d1b" android:pathData="m289.06,514.96c-0,-5.44 -0.32,-10.51 -2.19,-15.69 -2.27,-5.58 -5.05,-10.71 -9.36,-14.35 -12.7,-10.59 -18.59,9.53 -21.57,18.53 -1.24,3.74 -4.54,11.24 -0.76,14.49 2.45,2.11 6.79,2.15 9.83,2.22 8.86,0.21 15.69,-3.23 24.05,-5.21z" android:strokeWidth="1.04573"/>
|
||||
|
||||
<path android:fillColor="#100f0f" android:pathData="m183.93,13.89c1.52,7.25 3.92,14.13 4.87,21.51l2.07,-0.27c-0.95,-7.41 -1.33,-14.81 -4.87,-21.51z" android:strokeWidth="1.04573"/>
|
||||
|
||||
<path android:fillColor="#100f0f" android:pathData="m233.23,20.94 l1.05,16.73c2.29,-5.11 2.62,-11.39 1.05,-16.73z" android:strokeWidth="1.04573"/>
|
||||
|
||||
</vector>
|
||||
@@ -1,31 +0,0 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="600dp"
|
||||
android:height="600dp"
|
||||
android:viewportWidth="600"
|
||||
android:viewportHeight="600">
|
||||
<path
|
||||
android:pathData="m171.93,82.63 l405.17,-82.63 0,112.99 -405.17,82.63z"
|
||||
android:fillColor="#EB3C27"
|
||||
android:strokeColor="#00000000"
|
||||
android:fillType="nonZero"/>
|
||||
<path
|
||||
android:pathData="M171.93,82.54l65.23,0l0,422.37l-65.23,0z"
|
||||
android:fillColor="#EB3C27"
|
||||
android:strokeColor="#00000000"
|
||||
android:fillType="nonZero"/>
|
||||
<path
|
||||
android:pathData="m235.04,488.2c11.66,43.5 -25.91,91.36 -83.91,106.9 -58,15.54 -114.46,-7.12 -126.12,-50.62 -11.66,-43.5 25.91,-91.36 83.91,-106.9 58,-15.54 114.46,7.12 126.12,50.62z"
|
||||
android:fillColor="#EB3C27"
|
||||
android:strokeColor="#00000000"
|
||||
android:fillType="nonZero"/>
|
||||
<path
|
||||
android:pathData="M511.87,13.54l65.23,0l0,422.37l-65.23,0z"
|
||||
android:fillColor="#EB3C27"
|
||||
android:strokeColor="#00000000"
|
||||
android:fillType="nonZero"/>
|
||||
<path
|
||||
android:pathData="m574.98,419.21c11.66,43.5 -25.91,91.36 -83.91,106.9 -58,15.54 -114.46,-7.12 -126.12,-50.62 -11.66,-43.5 25.91,-91.36 83.91,-106.9 58,-15.54 114.46,7.12 126.12,50.62z"
|
||||
android:fillColor="#EB3C27"
|
||||
android:strokeColor="#00000000"
|
||||
android:fillType="nonZero"/>
|
||||
</vector>
|
||||
@@ -1,9 +0,0 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:autoMirrored="true" android:height="30dp" android:viewportHeight="512" android:viewportWidth="512" android:width="30dp">
|
||||
|
||||
<path android:fillColor="#feb804" android:pathData="M402.13,1.26C394.81,11.79 388.68,19.61 383.52,29.04 343.68,85.58 302.38,141.06 261.52,196.86c-6.72,6.21 -2.23,18.18 7.3,15.63 15.68,3.42 21.45,-10.42 21.45,-10.42 0,0 77.89,-124.01 115.84,-186.59 2.59,-5.52 4.24,-14.8 -3.99,-14.23z" android:strokeWidth="1.04238"/>
|
||||
|
||||
<path android:fillColor="#9c59ff" android:pathData="m130.42,270.87 l84.15,-1.04 23.28,8.34 -22.14,38.79 -109.77,188.45 3.59,0.32 279.74,-251.78 45.05,-42.48 -136.78,0.48 -35.28,-0.67L402.44,1.11c0,0 -223.08,181.66 -329.74,270.15l-1.05,0.84z" android:strokeWidth="1.04238"/>
|
||||
|
||||
<path android:fillColor="#feb804" android:pathData="m105.97,505.41c0.64,10.48 14.14,7.32 18.78,1.43 110.11,-98.52 227.42,-195.83 322.37,-283.08 2.86,-9.82 -3.79,-12.45 -12.85,-12.17 -78.5,71.81 -160.72,147.93 -240.44,218.41 -26.97,23.78 -53.64,47.9 -80.56,71.73 -2.16,1.7 -4.6,3.11 -7.3,3.68zM230.06,291.68c6.73,-10.68 15.61,-23.14 -0.04,-21.83 -52.45,-0 -100.96,0.79 -149.97,2.26 -7.99,-0.01 -8.92,-2.35 -12.91,9.06 -4.91,14.03 13.18,11.66 21.97,11.6 42.7,-0.17 85.45,0.63 128.07,-1.04 5,-0.01 7.71,-0.11 12.88,-0.04z" android:strokeWidth="1.04238"/>
|
||||
|
||||
</vector>
|
||||