@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,58 @@
1
+ <svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="23.5755" height="23.5755" transform="matrix(0.791781 -0.610805 0.791781 0.610805 146.668 44.8)" stroke="currentColor" stroke-width="2"/>
3
+ <path d="M174.668 23.2L146.668 44.8L174.668 66.3999" stroke="currentColor" stroke-width="2"/>
4
+ <rect width="47.1442" height="47.1478" transform="matrix(0.791781 -0.610805 0.791781 0.610805 128.004 44.802)" stroke="currentColor" stroke-width="2"/>
5
+ <path d="M137.333 37.6L146.667 44.8L137.333 52" stroke="currentColor" stroke-width="2"/>
6
+ <rect width="23.5755" height="23.5755" transform="matrix(-0.791781 0.610805 -0.791781 -0.610805 221.332 44.8)" stroke="currentColor" stroke-width="2"/>
7
+ <path d="M193.332 66.4001L221.332 44.8001L193.332 23.2001" stroke="currentColor" stroke-width="2"/>
8
+ <rect width="47.1442" height="47.1478" transform="matrix(-0.791781 0.610805 -0.791781 -0.610805 239.996 44.7981)" stroke="currentColor" stroke-width="2"/>
9
+ <path d="M230.667 52L221.333 44.8L230.667 37.6" stroke="currentColor" stroke-width="2"/>
10
+ <rect width="23.5755" height="23.5755" transform="matrix(0.791781 -0.610805 0.791781 0.610805 34.668 44.8)" stroke="currentColor" stroke-width="2"/>
11
+ <path d="M62.668 23.2L34.6681 44.8L62.668 66.3999" stroke="currentColor" stroke-width="2"/>
12
+ <rect width="47.1442" height="47.1478" transform="matrix(0.791781 -0.610805 0.791781 0.610805 16.0039 44.802)" stroke="currentColor" stroke-width="2"/>
13
+ <path d="M25.3333 37.6L34.6666 44.8L25.3333 52" stroke="currentColor" stroke-width="2"/>
14
+ <rect width="23.5755" height="23.5755" transform="matrix(-0.791781 0.610805 -0.791781 -0.610805 109.332 44.8)" stroke="currentColor" stroke-width="2"/>
15
+ <path d="M81.332 66.4001L109.332 44.8001L81.332 23.2001" stroke="currentColor" stroke-width="2"/>
16
+ <rect width="47.1442" height="47.1478" transform="matrix(-0.791781 0.610805 -0.791781 -0.610805 127.996 44.7981)" stroke="currentColor" stroke-width="2"/>
17
+ <path d="M118.667 52L109.333 44.8L118.667 37.6" stroke="currentColor" stroke-width="2"/>
18
+ <rect width="40.0141" height="40.0141" transform="matrix(0.933001 -0.359873 0.933001 0.359873 53.332 86.4001)" stroke="currentColor" stroke-width="2"/>
19
+ <path d="M109.332 64.8L53.3322 86.4001L109.332 108" stroke="currentColor" stroke-width="2"/>
20
+ <rect width="80.0169" height="80.0228" transform="matrix(0.933001 -0.359873 0.933001 0.359873 16.0039 86.4021)" stroke="currentColor" stroke-width="2"/>
21
+ <path d="M34.6666 79.2001L53.3332 86.4001L34.6666 93.6001" stroke="currentColor" stroke-width="2"/>
22
+ <rect width="40.0141" height="40.0141" transform="matrix(-0.933001 0.359873 -0.933001 -0.359873 202.668 86.4001)" stroke="currentColor" stroke-width="2"/>
23
+ <path d="M146.668 108L202.668 86.4002L146.668 64.8002" stroke="currentColor" stroke-width="2"/>
24
+ <rect width="80.0169" height="80.0228" transform="matrix(-0.933001 0.359873 -0.933001 -0.359873 239.996 86.3982)" stroke="currentColor" stroke-width="2"/>
25
+ <path d="M221.333 93.6001L202.667 86.4001L221.333 79.2001" stroke="currentColor" stroke-width="2"/>
26
+ <rect width="40.0141" height="40.0141" transform="matrix(0.933001 -0.359873 0.933001 0.359873 53.332 128)" stroke="currentColor" stroke-width="2"/>
27
+ <path d="M109.332 106.4L53.3322 128L109.332 149.6" stroke="currentColor" stroke-width="2"/>
28
+ <rect width="80.0169" height="80.0228" transform="matrix(0.933001 -0.359873 0.933001 0.359873 16.0039 128.002)" stroke="currentColor" stroke-width="2"/>
29
+ <path d="M34.6666 120.8L53.3332 128L34.6666 135.2" stroke="currentColor" stroke-width="2"/>
30
+ <rect width="40.0141" height="40.0141" transform="matrix(-0.933001 0.359873 -0.933001 -0.359873 202.668 128)" stroke="currentColor" stroke-width="2"/>
31
+ <path d="M146.668 149.6L202.668 128L146.668 106.4" stroke="currentColor" stroke-width="2"/>
32
+ <rect width="80.0169" height="80.0228" transform="matrix(-0.933001 0.359873 -0.933001 -0.359873 239.996 127.998)" stroke="currentColor" stroke-width="2"/>
33
+ <path d="M221.333 135.2L202.667 128L221.333 120.8" stroke="currentColor" stroke-width="2"/>
34
+ <rect width="40.0141" height="40.0141" transform="matrix(0.933001 -0.359873 0.933001 0.359873 53.332 169.6)" stroke="currentColor" stroke-width="2"/>
35
+ <path d="M109.332 148L53.3322 169.6L109.332 191.2" stroke="currentColor" stroke-width="2"/>
36
+ <rect width="80.0169" height="80.0228" transform="matrix(0.933001 -0.359873 0.933001 0.359873 16.0039 169.602)" stroke="currentColor" stroke-width="2"/>
37
+ <path d="M34.6666 162.4L53.3332 169.6L34.6666 176.8" stroke="currentColor" stroke-width="2"/>
38
+ <rect width="40.0141" height="40.0141" transform="matrix(-0.933001 0.359873 -0.933001 -0.359873 202.668 169.6)" stroke="currentColor" stroke-width="2"/>
39
+ <path d="M146.668 191.2L202.668 169.6L146.668 148" stroke="currentColor" stroke-width="2"/>
40
+ <rect width="80.0169" height="80.0228" transform="matrix(-0.933001 0.359873 -0.933001 -0.359873 239.996 169.598)" stroke="currentColor" stroke-width="2"/>
41
+ <path d="M221.333 176.8L202.667 169.6L221.333 162.4" stroke="currentColor" stroke-width="2"/>
42
+ <rect width="23.5755" height="23.5755" transform="matrix(0.791781 -0.610805 0.791781 0.610805 146.668 211.2)" stroke="currentColor" stroke-width="2"/>
43
+ <path d="M174.668 189.6L146.668 211.2L174.668 232.8" stroke="currentColor" stroke-width="2"/>
44
+ <rect width="47.1443" height="47.1478" transform="matrix(0.791781 -0.610805 0.791781 0.610805 128.004 211.202)" stroke="currentColor" stroke-width="2"/>
45
+ <path d="M137.333 204L146.667 211.2L137.333 218.4" stroke="currentColor" stroke-width="2"/>
46
+ <rect width="23.5755" height="23.5755" transform="matrix(-0.791781 0.610805 -0.791781 -0.610805 221.332 211.2)" stroke="currentColor" stroke-width="2"/>
47
+ <path d="M193.332 232.8L221.332 211.2L193.332 189.6" stroke="currentColor" stroke-width="2"/>
48
+ <rect width="47.1443" height="47.1478" transform="matrix(-0.791781 0.610805 -0.791781 -0.610805 239.996 211.198)" stroke="currentColor" stroke-width="2"/>
49
+ <path d="M230.667 218.4L221.333 211.2L230.667 204" stroke="currentColor" stroke-width="2"/>
50
+ <rect width="23.5755" height="23.5755" transform="matrix(0.791781 -0.610805 0.791781 0.610805 34.668 211.2)" stroke="currentColor" stroke-width="2"/>
51
+ <path d="M62.668 189.6L34.6681 211.2L62.668 232.8" stroke="currentColor" stroke-width="2"/>
52
+ <rect width="47.1443" height="47.1478" transform="matrix(0.791781 -0.610805 0.791781 0.610805 16.0039 211.202)" stroke="currentColor" stroke-width="2"/>
53
+ <path d="M25.3333 204L34.6666 211.2L25.3333 218.4" stroke="currentColor" stroke-width="2"/>
54
+ <rect width="23.5755" height="23.5755" transform="matrix(-0.791781 0.610805 -0.791781 -0.610805 109.332 211.2)" stroke="currentColor" stroke-width="2"/>
55
+ <path d="M81.332 232.8L109.332 211.2L81.332 189.6" stroke="currentColor" stroke-width="2"/>
56
+ <rect width="47.1443" height="47.1478" transform="matrix(-0.791781 0.610805 -0.791781 -0.610805 127.996 211.198)" stroke="currentColor" stroke-width="2"/>
57
+ <path d="M118.667 218.4L109.333 211.2L118.667 204" stroke="currentColor" stroke-width="2"/>
58
+ </svg>
@@ -0,0 +1,48 @@
1
+ <svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="25.6019" height="25.6019" transform="matrix(0.590233 -0.807233 0.590233 0.807233 164.441 57.3333)" stroke="currentColor" stroke-width="2"/>
3
+ <path d="M187.109 26.3333L164.443 57.3332L187.109 88.3332" stroke="currentColor" stroke-width="2"/>
4
+ <rect width="51.1965" height="51.2003" transform="matrix(0.590233 -0.807233 0.590233 0.807233 149.336 57.3362)" stroke="currentColor" stroke-width="2"/>
5
+ <path d="M156.888 46.9999L164.443 57.3333L156.888 67.6666" stroke="currentColor" stroke-width="2"/>
6
+ <rect width="25.6019" height="25.6019" transform="matrix(-0.590233 0.807233 -0.590233 -0.807233 224.891 57.3333)" stroke="currentColor" stroke-width="2"/>
7
+ <path d="M202.223 88.3333L224.889 57.3333L202.223 26.3333" stroke="currentColor" stroke-width="2"/>
8
+ <rect width="51.1965" height="51.2003" transform="matrix(-0.590233 0.807233 -0.590233 -0.807233 239.996 57.3303)" stroke="currentColor" stroke-width="2"/>
9
+ <path d="M232.444 67.6666L224.889 57.3333L232.444 46.9999" stroke="currentColor" stroke-width="2"/>
10
+ <path d="M173.329 16L127.996 57.3333L173.329 98.6667" stroke="currentColor" stroke-width="2"/>
11
+ <path d="M82.6628 16L127.996 57.3333L82.6628 98.6667" stroke="currentColor" stroke-width="2"/>
12
+ <rect width="25.6019" height="25.6019" transform="matrix(0.590233 -0.807233 0.590233 0.807233 31.1094 57.3333)" stroke="currentColor" stroke-width="2"/>
13
+ <path d="M53.7773 26.3333L31.1108 57.3332L53.7773 88.3332" stroke="currentColor" stroke-width="2"/>
14
+ <rect width="51.1965" height="51.2003" transform="matrix(0.590233 -0.807233 0.590233 0.807233 16.0039 57.3362)" stroke="currentColor" stroke-width="2"/>
15
+ <path d="M23.5555 46.9999L31.1111 57.3333L23.5555 67.6666" stroke="currentColor" stroke-width="2"/>
16
+ <rect width="25.6019" height="25.6019" transform="matrix(-0.590233 0.807233 -0.590233 -0.807233 91.5586 57.3333)" stroke="currentColor" stroke-width="2"/>
17
+ <path d="M68.8906 88.3333L91.5572 57.3333L68.8906 26.3333" stroke="currentColor" stroke-width="2"/>
18
+ <rect width="51.1965" height="51.2003" transform="matrix(-0.590233 0.807233 -0.590233 -0.807233 106.664 57.3303)" stroke="currentColor" stroke-width="2"/>
19
+ <path d="M99.1124 67.6666L91.5569 57.3333L99.1124 46.9999" stroke="currentColor" stroke-width="2"/>
20
+ <path d="M149.753 87.575L237.609 128L149.753 168.425" stroke="currentColor" stroke-width="2"/>
21
+ <rect width="25.6019" height="25.6019" transform="matrix(0.590233 -0.807233 0.590233 0.807233 97.7773 128)" stroke="currentColor" stroke-width="2"/>
22
+ <path d="M120.445 96.9998L97.7787 128L120.445 159" stroke="currentColor" stroke-width="2"/>
23
+ <rect width="51.1965" height="51.2003" transform="matrix(0.590233 -0.807233 0.590233 0.807233 82.6719 128.003)" stroke="currentColor" stroke-width="2"/>
24
+ <path d="M90.2235 117.666L97.779 128L90.2235 138.333" stroke="currentColor" stroke-width="2"/>
25
+ <rect width="25.6019" height="25.6019" transform="matrix(-0.590233 0.807233 -0.590233 -0.807233 158.227 128)" stroke="currentColor" stroke-width="2"/>
26
+ <path d="M135.559 159L158.225 128L135.559 96.9998" stroke="currentColor" stroke-width="2"/>
27
+ <rect width="51.1965" height="51.2003" transform="matrix(-0.590233 0.807233 -0.590233 -0.807233 173.332 127.997)" stroke="currentColor" stroke-width="2"/>
28
+ <path d="M165.78 138.333L158.225 128L165.78 117.666" stroke="currentColor" stroke-width="2"/>
29
+ <path d="M106.247 87.575L18.3906 128L106.247 168.425" stroke="currentColor" stroke-width="2"/>
30
+ <rect width="25.6019" height="25.6019" transform="matrix(0.590233 -0.807233 0.590233 0.807233 164.441 198.667)" stroke="currentColor" stroke-width="2"/>
31
+ <path d="M187.109 167.667L164.443 198.667L187.109 229.667" stroke="currentColor" stroke-width="2"/>
32
+ <rect width="51.1965" height="51.2003" transform="matrix(0.590233 -0.807233 0.590233 0.807233 149.336 198.67)" stroke="currentColor" stroke-width="2"/>
33
+ <path d="M156.888 188.333L164.443 198.667L156.888 209" stroke="currentColor" stroke-width="2"/>
34
+ <rect width="25.6019" height="25.6019" transform="matrix(-0.590233 0.807233 -0.590233 -0.807233 224.891 198.667)" stroke="currentColor" stroke-width="2"/>
35
+ <path d="M202.223 229.667L224.889 198.666L202.223 167.666" stroke="currentColor" stroke-width="2"/>
36
+ <rect width="51.1965" height="51.2003" transform="matrix(-0.590233 0.807233 -0.590233 -0.807233 239.996 198.663)" stroke="currentColor" stroke-width="2"/>
37
+ <path d="M232.444 209L224.889 198.667L232.444 188.333" stroke="currentColor" stroke-width="2"/>
38
+ <path d="M173.333 157.333L128 198.667L173.333 240" stroke="currentColor" stroke-width="2"/>
39
+ <path d="M82.6667 157.333L128 198.667L82.6667 240" stroke="currentColor" stroke-width="2"/>
40
+ <rect width="25.6019" height="25.6019" transform="matrix(0.590233 -0.807233 0.590233 0.807233 31.1094 198.667)" stroke="currentColor" stroke-width="2"/>
41
+ <path d="M53.7773 167.667L31.1108 198.667L53.7773 229.667" stroke="currentColor" stroke-width="2"/>
42
+ <rect width="51.1965" height="51.2003" transform="matrix(0.590233 -0.807233 0.590233 0.807233 16.0039 198.67)" stroke="currentColor" stroke-width="2"/>
43
+ <path d="M23.5555 188.333L31.1111 198.667L23.5555 209" stroke="currentColor" stroke-width="2"/>
44
+ <rect width="25.6019" height="25.6019" transform="matrix(-0.590233 0.807233 -0.590233 -0.807233 91.5586 198.667)" stroke="currentColor" stroke-width="2"/>
45
+ <path d="M68.8906 229.667L91.5572 198.667L68.8906 167.666" stroke="currentColor" stroke-width="2"/>
46
+ <rect width="51.1965" height="51.2003" transform="matrix(-0.590233 0.807233 -0.590233 -0.807233 106.664 198.663)" stroke="currentColor" stroke-width="2"/>
47
+ <path d="M99.1124 209L91.5569 198.667L99.1124 188.333" stroke="currentColor" stroke-width="2"/>
48
+ </svg>
@@ -0,0 +1,90 @@
1
+ <svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="232.332" y="44.7998" width="15.3333" height="19.2" transform="rotate(180 232.332 44.7998)" stroke="currentColor" stroke-width="4"/>
3
+ <path d="M209.332 44.7998H232.332V15.9998" stroke="currentColor" stroke-width="4"/>
4
+ <rect x="240" y="54.3975" width="30.6623" height="38.3974" transform="rotate(180 240 54.3975)" stroke="currentColor" stroke-width="4"/>
5
+ <path d="M232.333 54.3999V44.7999H240" stroke="currentColor" stroke-width="4"/>
6
+ <rect x="178.336" y="25.6001" width="15.3333" height="19.2" stroke="currentColor" stroke-width="4"/>
7
+ <path d="M201.336 25.6001H178.336V54.4001" stroke="currentColor" stroke-width="4"/>
8
+ <rect x="170.668" y="16.0024" width="30.6623" height="38.3974" stroke="currentColor" stroke-width="4"/>
9
+ <path d="M178.335 16V25.6H170.668" stroke="currentColor" stroke-width="4"/>
10
+ <rect x="155" y="44.7998" width="15.3333" height="19.2" transform="rotate(180 155 44.7998)" stroke="currentColor" stroke-width="4"/>
11
+ <path d="M132 44.7998H155V15.9998" stroke="currentColor" stroke-width="4"/>
12
+ <rect x="162.668" y="54.3975" width="30.6623" height="38.3974" transform="rotate(180 162.668 54.3975)" stroke="currentColor" stroke-width="4"/>
13
+ <path d="M155.001 54.3999V44.7999H162.668" stroke="currentColor" stroke-width="4"/>
14
+ <rect x="116.332" y="44.7998" width="15.3333" height="19.2" transform="rotate(180 116.332 44.7998)" stroke="currentColor" stroke-width="4"/>
15
+ <path d="M93.332 44.7998H116.332V15.9998" stroke="currentColor" stroke-width="4"/>
16
+ <rect x="124" y="54.3975" width="30.6623" height="38.3974" transform="rotate(180 124 54.3975)" stroke="currentColor" stroke-width="4"/>
17
+ <path d="M116.333 54.3999V44.7999H124" stroke="currentColor" stroke-width="4"/>
18
+ <rect x="62.3359" y="25.6001" width="15.3333" height="19.2" stroke="currentColor" stroke-width="4"/>
19
+ <path d="M85.3359 25.6001H62.3359V54.4001" stroke="currentColor" stroke-width="4"/>
20
+ <rect x="54.668" y="16.0024" width="30.6623" height="38.3974" stroke="currentColor" stroke-width="4"/>
21
+ <path d="M62.3346 16V25.6H54.668" stroke="currentColor" stroke-width="4"/>
22
+ <rect x="39" y="44.7998" width="15.3333" height="19.2" transform="rotate(180 39 44.7998)" stroke="currentColor" stroke-width="4"/>
23
+ <path d="M16 44.7998H39V15.9998" stroke="currentColor" stroke-width="4"/>
24
+ <rect x="46.668" y="54.3975" width="30.6623" height="38.3974" transform="rotate(180 46.668 54.3975)" stroke="currentColor" stroke-width="4"/>
25
+ <path d="M39.0013 54.3999V44.7999H46.668" stroke="currentColor" stroke-width="4"/>
26
+ <rect x="22.2852" y="72.0002" width="12.5714" height="19.2" stroke="currentColor" stroke-width="4"/>
27
+ <path d="M41.1445 72.0002H22.2874V100.8" stroke="currentColor" stroke-width="4"/>
28
+ <rect x="16" y="62.4026" width="25.1393" height="38.3974" stroke="currentColor" stroke-width="4"/>
29
+ <path d="M22.2857 62.4001V72.0001H16" stroke="currentColor" stroke-width="4"/>
30
+ <rect x="55.4297" y="72.0002" width="12.5714" height="19.2" stroke="currentColor" stroke-width="4"/>
31
+ <path d="M74.2891 72.0002H55.4319V100.8" stroke="currentColor" stroke-width="4"/>
32
+ <rect x="49.1445" y="62.4026" width="25.1393" height="38.3974" stroke="currentColor" stroke-width="4"/>
33
+ <path d="M55.4302 62.4001V72.0001H49.1445" stroke="currentColor" stroke-width="4"/>
34
+ <rect x="88.5703" y="72.0002" width="12.5714" height="19.2" stroke="currentColor" stroke-width="4"/>
35
+ <path d="M107.43 72.0002H88.5725V100.8" stroke="currentColor" stroke-width="4"/>
36
+ <rect x="82.2852" y="62.4026" width="25.1393" height="38.3974" stroke="currentColor" stroke-width="4"/>
37
+ <path d="M88.5709 62.4001V72.0001H82.2852" stroke="currentColor" stroke-width="4"/>
38
+ <rect x="134.285" y="91.2" width="12.5714" height="19.2" transform="rotate(180 134.285 91.2)" stroke="currentColor" stroke-width="4"/>
39
+ <path d="M115.426 91.2H134.283V62.4" stroke="currentColor" stroke-width="4"/>
40
+ <rect x="140.57" y="100.798" width="25.1393" height="38.3974" transform="rotate(180 140.57 100.798)" stroke="currentColor" stroke-width="4"/>
41
+ <path d="M134.285 100.8V91.2H140.57" stroke="currentColor" stroke-width="4"/>
42
+ <rect x="154.855" y="72.0002" width="12.5714" height="19.2" stroke="currentColor" stroke-width="4"/>
43
+ <path d="M173.715 72.0002H154.858V100.8" stroke="currentColor" stroke-width="4"/>
44
+ <rect x="148.57" y="62.4026" width="25.1393" height="38.3974" stroke="currentColor" stroke-width="4"/>
45
+ <path d="M154.856 62.4001V72.0001H148.57" stroke="currentColor" stroke-width="4"/>
46
+ <rect x="188" y="72.0002" width="12.5714" height="19.2" stroke="currentColor" stroke-width="4"/>
47
+ <path d="M206.859 72.0002H188.002V100.8" stroke="currentColor" stroke-width="4"/>
48
+ <rect x="181.715" y="62.4026" width="25.1393" height="38.3974" stroke="currentColor" stroke-width="4"/>
49
+ <path d="M188.001 62.4001V72.0001H181.715" stroke="currentColor" stroke-width="4"/>
50
+ <rect x="233.715" y="91.2" width="12.5714" height="19.2" transform="rotate(180 233.715 91.2)" stroke="currentColor" stroke-width="4"/>
51
+ <path d="M214.855 91.2H233.713V62.4" stroke="currentColor" stroke-width="4"/>
52
+ <rect x="240" y="100.798" width="25.1393" height="38.3974" transform="rotate(180 240 100.798)" stroke="currentColor" stroke-width="4"/>
53
+ <path d="M233.714 100.8V91.2H240" stroke="currentColor" stroke-width="4"/>
54
+ <rect x="44.7969" y="137.6" width="19.2" height="19.2" transform="rotate(180 44.7969 137.6)" stroke="currentColor" stroke-width="4"/>
55
+ <path d="M16 137.6H44.8V108.8" stroke="currentColor" stroke-width="4"/>
56
+ <rect x="54.3984" y="147.198" width="38.3946" height="38.3974" transform="rotate(180 54.3984 147.198)" stroke="currentColor" stroke-width="4"/>
57
+ <path d="M44.7984 147.2V137.6H54.3984" stroke="currentColor" stroke-width="4"/>
58
+ <rect x="72" y="118.4" width="19.2" height="19.2" stroke="currentColor" stroke-width="4"/>
59
+ <path d="M100.797 118.4H71.9969V147.2" stroke="currentColor" stroke-width="4"/>
60
+ <rect x="62.3984" y="108.802" width="38.3946" height="38.3974" stroke="currentColor" stroke-width="4"/>
61
+ <path d="M71.9984 108.8V118.4H62.3984" stroke="currentColor" stroke-width="4"/>
62
+ <rect x="137.598" y="137.6" width="19.2" height="19.2" transform="rotate(180 137.598 137.6)" stroke="currentColor" stroke-width="4"/>
63
+ <path d="M108.801 137.6H137.601V108.8" stroke="currentColor" stroke-width="4"/>
64
+ <rect x="147.199" y="147.198" width="38.3946" height="38.3974" transform="rotate(180 147.199 147.198)" stroke="currentColor" stroke-width="4"/>
65
+ <path d="M137.599 147.2V137.6H147.199" stroke="currentColor" stroke-width="4"/>
66
+ <rect x="164.801" y="118.4" width="19.2" height="19.2" stroke="currentColor" stroke-width="4"/>
67
+ <path d="M193.598 118.4H164.798V147.2" stroke="currentColor" stroke-width="4"/>
68
+ <rect x="155.199" y="108.802" width="38.3946" height="38.3974" stroke="currentColor" stroke-width="4"/>
69
+ <path d="M164.799 108.8V118.4H155.199" stroke="currentColor" stroke-width="4"/>
70
+ <rect x="230.398" y="137.6" width="19.2" height="19.2" transform="rotate(180 230.398 137.6)" stroke="currentColor" stroke-width="4"/>
71
+ <path d="M201.602 137.6H230.402V108.8" stroke="currentColor" stroke-width="4"/>
72
+ <rect x="240" y="147.198" width="38.3946" height="38.3974" transform="rotate(180 240 147.198)" stroke="currentColor" stroke-width="4"/>
73
+ <path d="M230.4 147.2V137.6H240" stroke="currentColor" stroke-width="4"/>
74
+ <rect width="34.6667" height="19.2" transform="matrix(1 0 0 -1 188 184)" stroke="currentColor" stroke-width="4"/>
75
+ <path d="M240 184H188V155.2" stroke="currentColor" stroke-width="4"/>
76
+ <rect width="69.3236" height="38.3974" transform="matrix(1 0 0 -1 170.668 193.598)" stroke="currentColor" stroke-width="4"/>
77
+ <path d="M188.001 193.6V184H170.668" stroke="currentColor" stroke-width="4"/>
78
+ <rect width="34.6667" height="19.2" transform="matrix(-1 0 0 1 145.336 164.8)" stroke="currentColor" stroke-width="4"/>
79
+ <path d="M93.3359 164.8H145.336V193.6" stroke="currentColor" stroke-width="4"/>
80
+ <rect width="69.3236" height="38.3974" transform="matrix(-1 0 0 1 162.668 155.203)" stroke="currentColor" stroke-width="4"/>
81
+ <path d="M145.335 155.2V164.8H162.668" stroke="currentColor" stroke-width="4"/>
82
+ <rect width="34.6667" height="19.2" transform="matrix(-1 0 0 1 68 164.8)" stroke="currentColor" stroke-width="4"/>
83
+ <path d="M16 164.8H68V193.6" stroke="currentColor" stroke-width="4"/>
84
+ <rect width="69.3236" height="38.3974" transform="matrix(-1 0 0 1 85.332 155.203)" stroke="currentColor" stroke-width="4"/>
85
+ <path d="M67.9987 155.2V164.8H85.332" stroke="currentColor" stroke-width="4"/>
86
+ <rect width="112" height="19.2" transform="matrix(1 0 0 -1 72 230.4)" stroke="currentColor" stroke-width="4"/>
87
+ <path d="M240 230.4H72V201.6" stroke="currentColor" stroke-width="4"/>
88
+ <rect width="223.968" height="38.3974" transform="matrix(1 0 0 -1 16 239.998)" stroke="currentColor" stroke-width="4"/>
89
+ <path d="M72 240V230.4H16" stroke="currentColor" stroke-width="4"/>
90
+ </svg>
@@ -0,0 +1,194 @@
1
+ <svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="214.707" y="29.3247" width="9.95671" height="24.6753" stroke="currentColor" stroke-width="0.5"/>
3
+ <path d="M229.645 29.3247H214.709V66.3377" stroke="currentColor" stroke-width="0.5"/>
4
+ <rect x="209.73" y="16.99" width="19.9106" height="49.3474" stroke="currentColor" stroke-width="0.5"/>
5
+ <path d="M214.709 16.9871V29.3247H209.73" stroke="currentColor" stroke-width="0.5"/>
6
+ <rect x="234.625" y="78.6753" width="9.95671" height="24.6753" transform="rotate(180 234.625 78.6753)" stroke="currentColor" stroke-width="0.5"/>
7
+ <path d="M219.688 78.6753H234.623V41.6623" stroke="currentColor" stroke-width="0.5"/>
8
+ <rect x="239.602" y="91.01" width="19.9106" height="49.3474" transform="rotate(180 239.602 91.01)" stroke="currentColor" stroke-width="0.5"/>
9
+ <path d="M234.623 91.0129V78.6753H239.602" stroke="currentColor" stroke-width="0.5"/>
10
+ <rect x="214.707" y="89.3247" width="9.95671" height="24.6753" stroke="currentColor" stroke-width="0.5"/>
11
+ <path d="M229.645 89.3247H214.709V126.338" stroke="currentColor" stroke-width="0.5"/>
12
+ <rect x="209.73" y="76.99" width="19.9106" height="49.3474" stroke="currentColor" stroke-width="0.5"/>
13
+ <path d="M214.709 76.9871V89.3247H209.73" stroke="currentColor" stroke-width="0.5"/>
14
+ <rect x="234.625" y="138.675" width="9.95671" height="24.6753" transform="rotate(180 234.625 138.675)" stroke="currentColor" stroke-width="0.5"/>
15
+ <path d="M219.688 138.675H234.623V101.662" stroke="currentColor" stroke-width="0.5"/>
16
+ <rect x="239.602" y="151.01" width="19.9106" height="49.3474" transform="rotate(180 239.602 151.01)" stroke="currentColor" stroke-width="0.5"/>
17
+ <path d="M234.623 151.013V138.675H239.602" stroke="currentColor" stroke-width="0.5"/>
18
+ <rect width="9.95671" height="24.6753" transform="matrix(1 0 0 -1 176.039 138.675)" stroke="currentColor" stroke-width="0.5"/>
19
+ <path d="M190.977 138.675H176.042V101.662" stroke="currentColor" stroke-width="0.5"/>
20
+ <rect width="19.9106" height="49.3474" transform="matrix(1 0 0 -1 171.062 151.01)" stroke="currentColor" stroke-width="0.5"/>
21
+ <path d="M176.041 151.013V138.675H171.062" stroke="currentColor" stroke-width="0.5"/>
22
+ <rect width="9.95671" height="24.6753" transform="matrix(-1 0 0 1 195.957 89.3247)" stroke="currentColor" stroke-width="0.5"/>
23
+ <path d="M181.02 89.3247H195.955V126.338" stroke="currentColor" stroke-width="0.5"/>
24
+ <rect width="19.9106" height="49.3474" transform="matrix(-1 0 0 1 200.934 76.99)" stroke="currentColor" stroke-width="0.5"/>
25
+ <path d="M195.955 76.9871V89.3247H200.934" stroke="currentColor" stroke-width="0.5"/>
26
+ <rect width="9.95671" height="24.6753" transform="matrix(1 0 0 -1 176.039 78.6753)" stroke="currentColor" stroke-width="0.5"/>
27
+ <path d="M190.977 78.6753H176.042V41.6623" stroke="currentColor" stroke-width="0.5"/>
28
+ <rect width="19.9106" height="49.3474" transform="matrix(1 0 0 -1 171.062 91.01)" stroke="currentColor" stroke-width="0.5"/>
29
+ <path d="M176.041 91.0129V78.6753H171.062" stroke="currentColor" stroke-width="0.5"/>
30
+ <rect width="9.95671" height="24.6753" transform="matrix(-1 0 0 1 195.957 29.3247)" stroke="currentColor" stroke-width="0.5"/>
31
+ <path d="M181.02 29.3247H195.955V66.3377" stroke="currentColor" stroke-width="0.5"/>
32
+ <rect width="19.9106" height="49.3474" transform="matrix(-1 0 0 1 200.934 16.99)" stroke="currentColor" stroke-width="0.5"/>
33
+ <path d="M195.955 16.9871V29.3247H200.934" stroke="currentColor" stroke-width="0.5"/>
34
+ <rect x="137.375" y="29.3247" width="9.95671" height="24.6753" stroke="currentColor" stroke-width="0.5"/>
35
+ <path d="M152.312 29.3247H137.377V66.3377" stroke="currentColor" stroke-width="0.5"/>
36
+ <rect x="132.398" y="16.99" width="19.9106" height="49.3474" stroke="currentColor" stroke-width="0.5"/>
37
+ <path d="M137.377 16.9871V29.3247H132.398" stroke="currentColor" stroke-width="0.5"/>
38
+ <rect x="157.293" y="78.6753" width="9.95671" height="24.6753" transform="rotate(180 157.293 78.6753)" stroke="currentColor" stroke-width="0.5"/>
39
+ <path d="M142.355 78.6753H157.291V41.6623" stroke="currentColor" stroke-width="0.5"/>
40
+ <rect x="162.27" y="91.01" width="19.9106" height="49.3474" transform="rotate(180 162.27 91.01)" stroke="currentColor" stroke-width="0.5"/>
41
+ <path d="M157.291 91.0129V78.6753H162.27" stroke="currentColor" stroke-width="0.5"/>
42
+ <rect x="137.375" y="89.3247" width="9.95671" height="24.6753" stroke="currentColor" stroke-width="0.5"/>
43
+ <path d="M152.312 89.3247H137.377V126.338" stroke="currentColor" stroke-width="0.5"/>
44
+ <rect x="132.398" y="76.99" width="19.9106" height="49.3474" stroke="currentColor" stroke-width="0.5"/>
45
+ <path d="M137.377 76.9871V89.3247H132.398" stroke="currentColor" stroke-width="0.5"/>
46
+ <rect x="157.293" y="138.675" width="9.95671" height="24.6753" transform="rotate(180 157.293 138.675)" stroke="currentColor" stroke-width="0.5"/>
47
+ <path d="M142.355 138.675H157.291V101.662" stroke="currentColor" stroke-width="0.5"/>
48
+ <rect x="162.27" y="151.01" width="19.9106" height="49.3474" transform="rotate(180 162.27 151.01)" stroke="currentColor" stroke-width="0.5"/>
49
+ <path d="M157.291 151.013V138.675H162.27" stroke="currentColor" stroke-width="0.5"/>
50
+ <rect width="9.95671" height="24.6753" transform="matrix(1 0 0 -1 98.707 138.675)" stroke="currentColor" stroke-width="0.5"/>
51
+ <path d="M113.645 138.675H98.7095V101.662" stroke="currentColor" stroke-width="0.5"/>
52
+ <rect width="19.9106" height="49.3474" transform="matrix(1 0 0 -1 93.7305 151.01)" stroke="currentColor" stroke-width="0.5"/>
53
+ <path d="M98.7088 151.013V138.675H93.7305" stroke="currentColor" stroke-width="0.5"/>
54
+ <rect width="9.95671" height="24.6753" transform="matrix(-1 0 0 1 118.625 89.3247)" stroke="currentColor" stroke-width="0.5"/>
55
+ <path d="M103.688 89.3247H118.623V126.338" stroke="currentColor" stroke-width="0.5"/>
56
+ <rect width="19.9106" height="49.3474" transform="matrix(-1 0 0 1 123.602 76.99)" stroke="currentColor" stroke-width="0.5"/>
57
+ <path d="M118.623 76.9871V89.3247H123.602" stroke="currentColor" stroke-width="0.5"/>
58
+ <rect width="9.95671" height="24.6753" transform="matrix(1 0 0 -1 98.707 78.6753)" stroke="currentColor" stroke-width="0.5"/>
59
+ <path d="M113.645 78.6753H98.7095V41.6623" stroke="currentColor" stroke-width="0.5"/>
60
+ <rect width="19.9106" height="49.3474" transform="matrix(1 0 0 -1 93.7305 91.01)" stroke="currentColor" stroke-width="0.5"/>
61
+ <path d="M98.7088 91.0129V78.6753H93.7305" stroke="currentColor" stroke-width="0.5"/>
62
+ <rect width="9.95671" height="24.6753" transform="matrix(-1 0 0 1 118.625 29.3247)" stroke="currentColor" stroke-width="0.5"/>
63
+ <path d="M103.688 29.3247H118.623V66.3377" stroke="currentColor" stroke-width="0.5"/>
64
+ <rect width="19.9106" height="49.3474" transform="matrix(-1 0 0 1 123.602 16.99)" stroke="currentColor" stroke-width="0.5"/>
65
+ <path d="M118.623 16.9871V29.3247H123.602" stroke="currentColor" stroke-width="0.5"/>
66
+ <rect x="60.0391" y="29.3247" width="9.95671" height="24.6753" stroke="currentColor" stroke-width="0.5"/>
67
+ <path d="M74.9766 29.3247H60.0415V66.3377" stroke="currentColor" stroke-width="0.5"/>
68
+ <rect x="55.0625" y="16.99" width="19.9106" height="49.3474" stroke="currentColor" stroke-width="0.5"/>
69
+ <path d="M60.0409 16.9871V29.3247H55.0625" stroke="currentColor" stroke-width="0.5"/>
70
+ <rect x="79.957" y="78.6753" width="9.95671" height="24.6753" transform="rotate(180 79.957 78.6753)" stroke="currentColor" stroke-width="0.5"/>
71
+ <path d="M65.0195 78.6753H79.9546V41.6623" stroke="currentColor" stroke-width="0.5"/>
72
+ <rect x="84.9336" y="91.01" width="19.9106" height="49.3474" transform="rotate(180 84.9336 91.01)" stroke="currentColor" stroke-width="0.5"/>
73
+ <path d="M79.9552 91.0129V78.6753H84.9336" stroke="currentColor" stroke-width="0.5"/>
74
+ <rect x="60.0391" y="89.3247" width="9.95671" height="24.6753" stroke="currentColor" stroke-width="0.5"/>
75
+ <path d="M74.9766 89.3247H60.0415V126.338" stroke="currentColor" stroke-width="0.5"/>
76
+ <rect x="55.0625" y="76.99" width="19.9106" height="49.3474" stroke="currentColor" stroke-width="0.5"/>
77
+ <path d="M60.0409 76.9871V89.3247H55.0625" stroke="currentColor" stroke-width="0.5"/>
78
+ <rect x="79.957" y="138.675" width="9.95671" height="24.6753" transform="rotate(180 79.957 138.675)" stroke="currentColor" stroke-width="0.5"/>
79
+ <path d="M65.0195 138.675H79.9546V101.662" stroke="currentColor" stroke-width="0.5"/>
80
+ <rect x="84.9336" y="151.01" width="19.9106" height="49.3474" transform="rotate(180 84.9336 151.01)" stroke="currentColor" stroke-width="0.5"/>
81
+ <path d="M79.9552 151.013V138.675H84.9336" stroke="currentColor" stroke-width="0.5"/>
82
+ <rect width="9.95671" height="24.6753" transform="matrix(1 0 0 -1 21.375 138.675)" stroke="currentColor" stroke-width="0.5"/>
83
+ <path d="M36.3125 138.675H21.3774V101.662" stroke="currentColor" stroke-width="0.5"/>
84
+ <rect width="19.9106" height="49.3474" transform="matrix(1 0 0 -1 16.3984 151.01)" stroke="currentColor" stroke-width="0.5"/>
85
+ <path d="M21.3768 151.013V138.675H16.3984" stroke="currentColor" stroke-width="0.5"/>
86
+ <rect width="9.95671" height="24.6753" transform="matrix(-1 0 0 1 41.293 89.3247)" stroke="currentColor" stroke-width="0.5"/>
87
+ <path d="M26.3555 89.3247H41.2905V126.338" stroke="currentColor" stroke-width="0.5"/>
88
+ <rect width="19.9106" height="49.3474" transform="matrix(-1 0 0 1 46.2695 76.99)" stroke="currentColor" stroke-width="0.5"/>
89
+ <path d="M41.2912 76.9871V89.3247H46.2695" stroke="currentColor" stroke-width="0.5"/>
90
+ <rect width="9.95671" height="24.6753" transform="matrix(1 0 0 -1 21.375 78.6753)" stroke="currentColor" stroke-width="0.5"/>
91
+ <path d="M36.3125 78.6753H21.3774V41.6623" stroke="currentColor" stroke-width="0.5"/>
92
+ <rect width="19.9106" height="49.3474" transform="matrix(1 0 0 -1 16.3984 91.01)" stroke="currentColor" stroke-width="0.5"/>
93
+ <path d="M21.3768 91.0129V78.6753H16.3984" stroke="currentColor" stroke-width="0.5"/>
94
+ <rect width="9.95671" height="24.6753" transform="matrix(-1 0 0 1 41.293 29.3247)" stroke="currentColor" stroke-width="0.5"/>
95
+ <path d="M26.3555 29.3247H41.2905V66.3377" stroke="currentColor" stroke-width="0.5"/>
96
+ <rect width="19.9106" height="49.3474" transform="matrix(-1 0 0 1 46.2695 16.99)" stroke="currentColor" stroke-width="0.5"/>
97
+ <path d="M41.2912 16.9871V29.3247H46.2695" stroke="currentColor" stroke-width="0.5"/>
98
+ <rect width="9.95671" height="24.6753" transform="matrix(1 0 0 -1 214.707 226.675)" stroke="currentColor" stroke-width="0.5"/>
99
+ <path d="M229.645 226.675H214.709V189.662" stroke="currentColor" stroke-width="0.5"/>
100
+ <rect width="19.9106" height="49.3473" transform="matrix(1 0 0 -1 209.73 239.01)" stroke="currentColor" stroke-width="0.5"/>
101
+ <path d="M214.709 239.013V226.675H209.73" stroke="currentColor" stroke-width="0.5"/>
102
+ <rect width="9.95671" height="24.6753" transform="matrix(-1 0 0 1 234.625 177.325)" stroke="currentColor" stroke-width="0.5"/>
103
+ <path d="M219.688 177.325H234.623V214.338" stroke="currentColor" stroke-width="0.5"/>
104
+ <rect width="19.9106" height="49.3473" transform="matrix(-1 0 0 1 239.602 164.99)" stroke="currentColor" stroke-width="0.5"/>
105
+ <path d="M234.623 164.987V177.325H239.602" stroke="currentColor" stroke-width="0.5"/>
106
+ <rect width="9.95671" height="24.6753" transform="matrix(1 0 0 -1 214.707 166.675)" stroke="currentColor" stroke-width="0.5"/>
107
+ <path d="M229.645 166.675H214.709V129.662" stroke="currentColor" stroke-width="0.5"/>
108
+ <rect width="19.9106" height="49.3473" transform="matrix(1 0 0 -1 209.73 179.01)" stroke="currentColor" stroke-width="0.5"/>
109
+ <path d="M214.709 179.013V166.675H209.73" stroke="currentColor" stroke-width="0.5"/>
110
+ <rect width="9.95671" height="24.6753" transform="matrix(-1 0 0 1 234.625 117.325)" stroke="currentColor" stroke-width="0.5"/>
111
+ <path d="M219.688 117.325H234.623V154.338" stroke="currentColor" stroke-width="0.5"/>
112
+ <rect width="19.9106" height="49.3473" transform="matrix(-1 0 0 1 239.602 104.99)" stroke="currentColor" stroke-width="0.5"/>
113
+ <path d="M234.623 104.987V117.325H239.602" stroke="currentColor" stroke-width="0.5"/>
114
+ <rect x="176.039" y="117.325" width="9.95671" height="24.6753" stroke="currentColor" stroke-width="0.5"/>
115
+ <path d="M190.977 117.325H176.041V154.338" stroke="currentColor" stroke-width="0.5"/>
116
+ <rect x="171.062" y="104.99" width="19.9106" height="49.3473" stroke="currentColor" stroke-width="0.5"/>
117
+ <path d="M176.041 104.987V117.325H171.062" stroke="currentColor" stroke-width="0.5"/>
118
+ <rect x="195.957" y="166.675" width="9.95671" height="24.6753" transform="rotate(180 195.957 166.675)" stroke="currentColor" stroke-width="0.5"/>
119
+ <path d="M181.02 166.675H195.955V129.662" stroke="currentColor" stroke-width="0.5"/>
120
+ <rect x="200.934" y="179.01" width="19.9106" height="49.3473" transform="rotate(180 200.934 179.01)" stroke="currentColor" stroke-width="0.5"/>
121
+ <path d="M195.955 179.013V166.675H200.934" stroke="currentColor" stroke-width="0.5"/>
122
+ <rect x="176.039" y="177.325" width="9.95671" height="24.6753" stroke="currentColor" stroke-width="0.5"/>
123
+ <path d="M190.977 177.325H176.041V214.338" stroke="currentColor" stroke-width="0.5"/>
124
+ <rect x="171.062" y="164.99" width="19.9106" height="49.3473" stroke="currentColor" stroke-width="0.5"/>
125
+ <path d="M176.041 164.987V177.325H171.062" stroke="currentColor" stroke-width="0.5"/>
126
+ <rect x="195.957" y="226.675" width="9.95671" height="24.6753" transform="rotate(180 195.957 226.675)" stroke="currentColor" stroke-width="0.5"/>
127
+ <path d="M181.02 226.675H195.955V189.662" stroke="currentColor" stroke-width="0.5"/>
128
+ <rect x="200.934" y="239.01" width="19.9106" height="49.3473" transform="rotate(180 200.934 239.01)" stroke="currentColor" stroke-width="0.5"/>
129
+ <path d="M195.955 239.013V226.675H200.934" stroke="currentColor" stroke-width="0.5"/>
130
+ <rect width="9.95671" height="24.6753" transform="matrix(1 0 0 -1 137.375 226.675)" stroke="currentColor" stroke-width="0.5"/>
131
+ <path d="M152.312 226.675H137.377V189.662" stroke="currentColor" stroke-width="0.5"/>
132
+ <rect width="19.9106" height="49.3473" transform="matrix(1 0 0 -1 132.398 239.01)" stroke="currentColor" stroke-width="0.5"/>
133
+ <path d="M137.377 239.013V226.675H132.398" stroke="currentColor" stroke-width="0.5"/>
134
+ <rect width="9.95671" height="24.6753" transform="matrix(-1 0 0 1 157.293 177.325)" stroke="currentColor" stroke-width="0.5"/>
135
+ <path d="M142.355 177.325H157.291V214.338" stroke="currentColor" stroke-width="0.5"/>
136
+ <rect width="19.9106" height="49.3473" transform="matrix(-1 0 0 1 162.27 164.99)" stroke="currentColor" stroke-width="0.5"/>
137
+ <path d="M157.291 164.987V177.325H162.27" stroke="currentColor" stroke-width="0.5"/>
138
+ <rect width="9.95671" height="24.6753" transform="matrix(1 0 0 -1 137.375 166.675)" stroke="currentColor" stroke-width="0.5"/>
139
+ <path d="M152.312 166.675H137.377V129.662" stroke="currentColor" stroke-width="0.5"/>
140
+ <rect width="19.9106" height="49.3473" transform="matrix(1 0 0 -1 132.398 179.01)" stroke="currentColor" stroke-width="0.5"/>
141
+ <path d="M137.377 179.013V166.675H132.398" stroke="currentColor" stroke-width="0.5"/>
142
+ <rect width="9.95671" height="24.6753" transform="matrix(-1 0 0 1 157.293 117.325)" stroke="currentColor" stroke-width="0.5"/>
143
+ <path d="M142.355 117.325H157.291V154.338" stroke="currentColor" stroke-width="0.5"/>
144
+ <rect width="19.9106" height="49.3473" transform="matrix(-1 0 0 1 162.27 104.99)" stroke="currentColor" stroke-width="0.5"/>
145
+ <path d="M157.291 104.987V117.325H162.27" stroke="currentColor" stroke-width="0.5"/>
146
+ <rect x="98.707" y="117.325" width="9.95671" height="24.6753" stroke="currentColor" stroke-width="0.5"/>
147
+ <path d="M113.645 117.325H98.7095V154.338" stroke="currentColor" stroke-width="0.5"/>
148
+ <rect x="93.7305" y="104.99" width="19.9106" height="49.3473" stroke="currentColor" stroke-width="0.5"/>
149
+ <path d="M98.7088 104.987V117.325H93.7305" stroke="currentColor" stroke-width="0.5"/>
150
+ <rect x="118.625" y="166.675" width="9.95671" height="24.6753" transform="rotate(180 118.625 166.675)" stroke="currentColor" stroke-width="0.5"/>
151
+ <path d="M103.688 166.675H118.623V129.662" stroke="currentColor" stroke-width="0.5"/>
152
+ <rect x="123.602" y="179.01" width="19.9106" height="49.3473" transform="rotate(180 123.602 179.01)" stroke="currentColor" stroke-width="0.5"/>
153
+ <path d="M118.623 179.013V166.675H123.602" stroke="currentColor" stroke-width="0.5"/>
154
+ <rect x="98.707" y="177.325" width="9.95671" height="24.6753" stroke="currentColor" stroke-width="0.5"/>
155
+ <path d="M113.645 177.325H98.7095V214.338" stroke="currentColor" stroke-width="0.5"/>
156
+ <rect x="93.7305" y="164.99" width="19.9106" height="49.3473" stroke="currentColor" stroke-width="0.5"/>
157
+ <path d="M98.7088 164.987V177.325H93.7305" stroke="currentColor" stroke-width="0.5"/>
158
+ <rect x="118.625" y="226.675" width="9.95671" height="24.6753" transform="rotate(180 118.625 226.675)" stroke="currentColor" stroke-width="0.5"/>
159
+ <path d="M103.688 226.675H118.623V189.662" stroke="currentColor" stroke-width="0.5"/>
160
+ <rect x="123.602" y="239.01" width="19.9106" height="49.3473" transform="rotate(180 123.602 239.01)" stroke="currentColor" stroke-width="0.5"/>
161
+ <path d="M118.623 239.013V226.675H123.602" stroke="currentColor" stroke-width="0.5"/>
162
+ <rect width="9.95671" height="24.6753" transform="matrix(1 0 0 -1 60.0391 226.675)" stroke="currentColor" stroke-width="0.5"/>
163
+ <path d="M74.9766 226.675H60.0415V189.662" stroke="currentColor" stroke-width="0.5"/>
164
+ <rect width="19.9106" height="49.3473" transform="matrix(1 0 0 -1 55.0625 239.01)" stroke="currentColor" stroke-width="0.5"/>
165
+ <path d="M60.0409 239.013V226.675H55.0625" stroke="currentColor" stroke-width="0.5"/>
166
+ <rect width="9.95671" height="24.6753" transform="matrix(-1 0 0 1 79.957 177.325)" stroke="currentColor" stroke-width="0.5"/>
167
+ <path d="M65.0195 177.325H79.9546V214.338" stroke="currentColor" stroke-width="0.5"/>
168
+ <rect width="19.9106" height="49.3473" transform="matrix(-1 0 0 1 84.9336 164.99)" stroke="currentColor" stroke-width="0.5"/>
169
+ <path d="M79.9552 164.987V177.325H84.9336" stroke="currentColor" stroke-width="0.5"/>
170
+ <rect width="9.95671" height="24.6753" transform="matrix(1 0 0 -1 60.0391 166.675)" stroke="currentColor" stroke-width="0.5"/>
171
+ <path d="M74.9766 166.675H60.0415V129.662" stroke="currentColor" stroke-width="0.5"/>
172
+ <rect width="19.9106" height="49.3473" transform="matrix(1 0 0 -1 55.0625 179.01)" stroke="currentColor" stroke-width="0.5"/>
173
+ <path d="M60.0409 179.013V166.675H55.0625" stroke="currentColor" stroke-width="0.5"/>
174
+ <rect width="9.95671" height="24.6753" transform="matrix(-1 0 0 1 79.957 117.325)" stroke="currentColor" stroke-width="0.5"/>
175
+ <path d="M65.0195 117.325H79.9546V154.338" stroke="currentColor" stroke-width="0.5"/>
176
+ <rect width="19.9106" height="49.3473" transform="matrix(-1 0 0 1 84.9336 104.99)" stroke="currentColor" stroke-width="0.5"/>
177
+ <path d="M79.9552 104.987V117.325H84.9336" stroke="currentColor" stroke-width="0.5"/>
178
+ <rect x="21.375" y="117.325" width="9.95671" height="24.6753" stroke="currentColor" stroke-width="0.5"/>
179
+ <path d="M36.3125 117.325H21.3774V154.338" stroke="currentColor" stroke-width="0.5"/>
180
+ <rect x="16.3984" y="104.99" width="19.9106" height="49.3473" stroke="currentColor" stroke-width="0.5"/>
181
+ <path d="M21.3768 104.987V117.325H16.3984" stroke="currentColor" stroke-width="0.5"/>
182
+ <rect x="41.293" y="166.675" width="9.95671" height="24.6753" transform="rotate(180 41.293 166.675)" stroke="currentColor" stroke-width="0.5"/>
183
+ <path d="M26.3555 166.675H41.2905V129.662" stroke="currentColor" stroke-width="0.5"/>
184
+ <rect x="46.2695" y="179.01" width="19.9106" height="49.3473" transform="rotate(180 46.2695 179.01)" stroke="currentColor" stroke-width="0.5"/>
185
+ <path d="M41.2912 179.013V166.675H46.2695" stroke="currentColor" stroke-width="0.5"/>
186
+ <rect x="21.375" y="177.325" width="9.95671" height="24.6753" stroke="currentColor" stroke-width="0.5"/>
187
+ <path d="M36.3125 177.325H21.3774V214.338" stroke="currentColor" stroke-width="0.5"/>
188
+ <rect x="16.3984" y="164.99" width="19.9106" height="49.3473" stroke="currentColor" stroke-width="0.5"/>
189
+ <path d="M21.3768 164.987V177.325H16.3984" stroke="currentColor" stroke-width="0.5"/>
190
+ <rect x="41.293" y="226.675" width="9.95671" height="24.6753" transform="rotate(180 41.293 226.675)" stroke="currentColor" stroke-width="0.5"/>
191
+ <path d="M26.3555 226.675H41.2905V189.662" stroke="currentColor" stroke-width="0.5"/>
192
+ <rect x="46.2695" y="239.01" width="19.9106" height="49.3473" transform="rotate(180 46.2695 239.01)" stroke="currentColor" stroke-width="0.5"/>
193
+ <path d="M41.2912 239.013V226.675H46.2695" stroke="currentColor" stroke-width="0.5"/>
194
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M237.312 39.7373L174.02 32.8838L201.158 29.9443V27.9561L174.02 25.0176L237.312 18.1631L237.098 16.1748L164.732 24.0117L137.738 21.0889L164.75 18.1631L164.535 16.1748L128.451 20.083L92.3682 16.1748L92.2607 17.1689L92.1523 18.1631L119.163 21.0889L92.1738 24.0117L19.8125 16.1748L19.5977 18.1631L82.8857 25.0176L55.7441 27.9561V29.9443L82.8857 32.8838L19.5977 39.7373L19.8125 41.7256L92.1738 33.8896L119.163 36.8125L92.1523 39.7373L92.2607 40.7314L92.3682 41.7256L128.451 37.8184L164.535 41.7256L164.75 39.7373L137.738 36.8125L164.732 33.8896L237.098 41.7256L237.312 39.7373ZM101.461 25.0176L128.451 22.0947L155.444 25.0176L128.455 27.9404L101.461 25.0176ZM65.1387 28.9502L92.1729 26.0234L119.207 28.9502L92.1729 31.8779L65.1387 28.9502ZM137.702 28.9502L164.732 26.0234L191.763 28.9502L164.732 31.8779L137.702 28.9502ZM101.461 32.8838L128.455 29.9609L155.444 32.8838L128.451 35.8066L101.461 32.8838Z" fill="currentColor"/>
3
+ <path d="M18.6875 40.2627L81.9805 47.1162L54.8418 50.0557V52.0439L81.9805 54.9824L18.6875 61.8369L18.9023 63.8252L91.2676 55.9883L118.262 58.9111L91.25 61.8369L91.4648 63.8252L127.549 59.917L163.632 63.8252L163.739 62.8311L163.848 61.8369L136.837 58.9111L163.826 55.9883L236.188 63.8252L236.402 61.8369L173.114 54.9824L200.256 52.0439V50.0557L173.114 47.1162L236.402 40.2627L236.188 38.2744L163.826 46.1104L136.837 43.1875L163.848 40.2627L163.739 39.2686L163.632 38.2744L127.549 42.1816L91.4648 38.2744L91.25 40.2627L118.262 43.1875L91.2676 46.1104L18.9023 38.2744L18.6875 40.2627ZM154.539 54.9824L127.549 57.9053L100.556 54.9824L127.545 52.0596L154.539 54.9824ZM190.861 51.0498L163.827 53.9766L136.793 51.0498L163.827 48.1221L190.861 51.0498ZM118.298 51.0498L91.2676 53.9766L64.2373 51.0498L91.2676 48.1221L118.298 51.0498ZM154.539 47.1162L127.545 50.0391L100.556 47.1162L127.549 44.1934L154.539 47.1162Z" fill="currentColor"/>
4
+ <path d="M18.6875 62.2627L81.9805 69.1162L54.8418 72.0557V74.0439L81.9805 76.9824L18.6875 83.8369L18.9023 85.8252L91.2676 77.9883L118.262 80.9111L91.25 83.8369L91.4648 85.8252L127.549 81.917L163.632 85.8252L163.739 84.8311L163.848 83.8369L136.837 80.9111L163.826 77.9883L236.188 85.8252L236.402 83.8369L173.114 76.9824L200.256 74.0439V72.0557L173.114 69.1162L236.402 62.2627L236.188 60.2744L163.826 68.1104L136.837 65.1875L163.848 62.2627L163.739 61.2686L163.632 60.2744L127.549 64.1816L91.4648 60.2744L91.25 62.2627L118.262 65.1875L91.2676 68.1104L18.9023 60.2744L18.6875 62.2627ZM154.539 76.9824L127.549 79.9053L100.556 76.9824L127.545 74.0596L154.539 76.9824ZM190.861 73.0498L163.827 75.9766L136.793 73.0498L163.827 70.1221L190.861 73.0498ZM118.298 73.0498L91.2676 75.9766L64.2373 73.0498L91.2676 70.1221L118.298 73.0498ZM154.539 69.1162L127.545 72.0391L100.556 69.1162L127.549 66.1934L154.539 69.1162Z" fill="currentColor"/>
5
+ <path d="M237.312 105.737L174.02 98.8838L201.158 95.9443V93.9561L174.02 91.0176L237.312 84.1631L237.098 82.1748L164.732 90.0117L137.738 87.0889L164.75 84.1631L164.535 82.1748L128.451 86.083L92.3682 82.1748L92.2607 83.1689L92.1523 84.1631L119.163 87.0889L92.1738 90.0117L19.8125 82.1748L19.5977 84.1631L82.8857 91.0176L55.7441 93.9561V95.9443L82.8857 98.8838L19.5977 105.737L19.8125 107.726L92.1738 99.8896L119.163 102.812L92.1523 105.737L92.2607 106.731L92.3682 107.726L128.451 103.818L164.535 107.726L164.75 105.737L137.738 102.812L164.732 99.8896L237.098 107.726L237.312 105.737ZM101.461 91.0176L128.451 88.0947L155.444 91.0176L128.455 93.9404L101.461 91.0176ZM65.1387 94.9502L92.1729 92.0234L119.207 94.9502L92.1729 97.8779L65.1387 94.9502ZM137.702 94.9502L164.732 92.0234L191.763 94.9502L164.732 97.8779L137.702 94.9502ZM101.461 98.8838L128.455 95.9609L155.444 98.8838L128.451 101.807L101.461 98.8838Z" fill="currentColor"/>
6
+ <path d="M237.312 127.737L174.02 120.884L201.158 117.944V115.956L174.02 113.018L237.312 106.163L237.098 104.175L164.732 112.012L137.738 109.089L164.75 106.163L164.535 104.175L128.451 108.083L92.3682 104.175L92.2607 105.169L92.1523 106.163L119.163 109.089L92.1738 112.012L19.8125 104.175L19.5977 106.163L82.8857 113.018L55.7441 115.956V117.944L82.8857 120.884L19.5977 127.737L19.8125 129.726L92.1738 121.89L119.163 124.812L92.1523 127.737L92.2607 128.731L92.3682 129.726L128.451 125.818L164.535 129.726L164.75 127.737L137.738 124.812L164.732 121.89L237.098 129.726L237.312 127.737ZM101.461 113.018L128.451 110.095L155.444 113.018L128.455 115.94L101.461 113.018ZM65.1387 116.95L92.1729 114.023L119.207 116.95L92.1729 119.878L65.1387 116.95ZM137.702 116.95L164.732 114.023L191.763 116.95L164.732 119.878L137.702 116.95ZM101.461 120.884L128.455 117.961L155.444 120.884L128.451 123.807L101.461 120.884Z" fill="currentColor"/>
7
+ <path d="M18.6875 128.263L81.9805 135.116L54.8418 138.056V140.044L81.9805 142.982L18.6875 149.837L18.9023 151.825L91.2676 143.988L118.262 146.911L91.25 149.837L91.4648 151.825L127.549 147.917L163.632 151.825L163.739 150.831L163.848 149.837L136.837 146.911L163.826 143.988L236.188 151.825L236.402 149.837L173.114 142.982L200.256 140.044V138.056L173.114 135.116L236.402 128.263L236.188 126.274L163.826 134.11L136.837 131.188L163.848 128.263L163.739 127.269L163.632 126.274L127.549 130.182L91.4648 126.274L91.25 128.263L118.262 131.188L91.2676 134.11L18.9023 126.274L18.6875 128.263ZM154.539 142.982L127.549 145.905L100.556 142.982L127.545 140.06L154.539 142.982ZM190.861 139.05L163.827 141.977L136.793 139.05L163.827 136.122L190.861 139.05ZM118.298 139.05L91.2676 141.977L64.2373 139.05L91.2676 136.122L118.298 139.05ZM154.539 135.116L127.545 138.039L100.556 135.116L127.549 132.193L154.539 135.116Z" fill="currentColor"/>
8
+ <path d="M18.6875 150.263L81.9805 157.116L54.8418 160.056V162.044L81.9805 164.982L18.6875 171.837L18.9023 173.825L91.2676 165.988L118.262 168.911L91.25 171.837L91.4648 173.825L127.549 169.917L163.632 173.825L163.739 172.831L163.848 171.837L136.837 168.911L163.826 165.988L236.188 173.825L236.402 171.837L173.114 164.982L200.256 162.044V160.056L173.114 157.116L236.402 150.263L236.188 148.274L163.826 156.11L136.837 153.188L163.848 150.263L163.739 149.269L163.632 148.274L127.549 152.182L91.4648 148.274L91.25 150.263L118.262 153.188L91.2676 156.11L18.9023 148.274L18.6875 150.263ZM154.539 164.982L127.549 167.905L100.556 164.982L127.545 162.06L154.539 164.982ZM190.861 161.05L163.827 163.977L136.793 161.05L163.827 158.122L190.861 161.05ZM118.298 161.05L91.2676 163.977L64.2373 161.05L91.2676 158.122L118.298 161.05ZM154.539 157.116L127.545 160.039L100.556 157.116L127.549 154.193L154.539 157.116Z" fill="currentColor"/>
9
+ <path d="M237.312 193.737L174.02 186.884L201.158 183.944V181.956L174.02 179.018L237.312 172.163L237.098 170.175L164.732 178.012L137.738 175.089L164.75 172.163L164.535 170.175L128.451 174.083L92.3682 170.175L92.2607 171.169L92.1523 172.163L119.163 175.089L92.1738 178.012L19.8125 170.175L19.5977 172.163L82.8857 179.018L55.7441 181.956V183.944L82.8857 186.884L19.5977 193.737L19.8125 195.726L92.1738 187.89L119.163 190.812L92.1523 193.737L92.2607 194.731L92.3682 195.726L128.451 191.818L164.535 195.726L164.75 193.737L137.738 190.812L164.732 187.89L237.098 195.726L237.312 193.737ZM101.461 179.018L128.451 176.095L155.444 179.018L128.455 181.94L101.461 179.018ZM65.1387 182.95L92.1729 180.023L119.207 182.95L92.1729 185.878L65.1387 182.95ZM137.702 182.95L164.732 180.023L191.763 182.95L164.732 185.878L137.702 182.95ZM101.461 186.884L128.455 183.961L155.444 186.884L128.451 189.807L101.461 186.884Z" fill="currentColor"/>
10
+ <path d="M237.312 215.737L174.02 208.884L201.158 205.944V203.956L174.02 201.018L237.312 194.163L237.098 192.175L164.732 200.012L137.738 197.089L164.75 194.163L164.535 192.175L128.451 196.083L92.3682 192.175L92.2607 193.169L92.1523 194.163L119.163 197.089L92.1738 200.012L19.8125 192.175L19.5977 194.163L82.8857 201.018L55.7441 203.956V205.944L82.8857 208.884L19.5977 215.737L19.8125 217.726L92.1738 209.89L119.163 212.812L92.1523 215.737L92.2607 216.731L92.3682 217.726L128.451 213.818L164.535 217.726L164.75 215.737L137.738 212.812L164.732 209.89L237.098 217.726L237.312 215.737ZM101.461 201.018L128.451 198.095L155.444 201.018L128.455 203.94L101.461 201.018ZM65.1387 204.95L92.1729 202.023L119.207 204.95L92.1729 207.878L65.1387 204.95ZM137.702 204.95L164.732 202.023L191.763 204.95L164.732 207.878L137.702 204.95ZM101.461 208.884L128.455 205.961L155.444 208.884L128.451 211.807L101.461 208.884Z" fill="currentColor"/>
11
+ <path d="M18.6875 216.263L81.9805 223.116L54.8418 226.056V228.044L81.9805 230.982L18.6875 237.837L18.9023 239.825L91.2676 231.988L118.262 234.911L91.25 237.837L91.4648 239.825L127.549 235.917L163.632 239.825L163.739 238.831L163.848 237.837L136.837 234.911L163.826 231.988L236.188 239.825L236.402 237.837L173.114 230.982L200.256 228.044V226.056L173.114 223.116L236.402 216.263L236.188 214.274L163.826 222.11L136.837 219.188L163.848 216.263L163.739 215.269L163.632 214.274L127.549 218.182L91.4648 214.274L91.25 216.263L118.262 219.188L91.2676 222.11L18.9023 214.274L18.6875 216.263ZM154.539 230.982L127.549 233.905L100.556 230.982L127.545 228.06L154.539 230.982ZM190.861 227.05L163.827 229.977L136.793 227.05L163.827 224.122L190.861 227.05ZM118.298 227.05L91.2676 229.977L64.2373 227.05L91.2676 224.122L118.298 227.05ZM154.539 223.116L127.545 226.039L100.556 223.116L127.549 220.193L154.539 223.116Z" fill="currentColor"/>
12
+ </svg>