@lancom/shared 0.0.268 → 0.0.270

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. package/assets/js/utils/fabric-helper.js +10 -4
  2. package/components/common/products_list_dropdown/products-list-dropdown.vue +1 -1
  3. package/components/editor/editor_print_area_options/editor-print-area-options.scss +5 -4
  4. package/components/editor/editor_print_area_options/editor_print_area_option/editor-print-area-option.scss +39 -0
  5. package/components/editor/editor_print_area_options/editor_print_area_option/editor-print-area-option.vue +29 -6
  6. package/components/editor/editor_product_details/editor-product-details.vue +1 -1
  7. package/components/editor/editor_workspace/editor_workspace_side/editor-workspace-side.vue +12 -2
  8. package/components/product/product_color_image/product-color-image.vue +2 -3
  9. package/components/product/product_multipacks_carousel/product-multipacks-carousel.vue +54 -10
  10. package/components/product/product_multipacks_carousel/product_multipack/product-multipack.scss +9 -1
  11. package/components/product/product_multipacks_carousel/product_multipack/product-multipack.vue +30 -7
  12. package/feeds/google-shopping.js +1 -1
  13. package/mixins/meta-info.js +5 -1
  14. package/package.json +1 -1
  15. package/static/icons/print-area/back_hoodie.svg +3 -0
  16. package/static/icons/print-area/back_hoodie_a3.svg +4 -0
  17. package/static/icons/print-area/back_hoodie_a4_v.svg +4 -0
  18. package/static/icons/print-area/back_hoodie_half_a4_h.svg +4 -0
  19. package/static/icons/print-area/back_hoodie_rect10_l.svg +4 -0
  20. package/static/icons/print-area/back_polo.svg +3 -0
  21. package/static/icons/print-area/back_polo_a3.svg +4 -0
  22. package/static/icons/print-area/back_polo_a4_v.svg +4 -0
  23. package/static/icons/print-area/back_polo_half_a4_h.svg +4 -0
  24. package/static/icons/print-area/back_polo_rect10_l.svg +4 -0
  25. package/static/icons/print-area/back_tee.svg +3 -0
  26. package/static/icons/print-area/back_tee_a3.svg +4 -0
  27. package/static/icons/print-area/back_tee_a4_v.svg +4 -0
  28. package/static/icons/print-area/back_tee_bottom.svg +12 -0
  29. package/static/icons/print-area/back_tee_center.svg +12 -0
  30. package/static/icons/print-area/back_tee_half_a4_h.svg +4 -0
  31. package/static/icons/print-area/back_tee_rect10_l.svg +4 -0
  32. package/static/icons/print-area/back_tee_top.svg +12 -0
  33. package/static/icons/print-area/front_hoodie.svg +3 -0
  34. package/static/icons/print-area/front_hoodie_a3.svg +4 -0
  35. package/static/icons/print-area/front_hoodie_a4_v.svg +4 -0
  36. package/static/icons/print-area/front_hoodie_half_a4_h.svg +4 -0
  37. package/static/icons/print-area/front_hoodie_rect10_l.svg +4 -0
  38. package/static/icons/print-area/front_polo.svg +3 -0
  39. package/static/icons/print-area/front_polo_a3.svg +4 -0
  40. package/static/icons/print-area/front_polo_a4_v.svg +4 -0
  41. package/static/icons/print-area/front_polo_half_a4_h.svg +4 -0
  42. package/static/icons/print-area/front_polo_rect10_l.svg +4 -0
  43. package/static/icons/print-area/front_tee.svg +3 -0
  44. package/static/icons/print-area/front_tee_a3.svg +4 -0
  45. package/static/icons/print-area/front_tee_a4_v.svg +4 -0
  46. package/static/icons/print-area/front_tee_center.svg +12 -0
  47. package/static/icons/print-area/front_tee_half_a4_h.svg +4 -0
  48. package/static/icons/print-area/front_tee_left.svg +5 -0
  49. package/static/icons/print-area/front_tee_rect10_l.svg +4 -0
  50. package/static/icons/print-area/front_tee_right.svg +12 -0
  51. package/static/icons/print-area/sleeve-left_tee.svg +3 -0
  52. package/static/icons/print-area/sleeve-left_tee_left.svg +12 -0
  53. package/static/icons/print-area/sleeve-right_tee.svg +3 -0
  54. package/static/icons/print-area/sleeve-right_tee_right.svg +12 -0
  55. package/store/product.js +5 -0
@@ -351,10 +351,16 @@ export default class FabricHelper {
351
351
  }
352
352
  });
353
353
  object.on('changed', () => {
354
- this.dispatch('setField', { field: 'copy', value: object.text });
355
- this.dispatch('setField', { field: 'boundingRect', value: object.getBoundingRect() });
356
- this.dispatch('setDeleteButtonPosition', object.oCoords.tr);
357
- this.checkBoundingIntersection(object);
354
+ // this.dispatch('setField', { field: 'copy', value: object.text });
355
+ // this.dispatch('setField', { field: 'boundingRect', value: object.getBoundingRect() });
356
+ if (/\n/g.test(object.text || '')) {
357
+ this.discardActiveObjects();
358
+ object.text = object.text.replace(/\n/g, '');
359
+ this.dispatch('setField', { field: 'copy', value: object.text });
360
+ } else {
361
+ this.dispatch('setDeleteButtonPosition', object.oCoords.tr);
362
+ this.checkBoundingIntersection(object);
363
+ }
358
364
  });
359
365
  }
360
366
  /*
@@ -61,7 +61,7 @@ export default {
61
61
  this.products = (await api.fetchProducts(this.shop._id, { text })).products;
62
62
  } catch (e) {
63
63
  } finally {
64
- this.loading = true;
64
+ this.loading = false;
65
65
  }
66
66
  }
67
67
  }
@@ -2,10 +2,9 @@
2
2
 
3
3
  .EditorPrintAreaOptions {
4
4
  &__wrapper {
5
- display: grid;
6
- grid-template-columns: repeat(2, 1fr);
7
- grid-column-gap: 8px;
8
- grid-row-gap: 8px;
5
+ display: flex;
6
+ align-items: center;
7
+ justify-content: center;
9
8
  padding: 8px 0;
10
9
  &.singleRow {
11
10
  grid-template-columns: repeat(4, 1fr);
@@ -13,6 +12,8 @@
13
12
  }
14
13
 
15
14
  &__option {
15
+ margin: 0 5px;
16
+ min-width: 150px;
16
17
  display: flex;
17
18
  align-items: center;
18
19
  justify-content: center;
@@ -9,6 +9,8 @@
9
9
  &__content {
10
10
  text-align: center;
11
11
  padding: 8px 0;
12
+ display: flex;
13
+ align-items: center;
12
14
  &:hover {
13
15
  background-color: $green_lighter;
14
16
  }
@@ -25,4 +27,41 @@
25
27
  &__suboptions &__content {
26
28
  padding: 12px 0;
27
29
  }
30
+ &__icon {
31
+ width: 30px;
32
+ height: 25px;
33
+ margin-right: 10px;
34
+ margin-left: 10px;
35
+ background-repeat: no-repeat;
36
+ background-size: contain;
37
+ background-position: center;
38
+
39
+ @each $type in tee {
40
+ @each $side in front, back, sleeve-left, sleeve-right {
41
+ &.#{$side}.#{$type} {
42
+ background-image: url(./../../../../static/icons/print-area/#{$side}_#{$type}.svg);
43
+ }
44
+ }
45
+ }
46
+
47
+ // TEE - FRONT
48
+ @each $position in center, left, right {
49
+ &.front.tee.#{$position} {
50
+ background-image: url(./../../../../static/icons/print-area/front_tee_#{$position}.svg);
51
+ }
52
+ }
53
+ // TEE - BACK
54
+ @each $position in center, top, bottom {
55
+ &.back.tee.#{$position} {
56
+ background-image: url(./../../../../static/icons/print-area/back_tee_#{$position}.svg);
57
+ }
58
+ }
59
+ // TEE - SLEEVE LEFT
60
+ &.sleeve-left.tee.left {
61
+ background-image: url(./../../../../static/icons/print-area/sleeve-left_tee_left.svg);
62
+ }
63
+ &.sleeve-right.tee.right {
64
+ background-image: url(./../../../../static/icons/print-area/sleeve-right_tee_right.svg);
65
+ }
66
+ }
28
67
  }
@@ -6,13 +6,24 @@
6
6
  @click="handleClick"
7
7
  @mouseover="$emit('option-mouseover', option)"
8
8
  @mouseleave="$emit('option-mouseleave', option)">
9
- <div class="lc_caption">
10
- {{ option.label }}
9
+ <div
10
+ v-if="option.printArea"
11
+ class="EditorPrintAreaOption__icon"
12
+ :class="{
13
+ [option.printArea.alias]: true,
14
+ [option.printArea.side]: true,
15
+ [productType]: true
16
+ }">
11
17
  </div>
12
- <div class="lc_regular10">
13
- <span v-if="option.printArea && calcPrintPrice(option) > 0">
14
- {{ calcPrintPrice(option) | priceWithTax(pricingSettings, currency) }}
15
- </span>
18
+ <div>
19
+ <div class="lc_caption">
20
+ {{ option.label }}
21
+ </div>
22
+ <div class="lc_regular10">
23
+ <span v-if="option.printArea && calcPrintPrice(option) > 0">
24
+ {{ calcPrintPrice(option) | priceWithTax(pricingSettings, currency) }}
25
+ </span>
26
+ </div>
16
27
  </div>
17
28
  </div>
18
29
  <div
@@ -26,6 +37,15 @@
26
37
  @click="selectSuboption(suboption)"
27
38
  @mouseover="$emit('option-mouseover', suboption)"
28
39
  @mouseleave="$emit('option-mouseleave', suboption)">
40
+ <div
41
+ v-if="suboption.printArea"
42
+ class="EditorPrintAreaOption__icon"
43
+ :class="{
44
+ [suboption.printArea.alias]: true,
45
+ [option.printArea.side]: true,
46
+ [productType]: true
47
+ }">
48
+ </div>
29
49
  <div class="lc_caption">
30
50
  {{ suboption.label }}
31
51
  </div>
@@ -64,6 +84,9 @@ export default {
64
84
  };
65
85
  },
66
86
  computed: {
87
+ productType() {
88
+ return 'tee' || this.product.productType?.alias;
89
+ },
67
90
  ...mapGetters([
68
91
  'pricingSettings'
69
92
  ]),
@@ -12,7 +12,7 @@
12
12
  <span
13
13
  v-if="defaultSimpleProduct && defaultSimpleProduct.pricing[0]"
14
14
  class="lc_regular16 lc_grey1">
15
- From
15
+ From {{ currency.isoCode }}
16
16
  <v-popover
17
17
  ref="popover"
18
18
  trigger="hover"
@@ -118,7 +118,8 @@ export default {
118
118
  'editableColor',
119
119
  'editableLayers',
120
120
  'selectedLayer',
121
- 'editorSize'
121
+ 'editorSize',
122
+ 'editModeSelectedLayer'
122
123
  ]),
123
124
  deleteButtonPosition() {
124
125
  return this.deleteButtonPos ? {
@@ -254,7 +255,15 @@ export default {
254
255
  this.saveLayersAsImageWithDebounce();
255
256
  });
256
257
  this.fabricHelper.on('selectLayer', this.setSelectedLayer);
257
- this.fabricHelper.on('removeLayer', this.removeTemplateLayer);
258
+ this.fabricHelper.on('removeLayer', (layer) => {
259
+ setTimeout(() => {
260
+ if (!this.editModeSelectedLayer) {
261
+ this.removeTemplateLayer(layer);
262
+ } else if (!layer.copy) {
263
+ this.fabricHelper.dispatch('setField', { field: 'isEditMode', value: false });;
264
+ }
265
+ }, 100);
266
+ });
258
267
  this.fabricHelper.on('setDeleteButtonPosition', this.setDeleteButtonPosition);
259
268
  this.fabricHelper.on('outOfPrintArea', this.setOffsetWarningVisibility);
260
269
  // todo center to print area
@@ -265,6 +274,7 @@ export default {
265
274
  if (this.drawingInProcess) {
266
275
  return;
267
276
  }
277
+ console.log('redraw...');
268
278
  this.drawingInProcess = true;
269
279
  this.fabricHelper.clear();
270
280
  this.fabricHelper.addBoundingArea();
@@ -2,8 +2,7 @@
2
2
  <div
3
3
  class="ProductColorImage"
4
4
  :class="{ zoomedIn }"
5
- :style="style"
6
- v-lazy:background-image="pattern">
5
+ :style="style">
7
6
  </div>
8
7
  </template>
9
8
 
@@ -32,7 +31,7 @@ export default {
32
31
  return this.color.pattern && staticLink(this.color.pattern);
33
32
  },
34
33
  style() {
35
- return getColorBackgroundStyle(this.color, this.lazy);
34
+ return getColorBackgroundStyle(this.color);
36
35
  }
37
36
  }
38
37
  };
@@ -9,8 +9,11 @@
9
9
  'ProductMultipacksCarousel__item--active': multipack === selectedMultipack
10
10
  }">
11
11
  <product-multipack
12
+ :color="color"
12
13
  :multipack="multipack"
13
14
  :simple-products="simpleProducts"
15
+ :active="multipack === selectedMultipack"
16
+ :with-gst="withGst"
14
17
  class="elevation2"
15
18
  @selected="toggleMultipack(multipack)" />
16
19
  </div>
@@ -31,7 +34,7 @@
31
34
  </template>
32
35
 
33
36
  <script>
34
- import { mapMutations } from 'vuex';
37
+ import { mapMutations, mapGetters } from 'vuex';
35
38
  import { inRange } from '@lancom/shared/assets/js/utils/filters';
36
39
  import ProductMultipack from './product_multipack/product-multipack';
37
40
 
@@ -42,25 +45,44 @@ export default {
42
45
  },
43
46
  data() {
44
47
  return {
45
- thumbsPage: 0,
46
- selectedMultipack: null
48
+ thumbsPage: 0
47
49
  };
48
50
  },
49
51
  props: {
50
52
  product: {
51
- type: Array,
53
+ type: Object,
54
+ required: true
55
+ },
56
+ color: {
57
+ type: Object,
52
58
  required: true
53
59
  },
54
60
  simpleProducts: {
55
61
  type: Array,
56
62
  required: true
57
63
  },
64
+ withGst: {
65
+ type: Boolean,
66
+ default: false
67
+ },
58
68
  slidesPerRow: {
59
69
  type: Number,
60
70
  default: 3
61
71
  }
62
72
  },
73
+ created() {
74
+ console.log('LancomProductMultipacks...')
75
+ },
63
76
  computed: {
77
+ ...mapGetters('product', ['multipack']),
78
+ selectedMultipack: {
79
+ get() {
80
+ return this.multipack;
81
+ },
82
+ set(multipack) {
83
+ this.setMultipack(multipack);
84
+ }
85
+ },
64
86
  multipacks() {
65
87
  return this.product.multipacks || [];
66
88
  },
@@ -72,6 +94,7 @@ export default {
72
94
  }
73
95
  },
74
96
  methods: {
97
+ ...mapMutations('product', ['setSimpleProductAmount', 'clearSimpleProductsAmount', 'setMultipack']),
75
98
  toggleMultipack(multipack) {
76
99
  this.selectedMultipack = this.selectedMultipack === multipack ? null : multipack;
77
100
  this.clearSimpleProductsAmount();
@@ -79,21 +102,42 @@ export default {
79
102
  this.buyMultipack()
80
103
  }
81
104
  },
82
- ...mapMutations('product', ['setSimpleProductAmount', 'clearSimpleProductsAmount']),
83
105
  buyMultipack() {
84
- const sizes = [
106
+ const leftQty = this.addSimpleProducts([
85
107
  { size: 'S', percent: 0.15 },
86
108
  { size: 'M', percent: 0.2 },
87
109
  { size: 'XL', percent: 0.3 },
88
110
  { size: '2XL', percent: 0.05 },
89
111
  { size: 'L' }
90
- ];
112
+ ]);
113
+ if (leftQty > 0) {
114
+ this.clearSimpleProductsAmount();
115
+ const sizes = [
116
+ { size: 'L' },
117
+ { size: 'XL' },
118
+ { size: 'M' },
119
+ ...this.simpleProducts
120
+ .filter(sp => sp.color?._id === this.color._id)
121
+ .filter(simpleProduct => !['L','XL','M'].includes(simpleProduct.size?.shortName))
122
+ .map(simpleProduct => ({ size: simpleProduct.size?.shortName }))
123
+ ];
124
+ const repeatLeftQty = this.addSimpleProducts(sizes);
125
+ if (repeatLeftQty > 0) {
126
+ this.selectedMultipack = null;
127
+ this.clearSimpleProductsAmount();
128
+ this.$toastr.e('Stock unavailable');
129
+ }
130
+ }
131
+ },
132
+ addSimpleProducts(sizes) {
91
133
  let leftQty = this.selectedMultipack.qty;
92
134
  sizes.forEach(s => {
93
- const simpleProduct = this.simpleProducts.find(simpleProduct => simpleProduct.size.shortName === s.size);
135
+ const simpleProduct = this.simpleProducts
136
+ .filter(sp => sp.color?._id === this.color._id)
137
+ .find(simpleProduct => simpleProduct.size?.shortName === s.size);
94
138
  if (simpleProduct) {
95
139
  const qty = s.percent ? +(s.percent * this.selectedMultipack.qty).toFixed(0) : leftQty;
96
- const amount = inRange(qty, 0, simpleProduct.quantityStock || 999);
140
+ const amount = inRange(qty, 0, simpleProduct.quantityStock || 0);
97
141
  leftQty -= amount;
98
142
  this.setSimpleProductAmount({
99
143
  colorId: simpleProduct.color._id,
@@ -102,7 +146,7 @@ export default {
102
146
  });
103
147
  }
104
148
  });
105
-
149
+ return leftQty;
106
150
  },
107
151
  goToPrevPage() {
108
152
  this.thumbsPage = Math.max(0, this.thumbsPage - 1);
@@ -1,6 +1,9 @@
1
1
  @import "@/assets/scss/variables";
2
2
 
3
3
  .ProductMultipack {
4
+ &__wrapper {
5
+ cursor: pointer;
6
+ }
4
7
  &__price {
5
8
  padding: 10px;
6
9
  text-align: center;
@@ -34,10 +37,15 @@
34
37
  &-info {
35
38
  position: absolute;
36
39
  top: 0px;
37
- right: 0px;
40
+ left: 0px;
38
41
  display: flex;
39
42
  flex-direction: column;
40
43
  align-items: end;
41
44
  }
45
+ &-active {
46
+ position: absolute;
47
+ top: 7px;
48
+ right: 7px;
49
+ }
42
50
  }
43
51
  }
@@ -20,47 +20,70 @@
20
20
  @onclick="buyMultipack()" />
21
21
  </div>
22
22
  </div>
23
+ <div class="ProductMultipack__banner-active">
24
+ <checked-icon :checked="active" />
25
+ </div>
23
26
  </div>
24
27
  <div class="ProductMultipack__price">
25
- {{ oneItemPrice | priceWithTax(pricingSettings, currency) }} each
26
- <span>{{ totalPrice | priceWithTax(pricingSettings, currency) }}</span>
28
+ {{ oneItemPrice | price(currency) }} each
29
+ <span>{{ totalPrice | price(currency) }}</span>
27
30
  </div>
28
31
  </div>
29
32
  </template>
30
33
 
31
34
  <script>
32
35
  import { mapGetters } from 'vuex';
33
- import { priceWithTax } from '@lancom/shared/assets/js/utils/filters';
36
+ import { price, tax } from '@lancom/shared/assets/js/utils/filters';
37
+ import CheckedIcon from '@lancom/shared/components/common/checked-icon';
38
+ import { priceFromRange } from '@lancom/shared/assets/js/utils/pricing';
34
39
 
35
40
  export default {
36
41
  name: 'LancomProductMultipack',
42
+ components: {
43
+ CheckedIcon
44
+ },
37
45
  filters: {
38
- priceWithTax
46
+ price
39
47
  },
40
48
  props: {
49
+ color: {
50
+ type: Object,
51
+ required: true
52
+ },
41
53
  multipack: {
42
54
  type: Object,
43
55
  required: true
44
56
  },
57
+ withGst: {
58
+ type: Boolean,
59
+ default: false
60
+ },
61
+ active: {
62
+ type: Boolean,
63
+ default: false
64
+ },
45
65
  simpleProducts: {
46
66
  type: Array,
47
67
  required: true
48
68
  }
49
69
  },
50
70
  computed: {
51
- ...mapGetters(['pricingSettings', 'currency']),
71
+ ...mapGetters(['pricingSettings', 'currency', 'gstTax']),
52
72
  bannerImage() {
53
73
  const banner = this.multipack.banner?.editorImage || this.multipack.banner;
54
74
  return banner?.origin;
55
75
  },
56
76
  simpleProduct() {
57
- return (this.simpleProducts || []).find(sp => sp.SKU === this.multipack.SKU);
77
+ const simpleProduct = (this.simpleProducts || []).find(sp => sp.SKU === this.multipack.SKU);
78
+ const simpleProducts = (this.simpleProducts || []).filter(sp => sp.color?._id === this.color._id);
79
+ return simpleProducts.find(sp => sp.size?.shortName === simpleProduct?.size?.shortName) || simpleProducts[0];
58
80
  },
59
81
  totalPrice() {
60
82
  return this.oneItemPrice * this.multipack.qty;
61
83
  },
62
84
  oneItemPrice() {
63
- return (this.simpleProduct?.pricing || []).find(p => p.min === this.multipack.qty)?.price || 0;
85
+ const price = priceFromRange(this.multipack.qty, this.simpleProduct?.pricing);
86
+ return this.withGst ? tax(price, this.gstTax) : price;
64
87
  }
65
88
  },
66
89
  methods: {
@@ -92,7 +92,7 @@ async function googleShoppingFeed(axios, config, availableStores) {
92
92
  }
93
93
  } else {
94
94
  info['g:pickup_method'] = { _text: 'not_supported' };
95
- info['g:excluded_destination'] = { _text: 'Local_inventory_ads' };
95
+ info['g:excluded_destination'] = [{ _text: 'Local_inventory_ads' }, { _text: 'Free_local_listings' }];
96
96
  }
97
97
  if (product.volume) {
98
98
  if (product.volume.length) {
@@ -18,6 +18,9 @@ const metaInfo = {
18
18
  }
19
19
  },
20
20
  methods: {
21
+ getCanonical() {
22
+ return this.$route.path === '/' ? '' : this.$route.path;
23
+ },
21
24
  generateTitleFromRoute() {
22
25
  return this.$route.path
23
26
  .split('/')
@@ -50,10 +53,11 @@ const metaInfo = {
50
53
  content: pageTitle
51
54
  }];
52
55
 
56
+ const canonical = this.getCanonical();
53
57
  const link = [{
54
58
  hid: 'canonical',
55
59
  rel: 'canonical',
56
- href: `https://${process.env.HOST_NAME}${this.$route.path === '/' ? '' : this.$route.path}`
60
+ href: `https://${process.env.HOST_NAME}${canonical}`
57
61
  }];
58
62
 
59
63
  if (hasQueryParams) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lancom/shared",
3
- "version": "0.0.268",
3
+ "version": "0.0.270",
4
4
  "description": "lancom common scripts",
5
5
  "author": "e.tokovenko <e.tokovenko@gmail.com>",
6
6
  "repository": {
@@ -0,0 +1,3 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M63.7048 2.04228L85.7966 7.18865L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18865L36.3007 2.04228C36.3007 2.04228 41.1763 3.99259 50.0028 3.99259C59.6718 3.99259 63.7048 2.04228 63.7048 2.04228ZM63.7048 7.04116e-05C63.399 0.0002802 63.0971 0.0683054 62.8211 0.199186C62.7235 0.245136 58.8652 1.95038 50.0079 1.95038C41.7877 1.95038 37.1176 0.163447 37.0713 0.143025C36.8252 0.0498852 36.5641 0.00146426 36.3007 7.04116e-05C36.1432 0.000925777 35.9863 0.0197697 35.8332 0.0562312L13.7414 5.2026C13.4597 5.26997 13.1955 5.39577 12.9662 5.57175C12.7368 5.74773 12.5475 5.96991 12.4107 6.22371L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5816 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.161 0.473998 30.3705C0.649115 30.5801 0.864654 30.7528 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4009 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2666 20.3856 41.1325 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6997 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.437 21.0984 94.6617C21.0902 95.2024 21.2982 95.7244 21.6767 96.113C22.0552 96.5016 22.5734 96.7251 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4268 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.2521C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9873 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.743 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9128 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20329C87.4682 5.94949 87.279 5.72731 87.0496 5.55133C86.8203 5.37535 86.5561 5.24955 86.2744 5.18218L64.1723 0.0562312C64.0196 0.0175683 63.8624 -0.0013084 63.7048 7.04116e-05Z" fill="#575872"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="33" y="28" width="34" height="46" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04228L85.7966 7.18865L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18865L36.3007 2.04228C36.3007 2.04228 41.1763 3.99259 50.0028 3.99259C59.6718 3.99259 63.7048 2.04228 63.7048 2.04228ZM63.7048 7.04116e-05C63.399 0.0002802 63.0971 0.0683054 62.8211 0.199186C62.7235 0.245136 58.8652 1.95038 50.0079 1.95038C41.7877 1.95038 37.1176 0.163447 37.0713 0.143025C36.8252 0.0498852 36.5641 0.00146426 36.3007 7.04116e-05C36.1432 0.000925777 35.9863 0.0197697 35.8332 0.0562312L13.7414 5.2026C13.4597 5.26997 13.1955 5.39577 12.9662 5.57175C12.7368 5.74773 12.5475 5.96991 12.4107 6.22371L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5816 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.161 0.473998 30.3705C0.649115 30.5801 0.864654 30.7528 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4009 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2666 20.3856 41.1325 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6997 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.437 21.0984 94.6617C21.0902 95.2024 21.2982 95.7244 21.6767 96.113C22.0552 96.5016 22.5734 96.7251 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4268 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.2521C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9873 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.743 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9128 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20329C87.4682 5.94949 87.279 5.72731 87.0496 5.55133C86.8203 5.37535 86.5561 5.24955 86.2744 5.18218L64.1723 0.0562312C64.0196 0.0175683 63.8624 -0.0013084 63.7048 7.04116e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="36" y="28" width="28" height="34" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04228L85.7966 7.18865L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18865L36.3007 2.04228C36.3007 2.04228 41.1763 3.99259 50.0028 3.99259C59.6718 3.99259 63.7048 2.04228 63.7048 2.04228ZM63.7048 7.04116e-05C63.399 0.0002802 63.0971 0.0683054 62.8211 0.199186C62.7235 0.245136 58.8652 1.95038 50.0079 1.95038C41.7877 1.95038 37.1176 0.163447 37.0713 0.143025C36.8252 0.0498852 36.5641 0.00146426 36.3007 7.04116e-05C36.1432 0.000925777 35.9863 0.0197697 35.8332 0.0562312L13.7414 5.2026C13.4597 5.26997 13.1955 5.39577 12.9662 5.57175C12.7368 5.74773 12.5475 5.96991 12.4107 6.22371L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5816 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.161 0.473998 30.3705C0.649115 30.5801 0.864654 30.7528 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4009 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2666 20.3856 41.1325 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6997 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.437 21.0984 94.6617C21.0902 95.2024 21.2982 95.7244 21.6767 96.113C22.0552 96.5016 22.5734 96.7251 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4268 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.2521C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9873 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.743 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9128 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20329C87.4682 5.94949 87.279 5.72731 87.0496 5.55133C86.8203 5.37535 86.5561 5.24955 86.2744 5.18218L64.1723 0.0562312C64.0196 0.0175683 63.8624 -0.0013084 63.7048 7.04116e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="36" y="28" width="28" height="17" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04228L85.7966 7.18865L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18865L36.3007 2.04228C36.3007 2.04228 41.1763 3.99259 50.0028 3.99259C59.6718 3.99259 63.7048 2.04228 63.7048 2.04228ZM63.7048 7.04116e-05C63.399 0.0002802 63.0971 0.0683054 62.8211 0.199186C62.7235 0.245136 58.8652 1.95038 50.0079 1.95038C41.7877 1.95038 37.1176 0.163447 37.0713 0.143025C36.8252 0.0498852 36.5641 0.00146426 36.3007 7.04116e-05C36.1432 0.000925777 35.9863 0.0197697 35.8332 0.0562312L13.7414 5.2026C13.4597 5.26997 13.1955 5.39577 12.9662 5.57175C12.7368 5.74773 12.5475 5.96991 12.4107 6.22371L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5816 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.161 0.473998 30.3705C0.649115 30.5801 0.864654 30.7528 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4009 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2666 20.3856 41.1325 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6997 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.437 21.0984 94.6617C21.0902 95.2024 21.2982 95.7244 21.6767 96.113C22.0552 96.5016 22.5734 96.7251 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4268 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.2521C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9873 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.743 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9128 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20329C87.4682 5.94949 87.279 5.72731 87.0496 5.55133C86.8203 5.37535 86.5561 5.24955 86.2744 5.18218L64.1723 0.0562312C64.0196 0.0175683 63.8624 -0.0013084 63.7048 7.04116e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="54" y="29" width="16" height="16" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04228L85.7966 7.18865L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18865L36.3007 2.04228C36.3007 2.04228 41.1763 3.99259 50.0028 3.99259C59.6718 3.99259 63.7048 2.04228 63.7048 2.04228ZM63.7048 7.04116e-05C63.399 0.0002802 63.0971 0.0683054 62.8211 0.199186C62.7235 0.245136 58.8652 1.95038 50.0079 1.95038C41.7877 1.95038 37.1176 0.163447 37.0713 0.143025C36.8252 0.0498852 36.5641 0.00146426 36.3007 7.04116e-05C36.1432 0.000925777 35.9863 0.0197697 35.8332 0.0562312L13.7414 5.2026C13.4597 5.26997 13.1955 5.39577 12.9662 5.57175C12.7368 5.74773 12.5475 5.96991 12.4107 6.22371L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5816 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.161 0.473998 30.3705C0.649115 30.5801 0.864654 30.7528 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4009 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2666 20.3856 41.1325 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6997 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.437 21.0984 94.6617C21.0902 95.2024 21.2982 95.7244 21.6767 96.113C22.0552 96.5016 22.5734 96.7251 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4268 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.2521C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9873 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.743 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9128 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20329C87.4682 5.94949 87.279 5.72731 87.0496 5.55133C86.8203 5.37535 86.5561 5.24955 86.2744 5.18218L64.1723 0.0562312C64.0196 0.0175683 63.8624 -0.0013084 63.7048 7.04116e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M63.7048 2.04228L85.7966 7.18865L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18865L36.3007 2.04228C36.3007 2.04228 41.1763 3.99259 50.0028 3.99259C59.6718 3.99259 63.7048 2.04228 63.7048 2.04228ZM63.7048 7.04116e-05C63.399 0.0002802 63.0971 0.0683054 62.8211 0.199186C62.7235 0.245136 58.8652 1.95038 50.0079 1.95038C41.7877 1.95038 37.1176 0.163447 37.0713 0.143025C36.8252 0.0498852 36.5641 0.00146426 36.3007 7.04116e-05C36.1432 0.000925777 35.9863 0.0197697 35.8332 0.0562312L13.7414 5.2026C13.4597 5.26997 13.1955 5.39577 12.9662 5.57175C12.7368 5.74773 12.5475 5.96991 12.4107 6.22371L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5816 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.161 0.473998 30.3705C0.649115 30.5801 0.864654 30.7528 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4009 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2666 20.3856 41.1325 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6997 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.437 21.0984 94.6617C21.0902 95.2024 21.2982 95.7244 21.6767 96.113C22.0552 96.5016 22.5734 96.7251 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4268 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.2521C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9873 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.743 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9128 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20329C87.4682 5.94949 87.279 5.72731 87.0496 5.55133C86.8203 5.37535 86.5561 5.24955 86.2744 5.18218L64.1723 0.0562312C64.0196 0.0175683 63.8624 -0.0013084 63.7048 7.04116e-05Z" fill="#575872"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="33" y="28" width="34" height="46" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04228L85.7966 7.18865L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18865L36.3007 2.04228C36.3007 2.04228 41.1763 3.99259 50.0028 3.99259C59.6718 3.99259 63.7048 2.04228 63.7048 2.04228ZM63.7048 7.04116e-05C63.399 0.0002802 63.0971 0.0683054 62.8211 0.199186C62.7235 0.245136 58.8652 1.95038 50.0079 1.95038C41.7877 1.95038 37.1176 0.163447 37.0713 0.143025C36.8252 0.0498852 36.5641 0.00146426 36.3007 7.04116e-05C36.1432 0.000925777 35.9863 0.0197697 35.8332 0.0562312L13.7414 5.2026C13.4597 5.26997 13.1955 5.39577 12.9662 5.57175C12.7368 5.74773 12.5475 5.96991 12.4107 6.22371L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5816 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.161 0.473998 30.3705C0.649115 30.5801 0.864654 30.7528 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4009 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2666 20.3856 41.1325 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6997 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.437 21.0984 94.6617C21.0902 95.2024 21.2982 95.7244 21.6767 96.113C22.0552 96.5016 22.5734 96.7251 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4268 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.2521C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9873 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.743 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9128 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20329C87.4682 5.94949 87.279 5.72731 87.0496 5.55133C86.8203 5.37535 86.5561 5.24955 86.2744 5.18218L64.1723 0.0562312C64.0196 0.0175683 63.8624 -0.0013084 63.7048 7.04116e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="36" y="28" width="28" height="34" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04228L85.7966 7.18865L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18865L36.3007 2.04228C36.3007 2.04228 41.1763 3.99259 50.0028 3.99259C59.6718 3.99259 63.7048 2.04228 63.7048 2.04228ZM63.7048 7.04116e-05C63.399 0.0002802 63.0971 0.0683054 62.8211 0.199186C62.7235 0.245136 58.8652 1.95038 50.0079 1.95038C41.7877 1.95038 37.1176 0.163447 37.0713 0.143025C36.8252 0.0498852 36.5641 0.00146426 36.3007 7.04116e-05C36.1432 0.000925777 35.9863 0.0197697 35.8332 0.0562312L13.7414 5.2026C13.4597 5.26997 13.1955 5.39577 12.9662 5.57175C12.7368 5.74773 12.5475 5.96991 12.4107 6.22371L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5816 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.161 0.473998 30.3705C0.649115 30.5801 0.864654 30.7528 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4009 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2666 20.3856 41.1325 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6997 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.437 21.0984 94.6617C21.0902 95.2024 21.2982 95.7244 21.6767 96.113C22.0552 96.5016 22.5734 96.7251 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4268 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.2521C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9873 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.743 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9128 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20329C87.4682 5.94949 87.279 5.72731 87.0496 5.55133C86.8203 5.37535 86.5561 5.24955 86.2744 5.18218L64.1723 0.0562312C64.0196 0.0175683 63.8624 -0.0013084 63.7048 7.04116e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="36" y="28" width="28" height="17" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04228L85.7966 7.18865L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18865L36.3007 2.04228C36.3007 2.04228 41.1763 3.99259 50.0028 3.99259C59.6718 3.99259 63.7048 2.04228 63.7048 2.04228ZM63.7048 7.04116e-05C63.399 0.0002802 63.0971 0.0683054 62.8211 0.199186C62.7235 0.245136 58.8652 1.95038 50.0079 1.95038C41.7877 1.95038 37.1176 0.163447 37.0713 0.143025C36.8252 0.0498852 36.5641 0.00146426 36.3007 7.04116e-05C36.1432 0.000925777 35.9863 0.0197697 35.8332 0.0562312L13.7414 5.2026C13.4597 5.26997 13.1955 5.39577 12.9662 5.57175C12.7368 5.74773 12.5475 5.96991 12.4107 6.22371L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5816 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.161 0.473998 30.3705C0.649115 30.5801 0.864654 30.7528 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4009 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2666 20.3856 41.1325 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6997 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.437 21.0984 94.6617C21.0902 95.2024 21.2982 95.7244 21.6767 96.113C22.0552 96.5016 22.5734 96.7251 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4268 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.2521C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9873 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.743 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9128 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20329C87.4682 5.94949 87.279 5.72731 87.0496 5.55133C86.8203 5.37535 86.5561 5.24955 86.2744 5.18218L64.1723 0.0562312C64.0196 0.0175683 63.8624 -0.0013084 63.7048 7.04116e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="54" y="29" width="16" height="16" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04228L85.7966 7.18865L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18865L36.3007 2.04228C36.3007 2.04228 41.1763 3.99259 50.0028 3.99259C59.6718 3.99259 63.7048 2.04228 63.7048 2.04228ZM63.7048 7.04116e-05C63.399 0.0002802 63.0971 0.0683054 62.8211 0.199186C62.7235 0.245136 58.8652 1.95038 50.0079 1.95038C41.7877 1.95038 37.1176 0.163447 37.0713 0.143025C36.8252 0.0498852 36.5641 0.00146426 36.3007 7.04116e-05C36.1432 0.000925777 35.9863 0.0197697 35.8332 0.0562312L13.7414 5.2026C13.4597 5.26997 13.1955 5.39577 12.9662 5.57175C12.7368 5.74773 12.5475 5.96991 12.4107 6.22371L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5816 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.161 0.473998 30.3705C0.649115 30.5801 0.864654 30.7528 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4009 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2666 20.3856 41.1325 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6997 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.437 21.0984 94.6617C21.0902 95.2024 21.2982 95.7244 21.6767 96.113C22.0552 96.5016 22.5734 96.7251 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4268 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.2521C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9873 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.743 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9128 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20329C87.4682 5.94949 87.279 5.72731 87.0496 5.55133C86.8203 5.37535 86.5561 5.24955 86.2744 5.18218L64.1723 0.0562312C64.0196 0.0175683 63.8624 -0.0013084 63.7048 7.04116e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="58" height="54" viewBox="0 0 58 54" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M45.673 4.10769C45.5638 4.0081 45.4363 3.93085 45.2975 3.88007L36.6366 0.784457C36.0458 0.569927 35.3929 0.875078 35.1784 1.46589C35.1397 1.57244 35.1172 1.68412 35.1115 1.79736C35.1115 2.04774 34.7701 2.74254 29 2.83359C23.1957 2.74254 22.7974 2.04774 22.786 1.79736C22.7524 1.1697 22.2164 0.688146 21.5887 0.72172C21.4809 0.727552 21.3743 0.748607 21.2723 0.784457L12.6228 3.91421C12.484 3.965 12.3565 4.04225 12.2473 4.14183L0.354216 14.7488C-0.101447 15.1817 -0.119941 15.9022 0.312961 16.3578C0.326333 16.3719 0.340133 16.3857 0.354216 16.3991L9.82314 25.9704V52.1465C9.82314 52.7751 10.3327 53.2846 10.9612 53.2846H47.0387C47.6673 53.2846 48.1768 52.7751 48.1768 52.1465V25.9704L57.6458 16.3991C58.1014 15.9662 58.1199 15.2458 57.687 14.7901C57.6736 14.776 57.6598 14.7622 57.6458 14.7488L45.673 4.10769ZM48.1427 22.7269V17.4461C48.1427 16.8176 47.6331 16.308 47.0046 16.308C46.3761 16.308 45.8665 16.8176 45.8665 17.4461V50.9515H12.0538V17.4461C12.0538 16.8176 11.5442 16.308 10.9157 16.308C10.2872 16.308 9.77762 16.8176 9.77762 17.4461V22.7383L2.77835 15.6479L13.613 5.95139L20.7374 3.37931C24.1667 6.05581 24.2082 5.25026 29 5.25026C33.7918 5.25026 33.8333 6.05581 37.2056 3.37931L44.3301 5.95139L55.1306 15.6479L48.1427 22.7269Z" fill="#303030"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="33" y="28" width="34" height="46" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04228L85.7966 7.18865L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18865L36.3007 2.04228C36.3007 2.04228 41.1763 3.99259 50.0028 3.99259C59.6718 3.99259 63.7048 2.04228 63.7048 2.04228ZM63.7048 7.04116e-05C63.399 0.0002802 63.0971 0.0683054 62.8211 0.199186C62.7235 0.245136 58.8652 1.95038 50.0079 1.95038C41.7877 1.95038 37.1176 0.163447 37.0713 0.143025C36.8252 0.0498852 36.5641 0.00146426 36.3007 7.04116e-05C36.1432 0.000925777 35.9863 0.0197697 35.8332 0.0562312L13.7414 5.2026C13.4597 5.26997 13.1955 5.39577 12.9662 5.57175C12.7368 5.74773 12.5475 5.96991 12.4107 6.22371L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5816 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.161 0.473998 30.3705C0.649115 30.5801 0.864654 30.7528 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4009 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2666 20.3856 41.1325 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6997 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.437 21.0984 94.6617C21.0902 95.2024 21.2982 95.7244 21.6767 96.113C22.0552 96.5016 22.5734 96.7251 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4268 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.2521C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9873 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.743 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9128 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20329C87.4682 5.94949 87.279 5.72731 87.0496 5.55133C86.8203 5.37535 86.5561 5.24955 86.2744 5.18218L64.1723 0.0562312C64.0196 0.0175683 63.8624 -0.0013084 63.7048 7.04116e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="36" y="28" width="28" height="34" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04228L85.7966 7.18865L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18865L36.3007 2.04228C36.3007 2.04228 41.1763 3.99259 50.0028 3.99259C59.6718 3.99259 63.7048 2.04228 63.7048 2.04228ZM63.7048 7.04116e-05C63.399 0.0002802 63.0971 0.0683054 62.8211 0.199186C62.7235 0.245136 58.8652 1.95038 50.0079 1.95038C41.7877 1.95038 37.1176 0.163447 37.0713 0.143025C36.8252 0.0498852 36.5641 0.00146426 36.3007 7.04116e-05C36.1432 0.000925777 35.9863 0.0197697 35.8332 0.0562312L13.7414 5.2026C13.4597 5.26997 13.1955 5.39577 12.9662 5.57175C12.7368 5.74773 12.5475 5.96991 12.4107 6.22371L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5816 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.161 0.473998 30.3705C0.649115 30.5801 0.864654 30.7528 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4009 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2666 20.3856 41.1325 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6997 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.437 21.0984 94.6617C21.0902 95.2024 21.2982 95.7244 21.6767 96.113C22.0552 96.5016 22.5734 96.7251 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4268 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.2521C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9873 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.743 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9128 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20329C87.4682 5.94949 87.279 5.72731 87.0496 5.55133C86.8203 5.37535 86.5561 5.24955 86.2744 5.18218L64.1723 0.0562312C64.0196 0.0175683 63.8624 -0.0013084 63.7048 7.04116e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="58" height="58" viewBox="0 0 58 58" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0)">
3
+ <path d="M10.9168 54.0892V27.5034L1.10645 17.5792L13.0223 6.96084L21.5579 3.86523L21.8425 5.12852C25.7789 7.24985 26.0829 6.44429 29.0012 6.44429C32.5274 6.44429 32.2234 8.0554 36.0914 5.12852L36.3759 3.86523L44.8888 6.96084L56.8046 17.5792L47.0057 27.492V54.0892H10.9168Z" fill="#F4F4F4"/>
4
+ <path d="M45.673 6.10769C45.5638 6.0081 45.4363 5.93085 45.2975 5.88007L36.6366 2.78446C36.0458 2.56993 35.3929 2.87508 35.1784 3.46589C35.1397 3.57244 35.1172 3.68412 35.1115 3.79736C35.1115 4.04774 34.7701 4.74254 29 4.83359C23.1957 4.74254 22.7974 4.04774 22.786 3.79736C22.7524 3.1697 22.2164 2.68815 21.5887 2.72172C21.4809 2.72755 21.3743 2.74861 21.2723 2.78446L12.6228 5.91421C12.484 5.965 12.3565 6.04225 12.2473 6.14183L0.354216 16.7488C-0.101447 17.1817 -0.119941 17.9022 0.312961 18.3578C0.326333 18.3719 0.340133 18.3857 0.354216 18.3991L9.82314 27.9704V54.1465C9.82314 54.7751 10.3327 55.2846 10.9612 55.2846H47.0387C47.6673 55.2846 48.1768 54.7751 48.1768 54.1465V27.9704L57.6458 18.3991C58.1014 17.9662 58.1199 17.2458 57.687 16.7901C57.6736 16.776 57.6598 16.7622 57.6458 16.7488L45.673 6.10769ZM48.1427 24.7269V19.4461C48.1427 18.8176 47.6331 18.308 47.0046 18.308C46.3761 18.308 45.8665 18.8176 45.8665 19.4461V52.9515H12.0538V19.4461C12.0538 18.8176 11.5442 18.308 10.9157 18.308C10.2872 18.308 9.77762 18.8176 9.77762 19.4461V24.7383L2.77835 17.6479L13.613 7.95139L20.7374 5.37931C24.1667 8.05581 24.2082 7.25026 29 7.25026C33.7918 7.25026 33.8333 8.05581 37.2056 5.37931L44.3301 7.95139L55.1306 17.6479L48.1427 24.7269Z" fill="#303030"/>
5
+ <rect x="16" y="32" width="26" height="17" rx="1.61189" fill="#303030"/>
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0">
9
+ <rect width="58" height="58" fill="white"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="58" height="58" viewBox="0 0 58 58" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0)">
3
+ <path d="M10.9168 54.0892V27.5034L1.10645 17.5792L13.0223 6.96084L21.5579 3.86523L21.8425 5.12852C25.7789 7.24985 26.0829 6.44429 29.0012 6.44429C32.5274 6.44429 32.2234 8.0554 36.0914 5.12852L36.3759 3.86523L44.8888 6.96084L56.8046 17.5792L47.0057 27.492V54.0892H10.9168Z" fill="#F4F4F4"/>
4
+ <path d="M45.673 6.10769C45.5638 6.0081 45.4363 5.93085 45.2975 5.88007L36.6366 2.78446C36.0458 2.56993 35.3929 2.87508 35.1784 3.46589C35.1397 3.57244 35.1172 3.68412 35.1115 3.79736C35.1115 4.04774 34.7701 4.74254 29 4.83359C23.1957 4.74254 22.7974 4.04774 22.786 3.79736C22.7524 3.1697 22.2164 2.68815 21.5887 2.72172C21.4809 2.72755 21.3743 2.74861 21.2723 2.78446L12.6228 5.91421C12.484 5.965 12.3565 6.04225 12.2473 6.14183L0.354216 16.7488C-0.101447 17.1817 -0.119941 17.9022 0.312961 18.3578C0.326333 18.3719 0.340133 18.3857 0.354216 18.3991L9.82314 27.9704V54.1465C9.82314 54.7751 10.3327 55.2846 10.9612 55.2846H47.0387C47.6673 55.2846 48.1768 54.7751 48.1768 54.1465V27.9704L57.6458 18.3991C58.1014 17.9662 58.1199 17.2458 57.687 16.7901C57.6736 16.776 57.6598 16.7622 57.6458 16.7488L45.673 6.10769ZM48.1427 24.7269V19.4461C48.1427 18.8176 47.6331 18.308 47.0046 18.308C46.3761 18.308 45.8665 18.8176 45.8665 19.4461V52.9515H12.0538V19.4461C12.0538 18.8176 11.5442 18.308 10.9157 18.308C10.2872 18.308 9.77762 18.8176 9.77762 19.4461V24.7383L2.77835 17.6479L13.613 7.95139L20.7374 5.37931C24.1667 8.05581 24.2082 7.25026 29 7.25026C33.7918 7.25026 33.8333 8.05581 37.2056 5.37931L44.3301 7.95139L55.1306 17.6479L48.1427 24.7269Z" fill="#303030"/>
5
+ <rect x="17.7227" y="17.7227" width="22.5555" height="27.3889" rx="1.61189" fill="#303030"/>
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0">
9
+ <rect width="58" height="58" fill="white"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="36" y="28" width="28" height="17" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04228L85.7966 7.18865L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18865L36.3007 2.04228C36.3007 2.04228 41.1763 3.99259 50.0028 3.99259C59.6718 3.99259 63.7048 2.04228 63.7048 2.04228ZM63.7048 7.04116e-05C63.399 0.0002802 63.0971 0.0683054 62.8211 0.199186C62.7235 0.245136 58.8652 1.95038 50.0079 1.95038C41.7877 1.95038 37.1176 0.163447 37.0713 0.143025C36.8252 0.0498852 36.5641 0.00146426 36.3007 7.04116e-05C36.1432 0.000925777 35.9863 0.0197697 35.8332 0.0562312L13.7414 5.2026C13.4597 5.26997 13.1955 5.39577 12.9662 5.57175C12.7368 5.74773 12.5475 5.96991 12.4107 6.22371L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5816 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.161 0.473998 30.3705C0.649115 30.5801 0.864654 30.7528 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4009 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2666 20.3856 41.1325 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6997 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.437 21.0984 94.6617C21.0902 95.2024 21.2982 95.7244 21.6767 96.113C22.0552 96.5016 22.5734 96.7251 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4268 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.2521C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9873 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.743 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9128 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20329C87.4682 5.94949 87.279 5.72731 87.0496 5.55133C86.8203 5.37535 86.5561 5.24955 86.2744 5.18218L64.1723 0.0562312C64.0196 0.0175683 63.8624 -0.0013084 63.7048 7.04116e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="54" y="29" width="16" height="16" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04228L85.7966 7.18865L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18865L36.3007 2.04228C36.3007 2.04228 41.1763 3.99259 50.0028 3.99259C59.6718 3.99259 63.7048 2.04228 63.7048 2.04228ZM63.7048 7.04116e-05C63.399 0.0002802 63.0971 0.0683054 62.8211 0.199186C62.7235 0.245136 58.8652 1.95038 50.0079 1.95038C41.7877 1.95038 37.1176 0.163447 37.0713 0.143025C36.8252 0.0498852 36.5641 0.00146426 36.3007 7.04116e-05C36.1432 0.000925777 35.9863 0.0197697 35.8332 0.0562312L13.7414 5.2026C13.4597 5.26997 13.1955 5.39577 12.9662 5.57175C12.7368 5.74773 12.5475 5.96991 12.4107 6.22371L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5816 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.161 0.473998 30.3705C0.649115 30.5801 0.864654 30.7528 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4009 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2666 20.3856 41.1325 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6997 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.437 21.0984 94.6617C21.0902 95.2024 21.2982 95.7244 21.6767 96.113C22.0552 96.5016 22.5734 96.7251 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4268 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.2521C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9873 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.743 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9128 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20329C87.4682 5.94949 87.279 5.72731 87.0496 5.55133C86.8203 5.37535 86.5561 5.24955 86.2744 5.18218L64.1723 0.0562312C64.0196 0.0175683 63.8624 -0.0013084 63.7048 7.04116e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="58" height="58" viewBox="0 0 58 58" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0)">
3
+ <path d="M10.9168 54.0892V27.5034L1.10645 17.5792L13.0223 6.96084L21.5579 3.86523L21.8425 5.12852C25.7789 7.24985 26.0829 6.44429 29.0012 6.44429C32.5274 6.44429 32.2234 8.0554 36.0914 5.12852L36.3759 3.86523L44.8888 6.96084L56.8046 17.5792L47.0057 27.492V54.0892H10.9168Z" fill="#F4F4F4"/>
4
+ <path d="M45.673 6.10769C45.5638 6.0081 45.4363 5.93085 45.2975 5.88007L36.6366 2.78446C36.0458 2.56993 35.3929 2.87508 35.1784 3.46589C35.1397 3.57244 35.1172 3.68412 35.1115 3.79736C35.1115 4.04774 34.7701 4.74254 29 4.83359C23.1957 4.74254 22.7974 4.04774 22.786 3.79736C22.7524 3.1697 22.2164 2.68815 21.5887 2.72172C21.4809 2.72755 21.3743 2.74861 21.2723 2.78446L12.6228 5.91421C12.484 5.965 12.3565 6.04225 12.2473 6.14183L0.354216 16.7488C-0.101447 17.1817 -0.119941 17.9022 0.312961 18.3578C0.326333 18.3719 0.340133 18.3857 0.354216 18.3991L9.82314 27.9704V54.1465C9.82314 54.7751 10.3327 55.2846 10.9612 55.2846H47.0387C47.6673 55.2846 48.1768 54.7751 48.1768 54.1465V27.9704L57.6458 18.3991C58.1014 17.9662 58.1199 17.2458 57.687 16.7901C57.6736 16.776 57.6598 16.7622 57.6458 16.7488L45.673 6.10769ZM48.1427 24.7269V19.4461C48.1427 18.8176 47.6331 18.308 47.0046 18.308C46.3761 18.308 45.8665 18.8176 45.8665 19.4461V52.9515H12.0538V19.4461C12.0538 18.8176 11.5442 18.308 10.9157 18.308C10.2872 18.308 9.77762 18.8176 9.77762 19.4461V24.7383L2.77835 17.6479L13.613 7.95139L20.7374 5.37931C24.1667 8.05581 24.2082 7.25026 29 7.25026C33.7918 7.25026 33.8333 8.05581 37.2056 5.37931L44.3301 7.95139L55.1306 17.6479L48.1427 24.7269Z" fill="#303030"/>
5
+ <rect x="16" y="13" width="26" height="17" rx="1.61189" fill="#303030"/>
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0">
9
+ <rect width="58" height="58" fill="white"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M63.7048 2.04227L85.7966 7.18864L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18864L36.3007 2.04227C36.3007 2.04227 41.1763 11.1403 50.0028 11.1403C59.6718 11.1403 63.7048 2.04227 63.7048 2.04227ZM63.7048 5.45824e-05C63.3075 0.000772168 62.9189 0.115932 62.5861 0.331592C62.2533 0.547251 61.9905 0.854163 61.8296 1.21517C61.6755 1.55214 58.1665 9.09811 50.013 9.09811C42.507 9.09811 38.1965 1.16412 38.1246 1.08243C37.9486 0.75403 37.6857 0.47964 37.3643 0.288885C37.0428 0.0981302 36.6751 -0.00174143 36.3007 5.45824e-05C36.1431 -0.00115423 35.986 0.0177199 35.8332 0.0562154L13.7414 5.20259C13.4597 5.26995 13.1955 5.39576 12.9662 5.57173C12.7368 5.74771 12.5475 5.96989 12.4107 6.22369L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5815 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.1609 0.473998 30.3705C0.649115 30.5801 0.864654 30.7527 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4008 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2665 20.3856 41.1324 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6996 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.4421 21.0984 94.6617C21.0928 94.9307 21.1408 95.1982 21.2395 95.4488C21.3383 95.6994 21.4859 95.9281 21.6739 96.1218C22.0545 96.5079 22.5737 96.7282 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4319 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.252C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9872 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.7429 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9127 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20327C87.4682 5.94947 87.279 5.72729 87.0496 5.55131C86.8203 5.37533 86.5561 5.24953 86.2744 5.18217L64.1723 0.0562154C64.0195 0.0178844 63.8624 -0.000987088 63.7048 5.45824e-05Z" fill="#575872"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="33" y="28" width="34" height="46" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04227L85.7966 7.18864L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18864L36.3007 2.04227C36.3007 2.04227 41.1763 11.1403 50.0028 11.1403C59.6718 11.1403 63.7048 2.04227 63.7048 2.04227ZM63.7048 5.45824e-05C63.3075 0.000772168 62.9189 0.115932 62.5861 0.331592C62.2533 0.547251 61.9905 0.854163 61.8296 1.21517C61.6755 1.55214 58.1665 9.09811 50.013 9.09811C42.507 9.09811 38.1965 1.16412 38.1246 1.08243C37.9486 0.75403 37.6857 0.47964 37.3643 0.288885C37.0428 0.0981302 36.6751 -0.00174143 36.3007 5.45824e-05C36.1431 -0.00115423 35.986 0.0177199 35.8332 0.0562154L13.7414 5.20259C13.4597 5.26995 13.1955 5.39576 12.9662 5.57173C12.7368 5.74771 12.5475 5.96989 12.4107 6.22369L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5815 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.1609 0.473998 30.3705C0.649115 30.5801 0.864654 30.7527 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4008 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2665 20.3856 41.1324 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6996 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.4421 21.0984 94.6617C21.0928 94.9307 21.1408 95.1982 21.2395 95.4488C21.3383 95.6994 21.4859 95.9281 21.6739 96.1218C22.0545 96.5079 22.5737 96.7282 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4319 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.252C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9872 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.7429 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9127 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20327C87.4682 5.94947 87.279 5.72729 87.0496 5.55131C86.8203 5.37533 86.5561 5.24953 86.2744 5.18217L64.1723 0.0562154C64.0195 0.0178844 63.8624 -0.000987088 63.7048 5.45824e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="36" y="28" width="28" height="34" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04227L85.7966 7.18864L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18864L36.3007 2.04227C36.3007 2.04227 41.1763 11.1403 50.0028 11.1403C59.6718 11.1403 63.7048 2.04227 63.7048 2.04227ZM63.7048 5.45824e-05C63.3075 0.000772168 62.9189 0.115932 62.5861 0.331592C62.2533 0.547251 61.9905 0.854163 61.8296 1.21517C61.6755 1.55214 58.1665 9.09811 50.013 9.09811C42.507 9.09811 38.1965 1.16412 38.1246 1.08243C37.9486 0.75403 37.6857 0.47964 37.3643 0.288885C37.0428 0.0981302 36.6751 -0.00174143 36.3007 5.45824e-05C36.1431 -0.00115423 35.986 0.0177199 35.8332 0.0562154L13.7414 5.20259C13.4597 5.26995 13.1955 5.39576 12.9662 5.57173C12.7368 5.74771 12.5475 5.96989 12.4107 6.22369L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5815 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.1609 0.473998 30.3705C0.649115 30.5801 0.864654 30.7527 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4008 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2665 20.3856 41.1324 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6996 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.4421 21.0984 94.6617C21.0928 94.9307 21.1408 95.1982 21.2395 95.4488C21.3383 95.6994 21.4859 95.9281 21.6739 96.1218C22.0545 96.5079 22.5737 96.7282 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4319 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.252C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9872 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.7429 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9127 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20327C87.4682 5.94947 87.279 5.72729 87.0496 5.55131C86.8203 5.37533 86.5561 5.24953 86.2744 5.18217L64.1723 0.0562154C64.0195 0.0178844 63.8624 -0.000987088 63.7048 5.45824e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="36" y="28" width="28" height="17" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04227L85.7966 7.18864L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18864L36.3007 2.04227C36.3007 2.04227 41.1763 11.1403 50.0028 11.1403C59.6718 11.1403 63.7048 2.04227 63.7048 2.04227ZM63.7048 5.45824e-05C63.3075 0.000772168 62.9189 0.115932 62.5861 0.331592C62.2533 0.547251 61.9905 0.854163 61.8296 1.21517C61.6755 1.55214 58.1665 9.09811 50.013 9.09811C42.507 9.09811 38.1965 1.16412 38.1246 1.08243C37.9486 0.75403 37.6857 0.47964 37.3643 0.288885C37.0428 0.0981302 36.6751 -0.00174143 36.3007 5.45824e-05C36.1431 -0.00115423 35.986 0.0177199 35.8332 0.0562154L13.7414 5.20259C13.4597 5.26995 13.1955 5.39576 12.9662 5.57173C12.7368 5.74771 12.5475 5.96989 12.4107 6.22369L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5815 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.1609 0.473998 30.3705C0.649115 30.5801 0.864654 30.7527 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4008 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2665 20.3856 41.1324 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6996 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.4421 21.0984 94.6617C21.0928 94.9307 21.1408 95.1982 21.2395 95.4488C21.3383 95.6994 21.4859 95.9281 21.6739 96.1218C22.0545 96.5079 22.5737 96.7282 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4319 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.252C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9872 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.7429 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9127 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20327C87.4682 5.94947 87.279 5.72729 87.0496 5.55131C86.8203 5.37533 86.5561 5.24953 86.2744 5.18217L64.1723 0.0562154C64.0195 0.0178844 63.8624 -0.000987088 63.7048 5.45824e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="54" y="29" width="16" height="16" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04227L85.7966 7.18864L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18864L36.3007 2.04227C36.3007 2.04227 41.1763 11.1403 50.0028 11.1403C59.6718 11.1403 63.7048 2.04227 63.7048 2.04227ZM63.7048 5.45824e-05C63.3075 0.000772168 62.9189 0.115932 62.5861 0.331592C62.2533 0.547251 61.9905 0.854163 61.8296 1.21517C61.6755 1.55214 58.1665 9.09811 50.013 9.09811C42.507 9.09811 38.1965 1.16412 38.1246 1.08243C37.9486 0.75403 37.6857 0.47964 37.3643 0.288885C37.0428 0.0981302 36.6751 -0.00174143 36.3007 5.45824e-05C36.1431 -0.00115423 35.986 0.0177199 35.8332 0.0562154L13.7414 5.20259C13.4597 5.26995 13.1955 5.39576 12.9662 5.57173C12.7368 5.74771 12.5475 5.96989 12.4107 6.22369L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5815 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.1609 0.473998 30.3705C0.649115 30.5801 0.864654 30.7527 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4008 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2665 20.3856 41.1324 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6996 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.4421 21.0984 94.6617C21.0928 94.9307 21.1408 95.1982 21.2395 95.4488C21.3383 95.6994 21.4859 95.9281 21.6739 96.1218C22.0545 96.5079 22.5737 96.7282 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4319 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.252C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9872 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.7429 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9127 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20327C87.4682 5.94947 87.279 5.72729 87.0496 5.55131C86.8203 5.37533 86.5561 5.24953 86.2744 5.18217L64.1723 0.0562154C64.0195 0.0178844 63.8624 -0.000987088 63.7048 5.45824e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M63.7048 2.04227L85.7966 7.18864L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18864L36.3007 2.04227C36.3007 2.04227 41.1763 11.1403 50.0028 11.1403C59.6718 11.1403 63.7048 2.04227 63.7048 2.04227ZM63.7048 5.45824e-05C63.3075 0.000772168 62.9189 0.115932 62.5861 0.331592C62.2533 0.547251 61.9905 0.854163 61.8296 1.21517C61.6755 1.55214 58.1665 9.09811 50.013 9.09811C42.507 9.09811 38.1965 1.16412 38.1246 1.08243C37.9486 0.75403 37.6857 0.47964 37.3643 0.288885C37.0428 0.0981302 36.6751 -0.00174143 36.3007 5.45824e-05C36.1431 -0.00115423 35.986 0.0177199 35.8332 0.0562154L13.7414 5.20259C13.4597 5.26995 13.1955 5.39576 12.9662 5.57173C12.7368 5.74771 12.5475 5.96989 12.4107 6.22369L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5815 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.1609 0.473998 30.3705C0.649115 30.5801 0.864654 30.7527 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4008 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2665 20.3856 41.1324 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6996 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.4421 21.0984 94.6617C21.0928 94.9307 21.1408 95.1982 21.2395 95.4488C21.3383 95.6994 21.4859 95.9281 21.6739 96.1218C22.0545 96.5079 22.5737 96.7282 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4319 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.252C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9872 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.7429 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9127 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20327C87.4682 5.94947 87.279 5.72729 87.0496 5.55131C86.8203 5.37533 86.5561 5.24953 86.2744 5.18217L64.1723 0.0562154C64.0195 0.0178844 63.8624 -0.000987088 63.7048 5.45824e-05Z" fill="#575872"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="33" y="28" width="34" height="46" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04227L85.7966 7.18864L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18864L36.3007 2.04227C36.3007 2.04227 41.1763 11.1403 50.0028 11.1403C59.6718 11.1403 63.7048 2.04227 63.7048 2.04227ZM63.7048 5.45824e-05C63.3075 0.000772168 62.9189 0.115932 62.5861 0.331592C62.2533 0.547251 61.9905 0.854163 61.8296 1.21517C61.6755 1.55214 58.1665 9.09811 50.013 9.09811C42.507 9.09811 38.1965 1.16412 38.1246 1.08243C37.9486 0.75403 37.6857 0.47964 37.3643 0.288885C37.0428 0.0981302 36.6751 -0.00174143 36.3007 5.45824e-05C36.1431 -0.00115423 35.986 0.0177199 35.8332 0.0562154L13.7414 5.20259C13.4597 5.26995 13.1955 5.39576 12.9662 5.57173C12.7368 5.74771 12.5475 5.96989 12.4107 6.22369L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5815 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.1609 0.473998 30.3705C0.649115 30.5801 0.864654 30.7527 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4008 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2665 20.3856 41.1324 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6996 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.4421 21.0984 94.6617C21.0928 94.9307 21.1408 95.1982 21.2395 95.4488C21.3383 95.6994 21.4859 95.9281 21.6739 96.1218C22.0545 96.5079 22.5737 96.7282 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4319 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.252C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9872 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.7429 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9127 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20327C87.4682 5.94947 87.279 5.72729 87.0496 5.55131C86.8203 5.37533 86.5561 5.24953 86.2744 5.18217L64.1723 0.0562154C64.0195 0.0178844 63.8624 -0.000987088 63.7048 5.45824e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="36" y="28" width="28" height="34" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04227L85.7966 7.18864L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18864L36.3007 2.04227C36.3007 2.04227 41.1763 11.1403 50.0028 11.1403C59.6718 11.1403 63.7048 2.04227 63.7048 2.04227ZM63.7048 5.45824e-05C63.3075 0.000772168 62.9189 0.115932 62.5861 0.331592C62.2533 0.547251 61.9905 0.854163 61.8296 1.21517C61.6755 1.55214 58.1665 9.09811 50.013 9.09811C42.507 9.09811 38.1965 1.16412 38.1246 1.08243C37.9486 0.75403 37.6857 0.47964 37.3643 0.288885C37.0428 0.0981302 36.6751 -0.00174143 36.3007 5.45824e-05C36.1431 -0.00115423 35.986 0.0177199 35.8332 0.0562154L13.7414 5.20259C13.4597 5.26995 13.1955 5.39576 12.9662 5.57173C12.7368 5.74771 12.5475 5.96989 12.4107 6.22369L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5815 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.1609 0.473998 30.3705C0.649115 30.5801 0.864654 30.7527 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4008 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2665 20.3856 41.1324 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6996 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.4421 21.0984 94.6617C21.0928 94.9307 21.1408 95.1982 21.2395 95.4488C21.3383 95.6994 21.4859 95.9281 21.6739 96.1218C22.0545 96.5079 22.5737 96.7282 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4319 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.252C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9872 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.7429 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9127 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20327C87.4682 5.94947 87.279 5.72729 87.0496 5.55131C86.8203 5.37533 86.5561 5.24953 86.2744 5.18217L64.1723 0.0562154C64.0195 0.0178844 63.8624 -0.000987088 63.7048 5.45824e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="36" y="28" width="28" height="17" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04227L85.7966 7.18864L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18864L36.3007 2.04227C36.3007 2.04227 41.1763 11.1403 50.0028 11.1403C59.6718 11.1403 63.7048 2.04227 63.7048 2.04227ZM63.7048 5.45824e-05C63.3075 0.000772168 62.9189 0.115932 62.5861 0.331592C62.2533 0.547251 61.9905 0.854163 61.8296 1.21517C61.6755 1.55214 58.1665 9.09811 50.013 9.09811C42.507 9.09811 38.1965 1.16412 38.1246 1.08243C37.9486 0.75403 37.6857 0.47964 37.3643 0.288885C37.0428 0.0981302 36.6751 -0.00174143 36.3007 5.45824e-05C36.1431 -0.00115423 35.986 0.0177199 35.8332 0.0562154L13.7414 5.20259C13.4597 5.26995 13.1955 5.39576 12.9662 5.57173C12.7368 5.74771 12.5475 5.96989 12.4107 6.22369L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5815 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.1609 0.473998 30.3705C0.649115 30.5801 0.864654 30.7527 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4008 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2665 20.3856 41.1324 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6996 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.4421 21.0984 94.6617C21.0928 94.9307 21.1408 95.1982 21.2395 95.4488C21.3383 95.6994 21.4859 95.9281 21.6739 96.1218C22.0545 96.5079 22.5737 96.7282 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4319 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.252C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9872 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.7429 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9127 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20327C87.4682 5.94947 87.279 5.72729 87.0496 5.55131C86.8203 5.37533 86.5561 5.24953 86.2744 5.18217L64.1723 0.0562154C64.0195 0.0178844 63.8624 -0.000987088 63.7048 5.45824e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="54" y="29" width="16" height="16" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04227L85.7966 7.18864L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18864L36.3007 2.04227C36.3007 2.04227 41.1763 11.1403 50.0028 11.1403C59.6718 11.1403 63.7048 2.04227 63.7048 2.04227ZM63.7048 5.45824e-05C63.3075 0.000772168 62.9189 0.115932 62.5861 0.331592C62.2533 0.547251 61.9905 0.854163 61.8296 1.21517C61.6755 1.55214 58.1665 9.09811 50.013 9.09811C42.507 9.09811 38.1965 1.16412 38.1246 1.08243C37.9486 0.75403 37.6857 0.47964 37.3643 0.288885C37.0428 0.0981302 36.6751 -0.00174143 36.3007 5.45824e-05C36.1431 -0.00115423 35.986 0.0177199 35.8332 0.0562154L13.7414 5.20259C13.4597 5.26995 13.1955 5.39576 12.9662 5.57173C12.7368 5.74771 12.5475 5.96989 12.4107 6.22369L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5815 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.1609 0.473998 30.3705C0.649115 30.5801 0.864654 30.7527 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4008 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2665 20.3856 41.1324 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6996 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.4421 21.0984 94.6617C21.0928 94.9307 21.1408 95.1982 21.2395 95.4488C21.3383 95.6994 21.4859 95.9281 21.6739 96.1218C22.0545 96.5079 22.5737 96.7282 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4319 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.252C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9872 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.7429 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9127 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20327C87.4682 5.94947 87.279 5.72729 87.0496 5.55131C86.8203 5.37533 86.5561 5.24953 86.2744 5.18217L64.1723 0.0562154C64.0195 0.0178844 63.8624 -0.000987088 63.7048 5.45824e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="58" height="54" viewBox="0 0 58 54" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M45.673 4.10769C45.5638 4.0081 45.4363 3.93085 45.2975 3.88007L36.6366 0.784457C36.0458 0.569927 35.3929 0.875078 35.1784 1.46589C35.1397 1.57244 35.1172 1.68412 35.1115 1.79736C35.1115 2.04774 34.736 7.81786 28.9658 7.90891C23.1616 7.81786 22.7974 2.04774 22.786 1.79736C22.7524 1.1697 22.2164 0.688146 21.5887 0.72172C21.4809 0.727552 21.3743 0.748607 21.2723 0.784457L12.6228 3.91421C12.484 3.965 12.3565 4.04225 12.2473 4.14183L0.354216 14.7488C-0.101447 15.1817 -0.119941 15.9022 0.312961 16.3578C0.326333 16.3719 0.340133 16.3857 0.354216 16.3991L9.82314 25.9704V52.1465C9.82314 52.7751 10.3327 53.2846 10.9612 53.2846H47.0387C47.6672 53.2846 48.1768 52.7751 48.1768 52.1465V25.9704L57.6458 16.3991C58.1014 15.9662 58.1199 15.2458 57.687 14.7901C57.6736 14.776 57.6598 14.7622 57.6458 14.7488L45.673 4.10769ZM48.1427 22.7269V17.4461C48.1427 16.8176 47.6331 16.308 47.0046 16.308C46.3761 16.308 45.8665 16.8176 45.8665 17.4461V50.9515H12.0538V17.4461C12.0538 16.8176 11.5442 16.308 10.9157 16.308C10.2872 16.308 9.77762 16.8176 9.77762 17.4461V22.7382L2.77835 15.6479L13.613 5.95139L20.7374 3.37931C21.62 7.92684 26.022 10.898 30.5696 10.0154C33.9279 9.36353 36.5538 6.73767 37.2056 3.37931L44.3301 5.95139L55.1306 15.6479L48.1427 22.7269Z" fill="#303030"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="33" y="28" width="34" height="46" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04227L85.7966 7.18864L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18864L36.3007 2.04227C36.3007 2.04227 41.1763 11.1403 50.0028 11.1403C59.6718 11.1403 63.7048 2.04227 63.7048 2.04227ZM63.7048 5.45824e-05C63.3075 0.000772168 62.9189 0.115932 62.5861 0.331592C62.2533 0.547251 61.9905 0.854163 61.8296 1.21517C61.6755 1.55214 58.1665 9.09811 50.013 9.09811C42.507 9.09811 38.1965 1.16412 38.1246 1.08243C37.9486 0.75403 37.6857 0.47964 37.3643 0.288885C37.0428 0.0981302 36.6751 -0.00174143 36.3007 5.45824e-05C36.1431 -0.00115423 35.986 0.0177199 35.8332 0.0562154L13.7414 5.20259C13.4597 5.26995 13.1955 5.39576 12.9662 5.57173C12.7368 5.74771 12.5475 5.96989 12.4107 6.22369L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5815 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.1609 0.473998 30.3705C0.649115 30.5801 0.864654 30.7527 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4008 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2665 20.3856 41.1324 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6996 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.4421 21.0984 94.6617C21.0928 94.9307 21.1408 95.1982 21.2395 95.4488C21.3383 95.6994 21.4859 95.9281 21.6739 96.1218C22.0545 96.5079 22.5737 96.7282 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4319 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.252C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9872 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.7429 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9127 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20327C87.4682 5.94947 87.279 5.72729 87.0496 5.55131C86.8203 5.37533 86.5561 5.24953 86.2744 5.18217L64.1723 0.0562154C64.0195 0.0178844 63.8624 -0.000987088 63.7048 5.45824e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="36" y="28" width="28" height="34" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04227L85.7966 7.18864L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18864L36.3007 2.04227C36.3007 2.04227 41.1763 11.1403 50.0028 11.1403C59.6718 11.1403 63.7048 2.04227 63.7048 2.04227ZM63.7048 5.45824e-05C63.3075 0.000772168 62.9189 0.115932 62.5861 0.331592C62.2533 0.547251 61.9905 0.854163 61.8296 1.21517C61.6755 1.55214 58.1665 9.09811 50.013 9.09811C42.507 9.09811 38.1965 1.16412 38.1246 1.08243C37.9486 0.75403 37.6857 0.47964 37.3643 0.288885C37.0428 0.0981302 36.6751 -0.00174143 36.3007 5.45824e-05C36.1431 -0.00115423 35.986 0.0177199 35.8332 0.0562154L13.7414 5.20259C13.4597 5.26995 13.1955 5.39576 12.9662 5.57173C12.7368 5.74771 12.5475 5.96989 12.4107 6.22369L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5815 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.1609 0.473998 30.3705C0.649115 30.5801 0.864654 30.7527 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4008 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2665 20.3856 41.1324 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6996 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.4421 21.0984 94.6617C21.0928 94.9307 21.1408 95.1982 21.2395 95.4488C21.3383 95.6994 21.4859 95.9281 21.6739 96.1218C22.0545 96.5079 22.5737 96.7282 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4319 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.252C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9872 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.7429 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9127 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20327C87.4682 5.94947 87.279 5.72729 87.0496 5.55131C86.8203 5.37533 86.5561 5.24953 86.2744 5.18217L64.1723 0.0562154C64.0195 0.0178844 63.8624 -0.000987088 63.7048 5.45824e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="58" height="58" viewBox="0 0 58 58" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0)">
3
+ <path d="M10.9168 54.0892V27.5034L1.10645 17.5792L13.0223 6.96084L21.5579 3.86523L21.8425 5.12852C22.5834 9.06318 26.3736 11.6523 30.3083 10.9116C33.243 10.359 35.5387 8.06337 36.0914 5.12852L36.3759 3.86523L44.8888 6.96084L56.8046 17.5792L47.0057 27.492V54.0892H10.9168Z" fill="#F4F4F4"/>
4
+ <path d="M45.673 6.10769C45.5638 6.0081 45.4363 5.93085 45.2975 5.88007L36.6366 2.78446C36.0458 2.56993 35.3929 2.87508 35.1784 3.46589C35.1397 3.57244 35.1172 3.68412 35.1115 3.79736C35.1115 4.04774 34.736 9.81786 28.9658 9.90891C23.1616 9.81786 22.7974 4.04774 22.786 3.79736C22.7524 3.1697 22.2164 2.68815 21.5887 2.72172C21.4809 2.72755 21.3743 2.74861 21.2723 2.78446L12.6228 5.91421C12.484 5.965 12.3565 6.04225 12.2473 6.14183L0.354216 16.7488C-0.101447 17.1817 -0.119941 17.9022 0.312961 18.3578C0.326333 18.3719 0.340133 18.3857 0.354216 18.3991L9.82314 27.9704V54.1465C9.82314 54.7751 10.3327 55.2846 10.9612 55.2846H47.0387C47.6672 55.2846 48.1768 54.7751 48.1768 54.1465V27.9704L57.6458 18.3991C58.1014 17.9662 58.1199 17.2458 57.687 16.7901C57.6736 16.776 57.6598 16.7622 57.6458 16.7488L45.673 6.10769ZM48.1427 24.7269V19.4461C48.1427 18.8176 47.6331 18.308 47.0046 18.308C46.3761 18.308 45.8665 18.8176 45.8665 19.4461V52.9515H12.0538V19.4461C12.0538 18.8176 11.5442 18.308 10.9157 18.308C10.2872 18.308 9.77762 18.8176 9.77762 19.4461V24.7382L2.77835 17.6479L13.613 7.95139L20.7374 5.37931C21.62 9.92684 26.022 12.898 30.5696 12.0154C33.9279 11.3635 36.5538 8.73767 37.2056 5.37931L44.3301 7.95139L55.1306 17.6479L48.1427 24.7269Z" fill="#303030"/>
5
+ <rect x="17.7227" y="17.7227" width="22.5556" height="27.3889" rx="1.61189" fill="#303030"/>
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0">
9
+ <rect width="58" height="58" fill="white"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="36" y="28" width="28" height="17" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04227L85.7966 7.18864L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18864L36.3007 2.04227C36.3007 2.04227 41.1763 11.1403 50.0028 11.1403C59.6718 11.1403 63.7048 2.04227 63.7048 2.04227ZM63.7048 5.45824e-05C63.3075 0.000772168 62.9189 0.115932 62.5861 0.331592C62.2533 0.547251 61.9905 0.854163 61.8296 1.21517C61.6755 1.55214 58.1665 9.09811 50.013 9.09811C42.507 9.09811 38.1965 1.16412 38.1246 1.08243C37.9486 0.75403 37.6857 0.47964 37.3643 0.288885C37.0428 0.0981302 36.6751 -0.00174143 36.3007 5.45824e-05C36.1431 -0.00115423 35.986 0.0177199 35.8332 0.0562154L13.7414 5.20259C13.4597 5.26995 13.1955 5.39576 12.9662 5.57173C12.7368 5.74771 12.5475 5.96989 12.4107 6.22369L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5815 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.1609 0.473998 30.3705C0.649115 30.5801 0.864654 30.7527 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4008 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2665 20.3856 41.1324 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6996 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.4421 21.0984 94.6617C21.0928 94.9307 21.1408 95.1982 21.2395 95.4488C21.3383 95.6994 21.4859 95.9281 21.6739 96.1218C22.0545 96.5079 22.5737 96.7282 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4319 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.252C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9872 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.7429 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9127 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20327C87.4682 5.94947 87.279 5.72729 87.0496 5.55131C86.8203 5.37533 86.5561 5.24953 86.2744 5.18217L64.1723 0.0562154C64.0195 0.0178844 63.8624 -0.000987088 63.7048 5.45824e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="58" height="58" viewBox="0 0 58 58" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10.9158 54.0892V27.5034L1.10547 17.5792L13.0213 6.96084L21.557 3.86523L21.8415 5.12852C22.5824 9.06318 26.3727 11.6523 30.3073 10.9116C33.242 10.359 35.5377 8.06337 36.0904 5.12852L36.3749 3.86523L44.8878 6.96084L56.8037 17.5792L47.0047 27.492V54.0892H10.9158Z" fill="#F4F4F4"/>
3
+ <path d="M45.673 6.10769C45.5638 6.0081 45.4363 5.93085 45.2975 5.88007L36.6366 2.78446C36.0458 2.56993 35.3929 2.87508 35.1784 3.46589C35.1397 3.57244 35.1172 3.68412 35.1115 3.79736C35.1115 4.04774 34.736 9.81786 28.9658 9.90891C23.1616 9.81786 22.7974 4.04774 22.786 3.79736C22.7524 3.1697 22.2164 2.68815 21.5887 2.72172C21.4809 2.72755 21.3743 2.74861 21.2723 2.78446L12.6228 5.91421C12.484 5.965 12.3565 6.04225 12.2473 6.14183L0.354216 16.7488C-0.101447 17.1817 -0.119941 17.9022 0.312961 18.3578C0.326333 18.3719 0.340133 18.3857 0.354216 18.3991L9.82314 27.9704V54.1465C9.82314 54.7751 10.3327 55.2846 10.9612 55.2846H47.0387C47.6672 55.2846 48.1768 54.7751 48.1768 54.1465V27.9704L57.6458 18.3991C58.1014 17.9662 58.1199 17.2458 57.687 16.7901C57.6736 16.776 57.6598 16.7622 57.6458 16.7488L45.673 6.10769ZM48.1427 24.7269V19.4461C48.1427 18.8176 47.6331 18.308 47.0046 18.308C46.3761 18.308 45.8665 18.8176 45.8665 19.4461V52.9515H12.0538V19.4461C12.0538 18.8176 11.5442 18.308 10.9157 18.308C10.2872 18.308 9.77762 18.8176 9.77762 19.4461V24.7382L2.77835 17.6479L13.613 7.95139L20.7374 5.37931C21.62 9.92684 26.022 12.898 30.5696 12.0154C33.9279 11.3635 36.5538 8.73767 37.2056 5.37931L44.3301 7.95139L55.1306 17.6479L48.1427 24.7269Z" fill="#303030"/>
4
+ <rect x="28" y="17.7227" width="14.5" height="14.5" rx="1.61189" fill="#303030"/>
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="54" y="29" width="16" height="16" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04227L85.7966 7.18864L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18864L36.3007 2.04227C36.3007 2.04227 41.1763 11.1403 50.0028 11.1403C59.6718 11.1403 63.7048 2.04227 63.7048 2.04227ZM63.7048 5.45824e-05C63.3075 0.000772168 62.9189 0.115932 62.5861 0.331592C62.2533 0.547251 61.9905 0.854163 61.8296 1.21517C61.6755 1.55214 58.1665 9.09811 50.013 9.09811C42.507 9.09811 38.1965 1.16412 38.1246 1.08243C37.9486 0.75403 37.6857 0.47964 37.3643 0.288885C37.0428 0.0981302 36.6751 -0.00174143 36.3007 5.45824e-05C36.1431 -0.00115423 35.986 0.0177199 35.8332 0.0562154L13.7414 5.20259C13.4597 5.26995 13.1955 5.39576 12.9662 5.57173C12.7368 5.74771 12.5475 5.96989 12.4107 6.22369L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5815 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.1609 0.473998 30.3705C0.649115 30.5801 0.864654 30.7527 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4008 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2665 20.3856 41.1324 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6996 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.4421 21.0984 94.6617C21.0928 94.9307 21.1408 95.1982 21.2395 95.4488C21.3383 95.6994 21.4859 95.9281 21.6739 96.1218C22.0545 96.5079 22.5737 96.7282 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4319 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.252C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9872 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.7429 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9127 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20327C87.4682 5.94947 87.279 5.72729 87.0496 5.55131C86.8203 5.37533 86.5561 5.24953 86.2744 5.18217L64.1723 0.0562154C64.0195 0.0178844 63.8624 -0.000987088 63.7048 5.45824e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="58" height="58" viewBox="0 0 58 58" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0)">
3
+ <path d="M10.9168 54.0892V27.5034L1.10645 17.5792L13.0223 6.96084L21.5579 3.86523L21.8425 5.12852C22.5834 9.06318 26.3736 11.6523 30.3083 10.9116C33.243 10.359 35.5387 8.06337 36.0914 5.12852L36.3759 3.86523L44.8888 6.96084L56.8046 17.5792L47.0057 27.492V54.0892H10.9168Z" fill="#F4F4F4"/>
4
+ <path d="M45.673 6.10769C45.5638 6.0081 45.4363 5.93085 45.2975 5.88007L36.6366 2.78446C36.0458 2.56993 35.3929 2.87508 35.1784 3.46589C35.1397 3.57244 35.1172 3.68412 35.1115 3.79736C35.1115 4.04774 34.736 9.81786 28.9658 9.90891C23.1616 9.81786 22.7974 4.04774 22.786 3.79736C22.7524 3.1697 22.2164 2.68815 21.5887 2.72172C21.4809 2.72755 21.3743 2.74861 21.2723 2.78446L12.6228 5.91421C12.484 5.965 12.3565 6.04225 12.2473 6.14183L0.354216 16.7488C-0.101447 17.1817 -0.119941 17.9022 0.312961 18.3578C0.326333 18.3719 0.340133 18.3857 0.354216 18.3991L9.82314 27.9704V54.1465C9.82314 54.7751 10.3327 55.2846 10.9612 55.2846H47.0387C47.6672 55.2846 48.1768 54.7751 48.1768 54.1465V27.9704L57.6458 18.3991C58.1014 17.9662 58.1199 17.2458 57.687 16.7901C57.6736 16.776 57.6598 16.7622 57.6458 16.7488L45.673 6.10769ZM48.1427 24.7269V19.4461C48.1427 18.8176 47.6331 18.308 47.0046 18.308C46.3761 18.308 45.8665 18.8176 45.8665 19.4461V52.9515H12.0538V19.4461C12.0538 18.8176 11.5442 18.308 10.9157 18.308C10.2872 18.308 9.77762 18.8176 9.77762 19.4461V24.7382L2.77835 17.6479L13.613 7.95139L20.7374 5.37931C21.62 9.92684 26.022 12.898 30.5696 12.0154C33.9279 11.3635 36.5538 8.73767 37.2056 5.37931L44.3301 7.95139L55.1306 17.6479L48.1427 24.7269Z" fill="#303030"/>
5
+ <rect x="15.5" y="17.7227" width="14.5" height="14.5" rx="1.61189" fill="#303030"/>
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0">
9
+ <rect width="58" height="58" fill="white"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="58" height="54" viewBox="0 0 58 54" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M45.673 4.10769C45.5638 4.0081 45.4363 3.93085 45.2975 3.88007L36.6366 0.784457C36.0458 0.569927 35.3929 0.875078 35.1784 1.46589C35.1397 1.57244 35.1172 1.68412 35.1115 1.79736C35.1115 2.04774 34.736 7.81786 28.9658 7.90891C23.1616 7.81786 22.7974 2.04774 22.786 1.79736C22.7524 1.1697 22.2164 0.688146 21.5887 0.72172C21.4809 0.727552 21.3743 0.748607 21.2723 0.784457L12.6228 3.91421C12.484 3.965 12.3565 4.04225 12.2473 4.14183L0.354216 14.7488C-0.101447 15.1817 -0.119941 15.9022 0.312961 16.3578C0.326333 16.3719 0.340133 16.3857 0.354216 16.3991L9.82314 25.9704V52.1465C9.82314 52.7751 10.3327 53.2846 10.9612 53.2846H47.0387C47.6672 53.2846 48.1768 52.7751 48.1768 52.1465V25.9704L57.6458 16.3991C58.1014 15.9662 58.1199 15.2458 57.687 14.7901C57.6736 14.776 57.6598 14.7622 57.6458 14.7488L45.673 4.10769ZM48.1427 22.7269V17.4461C48.1427 16.8176 47.6331 16.308 47.0046 16.308C46.3761 16.308 45.8665 16.8176 45.8665 17.4461V50.9515H12.0538V17.4461C12.0538 16.8176 11.5442 16.308 10.9157 16.308C10.2872 16.308 9.77762 16.8176 9.77762 17.4461V22.7382L2.77835 15.6479L13.613 5.95139L20.7374 3.37931C21.62 7.92684 26.022 10.898 30.5696 10.0154C33.9279 9.36353 36.5538 6.73767 37.2056 3.37931L44.3301 5.95139L55.1306 15.6479L48.1427 22.7269Z" fill="#303030"/>
3
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="58" height="58" viewBox="0 0 58 58" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0)">
3
+ <path d="M47.0832 54.0892V27.5034L56.8936 17.5792L44.9777 6.96084L36.4421 3.86523L36.1575 5.12852C35.4166 9.06318 31.6264 11.6523 27.6917 10.9116C24.757 10.359 22.4613 8.06337 21.9086 5.12852L21.6241 3.86523L13.1112 6.96084L1.19536 17.5792L10.9943 27.492V54.0892H47.0832Z" fill="#F4F4F4"/>
4
+ <path d="M12.327 6.10769C12.4362 6.0081 12.5637 5.93085 12.7025 5.88007L21.3634 2.78446C21.9542 2.56993 22.6071 2.87508 22.8216 3.46589C22.8603 3.57244 22.8828 3.68412 22.8885 3.79736C22.8885 4.04774 23.264 9.81786 29.0342 9.90891C34.8384 9.81786 35.2026 4.04774 35.214 3.79736C35.2476 3.1697 35.7836 2.68815 36.4113 2.72172C36.5191 2.72755 36.6257 2.74861 36.7277 2.78446L45.3772 5.91421C45.516 5.965 45.6435 6.04225 45.7527 6.14183L57.6458 16.7488C58.1014 17.1817 58.1199 17.9022 57.687 18.3578C57.6737 18.3719 57.6599 18.3857 57.6458 18.3991L48.1769 27.9704V54.1465C48.1769 54.775 47.6673 55.2846 47.0388 55.2846H10.9613C10.3328 55.2846 9.82317 54.775 9.82317 54.1465V27.9704L0.354248 18.3991C-0.101414 17.9662 -0.119911 17.2458 0.312992 16.7901C0.326366 16.776 0.340164 16.7622 0.354248 16.7488L12.327 6.10769ZM9.85731 24.7269V21.4461C9.85731 20.8176 10.3669 20.308 10.9954 20.308C11.6239 20.308 12.1335 20.8176 12.1335 21.4461V52.9515H45.9462V21.4461C45.9462 20.8176 46.4558 20.308 47.0843 20.308C47.7128 20.308 48.2224 20.8176 48.2224 21.4461V24.7382L55.2216 17.6479L44.387 7.95139L37.2626 5.37931C36.38 9.92684 31.978 12.898 27.4304 12.0154C24.0721 11.3635 21.4462 8.73767 20.7944 5.37931L13.6699 7.95139L2.86943 17.6479L9.85731 24.7269Z" fill="#303030"/>
5
+ <rect width="4.96536" height="12.0049" rx="1" transform="matrix(-0.663021 0.748601 0.748601 0.663021 45.0127 9)" fill="#303030"/>
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0">
9
+ <rect width="58" height="58" fill="white" transform="matrix(-1 0 0 1 58 0)"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="58" height="54" viewBox="0 0 58 54" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M45.673 4.10769C45.5638 4.0081 45.4363 3.93085 45.2975 3.88007L36.6366 0.784457C36.0458 0.569927 35.3929 0.875078 35.1784 1.46589C35.1397 1.57244 35.1172 1.68412 35.1115 1.79736C35.1115 2.04774 34.736 7.81786 28.9658 7.90891C23.1616 7.81786 22.7974 2.04774 22.786 1.79736C22.7524 1.1697 22.2164 0.688146 21.5887 0.72172C21.4809 0.727552 21.3743 0.748607 21.2723 0.784457L12.6228 3.91421C12.484 3.965 12.3565 4.04225 12.2473 4.14183L0.354216 14.7488C-0.101447 15.1817 -0.119941 15.9022 0.312961 16.3578C0.326333 16.3719 0.340133 16.3857 0.354216 16.3991L9.82314 25.9704V52.1465C9.82314 52.7751 10.3327 53.2846 10.9612 53.2846H47.0387C47.6672 53.2846 48.1768 52.7751 48.1768 52.1465V25.9704L57.6458 16.3991C58.1014 15.9662 58.1199 15.2458 57.687 14.7901C57.6736 14.776 57.6598 14.7622 57.6458 14.7488L45.673 4.10769ZM48.1427 22.7269V17.4461C48.1427 16.8176 47.6331 16.308 47.0046 16.308C46.3761 16.308 45.8665 16.8176 45.8665 17.4461V50.9515H12.0538V17.4461C12.0538 16.8176 11.5442 16.308 10.9157 16.308C10.2872 16.308 9.77762 16.8176 9.77762 17.4461V22.7382L2.77835 15.6479L13.613 5.95139L20.7374 3.37931C21.62 7.92684 26.022 10.898 30.5696 10.0154C33.9279 9.36353 36.5538 6.73767 37.2056 3.37931L44.3301 5.95139L55.1306 15.6479L48.1427 22.7269Z" fill="#303030"/>
3
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="58" height="58" viewBox="0 0 58 58" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0)">
3
+ <path d="M10.9168 54.0892V27.5034L1.10645 17.5792L13.0223 6.96084L21.5579 3.86523L21.8425 5.12852C22.5834 9.06318 26.3736 11.6523 30.3083 10.9116C33.243 10.359 35.5387 8.06337 36.0914 5.12852L36.3759 3.86523L44.8888 6.96084L56.8046 17.5792L47.0057 27.492V54.0892H10.9168Z" fill="#F4F4F4"/>
4
+ <path d="M45.673 6.10769C45.5638 6.0081 45.4363 5.93085 45.2975 5.88007L36.6366 2.78446C36.0458 2.56993 35.3929 2.87508 35.1784 3.46589C35.1397 3.57244 35.1172 3.68412 35.1115 3.79736C35.1115 4.04774 34.736 9.81786 28.9658 9.90891C23.1616 9.81786 22.7974 4.04774 22.786 3.79736C22.7524 3.1697 22.2164 2.68815 21.5887 2.72172C21.4809 2.72755 21.3743 2.74861 21.2723 2.78446L12.6228 5.91421C12.484 5.965 12.3565 6.04225 12.2473 6.14183L0.354216 16.7488C-0.101447 17.1817 -0.119941 17.9022 0.312961 18.3578C0.326333 18.3719 0.340133 18.3857 0.354216 18.3991L9.82314 27.9704V54.1465C9.82314 54.775 10.3327 55.2846 10.9612 55.2846H47.0387C47.6672 55.2846 48.1768 54.775 48.1768 54.1465V27.9704L57.6458 18.3991C58.1014 17.9662 58.1199 17.2458 57.687 16.7901C57.6736 16.776 57.6598 16.7622 57.6458 16.7488L45.673 6.10769ZM48.1427 24.7269V21.4461C48.1427 20.8176 47.6331 20.308 47.0046 20.308C46.3761 20.308 45.8665 20.8176 45.8665 21.4461V52.9515H12.0538V21.4461C12.0538 20.8176 11.5442 20.308 10.9157 20.308C10.2872 20.308 9.77762 20.8176 9.77762 21.4461V24.7382L2.77835 17.6479L13.613 7.95139L20.7374 5.37931C21.62 9.92684 26.022 12.898 30.5696 12.0154C33.9279 11.3635 36.5538 8.73767 37.2056 5.37931L44.3301 7.95139L55.1306 17.6479L48.1427 24.7269Z" fill="#303030"/>
5
+ <rect x="12.9873" y="9" width="4.96536" height="12.0049" rx="1" transform="rotate(48.4693 12.9873 9)" fill="#303030"/>
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0">
9
+ <rect width="58" height="58" fill="white"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
package/store/product.js CHANGED
@@ -10,6 +10,7 @@ import { filterBigSize } from '@lancom/shared/assets/js/utils/product';
10
10
  import { sortByName } from '../assets/js/utils/filters';
11
11
 
12
12
  export const state = () => ({
13
+ multipack: null,
13
14
  calculatingPrice: false,
14
15
  images: [],
15
16
  priceIncludeGST: false,
@@ -45,6 +46,7 @@ export const state = () => ({
45
46
  });
46
47
 
47
48
  export const getters = {
49
+ multipack: ({ multipack }) => multipack,
48
50
  calculatingPrice: ({ calculatingPrice }) => calculatingPrice,
49
51
  product: ({ product }) => product,
50
52
  preSetPrint: ({ preSetPrint }) => preSetPrint,
@@ -263,6 +265,9 @@ export const actions = {
263
265
  };
264
266
 
265
267
  export const mutations = {
268
+ setMultipack(state, multipack) {
269
+ state.multipack = multipack;
270
+ },
266
271
  setProduct(state, product) {
267
272
  state.product = product;
268
273
  },