feat Add gradient-only card design and icon style picker (#3054)

* feat Add gradient-only card design and icon style picker * refactor: Migrate card icon style to index-based storage * feat: Add new card icons/styles for icon panel * feat: add generic cake card icon * Update coin icons and add opacity * Remove vector icon files * Remove vector icon files * add xmr-og.webp * feat: add animated switcher to icon style panel * Enhance icson style preview fix special gradient bug on plain style card * Fix card styles ignoring special gradient text color combination * Improve icon mgmt for card design handling, other fixes also based on review too * fix: Add bounds check to icon style index * fix: monero classic icon not displaying --------- Co-authored-by: tuxsudo <tuxsudo@tux.pizza>

David Adegoke committed May 31, 2026 at 12:29 UTC 0c3b06d3c1dd595fcdde1cb42720643a404c8062
115 files changed +2119 -323
assets/images/xmr-og.webp
Binary files /dev/null and b/assets/images/xmr-og.webp differ
cw_core/lib/balance_card_style_settings.dart
+27 -5
@@ -8,6 +8,8 @@ class BalanceCardStyleSettings {
8 final int gradientIndex;
9 final bool useSpecialDesign;
10 final String backgroundImagePath;
11 + final int iconStyleIndex;
12 + final bool isGradientOnly;
13 final int cardOrder;
14
15 BalanceCardStyleSettings(
@@ -16,6 +18,8 @@ class BalanceCardStyleSettings {
18 required this.gradientIndex,
19 required this.useSpecialDesign,
20 required this.backgroundImagePath,
21 + this.iconStyleIndex = 0,
22 + this.isGradientOnly = false,
23 required this.cardOrder});
24
25 static const tableName = "BalanceCardStyleSettings";
@@ -27,6 +31,8 @@ class BalanceCardStyleSettings {
31 "gradientIndex": gradientIndex,
32 "useSpecialDesign": useSpecialDesign ? 1 : 0,
33 "backgroundImagePath": backgroundImagePath,
34 + "iconStyleIndex": iconStyleIndex,
35 + "isGradientOnly": isGradientOnly ? 1 : 0,
36 "cardOrder": cardOrder,
37 };
38 return ret;
@@ -39,19 +45,35 @@ class BalanceCardStyleSettings {
45 gradientIndex: json["gradientIndex"] as int,
46 useSpecialDesign: json["useSpecialDesign"] == 1,
47 backgroundImagePath: json["backgroundImagePath"] as String? ?? "",
48 + iconStyleIndex: json["iconStyleIndex"] as int? ?? 0,
49 + isGradientOnly: json["isGradientOnly"] == 1,
50 cardOrder: json["cardOrder"] as int? ?? -1,
51 );
52 }
53
46 - static BalanceCardStyleSettings fromCardDesign(
47 - int walletInfoId, int accountIndex, int cardOrder, CardDesign design) {
54 + static BalanceCardStyleSettings fromCardDesign({
55 + required int walletInfoId,
56 + required int accountIndex,
57 + required int cardOrder,
58 + required CardDesign design,
59 + int iconStyleIndex = 0,
60 + int? gradientIndexOverride,
61 + }) {
62 + final int gradientIndex = gradientIndexOverride ??
63 + CardDesign.allGradients.indexOf(design.gradient);
64 return BalanceCardStyleSettings(
65 walletInfoId: walletInfoId,
66 accountIndex: accountIndex,
51 - gradientIndex: CardDesign.allGradients.indexOf(design.gradient),
52 - useSpecialDesign: design.backgroundType == CardDesignBackgroundTypes.svgFull,
67 + gradientIndex: gradientIndex,
68 + useSpecialDesign:
69 + design.backgroundType == CardDesignBackgroundTypes.svgFull,
70 backgroundImagePath:
54 - design.backgroundType == CardDesignBackgroundTypes.image ? design.imagePath : "",
71 + design.backgroundType == CardDesignBackgroundTypes.image
72 + ? design.imagePath
73 + : "",
74 + iconStyleIndex: iconStyleIndex,
75 + isGradientOnly:
76 + design.backgroundType == CardDesignBackgroundTypes.gradientOnly,
77 cardOrder: cardOrder,
78 );
79 }
cw_core/lib/card_design.dart
+153 -22
@@ -3,7 +3,7 @@ import 'package:cw_core/crypto_currency.dart';
3 import 'package:cw_core/utils/print_verbose.dart';
4 import 'package:flutter/material.dart';
5
6 -enum CardDesignBackgroundTypes { image, svgIcon, svgFull }
6 +enum CardDesignBackgroundTypes { image, svgIcon, svgFull, gradientOnly }
7
8 class CardColorCombination {
9 final Color textColor;
@@ -34,17 +34,26 @@ class CardColorCombination {
34 );
35 }
36
37 +class CardIconPath {
38 + final String path;
39 + final bool preColored;
40 +
41 + const CardIconPath(this.path, {this.preColored = false});
42 +}
43 +
44 class CardDesign {
45 final Gradient gradient;
46 final String imagePath;
47 final CardDesignBackgroundTypes backgroundType;
48 final CardColorCombination colors;
49 + final bool preColoredIcon;
50
51 const CardDesign(
52 {this.backgroundType = CardDesignBackgroundTypes.svgIcon,
53 this.gradient = const LinearGradient(colors: [Colors.black], begin: Alignment.topCenter, end: Alignment.bottomCenter),
54 this.imagePath = "assets/new-ui/blank.svg",
47 - this.colors = CardColorCombination.dark});
55 + this.colors = CardColorCombination.dark,
56 + this.preColoredIcon = false});
57
58 static const LinearGradient gradientOrange = LinearGradient(
59 colors: <Color>[Color(0xFFFF7C02), Color(0xFFFF5602)],
@@ -120,6 +129,10 @@ class CardDesign {
129
130 static const genericDefault = CardDesign(gradient: gradientBlue);
131
132 + static const gradientOnlyDesign = CardDesign(
133 + backgroundType: CardDesignBackgroundTypes.gradientOnly,
134 + gradient: gradientBlue);
135 +
136 static const btc = CardDesign(
137 imagePath: "assets/new-ui/balance_card_icons/bitcoin.svg");
138
@@ -332,10 +345,68 @@ class CardDesign {
345 imagePath: "assets/new-ui/balance_card_backgrounds/bnb.svg");
346
347 CardDesign withGradient(Gradient gradient) => CardDesign(
335 - gradient: gradient, colors: preferredColorCombinations[gradient] ?? colors, imagePath: imagePath, backgroundType: backgroundType);
348 + gradient: gradient,
349 + colors: preferredColorCombinations[gradient] ?? colors,
350 + imagePath: imagePath,
351 + backgroundType: backgroundType,
352 + preColoredIcon: preColoredIcon);
353
354 CardDesign withGradientAndColorCombination(Gradient gradient, CardColorCombination cardColorCombination) => CardDesign(
338 - gradient: gradient, colors: cardColorCombination, imagePath: imagePath, backgroundType: backgroundType);
355 + gradient: gradient,
356 + colors: cardColorCombination,
357 + imagePath: imagePath,
358 + backgroundType: backgroundType,
359 + preColoredIcon: preColoredIcon);
360 +
361 + CardDesign withIcon(CardIconPath icon) => CardDesign(
362 + gradient: gradient,
363 + colors: colors,
364 + imagePath: icon.path,
365 + backgroundType: backgroundType,
366 + preColoredIcon: icon.preColored);
367 +
368 + static const String _balanceCardIconPrefix = "assets/new-ui/balance_card_icons";
369 + static const String _chainIconPrefix = "assets/new-ui/card_icons/chain_icons";
370 + static const String _ogIconPrefix = "assets/new-ui/card_icons/og_icons";
371 + static const String _outlineIconPrefix = "assets/new-ui/card_icons/outline_icons";
372 + static const String _symbolIconPrefix = "assets/new-ui/card_icons/symbol_icons";
373 + static const String _genericCakeIcon = "$_balanceCardIconPrefix/cake-card-icon.svg";
374 +
375 + static const Map<CryptoCurrency, _CurrencyIconNames> _iconNames = {
376 + CryptoCurrency.arbEth: _CurrencyIconNames(ticker: 'arb', longName: 'arbitrum'),
377 + CryptoCurrency.baseEth: _CurrencyIconNames(ticker: 'base', longName: 'base', chainFile: 'base_icon'),
378 + CryptoCurrency.bch: _CurrencyIconNames(ticker: 'bch', longName: 'bitcoin_cash', chainFile: 'bitcoin-cash'),
379 + CryptoCurrency.btc: _CurrencyIconNames(ticker: 'btc', longName: 'bitcoin', outlineFile: 'BTC'),
380 + CryptoCurrency.bnb: _CurrencyIconNames(ticker: 'bnb', longName: 'bnb'),
381 + CryptoCurrency.dcr: _CurrencyIconNames(ticker: 'dcr', longName: 'decred'),
382 + CryptoCurrency.doge: _CurrencyIconNames(ticker: 'doge', longName: 'dogecoin'),
383 + CryptoCurrency.eth: _CurrencyIconNames(ticker: 'eth', longName: 'ethereum'),
384 + CryptoCurrency.btcln: _CurrencyIconNames(ticker: 'ln', longName: 'lightning'),
385 + CryptoCurrency.ltc: _CurrencyIconNames(ticker: 'ltc', longName: 'litecoin'),
386 + CryptoCurrency.xmr: _CurrencyIconNames(
387 + ticker: 'xmr', longName: 'monero', ogPath: 'assets/images/xmr-og.webp'),
388 + CryptoCurrency.nano: _CurrencyIconNames(ticker: 'xno', longName: 'nano'),
389 + CryptoCurrency.maticpoly: _CurrencyIconNames(ticker: 'pol', longName: 'polygon'),
390 + CryptoCurrency.sol: _CurrencyIconNames(ticker: 'sol', longName: 'solana'),
391 + CryptoCurrency.trx: _CurrencyIconNames(
392 + ticker: 'trx', longName: 'tron', ogPath: '$_ogIconPrefix/tron-og.svg'),
393 + CryptoCurrency.zano: _CurrencyIconNames(ticker: 'zano', longName: 'zano'),
394 + CryptoCurrency.zec: _CurrencyIconNames(ticker: 'zec', longName: 'zcash'),
395 + };
396 +
397 + static List<CardIconPath> iconPathsForWalletType(CryptoCurrency currency) {
398 + final n = _iconNames[currency];
399 + if (n == null) return const [];
400 +
401 + return [
402 + CardIconPath('$_symbolIconPrefix/${n.ticker}-symbol.svg'),
403 + CardIconPath('$_outlineIconPrefix/${n.outlineFile ?? n.ticker}-outline.svg'),
404 + CardIconPath('$_balanceCardIconPrefix/${n.longName}.svg'),
405 + CardIconPath('$_chainIconPrefix/${n.chainFile ?? n.longName}.svg', preColored: true),
406 + CardIconPath(n.ogPath ?? '$_ogIconPrefix/${n.ticker}-og.svg', preColored: true),
407 + const CardIconPath(_genericCakeIcon),
408 + ];
409 + }
410
411 static const List<CardDesign> all = [genericDefault, btc, eth, xmr, ltc, eth, pol, doge, base, sol, btcln, tron, zano, dcr, arbitrum, zec, bnb, ethSpecial, btcSpecial, xmrSpecial, ltcSpecial, lnSpecial, tronSpecial, bchSpecial, wowSpecial, dogeSpecial, polSpecial, dcrSpecial, zanoSpecial, arbitrumSpecial, zecSpecial, bnbSpecial];
412
@@ -403,31 +474,91 @@ class CardDesign {
474 CardDesign.gradientBlack: CardColorCombination.black,
475 };
476
477 + CardDesign withIconStyleIndex(int iconStyleIndex, CryptoCurrency currency) {
478 + final paths = iconPathsForWalletType(currency);
479 + if (paths.isEmpty) return this;
480 + if (iconStyleIndex < 0 || iconStyleIndex >= paths.length) return this;
481 + return withIcon(paths[iconStyleIndex]);
482 + }
483 +
484 + static Gradient gradientForStoredIndex(
485 + int gradientIndex,
486 + CryptoCurrency walletCurrency,
487 + ) {
488 + final n = CardDesign.allGradients.length;
489 + final special = specialDesignsForCurrencies[walletCurrency];
490 + if (gradientIndex >= 0 && gradientIndex < n) {
491 + return CardDesign.allGradients[gradientIndex];
492 + }
493 + if (gradientIndex == n && special != null) {
494 + return special.gradient;
495 + }
496 + return gradientBlue;
497 + }
498 +
499 static CardDesign fromStyleSettings(
500 BalanceCardStyleSettings? setting, CryptoCurrency walletCurrency) {
501 if (setting == null) {
502 return CardDesign.forCurrencySpecial(walletCurrency);
410 - } else if (setting.backgroundImagePath.isNotEmpty) {
411 - return CardDesign(
412 - imagePath: setting.backgroundImagePath,
503 + }
504 +
505 + if (setting.isGradientOnly) {
506 + final gradient = gradientForStoredIndex(setting.gradientIndex, walletCurrency);
507 + final textColors = preferredColorCombinations[gradient]
508 + ?? specialDesignsForCurrencies[walletCurrency]?.colors
509 + ?? gradientOnlyDesign.colors;
510 + return gradientOnlyDesign.withGradientAndColorCombination(gradient, textColors);
511 + }
512 +
513 + if (setting.backgroundImagePath.isNotEmpty) {
514 + return CardDesign(imagePath: setting.backgroundImagePath);
515 + }
516 +
517 + if (setting.useSpecialDesign && setting.gradientIndex != -1) {
518 + return CardDesign.forCurrencySpecial(walletCurrency).withGradient(
519 + gradientForStoredIndex(setting.gradientIndex, walletCurrency),
520 );
414 - } else if (setting.useSpecialDesign && setting.gradientIndex != -1) {
415 - return CardDesign.forCurrencySpecial(walletCurrency)
416 - .withGradient(CardDesign.allGradients[setting.gradientIndex]);
417 - } else if (!setting.useSpecialDesign && setting.gradientIndex == -1) {
521 + }
522 +
523 + if (!setting.useSpecialDesign && setting.gradientIndex == -1) {
524 final specialColors =
419 - specialDesignsForCurrencies[walletCurrency] ??
420 - genericDefault;
421 - return CardDesign.forCurrencyIcon(walletCurrency)
422 - .withGradientAndColorCombination(specialColors.gradient, specialColors.colors);
423 - } else if (setting.useSpecialDesign) {
424 - return CardDesign.forCurrencySpecial(walletCurrency);
425 - } else if (setting.gradientIndex != -1) {
426 - return CardDesign.forCurrencyIcon(walletCurrency)
427 - .withGradient(CardDesign.allGradients[setting.gradientIndex]);
428 - } else {
429 - printV("somehow, the user saved the design settings with literally no customization?");
525 + specialDesignsForCurrencies[walletCurrency] ?? genericDefault;
526 + final design = CardDesign.forCurrencyIcon(walletCurrency)
527 + .withGradientAndColorCombination(
528 + specialColors.gradient, specialColors.colors);
529 + return design.withIconStyleIndex(setting.iconStyleIndex, walletCurrency);
530 + }
531 + if (setting.useSpecialDesign) {
532 return CardDesign.forCurrencySpecial(walletCurrency);
533 }
534 + if (setting.gradientIndex != -1) {
535 + final baseIcon = CardDesign.forCurrencyIcon(walletCurrency);
536 + final gradient = gradientForStoredIndex(setting.gradientIndex, walletCurrency);
537 + final textColors = preferredColorCombinations[gradient]
538 + ?? specialDesignsForCurrencies[walletCurrency]?.colors
539 + ?? baseIcon.colors;
540 + return baseIcon
541 + .withGradientAndColorCombination(gradient, textColors)
542 + .withIconStyleIndex(setting.iconStyleIndex, walletCurrency);
543 + }
544 + printV("somehow, the user saved the design settings with literally no "
545 + "customization?");
546 + return CardDesign.forCurrencySpecial(walletCurrency);
547 }
548 +}
549 +
550 +class _CurrencyIconNames {
551 + final String ticker;
552 + final String longName;
553 + final String? outlineFile;
554 + final String? chainFile;
555 + final String? ogPath;
556 +
557 + const _CurrencyIconNames({
558 + required this.ticker,
559 + required this.longName,
560 + this.outlineFile,
561 + this.chainFile,
562 + this.ogPath,
563 + });
564 }
\ No newline at end of file
cw_core/lib/db/sqlite.dart
+79 -70
@@ -1,4 +1,3 @@
1 -
1 import 'dart:io';
2
3 import 'package:cw_core/root_dir.dart';
@@ -7,8 +6,6 @@ import 'package:sqflite_common_ffi/sqflite_ffi.dart';
6
7 Database? db;
8
10 -
11 -
9 Future<void> _addColumnIfNotExists(
10 Database db, {
11 required String table,
@@ -41,11 +38,11 @@ Future<void> initDb({String? pathOverride}) async {
38 }
39 }
40 await db?.close();
44 - db = await openDatabase(dbFile.path, version: 8,
45 - onUpgrade: (Database db, int oldVersion, int newVersion) async {
46 - printV("migrating: $oldVersion, $newVersion");
47 - if (oldVersion <= 1) {
48 - await db.execute('''
41 + db = await openDatabase(dbFile.path, version: 9,
42 + onUpgrade: (Database db, int oldVersion, int newVersion) async {
43 + printV("migrating: $oldVersion, $newVersion");
44 + if (oldVersion <= 1) {
45 + await db.execute('''
46 DELETE FROM WalletInfo
47 WHERE walletInfoId NOT IN (
48 SELECT MIN(walletInfoId)
@@ -56,9 +53,9 @@ WHERE walletInfoId NOT IN (
53 CREATE UNIQUE INDEX IF NOT EXISTS idx_walletinfo_id_unique
54 ON WalletInfo (id);
55 ''');
59 - }
60 - if (oldVersion <= 2) {
61 - await db.execute('''
56 + }
57 + if (oldVersion <= 2) {
58 + await db.execute('''
59 CREATE TABLE IF NOT EXISTS BalanceCardStyleSettings (
60 walletInfoId INTEGER,
61 accountIndex INTEGER DEFAULT -1,
@@ -69,48 +66,64 @@ CREATE TABLE IF NOT EXISTS BalanceCardStyleSettings (
66 FOREIGN KEY (walletInfoId) REFERENCES WalletInfo(walletInfoId)
67 );
68 ''');
72 - await _addColumnIfNotExists(
73 - db,
74 - table: 'WalletInfo',
75 - column: 'receiveInfoboxDismissed',
76 - definition: 'BOOLEAN DEFAULT FALSE',
77 - );
69 + await _addColumnIfNotExists(
70 + db,
71 + table: 'WalletInfo',
72 + column: 'receiveInfoboxDismissed',
73 + definition: 'BOOLEAN DEFAULT FALSE',
74 + );
75 +
76 + await _addColumnIfNotExists(
77 + db,
78 + table: 'BalanceCardStyleSettings',
79 + column: 'cardOrder',
80 + definition: 'INTEGER DEFAULT 0',
81 + );
82 + }
83 + if (oldVersion <= 3) {
84 + await _addColumnIfNotExists(db,
85 + table: "WalletInfo", column: "showCombinedBalance", definition: "BOOLEAN DEFAULT TRUE");
86 + // null - primary token (eth, sol etc)
87 + // not null - address of fav token
88 + // if address doesn't correspond to a valid token, fallback to primary token
89 + await _addColumnIfNotExists(db,
90 + table: "WalletInfo", column: "favoriteTokenAddress", definition: "TEXT DEFAULT NULL");
91 + }
92 +
93 + if (oldVersion <= 4) {
94 + await _createBridgeTransferTable(db);
95 + }
96
79 - await _addColumnIfNotExists(
80 - db,
81 - table: 'BalanceCardStyleSettings',
82 - column: 'cardOrder',
83 - definition: 'INTEGER DEFAULT 0',
84 - );
85 - }
86 - if (oldVersion <= 3) {
87 - await _addColumnIfNotExists(db, table: "WalletInfo", column: "showCombinedBalance", definition: "BOOLEAN DEFAULT TRUE");
88 - // null - primary token (eth, sol etc)
89 - // not null - address of fav token
90 - // if address doesn't correspond to a valid token, fallback to primary token
91 - await _addColumnIfNotExists(db, table: "WalletInfo", column: "favoriteTokenAddress", definition: "TEXT DEFAULT NULL");
92 - }
93 - if (oldVersion <= 4) {
94 - await _createBridgeTransferTable(db);
95 - }
96 - if (oldVersion <= 5) {
97 - await _createTradeTable(db);
98 - }
99 - if (oldVersion <= 6) {
100 - await _addColumnIfNotExists(
101 - db,
102 - table: 'Trade',
103 - column: 'toAddressExtraId',
104 - definition: 'TEXT',
105 - );
106 - }
107 - if(oldVersion <= 7) {
108 - await _createNodeTable(db);
109 - }
110 - },
111 - onCreate: (Database db, int version) async {
112 - await db.execute(
113 - '''
97 + if (oldVersion <= 5) {
98 + await _createTradeTable(db);
99 + }
100 + if (oldVersion <= 6) {
101 + await _addColumnIfNotExists(
102 + db,
103 + table: 'Trade',
104 + column: 'toAddressExtraId',
105 + definition: 'TEXT',
106 + );
107 + }
108 + if (oldVersion <= 7) {
109 + await _createNodeTable(db);
110 + }
111 + if (oldVersion <= 8) {
112 + await _addColumnIfNotExists(
113 + db,
114 + table: 'BalanceCardStyleSettings',
115 + column: 'iconStyleIndex',
116 + definition: 'INTEGER DEFAULT 0',
117 + );
118 + await _addColumnIfNotExists(
119 + db,
120 + table: 'BalanceCardStyleSettings',
121 + column: 'isGradientOnly',
122 + definition: 'BOOLEAN DEFAULT FALSE',
123 + );
124 + }
125 + }, onCreate: (Database db, int version) async {
126 + await db.execute('''
127 CREATE TABLE WalletInfo (
128 walletInfoId INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
129 id TEXT NOT NULL,
@@ -139,8 +152,7 @@ CREATE TABLE WalletInfo (
152 );
153 ''');
154
142 - await db.execute(
143 - '''
155 + await db.execute('''
156 CREATE TABLE WalletInfoDerivationInfo (
157 walletInfoDerivationInfoId INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
158 address TEXT NOT NULL,
@@ -153,8 +165,7 @@ CREATE TABLE WalletInfoDerivationInfo (
165 );
166 ''');
167
156 - await db.execute(
157 - '''
168 + await db.execute('''
169 CREATE TABLE WalletInfoAddress (
170 walletInfoAddressId INTEGER PRIMARY KEY AUTOINCREMENT,
171 walletInfoId INTEGER,
@@ -164,8 +175,7 @@ CREATE TABLE WalletInfoAddress (
175 );
176 ''');
177
167 - await db.execute(
168 - '''
178 + await db.execute('''
179 CREATE TABLE WalletInfoAddressInfo (
180 walletInfoAddressInfoId INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
181 walletInfoId INTEGER NOT NULL,
@@ -177,8 +187,7 @@ CREATE TABLE WalletInfoAddressInfo (
187 );
188 ''');
189
180 - await db.execute(
181 - '''
190 + await db.execute('''
191 CREATE TABLE "WalletInfoAddressMap" (
192 walletInfoAddressMapId INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
193 walletInfoId INTEGER NOT NULL,
@@ -186,29 +195,29 @@ CREATE TABLE "WalletInfoAddressMap" (
195 addressValue TEXT NOT NULL,
196 CONSTRAINT WalletInfoAddress_WalletInfo_FK FOREIGN KEY (walletInfoId) REFERENCES WalletInfo(walletInfoId)
197 );
189 - '''
190 - );
191 - await db.execute('''
198 + ''');
199 + await db.execute('''
200 CREATE UNIQUE INDEX IF NOT EXISTS idx_walletinfo_id_unique
201 ON WalletInfo (id);
202 ''');
195 - await db.execute('''
203 + await db.execute('''
204 CREATE TABLE BalanceCardStyleSettings (
205 walletInfoId INTEGER,
206 accountIndex INTEGER DEFAULT -1,
207 gradientIndex INTEGER DEFAULT -1,
208 useSpecialDesign BOOLEAN DEFAULT FALSE,
209 backgroundImagePath TEXT DEFAULT "",
210 + iconStyleIndex INTEGER DEFAULT 0,
211 + isGradientOnly BOOLEAN DEFAULT FALSE,
212 cardOrder INTEGER DEFAULT 0,
213 PRIMARY KEY (walletInfoId, accountIndex),
214 FOREIGN KEY (walletInfoId) REFERENCES WalletInfo(walletInfoId)
215 );
216 ''');
207 - await _createBridgeTransferTable(db);
208 - await _createNodeTable(db);
209 - await _createTradeTable(db);
210 - }
211 - );
217 + await _createBridgeTransferTable(db);
218 + await _createNodeTable(db);
219 + await _createTradeTable(db);
220 + });
221 }
222
223 Future<void> _createTradeTable(Database db) async {
@@ -356,4 +365,4 @@ isBuiltin BOOLEAN DEFAULT FALSE,
365 isDefault BOOLEAN DEFAULT FALSE
366 );
367 """);
359 -}
\ No newline at end of file
368 +}
lib/new-ui/pages/account_customizer.dart
+4 -4
@@ -339,10 +339,10 @@ class _AccountCustomizerState extends State<AccountCustomizer> {
339 printV("$i: $idx");
340
341 await BalanceCardStyleSettings.fromCardDesign(
342 - widget.dashboardViewModel.wallet.walletInfo.internalId,
343 - i,
344 - idx,
345 - _items[idx].card.design)
342 + walletInfoId: widget.dashboardViewModel.wallet.walletInfo.internalId,
343 + accountIndex: i,
344 + cardOrder: idx,
345 + design: _items[idx].card.design)
346 .insert();
347 }
348 }
lib/new-ui/pages/card_customizer.dart
+281 -166
@@ -5,6 +5,8 @@ import 'package:cake_wallet/generated/i18n.dart';
5 import 'package:cake_wallet/new-ui/viewmodels/card_customizer/card_customizer_bloc.dart';
6 import 'package:cake_wallet/new-ui/widgets/coins_page/cards/balance_card.dart';
7 import 'package:cake_wallet/new-ui/widgets/receive_page/receive_top_bar.dart';
8 +import 'package:cake_wallet/src/widgets/cake_image_widget.dart';
9 +import 'package:cw_core/card_design.dart';
10 import 'package:flutter/material.dart';
11 import 'package:flutter_bloc/flutter_bloc.dart';
12
@@ -23,7 +25,6 @@ class _CardCustomizerState extends State<CardCustomizer> {
25 bool editEnabled = false;
26 late final CardCustomizerBloc bloc;
27
26 -
28 @override
29 void initState() {
30 super.initState();
@@ -46,192 +47,306 @@ class _CardCustomizerState extends State<CardCustomizer> {
47 }
48 }
49
50 + bool _showIconStylePanel(CardCustomizerState state) {
51 + final design = state.availableDesigns[state.selectedDesignIndex];
52 + return design.backgroundType == CardDesignBackgroundTypes.svgIcon &&
53 + state.availableIconPaths.isNotEmpty;
54 + }
55 +
56 + CardDesign _cardStylePreviewDesign(CardCustomizerState state, int index) {
57 + var design = state.availableDesigns[index].withGradient(state.selectedColor);
58 + if (design.backgroundType == CardDesignBackgroundTypes.svgIcon &&
59 + state.availableIconPaths.isNotEmpty) {
60 + design = design.withIcon(state.availableIconPaths[state.selectedIconIndex]);
61 + }
62 + return design;
63 + }
64 +
65 @override
66 Widget build(BuildContext context) {
67 return BlocListener<CardCustomizerBloc, CardCustomizerState>(
52 - listenWhen: (previous, current) =>
53 - previous.accountName != current.accountName,
68 + listenWhen: (previous, current) => previous.accountName != current.accountName,
69 listener: (context, state) {
55 - if(accountNameController.text != state.accountName) {
70 + if (accountNameController.text != state.accountName) {
71 accountNameController.text = state.accountName;
72 }
73 },
59 - child: BlocBuilder<CardCustomizerBloc, CardCustomizerState>(
60 - builder: (context, state) {
61 - if (state is CardCustomizerNotLoaded) return SizedBox.shrink();
62 - return PopScope(
63 - child: SingleChildScrollView(
64 - child: SafeArea(
65 - child: Column(
66 - spacing: 25.0,
67 - mainAxisSize: MainAxisSize.min,
68 - children: [
69 - ModalTopBar(
70 - title: editEnabled ? S.of(context).edit_account : S.of(context).edit_card,
71 - leadingIcon: Icon(Icons.close),
72 - // trailingIcon: editEnabled ? Icon(Icons.delete_forever) : null,
73 - onLeadingPressed: () => Navigator.of(context).maybePop(),
74 - // onTrailingPressed: () {},
75 - ),
76 - if (editEnabled)
77 - Padding(
78 - padding: const EdgeInsets.symmetric(horizontal: 18.0),
79 - child: Column(
80 - spacing: 8.0,
81 - crossAxisAlignment: CrossAxisAlignment.start,
82 - children: [
83 - Text(S.of(context).account_name),
84 - TextField(
85 - maxLength: 32,
86 - decoration: InputDecoration(counterText: ""),
87 - onChanged: (value) {
88 - context.read<CardCustomizerBloc>().add(AccountNameChanged(value));
89 - },
90 - controller: accountNameController,
91 - )
92 - ],
93 - ),
74 + child: BlocBuilder<CardCustomizerBloc, CardCustomizerState>(
75 + builder: (context, state) {
76 + if (state is CardCustomizerNotLoaded) return SizedBox.shrink();
77 + return PopScope(
78 + child: SingleChildScrollView(
79 + child: SafeArea(
80 + child: Column(
81 + spacing: 25.0,
82 + mainAxisSize: MainAxisSize.min,
83 + children: [
84 + ModalTopBar(
85 + title: editEnabled ? S.of(context).edit_account : S.of(context).edit_card,
86 + leadingIcon: Icon(Icons.close),
87 + // trailingIcon: editEnabled ? Icon(Icons.delete_forever) : null,
88 + onLeadingPressed: () => Navigator.of(context).maybePop(),
89 + // onTrailingPressed: () {},
90 ),
95 - BalanceCard(
96 - width: min(MediaQuery.of(context).size.width * 0.87, 768),
97 - selected: true,
98 - designSwitchDuration: Duration(milliseconds: 300),
99 - accountName:
100 - editEnabled ? state.accountName:"" ,
101 - balance: "0.00",
102 - assetName: state.displaySats ? "sats" : widget.cryptoName,
103 - capitalizeAssetName: !state.displaySats,
104 - design: state.selectedDesign,
105 - ),
106 - Padding(
107 - padding: const EdgeInsets.symmetric(horizontal: 18.0),
108 - child: Container(
109 - decoration: BoxDecoration(
110 - color: Theme.of(context).colorScheme.surfaceContainer,
111 - borderRadius: BorderRadius.circular(16),
112 - ),
91 + if (editEnabled)
92 + Padding(
93 + padding: const EdgeInsets.symmetric(horizontal: 18.0),
94 child: Column(
95 + spacing: 8.0,
96 crossAxisAlignment: CrossAxisAlignment.start,
97 children: [
116 - Padding(
117 - padding: const EdgeInsets.all(12.0),
118 - child: Column(
119 - spacing: 8.0,
120 - crossAxisAlignment: CrossAxisAlignment.start,
121 - children: [
122 - Text(S.of(context).card_style),
123 - Container(
124 - height: 63,
125 - child: ListView.separated(
126 - scrollDirection: Axis.horizontal,
127 - itemCount: state.availableDesigns.length,
128 - separatorBuilder: (context, index) {
129 - return SizedBox(width: 8.0);
130 - },
131 - itemBuilder: (context, index) {
132 - return GestureDetector(
133 - onTap: () {
134 - context
135 - .read<CardCustomizerBloc>()
136 - .add(CardDesignSelected(index));
137 - },
138 - child: AnimatedContainer(
139 - duration: Duration(milliseconds: 300),
140 - decoration: ShapeDecoration(
141 - shape: RoundedSuperellipseBorder(
142 - side: BorderSide(color: ((index == state.selectedDesignIndex )? Theme.of(context).colorScheme.onSurface : Colors.transparent), width: 1),
143 - borderRadius: BorderRadiusGeometry.circular(12),
98 + Text(S.of(context).account_name),
99 + TextField(
100 + maxLength: 32,
101 + decoration: InputDecoration(counterText: ""),
102 + onChanged: (value) {
103 + context.read<CardCustomizerBloc>().add(AccountNameChanged(value));
104 + },
105 + controller: accountNameController,
106 + )
107 + ],
108 + ),
109 + ),
110 + BalanceCard(
111 + width: min(MediaQuery.of(context).size.width * 0.87, 768),
112 + selected: true,
113 + designSwitchDuration: Duration(milliseconds: 300),
114 + accountName: editEnabled ? state.accountName : "",
115 + balance: "0.00",
116 + assetName: state.displaySats ? "sats" : widget.cryptoName,
117 + capitalizeAssetName: !state.displaySats,
118 + design: state.selectedDesign,
119 + ),
120 + Padding(
121 + padding: const EdgeInsets.symmetric(horizontal: 18.0),
122 + child: Container(
123 + decoration: BoxDecoration(
124 + color: Theme.of(context).colorScheme.surfaceContainer,
125 + borderRadius: BorderRadius.circular(16),
126 + ),
127 + child: Column(
128 + crossAxisAlignment: CrossAxisAlignment.start,
129 + children: [
130 + Padding(
131 + padding: const EdgeInsets.all(12.0),
132 + child: Column(
133 + spacing: 8.0,
134 + crossAxisAlignment: CrossAxisAlignment.start,
135 + children: [
136 + Text(S.of(context).card_style),
137 + Container(
138 + height: 63,
139 + child: ListView.separated(
140 + scrollDirection: Axis.horizontal,
141 + itemCount: state.availableDesigns.length,
142 + separatorBuilder: (context, index) {
143 + return SizedBox(width: 8.0);
144 + },
145 + itemBuilder: (context, index) {
146 + return GestureDetector(
147 + onTap: () {
148 + context
149 + .read<CardCustomizerBloc>()
150 + .add(CardDesignSelected(index));
151 + },
152 + child: AnimatedContainer(
153 + duration: Duration(milliseconds: 300),
154 + decoration: ShapeDecoration(
155 + shape: RoundedSuperellipseBorder(
156 + side: BorderSide(
157 + color:
158 + ((index == state.selectedDesignIndex)
159 + ? Theme.of(context)
160 + .colorScheme
161 + .onSurface
162 + : Colors.transparent),
163 + width: 1),
164 + borderRadius:
165 + BorderRadiusGeometry.circular(12),
166 + ),
167 ),
145 - ),
146 - child: AnimatedScale(
147 - duration: Duration(milliseconds: 200),
148 - scale: index == state.selectedDesignIndex ? 0.94 : 1,
149 - child: BalanceCard(
150 - width: 96,
151 - borderRadius: 10,
152 - selected: false,
153 - designSwitchDuration: Duration(milliseconds: 300),
154 - design: state.availableDesigns[index],
155 - gradient: state.selectedDesign.gradient,
168 + child: AnimatedScale(
169 + duration: Duration(milliseconds: 200),
170 + scale: index == state.selectedDesignIndex
171 + ? 0.94
172 + : 1,
173 + child: BalanceCard(
174 + width: 96,
175 + borderRadius: 10,
176 + selected: false,
177 + designSwitchDuration:
178 + Duration(milliseconds: 300),
179 + design: _cardStylePreviewDesign(state, index),
180 + ),
181 ),
182 ),
158 - ),
159 - );
160 - }),
183 + );
184 + }),
185 + ),
186 + ],
187 + )),
188 + AnimatedSwitcher(
189 + duration: const Duration(milliseconds: 350),
190 + switchInCurve: Curves.easeOut,
191 + switchOutCurve: Curves.easeIn,
192 + transitionBuilder: (Widget child, Animation<double> animation) {
193 + return FadeTransition(
194 + opacity: animation,
195 + child: SizeTransition(
196 + sizeFactor: animation,
197 + axisAlignment: -1,
198 + child: child,
199 ),
162 - ],
163 - )),
164 - SizedBox(height: 8),
165 - Container(
166 - decoration: BoxDecoration(
167 - color: Theme.of(context).colorScheme.surfaceContainerHigh,
168 - borderRadius: BorderRadius.circular(16)),
169 - child: Padding(
170 - padding: const EdgeInsets.all(12.0),
171 - child: Column(
172 - spacing: 8.0,
173 - crossAxisAlignment: CrossAxisAlignment.start,
174 - children: [
175 - Text(S.of(context).color),
176 - Container(
177 - width: double.infinity,
178 - child: Wrap(
179 - direction: Axis.horizontal,
180 - spacing: 4, // space between items in a row
181 - runSpacing: 8,
182 - children:
183 - List.generate(state.availableColors.length, (index) {
184 - return Material(
185 - borderRadius: BorderRadius.circular(999999999),
186 - child: InkWell(
200 + );
201 + },
202 + child: _showIconStylePanel(state)
203 + ? Column(
204 + key: const ValueKey('icon_style_panel'),
205 + mainAxisSize: MainAxisSize.min,
206 + crossAxisAlignment: CrossAxisAlignment.start,
207 + children: [
208 + const SizedBox(height: 8),
209 + Padding(
210 + padding: const EdgeInsets.symmetric(horizontal: 12.0),
211 + child: Column(
212 + spacing: 8.0,
213 + crossAxisAlignment: CrossAxisAlignment.start,
214 + children: [
215 + Text(S.of(context).icon_style),
216 + SizedBox(
217 + height: 48,
218 + child: ListView.separated(
219 + scrollDirection: Axis.horizontal,
220 + itemCount: state.availableIconPaths.length,
221 + separatorBuilder: (context, _) =>
222 + const SizedBox(width: 8.0),
223 + itemBuilder: (context, index) {
224 + final icon = state.availableIconPaths[index];
225 + final isSelected =
226 + index == state.selectedIconIndex;
227 + return GestureDetector(
228 + onTap: () {
229 + context
230 + .read<CardCustomizerBloc>()
231 + .add(IconStyleSelected(index));
232 + },
233 + child: AnimatedContainer(
234 + duration:
235 + const Duration(milliseconds: 200),
236 + width: 48,
237 + height: 48,
238 + decoration: BoxDecoration(
239 + borderRadius: BorderRadius.circular(18),
240 + color: Theme.of(context)
241 + .colorScheme
242 + .surfaceContainerHigh,
243 + border: Border.all(
244 + color: isSelected
245 + ? Theme.of(context)
246 + .colorScheme
247 + .onSurface
248 + : Colors.transparent,
249 + width: 2,
250 + ),
251 + ),
252 + child: Padding(
253 + padding: const EdgeInsets.all(10.0),
254 + child: CakeImageWidget(imageUrl: icon.path),
255 + ),
256 + ),
257 + );
258 + },
259 + ),
260 + ),
261 + ],
262 + ),
263 + ),
264 + ],
265 + )
266 + : const SizedBox.shrink(key: ValueKey('icon_style_hidden')),
267 + ),
268 + SizedBox(height: 8),
269 + Container(
270 + decoration: BoxDecoration(
271 + color: Theme.of(context).colorScheme.surfaceContainerHigh,
272 + borderRadius: BorderRadius.circular(16)),
273 + child: Padding(
274 + padding: const EdgeInsets.all(12.0),
275 + child: Column(
276 + spacing: 8.0,
277 + crossAxisAlignment: CrossAxisAlignment.start,
278 + children: [
279 + Text(S.of(context).color),
280 + Container(
281 + width: double.infinity,
282 + child: Wrap(
283 + direction: Axis.horizontal,
284 + spacing: 4, // space between items in a row
285 + runSpacing: 8,
286 + children: List.generate(state.availableColors.length,
287 + (index) {
288 + return Material(
289 borderRadius: BorderRadius.circular(999999999),
188 - onTap: () {
189 - context
190 - .read<CardCustomizerBloc>()
191 - .add(ColorSelected(index));
192 - },
193 - child: Stack(
194 - children: [
195 - AnimatedOpacity(
196 - duration: Duration(milliseconds: 200),
197 - opacity: index == state.selectedColorIndex ? 1 : 0,
198 - child: Container(
199 - width:32,height:32,decoration: BoxDecoration(borderRadius: BorderRadius.circular(99999999),border: Border.all(color:Theme.of(context)
200 - .colorScheme
201 - .onSurface))
290 + child: InkWell(
291 + borderRadius: BorderRadius.circular(999999999),
292 + onTap: () {
293 + context
294 + .read<CardCustomizerBloc>()
295 + .add(ColorSelected(index));
296 + },
297 + child: Stack(
298 + children: [
299 + AnimatedOpacity(
300 + duration: Duration(milliseconds: 200),
301 + opacity: index == state.selectedColorIndex
302 + ? 1
303 + : 0,
304 + child: Container(
305 + width: 32,
306 + height: 32,
307 + decoration: BoxDecoration(
308 + borderRadius:
309 + BorderRadius.circular(99999999),
310 + border: Border.all(
311 + color: Theme.of(context)
312 + .colorScheme
313 + .onSurface))),
314 ),
203 - ),
204 - AnimatedScale(
205 - duration: Duration(milliseconds: 200),
206 - scale: index == state.selectedColorIndex ? 0.8 : 1,
207 - child: Container(
208 - width: 32,
209 - height: 32,
210 - decoration: BoxDecoration(
211 - borderRadius: BorderRadius.circular(99999999),
212 - gradient: state.availableColors[index]),
315 + AnimatedScale(
316 + duration: Duration(milliseconds: 200),
317 + scale: index == state.selectedColorIndex
318 + ? 0.8
319 + : 1,
320 + child: Container(
321 + width: 32,
322 + height: 32,
323 + decoration: BoxDecoration(
324 + borderRadius:
325 + BorderRadius.circular(99999999),
326 + gradient:
327 + state.availableColors[index]),
328 + ),
329 ),
214 - ),
215 - ],
330 + ],
331 + ),
332 ),
217 - ),
218 - );
219 - }),
220 - )),
221 - ],
333 + );
334 + }),
335 + )),
336 + ],
337 + ),
338 ),
223 - ),
224 - )
225 - ],
226 - ),
227 - )),
228 - ],
339 + )
340 + ],
341 + ),
342 + )),
343 + ],
344 + ),
345 ),
346 ),
231 - ),
232 - );
233 - },
234 - ),
235 -);
347 + );
348 + },
349 + ),
350 + );
351 }
352 }
lib/new-ui/viewmodels/card_customizer/card_customizer_bloc.dart
+69 -26
@@ -18,11 +18,14 @@ class CardCustomizerBloc extends Bloc<CardCustomizerEvent, CardCustomizerState>
18 final bool displaySats;
19
20 CardCustomizerBloc(this._wallet, {this.lightningMode = false, this.displaySats = false})
21 - : super(CardCustomizerNotLoaded(0, 0, [CardDesign.genericDefault], [], "", -1, displaySats, 0)) {
21 + : super(CardCustomizerNotLoaded(
22 + 0, 0, [CardDesign.genericDefault], [],
23 + "", -1, displaySats, 0)) {
24
25 on<_Init>(_init);
26 on<CardDesignSelected>(_onDesignSelected);
27 on<ColorSelected>(_onColorSelected);
28 + on<IconStyleSelected>(_onIconStyleSelected);
29 on<DesignSaved>(_onDesignSaved);
30 on<AccountNameChanged>(_onAccountNameChanged);
31
@@ -46,6 +49,7 @@ class CardCustomizerBloc extends Bloc<CardCustomizerEvent, CardCustomizerState>
49 final List<CardDesign> ret = List<CardDesign>.empty(growable: true);
50 final curr = lightningMode ? CryptoCurrency.btcln : _wallet.currency;
51
52 + ret.add(CardDesign.gradientOnlyDesign);
53 ret.add(CardDesign.forCurrencyIcon(curr));
54
55 if (CardDesign.specialDesignsForCurrencies[curr] != null)
@@ -55,26 +59,30 @@ class CardCustomizerBloc extends Bloc<CardCustomizerEvent, CardCustomizerState>
59 }
60
61 int _initSelectedDesign(CardDesign currentDesign) {
58 - if (currentDesign.backgroundType == CardDesignBackgroundTypes.svgIcon)
62 + if (currentDesign.backgroundType == CardDesignBackgroundTypes.gradientOnly) {
63 return 0;
60 - else if (currentDesign.backgroundType == CardDesignBackgroundTypes.svgFull)
64 + }
65 + if (currentDesign.backgroundType == CardDesignBackgroundTypes.svgIcon) {
66 return 1;
62 - else
63 - return 0;
67 + }
68 + if (currentDesign.backgroundType == CardDesignBackgroundTypes.svgFull) {
69 + return 2;
70 + }
71 + return 0;
72 + }
73 +
74 + int _initSelectedIconIndex(
75 + BalanceCardStyleSettings? settings,
76 + List<CardIconPath> availableIconPaths,
77 + ) {
78 + if (settings == null || availableIconPaths.isEmpty) return 0;
79 + if (settings.iconStyleIndex >= availableIconPaths.length) return 0;
80 + return settings.iconStyleIndex;
81 }
82
83 int _initSelectedColor(CardDesign currentDesign) {
67 - int ret = CardDesign.allGradients.indexOf(currentDesign.gradient);
68 - if(ret == -1) {
69 - // special design with its own color. select last color in list.
70 - return CardDesign.allGradients.length;
71 - } else if (ret == -1) {
72 - // no color selected, select default.
73 - return 0;
74 - } else {
75 - // select whatever's selected.
76 - return ret;
77 - }
84 + final ret = CardDesign.allGradients.indexOf(currentDesign.gradient);
85 + return ret == -1 ? CardDesign.allGradients.length : ret;
86 }
87
88 void _init(_Init event, Emitter<CardCustomizerState> emit) async {
@@ -95,24 +103,40 @@ class CardCustomizerBloc extends Bloc<CardCustomizerEvent, CardCustomizerState>
103 } else {
104 accountIndex = -1;
105 }
106 + final curr =
107 + lightningMode ? CryptoCurrency.btcln : _wallet.currency;
108 final currentDesignSettings = await _loadCurrentDesignSettings(accountIndex);
99 - final currentDesign = CardDesign.fromStyleSettings(currentDesignSettings, lightningMode ? CryptoCurrency.btcln : _wallet.currency);
109 + final currentDesign = CardDesign.fromStyleSettings(currentDesignSettings, curr);
110 final availableDesigns = _initAvailableDesigns(lightningMode: lightningMode);
111 final availableColors = _updateAvailableColors(currentDesign);
102 - final selectedDesign = _initSelectedDesign(currentDesign);
112 + final selectedDesignIndex = _initSelectedDesign(currentDesign);
113 final selectedColor = _initSelectedColor(currentDesign);
104 -
105 - emit(CardCustomizerInitial(selectedDesign, selectedColor, availableDesigns, availableColors,
106 - accountName, accountIndex, displaySats, currentDesignSettings?.cardOrder ?? 0));
114 + final availableIconPaths = CardDesign.iconPathsForWalletType(curr);
115 + final selectedIconIndex = _initSelectedIconIndex(
116 + currentDesignSettings, availableIconPaths);
117 +
118 + emit(CardCustomizerInitial(
119 + selectedDesignIndex,
120 + selectedColor,
121 + availableDesigns,
122 + availableColors,
123 + accountName,
124 + accountIndex,
125 + displaySats,
126 + currentDesignSettings?.cardOrder ?? 0,
127 + availableIconPaths: availableIconPaths,
128 + selectedIconIndex: selectedIconIndex));
129 }
130
131 void _onDesignSelected(CardDesignSelected event, Emitter<CardCustomizerState> emit) {
132 final newColors = _updateAvailableColors(state.availableDesigns[event.newDesignIndex]);
133 late final int newColorIndex;
112 - if (newColors.length < state.availableColors.length) {
134 + if (newColors.isEmpty) {
135 + newColorIndex = 0;
136 + } else if (newColors.length < state.availableColors.length) {
137 newColorIndex = 0;
138 } else {
115 - newColorIndex = state.selectedColorIndex;
139 + newColorIndex = state.selectedColorIndex.clamp(0, newColors.length - 1);
140 }
141
142 emit(state.copyWith(
@@ -125,17 +149,36 @@ class CardCustomizerBloc extends Bloc<CardCustomizerEvent, CardCustomizerState>
149 emit(state.copyWith(selectedColorIndex: event.newColorIndex));
150 }
151
152 + void _onIconStyleSelected(
153 + IconStyleSelected event, Emitter<CardCustomizerState> emit) {
154 + emit(state.copyWith(selectedIconIndex: event.iconIndex));
155 + }
156 +
157 void _onAccountNameChanged(AccountNameChanged event, Emitter<CardCustomizerState> emit) {
158 emit(state.copyWith(accountName: event.newAccountName));
159 }
160
161 void _onDesignSaved(DesignSaved event, Emitter<CardCustomizerState> emit) {
162 BalanceCardStyleSettings.fromCardDesign(
134 - _wallet.walletInfo.internalId, state.accountIndex, state.cardOrder, state.selectedDesign)
163 + walletInfoId: _wallet.walletInfo.internalId,
164 + accountIndex: state.accountIndex,
165 + cardOrder: state.cardOrder,
166 + design: state.selectedDesign,
167 + iconStyleIndex: state.selectedIconIndex,
168 + gradientIndexOverride: state.selectedColorIndex)
169 .insert()
170 .then((value) {
137 - emit(CardCustomizerSaved(state.selectedDesignIndex, state.selectedColorIndex,
138 - state.availableDesigns, state.availableColors, state.accountName, state.accountIndex, state.displaySats, state.cardOrder));
171 + emit(CardCustomizerSaved(
172 + state.selectedDesignIndex,
173 + state.selectedColorIndex,
174 + state.availableDesigns,
175 + state.availableColors,
176 + state.accountName,
177 + state.accountIndex,
178 + state.displaySats,
179 + state.cardOrder,
180 + availableIconPaths: state.availableIconPaths,
181 + selectedIconIndex: state.selectedIconIndex));
182 });
183 saveAccountName();
184 }
lib/new-ui/viewmodels/card_customizer/card_customizer_event.dart
+6
@@ -26,3 +26,9 @@ class AccountNameChanged extends CardCustomizerEvent {
26
27
28 class DesignSaved extends CardCustomizerEvent {}
29 +
30 +class IconStyleSelected extends CardCustomizerEvent {
31 + final int iconIndex;
32 +
33 + IconStyleSelected(this.iconIndex);
34 +}
lib/new-ui/viewmodels/card_customizer/card_customizer_state.dart
+58 -13
@@ -9,6 +9,8 @@ sealed class CardCustomizerState {
9 final bool displaySats;
10 final List<CardDesign> availableDesigns;
11 final List<Gradient> availableColors;
12 + final List<CardIconPath> availableIconPaths;
13 + final int selectedIconIndex;
14
15 CardCustomizerState(
16 this.selectedDesignIndex,
@@ -17,12 +19,30 @@ sealed class CardCustomizerState {
19 this.availableColors,
20 this.accountName,
21 this.accountIndex,
20 - this.displaySats,
21 - this.cardOrder
22 - );
22 + this.displaySats,
23 + this.cardOrder, {
24 + this.availableIconPaths = const [],
25 + this.selectedIconIndex = 0,
26 + });
27
28 CardDesign get selectedDesign {
25 - return availableDesigns[selectedDesignIndex].withGradient(selectedColor);
29 + final gradient = selectedColor;
30 + final baseDesign = availableDesigns[selectedDesignIndex];
31 +
32 + CardDesign design;
33 + if (CardDesign.preferredColorCombinations.containsKey(gradient)) {
34 + design = baseDesign.withGradient(gradient);
35 + } else {
36 + final specialDesign = availableDesigns.length > 2 ? availableDesigns.last : null;
37 + final textColors = specialDesign?.colors ?? baseDesign.colors;
38 + design = baseDesign.withGradientAndColorCombination(gradient, textColors);
39 + }
40 +
41 + if (design.backgroundType == CardDesignBackgroundTypes.svgIcon &&
42 + availableIconPaths.isNotEmpty) {
43 + design = design.withIcon(availableIconPaths[selectedIconIndex]);
44 + }
45 + return design;
46 }
47
48 CardCustomizerState copyWith({
@@ -33,6 +53,8 @@ sealed class CardCustomizerState {
53 String? accountName,
54 int? accountIndex,
55 int? cardOrder,
56 + List<CardIconPath>? availableIconPaths,
57 + int? selectedIconIndex,
58 });
59
60 Gradient get selectedColor => availableColors[selectedColorIndex];
@@ -42,7 +64,16 @@ final class CardCustomizerNotLoaded extends CardCustomizerState {
64 CardCustomizerNotLoaded(super.selectedDesignIndex, super.selectedColorIndex, super.availableDesigns, super.availableColors, super.accountName, super.accountIndex, super.displaySats, super.cardOrder);
65
66 @override
45 - CardCustomizerState copyWith({int? selectedDesignIndex, int? selectedColorIndex, List<CardDesign>? availableDesigns, List<Gradient>? availableColors, String? accountName, int? accountIndex, int? cardOrder}) {
67 + CardCustomizerState copyWith(
68 + {int? selectedDesignIndex,
69 + int? selectedColorIndex,
70 + List<CardDesign>? availableDesigns,
71 + List<Gradient>? availableColors,
72 + String? accountName,
73 + int? accountIndex,
74 + int? cardOrder,
75 + List<CardIconPath>? availableIconPaths,
76 + int? selectedIconIndex}) {
77 // this is never gonna be copied. it's near-instantly replaced with initial
78 throw UnimplementedError();
79 }
@@ -56,10 +87,14 @@ final class CardCustomizerInitial extends CardCustomizerState {
87 List<Gradient> availableColors,
88 String accountName,
89 int accountIndex,
59 - bool displaySats,
60 - int cardOrder,
61 - ) : super(selectedDesignIndex, selectedColorIndex, availableDesigns, availableColors, accountName,
62 - accountIndex, displaySats, cardOrder);
90 + bool displaySats,
91 + int cardOrder, {
92 + List<CardIconPath> availableIconPaths = const [],
93 + int selectedIconIndex = 0,
94 + }) : super(selectedDesignIndex, selectedColorIndex, availableDesigns,
95 + availableColors, accountName, accountIndex, displaySats, cardOrder,
96 + availableIconPaths: availableIconPaths,
97 + selectedIconIndex: selectedIconIndex);
98
99 CardCustomizerInitial copyWith({
100 int? selectedDesignIndex,
@@ -70,6 +105,8 @@ final class CardCustomizerInitial extends CardCustomizerState {
105 int? accountIndex,
106 bool? displaySats,
107 int? cardOrder,
108 + List<CardIconPath>? availableIconPaths,
109 + int? selectedIconIndex,
110 }) {
111 return CardCustomizerInitial(
112 selectedDesignIndex ?? this.selectedDesignIndex,
@@ -80,13 +117,17 @@ final class CardCustomizerInitial extends CardCustomizerState {
117 accountIndex ?? this.accountIndex,
118 displaySats ?? this.displaySats,
119 cardOrder ?? this.cardOrder,
120 + availableIconPaths: availableIconPaths ?? this.availableIconPaths,
121 + selectedIconIndex: selectedIconIndex ?? this.selectedIconIndex,
122 );
123 }
124 }
125
126 final class CardCustomizerSaved extends CardCustomizerState {
88 - CardCustomizerSaved(super.selectedDesignIndex, super.selectedColorIndex, super.availableDesigns,
89 - super.availableColors, super.accountName, super.accountIndex, super.displaySats, super.cardOrder);
127 + CardCustomizerSaved(super.selectedDesignIndex, super.selectedColorIndex,
128 + super.availableDesigns, super.availableColors, super.accountName,
129 + super.accountIndex, super.displaySats, super.cardOrder,
130 + {super.availableIconPaths, super.selectedIconIndex});
131
132 @override
133 CardCustomizerState copyWith(
@@ -96,8 +137,10 @@ final class CardCustomizerSaved extends CardCustomizerState {
137 List<Gradient>? availableColors,
138 String? accountName,
139 int? accountIndex,
99 - bool? displaySats,
100 - int? cardOrder}) {
140 + bool? displaySats,
141 + int? cardOrder,
142 + List<CardIconPath>? availableIconPaths,
143 + int? selectedIconIndex}) {
144 return CardCustomizerSaved(
145 selectedDesignIndex ?? this.selectedDesignIndex,
146 selectedColorIndex ?? this.selectedColorIndex,
@@ -107,6 +150,8 @@ final class CardCustomizerSaved extends CardCustomizerState {
150 accountIndex ?? this.accountIndex,
151 displaySats ?? this.displaySats,
152 cardOrder ?? this.cardOrder,
153 + availableIconPaths: availableIconPaths ?? this.availableIconPaths,
154 + selectedIconIndex: selectedIconIndex ?? this.selectedIconIndex,
155 );
156 }
157 }
lib/new-ui/widgets/coins_page/cards/balance_card.dart
+24 -11
@@ -2,7 +2,6 @@ import 'package:cake_wallet/generated/i18n.dart';
2 import 'package:cake_wallet/src/widgets/cake_image_widget.dart';
3 import 'package:cw_core/card_design.dart';
4 import 'package:flutter/material.dart';
5 -import 'package:flutter_svg/flutter_svg.dart';
5
6 class BalanceCardAction {
7 final String label;
@@ -247,16 +246,7 @@ class BalanceCard extends StatelessWidget {
246 switchInCurve: Curves.easeInOut,
247 switchOutCurve: Curves.easeInOut,
248 child: design.backgroundType == CardDesignBackgroundTypes.svgIcon
250 - ? CakeImageWidget(
251 - imageUrl: design.imagePath,
252 - key: const ValueKey('svgIcon'),
253 - height: iconWidth,
254 - width: iconWidth,
255 - colorFilter: ColorFilter.mode(
256 - design.colors.backgroundImageColor.withAlpha(80),
257 - BlendMode.srcIn,
258 - ),
259 - )
249 + ? _CornerSvgIcon(design: design, iconWidth: iconWidth)
250 : const SizedBox.shrink(
251 key: ValueKey('svgIconOff'),
252 ),
@@ -320,3 +310,26 @@ class BalanceCard extends StatelessWidget {
310 ),
311 );
312 }
313 +
314 +class _CornerSvgIcon extends StatelessWidget {
315 + const _CornerSvgIcon({required this.design, required this.iconWidth});
316 +
317 + final CardDesign design;
318 + final double iconWidth;
319 +
320 + @override
321 + Widget build(BuildContext context) {
322 + return CakeImageWidget(
323 + imageUrl: design.imagePath,
324 + key: ValueKey(design.imagePath),
325 + height: iconWidth,
326 + width: iconWidth,
327 + colorFilter: design.preColoredIcon
328 + ? null
329 + : ColorFilter.mode(
330 + design.colors.backgroundImageColor.withValues(alpha: 0.33),
331 + BlendMode.dstIn,
332 + ),
333 + );
334 + }
335 +}
lib/src/widgets/cake_image_widget.dart
+1
@@ -71,6 +71,7 @@ class CakeImageWidget extends StatelessWidget {
71 width: width,
72 fit: fit,
73 color: color,
74 + errorBuilder: (_, __, ___) => _buildErrorWidget(context),
75 );
76 }
77 } else {
lib/view_model/monero_account_list/monero_account_edit_or_create_view_model.dart
+4 -4
@@ -52,10 +52,10 @@ abstract class MoneroAccountEditOrCreateViewModelBase with Store {
52 final gradients = await _getUsableCardGradients();
53
54 await BalanceCardStyleSettings.fromCardDesign(
55 - _wallet.walletInfo.internalId,
56 - _moneroAccountList.accounts.length,
57 - _moneroAccountList.accounts.length,
58 - CardDesign.specialDesignsForCurrencies[_wallet.currency]!
55 + walletInfoId: _wallet.walletInfo.internalId,
56 + accountIndex: _moneroAccountList.accounts.length,
57 + cardOrder: _moneroAccountList.accounts.length,
58 + design: CardDesign.specialDesignsForCurrencies[_wallet.currency]!
59 .withGradient(gradients[Random().nextInt(gradients.length)]))
60 .insert();
61 }
pubspec_base.yaml
+5
@@ -284,6 +284,11 @@ flutter:
284 - assets/new-ui/navbar/
285 - assets/new-ui/changelog/icons/
286 - assets/new-ui/changelog/text/
287 + - assets/new-ui/card_icons/
288 + - assets/new-ui/card_icons/chain_icons/
289 + - assets/new-ui/card_icons/og_icons/
290 + - assets/new-ui/card_icons/outline_icons/
291 + - assets/new-ui/card_icons/symbol_icons/
292 - assets/new-ui/crypto_full_icons/
293
294 fonts:
res/pictures/balance_card_icons/bnb.svg
+2 -2
@@ -1,3 +1,3 @@
1 -<svg width="150" height="175" viewBox="0 0 150 175" fill="none" xmlns="http://www.w3.org/2000/svg">
2 -<path d="M28.9505 26.8049L75.0001 0L121.05 26.8049L104.12 36.7073L75.0001 19.8049L45.8804 36.7073L28.9505 26.8049ZM121.05 60.6098L104.12 50.7073L75.0001 67.6098L45.8804 50.7073L28.9505 60.6098V80.4147L58.0699 97.3171V131.122L75.0001 141.024L91.9301 131.122V97.3171L121.05 80.4147V60.6098ZM121.05 114.22V94.4147L104.12 104.317V124.122L121.05 114.22ZM133.07 121.22L103.951 138.122V157.927L150 131.122V77.5122L133.07 87.4147V121.22ZM116.14 43.7073L133.07 53.6098V73.4147L150 63.5122V43.7073L133.07 33.8049L116.14 43.7073ZM58.0699 145.293V165.098L75.0001 175L91.9301 165.098V145.293L75.0001 155.195L58.0699 145.293ZM28.9505 114.22L45.8804 124.122V104.317L28.9505 94.4147V114.22ZM58.0699 43.7073L75.0001 53.6098L91.9301 43.7073L75.0001 33.8049L58.0699 43.7073ZM16.93 53.6098L33.86 43.7073L16.93 33.8049L0 43.7073V63.5122L16.93 73.4147V53.6098ZM16.93 87.4147L0 77.5122V131.122L46.0496 157.927V138.122L16.93 121.22V87.4147Z" fill="white"/>
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M0.659004 16.6807C3.59629 4.89364 15.5343 -2.2799 27.3192 0.65825C39.1069 3.59661 46.2802 15.5359 43.3416 27.3223C40.4029 39.1081 28.464 46.2809 16.6756 43.3418C4.89214 40.4034 -2.28099 28.4657 0.659004 16.6807ZM21.9998 33.8965L19.0203 32.1543V35.6397L21.9998 37.3829L24.9793 35.6397V32.1543L21.9998 33.8965ZM8.79963 29.6602L16.9041 34.378V30.8916L11.7791 27.917V21.9678L8.79963 20.2247V29.6602ZM32.2205 21.9678V27.917L27.0955 30.8916V34.378L35.2 29.6602V20.2247L32.2205 21.9678ZM21.9998 18.4815L16.8748 15.5069L13.8953 17.25V20.7354L19.0203 23.71V29.6602L21.9998 31.4024L24.9793 29.6602V23.71L30.1043 20.7354V17.25L27.1248 15.5069L21.9998 18.4815ZM13.8953 26.6846L16.8748 28.4278V24.9424L13.8953 23.1993V26.6846ZM27.1248 24.9424V28.4278L30.1043 26.6846V23.1993L27.1248 24.9424ZM8.79963 14.2745V17.7608L11.7791 19.503V16.0176L14.7596 14.2745L11.7791 12.5323L8.79963 14.2745ZM29.2401 14.2745L32.2205 16.0176V19.503L35.2 17.7608V14.2745L32.2205 12.5323L29.2401 14.2745ZM19.0203 14.2745L21.9998 16.0176L24.9793 14.2745L21.9998 12.5323L19.0203 14.2745ZM13.8953 11.2999L16.8748 13.043L21.9998 10.0684L27.1248 13.043L30.1043 11.2999L21.9998 6.58208L13.8953 11.2999Z" fill="white"/>
3 </svg>
res/pictures/balance_card_icons/cake-card-icon.svg new
+13
@@ -0,0 +1,13 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<g clip-path="url(#clip0_18247_779162)">
3 +<path d="M35.2155 19.5085C34.752 19.9705 34.3662 20.4457 34.1055 21.142C33.8448 21.8383 33.7157 22.5965 33.5301 23.7956C33.2641 25.5028 32.7453 26.1741 32.3345 26.598C31.4957 27.4628 30.304 27.4141 28.8517 27.1271C27.9392 26.9468 27.7021 27.164 26.6171 28.1012L20.8972 33.7638L20.8945 42.3604C20.8945 42.5144 21.0815 42.5921 21.1908 42.4828L38.0847 25.6226C38.3125 25.3949 38.4416 25.0869 38.4416 24.7644L38.4626 16.2441L35.2155 19.5072V19.5085Z" fill="white"/>
4 +<path d="M28.3987 24.8874C29.4995 24.919 30.2671 25.7153 31.1731 25.144C32.079 24.5728 32.054 23.9371 32.2291 22.8867C32.4055 21.8349 32.7545 20.6121 33.0652 19.875C33.3773 19.1366 34.0739 18.1928 34.7823 17.5044L38.4336 13.7069L38.4573 9.8805C38.4573 9.64624 38.1755 9.52776 38.0096 9.6936L21.4041 26.2932C21.0775 26.6196 20.8945 27.0619 20.8945 27.5226V31.2897L26.5039 25.6614C26.5039 25.6614 27.2966 24.8571 28.3973 24.8887L28.3987 24.8874Z" fill="white"/>
5 +<path d="M38.4626 6.74317L20.8945 24.351V20.5917C20.8945 20.131 21.0775 19.6887 21.4041 19.3623L38.0136 2.75878C38.1782 2.59425 38.4613 2.71008 38.4613 2.94438V6.74317H38.4626Z" fill="white"/>
6 +<path d="M37.1094 0.052001L7.36798 6.52938C6.30273 6.76105 5.54297 7.70351 5.54297 8.7934V30.5028C5.54297 30.8252 5.67069 31.1346 5.89981 31.3636L18.4142 43.8735C18.6696 44.1289 19.1068 43.9485 19.1068 43.5866V20.32C19.1081 19.5526 19.4136 18.8155 19.9561 18.2732L37.4834 0.735148C37.7691 0.449517 37.5058 -0.033557 37.1108 0.052001H37.1094Z" fill="white"/>
7 +</g>
8 +<defs>
9 +<clipPath id="clip0_18247_779162">
10 +<rect width="32.9264" height="44" fill="white" transform="translate(5.54297)"/>
11 +</clipPath>
12 +</defs>
13 +</svg>
res/pictures/card_icons/chain_icons/arbitrum.svg new
+69
@@ -0,0 +1,69 @@
1 +<svg opacity="0.85" width="250" height="250" viewBox="0 0 250 250" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M250 125C250 194.036 194.036 250 125 250C55.9644 250 0 194.036 0 125C0 55.9644 55.9644 0 125 0C194.036 0 250 55.9644 250 125Z" fill="url(#paint0_linear_11259_64413)"/>
3 +<path d="M245 125C245 58.7258 191.274 5 125 5C58.7258 5 5 58.7258 5 125C5 191.274 58.7258 245 125 245V250C55.9644 250 0 194.036 0 125C0 55.9644 55.9644 0 125 0C194.036 0 250 55.9644 250 125C250 194.036 194.036 250 125 250V245C191.274 245 245 191.274 245 125Z" fill="url(#paint1_linear_11259_64413)"/>
4 +<path d="M245 125C245 58.7258 191.274 5 125 5C58.7258 5 5 58.7258 5 125C5 191.274 58.7258 245 125 245V250C55.9644 250 0 194.036 0 125C0 55.9644 55.9644 0 125 0C194.036 0 250 55.9644 250 125C250 194.036 194.036 250 125 250V245C191.274 245 245 191.274 245 125Z" fill="url(#paint2_linear_11259_64413)"/>
5 +<path d="M245 125C245 58.7258 191.274 5 125 5C58.7258 5 5 58.7258 5 125C5 191.274 58.7258 245 125 245V250C55.9644 250 0 194.036 0 125C0 55.9644 55.9644 0 125 0C194.036 0 250 55.9644 250 125C250 194.036 194.036 250 125 250V245C191.274 245 245 191.274 245 125Z" fill="url(#paint3_linear_11259_64413)"/>
6 +<path d="M138.141 139.357L129.775 162.309C129.568 162.931 129.568 163.622 129.775 164.314L144.155 203.789L160.816 194.18L140.837 139.357C140.353 138.112 138.625 138.112 138.141 139.357Z" fill="#041935"/>
7 +<path d="M154.94 100.78C154.456 99.5355 152.728 99.5355 152.244 100.78L143.879 123.732C143.672 124.355 143.672 125.046 143.879 125.737L167.454 190.377L184.115 180.768L154.94 100.849V100.78Z" fill="#041935"/>
8 +<path d="M125.316 39.8047C127.586 39.8103 129.854 40.3637 131.849 41.533L195.382 78.1737C199.461 80.5242 201.95 84.8105 201.95 89.5114V162.794C201.95 167.495 199.461 171.781 195.382 174.132L131.918 210.772C129.844 211.947 127.632 212.501 125.351 212.501C123.069 212.501 120.788 211.948 118.783 210.772L90.0345 194.174L98.2632 186.618L124.175 201.578C124.521 201.785 124.936 201.924 125.351 201.924C125.765 201.923 126.18 201.785 126.525 201.578L189.99 164.936C190.682 164.521 191.165 163.692 191.165 162.863V89.5812C191.165 88.7517 190.751 87.9223 189.99 87.5074L126.525 50.8656C126.18 50.6584 125.765 50.5203 125.351 50.5202V50.4516C124.936 50.4516 124.521 50.5896 124.175 50.797L60.71 87.4377C60.0188 87.8524 59.5354 88.682 59.5353 89.5114V162.863C59.5353 163.692 59.9497 164.521 60.71 164.936L87.0841 180.163L83.3619 190.322L55.3179 174.132C51.2391 171.781 48.7501 167.495 48.75 162.794V89.5114C48.7501 84.8105 51.2392 80.5242 55.3179 78.1737L118.783 41.533C120.846 40.3637 123.047 39.8102 125.316 39.8047Z" fill="#041935"/>
9 +<path d="M119.959 84.3269H103.851C102.675 84.3269 101.569 85.0874 101.155 86.1935L66.6568 180.768L83.318 190.378L121.342 86.1935C121.687 85.2257 120.996 84.2578 120.028 84.2578L119.959 84.3269Z" fill="#041935"/>
10 +<path d="M148.166 84.3271H132.058C130.883 84.3271 129.777 85.0876 129.362 86.1937L89.9558 194.181L106.617 203.79L149.48 86.1937C149.826 85.2258 149.134 84.258 148.166 84.258V84.3271Z" fill="#041935"/>
11 +<path d="M138.142 137.051L129.777 160.003C129.569 160.626 129.569 161.317 129.777 162.008L144.156 201.484L160.818 191.874L140.838 137.051C140.354 135.807 138.626 135.807 138.142 137.051Z" fill="url(#paint4_linear_11259_64413)"/>
12 +<path d="M154.942 98.4743C154.458 97.2299 152.729 97.2299 152.245 98.4743L143.88 121.427C143.673 122.049 143.673 122.74 143.88 123.432L167.455 188.072L184.116 178.462L154.942 98.5435V98.4743Z" fill="url(#paint5_linear_11259_64413)"/>
13 +<path d="M138.142 137.051C138.626 135.807 140.354 135.807 140.838 137.051L160.818 191.875L144.156 201.484L129.777 162.008C129.569 161.317 129.569 160.626 129.777 160.004L138.142 137.051ZM139.49 137.368C139.446 137.368 139.409 137.381 139.384 137.397C139.365 137.41 139.334 137.435 139.308 137.502L130.963 160.399L130.924 160.535C130.846 160.852 130.85 161.221 130.966 161.622L144.821 199.657L159.283 191.316L139.673 137.505C139.646 137.436 139.615 137.41 139.596 137.397C139.571 137.381 139.534 137.368 139.49 137.368ZM152.245 98.4753C152.729 97.2309 154.458 97.2309 154.942 98.4753V98.5437L184.116 178.463L167.455 188.072L143.88 123.432C143.699 122.827 143.677 122.222 143.813 121.664L143.88 121.427L152.245 98.4753ZM153.594 98.7917C153.55 98.7917 153.513 98.8044 153.488 98.821C153.468 98.8336 153.438 98.8589 153.411 98.9255L145.067 121.823L145.028 121.959C144.95 122.276 144.954 122.644 145.07 123.045L168.118 186.246L182.581 177.904L153.768 98.9724L153.718 98.8376C153.711 98.8309 153.705 98.8247 153.699 98.821C153.674 98.8045 153.638 98.7918 153.594 98.7917Z" fill="url(#paint6_linear_11259_64413)"/>
14 +<path d="M125.318 37.5C127.588 37.5054 129.858 38.0591 131.853 39.2285L195.386 75.8691C199.465 78.2197 201.954 82.506 201.954 87.207V160.489C201.954 165.19 199.465 169.477 195.386 171.827L131.921 208.468C129.847 209.643 127.635 210.196 125.354 210.196C123.072 210.196 120.791 209.643 118.786 208.468L90.0381 191.87L98.2676 184.313L124.179 199.273C124.524 199.481 124.939 199.619 125.354 199.619C125.768 199.619 126.184 199.481 126.529 199.273L189.994 162.632C190.685 162.217 191.169 161.387 191.169 160.558V87.2764C191.169 86.4469 190.754 85.617 189.994 85.2021L126.529 48.5615C126.184 48.3541 125.768 48.2158 125.354 48.2158V48.1465C124.939 48.1465 124.524 48.2849 124.179 48.4922L60.7139 85.1328C60.0226 85.5476 59.5381 86.3775 59.5381 87.207V160.558C59.5381 161.387 59.9534 162.217 60.7139 162.632L87.0869 177.858L83.3652 188.018L55.3213 171.827C51.2425 169.477 48.754 165.19 48.7539 160.489V87.207C48.754 82.506 51.2424 78.2197 55.3213 75.8691L118.786 39.2285C120.849 38.0593 123.049 37.5057 125.318 37.5Z" fill="url(#paint7_linear_11259_64413)"/>
15 +<path d="M200.704 160.489V87.207C200.704 83.0885 198.594 79.3238 195.104 77.1572L194.762 76.9521L131.229 40.3115L131.221 40.3066C129.436 39.2603 127.389 38.7555 125.318 38.75C123.26 38.7556 121.273 39.2566 119.402 40.3164L55.9463 76.9521H55.9453C52.367 79.0142 50.1461 82.715 50.0107 86.8096L50.0039 87.207V160.489C50.004 164.741 52.2517 168.616 55.9453 170.744H55.9463L82.7021 186.191L85.5508 178.415L60.0889 163.715V163.714C58.8877 163.045 58.2881 161.767 58.2881 160.558V87.207C58.2882 85.9306 59.0094 84.6972 60.0703 84.0605L60.0801 84.0557L60.0889 84.0498L123.554 47.4092C124.051 47.1146 124.679 46.8965 125.354 46.8965H126.604V47.21C126.8 47.2869 126.984 47.3782 127.153 47.4785L190.619 84.1191H190.618C191.821 84.7885 192.419 86.0676 192.419 87.2764V160.558C192.419 161.833 191.699 163.066 190.638 163.703L190.628 163.709L190.619 163.715L127.154 200.356L127.153 200.355C126.655 200.65 126.028 200.869 125.354 200.869C124.678 200.869 124.051 200.65 123.554 200.355V200.356L98.4365 185.854L92.1377 191.639L119.411 207.385L119.418 207.39C121.213 208.442 123.272 208.946 125.354 208.946V210.196C123.072 210.196 120.791 209.643 118.786 208.468L90.0381 191.87L98.2676 184.313L124.179 199.273C124.524 199.481 124.939 199.619 125.354 199.619C125.768 199.619 126.184 199.481 126.529 199.273L189.994 162.632C190.685 162.217 191.169 161.387 191.169 160.558V87.2764C191.169 86.4469 190.754 85.617 189.994 85.2021L126.529 48.5615C126.184 48.3541 125.768 48.2158 125.354 48.2158V48.1465C124.939 48.1465 124.524 48.2849 124.179 48.4922L60.7139 85.1328C60.0226 85.5476 59.5381 86.3775 59.5381 87.207V160.558C59.5381 161.387 59.9534 162.217 60.7139 162.632L87.0869 177.858L83.3652 188.018L55.3213 171.827C51.2425 169.477 48.754 165.19 48.7539 160.489V87.207C48.754 82.506 51.2424 78.2197 55.3213 75.8691L118.786 39.2285C120.849 38.0593 123.049 37.5057 125.318 37.5C127.588 37.5054 129.858 38.0591 131.853 39.2285L195.386 75.8691C199.465 78.2197 201.954 82.506 201.954 87.207V160.489C201.954 165.19 199.465 169.477 195.386 171.827L131.921 208.468C129.847 209.643 127.635 210.196 125.354 210.196V208.946C127.425 208.946 129.424 208.446 131.305 207.38L194.761 170.744H194.762C198.34 168.682 200.562 164.981 200.697 160.887L200.704 160.489Z" fill="url(#paint8_linear_11259_64413)"/>
16 +<path d="M119.958 82.0223H103.85C102.675 82.0223 101.569 82.7827 101.154 83.8889L66.6562 178.464L83.3175 188.073L121.341 83.8889C121.687 82.921 120.995 81.9531 120.028 81.9531L119.958 82.0223Z" fill="url(#paint9_linear_11259_64413)"/>
17 +<path d="M148.166 82.0224H132.058C130.882 82.0224 129.776 82.7829 129.362 83.8891L89.9553 191.876L106.617 201.486L149.479 83.8891C149.825 82.9212 149.134 81.9533 148.166 81.9533V82.0224Z" fill="url(#paint10_linear_11259_64413)"/>
18 +<path d="M148.166 81.9531C149.134 81.9532 149.825 82.921 149.48 83.8887L106.616 201.486L89.9551 191.876L129.361 83.8887C129.75 82.8519 130.747 82.119 131.838 82.0313L132.058 82.0225H148.166V81.9531ZM132.058 83.2725C131.401 83.2725 130.763 83.7126 130.532 84.3281L91.4893 191.318L105.952 199.658L148.305 83.4609C148.334 83.3743 148.316 83.3135 148.289 83.2725H132.058ZM120.027 81.9531C120.995 81.9531 121.686 82.9208 121.341 83.8887L83.3174 188.073L66.6562 178.464L101.154 83.8887C101.543 82.8518 102.54 82.1188 103.631 82.0313L103.851 82.0225H119.958L120.027 81.9531ZM103.851 83.2725C103.194 83.2725 102.555 83.7126 102.324 84.3281L68.1895 177.904L82.6533 186.246L120.164 83.4658C120.195 83.3764 120.178 83.3143 120.15 83.2725H103.851Z" fill="url(#paint11_linear_11259_64413)"/>
19 +<defs>
20 +<linearGradient id="paint0_linear_11259_64413" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
21 +<stop stop-color="#213147"/>
22 +<stop offset="1" stop-color="#0E1D32"/>
23 +</linearGradient>
24 +<linearGradient id="paint1_linear_11259_64413" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
25 +<stop stop-color="#526B8F"/>
26 +<stop offset="1" stop-color="#10365A"/>
27 +</linearGradient>
28 +<linearGradient id="paint2_linear_11259_64413" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
29 +<stop offset="0.85" stop-color="#1E5588" stop-opacity="0"/>
30 +<stop offset="1" stop-color="#1E5588"/>
31 +</linearGradient>
32 +<linearGradient id="paint3_linear_11259_64413" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
33 +<stop stop-color="#5D85C0"/>
34 +<stop offset="0.15" stop-color="#5D85C0" stop-opacity="0"/>
35 +</linearGradient>
36 +<linearGradient id="paint4_linear_11259_64413" x1="156.869" y1="97.541" x2="156.869" y2="201.484" gradientUnits="userSpaceOnUse">
37 +<stop stop-color="#12AAFF"/>
38 +<stop offset="1" stop-color="#006AA6"/>
39 +</linearGradient>
40 +<linearGradient id="paint5_linear_11259_64413" x1="156.869" y1="97.541" x2="156.869" y2="201.484" gradientUnits="userSpaceOnUse">
41 +<stop stop-color="#12AAFF"/>
42 +<stop offset="1" stop-color="#006AA6"/>
43 +</linearGradient>
44 +<linearGradient id="paint6_linear_11259_64413" x1="156.869" y1="97.5417" x2="156.869" y2="201.484" gradientUnits="userSpaceOnUse">
45 +<stop stop-color="#27B2FF"/>
46 +<stop offset="1" stop-color="#619EC9"/>
47 +</linearGradient>
48 +<linearGradient id="paint7_linear_11259_64413" x1="125.354" y1="37.5" x2="125.354" y2="210.196" gradientUnits="userSpaceOnUse">
49 +<stop stop-color="#9DCCED"/>
50 +<stop offset="1" stop-color="#5594C1"/>
51 +</linearGradient>
52 +<linearGradient id="paint8_linear_11259_64413" x1="125.354" y1="37.5" x2="125.354" y2="210.196" gradientUnits="userSpaceOnUse">
53 +<stop stop-color="#D7EFFF"/>
54 +<stop offset="1" stop-color="#2672A6"/>
55 +</linearGradient>
56 +<linearGradient id="paint9_linear_11259_64413" x1="108.113" y1="81.9531" x2="108.113" y2="201.486" gradientUnits="userSpaceOnUse">
57 +<stop stop-color="white"/>
58 +<stop offset="1" stop-color="#D0ECFF"/>
59 +</linearGradient>
60 +<linearGradient id="paint10_linear_11259_64413" x1="108.113" y1="81.9531" x2="108.113" y2="201.486" gradientUnits="userSpaceOnUse">
61 +<stop stop-color="white"/>
62 +<stop offset="1" stop-color="#D0ECFF"/>
63 +</linearGradient>
64 +<linearGradient id="paint11_linear_11259_64413" x1="108.113" y1="81.9531" x2="108.113" y2="201.486" gradientUnits="userSpaceOnUse">
65 +<stop stop-color="white"/>
66 +<stop offset="1" stop-color="#5796C3"/>
67 +</linearGradient>
68 +</defs>
69 +</svg>
res/pictures/card_icons/chain_icons/base_icon.svg new
+35
@@ -0,0 +1,35 @@
1 +<svg opacity="0.85" width="250" height="250" viewBox="0 0 250 250" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M250 125C250 194.036 194.036 250 125 250C55.9644 250 0 194.036 0 125C0 55.9644 55.9644 0 125 0C194.036 0 250 55.9644 250 125Z" fill="url(#paint0_linear_11259_64337)"/>
3 +<path d="M245 125C245 58.7258 191.274 5 125 5C58.7258 5 5 58.7258 5 125C5 191.274 58.7258 245 125 245V250C55.9644 250 0 194.036 0 125C0 55.9644 55.9644 0 125 0C194.036 0 250 55.9644 250 125C250 194.036 194.036 250 125 250V245C191.274 245 245 191.274 245 125Z" fill="url(#paint1_linear_11259_64337)"/>
4 +<path d="M245 125C245 58.7258 191.274 5 125 5C58.7258 5 5 58.7258 5 125C5 191.274 58.7258 245 125 245V250C55.9644 250 0 194.036 0 125C0 55.9644 55.9644 0 125 0C194.036 0 250 55.9644 250 125C250 194.036 194.036 250 125 250V245C191.274 245 245 191.274 245 125Z" fill="url(#paint2_linear_11259_64337)"/>
5 +<path d="M245 125C245 58.7258 191.274 5 125 5C58.7258 5 5 58.7258 5 125C5 191.274 58.7258 245 125 245V250C55.9644 250 0 194.036 0 125C0 55.9644 55.9644 0 125 0C194.036 0 250 55.9644 250 125C250 194.036 194.036 250 125 250V245C191.274 245 245 191.274 245 125Z" fill="url(#paint3_linear_11259_64337)"/>
6 +<path d="M124.857 211.875C170.21 211.875 206.977 175.172 206.977 129.898C206.977 84.624 170.21 47.9219 124.857 47.9219C81.8282 47.9219 46.5292 80.9578 43.0234 123.007H151.566V136.789H43.0234C46.5292 178.839 81.8282 211.875 124.857 211.875Z" fill="#0037AD"/>
7 +<path d="M124.857 207.078C170.21 207.078 206.977 170.375 206.977 125.102C206.977 79.8271 170.21 43.125 124.857 43.125C81.8282 43.125 46.5292 76.1609 43.0234 118.21H151.566V131.992H43.0234C46.5292 174.042 81.8282 207.078 124.857 207.078Z" fill="url(#paint4_linear_11259_64337)"/>
8 +<path d="M151.566 131.992V118.211H43.0234C46.5292 76.1614 81.8281 43.1251 124.856 43.125C170.21 43.125 206.977 79.8271 206.977 125.102C206.977 170.375 170.21 207.078 124.856 207.078V205.078C169.109 205.078 204.977 169.268 204.977 125.102C204.977 80.9349 169.109 45.125 124.856 45.125C83.6159 45.1251 49.6564 76.229 45.2275 116.211H153.566V133.992H45.2275C49.6567 173.975 83.6161 205.078 124.856 205.078V207.078C81.8282 207.078 46.5293 174.042 43.0234 131.992H151.566Z" fill="url(#paint5_linear_11259_64337)"/>
9 +<defs>
10 +<linearGradient id="paint0_linear_11259_64337" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
11 +<stop stop-color="#0052FF"/>
12 +<stop offset="1" stop-color="#003CB9"/>
13 +</linearGradient>
14 +<linearGradient id="paint1_linear_11259_64337" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
15 +<stop stop-color="#2C70FF"/>
16 +<stop offset="1" stop-color="#005FDB"/>
17 +</linearGradient>
18 +<linearGradient id="paint2_linear_11259_64337" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
19 +<stop offset="0.85" stop-color="#4A84FF" stop-opacity="0"/>
20 +<stop offset="1" stop-color="#4A84FF"/>
21 +</linearGradient>
22 +<linearGradient id="paint3_linear_11259_64337" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
23 +<stop stop-color="#578EFF"/>
24 +<stop offset="0.15" stop-color="#578EFF" stop-opacity="0"/>
25 +</linearGradient>
26 +<linearGradient id="paint4_linear_11259_64337" x1="125" y1="43.125" x2="125" y2="207.078" gradientUnits="userSpaceOnUse">
27 +<stop stop-color="white"/>
28 +<stop offset="1" stop-color="#A7C3FF"/>
29 +</linearGradient>
30 +<linearGradient id="paint5_linear_11259_64337" x1="125" y1="43.125" x2="125" y2="207.078" gradientUnits="userSpaceOnUse">
31 +<stop stop-color="white"/>
32 +<stop offset="1" stop-color="white"/>
33 +</linearGradient>
34 +</defs>
35 +</svg>
res/pictures/card_icons/chain_icons/bitcoin-cash.svg new
+46
@@ -0,0 +1,46 @@
1 +<svg opacity="0.85" width="250" height="250" viewBox="0 0 250 250" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<g clip-path="url(#clip0_11259_64272)">
3 +<path d="M125 250C194.036 250 250 194.036 250 125C250 55.9644 194.036 0 125 0C55.9644 0 0 55.9644 0 125C0 194.036 55.9644 250 125 250Z" fill="url(#paint0_linear_11259_64272)"/>
4 +<path d="M125 250C194.036 250 250 194.036 250 125C250 55.9644 194.036 0 125 0C55.9644 0 0 55.9644 0 125C0 194.036 55.9644 250 125 250Z" fill="url(#paint1_linear_11259_64272)"/>
5 +<path d="M245 125C245 58.7258 191.274 5 125 5C58.7258 5 5 58.7258 5 125C5 191.274 58.7258 245 125 245V250C55.9644 250 0 194.036 0 125C0 55.9644 55.9644 0 125 0C194.036 0 250 55.9644 250 125C250 194.036 194.036 250 125 250V245C191.274 245 245 191.274 245 125Z" fill="url(#paint2_linear_11259_64272)"/>
6 +<path d="M245 125C245 58.7258 191.274 5 125 5C58.7258 5 5 58.7258 5 125C5 191.274 58.7258 245 125 245V250C55.9644 250 0 194.036 0 125C0 55.9644 55.9644 0 125 0C194.036 0 250 55.9644 250 125C250 194.036 194.036 250 125 250V245C191.274 245 245 191.274 245 125Z" fill="url(#paint3_linear_11259_64272)"/>
7 +<path d="M245 125C245 58.7258 191.274 5 125 5C58.7258 5 5 58.7258 5 125C5 191.274 58.7258 245 125 245V250C55.9644 250 0 194.036 0 125C0 55.9644 55.9644 0 125 0C194.036 0 250 55.9644 250 125C250 194.036 194.036 250 125 250V245C191.274 245 245 191.274 245 125Z" fill="url(#paint4_linear_11259_64272)"/>
8 +<path d="M163.981 89.0268C157.7 74.7819 143.264 71.7362 125.593 74.6867L119.914 52.6689L106.526 56.1271L112.109 78.0814C108.588 78.9697 104.971 79.7311 101.386 80.7464L95.8023 58.9189L82.414 62.3771L88.093 84.3948C85.2059 85.2197 61.0625 91.4063 61.0625 91.4063L64.7427 105.746C64.7427 105.746 74.5777 102.986 74.4826 103.208C79.9394 101.781 82.5092 104.509 83.7148 107.079L99.3239 167.421C99.5143 169.166 99.197 172.149 95.4534 173.164C95.6754 173.291 85.7135 175.67 85.7135 175.67L87.1729 192.39C87.1729 192.39 111.094 186.267 114.235 185.474L119.977 207.745L133.366 204.287L127.623 181.857C131.304 181 134.889 180.112 138.378 179.192L144.089 201.495L157.477 198.037L151.735 175.797C172.357 170.784 186.919 157.777 183.937 137.885C182.033 125.892 168.931 116.057 158.049 114.947C164.743 109.014 168.137 100.353 163.981 89.0268ZM157.541 141.533C160.206 161.235 132.826 163.646 123.785 166.026L115.917 136.552C124.99 134.173 153.036 124.179 157.541 141.533ZM141.043 101.4C143.867 118.913 120.453 120.943 112.903 122.878L105.733 96.1334C113.315 94.2616 135.301 85.188 141.043 101.4Z" fill="url(#paint5_linear_11259_64272)"/>
9 +<path d="M163.981 83.0268C157.7 68.7819 143.264 65.7362 125.593 68.6867L119.914 46.6689L106.526 50.1271L112.109 72.0814C108.588 72.9697 104.971 73.7311 101.386 74.7464L95.8023 52.9189L82.414 56.3771L88.093 78.3948C85.2059 79.2197 61.0625 85.4063 61.0625 85.4063L64.7427 99.7463C64.7427 99.7463 74.5777 96.9862 74.4826 97.2083C79.9394 95.7806 82.5092 98.509 83.7148 101.079L99.3239 161.421C99.5143 163.166 99.197 166.149 95.4534 167.164C95.6754 167.291 85.7135 169.67 85.7135 169.67L87.1729 186.39C87.1729 186.39 111.094 180.267 114.235 179.474L119.977 201.745L133.366 198.287L127.623 175.857C131.304 175 134.889 174.112 138.378 173.192L144.089 195.495L157.477 192.037L151.735 169.797C172.357 164.784 186.919 151.777 183.937 131.885C182.033 119.892 168.931 110.057 158.049 108.947C164.743 103.014 168.137 94.353 163.981 83.0268ZM157.541 135.533C160.206 155.235 132.826 157.646 123.785 160.026L115.917 130.552C124.99 128.173 153.036 118.179 157.541 135.533ZM141.043 95.3999C143.867 112.913 120.453 114.943 112.903 116.878L105.733 90.1334C113.315 88.2616 135.301 79.188 141.043 95.3999Z" fill="white"/>
10 +<path d="M163.981 83.0268C157.7 68.7819 143.264 65.7362 125.593 68.6867L119.914 46.6689L106.526 50.1271L112.109 72.0814C108.588 72.9697 104.971 73.7311 101.386 74.7464L95.8023 52.9189L82.414 56.3771L88.093 78.3948C85.2059 79.2197 61.0625 85.4063 61.0625 85.4063L64.7427 99.7463C64.7427 99.7463 74.5777 96.9862 74.4826 97.2083C79.9394 95.7806 82.5092 98.509 83.7148 101.079L99.3239 161.421C99.5143 163.166 99.197 166.149 95.4534 167.164C95.6754 167.291 85.7135 169.67 85.7135 169.67L87.1729 186.39C87.1729 186.39 111.094 180.267 114.235 179.474L119.977 201.745L133.366 198.287L127.623 175.857C131.304 175 134.889 174.112 138.378 173.192L144.089 195.495L157.477 192.037L151.735 169.797C172.357 164.784 186.919 151.777 183.937 131.885C182.033 119.892 168.931 110.057 158.049 108.947C164.743 103.014 168.137 94.353 163.981 83.0268ZM157.541 135.533C160.206 155.235 132.826 157.646 123.785 160.026L115.917 130.552C124.99 128.173 153.036 118.179 157.541 135.533ZM141.043 95.3999C143.867 112.913 120.453 114.943 112.903 116.878L105.733 90.1334C113.315 88.2616 135.301 79.188 141.043 95.3999Z" fill="url(#paint6_linear_11259_64272)"/>
11 +<path d="M125.593 68.6865C143.264 65.736 157.7 68.7817 163.981 83.0264C168.138 94.3525 164.743 103.015 158.049 108.947C168.931 110.058 182.033 119.893 183.937 131.885C186.919 151.777 172.357 164.784 151.735 169.797L157.478 192.037L144.089 195.495L138.379 173.191C134.889 174.111 131.303 175 127.623 175.856L133.366 198.287L119.978 201.745L114.235 179.474C111.094 180.267 87.1729 186.39 87.1729 186.39L85.7139 169.67C85.7856 169.653 95.6744 167.291 95.4531 167.164C99.1965 166.149 99.5145 163.167 99.3242 161.422L83.7148 101.079C82.5093 98.5093 79.9393 95.7803 74.4824 97.208C74.5716 96.9886 64.8229 99.7237 64.7432 99.7461L61.0625 85.4062C61.0679 85.4049 85.2056 79.2194 88.0928 78.3945L82.4141 56.377L95.8027 52.9189L101.386 74.7461C104.971 73.7309 108.588 72.9694 112.109 72.0811L106.525 50.127L119.914 46.6689L125.593 68.6865ZM108.954 51.5645L114.542 73.5303L112.599 74.0205C108.961 74.9382 105.493 75.6622 101.931 76.6709L99.957 77.2295L94.3604 55.3564L84.8496 57.8135L90.5166 79.7822L88.6426 80.3184C87.1665 80.7401 80.3704 82.502 73.9941 84.1465C70.7952 84.9715 67.6868 85.7713 65.3779 86.3643C64.6688 86.5464 64.0348 86.7087 63.4971 86.8467L66.1719 97.2734C67.0301 97.036 68.0787 96.7473 69.126 96.4639C70.3517 96.1321 71.5869 95.8036 72.5146 95.5713C72.9737 95.4563 73.3821 95.3586 73.6826 95.2959C73.8212 95.267 73.9929 95.2338 74.1504 95.2148C74.1682 95.2127 74.2067 95.2083 74.2598 95.2041C77.2593 94.4772 79.7206 94.8091 81.6689 95.8984C83.5095 96.9276 84.665 98.5045 85.3867 99.9434L85.5254 100.229L85.6045 100.397L101.26 160.921L101.297 161.061L101.312 161.204C101.43 162.277 101.413 163.878 100.667 165.432C99.9094 167.01 98.4958 168.329 96.2627 169.009C96.1936 169.041 96.1436 169.062 96.126 169.069C95.9827 169.127 95.8193 169.179 95.6865 169.22C95.3978 169.308 94.9966 169.419 94.541 169.541C93.6205 169.787 92.382 170.1 91.1484 170.406C89.9638 170.7 88.7733 170.989 87.8555 171.211L88.96 183.867C89.4088 183.752 89.9135 183.624 90.4639 183.483C92.7556 182.897 95.8438 182.106 99.0303 181.291C105.401 179.662 112.17 177.932 113.745 177.534L115.675 177.047L121.414 199.308L130.934 196.849L125.179 174.372L127.17 173.909C130.832 173.057 134.398 172.173 137.868 171.258L139.816 170.744L145.529 193.057L155.041 190.601L149.291 168.333L151.263 167.854C161.323 165.408 169.717 161.054 175.215 155.067C180.658 149.141 183.359 141.52 181.959 132.182C181.099 126.801 177.692 121.748 173.073 117.866C168.449 113.98 162.819 111.444 157.846 110.937L153.311 110.474L156.722 107.45C159.832 104.694 162.106 101.368 163.152 97.4883C164.192 93.6332 164.06 89.0817 162.125 83.7773C159.22 77.2289 154.502 73.3063 148.433 71.3086C142.26 69.277 134.596 69.211 125.922 70.6592L124.114 70.9609L118.477 49.1055L108.954 51.5645ZM138.299 123.647C142.791 123.324 147.374 123.612 151.204 125.262C155.142 126.958 158.186 130.06 159.477 135.03L159.507 135.146L159.522 135.265C160.258 140.705 158.915 145.089 156.248 148.557C153.63 151.961 149.838 154.354 145.858 156.105C141.866 157.862 137.536 159.036 133.694 159.915C129.709 160.827 126.549 161.367 124.294 161.96L122.366 162.467L113.466 129.127L115.409 128.617C119.757 127.477 129.345 124.292 138.299 123.647ZM157.541 135.533C153.036 118.179 124.991 128.172 115.917 130.552L123.784 160.025C132.826 157.646 160.206 155.235 157.541 135.533ZM123.945 83.9893C127.702 83.7396 131.606 84.0639 135.019 85.6631C138.396 87.2457 141.143 90.0104 142.774 94.3115L142.929 94.7324L142.989 94.9023L143.018 95.082C143.802 99.9455 142.769 103.895 140.527 107.034C138.33 110.111 135.086 112.254 131.693 113.801C128.29 115.353 124.592 116.371 121.329 117.118C119.694 117.493 118.145 117.804 116.793 118.078C115.421 118.356 114.284 118.589 113.399 118.815L111.483 119.307L103.272 88.6807L105.253 88.1914C108.711 87.3379 116.555 84.4804 123.945 83.9893ZM141.044 95.4004C135.302 79.1885 113.315 88.262 105.732 90.1338L112.902 116.878C120.453 114.943 143.867 112.913 141.044 95.4004Z" fill="white"/>
12 +</g>
13 +<defs>
14 +<linearGradient id="paint0_linear_11259_64272" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
15 +<stop stop-color="#00D096"/>
16 +<stop offset="1" stop-color="#008F5D"/>
17 +</linearGradient>
18 +<linearGradient id="paint1_linear_11259_64272" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
19 +<stop offset="0.725084" stop-color="#00744C" stop-opacity="0"/>
20 +<stop offset="1" stop-color="#00744C" stop-opacity="0.5"/>
21 +</linearGradient>
22 +<linearGradient id="paint2_linear_11259_64272" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
23 +<stop stop-color="#00FFB7"/>
24 +<stop offset="1" stop-color="#00AC9D"/>
25 +</linearGradient>
26 +<linearGradient id="paint3_linear_11259_64272" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
27 +<stop offset="0.85" stop-color="#00C4E6" stop-opacity="0"/>
28 +<stop offset="1" stop-color="#00C4E6"/>
29 +</linearGradient>
30 +<linearGradient id="paint4_linear_11259_64272" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
31 +<stop stop-color="#56FFCF"/>
32 +<stop offset="0.15" stop-color="#56FFCF" stop-opacity="0"/>
33 +</linearGradient>
34 +<linearGradient id="paint5_linear_11259_64272" x1="122.693" y1="52.6689" x2="122.693" y2="207.745" gradientUnits="userSpaceOnUse">
35 +<stop stop-color="#01A06B"/>
36 +<stop offset="1" stop-color="#029262"/>
37 +</linearGradient>
38 +<linearGradient id="paint6_linear_11259_64272" x1="122.693" y1="46.6689" x2="122.693" y2="201.745" gradientUnits="userSpaceOnUse">
39 +<stop stop-color="white"/>
40 +<stop offset="1" stop-color="#BCFFEC"/>
41 +</linearGradient>
42 +<clipPath id="clip0_11259_64272">
43 +<rect width="250" height="250" fill="white"/>
44 +</clipPath>
45 +</defs>
46 +</svg>
res/pictures/card_icons/chain_icons/bitcoin.svg new
+50
@@ -0,0 +1,50 @@
1 +<svg opacity="0.85" width="250" height="250" viewBox="0 0 250 250" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M246.259 155.241C229.561 222.205 161.73 262.959 94.7502 246.26C27.7977 229.565 -12.9605 161.737 3.74439 94.7758C20.4337 27.8031 88.2651 -12.9547 155.225 3.74061C222.201 20.4359 262.956 88.2719 246.259 155.241Z" fill="url(#paint0_linear_11259_64222)"/>
3 +<path d="M246.259 155.241C229.561 222.205 161.73 262.959 94.7502 246.26C27.7977 229.565 -12.9605 161.737 3.74439 94.7758C20.4337 27.8031 88.2651 -12.9547 155.225 3.74061C222.201 20.4359 262.956 88.2719 246.259 155.241Z" fill="url(#paint1_linear_11259_64222)"/>
4 +<path d="M3.74439 94.7757C20.4338 27.8033 88.2653 -12.9547 155.225 3.74058C222.201 20.4359 262.955 88.272 246.259 155.241L245.858 156.806C228.638 222.319 162.263 262.198 96.3197 246.641L94.7502 246.26C27.7977 229.565 -12.9605 161.737 3.74439 94.7757ZM154.015 8.59214C89.7356 -7.43476 24.6182 31.6917 8.59647 95.9847V95.9866C-7.43974 160.268 31.6872 225.381 95.9593 241.408C160.26 257.44 225.377 218.317 241.407 154.032C257.436 89.7415 218.311 24.6193 154.015 8.59214Z" fill="url(#paint2_linear_11259_64222)"/>
5 +<path d="M3.74439 94.7757C20.4338 27.8033 88.2653 -12.9547 155.225 3.74058C222.201 20.4359 262.955 88.272 246.259 155.241L245.858 156.806C228.638 222.319 162.263 262.198 96.3197 246.641L94.7502 246.26C27.7977 229.565 -12.9605 161.737 3.74439 94.7757ZM154.015 8.59214C89.7356 -7.43476 24.6182 31.6917 8.59647 95.9847V95.9866C-7.43974 160.268 31.6872 225.381 95.9593 241.408C160.26 257.44 225.377 218.317 241.407 154.032C257.436 89.7415 218.311 24.6193 154.015 8.59214Z" fill="url(#paint3_linear_11259_64222)"/>
6 +<path d="M3.74439 94.7757C20.4338 27.8033 88.2653 -12.9547 155.225 3.74058C222.201 20.4359 262.955 88.272 246.259 155.241L245.858 156.806C228.638 222.319 162.263 262.198 96.3197 246.641L94.7502 246.26C27.7977 229.565 -12.9605 161.737 3.74439 94.7757ZM154.015 8.59214C89.7356 -7.43476 24.6182 31.6917 8.59647 95.9847V95.9866C-7.43974 160.268 31.6872 225.381 95.9593 241.408C160.26 257.44 225.377 218.317 241.407 154.032C257.436 89.7415 218.311 24.6193 154.015 8.59214Z" fill="url(#paint4_linear_11259_64222)"/>
7 +<path d="M180.117 113.191C182.605 96.5586 169.941 87.6172 152.625 81.6523L158.242 59.1211L144.527 55.7031L139.059 77.6406C135.453 76.7422 131.75 75.8945 128.07 75.0547L133.578 52.9727L119.871 49.5547L114.25 72.0781C111.266 71.3984 108.336 70.7266 105.492 70.0195L105.508 69.9492L86.5937 65.2266L82.9453 79.875C82.9453 79.875 93.1211 82.207 92.9062 82.3516C98.4609 83.7383 99.4648 87.4141 99.2969 90.3281L92.8984 115.996C93.2812 116.094 93.7773 116.234 94.3242 116.453C93.8672 116.34 93.3789 116.215 92.875 116.094L83.9062 152.051C83.2266 153.738 81.5039 156.27 77.6211 155.309C77.7578 155.508 67.6523 152.82 67.6523 152.82L60.8438 168.52L78.6914 172.969C82.0117 173.801 85.2656 174.672 88.4688 175.492L82.793 198.281L96.4922 201.699L102.113 179.152C105.855 180.168 109.488 181.105 113.043 181.988L107.441 204.43L121.156 207.848L126.832 185.102C150.219 189.527 167.805 187.742 175.207 166.59C181.172 149.559 174.91 139.734 162.605 133.328C171.566 131.262 178.316 125.367 180.117 113.191ZM148.781 157.133C144.543 174.164 115.867 164.957 106.57 162.648L114.102 132.457C123.398 134.777 153.211 139.371 148.781 157.133ZM153.023 112.945C149.156 128.438 125.289 120.566 117.547 118.637L124.375 91.2539C132.117 93.1836 157.051 96.7852 153.023 112.945Z" fill="url(#paint5_linear_11259_64222)"/>
8 +<path d="M180.117 107.191C182.605 90.5586 169.941 81.6172 152.625 75.6523L158.242 53.1211L144.527 49.7031L139.059 71.6406C135.453 70.7422 131.75 69.8945 128.07 69.0547L133.578 46.9727L119.871 43.5547L114.25 66.0781C111.266 65.3984 108.336 64.7266 105.492 64.0195L105.508 63.9492L86.5937 59.2266L82.9453 73.875C82.9453 73.875 93.1211 76.207 92.9062 76.3516C98.4609 77.7383 99.4648 81.4141 99.2969 84.3281L92.8984 109.996C93.2812 110.094 93.7773 110.234 94.3242 110.453C93.8672 110.34 93.3789 110.215 92.875 110.094L83.9062 146.051C83.2266 147.738 81.5039 150.27 77.6211 149.309C77.7578 149.508 67.6523 146.82 67.6523 146.82L60.8438 162.52L78.6914 166.969C82.0117 167.801 85.2656 168.672 88.4688 169.492L82.793 192.281L96.4922 195.699L102.113 173.152C105.855 174.168 109.488 175.105 113.043 175.988L107.441 198.43L121.156 201.848L126.832 179.102C150.219 183.527 167.805 181.742 175.207 160.59C181.172 143.559 174.91 133.734 162.605 127.328C171.566 125.262 178.316 119.367 180.117 107.191ZM148.781 151.133C144.543 168.164 115.867 158.957 106.57 156.648L114.102 126.457C123.398 128.777 153.211 133.371 148.781 151.133ZM153.023 106.945C149.156 122.438 125.289 114.566 117.547 112.637L124.375 85.2539C132.117 87.1836 157.051 90.7852 153.023 106.945Z" fill="white"/>
9 +<path d="M180.117 107.191C182.605 90.5586 169.941 81.6172 152.625 75.6523L158.242 53.1211L144.527 49.7031L139.059 71.6406C135.453 70.7422 131.75 69.8945 128.07 69.0547L133.578 46.9727L119.871 43.5547L114.25 66.0781C111.266 65.3984 108.336 64.7266 105.492 64.0195L105.508 63.9492L86.5937 59.2266L82.9453 73.875C82.9453 73.875 93.1211 76.207 92.9062 76.3516C98.4609 77.7383 99.4648 81.4141 99.2969 84.3281L92.8984 109.996C93.2812 110.094 93.7773 110.234 94.3242 110.453C93.8672 110.34 93.3789 110.215 92.875 110.094L83.9062 146.051C83.2266 147.738 81.5039 150.27 77.6211 149.309C77.7578 149.508 67.6523 146.82 67.6523 146.82L60.8438 162.52L78.6914 166.969C82.0117 167.801 85.2656 168.672 88.4688 169.492L82.793 192.281L96.4922 195.699L102.113 173.152C105.855 174.168 109.488 175.105 113.043 175.988L107.441 198.43L121.156 201.848L126.832 179.102C150.219 183.527 167.805 181.742 175.207 160.59C181.172 143.559 174.91 133.734 162.605 127.328C171.566 125.262 178.316 119.367 180.117 107.191ZM148.781 151.133C144.543 168.164 115.867 158.957 106.57 156.648L114.102 126.457C123.398 128.777 153.211 133.371 148.781 151.133ZM153.023 106.945C149.156 122.438 125.289 114.566 117.547 112.637L124.375 85.2539C132.117 87.1836 157.051 90.7852 153.023 106.945Z" fill="url(#paint6_linear_11259_64222)"/>
10 +<path d="M180.117 107.191C182.605 90.5586 169.941 81.6172 152.625 75.6523L158.242 53.1211L144.527 49.7031L139.059 71.6406C135.453 70.7422 131.75 69.8945 128.07 69.0547L133.578 46.9727L119.871 43.5547L114.25 66.0781C111.266 65.3984 108.336 64.7266 105.492 64.0195L105.508 63.9492L86.5937 59.2266L82.9453 73.875C82.9453 73.875 93.1211 76.207 92.9062 76.3516C98.4609 77.7383 99.4648 81.4141 99.2969 84.3281L92.8984 109.996C93.2812 110.094 93.7773 110.234 94.3242 110.453C93.8672 110.34 93.3789 110.215 92.875 110.094L83.9062 146.051C83.2266 147.738 81.5039 150.27 77.6211 149.309C77.7578 149.508 67.6523 146.82 67.6523 146.82L60.8438 162.52L78.6914 166.969C82.0117 167.801 85.2656 168.672 88.4688 169.492L82.793 192.281L96.4922 195.699L102.113 173.152C105.855 174.168 109.488 175.105 113.043 175.988L107.441 198.43L121.156 201.848L126.832 179.102C150.219 183.527 167.805 181.742 175.207 160.59C181.172 143.559 174.91 133.734 162.605 127.328C171.566 125.262 178.316 119.367 180.117 107.191ZM148.781 151.133C144.543 168.164 115.867 158.957 106.57 156.648L114.102 126.457C123.398 128.777 153.211 133.371 148.781 151.133ZM153.023 106.945C149.156 122.438 125.289 114.566 117.547 112.637L124.375 85.2539C132.117 87.1836 157.051 90.7852 153.023 106.945Z" fill="url(#paint7_linear_11259_64222)"/>
11 +<path d="M133.578 46.9727L128.07 69.0547C130.83 69.6846 133.603 70.3188 136.338 70.9756L139.059 71.6406L144.527 49.7031L158.242 53.1211L152.625 75.6523C169.941 81.6172 182.605 90.5586 180.117 107.191C178.316 119.367 171.566 125.262 162.605 127.328C174.91 133.734 181.172 143.559 175.207 160.59C167.805 181.742 150.219 183.527 126.832 179.102L121.156 201.848L107.441 198.43L113.043 175.988C109.488 175.105 105.855 174.168 102.113 173.152L96.4922 195.699L82.793 192.281L88.4687 169.492C85.2656 168.672 82.0117 167.801 78.6914 166.969L60.8438 162.52L67.6523 146.82C67.6523 146.82 77.7578 149.508 77.6211 149.309C81.5039 150.27 83.2266 147.738 83.9062 146.051L92.875 110.094C93.3789 110.215 93.8672 110.34 94.3242 110.453C93.7773 110.234 93.2812 110.094 92.8984 109.996L99.2969 84.3281C99.4648 81.4141 98.4609 77.7383 92.9062 76.3516C93.121 76.2071 82.9526 73.8767 82.9453 73.875L86.5937 59.2266L105.508 63.9492L105.492 64.0195C106.914 64.3731 108.357 64.7183 109.818 65.0596L114.25 66.0781L119.871 43.5547L133.578 46.9727ZM115.716 68.4629L113.806 68.0283C110.822 67.3488 107.875 66.6723 105.01 65.96L103.116 65.4902L103.132 65.417L88.0498 61.6514L85.376 72.3857C86.271 72.5942 87.373 72.8521 88.4707 73.1143C89.7317 73.4154 90.9987 73.7239 91.9414 73.9678C92.4077 74.0884 92.819 74.1996 93.1162 74.2891C93.2529 74.3302 93.4218 74.3832 93.5703 74.4424C93.5864 74.4488 93.625 74.4645 93.6777 74.4883C96.6943 75.2998 98.7248 76.7859 99.9365 78.6953C101.159 80.6223 101.393 82.7318 101.294 84.4434L101.283 84.6299L101.237 84.8115L94.8389 110.479L94.4873 110.392L94.457 110.488L94.8154 110.578L85.8467 146.535L85.8135 146.669L85.7617 146.798C85.3483 147.824 84.5623 149.263 83.1367 150.294C81.6823 151.345 79.7639 151.821 77.4209 151.312C77.3459 151.306 77.2917 151.3 77.2715 151.297C77.1278 151.278 76.9653 151.246 76.8271 151.218C76.5301 151.156 76.1201 151.061 75.6523 150.948C74.7084 150.72 73.4451 150.4 72.1885 150.076C70.9656 149.761 69.7399 149.439 68.8027 149.192L63.6172 161.149L79.1748 165.028H79.1777C82.4962 165.86 85.7982 166.744 88.9648 167.555L90.8896 168.048L85.2158 190.824L95.0352 193.274L100.667 170.688L102.637 171.223C106.363 172.234 109.983 173.167 113.525 174.047L115.469 174.53L109.866 196.973L119.699 199.423L125.349 176.785L127.204 177.137C138.83 179.337 148.668 179.913 156.426 177.526C164.002 175.195 169.806 169.969 173.319 159.93C176.191 151.731 176.021 145.564 173.925 140.776C171.817 135.962 167.608 132.188 161.682 129.103L156.872 126.598L162.156 125.379C166.333 124.416 169.877 122.591 172.583 119.688C175.288 116.786 177.285 112.668 178.139 106.898L178.14 106.896C179.286 99.2333 176.974 93.4637 172.378 88.8301C167.682 84.0963 160.534 80.4916 151.974 77.543L150.241 76.9463L155.817 54.5771L145.983 52.127L140.516 74.0645L138.575 73.5811C134.992 72.6881 131.307 71.8452 127.625 71.0049L125.636 70.5508L131.153 48.4287L121.327 45.9785L115.716 68.4629ZM114.586 124.517C119.032 125.626 129.133 127.425 137.415 131.184C141.573 133.071 145.51 135.547 148.114 138.879C150.791 142.304 151.986 146.549 150.722 151.617C149.498 156.532 146.449 159.618 142.505 161.338C138.664 163.013 134.032 163.378 129.469 163.141C120.358 162.666 110.587 159.707 106.088 158.59L104.146 158.107L112.646 124.032L114.586 124.517ZM106.57 156.648C115.867 158.957 144.543 168.164 148.781 151.133C153.211 133.371 123.398 128.777 114.102 126.457L106.57 156.648ZM124.858 83.3135C128.507 84.2229 137.032 85.6804 143.967 88.9541C147.46 90.603 150.787 92.8106 152.961 95.8447C155.198 98.9667 156.111 102.826 154.964 107.429C153.849 111.893 151.23 114.779 147.812 116.44C144.489 118.055 140.526 118.465 136.665 118.323C128.976 118.041 120.771 115.501 117.063 114.577L115.122 114.094L122.918 82.8301L124.858 83.3135ZM117.547 112.637C125.289 114.566 149.156 122.437 153.023 106.945C157.051 90.7852 132.117 87.1836 124.375 85.2539L117.547 112.637Z" fill="url(#paint8_linear_11259_64222)"/>
12 +<defs>
13 +<linearGradient id="paint0_linear_11259_64222" x1="125" y1="0" x2="125" y2="250.003" gradientUnits="userSpaceOnUse">
14 +<stop stop-color="#F7BC1A"/>
15 +<stop offset="1" stop-color="#FF6A00"/>
16 +</linearGradient>
17 +<linearGradient id="paint1_linear_11259_64222" x1="125" y1="0" x2="125" y2="250.003" gradientUnits="userSpaceOnUse">
18 +<stop offset="0.725084" stop-color="#C94701" stop-opacity="0"/>
19 +<stop offset="1" stop-color="#C94701" stop-opacity="0.3"/>
20 +</linearGradient>
21 +<linearGradient id="paint2_linear_11259_64222" x1="125" y1="0.000349739" x2="125" y2="250.003" gradientUnits="userSpaceOnUse">
22 +<stop stop-color="#FFE091"/>
23 +<stop offset="1" stop-color="#FF9735"/>
24 +</linearGradient>
25 +<linearGradient id="paint3_linear_11259_64222" x1="125" y1="0.000349739" x2="125" y2="250.003" gradientUnits="userSpaceOnUse">
26 +<stop offset="0.85" stop-color="#FFA54D" stop-opacity="0"/>
27 +<stop offset="1" stop-color="#FFA54D"/>
28 +</linearGradient>
29 +<linearGradient id="paint4_linear_11259_64222" x1="125" y1="0.000349739" x2="125" y2="250.003" gradientUnits="userSpaceOnUse">
30 +<stop stop-color="#FFF3DA"/>
31 +<stop offset="0.15" stop-color="#FFF3DA" stop-opacity="0"/>
32 +</linearGradient>
33 +<linearGradient id="paint5_linear_11259_64222" x1="120.637" y1="49.5547" x2="120.637" y2="207.848" gradientUnits="userSpaceOnUse">
34 +<stop stop-color="#F89A02"/>
35 +<stop offset="1" stop-color="#F56600"/>
36 +</linearGradient>
37 +<linearGradient id="paint6_linear_11259_64222" x1="120.637" y1="43.5547" x2="120.637" y2="201.848" gradientUnits="userSpaceOnUse">
38 +<stop stop-color="white"/>
39 +<stop offset="1" stop-color="#FFF1CF"/>
40 +</linearGradient>
41 +<linearGradient id="paint7_linear_11259_64222" x1="120.637" y1="43.5547" x2="120.637" y2="201.848" gradientUnits="userSpaceOnUse">
42 +<stop stop-color="white"/>
43 +<stop offset="1" stop-color="#FEEABD"/>
44 +</linearGradient>
45 +<linearGradient id="paint8_linear_11259_64222" x1="120.637" y1="43.5547" x2="120.637" y2="201.848" gradientUnits="userSpaceOnUse">
46 +<stop stop-color="white"/>
47 +<stop offset="1" stop-color="white"/>
48 +</linearGradient>
49 +</defs>
50 +</svg>
res/pictures/card_icons/chain_icons/bnb.svg new
+39
@@ -0,0 +1,39 @@
1 +<svg opacity="0.85" width="250" height="250" viewBox="0 0 250 250" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M246.258 155.241C229.561 222.205 161.73 262.959 94.7502 246.26C27.7977 229.565 -12.9605 161.737 3.74439 94.7758C20.4337 27.8031 88.2651 -12.9547 155.225 3.74061C222.201 20.4359 262.956 88.2719 246.258 155.241Z" fill="url(#paint0_linear_14353_354078)"/>
3 +<path d="M246.258 155.241C229.561 222.205 161.73 262.959 94.7502 246.26C27.7977 229.565 -12.9605 161.737 3.74439 94.7758C20.4337 27.8031 88.2651 -12.9547 155.225 3.74061C222.201 20.4359 262.956 88.2719 246.258 155.241Z" fill="url(#paint1_linear_14353_354078)"/>
4 +<path d="M3.74439 94.7757C20.4338 27.8033 88.2653 -12.9547 155.225 3.74058C222.201 20.4359 262.955 88.272 246.259 155.241L245.858 156.806C228.638 222.319 162.263 262.198 96.3197 246.641L94.7502 246.26C27.7977 229.565 -12.9605 161.737 3.74439 94.7757ZM154.015 8.59214C89.7356 -7.43476 24.6182 31.6917 8.59647 95.9847V95.9866C-7.43974 160.268 31.6872 225.381 95.9593 241.408C160.26 257.44 225.377 218.317 241.407 154.032C257.436 89.7415 218.311 24.6193 154.015 8.59214Z" fill="url(#paint2_linear_14353_354078)"/>
5 +<path d="M3.74439 94.7757C20.4338 27.8033 88.2653 -12.9547 155.225 3.74058C222.201 20.4359 262.955 88.272 246.259 155.241L245.858 156.806C228.638 222.319 162.263 262.198 96.3197 246.641L94.7502 246.26C27.7977 229.565 -12.9605 161.737 3.74439 94.7757ZM154.015 8.59214C89.7356 -7.43476 24.6182 31.6917 8.59647 95.9847V95.9866C-7.43974 160.268 31.6872 225.381 95.9593 241.408C160.26 257.44 225.377 218.317 241.407 154.032C257.436 89.7415 218.311 24.6193 154.015 8.59214Z" fill="url(#paint3_linear_14353_354078)"/>
6 +<path d="M79.2083 68.3049L125.258 41.5L171.307 68.3049L154.377 78.2073L125.258 61.3049L96.1383 78.2073L79.2083 68.3049ZM171.307 102.11L154.377 92.2073L125.258 109.11L96.1383 92.2073L79.2083 102.11V121.915L108.328 138.817V172.622L125.258 182.524L142.188 172.622V138.817L171.307 121.915V102.11ZM171.307 155.72V135.915L154.377 145.817V165.622L171.307 155.72ZM183.328 162.72L154.208 179.622V199.427L200.258 172.622V119.012L183.328 128.915V162.72ZM166.398 85.2073L183.328 95.1098V114.915L200.258 105.012V85.2073L183.328 75.3049L166.398 85.2073ZM108.328 186.793V206.598L125.258 216.5L142.188 206.598V186.793L125.258 196.695L108.328 186.793ZM79.2083 155.72L96.1383 165.622V145.817L79.2083 135.915V155.72ZM108.328 85.2073L125.258 95.1098L142.188 85.2073L125.258 75.3049L108.328 85.2073ZM67.1878 95.1098L84.1178 85.2073L67.1878 75.3049L50.2578 85.2073V105.012L67.1878 114.915V95.1098ZM67.1878 128.915L50.2578 119.012V172.622L96.3074 199.427V179.622L67.1878 162.72V128.915Z" fill="#F0B90B"/>
7 +<path d="M79.2083 68.3049L125.258 41.5L171.307 68.3049L154.377 78.2073L125.258 61.3049L96.1383 78.2073L79.2083 68.3049ZM171.307 102.11L154.377 92.2073L125.258 109.11L96.1383 92.2073L79.2083 102.11V121.915L108.328 138.817V172.622L125.258 182.524L142.188 172.622V138.817L171.307 121.915V102.11ZM171.307 155.72V135.915L154.377 145.817V165.622L171.307 155.72ZM183.328 162.72L154.208 179.622V199.427L200.258 172.622V119.012L183.328 128.915V162.72ZM166.398 85.2073L183.328 95.1098V114.915L200.258 105.012V85.2073L183.328 75.3049L166.398 85.2073ZM108.328 186.793V206.598L125.258 216.5L142.188 206.598V186.793L125.258 196.695L108.328 186.793ZM79.2083 155.72L96.1383 165.622V145.817L79.2083 135.915V155.72ZM108.328 85.2073L125.258 95.1098L142.188 85.2073L125.258 75.3049L108.328 85.2073ZM67.1878 95.1098L84.1178 85.2073L67.1878 75.3049L50.2578 85.2073V105.012L67.1878 114.915V95.1098ZM67.1878 128.915L50.2578 119.012V172.622L96.3074 199.427V179.622L67.1878 162.72V128.915Z" fill="#F1B80B"/>
8 +<path d="M79.2083 68.3049L125.258 41.5L171.307 68.3049L154.377 78.2073L125.258 61.3049L96.1383 78.2073L79.2083 68.3049ZM171.307 102.11L154.377 92.2073L125.258 109.11L96.1383 92.2073L79.2083 102.11V121.915L108.328 138.817V172.622L125.258 182.524L142.188 172.622V138.817L171.307 121.915V102.11ZM171.307 155.72V135.915L154.377 145.817V165.622L171.307 155.72ZM183.328 162.72L154.208 179.622V199.427L200.258 172.622V119.012L183.328 128.915V162.72ZM166.398 85.2073L183.328 95.1098V114.915L200.258 105.012V85.2073L183.328 75.3049L166.398 85.2073ZM108.328 186.793V206.598L125.258 216.5L142.188 206.598V186.793L125.258 196.695L108.328 186.793ZM79.2083 155.72L96.1383 165.622V145.817L79.2083 135.915V155.72ZM108.328 85.2073L125.258 95.1098L142.188 85.2073L125.258 75.3049L108.328 85.2073ZM67.1878 95.1098L84.1178 85.2073L67.1878 75.3049L50.2578 85.2073V105.012L67.1878 114.915V95.1098ZM67.1878 128.915L50.2578 119.012V172.622L96.3074 199.427V179.622L67.1878 162.72V128.915Z" fill="black"/>
9 +<path d="M79.2083 64.3049L125.258 37.5L171.307 64.3049L154.377 74.2073L125.258 57.3049L96.1383 74.2073L79.2083 64.3049ZM171.307 98.1098L154.377 88.2073L125.258 105.11L96.1383 88.2073L79.2083 98.1098V117.915L108.328 134.817V168.622L125.258 178.524L142.188 168.622V134.817L171.307 117.915V98.1098ZM171.307 151.72V131.915L154.377 141.817V161.622L171.307 151.72ZM183.328 158.72L154.208 175.622V195.427L200.258 168.622V115.012L183.328 124.915V158.72ZM166.398 81.2073L183.328 91.1098V110.915L200.258 101.012V81.2073L183.328 71.3049L166.398 81.2073ZM108.328 182.793V202.598L125.258 212.5L142.188 202.598V182.793L125.258 192.695L108.328 182.793ZM79.2083 151.72L96.1383 161.622V141.817L79.2083 131.915V151.72ZM108.328 81.2073L125.258 91.1098L142.188 81.2073L125.258 71.3049L108.328 81.2073ZM67.1878 91.1098L84.1178 81.2073L67.1878 71.3049L50.2578 81.2073V101.012L67.1878 110.915V91.1098ZM67.1878 124.915L50.2578 115.012V168.622L96.3074 195.427V175.622L67.1878 158.72V124.915Z" fill="#F0B90B"/>
10 +<path d="M79.2083 64.3049L125.258 37.5L171.307 64.3049L154.377 74.2073L125.258 57.3049L96.1383 74.2073L79.2083 64.3049ZM171.307 98.1098L154.377 88.2073L125.258 105.11L96.1383 88.2073L79.2083 98.1098V117.915L108.328 134.817V168.622L125.258 178.524L142.188 168.622V134.817L171.307 117.915V98.1098ZM171.307 151.72V131.915L154.377 141.817V161.622L171.307 151.72ZM183.328 158.72L154.208 175.622V195.427L200.258 168.622V115.012L183.328 124.915V158.72ZM166.398 81.2073L183.328 91.1098V110.915L200.258 101.012V81.2073L183.328 71.3049L166.398 81.2073ZM108.328 182.793V202.598L125.258 212.5L142.188 202.598V182.793L125.258 192.695L108.328 182.793ZM79.2083 151.72L96.1383 161.622V141.817L79.2083 131.915V151.72ZM108.328 81.2073L125.258 91.1098L142.188 81.2073L125.258 71.3049L108.328 81.2073ZM67.1878 91.1098L84.1178 81.2073L67.1878 71.3049L50.2578 81.2073V101.012L67.1878 110.915V91.1098ZM67.1878 124.915L50.2578 115.012V168.622L96.3074 195.427V175.622L67.1878 158.72V124.915Z" fill="#F1B80B"/>
11 +<path d="M79.2083 64.3049L125.258 37.5L171.307 64.3049L154.377 74.2073L125.258 57.3049L96.1383 74.2073L79.2083 64.3049ZM171.307 98.1098L154.377 88.2073L125.258 105.11L96.1383 88.2073L79.2083 98.1098V117.915L108.328 134.817V168.622L125.258 178.524L142.188 168.622V134.817L171.307 117.915V98.1098ZM171.307 151.72V131.915L154.377 141.817V161.622L171.307 151.72ZM183.328 158.72L154.208 175.622V195.427L200.258 168.622V115.012L183.328 124.915V158.72ZM166.398 81.2073L183.328 91.1098V110.915L200.258 101.012V81.2073L183.328 71.3049L166.398 81.2073ZM108.328 182.793V202.598L125.258 212.5L142.188 202.598V182.793L125.258 192.695L108.328 182.793ZM79.2083 151.72L96.1383 161.622V141.817L79.2083 131.915V151.72ZM108.328 81.2073L125.258 91.1098L142.188 81.2073L125.258 71.3049L108.328 81.2073ZM67.1878 91.1098L84.1178 81.2073L67.1878 71.3049L50.2578 81.2073V101.012L67.1878 110.915V91.1098ZM67.1878 124.915L50.2578 115.012V168.622L96.3074 195.427V175.622L67.1878 158.72V124.915Z" fill="url(#paint4_linear_14353_354078)"/>
12 +<path d="M141.188 202.023L125.258 211.341L109.328 202.023V184.536L124.753 193.559L125.258 193.854L125.763 193.559L141.188 184.536V202.023ZM66.1875 125.488V159.295L66.6855 159.584L95.3076 176.197V193.688L51.2578 168.047V116.755L66.1875 125.488ZM199.258 168.047L155.208 193.688V176.197L183.83 159.584L184.328 159.295V125.488L199.258 116.755V168.047ZM95.1387 142.391V159.878L80.208 151.146V133.658L95.1387 142.391ZM170.308 151.146L155.377 159.878V142.391L170.308 133.658V151.146ZM82.1367 81.207L66.6826 90.2471L66.1875 90.5361V109.171L51.2578 100.438V81.7803L67.1875 72.4629L82.1367 81.207ZM140.206 81.207L125.258 89.9512L110.309 81.207L125.258 72.4629L140.206 81.207ZM169.323 64.3066L154.374 73.0498L125.76 56.4404L125.258 56.1484L124.756 56.4404L96.1406 73.0498L81.1914 64.3066L125.258 38.6562L169.323 64.3066ZM109.328 134.241L108.83 133.952L80.208 117.339V98.6826L96.1396 89.3643L124.756 105.975L125.258 106.266L125.76 105.975L154.375 89.3643L170.308 98.6826V117.339L141.686 133.952L141.188 134.241V168.048L125.258 177.365L109.328 168.048V134.241ZM184.328 90.5361L183.833 90.2471L168.378 81.207L183.327 72.4629L199.258 81.7803V100.438L184.328 109.171V90.5361Z" stroke="url(#paint5_linear_14353_354078)" stroke-width="2"/>
13 +<defs>
14 +<linearGradient id="paint0_linear_14353_354078" x1="125" y1="0" x2="125" y2="250.003" gradientUnits="userSpaceOnUse">
15 +<stop stop-color="#252525"/>
16 +<stop offset="1" stop-color="#0C0C0C"/>
17 +</linearGradient>
18 +<linearGradient id="paint1_linear_14353_354078" x1="125" y1="0" x2="125" y2="250.003" gradientUnits="userSpaceOnUse">
19 +<stop stop-color="#231F10"/>
20 +<stop offset="1" stop-color="#0E0B03"/>
21 +</linearGradient>
22 +<linearGradient id="paint2_linear_14353_354078" x1="125" y1="0.000349739" x2="125" y2="250.003" gradientUnits="userSpaceOnUse">
23 +<stop offset="0.85" stop-color="#231E11"/>
24 +<stop offset="1" stop-color="#523D00"/>
25 +</linearGradient>
26 +<linearGradient id="paint3_linear_14353_354078" x1="125" y1="0.000349739" x2="125" y2="250.003" gradientUnits="userSpaceOnUse">
27 +<stop stop-color="#8A8168"/>
28 +<stop offset="0.15" stop-color="#8A8168" stop-opacity="0"/>
29 +</linearGradient>
30 +<linearGradient id="paint4_linear_14353_354078" x1="125.258" y1="37.5" x2="125.258" y2="212.5" gradientUnits="userSpaceOnUse">
31 +<stop stop-color="#F1B80B"/>
32 +<stop offset="1" stop-color="#9F7800"/>
33 +</linearGradient>
34 +<linearGradient id="paint5_linear_14353_354078" x1="125.258" y1="37.5" x2="125.258" y2="212.5" gradientUnits="userSpaceOnUse">
35 +<stop stop-color="#FFE69B"/>
36 +<stop offset="1" stop-color="#D69F00"/>
37 +</linearGradient>
38 +</defs>
39 +</svg>
res/pictures/card_icons/chain_icons/decred.svg new
+69
@@ -0,0 +1,69 @@
1 +<svg opacity="0.85" width="250" height="250" viewBox="0 0 250 250" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M250.004 125C250.004 194.036 194.04 250 125.004 250C55.9683 250 0.00390625 194.036 0.00390625 125C0.00390625 55.9644 55.9683 0 125.004 0C194.04 0 250.004 55.9644 250.004 125Z" fill="url(#paint0_linear_18222_929590)"/>
3 +<path d="M250.004 125C250.004 194.036 194.04 250 125.004 250C55.9683 250 0.00390625 194.036 0.00390625 125C0.00390625 55.9644 55.9683 0 125.004 0C194.04 0 250.004 55.9644 250.004 125Z" fill="url(#paint1_linear_18222_929590)"/>
4 +<path d="M250.004 125C250.004 194.036 194.04 250 125.004 250C55.9683 250 0.00390625 194.036 0.00390625 125C0.00390625 55.9644 55.9683 0 125.004 0C194.04 0 250.004 55.9644 250.004 125Z" fill="url(#paint2_linear_18222_929590)"/>
5 +<path d="M250.004 125C250.004 194.036 194.04 250 125.004 250C55.9683 250 0.00390625 194.036 0.00390625 125C0.00390625 55.9644 55.9683 0 125.004 0C194.04 0 250.004 55.9644 250.004 125Z" fill="url(#paint3_linear_18222_929590)"/>
6 +<path d="M245.004 125C245.004 58.7258 191.278 5 125.004 5C58.7297 5 5.00391 58.7258 5.00391 125C5.00391 191.274 58.7297 245 125.004 245V250C55.9683 250 0.00390625 194.036 0.00390625 125C0.00390625 55.9644 55.9683 0 125.004 0C194.039 0 250.004 55.9644 250.004 125C250.004 194.036 194.039 250 125.004 250V245C191.278 245 245.004 191.274 245.004 125Z" fill="url(#paint4_linear_18222_929590)"/>
7 +<path d="M245.004 125C245.004 58.7258 191.278 5 125.004 5C58.7297 5 5.00391 58.7258 5.00391 125C5.00391 191.274 58.7297 245 125.004 245V250C55.9683 250 0.00390625 194.036 0.00390625 125C0.00390625 55.9644 55.9683 0 125.004 0C194.039 0 250.004 55.9644 250.004 125C250.004 194.036 194.039 250 125.004 250V245C191.278 245 245.004 191.274 245.004 125Z" fill="url(#paint5_linear_18222_929590)"/>
8 +<path d="M245.004 125C245.004 58.7258 191.278 5 125.004 5C58.7297 5 5.00391 58.7258 5.00391 125C5.00391 191.274 58.7297 245 125.004 245V250C55.9683 250 0.00390625 194.036 0.00390625 125C0.00390625 55.9644 55.9683 0 125.004 0C194.039 0 250.004 55.9644 250.004 125C250.004 194.036 194.039 250 125.004 250V245C191.278 245 245.004 191.274 245.004 125Z" fill="url(#paint6_linear_18222_929590)"/>
9 +<path d="M134.246 115.545H97.4163C90.8341 115.545 84.5218 118.16 79.8675 122.814C75.2132 127.469 72.598 133.781 72.598 140.363C72.598 146.946 75.2131 153.259 79.8675 157.913C84.5218 162.567 90.8342 165.183 97.4163 165.183H109.134L134.235 186.966H97.4163C86.6096 186.963 76.1398 183.206 67.7972 176.337C59.4545 169.468 53.7572 159.913 51.681 149.308C49.6047 138.702 51.2779 127.704 56.4144 118.196C61.5508 108.688 69.8312 101.26 79.8392 97.1826L50.8255 71.9658H84.0814L134.246 115.545Z" fill="url(#paint7_linear_18222_929590)"/>
10 +<path d="M153.095 71.9658C163.902 71.9682 174.372 75.7254 182.715 82.5947C191.058 89.464 196.754 99.0186 198.83 109.624C200.907 120.23 199.233 131.227 194.097 140.735C188.961 150.243 180.68 157.672 170.672 161.749L199.709 186.954H166.453L116.266 143.387H153.095C159.677 143.387 165.99 140.772 170.645 136.117C175.299 131.463 177.914 125.15 177.914 118.568C177.914 111.986 175.299 105.673 170.645 101.019C165.99 96.3642 159.677 93.749 153.095 93.749H141.377L116.266 71.9658H153.095Z" fill="url(#paint8_linear_18222_929590)"/>
11 +<path d="M134.249 111.546H97.4202C90.8379 111.546 84.5248 114.16 79.8704 118.814C75.216 123.469 72.6019 129.782 72.6019 136.364C72.6019 142.947 75.216 149.26 79.8704 153.914C84.5248 158.568 90.8379 161.183 97.4202 161.183H109.138L134.238 182.967H97.4202C86.6134 182.964 76.1428 179.207 67.8001 172.338C59.4576 165.469 53.7612 155.914 51.6849 145.309C49.6086 134.703 51.2818 123.705 56.4183 114.197C61.5547 104.689 69.835 97.261 79.8431 93.1836L50.8294 67.9668H84.0853L134.249 111.546ZM153.097 67.9668C163.904 67.9692 174.374 71.7264 182.717 78.5957C191.06 85.465 196.756 95.0196 198.832 105.625C200.909 116.231 199.235 127.228 194.099 136.736C188.962 146.244 180.682 153.673 170.674 157.75L199.711 182.955H166.455L116.268 139.388H153.097C159.679 139.388 165.992 136.773 170.647 132.118C175.301 127.464 177.916 121.151 177.916 114.569C177.916 107.987 175.301 101.674 170.647 97.0195C165.992 92.3651 159.679 89.75 153.097 89.75H141.379L116.268 67.9668H153.097Z" fill="url(#paint9_linear_18222_929590)"/>
12 +<path d="M134.249 111.546H97.4202C90.8379 111.546 84.5248 114.16 79.8704 118.814C75.216 123.469 72.6019 129.782 72.6019 136.364C72.6019 142.947 75.216 149.26 79.8704 153.914C84.5248 158.568 90.8379 161.183 97.4202 161.183H109.138L134.238 182.967H97.4202C86.6134 182.964 76.1428 179.207 67.8001 172.338C59.4576 165.469 53.7612 155.914 51.6849 145.309C49.6086 134.703 51.2818 123.705 56.4183 114.197C61.5547 104.689 69.835 97.261 79.8431 93.1836L50.8294 67.9668H84.0853L134.249 111.546ZM153.097 67.9668C163.904 67.9692 174.374 71.7264 182.717 78.5957C191.06 85.465 196.756 95.0196 198.832 105.625C200.909 116.231 199.235 127.228 194.099 136.736C188.962 146.244 180.682 153.673 170.674 157.75L199.711 182.955H166.455L116.268 139.388H153.097C159.679 139.388 165.992 136.773 170.647 132.118C175.301 127.464 177.916 121.151 177.916 114.569C177.916 107.987 175.301 101.674 170.647 97.0195C165.992 92.3651 159.679 89.75 153.097 89.75H141.379L116.268 67.9668H153.097Z" fill="url(#paint10_linear_18222_929590)"/>
13 +<path d="M134.25 111.546H97.4202V109.546H128.899L83.3382 69.9668H56.179L83.6107 93.8086L80.598 95.0361C71.0195 98.9385 63.0941 106.048 58.178 115.147C53.262 124.248 51.6606 134.774 53.6478 144.925C55.635 155.075 61.0879 164.219 69.0726 170.794C77.0571 177.368 87.0775 180.964 97.4202 180.967V182.967C86.6136 182.964 76.1437 179.207 67.8011 172.338C59.4584 165.469 53.7611 155.914 51.6849 145.309C49.6086 134.703 51.2818 123.705 56.4183 114.197C61.5547 104.689 69.8351 97.261 79.8431 93.1836L50.8294 67.9668H84.0853L134.25 111.546ZM70.6019 136.364C70.6019 129.252 73.428 122.431 78.4573 117.401C83.4867 112.372 90.3075 109.546 97.4202 109.546V111.546C90.838 111.546 84.5257 114.161 79.8714 118.815C75.2171 123.47 72.6019 129.782 72.6019 136.364C72.6019 142.947 75.217 149.26 79.8714 153.914C84.5257 158.568 90.8381 161.184 97.4202 161.184H109.138L134.239 182.967H97.4202V180.967H128.883L108.391 163.184H97.4202C90.3075 163.184 83.4866 160.357 78.4573 155.328C73.4279 150.299 70.6019 143.477 70.6019 136.364ZM153.099 67.9668C163.906 67.9692 174.376 71.7264 182.719 78.5957C191.062 85.465 196.758 95.0196 198.834 105.625C200.911 116.231 199.237 127.228 194.101 136.736C188.964 146.244 180.684 153.673 170.676 157.75L199.713 182.955H166.457L116.27 139.388H153.099C159.681 139.388 165.994 136.773 170.649 132.118C175.303 127.464 177.918 121.151 177.918 114.569C177.918 107.987 175.303 101.674 170.649 97.0195C165.994 92.3652 159.681 89.75 153.099 89.75V87.75C160.212 87.75 167.033 90.5761 172.063 95.6055C176.935 100.478 179.74 107.032 179.91 113.903L179.918 114.569C179.918 121.682 177.092 128.503 172.063 133.532C167.033 138.562 160.212 141.388 153.099 141.388H121.625L167.205 180.955H194.357L166.907 157.126L169.921 155.897C179.5 151.995 187.425 144.886 192.341 135.786C197.257 126.686 198.859 116.159 196.871 106.009C194.884 95.8586 189.432 86.7141 181.448 80.1396C173.712 73.7705 164.066 70.1967 154.067 69.9775L153.099 69.9668H121.627L142.127 87.75H153.099V89.75H141.381L116.27 67.9668H153.099Z" fill="url(#paint11_linear_18222_929590)"/>
14 +<path d="M134.25 111.546H97.4202V109.546H128.899L83.3382 69.9668H56.179L83.6107 93.8086L80.598 95.0361C71.0195 98.9385 63.0941 106.048 58.178 115.147C53.262 124.248 51.6606 134.774 53.6478 144.925C55.635 155.075 61.0879 164.219 69.0726 170.794C77.0571 177.368 87.0775 180.964 97.4202 180.967V182.967C86.6136 182.964 76.1437 179.207 67.8011 172.338C59.4584 165.469 53.7611 155.914 51.6849 145.309C49.6086 134.703 51.2818 123.705 56.4183 114.197C61.5547 104.689 69.8351 97.261 79.8431 93.1836L50.8294 67.9668H84.0853L134.25 111.546ZM70.6019 136.364C70.6019 129.252 73.428 122.431 78.4573 117.401C83.4867 112.372 90.3075 109.546 97.4202 109.546V111.546C90.838 111.546 84.5257 114.161 79.8714 118.815C75.2171 123.47 72.6019 129.782 72.6019 136.364C72.6019 142.947 75.217 149.26 79.8714 153.914C84.5257 158.568 90.8381 161.184 97.4202 161.184H109.138L134.239 182.967H97.4202V180.967H128.883L108.391 163.184H97.4202C90.3075 163.184 83.4866 160.357 78.4573 155.328C73.4279 150.299 70.6019 143.477 70.6019 136.364ZM153.099 67.9668C163.906 67.9692 174.376 71.7264 182.719 78.5957C191.062 85.465 196.758 95.0196 198.834 105.625C200.911 116.231 199.237 127.228 194.101 136.736C188.964 146.244 180.684 153.673 170.676 157.75L199.713 182.955H166.457L116.27 139.388H153.099C159.681 139.388 165.994 136.773 170.649 132.118C175.303 127.464 177.918 121.151 177.918 114.569C177.918 107.987 175.303 101.674 170.649 97.0195C165.994 92.3652 159.681 89.75 153.099 89.75V87.75C160.212 87.75 167.033 90.5761 172.063 95.6055C176.935 100.478 179.74 107.032 179.91 113.903L179.918 114.569C179.918 121.682 177.092 128.503 172.063 133.532C167.033 138.562 160.212 141.388 153.099 141.388H121.625L167.205 180.955H194.357L166.907 157.126L169.921 155.897C179.5 151.995 187.425 144.886 192.341 135.786C197.257 126.686 198.859 116.159 196.871 106.009C194.884 95.8586 189.432 86.7141 181.448 80.1396C173.712 73.7705 164.066 70.1967 154.067 69.9775L153.099 69.9668H121.627L142.127 87.75H153.099V89.75H141.381L116.27 67.9668H153.099Z" fill="url(#paint12_linear_18222_929590)"/>
15 +<defs>
16 +<linearGradient id="paint0_linear_18222_929590" x1="125.004" y1="0" x2="125.004" y2="250" gradientUnits="userSpaceOnUse">
17 +<stop stop-color="#033DBC"/>
18 +<stop offset="1" stop-color="#000D62"/>
19 +</linearGradient>
20 +<linearGradient id="paint1_linear_18222_929590" x1="125.004" y1="0" x2="125.004" y2="250" gradientUnits="userSpaceOnUse">
21 +<stop stop-color="#0043D3"/>
22 +<stop offset="1" stop-color="#00138C"/>
23 +</linearGradient>
24 +<linearGradient id="paint2_linear_18222_929590" x1="125.004" y1="0" x2="125.004" y2="250" gradientUnits="userSpaceOnUse">
25 +<stop stop-color="#0043D3"/>
26 +<stop offset="1" stop-color="#00138C"/>
27 +</linearGradient>
28 +<linearGradient id="paint3_linear_18222_929590" x1="125.004" y1="0" x2="125.004" y2="250" gradientUnits="userSpaceOnUse">
29 +<stop offset="0.725084" stop-color="#000F3C" stop-opacity="0"/>
30 +<stop offset="1" stop-color="#000F3C" stop-opacity="0.5"/>
31 +</linearGradient>
32 +<linearGradient id="paint4_linear_18222_929590" x1="125.004" y1="0" x2="125.004" y2="250" gradientUnits="userSpaceOnUse">
33 +<stop stop-color="#0C52E0"/>
34 +<stop offset="1" stop-color="#002186"/>
35 +</linearGradient>
36 +<linearGradient id="paint5_linear_18222_929590" x1="125.004" y1="0" x2="125.004" y2="250" gradientUnits="userSpaceOnUse">
37 +<stop offset="0.85" stop-color="#003EFF" stop-opacity="0"/>
38 +<stop offset="1" stop-color="#0027E3"/>
39 +</linearGradient>
40 +<linearGradient id="paint6_linear_18222_929590" x1="125.004" y1="0" x2="125.004" y2="250" gradientUnits="userSpaceOnUse">
41 +<stop stop-color="#5A8DFF"/>
42 +<stop offset="0.15" stop-color="#2B71FF" stop-opacity="0"/>
43 +</linearGradient>
44 +<linearGradient id="paint7_linear_18222_929590" x1="125.261" y1="71.9658" x2="125.261" y2="186.966" gradientUnits="userSpaceOnUse">
45 +<stop stop-color="#001E78"/>
46 +<stop offset="1" stop-color="#001553"/>
47 +</linearGradient>
48 +<linearGradient id="paint8_linear_18222_929590" x1="125.261" y1="71.9658" x2="125.261" y2="186.966" gradientUnits="userSpaceOnUse">
49 +<stop stop-color="#001E78"/>
50 +<stop offset="1" stop-color="#001553"/>
51 +</linearGradient>
52 +<linearGradient id="paint9_linear_18222_929590" x1="92.5332" y1="67.9668" x2="92.5332" y2="182.966" gradientUnits="userSpaceOnUse">
53 +<stop stop-color="white"/>
54 +<stop offset="1" stop-color="#9ABBFF"/>
55 +</linearGradient>
56 +<linearGradient id="paint10_linear_18222_929590" x1="92.5332" y1="67.9668" x2="92.5332" y2="182.966" gradientUnits="userSpaceOnUse">
57 +<stop stop-color="#E0E9FF"/>
58 +<stop offset="1" stop-color="#9ABBFF"/>
59 +</linearGradient>
60 +<linearGradient id="paint11_linear_18222_929590" x1="125.265" y1="67.9668" x2="125.265" y2="182.967" gradientUnits="userSpaceOnUse">
61 +<stop stop-color="white" stop-opacity="0.5"/>
62 +<stop offset="1" stop-color="white" stop-opacity="0.2"/>
63 +</linearGradient>
64 +<linearGradient id="paint12_linear_18222_929590" x1="125.265" y1="67.9668" x2="125.265" y2="182.967" gradientUnits="userSpaceOnUse">
65 +<stop stop-color="white"/>
66 +<stop offset="1" stop-color="white"/>
67 +</linearGradient>
68 +</defs>
69 +</svg>
res/pictures/card_icons/chain_icons/dogecoin.svg new
+50
@@ -0,0 +1,50 @@
1 +<svg opacity="0.85" width="250" height="250" viewBox="0 0 250 250" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<g clip-path="url(#clip0_11259_64264)">
3 +<circle cx="125" cy="125" r="125" fill="url(#paint0_linear_11259_64264)"/>
4 +<circle cx="125" cy="125" r="125" fill="url(#paint1_linear_11259_64264)"/>
5 +<circle cx="125" cy="125" r="125" fill="url(#paint2_linear_11259_64264)"/>
6 +<path d="M245 125C245 58.7258 191.274 5 125 5C58.7258 5 5 58.7258 5 125C5 191.274 58.7258 245 125 245V250C55.9644 250 0 194.036 0 125C0 55.9644 55.9644 0 125 0C194.036 0 250 55.9644 250 125C250 194.036 194.036 250 125 250V245C191.274 245 245 191.274 245 125Z" fill="url(#paint3_linear_11259_64264)"/>
7 +<path d="M245 125C245 58.7258 191.274 5 125 5C58.7258 5 5 58.7258 5 125C5 191.274 58.7258 245 125 245V250C55.9644 250 0 194.036 0 125C0 55.9644 55.9644 0 125 0C194.036 0 250 55.9644 250 125C250 194.036 194.036 250 125 250V245C191.274 245 245 191.274 245 125Z" fill="url(#paint4_linear_11259_64264)"/>
8 +<path d="M245 125C245 58.7258 191.274 5 125 5C58.7258 5 5 58.7258 5 125C5 191.274 58.7258 245 125 245V250C55.9644 250 0 194.036 0 125C0 55.9644 55.9644 0 125 0C194.036 0 250 55.9644 250 125C250 194.036 194.036 250 125 250V245C191.274 245 245 191.274 245 125Z" fill="url(#paint5_linear_11259_64264)"/>
9 +<path fill-rule="evenodd" clip-rule="evenodd" d="M121.493 61.4005C130.686 61.4005 191.562 59.4928 191.562 130.085C191.562 201.846 127.911 196.512 127.911 196.512H82.6416V136.329H66.6836V121.587H82.6406V61.4005H121.493ZM108.14 86.3742V121.585H136.238V136.328H108.14V171.536H126.875C131.69 171.536 166.395 172.079 166.341 130.571C166.287 89.0638 132.681 86.3743 126 86.3742H108.14Z" fill="url(#paint6_linear_11259_64264)"/>
10 +<path fill-rule="evenodd" clip-rule="evenodd" d="M121.493 57.4005C130.686 57.4005 191.562 55.4928 191.562 126.085C191.562 197.846 127.911 192.512 127.911 192.512H82.6416V132.329H66.6836V117.587H82.6406V57.4005H121.493ZM108.14 82.3742V117.585H136.238V132.328H108.14V167.536H126.875C131.69 167.536 166.395 168.079 166.341 126.571C166.287 85.0638 132.681 82.3743 126 82.3742H108.14Z" fill="url(#paint7_linear_11259_64264)"/>
11 +<path d="M121.493 57.4005C130.686 57.4005 191.562 55.4929 191.562 126.085C191.562 197.846 127.911 192.512 127.911 192.512H82.6416V132.329H66.6836V117.587H82.6406V57.4005H121.493ZM121.493 59.4005H84.6406V119.587H68.6836V130.329H84.6416V190.512H127.995L128.078 190.519H128.077C128.078 190.519 128.079 190.52 128.081 190.52C128.086 190.52 128.094 190.521 128.106 190.522C128.131 190.523 128.171 190.526 128.225 190.529C128.333 190.537 128.499 190.547 128.719 190.557C129.158 190.577 129.813 190.598 130.652 190.601C132.332 190.606 134.747 190.537 137.649 190.235C143.465 189.629 151.182 188.096 158.871 184.406C166.545 180.724 174.185 174.898 179.919 165.682C185.654 156.464 189.562 143.724 189.562 126.085C189.562 108.73 185.823 95.9837 180.192 86.6017C174.564 77.2235 166.971 71.0838 159.066 67.0529C143.179 58.9509 126.122 59.4005 121.493 59.4005ZM126 80.3742C129.516 80.3742 140.026 81.0682 149.727 87.2189C159.577 93.4648 168.313 105.167 168.341 126.568C168.355 137.228 166.135 145.335 162.608 151.479C159.079 157.628 154.305 161.697 149.391 164.375C140.854 169.028 131.87 169.49 128.137 169.532L126.875 169.536H106.14V130.328H134.238V119.585H106.14V80.3742H126ZM108.14 117.585H136.238V132.328H108.14V167.536H126.875C131.69 167.536 166.395 168.079 166.341 126.571C166.287 85.0639 132.681 82.3743 126 82.3742H108.14V117.585Z" fill="white"/>
12 +</g>
13 +<defs>
14 +<linearGradient id="paint0_linear_11259_64264" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
15 +<stop stop-color="white"/>
16 +<stop offset="1" stop-color="#FFE991"/>
17 +</linearGradient>
18 +<linearGradient id="paint1_linear_11259_64264" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
19 +<stop stop-color="#C2A633"/>
20 +<stop offset="1" stop-color="#9A6A00"/>
21 +</linearGradient>
22 +<linearGradient id="paint2_linear_11259_64264" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
23 +<stop offset="0.725084" stop-color="#825101" stop-opacity="0"/>
24 +<stop offset="1" stop-color="#825101" stop-opacity="0.5"/>
25 +</linearGradient>
26 +<linearGradient id="paint3_linear_11259_64264" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
27 +<stop stop-color="#E9CB57"/>
28 +<stop offset="1" stop-color="#BD8202"/>
29 +</linearGradient>
30 +<linearGradient id="paint4_linear_11259_64264" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
31 +<stop offset="0.85" stop-color="#D08E00" stop-opacity="0.12549"/>
32 +<stop offset="1" stop-color="#D08E00"/>
33 +</linearGradient>
34 +<linearGradient id="paint5_linear_11259_64264" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
35 +<stop stop-color="#FFE379"/>
36 +<stop offset="0.15" stop-color="#FFE379" stop-opacity="0"/>
37 +</linearGradient>
38 +<linearGradient id="paint6_linear_11259_64264" x1="129.123" y1="61.3955" x2="129.123" y2="196.601" gradientUnits="userSpaceOnUse">
39 +<stop stop-color="#BD8400"/>
40 +<stop offset="1" stop-color="#8E6500"/>
41 +</linearGradient>
42 +<linearGradient id="paint7_linear_11259_64264" x1="129.123" y1="57.3955" x2="129.123" y2="192.601" gradientUnits="userSpaceOnUse">
43 +<stop stop-color="white"/>
44 +<stop offset="1" stop-color="#FFECA3"/>
45 +</linearGradient>
46 +<clipPath id="clip0_11259_64264">
47 +<rect width="250" height="250" fill="white"/>
48 +</clipPath>
49 +</defs>
50 +</svg>
res/pictures/card_icons/chain_icons/ethereum.svg new
+74
@@ -0,0 +1,74 @@
1 +<svg opacity="0.85" width="250" height="250" viewBox="0 0 250 250" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M250 125C250 194.036 194.036 250 125 250C55.9644 250 0 194.036 0 125C0 55.9644 55.9644 0 125 0C194.036 0 250 55.9644 250 125Z" fill="url(#paint0_linear_11259_64252)"/>
3 +<path d="M250 125C250 194.036 194.036 250 125 250C55.9644 250 0 194.036 0 125C0 55.9644 55.9644 0 125 0C194.036 0 250 55.9644 250 125Z" fill="url(#paint1_linear_11259_64252)"/>
4 +<path d="M245 125C245 58.7258 191.274 5 125 5C58.7258 5 5 58.7258 5 125C5 191.274 58.7258 245 125 245V250C55.9644 250 0 194.036 0 125C0 55.9644 55.9644 0 125 0C194.036 0 250 55.9644 250 125C250 194.036 194.036 250 125 250V245C191.274 245 245 191.274 245 125Z" fill="url(#paint2_linear_11259_64252)"/>
5 +<path d="M245 125C245 58.7258 191.274 5 125 5C58.7258 5 5 58.7258 5 125C5 191.274 58.7258 245 125 245V250C55.9644 250 0 194.036 0 125C0 55.9644 55.9644 0 125 0C194.036 0 250 55.9644 250 125C250 194.036 194.036 250 125 250V245C191.274 245 245 191.274 245 125Z" fill="url(#paint3_linear_11259_64252)"/>
6 +<path d="M245 125C245 58.7258 191.274 5 125 5C58.7258 5 5 58.7258 5 125C5 191.274 58.7258 245 125 245V250C55.9644 250 0 194.036 0 125C0 55.9644 55.9644 0 125 0C194.036 0 250 55.9644 250 125C250 194.036 194.036 250 125 250V245C191.274 245 245 191.274 245 125Z" fill="url(#paint4_linear_11259_64252)"/>
7 +<path d="M245 125C245 58.7258 191.274 5 125 5C58.7258 5 5 58.7258 5 125C5 191.274 58.7258 245 125 245V250C55.9644 250 0 194.036 0 125C0 55.9644 55.9644 0 125 0C194.036 0 250 55.9644 250 125C250 194.036 194.036 250 125 250V245C191.274 245 245 191.274 245 125Z" fill="url(#paint5_linear_11259_64252)"/>
8 +<path d="M124.961 220.624L69.9609 143.175L124.961 175.624L179.961 143.073L124.961 220.624Z" fill="url(#paint6_linear_11259_64252)"/>
9 +<path d="M179.961 132.563L124.961 165.012L69.9609 132.563L124.961 41.2363L179.961 132.563Z" fill="url(#paint7_linear_11259_64252)"/>
10 +<path d="M124.961 169.624V214.624L179.961 137.073L124.961 169.624Z" fill="url(#paint8_linear_11259_64252)"/>
11 +<path d="M69.9609 137.175L124.961 214.624V169.624L69.9609 137.175Z" fill="url(#paint9_linear_11259_64252)"/>
12 +<path d="M179.961 126.563L124.961 35.2363V159.012L179.961 126.563Z" fill="url(#paint10_linear_11259_64252)"/>
13 +<path d="M124.961 35.2363L69.9609 126.563L124.961 159.012V35.2363Z" fill="url(#paint11_linear_11259_64252)"/>
14 +<path d="M124.961 214.625V214.624L69.9609 137.175L124.961 169.624L179.961 137.073L124.961 214.625ZM125.979 171.345C125.352 171.716 124.572 171.717 123.944 171.347L77.0215 143.663L124.96 211.168L172.895 143.578L125.979 171.345ZM179.961 126.563L124.961 159.012V159.013L69.9609 126.563L124.961 35.2363L179.961 126.563ZM72.7148 125.865L124.96 156.689L177.206 125.865L124.961 39.1123L72.7148 125.865Z" fill="url(#paint12_linear_11259_64252)"/>
15 +<path d="M124.961 214.625V214.624L69.9609 137.175L124.961 169.624L179.961 137.073L124.961 214.625ZM125.979 171.345C125.352 171.716 124.572 171.717 123.944 171.347L77.0215 143.663L124.96 211.168L172.895 143.578L125.979 171.345ZM179.961 126.563L124.961 159.012V159.013L69.9609 126.563L124.961 35.2363L179.961 126.563ZM72.7148 125.865L124.96 156.689L177.206 125.865L124.961 39.1123L72.7148 125.865Z" fill="url(#paint13_linear_11259_64252)"/>
16 +<defs>
17 +<linearGradient id="paint0_linear_11259_64252" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
18 +<stop stop-color="#5970FF"/>
19 +<stop offset="1" stop-color="#3D1BFF"/>
20 +</linearGradient>
21 +<linearGradient id="paint1_linear_11259_64252" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
22 +<stop offset="0.725084" stop-color="#301CB7" stop-opacity="0"/>
23 +<stop offset="1" stop-color="#301CB7" stop-opacity="0.5"/>
24 +</linearGradient>
25 +<linearGradient id="paint2_linear_11259_64252" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
26 +<stop stop-color="#798BFF"/>
27 +<stop offset="1" stop-color="#001EE2"/>
28 +</linearGradient>
29 +<linearGradient id="paint3_linear_11259_64252" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
30 +<stop stop-color="#798BFF"/>
31 +<stop offset="1" stop-color="#5A41FF"/>
32 +</linearGradient>
33 +<linearGradient id="paint4_linear_11259_64252" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
34 +<stop offset="0.85" stop-color="#8774FF" stop-opacity="0"/>
35 +<stop offset="1" stop-color="#8774FF"/>
36 +</linearGradient>
37 +<linearGradient id="paint5_linear_11259_64252" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
38 +<stop stop-color="#A9B5FF"/>
39 +<stop offset="0.15" stop-color="#A9B5FF" stop-opacity="0"/>
40 +</linearGradient>
41 +<linearGradient id="paint6_linear_11259_64252" x1="124.961" y1="41.2363" x2="124.961" y2="220.624" gradientUnits="userSpaceOnUse">
42 +<stop offset="0.246132" stop-color="#3F39F9"/>
43 +<stop offset="1" stop-color="#3122D3"/>
44 +</linearGradient>
45 +<linearGradient id="paint7_linear_11259_64252" x1="124.961" y1="41.2363" x2="124.961" y2="220.624" gradientUnits="userSpaceOnUse">
46 +<stop offset="0.246132" stop-color="#3F39F9"/>
47 +<stop offset="1" stop-color="#3122D3"/>
48 +</linearGradient>
49 +<linearGradient id="paint8_linear_11259_64252" x1="152.461" y1="137.073" x2="152.461" y2="214.624" gradientUnits="userSpaceOnUse">
50 +<stop stop-color="#98A6FF"/>
51 +<stop offset="1" stop-color="#526AFF"/>
52 +</linearGradient>
53 +<linearGradient id="paint9_linear_11259_64252" x1="97.461" y1="137.175" x2="97.461" y2="214.624" gradientUnits="userSpaceOnUse">
54 +<stop stop-color="#B8C2FF"/>
55 +<stop offset="1" stop-color="#8B9BFF"/>
56 +</linearGradient>
57 +<linearGradient id="paint10_linear_11259_64252" x1="152.461" y1="35.2363" x2="152.461" y2="159.012" gradientUnits="userSpaceOnUse">
58 +<stop stop-color="#B4BFFF"/>
59 +<stop offset="1" stop-color="#6278FE"/>
60 +</linearGradient>
61 +<linearGradient id="paint11_linear_11259_64252" x1="97.461" y1="35.2363" x2="97.461" y2="159.012" gradientUnits="userSpaceOnUse">
62 +<stop stop-color="#F4F5FF"/>
63 +<stop offset="1" stop-color="#AEB9FF"/>
64 +</linearGradient>
65 +<linearGradient id="paint12_linear_11259_64252" x1="124.961" y1="35.2363" x2="124.961" y2="214.625" gradientUnits="userSpaceOnUse">
66 +<stop stop-color="white"/>
67 +<stop offset="0.546865" stop-color="white" stop-opacity="0"/>
68 +</linearGradient>
69 +<linearGradient id="paint13_linear_11259_64252" x1="124.961" y1="35.2363" x2="124.961" y2="214.625" gradientUnits="userSpaceOnUse">
70 +<stop offset="0.751951" stop-color="white" stop-opacity="0"/>
71 +<stop offset="1" stop-color="white" stop-opacity="0.5"/>
72 +</linearGradient>
73 +</defs>
74 +</svg>
res/pictures/card_icons/chain_icons/lightning.svg new
+47
@@ -0,0 +1,47 @@
1 +<svg opacity="0.85" width="250" height="250" viewBox="0 0 250 250" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M246.252 155.241C229.557 222.205 161.732 262.959 94.7596 246.26C27.8143 229.565 -12.9396 161.737 3.76352 94.7758C20.451 27.8031 88.2752 -12.9547 155.228 3.74061C222.197 20.4359 262.947 88.2719 246.252 155.241Z" fill="#F7931A"/>
3 +<path d="M246.252 155.241C229.557 222.205 161.732 262.959 94.7596 246.26C27.8143 229.565 -12.9396 161.737 3.76352 94.7758C20.451 27.8031 88.2752 -12.9547 155.228 3.74061C222.197 20.4359 262.947 88.2719 246.252 155.241Z" fill="url(#paint0_linear_14352_348907)"/>
4 +<path d="M246.252 155.241C229.557 222.205 161.732 262.959 94.7596 246.26C27.8143 229.565 -12.9396 161.737 3.76352 94.7758C20.451 27.8031 88.2752 -12.9547 155.228 3.74061C222.197 20.4359 262.947 88.2719 246.252 155.241Z" fill="url(#paint1_linear_14352_348907)"/>
5 +<path d="M246.252 155.241C229.557 222.205 161.732 262.959 94.7596 246.26C27.8143 229.565 -12.9396 161.737 3.76352 94.7758C20.451 27.8031 88.2752 -12.9547 155.228 3.74061C222.197 20.4359 262.947 88.2719 246.252 155.241Z" fill="url(#paint2_linear_14352_348907)"/>
6 +<path d="M3.76352 94.7757C20.4512 27.8033 88.2754 -12.9547 155.228 3.74058C222.197 20.4359 262.947 88.272 246.252 155.241L245.852 156.806C228.634 222.319 162.265 262.198 96.329 246.641L94.7597 246.26C27.8143 229.565 -12.9396 161.737 3.76352 94.7757ZM154.018 8.59214C89.7456 -7.43476 24.6351 31.6917 8.61509 95.9847V95.9866C-7.41942 160.268 31.7034 225.381 95.9686 241.408C160.262 257.44 225.373 218.317 241.4 154.032C257.428 89.7415 218.307 24.6193 154.018 8.59214Z" fill="url(#paint3_linear_14352_348907)"/>
7 +<path d="M3.76352 94.7757C20.4512 27.8033 88.2754 -12.9547 155.228 3.74058C222.197 20.4359 262.947 88.272 246.252 155.241L245.852 156.806C228.634 222.319 162.265 262.198 96.329 246.641L94.7597 246.26C27.8143 229.565 -12.9396 161.737 3.76352 94.7757ZM154.018 8.59214C89.7456 -7.43476 24.6351 31.6917 8.61509 95.9847V95.9866C-7.41942 160.268 31.7034 225.381 95.9686 241.408C160.262 257.44 225.373 218.317 241.4 154.032C257.428 89.7415 218.307 24.6193 154.018 8.59214Z" fill="url(#paint4_linear_14352_348907)"/>
8 +<path d="M3.76352 94.7757C20.4512 27.8033 88.2754 -12.9547 155.228 3.74058C222.197 20.4359 262.947 88.272 246.252 155.241L245.852 156.806C228.634 222.319 162.265 262.198 96.329 246.641L94.7597 246.26C27.8143 229.565 -12.9396 161.737 3.76352 94.7757ZM154.018 8.59214C89.7456 -7.43476 24.6351 31.6917 8.61509 95.9847V95.9866C-7.41942 160.268 31.7034 225.381 95.9686 241.408C160.262 257.44 225.373 218.317 241.4 154.032C257.428 89.7415 218.307 24.6193 154.018 8.59214Z" fill="url(#paint5_linear_14352_348907)"/>
9 +<path d="M59.8672 139.11L153.37 58.5384C157.444 55.9292 161.327 58.5384 158.841 63.0146L128.999 121.703H182.216C182.216 121.703 190.671 121.703 182.216 128.666L90.2058 209.734C83.7402 215.205 79.264 212.221 83.7402 203.766L112.587 146.57H59.8672C59.8672 146.57 51.4121 146.57 59.8672 139.11Z" fill="#F66E00"/>
10 +<path d="M59.8672 139.11L153.37 58.5384C157.444 55.9292 161.327 58.5384 158.841 63.0146L128.999 121.703H182.216C182.216 121.703 190.671 121.703 182.216 128.666L90.2058 209.734C83.7402 215.205 79.264 212.221 83.7402 203.766L112.587 146.57H59.8672C59.8672 146.57 51.4121 146.57 59.8672 139.11Z" fill="url(#paint6_linear_14352_348907)"/>
11 +<path d="M59.8672 129.11L153.37 48.5384C157.444 45.9292 161.327 48.5384 158.841 53.0146L128.999 111.703H182.216C182.216 111.703 190.671 111.703 182.216 118.666L90.2058 199.734C83.7402 205.205 79.264 202.221 83.7402 193.766L112.587 136.57H59.8672C59.8672 136.57 51.4122 136.57 59.8672 129.11Z" fill="url(#paint7_linear_14352_348907)"/>
12 +<path d="M153.37 48.5381C157.444 45.9293 161.327 48.5386 158.841 53.0146L128.999 111.703H182.216C182.216 111.703 190.671 111.703 182.216 118.666L90.206 199.734L89.9043 199.984C83.6025 205.11 79.3339 202.089 83.7402 193.766L112.587 136.57H59.8672L59.5205 136.556C58.0447 136.456 52.6656 135.667 59.4834 129.454L59.8672 129.11L153.37 48.5381ZM157.358 49.7138C157.097 49.5162 156.108 49.2016 154.55 50.1601L61.1728 130.625C59.1363 132.425 58.3889 133.553 58.1709 134.13C58.1586 134.162 58.1504 134.192 58.1425 134.217C58.3059 134.302 58.5992 134.409 59.0254 134.484C59.2691 134.527 59.4939 134.55 59.6562 134.561C59.7358 134.566 59.7973 134.568 59.8349 134.569C59.8537 134.57 59.8664 134.57 59.872 134.57H115.835L85.5263 194.667L85.5166 194.685L85.5078 194.702C84.4623 196.677 84.0261 198.177 83.9463 199.191C83.907 199.691 83.9586 200.015 84.0185 200.202C84.0743 200.376 84.1322 200.421 84.1367 200.425C84.1439 200.431 84.1966 200.473 84.3623 200.492C84.5453 200.513 84.8502 200.5 85.292 200.375C86.1886 200.12 87.4319 199.461 88.914 198.207L180.894 117.165L180.919 117.143L180.944 117.122C182.863 115.542 183.621 114.527 183.878 113.995C183.7 113.924 183.434 113.843 183.08 113.785C182.831 113.744 182.602 113.722 182.436 113.712C182.355 113.707 182.291 113.704 182.252 113.703H125.738L157.058 52.1084L157.074 52.0752L157.092 52.0429C157.573 51.1768 157.647 50.5775 157.616 50.2461C157.588 49.9474 157.477 49.8036 157.358 49.7138Z" fill="white"/>
13 +<defs>
14 +<linearGradient id="paint0_linear_14352_348907" x1="125.006" y1="0" x2="125.006" y2="250.003" gradientUnits="userSpaceOnUse">
15 +<stop stop-color="#F7BC1A"/>
16 +<stop offset="1" stop-color="#FF7700"/>
17 +</linearGradient>
18 +<linearGradient id="paint1_linear_14352_348907" x1="125.006" y1="0" x2="125.006" y2="250.003" gradientUnits="userSpaceOnUse">
19 +<stop stop-color="#F7BC1A"/>
20 +<stop offset="1" stop-color="#FF6A00"/>
21 +</linearGradient>
22 +<linearGradient id="paint2_linear_14352_348907" x1="125.006" y1="0" x2="125.006" y2="250.003" gradientUnits="userSpaceOnUse">
23 +<stop offset="0.725084" stop-color="#C94701" stop-opacity="0"/>
24 +<stop offset="1" stop-color="#C94701" stop-opacity="0.3"/>
25 +</linearGradient>
26 +<linearGradient id="paint3_linear_14352_348907" x1="125.006" y1="0.000349739" x2="125.006" y2="250.003" gradientUnits="userSpaceOnUse">
27 +<stop stop-color="#FFE091"/>
28 +<stop offset="1" stop-color="#FF9735"/>
29 +</linearGradient>
30 +<linearGradient id="paint4_linear_14352_348907" x1="125.006" y1="0.000349739" x2="125.006" y2="250.003" gradientUnits="userSpaceOnUse">
31 +<stop offset="0.85" stop-color="#FFA54D" stop-opacity="0"/>
32 +<stop offset="1" stop-color="#FFA54D"/>
33 +</linearGradient>
34 +<linearGradient id="paint5_linear_14352_348907" x1="125.006" y1="0.000349739" x2="125.006" y2="250.003" gradientUnits="userSpaceOnUse">
35 +<stop stop-color="#FFF3DA"/>
36 +<stop offset="0.15" stop-color="#FFF3DA" stop-opacity="0"/>
37 +</linearGradient>
38 +<linearGradient id="paint6_linear_14352_348907" x1="121.042" y1="57.5" x2="121.042" y2="212.5" gradientUnits="userSpaceOnUse">
39 +<stop stop-color="#F89A02"/>
40 +<stop offset="1" stop-color="#F56600"/>
41 +</linearGradient>
42 +<linearGradient id="paint7_linear_14352_348907" x1="121.042" y1="47.5" x2="121.042" y2="202.5" gradientUnits="userSpaceOnUse">
43 +<stop stop-color="white"/>
44 +<stop offset="1" stop-color="#FEEABD"/>
45 +</linearGradient>
46 +</defs>
47 +</svg>
res/pictures/card_icons/chain_icons/litecoin.svg new
+40
@@ -0,0 +1,40 @@
1 +<svg opacity="0.85" width="250" height="250" viewBox="0 0 250 250" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M249.998 124.999C249.998 194.035 194.035 250 125 250C55.9641 250 0 194.035 0 124.999C0 55.9641 55.9641 0 125 0C194.034 0 249.998 55.9641 249.998 124.999Z" fill="url(#paint0_linear_11259_64244)"/>
3 +<path d="M249.998 124.999C249.998 194.035 194.035 250 125 250C55.9641 250 0 194.035 0 124.999C0 55.9641 55.9641 0 125 0C194.034 0 249.998 55.9641 249.998 124.999Z" fill="url(#paint1_linear_11259_64244)"/>
4 +<path d="M244.998 124.999C244.998 58.7253 191.273 5 125 5C58.7255 5 5.00011 58.7254 5 124.999C5 191.274 58.7255 245 125 245V250L123.385 249.989C55.0932 249.124 0 193.496 0 124.999C0.000111329 55.9639 55.9641 0 125 0C194.034 0 249.998 55.9639 249.998 124.999C249.998 194.035 194.035 250 125 250V245C191.274 245 244.998 191.274 244.998 124.999Z" fill="url(#paint2_linear_11259_64244)"/>
5 +<path d="M244.998 124.999C244.998 58.7253 191.273 5 125 5C58.7255 5 5.00011 58.7254 5 124.999C5 191.274 58.7255 245 125 245V250L123.385 249.989C55.0932 249.124 0 193.496 0 124.999C0.000111329 55.9639 55.9641 0 125 0C194.034 0 249.998 55.9639 249.998 124.999C249.998 194.035 194.035 250 125 250V245C191.274 245 244.998 191.274 244.998 124.999Z" fill="url(#paint3_linear_11259_64244)"/>
6 +<path d="M244.998 124.999C244.998 58.7253 191.273 5 125 5C58.7255 5 5.00011 58.7254 5 124.999C5 191.274 58.7255 245 125 245V250L123.385 249.989C55.0932 249.124 0 193.496 0 124.999C0.000111329 55.9639 55.9641 0 125 0C194.034 0 249.998 55.9639 249.998 124.999C249.998 194.035 194.035 250 125 250V245C191.274 245 244.998 191.274 244.998 124.999Z" fill="url(#paint4_linear_11259_64244)"/>
7 +<path d="M119.689 164.393L127.808 133.821L147.03 126.798L151.811 108.831L151.648 108.385L132.726 115.298L146.36 63.9639H107.696L89.867 130.956L74.9812 136.394L70.0625 154.917L84.9369 149.483L74.4292 188.965H177.329L183.925 164.393H119.689Z" fill="url(#paint5_linear_11259_64244)"/>
8 +<path d="M117.689 158.393L125.808 127.821L145.03 120.798L149.811 102.831L149.648 102.385L130.726 109.298L144.36 57.9639H105.696L87.867 124.956L72.9812 130.394L68.0625 148.917L82.9369 143.483L72.4292 182.965H175.329L181.925 158.393H117.689Z" fill="url(#paint6_linear_11259_64244)"/>
9 +<path d="M144.359 57.9639L130.727 109.298L149.648 102.385L149.812 102.831L145.03 120.798L125.808 127.82L117.688 158.393H181.925L175.328 182.965H72.4287L82.9365 143.483L68.0625 148.917L72.9814 130.394L87.8672 124.956L105.696 57.9639H144.359ZM89.5322 126.477L74.6465 131.914L70.9795 145.721L85.8574 140.287L75.0312 180.965H173.794L179.317 160.393H115.088L124.143 126.3L143.365 119.275L147.04 105.467L127.809 112.493L141.759 59.9639H107.233L89.5322 126.477Z" fill="white"/>
10 +<defs>
11 +<linearGradient id="paint0_linear_11259_64244" x1="124.999" y1="0" x2="124.999" y2="250" gradientUnits="userSpaceOnUse">
12 +<stop stop-color="#1C60CA"/>
13 +<stop offset="1" stop-color="#002394"/>
14 +</linearGradient>
15 +<linearGradient id="paint1_linear_11259_64244" x1="124.999" y1="0" x2="124.999" y2="250" gradientUnits="userSpaceOnUse">
16 +<stop offset="0.725084" stop-color="#000E6C" stop-opacity="0"/>
17 +<stop offset="1" stop-color="#000E6C" stop-opacity="0.3"/>
18 +</linearGradient>
19 +<linearGradient id="paint2_linear_11259_64244" x1="124.999" y1="0" x2="124.999" y2="250" gradientUnits="userSpaceOnUse">
20 +<stop stop-color="#2974ED"/>
21 +<stop offset="1" stop-color="#0031C9"/>
22 +</linearGradient>
23 +<linearGradient id="paint3_linear_11259_64244" x1="124.999" y1="0" x2="124.999" y2="250" gradientUnits="userSpaceOnUse">
24 +<stop offset="0.85" stop-color="#0059AD" stop-opacity="0"/>
25 +<stop offset="1" stop-color="#0059AD"/>
26 +</linearGradient>
27 +<linearGradient id="paint4_linear_11259_64244" x1="124.999" y1="0" x2="124.999" y2="250" gradientUnits="userSpaceOnUse">
28 +<stop stop-color="#5294FF"/>
29 +<stop offset="0.15" stop-color="#5294FF" stop-opacity="0"/>
30 +</linearGradient>
31 +<linearGradient id="paint5_linear_11259_64244" x1="126.994" y1="63.9639" x2="126.994" y2="188.965" gradientUnits="userSpaceOnUse">
32 +<stop stop-color="#063ABA"/>
33 +<stop offset="1" stop-color="#002A9C"/>
34 +</linearGradient>
35 +<linearGradient id="paint6_linear_11259_64244" x1="124.994" y1="57.9639" x2="124.994" y2="182.965" gradientUnits="userSpaceOnUse">
36 +<stop stop-color="white"/>
37 +<stop offset="1" stop-color="#C7DCFF"/>
38 +</linearGradient>
39 +</defs>
40 +</svg>
res/pictures/card_icons/chain_icons/monero.svg new
+56
@@ -0,0 +1,56 @@
1 +<svg opacity="0.85" width="250" height="250" viewBox="0 0 250 250" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<g clip-path="url(#clip0_11259_64230)">
3 +<path d="M125 250C194.036 250 250 194.036 250 125C250 55.9644 194.036 0 125 0C55.9644 0 0 55.9644 0 125C0 194.036 55.9644 250 125 250Z" fill="url(#paint0_linear_11259_64230)"/>
4 +<path d="M206.251 170.49H241.463C237.925 179.541 233.364 188.079 227.92 195.96H179.141V129.78L125.001 183.92L70.8613 129.78V195.96H22.082C16.6357 188.076 12.0735 179.535 8.53516 170.48H43.751V65.3096L125.001 146.561L206.251 65.3096V170.49Z" fill="#CE2901"/>
5 +<path d="M125 2.5C192.655 2.5 247.5 57.3451 247.5 125C247.5 192.655 192.655 247.5 125 247.5C57.3451 247.5 2.5 192.655 2.5 125C2.5 57.3451 57.3451 2.5 125 2.5Z" stroke="url(#paint1_linear_11259_64230)" stroke-width="5"/>
6 +<path d="M125 2.5C192.655 2.5 247.5 57.3451 247.5 125C247.5 192.655 192.655 247.5 125 247.5C57.3451 247.5 2.5 192.655 2.5 125C2.5 57.3451 57.3451 2.5 125 2.5Z" stroke="url(#paint2_linear_11259_64230)" stroke-width="5"/>
7 +<path d="M125 2.5C192.655 2.5 247.5 57.3451 247.5 125C247.5 192.655 192.655 247.5 125 247.5C57.3451 247.5 2.5 192.655 2.5 125C2.5 57.3451 57.3451 2.5 125 2.5Z" stroke="url(#paint3_linear_11259_64230)" stroke-width="5"/>
8 +<path d="M205.251 165.489H242.233C239.384 173.737 235.689 181.6 231.254 188.96H180.141V121.365L125.001 176.505L69.8613 121.365V188.96H18.7578C14.3135 181.6 10.6174 173.737 7.76758 165.479H44.751V61.7236L125.001 141.974L205.251 61.7236V165.489Z" fill="url(#paint4_linear_11259_64230)"/>
9 +<path d="M205.251 165.489H242.233C239.384 173.737 235.689 181.6 231.254 188.96H180.141V121.365L125.001 176.505L69.8613 121.365V188.96H18.7578C14.3135 181.6 10.6174 173.737 7.76758 165.479H44.751V61.7236L125.001 141.974L205.251 61.7236V165.489Z" stroke="url(#paint5_linear_11259_64230)" stroke-width="2"/>
10 +<path d="M205.251 165.489H242.233C239.384 173.737 235.689 181.6 231.254 188.96H180.141V121.365L125.001 176.505L69.8613 121.365V188.96H18.7578C14.3135 181.6 10.6174 173.737 7.76758 165.479H44.751V61.7236L125.001 141.974L205.251 61.7236V165.489Z" stroke="url(#paint6_linear_11259_64230)" stroke-width="2"/>
11 +<path d="M206.251 164.481V59.3105L125.001 140.561L43.7511 59.3105V164.481H6.37109C9.36109 173.471 13.3411 182.011 18.1911 189.961H70.8611V123.781L125.001 177.921L179.141 123.781V189.961H231.821C236.661 182.011 240.641 173.471 243.631 164.491H206.251V164.481Z" fill="url(#paint7_linear_11259_64230)" fill-opacity="0.3"/>
12 +<path d="M206.251 164.481V59.3105L125.001 140.561L43.7511 59.3105V164.481H6.37109C9.36109 173.471 13.3411 182.011 18.1911 189.961H70.8611V123.781L125.001 177.921L179.141 123.781V189.961H231.821C236.661 182.011 240.641 173.471 243.631 164.491H206.251V164.481Z" fill="url(#paint8_linear_11259_64230)" fill-opacity="0.3"/>
13 +</g>
14 +<defs>
15 +<linearGradient id="paint0_linear_11259_64230" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
16 +<stop stop-color="#FF6600"/>
17 +<stop offset="0.662892" stop-color="#EA3E00"/>
18 +<stop offset="1" stop-color="#B51500"/>
19 +</linearGradient>
20 +<linearGradient id="paint1_linear_11259_64230" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
21 +<stop stop-color="#FF9A59"/>
22 +<stop offset="1" stop-color="#F23400"/>
23 +</linearGradient>
24 +<linearGradient id="paint2_linear_11259_64230" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
25 +<stop offset="0.85" stop-color="#FF7752" stop-opacity="0"/>
26 +<stop offset="1" stop-color="#FF7752"/>
27 +</linearGradient>
28 +<linearGradient id="paint3_linear_11259_64230" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
29 +<stop stop-color="#FFBE94"/>
30 +<stop offset="0.15" stop-color="#FFBE94" stop-opacity="0"/>
31 +</linearGradient>
32 +<linearGradient id="paint4_linear_11259_64230" x1="125.001" y1="59.3096" x2="125.001" y2="189.96" gradientUnits="userSpaceOnUse">
33 +<stop offset="0.312806" stop-color="white"/>
34 +<stop offset="0.750482" stop-color="#FFC7B2"/>
35 +</linearGradient>
36 +<linearGradient id="paint5_linear_11259_64230" x1="125.154" y1="59.2912" x2="125.154" y2="189.96" gradientUnits="userSpaceOnUse">
37 +<stop offset="0.628934" stop-color="white"/>
38 +<stop offset="1" stop-color="white" stop-opacity="0"/>
39 +</linearGradient>
40 +<linearGradient id="paint6_linear_11259_64230" x1="125.154" y1="59.2912" x2="125.154" y2="189.96" gradientUnits="userSpaceOnUse">
41 +<stop offset="0.929637" stop-color="white" stop-opacity="0"/>
42 +<stop offset="1" stop-color="white"/>
43 +</linearGradient>
44 +<linearGradient id="paint7_linear_11259_64230" x1="243.631" y1="125.158" x2="80.419" y2="272.169" gradientUnits="userSpaceOnUse">
45 +<stop offset="0.734344" stop-color="#CD2700" stop-opacity="0"/>
46 +<stop offset="0.9535" stop-color="#CD2700"/>
47 +</linearGradient>
48 +<linearGradient id="paint8_linear_11259_64230" x1="243.631" y1="189.96" x2="80.419" y2="42.9497" gradientUnits="userSpaceOnUse">
49 +<stop offset="0.0476409" stop-color="#CD2700"/>
50 +<stop offset="0.26512" stop-color="#CD2700" stop-opacity="0"/>
51 +</linearGradient>
52 +<clipPath id="clip0_11259_64230">
53 +<rect width="250" height="250" fill="white"/>
54 +</clipPath>
55 +</defs>
56 +</svg>
res/pictures/card_icons/chain_icons/nano.svg new
+45
@@ -0,0 +1,45 @@
1 +<svg opacity="0.85" width="250" height="250" viewBox="0 0 250 250" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<g clip-path="url(#clip0_11259_64383)">
3 +<path d="M125 250C194.036 250 250 194.036 250 125C250 55.9644 194.036 0 125 0C55.9644 0 0 55.9644 0 125C0 194.036 55.9644 250 125 250Z" fill="url(#paint0_linear_11259_64383)"/>
4 +<path d="M125 250C194.036 250 250 194.036 250 125C250 55.9644 194.036 0 125 0C55.9644 0 0 55.9644 0 125C0 194.036 55.9644 250 125 250Z" fill="url(#paint1_linear_11259_64383)"/>
5 +<path d="M245 125C245 58.7258 191.274 5 125 5C58.7258 5 5 58.7258 5 125C5 191.274 58.7258 245 125 245V250C55.9644 250 0 194.036 0 125C0 55.9644 55.9644 0 125 0C194.036 0 250 55.9644 250 125C250 194.036 194.036 250 125 250V245C191.274 245 245 191.274 245 125Z" fill="url(#paint2_linear_11259_64383)"/>
6 +<path d="M245 125C245 58.7258 191.274 5 125 5C58.7258 5 5 58.7258 5 125C5 191.274 58.7258 245 125 245V250C55.9644 250 0 194.036 0 125C0 55.9644 55.9644 0 125 0C194.036 0 250 55.9644 250 125C250 194.036 194.036 250 125 250V245C191.274 245 245 191.274 245 125Z" fill="url(#paint3_linear_11259_64383)"/>
7 +<path d="M245 125C245 58.7258 191.274 5 125 5C58.7258 5 5 58.7258 5 125C5 191.274 58.7258 245 125 245V250C55.9644 250 0 194.036 0 125C0 55.9644 55.9644 0 125 0C194.036 0 250 55.9644 250 125C250 194.036 194.036 250 125 250V245C191.274 245 245 191.274 245 125Z" fill="url(#paint4_linear_11259_64383)"/>
8 +<path fill-rule="evenodd" clip-rule="evenodd" d="M125.449 117.517L168.359 51.7363H179.988L134.604 121.763H172.413V130.646H134.413L145.707 148.414H172.417V157.298H151.354L183.542 207.935H171.386L138.878 157.298H111.42L78.415 207.935H66.3594L99.0088 157.298H77.8906L77.8945 148.414H104.737L116.193 130.646H77.8945V121.763H115.81L71.0361 51.7363H83.4287L125.449 117.517ZM117.21 148.414H133.175L125.253 136.074L117.21 148.414Z" fill="url(#paint5_linear_11259_64383)"/>
9 +<path fill-rule="evenodd" clip-rule="evenodd" d="M125.449 113.517L168.359 47.7363H179.988L134.604 117.763H172.413V126.646H134.413L145.707 144.414H172.417V153.298H151.354L183.542 203.935H171.386L138.878 153.298H111.42L78.415 203.935H66.3594L99.0088 153.298H77.8906L77.8945 144.414H104.737L116.193 126.646H77.8945V117.763H115.81L71.0361 47.7363H83.4287L125.449 113.517ZM117.21 144.414H133.175L125.253 132.074L117.21 144.414Z" fill="url(#paint6_linear_11259_64383)"/>
10 +<path d="M125.449 113.517L168.359 47.7363H179.988L134.604 117.763H172.413V126.646H134.413L145.707 144.414H172.417V153.298H151.354L183.542 203.935H171.386L138.878 153.298H111.42L78.415 203.935H66.3594L99.0088 153.298H77.8906L77.8945 144.414H104.737L116.193 126.646H77.8945V117.763H115.81L71.0361 47.7363H83.4287L125.449 113.517ZM119.462 119.763H79.8945V124.646H119.862L105.827 146.414H79.8936L79.8916 151.298H102.678L70.0283 201.935H77.3311L110.336 151.298H139.971L172.478 201.935H179.901L147.713 151.298H170.417V146.414H144.608L130.771 124.646H170.413V119.763H130.924L176.309 49.7363H169.442L125.432 117.204L82.333 49.7363H74.6885L119.462 119.763ZM136.835 146.414H113.52L125.266 128.392L136.835 146.414ZM117.21 144.414H133.175L125.253 132.074L117.21 144.414Z" fill="white"/>
11 +</g>
12 +<defs>
13 +<linearGradient id="paint0_linear_11259_64383" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
14 +<stop stop-color="#209CE9"/>
15 +<stop offset="1" stop-color="#007AC5"/>
16 +</linearGradient>
17 +<linearGradient id="paint1_linear_11259_64383" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
18 +<stop offset="0.725084" stop-color="#003F88" stop-opacity="0"/>
19 +<stop offset="1" stop-color="#003F88" stop-opacity="0.5"/>
20 +</linearGradient>
21 +<linearGradient id="paint2_linear_11259_64383" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
22 +<stop stop-color="#5EC1FF"/>
23 +<stop offset="1" stop-color="#009EFF"/>
24 +</linearGradient>
25 +<linearGradient id="paint3_linear_11259_64383" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
26 +<stop offset="0.85" stop-color="#3AB4FF" stop-opacity="0"/>
27 +<stop offset="1" stop-color="#3AB4FF"/>
28 +</linearGradient>
29 +<linearGradient id="paint4_linear_11259_64383" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
30 +<stop stop-color="#98D8FF"/>
31 +<stop offset="0.15" stop-color="#98D8FF" stop-opacity="0"/>
32 +</linearGradient>
33 +<linearGradient id="paint5_linear_11259_64383" x1="124.951" y1="51.7363" x2="124.951" y2="207.935" gradientUnits="userSpaceOnUse">
34 +<stop stop-color="#0E86D2"/>
35 +<stop offset="1" stop-color="#0069AE"/>
36 +</linearGradient>
37 +<linearGradient id="paint6_linear_11259_64383" x1="124.951" y1="47.7363" x2="124.951" y2="203.935" gradientUnits="userSpaceOnUse">
38 +<stop stop-color="white"/>
39 +<stop offset="1" stop-color="#A4DCFF"/>
40 +</linearGradient>
41 +<clipPath id="clip0_11259_64383">
42 +<rect width="250" height="250" fill="white"/>
43 +</clipPath>
44 +</defs>
45 +</svg>
res/pictures/card_icons/chain_icons/polygon.svg new
+45
@@ -0,0 +1,45 @@
1 +<svg opacity="0.85" width="250" height="250" viewBox="0 0 250 250" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<g clip-path="url(#clip0_11259_64345)">
3 +<path d="M125 250C194.271 250 250 194.271 250 125C250 55.7288 194.271 0 125 0C55.7288 0 0 55.7288 0 125C0 194.271 55.7288 250 125 250Z" fill="url(#paint0_linear_11259_64345)"/>
4 +<path d="M125 250C194.271 250 250 194.271 250 125C250 55.7288 194.271 0 125 0C55.7288 0 0 55.7288 0 125C0 194.271 55.7288 250 125 250Z" fill="url(#paint1_linear_11259_64345)"/>
5 +<path d="M245 125C245 58.4902 191.51 5 125 5C58.4902 5 5 58.4902 5 125C5 191.51 58.4902 245 125 245V250C55.7288 250 0 194.271 0 125C0 55.7288 55.7288 0 125 0C194.271 0 250 55.7288 250 125C250 194.271 194.271 250 125 250V245C191.51 245 245 191.51 245 125Z" fill="url(#paint2_linear_11259_64345)"/>
6 +<path d="M245 125C245 58.4902 191.51 5 125 5C58.4902 5 5 58.4902 5 125C5 191.51 58.4902 245 125 245V250C55.7288 250 0 194.271 0 125C0 55.7288 55.7288 0 125 0C194.271 0 250 55.7288 250 125C250 194.271 194.271 250 125 250V245C191.51 245 245 191.51 245 125Z" fill="url(#paint3_linear_11259_64345)"/>
7 +<path d="M245 125C245 58.4902 191.51 5 125 5C58.4902 5 5 58.4902 5 125C5 191.51 58.4902 245 125 245V250C55.7288 250 0 194.271 0 125C0 55.7288 55.7288 0 125 0C194.271 0 250 55.7288 250 125C250 194.271 194.271 250 125 250V245C191.51 245 245 191.51 245 125Z" fill="url(#paint4_linear_11259_64345)"/>
8 +<path d="M161.448 63.5L119.363 87.6703V163.107L96.1427 176.568L72.7803 163.096V136.164L96.1427 122.823L111.165 131.535V109.744L96.0117 101.142L53.9375 125.585V173.937L96.1536 198.249L138.228 173.937V98.5109L161.59 85.0392L184.942 98.5109V125.323L161.59 138.915L146.437 130.126V151.808L161.448 160.465L203.938 136.295V87.6703L161.448 63.5Z" fill="url(#paint5_linear_11259_64345)"/>
9 +<path d="M157.448 57.5L115.363 81.6703V157.107L92.1427 170.568L68.7803 157.096V130.164L92.1427 116.823L107.165 125.535V103.744L92.0117 95.1419L49.9375 119.585V167.937L92.1536 192.249L134.228 167.937V92.5109L157.59 79.0392L180.942 92.5109V119.323L157.59 132.915L142.437 124.126V145.808L157.448 154.465L199.938 130.295V81.6703L157.448 57.5Z" fill="url(#paint6_linear_11259_64345)"/>
10 +<path d="M199.938 81.6699V130.295L157.448 154.465L142.438 145.808V124.127L157.59 132.915L180.941 119.323V92.5107L157.59 79.0391L134.228 92.5107V167.937L92.1533 192.249L49.9375 167.937V119.585L92.0117 95.1416L107.165 103.744V125.534L92.1426 116.823L68.7803 130.164V157.096L92.1426 170.567L115.363 157.106V81.6699L157.448 57.5L199.938 81.6699ZM182.941 120.474L157.592 135.228L144.438 127.598V144.652L157.455 152.16L197.938 129.131V82.833L157.453 59.8027L117.363 82.8271V158.259L92.1455 172.878L66.7803 158.252V129.003L92.1504 114.516L105.165 122.062V104.908L92.0234 97.4473L51.9375 120.736V166.779L92.1514 189.939L132.228 166.782V91.3555L157.59 76.7305L182.941 91.3555V120.474Z" fill="white"/>
11 +</g>
12 +<defs>
13 +<linearGradient id="paint0_linear_11259_64345" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
14 +<stop stop-color="#7158FF"/>
15 +<stop offset="1" stop-color="#4A2AFF"/>
16 +</linearGradient>
17 +<linearGradient id="paint1_linear_11259_64345" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
18 +<stop offset="0.725084" stop-color="#3115CD" stop-opacity="0"/>
19 +<stop offset="1" stop-color="#3115CD" stop-opacity="0.5"/>
20 +</linearGradient>
21 +<linearGradient id="paint2_linear_11259_64345" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
22 +<stop stop-color="#8570FF"/>
23 +<stop offset="1" stop-color="#4A4DFF"/>
24 +</linearGradient>
25 +<linearGradient id="paint3_linear_11259_64345" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
26 +<stop offset="0.85" stop-color="#7072FF" stop-opacity="0"/>
27 +<stop offset="1" stop-color="#7072FF"/>
28 +</linearGradient>
29 +<linearGradient id="paint4_linear_11259_64345" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
30 +<stop stop-color="#A392FF"/>
31 +<stop offset="0.15" stop-color="#A392FF" stop-opacity="0"/>
32 +</linearGradient>
33 +<linearGradient id="paint5_linear_11259_64345" x1="128.938" y1="63.5" x2="128.938" y2="198.249" gradientUnits="userSpaceOnUse">
34 +<stop stop-color="#5132FF"/>
35 +<stop offset="1" stop-color="#4C2CFF"/>
36 +</linearGradient>
37 +<linearGradient id="paint6_linear_11259_64345" x1="124.938" y1="57.5" x2="124.938" y2="192.249" gradientUnits="userSpaceOnUse">
38 +<stop stop-color="white"/>
39 +<stop offset="1" stop-color="#B9ADFF"/>
40 +</linearGradient>
41 +<clipPath id="clip0_11259_64345">
42 +<rect width="250" height="250" fill="white"/>
43 +</clipPath>
44 +</defs>
45 +</svg>
res/pictures/card_icons/chain_icons/solana.svg new
+63
@@ -0,0 +1,63 @@
1 +<svg opacity="0.85" width="250" height="250" viewBox="0 0 250 250" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M250 125C250 194.036 194.036 250 125 250C55.9644 250 0 194.036 0 125C0 55.9644 55.9644 0 125 0C194.036 0 250 55.9644 250 125Z" fill="url(#paint0_linear_11259_64280)"/>
3 +<path d="M250 125C250 194.036 194.036 250 125 250C55.9644 250 0 194.036 0 125C0 55.9644 55.9644 0 125 0C194.036 0 250 55.9644 250 125Z" fill="url(#paint1_linear_11259_64280)"/>
4 +<path d="M245 125C245 58.7258 191.274 5 125 5C58.7258 5 5 58.7258 5 125C5 191.274 58.7258 245 125 245V250C55.9644 250 0 194.036 0 125C0 55.9644 55.9644 0 125 0C194.036 0 250 55.9644 250 125C250 194.036 194.036 250 125 250V245C191.274 245 245 191.274 245 125Z" fill="url(#paint2_linear_11259_64280)"/>
5 +<path d="M245 125C245 58.7258 191.274 5 125 5C58.7258 5 5 58.7258 5 125C5 191.274 58.7258 245 125 245V250C55.9644 250 0 194.036 0 125C0 55.9644 55.9644 0 125 0C194.036 0 250 55.9644 250 125C250 194.036 194.036 250 125 250V245C191.274 245 245 191.274 245 125Z" fill="url(#paint3_linear_11259_64280)"/>
6 +<path d="M245 125C245 58.7258 191.274 5 125 5C58.7258 5 5 58.7258 5 125C5 191.274 58.7258 245 125 245V250C55.9644 250 0 194.036 0 125C0 55.9644 55.9644 0 125 0C194.036 0 250 55.9644 250 125C250 194.036 194.036 250 125 250V245C191.274 245 245 191.274 245 125Z" fill="url(#paint4_linear_11259_64280)"/>
7 +<path d="M193.292 163.555L170.593 187.27C170.1 187.785 169.503 188.196 168.84 188.477C168.176 188.757 167.46 188.902 166.737 188.902H59.1351C58.6217 188.902 58.1195 188.755 57.6901 188.481C57.2608 188.207 56.923 187.816 56.7184 187.358C56.5137 186.899 56.4511 186.392 56.5382 185.899C56.6252 185.406 56.8582 184.949 57.2085 184.583L79.9241 160.868C80.4163 160.354 81.0113 159.944 81.6726 159.664C82.3339 159.383 83.0473 159.238 83.7687 159.236H191.365C191.878 159.236 192.38 159.383 192.81 159.657C193.239 159.931 193.577 160.322 193.782 160.78C193.986 161.239 194.049 161.746 193.962 162.239C193.875 162.732 193.642 163.189 193.292 163.555ZM170.593 115.8C170.1 115.284 169.503 114.874 168.84 114.593C168.176 114.312 167.46 114.168 166.737 114.168H59.1351C58.6217 114.168 58.1195 114.314 57.6901 114.588C57.2608 114.863 56.923 115.253 56.7184 115.712C56.5137 116.171 56.4511 116.678 56.5382 117.171C56.6252 117.663 56.8582 118.121 57.2085 118.487L79.9241 142.202C80.4163 142.715 81.0113 143.125 81.6726 143.406C82.3339 143.687 83.0473 143.832 83.7687 143.833H191.365C191.878 143.833 192.38 143.687 192.81 143.413C193.239 143.138 193.577 142.748 193.782 142.289C193.986 141.831 194.049 141.324 193.962 140.831C193.875 140.338 193.642 139.88 193.292 139.515L170.593 115.8ZM59.1351 98.7649H166.737C167.46 98.7652 168.176 98.6206 168.84 98.3399C169.503 98.0592 170.1 97.6484 170.593 97.1333L193.292 73.4182C193.642 73.0525 193.875 72.5951 193.962 72.1021C194.049 71.6092 193.986 71.1022 193.782 70.6435C193.577 70.1848 193.239 69.7943 192.81 69.52C192.38 69.2458 191.878 69.0996 191.365 69.0996H83.7687C83.0473 69.1008 82.3339 69.2462 81.6726 69.5269C81.0113 69.8075 80.4163 70.2174 79.9241 70.7312L57.2144 94.4463C56.8644 94.8116 56.6315 95.2686 56.5443 95.7609C56.457 96.2533 56.5191 96.7598 56.7231 97.2184C56.927 97.6769 57.2638 98.0673 57.6923 98.342C58.1208 98.6168 58.6222 98.7637 59.1351 98.7649Z" fill="url(#paint5_linear_11259_64280)"/>
8 +<path d="M193.292 155.555L170.593 179.27C170.1 179.785 169.503 180.196 168.84 180.477C168.176 180.757 167.46 180.902 166.737 180.902H59.1351C58.6217 180.902 58.1195 180.755 57.6901 180.481C57.2608 180.207 56.923 179.816 56.7184 179.358C56.5137 178.899 56.4511 178.392 56.5382 177.899C56.6252 177.406 56.8582 176.949 57.2085 176.583L79.9241 152.868C80.4163 152.354 81.0113 151.944 81.6726 151.664C82.3339 151.383 83.0473 151.238 83.7687 151.236H191.365C191.878 151.236 192.38 151.383 192.81 151.657C193.239 151.931 193.577 152.322 193.782 152.78C193.986 153.239 194.049 153.746 193.962 154.239C193.875 154.732 193.642 155.189 193.292 155.555ZM170.593 107.8C170.1 107.284 169.503 106.874 168.84 106.593C168.176 106.312 167.46 106.168 166.737 106.168H59.1351C58.6217 106.168 58.1195 106.314 57.6901 106.588C57.2608 106.863 56.923 107.253 56.7184 107.712C56.5137 108.171 56.4511 108.678 56.5382 109.171C56.6252 109.663 56.8582 110.121 57.2085 110.487L79.9241 134.202C80.4163 134.715 81.0113 135.125 81.6726 135.406C82.3339 135.687 83.0473 135.832 83.7687 135.833H191.365C191.878 135.833 192.38 135.687 192.81 135.413C193.239 135.138 193.577 134.748 193.782 134.289C193.986 133.831 194.049 133.324 193.962 132.831C193.875 132.338 193.642 131.88 193.292 131.515L170.593 107.8ZM59.1351 90.7649H166.737C167.46 90.7652 168.176 90.6206 168.84 90.3399C169.503 90.0592 170.1 89.6484 170.593 89.1333L193.292 65.4182C193.642 65.0525 193.875 64.5951 193.962 64.1021C194.049 63.6092 193.986 63.1022 193.782 62.6435C193.577 62.1848 193.239 61.7943 192.81 61.52C192.38 61.2458 191.878 61.0996 191.365 61.0996H83.7687C83.0473 61.1008 82.3339 61.2462 81.6726 61.5269C81.0113 61.8075 80.4163 62.2174 79.9241 62.7312L57.2144 86.4463C56.8644 86.8116 56.6315 87.2686 56.5443 87.7609C56.457 88.2533 56.5191 88.7598 56.7231 89.2184C56.927 89.6769 57.2638 90.0673 57.6923 90.342C58.1208 90.6168 58.6222 90.7637 59.1351 90.7649Z" fill="url(#paint6_linear_11259_64280)"/>
9 +<path d="M193.292 159.555L170.593 183.27C170.1 183.785 169.503 184.196 168.84 184.477C168.176 184.757 167.46 184.902 166.737 184.902H59.1351C58.6217 184.902 58.1195 184.755 57.6901 184.481C57.2608 184.207 56.923 183.816 56.7184 183.358C56.5137 182.899 56.4511 182.392 56.5382 181.899C56.6252 181.406 56.8582 180.949 57.2085 180.583L79.9241 156.868C80.4163 156.354 81.0113 155.944 81.6726 155.664C82.3339 155.383 83.0473 155.238 83.7687 155.236H191.365C191.878 155.236 192.38 155.383 192.81 155.657C193.239 155.931 193.577 156.322 193.782 156.78C193.986 157.239 194.049 157.746 193.962 158.239C193.875 158.732 193.642 159.189 193.292 159.555ZM170.593 111.8C170.1 111.284 169.503 110.874 168.84 110.593C168.176 110.312 167.46 110.168 166.737 110.168H59.1351C58.6217 110.168 58.1195 110.314 57.6901 110.588C57.2608 110.863 56.923 111.253 56.7184 111.712C56.5137 112.171 56.4511 112.678 56.5382 113.171C56.6252 113.663 56.8582 114.121 57.2085 114.487L79.9241 138.202C80.4163 138.715 81.0113 139.125 81.6726 139.406C82.3339 139.687 83.0473 139.832 83.7687 139.833H191.365C191.878 139.833 192.38 139.687 192.81 139.413C193.239 139.138 193.577 138.748 193.782 138.289C193.986 137.831 194.049 137.324 193.962 136.831C193.875 136.338 193.642 135.88 193.292 135.515L170.593 111.8ZM59.1351 94.7649H166.737C167.46 94.7652 168.176 94.6206 168.84 94.3399C169.503 94.0592 170.1 93.6484 170.593 93.1333L193.292 69.4182C193.642 69.0525 193.875 68.5951 193.962 68.1021C194.049 67.6092 193.986 67.1022 193.782 66.6435C193.577 66.1848 193.239 65.7943 192.81 65.52C192.38 65.2458 191.878 65.0996 191.365 65.0996H83.7687C83.0473 65.1008 82.3339 65.2462 81.6726 65.5269C81.0113 65.8075 80.4163 66.2174 79.9241 66.7312L57.2144 90.4463C56.8644 90.8116 56.6315 91.2686 56.5443 91.7609C56.457 92.2533 56.5191 92.7598 56.7231 93.2184C56.927 93.6769 57.2638 94.0673 57.6923 94.342C58.1208 94.6168 58.6222 94.7637 59.1351 94.7649Z" fill="url(#paint7_linear_11259_64280)"/>
10 +<path fill-rule="evenodd" clip-rule="evenodd" d="M166.737 110.167C167.46 110.167 168.176 110.312 168.84 110.593C169.503 110.873 170.1 111.285 170.594 111.8L193.292 135.515C193.642 135.88 193.875 136.338 193.962 136.831C194.049 137.324 193.986 137.831 193.782 138.289L193.699 138.458C193.491 138.844 193.186 139.173 192.811 139.413L192.646 139.51C192.255 139.721 191.814 139.833 191.365 139.833H83.7686C83.1374 139.832 82.5123 139.721 81.9229 139.505L81.6729 139.406C81.0944 139.161 80.5659 138.816 80.1133 138.39L79.9238 138.202L57.208 114.486C56.9018 114.166 56.6849 113.776 56.5772 113.354L56.5381 113.171C56.4619 112.74 56.5006 112.297 56.6485 111.886L56.7188 111.712C56.8978 111.311 57.1783 110.961 57.5332 110.696L57.6904 110.589C58.1196 110.315 58.6215 110.167 59.1348 110.167H166.737ZM59.1348 112.168C58.9998 112.168 58.8715 112.206 58.7666 112.273C58.6621 112.34 58.5877 112.431 58.5449 112.526C58.5025 112.622 58.4906 112.724 58.5078 112.822C58.5253 112.921 58.5732 113.02 58.6533 113.104L81.3682 136.818C81.6704 137.134 82.0394 137.389 82.4531 137.564C82.8676 137.74 83.3169 137.832 83.7715 137.833H191.365C191.499 137.833 191.627 137.794 191.732 137.728L191.806 137.674C191.873 137.616 191.924 137.546 191.957 137.472C191.998 137.377 192.009 137.275 191.992 137.179C191.975 137.08 191.927 136.981 191.847 136.897L169.148 113.183C168.846 112.867 168.476 112.61 168.061 112.435C167.645 112.259 167.194 112.168 166.738 112.168H59.1348Z" fill="url(#paint8_linear_11259_64280)"/>
11 +<path fill-rule="evenodd" clip-rule="evenodd" d="M191.556 155.243C192.002 155.275 192.434 155.416 192.81 155.656C193.239 155.931 193.577 156.322 193.782 156.78C193.986 157.239 194.049 157.746 193.962 158.239L193.923 158.422C193.815 158.845 193.598 159.235 193.292 159.555L170.594 183.27L170.403 183.458C169.949 183.885 169.42 184.231 168.84 184.477L168.589 184.575C167.997 184.791 167.37 184.902 166.737 184.901H59.1346C58.6856 184.901 58.2449 184.79 57.8543 184.578L57.6902 184.481C57.3148 184.242 57.0092 183.912 56.8016 183.526L56.7186 183.357C56.5395 182.956 56.469 182.518 56.5125 182.084L56.5379 181.899C56.6141 181.468 56.8025 181.064 57.0828 180.725L57.2078 180.583L79.9236 156.868C80.3543 156.419 80.8639 156.048 81.4275 155.774L81.6727 155.664C82.334 155.383 83.047 155.237 83.7684 155.235H191.365L191.556 155.243ZM83.6014 157.241C83.2049 157.262 82.8162 157.351 82.4539 157.505C82.0401 157.68 81.6706 157.935 81.368 158.251L58.6522 181.967C58.5725 182.05 58.525 182.149 58.5076 182.247C58.4904 182.345 58.5023 182.448 58.5447 182.543C58.5876 182.639 58.6619 182.729 58.7664 182.796L58.8494 182.841C58.9361 182.88 59.0338 182.901 59.1346 182.901H166.738C167.194 182.902 167.645 182.811 168.06 182.635C168.476 182.459 168.845 182.203 169.148 181.887L191.846 158.172C191.926 158.089 191.974 157.99 191.992 157.891C192.009 157.794 191.998 157.693 191.957 157.599L191.918 157.525C191.873 157.455 191.81 157.392 191.732 157.342C191.627 157.275 191.499 157.236 191.365 157.236H83.7723L83.6014 157.241Z" fill="url(#paint9_linear_11259_64280)"/>
12 +<path d="M191.557 155.243C192.003 155.275 192.435 155.416 192.811 155.656C193.239 155.931 193.577 156.322 193.782 156.78C193.986 157.239 194.049 157.746 193.962 158.239L193.923 158.422C193.815 158.845 193.598 159.235 193.292 159.555L170.594 183.27L170.403 183.458C169.95 183.886 169.42 184.231 168.84 184.477L168.589 184.575C167.997 184.791 167.37 184.902 166.737 184.902H59.1348V182.902H166.738C167.194 182.902 167.645 182.811 168.061 182.635C168.476 182.459 168.845 182.203 169.148 181.887L191.847 158.172C191.927 158.089 191.975 157.99 191.992 157.891C192.009 157.794 191.998 157.694 191.957 157.599L191.918 157.526C191.873 157.455 191.81 157.392 191.732 157.342V157.341C191.627 157.274 191.499 157.237 191.365 157.236H83.7725L83.6016 157.241C83.2051 157.262 82.8164 157.351 82.4541 157.505C82.0404 157.681 81.6709 157.935 81.3682 158.251L58.6524 181.967C58.5726 182.05 58.5253 182.149 58.5079 182.247C58.4905 182.346 58.5025 182.448 58.545 182.543C58.5878 182.639 58.662 182.729 58.7667 182.796L58.8497 182.841C58.9365 182.88 59.0339 182.902 59.1348 182.902V184.902C58.6857 184.902 58.2452 184.79 57.8545 184.578L57.6905 184.482C57.3149 184.242 57.0094 183.912 56.8018 183.527L56.7188 183.358C56.5397 182.956 56.4691 182.518 56.5128 182.084L56.5381 181.9C56.6143 181.468 56.8026 181.064 57.0831 180.725L57.2081 180.583L79.9239 156.868C80.3545 156.419 80.8641 156.048 81.4278 155.775L81.6729 155.664C82.3342 155.384 83.0473 155.238 83.7686 155.236H191.365L191.557 155.243ZM59.1348 110.168H166.737C167.46 110.168 168.176 110.312 168.84 110.593C169.503 110.874 170.1 111.285 170.594 111.8L193.292 135.515C193.642 135.881 193.875 136.338 193.962 136.831C194.049 137.324 193.986 137.831 193.782 138.289L193.699 138.458C193.491 138.844 193.186 139.173 192.811 139.413L192.645 139.51C192.255 139.721 191.814 139.833 191.365 139.833V137.833C191.499 137.833 191.627 137.795 191.732 137.728L191.806 137.674C191.873 137.616 191.924 137.546 191.957 137.472C191.998 137.377 192.009 137.276 191.992 137.179C191.975 137.08 191.927 136.981 191.847 136.898V136.897L169.148 113.183V113.182C168.845 112.866 168.476 112.61 168.061 112.435C167.645 112.259 167.194 112.168 166.738 112.168H59.1348C58.9998 112.168 58.8716 112.207 58.7667 112.274C58.662 112.34 58.5878 112.431 58.545 112.526C58.5024 112.622 58.4906 112.724 58.5079 112.822C58.5253 112.921 58.5731 113.02 58.6534 113.104H58.6524L81.3682 136.818C81.6705 137.134 82.0393 137.389 82.4532 137.565C82.8676 137.74 83.3168 137.832 83.7715 137.833H191.365V139.833H83.7686C83.1374 139.832 82.5123 139.721 81.9229 139.505L81.6729 139.406C81.0943 139.161 80.566 138.816 80.1133 138.39L79.9239 138.202L57.2081 114.486C56.9017 114.166 56.6849 113.776 56.5772 113.354L56.5381 113.171C56.4619 112.74 56.5005 112.297 56.6485 111.886L56.7188 111.712C56.8979 111.311 57.1782 110.961 57.5333 110.696L57.6905 110.589C58.1197 110.315 58.6215 110.168 59.1348 110.168ZM191.365 65.0996C191.878 65.0997 192.381 65.2463 192.811 65.5205C193.239 65.7948 193.577 66.185 193.782 66.6436C193.986 67.1023 194.049 67.6096 193.962 68.1025L193.923 68.2852C193.815 68.708 193.598 69.098 193.292 69.418L170.594 93.1329L170.403 93.3213C169.95 93.7488 169.42 94.0943 168.84 94.3399L168.589 94.4385C167.997 94.6544 167.37 94.7649 166.737 94.7647H59.1348C58.6863 94.7636 58.2463 94.6515 57.8565 94.4395L57.6924 94.3418C57.3175 94.1014 57.0127 93.7725 56.8057 93.3868L56.7227 93.2188C56.5188 92.7603 56.4567 92.2532 56.544 91.7608C56.6313 91.2686 56.8641 90.8115 57.2139 90.4463L79.9239 66.7314C80.3545 66.2819 80.8641 65.9112 81.4278 65.6377L81.6729 65.5273C82.3342 65.2467 83.0473 65.1008 83.7686 65.0996H191.365ZM83.6016 67.1045C83.2052 67.125 82.8165 67.2144 82.4541 67.3682C82.0402 67.5439 81.6709 67.7983 81.3682 68.1143L58.6592 91.8291L58.6583 91.8301C58.5787 91.9133 58.5312 92.0119 58.5137 92.1104C58.4964 92.2084 58.5085 92.3101 58.5508 92.4053C58.5934 92.501 58.6671 92.5912 58.7715 92.6583C58.8763 92.7254 59.0046 92.7643 59.1397 92.7647H166.738C167.195 92.7648 167.645 92.6738 168.061 92.4981C168.476 92.3223 168.845 92.0664 169.148 91.75L191.847 68.0352C191.927 67.9516 191.975 67.8532 191.992 67.7539C192.009 67.6574 191.998 67.5567 191.957 67.4619L191.918 67.3887C191.873 67.3183 191.811 67.2551 191.732 67.2051V67.2041C191.653 67.1541 191.562 67.1204 191.465 67.1064L191.365 67.0996H83.7725L83.6016 67.1045Z" fill="url(#paint10_linear_11259_64280)"/>
13 +<defs>
14 +<linearGradient id="paint0_linear_11259_64280" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
15 +<stop stop-color="#4701AA"/>
16 +<stop offset="1" stop-color="#19004B"/>
17 +</linearGradient>
18 +<linearGradient id="paint1_linear_11259_64280" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
19 +<stop offset="0.725084" stop-color="#0C0025" stop-opacity="0"/>
20 +<stop offset="1" stop-color="#0C0025" stop-opacity="0.5"/>
21 +</linearGradient>
22 +<linearGradient id="paint2_linear_11259_64280" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
23 +<stop stop-color="#6A00FF"/>
24 +<stop offset="1" stop-color="#004148"/>
25 +</linearGradient>
26 +<linearGradient id="paint3_linear_11259_64280" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
27 +<stop offset="0.85" stop-color="#006974" stop-opacity="0"/>
28 +<stop offset="1" stop-color="#006974"/>
29 +</linearGradient>
30 +<linearGradient id="paint4_linear_11259_64280" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
31 +<stop stop-color="#9A53FF"/>
32 +<stop offset="0.15" stop-color="#8D3CFF" stop-opacity="0"/>
33 +</linearGradient>
34 +<linearGradient id="paint5_linear_11259_64280" x1="125.25" y1="69.0996" x2="125.25" y2="188.902" gradientUnits="userSpaceOnUse">
35 +<stop offset="0.179856" stop-color="#320080"/>
36 +<stop offset="1" stop-color="#190041"/>
37 +</linearGradient>
38 +<linearGradient id="paint6_linear_11259_64280" x1="125.25" y1="61.0996" x2="125.25" y2="180.902" gradientUnits="userSpaceOnUse">
39 +<stop offset="0.0856031" stop-color="#4E12A7"/>
40 +<stop offset="1" stop-color="#330083"/>
41 +</linearGradient>
42 +<linearGradient id="paint7_linear_11259_64280" x1="68.1066" y1="187.757" x2="177.654" y2="60.9934" gradientUnits="userSpaceOnUse">
43 +<stop offset="0.08" stop-color="#9945FF"/>
44 +<stop offset="0.3" stop-color="#8752F3"/>
45 +<stop offset="0.5" stop-color="#5497D5"/>
46 +<stop offset="0.6" stop-color="#43B4CA"/>
47 +<stop offset="0.72" stop-color="#28E0B9"/>
48 +<stop offset="0.97" stop-color="#19FB9B"/>
49 +</linearGradient>
50 +<linearGradient id="paint8_linear_11259_64280" x1="71.0002" y1="133.999" x2="71.0002" y2="110" gradientUnits="userSpaceOnUse">
51 +<stop stop-color="#24E7B1" stop-opacity="0"/>
52 +<stop offset="1" stop-color="#62BDF2"/>
53 +</linearGradient>
54 +<linearGradient id="paint9_linear_11259_64280" x1="123" y1="183.999" x2="124" y2="159" gradientUnits="userSpaceOnUse">
55 +<stop stop-color="#B087FF"/>
56 +<stop offset="1" stop-color="#7070E6" stop-opacity="0"/>
57 +</linearGradient>
58 +<linearGradient id="paint10_linear_11259_64280" x1="125.25" y1="65.0996" x2="126" y2="104" gradientUnits="userSpaceOnUse">
59 +<stop stop-color="#58FFBE"/>
60 +<stop offset="1" stop-color="#24E7B1" stop-opacity="0"/>
61 +</linearGradient>
62 +</defs>
63 +</svg>
res/pictures/card_icons/chain_icons/tron.svg new
+45
@@ -0,0 +1,45 @@
1 +<svg opacity="0.85" width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<g clip-path="url(#clip0_18375_211277)">
3 +<path d="M22 44C34.1917 44 44 34.1917 44 22C44 9.80826 34.1917 0 22 0C9.80826 0 0 9.80826 0 22C0 34.1917 9.80826 44 22 44Z" fill="url(#paint0_linear_18375_211277)"/>
4 +<path d="M22 44C34.1917 44 44 34.1917 44 22C44 9.80826 34.1917 0 22 0C9.80826 0 0 9.80826 0 22C0 34.1917 9.80826 44 22 44Z" fill="url(#paint1_linear_18375_211277)"/>
5 +<path d="M43.12 22C43.12 10.2943 33.7057 0.88 22 0.88C10.2943 0.88 0.88 10.2943 0.88 22C0.88 33.7057 10.2943 43.12 22 43.12V44C9.80826 44 0 34.1917 0 22C0 9.80826 9.80826 0 22 0C34.1917 0 44 9.80826 44 22C44 34.1917 34.1917 44 22 44V43.12C33.7057 43.12 43.12 33.7057 43.12 22Z" fill="url(#paint2_linear_18375_211277)"/>
6 +<path d="M43.12 22C43.12 10.2943 33.7057 0.88 22 0.88C10.2943 0.88 0.88 10.2943 0.88 22C0.88 33.7057 10.2943 43.12 22 43.12V44C9.80826 44 0 34.1917 0 22C0 9.80826 9.80826 0 22 0C34.1917 0 44 9.80826 44 22C44 34.1917 34.1917 44 22 44V43.12C33.7057 43.12 43.12 33.7057 43.12 22Z" fill="url(#paint3_linear_18375_211277)"/>
7 +<path d="M43.12 22C43.12 10.2943 33.7057 0.88 22 0.88C10.2943 0.88 0.88 10.2943 0.88 22C0.88 33.7057 10.2943 43.12 22 43.12V44C9.80826 44 0 34.1917 0 22C0 9.80826 9.80826 0 22 0C34.1917 0 44 9.80826 44 22C44 34.1917 34.1917 44 22 44V43.12C33.7057 43.12 43.12 33.7057 43.12 22Z" fill="url(#paint4_linear_18375_211277)"/>
8 +<path d="M35.5292 18.3272C34.2272 17.1249 32.426 15.2891 30.959 13.987L30.8722 13.9263C30.7278 13.8103 30.565 13.7193 30.3905 13.6572C26.8532 12.9975 10.391 9.92029 10.0699 9.95935C9.97987 9.97196 9.89385 10.0046 9.81813 10.0548L9.73567 10.1199C9.63413 10.2231 9.55701 10.3476 9.50998 10.4845L9.48828 10.5409V10.8491V10.8968C11.3415 16.0573 18.659 32.9622 20.1 36.9291C20.1868 37.1982 20.3517 37.7103 20.6598 37.7363H20.7293C20.8942 37.7363 21.5973 36.8075 21.5973 36.8075C21.5973 36.8075 34.1664 21.5649 35.4381 19.9417C35.6027 19.7418 35.748 19.5267 35.8721 19.2994C35.9038 19.1215 35.8888 18.9385 35.8287 18.7681C35.7686 18.5977 35.6655 18.4458 35.5292 18.3272ZM24.822 20.1023L30.1865 15.6536L33.3331 18.5529L24.822 20.1023ZM22.7388 19.8115L13.5029 12.2423L28.4461 14.9983L22.7388 19.8115ZM23.5721 21.795L33.0249 20.2716L22.218 33.292L23.5721 21.795ZM12.2486 12.9975L21.9662 21.2438L20.56 33.3007L12.2486 12.9975Z" fill="url(#paint5_linear_18375_211277)"/>
9 +<path d="M35.5292 17.6231C34.2272 16.4208 32.426 14.585 30.959 13.2829L30.8722 13.2222C30.7278 13.1062 30.565 13.0152 30.3905 12.9531C26.8532 12.2934 10.391 9.21619 10.0699 9.25525C9.97987 9.26786 9.89385 9.30048 9.81813 9.35073L9.73567 9.41584C9.63413 9.51896 9.55701 9.64354 9.50998 9.78041L9.48828 9.83683V10.145V10.1927C11.3415 15.3532 18.659 32.2581 20.1 36.225C20.1868 36.4941 20.3517 37.0062 20.6598 37.0322H20.7293C20.8942 37.0322 21.5973 36.1034 21.5973 36.1034C21.5973 36.1034 34.1664 20.8608 35.4381 19.2376C35.6027 19.0377 35.748 18.8226 35.8721 18.5953C35.9038 18.4174 35.8888 18.2344 35.8287 18.064C35.7686 17.8936 35.6655 17.7417 35.5292 17.6231ZM24.822 19.3982L30.1865 14.9495L33.3331 17.8488L24.822 19.3982ZM22.7388 19.1074L13.5029 11.5382L28.4461 14.2942L22.7388 19.1074ZM23.5721 21.0909L33.0249 19.5675L22.218 32.5879L23.5721 21.0909ZM12.2486 12.2934L21.9662 20.5397L20.56 32.5966L12.2486 12.2934Z" fill="url(#paint6_linear_18375_211277)"/>
10 +<path d="M10.0699 9.25525C10.3926 9.21649 26.8535 12.2935 30.3905 12.9531C30.565 13.0153 30.7279 13.1062 30.8723 13.2221L30.9591 13.283C32.426 14.585 34.2272 16.4209 35.5292 17.6232C35.6655 17.7418 35.7687 17.8937 35.8288 18.064C35.8889 18.2344 35.9038 18.4174 35.8721 18.5953L35.8245 18.68C35.7113 18.8762 35.5821 19.0627 35.4381 19.2376C34.1673 20.8597 21.614 36.0833 21.5974 36.1035C21.5974 36.1035 20.8942 37.0323 20.7292 37.0323H20.6598L20.6315 37.0284C20.3415 36.9745 20.1841 36.4857 20.1 36.225C18.6591 32.2581 11.3416 15.3534 9.48828 10.1928V9.83687L9.50994 9.7805C9.55696 9.64363 9.63407 9.5189 9.73561 9.41578L9.81811 9.35081C9.89382 9.30056 9.97991 9.26785 10.0699 9.25525ZM10.0933 9.60879C10.0674 9.61515 10.0427 9.62566 10.0199 9.63973L9.97417 9.67582C9.91565 9.73882 9.87084 9.81335 9.84286 9.89479L9.8408 9.90081L9.84028 9.90218V10.1309C10.7761 12.7243 13.047 18.1885 15.2736 23.5209C17.442 28.7138 19.5695 33.7842 20.3587 35.9086L20.4309 36.1049L20.435 36.1169C20.48 36.2565 20.5335 36.4197 20.6053 36.5504C20.63 36.5953 20.6529 36.6279 20.6718 36.6507C20.677 36.6458 20.6828 36.641 20.6885 36.6354C20.7657 36.5601 20.8606 36.4538 20.9565 36.3405C21.051 36.2287 21.1413 36.1161 21.2083 36.031C21.2416 35.9886 21.2689 35.9533 21.2878 35.9287C21.2973 35.9164 21.3046 35.9068 21.3095 35.9003C21.3119 35.8971 21.3138 35.8947 21.315 35.8931C21.3156 35.8923 21.3161 35.8918 21.3164 35.8914L21.3165 35.8911L21.321 35.8852L21.3257 35.8795L21.5974 36.1035C21.332 35.8847 21.3259 35.8796 21.3258 35.8794C21.3259 35.8793 21.3262 35.8791 21.3263 35.8789C21.3267 35.8784 21.3273 35.8777 21.3281 35.8768C21.3296 35.875 21.3318 35.8722 21.3348 35.8685C21.3408 35.8612 21.3498 35.8502 21.3617 35.8357C21.3856 35.8068 21.421 35.764 21.4671 35.708C21.5595 35.596 21.6952 35.4314 21.8683 35.2214C22.2144 34.8015 22.7104 34.1998 23.3094 33.4726C24.5076 32.0183 26.1184 30.0623 27.7689 28.0556C31.0725 24.0392 34.5285 19.8278 35.1609 19.0205L35.1637 19.0172L35.1662 19.014C35.3036 18.8471 35.4259 18.6685 35.5325 18.4806C35.5426 18.3796 35.5307 18.2773 35.4967 18.1811C35.4569 18.068 35.3884 17.9672 35.2981 17.8885L35.2941 17.8853L35.2905 17.8817C34.6354 17.2768 33.8549 16.5128 33.0609 15.7432C32.2695 14.976 31.4629 14.2018 30.7396 13.559L30.6703 13.5105L30.6609 13.5038L30.6518 13.4966C30.5444 13.4104 30.424 13.3419 30.2953 13.2933C28.5 12.9584 23.5314 12.0303 18.9603 11.1883C16.6616 10.7649 14.464 10.3634 12.8213 10.0703C11.9997 9.92369 11.3179 9.80446 10.832 9.72309C10.5888 9.68236 10.3964 9.65136 10.2607 9.63131C10.1925 9.62123 10.1412 9.61423 10.106 9.61017C10.1013 9.60962 10.097 9.60919 10.0933 9.60879ZM21.7292 33.7278L23.2536 20.7857L33.8947 19.0709L21.7292 33.7278ZM22.3377 20.3933L20.9097 32.6375L20.2342 32.7299L11.9229 12.4267L12.4763 12.025L22.3377 20.3933ZM20.56 32.5966L21.9662 20.5397L12.2486 12.2933L20.56 32.5966ZM23.5721 21.0909L22.218 32.588L33.025 19.5674L23.5721 21.0909ZM34.0912 18.0685L23.5628 19.9852L30.1987 14.4821L34.0912 18.0685ZM29.2424 14.083L22.7421 19.5652L13.2798 11.8105L13.5667 11.1921L29.2424 14.083ZM24.8221 19.3983L33.333 17.8488L30.1865 14.9496L24.8221 19.3983ZM22.7388 19.1075L28.4461 14.2941L13.5029 11.5383L22.7388 19.1075Z" fill="white"/>
11 +</g>
12 +<defs>
13 +<linearGradient id="paint0_linear_18375_211277" x1="22" y1="0" x2="22" y2="44" gradientUnits="userSpaceOnUse">
14 +<stop stop-color="#F9181C"/>
15 +<stop offset="1" stop-color="#C40003"/>
16 +</linearGradient>
17 +<linearGradient id="paint1_linear_18375_211277" x1="22" y1="0" x2="22" y2="44" gradientUnits="userSpaceOnUse">
18 +<stop offset="0.725084" stop-color="#850305" stop-opacity="0"/>
19 +<stop offset="1" stop-color="#850305" stop-opacity="0.5"/>
20 +</linearGradient>
21 +<linearGradient id="paint2_linear_18375_211277" x1="22" y1="0" x2="22" y2="44" gradientUnits="userSpaceOnUse">
22 +<stop stop-color="#FF6062"/>
23 +<stop offset="1" stop-color="#FF0004"/>
24 +</linearGradient>
25 +<linearGradient id="paint3_linear_18375_211277" x1="22" y1="0" x2="22" y2="44" gradientUnits="userSpaceOnUse">
26 +<stop offset="0.85" stop-color="#FF3F42" stop-opacity="0"/>
27 +<stop offset="1" stop-color="#FF3F42"/>
28 +</linearGradient>
29 +<linearGradient id="paint4_linear_18375_211277" x1="22" y1="0" x2="22" y2="44" gradientUnits="userSpaceOnUse">
30 +<stop stop-color="#FF9293"/>
31 +<stop offset="0.15" stop-color="#FF9293" stop-opacity="0"/>
32 +</linearGradient>
33 +<linearGradient id="paint5_linear_18375_211277" x1="22.6883" y1="9.95898" x2="22.6883" y2="37.7363" gradientUnits="userSpaceOnUse">
34 +<stop stop-color="#D30508"/>
35 +<stop offset="1" stop-color="#B40003"/>
36 +</linearGradient>
37 +<linearGradient id="paint6_linear_18375_211277" x1="22.6883" y1="9.25488" x2="22.6883" y2="37.0322" gradientUnits="userSpaceOnUse">
38 +<stop stop-color="white"/>
39 +<stop offset="1" stop-color="#FFA4A6"/>
40 +</linearGradient>
41 +<clipPath id="clip0_18375_211277">
42 +<rect width="44" height="44" fill="white"/>
43 +</clipPath>
44 +</defs>
45 +</svg>
res/pictures/card_icons/chain_icons/zano.svg new
+76
@@ -0,0 +1,76 @@
1 +<svg opacity="0.85" width="250" height="250" viewBox="0 0 250 250" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<g clip-path="url(#clip0_11259_64391)">
3 +<path d="M125 250C194.271 250 250 194.271 250 125C250 55.7288 194.271 0 125 0C55.7288 0 0 55.7288 0 125C0 194.271 55.7288 250 125 250Z" fill="url(#paint0_linear_11259_64391)"/>
4 +<path d="M245 125C245 58.4902 191.51 5 125 5C58.4902 5 5 58.4902 5 125C5 191.51 58.4902 245 125 245V250C55.7288 250 0 194.271 0 125C0 55.7288 55.7288 0 125 0C194.271 0 250 55.7288 250 125C250 194.271 194.271 250 125 250V245C191.51 245 245 191.51 245 125Z" fill="url(#paint1_linear_11259_64391)"/>
5 +<path d="M245 125C245 58.4902 191.51 5 125 5C58.4902 5 5 58.4902 5 125C5 191.51 58.4902 245 125 245V250C55.7288 250 0 194.271 0 125C0 55.7288 55.7288 0 125 0C194.271 0 250 55.7288 250 125C250 194.271 194.271 250 125 250V245C191.51 245 245 191.51 245 125Z" fill="url(#paint2_linear_11259_64391)"/>
6 +<path d="M245 125C245 58.4902 191.51 5 125 5C58.4902 5 5 58.4902 5 125C5 191.51 58.4902 245 125 245V250C55.7288 250 0 194.271 0 125C0 55.7288 55.7288 0 125 0C194.271 0 250 55.7288 250 125C250 194.271 194.271 250 125 250V245C191.51 245 245 191.51 245 125Z" fill="url(#paint3_linear_11259_64391)"/>
7 +<path fill-rule="evenodd" clip-rule="evenodd" d="M155.153 54C161.035 53.9999 165.984 53.9999 170.035 54.3369C174.273 54.6895 178.309 55.4559 182.144 57.4453C187.984 60.4756 192.732 65.3106 195.708 71.2578C197.661 75.1621 198.414 79.2728 198.76 83.5879C199.091 87.7133 199.091 92.7533 199.091 98.7432V115.329C199.091 121.319 199.091 126.359 198.76 130.484C198.414 134.799 197.661 138.91 195.708 142.814C192.732 148.762 187.984 153.597 182.144 156.627C178.309 158.616 174.273 159.383 170.035 159.735C165.986 160.072 161.041 160.071 155.163 160.071V160.403C155.163 165.866 155.163 170.462 154.887 174.234C154.598 178.176 153.97 181.943 152.336 185.571C149.238 192.449 143.82 197.966 137.066 201.121C133.504 202.786 129.804 203.425 125.934 203.719C122.229 204 117.715 204 112.352 204H94.9375C93.467 204 92.0546 204 90.7002 203.995C86.6371 203.979 83.0938 203.916 80.0557 203.663C75.8181 203.31 71.7814 202.544 67.9473 200.555C62.1071 197.525 57.3586 192.689 54.3828 186.742C52.4293 182.838 51.6773 178.727 51.3311 174.412C51.0001 170.287 50.9999 165.247 51 159.257V142.671C50.9999 136.681 51.0001 131.641 51.3311 127.516C51.6773 123.201 52.4293 119.09 54.3828 115.186C57.3586 109.238 62.1071 104.403 67.9473 101.373C71.7814 99.3837 75.8181 98.6172 80.0557 98.2647C83.8967 97.9452 88.5449 97.9294 94.0303 97.9287C93.9664 92.4661 93.9329 87.824 94.1973 83.9707C94.4962 79.6117 95.2099 75.4543 97.1475 71.499C100.096 65.479 104.854 60.5742 110.729 57.4981C114.59 55.477 118.664 54.6994 122.94 54.3418C127.031 53.9998 132.033 53.9999 137.98 54H155.153ZM95.2959 116.143C88.9611 116.143 84.7475 116.15 81.5117 116.419C78.3804 116.679 76.9597 117.139 76.0674 117.602C73.5928 118.886 71.5812 120.935 70.3203 123.455C69.8658 124.364 69.4141 125.81 69.1582 128.999C68.8939 132.294 68.8867 136.584 68.8867 143.035V158.893C68.8867 165.343 68.8939 169.634 69.1582 172.929C69.4141 176.117 69.8658 177.564 70.3203 178.473C71.5812 180.993 73.5928 183.042 76.0674 184.326C76.9597 184.789 78.3804 185.248 81.5117 185.509C84.7475 185.778 88.9611 185.785 95.2959 185.785H112.025C113.469 185.785 114.792 185.785 116.011 185.781C119.667 185.769 122.382 185.723 124.602 185.555C127.47 185.337 128.785 184.95 129.608 184.565C132.47 183.229 134.766 180.891 136.079 177.977C136.457 177.138 136.836 175.799 137.05 172.879C137.271 169.866 137.276 165.954 137.276 160.072H103.871C100.269 160.072 97.018 157.872 95.624 154.489C94.2303 151.107 94.9658 147.203 97.4893 144.585L124.908 116.143H95.2959ZM138.342 72.2148C131.938 72.2148 127.676 72.2216 124.404 72.4951C121.236 72.76 119.803 73.2276 118.908 73.6963C116.419 74.9998 114.403 77.0781 113.153 79.6289C112.704 80.5463 112.262 82.011 112.04 85.2402C111.83 88.3107 111.852 92.2341 111.918 97.9277H146.22C151.159 97.9278 155.163 102.005 155.163 107.035C155.163 109.52 154.184 111.771 152.6 113.414L152.602 113.416L125.184 141.857H154.795C161.13 141.857 165.343 141.85 168.579 141.581C171.71 141.321 173.131 140.861 174.023 140.398C176.498 139.114 178.51 137.065 179.771 134.545C180.225 133.636 180.677 132.19 180.933 129.001C181.197 125.706 181.204 121.416 181.204 114.965V99.1074C181.204 92.6567 181.197 88.3663 180.933 85.0713C180.677 81.8827 180.225 80.4361 179.771 79.5273C178.51 77.0074 176.498 74.958 174.023 73.6738C173.131 73.2109 171.71 72.7517 168.579 72.4912C166.152 72.2893 163.175 72.2343 159.166 72.2197L154.795 72.2148H138.342Z" fill="url(#paint4_linear_11259_64391)"/>
8 +<path fill-rule="evenodd" clip-rule="evenodd" d="M137.981 50H155.153C161.035 49.9999 165.984 49.9998 170.035 50.3368C174.273 50.6894 178.309 51.4556 182.143 53.445C187.984 56.4753 192.732 61.3106 195.708 67.2579C197.661 71.1622 198.414 75.2726 198.76 79.5877C199.091 83.7131 199.091 88.7528 199.091 94.7428V111.329C199.091 117.319 199.091 122.359 198.76 126.484C198.414 130.8 197.661 134.91 195.708 138.814C192.732 144.762 187.984 149.597 182.143 152.627C178.309 154.617 174.273 155.383 170.035 155.735C165.984 156.073 161.035 156.072 155.153 156.072H103.871C100.269 156.072 97.0181 153.871 95.6242 150.489C94.2304 147.107 94.9654 143.203 97.4889 140.585L139.838 96.656L152.602 109.416L125.183 137.858H154.795C161.13 137.858 165.343 137.851 168.579 137.581C171.71 137.321 173.131 136.861 174.023 136.398C176.498 135.114 178.51 133.065 179.771 130.545C180.225 129.637 180.677 128.19 180.933 125.001C181.197 121.706 181.204 117.416 181.204 110.965V95.1075C181.204 88.6566 181.197 84.3662 180.933 81.0711C180.677 77.8823 180.225 76.4359 179.771 75.5271C178.51 73.0071 176.498 70.9583 174.023 69.6741C173.131 69.2111 171.71 68.7512 168.579 68.4907C165.343 68.2215 161.13 68.2144 154.795 68.2144H138.342C131.938 68.2144 127.675 68.2216 124.404 68.4951C121.236 68.76 119.804 69.2278 118.908 69.6964C116.419 71 114.402 73.0782 113.153 75.6292C112.704 76.5465 112.262 78.0105 112.04 81.2397C111.812 84.5742 111.857 88.9143 111.935 95.4353L112.024 102.925L94.1392 103.147L94.0451 95.2899C93.9723 89.2332 93.9112 84.1401 94.1973 79.9706C94.4962 75.6116 95.2097 71.4542 97.1472 67.4989C100.096 61.4787 104.854 56.5738 110.73 53.4977C114.59 51.4766 118.664 50.6994 122.94 50.3418C127.031 49.9998 132.033 49.9999 137.981 50Z" fill="url(#paint5_linear_11259_64391)"/>
9 +<path fill-rule="evenodd" clip-rule="evenodd" d="M137.981 50H155.153C161.035 49.9999 165.984 49.9998 170.035 50.3368C174.273 50.6894 178.309 51.4556 182.143 53.445C187.984 56.4753 192.732 61.3106 195.708 67.2579C197.661 71.1622 198.414 75.2726 198.76 79.5877C199.091 83.7131 199.091 88.7528 199.091 94.7428V111.329C199.091 117.319 199.091 122.359 198.76 126.484C198.414 130.8 197.661 134.91 195.708 138.814C192.732 144.762 187.984 149.597 182.143 152.627C178.309 154.617 174.273 155.383 170.035 155.735C165.984 156.073 161.035 156.072 155.153 156.072H103.871C100.269 156.072 97.0181 153.871 95.6242 150.489C94.2304 147.107 94.9654 143.203 97.4889 140.585L139.838 96.656L152.602 109.416L125.183 137.858H154.795C161.13 137.858 165.343 137.851 168.579 137.581C171.71 137.321 173.131 136.861 174.023 136.398C176.498 135.114 178.51 133.065 179.771 130.545C180.225 129.637 180.677 128.19 180.933 125.001C181.197 121.706 181.204 117.416 181.204 110.965V95.1075C181.204 88.6566 181.197 84.3662 180.933 81.0711C180.677 77.8823 180.225 76.4359 179.771 75.5271C178.51 73.0071 176.498 70.9583 174.023 69.6741C173.131 69.2111 171.71 68.7512 168.579 68.4907C165.343 68.2215 161.13 68.2144 154.795 68.2144H138.342C131.938 68.2144 127.675 68.2216 124.404 68.4951C121.236 68.76 119.804 69.2278 118.908 69.6964C116.419 71 114.402 73.0782 113.153 75.6292C112.704 76.5465 112.262 78.0105 112.04 81.2397C111.812 84.5742 111.857 88.9143 111.935 95.4353L112.024 102.925L94.1392 103.147L94.0451 95.2899C93.9723 89.2332 93.9112 84.1401 94.1973 79.9706C94.4962 75.6116 95.2097 71.4542 97.1472 67.4989C100.096 61.4787 104.854 56.5738 110.73 53.4977C114.59 51.4766 118.664 50.6994 122.94 50.3418C127.031 49.9998 132.033 49.9999 137.981 50Z" fill="url(#paint6_radial_11259_64391)"/>
10 +<path fill-rule="evenodd" clip-rule="evenodd" d="M137.981 50H155.153C161.035 49.9999 165.984 49.9998 170.035 50.3368C174.273 50.6894 178.309 51.4556 182.143 53.445C187.984 56.4753 192.732 61.3106 195.708 67.2579C197.661 71.1622 198.414 75.2726 198.76 79.5877C199.091 83.7131 199.091 88.7528 199.091 94.7428V111.329C199.091 117.319 199.091 122.359 198.76 126.484C198.414 130.8 197.661 134.91 195.708 138.814C192.732 144.762 187.984 149.597 182.143 152.627C178.309 154.617 174.273 155.383 170.035 155.735C165.984 156.073 161.035 156.072 155.153 156.072H103.871C100.269 156.072 97.0181 153.871 95.6242 150.489C94.2304 147.107 94.9654 143.203 97.4889 140.585L139.838 96.656L152.602 109.416L125.183 137.858H154.795C161.13 137.858 165.343 137.851 168.579 137.581C171.71 137.321 173.131 136.861 174.023 136.398C176.498 135.114 178.51 133.065 179.771 130.545C180.225 129.637 180.677 128.19 180.933 125.001C181.197 121.706 181.204 117.416 181.204 110.965V95.1075C181.204 88.6566 181.197 84.3662 180.933 81.0711C180.677 77.8823 180.225 76.4359 179.771 75.5271C178.51 73.0071 176.498 70.9583 174.023 69.6741C173.131 69.2111 171.71 68.7512 168.579 68.4907C165.343 68.2215 161.13 68.2144 154.795 68.2144H138.342C131.938 68.2144 127.675 68.2216 124.404 68.4951C121.236 68.76 119.804 69.2278 118.908 69.6964C116.419 71 114.402 73.0782 113.153 75.6292C112.704 76.5465 112.262 78.0105 112.04 81.2397C111.812 84.5742 111.857 88.9143 111.935 95.4353L112.024 102.925L94.1392 103.147L94.0451 95.2899C93.9723 89.2332 93.9112 84.1401 94.1973 79.9706C94.4962 75.6116 95.2097 71.4542 97.1472 67.4989C100.096 61.4787 104.854 56.5738 110.73 53.4977C114.59 51.4766 118.664 50.6994 122.94 50.3418C127.031 49.9998 132.033 49.9999 137.981 50Z" fill="url(#paint7_radial_11259_64391)"/>
11 +<path fill-rule="evenodd" clip-rule="evenodd" d="M137.981 50H155.153C161.035 49.9999 165.984 49.9998 170.035 50.3368C174.273 50.6894 178.309 51.4556 182.143 53.445C187.984 56.4753 192.732 61.3106 195.708 67.2579C197.661 71.1622 198.414 75.2726 198.76 79.5877C199.091 83.7131 199.091 88.7528 199.091 94.7428V111.329C199.091 117.319 199.091 122.359 198.76 126.484C198.414 130.8 197.661 134.91 195.708 138.814C192.732 144.762 187.984 149.597 182.143 152.627C178.309 154.617 174.273 155.383 170.035 155.735C165.984 156.073 161.035 156.072 155.153 156.072H103.871C100.269 156.072 97.0181 153.871 95.6242 150.489C94.2304 147.107 94.9654 143.203 97.4889 140.585L139.838 96.656L152.602 109.416L125.183 137.858H154.795C161.13 137.858 165.343 137.851 168.579 137.581C171.71 137.321 173.131 136.861 174.023 136.398C176.498 135.114 178.51 133.065 179.771 130.545C180.225 129.637 180.677 128.19 180.933 125.001C181.197 121.706 181.204 117.416 181.204 110.965V95.1075C181.204 88.6566 181.197 84.3662 180.933 81.0711C180.677 77.8823 180.225 76.4359 179.771 75.5271C178.51 73.0071 176.498 70.9583 174.023 69.6741C173.131 69.2111 171.71 68.7512 168.579 68.4907C165.343 68.2215 161.13 68.2144 154.795 68.2144H138.342C131.938 68.2144 127.675 68.2216 124.404 68.4951C121.236 68.76 119.804 69.2278 118.908 69.6964C116.419 71 114.402 73.0782 113.153 75.6292C112.704 76.5465 112.262 78.0105 112.04 81.2397C111.812 84.5742 111.857 88.9143 111.935 95.4353L112.024 102.925L94.1392 103.147L94.0451 95.2899C93.9723 89.2332 93.9112 84.1401 94.1973 79.9706C94.4962 75.6116 95.2097 71.4542 97.1472 67.4989C100.096 61.4787 104.854 56.5738 110.73 53.4977C114.59 51.4766 118.664 50.6994 122.94 50.3418C127.031 49.9998 132.033 49.9999 137.981 50Z" fill="url(#paint8_radial_11259_64391)"/>
12 +<path fill-rule="evenodd" clip-rule="evenodd" d="M81.5118 181.509C84.7476 181.778 88.9608 181.786 95.2956 181.786H112.025C117.801 181.786 121.643 181.78 124.602 181.555C127.47 181.337 128.785 180.951 129.608 180.566C132.47 179.229 134.766 176.891 136.079 173.977C136.456 173.138 136.836 171.799 137.05 168.879C137.271 165.865 137.277 161.953 137.277 156.071H155.163V156.403C155.163 161.866 155.163 166.462 154.887 170.235C154.598 174.176 153.971 177.943 152.336 181.572C149.238 188.449 143.82 193.966 137.066 197.121C133.503 198.786 129.804 199.424 125.934 199.718C122.229 200 117.715 200 112.351 200H94.9372C89.0552 200 84.1062 200 80.0553 199.663C75.8178 199.31 71.7814 198.544 67.9473 196.555C62.107 193.525 57.3588 188.689 54.383 182.742C52.4294 178.838 51.677 174.727 51.3307 170.412C50.9998 166.287 50.9999 161.247 51 155.257V138.671C50.9999 132.681 50.9998 127.641 51.3307 123.515C51.677 119.2 52.4294 115.09 54.383 111.186C57.3588 105.238 62.107 100.403 67.9473 97.3726C71.7814 95.3833 75.8178 94.617 80.0553 94.2645C84.1064 93.9276 89.0554 93.9276 94.9374 93.9277H146.22C151.159 93.9277 155.163 98.0052 155.163 103.035C155.163 108.065 151.159 112.142 146.22 112.142H95.2956C88.9608 112.142 84.7476 112.149 81.5118 112.418C78.3804 112.679 76.96 113.139 76.0676 113.602C73.593 114.886 71.581 116.935 70.32 119.455C69.8655 120.363 69.4138 121.81 69.1579 124.999C68.8936 128.294 68.8866 132.584 68.8866 139.035V154.892C68.8866 161.343 68.8936 165.634 69.1579 168.929C69.4138 172.118 69.8655 173.564 70.32 174.473C71.581 176.993 73.593 179.042 76.0676 180.326C76.96 180.789 78.3804 181.249 81.5118 181.509Z" fill="url(#paint9_linear_11259_64391)"/>
13 +<path fill-rule="evenodd" clip-rule="evenodd" d="M81.5118 181.509C84.7476 181.778 88.9608 181.786 95.2956 181.786H112.025C117.801 181.786 121.643 181.78 124.602 181.555C127.47 181.337 128.785 180.951 129.608 180.566C132.47 179.229 134.766 176.891 136.079 173.977C136.456 173.138 136.836 171.799 137.05 168.879C137.271 165.865 137.277 161.953 137.277 156.071H155.163V156.403C155.163 161.866 155.163 166.462 154.887 170.235C154.598 174.176 153.971 177.943 152.336 181.572C149.238 188.449 143.82 193.966 137.066 197.121C133.503 198.786 129.804 199.424 125.934 199.718C122.229 200 117.715 200 112.351 200H94.9372C89.0552 200 84.1062 200 80.0553 199.663C75.8178 199.31 71.7814 198.544 67.9473 196.555C62.107 193.525 57.3588 188.689 54.383 182.742C52.4294 178.838 51.677 174.727 51.3307 170.412C50.9998 166.287 50.9999 161.247 51 155.257V138.671C50.9999 132.681 50.9998 127.641 51.3307 123.515C51.677 119.2 52.4294 115.09 54.383 111.186C57.3588 105.238 62.107 100.403 67.9473 97.3726C71.7814 95.3833 75.8178 94.617 80.0553 94.2645C84.1064 93.9276 89.0554 93.9276 94.9374 93.9277H146.22C151.159 93.9277 155.163 98.0052 155.163 103.035C155.163 108.065 151.159 112.142 146.22 112.142H95.2956C88.9608 112.142 84.7476 112.149 81.5118 112.418C78.3804 112.679 76.96 113.139 76.0676 113.602C73.593 114.886 71.581 116.935 70.32 119.455C69.8655 120.363 69.4138 121.81 69.1579 124.999C68.8936 128.294 68.8866 132.584 68.8866 139.035V154.892C68.8866 161.343 68.8936 165.634 69.1579 168.929C69.4138 172.118 69.8655 173.564 70.32 174.473C71.581 176.993 73.593 179.042 76.0676 180.326C76.96 180.789 78.3804 181.249 81.5118 181.509Z" fill="url(#paint10_radial_11259_64391)"/>
14 +<path d="M112.352 198V200H94.9375V198H112.352ZM153.163 156.403V154.071H155.163C161.07 154.071 165.922 154.071 169.869 153.742C173.979 153.4 177.72 152.669 181.223 150.852C186.683 148.018 191.13 143.493 193.919 137.92C195.71 134.341 196.43 130.518 196.767 126.324C197.09 122.296 197.091 117.347 197.091 111.329V94.7432C197.091 88.7251 197.09 83.7758 196.767 79.748C196.43 75.5542 195.71 71.7311 193.919 68.1523C191.13 62.5788 186.683 58.0542 181.223 55.2207C177.72 53.4035 173.979 52.6721 169.869 52.3301C166.907 52.0836 163.436 52.0207 159.392 52.0049L155.153 52H137.98C132.003 51.9999 127.096 52.0015 123.107 52.335C118.959 52.6819 115.183 53.4236 111.657 55.2695C106.163 58.146 101.707 62.7366 98.9434 68.3789C97.1674 72.0043 96.4829 75.8704 96.1924 80.1074C95.9345 83.8658 95.9662 88.4245 96.0303 93.9053L96.0537 95.9287H94.0303C88.5233 95.9294 83.9638 95.9466 80.2217 96.2578C76.1114 96.5997 72.3706 97.3312 68.8682 99.1484C63.4073 101.982 58.9608 106.507 56.1719 112.08C54.3812 115.659 53.6607 119.482 53.3242 123.676C53.0819 126.697 53.0204 130.236 53.0049 134.355L53 138.671V155.257C52.9999 161.275 53.0011 166.224 53.3242 170.252C53.6607 174.446 54.3812 178.269 56.1719 181.848C58.9608 187.421 63.4074 191.946 68.8682 194.779C72.3705 196.597 76.1112 197.328 80.2217 197.67C83.174 197.915 86.6481 197.979 90.708 197.995C92.0577 198 93.4659 198 94.9375 198V200C93.467 200 92.0546 200 90.7002 199.995C86.6371 199.979 83.0938 199.916 80.0557 199.663C75.8181 199.31 71.7814 198.544 67.9473 196.555C62.1071 193.524 57.3586 188.689 54.3828 182.742C52.4293 178.838 51.6773 174.727 51.3311 170.412C51.0001 166.287 50.9999 161.247 51 155.257V138.671C50.9999 132.681 51.0001 127.641 51.3311 123.516C51.6773 119.201 52.4293 115.09 54.3828 111.186C57.3586 105.238 62.1071 100.403 67.9473 97.373C71.7814 95.3837 75.8181 94.6171 80.0557 94.2646C83.8967 93.9452 88.5449 93.9294 94.0303 93.9287C93.9664 88.4661 93.9329 83.824 94.1973 79.9707C94.4962 75.6117 95.2099 71.4543 97.1475 67.499C100.096 61.479 104.854 56.5742 110.729 53.4981C114.59 51.477 118.664 50.6994 122.94 50.3418C127.031 49.9998 132.033 49.9999 137.98 50H155.153C161.035 49.9999 165.984 49.9999 170.035 50.3369C174.273 50.6895 178.309 51.4559 182.144 53.4453C187.984 56.4756 192.732 61.3106 195.708 67.2578C197.661 71.1621 198.414 75.2728 198.76 79.5879C199.091 83.7133 199.091 88.7533 199.091 94.7432V111.329C199.091 117.319 199.091 122.359 198.76 126.484C198.414 130.799 197.661 134.91 195.708 138.814C192.732 144.762 187.984 149.597 182.144 152.627C178.309 154.616 174.273 155.383 170.035 155.735C165.986 156.072 161.041 156.071 155.163 156.071V156.403C155.163 161.866 155.163 166.462 154.887 170.234C154.598 174.176 153.97 177.943 152.336 181.571C149.238 188.449 143.82 193.966 137.066 197.121C133.504 198.786 129.804 199.425 125.934 199.719C122.229 200 117.715 200 112.352 200V198C117.742 198 122.17 197.999 125.782 197.725C129.537 197.439 132.966 196.829 136.22 195.309C142.534 192.359 147.608 187.197 150.513 180.75C152.011 177.424 152.611 173.919 152.892 170.088C153.162 166.405 153.163 161.891 153.163 156.403ZM139.276 154.072V156.072C139.276 161.923 139.273 165.922 139.045 169.025C138.851 171.674 138.516 173.232 138.091 174.346L137.902 174.798C136.395 178.143 133.756 180.836 130.455 182.378C129.321 182.908 127.735 183.322 124.753 183.549C122.453 183.724 119.671 183.769 116.018 183.781C114.795 183.785 113.468 183.785 112.025 183.785H95.2959C88.9958 183.785 84.684 183.78 81.3457 183.502C78.0902 183.231 76.372 182.737 75.1465 182.102C72.2925 180.621 69.9788 178.26 68.5313 175.367C67.9136 174.132 67.4305 172.397 67.165 169.089C66.8928 165.695 66.8867 161.31 66.8867 154.893V139.035C66.8867 132.618 66.8928 128.233 67.165 124.839C67.4305 121.531 67.9135 119.795 68.5313 118.561C69.9788 115.668 72.2925 113.307 75.1465 111.826C76.372 111.19 78.0902 110.697 81.3457 110.426C84.684 110.148 88.9958 110.143 95.2959 110.143V112.143C88.9611 112.143 84.7475 112.15 81.5117 112.419C78.3804 112.679 76.9597 113.139 76.0674 113.602C73.5928 114.886 71.5812 116.935 70.3203 119.455C69.8658 120.364 69.4141 121.81 69.1582 124.999C68.8939 128.294 68.8867 132.584 68.8867 139.035V154.893C68.8867 161.343 68.8939 165.634 69.1582 168.929C69.4141 172.117 69.8658 173.564 70.3203 174.473C71.5812 176.993 73.5928 179.042 76.0674 180.326C76.9597 180.789 78.3804 181.248 81.5117 181.509C84.7475 181.778 88.9611 181.785 95.2959 181.785H112.025C113.469 181.785 114.792 181.785 116.011 181.781C119.667 181.769 122.382 181.723 124.602 181.555C127.47 181.337 128.785 180.95 129.608 180.565C132.47 179.229 134.766 176.891 136.079 173.977C136.457 173.138 136.836 171.799 137.05 168.879C137.271 165.866 137.276 161.954 137.276 156.072H103.871V154.072H139.276ZM129.614 110.143L98.9287 141.973C96.9608 144.014 96.3801 147.074 97.4736 149.728C98.5653 152.376 101.096 154.072 103.871 154.072V156.072C100.269 156.072 97.018 153.872 95.624 150.489C94.2303 147.107 94.9658 143.203 97.4893 140.585L124.908 112.143H95.2959V110.143H129.614ZM153.163 103.035C153.163 99.1993 150.214 96.125 146.574 95.9365L146.22 95.9277H109.941L109.918 93.9512C109.853 88.281 109.828 84.2703 110.045 81.1035C110.275 77.7541 110.746 75.9972 111.357 74.749L111.637 74.2061C113.084 71.5249 115.289 69.334 117.98 67.9248C119.211 67.2805 120.944 66.7773 124.237 66.502C127.612 66.2198 131.973 66.2148 138.342 66.2148V68.2148C131.938 68.2148 127.676 68.2216 124.404 68.4951C121.236 68.76 119.803 69.2276 118.908 69.6963C116.419 70.9998 114.403 73.0781 113.153 75.6289C112.704 76.5463 112.262 78.011 112.04 81.2402C111.83 84.3107 111.852 88.2341 111.918 93.9277H146.22C151.159 93.9278 155.163 98.0054 155.163 103.035C155.163 105.52 154.184 107.771 152.6 109.414L152.602 109.416L125.184 137.857H154.795C161.13 137.857 165.343 137.85 168.579 137.581C171.71 137.321 173.131 136.861 174.023 136.398C176.498 135.114 178.51 133.065 179.771 130.545C180.225 129.636 180.677 128.19 180.933 125.001C181.197 121.706 181.204 117.416 181.204 110.965V95.1074C181.204 88.6566 181.197 84.3663 180.933 81.0713C180.677 77.8827 180.225 76.4361 179.771 75.5273C178.51 73.0074 176.498 70.958 174.023 69.6738C173.131 69.2109 171.71 68.7517 168.579 68.4912C166.152 68.2893 163.175 68.2343 159.166 68.2197L154.795 68.2148H138.342V66.2148H154.797L159.168 66.2197H159.173C163.18 66.2343 166.23 66.2888 168.745 66.4981C172 66.7689 173.719 67.2626 174.944 67.8984C177.798 69.3795 180.112 71.7399 181.56 74.6328C182.177 75.8678 182.66 77.6032 182.926 80.9111C183.13 83.4565 183.185 86.5595 183.199 90.6592L183.204 95.1074V110.965C183.204 117.382 183.198 121.767 182.926 125.161C182.66 128.469 182.177 130.205 181.56 131.439C180.112 134.332 177.798 136.693 174.944 138.174C173.719 138.81 172 139.303 168.745 139.574C165.407 139.852 161.095 139.857 154.795 139.857H120.478L149.799 109.441L149.797 109.439L151.16 108.025C152.32 106.823 153.066 105.203 153.154 103.398L153.163 103.035Z" fill="url(#paint11_linear_11259_64391)"/>
15 +<path d="M112.352 198V200H94.9375V198H112.352ZM153.163 156.403V154.071H155.163C161.07 154.071 165.922 154.071 169.869 153.742C173.979 153.4 177.72 152.669 181.223 150.852C186.683 148.018 191.13 143.493 193.919 137.92C195.71 134.341 196.43 130.518 196.767 126.324C197.09 122.296 197.091 117.347 197.091 111.329V94.7432C197.091 88.7251 197.09 83.7758 196.767 79.748C196.43 75.5542 195.71 71.7311 193.919 68.1523C191.13 62.5788 186.683 58.0542 181.223 55.2207C177.72 53.4035 173.979 52.6721 169.869 52.3301C166.907 52.0836 163.436 52.0207 159.392 52.0049L155.153 52H137.98C132.003 51.9999 127.096 52.0015 123.107 52.335C118.959 52.6819 115.183 53.4236 111.657 55.2695C106.163 58.146 101.707 62.7366 98.9434 68.3789C97.1674 72.0043 96.4829 75.8704 96.1924 80.1074C95.9345 83.8658 95.9662 88.4245 96.0303 93.9053L96.0537 95.9287H94.0303C88.5233 95.9294 83.9638 95.9466 80.2217 96.2578C76.1114 96.5997 72.3706 97.3312 68.8682 99.1484C63.4073 101.982 58.9608 106.507 56.1719 112.08C54.3812 115.659 53.6607 119.482 53.3242 123.676C53.0819 126.697 53.0204 130.236 53.0049 134.355L53 138.671V155.257C52.9999 161.275 53.0011 166.224 53.3242 170.252C53.6607 174.446 54.3812 178.269 56.1719 181.848C58.9608 187.421 63.4074 191.946 68.8682 194.779C72.3705 196.597 76.1112 197.328 80.2217 197.67C83.174 197.915 86.6481 197.979 90.708 197.995C92.0577 198 93.4659 198 94.9375 198V200C93.467 200 92.0546 200 90.7002 199.995C86.6371 199.979 83.0938 199.916 80.0557 199.663C75.8181 199.31 71.7814 198.544 67.9473 196.555C62.1071 193.524 57.3586 188.689 54.3828 182.742C52.4293 178.838 51.6773 174.727 51.3311 170.412C51.0001 166.287 50.9999 161.247 51 155.257V138.671C50.9999 132.681 51.0001 127.641 51.3311 123.516C51.6773 119.201 52.4293 115.09 54.3828 111.186C57.3586 105.238 62.1071 100.403 67.9473 97.373C71.7814 95.3837 75.8181 94.6171 80.0557 94.2646C83.8967 93.9452 88.5449 93.9294 94.0303 93.9287C93.9664 88.4661 93.9329 83.824 94.1973 79.9707C94.4962 75.6117 95.2099 71.4543 97.1475 67.499C100.096 61.479 104.854 56.5742 110.729 53.4981C114.59 51.477 118.664 50.6994 122.94 50.3418C127.031 49.9998 132.033 49.9999 137.98 50H155.153C161.035 49.9999 165.984 49.9999 170.035 50.3369C174.273 50.6895 178.309 51.4559 182.144 53.4453C187.984 56.4756 192.732 61.3106 195.708 67.2578C197.661 71.1621 198.414 75.2728 198.76 79.5879C199.091 83.7133 199.091 88.7533 199.091 94.7432V111.329C199.091 117.319 199.091 122.359 198.76 126.484C198.414 130.799 197.661 134.91 195.708 138.814C192.732 144.762 187.984 149.597 182.144 152.627C178.309 154.616 174.273 155.383 170.035 155.735C165.986 156.072 161.041 156.071 155.163 156.071V156.403C155.163 161.866 155.163 166.462 154.887 170.234C154.598 174.176 153.97 177.943 152.336 181.571C149.238 188.449 143.82 193.966 137.066 197.121C133.504 198.786 129.804 199.425 125.934 199.719C122.229 200 117.715 200 112.352 200V198C117.742 198 122.17 197.999 125.782 197.725C129.537 197.439 132.966 196.829 136.22 195.309C142.534 192.359 147.608 187.197 150.513 180.75C152.011 177.424 152.611 173.919 152.892 170.088C153.162 166.405 153.163 161.891 153.163 156.403ZM139.276 154.072V156.072C139.276 161.923 139.273 165.922 139.045 169.025C138.851 171.674 138.516 173.232 138.091 174.346L137.902 174.798C136.395 178.143 133.756 180.836 130.455 182.378C129.321 182.908 127.735 183.322 124.753 183.549C122.453 183.724 119.671 183.769 116.018 183.781C114.795 183.785 113.468 183.785 112.025 183.785H95.2959C88.9958 183.785 84.684 183.78 81.3457 183.502C78.0902 183.231 76.372 182.737 75.1465 182.102C72.2925 180.621 69.9788 178.26 68.5313 175.367C67.9136 174.132 67.4305 172.397 67.165 169.089C66.8928 165.695 66.8867 161.31 66.8867 154.893V139.035C66.8867 132.618 66.8928 128.233 67.165 124.839C67.4305 121.531 67.9135 119.795 68.5313 118.561C69.9788 115.668 72.2925 113.307 75.1465 111.826C76.372 111.19 78.0902 110.697 81.3457 110.426C84.684 110.148 88.9958 110.143 95.2959 110.143V112.143C88.9611 112.143 84.7475 112.15 81.5117 112.419C78.3804 112.679 76.9597 113.139 76.0674 113.602C73.5928 114.886 71.5812 116.935 70.3203 119.455C69.8658 120.364 69.4141 121.81 69.1582 124.999C68.8939 128.294 68.8867 132.584 68.8867 139.035V154.893C68.8867 161.343 68.8939 165.634 69.1582 168.929C69.4141 172.117 69.8658 173.564 70.3203 174.473C71.5812 176.993 73.5928 179.042 76.0674 180.326C76.9597 180.789 78.3804 181.248 81.5117 181.509C84.7475 181.778 88.9611 181.785 95.2959 181.785H112.025C113.469 181.785 114.792 181.785 116.011 181.781C119.667 181.769 122.382 181.723 124.602 181.555C127.47 181.337 128.785 180.95 129.608 180.565C132.47 179.229 134.766 176.891 136.079 173.977C136.457 173.138 136.836 171.799 137.05 168.879C137.271 165.866 137.276 161.954 137.276 156.072H103.871V154.072H139.276ZM129.614 110.143L98.9287 141.973C96.9608 144.014 96.3801 147.074 97.4736 149.728C98.5653 152.376 101.096 154.072 103.871 154.072V156.072C100.269 156.072 97.018 153.872 95.624 150.489C94.2303 147.107 94.9658 143.203 97.4893 140.585L124.908 112.143H95.2959V110.143H129.614ZM153.163 103.035C153.163 99.1993 150.214 96.125 146.574 95.9365L146.22 95.9277H109.941L109.918 93.9512C109.853 88.281 109.828 84.2703 110.045 81.1035C110.275 77.7541 110.746 75.9972 111.357 74.749L111.637 74.2061C113.084 71.5249 115.289 69.334 117.98 67.9248C119.211 67.2805 120.944 66.7773 124.237 66.502C127.612 66.2198 131.973 66.2148 138.342 66.2148V68.2148C131.938 68.2148 127.676 68.2216 124.404 68.4951C121.236 68.76 119.803 69.2276 118.908 69.6963C116.419 70.9998 114.403 73.0781 113.153 75.6289C112.704 76.5463 112.262 78.011 112.04 81.2402C111.83 84.3107 111.852 88.2341 111.918 93.9277H146.22C151.159 93.9278 155.163 98.0054 155.163 103.035C155.163 105.52 154.184 107.771 152.6 109.414L152.602 109.416L125.184 137.857H154.795C161.13 137.857 165.343 137.85 168.579 137.581C171.71 137.321 173.131 136.861 174.023 136.398C176.498 135.114 178.51 133.065 179.771 130.545C180.225 129.636 180.677 128.19 180.933 125.001C181.197 121.706 181.204 117.416 181.204 110.965V95.1074C181.204 88.6566 181.197 84.3663 180.933 81.0713C180.677 77.8827 180.225 76.4361 179.771 75.5273C178.51 73.0074 176.498 70.958 174.023 69.6738C173.131 69.2109 171.71 68.7517 168.579 68.4912C166.152 68.2893 163.175 68.2343 159.166 68.2197L154.795 68.2148H138.342V66.2148H154.797L159.168 66.2197H159.173C163.18 66.2343 166.23 66.2888 168.745 66.4981C172 66.7689 173.719 67.2626 174.944 67.8984C177.798 69.3795 180.112 71.7399 181.56 74.6328C182.177 75.8678 182.66 77.6032 182.926 80.9111C183.13 83.4565 183.185 86.5595 183.199 90.6592L183.204 95.1074V110.965C183.204 117.382 183.198 121.767 182.926 125.161C182.66 128.469 182.177 130.205 181.56 131.439C180.112 134.332 177.798 136.693 174.944 138.174C173.719 138.81 172 139.303 168.745 139.574C165.407 139.852 161.095 139.857 154.795 139.857H120.478L149.799 109.441L149.797 109.439L151.16 108.025C152.32 106.823 153.066 105.203 153.154 103.398L153.163 103.035Z" fill="url(#paint12_linear_11259_64391)"/>
16 +</g>
17 +<defs>
18 +<linearGradient id="paint0_linear_11259_64391" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
19 +<stop stop-color="#0004B4"/>
20 +<stop offset="1" stop-color="#170069"/>
21 +</linearGradient>
22 +<linearGradient id="paint1_linear_11259_64391" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
23 +<stop stop-color="#0002FF"/>
24 +<stop offset="1" stop-color="#2E07D8"/>
25 +</linearGradient>
26 +<linearGradient id="paint2_linear_11259_64391" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
27 +<stop offset="0.85" stop-color="#7A5CFF" stop-opacity="0"/>
28 +<stop offset="1" stop-color="#7A5CFF"/>
29 +</linearGradient>
30 +<linearGradient id="paint3_linear_11259_64391" x1="125" y1="0" x2="125" y2="250" gradientUnits="userSpaceOnUse">
31 +<stop stop-color="#3355FF"/>
32 +<stop offset="0.15" stop-color="#3355FF" stop-opacity="0"/>
33 +</linearGradient>
34 +<linearGradient id="paint4_linear_11259_64391" x1="125.045" y1="54" x2="125.045" y2="204" gradientUnits="userSpaceOnUse">
35 +<stop stop-color="#100180"/>
36 +<stop offset="1" stop-color="#0E005B"/>
37 +</linearGradient>
38 +<linearGradient id="paint5_linear_11259_64391" x1="121.562" y1="155.249" x2="122.777" y2="49.8651" gradientUnits="userSpaceOnUse">
39 +<stop offset="0.43118" stop-color="#498FFD"/>
40 +<stop offset="1" stop-color="#16D1D6"/>
41 +</linearGradient>
42 +<radialGradient id="paint6_radial_11259_64391" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(92.7436 82.1156) rotate(-15.6853) scale(67.6271 67.9608)">
43 +<stop stop-color="#18CFD7"/>
44 +<stop offset="1" stop-color="#18CFD7" stop-opacity="0"/>
45 +</radialGradient>
46 +<radialGradient id="paint7_radial_11259_64391" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(132.236 112.229) rotate(152.175) scale(25.3449 25.4144)">
47 +<stop stop-color="#4990FE"/>
48 +<stop offset="0.353962" stop-color="#4990FE"/>
49 +<stop offset="1" stop-color="#4990FE" stop-opacity="0"/>
50 +</radialGradient>
51 +<radialGradient id="paint8_radial_11259_64391" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(101.282 146.645) rotate(-46.1564) scale(46.2265 46.1414)">
52 +<stop stop-color="#4990FE"/>
53 +<stop offset="0.405688" stop-color="#4990FE"/>
54 +<stop offset="1" stop-color="#4990FE" stop-opacity="0"/>
55 +</radialGradient>
56 +<linearGradient id="paint9_linear_11259_64391" x1="155.717" y1="200.418" x2="156.108" y2="92.8708" gradientUnits="userSpaceOnUse">
57 +<stop stop-color="#2950FF"/>
58 +<stop offset="0.821717" stop-color="#498FFD"/>
59 +</linearGradient>
60 +<radialGradient id="paint10_radial_11259_64391" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(155.717 155.247) rotate(129.077) scale(45.7178 45.1677)">
61 +<stop offset="0.337169" stop-color="#2950FF"/>
62 +<stop offset="0.792226" stop-color="#2950FF" stop-opacity="0"/>
63 +</radialGradient>
64 +<linearGradient id="paint11_linear_11259_64391" x1="125.045" y1="50" x2="125.045" y2="200" gradientUnits="userSpaceOnUse">
65 +<stop stop-color="#26F3FF"/>
66 +<stop offset="0.296879" stop-color="#3D65FF" stop-opacity="0"/>
67 +</linearGradient>
68 +<linearGradient id="paint12_linear_11259_64391" x1="125.045" y1="50" x2="125.045" y2="200" gradientUnits="userSpaceOnUse">
69 +<stop offset="0.703121" stop-color="#2A53FE" stop-opacity="0"/>
70 +<stop offset="1" stop-color="#6582FF"/>
71 +</linearGradient>
72 +<clipPath id="clip0_11259_64391">
73 +<rect width="250" height="250" fill="white"/>
74 +</clipPath>
75 +</defs>
76 +</svg>
res/pictures/card_icons/chain_icons/zcash.svg new
+71
@@ -0,0 +1,71 @@
1 +<svg opacity="0.85" width="250" height="250" viewBox="0 0 250 250" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M246.258 155.241C229.561 222.205 161.73 262.959 94.7502 246.26C27.7977 229.565 -12.9605 161.737 3.74439 94.7758C20.4337 27.8031 88.2651 -12.9547 155.225 3.74061C222.201 20.4359 262.956 88.2719 246.258 155.241Z" fill="url(#paint0_linear_14352_348651)"/>
3 +<path d="M246.258 155.241C229.561 222.205 161.73 262.959 94.7502 246.26C27.7977 229.565 -12.9605 161.737 3.74439 94.7758C20.4337 27.8031 88.2651 -12.9547 155.225 3.74061C222.201 20.4359 262.956 88.2719 246.258 155.241Z" fill="url(#paint1_linear_14352_348651)"/>
4 +<path d="M246.258 155.241C229.561 222.205 161.73 262.959 94.7502 246.26C27.7977 229.565 -12.9605 161.737 3.74439 94.7758C20.4337 27.8031 88.2651 -12.9547 155.225 3.74061C222.201 20.4359 262.956 88.2719 246.258 155.241Z" fill="url(#paint2_linear_14352_348651)"/>
5 +<path d="M246.258 155.241C229.561 222.205 161.73 262.959 94.7502 246.26C27.7977 229.565 -12.9605 161.737 3.74439 94.7758C20.4337 27.8031 88.2651 -12.9547 155.225 3.74061C222.201 20.4359 262.956 88.2719 246.258 155.241Z" fill="url(#paint3_linear_14352_348651)"/>
6 +<path d="M246.258 155.241C229.561 222.205 161.73 262.959 94.7502 246.26C27.7977 229.565 -12.9605 161.737 3.74439 94.7758C20.4337 27.8031 88.2651 -12.9547 155.225 3.74061C222.201 20.4359 262.956 88.2719 246.258 155.241Z" fill="url(#paint4_linear_14352_348651)"/>
7 +<path d="M246.258 155.241C229.561 222.205 161.73 262.959 94.7502 246.26C27.7977 229.565 -12.9605 161.737 3.74439 94.7758C20.4337 27.8031 88.2651 -12.9547 155.225 3.74061C222.201 20.4359 262.956 88.2719 246.258 155.241Z" fill="url(#paint5_linear_14352_348651)"/>
8 +<path d="M3.74439 94.7757C20.4338 27.8033 88.2653 -12.9547 155.225 3.74058C222.201 20.4359 262.955 88.272 246.259 155.241L245.858 156.806C228.638 222.319 162.263 262.198 96.3197 246.641L94.7502 246.26C27.7977 229.565 -12.9605 161.737 3.74439 94.7757ZM154.015 8.59214C89.7356 -7.43476 24.6182 31.6917 8.59647 95.9847V95.9866C-7.43974 160.268 31.6872 225.381 95.9593 241.408C160.26 257.44 225.377 218.317 241.407 154.032C257.436 89.7415 218.311 24.6193 154.015 8.59214Z" fill="url(#paint6_linear_14352_348651)"/>
9 +<path d="M3.74439 94.7757C20.4338 27.8033 88.2653 -12.9547 155.225 3.74058C222.201 20.4359 262.955 88.272 246.259 155.241L245.858 156.806C228.638 222.319 162.263 262.198 96.3197 246.641L94.7502 246.26C27.7977 229.565 -12.9605 161.737 3.74439 94.7757ZM154.015 8.59214C89.7356 -7.43476 24.6182 31.6917 8.59647 95.9847V95.9866C-7.43974 160.268 31.6872 225.381 95.9593 241.408C160.26 257.44 225.377 218.317 241.407 154.032C257.436 89.7415 218.311 24.6193 154.015 8.59214Z" fill="url(#paint7_linear_14352_348651)"/>
10 +<path d="M3.74439 94.7757C20.4338 27.8033 88.2653 -12.9547 155.225 3.74058C222.201 20.4359 262.955 88.272 246.259 155.241L245.858 156.806C228.638 222.319 162.263 262.198 96.3197 246.641L94.7502 246.26C27.7977 229.565 -12.9605 161.737 3.74439 94.7757ZM154.015 8.59214C89.7356 -7.43476 24.6182 31.6917 8.59647 95.9847V95.9866C-7.43974 160.268 31.6872 225.381 95.9593 241.408C160.26 257.44 225.377 218.317 241.407 154.032C257.436 89.7415 218.311 24.6193 154.015 8.59214Z" fill="url(#paint8_linear_14352_348651)"/>
11 +<path d="M171.586 90.0135V70.9903H137.48V50.0273H116.517V70.9903H82.4102V96.2218H135.262L82.4102 167.981V187.004H116.517V207.912H137.48V187.004H171.586V161.773H118.679L171.586 90.0135Z" fill="url(#paint9_linear_14352_348651)"/>
12 +<path d="M171.586 90.0135V70.9903H137.48V50.0273H116.517V70.9903H82.4102V96.2218H135.262L82.4102 167.981V187.004H116.517V207.912H137.48V187.004H171.586V161.773H118.679L171.586 90.0135Z" fill="url(#paint10_linear_14352_348651)"/>
13 +<path d="M169.586 86.0135V66.9903H135.48V46.0273H114.517V66.9903H80.4102V92.2218H133.262L80.4102 163.981V183.004H114.517V203.912H135.48V183.004H169.586V157.773H116.679L169.586 86.0135Z" fill="url(#paint11_linear_14352_348651)"/>
14 +<path d="M169.586 86.0135V66.9903H135.48V46.0273H114.517V66.9903H80.4102V92.2218H133.262L80.4102 163.981V183.004H114.517V203.912H135.48V183.004H169.586V157.773H116.679L169.586 86.0135Z" fill="url(#paint12_linear_14352_348651)"/>
15 +<path d="M133.479 48.0273H116.517V68.9902H82.4102V90.2217H137.219L82.4102 164.638V181.004H116.517V201.911H133.479V181.004H167.586V159.772H112.72L167.586 85.3555V68.9902H133.479V48.0273ZM169.586 66.9902V86.0137L116.679 157.772H169.586V183.004H135.479V203.911H114.517V183.004H80.4102V163.981L133.262 92.2217H80.4102V66.9902H114.517V46.0273H135.479V66.9902H169.586Z" fill="white"/>
16 +<defs>
17 +<linearGradient id="paint0_linear_14352_348651" x1="125" y1="0" x2="125" y2="250.003" gradientUnits="userSpaceOnUse">
18 +<stop stop-color="#FFC130"/>
19 +<stop offset="1" stop-color="#E8A200"/>
20 +</linearGradient>
21 +<linearGradient id="paint1_linear_14352_348651" x1="125" y1="0" x2="125" y2="250.003" gradientUnits="userSpaceOnUse">
22 +<stop stop-color="#FFB300"/>
23 +<stop offset="1" stop-color="#CF8700"/>
24 +</linearGradient>
25 +<linearGradient id="paint2_linear_14352_348651" x1="125" y1="0" x2="125" y2="250.003" gradientUnits="userSpaceOnUse">
26 +<stop stop-color="#FFB300"/>
27 +<stop offset="1" stop-color="#B87700"/>
28 +</linearGradient>
29 +<linearGradient id="paint3_linear_14352_348651" x1="125" y1="0" x2="125" y2="250.003" gradientUnits="userSpaceOnUse">
30 +<stop offset="0.725084" stop-color="#CA6800" stop-opacity="0"/>
31 +<stop offset="1" stop-color="#CA6800" stop-opacity="0.3"/>
32 +</linearGradient>
33 +<linearGradient id="paint4_linear_14352_348651" x1="125" y1="0" x2="125" y2="250.003" gradientUnits="userSpaceOnUse">
34 +<stop stop-color="#F3B724"/>
35 +<stop offset="1" stop-color="#CD9200"/>
36 +</linearGradient>
37 +<linearGradient id="paint5_linear_14352_348651" x1="125" y1="0" x2="125" y2="250.003" gradientUnits="userSpaceOnUse">
38 +<stop stop-color="#F6B71D"/>
39 +<stop offset="1" stop-color="#B68200"/>
40 +</linearGradient>
41 +<linearGradient id="paint6_linear_14352_348651" x1="125" y1="0.000349739" x2="125" y2="250.003" gradientUnits="userSpaceOnUse">
42 +<stop stop-color="#FFD361"/>
43 +<stop offset="1" stop-color="#FFCF6D"/>
44 +</linearGradient>
45 +<linearGradient id="paint7_linear_14352_348651" x1="125" y1="0.000349739" x2="125" y2="250.003" gradientUnits="userSpaceOnUse">
46 +<stop offset="0.85" stop-color="#FFBF20"/>
47 +<stop offset="1" stop-color="#DFA310"/>
48 +</linearGradient>
49 +<linearGradient id="paint8_linear_14352_348651" x1="125" y1="0.000349739" x2="125" y2="250.003" gradientUnits="userSpaceOnUse">
50 +<stop stop-color="#FFECC4"/>
51 +<stop offset="0.15" stop-color="#FFECC4" stop-opacity="0"/>
52 +</linearGradient>
53 +<linearGradient id="paint9_linear_14352_348651" x1="126.998" y1="50.0273" x2="126.998" y2="207.912" gradientUnits="userSpaceOnUse">
54 +<stop stop-color="#DC9B00"/>
55 +<stop offset="1" stop-color="#AE7B00"/>
56 +</linearGradient>
57 +<linearGradient id="paint10_linear_14352_348651" x1="126.998" y1="50.0273" x2="126.998" y2="207.912" gradientUnits="userSpaceOnUse">
58 +<stop stop-color="#DC9B00"/>
59 +<stop offset="1" stop-color="#AA7700"/>
60 +</linearGradient>
61 +<linearGradient id="paint11_linear_14352_348651" x1="124.998" y1="46.0273" x2="124.998" y2="203.912" gradientUnits="userSpaceOnUse">
62 +<stop stop-color="white"/>
63 +<stop offset="1" stop-color="#FADD99"/>
64 +</linearGradient>
65 +<linearGradient id="paint12_linear_14352_348651" x1="124.998" y1="46.0273" x2="124.998" y2="203.912" gradientUnits="userSpaceOnUse">
66 +<stop stop-color="white"/>
67 +<stop offset="0.25" stop-color="#FFF5DC"/>
68 +<stop offset="1" stop-color="#FADD99"/>
69 +</linearGradient>
70 +</defs>
71 +</svg>
res/pictures/card_icons/og_icons/arb-og.svg new
+10
@@ -0,0 +1,10 @@
1 +<svg opacity="0.85" width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M44 22C44 34.1503 34.1503 44 22 44C9.84974 44 0 34.1503 0 22C0 9.84974 9.84974 0 22 0C34.1503 0 44 9.84974 44 22Z" fill="#05163D"/>
3 +<path d="M10.1992 16.6965V27.9153C10.1992 28.6271 10.5788 29.2917 11.2022 29.6438L20.9097 35.2498C21.527 35.6088 22.2929 35.6088 22.9095 35.2498L32.6232 29.6438C33.2405 29.2848 33.6262 28.6271 33.6262 27.9153V16.6965C33.6262 15.9847 33.2467 15.3202 32.6232 14.9612L22.9095 9.35517C22.2929 8.99619 21.527 8.99619 20.9097 9.35517L11.196 14.9612C10.5856 15.3202 10.1992 15.9778 10.1992 16.6965Z" fill="#05163D"/>
4 +<path d="M24.0375 24.4792L22.6475 28.2752C22.6071 28.3766 22.6071 28.4986 22.6475 28.6006L25.0268 35.1356L27.7856 33.5428L24.4773 24.473C24.4027 24.2696 24.1115 24.2696 24.0368 24.4799L24.0375 24.4792Z" fill="#12AAFF"/>
5 +<path d="M26.8084 18.0865C26.7337 17.8761 26.4426 17.8761 26.3611 18.0865L24.9717 21.8825C24.9313 21.9907 24.9313 22.1058 24.9717 22.2079L28.8767 32.9116L31.6355 31.3188L26.8091 18.0865H26.8084Z" fill="#12AAFF"/>
6 +<path d="M21.9143 9.76887C21.9821 9.76887 22.0499 9.78943 22.1109 9.823L32.618 15.8901C32.7399 15.9579 32.8146 16.0867 32.8146 16.2292V28.3633C32.8146 28.5058 32.7399 28.6346 32.618 28.7024L22.1109 34.7763C22.0499 34.8099 21.9821 34.8304 21.9143 34.8304C21.8465 34.8304 21.7787 34.8099 21.7177 34.7763L11.2106 28.7093C11.0887 28.6414 11.014 28.5126 11.014 28.3701V16.2292C11.014 16.0867 11.0887 15.9579 11.2106 15.8901L21.7177 9.823C21.7787 9.78943 21.8465 9.76887 21.9143 9.76887ZM21.9143 8C21.5416 8 21.1621 8.10139 20.8298 8.29116L10.3228 14.3582C9.65823 14.7446 9.23828 15.4564 9.23828 16.2292V28.3633C9.23828 29.1361 9.65207 29.8547 10.3228 30.2411L20.8298 36.3082C21.1621 36.5048 21.5348 36.5993 21.9143 36.5993C22.2938 36.5993 22.6665 36.4979 22.9988 36.3082L33.5058 30.2411C34.1772 29.8547 34.5903 29.1429 34.5903 28.3633V16.2292C34.5903 15.4564 34.1765 14.7378 33.5058 14.3514L22.9988 8.29116C22.6597 8.10139 22.287 8 21.9143 8Z" fill="#9DCCED"/>
7 +<path d="M14.9688 32.925L15.9381 30.2812L17.8769 31.8946L16.0669 33.5552L14.9688 32.925Z" fill="#05163D"/>
8 +<path d="M21.0267 15.3669H18.3625C18.1658 15.3669 17.9829 15.4888 17.9151 15.6786L12.207 31.3375L14.9658 32.9303L21.2569 15.6848C21.311 15.5286 21.196 15.3662 21.0261 15.3662L21.0267 15.3669Z" fill="white"/>
9 +<path d="M25.6925 15.3682H23.0282C22.8316 15.3682 22.6486 15.4901 22.5808 15.6799L16.0664 33.5556L18.8252 35.1485L25.9158 15.6867C25.9768 15.5305 25.8548 15.3682 25.6918 15.3682H25.6925Z" fill="white"/>
10 +</svg>
res/pictures/card_icons/og_icons/base-og.svg new
+4
@@ -0,0 +1,4 @@
1 +<svg opacity="0.85" width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M44 22C44 34.1503 34.1503 44 22 44C9.84974 44 0 34.1503 0 22C0 9.84974 9.84974 0 22 0C34.1503 0 44 9.84974 44 22Z" fill="#0052FE"/>
3 +<path d="M21.9729 36.4456C29.9552 36.4456 36.4261 29.9859 36.4261 22.0177C36.4261 14.0494 29.9552 7.58984 21.9729 7.58984C14.4 7.58984 8.18733 13.4042 7.57031 20.8049H26.6739V23.2304H7.57031C8.18733 30.6313 14.4 36.4456 21.9729 36.4456Z" fill="white"/>
4 +</svg>
res/pictures/card_icons/og_icons/bch-og.svg new
+11
@@ -0,0 +1,11 @@
1 +<svg opacity="0.85" width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<g clip-path="url(#clip0_17214_303342)">
3 +<path d="M22 44C34.1503 44 44 34.1503 44 22C44 9.84974 34.1503 0 22 0C9.84974 0 0 9.84974 0 22C0 34.1503 9.84974 44 22 44Z" fill="#0AC18E"/>
4 +<path d="M28.8637 14.6129C27.7581 12.1057 25.2175 11.5697 22.1074 12.089L21.1079 8.21387L18.7515 8.8225L19.7343 12.6865C19.1145 12.8428 18.4779 12.9768 17.847 13.1555L16.8642 9.31387L14.5079 9.9225L15.5074 13.7976C14.9992 13.9428 10.75 15.0316 10.75 15.0316L11.3977 17.5555C11.3977 17.5555 13.1287 17.0697 13.1119 17.1088C14.0723 16.8575 14.5246 17.3377 14.7368 17.79L17.484 28.4103C17.5175 28.7174 17.4617 29.2423 16.8028 29.421C16.8419 29.4433 15.0886 29.8621 15.0886 29.8621L15.3454 32.8047C15.3454 32.8047 19.5556 31.7271 20.1084 31.5875L21.119 35.5073L23.4754 34.8986L22.4647 30.9509C23.1124 30.8002 23.7434 30.6438 24.3576 30.4819L25.3627 34.4073L27.719 33.7986L26.7084 29.8844C30.3378 29.0022 32.9008 26.7129 32.3759 23.2118C32.0409 21.1012 29.7348 19.3702 27.8195 19.1748C28.9977 18.1306 29.5952 16.6063 28.8637 14.6129ZM27.7302 23.854C28.1992 27.3215 23.3805 27.7458 21.7891 28.1646L20.4043 22.9773C22.0013 22.5585 26.9373 20.7997 27.7302 23.854ZM24.8266 16.7905C25.3236 19.8728 21.2028 20.2301 19.8739 20.5707L18.6119 15.8636C19.9464 15.5342 23.816 13.9372 24.8266 16.7905Z" fill="white"/>
5 +</g>
6 +<defs>
7 +<clipPath id="clip0_17214_303342">
8 +<rect width="44" height="44" fill="white"/>
9 +</clipPath>
10 +</defs>
11 +</svg>
res/pictures/card_icons/og_icons/bnb-og.svg new
+11
@@ -0,0 +1,11 @@
1 +<svg opacity="0.85" width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M43.3415 27.3223C40.4028 39.1082 28.4645 46.2808 16.676 43.3418C4.8924 40.4034 -2.28105 28.4657 0.659012 16.6805C3.59632 4.89335 15.5347 -2.28003 27.3197 0.658347C39.1074 3.59672 46.2802 15.5358 43.3415 27.3223Z" fill="url(#paint0_linear_17214_303282)"/>
3 +<path d="M43.3415 27.3223C40.4028 39.1082 28.4645 46.2808 16.676 43.3418C4.8924 40.4034 -2.28105 28.4657 0.659012 16.6805C3.59632 4.89335 15.5347 -2.28003 27.3197 0.658347C39.1074 3.59672 46.2802 15.5358 43.3415 27.3223Z" fill="black"/>
4 +<path d="M13.9429 11.3173L22.0477 6.59961L30.1524 11.3173L27.1727 13.0601L22.0477 10.0853L16.9226 13.0601L13.9429 11.3173ZM30.1524 17.2669L27.1727 15.5241L22.0477 18.4989L16.9226 15.5241L13.9429 17.2669V20.7526L19.068 23.7274V29.6771L22.0477 31.4199L25.0273 29.6771V23.7274L30.1524 20.7526V17.2669ZM30.1524 26.7023V23.2166L27.1727 24.9594V28.4451L30.1524 26.7023ZM32.268 27.9343L27.143 30.9091V34.3947L35.2477 29.6771V20.2418L32.268 21.9846V27.9343ZM29.2883 14.2921L32.268 16.0349V19.5206L35.2477 17.7778V14.2921L32.268 12.5493L29.2883 14.2921ZM19.068 32.1711V35.6568L22.0477 37.3996L25.0273 35.6568V32.1711L22.0477 33.9139L19.068 32.1711ZM13.9429 26.7023L16.9226 28.4451V24.9594L13.9429 23.2166V26.7023ZM19.068 14.2921L22.0477 16.0349L25.0273 14.2921L22.0477 12.5493L19.068 14.2921ZM11.8273 16.0349L14.807 14.2921L11.8273 12.5493L8.84766 14.2921V17.7778L11.8273 19.5206V16.0349ZM11.8273 21.9846L8.84766 20.2418V29.6771L16.9524 34.3947V30.9091L11.8273 27.9343V21.9846Z" fill="#F0B90B"/>
5 +<defs>
6 +<linearGradient id="paint0_linear_17214_303282" x1="22" y1="0" x2="22" y2="44.0004" gradientUnits="userSpaceOnUse">
7 +<stop stop-color="#252525"/>
8 +<stop offset="1" stop-color="#0C0C0C"/>
9 +</linearGradient>
10 +</defs>
11 +</svg>
res/pictures/card_icons/og_icons/btc-og.svg new
+4
@@ -0,0 +1,4 @@
1 +<svg opacity="0.85" width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M43.3408 27.3223C40.4024 39.1082 28.4653 46.2808 16.6782 43.3418C4.89578 40.4034 -2.2769 28.4657 0.662848 16.6805C3.59985 4.89335 15.5369 -2.28003 27.3207 0.658347C39.1072 3.59672 46.2792 15.5358 43.3408 27.3223Z" fill="#F7931A"/>
3 +<path d="M31.7031 18.8661C32.141 15.9387 29.9121 14.365 26.8644 13.3152L27.8531 9.3497L25.4392 8.74814L24.4767 12.6091C23.8422 12.451 23.1904 12.3018 22.5428 12.154L23.5122 8.26758L21.0997 7.66602L20.1104 11.6301C19.5852 11.5105 19.0696 11.3923 18.5691 11.2678L18.5718 11.2555L15.2429 10.4243L14.6008 13.0024C14.6008 13.0024 16.3917 13.4128 16.3539 13.4383C17.3316 13.6823 17.5082 14.3293 17.4787 14.8421L16.3526 19.3597C16.4199 19.3769 16.5072 19.4016 16.6035 19.4401C16.5231 19.4202 16.4371 19.3982 16.3484 19.3769L14.7699 25.7053C14.6503 26.0023 14.3471 26.4478 13.6637 26.2787C13.6878 26.3138 11.9092 25.8408 11.9092 25.8408L10.7109 28.6038L13.8521 29.3869C14.4365 29.5333 15.0092 29.6866 15.5729 29.831L14.574 33.8419L16.9851 34.4435L17.9744 30.4752C18.633 30.654 19.2724 30.819 19.898 30.9743L18.9121 34.924L21.3259 35.5256L22.3249 31.5223C26.4409 32.3012 29.5361 31.987 30.8389 28.2642C31.8887 25.2667 30.7866 23.5376 28.621 22.4101C30.1981 22.0465 31.3861 21.009 31.7031 18.8661ZM26.1879 26.5998C25.442 29.5973 20.3951 27.9768 18.7588 27.5705L20.0843 22.2568C21.7206 22.6652 26.9676 23.4737 26.1879 26.5998ZM26.9346 18.8228C26.2539 21.5494 22.0533 20.1641 20.6907 19.8245L21.8924 15.0051C23.2551 15.3447 27.6434 15.9786 26.9346 18.8228Z" fill="white"/>
4 +</svg>
res/pictures/card_icons/og_icons/dcr-og.svg new
+7
@@ -0,0 +1,7 @@
1 +<svg opacity="0.85" width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<circle cx="22" cy="22" r="22" fill="#2972FF"/>
3 +<circle cx="22" cy="22" r="22" fill="#091440"/>
4 +<circle cx="22" cy="22" r="22" fill="#012895"/>
5 +<circle cx="22" cy="22" r="22" fill="#091440"/>
6 +<path fill-rule="evenodd" clip-rule="evenodd" d="M23.6216 19.6318H17.1401C15.9817 19.6318 14.8705 20.092 14.0513 20.9111C13.2321 21.7303 12.772 22.8415 12.772 24C12.772 25.1585 13.2321 26.2697 14.0513 27.0889C14.8704 27.908 15.9817 28.3682 17.1401 28.3682H19.2026L23.6196 32.2021H17.1401C15.2382 32.2017 13.3956 31.54 11.9273 30.3311C10.459 29.1221 9.45577 27.4408 9.09034 25.5742C8.72494 23.7077 9.01942 21.772 9.92335 20.0986C10.8273 18.4253 12.285 17.118 14.0464 16.4004L8.93995 11.9619H14.7935L23.6216 19.6318ZM26.9429 11.9619C28.8449 11.9623 30.6875 12.624 32.1558 13.833C33.6241 15.042 34.6273 16.7233 34.9927 18.5898C35.3581 20.4564 35.0636 22.392 34.1597 24.0654C33.2557 25.7388 31.798 27.046 30.0366 27.7637L35.147 32.2002H29.2944L20.4614 24.5322H26.9429C28.1013 24.5322 29.2126 24.072 30.0317 23.2529C30.8509 22.4338 31.311 21.3225 31.311 20.1641C31.311 19.0056 30.8509 17.8944 30.0317 17.0752C29.2126 16.256 28.1013 15.7959 26.9429 15.7959H24.8804L20.4614 11.9619H26.9429Z" fill="white"/>
7 +</svg>
res/pictures/card_icons/og_icons/doge-og.svg new
+132
@@ -0,0 +1,132 @@
1 +<svg opacity="0.85" width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<g clip-path="url(#clip0_17214_303346)">
3 +<path d="M22 44C34.1503 44 44 34.1503 44 22C44 9.84974 34.1503 0 22 0C9.84974 0 0 9.84974 0 22C0 34.1503 9.84974 44 22 44Z" fill="#988430"/>
4 +<path d="M21.9984 43.2957C33.7595 43.2957 43.2937 33.7614 43.2937 22.0004C43.2937 10.2393 33.7595 0.705078 21.9984 0.705078C10.2374 0.705078 0.703125 10.2393 0.703125 22.0004C0.703125 33.7614 10.2374 43.2957 21.9984 43.2957Z" fill="#7A6A2A"/>
5 +<path d="M21.999 42.8465C33.5122 42.8465 42.8456 33.5132 42.8456 21.9999C42.8456 10.4867 33.5122 1.15332 21.999 1.15332C10.4857 1.15332 1.15234 10.4867 1.15234 21.9999C1.15234 33.5132 10.4857 42.8465 21.999 42.8465Z" fill="#BA9F33"/>
6 +<path fill-rule="evenodd" clip-rule="evenodd" d="M9.61951 19.6504C9.4949 19.5366 9.36326 19.4225 9.24217 19.3087C9.12108 19.1949 8.99671 19.0808 8.8721 18.967L8.5018 18.615C8.44125 18.5545 8.37719 18.5012 8.31664 18.4404C8.2561 18.3872 8.18499 18.3266 8.12445 18.2731C7.63306 17.8068 7.13885 17.3405 6.65426 16.874C7.15622 17.3333 7.64761 17.7892 8.14956 18.2553L8.32392 18.4299C8.38446 18.4902 8.44853 18.5437 8.50907 18.6042L8.87914 18.9459C9.00375 19.0597 9.12484 19.1738 9.24944 19.2979C9.37405 19.422 9.49514 19.5363 9.61975 19.6499L9.61951 19.6504ZM3.09789 19.58C3.09789 19.58 4.88488 19.7649 5.75713 19.8895C6.56509 20.0035 9.09269 20.3914 9.09269 20.3914L3.09789 19.58ZM3.09789 19.58C3.59984 19.6227 4.10179 19.6759 4.60375 19.7294C4.86 19.7543 5.1057 19.7827 5.35139 19.8076L5.7285 19.8505C5.85311 19.8681 5.9742 19.886 6.09881 19.9038L7.5941 20.1422L8.34152 20.2668C8.58721 20.3095 8.83291 20.356 9.08917 20.3987C8.84347 20.3738 8.58721 20.3382 8.34152 20.3025L7.5941 20.1957L6.09881 19.9751C5.9742 19.9573 5.85311 19.9322 5.7285 19.9146L5.35116 19.8712C5.10546 19.8463 4.84921 19.8106 4.60351 19.782C4.10156 19.7217 3.59961 19.6574 3.09766 19.5793L3.09789 19.58ZM8.91481 20.857C8.91481 20.857 7.00673 21.3414 6.36234 21.5265C5.72874 21.7009 3.80987 22.2847 3.80987 22.2847L8.91457 20.8573L8.91481 20.857Z" fill="#CFB66C"/>
7 +<path fill-rule="evenodd" clip-rule="evenodd" d="M8.91461 20.8574C8.49103 20.982 8.06981 21.1031 7.64013 21.2172L6.36566 21.5588C5.94209 21.6834 5.52086 21.8045 5.09846 21.9291L4.46486 22.1035C4.25483 22.164 4.04129 22.2173 3.82422 22.2781C4.03401 22.2077 4.24779 22.1357 4.45782 22.0751L5.09142 21.8724C5.51499 21.7405 5.93622 21.6159 6.35862 21.4842C6.78923 21.3774 7.21304 21.2634 7.64365 21.1601C8.05291 21.0569 8.48376 20.9539 8.91461 20.8577V20.8574ZM4.07695 23.4599C4.28675 23.3815 6.70757 22.2532 7.27006 21.9897C7.55166 21.8578 8.37018 21.5673 8.37018 21.5673L4.07695 23.4599Z" fill="#CFB66C"/>
8 +<path fill-rule="evenodd" clip-rule="evenodd" d="M4.07445 23.4593C4.25937 23.3889 4.43396 23.3028 4.61184 23.2209L5.13867 22.9752L6.19607 22.4662C6.54807 22.2989 6.89022 22.1142 7.25325 21.957C7.4384 21.8788 7.62355 21.8148 7.80847 21.7542L8.09007 21.6653C8.18605 21.6404 8.27522 21.6118 8.37167 21.5869C8.01967 21.7542 7.64913 21.8967 7.29666 22.0602C6.94466 22.2348 6.58468 22.3773 6.22142 22.5338L5.14641 23.0071C4.78549 23.1533 4.43349 23.3098 4.07422 23.4593H4.07445ZM4.30912 24.4449C4.30912 24.4449 6.50185 23.1599 7.25653 22.7469C7.65171 22.5263 8.92971 21.8925 8.92971 21.8925L4.30912 24.4449Z" fill="#CFB66C"/>
9 +<path fill-rule="evenodd" clip-rule="evenodd" d="M4.3125 24.4453C4.68257 24.2174 5.05991 23.986 5.43726 23.7511L6.00046 23.4092C6.19265 23.2954 6.3778 23.1886 6.57375 23.0748C6.76594 22.9607 6.95109 22.8469 7.1468 22.7402C7.23997 22.6826 7.33759 22.6326 7.43873 22.5907L7.73769 22.4412C8.13287 22.249 8.52805 22.0531 8.94459 21.8857C8.56724 22.1244 8.1791 22.3274 7.7912 22.5372C7.59901 22.6439 7.40306 22.7402 7.21087 22.8469C7.01868 22.9537 6.83352 23.0678 6.63758 23.171C6.44539 23.2848 6.26023 23.3916 6.06452 23.4949L5.48419 23.8117L4.31297 24.4453H4.3125ZM8.91525 22.1739C8.91525 22.1739 7.55184 23.2205 7.11043 23.5552C6.66902 23.8898 5.36967 24.8296 5.36967 24.8296L8.91525 22.1739Z" fill="#CFB66C"/>
10 +<path fill-rule="evenodd" clip-rule="evenodd" d="M16.7367 30.6149L16.0391 29.2942L16.4448 27.6424L19.3389 26.5247L18.1072 23.9973L18.7159 21.4448L19.8587 19.1592L23.3902 18.604L25.9852 16.1299L31.5885 16.5535L32.6884 22.5447L30.5703 30.0881L29.3637 33.9934L24.4723 34.1786L22.2012 32.6051L19.5419 31.4942L16.7367 30.6149Z" fill="#E2CC85"/>
11 +<path fill-rule="evenodd" clip-rule="evenodd" d="M25.317 30.5721C25.317 30.5721 24.6405 30.8819 23.4866 30.8106C23.1527 30.3621 20.814 30.1521 20.814 30.1521C20.814 30.1521 20.5221 30.0631 20.0058 30.2767C19.4863 30.4879 18.9949 30.4618 18.5356 30.5757C18.0764 30.6895 17.6204 30.0915 17.2684 29.9669C16.9164 29.8353 16.4497 29.5185 16.4497 29.5185L15.4641 29.4223L13.4849 28.5857L10.3406 25.4531L9.48619 26.7907L9.22266 28.4461L10.1733 30.4076L12.7328 32.7393L17.7237 34.0065L20.6819 33.1349L24.3878 31.5685L25.317 30.5719V30.5721Z" fill="#F1D789"/>
12 +<path fill-rule="evenodd" clip-rule="evenodd" d="M7.58517 19.5013L8.21877 17.5827L8.97369 16.3436L11.4048 16.1406L10.675 18.2695L8.64257 21.8864L9.4862 25.1152L7.99114 25.8626L7.53166 25.1579L7.16159 23.5418L7.13672 21.7262L7.58517 19.5013Z" fill="#F4ECB4"/>
13 +<path fill-rule="evenodd" clip-rule="evenodd" d="M10.3121 30.4408L9.8458 29.7894C9.8458 29.7894 9.72119 29.4796 9.79253 29.209C9.86293 28.935 9.85284 28.9171 9.81741 28.8139C9.78197 28.7106 9.48277 28.3546 9.50061 28.0484C9.51821 27.7386 9.47573 27.6354 9.70336 27.3899C9.94178 27.1515 9.87067 26.7385 9.87067 26.7385L10.1804 26.9307L10.2508 26.8239C10.2508 26.8239 10.3646 26.9128 10.3646 27.0518C10.3895 26.8596 10.2863 25.9695 10.5212 25.7667C10.7561 25.564 11.1726 26.7171 11.1726 26.7171L10.9163 25.0439L10.2576 23.3283L9.08642 21.7619L9.01602 20.0352V19.8857C9.01602 19.8857 8.4784 20.7118 8.32891 21.3641C8.22214 21.8126 8.4784 22.3573 8.42513 23.0016C8.38218 23.6425 8.32891 23.5925 8.48544 23.8464C8.64196 24.1004 9.02306 24.6225 8.87358 24.9998C8.74193 25.3239 8.29325 25.096 8.29325 25.096C8.29325 25.096 8.20431 25.3593 8.08322 25.4556C8.04051 25.299 7.99428 25.1993 7.90886 25.1036C7.90159 25.1641 7.88399 25.246 7.88399 25.246C7.88399 25.246 7.80561 25.0003 7.72723 24.6905C7.62069 24.2778 7.50664 23.7331 7.40339 23.4412C7.36068 23.6085 7.25391 24.1175 7.25391 24.1175L7.31445 24.9008L7.60638 25.9758L7.88798 26.6798L8.16207 27.5413L8.40025 28.12L8.59245 28.5614L8.75976 29.5547L9.56772 30.4089L9.99857 30.6013L10.3116 30.441L10.3121 30.4408Z" fill="#F3E19D"/>
14 +<path fill-rule="evenodd" clip-rule="evenodd" d="M8.00948 17.9348C8.00948 17.9348 7.42915 18.9204 7.26207 19.9139C7.09498 20.9075 6.94527 21.9574 7.05087 23.31C7.15764 24.6737 7.36063 25.51 7.52442 26.1082C7.80602 27.1016 8.53537 28.4828 8.53537 28.4828L8.56024 28.4293C8.43765 28.1969 8.3398 27.9523 8.26832 27.6995C8.1721 27.3221 8.13644 26.8737 8.0475 26.6707C7.96912 26.468 7.83747 26.2934 7.77341 26.0441C7.71286 25.8057 7.70301 25.4284 7.51715 25.1472C7.43877 25.0332 7.34256 24.7342 7.31416 24.4353C7.27849 23.9866 7.332 23.4846 7.28929 23.0719C7.21091 22.3848 7.15764 21.9185 7.22874 21.5587C7.29985 21.199 7.67039 20.1777 7.89825 19.366C8.04773 18.8462 7.95856 18.4083 8.23265 17.9561C8.50674 17.5077 8.67429 17.1125 8.7346 16.8384C8.805 16.5892 8.00854 17.9348 8.00854 17.9348H8.00948Z" fill="#F2E8B0"/>
15 +<path fill-rule="evenodd" clip-rule="evenodd" d="M10.7615 17.5391C10.7615 17.5391 10.4626 17.6282 10.3201 17.7848C10.1777 17.9342 10.1171 18.0589 9.92493 18.3116C9.73274 18.5643 9.72195 18.7708 9.56519 19.0876C9.40867 19.3974 9.06324 19.8637 9.02053 20.031C8.97782 20.1983 8.90671 20.9814 8.81777 21.3517C8.7394 21.722 8.90671 22.1777 8.90671 22.1777L9.10947 22.1348C9.10947 22.1348 9.10947 22.3983 9.31245 22.5764C9.5152 22.7508 9.55087 21.9853 9.55087 21.9853L10.3091 19.4258L11.4517 18.6497L11.5763 18.0232L10.761 17.5391H10.7615Z" fill="#F5EEC0"/>
16 +<path fill-rule="evenodd" clip-rule="evenodd" d="M11.3177 18.7003C11.3177 18.7003 10.7801 18.7357 10.5168 18.9281C10.41 19.0063 10.3673 19.0703 10.2535 19.1665C10.0434 19.3409 9.82965 19.5012 9.72663 19.7297C9.61258 19.9574 9.48798 20.3028 9.40256 20.9542C9.36689 21.2283 9.36689 21.4811 9.34201 21.7019C9.30634 22.0008 9.25308 22.2393 9.28147 22.4059C9.31714 22.7476 9.66961 22.9257 9.70387 23.3136L10.4337 22.9435L11.1208 20.2343L12.5804 19.3191L11.7544 18.3936L11.3167 18.6986L11.3177 18.7003Z" fill="#E6DB9D"/>
17 +<path fill-rule="evenodd" clip-rule="evenodd" d="M7.46508 36.943C7.46813 36.9163 7.47118 36.8895 7.47423 36.8621C7.58077 35.9469 7.59884 35.2532 7.67698 34.8188C7.7908 34.203 7.86917 33.974 7.85134 33.7436C7.82647 33.3735 7.79807 33.1029 7.83374 32.818C7.88701 32.4407 8.25731 31.9922 8.24675 31.6825C8.23948 31.4368 8.11487 31.2767 8.0081 31.1273C7.90132 30.9778 7.8159 30.8532 7.8159 30.8532C7.8159 30.8532 8.54572 30.3512 8.53868 28.3291C8.55358 28.3333 8.56792 28.3393 8.58139 28.3469L8.9409 29.3684L9.18659 29.6674L10.13 31.426L11.3439 32.6045L13.1379 33.8111L14.2629 35.0354L14.3767 38.2999L12.9065 40.2079L12.6658 40.6439C10.7529 39.6837 8.99885 38.4354 7.46484 36.9428L7.46508 36.943Z" fill="#E5CB7A"/>
18 +<path fill-rule="evenodd" clip-rule="evenodd" d="M11.957 40.066C11.957 40.066 11.9819 39.6603 12.3165 39.3967C12.37 39.4857 12.4055 39.5713 12.3949 39.6352C12.4555 39.5286 12.879 38.845 13.8367 38.6669C14.7944 38.4926 15.0258 37.7949 15.0258 37.7949L17.0582 35.9474L19.3828 33.8079L22.2094 32.8146L23.5303 32.4905C23.5303 32.4905 23.5552 32.5867 23.5054 32.8003C23.7509 32.7827 24.2956 32.658 24.8616 32.4586C25.0894 32.3696 25.3032 32.334 25.417 32.4515C25.5844 32.6081 25.6092 32.9784 25.6198 33.199C25.8939 33.1384 26.2107 32.8751 26.4646 32.9C26.8706 32.9427 27.2301 33.4198 27.6431 33.4198C28.1878 33.4198 28.4332 33.0851 28.8143 32.8216C29.0422 32.6651 29.3695 32.4696 29.5547 32.3375C29.9961 32.0134 34.6667 30.5859 34.6667 30.5859L36.3042 30.6927L36.5677 32.4513L36.4269 37.0484C36.4095 37.0651 36.3922 37.0824 36.3746 37.0991L28.9291 40.9878L18.6084 42.5699C16.2966 42.1922 14.0656 41.4248 12.0105 40.3004L11.9577 40.0658L11.957 40.066Z" fill="#D8C173"/>
19 +<path fill-rule="evenodd" clip-rule="evenodd" d="M8.09375 37.528C8.24042 37.2213 8.3723 36.9648 8.39553 36.873C8.41383 37.058 8.44739 37.4637 8.51498 37.895C8.37308 37.7744 8.23267 37.652 8.09375 37.5278V37.528Z" fill="#F1D789"/>
20 +<path fill-rule="evenodd" clip-rule="evenodd" d="M15.6305 41.8549L16.9653 41.4836L17.0791 41.5193C17.0791 41.5193 17.1397 41.555 17.1397 41.6758C17.307 41.5798 17.4495 41.5974 17.5527 41.5336C17.606 41.6474 17.6592 42.0248 17.8944 42.071C18.1398 42.1245 18.4034 41.9642 18.6704 41.7615C18.9337 41.5514 19.2336 41.2879 19.4605 41.1811C19.5438 41.3342 19.6175 41.4923 19.6814 41.6545C19.9803 41.416 20.5001 40.4478 21.2405 40.4654C21.4545 39.9597 21.812 39.5278 22.2688 39.2231C22.9559 38.7568 23.3865 38.7211 23.9241 38.7638C24.1377 38.4865 24.4008 38.2511 24.7002 38.0697C24.7891 38.1054 25.0348 38.2548 25.3411 38.1124C25.6508 37.9702 25.9995 37.4183 26.4588 37.3471C26.7062 37.3131 26.9579 37.3659 27.1708 37.4966C27.1708 37.4966 28.5084 36.1687 29.4313 35.7272C29.3956 35.6205 29.3245 35.2183 30.4066 34.3282C30.4671 34.3817 30.4244 34.5311 30.4671 34.5394C30.4847 34.5394 30.7487 34.4255 31.0829 34.1691C31.4959 33.8595 31.9906 33.5355 32.2895 33.4465C32.8527 33.2792 33.4502 33.6209 33.4502 33.6209C33.501 33.5852 33.5576 33.5587 33.6175 33.5425C33.7597 33.5176 33.863 33.4998 33.9414 33.4721C33.9343 33.6572 34.0376 33.9741 33.9414 34.2481C34.0528 34.3108 34.1709 34.361 34.2934 34.3976C34.233 34.5293 34.1012 34.8639 33.8806 35.0242C34.0655 35.1131 34.0904 35.2164 34.3539 35.3058C34.2471 35.4553 34.0723 35.7118 33.9944 35.869C33.916 36.0363 33.6346 36.7304 33.51 36.9937C33.3784 37.2573 33.2005 37.7414 33.1149 37.8385C33.0292 37.9357 32.7197 38.3475 32.4813 38.5503C32.6925 38.4719 33.5565 38.2086 33.9231 38.1089C33.8139 38.2689 33.2608 39.0895 32.7291 39.8787C30.183 41.4047 27.341 42.3706 24.3924 42.712C21.4438 43.0533 18.4562 42.7623 15.6289 41.8584L15.6305 41.8549Z" fill="#E0CD81"/>
21 +<path fill-rule="evenodd" clip-rule="evenodd" d="M11.4041 18.6038C11.4041 18.6038 11.0945 18.6038 11.034 18.6465C10.9734 18.6892 11.3437 18.7784 11.4576 18.8211C11.5714 18.8638 11.8171 19.0595 11.8811 19.2163C11.9417 19.3657 14.106 20.2378 14.106 20.2378L15.6367 20.1594L16.1645 19.4303L15.1606 18.551L15.8646 16.4756L14.932 16.6251L12.6893 17.9627L11.5643 18.3935L11.4041 18.6038Z" fill="#DFC57C"/>
22 +<path fill-rule="evenodd" clip-rule="evenodd" d="M14.7664 19.2911C14.7885 19.3269 14.8197 19.3563 14.8568 19.3762C14.8938 19.3962 14.9355 19.4061 14.9776 19.4049C15.2944 19.4049 15.5861 19.4833 15.7072 19.6433C15.9102 19.8998 16.4727 20.7185 16.4727 20.7185L17.8183 21.2027L17.9051 19.6182L16.4349 18.5967L14.7617 19.2124V19.2908H14.7655L14.7664 19.2911Z" fill="#E5CC7C"/>
23 +<path fill-rule="evenodd" clip-rule="evenodd" d="M14.5015 19.8785C14.5015 19.8785 14.7469 19.8963 15.0567 19.7822C15.3665 19.6682 15.8754 19.4227 16.0963 19.519C16.4058 19.6506 16.3417 20.0636 16.6766 20.4342C16.8794 20.662 17.2497 20.655 17.4597 20.9007C17.6697 21.1464 18.3922 21.0323 18.3922 21.0323L18.6663 22.5107L17.5665 23.9206L17.2067 25.6719H15.7194L14.3607 25.1329L13.6914 23.5137L14.026 21.8762L14.5015 19.8785Z" fill="#D2C281"/>
24 +<path fill-rule="evenodd" clip-rule="evenodd" d="M17.3788 19.9498C17.4157 19.9612 17.454 19.9672 17.4926 19.9676C17.4499 20.0033 17.3607 20.0815 17.3964 20.2844C17.4321 20.4874 17.5459 20.7437 17.4499 20.9002C17.5265 20.984 17.5837 21.0837 17.6172 21.1921C17.6778 21.3667 17.6956 21.5268 18.0905 21.5519C18.0335 21.587 17.981 21.6288 17.934 21.6765C17.934 21.6765 18.2081 21.9149 18.347 22.1355C18.4892 22.1294 18.8666 22.0121 18.8666 22.0121L18.945 22.0656L19.1123 21.9952C19.1123 21.9952 18.9558 21.9346 19.0696 21.5538C19.1763 21.2191 19.2726 21.237 19.2808 21.2121C19.289 21.1872 19.3591 20.8347 19.3591 20.6923C19.4124 20.5074 19.4551 19.9449 19.4551 19.9449L19.3413 18.7026L18.7007 18.3144L18.1797 17.8115L17.6883 18.737L17.3647 19.0597L17.3398 19.8606L17.3788 19.9498Z" fill="#E2C270"/>
25 +<path fill-rule="evenodd" clip-rule="evenodd" d="M18.9219 18.9102C18.9219 18.9102 19.0357 19.234 19.0786 19.4832C19.0938 19.4348 19.1021 19.3845 19.1035 19.3337C19.1035 19.3337 19.1924 19.8251 19.21 20.0281C19.2457 20.0208 19.2804 20.0103 19.2884 20.0457C19.2964 20.0812 19.3776 20.4766 19.3588 20.6972C19.5071 20.4526 19.7122 20.2475 19.9568 20.0992C20.0992 20.0101 20.2665 19.9141 20.4411 19.9068C20.7152 19.8998 20.9144 20.0814 21.242 20.0814C22.0321 20.0814 22.7479 19.5011 23.2747 19.3232C23.6626 19.1913 23.9972 19.0953 24.2321 18.8815C24.3462 18.7856 24.5492 18.572 24.7341 18.255C24.9798 17.8326 25.2361 17.4649 25.4925 17.4186C25.3765 17.44 25.2584 17.4483 25.1405 17.4435C25.1405 17.4435 25.2189 17.3651 25.3517 17.2584C25.4846 17.1516 25.6437 17.0199 25.8713 17.0199C26.2773 17.0199 26.48 17.0802 26.7079 17.0802C26.9357 17.0732 27.0674 17.0199 27.0674 17.0199C27.0674 17.0199 27.306 17.1872 27.8434 17.1872C28.3811 17.1943 28.7406 17.2405 29.0219 17.2656C29.3033 17.2907 30.2464 17.1872 30.517 17.1952C30.6934 17.202 30.8666 17.2444 31.0262 17.3198L30.154 14.7854L27.0207 12.0469L25.1553 13.3676L22.2858 16.2368L19.5092 17.2656L18.9289 17.9171V18.9102H18.9219Z" fill="#CCB360"/>
26 +<path fill-rule="evenodd" clip-rule="evenodd" d="M25.1499 17.4575C25.1499 17.4575 25.2282 17.3794 25.3597 17.2726C25.4911 17.1659 25.6518 17.034 25.8794 17.034C26.2852 17.034 26.4882 17.0945 26.716 17.0945C26.9439 17.0875 27.0755 17.034 27.0755 17.034C27.0755 17.034 27.3144 17.2011 27.8516 17.2011C28.3892 17.2081 28.7487 17.2543 29.0301 17.2792C29.3114 17.3041 30.2546 17.2011 30.5251 17.2088C30.7015 17.2154 30.8747 17.2578 31.0341 17.3334L30.639 16.1906L30.1799 15.3186L28.8698 13.8838C28.8698 13.8838 27.2975 12.9583 27.2856 12.9512C27.2785 12.9442 26.7409 12.8018 26.7409 12.8018L25.3169 13.6632L24.0249 17.006L24 17.71L24.8364 18.1052C25.0464 17.7532 25.278 17.4716 25.4951 17.436C25.2991 17.4573 25.1496 17.4573 25.1496 17.4573L25.1499 17.4575Z" fill="#D5B457"/>
27 +<path fill-rule="evenodd" clip-rule="evenodd" d="M25.1314 17.6961C25.0068 17.7031 24.9038 17.6782 24.8751 17.5893C24.7684 17.2903 24.6829 17.2476 24.5935 17.2476C24.5041 17.2476 24.3835 17.4398 24.3119 17.4574C24.2404 17.475 24.1554 17.2368 24.1554 17.2368L24.077 17.2012C24.077 17.2012 23.6178 17.5001 23.2939 17.8526C22.9701 18.2051 22.4395 18.8032 22.2011 18.9098C21.9627 19.0163 21.1437 19.0522 20.8635 19.1128C20.5833 19.1733 20.2726 19.3763 20.2299 19.4225C20.1872 19.4688 20.3547 19.5185 20.3796 19.5647C20.4045 19.6074 20.1053 19.5896 20.0804 19.6351C20.0628 19.6708 20.1508 19.8736 20.1945 19.9768C20.2708 19.9388 20.3547 19.9182 20.4399 19.9163C20.714 19.9092 20.9135 20.0909 21.2408 20.0909C22.0312 20.0909 22.7467 19.5105 23.2735 19.3324C23.6617 19.2008 23.9963 19.1046 24.2312 18.891C24.345 18.795 24.548 18.5812 24.7332 18.2644C24.8683 18.0474 25.0002 17.8444 25.1321 17.6949L25.1314 17.6961Z" fill="#D2B257"/>
28 +<path fill-rule="evenodd" clip-rule="evenodd" d="M13.7975 35.314C13.7975 35.314 13.7271 35.0505 13.0747 34.3707C12.8896 34.1785 12.7758 34.0187 12.6511 33.9044C12.3414 33.6122 12.1598 33.5341 11.9392 33.3668C11.455 33.0073 10.9282 33.0073 10.5225 32.5659C10.1167 32.1244 9.64389 31.2811 9.31536 30.4191C8.99152 29.5577 8.90234 29.2836 8.90234 29.2587C8.90234 29.2338 8.99152 29.0665 9.10533 29.0914C9.21914 29.1163 9.21914 29.3368 9.24777 29.3903C9.30448 29.4777 9.36879 29.5598 9.43997 29.6358C9.60728 29.8282 9.8457 30.0582 9.96679 30.4013C9.94192 30.1094 9.84218 29.7855 9.84218 29.7855C9.84218 29.7855 10.4687 30.1807 11.0026 30.5935C11.5402 31.0065 11.7608 31.1489 11.9178 31.4122C12.0748 31.6755 12.4446 32.3699 12.6218 32.5729C12.799 32.7759 15.2266 33.5411 15.2266 33.5411L16.3814 34.4021L16.9547 35.6588L16.506 36.3628L15.6446 36.5479L14.2455 35.9214L13.7975 35.3138V35.314Z" fill="#D2B159"/>
29 +<path fill-rule="evenodd" clip-rule="evenodd" d="M10.6914 30.985C10.6914 30.985 10.9833 31.4513 11.6953 31.8927C12.3362 32.2809 13.3506 32.6333 14.2551 32.8434C14.7746 32.968 15.2944 33.0639 15.7607 33.0712C17.0173 33.0888 17.8823 32.7295 18.954 32.612C19.5344 32.5514 20.2463 32.5052 20.9867 32.3304C21.9371 32.1025 22.4996 31.846 23.2651 31.4856C23.8203 31.2293 24.3295 31.0371 24.7423 30.7914C25.3226 30.4498 25.7462 30.0689 26.2376 29.9551C26.1771 30.1224 26.113 30.4214 25.6289 30.7311C25.8851 30.7238 26.2376 30.7062 26.2376 30.7062C26.2376 30.7062 25.8959 30.909 25.2942 31.3647C24.9239 31.6463 24.4328 32.1229 23.9308 32.4397C23.6068 32.6427 23.2543 32.7917 23.0229 32.9133C22.4597 33.223 22.2325 33.3796 21.8625 33.7581C21.9941 33.751 22.0049 33.7581 22.0049 33.7581C22.0049 33.7581 21.5384 33.8186 21.204 33.9965C21.1336 33.9965 21.0116 33.9716 20.798 34.0322C20.6307 34.0854 20.4099 34.2068 20.1823 34.2706C19.8582 34.3668 19.7517 34.3241 19.7517 34.3241L19.8049 34.4309C19.8049 34.4309 19.3825 34.4236 19.2417 34.4379C19.2666 34.445 19.2596 34.4558 19.2596 34.4558C19.2348 34.4599 19.211 34.4683 19.1892 34.4806C19.1214 34.5245 19.0469 34.5569 18.9686 34.5766C18.9259 34.5836 18.8902 34.5836 18.8367 34.5944C18.8545 34.6371 18.9934 34.876 19.0575 35.0168C19.0042 35.0525 18.2031 35.6577 18.2031 35.6577C18.2279 35.6968 18.2482 35.7386 18.2636 35.7823C18.2885 35.8605 18.2993 35.9745 18.3242 36.0278C18.3845 36.1346 18.4202 36.1524 18.4202 36.1524C18.4202 36.1524 18.3242 36.1702 18.1566 36.2129C18.0144 36.2486 17.8398 36.3089 17.5934 36.3446C17.5178 36.3544 17.4418 36.3604 17.3656 36.3624C17.4012 36.4408 17.5578 36.7398 17.2693 37.085C16.9809 37.4301 16.892 37.4804 16.8031 37.701C16.7583 37.6671 16.7106 37.6373 16.6606 37.6118C16.5646 37.5691 16.4328 37.5052 16.3865 37.4196C16.3596 37.5337 16.3239 37.6456 16.2798 37.7542C16.1908 37.9926 16.0592 38.2278 16.0343 38.4057C15.9381 38.2989 15.7602 38.0889 15.5145 38.1316C15.2688 38.1743 15.0731 38.5089 15.0304 38.6051C15.0304 38.5446 14.9877 38.4984 14.9771 38.5695C14.9698 38.6478 14.8347 39.4664 14.08 40.1286C14.073 39.9613 14.073 39.591 14.0551 39.4701C13.9847 39.5405 13.8986 39.6445 13.3858 39.8653C12.8839 40.0859 12.9634 40.3067 12.9634 40.3067C12.9634 40.3067 12.9207 39.9547 13.1913 39.5839C13.4654 39.2139 13.6327 39.0393 13.6327 39.0109C13.6283 38.9819 13.6159 38.9548 13.597 38.9325C13.5614 38.8968 13.4903 38.8541 13.4903 38.8257C13.533 38.8081 13.9566 38.6051 13.9317 38.1848C13.9068 37.8077 13.7468 37.6118 13.6327 37.4731C13.6151 37.4553 13.8003 37.3236 13.7752 37.2809C13.7573 37.256 13.5297 37.0885 13.5011 36.9993C13.5078 36.9461 13.5197 36.8937 13.5367 36.8428C13.5616 36.7644 13.5794 36.7109 13.5724 36.6576C13.5546 36.5687 13.4584 36.323 13.43 36.2981C13.4548 36.3052 13.6327 36.2981 13.6327 36.2981C13.6327 36.2981 13.4905 36.0703 13.4654 35.9635C13.4403 35.8567 13.387 35.5753 13.3586 35.5221C13.4192 35.5291 13.5687 35.5397 13.5687 35.5221C13.5759 35.4686 13.437 35.3796 13.4983 35.3109C13.541 35.3179 13.6229 35.3536 13.701 35.4533C13.6583 35.3393 13.5872 35.1187 13.4375 35.0297C13.5079 35.0049 13.7472 34.9406 13.9573 35.0652C14.1673 35.1898 14.2389 35.3641 14.2389 35.3641C14.2389 35.3641 14.3635 35.4604 14.5559 35.6028C14.7765 35.7772 15.0576 36.0252 15.5063 36.2007C15.6025 36.2542 15.848 36.2542 16.0261 36.2186C16.1036 36.2001 16.178 36.1701 16.2467 36.1296C16.2715 36.115 16.2977 36.1031 16.325 36.094C16.2868 36.0171 16.2428 35.9433 16.1934 35.8731C16.2539 35.8731 16.325 35.8804 16.325 35.8804C16.325 35.8804 16.3678 35.7842 16.1756 35.5988C16.2183 35.5561 16.2718 35.5284 16.2718 35.4564C16.2112 35.4493 16.1045 35.3604 16.0796 35.3247C16.115 35.2998 16.1685 35.2179 16.2291 35.1931C16.1756 35.1504 16.0439 34.9723 15.9834 34.9547C16.0412 34.9332 16.0972 34.907 16.1507 34.8763C16.1507 34.8763 15.8517 34.7979 15.7555 34.7338C15.6593 34.6634 15.5171 34.5416 15.4317 34.506C15.3425 34.4703 15.186 34.4527 15.1219 34.3814C15.1822 34.3992 15.2784 34.3814 15.3498 34.3814C15.403 34.3814 15.4282 34.3884 15.4458 34.3884C15.4387 34.3635 15.4387 34.31 15.5776 34.2924C15.6445 34.2823 15.7093 34.2619 15.7698 34.2319C15.7698 34.2319 15.6379 34.2248 15.4882 34.0824C15.3385 33.94 15.2141 33.8261 15.1287 33.8083C15.0398 33.7905 14.8725 33.8688 14.7692 33.8616C14.6268 33.844 14.5662 33.7726 14.5662 33.7726C14.5662 33.7726 14.0929 33.8153 13.0428 33.1747C12.1348 32.6192 11.7397 32.1281 11.7397 32.1281C11.6547 32.0973 11.5726 32.0591 11.4942 32.014C11.1525 31.8362 10.679 31.4659 10.6933 30.9815L10.6914 30.985Z" fill="#C2A44D"/>
30 +<path fill-rule="evenodd" clip-rule="evenodd" d="M23.7852 9.61866C23.8675 9.64541 23.9407 9.69477 23.9964 9.7611C24.1637 9.95329 24.2704 10.3163 23.8896 10.7045C24.0391 10.7577 24.1008 10.7749 24.2313 10.7577C24.0996 10.9145 23.8006 11.2491 23.7828 11.541C23.765 11.7795 23.9145 11.8508 23.9145 11.8508C23.9145 11.8508 23.6866 12.1141 23.676 12.5548C23.7836 12.4335 23.9014 12.3215 24.028 12.2202C24.2916 12.0101 24.6546 11.7717 24.9003 11.6222C24.8969 11.6849 24.9054 11.7476 24.9252 11.8072C24.9252 11.8072 25.3842 11.4298 25.77 11.5974C25.9443 11.6757 25.8659 11.9212 25.8659 11.9212C25.8659 11.9212 26.1046 11.8323 26.2719 11.9996C26.4392 12.1669 26.6758 12.5985 26.7971 12.7658C26.8504 12.8442 26.9893 12.9936 27.1315 13.225C27.3258 13.549 27.488 13.8911 27.6158 14.2465C27.6229 14.0614 27.6691 13.7732 28.1962 13.9546C28.723 14.1397 29.3209 14.5279 29.8229 15.2922C30.3248 16.0565 30.4492 16.9194 30.702 17.2479C30.9582 17.5647 31.2217 18.0915 31.2396 18.3124C31.2574 18.5332 31.1612 19.2449 31.688 21.1708C31.8375 20.5729 32.0654 19.2449 32.0654 19.2449L32.19 18.0737L32.3324 14.4497L28.5482 11.3059L25.59 9.15918L23.6641 9.34433L23.7849 9.61842L23.7852 9.61866Z" fill="#CAA13E"/>
31 +<path fill-rule="evenodd" clip-rule="evenodd" d="M30.8168 15.012C30.8168 15.012 30.7633 14.66 29.8734 14.0616C28.9833 13.4707 28.2892 13.4707 27.6485 12.9687C27.1571 12.5736 26.6446 11.6656 26.3109 11.3667C25.9869 11.0712 25.9336 10.2168 25.9336 10.2168L27.0264 9.3016L28.6517 6.95235L30.0257 5.43945L30.6842 6.35465L31.5994 7.42966L32.1084 9.58695L32.2935 12.7446L30.8151 15.0122L30.8168 15.012Z" fill="#B59544"/>
32 +<path fill-rule="evenodd" clip-rule="evenodd" d="M31.9165 18.7968C31.9435 18.318 31.8843 17.8382 31.7419 17.3802C31.5073 16.6503 30.9945 15.3545 30.7563 14.8692C30.6601 14.3316 30.7315 14.2889 30.8347 14.2283C30.938 14.1678 31.3261 13.9467 31.5387 13.1712C31.7513 12.3956 32.411 12.3703 32.411 12.3703L32.8167 12.0713L33.4327 13.6126L33.9701 15.0046L34.1374 16.0691L34.262 16.9768L33.9701 18.8956L32.5285 20.1985L31.9163 18.7968H31.9165Z" fill="#C89D3A"/>
33 +<path fill-rule="evenodd" clip-rule="evenodd" d="M11.8008 40.1839V40.1445C11.8307 40.1257 11.8572 40.1019 11.8789 40.0741C11.9038 40.0384 11.9219 39.9957 11.9395 39.9851C11.9751 39.9673 12.1425 39.9147 12.2314 39.9316C12.3203 39.9485 12.5555 40.0454 12.6801 40.0384C12.9363 40.0314 13.2353 39.8354 13.7089 39.9246C14.4208 40.0562 14.5882 40.5404 15.0012 40.8144C15.2828 41.0069 15.5742 40.9212 15.6169 40.9212H15.7129C15.7307 40.9212 15.8624 40.7717 15.9337 40.779C16.0762 40.786 16.0903 40.9036 16.1792 40.9107C16.3892 40.9355 16.7952 40.8039 16.9982 40.8574C17.0584 40.8762 17.1131 40.9094 17.1577 40.9539C17.2023 40.9985 17.2355 41.0532 17.2544 41.1134C17.2971 41.2451 17.2615 41.4124 17.1582 41.5086C16.9376 41.7113 16.7276 41.9038 16.6849 42.0718C16.7392 42.1132 16.7914 42.1574 16.8412 42.2041C15.0798 41.7554 13.3851 41.0768 11.8008 40.186V40.1839Z" fill="#CEB052"/>
34 +<path fill-rule="evenodd" clip-rule="evenodd" d="M30.7578 33.0712C30.7578 33.0712 31.313 32.3308 31.5055 31.964C31.6977 31.586 30.8967 26.7988 30.8967 26.7988L32.5058 21.5267L32.4629 19.8109C32.4629 19.8109 32.5413 18.2266 32.7264 17.5395C32.9472 17.9347 33.6344 18.4118 33.7838 18.6645C33.8542 18.1802 34.0934 17.1587 34.0579 16.0693C34.1896 16.2721 34.5064 18.312 34.5064 18.312L34.8232 19.686L35.2362 21.1456L35.6954 22.6872L35.9695 23.7516L36.126 24.0079L36.2579 24.4563L36.3825 24.9407L36.742 26.0762L36.9532 27.0088L37.1206 28.6998C37.157 28.8293 37.1832 28.9614 37.1989 29.095C37.206 29.2801 37.1741 29.3869 37.1741 29.4191C37.1741 29.4512 37.2346 29.8248 37.2097 30.1062C37.1741 30.3878 37.1741 30.6081 36.9532 30.8102C36.7324 31.0122 36.5937 32.2198 36.5937 32.2198L36.1986 31.9565C36.1986 31.9565 36.2769 31.5968 36.0918 31.2694C35.9066 30.942 35.5471 30.8742 35.3441 30.9277C35.1414 30.9704 34.7356 31.0343 34.6038 31.1483C34.4792 31.2621 34.1731 31.6146 33.8918 31.7749C33.5398 31.9861 32.9663 32.0027 32.6603 32.0738C32.3505 32.1442 32.0088 32.3554 31.6491 32.6007C31.367 32.7833 31.0692 32.9403 30.7592 33.07L30.7578 33.0712Z" fill="#CCA847"/>
35 +<path fill-rule="evenodd" clip-rule="evenodd" d="M30.7578 40.8491C30.7578 40.8491 30.7813 40.8644 30.8266 40.8893C33.3557 39.7043 35.6218 38.0247 37.4911 35.9495C37.4707 35.2291 37.4442 34.4906 37.4151 34.217C37.3548 33.6367 37.3975 33.0458 37.3796 32.7041C37.3618 32.3624 37.1696 30.9704 37.0807 30.6109C36.9845 30.2514 36.7991 30.0732 36.7709 30.0732C36.746 30.0805 36.5963 30.7498 36.5963 30.918C36.5963 31.0863 36.5606 31.4913 36.5606 31.5946C36.5358 31.5873 36.5252 31.5242 36.5252 31.4984C36.4895 31.5873 36.4468 31.7441 36.429 31.7619C36.4112 31.7797 36.4539 31.6124 36.429 31.5768C36.4041 31.5411 36.3586 31.5589 36.3685 31.47C36.3727 31.4172 36.381 31.3649 36.3933 31.3135C36.3933 31.3135 36.2866 31.47 36.2084 31.8687C36.13 32.2639 36.13 32.2746 36.1016 32.3101C36.0768 32.353 35.9343 32.4952 35.927 32.5487C35.92 32.6447 36.0589 32.7409 36.0695 32.7942C36.0765 32.8834 35.9449 33.2962 35.9022 33.4982C35.8595 33.7002 35.8773 34.0961 35.8318 34.2991C35.7961 34.4843 35.7614 34.591 35.6396 34.6692C35.7285 34.687 35.8139 34.7119 35.8139 34.7119C35.8139 34.7119 35.9385 35.2387 35.6217 35.6874C35.5079 35.8439 35.4795 35.9153 35.3585 36.0577C35.1198 36.321 34.9346 36.6209 34.9168 36.8159C34.9045 36.7584 34.8962 36.7 34.8919 36.6413C34.8919 36.6413 34.5219 37.0722 34.3651 37.3179C34.1624 37.6347 33.881 37.6168 33.8019 37.6952C33.7228 37.7736 33.7057 37.9158 33.7315 38.0298C33.6611 38.0474 33.5288 38.0726 33.4396 38.3466C33.3969 38.4889 33.2901 38.6282 33.1228 38.724C32.9555 38.8197 32.7525 38.8486 32.6492 38.8735C32.7382 38.8984 32.7738 38.8983 32.8165 38.9267C32.7633 39.0157 32.5176 39.1546 32.2435 39.3327C31.9694 39.5 31.8375 39.7455 31.7699 39.9058C31.6995 40.0553 31.5956 40.1515 31.4283 40.1693C31.4987 40.212 31.6028 40.3115 31.6561 40.3437C31.5777 40.3615 31.4449 40.3615 31.2077 40.5645C30.9585 40.771 30.873 40.8315 30.759 40.8494L30.7578 40.8491Z" fill="#C39D3C"/>
36 +<path fill-rule="evenodd" clip-rule="evenodd" d="M25.8059 42.4992C25.9422 42.4036 26.0898 42.3254 26.2454 42.2662C26.8006 42.0456 27.388 42.0029 27.6194 41.9318C27.8402 41.8614 28.0145 41.7642 28.2886 41.7109C28.2814 41.7734 28.2753 41.832 28.2687 41.8874C27.4606 42.1414 26.6377 42.3458 25.8047 42.4992H25.8059Z" fill="#D2BA6B"/>
37 +<path fill-rule="evenodd" clip-rule="evenodd" d="M36.0463 27.8955C36.0463 27.8955 35.9325 28.5112 35.7295 28.8994C35.5266 29.2875 35.3071 29.8249 35.3071 29.8249C35.3085 29.7038 35.3228 29.5832 35.3498 29.4652C35.0936 29.6146 34.4706 29.9744 34.2938 30.1344C34.1265 30.2839 33.8452 30.5474 33.7741 30.6721C33.9414 30.1809 34.1157 29.7395 34.1444 29.5365C33.8881 29.7217 32.6918 30.7077 32.069 31.3592L30.1287 32.9291C29.9049 33.0499 29.6743 33.1578 29.4381 33.2524C29.1037 33.3947 28.7085 33.5157 28.4166 33.6298C28.495 33.4198 28.6194 33.2344 28.794 33.0565C28.9791 32.8821 29.5343 32.2805 29.6198 32.0005C29.6981 31.7086 29.716 31.5342 29.6127 31.2885C29.5165 31.3134 29.2959 31.3242 29.1464 31.3669C28.997 31.4096 28.8367 31.5697 28.8367 31.5697C28.8367 31.5697 28.9505 30.9182 29.1962 30.3025C29.011 30.3095 28.6942 30.3628 28.6942 30.3628C28.6942 30.3628 29.1356 29.6224 29.891 29.1064C29.6597 29.1556 29.4333 29.2258 29.2147 29.3161C28.7733 29.5013 28.2892 29.7754 27.9297 29.9249C28.1324 29.6433 29.5564 27.6111 30.4038 25.7171C31.2486 23.8268 31.5642 23.3427 31.7494 22.3282C31.8453 21.8263 31.8198 21.0845 31.8453 20.4202C31.8702 19.7615 31.9521 19.1706 31.8988 18.7754C32.1194 19.0495 32.9455 19.822 32.9738 21.5487C32.9987 23.2751 32.1837 25.607 31.3185 26.8634C31.5297 26.924 32.077 26.9953 32.6392 26.0186C33.2015 25.0419 33.1947 24.7692 33.3977 24.3633C33.4225 24.5663 33.4153 24.6374 33.4153 24.6374C33.4153 24.6374 34.2342 23.6443 34.6221 22.3947C34.7005 22.9323 34.9319 23.4058 34.5686 24.3919C34.2448 25.2818 33.8212 25.4991 33.8212 25.4991C33.8212 25.4991 34.0313 25.4634 34.3408 25.2782C34.3943 25.4099 34.3837 25.5598 34.4727 25.6129C34.5616 25.6659 34.6827 25.7553 34.7005 25.8407C34.7965 25.6983 34.946 25.5167 34.9924 25.3815C34.9568 25.6631 34.9319 26.8944 35.0628 27.5209C35.3372 27.4961 35.6183 27.4782 35.8105 26.9833C35.6788 27.4677 35.6789 27.7594 35.7678 28.1724C35.9138 28.0729 36.0454 27.8948 36.0454 27.8948L36.0463 27.8955Z" fill="#C0993A"/>
38 +<path fill-rule="evenodd" clip-rule="evenodd" d="M26.7937 8.27318C26.7937 8.27318 26.5197 8.38699 26.0534 8.38699C25.6476 8.38699 25.7614 8.23047 25.1278 8.23047C24.1526 8.23047 20.7457 8.79367 20.1475 8.78569C19.7594 8.77865 21.4574 8.95301 21.4574 8.95301L25.7971 9.01355L26.6691 8.94315L26.9932 8.28374L26.7937 8.27318Z" fill="#A88F33"/>
39 +<path fill-rule="evenodd" clip-rule="evenodd" d="M15.5419 16.7564C15.5419 16.7564 14.9865 17.18 14.7516 17.5041C14.5167 17.8282 14.3921 18.0415 14.125 18.305C14.1877 18.3074 14.2503 18.299 14.3102 18.2801C14.3102 18.2801 14.3102 18.3505 14.2674 18.3691C14.3043 18.3649 14.3417 18.3691 14.3768 18.3813C14.4119 18.3935 14.4438 18.4134 14.4702 18.4395C14.3918 18.4822 14.1783 18.696 14.3456 18.9487C14.4702 19.1409 14.7337 19.1585 14.7337 19.1585C14.7337 19.1585 14.6732 19.3331 14.9259 19.3152C15.4706 19.2904 16.0793 19.0517 16.3604 19.1123C16.642 19.1827 16.8021 19.2085 17.0013 19.5539C17.2125 19.8956 17.3965 19.9491 17.3965 19.9491C17.3965 19.9491 17.5211 19.632 17.4927 19.1587C17.5949 18.9036 17.6515 18.6325 17.66 18.3578L17.4749 16.9944L16.6669 15.9727L15.6203 16.553L15.5419 16.7557V16.7564Z" fill="#E3C571"/>
40 +<path fill-rule="evenodd" clip-rule="evenodd" d="M16.5352 16.553C16.5352 16.553 16.6135 16.7381 16.9411 16.7557C16.9055 16.8341 16.9055 16.8449 16.9163 16.9052C16.9233 16.9657 16.9339 17.0547 16.9339 17.0547C16.9699 17.0372 17.0025 17.0134 17.0301 16.9843C17.0479 17.0627 17.0122 17.187 17.0301 17.2762C17.0411 17.3304 17.059 17.383 17.0833 17.4327C17.0885 17.4206 17.0945 17.4087 17.1012 17.3973C17.1082 17.3795 17.1716 17.5895 17.3469 17.7493C17.3467 17.7247 17.3528 17.7005 17.3645 17.6789C17.3672 17.7235 17.3819 17.7666 17.4072 17.8035C17.3941 17.7972 17.3821 17.7888 17.3717 17.7786C17.3717 17.7786 17.3893 18.3418 17.4856 18.633C17.5016 18.6142 17.5159 18.594 17.5283 18.5725C17.5283 18.5549 17.5212 18.7293 17.5034 18.8541C17.4785 18.9787 17.4964 19.1531 17.4964 19.1531C17.5605 19.1025 17.6311 19.0606 17.7061 19.0285C17.8129 18.9855 17.9877 18.8539 18.0943 18.5619C18.1561 18.3966 18.2037 18.2263 18.2367 18.053C18.2711 18.1192 18.2949 18.1905 18.3071 18.2642C18.3144 18.3531 18.4817 18.3069 18.4817 18.3069L18.5174 17.9187L18.7286 17.0394L18.9208 16.4948L19.8463 15.0532L21.5185 13.7654L22.9782 14.1L24.2097 12.4268L22.0881 11.1523L20.0803 11.3624L18.2581 13.8862L16.7987 16.1754L16.5352 16.5527V16.553Z" fill="#D8B65B"/>
41 +<path fill-rule="evenodd" clip-rule="evenodd" d="M27.0516 12.9013C27.0516 12.9013 26.927 12.9262 26.5674 13.1125C26.2079 13.2988 25.9587 13.3579 25.8198 13.632C25.6809 13.9061 25.6703 14.1234 25.6703 14.1234C25.6703 14.1234 25.916 14.0167 26.0585 13.981C26.2079 13.9456 26.3753 13.9561 26.3574 14.0167C26.3403 14.0582 26.3165 14.0966 26.287 14.1305C26.287 14.1305 26.5686 14.1234 26.5611 14.2624C26.5536 14.4013 26.5078 14.5543 26.4546 14.6219C26.4011 14.6923 26.1805 14.7965 26.1556 14.8784C26.0951 15.0457 26.1805 15.0527 26.1483 15.1879C26.1235 15.3198 26.0061 15.576 25.6215 16.0245C25.2263 16.4731 25.0583 16.7899 25.0583 16.7899C25.0583 16.7899 24.8661 16.4304 24.7664 16.1207C24.696 16.1561 24.3179 16.3661 24.3179 16.3661L23.4422 13.3155L23.4598 13.1125C23.4598 13.1125 23.5381 13.0165 23.556 12.8384C23.4243 12.7957 23.4065 12.76 23.2319 12.5929C23.0573 12.4259 22.9151 12.2226 22.6234 12.0837C22.5807 12.0053 22.5272 11.8988 22.3136 11.8558C22.1001 11.8129 21.972 11.7777 21.972 11.7777C21.972 11.7777 22.0858 11.7348 22.1393 11.6458C22.0074 11.6637 21.9009 11.7064 21.6125 11.6993C21.3205 11.692 21.2884 11.6815 21.1283 11.7064C20.9683 11.7312 20.7763 11.8026 20.7048 11.5569C20.6264 11.4963 20.4591 11.5498 20.3166 11.7596C20.1742 11.9694 20.1244 12.137 19.8503 12.2189C19.8311 12.3397 19.7888 12.4557 19.7257 12.5606C19.6474 12.6924 19.5228 12.8241 19.3554 13.0198C19.0919 13.3296 19.1346 13.8385 18.7146 14.2267C18.291 14.6146 18.785 13.1514 18.785 13.1514L19.4613 11.5322L21.3872 9.64904L24.3775 9.44629L24.6695 10.9951L26.1291 11.497L27.0511 12.9032L27.0516 12.9013Z" fill="#D3AE4D"/>
42 +<path fill-rule="evenodd" clip-rule="evenodd" d="M27.5236 13.2422L26.267 11.4304L25.3877 10.7538C25.3877 10.7538 24.7611 9.60065 24.7184 9.56499C24.6827 9.54011 24.0918 9.47605 23.7145 9.45117L23.7849 9.62553C23.8673 9.65228 23.9404 9.70164 23.9961 9.76797C24.1634 9.96016 24.2702 10.3232 23.8893 10.7113C24.0388 10.7646 24.1005 10.7817 24.231 10.7646C24.0994 10.9214 23.8004 11.256 23.7826 11.5479C23.7647 11.7863 23.9142 11.8574 23.9142 11.8574C23.9142 11.8574 23.6863 12.121 23.6758 12.5614C23.7834 12.4401 23.9011 12.3281 24.0278 12.2268C24.2913 12.0156 24.6543 11.7781 24.9 11.6286C24.8967 11.6914 24.9051 11.7542 24.9249 11.8138C24.9249 11.8138 25.3839 11.4365 25.7697 11.6038C25.9441 11.6821 25.8657 11.9278 25.8657 11.9278C25.8657 11.9278 26.1043 11.8389 26.2717 12.0062C26.439 12.1735 26.6774 12.6042 26.7985 12.7717C26.8518 12.8501 26.9907 12.9996 27.1329 13.2307C27.3272 13.5547 27.4894 13.8969 27.6172 14.2525C27.6243 14.11 27.6529 13.9108 27.8988 13.9108L27.525 13.2415L27.5236 13.2422Z" fill="#CAA13E"/>
43 +<path fill-rule="evenodd" clip-rule="evenodd" d="M8.68797 18.3905C8.68797 18.3905 8.59903 18.1696 8.68797 17.739C8.7769 17.3084 8.91583 17.1054 8.96206 16.4718C9.00829 15.8382 9.4213 15.0479 9.4213 15.0479L10.5639 14.5283L11.3721 14.7489L11.6105 15.8312L10.5888 16.3944C10.5888 16.3944 10.5355 16.6328 10.2471 16.825C9.95869 17.0172 9.55999 17.1667 9.46401 17.3626C9.40663 17.4826 9.36476 17.6094 9.3394 17.74C9.3394 17.74 9.04748 17.6794 8.87312 17.8716C8.68797 18.0676 8.69501 18.2419 8.68797 18.3914V18.3905Z" fill="#F4EFC8"/>
44 +<path fill-rule="evenodd" clip-rule="evenodd" d="M10.9932 18.1018C10.9932 18.1018 10.897 18.1623 10.8259 18.313C10.7555 18.1991 10.5872 17.5226 10.5802 16.9139C10.5732 16.3052 10.5368 16.1543 10.6776 15.9445C10.8184 15.7347 11.3706 15.5136 11.2922 15.1358C11.2138 14.7763 10.8862 14.6268 10.484 14.7301C10.2024 14.8005 9.99282 15.3993 9.7009 15.6983C9.48008 15.9262 9.21678 15.8905 9.14568 16.0151C9.04946 16.1824 9.1384 16.3497 9.11001 16.4565C9.10273 16.4922 9.01379 16.6844 8.85352 16.9158C8.52968 17.382 7.98149 18.0407 7.91016 18.6316C7.93503 18.297 7.91743 18.29 8.00637 17.9197L7.95287 17.8307L8.30487 16.6773L8.53273 15.7269L9.04195 14.1354L9.93885 12.5087L10.8111 11.5332L11.7188 11.5937L11.8256 12.9572L12.3454 15.5169L13.4382 16.8625L11.6866 18.0412L10.9925 18.1018H10.9932Z" fill="#EBCC73"/>
45 +<path fill-rule="evenodd" clip-rule="evenodd" d="M11.5362 18.5852C11.5362 18.5852 11.3867 18.6209 11.3332 18.5925C11.2797 18.5641 11.2267 18.532 11.2443 18.4963C11.2619 18.4606 11.3581 18.4003 11.3581 18.3717C11.3601 18.3458 11.3519 18.3202 11.3353 18.3003C11.3187 18.2803 11.2949 18.2676 11.2691 18.2649C11.1872 18.2543 11.1624 18.3076 11.1624 18.3076C11.1624 18.3076 11.084 18.2473 11.0202 18.2372C11.0579 18.2326 11.0959 18.2302 11.134 18.2299C11.0356 18.1854 10.9312 18.1554 10.8242 18.141C10.9132 18.0877 11.0877 17.931 11.2016 17.931C11.3154 17.931 11.3867 17.9134 11.3689 17.8528C11.351 17.7923 11.2621 17.7034 11.1661 17.6677C11.2016 17.625 11.2267 17.5609 11.1413 17.3861C11.0521 17.2117 11.0877 17.0942 11.1164 17.0517C11.1413 16.9982 11.2302 16.9022 11.2729 16.8417C11.3156 16.7811 11.3513 16.6992 11.4224 16.6565C11.4581 16.6316 11.5719 16.5861 11.6859 16.5427C11.8105 16.5 11.9138 16.4465 11.9849 16.5C12.0633 16.5533 12.0276 16.6246 12.0276 16.6246C12.0276 16.6246 12.2733 16.5354 12.4939 16.6495C12.7147 16.756 13.2523 16.8238 13.2523 16.8238L13.445 17.212L12.1705 18.3048L11.6437 18.5683L11.5369 18.5859L11.5362 18.5852Z" fill="#E5C66B"/>
46 +<path fill-rule="evenodd" clip-rule="evenodd" d="M13.3055 16.7993C13.3055 16.7993 12.9103 17.0628 12.8213 17.1588C12.8746 17.1661 12.9636 17.2017 12.9279 17.255C12.8852 17.3083 12.6289 17.4934 12.4865 17.668C12.337 17.8424 12.1946 18.0632 12.1448 18.17C12.0915 18.2659 11.6856 18.5473 11.5469 18.5827C11.8388 18.5827 12.4262 18.2232 12.6468 18.2232C12.6397 18.33 12.7073 18.4511 12.8319 18.4617C12.9565 18.4722 13.316 18.54 13.8001 18.2411C14.2843 17.9491 14.1242 17.7318 14.327 17.5896C14.7151 17.3331 14.8716 17.1053 15.0852 16.9631C15.2987 16.8209 15.4093 16.7885 15.4093 16.7885C15.4093 16.7885 15.4163 16.6817 15.4797 16.6925C15.497 16.6945 15.5135 16.7012 15.5273 16.7119C15.5411 16.7225 15.5517 16.7368 15.558 16.7531C15.558 16.7531 15.9283 16.4895 16.4028 16.4184C16.3918 16.4135 16.3829 16.4046 16.378 16.3935C16.378 16.3935 16.4134 16.3757 16.4207 16.3579C16.4207 16.3579 16.4455 16.3222 16.4634 16.34C16.4812 16.3579 16.5061 16.4895 16.5418 16.543C16.6201 16.5074 16.7696 16.1727 16.7696 16.1727L17.1294 15.1439V14.2041L16.8478 14.2576L14.7358 15.1545L13.454 16.4825L13.3045 16.7993H13.3055Z" fill="#E6BD62"/>
47 +<path fill-rule="evenodd" clip-rule="evenodd" d="M19.3851 12.1891C19.4994 12.1614 19.6089 12.117 19.7101 12.0572C19.6674 12.1713 19.6674 12.2959 19.4823 12.5665C19.2971 12.837 19.2901 12.8762 19.1406 13.1574C18.9911 13.4493 18.9733 13.8693 18.8308 14.0543C18.8947 14.0232 18.9632 14.0029 19.0336 13.9939C19.0336 13.9939 18.8914 14.1186 18.8308 14.2502C18.7703 14.3818 18.6635 14.6559 18.4002 14.8235C18.1369 14.991 17.8021 15.0976 17.4425 15.4928C17.0828 15.8807 16.7127 16.3721 16.5273 16.5488C16.6236 16.3814 16.7552 16.0468 16.7909 15.8262C16.8265 15.6056 16.7836 15.3419 16.8441 15.0502C16.9047 14.7585 16.9047 14.5482 17.1961 14.039C17.4876 13.5298 17.9865 11.7606 17.9865 11.7606L19.0615 11.4189L19.3856 12.1879L19.3851 12.1891Z" fill="#B6933F"/>
48 +<path fill-rule="evenodd" clip-rule="evenodd" d="M18.6105 11.5375C18.6105 11.5375 18.2867 12.0038 18.1977 12.4168C18.1088 12.8299 18.1904 12.7942 18.1372 12.9972C18.1053 13.1209 18.1053 13.2507 18.1372 13.3745C18.2493 13.1938 18.4029 13.0424 18.5852 12.9329C18.8914 12.748 19.1406 12.6161 19.2892 12.4595C19.4386 12.2922 19.5632 12.0181 19.8871 11.8081C19.7554 11.7903 19.5703 11.7297 19.5351 11.7377C19.667 11.5882 20.0619 11.3604 20.4606 11.0863C20.8558 10.8047 20.8309 10.6911 21.4718 10.41C21.2618 10.4456 21.162 10.3921 20.9874 10.41C21.0578 10.2605 21.3042 10.1891 21.5506 9.94369C21.797 9.69822 21.3941 9.33496 21.3941 9.33496L19.5168 10.4705L18.6091 11.5385L18.6105 11.5375Z" fill="#C49937"/>
49 +<path fill-rule="evenodd" clip-rule="evenodd" d="M13.5156 10.69L13.5583 10.3484L14.096 9.48691L14.6585 7.97401V5.90566L14.6157 4.70957L14.7047 3.92625L14.7723 3.67727L14.8436 3.58105L15.3026 3.81948L15.9364 4.68094L15.997 6.34355L15.381 8.96712L13.6224 10.886L13.5156 10.69Z" fill="#DFC068"/>
50 +<path fill-rule="evenodd" clip-rule="evenodd" d="M14.9168 3.48539C14.9168 3.48539 14.6352 3.49266 14.5751 4.66388C14.515 5.8351 14.4859 6.45087 14.4432 7.0312C14.4005 7.61153 14.301 7.96376 14.251 8.30567C14.2011 8.64758 14.1727 9.11363 14.0126 9.39852C13.9422 9.53016 13.7918 9.94318 13.4393 10.2529C13.0442 10.5946 12.4537 10.8333 12.3643 10.8511C12.2076 10.8865 11.4137 10.9649 11.0899 11.143C10.976 11.2036 10.7801 11.2747 10.563 11.4777C10.1322 11.8656 9.55912 12.5597 9.14611 13.3963C8.51251 14.6459 7.87891 18.1736 7.87891 18.1736L8.02135 17.9352C8.02135 17.9352 8.03918 17.6184 8.35598 17.063C8.66574 16.5077 8.5768 15.8847 9.00742 14.8203C9.17474 14.4145 9.38476 13.8877 9.64102 13.439C10.047 12.7092 10.5381 12.0826 11.0331 11.741C11.841 11.1857 12.7311 11.0647 12.7311 11.0647L13.6888 10.431C13.6888 10.431 13.8561 10.1072 14.0769 9.73691C14.3864 9.21735 14.7809 8.63702 14.867 7.7934C14.9989 6.5438 14.6819 5.72504 14.6997 4.98467C14.7176 4.2443 14.7246 3.69964 14.8743 3.56775C15.024 3.43587 14.917 3.48586 14.917 3.48586L14.9168 3.48539Z" fill="#A88F33"/>
51 +<path fill-rule="evenodd" clip-rule="evenodd" d="M14.9175 9.07433C14.9175 9.07433 15.3399 8.03475 15.5332 7.11275C15.5689 6.9276 15.64 6.74268 15.6578 6.5932C15.7468 5.72094 15.7716 5.36143 15.6578 4.88435C15.5689 4.53235 15.2272 4.21508 15.0491 3.96915C14.8747 3.71266 14.7928 3.61715 14.8285 3.56318C14.8642 3.50921 15.0029 3.42097 15.138 3.43153C15.2817 3.43571 15.4231 3.46908 15.5534 3.52959C15.6838 3.5901 15.8005 3.6765 15.8965 3.78353C16.1706 4.10033 16.3876 5.17557 16.3876 5.17557L16.616 6.59437L17.1963 8.38136L14.9179 9.07573L14.9175 9.07433Z" fill="#C99E3D"/>
52 +<path fill-rule="evenodd" clip-rule="evenodd" d="M18.8845 7.99203C18.8845 7.99203 18.8061 8.02747 18.6639 7.99203C18.67 8.05015 18.6599 8.10881 18.6347 8.16156C18.6096 8.2143 18.5704 8.2591 18.5215 8.291C18.372 8.23045 16.9727 8.35154 16.9727 8.35154C16.9727 8.35154 16.3212 8.23749 16.1182 7.37603C15.976 6.80274 16.225 6.01262 16.1431 5.49283C16.0185 4.72735 15.8441 4.57763 15.8263 4.33944C15.8085 4.10126 15.7906 4.04048 15.7906 3.891C15.7123 3.87316 15.666 3.84829 15.5879 3.84829C15.5701 3.77789 15.6055 3.7164 15.5273 3.5918C15.5701 3.60963 15.862 3.6453 16.2037 3.96914C16.4853 4.23267 16.4853 4.32865 16.5277 4.38215C16.581 4.43542 17.0118 4.80455 17.197 5.17251C17.3821 5.54047 17.7417 6.7138 17.8236 6.90599C17.8484 6.98437 17.9019 7.06275 18.0348 7.24063C18.2413 7.49712 18.5437 7.92116 18.8854 7.99156L18.8845 7.99203Z" fill="#B58634"/>
53 +<path fill-rule="evenodd" clip-rule="evenodd" d="M16.5781 4.40039C16.7938 4.74876 16.9875 5.11022 17.1582 5.48267C17.3682 5.956 17.4929 6.34413 17.7564 6.66093C17.6139 6.24816 17.3612 5.43644 17.2117 5.14804C17.0444 4.84297 16.7027 4.51444 16.5781 4.40063V4.40039Z" fill="#A88F33"/>
54 +<path fill-rule="evenodd" clip-rule="evenodd" d="M14.1562 10.2522C14.1562 10.2522 13.7967 10.3411 13.1274 10.6936C12.9066 10.8074 12.6968 10.9034 12.4938 10.9926C11.9665 11.231 11.4009 11.4513 10.9523 11.5729C10.9879 11.6156 11.0055 11.6332 11.0055 11.6332C11.0055 11.6332 11.0055 11.8078 11.1017 11.9073C11.0485 11.9608 10.3363 12.4449 10.5465 14.0646C10.6887 14.0113 10.8561 13.94 10.8809 13.94C10.9239 13.9472 10.9344 14.0646 10.9877 14.0646C11.041 14.0646 11.2156 13.9942 11.4007 13.7548C11.3937 13.851 11.2869 14.8193 11.86 15.4707C11.9667 15.3461 12.2373 14.9331 12.2373 14.9331L12.2443 14.8014C12.2443 14.8014 12.2692 14.3422 12.4189 13.9221C12.5687 13.5021 12.8603 13.1923 12.8603 13.1923L14.3836 11.0172L14.1557 10.252L14.1562 10.2522Z" fill="#E6C367"/>
55 +<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7352 13.4468C12.6655 13.4961 12.5887 13.5345 12.5074 13.5607C12.4825 13.4717 12.4468 13.1655 12.6569 12.8665C12.9026 12.5068 13.4399 12.0405 13.5894 11.6697C13.6856 11.4311 13.6429 10.8331 14.4974 10.0676C15.3518 9.30217 15.6862 9.03887 15.6862 9.03887L17.0674 8.34473L18.7655 9.014L17.9218 12.3204L17.2669 13.8692L14.6621 13.3781L12.735 13.4468H12.7352Z" fill="#DCBA5A"/>
56 +<path fill-rule="evenodd" clip-rule="evenodd" d="M13.7266 12.5486L14.0506 12.1429V11.8545C14.0506 11.8545 14.4101 11.7583 14.798 11.3631C15.186 10.9679 15.7236 10.2097 16.1971 10.2559C16.6707 10.3094 16.7169 11.2847 16.7348 11.559C16.7526 11.8334 16.8131 12.4559 16.9091 12.7908C17.0159 13.1254 15.7557 14.3926 15.7557 14.3926L14.8999 15.0441L13.7266 12.5486Z" fill="#E9CE77"/>
57 +<path fill-rule="evenodd" clip-rule="evenodd" d="M14.7305 15.9272C14.7305 15.9272 14.994 15.5141 14.8009 15.4252C14.9147 15.169 15.1247 14.8984 15.1247 14.8984C15.1247 14.8984 15.2742 14.5283 15.7583 14.0726C16.2424 13.6169 16.5416 13.3141 16.62 13.0081C16.6683 12.8087 16.6946 12.6046 16.6984 12.3994C16.7507 12.4422 16.8067 12.4803 16.8657 12.5132C16.9441 12.5489 17.3141 12.8549 17.2609 13.4709C17.2076 14.0869 16.9793 14.3432 16.9793 14.3432C16.9793 14.3432 16.7587 14.5637 16.6022 14.6778C16.4346 14.7916 16.3743 14.9233 16.0929 14.934C16.1219 14.9111 16.1544 14.893 16.1892 14.8805C16.1892 14.8805 15.8972 14.8451 15.7405 14.9873C15.5837 15.1295 15.2505 15.5676 15.0832 15.6995C14.9159 15.8063 14.7312 15.9274 14.7312 15.9274L14.7305 15.9272Z" fill="#CDAE50"/>
58 +<path fill-rule="evenodd" clip-rule="evenodd" d="M26.5689 9.0032C26.1483 8.84992 25.7063 8.76346 25.259 8.74695C24.5113 8.72207 23.4185 8.76478 22.347 8.77182C21.1936 8.77886 20.147 8.37664 18.6947 8.30554C18.4562 8.1631 17.8499 7.54006 15.957 8.86076C16.0708 8.85372 17.3312 8.56884 17.7689 9.11725C18.2103 9.66191 18.0857 10.5874 18.0254 10.808C17.9113 11.2994 17.541 12.0149 17.3918 12.5169C17.2425 13.0188 17.2777 13.2826 17.171 13.6346C17.0642 13.9866 16.8293 14.1614 16.968 14.5672C17.1531 14.4533 17.2496 14.4533 17.5589 13.7592C17.8682 13.065 17.8046 12.5701 18.3173 11.9828C18.8193 11.3919 19.6549 10.5837 19.9726 10.3807C20.2904 10.1777 22.8133 8.8678 25.4549 10.1174C26.0921 10.0498 26.5691 9.00297 26.5691 9.00297L26.5689 9.0032Z" fill="#D2A83E"/>
59 +<path fill-rule="evenodd" clip-rule="evenodd" d="M17.0197 8.51795C17.0171 8.4912 17.0112 8.46487 17.0021 8.43957C16.9774 8.38751 16.945 8.33949 16.9059 8.29713C16.9059 8.29713 16.2794 8.18332 15.9626 8.21875C15.4071 8.2793 14.9052 8.9664 14.6703 9.31887C14.4354 9.67134 14.1434 10.2158 13.8266 10.4971C13.8301 10.4697 13.8238 10.442 13.8088 10.4188C13.8088 10.4188 13.8266 10.4436 13.7912 10.4793C13.7558 10.515 13.7555 10.5326 13.7734 10.5497L13.8269 10.603C13.8445 10.603 14.3359 10.3821 15.0051 9.75817C15.7171 9.10673 16.2618 8.77257 16.5467 8.65805C16.6986 8.59348 16.8574 8.54648 17.02 8.51795H17.0197Z" fill="#C29637"/>
60 +<path fill-rule="evenodd" clip-rule="evenodd" d="M29.1725 5.8418C29.1725 5.8418 29.0585 5.984 28.916 6.14076C28.5992 6.4754 28.1862 6.85251 27.8337 7.24064C27.4993 7.61095 27.122 7.89935 26.6982 8.38347C26.2744 8.86759 25.783 9.40498 25.6586 9.56173C25.5448 9.71849 25.4559 9.97475 25.4559 10.1064C25.3953 10.0637 25.3242 10.0175 25.3242 10.0175C25.3542 10.0733 25.3899 10.1259 25.431 10.1742C25.5199 10.2988 25.6586 10.4558 25.73 10.5516C25.8175 10.6734 25.8803 10.8113 25.9149 10.9573C25.9576 10.9643 26.2317 11.0178 26.5736 10.4553C26.9155 9.89285 27.3637 9.27708 27.3637 9.27708L28.0757 8.21967L28.5244 7.32278L29.0876 6.31887L29.1732 5.8418H29.1725Z" fill="#AC8132"/>
61 +<path fill-rule="evenodd" clip-rule="evenodd" d="M29.9036 5.12305C29.9036 5.12305 29.4727 5.47505 29.3054 5.68625C29.1381 5.89745 28.7422 6.45173 28.7422 6.45173L28.8846 6.43389L29.6074 5.79325L29.889 5.2913L29.9033 5.12399L29.9036 5.12305Z" fill="#A88F33"/>
62 +<path fill-rule="evenodd" clip-rule="evenodd" d="M29.7714 33.413C29.7714 33.413 29.7644 33.1211 29.9282 32.9467C30.0955 32.7721 30.5191 32.5159 30.9321 31.5547C31.3451 30.5935 31.3911 30.3764 31.3911 30.3764C31.3911 30.3764 30.6507 31.01 30.1943 31.1595C30.3011 30.9387 30.3616 30.7822 30.4151 30.6681C30.3546 30.6148 30.0983 30.5543 30.0734 30.5259C30.2156 30.3835 30.294 30.0345 30.5824 29.8031C30.9527 29.5215 31.629 29.0376 32.1547 28.6063C32.6803 28.175 33.7138 27.1718 33.8457 26.8799C33.9241 26.9937 33.9417 27.0648 33.9417 27.0648C33.9417 27.0648 33.4221 27.7413 33.1515 28.172C32.9129 28.5423 32.9307 28.7523 32.9307 28.7523L33.4221 28.5411C33.4221 28.5411 33.5643 29.0679 32.9202 29.8691C33.2018 29.7623 33.3153 29.8264 33.4754 29.7372C33.2119 29.9047 32.8488 30.1326 32.5072 30.7589C32.1725 31.3855 31.7168 32.1153 30.948 32.5708C30.2004 33.0514 29.7695 33.4109 29.7695 33.4109L29.7714 33.413Z" fill="#A67A2E"/>
63 +<path fill-rule="evenodd" clip-rule="evenodd" d="M27.8435 9.37345C27.8435 9.37345 27.5515 9.98194 27.5088 10.4555C27.5018 10.5695 27.4732 10.6585 27.4732 10.7901C27.4661 11.2137 27.498 11.6873 27.4028 11.9079C27.3671 11.8189 27.3492 11.7584 27.3136 11.7229C27.2603 11.8724 27.1641 12.3387 27.0857 12.5131C27.0503 12.3992 26.9719 12.0041 26.9792 11.5378C26.9865 11.0715 26.9968 10.9823 26.9968 10.8863C26.9792 11.0286 26.883 11.221 26.8473 11.3348C26.794 11.2388 26.7335 11.1142 26.6621 11.011C26.6194 11.0814 26.5662 11.1853 26.5199 11.2388C26.5127 11.1961 26.4951 11.0821 26.4843 10.922C26.4772 10.7369 26.4664 10.4984 26.4772 10.4485C26.4948 10.3525 26.6445 9.97514 26.9613 9.62971C27.3387 9.2167 27.7268 8.42305 27.8406 8.17736C27.9545 7.93166 28.4386 6.91016 28.4386 6.91016H28.8089L28.2713 8.13465C28.2713 8.13465 27.9474 8.80392 27.7801 9.04985C27.6128 9.29578 27.2603 10.0005 27.1036 10.2746C27.2174 10.1251 27.3136 10.0467 27.4276 9.90427C27.5379 9.80453 27.8439 9.37392 27.8439 9.37392L27.8435 9.37345Z" fill="#8C6228"/>
64 +<path fill-rule="evenodd" clip-rule="evenodd" d="M29.9085 5.07617C29.848 5.26234 29.7524 5.4352 29.6269 5.5854C29.4061 5.84893 28.9325 6.20116 28.7013 6.48229C28.4901 6.75638 28.0677 7.50403 28.2597 8.39037C28.3301 8.19818 28.4627 7.81731 28.8152 7.38646C29.1676 6.95562 29.545 6.46094 29.7304 6.07656C29.9153 5.68842 29.9402 5.38241 29.9402 5.38241L30.0106 5.29347L29.9678 5.09049L29.9073 5.07617H29.9085Z" fill="#CBA94C"/>
65 +<path fill-rule="evenodd" clip-rule="evenodd" d="M37.12 28.6887C37.12 28.6887 36.9775 28.3008 36.9348 27.9483C36.8921 27.5959 37.0052 27.5259 36.8743 27.1225C36.7959 26.8768 36.6537 26.9113 36.618 26.8768C36.5823 26.8423 36.5575 26.4711 36.5645 26.2681C36.5716 26.0651 36.5575 25.8018 36.5218 25.6878C36.4685 25.6451 36.4329 25.6094 36.3545 25.3461C36.2655 25.0826 36.2228 24.9509 36.1801 24.8728C36.1374 24.7946 36.0126 24.7233 36.0126 24.6449C36.0126 24.4882 36.155 24.4065 36.155 24.3633C36.148 24.2744 36.0412 24.3457 36.0126 24.3206C35.9771 24.2779 36.1017 24.0216 36.0555 23.986C36.0377 23.9684 35.9131 24.1179 35.8809 24.0751C35.8453 24.0322 35.8025 23.6086 35.7385 23.3275C35.6782 23.0534 35.6139 22.8542 35.6068 22.7723C35.5998 22.6939 35.1154 21.3127 34.9981 20.978C34.9036 20.6953 34.824 20.4077 34.7597 20.1166C34.724 19.9492 34.6991 19.6073 34.6813 19.643C34.6635 19.6787 34.6743 19.853 34.6456 19.846C34.6208 19.8387 34.5318 19.2302 34.5034 19.134C34.4786 19.0378 34.3288 18.7116 34.2922 18.4755C34.2566 18.2369 34.1784 17.6138 34.1249 17.1903C34.0714 16.7667 34.0465 16.5923 34.0465 16.4863C34.0553 16.2268 34.041 15.9671 34.0038 15.7102C33.9334 15.2615 33.7926 14.7169 33.6692 14.4003C33.4308 13.8021 32.7969 12.2714 32.6836 11.8906C32.6836 11.7943 32.8082 11.8478 32.8082 11.8478C32.8082 11.8478 33.1177 12.6239 33.3456 13.2218C33.5664 13.82 33.7764 14.3468 33.8299 14.4003C33.8726 14.4536 34.2073 15.041 34.3568 16.0021C34.5063 16.9633 34.5595 17.8497 34.6487 18.4406C34.6914 18.7222 34.7271 19.0209 34.816 19.3199C34.912 19.6439 35.0615 19.9786 35.2574 20.4911C35.4247 20.9219 35.5493 21.2814 35.6169 21.5912C35.6953 21.9864 35.6953 22.2853 35.7415 22.4813C35.7845 22.6486 35.8483 22.983 35.998 23.4669C36.1477 23.9508 36.3681 24.5741 36.5176 24.962C36.8097 25.738 36.94 26.3859 36.9841 26.7313C37.023 27.0873 37.1549 28.3191 37.1193 28.6892L37.12 28.6887Z" fill="#A88F33"/>
66 +<path fill-rule="evenodd" clip-rule="evenodd" d="M29.9272 5.03325L29.9094 5.07596C29.9094 5.07596 29.9627 5.09379 29.9521 5.16513C29.9529 5.26273 29.9469 5.36027 29.9343 5.45705C29.9167 5.58166 29.881 5.67764 29.874 5.75602C29.874 5.92334 29.8988 6.11553 29.6628 6.59261C29.5924 6.72426 29.5489 6.83807 29.5133 6.91645C29.4243 7.10864 29.4065 7.13727 29.3281 7.22621C29.4527 7.15581 29.9014 6.87421 30.129 6.91645C29.9725 7.00539 29.7339 7.17998 29.5844 7.40784C29.62 7.41488 29.7695 7.44351 30.0068 7.40784C30.402 7.3473 30.8434 7.20485 31.2313 7.23325C31.6551 7.25812 31.4878 6.72425 31.4878 6.72425L30.9987 5.64925L30.0732 4.99805L29.9272 5.03348V5.03325Z" fill="#BE9C44"/>
67 +<path fill-rule="evenodd" clip-rule="evenodd" d="M32.3397 13.0861C32.3397 13.0861 31.9267 12.6731 31.7594 11.2557C31.5921 9.83175 31.6277 7.73571 31.6277 7.73571L31.2931 6.91695C31.2931 6.91695 31.2227 6.37229 31.0474 6.16954C30.8721 5.96679 30.5279 5.62488 30.3711 5.45756C30.2143 5.29024 30.0365 5.06238 29.9297 5.02671C29.983 4.93778 30.2216 4.43582 31.1363 4.42878C32.0511 4.42174 32.3331 4.93074 32.4287 5.11589C32.5242 5.30104 32.9555 6.10149 33.1155 7.62682C33.265 9.15028 33.2723 9.26432 33.2474 9.79115C33.2296 10.0831 33.1334 10.7594 32.9658 11.4819C32.8128 12.0944 32.6455 12.778 32.3392 13.0875L32.3397 13.0861Z" fill="#A17C34"/>
68 +<path fill-rule="evenodd" clip-rule="evenodd" d="M31.0464 14.2998C31.1841 14.3097 31.3216 14.2787 31.4416 14.2106C31.5733 14.2036 32.0503 14.2641 32.4169 13.7979C32.4418 13.9044 32.5061 14.193 32.3385 14.4493C32.4277 14.3601 32.5593 14.3247 32.5772 14.2998C32.5842 14.4315 32.7088 14.8372 32.182 15.8233C32.3242 15.6667 32.4915 15.6738 32.641 15.6559C32.6483 15.8411 32.7478 16.4639 32.4845 16.7988C32.3101 17.0266 32.0252 16.9553 32.0252 16.9553C32.0294 16.9056 32.0294 16.8555 32.0252 16.8058C32.0182 16.7096 31.9825 16.6136 32.0076 16.5496C31.87 16.4867 31.7446 16.3998 31.6373 16.2931C31.3276 16.0011 30.9253 15.5029 30.897 15.1326C30.8613 14.7196 31.2316 14.6307 31.2316 14.6307C31.2006 14.6029 31.1741 14.5705 31.1532 14.5345C31.1354 14.4742 31.1175 14.3779 31.0464 14.2998Z" fill="#8C6228"/>
69 +<path fill-rule="evenodd" clip-rule="evenodd" d="M28.3013 9.82127C28.3013 9.82127 28.2835 9.7964 28.1875 9.91021C28.2053 9.7964 28.2232 9.68939 28.2302 9.58614C28.2756 9.49054 28.3344 9.40189 28.4048 9.32284C28.3513 9.42938 28.3156 9.52559 28.3156 9.52559C28.3156 9.52559 28.4475 9.2799 28.6397 9.13041C28.7714 9.02364 28.9387 8.97389 29.0098 8.87416C29.0881 8.76738 29.0703 8.74955 29.0882 8.73171C29.0882 8.73171 29.2627 8.6179 29.5298 8.28303C29.5652 8.24032 29.6187 8.19409 29.6544 8.15138C29.7147 8.12651 29.8572 8.06245 30.0245 7.97679C30.1991 7.88081 30.3948 7.74917 30.5159 7.69519C30.7543 7.58842 31.0073 7.59921 31.1246 7.43166C31.2135 7.40679 31.3095 7.13974 31.2919 6.91211C31.4236 6.96538 32.0999 7.38543 32.3315 8.30392C32.4988 8.95535 32.1996 9.95926 32.075 10.4436C31.9504 10.928 31.9328 11.2872 31.7582 11.5078C31.5374 11.8 30.8256 12.2118 30.651 12.4157C30.5015 12.5831 30.0531 13.0066 30.0707 13.3126C30.0885 13.5405 30.3697 13.6646 30.4304 13.7078C30.4912 13.751 30.4908 13.804 30.6048 13.7782C30.7188 13.7524 30.7613 13.6998 30.8078 13.6998C30.8611 13.7069 30.8611 13.7177 30.8859 13.7177C30.904 13.7171 30.9219 13.7147 30.9394 13.7104C30.9394 13.7104 30.9216 14.0345 30.1634 14.1328C30.1099 14.1401 30.0566 14.1577 29.9888 14.1685C30.078 14.1258 30.1312 14.1258 30.2275 13.9941C30.1207 13.9763 29.8144 13.9584 29.7361 13.9336C29.7609 13.8909 29.8428 13.7768 29.9104 13.7235C29.971 13.6703 29.9034 13.6531 29.8501 13.6808C29.7584 13.7432 29.6704 13.8109 29.5866 13.8836C29.4976 13.962 29.4193 14.0687 29.2768 14.1652C29.2341 14.0227 29.2412 13.7522 29.4087 13.5565C29.3658 13.5635 29.2839 13.6881 29.2057 13.6632C29.1916 13.5334 29.2 13.4021 29.2306 13.2751C29.2733 13.1148 29.5047 12.8337 29.5047 12.8337L30.6224 10.8364L30.8608 9.32354L28.3013 9.8208V9.82127Z" fill="#92723A"/>
70 +<path fill-rule="evenodd" clip-rule="evenodd" d="M28.2388 9.90748C28.2388 9.90748 28.1783 9.95019 28.2993 10.0321C28.2815 10.057 28.2388 10.1459 28.1853 10.2064C28.125 10.2768 28.0607 10.3205 28.0358 10.381C27.9825 10.5056 27.9398 10.5911 27.9398 10.6446C27.9398 10.6981 27.922 11.0397 27.7725 11.2603C27.719 11.3387 27.6585 11.4704 27.6158 11.5593C27.5268 11.7158 27.4484 11.8409 27.4306 11.9113C27.3952 12.0359 27.3703 12.3776 27.3703 12.3776C27.3703 12.3776 27.4487 12.2814 27.4771 12.2459C27.4341 12.3349 27.3879 12.4308 27.3203 12.5022C27.363 12.4665 27.4876 12.3776 27.6977 12.1924C27.9896 11.947 28.4453 11.534 29.0008 11.2068C28.8332 11.2674 28.691 11.2674 28.5772 11.2852C28.6661 11.1963 29.467 10.2564 29.8871 10.1675C29.9126 10.1351 29.9253 10.0945 29.9228 10.0534L29.563 10.018L28.8332 10.1745L28.7267 9.61133L28.2388 9.90677V9.90748Z" fill="#B18E3E"/>
71 +<path fill-rule="evenodd" clip-rule="evenodd" d="M29.4024 13.1106C29.4024 13.1106 29.3062 13.2066 29.2172 13.4452C29.1488 13.3737 29.0901 13.2935 29.0426 13.2066C28.911 12.986 28.7082 12.7046 28.2347 12.8649C28.2276 12.7154 28.2169 12.637 28.2347 12.5303C28.3131 12.5127 28.5515 12.3205 28.7899 12.0391C28.9575 11.8469 29.114 11.6261 29.2208 11.345C29.2912 11.2915 29.4129 11.2025 29.5728 11.0993C29.8006 10.9427 30.0747 10.729 30.1174 10.4905C30.0106 10.5333 29.7828 10.64 29.4409 10.6224C29.5728 10.5619 29.7755 10.4978 29.7506 10.2343C29.8041 10.1986 29.8468 10.1737 29.8468 10.1737C29.8067 10.1604 29.7645 10.1543 29.7222 10.1559C29.715 10.131 29.7044 10.0956 29.6439 10.1132C29.5833 10.1308 29.5735 10.131 29.5655 10.1559C29.5406 10.1632 29.4587 10.1559 29.3982 10.1989C29.3376 10.2418 29.1703 10.3838 29.1062 10.4086C29.1311 10.3659 29.1665 10.3021 29.1665 10.3021C29.1665 10.3021 28.9922 10.3197 28.8676 10.3725C28.6397 10.4509 28.3764 10.5933 28.1094 10.732C28.1342 10.6893 28.145 10.6616 28.1626 10.6536C28.1802 10.6457 28.2232 10.636 28.2232 10.6288C28.2232 10.6215 28.2056 10.5584 28.2161 10.5328C28.296 10.3636 28.3902 10.2017 28.4977 10.0487C28.6224 9.88111 28.6472 9.64269 28.6472 9.64269L29.1919 9.3686L30.7226 9.0166L31.716 9.07715L31.5914 9.76425L31.0047 10.9639L30.5027 12.0567L29.9294 12.7262L29.4026 13.1106H29.4024Z" fill="#543E26"/>
72 +<path fill-rule="evenodd" clip-rule="evenodd" d="M31.8832 10.1373C31.8832 10.1373 31.285 10.8777 31.1177 10.9918C31.2245 10.7639 31.8832 9.40752 32.1216 9.03017C32.0683 8.98746 31.997 8.98746 32.1643 8.32617C32.0221 8.66057 31.9721 8.83516 31.8548 8.9241C31.7375 9.01304 31.7229 8.98465 31.6436 8.98465C31.6586 8.95755 31.6647 8.92646 31.6612 8.89571C31.6612 8.89571 31.1592 8.83516 30.8164 8.83516C30.4735 8.83516 29.7949 9.02032 29.4173 9.1698C29.1183 9.29441 28.951 9.29441 28.8443 9.37255C28.7375 9.46149 28.6769 9.5577 28.6234 9.58258C28.5807 9.60745 28.378 9.67152 28.3315 9.7391C28.2888 9.8095 28.2177 9.88858 28.2177 9.90642C28.2177 9.92425 28.1999 9.94936 28.2534 9.93129C28.271 9.92425 28.4029 9.85291 28.5523 9.76397C28.7551 9.65016 29.0008 9.51851 29.1789 9.44013C29.6879 9.23715 29.8482 9.27282 30.0758 9.23011C30.3142 9.1874 30.6561 9.08766 30.8837 9.08766C31.1116 9.08062 31.5425 9.08766 31.6422 9.1055C31.5995 9.14117 31.5638 9.18388 31.5816 9.33336C31.5816 9.37607 31.546 9.4223 31.5112 9.52555C31.4047 9.81748 31.2017 10.3016 31.0888 10.5473C30.9323 10.8817 30.7544 11.1631 30.6664 11.3374C30.5784 11.5118 30.3848 11.971 30.1931 12.2167C30.0014 12.4624 29.9012 12.6119 29.8411 12.6654C29.781 12.7189 29.3497 13.0355 29.3819 13.1495C29.4603 13.1246 29.9552 12.9383 30.3144 12.5337C30.6737 12.1292 30.7453 11.8823 31.0264 11.6615C31.3076 11.4407 31.5284 11.0706 31.66 10.7646C31.7703 10.4797 31.7454 10.3908 31.8841 10.138L31.8832 10.1373Z" fill="#806031"/>
73 +<path fill-rule="evenodd" clip-rule="evenodd" d="M18.9906 15.6639C18.9906 15.6639 18.9122 15.9877 18.7341 16.148C18.5597 16.3048 18.25 16.44 18.2145 16.7035C18.1718 16.9668 18.5243 17.0987 18.5243 17.0987C18.5243 17.0987 18.3319 17.4155 18.3319 17.6539C18.3319 17.8996 18.3248 17.9458 18.3497 18.1807C18.3215 18.1989 18.2975 18.2229 18.2793 18.2511C18.2793 18.2511 18.2969 18.479 18.4715 18.6212C18.6461 18.7634 18.7953 18.849 18.8843 18.8134C18.8978 18.8424 18.9098 18.8722 18.9199 18.9025C18.9199 18.9025 19.0518 18.5679 19.1408 18.276C19.2297 17.977 19.3081 18.0195 19.3435 17.6173C19.3789 17.2151 19.7659 16.5244 19.7659 16.5244L20.0299 15.9342L19.5993 15.5996L18.9906 15.6637V15.6639Z" fill="#B6903C"/>
74 +<path fill-rule="evenodd" clip-rule="evenodd" d="M19.7936 16.2432C19.7048 16.3343 19.6228 16.4319 19.5484 16.5351C19.4346 16.6918 19.3456 16.8341 19.1783 16.8948C19.011 16.9556 18.9042 16.9551 18.9148 17.1227C18.9253 17.2902 19.0821 17.3611 19.171 17.4465C19.2672 17.5355 19.3456 17.685 19.3029 17.8525C19.3562 17.8276 19.4524 17.799 19.5413 17.6068C19.6303 17.4146 20.2524 16.2434 20.2524 16.2434H19.7936V16.2432Z" fill="#685026"/>
75 +<path fill-rule="evenodd" clip-rule="evenodd" d="M22.2478 13.5418C22.2478 13.5418 22.301 13.3996 22.2478 13.2963C22.1943 13.1895 21.8704 13.1539 21.7101 13.0328C21.5428 12.9082 21.3398 12.8216 21.1725 12.8763C21.1974 12.8157 21.2971 12.6838 21.2152 12.6554C21.1368 12.6306 20.8452 12.7622 20.7668 12.8228C20.6884 12.8833 20.5103 12.9544 20.4749 12.9973C20.4394 13.0403 20.3786 13.122 20.343 13.0863C20.3073 13.0614 20.2897 12.9973 20.2292 13.0328C20.1686 13.0682 19.8772 13.3069 19.8234 13.4458C19.7697 13.5847 19.6488 13.8945 19.2858 14.2467C18.9228 14.5989 18.766 14.827 18.8728 14.9587C18.9796 15.0903 19.0295 14.9944 19.0474 15.1082C19.0611 15.2199 19.0551 15.3332 19.0295 15.4428C18.9868 15.628 18.9157 15.8023 19.0117 15.838C19.2574 15.9164 19.4961 15.7676 19.5493 15.8131C19.6561 15.9091 19.4888 16.2545 19.7415 16.3221C19.998 16.3925 20.2507 16.2616 20.2507 16.2616L21.1833 15.7596L22.0804 15.2863L22.5394 14.3784L22.2933 13.6201L22.2464 13.5418H22.2478Z" fill="#D4B968"/>
76 +<path fill-rule="evenodd" clip-rule="evenodd" d="M21.3649 15.7099C21.3649 15.7099 21.2081 15.4715 21.4005 15.2612C21.593 15.051 21.8668 14.9623 21.9736 14.8306C21.9533 14.8056 21.926 14.787 21.8952 14.7774C21.9661 14.6505 22.0742 14.5485 22.205 14.4852C22.1517 14.4319 22.0804 14.3892 22.0022 14.3892C21.8276 14.3892 21.7206 14.496 21.5606 14.496C21.4041 14.496 21.3862 14.4176 21.3862 14.4176C21.3862 14.4176 21.6498 14.3927 21.6247 14.2752C21.5998 14.1506 21.5543 14.1506 21.5543 14.1506C21.5543 14.1506 22.0632 13.9394 22.1522 13.8267C22.2411 13.7141 22.2306 13.581 22.2484 13.5278C22.3087 13.5278 22.6612 13.3426 22.8036 13.421C22.9461 13.4994 22.8463 13.7129 22.8463 13.7129C22.8463 13.7129 23.2774 13.3888 23.4971 13.0711C23.6893 13.0889 23.7787 12.9395 23.9195 12.9395C24.0941 12.9395 24.3681 13.1779 24.4214 13.6869C24.4571 13.9788 24.5104 14.1461 24.4571 14.6624C24.4322 14.9543 24.4392 15.5776 24.5275 15.8869C24.5878 16.1326 24.7302 16.1077 24.7302 16.1077C24.7084 16.1826 24.6651 16.2494 24.6056 16.2999C24.5094 16.3888 24.4989 16.624 24.5094 16.7129C24.5236 16.7779 24.5415 16.8421 24.5629 16.9051C24.5629 16.9051 24.4491 17.0367 24.4205 17.1259C24.3956 17.2148 24.2783 17.2754 24.1926 17.2754C24.107 17.2754 24.1499 17.2681 24.0361 17.2754C23.9223 17.2827 23.8866 17.3003 23.8153 17.2754C23.7439 17.2505 23.6907 17.2219 23.7193 16.9938C23.7442 16.7659 22.84 16.2356 22.84 16.2356L21.3616 15.7088L21.3649 15.7099Z" fill="#CCA849"/>
77 +<path fill-rule="evenodd" clip-rule="evenodd" d="M19.6691 17.9598C19.6691 17.9598 19.993 18.3906 21.3245 18.3906C21.9581 18.3906 22.1789 18.3301 22.3101 18.2944C22.4525 18.2587 22.9864 18.049 23.524 17.4151C24.0081 16.8421 23.9014 16.6072 23.9014 16.6072L23.6198 16.5645L22.7046 16.6891L19.9965 17.8424L19.668 17.9598H19.6691Z" fill="#585136"/>
78 +<path fill-rule="evenodd" clip-rule="evenodd" d="M20.6612 18.0659C20.6612 18.0659 19.5078 18.3224 19.5078 17.5926C19.5078 16.8806 20.2198 16.133 20.3979 16.0013C20.5831 15.8694 21.0245 15.7197 21.0245 15.7197H22.0889L22.2917 16.2573L22.2027 17.4178L20.6612 18.0657V18.0659Z" fill="#252211"/>
79 +<path fill-rule="evenodd" clip-rule="evenodd" d="M21.7267 15.9377C21.7267 15.9377 21.5062 15.7347 21.0042 16.0081C20.5023 16.2815 20.0963 16.8529 20.0714 17.3718C20.0465 17.8308 20.4487 18.1727 21.0753 18.1905C21.5416 18.2081 21.823 18.1549 21.9654 18.1201C21.9297 18.0774 21.7446 17.846 21.7446 17.846L21.727 15.938L21.7267 15.9377Z" fill="#C3B378"/>
80 +<path fill-rule="evenodd" clip-rule="evenodd" d="M21.5071 16.0507C21.5071 16.0507 21.4539 16.008 21.2959 16.0934C21.1643 16.1638 20.9721 16.3499 20.8226 16.4816C20.7264 16.5599 20.6659 16.5954 20.6114 16.6559C20.3906 16.9195 20.2054 17.3503 20.3124 17.5638C20.4195 17.7774 20.7717 18.0231 21.6688 17.8558L21.5046 16.051L21.5071 16.0507Z" fill="#E6D89C"/>
81 +<path fill-rule="evenodd" clip-rule="evenodd" d="M21.2163 16.4925C21.2163 16.4925 21.0738 16.7133 21.0738 17.0658C21.0738 17.4253 21.2768 17.9983 22.0245 18.041C22.5975 18.0767 22.9819 17.2152 23.3984 16.8806C23.7152 16.6243 23.9074 16.6171 23.9074 16.6171C23.9074 16.6171 23.5836 16.2651 22.7186 15.8091C21.8642 15.3499 20.9065 15.2893 20.3867 15.9943C20.6324 15.9764 21.4263 15.7734 21.4263 15.7734L21.8144 15.8981L21.2163 16.4927V16.4925Z" fill="#252211"/>
82 +<path fill-rule="evenodd" clip-rule="evenodd" d="M22.3347 16.9589C22.3098 16.9056 22.292 16.8343 22.3952 16.8167C22.4985 16.7991 22.5447 16.8094 22.5804 16.8871C22.616 16.9648 22.6508 17.0296 22.598 17.0617C22.5447 17.0901 22.4058 17.0617 22.3344 16.9584L22.3347 16.9589ZM22.1674 16.457C22.1674 16.457 22.1317 16.4818 22.1495 16.4321C22.1566 16.3718 22.203 16.2648 22.3168 16.2899C22.4307 16.315 22.406 16.4394 22.3872 16.475C22.3685 16.5107 22.2734 16.571 22.2021 16.5454C22.193 16.5431 22.1847 16.5387 22.1777 16.5326C22.1706 16.5264 22.1652 16.5187 22.1617 16.51C22.1582 16.5013 22.1568 16.492 22.1577 16.4827C22.1585 16.4734 22.1615 16.4644 22.1664 16.4565L22.1674 16.457Z" fill="#6F674D"/>
83 +<path fill-rule="evenodd" clip-rule="evenodd" d="M12.5312 16.685C12.5312 16.685 12.8129 16.8962 13.14 16.888C13.4638 16.8807 13.8803 16.5463 14.0725 16.3326C14.1864 16.2079 14.2837 16.0763 14.3893 15.973C14.4785 15.8841 14.5388 15.8414 14.5815 15.7809C14.6421 15.7105 14.7061 15.5781 14.7383 15.5352C14.6599 15.5957 14.5461 15.7027 14.4285 15.7738C14.3147 15.8442 14.069 15.9766 13.9693 16.0122C13.8733 16.0479 12.8764 16.5754 12.8764 16.5754L12.5312 16.685Z" fill="#AC924C"/>
84 +<path fill-rule="evenodd" clip-rule="evenodd" d="M12.9609 14.0541C12.9609 14.0541 13.1175 13.9473 13.4202 13.8795C13.7121 13.8091 14.2995 13.7549 14.2995 13.7549L14.7836 13.9661L14.9758 14.6959L14.6238 15.4543L14.1753 15.7359L13.6661 14.9172L12.9621 14.0555L12.9609 14.0541Z" fill="#9F8E57"/>
85 +<path fill-rule="evenodd" clip-rule="evenodd" d="M12.3277 14.7059L12.1602 14.831C12.1602 14.831 12.2031 14.7526 12.2385 14.5142C12.274 14.2757 12.4594 13.6954 12.7299 13.3608C13.0005 13.0261 12.9935 13.044 12.9935 13.044C12.9686 13.0394 12.943 13.0402 12.9184 13.0463C12.8939 13.0524 12.8709 13.0637 12.851 13.0794C12.8867 13.0006 13.1145 12.719 13.3424 12.5782C13.5703 12.4374 13.6592 12.393 13.8976 12.5078C14.136 12.6225 14.1966 12.6821 14.3712 12.6751C14.5458 12.668 14.695 12.4829 14.695 12.4829C14.695 12.4829 14.7307 12.5967 14.599 12.8602C14.4674 13.1238 13.9476 13.6611 13.9476 13.6611L12.8653 14.4015L12.3277 14.7066V14.7059Z" fill="#EAC970"/>
86 +<path fill-rule="evenodd" clip-rule="evenodd" d="M13.1298 13.9651C13.1298 13.9651 13.9132 14.0719 14.1516 13.8513C14.1586 13.8762 14.1873 13.8762 14.1873 13.894C14.1853 13.9074 14.1791 13.9199 14.1694 13.9294C14.1954 13.9253 14.2215 13.9229 14.2478 13.9224C14.2791 13.9317 14.3114 13.9377 14.344 13.9402C14.3703 13.9397 14.3965 13.9372 14.4224 13.933C14.4199 13.9507 14.4139 13.9677 14.4047 13.983C14.3955 13.9983 14.3833 14.0116 14.3689 14.0221C14.4046 14.0221 14.4393 14.0292 14.4393 14.0576C14.4393 14.086 14.4463 14.1716 14.4036 14.1894C14.3682 14.1992 14.3306 14.1967 14.2968 14.1822C14.2997 14.2496 14.318 14.3154 14.3503 14.3746C14.4207 14.5063 14.5709 14.6562 14.7727 14.613C14.7727 14.613 14.8793 14.8693 14.4308 15.4388C14.3705 15.5172 14.3062 15.624 14.2281 15.7129C14.1972 15.7802 14.1736 15.8506 14.1577 15.9229C14.1577 15.9229 14.9161 15.631 15.1332 14.9653C15.354 14.296 15.3967 13.6375 15.354 13.0217C15.3467 12.8472 15.3183 12.7228 15.2756 12.6336C15.1689 12.4128 14.8697 12.4485 14.7488 12.5731C14.5742 12.7477 14.2823 13.1818 13.8766 13.4808C13.4635 13.7797 13.4459 13.8328 13.1289 13.9651H13.1298Z" fill="#D7BC6B"/>
87 +<path fill-rule="evenodd" clip-rule="evenodd" d="M12.1875 14.9263C12.1875 14.9263 12.038 15.0153 11.9596 15.3487C11.8812 15.6904 12.03 16.107 12.1161 16.2386C12.2022 16.3703 12.3977 16.73 12.8032 16.7478C12.9036 16.7473 13.0028 16.7267 13.0951 16.6873C13.2367 16.6224 13.3695 16.5398 13.4903 16.4416C13.6649 16.3099 13.8071 16.1961 13.7893 16.1853C13.7466 16.1675 12.7143 15.3131 12.7143 15.3131L12.3261 14.8799L12.1872 14.9268L12.1875 14.9263Z" fill="#585136"/>
88 +<path fill-rule="evenodd" clip-rule="evenodd" d="M13.1647 16.3438C13.1647 16.3438 13.3747 16.3262 13.4993 16.2478C13.624 16.1694 12.7695 15.3223 12.7695 15.3223L12.8301 16.2375L13.1647 16.3438Z" fill="#453A25"/>
89 +<path fill-rule="evenodd" clip-rule="evenodd" d="M12.2548 14.8621C12.2548 14.8621 12.1481 15.0651 12.1481 15.1186C12.1302 15.2929 12.1837 15.8411 12.2264 16.0155C12.2691 16.2006 12.5005 16.4817 12.7997 16.4817C12.9846 16.4817 13.2411 16.3679 13.2411 16.3395C13.2411 16.3039 12.9776 16.2691 12.9065 16.1366C12.8638 16.0662 12.846 15.8911 12.8361 15.7142C12.8291 15.6003 12.8291 15.4757 12.8718 15.4326C12.968 15.3258 12.9856 15.0195 12.9856 15.0195L13.3273 14.3848H12.8779L12.3402 14.7194L12.2548 14.8621Z" fill="#84754B"/>
90 +<path fill-rule="evenodd" clip-rule="evenodd" d="M12.125 15.0585C12.125 15.0585 12.477 14.5922 12.7943 14.4852C13.1115 14.3782 13.2535 14.4425 13.2535 14.4425L13.0684 14.9161L12.8048 15.208L12.8227 15.3575C12.8227 15.3575 12.7797 15.7527 13.0433 16.0268C13.3068 16.3008 13.5025 16.2903 13.6165 16.2903C13.7306 16.2903 14.0579 16.1941 14.2253 15.7989C14.3747 15.4288 14.4994 14.9541 14.2004 14.4782C13.9082 14.0046 13.3922 13.9863 13.2925 13.9863C13.1927 13.9863 12.4097 14.0255 12.125 15.0578V15.0585Z" fill="#252211"/>
91 +<path fill-rule="evenodd" clip-rule="evenodd" d="M21.1615 16.6427C21.0298 16.5821 21.1545 16.2121 21.2861 16.098C21.4177 15.984 21.5851 15.8526 21.8772 15.8345C21.9838 15.8275 22.087 15.895 22.0694 15.9664C22.0445 16.098 21.8594 16.2832 21.6921 16.4148C21.4607 16.5965 21.311 16.7103 21.1615 16.6427Z" fill="#F7F7E7"/>
92 +<path fill-rule="evenodd" clip-rule="evenodd" d="M14.0443 14.6235C14.1405 14.6165 14.2651 14.6939 14.29 14.7981C14.3148 14.9119 14.2294 15.1398 14.0443 15.1398C13.8948 15.1398 13.8164 14.9546 13.8164 14.9013C13.8181 14.8575 13.8303 14.8148 13.8521 14.7767C13.8591 14.7659 13.877 14.6413 14.0443 14.6235Z" fill="#F8F6DE"/>
93 +<path fill-rule="evenodd" clip-rule="evenodd" d="M12.6567 14.7061C12.6567 14.7061 12.411 14.8199 12.2972 15.0581C12.2158 15.2339 12.1912 15.4308 12.2268 15.6213C12.2446 15.7102 12.3335 15.9308 12.3941 16.0092C12.4546 16.0875 12.5365 16.141 12.5971 16.1338C12.6576 16.1265 12.782 15.9664 12.782 15.8705C12.782 15.7745 12.7893 15.3685 12.9066 15.1477C13.0099 14.9271 12.6574 14.7063 12.6574 14.7063L12.6567 14.7061Z" fill="#D4C38B"/>
94 +<path fill-rule="evenodd" clip-rule="evenodd" d="M12.6927 14.6881C12.65 14.7129 12.5789 14.7486 12.5965 14.7948C12.6143 14.8375 12.7638 14.8652 12.8173 14.9694C12.8779 15.0762 12.8779 15.19 12.86 15.2435C12.9065 15.2214 12.9487 15.1912 12.9846 15.1543C13.063 15.0654 13.159 14.9445 13.2409 14.9445C13.2944 14.9445 13.3477 14.9694 13.3976 14.9694C13.476 14.9694 13.5542 14.9445 13.565 14.8626C13.5826 14.7559 13.4155 14.6597 13.3193 14.6775C13.3371 14.6071 13.362 14.5031 13.2836 14.4318C13.2052 14.3605 12.9598 14.4853 12.9063 14.521C12.8528 14.5566 12.6927 14.6883 12.6927 14.6883V14.6881Z" fill="#E2D59D"/>
95 +<path fill-rule="evenodd" clip-rule="evenodd" d="M18.3477 22.1673L18.8745 22.0117L19.024 22.1185C19.024 22.1185 19.1305 22.3464 19.2981 22.3747C19.2446 22.4886 19.1056 22.5859 19.1129 22.6667C19.1202 22.7474 19.1913 22.8091 19.1913 22.8091C19.1913 22.8091 18.7177 23.5922 19.6505 24.3814C19.4297 24.4703 19.1486 24.5926 18.9991 24.663C19.1056 24.6879 19.3335 24.7334 19.4297 24.8197C19.5259 24.9061 19.5259 24.9336 19.6149 24.9871C19.7038 25.0406 19.7571 25.1117 19.7395 25.1436C19.6789 25.1079 19.4759 25.0014 19.4405 25.1009C19.4051 25.2004 18.5612 25.1614 18.5612 25.1614L17.1372 25.4355C17.1372 25.4355 17.1905 25.2931 17.041 25.1614C16.8667 25.0049 16.6531 25.1685 16.4253 24.9941C16.1263 24.7662 16.1155 24.5027 16.0195 24.4032C16.1155 24.3427 16.3115 24.2537 16.7777 24.192C16.7599 24.1563 16.6994 24.0496 16.735 23.9536C16.7777 23.829 16.9556 23.7506 16.9023 23.6016C16.9807 23.5838 17.0162 23.5838 17.2121 23.3381C17.3973 23.0924 17.5111 23.0391 17.6535 23.0213C17.796 23.0034 17.8814 23.0213 18.1449 22.7756C18.3298 22.6012 18.2695 22.4517 18.2695 22.4517C18.2695 22.4517 18.3904 22.4125 18.3479 22.1668L18.3477 22.1673Z" fill="#CBAC5A"/>
96 +<path fill-rule="evenodd" clip-rule="evenodd" d="M16.7928 22.2464C16.7999 22.2107 16.8285 22.1929 17.0207 22.2107C17.2129 22.2286 18.4303 22.0969 18.7614 22.0791C19.0961 22.0542 20.2743 22.0718 20.8476 22.1929C21.4209 22.314 22.001 22.4564 22.2821 22.5275C22.5637 22.6059 22.6524 22.6341 22.6416 22.6697C22.6346 22.7054 22.5712 22.7401 22.5349 22.7303C22.4994 22.7232 21.5666 22.4383 21.2785 22.3783C20.9903 22.3182 19.9932 22.1575 19.4481 22.1671C18.9391 22.1743 18.7361 22.16 18.3055 22.2098C17.8746 22.2633 17.1627 22.3344 16.9491 22.306C16.7379 22.2811 16.7816 22.2811 16.7923 22.2455L16.7928 22.2464Z" fill="#D6BC6F"/>
97 +<path fill-rule="evenodd" clip-rule="evenodd" d="M19.6571 25.0369C19.6571 25.0369 20.3869 25.4321 20.6504 25.9162C20.8426 26.2757 20.5366 26.4538 20.5366 26.4538C20.5366 26.4538 20.9496 26.4538 20.8961 26.6817C20.8712 26.8239 20.1841 27.2082 19.7249 27.4112C19.2586 27.6142 19.2764 27.6037 19.0486 27.6391C18.8278 27.6748 18.2225 27.5687 18.0979 27.7459C17.9733 27.923 18.0275 28.1056 18.0623 28.134C18.0979 28.1589 18.3863 28.1945 18.3863 28.1945C18.3863 28.1945 18.3258 28.3619 17.7279 28.3797C17.1299 28.3975 16.9802 28.44 16.9446 28.5043C16.9089 28.5646 17.0584 28.5292 17.3327 28.5747C17.6068 28.6174 17.9912 28.6451 17.9912 28.6451C17.9912 28.6451 17.8666 28.7519 17.5427 28.8373C17.1724 28.9333 16.5921 29.0225 16.4177 29.1292C16.5067 29.1898 16.6385 29.2787 16.6993 29.2857C16.5498 29.3214 16.3396 29.3998 16.3041 29.4282C16.3574 29.4639 16.4288 29.5066 16.4288 29.5066C16.4288 29.5066 16.1296 29.8661 15.9552 29.9553C15.7808 30.0444 14.7769 30.5105 14.4315 30.4215C13.57 30.1937 13.4633 29.2503 13.2532 29.1792C12.9364 29.0724 12.787 29.2857 12.5056 29.1363C12.6302 29.0473 12.698 28.9941 12.8297 28.9335C12.6872 28.8631 11.9504 28.3959 11.9504 28.3959C11.8733 28.2279 11.7878 28.064 11.6941 27.9047C11.5517 27.659 11.3421 27.3314 11.1849 27.043C10.8432 26.4094 10.8254 26.1175 10.5156 25.758C10.5691 25.6876 10.754 25.6975 10.754 25.6975L13.3495 26.5519L17.9515 26.6852L19.1483 24.9766L19.6573 25.0371L19.6571 25.0369Z" fill="#DFC677"/>
98 +<path fill-rule="evenodd" clip-rule="evenodd" d="M12.8398 27.6423C12.8676 27.6732 12.9 27.6996 12.9358 27.7207C13.025 27.7812 13.1566 27.8525 13.2456 27.9591C13.2813 27.9058 13.3702 27.8096 13.5272 27.9591C13.6842 28.1086 13.8792 28.002 14.0005 28.0375C14.1251 28.0804 14.1322 28.098 14.1322 28.098C14.1322 28.098 14.2026 28.0375 14.36 27.9734C14.4562 27.9377 14.57 27.9128 14.6946 27.8774C14.8085 27.8525 14.9331 27.8169 15.0187 27.8169C15.0971 27.8701 15.3782 28.1689 16.5067 27.7279C17.5712 27.3149 17.8167 27.2687 17.9948 27.3325C18.0126 27.2898 18.0304 27.2079 18.3045 27.2187C18.3045 27.1049 18.0767 26.7167 18.0767 26.7167L16.82 26.2861H16.1327L14.0716 26.6635L12.9295 27.3151L12.8405 27.6437L12.8398 27.6423Z" fill="#C4A859"/>
99 +<path fill-rule="evenodd" clip-rule="evenodd" d="M12.1523 26.9196C12.1523 26.9196 12.1772 27.1118 12.4621 27.3147C12.7437 27.5175 12.8322 27.6386 12.8322 27.6386C12.8322 27.6386 12.8857 27.5682 12.9284 27.4964C12.9711 27.418 13.0068 27.3291 13.0779 27.3042C13.2203 27.2436 13.5442 27.3575 13.6155 27.3396C13.676 27.322 13.6582 27.1974 13.7223 27.1974C13.8717 27.1901 13.9677 27.2934 14.0212 27.2934C14.0747 27.2934 14.2061 27.2864 14.224 27.258C14.2418 27.2296 14.2489 26.9339 14.4518 26.7914C14.6727 26.6349 14.9432 26.7025 15.015 26.7382C15.015 26.7914 15.0221 26.9233 15.1645 26.9304C15.307 26.9374 15.321 26.9125 15.4461 26.9552C15.5712 26.9979 15.7202 26.9482 15.7878 27.158C15.8483 27.1404 15.9908 27.1226 15.9551 26.9196C16.0255 26.8663 16.087 26.8306 16.2367 26.6206C16.2724 26.5673 16.3327 26.5068 16.3792 26.4284C16.5038 26.4284 16.6533 26.4035 16.8525 26.5779C16.7919 26.6206 16.7563 26.6483 16.7387 26.6917C16.7908 26.7433 16.8384 26.7993 16.8809 26.859C16.9344 26.9294 16.9701 27.0158 17.0376 27.0336C17.1871 27.0763 17.4328 27.0158 17.7069 27.0336C17.9704 27.0515 18.191 27.1474 18.2872 27.208C18.3229 27.1904 18.3229 27.1831 18.4118 27.2009C18.5008 27.2188 18.5684 27.2258 18.4724 27.112C18.5257 27.1369 18.5862 27.1904 18.6397 27.1369C18.6932 27.0834 18.7357 27.0052 18.8852 26.9874C19.0346 26.9696 19.0882 26.9944 19.1487 26.8379C19.2271 26.6457 18.9565 26.6457 18.9565 26.6457C18.9565 26.6457 19.0811 26.5317 19.22 26.3822C19.3874 26.2257 19.5795 26.0227 19.6258 25.7735C19.7042 25.3142 19.2557 25.2539 19.2557 25.2539L17.0806 25.9232L14.4213 25.7913L12.1538 26.9198L12.1523 26.9196Z" fill="#927D49"/>
100 +<path fill-rule="evenodd" clip-rule="evenodd" d="M10.2003 20.6369C10.2003 20.6369 10.1299 20.7259 10.0865 20.9359C10.0431 21.1459 10.0616 21.121 10.0259 21.2705C9.99026 21.42 9.55213 22.908 9.7164 23.41C9.88067 23.9119 10.1651 24.0971 10.343 24.5028C10.3786 24.5918 10.4134 24.6453 10.4319 24.7236C10.4924 24.9869 10.4392 25.1899 10.5103 25.4535C10.5352 25.5424 10.5995 25.6456 10.6954 25.7524C10.9066 25.973 11.2509 26.183 11.3994 26.3325C11.6092 26.5533 11.9084 27.002 12.2893 27.0445C12.4923 27.0694 12.7807 26.984 13.0191 26.8417C13.2303 26.7099 13.3608 26.5249 13.5823 26.4193C13.7388 26.341 13.9061 26.3126 14.0556 26.2769C14.3654 26.2164 14.6467 26.2065 14.8141 26.2412C15.0703 26.2947 15.6755 26.4799 16.0109 26.4799C16.2729 26.4757 16.5335 26.4398 16.7869 26.3731C17.2959 26.2236 17.9117 25.9671 18.3176 25.8533C18.5561 25.7829 18.7483 25.7644 18.9442 25.7217C19.2788 25.6433 19.56 25.5365 19.7202 25.3335C19.6135 25.2089 19.4818 25.0167 18.7696 25.0238C17.9616 25.0416 17.0288 25.4901 16.5696 25.5614C16.1104 25.6327 15.9111 25.693 15.3984 25.5079C14.8957 25.3209 14.8791 25.1972 14.8791 25.1972C14.8791 25.1972 14.3513 24.8281 14.1305 23.8871C13.9097 22.946 14.1305 22.2603 14.7038 21.6087C14.8533 21.4414 14.8176 21.2919 14.8176 21.2919C14.8176 21.2919 15.1949 20.7829 15.0917 20.3063C14.9779 19.8327 14.248 19.9289 14.248 19.9289L10.2005 20.6369H10.2003Z" fill="#6E6342"/>
101 +<path fill-rule="evenodd" clip-rule="evenodd" d="M10.8088 22.2207C10.7774 22.2797 10.7627 22.3461 10.7661 22.4129C10.7732 22.5089 10.8018 22.6335 11.09 22.9148C11.3356 23.1603 11.2821 23.4344 11.2821 23.4344C11.2821 23.4344 11.4058 23.4593 11.7414 23.3023C12.0049 23.1777 12.0934 23.3985 12.0934 23.3985C12.1701 23.3583 12.2532 23.3317 12.3391 23.3201C12.4169 23.313 12.4921 23.2889 12.5597 23.2497C12.5597 23.2497 12.8694 23.5665 13.14 23.716C13.3857 23.8479 13.5281 23.9368 13.6492 23.8479C13.763 23.7695 13.763 23.6092 13.7558 23.5381C13.7275 23.4725 13.6918 23.4104 13.6492 23.353C13.5708 23.2392 13.4462 23.1073 13.438 23.001C13.4202 22.7555 13.6232 22.4633 13.5802 22.3922C13.5373 22.3211 13.3775 22.3033 12.9823 22.4457C12.573 22.5809 10.8072 22.2214 10.8072 22.2214L10.8088 22.2207Z" fill="#39331F"/>
102 +<path fill-rule="evenodd" clip-rule="evenodd" d="M11.7405 23.8116C11.7405 23.8116 11.5378 23.6194 11.6089 22.6866C11.6949 22.6854 11.7809 22.6937 11.8651 22.7115C11.8651 22.7115 11.9757 23.4343 11.7405 23.8116Z" fill="#292311"/>
103 +<path fill-rule="evenodd" clip-rule="evenodd" d="M10.2956 19.9245C10.3239 19.9036 10.3501 19.88 10.374 19.8541C10.3036 19.9858 9.97854 20.5126 10.2421 21.3421C10.5056 22.1679 11.1676 22.7837 11.9828 22.8123C12.7981 22.841 13.2266 22.442 13.7165 21.8441C13.9087 21.6057 14.1296 21.3065 14.3253 21.1037C14.6172 20.7867 14.8451 20.6978 14.8451 20.3917C14.8451 19.7652 14.2042 19.4838 13.2608 19.2027C12.3175 18.9216 11.4666 18.9563 11.0252 19.1487C10.5945 19.3585 10.4094 19.5793 10.2953 19.9248L10.2956 19.9245Z" fill="#252211"/>
104 +<path fill-rule="evenodd" clip-rule="evenodd" d="M13.3249 24.0931L13.3953 24.0574C13.3953 24.0574 13.4129 23.7758 13.527 23.7834C13.6408 23.8012 13.6943 23.9509 13.6835 24.0042C13.6765 24.0574 13.6481 24.1466 13.534 24.1358C13.3845 24.1393 13.3242 24.0931 13.3242 24.0931H13.3249Z" fill="#3F3824"/>
105 +<path fill-rule="evenodd" clip-rule="evenodd" d="M13.0078 22.8969C13.0078 22.8969 13.0782 22.872 13.1643 22.9575C13.2347 22.9575 13.5417 22.9218 13.6379 22.9823C13.7341 23.0429 13.7625 23.0962 13.7625 23.0962C13.7625 23.0962 13.403 23.1745 13.207 23.0962C13.0078 23.0286 13.0078 22.8969 13.0078 22.8969Z" fill="#2D2815"/>
106 +<path fill-rule="evenodd" clip-rule="evenodd" d="M14.5927 22.95C14.5927 22.9321 14.4005 22.8005 14.1976 22.7576C14.1619 22.7505 14.1546 22.7754 14.1272 22.7754C14.1093 22.7683 14.1023 22.7148 14.1023 22.7148L13.9868 22.7756C13.9868 22.7756 13.969 22.8005 14.0295 22.846C14.0828 22.8887 14.172 22.9244 14.1969 22.9955C14.2217 23.0666 14.2217 23.0915 14.2325 23.1023C14.2396 23.1093 14.3642 23.1023 14.4247 23.0666C14.4853 23.0309 14.5993 22.9727 14.592 22.9493L14.5927 22.95Z" fill="#82764F"/>
107 +<path fill-rule="evenodd" clip-rule="evenodd" d="M12.793 23.6732C12.793 23.6732 12.8284 23.4278 13.0671 23.417C13.3125 23.3991 13.359 23.6376 13.359 23.6376L13.2165 23.78C13.2165 23.7765 13.1098 23.627 12.7941 23.6732H12.793Z" fill="#2D2816"/>
108 +<path fill-rule="evenodd" clip-rule="evenodd" d="M14.3435 22.6157C14.3435 22.6157 14.2116 22.7582 13.92 22.8009C13.8951 22.7652 13.8416 22.6941 13.92 22.5803C13.9983 22.4665 14.0873 22.4308 14.1762 22.4663C14.2155 22.4726 14.2521 22.4901 14.2817 22.5166C14.3113 22.543 14.3328 22.5775 14.3435 22.6157Z" fill="#574F35"/>
109 +<path fill-rule="evenodd" clip-rule="evenodd" d="M14.8806 22.7904C14.8879 22.7548 14.863 22.7477 14.8806 22.7299C14.8982 22.712 14.9947 22.6766 15.0125 22.6942C15.0195 22.7015 15.0125 22.7299 15.0125 22.7646C15.0125 22.7993 15.0125 22.835 14.9947 22.8606C14.9698 22.8963 14.8987 22.9141 14.863 22.9035C14.8274 22.893 14.8203 22.843 14.8203 22.8331C14.8379 22.8261 14.8806 22.8083 14.8806 22.7904ZM15.4884 22.406C15.4884 22.3882 15.549 22.3525 15.5846 22.3525C15.6379 22.3525 15.6379 22.3952 15.6452 22.406C15.6628 22.4131 15.6628 22.3988 15.6806 22.4309C15.6984 22.4631 15.7235 22.5199 15.7055 22.5555C15.6874 22.5912 15.6165 22.6158 15.5989 22.6088C15.5741 22.591 15.4957 22.4309 15.4884 22.406Z" fill="#82764F"/>
110 +<path fill-rule="evenodd" clip-rule="evenodd" d="M14.2656 22.8723C14.2656 22.8723 14.344 22.8899 14.4508 22.9791C14.4151 23.004 14.3616 23.0323 14.3616 23.0323C14.3616 23.0323 14.3546 22.9504 14.2656 22.8721V22.8723Z" fill="#6E6342"/>
111 +<path fill-rule="evenodd" clip-rule="evenodd" d="M14.0888 22.0891C14.0709 22.0715 14.142 22.0288 14.1847 22.0359C14.2274 22.0429 14.2453 22.0715 14.2915 22.0786C14.3377 22.0856 14.345 22.0607 14.3619 22.0429C14.3788 22.0251 14.4403 22.0359 14.4508 22.0429C14.4574 22.0507 14.4634 22.059 14.4687 22.0678C14.4694 22.0542 14.473 22.041 14.4791 22.0289C14.4851 22.0168 14.4937 22.006 14.5041 21.9974C14.5178 21.9873 14.5335 21.9805 14.5502 21.9774C14.5668 21.9743 14.584 21.9751 14.6003 21.9795C14.6074 22.0044 14.643 22.0933 14.636 22.1112C14.629 22.129 14.5222 22.1541 14.5041 22.1361C14.5219 22.179 14.6003 22.2679 14.6109 22.2855C14.6214 22.3031 14.5325 22.3461 14.4971 22.339C14.4473 22.3355 14.1411 22.1574 14.0878 22.0898L14.0888 22.0891ZM14.555 21.4982C14.5484 21.4803 14.5358 21.4652 14.5194 21.4555C14.4945 21.4485 14.4126 21.4555 14.4126 21.4982C14.4126 21.5409 14.483 21.7798 14.5621 21.9042C14.6512 22.0288 14.7116 22.1318 14.7721 22.1605C14.7911 22.1691 14.8127 22.1702 14.8325 22.1636C14.8523 22.157 14.8689 22.1431 14.8789 22.1248C14.8859 22.107 14.9037 21.9753 14.8967 21.6655C14.8897 21.3558 14.8789 21.0568 14.861 21.039C14.8432 21.0212 14.7721 21.0214 14.7472 21.0568C14.7224 21.0923 14.5621 21.445 14.5548 21.4982H14.555Z" fill="#585136"/>
112 +<path fill-rule="evenodd" clip-rule="evenodd" d="M14.2393 23.3209C14.2393 23.3209 14.1147 23.2425 13.9936 23.296C13.8798 23.3495 13.8868 23.5596 13.8868 23.5596C13.9124 23.5696 13.9401 23.5732 13.9674 23.5701C13.9947 23.567 14.0209 23.5573 14.0436 23.5417C14.1219 23.4885 14.2214 23.3995 14.2393 23.3211V23.3209Z" fill="#574F35"/>
113 +<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4727 23.6017C14.4657 23.5313 14.4023 23.5313 14.4023 23.4949C14.4067 23.4775 14.4168 23.4621 14.4309 23.4511C14.4451 23.4401 14.4626 23.4342 14.4805 23.4343C14.5162 23.4343 14.5509 23.4771 14.5945 23.5047C14.6372 23.5296 14.7013 23.5751 14.7083 23.6294C14.7154 23.6836 14.6379 23.8321 14.5518 23.8321C14.4657 23.8321 14.4913 23.6718 14.4734 23.6007L14.4727 23.6017ZM15.1598 23.5054C15.1598 23.5054 15.0174 23.5482 15.028 23.5054C15.0385 23.4627 15.0709 23.4522 15.1171 23.4522C15.1406 23.4276 15.1722 23.4123 15.2061 23.4092C15.2254 23.4083 15.2445 23.4146 15.2593 23.4271C15.2593 23.4271 15.3556 23.3844 15.384 23.4092C15.4123 23.4341 15.3912 23.4341 15.4088 23.4627C15.4312 23.4945 15.4459 23.5311 15.4518 23.5695C15.4518 23.5979 15.345 23.6585 15.2593 23.6479C15.1598 23.6265 15.1774 23.5233 15.1598 23.5054ZM15.9892 23.3452C15.9892 23.3452 16.0319 23.37 15.9964 23.3987C15.9716 23.4236 15.847 23.4691 15.7399 23.4771C15.6332 23.4771 15.5372 23.4947 15.5372 23.4592C15.5372 23.4238 15.6261 23.3524 15.6794 23.3346C15.6901 23.3212 15.7037 23.3104 15.7191 23.303C15.7345 23.2956 15.7515 23.2918 15.7686 23.2919C15.8113 23.2919 15.9784 23.2741 16.0248 23.267C16.0675 23.2598 16.1032 23.2846 16.0781 23.3203C16.0675 23.3452 15.9892 23.3452 15.9892 23.3452ZM16.2349 22.246C16.2349 22.246 16.1814 22.3598 16.121 22.3598C16.0605 22.3528 16.0605 22.3349 16.0605 22.3171C16.0605 22.2922 16.121 22.2282 16.1138 22.2103C16.0962 22.2103 16.0532 22.2103 16.0605 22.1676C16.0605 22.1319 16.121 22.0892 16.1743 22.0972C16.2146 22.0641 16.2647 22.0454 16.3168 22.0439C16.3773 22.0439 16.4306 22.0615 16.4306 22.0972C16.4306 22.1329 16.3602 22.211 16.3344 22.2291C16.306 22.2575 16.2703 22.276 16.2349 22.2467V22.246ZM15.4231 24.3498C15.4231 24.3498 15.3527 24.3571 15.3527 24.3925C15.3527 24.4103 15.3703 24.4103 15.3955 24.3998C15.4099 24.3989 15.4242 24.3965 15.4382 24.3925C15.4452 24.3998 15.4452 24.4352 15.4987 24.4352C15.5426 24.4293 15.585 24.4148 15.6233 24.3925C15.666 24.3749 15.7017 24.3568 15.7017 24.3221C15.6839 24.2615 15.6482 24.2329 15.5949 24.2329C15.5676 24.2312 15.5404 24.2374 15.5165 24.2508C15.5165 24.2508 15.4987 24.2151 15.4382 24.2508C15.3776 24.2864 15.3847 24.2864 15.4025 24.3043C15.4344 24.3326 15.4238 24.3512 15.4238 24.3512L15.4231 24.3498ZM15.0209 24.7201C15.0209 24.7023 15.1099 24.6666 15.1347 24.6774C15.1596 24.6844 15.2307 24.8196 15.2307 24.8339C15.2307 24.8517 15.1418 24.8944 15.1061 24.8944C15.0704 24.8944 15.0101 24.8339 15.0101 24.824C15.0101 24.817 15.0528 24.8064 15.0528 24.7992C15.0634 24.7816 15.0209 24.7386 15.0209 24.7208V24.7201ZM14.7393 24.2003C14.7572 24.1933 14.7572 24.1754 14.782 24.1576C14.7898 24.1524 14.7987 24.1491 14.808 24.1479C14.8172 24.1466 14.8267 24.1476 14.8355 24.1505C14.8418 24.1393 14.8505 24.1297 14.861 24.1223C14.8714 24.1148 14.8834 24.1098 14.8961 24.1076C14.9388 24.1006 14.9745 24.1076 14.9665 24.1254C14.9665 24.1789 15.0022 24.2144 15.0022 24.2571C15.0022 24.2998 14.9773 24.3533 14.8883 24.389C14.7994 24.4138 14.6783 24.4138 14.6605 24.4068C14.6426 24.3998 14.6248 24.3284 14.6426 24.2928C14.6605 24.2571 14.7102 24.2181 14.7389 24.2003H14.7393Z" fill="#82764F"/>
114 +<path fill-rule="evenodd" clip-rule="evenodd" d="M14.8529 24.2246C14.8529 24.2246 14.7923 24.2603 14.7923 24.2781C14.787 24.2953 14.7846 24.3134 14.7853 24.3314C14.7853 24.3419 14.8637 24.3243 14.8742 24.3135C14.8777 24.3065 14.8529 24.2431 14.8529 24.2246Z" fill="#6E6342"/>
115 +<path fill-rule="evenodd" clip-rule="evenodd" d="M14.3251 24.0577C14.3605 24.0649 14.4211 24.0577 14.4673 24.0755C14.503 24.0933 14.5279 24.129 14.4922 24.1717C14.4565 24.2144 14.4218 24.2785 14.3427 24.2677C14.2538 24.2607 14.1683 24.2144 14.1683 24.1788C14.1668 24.1562 14.1699 24.1336 14.1772 24.1122C14.1845 24.0908 14.196 24.0711 14.2111 24.0542C14.2467 24.0258 14.2643 24.0436 14.3249 24.0577H14.3251Z" fill="#585136"/>
116 +<path fill-rule="evenodd" clip-rule="evenodd" d="M14.2805 24.0928C14.2805 24.0928 14.1667 24.1817 14.1381 24.2247C14.1024 24.2674 13.928 24.488 13.8748 24.5342C13.8925 24.503 13.9126 24.4732 13.9351 24.4452C13.8647 24.4903 13.8119 24.5581 13.7856 24.6374C13.7429 24.7693 14.0243 24.8404 14.2092 24.8939C14.3941 24.9474 14.4657 24.9643 14.4657 24.9643C14.3976 24.862 14.3391 24.7536 14.2911 24.6405C14.2207 24.4732 14.1843 24.4553 14.2305 24.377C14.2662 24.2986 14.3197 24.2453 14.3197 24.1848C14.2983 24.1284 14.2805 24.0928 14.2805 24.0928Z" fill="#574F35"/>
117 +<path fill-rule="evenodd" clip-rule="evenodd" d="M10.2231 24.3743C10.249 24.3791 10.2756 24.3791 10.3015 24.3743C10.3548 24.367 10.9102 24.1631 11.4906 24.1997C11.925 24.226 12.3556 24.2967 12.7756 24.4109C13.5054 24.6031 14.4131 24.984 15.0005 25.2013C15.157 25.2616 15.3102 25.3686 15.4229 25.4111C15.8716 25.5856 15.8892 25.5856 16.1527 25.6319C16.4624 25.6746 16.7792 25.5713 17.1104 25.5002C17.5161 25.4111 18.2102 25.3683 18.819 25.2794C19.0158 25.2521 19.21 25.2081 19.3993 25.1478C19.3993 25.1478 18.9152 25.6319 17.7545 25.8062C17.2854 25.8775 16.8086 25.8835 16.3378 25.8241C15.9675 25.7884 15.7221 25.7349 15.5369 25.6816C15.3269 25.6211 14.896 25.4608 14.3657 25.3296C13.9954 25.2334 13.5824 25.1623 13.1091 25.0734C11.9414 24.8596 10.6742 24.6141 10.2227 24.3757L10.2231 24.3743Z" fill="#252211"/>
118 +<path fill-rule="evenodd" clip-rule="evenodd" d="M8.91208 22.1748C8.63048 22.4132 8.33175 22.6411 8.04006 22.8617L7.16076 23.5373C6.86179 23.7579 6.56987 23.9857 6.27067 24.2065C5.97147 24.4274 5.67274 24.6372 5.35547 24.8401C5.63707 24.6017 5.9358 24.3809 6.23477 24.1638C6.53373 23.9468 6.84372 23.7339 7.13213 23.5138L8.01143 22.8373C8.31391 22.6167 8.60584 22.3888 8.91208 22.1753V22.1748ZM7.35647 24.6667C7.35647 24.6667 7.67327 24.4032 8.06845 24.0331C8.55961 23.5741 9.16129 22.9865 9.35349 22.88L7.35624 24.667L7.35647 24.6667Z" fill="#CFB66C"/>
119 +<path fill-rule="evenodd" clip-rule="evenodd" d="M7.35938 24.6663C7.51613 24.5098 7.68345 24.3568 7.85077 24.2071L8.10702 23.9865C8.1854 23.9161 8.27458 23.837 8.35272 23.7586C8.50924 23.6021 8.66248 23.4346 8.819 23.2745C8.89658 23.194 8.97861 23.118 9.0647 23.0467C9.10774 23.0086 9.15554 22.9762 9.20691 22.9504C9.24985 22.9256 9.29608 22.88 9.35639 22.8721C9.32095 22.9256 9.27824 22.9504 9.24258 22.9967C9.19987 23.0323 9.1642 23.0751 9.12876 23.1105C9.05038 23.1889 8.96144 23.26 8.88307 23.3313C8.71575 23.4738 8.54139 23.6129 8.37407 23.7619C8.20676 23.9109 8.05023 24.0717 7.88268 24.2212C7.70128 24.3744 7.53397 24.5239 7.35938 24.667V24.6663ZM9.48827 23.2424C9.48827 23.2424 8.32784 24.3782 8.08919 24.5631L9.48827 23.2424Z" fill="#CFB66C"/>
120 +<path fill-rule="evenodd" clip-rule="evenodd" d="M9.48893 23.2422C9.38454 23.363 9.27261 23.4771 9.15382 23.5839L8.80182 23.9185C8.68801 24.0323 8.581 24.1464 8.46015 24.2602C8.33554 24.3669 8.22173 24.4714 8.08984 24.5699L8.43152 24.2353C8.54557 24.1215 8.67017 24.0255 8.79126 23.9115L9.13294 23.5768C9.25027 23.4595 9.36432 23.3454 9.48893 23.2422ZM9.5422 23.858C9.43523 24.1565 9.30919 24.4478 9.16485 24.7302C8.86589 25.3284 8.41744 26.0758 8.22149 26.4569L9.5422 23.858Z" fill="#CFB66C"/>
121 +<path fill-rule="evenodd" clip-rule="evenodd" d="M9.53984 23.8584C9.53984 23.99 9.50417 24.1041 9.46146 24.2179C9.41983 24.3318 9.37236 24.4435 9.31925 24.5525C9.26575 24.6593 9.20521 24.7734 9.14466 24.8766C9.08412 24.9799 9.01301 25.0864 8.95951 25.1934L8.6 25.827C8.47539 26.0382 8.3543 26.2506 8.22266 26.4536C8.31159 26.2257 8.43268 26.0122 8.54673 25.8021C8.67134 25.5909 8.78515 25.3797 8.89873 25.1613C8.95418 25.0524 9.00408 24.9408 9.04821 24.8269C9.10148 24.7128 9.15475 24.606 9.1977 24.5028C9.25097 24.389 9.29367 24.282 9.34718 24.179C9.40749 24.0684 9.45747 23.9617 9.53937 23.8584H9.53984Z" fill="#CFB66C"/>
122 +<path fill-rule="evenodd" clip-rule="evenodd" d="M10.8076 26.7773C10.8076 26.7773 10.4556 27.2436 10.4908 27.8345C10.5867 27.525 10.7078 27.0514 10.8076 26.7773ZM11.1422 27.2448C11.1422 27.2448 11.0176 28.512 10.9143 29.135C11.0603 28.4148 11.0887 28.4754 11.1422 27.2448ZM13.4738 29.2099C13.4738 29.2099 12.947 30.7587 12.9362 31.1891C13.0503 30.7465 13.2709 29.8423 13.4738 29.2087V29.2099Z" fill="#DEC270"/>
123 +<path fill-rule="evenodd" clip-rule="evenodd" d="M14.707 26.6816C14.707 26.6816 15.5615 28.0913 16.2023 29.2944C16.0289 28.689 15.63 27.5785 14.707 26.6816Z" fill="#CBAF59"/>
124 +<path fill-rule="evenodd" clip-rule="evenodd" d="M17.0039 28.7568C17.473 29.5861 17.8961 30.4405 18.2711 31.3163C18.2 30.7111 18.0076 29.6753 17.0039 28.7568Z" fill="#E3C677"/>
125 +<path fill-rule="evenodd" clip-rule="evenodd" d="M23.752 30.835C23.8942 30.746 24.1756 30.2617 24.4213 30.1408C24.6667 30.0162 24.8519 29.9914 25.0727 29.7457C25.2933 29.4892 25.3543 29.3326 25.838 29.1299C26.5145 28.8377 26.0492 28.4604 26.0492 28.4604C26.1237 28.3872 26.2034 28.3194 26.2876 28.2576C26.4622 28.126 26.6649 27.9657 26.6473 27.6843C26.6225 27.211 26.5335 26.5239 26.1454 26.1252C26.5227 26.0468 27.2453 25.9936 27.6942 25.8798C28.2137 25.7479 28.4524 25.5627 28.4524 25.5627C28.4524 25.5627 28.1534 25.0537 28.6375 24.5412C29.1217 24.0287 29.5168 23.7225 29.8088 23.1492C29.4741 23.1065 28.964 22.9286 27.662 23.4233C27.7323 23.4563 27.8001 23.4944 27.865 23.5371C27.865 23.5371 27.0641 23.7579 26.7722 24.0036C26.2629 24.4342 26.1989 24.7867 25.6472 25.0502C25.0955 25.3137 24.54 25.2424 24.081 25.456C23.622 25.6695 23.5542 25.8511 23.3866 25.9295C23.4223 25.9722 23.3796 26.0433 23.4472 26.1039C23.4045 26.1644 23.1553 26.5701 22.9025 26.5701C22.9274 26.6664 23.1409 26.7375 23.1409 26.7375C23.1409 26.7375 22.9844 26.8515 22.5857 26.8799C22.7885 27.0911 22.9809 27.3213 23.5112 27.656C23.4685 27.7449 23.2904 27.8768 23.3618 28.0441C23.4401 28.2114 23.6434 28.4393 24.4546 28.6244C24.0416 28.642 23.5577 28.7382 22.9058 28.6493C22.2544 28.5709 22.1476 28.5247 21.7454 28.6244C21.7881 28.6671 21.9019 28.6671 22.0016 28.7809C21.8949 28.788 21.2256 28.7026 20.9977 29.0018C20.7593 29.3113 20.6561 29.8205 20.6739 30.1622C20.5493 30.2227 20.4282 30.3295 20.4887 30.5503C20.5493 30.7712 20.8661 30.8423 21.0691 30.9809C21.2718 31.1304 21.2897 31.1837 21.4821 31.1483C21.6848 31.1056 21.9838 30.9028 22.1584 30.9028C22.333 30.9028 22.4574 31.0344 22.4574 31.0344C22.4574 31.0344 22.9309 30.8066 22.9771 30.8493C23.0199 30.892 22.9842 31.1661 23.0304 31.2088C23.0773 31.241 23.6107 30.9242 23.7532 30.835H23.752Z" fill="#ECD592"/>
126 +</g>
127 +<defs>
128 +<clipPath id="clip0_17214_303346">
129 +<rect width="44" height="44" fill="white"/>
130 +</clipPath>
131 +</defs>
132 +</svg>
res/pictures/card_icons/og_icons/eth-og.svg new
+8
@@ -0,0 +1,8 @@
1 +<svg opacity="0.85" width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<circle cx="22" cy="22" r="22" fill="white"/>
3 +<path opacity="0.6" d="M21.9981 17.3115L10.9492 22.3345L21.9981 28.8659L33.0469 22.3345L21.9981 17.3115Z" fill="black"/>
4 +<path opacity="0.45" d="M10.9492 22.3335L21.9981 28.865V17.3106V4L10.9492 22.3335Z" fill="black"/>
5 +<path opacity="0.8" d="M22 4V17.3106V28.865L33.0488 22.3335L22 4Z" fill="black"/>
6 +<path opacity="0.45" d="M10.9492 24.4297L21.9981 40V30.9571L10.9492 24.4297Z" fill="black"/>
7 +<path opacity="0.8" d="M22 30.9571V40L33.057 24.4297L22 30.9571Z" fill="black"/>
8 +</svg>
res/pictures/card_icons/og_icons/ln-og.svg new
+16
@@ -0,0 +1,16 @@
1 +<svg opacity="0.85" width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<g clip-path="url(#clip0_18224_520666)">
3 +<mask id="mask0_18224_520666" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="44" height="44">
4 +<path d="M44 0H0V44H44V0Z" fill="white"/>
5 +</mask>
6 +<g mask="url(#mask0_18224_520666)">
7 +<path d="M21.9961 44C34.1464 44 43.9961 34.1503 43.9961 22C43.9961 9.84974 34.1464 0 21.9961 0C9.84583 0 -0.00390625 9.84974 -0.00390625 22C-0.00390625 34.1503 9.84583 44 21.9961 44Z" fill="#7B1AF7"/>
8 +<path d="M12.4449 22.4751L27.1116 9.83671C27.7507 9.42743 28.3598 9.83671 27.9697 10.5388L23.2889 19.7446H31.6364C31.6364 19.7446 32.9627 19.7446 31.6364 20.8368L17.2038 33.5531C16.1896 34.4112 15.4875 33.9432 16.1896 32.6169L20.7144 23.6453H12.4449C12.4449 23.6453 11.1187 23.6453 12.4449 22.4751Z" fill="white"/>
9 +</g>
10 +</g>
11 +<defs>
12 +<clipPath id="clip0_18224_520666">
13 +<rect width="44" height="44" fill="white"/>
14 +</clipPath>
15 +</defs>
16 +</svg>
res/pictures/card_icons/og_icons/ltc-og.svg new
+11
@@ -0,0 +1,11 @@
1 +<svg opacity="0.85" width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<g clip-path="url(#clip0_18224_520588)">
3 +<path d="M21.9978 41.6186C32.833 41.6186 41.6167 32.835 41.6167 21.9997C41.6167 11.1645 32.833 2.38086 21.9978 2.38086C11.1626 2.38086 2.37891 11.1645 2.37891 21.9997C2.37891 32.835 11.1626 41.6186 21.9978 41.6186Z" fill="white"/>
4 +<path d="M22 0C17.6488 0 13.3953 1.29028 9.77747 3.70767C6.15958 6.12506 3.33979 9.56099 1.67466 13.581C0.00953218 17.6009 -0.426141 22.0244 0.422734 26.292C1.27161 30.5596 3.36691 34.4796 6.44366 37.5563C9.52042 40.6331 13.4404 42.7284 17.708 43.5773C21.9756 44.4262 26.3991 43.9905 30.419 42.3253C34.439 40.6602 37.8749 37.8404 40.2923 34.2225C42.7097 30.6047 44 26.3512 44 22C44.0084 19.1193 43.4493 16.2652 42.3547 13.6005C41.2601 10.9359 39.6513 8.51299 37.6203 6.4701C35.5893 4.42721 33.1758 2.80436 30.5176 1.69422C27.8594 0.58408 25.0085 0.0083822 22.1279 0H22ZM22.3729 22.7458L20.0823 30.4697H32.3342C32.4153 30.4669 32.4962 30.4801 32.5723 30.5085C32.6484 30.537 32.7181 30.5801 32.7774 30.6355C32.8368 30.6909 32.8847 30.7575 32.9183 30.8314C32.9519 30.9054 32.9706 30.9852 32.9734 31.0663V31.2688L31.908 34.9443C31.861 35.1181 31.7563 35.2708 31.6112 35.3773C31.466 35.4838 31.2889 35.5377 31.109 35.5303H12.3584L15.5012 24.8232L11.9855 25.8886L12.7845 23.4383L16.3003 22.3729L20.7216 7.35109C20.7702 7.17825 20.8753 7.02666 21.0201 6.92047C21.1649 6.81428 21.3411 6.7596 21.5206 6.76513H26.2615C26.3427 6.76229 26.4236 6.77546 26.4997 6.80392C26.5757 6.83237 26.6454 6.87553 26.7048 6.93094C26.7642 6.98635 26.812 7.05292 26.8456 7.12684C26.8793 7.20076 26.898 7.28058 26.9007 7.36174V7.56416L23.1719 20.2421L26.6877 19.1768L25.9419 21.7337L22.3729 22.7458Z" fill="#345D9D"/>
5 +</g>
6 +<defs>
7 +<clipPath id="clip0_18224_520588">
8 +<rect width="44" height="44" fill="white"/>
9 +</clipPath>
10 +</defs>
11 +</svg>
res/pictures/card_icons/og_icons/pol-og.svg new
+11
@@ -0,0 +1,11 @@
1 +<svg opacity="0.85" width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<g clip-path="url(#clip0_18224_520577)">
3 +<path d="M44 22C44 9.84974 34.1503 0 22 0C9.84974 0 0 9.84974 0 22C0 34.1503 9.84974 44 22 44C34.1503 44 44 34.1503 44 22Z" fill="#6C00F6"/>
4 +<path d="M26.7427 12.1709L20.6032 15.697V26.702L17.2157 28.6657L13.8074 26.7004V22.7714L17.2157 20.8252L19.4072 22.0961V18.9172L17.1965 17.6622L11.0586 21.2282V28.2819L17.2173 31.8286L23.3552 28.2819V17.2785L26.7635 15.3131L30.1701 17.2785V21.1899L26.7635 23.1727L24.5528 21.8906V25.0536L26.7427 26.3165L32.9412 22.7906V15.697L26.7427 12.1709Z" fill="white"/>
5 +</g>
6 +<defs>
7 +<clipPath id="clip0_18224_520577">
8 +<rect width="44" height="44" fill="white"/>
9 +</clipPath>
10 +</defs>
11 +</svg>
res/pictures/card_icons/og_icons/sol-og.svg new
+20
@@ -0,0 +1,20 @@
1 +<svg opacity="0.85" width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<circle cx="22" cy="22" r="22" fill="#9945FF"/>
3 +<circle cx="22" cy="22" r="22" fill="black"/>
4 +<g clip-path="url(#clip0_17214_303481)">
5 +<path d="M33.2838 27.5914L29.5323 31.5108C29.4508 31.5959 29.3521 31.6638 29.2424 31.7102C29.1328 31.7566 29.0145 31.7805 28.895 31.7805H11.1113C11.0264 31.7805 10.9434 31.7563 10.8725 31.711C10.8015 31.6657 10.7457 31.6011 10.7119 31.5253C10.6781 31.4495 10.6677 31.3657 10.6821 31.2842C10.6965 31.2028 10.735 31.1272 10.7929 31.0667L14.5472 27.1473C14.6285 27.0624 14.7268 26.9946 14.8361 26.9482C14.9454 26.9018 15.0633 26.8778 15.1826 26.8776H32.9653C33.0501 26.8776 33.1331 26.9018 33.2041 26.9471C33.275 26.9924 33.3308 27.057 33.3648 27.1328C33.3985 27.2086 33.4089 27.2924 33.3945 27.3738C33.3801 27.4553 33.3416 27.5309 33.2838 27.5914ZM29.5323 19.6987C29.4508 19.6135 29.3521 19.5457 29.2424 19.4993C29.1328 19.4529 29.0145 19.429 28.895 19.429H11.1113C11.0264 19.429 10.9434 19.4532 10.8725 19.4985C10.8015 19.5439 10.7457 19.6084 10.7119 19.6842C10.6781 19.76 10.6677 19.8438 10.6821 19.9253C10.6965 20.0067 10.735 20.0823 10.7929 20.1428L14.5472 24.0622C14.6285 24.1472 14.7268 24.2149 14.8361 24.2613C14.9454 24.3077 15.0633 24.3317 15.1826 24.3319H32.9653C33.0501 24.3319 33.1331 24.3077 33.2041 24.2624C33.275 24.2171 33.3308 24.1525 33.3648 24.0767C33.3985 24.0009 33.4089 23.9171 33.3945 23.8357C33.3801 23.7542 33.3416 23.6786 33.2838 23.6181L29.5323 19.6987ZM11.1113 16.8833H28.895C29.0145 16.8834 29.1328 16.8595 29.2424 16.8131C29.3521 16.7667 29.4508 16.6988 29.5323 16.6137L33.2838 12.6942C33.3416 12.6338 33.3801 12.5582 33.3945 12.4767C33.4089 12.3952 33.3985 12.3115 33.3648 12.2356C33.3308 12.1598 33.275 12.0953 33.2041 12.05C33.1331 12.0046 33.0501 11.9805 32.9653 11.9805H15.1826C15.0633 11.9807 14.9454 12.0047 14.8361 12.0511C14.7268 12.0975 14.6285 12.1652 14.5472 12.2501L10.7938 16.1696C10.736 16.23 10.6975 16.3055 10.6831 16.3868C10.6687 16.4682 10.6789 16.552 10.7126 16.6277C10.7464 16.7035 10.802 16.768 10.8728 16.8134C10.9437 16.8589 11.0265 16.8831 11.1113 16.8833Z" fill="url(#paint0_linear_17214_303481)"/>
6 +</g>
7 +<defs>
8 +<linearGradient id="paint0_linear_17214_303481" x1="12.594" y1="32.2524" x2="30.6993" y2="11.3018" gradientUnits="userSpaceOnUse">
9 +<stop offset="0.08" stop-color="#9945FF"/>
10 +<stop offset="0.3" stop-color="#8752F3"/>
11 +<stop offset="0.5" stop-color="#5497D5"/>
12 +<stop offset="0.6" stop-color="#43B4CA"/>
13 +<stop offset="0.72" stop-color="#28E0B9"/>
14 +<stop offset="0.97" stop-color="#19FB9B"/>
15 +</linearGradient>
16 +<clipPath id="clip0_17214_303481">
17 +<rect width="22.725" height="19.8" fill="white" transform="translate(10.6758 11.9805)"/>
18 +</clipPath>
19 +</defs>
20 +</svg>
res/pictures/card_icons/og_icons/tron-og.svg new
+13
@@ -0,0 +1,13 @@
1 +<svg opacity="0.85" width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<g clip-path="url(#clip0_17214_302379)">
3 +<path d="M22 44C34.1917 44 44 34.1917 44 22C44 9.80826 34.1917 0 22 0C9.80826 0 0 9.80826 0 22C0 34.1917 9.80826 44 22 44Z" fill="#FF060A"/>
4 +<path d="M22 44C34.1917 44 44 34.1917 44 22C44 9.80826 34.1917 0 22 0C9.80826 0 0 9.80826 0 22C0 34.1917 9.80826 44 22 44Z" fill="#F9181C"/>
5 +<path d="M22 44C34.1917 44 44 34.1917 44 22C44 9.80826 34.1917 0 22 0C9.80826 0 0 9.80826 0 22C0 34.1917 9.80826 44 22 44Z" fill="#EB0029"/>
6 +<path d="M35.5292 17.6231C34.2272 16.4208 32.426 14.585 30.959 13.2829L30.8722 13.2222C30.7278 13.1062 30.565 13.0152 30.3905 12.9531C26.8532 12.2934 10.391 9.21619 10.0699 9.25525C9.97987 9.26786 9.89385 9.30048 9.81813 9.35073L9.73567 9.41584C9.63413 9.51896 9.55701 9.64354 9.50998 9.78041L9.48828 9.83683V10.145V10.1927C11.3415 15.3532 18.659 32.2581 20.1 36.225C20.1868 36.4941 20.3517 37.0062 20.6598 37.0322H20.7293C20.8942 37.0322 21.5973 36.1034 21.5973 36.1034C21.5973 36.1034 34.1664 20.8608 35.4381 19.2376C35.6027 19.0377 35.748 18.8226 35.8721 18.5953C35.9038 18.4174 35.8888 18.2344 35.8287 18.064C35.7686 17.8936 35.6655 17.7417 35.5292 17.6231ZM24.822 19.3982L30.1865 14.9495L33.3331 17.8488L24.822 19.3982ZM22.7388 19.1074L13.5029 11.5382L28.4461 14.2942L22.7388 19.1074ZM23.5721 21.0909L33.0249 19.5675L22.218 32.5879L23.5721 21.0909ZM12.2486 12.2934L21.9662 20.5397L20.56 32.5966L12.2486 12.2934Z" fill="white"/>
7 +</g>
8 +<defs>
9 +<clipPath id="clip0_17214_302379">
10 +<rect width="44" height="44" fill="white"/>
11 +</clipPath>
12 +</defs>
13 +</svg>
res/pictures/card_icons/og_icons/xmr-og.svg new
+5
@@ -0,0 +1,5 @@
1 +<svg opacity="0.85" width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<circle cx="22" cy="22" r="22" fill="white"/>
3 +<path d="M21.9997 0C9.85197 0 0 9.85077 0 21.9991C0 24.4278 0.393459 26.7635 1.12076 28.9484H7.69987V10.4386L21.9997 24.7384L36.2995 10.4386V28.9484H42.8792C43.6065 26.7635 44 24.4278 44 21.9991C44 9.85077 34.148 0 21.9997 0Z" fill="#F26822"/>
4 +<path d="M12.4693 21.7852V33.4321H3.19922C7.06107 39.768 14.036 43.9995 21.9976 43.9995C29.9592 43.9995 36.9347 39.768 40.796 33.4321H31.5265V21.7852L21.9976 31.314L12.4693 21.7852Z" fill="#4D4D4D"/>
5 +</svg>
res/pictures/card_icons/og_icons/xno-og.svg new
+12
@@ -0,0 +1,12 @@
1 +<svg opacity="0.85" width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<g clip-path="url(#clip0_17214_302525)">
3 +<path d="M22 44C34.1503 44 44 34.1503 44 22C44 9.84974 34.1503 0 22 0C9.84974 0 0 9.84974 0 22C0 34.1503 9.84974 44 22 44Z" fill="#209CE9"/>
4 +<path d="M32.3039 35.8923H30.1644L22.0449 23.2448L13.8015 35.8923H11.6797L20.9185 21.5638L12.5027 8.40137H14.6839L22.0796 19.9787L29.6318 8.40137H31.6783L23.1719 21.5263L32.3039 35.8923Z" fill="white"/>
5 +<path d="M13.7077 20.7266H30.343V22.2902H13.7077V20.7266ZM13.7077 25.4172H30.3437V26.9808H13.707L13.7077 25.4172Z" fill="white"/>
6 +</g>
7 +<defs>
8 +<clipPath id="clip0_17214_302525">
9 +<rect width="44" height="44" fill="white"/>
10 +</clipPath>
11 +</defs>
12 +</svg>
res/pictures/card_icons/og_icons/zano-og.svg new
+42
@@ -0,0 +1,42 @@
1 +<svg opacity="0.85" width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<g clip-path="url(#clip0_18375_211309)">
3 +<path d="M22 44C34.1917 44 44 34.1917 44 22C44 9.80826 34.1917 0 22 0C9.80826 0 0 9.80826 0 22C0 34.1917 9.80826 44 22 44Z" fill="#0C0C3A"/>
4 +<path fill-rule="evenodd" clip-rule="evenodd" d="M24.2863 8.79981H27.3087C28.344 8.79978 29.215 8.79976 29.9279 8.85908C30.6737 8.92113 31.3841 9.056 32.0589 9.40613C33.0868 9.93946 33.9225 10.7905 34.4463 11.8372C34.7901 12.5244 34.9225 13.2478 34.9834 14.0072C35.0417 14.7333 35.0417 15.6203 35.0417 16.6745V19.5938C35.0417 20.648 35.0417 21.535 34.9834 22.2611C34.9225 23.0205 34.7901 23.744 34.4463 24.4311C33.9225 25.4778 33.0868 26.3289 32.0589 26.8622C31.3841 27.2123 30.6737 27.3472 29.9279 27.4092C29.2149 27.4686 28.3439 27.4685 27.3087 27.4685H18.283C17.649 27.4685 17.0769 27.0812 16.8316 26.4859C16.5863 25.8906 16.7156 25.2035 17.1598 24.7428L24.6132 17.0113L26.8597 19.2571L22.034 24.2628H27.2456C28.3606 24.2628 29.1021 24.2615 29.6716 24.2141C30.2227 24.1683 30.4727 24.0874 30.6298 24.0059C31.0653 23.7799 31.4194 23.4193 31.6413 22.9757C31.7213 22.8158 31.8008 22.5612 31.8459 22C31.8924 21.4201 31.8936 20.665 31.8936 19.5296V16.7387C31.8936 15.6034 31.8924 14.8483 31.8459 14.2683C31.8008 13.7071 31.7213 13.4525 31.6413 13.2926C31.4194 12.849 31.0653 12.4885 30.6298 12.2624C30.4727 12.181 30.2227 12.1 29.6716 12.0542C29.1021 12.0068 28.3606 12.0055 27.2456 12.0055H24.3499C23.2227 12.0055 22.4726 12.0068 21.8968 12.0549C21.3392 12.1016 21.0872 12.1839 20.9296 12.2664C20.4914 12.4958 20.1366 12.8616 19.9167 13.3105C19.8376 13.472 19.7598 13.7297 19.7208 14.298C19.6806 14.8849 19.6885 15.6487 19.7022 16.7964L19.718 18.1146L16.5702 18.1537L16.5537 16.7708C16.5408 15.7048 16.5301 14.8085 16.5804 14.0746C16.6331 13.3074 16.7586 12.5757 17.0996 11.8796C17.6187 10.8201 18.4561 9.9568 19.4901 9.4154C20.1696 9.05969 20.8865 8.92289 21.6392 8.85996C22.3592 8.79976 23.2394 8.79978 24.2863 8.79981Z" fill="url(#paint0_linear_18375_211309)"/>
5 +<path fill-rule="evenodd" clip-rule="evenodd" d="M24.2863 8.79981H27.3087C28.344 8.79978 29.215 8.79976 29.9279 8.85908C30.6737 8.92113 31.3841 9.056 32.0589 9.40613C33.0868 9.93946 33.9225 10.7905 34.4463 11.8372C34.7901 12.5244 34.9225 13.2478 34.9834 14.0072C35.0417 14.7333 35.0417 15.6203 35.0417 16.6745V19.5938C35.0417 20.648 35.0417 21.535 34.9834 22.2611C34.9225 23.0205 34.7901 23.744 34.4463 24.4311C33.9225 25.4778 33.0868 26.3289 32.0589 26.8622C31.3841 27.2123 30.6737 27.3472 29.9279 27.4092C29.2149 27.4686 28.3439 27.4685 27.3087 27.4685H18.283C17.649 27.4685 17.0769 27.0812 16.8316 26.4859C16.5863 25.8906 16.7156 25.2035 17.1598 24.7428L24.6132 17.0113L26.8597 19.2571L22.034 24.2628H27.2456C28.3606 24.2628 29.1021 24.2615 29.6716 24.2141C30.2227 24.1683 30.4727 24.0874 30.6298 24.0059C31.0653 23.7799 31.4194 23.4193 31.6413 22.9757C31.7213 22.8158 31.8008 22.5612 31.8459 22C31.8924 21.4201 31.8936 20.665 31.8936 19.5296V16.7387C31.8936 15.6034 31.8924 14.8483 31.8459 14.2683C31.8008 13.7071 31.7213 13.4525 31.6413 13.2926C31.4194 12.849 31.0653 12.4885 30.6298 12.2624C30.4727 12.181 30.2227 12.1 29.6716 12.0542C29.1021 12.0068 28.3606 12.0055 27.2456 12.0055H24.3499C23.2227 12.0055 22.4726 12.0068 21.8968 12.0549C21.3392 12.1016 21.0872 12.1839 20.9296 12.2664C20.4914 12.4958 20.1366 12.8616 19.9167 13.3105C19.8376 13.472 19.7598 13.7297 19.7208 14.298C19.6806 14.8849 19.6885 15.6487 19.7022 16.7964L19.718 18.1146L16.5702 18.1537L16.5537 16.7708C16.5408 15.7048 16.5301 14.8085 16.5804 14.0746C16.6331 13.3074 16.7586 12.5757 17.0996 11.8796C17.6187 10.8201 18.4561 9.9568 19.4901 9.4154C20.1696 9.05969 20.8865 8.92289 21.6392 8.85996C22.3592 8.79976 23.2394 8.79978 24.2863 8.79981Z" fill="url(#paint1_radial_18375_211309)"/>
6 +<path fill-rule="evenodd" clip-rule="evenodd" d="M24.2863 8.79981H27.3087C28.344 8.79978 29.215 8.79976 29.9279 8.85908C30.6737 8.92113 31.3841 9.056 32.0589 9.40613C33.0868 9.93946 33.9225 10.7905 34.4463 11.8372C34.7901 12.5244 34.9225 13.2478 34.9834 14.0072C35.0417 14.7333 35.0417 15.6203 35.0417 16.6745V19.5938C35.0417 20.648 35.0417 21.535 34.9834 22.2611C34.9225 23.0205 34.7901 23.744 34.4463 24.4311C33.9225 25.4778 33.0868 26.3289 32.0589 26.8622C31.3841 27.2123 30.6737 27.3472 29.9279 27.4092C29.2149 27.4686 28.3439 27.4685 27.3087 27.4685H18.283C17.649 27.4685 17.0769 27.0812 16.8316 26.4859C16.5863 25.8906 16.7156 25.2035 17.1598 24.7428L24.6132 17.0113L26.8597 19.2571L22.034 24.2628H27.2456C28.3606 24.2628 29.1021 24.2615 29.6716 24.2141C30.2227 24.1683 30.4727 24.0874 30.6298 24.0059C31.0653 23.7799 31.4194 23.4193 31.6413 22.9757C31.7213 22.8158 31.8008 22.5612 31.8459 22C31.8924 21.4201 31.8936 20.665 31.8936 19.5296V16.7387C31.8936 15.6034 31.8924 14.8483 31.8459 14.2683C31.8008 13.7071 31.7213 13.4525 31.6413 13.2926C31.4194 12.849 31.0653 12.4885 30.6298 12.2624C30.4727 12.181 30.2227 12.1 29.6716 12.0542C29.1021 12.0068 28.3606 12.0055 27.2456 12.0055H24.3499C23.2227 12.0055 22.4726 12.0068 21.8968 12.0549C21.3392 12.1016 21.0872 12.1839 20.9296 12.2664C20.4914 12.4958 20.1366 12.8616 19.9167 13.3105C19.8376 13.472 19.7598 13.7297 19.7208 14.298C19.6806 14.8849 19.6885 15.6487 19.7022 16.7964L19.718 18.1146L16.5702 18.1537L16.5537 16.7708C16.5408 15.7048 16.5301 14.8085 16.5804 14.0746C16.6331 13.3074 16.7586 12.5757 17.0996 11.8796C17.6187 10.8201 18.4561 9.9568 19.4901 9.4154C20.1696 9.05969 20.8865 8.92289 21.6392 8.85996C22.3592 8.79976 23.2394 8.79978 24.2863 8.79981Z" fill="url(#paint2_radial_18375_211309)"/>
7 +<path fill-rule="evenodd" clip-rule="evenodd" d="M24.2863 8.79981H27.3087C28.344 8.79978 29.215 8.79976 29.9279 8.85908C30.6737 8.92113 31.3841 9.056 32.0589 9.40613C33.0868 9.93946 33.9225 10.7905 34.4463 11.8372C34.7901 12.5244 34.9225 13.2478 34.9834 14.0072C35.0417 14.7333 35.0417 15.6203 35.0417 16.6745V19.5938C35.0417 20.648 35.0417 21.535 34.9834 22.2611C34.9225 23.0205 34.7901 23.744 34.4463 24.4311C33.9225 25.4778 33.0868 26.3289 32.0589 26.8622C31.3841 27.2123 30.6737 27.3472 29.9279 27.4092C29.2149 27.4686 28.3439 27.4685 27.3087 27.4685H18.283C17.649 27.4685 17.0769 27.0812 16.8316 26.4859C16.5863 25.8906 16.7156 25.2035 17.1598 24.7428L24.6132 17.0113L26.8597 19.2571L22.034 24.2628H27.2456C28.3606 24.2628 29.1021 24.2615 29.6716 24.2141C30.2227 24.1683 30.4727 24.0874 30.6298 24.0059C31.0653 23.7799 31.4194 23.4193 31.6413 22.9757C31.7213 22.8158 31.8008 22.5612 31.8459 22C31.8924 21.4201 31.8936 20.665 31.8936 19.5296V16.7387C31.8936 15.6034 31.8924 14.8483 31.8459 14.2683C31.8008 13.7071 31.7213 13.4525 31.6413 13.2926C31.4194 12.849 31.0653 12.4885 30.6298 12.2624C30.4727 12.181 30.2227 12.1 29.6716 12.0542C29.1021 12.0068 28.3606 12.0055 27.2456 12.0055H24.3499C23.2227 12.0055 22.4726 12.0068 21.8968 12.0549C21.3392 12.1016 21.0872 12.1839 20.9296 12.2664C20.4914 12.4958 20.1366 12.8616 19.9167 13.3105C19.8376 13.472 19.7598 13.7297 19.7208 14.298C19.6806 14.8849 19.6885 15.6487 19.7022 16.7964L19.718 18.1146L16.5702 18.1537L16.5537 16.7708C16.5408 15.7048 16.5301 14.8085 16.5804 14.0746C16.6331 13.3074 16.7586 12.5757 17.0996 11.8796C17.6187 10.8201 18.4561 9.9568 19.4901 9.4154C20.1696 9.05969 20.8865 8.92289 21.6392 8.85996C22.3592 8.79976 23.2394 8.79978 24.2863 8.79981Z" fill="url(#paint3_radial_18375_211309)"/>
8 +<path fill-rule="evenodd" clip-rule="evenodd" d="M14.3466 31.9456C14.9161 31.993 15.6577 31.9942 16.7726 31.9942H19.7169C20.7335 31.9942 21.4097 31.9932 21.9305 31.9536C22.4352 31.9152 22.6667 31.8473 22.8116 31.7796C23.3153 31.5443 23.7193 31.1328 23.9504 30.6199C24.0169 30.4723 24.0836 30.2366 24.1213 29.7226C24.1602 29.1922 24.1612 28.5037 24.1612 27.4685H27.3093V27.527C27.3093 28.4884 27.3093 29.2973 27.2606 29.9613C27.2098 30.655 27.0994 31.318 26.8117 31.9566C26.2665 33.167 25.3129 34.1381 24.1242 34.6933C23.4972 34.9862 22.8461 35.0986 22.1649 35.1504C21.5128 35.2 20.7184 35.2 19.7744 35.2H16.7095C15.6743 35.2 14.8033 35.2 14.0903 35.1407C13.3445 35.0786 12.6341 34.9438 11.9593 34.5936C10.9314 34.0603 10.0957 33.2093 9.57197 32.1626C9.22814 31.4754 9.09571 30.752 9.03477 29.9925C8.97652 29.2665 8.97654 28.3795 8.97656 27.3252V24.406C8.97654 23.3517 8.97652 22.4648 9.03477 21.7387C9.09571 20.9792 9.22814 20.2558 9.57197 19.5687C10.0957 18.5219 10.9314 17.6709 11.9593 17.1376C12.6341 16.7874 13.3445 16.6526 14.0903 16.5905C14.8033 16.5312 15.6743 16.5312 16.7095 16.5313H25.7352C26.6045 16.5313 27.3093 17.2489 27.3093 18.1341C27.3093 19.0194 26.6045 19.737 25.7352 19.737H16.7726C15.6577 19.737 14.9161 19.7382 14.3466 19.7856C13.7955 19.8315 13.5455 19.9124 13.3885 19.9939C12.9529 20.2199 12.5988 20.5805 12.3769 21.024C12.2969 21.1839 12.2174 21.4385 12.1724 21.9998C12.1258 22.5797 12.1246 23.3348 12.1246 24.4701V27.261C12.1246 28.3964 12.1258 29.1515 12.1724 29.7314C12.2174 30.2927 12.2969 30.5472 12.3769 30.7072C12.5988 31.1507 12.9529 31.5113 13.3885 31.7373C13.5455 31.8188 13.7955 31.8997 14.3466 31.9456Z" fill="url(#paint4_linear_18375_211309)"/>
9 +<path fill-rule="evenodd" clip-rule="evenodd" d="M14.3466 31.9456C14.9161 31.993 15.6577 31.9942 16.7726 31.9942H19.7169C20.7335 31.9942 21.4097 31.9932 21.9305 31.9536C22.4352 31.9152 22.6667 31.8473 22.8116 31.7796C23.3153 31.5443 23.7193 31.1328 23.9504 30.6199C24.0169 30.4723 24.0836 30.2366 24.1213 29.7226C24.1602 29.1922 24.1612 28.5037 24.1612 27.4685H27.3093V27.527C27.3093 28.4884 27.3093 29.2973 27.2606 29.9613C27.2098 30.655 27.0994 31.318 26.8117 31.9566C26.2665 33.167 25.3129 34.1381 24.1242 34.6933C23.4972 34.9862 22.8461 35.0986 22.1649 35.1504C21.5128 35.2 20.7184 35.2 19.7744 35.2H16.7095C15.6743 35.2 14.8033 35.2 14.0903 35.1407C13.3445 35.0786 12.6341 34.9438 11.9593 34.5936C10.9314 34.0603 10.0957 33.2093 9.57197 32.1626C9.22814 31.4754 9.09571 30.752 9.03477 29.9925C8.97652 29.2665 8.97654 28.3795 8.97656 27.3252V24.406C8.97654 23.3517 8.97652 22.4648 9.03477 21.7387C9.09571 20.9792 9.22814 20.2558 9.57197 19.5687C10.0957 18.5219 10.9314 17.6709 11.9593 17.1376C12.6341 16.7874 13.3445 16.6526 14.0903 16.5905C14.8033 16.5312 15.6743 16.5312 16.7095 16.5313H25.7352C26.6045 16.5313 27.3093 17.2489 27.3093 18.1341C27.3093 19.0194 26.6045 19.737 25.7352 19.737H16.7726C15.6577 19.737 14.9161 19.7382 14.3466 19.7856C13.7955 19.8315 13.5455 19.9124 13.3885 19.9939C12.9529 20.2199 12.5988 20.5805 12.3769 21.024C12.2969 21.1839 12.2174 21.4385 12.1724 21.9998C12.1258 22.5797 12.1246 23.3348 12.1246 24.4701V27.261C12.1246 28.3964 12.1258 29.1515 12.1724 29.7314C12.2174 30.2927 12.2969 30.5472 12.3769 30.7072C12.5988 31.1507 12.9529 31.5113 13.3885 31.7373C13.5455 31.8188 13.7955 31.8997 14.3466 31.9456Z" fill="url(#paint5_radial_18375_211309)"/>
10 +</g>
11 +<defs>
12 +<linearGradient id="paint0_linear_18375_211309" x1="21.3967" y1="27.3236" x2="21.6105" y2="8.77607" gradientUnits="userSpaceOnUse">
13 +<stop offset="0.43118" stop-color="#498FFD"/>
14 +<stop offset="1" stop-color="#16D1D6"/>
15 +</linearGradient>
16 +<radialGradient id="paint1_radial_18375_211309" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(16.3246 14.4522) rotate(-15.6853) scale(11.9024 11.9611)">
17 +<stop stop-color="#18CFD7"/>
18 +<stop offset="1" stop-color="#18CFD7" stop-opacity="0"/>
19 +</radialGradient>
20 +<radialGradient id="paint2_radial_18375_211309" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(23.2752 19.7522) rotate(152.175) scale(4.4607 4.47293)">
21 +<stop stop-color="#4990FE"/>
22 +<stop offset="0.353962" stop-color="#4990FE"/>
23 +<stop offset="1" stop-color="#4990FE" stop-opacity="0"/>
24 +</radialGradient>
25 +<radialGradient id="paint3_radial_18375_211309" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(17.8274 25.8093) rotate(-46.1564) scale(8.13587 8.12089)">
26 +<stop stop-color="#4990FE"/>
27 +<stop offset="0.405688" stop-color="#4990FE"/>
28 +<stop offset="1" stop-color="#4990FE" stop-opacity="0"/>
29 +</radialGradient>
30 +<linearGradient id="paint4_linear_18375_211309" x1="27.4068" y1="35.2735" x2="27.4755" y2="16.3452" gradientUnits="userSpaceOnUse">
31 +<stop stop-color="#2950FF"/>
32 +<stop offset="0.821717" stop-color="#498FFD"/>
33 +</linearGradient>
34 +<radialGradient id="paint5_radial_18375_211309" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(27.4068 27.3235) rotate(129.077) scale(8.04633 7.94952)">
35 +<stop offset="0.337169" stop-color="#2950FF"/>
36 +<stop offset="0.792226" stop-color="#2950FF" stop-opacity="0"/>
37 +</radialGradient>
38 +<clipPath id="clip0_18375_211309">
39 +<rect width="44" height="44" fill="white"/>
40 +</clipPath>
41 +</defs>
42 +</svg>
res/pictures/card_icons/og_icons/zec-og.svg new
+4
@@ -0,0 +1,4 @@
1 +<svg opacity="0.85" width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M43.3454 27.3223C40.4067 39.1082 28.4684 46.2808 16.6799 43.3418C4.8963 40.4034 -2.27714 28.4657 0.662918 16.6805C3.60023 4.89335 15.5386 -2.28003 27.3236 0.658347C39.1113 3.59672 46.2841 15.5358 43.3454 27.3223Z" fill="#F4B728"/>
3 +<path d="M29.8473 15.1381V11.7901H23.8446V8.10059H20.1551V11.7901H14.1523V16.2308H23.4543L14.1523 28.8604V32.2085H20.1551V35.8882H23.8446V32.2085H29.8473V27.7678H20.5356L29.8473 15.1381Z" fill="white"/>
4 +</svg>
res/pictures/card_icons/outline_icons/BTC-outline.svg new
+4
@@ -0,0 +1,4 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M0.663201 16.6807C3.60017 4.89364 15.5368 -2.27989 27.3204 0.658246C39.1069 3.59661 46.2793 15.5358 43.3409 27.3223L43.1964 27.8711C40.0797 39.1479 28.6519 46.0152 17.2306 43.4727L16.6778 43.3418C5.07994 40.4492 -2.05145 28.8367 0.532342 17.2334L0.663201 16.6807ZM26.7765 2.84184C16.1988 0.204202 5.48238 6.64322 2.84582 17.2247V17.2256C0.207173 27.8048 6.64638 38.5206 17.2228 41.1582C27.8042 43.7966 38.5195 37.3581 41.1573 26.7784C43.754 16.3626 37.5561 5.81386 27.2696 2.97075L26.7765 2.84184Z" fill="white"/>
3 +<path d="M31.6952 18.8661C32.1332 15.9387 29.9043 14.365 26.8566 13.3152L27.8452 9.3497L25.4314 8.74814L24.4689 12.6091C23.8344 12.451 23.1826 12.3018 22.535 12.154L23.5044 8.26758L21.0919 7.66602L20.1026 11.6301C19.5774 11.5105 19.0617 11.3923 18.5612 11.2678L18.564 11.2555L15.2351 10.4243L14.593 13.0024C14.593 13.0024 16.3839 13.4128 16.3461 13.4383C17.3237 13.6823 17.5004 14.3293 17.4709 14.8421L16.3447 19.3597C16.4121 19.3769 16.4994 19.4016 16.5957 19.4401C16.5152 19.4202 16.4293 19.3982 16.3406 19.3769L14.7621 25.7053C14.6425 26.0023 14.3393 26.4478 13.6559 26.2787C13.68 26.3138 11.9014 25.8408 11.9014 25.8408L10.7031 28.6038L13.8443 29.3869C14.4287 29.5333 15.0014 29.6866 15.5651 29.831L14.5662 33.8419L16.9772 34.4435L17.9666 30.4752C18.6252 30.654 19.2646 30.819 19.8902 30.9743L18.9043 34.924L21.3181 35.5256L22.3171 31.5223C26.4331 32.3012 29.5282 31.987 30.8311 28.2642C31.8809 25.2667 30.7788 23.5376 28.6132 22.4101C30.1903 22.0465 31.3783 21.009 31.6952 18.8661ZM26.1801 26.5998C25.4342 29.5973 20.3872 27.9768 18.751 27.5705L20.0765 22.2568C21.7127 22.6652 26.9597 23.4737 26.1801 26.5998ZM26.9267 18.8228C26.2461 21.5494 22.0455 20.1641 20.6829 19.8245L21.8846 15.0051C23.2472 15.3447 27.6356 15.9786 26.9267 18.8228Z" fill="white"/>
4 +</svg>
res/pictures/card_icons/outline_icons/arb-outline.svg new
+3
@@ -0,0 +1,3 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M22.5674 0.00683594C34.4553 0.307881 44 10.0395 44 22L43.9932 22.5674C43.6921 34.4553 33.9604 43.9999 22 44L21.4326 43.9932C9.73318 43.697 0.303107 34.2668 0.00683594 22.5674L0 22C0 9.84974 9.84974 0 22 0L22.5674 0.00683594ZM22 1.5C10.6782 1.5 1.5 10.6782 1.5 22C1.5001 33.3218 10.6782 42.5 22 42.5C33.3217 42.4999 42.4999 33.3217 42.5 22C42.5 10.6782 33.3218 1.5001 22 1.5ZM22.0596 6.5791C22.4596 6.58006 22.8603 6.67867 23.2119 6.88477L34.4082 13.3418C35.1268 13.7559 35.5661 14.5107 35.5664 15.3389V28.2549C35.5663 29.0832 35.1269 29.8387 34.4082 30.2529L32.4121 31.4043L32.4189 31.4219L29.4824 33.1162L29.4766 33.1006L28.3076 33.7744L28.3125 33.7861L25.376 35.4795L25.3721 35.4697L23.2236 36.7109C22.8583 36.9179 22.4673 37.0146 22.0654 37.0146C21.6639 37.0145 21.2621 36.9177 20.9092 36.7109L18.7646 35.4717L18.7627 35.4795L15.8262 33.7861L22.7705 14.7539C22.8438 14.5593 23.0392 14.4258 23.2461 14.4258H26.085V14.4131C26.2552 14.4132 26.3767 14.5836 26.3164 14.7539L19.418 33.6787L21.8594 35.0889C21.92 35.1252 21.9927 35.1502 22.0654 35.1504C22.1385 35.1504 22.2125 35.1254 22.2734 35.0889L24.7188 33.6758L22.8428 28.5215C22.8063 28.3998 22.8063 28.2785 22.8428 28.1689L24.3164 24.123C24.402 23.9047 24.7054 23.9047 24.791 24.123L27.6543 31.9814L28.8223 31.3076L25.3271 21.7236C25.2907 21.6021 25.2909 21.4805 25.3271 21.3711L26.8018 17.3252C26.8871 17.1059 27.1921 17.1059 27.2773 17.3252V17.3369L31.7578 29.6133L33.458 28.6328C33.5798 28.5597 33.665 28.4128 33.665 28.2666V15.3516C33.6649 15.2055 33.5919 15.0594 33.458 14.9863L22.2734 8.5293C22.2125 8.49275 22.1385 8.46777 22.0654 8.46777V8.45605C21.9928 8.45625 21.92 8.48031 21.8594 8.5166L10.6748 14.9746C10.5532 15.0476 10.4681 15.1929 10.4678 15.3389V28.2666C10.4678 28.4128 10.5408 28.5597 10.6748 28.6328L12.3779 29.6162L17.7998 14.7539C17.8731 14.5595 18.0677 14.426 18.2744 14.4258H21.1133L21.126 14.4131C21.2961 14.4133 21.4177 14.5837 21.3574 14.7539L15.3145 31.3105L15.3223 31.3154L14.666 33.1064L14.6602 33.1025L14.6562 33.1162L11.7197 31.4219L11.7246 31.4072L9.72461 30.2529C9.00588 29.8387 8.56655 29.0832 8.56641 28.2549V15.3389C8.56666 14.5107 9.00597 13.7559 9.72461 13.3418L20.9092 6.88477C21.2727 6.6788 21.6599 6.58018 22.0596 6.5791Z" fill="white"/>
3 +</svg>
res/pictures/card_icons/outline_icons/base-outline.svg new
+10
@@ -0,0 +1,10 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M22.5674 0.00683594C34.4553 0.307881 44 10.0395 44 22L43.9932 22.5674C43.6921 34.4553 33.9604 43.9999 22 44L21.4326 43.9932C9.73318 43.697 0.303107 34.2668 0.00683594 22.5674L0 22C0 9.84974 9.84974 0 22 0L22.5674 0.00683594ZM22 2.25C11.0924 2.25 2.25 11.0924 2.25 22C2.2501 32.9075 11.0924 41.75 22 41.75C32.9075 41.7499 41.7499 32.9075 41.75 22C41.75 11.0924 32.9075 2.2501 22 2.25ZM21.9775 9.01758C29.1697 9.01773 35 14.838 35 22.0176C35 29.1971 29.1697 35.0174 21.9775 35.0176C15.154 35.0176 9.55599 29.7787 9 23.1104H26.2129V20.9248H9C9.55595 14.2565 15.154 9.01758 21.9775 9.01758Z" fill="url(#paint0_linear_18224_520498)"/>
3 +<path d="M22.5674 0.00683594C34.4553 0.307881 44 10.0395 44 22L43.9932 22.5674C43.6921 34.4553 33.9604 43.9999 22 44L21.4326 43.9932C9.73318 43.697 0.303107 34.2668 0.00683594 22.5674L0 22C0 9.84974 9.84974 0 22 0L22.5674 0.00683594ZM22 2.25C11.0924 2.25 2.25 11.0924 2.25 22C2.2501 32.9075 11.0924 41.75 22 41.75C32.9075 41.7499 41.7499 32.9075 41.75 22C41.75 11.0924 32.9075 2.2501 22 2.25ZM21.9775 9.01758C29.1697 9.01773 35 14.838 35 22.0176C35 29.1971 29.1697 35.0174 21.9775 35.0176C15.154 35.0176 9.55599 29.7787 9 23.1104H26.2129V20.9248H9C9.55595 14.2565 15.154 9.01758 21.9775 9.01758Z" fill="white"/>
4 +<defs>
5 +<linearGradient id="paint0_linear_18224_520498" x1="22" y1="9.01758" x2="22" y2="35.0176" gradientUnits="userSpaceOnUse">
6 +<stop stop-color="white"/>
7 +<stop offset="1" stop-color="#A7C3FF"/>
8 +</linearGradient>
9 +</defs>
10 +</svg>
res/pictures/card_icons/outline_icons/bch-outline.svg new
+3
@@ -0,0 +1,3 @@
1 +<svg width="45" height="45" viewBox="0 0 45 45" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M22.9424 0.506836C34.8304 0.807781 44.375 10.5394 44.375 22.5L44.3682 23.0674C44.0672 34.9554 34.3356 44.5 22.375 44.5L21.8076 44.4932C10.1081 44.197 0.678008 34.7669 0.381836 23.0674L0.375 22.5C0.375 10.3497 10.2247 0.5 22.375 0.5L22.9424 0.506836ZM22.375 2.75C11.4674 2.75 2.625 11.5924 2.625 22.5C2.625 33.4076 11.4674 42.25 22.375 42.25C33.2826 42.25 42.125 33.4076 42.125 22.5C42.125 11.5924 33.2826 2.75 22.375 2.75ZM22.4824 12.5889C25.5925 12.0696 28.1327 12.6062 29.2383 15.1133C29.9696 17.1066 29.3725 18.6307 28.1943 19.6748C30.1096 19.8702 32.416 21.6013 32.751 23.7119C33.2758 27.2129 30.7124 29.5025 27.083 30.3848L28.0938 34.2988L25.7373 34.9072L24.7324 30.9814C24.1182 31.1434 23.4875 31.3004 22.8398 31.4512L23.8506 35.3984L21.4941 36.0068L20.4834 32.0879C19.9328 32.2269 15.7591 33.2949 15.7207 33.3047L15.4639 30.3623C15.4865 30.3569 17.2166 29.9431 17.1777 29.9209C17.8366 29.7422 17.8929 29.2173 17.8594 28.9102L15.1113 18.29C14.8991 17.8379 14.4473 17.3574 13.4873 17.6084C13.4909 17.5734 11.7725 18.0557 11.7725 18.0557L11.125 15.5312C11.1478 15.5254 15.3761 14.4426 15.8828 14.2979L14.8828 10.4229L17.2393 9.81348L18.2217 13.6553C18.8526 13.4766 19.4896 13.3429 20.1094 13.1865L19.127 9.32227L21.4824 8.71387L22.4824 12.5889ZM28.1055 24.3535C27.3123 21.2997 22.3762 23.0588 20.7793 23.4775L22.1641 28.665C23.7554 28.2463 28.5745 27.821 28.1055 24.3535ZM25.2012 17.29C24.1903 14.4378 20.3221 16.0336 18.9873 16.3633L20.249 21.0703C21.5782 20.7297 25.6981 20.3721 25.2012 17.29Z" fill="white"/>
3 +</svg>
res/pictures/card_icons/outline_icons/bnb-outline.svg new
+3
@@ -0,0 +1,3 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M0.659345 16.6807C3.59663 4.89364 15.5346 -2.2799 27.3195 0.65825C39.1072 3.59661 46.2806 15.5359 43.342 27.3223L43.1974 27.8711C40.0804 39.148 28.6513 46.0143 17.2287 43.4717L16.6759 43.3418C5.0767 40.4493 -2.05558 28.8367 0.528486 17.2334L0.659345 16.6807ZM26.7756 2.84184C16.1964 0.204118 5.47877 6.64337 2.84196 17.2247V17.2256C0.203064 27.8046 6.64303 38.5205 17.2209 41.1582C27.8037 43.7966 38.5203 37.3579 41.1584 26.7784C43.7552 16.3628 37.5566 5.8139 27.2687 2.97075L26.7756 2.84184ZM24.8683 34.9336L22.047 36.584L19.2258 34.9336V31.6329L22.047 33.2832L24.8683 31.6329V34.9336ZM12.3683 21.9864V27.6202L17.2218 30.4375V33.7383L9.54704 29.2706V20.336L12.3683 21.9864ZM34.547 29.2706L26.8722 33.7383V30.4375L31.7258 27.6202V21.9864L34.547 20.336V29.2706ZM29.7218 17.5186V20.8194L24.8683 23.6368V29.2706L22.047 30.9209L19.2258 29.2706V23.6368L14.3722 20.8194V17.5186L17.1935 15.8682L22.047 18.6856L26.9006 15.8682L29.7218 17.5186ZM17.1935 24.8028V28.1036L14.3722 26.4532V23.1524L17.1935 24.8028ZM29.7218 26.4532L26.9006 28.1036V24.8028L29.7218 23.1524V26.4532ZM15.1906 14.7012L12.3683 16.3516V19.6524L9.54704 18.002V14.7012L12.3683 13.0508L15.1906 14.7012ZM34.547 14.7012V18.002L31.7258 19.6524V16.3516L28.9035 14.7012L31.7258 13.0508L34.547 14.7012ZM24.8683 14.7012L22.047 16.3516L19.2258 14.7012L22.047 13.0508L24.8683 14.7012ZM29.7218 11.8848L26.9006 13.5352L22.047 10.7178L17.1935 13.5352L14.3722 11.8848L22.047 7.41704L29.7218 11.8848Z" fill="white"/>
3 +</svg>
res/pictures/card_icons/outline_icons/dcr-outline.svg new
+3
@@ -0,0 +1,3 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M22 0C34.1503 0 44 9.84974 44 22C44 34.1503 34.1503 44 22 44C9.84974 44 0 34.1503 0 22C0 9.84974 9.84974 0 22 0ZM22 2.25C11.0924 2.25 2.25 11.0924 2.25 22C2.25 32.9076 11.0924 41.75 22 41.75C32.9076 41.75 41.75 32.9076 41.75 22C41.75 11.0924 32.9076 2.25 22 2.25ZM23.623 19.6318H17.1406C15.9823 19.6318 14.8709 20.0921 14.0518 20.9111C13.2326 21.7303 12.7725 22.8415 12.7725 24C12.7725 25.1585 13.2326 26.2697 14.0518 27.0889C14.8709 27.9079 15.9823 28.3682 17.1406 28.3682H19.2031L23.6201 32.2021H17.1406C15.2387 32.2017 13.396 31.5399 11.9277 30.3311C10.4595 29.1221 9.45626 27.4407 9.09082 25.5742C8.72542 23.7077 9.01991 21.772 9.92383 20.0986C10.8278 18.4254 12.2856 17.118 14.0469 16.4004L8.94043 11.9619H14.7939L23.623 19.6318ZM26.9434 11.9619C28.8452 11.9624 30.6881 12.6242 32.1562 13.833C33.6244 15.042 34.6278 16.7234 34.9932 18.5898C35.3585 20.4563 35.064 22.3921 34.1602 24.0654C33.2562 25.7387 31.7983 27.046 30.0371 27.7637L35.1475 32.2002H29.2949L20.4619 24.5322H26.9434C28.1016 24.5321 29.2132 24.0719 30.0322 23.2529C30.8512 22.4338 31.3115 21.3224 31.3115 20.1641C31.3115 19.0057 30.8513 17.8943 30.0322 17.0752C29.2132 16.2562 28.1016 15.796 26.9434 15.7959H24.8809L20.4619 11.9619H26.9434Z" fill="white"/>
3 +</svg>
res/pictures/card_icons/outline_icons/doge-outline.svg new
+3
@@ -0,0 +1,3 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M22.5674 0.00683594C34.4554 0.30778 44 10.0394 44 22L43.9932 22.5674C43.6922 34.4554 33.9606 44 22 44L21.4326 43.9932C9.73312 43.697 0.303007 34.2669 0.00683594 22.5674L0 22C0 9.84974 9.84974 0 22 0L22.5674 0.00683594ZM22 2.25C11.0924 2.25 2.25 11.0924 2.25 22C2.25 32.9076 11.0924 41.75 22 41.75C32.9076 41.75 41.75 32.9076 41.75 22C41.75 11.0924 32.9076 2.25 22 2.25ZM20.7578 10.1025C22.3768 10.1025 33.0898 9.7679 33.0898 22.1914C33.0897 34.8211 21.8867 33.8818 21.8867 33.8818H13.9199V23.29H11.1113V20.6953H13.9189V10.1025H20.7578ZM18.4062 20.6953H23.3516V23.2891H18.4062V29.4863H21.7031C22.5503 29.4863 28.6589 29.5819 28.6494 22.2764C28.6399 14.9714 22.726 14.4981 21.5498 14.498H18.4062V20.6953Z" fill="white"/>
3 +</svg>
res/pictures/card_icons/outline_icons/eth-outline.svg new
+3
@@ -0,0 +1,3 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M22.5674 0.00683594C34.4554 0.30778 44 10.0394 44 22L43.9932 22.5674C43.6922 34.4554 33.9606 44 22 44L21.4326 43.9932C9.73312 43.697 0.303007 34.2669 0.00683594 22.5674L0 22C0 9.84974 9.84974 0 22 0L22.5674 0.00683594ZM22 2.25C11.0924 2.25 2.25 11.0924 2.25 22C2.25 32.9076 11.0924 41.75 22 41.75C32.9076 41.75 41.75 32.9076 41.75 22C41.75 11.0924 32.9076 2.25 22 2.25ZM30.8867 23.9004C30.9144 23.884 30.9499 23.8895 30.9717 23.9131C30.9933 23.9367 30.9958 23.9718 30.9775 23.998L22.0459 36.5918C22.0369 36.6045 22.024 36.613 22.0098 36.6172L22.0088 36.6182C21.9806 36.627 21.9498 36.6168 21.9326 36.5928L13.001 24.0156C12.9827 23.9895 12.9854 23.9543 13.0068 23.9307C13.0286 23.907 13.0641 23.9017 13.0918 23.918L21.9873 29.167L30.8867 23.9004ZM22.0078 7.35742C22.0244 7.3619 22.0395 7.37142 22.0488 7.38672L30.9805 22.2168C30.9898 22.2323 30.9926 22.252 30.9883 22.2695C30.9838 22.287 30.9716 22.3023 30.9561 22.3115L22.0254 27.5801C22.0141 27.5867 22.0011 27.5891 21.9883 27.5889C21.9761 27.5889 21.9639 27.5864 21.9531 27.5801L13.0215 22.3115C13.0062 22.3023 12.9947 22.2868 12.9902 22.2695C12.9859 22.252 12.9887 22.2323 12.998 22.2168L21.9297 7.38672L21.9355 7.38086C21.9372 7.37868 21.9405 7.37794 21.9424 7.37598C21.9501 7.36837 21.9576 7.36159 21.9678 7.3584C21.9691 7.35792 21.9703 7.35685 21.9717 7.35645H22.0059L22.0078 7.35742Z" fill="white"/>
3 +</svg>
res/pictures/card_icons/outline_icons/ln-outline.svg new
+3
@@ -0,0 +1,3 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M0.659295 16.6807C3.59626 4.89364 15.5329 -2.27989 27.3165 0.658246C39.103 3.59661 46.2753 15.5358 43.337 27.3223L43.1925 27.8711C40.0757 39.1479 28.6481 46.0144 17.2267 43.4717L16.6739 43.3418C5.07603 40.4492 -2.05535 28.8367 0.528435 17.2334L0.659295 16.6807ZM26.7726 2.84184C16.1949 0.204203 5.47848 6.64322 2.84191 17.2247V17.2256C0.203268 27.8048 6.64247 38.5206 17.2189 41.1582C27.8002 43.7966 38.5155 37.3581 41.1534 26.7784C43.7501 16.3626 37.5522 5.81386 27.2657 2.97075L26.7726 2.84184ZM26.9894 8.54301C27.7063 8.08414 28.3898 8.54344 27.9523 9.3311L22.7003 19.6602H32.0655C32.0655 19.6602 33.5536 19.6603 32.0655 20.8858L15.8722 35.1534C14.7343 36.1162 13.9468 35.5915 14.7345 34.1036L19.8116 24.0372H10.5323C10.5111 24.0371 9.05525 24.027 10.5323 22.7237L26.9894 8.54301Z" fill="white"/>
3 +</svg>
res/pictures/card_icons/outline_icons/ltc-outline.svg new
+3
@@ -0,0 +1,3 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M0.659295 16.6807C3.59627 4.89364 15.5329 -2.27989 27.3165 0.658245C39.103 3.59661 46.2753 15.5358 43.337 27.3223L43.1925 27.8711C40.0757 39.148 28.6481 46.0144 17.2267 43.4717L16.6739 43.3418C5.07603 40.4492 -2.05535 28.8367 0.528436 17.2334L0.659295 16.6807ZM26.7726 2.84184C16.1949 0.204202 5.47848 6.64322 2.84191 17.2247V17.2256C0.203267 27.8048 6.64247 38.5206 17.2189 41.1582C27.8002 43.7966 38.5155 37.3581 41.1534 26.7784C43.7501 16.3626 37.5522 5.81386 27.2657 2.97075L26.7726 2.84184ZM25.4093 10.2022L23.0099 19.2373L26.34 18.0205L26.3683 18.0987L25.5265 21.2608L22.1437 22.4971L20.715 27.878H32.0206L30.8595 32.2022H12.7491L14.5987 25.2539L11.9806 26.21L12.8458 22.9502L15.4659 21.9932L18.6036 10.2022H25.4093Z" fill="white"/>
3 +</svg>
res/pictures/card_icons/outline_icons/pol-outline.svg new
+3
@@ -0,0 +1,3 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M22 0C34.1917 0 44 9.80826 44 22C44 34.1917 34.1917 44 22 44C9.80826 44 0 34.1917 0 22C0 9.80826 9.80826 0 22 0ZM22 2.5C11.189 2.5 2.5 11.189 2.5 22C2.5 32.811 11.189 41.5 22 41.5C32.811 41.5 41.5 32.811 41.5 22C41.5 11.189 32.811 2.5 22 2.5ZM35.1895 14.374V22.9316L27.7109 27.1855L25.0693 25.6621V21.8467L27.7363 23.3936L31.8457 21.001V16.2822L27.7363 13.9111L23.624 16.2822V29.5566L16.2188 33.8359L8.78906 29.5566V21.0469L16.1943 16.7451L18.8613 18.2588V22.0938L16.2168 20.5605L12.1055 22.9092V27.6494L16.2168 30.0205L20.3037 27.6514V14.374L27.7109 10.1201L35.1895 14.374Z" fill="white"/>
3 +</svg>
res/pictures/card_icons/outline_icons/sol-outline.svg new
+4
@@ -0,0 +1,4 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M22.5674 0.00683594C34.4554 0.30778 44 10.0394 44 22L43.9932 22.5674C43.6922 34.4554 33.9606 44 22 44L21.4326 43.9932C9.73312 43.697 0.303007 34.2669 0.00683594 22.5674L0 22C0 9.84974 9.84974 0 22 0L22.5674 0.00683594ZM22 2.25C11.0924 2.25 2.25 11.0924 2.25 22C2.25 32.9076 11.0924 41.75 22 41.75C32.9076 41.75 41.75 32.9076 41.75 22C41.75 11.0924 32.9076 2.25 22 2.25ZM34.084 26.9639C34.4481 26.9639 34.6298 27.4043 34.3711 27.6582L30.4287 31.6006C30.2755 31.7538 30.0699 31.8407 29.8545 31.8408H9.90137C9.53761 31.8404 9.35568 31.3993 9.61426 31.1455L13.5566 27.2031C13.7099 27.0498 13.9163 26.9639 14.1318 26.9639H34.084ZM29.8545 19.5576C30.0699 19.5577 30.2755 19.6437 30.4287 19.7969L34.3711 23.7344C34.6298 23.9883 34.4481 24.4287 34.084 24.4287H14.1318C13.9163 24.4287 13.7099 24.3427 13.5566 24.1895L9.61426 20.252C9.35573 19.9982 9.53762 19.558 9.90137 19.5576H29.8545ZM34.084 12.248C34.4481 12.248 34.6298 12.6885 34.3711 12.9424L30.4287 16.8799C30.2755 17.0331 30.0699 17.12 29.8545 17.1201H9.90137C9.53761 17.1197 9.35568 16.6786 9.61426 16.4248L13.5566 12.4873C13.7099 12.334 13.9163 12.248 14.1318 12.248H34.084Z" fill="#C536F6"/>
3 +<path d="M22.5674 0.00683594C34.4554 0.30778 44 10.0394 44 22L43.9932 22.5674C43.6922 34.4554 33.9606 44 22 44L21.4326 43.9932C9.73312 43.697 0.303007 34.2669 0.00683594 22.5674L0 22C0 9.84974 9.84974 0 22 0L22.5674 0.00683594ZM22 2.25C11.0924 2.25 2.25 11.0924 2.25 22C2.25 32.9076 11.0924 41.75 22 41.75C32.9076 41.75 41.75 32.9076 41.75 22C41.75 11.0924 32.9076 2.25 22 2.25ZM34.084 26.9639C34.4481 26.9639 34.6298 27.4043 34.3711 27.6582L30.4287 31.6006C30.2755 31.7538 30.0699 31.8407 29.8545 31.8408H9.90137C9.53761 31.8404 9.35568 31.3993 9.61426 31.1455L13.5566 27.2031C13.7099 27.0498 13.9163 26.9639 14.1318 26.9639H34.084ZM29.8545 19.5576C30.0699 19.5577 30.2755 19.6437 30.4287 19.7969L34.3711 23.7344C34.6298 23.9883 34.4481 24.4287 34.084 24.4287H14.1318C13.9163 24.4287 13.7099 24.3427 13.5566 24.1895L9.61426 20.252C9.35573 19.9982 9.53762 19.558 9.90137 19.5576H29.8545ZM34.084 12.248C34.4481 12.248 34.6298 12.6885 34.3711 12.9424L30.4287 16.8799C30.2755 17.0331 30.0699 17.12 29.8545 17.1201H9.90137C9.53761 17.1197 9.35568 16.6786 9.61426 16.4248L13.5566 12.4873C13.7099 12.334 13.9163 12.248 14.1318 12.248H34.084Z" fill="white"/>
4 +</svg>
res/pictures/card_icons/outline_icons/trx-outline.svg new
+3
@@ -0,0 +1,3 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M22 0C34.1917 0 44 9.80826 44 22C44 34.1917 34.1917 44 22 44C9.80826 44 0 34.1917 0 22C0 9.80826 9.80826 0 22 0ZM22 2.25C11.0509 2.25 2.25 11.0509 2.25 22C2.25 32.9491 11.0509 41.75 22 41.75C32.9491 41.75 41.75 32.9491 41.75 22C41.75 11.0509 32.9491 2.25 22 2.25ZM10.5078 9.25488C10.8446 9.21889 27.2926 12.2937 30.8281 12.9531C31.0024 13.0152 31.1653 13.1059 31.3096 13.2217L31.3965 13.2832C32.8634 14.5852 34.6648 16.4209 35.9668 17.623C36.103 17.7417 36.2065 17.8941 36.2666 18.0645C36.3265 18.2347 36.3412 18.418 36.3096 18.5957C36.1856 18.8228 36.0404 19.0376 35.876 19.2373C34.6064 20.8578 22.0772 36.0526 22.0352 36.1035C22.0352 36.1035 21.3323 37.0314 21.167 37.0322H21.0977C20.7895 37.0062 20.6239 36.4937 20.5371 36.2246C19.0958 32.2569 11.779 15.3526 9.92578 10.1924V9.83691L9.94727 9.78027C9.99426 9.64354 10.0714 9.51908 10.1729 9.41602L10.2559 9.35059C10.3315 9.30042 10.4179 9.26747 10.5078 9.25488ZM20.9971 32.5967L22.4033 20.54L12.6865 12.293L20.9971 32.5967ZM24.0098 21.0908L22.6553 32.5879L33.4629 19.5674L24.0098 21.0908ZM25.2598 19.3984L33.7705 17.8486L30.624 14.9492L25.2598 19.3984ZM23.1768 19.1074L28.8838 14.2939L13.9404 11.5381L23.1768 19.1074Z" fill="white"/>
3 +</svg>
res/pictures/card_icons/outline_icons/xmr-outline.svg new
+3
@@ -0,0 +1,3 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M22 0C9.8472 0 0 9.8472 0 22C0 34.1528 9.8472 44 22 44C34.1528 44 44 34.1528 44 22C44 9.8472 34.1528 0 22 0ZM2.244 22C2.244 11.1056 11.1056 2.244 22 2.244C32.8944 2.244 41.756 11.1056 41.756 22C41.756 24.3672 41.3336 26.6464 40.568 28.7496H34.4256V12.716L22.308 24.8248L22 25.1416L21.6832 24.8248L9.5656 12.716V28.7496H3.432C2.6664 26.6464 2.244 24.3672 2.244 22ZM22 41.756C14.7136 41.756 8.3336 37.7872 4.9104 31.9H12.98V20.7944L13.728 21.5512L22 29.8144L31.02 20.7944V31.9H39.0896C35.6664 37.7872 29.2864 41.756 22 41.756Z" fill="white"/>
3 +</svg>
res/pictures/card_icons/outline_icons/xno-outline.svg new
+3
@@ -0,0 +1,3 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M22 0C34.1503 0 44 9.84974 44 22C44 34.1503 34.1503 44 22 44C9.84974 44 0 34.1503 0 22C0 9.84974 9.84974 0 22 0ZM22 2.25C11.0924 2.25 2.25 11.0924 2.25 22C2.25 32.9076 11.0924 41.75 22 41.75C32.9076 41.75 41.75 32.9076 41.75 22C41.75 11.0924 32.9076 2.25 22 2.25ZM15.4707 9.34961L22.0752 19.6875L28.8213 9.34766L28.8945 9.23438H31.376L31.126 9.62012L24.0166 20.5889H29.9346V22.5293H23.9814L25.4941 24.9092H29.9346V26.8496H26.7285L31.7031 34.6758L31.9473 35.0596H29.3848L29.3115 34.9443L24.1143 26.8496H19.9326L14.6562 34.9463L14.583 35.0596H12.0332L12.2822 34.6738L17.3271 26.8496H14.1094V24.9092H18.5781L20.1133 22.5293H14.1094V20.5889H20.0547L13.04 9.61914L12.7939 9.23438H15.3965L15.4707 9.34961Z" fill="white"/>
3 +</svg>
res/pictures/card_icons/outline_icons/zano-outline.svg new
+3
@@ -0,0 +1,3 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M22 0C34.1917 0 44 9.80826 44 22C44 34.1917 34.1917 44 22 44C9.80826 44 0 34.1917 0 22C0 9.80826 9.80826 0 22 0ZM22 2.25C11.0509 2.25 2.25 11.0509 2.25 22C2.25 32.9491 11.0509 41.75 22 41.75C32.9491 41.75 41.75 32.9491 41.75 22C41.75 11.0509 32.9491 2.25 22 2.25ZM26.9814 9.74902C27.9545 9.749 28.7732 9.74964 29.4434 9.80469C30.1444 9.86227 30.812 9.98762 31.4463 10.3125C32.4125 10.8074 33.1981 11.597 33.6904 12.5684C34.0136 13.206 34.138 13.8773 34.1953 14.582C34.2501 15.2558 34.25 16.0793 34.25 17.0576V19.7666C34.25 20.7447 34.2501 21.5675 34.1953 22.2412C34.138 22.946 34.0137 23.6182 33.6904 24.2559C33.1981 25.227 32.4124 26.0168 31.4463 26.5117C30.8121 26.8365 30.1443 26.962 29.4434 27.0195C29.1083 27.047 28.7362 27.0605 28.3262 27.0674C27.916 27.0743 27.468 27.0742 26.9814 27.0742V27.1279C26.9815 28.0201 26.9823 28.7715 26.9365 29.3877C26.8887 30.0313 26.785 30.6468 26.5146 31.2393C26.0021 32.3624 25.1054 33.2631 23.9883 33.7783C23.3989 34.0502 22.7868 34.1551 22.1465 34.2031C21.5337 34.2492 20.7868 34.249 19.8994 34.249H17.0186C16.0456 34.249 15.2268 34.2484 14.5566 34.1934C13.8556 34.1358 13.187 34.0114 12.5527 33.6865C11.5866 33.1916 10.8018 32.401 10.3096 31.4297C9.98641 30.7921 9.86196 30.1208 9.80469 29.416C9.74995 28.7424 9.74998 27.9195 9.75 26.9414V24.2314C9.74998 23.2534 9.74995 22.4305 9.80469 21.7568C9.86196 21.0521 9.98642 20.3808 10.3096 19.7432C10.8018 18.7719 11.5866 17.9813 12.5527 17.4863C13.187 17.1614 13.8556 17.0371 14.5566 16.9795C15.1925 16.9273 15.9619 16.924 16.8701 16.9238C16.8653 16.5146 16.8607 16.1336 16.8623 15.7803C16.8642 15.3634 16.8738 14.9851 16.8975 14.6445C16.9469 13.9326 17.0643 13.2534 17.3848 12.6074C17.8726 11.6242 18.6599 10.8227 19.6318 10.3203C20.2704 9.99021 20.9449 9.86407 21.6523 9.80566C22.3291 9.74981 23.1566 9.749 24.1406 9.74902H26.9814ZM17.0771 19.8994C16.0294 19.8994 15.3321 19.9004 14.7969 19.9443C14.2791 19.9869 14.0441 20.0621 13.8965 20.1377C13.4872 20.3474 13.1539 20.6822 12.9453 21.0938C12.8702 21.2422 12.7962 21.4787 12.7539 21.999C12.7102 22.5371 12.709 23.2377 12.709 24.291V26.8818C12.709 27.9351 12.7102 28.6357 12.7539 29.1738C12.7962 29.6941 12.8702 29.9307 12.9453 30.0791C13.1539 30.4906 13.4872 30.8254 13.8965 31.0352C14.0441 31.1107 14.2791 31.1859 14.7969 31.2285C15.3321 31.2724 16.0294 31.2734 17.0771 31.2734H19.8457C20.801 31.2734 21.4363 31.273 21.9258 31.2363C22.4001 31.2007 22.6176 31.137 22.7539 31.0742C23.2273 30.8559 23.607 30.474 23.8242 29.998C23.8867 29.8611 23.9499 29.6426 23.9854 29.166C24.0219 28.6739 24.0225 28.0348 24.0225 27.0742H18.4971C18.4601 27.0742 18.4232 27.0731 18.3867 27.0703C17.8356 27.0289 17.349 26.6802 17.1328 26.1621C16.9024 25.6098 17.0242 24.9724 17.4414 24.5449L21.9785 19.8994H17.0771ZM24.2002 12.7246C23.1408 12.7246 22.4357 12.7258 21.8945 12.7705C21.3704 12.8138 21.1335 12.8902 20.9854 12.9668C20.5735 13.1797 20.2399 13.5189 20.0332 13.9355C19.9589 14.0854 19.8853 14.3243 19.8486 14.8516C19.8297 15.124 19.8225 15.4378 19.8213 15.8164C19.8202 16.1348 19.8241 16.4991 19.8291 16.9238H25.502C26.319 16.9238 26.9812 17.5898 26.9814 18.4111C26.9814 18.8167 26.8194 19.1838 26.5576 19.4521L26.5596 19.4541L22.0234 24.0996H26.9219C27.446 24.0996 27.8827 24.0986 28.2549 24.0928C28.6268 24.087 28.9346 24.0757 29.2021 24.0537C29.7202 24.0112 29.9559 23.936 30.1035 23.8604C30.5126 23.6507 30.8452 23.3165 31.0537 22.9053C31.1289 22.7568 31.2038 22.5198 31.2461 21.999C31.2898 21.4609 31.291 20.7603 31.291 19.707V17.1172C31.291 16.0636 31.2898 15.3624 31.2461 14.8242C31.2038 14.3035 31.1289 14.0673 31.0537 13.9189C30.8452 13.5075 30.5128 13.1726 30.1035 12.9629C29.9559 12.8873 29.7202 12.8121 29.2021 12.7695C28.9346 12.7476 28.6268 12.7363 28.2549 12.7305L26.9219 12.7246H24.2002Z" fill="white"/>
3 +</svg>
res/pictures/card_icons/outline_icons/zec-outline.svg new
+10
@@ -0,0 +1,10 @@
1 +<svg width="45" height="45" viewBox="0 0 45 45" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M0.663106 16.6888C3.60189 4.89657 15.5459 -2.28094 27.336 0.65848C39.129 3.59816 46.3051 15.5435 43.3653 27.3353L43.2208 27.8841C40.052 39.3479 28.2972 46.2561 16.6875 43.3616C4.89884 40.4218 -2.27803 28.479 0.663106 16.6888ZM26.7921 2.84208C16.373 0.244407 5.81923 6.44705 2.97561 16.7396L2.8467 17.2327C0.206201 27.8171 6.64848 38.5397 17.2315 41.179C27.8199 43.8189 38.5424 37.3756 41.1817 26.7903C43.8207 16.2044 37.3789 5.48121 26.7921 2.84208ZM23.8575 8.10478V11.7962H29.8624V15.1458L20.5469 27.7816H29.8624V32.2239H23.8575V35.9056H20.1661V32.2239H14.1602V28.8743L23.4669 16.2395H14.1602V11.7962H20.1661V8.10478H23.8575Z" fill="url(#paint0_linear_18224_520520)"/>
3 +<path d="M0.663106 16.6888C3.60189 4.89657 15.5459 -2.28094 27.336 0.65848C39.129 3.59816 46.3051 15.5435 43.3653 27.3353L43.2208 27.8841C40.052 39.3479 28.2972 46.2561 16.6875 43.3616C4.89884 40.4218 -2.27803 28.479 0.663106 16.6888ZM26.7921 2.84208C16.373 0.244407 5.81923 6.44705 2.97561 16.7396L2.8467 17.2327C0.206201 27.8171 6.64848 38.5397 17.2315 41.179C27.8199 43.8189 38.5424 37.3756 41.1817 26.7903C43.8207 16.2044 37.3789 5.48121 26.7921 2.84208ZM23.8575 8.10478V11.7962H29.8624V15.1458L20.5469 27.7816H29.8624V32.2239H23.8575V35.9056H20.1661V32.2239H14.1602V28.8743L23.4669 16.2395H14.1602V11.7962H20.1661V8.10478H23.8575Z" fill="white"/>
4 +<defs>
5 +<linearGradient id="paint0_linear_18224_520520" x1="22.0112" y1="8.10477" x2="22.0112" y2="35.905" gradientUnits="userSpaceOnUse">
6 +<stop stop-color="white"/>
7 +<stop offset="1" stop-color="#FADD99"/>
8 +</linearGradient>
9 +</defs>
10 +</svg>
res/pictures/card_icons/symbol_icons/arb-symbol.svg new
+3
@@ -0,0 +1,3 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M22.1209 1.95996C22.6467 1.96122 23.1728 2.09007 23.6349 2.36094L38.3502 10.847C39.2947 11.3913 39.8717 12.384 39.8719 13.4726V30.4473C39.8717 31.5359 39.2947 32.5286 38.3502 33.0729L35.7259 34.5869L35.7349 34.61L31.8755 36.8359L31.8678 36.8154L30.332 37.7009L30.3384 37.7163L26.479 39.9422L26.4739 39.9294L23.6503 41.5603C23.17 41.8324 22.657 41.96 22.1287 41.96C21.6006 41.9599 21.0724 41.8322 20.6083 41.5603L17.7899 39.9319L17.7873 39.9422L13.9279 37.7163L23.0553 12.7041C23.1515 12.4481 23.4078 12.2723 23.6799 12.2723H27.4108V12.2556C27.6347 12.2557 27.7949 12.4801 27.7153 12.7041L18.6484 37.5762L21.8575 39.4294C21.9374 39.4773 22.0328 39.5103 22.1287 39.5104C22.2247 39.5104 22.321 39.4775 22.4011 39.4294L25.6154 37.5723L23.1491 30.7982C23.1011 30.6381 23.1011 30.4783 23.1491 30.3342L25.0859 25.0174C25.1981 24.7297 25.5982 24.7298 25.7105 25.0174L29.4735 35.3451L31.008 34.4596L26.4147 21.8636C26.3668 21.7037 26.3669 21.5436 26.4147 21.3996L28.3528 16.0828C28.4649 15.7946 28.8653 15.7946 28.9774 16.0828V16.0982L34.8661 32.2324L37.101 30.9434C37.2611 30.8473 37.3735 30.6548 37.3735 30.4627V13.4893C37.3735 13.2972 37.2771 13.1048 37.101 13.0087L22.4011 4.52261C22.3211 4.47458 22.2247 4.44165 22.1287 4.44165V4.42622C22.0329 4.42634 21.9373 4.4581 21.8575 4.50591L7.15757 12.9932C6.99761 13.0892 6.88534 13.2807 6.88511 13.4726V30.4627C6.88513 30.6549 6.98144 30.8473 7.15757 30.9434L9.39636 32.2363L16.5214 12.7041C16.6175 12.4481 16.8739 12.2723 17.146 12.2723H20.8769L20.8936 12.2556C21.1175 12.2558 21.2767 12.4801 21.1969 12.7041L13.2558 34.4635L13.266 34.4699L12.4037 36.8231L12.396 36.8179L12.3908 36.8359L8.53143 34.61L8.53786 34.5907L5.90837 33.0729C4.96377 32.5286 4.3869 31.536 4.38672 30.4473V13.4726C4.38693 12.384 4.96379 11.3913 5.90837 10.847L20.6083 2.36094C21.0862 2.09014 21.5954 1.96128 22.1209 1.95996Z" fill="white"/>
3 +</svg>
res/pictures/card_icons/symbol_icons/base-symbol.svg new
+3
@@ -0,0 +1,3 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M21.9685 40.0176C31.927 40.0176 40 31.9586 40 22.0176C40 12.0764 31.927 4.01758 21.9685 4.01758C12.5206 4.01758 4.76978 11.2714 4 20.5045H27.8333V23.5305H4C4.76978 32.7637 12.5206 40.0176 21.9685 40.0176Z" fill="white"/>
3 +</svg>
res/pictures/card_icons/symbol_icons/bch-symbol.svg new
+3
@@ -0,0 +1,3 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M31.9806 11.504C30.4008 7.92152 26.7705 7.15556 22.3264 7.89758L20.8982 2.36035L17.5312 3.23003L18.9354 8.75131C18.0498 8.97471 17.1402 9.1662 16.2386 9.42152L14.8344 3.93216L11.4673 4.80184L12.8955 10.3391C12.1695 10.5465 6.09766 12.1024 6.09766 12.1024L7.02319 15.7088C7.02319 15.7088 9.49659 15.0146 9.47266 15.0705C10.845 14.7114 11.4913 15.3976 11.7945 16.0439L15.72 31.2194C15.7679 31.6582 15.6881 32.4082 14.7466 32.6635C14.8024 32.6955 12.2971 33.2939 12.2971 33.2939L12.6641 37.4986C12.6641 37.4986 18.6801 35.9588 19.47 35.7593L20.9141 41.3604L24.2812 40.4907L22.837 34.8497C23.7625 34.6343 24.6641 34.4109 25.5418 34.1795L26.978 39.7885L30.345 38.9189L28.9008 33.3258C34.087 32.0651 37.7493 28.7939 36.9993 23.7912C36.5205 20.7752 33.2253 18.3018 30.4886 18.0226C32.1721 16.5306 33.0258 14.3524 31.9806 11.504ZM30.361 24.7088C31.0312 29.6635 24.1455 30.2699 21.8716 30.8683L19.8929 23.4561C22.1748 22.8577 29.228 20.3444 30.361 24.7088ZM26.212 14.6157C26.9221 19.0199 21.0338 19.5306 19.1349 20.0173L17.3317 13.2912C19.2386 12.8205 24.7679 10.5385 26.212 14.6157Z" fill="white"/>
3 +</svg>
res/pictures/card_icons/symbol_icons/bnb-symbol.svg new
+3
@@ -0,0 +1,3 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M11.7838 8.47366L22.0463 2.5L32.3088 8.47366L28.5358 10.6805L22.0463 6.91366L15.5568 10.6805L11.7838 8.47366ZM32.3088 16.0073L28.5358 13.8005L22.0463 17.5673L15.5568 13.8005L11.7838 16.0073V20.421L18.2733 24.1878V31.7214L22.0463 33.9283L25.8193 31.7214V24.1878L32.3088 20.421V16.0073ZM32.3088 27.9547V23.541L28.5358 25.7478V30.1615L32.3088 27.9547ZM34.9876 29.5146L28.4982 33.2815V37.6951L38.7606 31.7214V19.7742L34.9876 21.981V29.5146ZM31.2147 12.2405L34.9876 14.4473V18.861L38.7606 16.6542V12.2405L34.9876 10.0337L31.2147 12.2405ZM18.2733 34.8795V39.2932L22.0463 41.5L25.8193 39.2932V34.8795L22.0463 37.0863L18.2733 34.8795ZM11.7838 27.9547L15.5568 30.1615V25.7478L11.7838 23.541V27.9547ZM18.2733 12.2405L22.0463 14.4473L25.8193 12.2405L22.0463 10.0337L18.2733 12.2405ZM9.105 14.4473L12.878 12.2405L9.105 10.0337L5.33203 12.2405V16.6542L9.105 18.861V14.4473ZM9.105 21.981L5.33203 19.7742V31.7214L15.5945 37.6951V33.2815L9.105 29.5146V21.981Z" fill="white"/>
3 +</svg>
res/pictures/card_icons/symbol_icons/btc-symbol.svg new
+3
@@ -0,0 +1,3 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M34.9272 18.1677C35.542 14.0581 32.4129 11.8488 28.1344 10.375L29.5223 4.80801L26.1336 3.9635L24.7824 9.38382C23.8916 9.16184 22.9766 8.9524 22.0674 8.74489L23.4283 3.28885L20.0415 2.44434L18.6527 8.00944C17.9153 7.8415 17.1914 7.67549 16.4888 7.5008L16.4927 7.48343L11.8194 6.31655L10.9179 9.9359C10.9179 9.9359 13.4321 10.5121 13.3791 10.5478C14.7515 10.8904 14.9996 11.7986 14.958 12.5187L13.3771 18.8607C13.4717 18.8848 13.5943 18.9196 13.7294 18.9736C13.6165 18.9456 13.4958 18.9148 13.3713 18.8848L11.1553 27.7691C10.9874 28.1861 10.5618 28.8115 9.60239 28.5741C9.63617 28.6233 7.1393 27.9593 7.1393 27.9593L5.45703 31.8382L9.86684 32.9375C10.6872 33.1431 11.4912 33.3584 12.2826 33.561L10.8803 39.1918L14.2651 40.0363L15.6539 34.4654C16.5786 34.7163 17.4761 34.948 18.3544 35.1661L16.9704 40.7109L20.3591 41.5554L21.7615 35.9353C27.5399 37.0289 31.885 36.5878 33.714 31.3614C35.1878 27.1534 33.6406 24.726 30.6004 23.1431C32.8144 22.6326 34.4822 21.1761 34.9272 18.1677ZM27.1847 29.0248C26.1375 33.2329 19.0523 30.958 16.7552 30.3876L18.616 22.9279C20.9131 23.5012 28.2792 24.6362 27.1847 29.0248ZM28.2328 18.1069C27.2773 21.9347 21.3802 19.9899 19.4673 19.5132L21.1544 12.7474C23.0673 13.2242 29.2279 14.1141 28.2328 18.1069Z" fill="white"/>
3 +</svg>
res/pictures/card_icons/symbol_icons/dcr-symbol.svg new
+3
@@ -0,0 +1,3 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M24.5435 18.208H14.2954C12.4641 18.2081 10.7076 18.9356 9.4126 20.2305C8.11748 21.5256 7.39014 23.2827 7.39014 25.1143C7.39015 26.9458 8.11757 28.702 9.4126 29.9971C10.7077 31.2921 12.4639 32.0204 14.2954 32.0205H17.5562L24.5405 38.082H14.2954C11.2885 38.0813 8.3755 37.0353 6.0542 35.124C3.73279 33.2126 2.14756 30.5536 1.56983 27.6025C0.992217 24.6517 1.45718 21.5918 2.88624 18.9463C4.31549 16.3006 6.61995 14.2332 9.40479 13.0986L1.33155 6.08203H10.5855L24.5435 18.208ZM29.7944 6.08203C32.8015 6.0827 35.7152 7.1286 38.0366 9.04004C40.3578 10.9514 41.9433 13.6097 42.521 16.5605C43.0987 19.5116 42.6329 22.5721 41.2036 25.2178C39.7744 27.8635 37.4699 29.9299 34.6851 31.0645L42.7651 38.0781H33.5112L19.5464 25.9551H29.7944C31.6259 25.9551 33.3821 25.2276 34.6773 23.9326C35.9723 22.6376 36.7006 20.8813 36.7007 19.0498C36.7007 17.2182 35.9724 15.4611 34.6773 14.166C33.3822 12.8711 31.6259 12.1436 29.7944 12.1436H26.5337L19.5464 6.08203H29.7944Z" fill="white"/>
3 +</svg>
res/pictures/card_icons/symbol_icons/doge-symbol.svg new
+3
@@ -0,0 +1,3 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M20.0704 4.00133C22.5197 4.00125 38.7271 3.49507 38.7271 22.2901C38.7269 41.3972 21.7783 39.9762 21.7783 39.9762H9.72558V23.9522H5.47656V20.0268H9.72411V4.00133H20.0704ZM16.5128 20.0268H23.9944V23.9508H16.5128V33.3264H21.5005C22.7822 33.3264 32.0236 33.471 32.0093 22.4187C31.9949 11.3672 23.048 10.6512 21.2686 10.6511H16.5128V20.0268Z" fill="white"/>
3 +</svg>
res/pictures/card_icons/symbol_icons/eth-symbol.svg new
+3
@@ -0,0 +1,3 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M34.1473 24.6016C34.1851 24.5794 34.2337 24.586 34.2635 24.6182C34.293 24.6504 34.2963 24.6995 34.2713 24.7354L22.0711 41.9365C22.0603 41.9589 22.0421 41.9774 22.0174 41.9854C21.9788 41.9974 21.9363 41.9831 21.9129 41.9502L21.9109 41.9482V41.9473L9.70488 24.7598C9.67967 24.724 9.68328 24.6749 9.71269 24.6426C9.74248 24.6105 9.79113 24.6038 9.8289 24.626L21.9851 31.7979L34.1473 24.6016ZM21.9978 1.9873C22.003 1.9878 22.0083 1.98689 22.0135 1.98828C22.0257 1.99169 22.0362 1.9983 22.0457 2.00586C22.0471 2.00701 22.0482 2.00853 22.0496 2.00977C22.0565 2.0159 22.0624 2.02244 22.0672 2.03027L34.2752 22.3008C34.2878 22.322 34.2909 22.3481 34.285 22.3721C34.2788 22.3959 34.2631 22.4161 34.242 22.4287L22.035 29.6318C22.0062 29.6488 21.9702 29.6482 21.9412 29.6318L9.7332 22.4287C9.71228 22.4161 9.6963 22.3958 9.69023 22.3721C9.68423 22.3481 9.68826 22.322 9.70097 22.3008L21.8982 2.04785C21.9081 2.01945 21.9317 1.99677 21.9617 1.98828C21.9665 1.98697 21.9715 1.98783 21.9764 1.9873C21.98 1.9868 21.9834 1.98641 21.9871 1.98633C21.9908 1.98636 21.9942 1.98685 21.9978 1.9873Z" fill="white"/>
3 +</svg>
res/pictures/card_icons/symbol_icons/ln-symbol.svg new
+3
@@ -0,0 +1,3 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M5.51272 23.0606L29.6424 2.26797C30.6938 1.59462 31.696 2.26797 31.0542 3.42311L23.3533 18.5684H37.0866C37.0866 18.5684 39.2686 18.5684 37.0866 20.3653L13.342 41.2862C11.6735 42.6981 10.5184 41.928 11.6735 39.746L19.1178 24.9859H5.51272C5.51272 24.9859 3.33078 24.9859 5.51272 23.0606Z" fill="white"/>
3 +</svg>
res/pictures/card_icons/symbol_icons/ltc-symbol.svg new
+3
@@ -0,0 +1,3 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M19.8977 32.1254L22.236 23.3208L27.772 21.2983L29.1489 16.1238L29.1019 15.9954L23.6526 17.9862L27.5789 3.20215H16.4438L11.3091 22.4957L7.02203 24.0619L5.60547 29.3964L9.88928 27.8316L6.86306 39.2021H36.4979L38.3977 32.1254H19.8977Z" fill="white"/>
3 +</svg>
res/pictures/card_icons/symbol_icons/pol-symbol.svg new
+3
@@ -0,0 +1,3 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M30.6762 3.97754L19.4325 10.435V30.5889L13.2288 34.1851L6.98723 30.586V23.3907L13.2288 19.8265L17.2422 22.1539V16.3324L13.1938 14.0341L1.95312 20.5644V33.4822L13.2317 39.9775L24.4725 33.4822V13.3312L30.714 9.73205L36.9528 13.3312V20.4945L30.714 24.1257L26.6658 21.7777V27.5701L30.6762 29.8831L42.0277 23.4256V10.435L30.6762 3.97754Z" fill="white"/>
3 +</svg>
res/pictures/card_icons/symbol_icons/sol-symbol.svg new
+5
@@ -0,0 +1,5 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M9.07412 29.9439C9.30884 29.7092 9.62424 29.5771 9.95431 29.5771H40.5041C41.0615 29.5771 41.3403 30.252 40.9442 30.6407L34.9076 36.6773C34.6729 36.912 34.3575 37.0441 34.0274 37.0441H3.4776C2.92015 37.0441 2.64143 36.3692 3.03751 35.9805L9.07412 29.9439Z" fill="white"/>
3 +<path d="M9.07412 7.41069C9.30884 7.17597 9.62424 7.04395 9.95431 7.04395H40.5041C41.0615 7.04395 41.3403 7.71875 40.9442 8.1075L34.9076 14.1368C34.6729 14.3715 34.3575 14.5035 34.0274 14.5035H3.4776C2.92015 14.5035 2.64143 13.8287 3.03751 13.44L9.07412 7.41069Z" fill="white"/>
4 +<path d="M34.9076 18.604C34.6729 18.3693 34.3575 18.2373 34.0274 18.2373H3.4776C2.92015 18.2373 2.64143 18.9121 3.03751 19.3009L9.07412 25.3301C9.30884 25.5649 9.62424 25.6969 9.95431 25.6969H40.5041C41.0615 25.6969 41.3403 25.0221 40.9442 24.6333L34.9076 18.604Z" fill="white"/>
5 +</svg>
res/pictures/card_icons/symbol_icons/trx-symbol.svg new
+3
@@ -0,0 +1,3 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M39.7691 15.9889C38.0816 14.4308 35.7473 12.0514 33.846 10.364L33.7335 10.2852C33.5464 10.1349 33.3353 10.017 33.1092 9.93647C28.5249 9.08148 7.18952 5.09341 6.77327 5.14403C6.65664 5.16037 6.54515 5.20265 6.44703 5.26778L6.34015 5.35215C6.20855 5.4858 6.1086 5.64726 6.04766 5.82465L6.01953 5.89777V6.29714V6.35902C8.42137 13.0471 17.905 34.9561 19.7725 40.0973C19.885 40.4461 20.0987 41.1098 20.4981 41.1436H20.5881C20.8018 41.1436 21.7131 39.9398 21.7131 39.9398C21.7131 39.9398 38.0029 20.1851 39.651 18.0814C39.8643 17.8222 40.0526 17.5435 40.2135 17.2489C40.2545 17.0184 40.2351 16.7811 40.1573 16.5603C40.0794 16.3395 39.9457 16.1427 39.7691 15.9889ZM25.8924 18.2895L32.8448 12.5239L36.9229 16.2814L25.8924 18.2895ZM23.1924 17.9126L11.2226 8.10274L30.5892 11.6746L23.1924 17.9126ZM24.2724 20.4832L36.5235 18.5089L22.5174 35.3836L24.2724 20.4832ZM9.59698 9.08148L22.1912 19.7688L20.3687 35.3949L9.59698 9.08148Z" fill="white"/>
3 +</svg>
res/pictures/card_icons/symbol_icons/xmr-symbol.svg new
+3
@@ -0,0 +1,3 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M44 29.1858V33.916H32.0458V21.6456L22 31.6797L11.9659 21.6456V33.916H0V29.1858H6.94305V9.67969L22.0117 24.7483L37.0804 9.67969V29.1858H44Z" fill="white"/>
3 +</svg>
res/pictures/card_icons/symbol_icons/xno-symbol.svg new
+3
@@ -0,0 +1,3 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M22.1064 19.3076L31.9961 4.14648H34.6758L24.2158 20.2871H32.9268V22.335H24.1738L26.7764 26.4297H32.9277V28.4775H28.0781L35.4951 40.1465H32.6934L25.2021 28.4775H18.8721L11.2666 40.1465H8.48828L16.0117 28.4775H11.1416L11.1426 26.4297H17.332L19.9727 22.335H11.1426V20.2871H19.8848L9.56543 4.14648H12.4219L22.1064 19.3076ZM20.207 26.4297H23.8877L22.0615 23.585L20.207 26.4297Z" fill="white"/>
3 +</svg>
res/pictures/card_icons/symbol_icons/zano-symbol.svg new
+3
@@ -0,0 +1,3 @@
1 +<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M29.3213 3.99902C30.7512 3.99899 31.9547 3.99919 32.9395 4.08008C33.9695 4.16469 34.9508 4.34875 35.8828 4.82617C37.3023 5.55338 38.4564 6.71352 39.1797 8.14063C39.6546 9.07756 39.8377 10.0641 39.9219 11.0996C40.0024 12.0897 40.0029 13.2997 40.0029 14.7373V18.7178C40.0029 20.1552 40.0024 21.3645 39.9219 22.3545C39.8377 23.39 39.6546 24.3765 39.1797 25.3135C38.4563 26.7408 37.3025 27.9016 35.8828 28.6289C34.9508 29.1063 33.9696 29.2904 32.9395 29.375C32.2008 29.4356 31.3394 29.4503 30.3516 29.4541L29.3213 29.4561V29.5352C29.3214 30.846 29.3211 31.9491 29.2539 32.8545C29.1837 33.8004 29.031 34.7045 28.6338 35.5752C27.8806 37.2258 26.5636 38.5505 24.9219 39.3076C24.0558 39.707 23.1567 39.8601 22.2158 39.9307C21.3153 39.9983 20.218 39.998 18.9141 39.998H14.6807C13.251 39.998 12.0482 39.9979 11.0635 39.917C10.0336 39.8324 9.052 39.6491 8.12012 39.1719C6.70041 38.4446 5.54565 37.2838 4.82227 35.8564C4.34739 34.9195 4.16424 33.933 4.08008 32.8975C3.99962 31.9074 3.99997 30.6973 4 29.2598V25.2793C3.99997 23.8419 3.99964 22.6326 4.08008 21.6426C4.16424 20.6071 4.34745 19.6206 4.82227 18.6836C5.54565 17.2563 6.70041 16.0955 8.12012 15.3682C9.05203 14.8909 10.0335 14.7066 11.0635 14.6221C11.9977 14.5454 13.1284 14.5422 14.4629 14.542C14.46 14.2948 14.457 14.0546 14.4551 13.8213C14.4467 12.8174 14.4518 11.9419 14.5039 11.1914C14.5766 10.1454 14.7498 9.14739 15.2207 8.19824C15.9375 6.75369 17.0945 5.5771 18.5225 4.83887C19.4608 4.35382 20.4517 4.16687 21.4912 4.08106C22.4856 3.99899 23.7016 3.99899 25.1475 3.99902H29.3213ZM14.7676 18.9131C13.2278 18.9131 12.2035 18.9149 11.417 18.9795C10.6559 19.042 10.3107 19.1526 10.0938 19.2637C9.49224 19.5719 9.00279 20.0632 8.69629 20.668C8.58581 20.886 8.47625 21.2332 8.41406 21.998C8.3498 22.7888 8.34766 23.819 8.34766 25.3672V29.1729C8.34766 30.7207 8.34983 31.7503 8.41406 32.541C8.47625 33.3063 8.58577 33.654 8.69629 33.8721C9.00281 34.4768 9.49221 34.9682 10.0938 35.2764C10.3107 35.3875 10.6559 35.498 11.417 35.5605C12.2035 35.6251 13.2278 35.627 14.7676 35.627H18.835C20.2387 35.627 21.1724 35.6252 21.8916 35.5713C22.5887 35.5189 22.9091 35.4263 23.1094 35.334C23.8048 35.0131 24.3626 34.4521 24.6816 33.7529C24.7735 33.5517 24.8659 33.2302 24.918 32.5293C24.9717 31.8062 24.9727 30.8675 24.9727 29.4561H16.8555C16.8007 29.4561 16.7463 29.4533 16.6924 29.4492C15.8828 29.3882 15.1682 28.8763 14.8506 28.1152C14.5121 27.3038 14.6907 26.3674 15.3037 25.7393L21.9697 18.9131H14.7676ZM25.2354 8.37012C23.6786 8.37012 22.6419 8.37186 21.8467 8.4375C21.0767 8.50107 20.7284 8.6131 20.5107 8.72559C19.9058 9.03832 19.4161 9.53746 19.1123 10.1494C19.0031 10.3696 18.8957 10.7213 18.8418 11.4961C18.814 11.8963 18.8026 12.357 18.8008 12.9131C18.7992 13.3813 18.8052 13.9172 18.8125 14.542H27.1475C28.348 14.5422 29.3213 15.5206 29.3213 16.7275C29.3212 17.3231 29.0826 17.8617 28.6982 18.2559L28.7012 18.2588L22.0361 25.084H29.2344C30.7741 25.084 31.7984 25.0822 32.585 25.0176C33.3462 24.9551 33.6923 24.8455 33.9092 24.7344C34.5107 24.4262 34.9992 23.9339 35.3057 23.3291C35.4162 23.111 35.5267 22.7641 35.5889 21.999C35.6531 21.2082 35.6543 20.1781 35.6543 18.6299V14.8242C35.6543 13.2764 35.6531 12.2468 35.5889 11.4561C35.5267 10.6908 35.4162 10.3431 35.3057 10.125C34.9992 9.5205 34.5105 9.02881 33.9092 8.7207C33.6923 8.60959 33.3462 8.49905 32.585 8.43652C31.7984 8.37194 30.7741 8.37012 29.2344 8.37012H25.2354Z" fill="white"/>
3 +</svg>
res/pictures/card_icons/symbol_icons/zec-symbol.svg new
+3
@@ -0,0 +1,3 @@
1 +<svg width="45" height="45" viewBox="0 0 45 45" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +<path d="M33.024 12.3811V7.6821H24.5992V2.50391H19.421V7.6821H10.9961V13.9147H24.0514L10.9961 31.6404V36.3394H19.421V41.5039H24.5992V36.3394H33.024V30.1068H19.955L33.024 12.3811Z" fill="white"/>
3 +</svg>
res/values/strings_ar.arb
+1
@@ -530,6 +530,7 @@
530 "how_to_use": "كيفية الاستخدام",
531 "how_to_use_card": "كيفية استخدام هذه البطاقة",
532 "i_understand": "أفهم",
533 + "icon_style": "نمط الأيقونة",
534 "id": "المعرّف: ",
535 "if_you_dont_see_your_device": "إذا لم يظهر جهازك أعلاه، يُرجى التأكد من أن Ledger قيد التشغيل ومفتوح القفل!",
536 "ignor": "تجاهل",
res/values/strings_bg.arb
+1
@@ -530,6 +530,7 @@
530 "how_to_use": "Как да използвате",
531 "how_to_use_card": "Как да използвате тази карта",
532 "i_understand": "Разбирам",
533 + "icon_style": "Стил на иконата",
534 "id": "ID: ",
535 "if_you_dont_see_your_device": "Ако не виждате устройството си по-горе, моля, уверете се, че вашият Ledger е буден и отключен!",
536 "ignor": "Игнорирай",
res/values/strings_cs.arb
+1
@@ -530,6 +530,7 @@
530 "how_to_use": "Jak používat",
531 "how_to_use_card": "Jak tuto kartu používat",
532 "i_understand": "Rozumím",
533 + "icon_style": "Styl ikony",
534 "id": "ID: ",
535 "if_you_dont_see_your_device": "Pokud své zařízení výše nevidíte, ujistěte se, že je váš Ledger zapnutý a odemčený!",
536 "ignor": "Ignorovat",
res/values/strings_de.arb
+1
@@ -530,6 +530,7 @@
530 "how_to_use": "So verwenden Sie",
531 "how_to_use_card": "So verwenden Sie diese Karte",
532 "i_understand": "Ich verstehe",
533 + "icon_style": "Symbolstil",
534 "id": "ID: ",
535 "if_you_dont_see_your_device": "Wenn Sie Ihr Gerät oben nicht sehen, stellen Sie bitte sicher, dass Ihr Ledger eingeschaltet und entsperrt ist!",
536 "ignore": "Ignorieren",
res/values/strings_en.arb
+1
@@ -534,6 +534,7 @@
534 "how_to_use": "How to use",
535 "how_to_use_card": "How to use this card",
536 "i_understand": "I understand",
537 + "icon_style": "Icon style",
538 "id": "ID: ",
539 "if_you_dont_see_your_device": "If you don't see your device above, please be sure your Ledger is awake and unlocked!",
540 "ignor": "Ignore",
res/values/strings_es.arb
+1
@@ -530,6 +530,7 @@
530 "how_to_use": "Cómo usar",
531 "how_to_use_card": "Cómo usar esta tarjeta",
532 "i_understand": "Entiendo",
533 + "icon_style": "Estilo de icono",
534 "id": "ID: ",
535 "if_you_dont_see_your_device": "Si no ves tu dispositivo arriba, asegúrate de que tu Ledger esté encendido y desbloqueado.",
536 "ignor": "Ignorar",
res/values/strings_fa.arb
+1
@@ -528,6 +528,7 @@
528 "how_to_use": "نحوه استفاده",
529 "how_to_use_card": "چگونه از این کارت استفاده کنیم",
530 "i_understand": "متوجه شدم",
531 + "icon_style": "سبک آیکون",
532 "id": "شناسه: ",
533 "if_you_dont_see_your_device": "اگر دستگاه خود را در بالا نمی‌بینید، لطفاً مطمئن شوید که Ledger شما روشن است و قفل آن باز شده است!",
534 "ignor": "نادیده گرفتن",
res/values/strings_fr.arb
+1
@@ -530,6 +530,7 @@
530 "how_to_use": "Comment utiliser",
531 "how_to_use_card": "Comment utiliser cette carte",
532 "i_understand": "Je comprends",
533 + "icon_style": "Style d'icône",
534 "id": "ID : ",
535 "if_you_dont_see_your_device": "Si vous ne voyez pas votre appareil ci‑dessus, assurez‑vous que votre Ledger est allumé et déverrouillé !",
536 "ignor": "Ignorer",
res/values/strings_gn.arb
+1
@@ -418,6 +418,7 @@
418 "how_to_use": "Mba’éichapa ojepuru",
419 "how_to_use_card": "Mba’éichapa ojeiporu ko tarjeta",
420 "i_understand": "Aikũmby",
421 + "icon_style": "Estilo icono rehegua",
422 "id": "ID: ",
423 "ignor": "Eheja",
424 "import": "Embohasa",
res/values/strings_ha.arb
+1
@@ -530,6 +530,7 @@
530 "how_to_use": "Yadda ake amfani da shi",
531 "how_to_use_card": "Yadda ake amfani da wannan kati",
532 "i_understand": "Na fahimta",
533 + "icon_style": "Ikon salo",
534 "id": "ID: ",
535 "if_you_dont_see_your_device": "Idan ba ka ga na'urarka a sama ba, da fatan ka tabbatar Ledger ɗinka yana kunne kuma a buɗe!",
536 "ignor": "Yi watsi",
res/values/strings_hi.arb
+1
@@ -530,6 +530,7 @@
530 "how_to_use": "कैसे उपयोग करें",
531 "how_to_use_card": "इस कार्ड का उपयोग कैसे करें",
532 "i_understand": "मैं समझता/समझती हूँ",
533 + "icon_style": "चिह्न शैली",
534 "id": "ID: ",
535 "if_you_dont_see_your_device": "यदि आपको ऊपर अपना डिवाइस नहीं दिख रहा है, तो कृपया सुनिश्चित करें कि आपका Ledger चालू है और अनलॉक है!",
536 "ignor": "नज़रअंदाज़ करें",
res/values/strings_hr.arb
+1
@@ -530,6 +530,7 @@
530 "how_to_use": "Kako koristiti",
531 "how_to_use_card": "Kako koristiti ovu karticu",
532 "i_understand": "Razumijem",
533 + "icon_style": "Stil ikone",
534 "id": "ID: ",
535 "if_you_dont_see_your_device": "Ako gore ne vidite svoj uređaj, provjerite je li vaš Ledger uključen i otključan!",
536 "ignor": "Zanemari",
res/values/strings_hy.arb
+1
@@ -530,6 +530,7 @@
530 "how_to_use": "Ինչպես օգտագործել",
531 "how_to_use_card": "Ինչպես օգտագործել այս քարտը",
532 "i_understand": "Հասկացա",
533 + "icon_style": "Սրբապատկերների ոճը",
534 "id": "ID: ",
535 "if_you_dont_see_your_device": "Եթե վերևում չեք տեսնում ձեր սարքը, համոզվեք, որ ձեր Ledger-ը միացված է և ապակողպված է։",
536 "ignor": "Անտեսել",
res/values/strings_id.arb
+1
@@ -530,6 +530,7 @@
530 "how_to_use": "Cara menggunakan",
531 "how_to_use_card": "Cara menggunakan kartu ini",
532 "i_understand": "Saya mengerti",
533 + "icon_style": "Gaya ikon",
534 "id": "ID: ",
535 "if_you_dont_see_your_device": "Jika Anda tidak melihat perangkat Anda di atas, pastikan Ledger Anda menyala dan tidak terkunci!",
536 "ignor": "Abaikan",
res/values/strings_it.arb
+1
@@ -530,6 +530,7 @@
530 "how_to_use": "Come usare",
531 "how_to_use_card": "Come usare questa carta",
532 "i_understand": "Ho capito",
533 + "icon_style": "Stile dell'icona",
534 "id": "ID: ",
535 "if_you_dont_see_your_device": "Se non vedi il tuo dispositivo qui sopra, assicurati che il tuo Ledger sia acceso e sbloccato!",
536 "ignor": "Ignora",
res/values/strings_ja.arb
+1
@@ -531,6 +531,7 @@
531 "how_to_use": "使い方",
532 "how_to_use_card": "このカードの使い方",
533 "i_understand": "理解しました",
534 + "icon_style": "アイコンのスタイル",
535 "id": "ID: ",
536 "if_you_dont_see_your_device": "上記にデバイスが表示されない場合は、Ledgerが起動していてロック解除されていることを確認してください!",
537 "ignor": "無視",
res/values/strings_ko.arb
+1
@@ -530,6 +530,7 @@
530 "how_to_use": "사용 방법",
531 "how_to_use_card": "이 카드 사용 방법",
532 "i_understand": "이해했습니다",
533 + "icon_style": "아이콘 스타일",
534 "id": "ID: ",
535 "if_you_dont_see_your_device": "위에서 기기가 보이지 않으면 Ledger가 켜져 있고 잠금 해제되어 있는지 확인하세요!",
536 "ignor": "무시",
res/values/strings_my.arb
+1
@@ -530,6 +530,7 @@
530 "how_to_use": "အသုံးပြုနည်း",
531 "how_to_use_card": "ဒီကတ်ကို ဘယ်လိုသုံးရမလဲ",
532 "i_understand": "နားလည်ပါတယ်",
533 + "icon_style": "အိုင်ကွန်စတိုင်",
534 "id": "ID: ",
535 "if_you_dont_see_your_device": "အထက်မှာ သင့်စက်ကို မတွေ့ပါက သင့် Ledger ကို ဖွင့်ထားပြီး လော့ခ်ဖွင့်ထားကြောင်း သေချာပါစေ။",
536 "ignor": "လျစ်လျူရှုပါ",
res/values/strings_nl.arb
+1
@@ -528,6 +528,7 @@
528 "how_to_use": "Hoe te gebruiken",
529 "how_to_use_card": "Hoe je deze kaart gebruikt",
530 "i_understand": "Ik begrijp het",
531 + "icon_style": "Pictogramstijl",
532 "id": "ID: ",
533 "if_you_dont_see_your_device": "Als je je apparaat hierboven niet ziet, zorg er dan voor dat je Ledger ontgrendeld is!",
534 "ignor": "Negeren",
res/values/strings_pl.arb
+1
@@ -529,6 +529,7 @@
529 "how_to_use": "Jak używać",
530 "how_to_use_card": "Jak używać tej karty",
531 "i_understand": "Rozumiem",
532 + "icon_style": "Styl ikony",
533 "id": "ID: ",
534 "if_you_dont_see_your_device": "Jeśli nie widzisz swojego urządzenia powyżej, upewnij się, że Twój Ledger jest aktywny i odblokowany!",
535 "ignor": "Ignoruj",
res/values/strings_pt.arb
+1
@@ -530,6 +530,7 @@
530 "how_to_use": "Como usar",
531 "how_to_use_card": "Como usar este cartão",
532 "i_understand": "Eu entendo",
533 + "icon_style": "Estilo do ícone",
534 "id": "ID: ",
535 "if_you_dont_see_your_device": "Se você não vir seu dispositivo acima, verifique se o seu Ledger está ligado e desbloqueado!",
536 "ignor": "Ignorar",
res/values/strings_pt_BR.arb
+1
@@ -527,6 +527,7 @@
527 "how_to_use": "Como usar",
528 "how_to_use_card": "Como usar este cartão",
529 "i_understand": "Eu entendo",
530 + "icon_style": "Estilo do ícone",
531 "id": "ID: ",
532 "if_you_dont_see_your_device": "Se você não vir seu dispositivo acima, certifique-se de que seu Ledger esteja ligado e desbloqueado!",
533 "ignor": "Ignorar",
res/values/strings_ru.arb
+1
@@ -530,6 +530,7 @@
530 "how_to_use": "Как использовать",
531 "how_to_use_card": "Как пользоваться этой картой",
532 "i_understand": "Я понимаю",
533 + "icon_style": "Стиль иконок",
534 "id": "ID: ",
535 "if_you_dont_see_your_device": "Если вы не видите свое устройство выше, пожалуйста, убедитесь, что ваш Ledger включен и разблокирован!",
536 "ignor": "Игнорировать",
res/values/strings_th.arb
+1
@@ -530,6 +530,7 @@
530 "how_to_use": "วิธีใช้งาน",
531 "how_to_use_card": "วิธีใช้การ์ดนี้",
532 "i_understand": "ฉันเข้าใจ",
533 + "icon_style": "สไตล์ไอคอน",
534 "id": "ID: ",
535 "if_you_dont_see_your_device": "หากคุณไม่เห็นอุปกรณ์ของคุณด้านบน โปรดตรวจสอบให้แน่ใจว่า Ledger ของคุณเปิดอยู่และปลดล็อกแล้ว!",
536 "ignor": "เพิกเฉย",
res/values/strings_tl.arb
+1
@@ -530,6 +530,7 @@
530 "how_to_use": "Paano gamitin",
531 "how_to_use_card": "Paano gamitin ang card na ito",
532 "i_understand": "Naiintindihan ko",
533 + "icon_style": "Estilo ng icon",
534 "id": "ID: ",
535 "if_you_dont_see_your_device": "Kung hindi mo nakikita ang iyong device sa itaas, pakitiyak na gising at naka-unlock ang iyong Ledger!",
536 "ignor": "Huwag pansinin",
res/values/strings_tr.arb
+1
@@ -530,6 +530,7 @@
530 "how_to_use": "Nasıl kullanılır",
531 "how_to_use_card": "Bu kart nasıl kullanılır",
532 "i_understand": "Anladım",
533 + "icon_style": "Simge stili",
534 "id": "ID: ",
535 "if_you_dont_see_your_device": "Cihazınızı yukarıda görmüyorsanız, lütfen Ledger'ınızın açık, uyanık ve kilidinin açılmış olduğundan emin olun!",
536 "ignor": "Yoksay",
res/values/strings_uk.arb
+1
@@ -530,6 +530,7 @@
530 "how_to_use": "Як користуватися",
531 "how_to_use_card": "Як користуватися цією карткою",
532 "i_understand": "Я розумію",
533 + "icon_style": "Стиль значка",
534 "id": "ID: ",
535 "if_you_dont_see_your_device": "Якщо ви не бачите свій пристрій вище, будь ласка, переконайтеся, що ваш Ledger увімкнений і розблокований!",
536 "ignor": "Ігнорувати",
res/values/strings_ur.arb
+1
@@ -530,6 +530,7 @@
530 "how_to_use": "استعمال کرنے کا طریقہ",
531 "how_to_use_card": "اس کارڈ کو استعمال کرنے کا طریقہ",
532 "i_understand": "میں سمجھ گیا/گئی ہوں",
533 + "icon_style": "آئیکن اسٹائل",
534 "id": "ID: ",
535 "if_you_dont_see_your_device": "اگر آپ کو اوپر اپنا ڈیوائس نظر نہیں آ رہا، تو براہِ کرم یقینی بنائیں کہ آپ کا Ledger آن ہے اور اَن لاک ہے!",
536 "ignor": "نظر انداز کریں",
res/values/strings_vi.arb
+1
@@ -529,6 +529,7 @@
529 "how_to_use": "Cách sử dụng",
530 "how_to_use_card": "Cách sử dụng thẻ này",
531 "i_understand": "Tôi hiểu",
532 + "icon_style": "Kiểu biểu tượng",
533 "id": "ID: ",
534 "if_you_dont_see_your_device": "Nếu bạn không thấy thiết bị của mình ở trên, hãy đảm bảo rằng Ledger của bạn đang bật và đã được mở khóa!",
535 "ignor": "Bỏ qua",
res/values/strings_yo.arb
+1
@@ -531,6 +531,7 @@
531 "how_to_use": "Bí a ṣe lè lò",
532 "how_to_use_card": "Báwo ni a ṣe ń lo káàdì yìí",
533 "i_understand": "Mo ye mi",
534 + "icon_style": "Aami ara",
535 "id": "ID: ",
536 "if_you_dont_see_your_device": "Ti o ko ba ri ẹrọ rẹ loke, jọwọ rii daju pe Ledger rẹ wa ni titan ati pe o ti ṣí i silẹ!",
537 "ignor": "Foju kọ",
res/values/strings_zh.arb
+1
@@ -530,6 +530,7 @@
530 "how_to_use": "如何使用",
531 "how_to_use_card": "如何使用此卡",
532 "i_understand": "我明白了",
533 + "icon_style": "图标风格",
534 "id": "ID: ",
535 "if_you_dont_see_your_device": "如果您在上方看不到您的设备,请确保您的 Ledger 已唤醒并已解锁!",
536 "ignor": "忽略",
res/values/strings_zh_tw.arb
+1
@@ -460,6 +460,7 @@
460 "how_to_connect": "如何連線",
461 "how_to_use": "如何使用",
462 "how_to_use_card": "如何使用這張卡",
463 + "icon_style": "圖示樣式",
464 "id": "ID:",
465 "if_you_dont_see_your_device": "如果您在上方看不到您的裝置,請確認您的 Ledger 已喚醒並解鎖!",
466 "ignor": "忽略",