@kolkrabbi/kol-component 0.1.0

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 (98) hide show
  1. package/README.md +24 -0
  2. package/package.json +46 -0
  3. package/src/atoms/Avatar.jsx +17 -0
  4. package/src/atoms/Button.jsx +172 -0
  5. package/src/atoms/ColorSwatch.jsx +126 -0
  6. package/src/atoms/Divider.jsx +34 -0
  7. package/src/atoms/Input.jsx +121 -0
  8. package/src/atoms/Label.jsx +12 -0
  9. package/src/atoms/Slider.jsx +129 -0
  10. package/src/atoms/Stepper.jsx +97 -0
  11. package/src/atoms/Textarea.jsx +70 -0
  12. package/src/atoms/ToggleCheckbox.jsx +40 -0
  13. package/src/atoms/ToggleSwitch.jsx +42 -0
  14. package/src/atoms/TransparentX.jsx +37 -0
  15. package/src/graphics/Graphic.jsx +53 -0
  16. package/src/graphics/svg/abstract/abstract-01.svg +3 -0
  17. package/src/graphics/svg/abstract/abstract-02.svg +3 -0
  18. package/src/graphics/svg/abstract/abstract-03.svg +3 -0
  19. package/src/graphics/svg/abstract/abstract-06.svg +4 -0
  20. package/src/graphics/svg/diagrams/.gitkeep +0 -0
  21. package/src/graphics/svg/diagrams/ac-structure.svg +90 -0
  22. package/src/graphics/svg/diagrams/rg-x-height.svg +3 -0
  23. package/src/graphics/svg/diagrams/structure-grid.svg +618 -0
  24. package/src/graphics/svg/diagrams/structure-logo.svg +23 -0
  25. package/src/graphics/svg/patterns/.gitkeep +0 -0
  26. package/src/graphics/svg/patterns/patt-01.svg +34 -0
  27. package/src/graphics/svg/patterns/patt-02.svg +34 -0
  28. package/src/graphics/svg/patterns/patt-03.svg +110 -0
  29. package/src/graphics/svg/patterns/patt-04.svg +10 -0
  30. package/src/graphics/svg/patterns/patt-05.svg +62 -0
  31. package/src/graphics/svg/patterns/patt-06.svg +66 -0
  32. package/src/graphics/svg/patterns/patt-07.svg +130 -0
  33. package/src/graphics/svg/patterns/patt-08.svg +434 -0
  34. package/src/graphics/svg/patterns/patt-09.svg +38 -0
  35. package/src/graphics/svg/patterns/patt-10.svg +20 -0
  36. package/src/graphics/svg/patterns/patt-11.svg +38 -0
  37. package/src/graphics/svg/patterns/patt-12.svg +58 -0
  38. package/src/graphics/svg/patterns/patt-13.svg +48 -0
  39. package/src/graphics/svg/patterns/patt-14.svg +90 -0
  40. package/src/graphics/svg/patterns/patt-15.svg +194 -0
  41. package/src/graphics/svg/patterns/patt-16.svg +12 -0
  42. package/src/graphics/svg/social/social-01.svg +18 -0
  43. package/src/graphics/svg/social/social-02.svg +18 -0
  44. package/src/graphics/svg/social/social-03.svg +18 -0
  45. package/src/graphics/svg/social/social-04.svg +18 -0
  46. package/src/graphics/svg/social/social-05.svg +18 -0
  47. package/src/graphics/svg/social/social-06.svg +18 -0
  48. package/src/graphics/svg/social/social-07.svg +22 -0
  49. package/src/graphics/svg/social/social-08.svg +22 -0
  50. package/src/graphics/svg/social/social-09.svg +22 -0
  51. package/src/graphics/svg/social/social-10.svg +6 -0
  52. package/src/graphics/svg/social/social-11.svg +6 -0
  53. package/src/graphics/svg/social/social-12.svg +6 -0
  54. package/src/graphics/svg/social/social-13.svg +9 -0
  55. package/src/graphics/svg/social/social-14.svg +9 -0
  56. package/src/graphics/svg/social/social-15.svg +9 -0
  57. package/src/graphics/svg/structure/diagram-grid-lockup-hori.svg +23 -0
  58. package/src/graphics/svg/structure/diagram-grid-lockup-vert.svg +25 -0
  59. package/src/graphics/svg/structure/diagram-grid-logomark.svg +20 -0
  60. package/src/graphics/svg/structure/diagram-grid-wordmark.svg +18 -0
  61. package/src/graphics/svg/structure/diagram-logo-lockup-hori.svg +9 -0
  62. package/src/graphics/svg/structure/diagram-logo-lockup-vert.svg +23 -0
  63. package/src/graphics/svg/structure/diagram-logo-logomark.svg +7 -0
  64. package/src/graphics/svg/structure/diagram-logo-wordmark.svg +3 -0
  65. package/src/graphics/svg/structure/diagram-x-lockup-hori.svg +5 -0
  66. package/src/graphics/svg/structure/diagram-x-lockup-vert.svg +10 -0
  67. package/src/graphics/svg/structure/diagram-x-logomark.svg +5 -0
  68. package/src/graphics/svg/structure/diagram-x-wordmark.svg +5 -0
  69. package/src/hooks/useReveal.js +28 -0
  70. package/src/hooks/useScrollSpy.js +56 -0
  71. package/src/index.js +59 -0
  72. package/src/molecules/Badge.jsx +51 -0
  73. package/src/molecules/ContentFilters.jsx +263 -0
  74. package/src/molecules/Dropdown.jsx +223 -0
  75. package/src/molecules/DropdownTagFilter.jsx +253 -0
  76. package/src/molecules/LabeledControl.jsx +66 -0
  77. package/src/molecules/MenuItem.jsx +148 -0
  78. package/src/molecules/MenuPopover.jsx +128 -0
  79. package/src/molecules/Modal.jsx +124 -0
  80. package/src/molecules/Pill.jsx +33 -0
  81. package/src/molecules/Popover.jsx +208 -0
  82. package/src/molecules/PropertyInput.jsx +32 -0
  83. package/src/molecules/QuantityInput.jsx +174 -0
  84. package/src/molecules/QuantityStepper.jsx +149 -0
  85. package/src/molecules/Section.jsx +16 -0
  86. package/src/molecules/SectionLabel.jsx +59 -0
  87. package/src/molecules/SegmentedToggle.jsx +56 -0
  88. package/src/molecules/Tag.jsx +79 -0
  89. package/src/molecules/ToggleBracket.jsx +45 -0
  90. package/src/molecules/ViewToggle.jsx +101 -0
  91. package/src/organisms/Table.jsx +46 -0
  92. package/src/primitives/Accordion.jsx +45 -0
  93. package/src/primitives/AssetPlaceholder.jsx +28 -0
  94. package/src/primitives/Carousel.jsx +50 -0
  95. package/src/primitives/CodeBlock.jsx +41 -0
  96. package/src/primitives/ExitPreview.jsx +12 -0
  97. package/src/primitives/FullscreenOverlay.jsx +39 -0
  98. package/src/primitives/Image.jsx +38 -0
@@ -0,0 +1,434 @@
1
+ <svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g opacity="0.4">
3
+ <rect opacity="0.4" x="16" y="16" width="24.8889" height="33.7778" fill="currentColor"/>
4
+ <path opacity="0.4" d="M22.2227 24.4443H34.6671V41.3332H22.2227V24.4443Z" fill="currentColor"/>
5
+ <path d="M34.6671 41.3332V24.4443H40.8858V49.7777L22.2227 49.7777L22.2227 41.3332H34.6671Z" fill="currentColor"/>
6
+ <rect x="16" y="16" width="6.22222" height="8.44444" fill="currentColor"/>
7
+ </g>
8
+ <g opacity="0.4">
9
+ <rect opacity="0.4" x="53.332" y="66.6667" width="24.8889" height="33.7778" transform="rotate(180 53.332 66.6667)" fill="currentColor"/>
10
+ <path opacity="0.4" d="M47.1094 58.2224H34.6649V41.3335H47.1094V58.2224Z" fill="currentColor"/>
11
+ <path d="M34.6649 41.3335V58.2224H28.4462V32.8891L47.1094 32.8891L47.1094 41.3335H34.6649Z" fill="currentColor"/>
12
+ <rect x="53.332" y="66.6667" width="6.22222" height="8.44444" transform="rotate(180 53.332 66.6667)" fill="currentColor"/>
13
+ </g>
14
+ <g opacity="0.4">
15
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(-1 0 0 1 90.668 16)" fill="currentColor"/>
16
+ <path opacity="0.4" d="M84.4453 24.4443H72.0009V41.3332H84.4453V24.4443Z" fill="currentColor"/>
17
+ <path d="M72.0009 41.3332V24.4443H65.7822V49.7777L84.4453 49.7777L84.4453 41.3332H72.0009Z" fill="currentColor"/>
18
+ <rect width="6.22222" height="8.44444" transform="matrix(-1 0 0 1 90.668 16)" fill="currentColor"/>
19
+ </g>
20
+ <g opacity="0.4">
21
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(1 0 0 -1 53.3359 66.6667)" fill="currentColor"/>
22
+ <path opacity="0.4" d="M59.5586 58.2224H72.003V41.3335H59.5586V58.2224Z" fill="currentColor"/>
23
+ <path d="M72.003 41.3335V58.2224H78.2218V32.8891L59.5586 32.8891L59.5586 41.3335H72.003Z" fill="currentColor"/>
24
+ <rect width="6.22222" height="8.44444" transform="matrix(1 0 0 -1 53.3359 66.6667)" fill="currentColor"/>
25
+ </g>
26
+ <g opacity="0.4">
27
+ <rect opacity="0.4" x="90.668" y="16" width="24.8889" height="33.7778" fill="currentColor"/>
28
+ <path opacity="0.4" d="M96.8906 24.4443H109.335V41.3332H96.8906V24.4443Z" fill="currentColor"/>
29
+ <path d="M109.335 41.3332V24.4443H115.554V49.7777L96.8906 49.7777L96.8906 41.3332H109.335Z" fill="currentColor"/>
30
+ <rect x="90.668" y="16" width="6.22222" height="8.44444" fill="currentColor"/>
31
+ </g>
32
+ <g opacity="0.4">
33
+ <rect opacity="0.4" x="128" y="66.6667" width="24.8889" height="33.7778" transform="rotate(180 128 66.6667)" fill="currentColor"/>
34
+ <path opacity="0.4" d="M121.777 58.2224H109.333V41.3335H121.777V58.2224Z" fill="currentColor"/>
35
+ <path d="M109.333 41.3335V58.2224H103.114V32.8891L121.777 32.8891L121.777 41.3335H109.333Z" fill="currentColor"/>
36
+ <rect x="128" y="66.6667" width="6.22222" height="8.44444" transform="rotate(180 128 66.6667)" fill="currentColor"/>
37
+ </g>
38
+ <g opacity="0.4">
39
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(-1 0 0 1 165.332 16)" fill="currentColor"/>
40
+ <path opacity="0.4" d="M159.109 24.4443H146.665V41.3332H159.109V24.4443Z" fill="currentColor"/>
41
+ <path d="M146.665 41.3332V24.4443H140.446V49.7777L159.109 49.7777L159.109 41.3332H146.665Z" fill="currentColor"/>
42
+ <rect width="6.22222" height="8.44444" transform="matrix(-1 0 0 1 165.332 16)" fill="currentColor"/>
43
+ </g>
44
+ <g opacity="0.4">
45
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(1 0 0 -1 128 66.6667)" fill="currentColor"/>
46
+ <path opacity="0.4" d="M134.223 58.2224H146.667V41.3335H134.223V58.2224Z" fill="currentColor"/>
47
+ <path d="M146.667 41.3335V58.2224H152.886V32.8891L134.223 32.8891L134.223 41.3335H146.667Z" fill="currentColor"/>
48
+ <rect width="6.22222" height="8.44444" transform="matrix(1 0 0 -1 128 66.6667)" fill="currentColor"/>
49
+ </g>
50
+ <g opacity="0.4">
51
+ <rect opacity="0.4" x="165.332" y="16" width="24.8889" height="33.7778" fill="currentColor"/>
52
+ <path opacity="0.4" d="M171.555 24.4443H183.999V41.3332H171.555V24.4443Z" fill="currentColor"/>
53
+ <path d="M183.999 41.3332V24.4443H190.218V49.7777L171.555 49.7777L171.555 41.3332H183.999Z" fill="currentColor"/>
54
+ <rect x="165.332" y="16" width="6.22222" height="8.44444" fill="currentColor"/>
55
+ </g>
56
+ <g opacity="0.4">
57
+ <rect opacity="0.4" x="202.664" y="66.6667" width="24.8889" height="33.7778" transform="rotate(180 202.664 66.6667)" fill="currentColor"/>
58
+ <path opacity="0.4" d="M196.441 58.2224H183.997V41.3335H196.441V58.2224Z" fill="currentColor"/>
59
+ <path d="M183.997 41.3335V58.2224H177.778V32.8891L196.441 32.8891L196.441 41.3335H183.997Z" fill="currentColor"/>
60
+ <rect x="202.664" y="66.6667" width="6.22222" height="8.44444" transform="rotate(180 202.664 66.6667)" fill="currentColor"/>
61
+ </g>
62
+ <g opacity="0.4">
63
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(-1 0 0 1 240 16)" fill="currentColor"/>
64
+ <path opacity="0.4" d="M233.777 24.4443H221.333V41.3332H233.777V24.4443Z" fill="currentColor"/>
65
+ <path d="M221.333 41.3332V24.4443H215.114V49.7777L233.777 49.7777L233.777 41.3332H221.333Z" fill="currentColor"/>
66
+ <rect width="6.22222" height="8.44444" transform="matrix(-1 0 0 1 240 16)" fill="currentColor"/>
67
+ </g>
68
+ <g opacity="0.4">
69
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(1 0 0 -1 202.668 66.6667)" fill="currentColor"/>
70
+ <path opacity="0.4" d="M208.891 58.2224H221.335V41.3335H208.891V58.2224Z" fill="currentColor"/>
71
+ <path d="M221.335 41.3335V58.2224H227.554V32.8891L208.891 32.8891L208.891 41.3335H221.335Z" fill="currentColor"/>
72
+ <rect width="6.22222" height="8.44444" transform="matrix(1 0 0 -1 202.668 66.6667)" fill="currentColor"/>
73
+ </g>
74
+ <g opacity="0.4">
75
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(1 0 0 -1 16 101.333)" fill="currentColor"/>
76
+ <path opacity="0.4" d="M22.2227 92.8889H34.6671V76H22.2227V92.8889Z" fill="currentColor"/>
77
+ <path d="M34.6671 76V92.8889H40.8858V67.5556L22.2227 67.5556L22.2227 76H34.6671Z" fill="currentColor"/>
78
+ <rect width="6.22222" height="8.44444" transform="matrix(1 0 0 -1 16 101.333)" fill="currentColor"/>
79
+ </g>
80
+ <g opacity="0.4">
81
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(-1 0 0 1 53.332 50.6665)" fill="currentColor"/>
82
+ <path opacity="0.4" d="M47.1094 59.1108H34.6649V75.9997H47.1094V59.1108Z" fill="currentColor"/>
83
+ <path d="M34.6649 75.9997V59.1108H28.4462V84.4442L47.1094 84.4442L47.1094 75.9997H34.6649Z" fill="currentColor"/>
84
+ <rect width="6.22222" height="8.44444" transform="matrix(-1 0 0 1 53.332 50.6665)" fill="currentColor"/>
85
+ </g>
86
+ <g opacity="0.4">
87
+ <rect opacity="0.4" x="90.668" y="101.333" width="24.8889" height="33.7778" transform="rotate(-180 90.668 101.333)" fill="currentColor"/>
88
+ <path opacity="0.4" d="M84.4453 92.8889H72.0009V76H84.4453V92.8889Z" fill="currentColor"/>
89
+ <path d="M72.0009 76V92.8889H65.7822V67.5556L84.4453 67.5556L84.4453 76H72.0009Z" fill="currentColor"/>
90
+ <rect x="90.668" y="101.333" width="6.22222" height="8.44444" transform="rotate(-180 90.668 101.333)" fill="currentColor"/>
91
+ </g>
92
+ <g opacity="0.4">
93
+ <rect opacity="0.4" x="53.3359" y="50.6665" width="24.8889" height="33.7778" fill="currentColor"/>
94
+ <path opacity="0.4" d="M59.5586 59.1108H72.003V75.9997H59.5586V59.1108Z" fill="currentColor"/>
95
+ <path d="M72.003 75.9997V59.1108H78.2218V84.4442L59.5586 84.4442L59.5586 75.9997H72.003Z" fill="currentColor"/>
96
+ <rect x="53.3359" y="50.6665" width="6.22222" height="8.44444" fill="currentColor"/>
97
+ </g>
98
+ <g opacity="0.4">
99
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(1 0 0 -1 90.668 101.333)" fill="currentColor"/>
100
+ <path opacity="0.4" d="M96.8906 92.8889H109.335V76H96.8906V92.8889Z" fill="currentColor"/>
101
+ <path d="M109.335 76V92.8889H115.554V67.5556L96.8906 67.5556L96.8906 76H109.335Z" fill="currentColor"/>
102
+ <rect width="6.22222" height="8.44444" transform="matrix(1 0 0 -1 90.668 101.333)" fill="currentColor"/>
103
+ </g>
104
+ <g opacity="0.4">
105
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(-1 0 0 1 128 50.6665)" fill="currentColor"/>
106
+ <path opacity="0.4" d="M121.777 59.1108H109.333V75.9997H121.777V59.1108Z" fill="currentColor"/>
107
+ <path d="M109.333 75.9997V59.1108H103.114V84.4442L121.777 84.4442L121.777 75.9997H109.333Z" fill="currentColor"/>
108
+ <rect width="6.22222" height="8.44444" transform="matrix(-1 0 0 1 128 50.6665)" fill="currentColor"/>
109
+ </g>
110
+ <g opacity="0.4">
111
+ <rect opacity="0.4" x="165.332" y="101.333" width="24.8889" height="33.7778" transform="rotate(-180 165.332 101.333)" fill="currentColor"/>
112
+ <path opacity="0.4" d="M159.109 92.8889H146.665V76H159.109V92.8889Z" fill="currentColor"/>
113
+ <path d="M146.665 76V92.8889H140.446V67.5556L159.109 67.5556L159.109 76H146.665Z" fill="currentColor"/>
114
+ <rect x="165.332" y="101.333" width="6.22222" height="8.44444" transform="rotate(-180 165.332 101.333)" fill="currentColor"/>
115
+ </g>
116
+ <g opacity="0.4">
117
+ <rect opacity="0.4" x="128" y="50.6665" width="24.8889" height="33.7778" fill="currentColor"/>
118
+ <path opacity="0.4" d="M134.223 59.1108H146.667V75.9997H134.223V59.1108Z" fill="currentColor"/>
119
+ <path d="M146.667 75.9997V59.1108H152.886V84.4442L134.223 84.4442L134.223 75.9997H146.667Z" fill="currentColor"/>
120
+ <rect x="128" y="50.6665" width="6.22222" height="8.44444" fill="currentColor"/>
121
+ </g>
122
+ <g opacity="0.4">
123
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(1 0 0 -1 165.332 101.333)" fill="currentColor"/>
124
+ <path opacity="0.4" d="M171.555 92.8889H183.999V76H171.555V92.8889Z" fill="currentColor"/>
125
+ <path d="M183.999 76V92.8889H190.218V67.5556L171.555 67.5556L171.555 76H183.999Z" fill="currentColor"/>
126
+ <rect width="6.22222" height="8.44444" transform="matrix(1 0 0 -1 165.332 101.333)" fill="currentColor"/>
127
+ </g>
128
+ <g opacity="0.4">
129
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(-1 0 0 1 202.664 50.6665)" fill="currentColor"/>
130
+ <path opacity="0.4" d="M196.441 59.1108H183.997V75.9997H196.441V59.1108Z" fill="currentColor"/>
131
+ <path d="M183.997 75.9997V59.1108H177.778V84.4442L196.441 84.4442L196.441 75.9997H183.997Z" fill="currentColor"/>
132
+ <rect width="6.22222" height="8.44444" transform="matrix(-1 0 0 1 202.664 50.6665)" fill="currentColor"/>
133
+ </g>
134
+ <g opacity="0.4">
135
+ <rect opacity="0.4" x="240" y="101.333" width="24.8889" height="33.7778" transform="rotate(180 240 101.333)" fill="currentColor"/>
136
+ <path opacity="0.4" d="M233.777 92.8889H221.333V76H233.777V92.8889Z" fill="currentColor"/>
137
+ <path d="M221.333 76V92.8889H215.114V67.5556L233.777 67.5556L233.777 76H221.333Z" fill="currentColor"/>
138
+ <rect x="240" y="101.333" width="6.22222" height="8.44444" transform="rotate(180 240 101.333)" fill="currentColor"/>
139
+ </g>
140
+ <g opacity="0.4">
141
+ <rect opacity="0.4" x="202.668" y="50.6665" width="24.8889" height="33.7778" fill="currentColor"/>
142
+ <path opacity="0.4" d="M208.891 59.1108H221.335V75.9997H208.891V59.1108Z" fill="currentColor"/>
143
+ <path d="M221.335 75.9997V59.1108H227.554V84.4442L208.891 84.4442L208.891 75.9997H221.335Z" fill="currentColor"/>
144
+ <rect x="202.668" y="50.6665" width="6.22222" height="8.44444" fill="currentColor"/>
145
+ </g>
146
+ <g opacity="0.4">
147
+ <rect opacity="0.4" x="16" y="85.3333" width="24.8889" height="33.7778" fill="currentColor"/>
148
+ <path opacity="0.4" d="M22.2227 93.7776H34.6671V110.666H22.2227V93.7776Z" fill="currentColor"/>
149
+ <path d="M34.6671 110.666V93.7776H40.8858V119.111L22.2227 119.111L22.2227 110.666H34.6671Z" fill="currentColor"/>
150
+ <rect x="16" y="85.3333" width="6.22222" height="8.44444" fill="currentColor"/>
151
+ </g>
152
+ <g opacity="0.4">
153
+ <rect opacity="0.4" x="53.332" y="136" width="24.8889" height="33.7778" transform="rotate(180 53.332 136)" fill="currentColor"/>
154
+ <path opacity="0.4" d="M47.1094 127.556H34.6649V110.667H47.1094V127.556Z" fill="currentColor"/>
155
+ <path d="M34.6649 110.667V127.556H28.4462V102.222L47.1094 102.222L47.1094 110.667H34.6649Z" fill="currentColor"/>
156
+ <rect x="53.332" y="136" width="6.22222" height="8.44444" transform="rotate(180 53.332 136)" fill="currentColor"/>
157
+ </g>
158
+ <g opacity="0.4">
159
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(-1 0 0 1 90.668 85.3333)" fill="currentColor"/>
160
+ <path opacity="0.4" d="M84.4453 93.7776H72.0009V110.666H84.4453V93.7776Z" fill="currentColor"/>
161
+ <path d="M72.0009 110.666V93.7776H65.7822V119.111L84.4453 119.111L84.4453 110.666H72.0009Z" fill="currentColor"/>
162
+ <rect width="6.22222" height="8.44444" transform="matrix(-1 0 0 1 90.668 85.3333)" fill="currentColor"/>
163
+ </g>
164
+ <g opacity="0.4">
165
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(1 0 0 -1 53.3359 136)" fill="currentColor"/>
166
+ <path opacity="0.4" d="M59.5586 127.556H72.003V110.667H59.5586V127.556Z" fill="currentColor"/>
167
+ <path d="M72.003 110.667V127.556H78.2218V102.222L59.5586 102.222L59.5586 110.667H72.003Z" fill="currentColor"/>
168
+ <rect width="6.22222" height="8.44444" transform="matrix(1 0 0 -1 53.3359 136)" fill="currentColor"/>
169
+ </g>
170
+ <g opacity="0.4">
171
+ <rect opacity="0.4" x="90.668" y="85.3333" width="24.8889" height="33.7778" fill="currentColor"/>
172
+ <path opacity="0.4" d="M96.8906 93.7776H109.335V110.666H96.8906V93.7776Z" fill="currentColor"/>
173
+ <path d="M109.335 110.666V93.7776H115.554V119.111L96.8906 119.111L96.8906 110.666H109.335Z" fill="currentColor"/>
174
+ <rect x="90.668" y="85.3333" width="6.22222" height="8.44444" fill="currentColor"/>
175
+ </g>
176
+ <g opacity="0.4">
177
+ <rect opacity="0.4" x="128" y="136" width="24.8889" height="33.7778" transform="rotate(180 128 136)" fill="currentColor"/>
178
+ <path opacity="0.4" d="M121.777 127.556H109.333V110.667H121.777V127.556Z" fill="currentColor"/>
179
+ <path d="M109.333 110.667V127.556H103.114V102.222L121.777 102.222L121.777 110.667H109.333Z" fill="currentColor"/>
180
+ <rect x="128" y="136" width="6.22222" height="8.44444" transform="rotate(180 128 136)" fill="currentColor"/>
181
+ </g>
182
+ <g opacity="0.4">
183
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(-1 0 0 1 165.332 85.3333)" fill="currentColor"/>
184
+ <path opacity="0.4" d="M159.109 93.7776H146.665V110.666H159.109V93.7776Z" fill="currentColor"/>
185
+ <path d="M146.665 110.666V93.7776H140.446V119.111L159.109 119.111L159.109 110.666H146.665Z" fill="currentColor"/>
186
+ <rect width="6.22222" height="8.44444" transform="matrix(-1 0 0 1 165.332 85.3333)" fill="currentColor"/>
187
+ </g>
188
+ <g opacity="0.4">
189
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(1 0 0 -1 128 136)" fill="currentColor"/>
190
+ <path opacity="0.4" d="M134.223 127.556H146.667V110.667H134.223V127.556Z" fill="currentColor"/>
191
+ <path d="M146.667 110.667V127.556H152.886V102.222L134.223 102.222L134.223 110.667H146.667Z" fill="currentColor"/>
192
+ <rect width="6.22222" height="8.44444" transform="matrix(1 0 0 -1 128 136)" fill="currentColor"/>
193
+ </g>
194
+ <g opacity="0.4">
195
+ <rect opacity="0.4" x="165.332" y="85.3333" width="24.8889" height="33.7778" fill="currentColor"/>
196
+ <path opacity="0.4" d="M171.555 93.7776H183.999V110.666H171.555V93.7776Z" fill="currentColor"/>
197
+ <path d="M183.999 110.666V93.7776H190.218V119.111L171.555 119.111L171.555 110.666H183.999Z" fill="currentColor"/>
198
+ <rect x="165.332" y="85.3333" width="6.22222" height="8.44444" fill="currentColor"/>
199
+ </g>
200
+ <g opacity="0.4">
201
+ <rect opacity="0.4" x="202.664" y="136" width="24.8889" height="33.7778" transform="rotate(180 202.664 136)" fill="currentColor"/>
202
+ <path opacity="0.4" d="M196.441 127.556H183.997V110.667H196.441V127.556Z" fill="currentColor"/>
203
+ <path d="M183.997 110.667V127.556H177.778V102.222L196.441 102.222L196.441 110.667H183.997Z" fill="currentColor"/>
204
+ <rect x="202.664" y="136" width="6.22222" height="8.44444" transform="rotate(180 202.664 136)" fill="currentColor"/>
205
+ </g>
206
+ <g opacity="0.4">
207
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(-1 0 0 1 240 85.3333)" fill="currentColor"/>
208
+ <path opacity="0.4" d="M233.777 93.7776H221.333V110.666H233.777V93.7776Z" fill="currentColor"/>
209
+ <path d="M221.333 110.666V93.7776H215.114V119.111L233.777 119.111L233.777 110.666H221.333Z" fill="currentColor"/>
210
+ <rect width="6.22222" height="8.44444" transform="matrix(-1 0 0 1 240 85.3333)" fill="currentColor"/>
211
+ </g>
212
+ <g opacity="0.4">
213
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(1 0 0 -1 202.668 136)" fill="currentColor"/>
214
+ <path opacity="0.4" d="M208.891 127.556H221.335V110.667H208.891V127.556Z" fill="currentColor"/>
215
+ <path d="M221.335 110.667V127.556H227.554V102.222L208.891 102.222L208.891 110.667H221.335Z" fill="currentColor"/>
216
+ <rect width="6.22222" height="8.44444" transform="matrix(1 0 0 -1 202.668 136)" fill="currentColor"/>
217
+ </g>
218
+ <g opacity="0.4">
219
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(1 0 0 -1 16 170.667)" fill="currentColor"/>
220
+ <path opacity="0.4" d="M22.2227 162.222H34.6671V145.334H22.2227V162.222Z" fill="currentColor"/>
221
+ <path d="M34.6671 145.334V162.222H40.8858V136.889L22.2227 136.889L22.2227 145.334H34.6671Z" fill="currentColor"/>
222
+ <rect width="6.22222" height="8.44444" transform="matrix(1 0 0 -1 16 170.667)" fill="currentColor"/>
223
+ </g>
224
+ <g opacity="0.4">
225
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(-1 0 0 1 53.332 120)" fill="currentColor"/>
226
+ <path opacity="0.4" d="M47.1094 128.444H34.6649V145.333H47.1094V128.444Z" fill="currentColor"/>
227
+ <path d="M34.6649 145.333V128.444H28.4462V153.778L47.1094 153.778L47.1094 145.333H34.6649Z" fill="currentColor"/>
228
+ <rect width="6.22222" height="8.44444" transform="matrix(-1 0 0 1 53.332 120)" fill="currentColor"/>
229
+ </g>
230
+ <g opacity="0.4">
231
+ <rect opacity="0.4" x="90.668" y="170.667" width="24.8889" height="33.7778" transform="rotate(-180 90.668 170.667)" fill="currentColor"/>
232
+ <path opacity="0.4" d="M84.4453 162.222H72.0009V145.334H84.4453V162.222Z" fill="currentColor"/>
233
+ <path d="M72.0009 145.334V162.222H65.7822V136.889L84.4453 136.889L84.4453 145.334H72.0009Z" fill="currentColor"/>
234
+ <rect x="90.668" y="170.667" width="6.22222" height="8.44444" transform="rotate(-180 90.668 170.667)" fill="currentColor"/>
235
+ </g>
236
+ <g opacity="0.4">
237
+ <rect opacity="0.4" x="53.3359" y="120" width="24.8889" height="33.7778" fill="currentColor"/>
238
+ <path opacity="0.4" d="M59.5586 128.444H72.003V145.333H59.5586V128.444Z" fill="currentColor"/>
239
+ <path d="M72.003 145.333V128.444H78.2218V153.778L59.5586 153.778L59.5586 145.333H72.003Z" fill="currentColor"/>
240
+ <rect x="53.3359" y="120" width="6.22222" height="8.44444" fill="currentColor"/>
241
+ </g>
242
+ <g opacity="0.4">
243
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(1 0 0 -1 90.668 170.667)" fill="currentColor"/>
244
+ <path opacity="0.4" d="M96.8906 162.222H109.335V145.334H96.8906V162.222Z" fill="currentColor"/>
245
+ <path d="M109.335 145.334V162.222H115.554V136.889L96.8906 136.889L96.8906 145.334H109.335Z" fill="currentColor"/>
246
+ <rect width="6.22222" height="8.44444" transform="matrix(1 0 0 -1 90.668 170.667)" fill="currentColor"/>
247
+ </g>
248
+ <g opacity="0.4">
249
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(-1 0 0 1 128 120)" fill="currentColor"/>
250
+ <path opacity="0.4" d="M121.777 128.444H109.333V145.333H121.777V128.444Z" fill="currentColor"/>
251
+ <path d="M109.333 145.333V128.444H103.114V153.778L121.777 153.778L121.777 145.333H109.333Z" fill="currentColor"/>
252
+ <rect width="6.22222" height="8.44444" transform="matrix(-1 0 0 1 128 120)" fill="currentColor"/>
253
+ </g>
254
+ <g opacity="0.4">
255
+ <rect opacity="0.4" x="165.332" y="170.667" width="24.8889" height="33.7778" transform="rotate(-180 165.332 170.667)" fill="currentColor"/>
256
+ <path opacity="0.4" d="M159.109 162.222H146.665V145.334H159.109V162.222Z" fill="currentColor"/>
257
+ <path d="M146.665 145.334V162.222H140.446V136.889L159.109 136.889L159.109 145.334H146.665Z" fill="currentColor"/>
258
+ <rect x="165.332" y="170.667" width="6.22222" height="8.44444" transform="rotate(-180 165.332 170.667)" fill="currentColor"/>
259
+ </g>
260
+ <g opacity="0.4">
261
+ <rect opacity="0.4" x="128" y="120" width="24.8889" height="33.7778" fill="currentColor"/>
262
+ <path opacity="0.4" d="M134.223 128.444H146.667V145.333H134.223V128.444Z" fill="currentColor"/>
263
+ <path d="M146.667 145.333V128.444H152.886V153.778L134.223 153.778L134.223 145.333H146.667Z" fill="currentColor"/>
264
+ <rect x="128" y="120" width="6.22222" height="8.44444" fill="currentColor"/>
265
+ </g>
266
+ <g opacity="0.4">
267
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(1 0 0 -1 165.332 170.667)" fill="currentColor"/>
268
+ <path opacity="0.4" d="M171.555 162.222H183.999V145.334H171.555V162.222Z" fill="currentColor"/>
269
+ <path d="M183.999 145.334V162.222H190.218V136.889L171.555 136.889L171.555 145.334H183.999Z" fill="currentColor"/>
270
+ <rect width="6.22222" height="8.44444" transform="matrix(1 0 0 -1 165.332 170.667)" fill="currentColor"/>
271
+ </g>
272
+ <g opacity="0.4">
273
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(-1 0 0 1 202.664 120)" fill="currentColor"/>
274
+ <path opacity="0.4" d="M196.441 128.444H183.997V145.333H196.441V128.444Z" fill="currentColor"/>
275
+ <path d="M183.997 145.333V128.444H177.778V153.778L196.441 153.778L196.441 145.333H183.997Z" fill="currentColor"/>
276
+ <rect width="6.22222" height="8.44444" transform="matrix(-1 0 0 1 202.664 120)" fill="currentColor"/>
277
+ </g>
278
+ <g opacity="0.4">
279
+ <rect opacity="0.4" x="240" y="170.667" width="24.8889" height="33.7778" transform="rotate(180 240 170.667)" fill="currentColor"/>
280
+ <path opacity="0.4" d="M233.777 162.222H221.333V145.334H233.777V162.222Z" fill="currentColor"/>
281
+ <path d="M221.333 145.334V162.222H215.114V136.889L233.777 136.889L233.777 145.334H221.333Z" fill="currentColor"/>
282
+ <rect x="240" y="170.667" width="6.22222" height="8.44444" transform="rotate(180 240 170.667)" fill="currentColor"/>
283
+ </g>
284
+ <g opacity="0.4">
285
+ <rect opacity="0.4" x="202.668" y="120" width="24.8889" height="33.7778" fill="currentColor"/>
286
+ <path opacity="0.4" d="M208.891 128.444H221.335V145.333H208.891V128.444Z" fill="currentColor"/>
287
+ <path d="M221.335 145.333V128.444H227.554V153.778L208.891 153.778L208.891 145.333H221.335Z" fill="currentColor"/>
288
+ <rect x="202.668" y="120" width="6.22222" height="8.44444" fill="currentColor"/>
289
+ </g>
290
+ <g opacity="0.4">
291
+ <rect opacity="0.4" x="16" y="154.667" width="24.8889" height="33.7778" fill="currentColor"/>
292
+ <path opacity="0.4" d="M22.2227 163.111H34.6671V180H22.2227V163.111Z" fill="currentColor"/>
293
+ <path d="M34.6671 180V163.111H40.8858V188.444L22.2227 188.444L22.2227 180H34.6671Z" fill="currentColor"/>
294
+ <rect x="16" y="154.667" width="6.22222" height="8.44444" fill="currentColor"/>
295
+ </g>
296
+ <g opacity="0.4">
297
+ <rect opacity="0.4" x="53.332" y="205.333" width="24.8889" height="33.7778" transform="rotate(180 53.332 205.333)" fill="currentColor"/>
298
+ <path opacity="0.4" d="M47.1094 196.889H34.6649V180H47.1094V196.889Z" fill="currentColor"/>
299
+ <path d="M34.6649 180V196.889H28.4462V171.556L47.1094 171.556L47.1094 180H34.6649Z" fill="currentColor"/>
300
+ <rect x="53.332" y="205.333" width="6.22222" height="8.44444" transform="rotate(180 53.332 205.333)" fill="currentColor"/>
301
+ </g>
302
+ <g opacity="0.4">
303
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(-1 0 0 1 90.668 154.667)" fill="currentColor"/>
304
+ <path opacity="0.4" d="M84.4453 163.111H72.0009V180H84.4453V163.111Z" fill="currentColor"/>
305
+ <path d="M72.0009 180V163.111H65.7822V188.444L84.4453 188.444L84.4453 180H72.0009Z" fill="currentColor"/>
306
+ <rect width="6.22222" height="8.44444" transform="matrix(-1 0 0 1 90.668 154.667)" fill="currentColor"/>
307
+ </g>
308
+ <g opacity="0.4">
309
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(1 0 0 -1 53.3359 205.333)" fill="currentColor"/>
310
+ <path opacity="0.4" d="M59.5586 196.889H72.003V180H59.5586V196.889Z" fill="currentColor"/>
311
+ <path d="M72.003 180V196.889H78.2218V171.556L59.5586 171.556L59.5586 180H72.003Z" fill="currentColor"/>
312
+ <rect width="6.22222" height="8.44444" transform="matrix(1 0 0 -1 53.3359 205.333)" fill="currentColor"/>
313
+ </g>
314
+ <g opacity="0.4">
315
+ <rect opacity="0.4" x="90.668" y="154.667" width="24.8889" height="33.7778" fill="currentColor"/>
316
+ <path opacity="0.4" d="M96.8906 163.111H109.335V180H96.8906V163.111Z" fill="currentColor"/>
317
+ <path d="M109.335 180V163.111H115.554V188.444L96.8906 188.444L96.8906 180H109.335Z" fill="currentColor"/>
318
+ <rect x="90.668" y="154.667" width="6.22222" height="8.44444" fill="currentColor"/>
319
+ </g>
320
+ <g opacity="0.4">
321
+ <rect opacity="0.4" x="128" y="205.333" width="24.8889" height="33.7778" transform="rotate(180 128 205.333)" fill="currentColor"/>
322
+ <path opacity="0.4" d="M121.777 196.889H109.333V180H121.777V196.889Z" fill="currentColor"/>
323
+ <path d="M109.333 180V196.889H103.114V171.556L121.777 171.556L121.777 180H109.333Z" fill="currentColor"/>
324
+ <rect x="128" y="205.333" width="6.22222" height="8.44444" transform="rotate(180 128 205.333)" fill="currentColor"/>
325
+ </g>
326
+ <g opacity="0.4">
327
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(-1 0 0 1 165.332 154.667)" fill="currentColor"/>
328
+ <path opacity="0.4" d="M159.109 163.111H146.665V180H159.109V163.111Z" fill="currentColor"/>
329
+ <path d="M146.665 180V163.111H140.446V188.444L159.109 188.444L159.109 180H146.665Z" fill="currentColor"/>
330
+ <rect width="6.22222" height="8.44444" transform="matrix(-1 0 0 1 165.332 154.667)" fill="currentColor"/>
331
+ </g>
332
+ <g opacity="0.4">
333
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(1 0 0 -1 128 205.333)" fill="currentColor"/>
334
+ <path opacity="0.4" d="M134.223 196.889H146.667V180H134.223V196.889Z" fill="currentColor"/>
335
+ <path d="M146.667 180V196.889H152.886V171.556L134.223 171.556L134.223 180H146.667Z" fill="currentColor"/>
336
+ <rect width="6.22222" height="8.44444" transform="matrix(1 0 0 -1 128 205.333)" fill="currentColor"/>
337
+ </g>
338
+ <g opacity="0.4">
339
+ <rect opacity="0.4" x="165.332" y="154.667" width="24.8889" height="33.7778" fill="currentColor"/>
340
+ <path opacity="0.4" d="M171.555 163.111H183.999V180H171.555V163.111Z" fill="currentColor"/>
341
+ <path d="M183.999 180V163.111H190.218V188.444L171.555 188.444L171.555 180H183.999Z" fill="currentColor"/>
342
+ <rect x="165.332" y="154.667" width="6.22222" height="8.44444" fill="currentColor"/>
343
+ </g>
344
+ <g opacity="0.4">
345
+ <rect opacity="0.4" x="202.664" y="205.333" width="24.8889" height="33.7778" transform="rotate(180 202.664 205.333)" fill="currentColor"/>
346
+ <path opacity="0.4" d="M196.441 196.889H183.997V180H196.441V196.889Z" fill="currentColor"/>
347
+ <path d="M183.997 180V196.889H177.778V171.556L196.441 171.556L196.441 180H183.997Z" fill="currentColor"/>
348
+ <rect x="202.664" y="205.333" width="6.22222" height="8.44444" transform="rotate(180 202.664 205.333)" fill="currentColor"/>
349
+ </g>
350
+ <g opacity="0.4">
351
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(-1 0 0 1 240 154.667)" fill="currentColor"/>
352
+ <path opacity="0.4" d="M233.777 163.111H221.333V180H233.777V163.111Z" fill="currentColor"/>
353
+ <path d="M221.333 180V163.111H215.114V188.444L233.777 188.444L233.777 180H221.333Z" fill="currentColor"/>
354
+ <rect width="6.22222" height="8.44444" transform="matrix(-1 0 0 1 240 154.667)" fill="currentColor"/>
355
+ </g>
356
+ <g opacity="0.4">
357
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(1 0 0 -1 202.668 205.333)" fill="currentColor"/>
358
+ <path opacity="0.4" d="M208.891 196.889H221.335V180H208.891V196.889Z" fill="currentColor"/>
359
+ <path d="M221.335 180V196.889H227.554V171.556L208.891 171.556L208.891 180H221.335Z" fill="currentColor"/>
360
+ <rect width="6.22222" height="8.44444" transform="matrix(1 0 0 -1 202.668 205.333)" fill="currentColor"/>
361
+ </g>
362
+ <g opacity="0.4">
363
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(1 0 0 -1 16 240)" fill="currentColor"/>
364
+ <path opacity="0.4" d="M22.2227 231.556H34.6671V214.667H22.2227V231.556Z" fill="currentColor"/>
365
+ <path d="M34.6671 214.667V231.556H40.8858V206.222L22.2227 206.222L22.2227 214.667H34.6671Z" fill="currentColor"/>
366
+ <rect width="6.22222" height="8.44444" transform="matrix(1 0 0 -1 16 240)" fill="currentColor"/>
367
+ </g>
368
+ <g opacity="0.4">
369
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(-1 0 0 1 53.332 189.333)" fill="currentColor"/>
370
+ <path opacity="0.4" d="M47.1094 197.778H34.6649V214.666H47.1094V197.778Z" fill="currentColor"/>
371
+ <path d="M34.6649 214.666V197.778H28.4462V223.111L47.1094 223.111L47.1094 214.666H34.6649Z" fill="currentColor"/>
372
+ <rect width="6.22222" height="8.44444" transform="matrix(-1 0 0 1 53.332 189.333)" fill="currentColor"/>
373
+ </g>
374
+ <g opacity="0.4">
375
+ <rect opacity="0.4" x="90.668" y="240" width="24.8889" height="33.7778" transform="rotate(-180 90.668 240)" fill="currentColor"/>
376
+ <path opacity="0.4" d="M84.4453 231.556H72.0009V214.667H84.4453V231.556Z" fill="currentColor"/>
377
+ <path d="M72.0009 214.667V231.556H65.7822V206.222L84.4453 206.222L84.4453 214.667H72.0009Z" fill="currentColor"/>
378
+ <rect x="90.668" y="240" width="6.22222" height="8.44444" transform="rotate(-180 90.668 240)" fill="currentColor"/>
379
+ </g>
380
+ <g opacity="0.4">
381
+ <rect opacity="0.4" x="53.3359" y="189.333" width="24.8889" height="33.7778" fill="currentColor"/>
382
+ <path opacity="0.4" d="M59.5586 197.778H72.003V214.666H59.5586V197.778Z" fill="currentColor"/>
383
+ <path d="M72.003 214.666V197.778H78.2218V223.111L59.5586 223.111L59.5586 214.666H72.003Z" fill="currentColor"/>
384
+ <rect x="53.3359" y="189.333" width="6.22222" height="8.44444" fill="currentColor"/>
385
+ </g>
386
+ <g opacity="0.4">
387
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(1 0 0 -1 90.668 240)" fill="currentColor"/>
388
+ <path opacity="0.4" d="M96.8906 231.556H109.335V214.667H96.8906V231.556Z" fill="currentColor"/>
389
+ <path d="M109.335 214.667V231.556H115.554V206.222L96.8906 206.222L96.8906 214.667H109.335Z" fill="currentColor"/>
390
+ <rect width="6.22222" height="8.44444" transform="matrix(1 0 0 -1 90.668 240)" fill="currentColor"/>
391
+ </g>
392
+ <g opacity="0.4">
393
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(-1 0 0 1 128 189.333)" fill="currentColor"/>
394
+ <path opacity="0.4" d="M121.777 197.778H109.333V214.666H121.777V197.778Z" fill="currentColor"/>
395
+ <path d="M109.333 214.666V197.778H103.114V223.111L121.777 223.111L121.777 214.666H109.333Z" fill="currentColor"/>
396
+ <rect width="6.22222" height="8.44444" transform="matrix(-1 0 0 1 128 189.333)" fill="currentColor"/>
397
+ </g>
398
+ <g opacity="0.4">
399
+ <rect opacity="0.4" x="165.332" y="240" width="24.8889" height="33.7778" transform="rotate(-180 165.332 240)" fill="currentColor"/>
400
+ <path opacity="0.4" d="M159.109 231.556H146.665V214.667H159.109V231.556Z" fill="currentColor"/>
401
+ <path d="M146.665 214.667V231.556H140.446V206.222L159.109 206.222L159.109 214.667H146.665Z" fill="currentColor"/>
402
+ <rect x="165.332" y="240" width="6.22222" height="8.44444" transform="rotate(-180 165.332 240)" fill="currentColor"/>
403
+ </g>
404
+ <g opacity="0.4">
405
+ <rect opacity="0.4" x="128" y="189.333" width="24.8889" height="33.7778" fill="currentColor"/>
406
+ <path opacity="0.4" d="M134.223 197.778H146.667V214.666H134.223V197.778Z" fill="currentColor"/>
407
+ <path d="M146.667 214.666V197.778H152.886V223.111L134.223 223.111L134.223 214.666H146.667Z" fill="currentColor"/>
408
+ <rect x="128" y="189.333" width="6.22222" height="8.44444" fill="currentColor"/>
409
+ </g>
410
+ <g opacity="0.4">
411
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(1 0 0 -1 165.332 240)" fill="currentColor"/>
412
+ <path opacity="0.4" d="M171.555 231.556H183.999V214.667H171.555V231.556Z" fill="currentColor"/>
413
+ <path d="M183.999 214.667V231.556H190.218V206.222L171.555 206.222L171.555 214.667H183.999Z" fill="currentColor"/>
414
+ <rect width="6.22222" height="8.44444" transform="matrix(1 0 0 -1 165.332 240)" fill="currentColor"/>
415
+ </g>
416
+ <g opacity="0.4">
417
+ <rect opacity="0.4" width="24.8889" height="33.7778" transform="matrix(-1 0 0 1 202.664 189.333)" fill="currentColor"/>
418
+ <path opacity="0.4" d="M196.441 197.778H183.997V214.666H196.441V197.778Z" fill="currentColor"/>
419
+ <path d="M183.997 214.666V197.778H177.778V223.111L196.441 223.111L196.441 214.666H183.997Z" fill="currentColor"/>
420
+ <rect width="6.22222" height="8.44444" transform="matrix(-1 0 0 1 202.664 189.333)" fill="currentColor"/>
421
+ </g>
422
+ <g opacity="0.4">
423
+ <rect opacity="0.4" x="240" y="240" width="24.8889" height="33.7778" transform="rotate(180 240 240)" fill="currentColor"/>
424
+ <path opacity="0.4" d="M233.777 231.556H221.333V214.667H233.777V231.556Z" fill="currentColor"/>
425
+ <path d="M221.333 214.667V231.556H215.114V206.222L233.777 206.222L233.777 214.667H221.333Z" fill="currentColor"/>
426
+ <rect x="240" y="240" width="6.22222" height="8.44444" transform="rotate(180 240 240)" fill="currentColor"/>
427
+ </g>
428
+ <g opacity="0.4">
429
+ <rect opacity="0.4" x="202.668" y="189.333" width="24.8889" height="33.7778" fill="currentColor"/>
430
+ <path opacity="0.4" d="M208.891 197.778H221.335V214.666H208.891V197.778Z" fill="currentColor"/>
431
+ <path d="M221.335 214.666V197.778H227.554V223.111L208.891 223.111L208.891 214.666H221.335Z" fill="currentColor"/>
432
+ <rect x="202.668" y="189.333" width="6.22222" height="8.44444" fill="currentColor"/>
433
+ </g>
434
+ </svg>
@@ -0,0 +1,38 @@
1
+ <svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M31.3333 31.8444L16 39.2556L31.3333 46.6667M46.6667 16L31.3333 31.3333L46.6667 46.6667" stroke="currentColor" stroke-width="6"/>
3
+ <path d="M69.9987 30.8223L85.332 23.4112L69.9987 16.0001M54.6654 46.6667L69.9987 31.3334L54.6654 16.0001" stroke="currentColor" stroke-width="6"/>
4
+ <path d="M108.665 31.8444L93.332 39.2556L108.665 46.6667M123.999 16L108.665 31.3333L123.999 46.6667" stroke="currentColor" stroke-width="6"/>
5
+ <path d="M147.335 30.8223L162.668 23.4112L147.335 16.0001M132.001 46.6667L147.335 31.3334L132.001 16.0001" stroke="currentColor" stroke-width="6"/>
6
+ <path d="M186.001 31.8444L170.668 39.2556L186.001 46.6667M201.335 16L186.001 31.3333L201.335 46.6667" stroke="currentColor" stroke-width="6"/>
7
+ <path d="M224.667 30.8223L240 23.4112L224.667 16.0001M209.333 46.6667L224.667 31.3334L209.333 16.0001" stroke="currentColor" stroke-width="6"/>
8
+ <path d="M31.3346 69.4888L46.668 62.0777L31.3346 54.6666M16.0013 85.3333L31.3346 69.9999L16.0013 54.6666" stroke="currentColor" stroke-width="6"/>
9
+ <path d="M70.0013 70.5109L54.668 77.9221L70.0013 85.3332M85.3346 54.6665L70.0013 69.9998L85.3346 85.3332" stroke="currentColor" stroke-width="6"/>
10
+ <path d="M108.667 69.4888L124 62.0777L108.667 54.6666M93.3333 85.3333L108.667 69.9999L93.3333 54.6666" stroke="currentColor" stroke-width="6"/>
11
+ <path d="M147.333 70.5109L132 77.9221L147.333 85.3332M162.667 54.6665L147.333 69.9998L162.667 85.3332" stroke="currentColor" stroke-width="6"/>
12
+ <path d="M185.999 69.4888L201.332 62.0777L185.999 54.6666M170.665 85.3333L185.999 69.9999L170.665 54.6666" stroke="currentColor" stroke-width="6"/>
13
+ <path d="M224.665 70.5109L209.332 77.9221L224.665 85.3332M239.999 54.6665L224.665 69.9998L239.999 85.3332" stroke="currentColor" stroke-width="6"/>
14
+ <path d="M31.3333 109.178L16 116.589L31.3333 124M46.6667 93.3333L31.3333 108.667L46.6667 124" stroke="currentColor" stroke-width="6"/>
15
+ <path d="M69.9987 108.156L85.332 100.744L69.9987 93.3333M54.6654 124L69.9987 108.667L54.6654 93.3333" stroke="currentColor" stroke-width="6"/>
16
+ <path d="M108.665 109.178L93.332 116.589L108.665 124M123.999 93.3333L108.665 108.667L123.999 124" stroke="currentColor" stroke-width="6"/>
17
+ <path d="M147.335 108.156L162.668 100.744L147.335 93.3333M132.001 124L147.335 108.667L132.001 93.3333" stroke="currentColor" stroke-width="6"/>
18
+ <path d="M186.001 109.178L170.668 116.589L186.001 124M201.335 93.3333L186.001 108.667L201.335 124" stroke="currentColor" stroke-width="6"/>
19
+ <path d="M224.667 108.156L240 100.744L224.667 93.3333M209.333 124L224.667 108.667L209.333 93.3333" stroke="currentColor" stroke-width="6"/>
20
+ <path d="M31.3346 146.822L46.668 139.411L31.3346 132M16.0013 162.667L31.3346 147.333L16.0013 132" stroke="currentColor" stroke-width="6"/>
21
+ <path d="M70.0013 147.844L54.668 155.256L70.0013 162.667M85.3346 132L70.0013 147.333L85.3346 162.667" stroke="currentColor" stroke-width="6"/>
22
+ <path d="M108.667 146.822L124 139.411L108.667 132M93.3333 162.667L108.667 147.333L93.3333 132" stroke="currentColor" stroke-width="6"/>
23
+ <path d="M147.333 147.844L132 155.256L147.333 162.667M162.667 132L147.333 147.333L162.667 162.667" stroke="currentColor" stroke-width="6"/>
24
+ <path d="M185.999 146.822L201.332 139.411L185.999 132M170.665 162.667L185.999 147.333L170.665 132" stroke="currentColor" stroke-width="6"/>
25
+ <path d="M224.665 147.844L209.332 155.256L224.665 162.667M239.999 132L224.665 147.333L239.999 162.667" stroke="currentColor" stroke-width="6"/>
26
+ <path d="M31.3333 186.511L16 193.922L31.3333 201.333M46.6667 170.667L31.3333 186L46.6667 201.333" stroke="currentColor" stroke-width="6"/>
27
+ <path d="M69.9987 185.489L85.332 178.078L69.9987 170.667M54.6654 201.333L69.9987 186L54.6654 170.667" stroke="currentColor" stroke-width="6"/>
28
+ <path d="M108.665 186.511L93.332 193.922L108.665 201.333M123.999 170.667L108.665 186L123.999 201.333" stroke="currentColor" stroke-width="6"/>
29
+ <path d="M147.335 185.489L162.668 178.078L147.335 170.667M132.001 201.333L147.335 186L132.001 170.667" stroke="currentColor" stroke-width="6"/>
30
+ <path d="M186.001 186.511L170.668 193.922L186.001 201.333M201.335 170.667L186.001 186L201.335 201.333" stroke="currentColor" stroke-width="6"/>
31
+ <path d="M224.667 185.489L240 178.078L224.667 170.667M209.333 201.333L224.667 186L209.333 170.667" stroke="currentColor" stroke-width="6"/>
32
+ <path d="M31.3346 224.156L46.668 216.744L31.3346 209.333M16.0013 240L31.3346 224.667L16.0013 209.333" stroke="currentColor" stroke-width="6"/>
33
+ <path d="M70.0013 225.178L54.668 232.589L70.0013 240M85.3346 209.333L70.0013 224.667L85.3346 240" stroke="currentColor" stroke-width="6"/>
34
+ <path d="M108.667 224.156L124 216.744L108.667 209.333M93.3333 240L108.667 224.667L93.3333 209.333" stroke="currentColor" stroke-width="6"/>
35
+ <path d="M147.333 225.178L132 232.589L147.333 240M162.667 209.333L147.333 224.667L162.667 240" stroke="currentColor" stroke-width="6"/>
36
+ <path d="M185.999 224.156L201.332 216.744L185.999 209.333M170.665 240L185.999 224.667L170.665 209.333" stroke="currentColor" stroke-width="6"/>
37
+ <path d="M224.665 225.178L209.332 232.589L224.665 240M239.999 209.333L224.665 224.667L239.999 240" stroke="currentColor" stroke-width="6"/>
38
+ </svg>
@@ -0,0 +1,20 @@
1
+ <svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M89.8555 182.451L90.4717 183.239L68.127 200.713L78.8223 209.077L79.8291 209.865L78.8223 210.653L68.127 219.017L90.4717 236.491L89.8555 237.279L89.2402 238.067L66.5029 220.286L56.4365 228.159L67.0908 236.491L65.8584 238.067L54.8125 229.429L43.7676 238.067L42.5352 236.491L53.1885 228.159L43.123 220.287L20.3887 238.067L19.1562 236.491L41.499 219.018L30.8037 210.653L29.7969 209.865L30.8037 209.077L41.499 200.712L19.1562 183.239L20.3887 181.663L43.123 199.442L53.1885 191.57L42.5352 183.239L43.7676 181.663L54.8125 190.301L65.8584 181.663L67.0908 183.239L56.4365 191.57L66.5029 199.443L89.2402 181.663L89.8555 182.451ZM44.7471 219.018L54.8125 226.889L64.8789 219.017L54.8135 211.146L44.7471 219.018ZM33.043 209.865L43.123 217.747L53.1904 209.875L53.1777 209.865L53.1904 209.854L43.123 201.982L33.043 209.865ZM56.4365 209.854L56.4502 209.865L56.4365 209.875L66.5029 217.747L76.582 209.865L66.5029 201.982L56.4365 209.854ZM44.7471 200.712L54.8135 208.584L64.8789 200.713L54.8125 192.841L44.7471 200.712Z" fill="currentColor"/>
3
+ <path d="M89.8555 127.951L90.4717 128.739L68.127 146.213L78.8223 154.577L79.8291 155.365L78.8223 156.153L68.127 164.517L90.4717 181.991L89.8555 182.779L89.2402 183.567L66.5029 165.786L56.4365 173.659L67.0908 181.991L65.8584 183.567L54.8125 174.929L43.7676 183.567L42.5352 181.991L53.1885 173.659L43.123 165.787L20.3887 183.567L19.1562 181.991L41.499 164.518L30.8037 156.153L29.7969 155.365L30.8037 154.577L41.499 146.212L19.1562 128.739L20.3887 127.163L43.123 144.942L53.1885 137.07L42.5352 128.739L43.7676 127.163L54.8125 135.801L65.8584 127.163L67.0908 128.739L56.4365 137.07L66.5029 144.943L89.2402 127.163L89.8555 127.951ZM44.7471 164.518L54.8125 172.389L64.8789 164.517L54.8135 156.646L44.7471 164.518ZM33.043 155.365L43.123 163.247L53.1904 155.375L53.1777 155.365L53.1904 155.354L43.123 147.482L33.043 155.365ZM56.4365 155.354L56.4502 155.365L56.4365 155.375L66.5029 163.247L76.582 155.365L66.5029 147.482L56.4365 155.354ZM44.7471 146.212L54.8135 154.084L64.8789 146.213L54.8125 138.341L44.7471 146.212Z" fill="currentColor"/>
4
+ <path d="M89.8555 73.4512L90.4717 74.2393L68.127 91.7129L78.8223 100.077L79.8291 100.865L78.8223 101.653L68.127 110.017L90.4717 127.491L89.8555 128.279L89.2402 129.067L66.5029 111.286L56.4365 119.159L67.0908 127.491L65.8584 129.067L54.8125 120.429L43.7676 129.067L42.5352 127.491L53.1885 119.159L43.123 111.287L20.3887 129.067L19.1562 127.491L41.499 110.018L30.8037 101.653L29.7969 100.865L30.8037 100.077L41.499 91.7119L19.1562 74.2393L20.3887 72.6631L43.123 90.4424L53.1885 82.5703L42.5352 74.2393L43.7676 72.6631L54.8125 81.3008L65.8584 72.6631L67.0908 74.2393L56.4365 82.5703L66.5029 90.4434L89.2402 72.6631L89.8555 73.4512ZM44.7471 110.018L54.8125 117.889L64.8789 110.017L54.8135 102.146L44.7471 110.018ZM33.043 100.865L43.123 108.747L53.1904 100.875L53.1777 100.865L53.1904 100.854L43.123 92.9824L33.043 100.865ZM56.4365 100.854L56.4502 100.865L56.4365 100.875L66.5029 108.747L76.582 100.865L66.5029 92.9824L56.4365 100.854ZM44.7471 91.7119L54.8135 99.584L64.8789 91.7129L54.8125 83.8408L44.7471 91.7119Z" fill="currentColor"/>
5
+ <path d="M89.8555 18.9512L90.4717 19.7393L68.127 37.2129L78.8223 45.5771L79.8291 46.3652L78.8223 47.1533L68.127 55.5166L90.4717 72.9912L89.8555 73.7793L89.2402 74.5674L66.5029 56.7861L56.4365 64.6592L67.0908 72.9912L65.8584 74.5674L54.8125 65.9287L43.7676 74.5674L42.5352 72.9912L53.1885 64.6592L43.123 56.7871L20.3887 74.5674L19.1562 72.9912L41.499 55.5176L30.8037 47.1533L29.7969 46.3652L30.8037 45.5771L41.499 37.2119L19.1562 19.7393L20.3887 18.1631L43.123 35.9424L53.1885 28.0703L42.5352 19.7393L43.7676 18.1631L54.8125 26.8008L65.8584 18.1631L67.0908 19.7393L56.4365 28.0703L66.5029 35.9434L89.2402 18.1631L89.8555 18.9512ZM44.7471 55.5176L54.8125 63.3887L64.8789 55.5166L54.8135 47.6455L44.7471 55.5176ZM33.043 46.3652L43.123 54.2471L53.1904 46.375L53.1777 46.3652L53.1904 46.3545L43.123 38.4824L33.043 46.3652ZM56.4365 46.3545L56.4502 46.3652L56.4365 46.375L66.5029 54.2471L76.582 46.3652L66.5029 38.4824L56.4365 46.3545ZM44.7471 37.2119L54.8135 45.084L64.8789 37.2129L54.8125 29.3408L44.7471 37.2119Z" fill="currentColor"/>
6
+ <path d="M119.19 21.6094L120.021 22.168L97.0439 56.3223L108.371 73.1602L108.746 73.7188L108.371 74.2773L97.0439 91.1143L120.021 125.27L119.19 125.828L118.361 126.387L95.8389 92.9062L85.3535 108.493L96.6396 125.27L94.9795 126.387L84.1475 110.285L73.3164 126.387L71.6562 125.27L82.9414 108.492L72.458 92.9082L49.9375 126.387L48.2773 125.27L71.252 91.1162L59.9248 74.2773L59.5498 73.7188L59.9248 73.1602L71.252 56.3203L48.2773 22.168L49.9375 21.0508L72.458 54.5283L82.9414 38.9443L71.6562 22.168L73.3164 21.0508L84.1475 37.1514L94.9795 21.0508L96.6396 22.168L85.3535 38.9434L95.8389 54.5303L118.361 21.0508L119.19 21.6094ZM73.6631 91.1162L84.1475 106.7L94.6328 91.1133L84.1494 75.5293L73.6631 91.1162ZM61.959 73.7188L72.458 89.3242L82.9434 73.7373L82.9307 73.7188L82.9434 73.6992L72.458 58.1123L61.959 73.7188ZM85.3535 73.6992L85.3672 73.7188L85.3535 73.7373L95.8379 89.3223L106.335 73.7188L95.8379 58.1143L85.3535 73.6992ZM73.6631 56.3203L84.1494 71.9072L94.6328 56.3232L84.1475 40.7363L73.6631 56.3203Z" fill="currentColor"/>
7
+ <path d="M119.19 130.609L120.021 131.168L97.0439 165.322L108.371 182.16L108.746 182.719L108.371 183.277L97.0439 200.114L120.021 234.27L119.19 234.828L118.361 235.387L95.8389 201.906L85.3535 217.493L96.6396 234.27L94.9795 235.387L84.1475 219.285L73.3164 235.387L71.6562 234.27L82.9414 217.492L72.458 201.908L49.9375 235.387L48.2773 234.27L71.252 200.116L59.9248 183.277L59.5498 182.719L59.9248 182.16L71.252 165.32L48.2773 131.168L49.9375 130.051L72.458 163.528L82.9414 147.944L71.6562 131.168L73.3164 130.051L84.1475 146.151L94.9795 130.051L96.6396 131.168L85.3535 147.943L95.8389 163.53L118.361 130.051L119.19 130.609ZM73.6631 200.116L84.1475 215.7L94.6328 200.113L84.1494 184.529L73.6631 200.116ZM61.959 182.719L72.458 198.324L82.9434 182.737L82.9307 182.719L82.9434 182.699L72.458 167.112L61.959 182.719ZM85.3535 182.699L85.3672 182.719L85.3535 182.737L95.8379 198.322L106.335 182.719L95.8379 167.114L85.3535 182.699ZM73.6631 165.32L84.1494 180.907L94.6328 165.323L84.1475 149.736L73.6631 165.32Z" fill="currentColor"/>
8
+ <path d="M148.523 182.451L149.14 183.239L126.795 200.713L137.49 209.077L138.497 209.865L137.49 210.653L126.795 219.017L149.14 236.491L148.523 237.279L147.908 238.067L125.171 220.286L115.104 228.159L125.759 236.491L124.526 238.067L113.48 229.429L102.436 238.067L101.203 236.491L111.856 228.159L101.791 220.287L79.0566 238.067L77.8242 236.491L100.167 219.018L89.4717 210.653L88.4648 209.865L89.4717 209.077L100.167 200.712L77.8242 183.239L79.0566 181.663L101.791 199.442L111.856 191.57L101.203 183.239L102.436 181.663L113.48 190.301L124.526 181.663L125.759 183.239L115.104 191.57L125.171 199.443L147.908 181.663L148.523 182.451ZM103.415 219.018L113.48 226.889L123.547 219.017L113.481 211.146L103.415 219.018ZM91.7109 209.865L101.791 217.747L111.858 209.875L111.846 209.865L111.858 209.854L101.791 201.982L91.7109 209.865ZM115.104 209.854L115.118 209.865L115.104 209.875L125.171 217.747L135.25 209.865L125.171 201.982L115.104 209.854ZM103.415 200.712L113.481 208.584L123.547 200.713L113.48 192.841L103.415 200.712Z" fill="currentColor"/>
9
+ <path d="M148.523 127.951L149.14 128.739L126.795 146.213L137.49 154.577L138.497 155.365L137.49 156.153L126.795 164.517L149.14 181.991L148.523 182.779L147.908 183.567L125.171 165.786L115.104 173.659L125.759 181.991L124.526 183.567L113.48 174.929L102.436 183.567L101.203 181.991L111.856 173.659L101.791 165.787L79.0566 183.567L77.8242 181.991L100.167 164.518L89.4717 156.153L88.4648 155.365L89.4717 154.577L100.167 146.212L77.8242 128.739L79.0566 127.163L101.791 144.942L111.856 137.07L101.203 128.739L102.436 127.163L113.48 135.801L124.526 127.163L125.759 128.739L115.104 137.07L125.171 144.943L147.908 127.163L148.523 127.951ZM103.415 164.518L113.48 172.389L123.547 164.517L113.481 156.646L103.415 164.518ZM91.7109 155.365L101.791 163.247L111.858 155.375L111.846 155.365L111.858 155.354L101.791 147.482L91.7109 155.365ZM115.104 155.354L115.118 155.365L115.104 155.375L125.171 163.247L135.25 155.365L125.171 147.482L115.104 155.354ZM103.415 146.212L113.481 154.084L123.547 146.213L113.48 138.341L103.415 146.212Z" fill="currentColor"/>
10
+ <path d="M148.523 73.4512L149.14 74.2393L126.795 91.7129L137.49 100.077L138.497 100.865L137.49 101.653L126.795 110.017L149.14 127.491L148.523 128.279L147.908 129.067L125.171 111.286L115.104 119.159L125.759 127.491L124.526 129.067L113.48 120.429L102.436 129.067L101.203 127.491L111.856 119.159L101.791 111.287L79.0566 129.067L77.8242 127.491L100.167 110.018L89.4717 101.653L88.4648 100.865L89.4717 100.077L100.167 91.7119L77.8242 74.2393L79.0566 72.6631L101.791 90.4424L111.856 82.5703L101.203 74.2393L102.436 72.6631L113.48 81.3008L124.526 72.6631L125.759 74.2393L115.104 82.5703L125.171 90.4434L147.908 72.6631L148.523 73.4512ZM103.415 110.018L113.48 117.889L123.547 110.017L113.481 102.146L103.415 110.018ZM91.7109 100.865L101.791 108.747L111.858 100.875L111.846 100.865L111.858 100.854L101.791 92.9824L91.7109 100.865ZM115.104 100.854L115.118 100.865L115.104 100.875L125.171 108.747L135.25 100.865L125.171 92.9824L115.104 100.854ZM103.415 91.7119L113.481 99.584L123.547 91.7129L113.48 83.8408L103.415 91.7119Z" fill="currentColor"/>
11
+ <path d="M148.523 18.9512L149.14 19.7393L126.795 37.2129L137.49 45.5771L138.497 46.3652L137.49 47.1533L126.795 55.5166L149.14 72.9912L148.523 73.7793L147.908 74.5674L125.171 56.7861L115.104 64.6592L125.759 72.9912L124.526 74.5674L113.48 65.9287L102.436 74.5674L101.203 72.9912L111.856 64.6592L101.791 56.7871L79.0566 74.5674L77.8242 72.9912L100.167 55.5176L89.4717 47.1533L88.4648 46.3652L89.4717 45.5771L100.167 37.2119L77.8242 19.7393L79.0566 18.1631L101.791 35.9424L111.856 28.0703L101.203 19.7393L102.436 18.1631L113.48 26.8008L124.526 18.1631L125.759 19.7393L115.104 28.0703L125.171 35.9434L147.908 18.1631L148.523 18.9512ZM103.415 55.5176L113.48 63.3887L123.547 55.5166L113.481 47.6455L103.415 55.5176ZM91.7109 46.3652L101.791 54.2471L111.858 46.375L111.846 46.3652L111.858 46.3545L101.791 38.4824L91.7109 46.3652ZM115.104 46.3545L115.118 46.3652L115.104 46.375L125.171 54.2471L135.25 46.3652L125.171 38.4824L115.104 46.3545ZM103.415 37.2119L113.481 45.084L123.547 37.2129L113.48 29.3408L103.415 37.2119Z" fill="currentColor"/>
12
+ <path d="M177.854 21.6094L178.685 22.168L155.708 56.3223L167.035 73.1602L167.41 73.7188L167.035 74.2773L155.708 91.1143L178.685 125.27L177.854 125.828L177.025 126.387L154.503 92.9062L144.018 108.493L155.304 125.27L153.644 126.387L142.812 110.285L131.98 126.387L130.32 125.27L141.605 108.492L131.122 92.9082L108.602 126.387L106.941 125.27L129.916 91.1162L118.589 74.2773L118.214 73.7188L118.589 73.1602L129.916 56.3203L106.941 22.168L108.602 21.0508L131.122 54.5283L141.605 38.9443L130.32 22.168L131.98 21.0508L142.812 37.1514L153.644 21.0508L155.304 22.168L144.018 38.9434L154.503 54.5303L177.025 21.0508L177.854 21.6094ZM132.327 91.1162L142.812 106.7L153.297 91.1133L142.813 75.5293L132.327 91.1162ZM120.623 73.7188L131.122 89.3242L141.607 73.7373L141.595 73.7188L141.607 73.6992L131.122 58.1123L120.623 73.7188ZM144.018 73.6992L144.031 73.7188L144.018 73.7373L154.502 89.3223L164.999 73.7188L154.502 58.1143L144.018 73.6992ZM132.327 56.3203L142.813 71.9072L153.297 56.3232L142.812 40.7363L132.327 56.3203Z" fill="currentColor"/>
13
+ <path d="M177.854 130.609L178.685 131.168L155.708 165.322L167.035 182.16L167.41 182.719L167.035 183.277L155.708 200.114L178.685 234.27L177.854 234.828L177.025 235.387L154.503 201.906L144.018 217.493L155.304 234.27L153.644 235.387L142.812 219.285L131.98 235.387L130.32 234.27L141.605 217.492L131.122 201.908L108.602 235.387L106.941 234.27L129.916 200.116L118.589 183.277L118.214 182.719L118.589 182.16L129.916 165.32L106.941 131.168L108.602 130.051L131.122 163.528L141.605 147.944L130.32 131.168L131.98 130.051L142.812 146.151L153.644 130.051L155.304 131.168L144.018 147.943L154.503 163.53L177.025 130.051L177.854 130.609ZM132.327 200.116L142.812 215.7L153.297 200.113L142.813 184.529L132.327 200.116ZM120.623 182.719L131.122 198.324L141.607 182.737L141.595 182.719L141.607 182.699L131.122 167.112L120.623 182.719ZM144.018 182.699L144.031 182.719L144.018 182.737L154.502 198.322L164.999 182.719L154.502 167.114L144.018 182.699ZM132.327 165.32L142.813 180.907L153.297 165.323L142.812 149.736L132.327 165.32Z" fill="currentColor"/>
14
+ <path d="M207.191 182.451L207.808 183.239L185.463 200.713L196.158 209.077L197.165 209.865L196.158 210.653L185.463 219.017L207.808 236.491L207.191 237.279L206.576 238.067L183.839 220.286L173.772 228.159L184.427 236.491L183.194 238.067L172.148 229.429L161.104 238.067L159.871 236.491L170.524 228.159L160.459 220.287L137.725 238.067L136.492 236.491L158.835 219.018L148.14 210.653L147.133 209.865L148.14 209.077L158.835 200.712L136.492 183.239L137.725 181.663L160.459 199.442L170.524 191.57L159.871 183.239L161.104 181.663L172.148 190.301L183.194 181.663L184.427 183.239L173.772 191.57L183.839 199.443L206.576 181.663L207.191 182.451ZM162.083 219.018L172.148 226.889L182.215 219.017L172.149 211.146L162.083 219.018ZM150.379 209.865L160.459 217.747L170.526 209.875L170.514 209.865L170.526 209.854L160.459 201.982L150.379 209.865ZM173.772 209.854L173.786 209.865L173.772 209.875L183.839 217.747L193.918 209.865L183.839 201.982L173.772 209.854ZM162.083 200.712L172.149 208.584L182.215 200.713L172.148 192.841L162.083 200.712Z" fill="currentColor"/>
15
+ <path d="M207.191 127.951L207.808 128.739L185.463 146.213L196.158 154.577L197.165 155.365L196.158 156.153L185.463 164.517L207.808 181.991L207.191 182.779L206.576 183.567L183.839 165.786L173.772 173.659L184.427 181.991L183.194 183.567L172.148 174.929L161.104 183.567L159.871 181.991L170.524 173.659L160.459 165.787L137.725 183.567L136.492 181.991L158.835 164.518L148.14 156.153L147.133 155.365L148.14 154.577L158.835 146.212L136.492 128.739L137.725 127.163L160.459 144.942L170.524 137.07L159.871 128.739L161.104 127.163L172.148 135.801L183.194 127.163L184.427 128.739L173.772 137.07L183.839 144.943L206.576 127.163L207.191 127.951ZM162.083 164.518L172.148 172.389L182.215 164.517L172.149 156.646L162.083 164.518ZM150.379 155.365L160.459 163.247L170.526 155.375L170.514 155.365L170.526 155.354L160.459 147.482L150.379 155.365ZM173.772 155.354L173.786 155.365L173.772 155.375L183.839 163.247L193.918 155.365L183.839 147.482L173.772 155.354ZM162.083 146.212L172.149 154.084L182.215 146.213L172.148 138.341L162.083 146.212Z" fill="currentColor"/>
16
+ <path d="M207.191 73.4512L207.808 74.2393L185.463 91.7129L196.158 100.077L197.165 100.865L196.158 101.653L185.463 110.017L207.808 127.491L207.191 128.279L206.576 129.067L183.839 111.286L173.772 119.159L184.427 127.491L183.194 129.067L172.148 120.429L161.104 129.067L159.871 127.491L170.524 119.159L160.459 111.287L137.725 129.067L136.492 127.491L158.835 110.018L148.14 101.653L147.133 100.865L148.14 100.077L158.835 91.7119L136.492 74.2393L137.725 72.6631L160.459 90.4424L170.524 82.5703L159.871 74.2393L161.104 72.6631L172.148 81.3008L183.194 72.6631L184.427 74.2393L173.772 82.5703L183.839 90.4434L206.576 72.6631L207.191 73.4512ZM162.083 110.018L172.148 117.889L182.215 110.017L172.149 102.146L162.083 110.018ZM150.379 100.865L160.459 108.747L170.526 100.875L170.514 100.865L170.526 100.854L160.459 92.9824L150.379 100.865ZM173.772 100.854L173.786 100.865L173.772 100.875L183.839 108.747L193.918 100.865L183.839 92.9824L173.772 100.854ZM162.083 91.7119L172.149 99.584L182.215 91.7129L172.148 83.8408L162.083 91.7119Z" fill="currentColor"/>
17
+ <path d="M207.191 18.9512L207.808 19.7393L185.463 37.2129L196.158 45.5771L197.165 46.3652L196.158 47.1533L185.463 55.5166L207.808 72.9912L207.191 73.7793L206.576 74.5674L183.839 56.7861L173.772 64.6592L184.427 72.9912L183.194 74.5674L172.148 65.9287L161.104 74.5674L159.871 72.9912L170.524 64.6592L160.459 56.7871L137.725 74.5674L136.492 72.9912L158.835 55.5176L148.14 47.1533L147.133 46.3652L148.14 45.5771L158.835 37.2119L136.492 19.7393L137.725 18.1631L160.459 35.9424L170.524 28.0703L159.871 19.7393L161.104 18.1631L172.148 26.8008L183.194 18.1631L184.427 19.7393L173.772 28.0703L183.839 35.9434L206.576 18.1631L207.191 18.9512ZM162.083 55.5176L172.148 63.3887L182.215 55.5166L172.149 47.6455L162.083 55.5176ZM150.379 46.3652L160.459 54.2471L170.526 46.375L170.514 46.3652L170.526 46.3545L160.459 38.4824L150.379 46.3652ZM173.772 46.3545L173.786 46.3652L173.772 46.375L183.839 54.2471L193.918 46.3652L183.839 38.4824L173.772 46.3545ZM162.083 37.2119L172.149 45.084L182.215 37.2129L172.148 29.3408L162.083 37.2119Z" fill="currentColor"/>
18
+ <path d="M236.522 21.6094L237.353 22.168L214.376 56.3223L225.703 73.1602L226.078 73.7188L225.703 74.2773L214.376 91.1143L237.353 125.27L236.522 125.828L235.693 126.387L213.171 92.9062L202.686 108.493L213.972 125.27L212.312 126.387L201.479 110.285L190.648 126.387L188.988 125.27L200.273 108.492L189.79 92.9082L167.27 126.387L165.609 125.27L188.584 91.1162L177.257 74.2773L176.882 73.7188L177.257 73.1602L188.584 56.3203L165.609 22.168L167.27 21.0508L189.79 54.5283L200.273 38.9443L188.988 22.168L190.648 21.0508L201.479 37.1514L212.312 21.0508L213.972 22.168L202.686 38.9434L213.171 54.5303L235.693 21.0508L236.522 21.6094ZM190.995 91.1162L201.479 106.7L211.965 91.1133L201.481 75.5293L190.995 91.1162ZM179.291 73.7188L189.79 89.3242L200.275 73.7373L200.263 73.7188L200.275 73.6992L189.79 58.1123L179.291 73.7188ZM202.686 73.6992L202.699 73.7188L202.686 73.7373L213.17 89.3223L223.667 73.7188L213.17 58.1143L202.686 73.6992ZM190.995 56.3203L201.481 71.9072L211.965 56.3232L201.479 40.7363L190.995 56.3203Z" fill="currentColor"/>
19
+ <path d="M236.522 130.609L237.353 131.168L214.376 165.322L225.703 182.16L226.078 182.719L225.703 183.277L214.376 200.114L237.353 234.27L236.522 234.828L235.693 235.387L213.171 201.906L202.686 217.493L213.972 234.27L212.312 235.387L201.479 219.285L190.648 235.387L188.988 234.27L200.273 217.492L189.79 201.908L167.27 235.387L165.609 234.27L188.584 200.116L177.257 183.277L176.882 182.719L177.257 182.16L188.584 165.32L165.609 131.168L167.27 130.051L189.79 163.528L200.273 147.944L188.988 131.168L190.648 130.051L201.479 146.151L212.312 130.051L213.972 131.168L202.686 147.943L213.171 163.53L235.693 130.051L236.522 130.609ZM190.995 200.116L201.479 215.7L211.965 200.113L201.481 184.529L190.995 200.116ZM179.291 182.719L189.79 198.324L200.275 182.737L200.263 182.719L200.275 182.699L189.79 167.112L179.291 182.719ZM202.686 182.699L202.699 182.719L202.686 182.737L213.17 198.322L223.667 182.719L213.17 167.114L202.686 182.699ZM190.995 165.32L201.481 180.907L211.965 165.323L201.479 149.736L190.995 165.32Z" fill="currentColor"/>
20
+ </svg>
@@ -0,0 +1,38 @@
1
+ <svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M64.3697 16L28.543 64L64.3697 112" stroke="currentColor" stroke-width="6"/>
3
+ <path d="M88.0025 16L52.1758 64L88.0025 112" stroke="currentColor" stroke-width="6"/>
4
+ <path d="M39.6303 16L75.457 64L39.6303 112" stroke="currentColor" stroke-width="6"/>
5
+ <path d="M15.9975 16L51.8242 64L15.9975 112" stroke="currentColor" stroke-width="6"/>
6
+ <path d="M140.37 16L104.543 64L140.37 112" stroke="currentColor" stroke-width="6"/>
7
+ <path d="M164.003 16L128.176 64L164.003 112" stroke="currentColor" stroke-width="6"/>
8
+ <path d="M115.63 16L151.457 64L115.63 112" stroke="currentColor" stroke-width="6"/>
9
+ <path d="M91.9975 16L127.824 64L91.9975 112" stroke="currentColor" stroke-width="6"/>
10
+ <path d="M216.37 16L180.543 64L216.37 112" stroke="currentColor" stroke-width="6"/>
11
+ <path d="M240.003 16L204.176 64L240.003 112" stroke="currentColor" stroke-width="6"/>
12
+ <path d="M191.63 16L227.457 64L191.63 112" stroke="currentColor" stroke-width="6"/>
13
+ <path d="M167.997 16L203.824 64L167.997 112" stroke="currentColor" stroke-width="6"/>
14
+ <path d="M64.3697 80L28.543 128L64.3697 176" stroke="currentColor" stroke-width="6"/>
15
+ <path d="M88.0025 80L52.1758 128L88.0025 176" stroke="currentColor" stroke-width="6"/>
16
+ <path d="M39.6303 80L75.457 128L39.6303 176" stroke="currentColor" stroke-width="6"/>
17
+ <path d="M15.9975 80L51.8242 128L15.9975 176" stroke="currentColor" stroke-width="6"/>
18
+ <path d="M140.37 80L104.543 128L140.37 176" stroke="currentColor" stroke-width="6"/>
19
+ <path d="M164.003 80L128.176 128L164.003 176" stroke="currentColor" stroke-width="6"/>
20
+ <path d="M115.63 80L151.457 128L115.63 176" stroke="currentColor" stroke-width="6"/>
21
+ <path d="M91.9975 80L127.824 128L91.9975 176" stroke="currentColor" stroke-width="6"/>
22
+ <path d="M216.37 80L180.543 128L216.37 176" stroke="currentColor" stroke-width="6"/>
23
+ <path d="M240.003 80L204.176 128L240.003 176" stroke="currentColor" stroke-width="6"/>
24
+ <path d="M191.63 80L227.457 128L191.63 176" stroke="currentColor" stroke-width="6"/>
25
+ <path d="M167.997 80L203.824 128L167.997 176" stroke="currentColor" stroke-width="6"/>
26
+ <path d="M64.3697 144L28.543 192L64.3697 240" stroke="currentColor" stroke-width="6"/>
27
+ <path d="M88.0025 144L52.1758 192L88.0025 240" stroke="currentColor" stroke-width="6"/>
28
+ <path d="M39.6303 144L75.457 192L39.6303 240" stroke="currentColor" stroke-width="6"/>
29
+ <path d="M15.9975 144L51.8242 192L15.9975 240" stroke="currentColor" stroke-width="6"/>
30
+ <path d="M140.37 144L104.543 192L140.37 240" stroke="currentColor" stroke-width="6"/>
31
+ <path d="M164.003 144L128.176 192L164.003 240" stroke="currentColor" stroke-width="6"/>
32
+ <path d="M115.63 144L151.457 192L115.63 240" stroke="currentColor" stroke-width="6"/>
33
+ <path d="M91.9975 144L127.824 192L91.9975 240" stroke="currentColor" stroke-width="6"/>
34
+ <path d="M216.37 144L180.543 192L216.37 240" stroke="currentColor" stroke-width="6"/>
35
+ <path d="M240.003 144L204.176 192L240.003 240" stroke="currentColor" stroke-width="6"/>
36
+ <path d="M191.63 144L227.457 192L191.63 240" stroke="currentColor" stroke-width="6"/>
37
+ <path d="M167.997 144L203.824 192L167.997 240" stroke="currentColor" stroke-width="6"/>
38
+ </svg>