@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,23 @@
1
+ <svg width="552" height="192" viewBox="0 0 552 192" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M51.6094 104C62.1172 104 68.25 110.172 68.4844 124.312L60.125 125.992C60.0859 114.547 57.1953 110.797 51.7266 110.797C45.7109 110.797 42.8203 115.484 42.8203 125.562V138.805C42.8203 148.883 45.75 153.57 51.8047 153.57C57.1953 153.57 60.2812 149.742 60.4375 137.828L68.9141 139.898C68.5625 154.273 62.0781 160.406 51.6875 160.406C39.8906 160.406 34.0312 152.555 34.0312 137.32V127.086C34.0312 111.852 39.9688 104 51.6094 104Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M269.599 104C281.669 104 287.88 111.891 287.88 127.164V137.281C287.88 152.555 281.669 160.406 269.599 160.406C257.489 160.406 251.278 152.555 251.278 137.281V127.164C251.278 111.891 257.489 104 269.599 104ZM269.56 110.797C263.192 110.797 260.106 115.68 260.106 125.797V138.883C260.106 148.805 263.192 153.57 269.599 153.57C275.966 153.57 279.052 148.805 279.052 138.883V125.797C279.052 115.68 275.966 110.797 269.56 110.797Z" fill="currentColor"/>
4
+ <path d="M458.185 46.915C458.329 46.917 459.014 47.5008 459.705 48.2129C460.396 48.9245 460.961 49.5959 460.962 49.7051C460.961 49.8147 460.7 50.497 460.38 51.2217C460.059 51.9477 459.016 54.0028 458.062 55.7891C457.107 57.5751 456.014 59.6132 455.632 60.3184C455.25 61.0233 454.018 63.2858 452.896 65.3457C451.773 67.4057 450.018 70.6435 448.995 72.541C447.973 74.4384 446.606 76.9674 445.959 78.1602C445.312 79.3528 444.57 80.7279 444.311 81.2158C444.051 81.7044 442.184 85.2084 440.162 89.0029C436.486 95.9021 436.485 95.9032 436.581 96.8887C436.694 98.0559 436.004 99.6153 437.625 100.478C439.247 101.338 444.968 91.4085 446.526 90.6357C448.895 89.461 449.579 88.7329 451.643 86.9756C452.549 86.2044 454.187 84.714 455.284 83.6631C456.381 82.6119 458.215 80.6902 459.359 79.3936C460.504 78.0971 461.831 76.4475 462.308 75.7275C462.784 75.0076 463.253 74.4172 463.349 74.415C464.064 74.3981 465.913 75.1771 466.419 75.752C466.509 75.8575 466.396 76.3855 466.144 77.0352C465.906 77.6441 465.289 78.7434 464.771 79.4785C464.254 80.2141 463.285 81.7474 462.618 82.8857C461.951 84.0242 460.719 86.2868 459.88 87.9131C459.041 89.5397 457.507 92.7436 456.471 95.0322C455.435 97.3207 454.228 100.159 453.788 101.34C453.349 102.521 452.801 104.108 452.571 104.867C452.342 105.626 452.043 106.669 451.907 107.184C451.772 107.698 451.728 108.12 451.81 108.12C451.892 108.118 452.363 107.533 452.857 106.818C453.352 106.102 454.229 104.661 454.805 103.615C455.377 102.575 455.861 101.701 455.885 101.665C455.903 101.639 456.607 101.881 457.449 102.205C458.291 102.528 459.009 102.827 459.046 102.869C459.081 102.914 458.914 103.545 458.673 104.274C458.431 105.006 457.947 106.139 457.599 106.792C457.25 107.445 456.403 108.831 455.718 109.873C455.032 110.915 454.031 112.237 453.492 112.812C452.954 113.385 452.238 113.987 451.9 114.147C451.322 114.422 451.193 114.404 449.687 113.837C448.795 113.501 447.954 113.053 447.784 112.824C447.581 112.55 447.48 112.078 447.48 111.4C447.48 110.843 447.596 109.766 447.735 109.007C447.875 108.248 448.256 106.785 448.581 105.755C449.353 103.312 450.161 100.89 451.056 98.501C451.474 97.3853 452.365 95.1792 453.037 93.5986C453.707 92.0237 454.221 90.6937 454.183 90.6357C454.14 90.5872 453.152 91.2731 451.988 92.1602C448.247 95.0108 440.411 107.195 436.581 105.76C435.187 105.237 433.941 104.099 433.725 102.205C430.845 102.233 424.921 119.419 424.146 122.024C423.612 123.816 415.851 146.794 415.375 148.528C414.899 150.263 414.242 152.88 413.915 154.344C413.588 155.807 413.224 157.714 413.106 158.582C412.989 159.447 412.877 160.174 412.858 160.2C412.838 160.222 412.059 160.111 411.128 159.952C410.197 159.793 409.371 159.707 409.291 159.761C409.213 159.815 408.594 159.276 407.916 158.562C406.887 157.479 406.684 157.161 406.686 156.642C406.687 156.299 406.798 155.543 406.935 154.961C407.071 154.379 407.513 153.003 407.917 151.904C411.089 143.279 413.106 137.308 417.817 125.553C419.584 121.145 421.719 116.83 423.161 112.266C423.469 111.29 424.45 108.362 425.34 105.76C426.23 103.158 427.263 100.186 427.635 99.1553C428.007 98.1249 428.938 95.6412 429.705 93.6357C430.472 91.63 431.732 88.3965 432.505 86.4502C433.275 84.5098 433.906 82.8933 433.91 82.8516C433.911 82.8193 433.992 82.793 434.092 82.793C434.193 82.7935 434.973 83.0707 435.826 83.4092C437.283 83.9876 437.379 84.0589 437.379 84.5801C437.379 84.8853 437.451 85.1868 437.539 85.249C437.63 85.3058 438.397 84.0478 439.246 82.4502C440.096 80.8495 441.363 78.476 442.062 77.1748C442.76 75.8738 444.422 72.8126 445.756 70.373C447.089 67.934 448.486 65.3617 448.859 64.6562C449.232 63.9516 450.002 62.532 450.57 61.502C451.138 60.472 451.921 59.0225 452.31 58.2822C452.697 57.5439 452.978 56.8976 452.935 56.8438C452.89 56.7932 452.746 56.8668 452.615 57.0068C452.484 57.1476 451.908 57.7053 451.337 58.2461C450.765 58.787 450.211 59.3201 450.106 59.4297C450 59.5401 449.147 60.3836 448.209 61.3047C447.271 62.2263 445.757 63.7235 444.846 64.6318C443.934 65.54 442.914 66.5609 442.58 66.9004C442.246 67.2403 441.115 68.3598 440.066 69.3887C439.018 70.4178 437.49 71.925 436.673 72.7383C435.856 73.5514 434.529 74.8529 433.725 75.6299C432.92 76.4069 431.469 77.7819 430.501 78.6855C429.533 79.5892 427.972 81.002 427.033 81.8252C426.094 82.6485 424.701 83.8145 423.938 84.415C423.176 85.0156 422.078 85.776 421.5 86.1055C420.922 86.4347 420.172 86.7627 419.834 86.835C419.256 86.9581 419.135 86.8817 417.817 85.5527C416.88 84.6074 416.38 83.9509 416.306 83.5684C416.242 83.2404 416.319 82.5124 416.485 81.8594C416.645 81.234 417.133 79.8359 417.569 78.752C418.006 77.6678 418.869 75.7162 419.485 74.415C420.102 73.114 421.581 70.0973 422.772 67.7119C423.964 65.3267 425.19 62.8867 425.498 62.29C425.806 61.6937 426.374 60.5842 426.76 59.8242C427.145 59.0642 427.709 57.9251 428.015 57.293C428.451 56.3895 428.5 56.187 428.248 56.3467C428.071 56.4588 427.526 56.8881 427.035 57.3008C426.544 57.7139 424.133 59.7813 421.678 61.8955C419.223 64.0092 417.011 65.9133 416.761 66.127C416.511 66.3407 414.435 68.1507 412.146 70.1494C409.858 72.1486 407.478 74.2409 406.857 74.7998C406.237 75.3585 403.983 77.408 401.848 79.3535C399.712 81.2993 397.721 83.1098 397.425 83.376C397.128 83.6426 396.261 84.4977 395.498 85.2773C394.11 86.6955 394.11 86.696 392.854 85.3857C391.597 84.075 391.597 84.0741 392.768 82.6943C393.411 81.9356 394.215 81.0408 394.553 80.7061C394.891 80.3713 395.672 79.6171 396.288 79.0303C396.905 78.4432 397.799 77.6083 398.275 77.1748C398.751 76.7413 399.296 76.2401 399.487 76.0605C399.678 75.8812 400.459 75.1756 401.222 74.4932C401.985 73.8108 403.545 72.409 404.689 71.3789C405.834 70.3485 407.2 69.1267 407.725 68.6631C408.249 68.1997 410.083 66.5947 411.8 65.0977C413.516 63.601 415.125 62.2022 415.375 61.9883C415.625 61.7747 417.84 59.8702 420.296 57.7559C422.752 55.6416 425.825 53.0196 427.125 51.9297C428.425 50.8398 430.024 49.5309 430.679 49.0215C431.333 48.5126 432.038 48.0963 432.246 48.0957C432.469 48.0967 433.141 48.6324 433.883 49.4023C435.056 50.6197 435.134 50.7508 435.024 51.3242C434.96 51.663 434.606 52.6224 434.238 53.4561C433.87 54.2902 432.035 58.0164 430.16 61.7363C428.285 65.4559 425.9 70.2291 424.859 72.3438C423.819 74.4581 422.498 77.2853 421.927 78.625C421.355 79.9644 420.91 81.14 420.938 81.2373C420.969 81.332 421.617 80.9467 422.379 80.3789C423.142 79.8096 424.742 78.4785 425.934 77.4219C427.125 76.3655 428.501 75.1237 428.992 74.6621C429.483 74.2008 430.303 73.4356 430.813 72.9629C431.324 72.4902 432.133 71.7228 432.609 71.2568C433.086 70.7908 434.109 69.7928 434.883 69.0391C435.656 68.2853 436.444 67.5009 436.633 67.2959C436.822 67.0909 437.705 66.213 438.597 65.3457C439.489 64.4784 440.344 63.6354 440.496 63.4727C440.649 63.3099 441.082 62.8765 441.46 62.5098C441.838 62.1427 442.612 61.3894 443.181 60.835C443.749 60.2803 444.958 59.072 445.868 58.1504C446.778 57.2289 447.981 56.0315 448.541 55.4893C449.101 54.9472 449.889 54.192 450.293 53.8125C450.697 53.4329 452.152 52.0517 453.524 50.7432C454.897 49.4349 456.448 48.0378 456.972 47.6387C457.494 47.2404 458.039 46.9151 458.185 46.915Z" fill="currentColor"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M94.6924 104.859C104.731 104.859 110.044 109.508 110.044 118.18V120.094C110.044 126.656 106.489 130.719 100.083 131.539V132.281C104.341 133.453 105.981 135.406 107.31 141.891L108.638 148.414C109.966 154.898 111.099 157.32 112.856 158.648L112.739 159.547H102.896C101.685 157.398 101.021 154.625 99.9658 148.609L98.8721 142.594C97.8174 136.578 96.3719 134.938 92.0361 134.938H87.3096V159.547H78.6377V104.859H94.6924ZM87.3096 128.336H93.7939C98.911 128.336 101.333 126.07 101.333 121.266V118.805C101.333 113.961 98.911 111.734 93.7939 111.734H87.3096V128.336Z" fill="currentColor"/>
6
+ <path d="M147.033 111.93H129.104V127.672H145.51V134H129.104V152.477H147.736V159.547H120.432V104.859H147.033V111.93Z" fill="currentColor"/>
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M191.326 159.547H182.186L179.764 149.078H164.686L162.264 159.547H153.787L167.146 104.859H177.85L191.326 159.547ZM171.795 113.961C171.131 119.156 170.428 123.102 169.412 127.75L166.053 142.711H178.396L175.076 127.75C174.061 123.102 173.318 119.156 172.615 113.961H171.795Z" fill="currentColor"/>
8
+ <path d="M224.839 111.93H212.964V159.547H204.292V111.93H192.417V104.859H224.839V111.93Z" fill="currentColor"/>
9
+ <path d="M241.359 159.547H232.688V104.859H241.359V159.547Z" fill="currentColor"/>
10
+ <path d="M320.416 136.773C321.627 139.977 322.525 142.867 323.541 146.93L324.322 146.852C323.854 141.891 323.541 137.203 323.541 132.945V104.859H331.9V159.547H321.939L309.518 127.906C308.189 124.586 307.291 121.617 306.197 117.242L305.377 117.32C305.846 122.203 306.119 127.125 306.119 131.422L306.158 159.547H297.76V104.859H307.916L320.416 136.773Z" fill="currentColor"/>
11
+ <path d="M367.9 148.406H363.9V44H367.9V148.406Z" fill="currentColor"/>
12
+ <path d="M479.106 80.3115C480.711 78.7268 480.711 78.7267 482.055 79.4209C482.793 79.8028 483.505 80.2362 483.637 80.3838C483.838 80.6106 483.797 80.8285 483.367 81.8027C483.088 82.4364 481.857 84.7735 480.632 86.9961C479.407 89.2184 478.27 91.3032 478.105 91.6289C477.941 91.9544 477.447 92.8801 477.007 93.6855C476.567 94.4907 476.242 95.1882 476.283 95.2363C476.33 95.2781 477.367 94.1364 478.594 92.6943C480.828 90.0661 480.829 90.0668 482.374 90.8691C483.578 91.4948 483.931 91.7688 483.977 92.1162C484.031 92.5339 484.091 92.5542 484.931 92.4248C485.424 92.3491 486.751 92.2118 487.88 92.1201C489.652 91.9763 490.024 91.8838 490.606 91.4463C490.977 91.1674 491.351 90.9396 491.438 90.9395C491.524 90.94 492.028 91.1649 492.558 91.4404C493.346 91.8505 493.579 91.8998 493.836 91.707C494.009 91.5771 494.941 90.4855 495.906 89.2822C496.872 88.079 498.443 86.0264 499.397 84.7217C500.352 83.4175 501.26 82.2312 501.416 82.084C501.658 81.8559 501.901 81.9229 503.126 82.5537C503.911 82.9578 504.663 83.4055 504.795 83.5488C504.998 83.7701 504.921 84.1668 504.297 86.1416C503.891 87.4244 503.218 89.5842 502.802 90.9395C502.385 92.2946 502.043 93.5169 502.042 93.6553C502.041 93.8447 502.171 93.8294 502.573 93.5928C503.083 93.2932 503.161 93.306 504.382 93.8838C505.224 94.2825 505.952 94.4873 506.522 94.4873C506.999 94.487 508.622 94.213 510.132 93.8779C511.642 93.5426 513.581 93.2218 514.439 93.165C515.986 93.0629 516.014 93.0695 517.558 93.8818C518.414 94.3324 519.291 94.8909 519.508 95.1221C519.724 95.3532 519.901 95.6819 519.9 95.8525C519.899 96.024 519.712 96.6184 519.484 97.1738C519.257 97.7296 518.989 98.2424 518.89 98.3125C518.789 98.3815 518.12 98.1084 517.403 97.7051C516.098 96.9708 516.097 96.9704 514.835 97.1953C514.14 97.3191 512.713 97.6071 511.664 97.835C510.615 98.0625 509.133 98.264 508.37 98.2832C507.188 98.3126 506.831 98.2378 505.964 97.7822C505.406 97.4894 504.918 97.249 504.875 97.2471C504.834 97.2486 504.02 98.0912 503.063 99.1201C502.108 100.149 501.146 101.042 500.925 101.106C500.653 101.184 500.028 100.937 498.964 100.329C498.106 99.8392 497.355 99.2921 497.294 99.1143C497.234 98.9368 497.185 98.5112 497.187 98.168C497.188 97.8246 497.411 96.5894 497.683 95.4238C497.953 94.2642 498.145 93.3146 498.111 93.3047C498.07 93.3104 497.223 94.186 496.226 95.2549C495.225 96.3274 494.119 97.3597 493.769 97.5488C493.132 97.8923 493.13 97.892 491.386 96.917C489.641 95.9422 489.641 95.942 487.647 96.1855C486.551 96.3196 485.262 96.4352 484.785 96.4424C484.206 96.4509 483.611 96.2916 482.991 95.9639C482.482 95.6944 481.964 95.4732 481.84 95.4727C481.716 95.473 480.032 97.4029 478.096 99.7607C476.16 102.119 473.751 105.006 472.744 106.176C471.737 107.345 470.615 108.536 470.252 108.822C469.592 109.343 469.591 109.343 468.041 108.479C466.746 107.758 466.491 107.539 466.49 107.152C466.49 106.897 466.803 105.999 467.185 105.156C467.565 104.316 467.876 103.566 467.878 103.487C467.879 103.41 468.242 102.618 468.685 101.728C469.128 100.836 469.856 99.3966 470.303 98.5293C470.749 97.6619 471.57 96.0648 472.126 94.9805C472.682 93.8968 473.324 92.6691 473.555 92.252C473.784 91.8364 473.934 91.4506 473.887 91.3945C473.838 91.3402 472.72 92.2662 471.402 93.4512C470.084 94.6364 468.098 96.3768 466.989 97.3193C465.248 98.7993 464.932 99.1559 464.672 99.9297C464.506 100.422 464.266 100.871 464.137 100.928C464.008 100.984 463.08 100.584 462.075 100.038C461.073 99.4937 460.252 98.9613 460.248 98.8535C460.248 98.7475 460.396 98.2754 460.576 97.8057C460.757 97.3362 461.05 96.817 461.227 96.6514C461.404 96.486 463.032 95.073 464.844 93.5117C466.656 91.9504 468.918 89.9614 469.872 89.0928C470.826 88.2241 472.933 86.2498 474.555 84.7051C476.176 83.1605 478.224 81.1834 479.106 80.3115Z" fill="currentColor"/>
13
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M139.768 32C151.838 32.0002 158.049 39.8908 158.049 55.1641V65.2812C158.049 80.5545 151.838 88.4061 139.768 88.4062C127.658 88.4062 121.447 80.5547 121.447 65.2812V55.1641C121.447 39.8906 127.658 32 139.768 32ZM139.729 38.7969C133.361 38.7969 130.275 43.6797 130.275 53.7969V66.8828C130.275 76.8047 133.361 81.5703 139.768 81.5703C146.135 81.5701 149.221 76.8045 149.221 66.8828V53.7969C149.221 43.6799 146.135 38.7971 139.729 38.7969Z" fill="currentColor"/>
14
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M69.5391 87.5469H60.3984L57.9766 77.0781H42.8984L40.4766 87.5469H32L45.3594 32.8594H56.0625L69.5391 87.5469ZM50.0078 41.9609C49.3438 47.1562 48.6406 51.1016 47.625 55.75L44.2656 70.7109H56.6094L53.2891 55.75C52.2734 51.1016 51.5312 47.1562 50.8281 41.9609H50.0078Z" fill="currentColor"/>
15
+ <path d="M100.044 64.7734C101.255 67.9765 102.153 70.8672 103.169 74.9297L103.95 74.8516C103.481 69.8906 103.169 65.2031 103.169 60.9453V32.8594H111.528V87.5469H101.567L89.1455 55.9062C87.8174 52.586 86.9189 49.6172 85.8252 45.2422L85.0049 45.3203C85.4736 50.2031 85.7471 55.125 85.7471 59.4219L85.7861 87.5469H77.3877V32.8594H87.5439L100.044 64.7734Z" fill="currentColor"/>
16
+ <path d="M196.404 39.9297H184.529V87.5469H175.857V39.9297H163.982V32.8594H196.404V39.9297Z" fill="currentColor"/>
17
+ <path d="M212.925 55.0859H228.784V32.8594H237.456V87.5469H228.784V62.1172H212.925V87.5469H204.253V32.8594H212.925V55.0859Z" fill="currentColor"/>
18
+ <path d="M275.148 39.9297H257.219V55.6719H273.625V62H257.219V80.4766H275.852V87.5469H248.547V32.8594H275.148V39.9297Z" fill="currentColor"/>
19
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M301.161 32.8594C311.2 32.8594 316.513 37.5079 316.513 46.1797V48.0938C316.513 54.6562 312.958 58.7187 306.552 59.5391V60.2812C310.809 61.4531 312.45 63.4064 313.778 69.8906L315.106 76.4141C316.435 82.8984 317.567 85.3203 319.325 86.6484L319.208 87.5469H309.364C308.153 85.3984 307.489 82.625 306.435 76.6094L305.341 70.5938C304.286 64.5782 302.841 62.9376 298.505 62.9375H293.778V87.5469H285.106V32.8594H301.161ZM293.778 56.3359H300.263C305.38 56.3359 307.802 54.0702 307.802 49.2656V46.8047C307.802 41.961 305.38 39.7344 300.263 39.7344H293.778V56.3359Z" fill="currentColor"/>
20
+ <path d="M514.375 82.25C514.603 82.1845 515.135 82.2844 515.566 82.4736C515.996 82.6619 516.686 82.9719 517.102 83.1621C517.825 83.4932 517.854 83.5352 517.761 84.1875C517.707 84.5618 517.541 85.0811 517.392 85.3408C517.21 85.6551 516.954 85.8134 516.626 85.8135C516.355 85.813 515.558 85.5425 514.854 85.2129C514.152 84.8834 513.513 84.5424 513.436 84.4551C513.359 84.3675 513.447 83.8628 513.63 83.333C513.866 82.65 514.083 82.3344 514.375 82.25Z" fill="currentColor"/>
21
+ <path d="M490.094 81.2793C490.272 81.28 491.087 81.656 491.905 82.1162C493.329 82.917 493.39 82.979 493.297 83.5127C493.243 83.8201 493.037 84.3313 492.839 84.6475C492.641 84.963 492.321 85.221 492.128 85.2217C491.934 85.2217 491.12 84.815 490.318 84.3184C489.518 83.8225 488.864 83.3309 488.861 83.2246C488.861 83.1195 488.988 82.75 489.143 82.4033C489.297 82.0566 489.503 81.6613 489.598 81.5254C489.693 81.3901 489.916 81.2793 490.094 81.2793Z" fill="currentColor"/>
22
+ <path d="M457.407 32.2041C457.505 32.2359 458.231 32.5197 459.023 32.835C460.432 33.3953 460.465 33.4223 460.369 33.9668C460.315 34.2735 460.15 34.8058 460 35.1494C459.827 35.5465 458.768 36.6018 457.102 38.041C455.657 39.2879 453.574 41.1566 452.473 42.1934C451.371 43.23 450.107 44.5404 449.662 45.1045C448.854 46.1292 448.852 46.1293 447.349 45.5107C445.845 44.8923 445.845 44.8911 445.961 44.1777C446.025 43.7848 446.28 43.0399 446.526 42.5234C446.808 41.9334 447.552 41.0173 448.528 40.0596C449.384 39.2207 451.692 37.0972 453.658 35.3408C455.624 33.5846 457.311 32.1734 457.407 32.2041Z" fill="currentColor"/>
23
+ </svg>
File without changes
@@ -0,0 +1,34 @@
1
+ <svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="41.0215" height="41.0215" transform="matrix(0.910087 -0.414416 0.910087 0.414416 53.332 50)" stroke="currentColor" stroke-width="2"/>
3
+ <path d="M109.332 24.5L53.3322 50L109.332 75.5" stroke="currentColor" stroke-width="2"/>
4
+ <rect width="82.0315" height="82.0376" transform="matrix(0.910087 -0.414416 0.910087 0.414416 16.0039 50.0022)" stroke="currentColor" stroke-width="2"/>
5
+ <path d="M34.6666 41.5L53.3332 50L34.6666 58.5" stroke="currentColor" stroke-width="2"/>
6
+ <rect width="41.0215" height="41.0215" transform="matrix(-0.910087 0.414416 -0.910087 -0.414416 202.668 50)" stroke="currentColor" stroke-width="2"/>
7
+ <path d="M146.668 75.5L202.668 50L146.668 24.5" stroke="currentColor" stroke-width="2"/>
8
+ <rect width="82.0315" height="82.0376" transform="matrix(-0.910087 0.414416 -0.910087 -0.414416 239.996 49.9978)" stroke="currentColor" stroke-width="2"/>
9
+ <path d="M221.333 58.5L202.667 50L221.333 41.5" stroke="currentColor" stroke-width="2"/>
10
+ <rect width="41.0215" height="41.0215" transform="matrix(0.910087 -0.414416 0.910087 0.414416 53.332 102)" stroke="currentColor" stroke-width="2"/>
11
+ <path d="M109.332 76.5L53.3322 102L109.332 127.5" stroke="currentColor" stroke-width="2"/>
12
+ <rect width="82.0315" height="82.0376" transform="matrix(0.910087 -0.414416 0.910087 0.414416 16.0039 102.002)" stroke="currentColor" stroke-width="2"/>
13
+ <path d="M34.6666 93.5L53.3332 102L34.6666 110.5" stroke="currentColor" stroke-width="2"/>
14
+ <rect width="41.0215" height="41.0215" transform="matrix(-0.910087 0.414416 -0.910087 -0.414416 202.668 102)" stroke="currentColor" stroke-width="2"/>
15
+ <path d="M146.668 127.5L202.668 102L146.668 76.5" stroke="currentColor" stroke-width="2"/>
16
+ <rect width="82.0315" height="82.0376" transform="matrix(-0.910087 0.414416 -0.910087 -0.414416 239.996 101.998)" stroke="currentColor" stroke-width="2"/>
17
+ <path d="M221.333 110.5L202.667 102L221.333 93.5" stroke="currentColor" stroke-width="2"/>
18
+ <rect width="41.0215" height="41.0215" transform="matrix(0.910087 -0.414416 0.910087 0.414416 53.332 154)" stroke="currentColor" stroke-width="2"/>
19
+ <path d="M109.332 128.5L53.3322 154L109.332 179.5" stroke="currentColor" stroke-width="2"/>
20
+ <rect width="82.0315" height="82.0376" transform="matrix(0.910087 -0.414416 0.910087 0.414416 16.0039 154.002)" stroke="currentColor" stroke-width="2"/>
21
+ <path d="M34.6666 145.5L53.3332 154L34.6666 162.5" stroke="currentColor" stroke-width="2"/>
22
+ <rect width="41.0215" height="41.0215" transform="matrix(-0.910087 0.414416 -0.910087 -0.414416 202.668 154)" stroke="currentColor" stroke-width="2"/>
23
+ <path d="M146.668 179.5L202.668 154L146.668 128.5" stroke="currentColor" stroke-width="2"/>
24
+ <rect width="82.0315" height="82.0376" transform="matrix(-0.910087 0.414416 -0.910087 -0.414416 239.996 153.998)" stroke="currentColor" stroke-width="2"/>
25
+ <path d="M221.333 162.5L202.667 154L221.333 145.5" stroke="currentColor" stroke-width="2"/>
26
+ <rect width="41.0215" height="41.0215" transform="matrix(0.910087 -0.414416 0.910087 0.414416 53.332 206)" stroke="currentColor" stroke-width="2"/>
27
+ <path d="M109.332 180.5L53.3322 206L109.332 231.5" stroke="currentColor" stroke-width="2"/>
28
+ <rect width="82.0315" height="82.0376" transform="matrix(0.910087 -0.414416 0.910087 0.414416 16.0039 206.002)" stroke="currentColor" stroke-width="2"/>
29
+ <path d="M34.6666 197.5L53.3332 206L34.6666 214.5" stroke="currentColor" stroke-width="2"/>
30
+ <rect width="41.0215" height="41.0215" transform="matrix(-0.910087 0.414416 -0.910087 -0.414416 202.668 206)" stroke="currentColor" stroke-width="2"/>
31
+ <path d="M146.668 231.5L202.668 206L146.668 180.5" stroke="currentColor" stroke-width="2"/>
32
+ <rect width="82.0315" height="82.0376" transform="matrix(-0.910087 0.414416 -0.910087 -0.414416 239.996 205.998)" stroke="currentColor" stroke-width="2"/>
33
+ <path d="M221.333 214.5L202.667 206L221.333 197.5" stroke="currentColor" stroke-width="2"/>
34
+ </svg>
@@ -0,0 +1,34 @@
1
+ <svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M26.5 46.4833L16 60.7417L26.5 75M37 16L26.5 45.5L37 75" stroke="currentColor" stroke-width="6"/>
3
+ <path d="M55.5 44.5167L45 30.2583L55.5 16M66 75L55.5 45.5L66 16" stroke="currentColor" stroke-width="6"/>
4
+ <path d="M84.5 46.4833L95 60.7417L84.5 75M74 16L84.5 45.5L74 75" stroke="currentColor" stroke-width="6"/>
5
+ <path d="M113.5 46.4833L103 60.7417L113.5 75M124 16L113.5 45.5L124 75" stroke="currentColor" stroke-width="6"/>
6
+ <path d="M142.5 44.5167L153 30.2583L142.5 16M132 75L142.5 45.5L132 16" stroke="currentColor" stroke-width="6"/>
7
+ <path d="M171.5 46.4833L182 60.7417L171.5 75M161 16L171.5 45.5L161 75" stroke="currentColor" stroke-width="6"/>
8
+ <path d="M200.5 44.5167L190 30.2583L200.5 16M211 75L200.5 45.5L211 16" stroke="currentColor" stroke-width="6"/>
9
+ <path d="M229.5 44.5167L240 30.2583L229.5 16M219 75L229.5 45.5L219 16" stroke="currentColor" stroke-width="6"/>
10
+ <path d="M26.5 99.5167L16 85.2583L26.5 71M37 130L26.5 100.5L37 71" stroke="currentColor" stroke-width="6"/>
11
+ <path d="M55.5 101.483L45 115.742L55.5 130M66 71L55.5 100.5L66 130" stroke="currentColor" stroke-width="6"/>
12
+ <path d="M84.5 99.5167L95 85.2583L84.5 71M74 130L84.5 100.5L74 71" stroke="currentColor" stroke-width="6"/>
13
+ <path d="M113.5 99.5167L103 85.2583L113.5 71M124 130L113.5 100.5L124 71" stroke="currentColor" stroke-width="6"/>
14
+ <path d="M142.5 101.483L153 115.742L142.5 130M132 71L142.5 100.5L132 130" stroke="currentColor" stroke-width="6"/>
15
+ <path d="M171.5 99.5167L182 85.2583L171.5 71M161 130L171.5 100.5L161 71" stroke="currentColor" stroke-width="6"/>
16
+ <path d="M200.5 101.483L190 115.742L200.5 130M211 71L200.5 100.5L211 130" stroke="currentColor" stroke-width="6"/>
17
+ <path d="M229.5 101.483L240 115.742L229.5 130M219 71L229.5 100.5L219 130" stroke="currentColor" stroke-width="6"/>
18
+ <path d="M26.5 156.483L16 170.742L26.5 185M37 126L26.5 155.5L37 185" stroke="currentColor" stroke-width="6"/>
19
+ <path d="M55.5 154.517L45 140.258L55.5 126M66 185L55.5 155.5L66 126" stroke="currentColor" stroke-width="6"/>
20
+ <path d="M84.5 156.483L95 170.742L84.5 185M74 126L84.5 155.5L74 185" stroke="currentColor" stroke-width="6"/>
21
+ <path d="M113.5 156.483L103 170.742L113.5 185M124 126L113.5 155.5L124 185" stroke="currentColor" stroke-width="6"/>
22
+ <path d="M142.5 154.517L153 140.258L142.5 126M132 185L142.5 155.5L132 126" stroke="currentColor" stroke-width="6"/>
23
+ <path d="M171.5 156.483L182 170.742L171.5 185M161 126L171.5 155.5L161 185" stroke="currentColor" stroke-width="6"/>
24
+ <path d="M200.5 154.517L190 140.258L200.5 126M211 185L200.5 155.5L211 126" stroke="currentColor" stroke-width="6"/>
25
+ <path d="M229.5 154.517L240 140.258L229.5 126M219 185L229.5 155.5L219 126" stroke="currentColor" stroke-width="6"/>
26
+ <path d="M26.5 209.517L16 195.258L26.5 181M37 240L26.5 210.5L37 181" stroke="currentColor" stroke-width="6"/>
27
+ <path d="M55.5 211.483L45 225.742L55.5 240M66 181L55.5 210.5L66 240" stroke="currentColor" stroke-width="6"/>
28
+ <path d="M84.5 209.517L95 195.258L84.5 181M74 240L84.5 210.5L74 181" stroke="currentColor" stroke-width="6"/>
29
+ <path d="M113.5 209.517L103 195.258L113.5 181M124 240L113.5 210.5L124 181" stroke="currentColor" stroke-width="6"/>
30
+ <path d="M142.5 211.483L153 225.742L142.5 240M132 181L142.5 210.5L132 240" stroke="currentColor" stroke-width="6"/>
31
+ <path d="M171.5 209.517L182 195.258L171.5 181M161 240L171.5 210.5L161 181" stroke="currentColor" stroke-width="6"/>
32
+ <path d="M200.5 211.483L190 225.742L200.5 240M211 181L200.5 210.5L211 240" stroke="currentColor" stroke-width="6"/>
33
+ <path d="M229.5 211.483L240 225.742L229.5 240M219 181L229.5 210.5L219 240" stroke="currentColor" stroke-width="6"/>
34
+ </svg>
@@ -0,0 +1,110 @@
1
+ <svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M223.665 16.6667L238.832 26.6668L223.665 36.6667" stroke="currentColor" stroke-width="6"/>
3
+ <path d="M203.833 16.6667L219 26.6668L203.833 36.6667" stroke="currentColor" stroke-width="6"/>
4
+ <path d="M181.667 16.6667L166.5 26.6668L181.667 36.6667" stroke="currentColor" stroke-width="6"/>
5
+ <path d="M201.499 16.6667L186.332 26.6668L201.499 36.6667" stroke="currentColor" stroke-width="6"/>
6
+ <path d="M148.997 16.6667L164.164 26.6668L148.997 36.6667" stroke="currentColor" stroke-width="6"/>
7
+ <path d="M129.165 16.6667L144.332 26.6668L129.165 36.6667" stroke="currentColor" stroke-width="6"/>
8
+ <path d="M107.003 16.6667L91.8359 26.6668L107.003 36.6667" stroke="currentColor" stroke-width="6"/>
9
+ <path d="M126.835 16.6667L111.668 26.6668L126.835 36.6667" stroke="currentColor" stroke-width="6"/>
10
+ <path d="M74.3333 16.6667L89.5 26.6668L74.3333 36.6667" stroke="currentColor" stroke-width="6"/>
11
+ <path d="M54.5013 16.6667L69.668 26.6668L54.5013 36.6667" stroke="currentColor" stroke-width="6"/>
12
+ <path d="M32.3346 16.6667L17.168 26.6668L32.3346 36.6667" stroke="currentColor" stroke-width="6"/>
13
+ <path d="M52.1667 16.6667L37 26.6668L52.1667 36.6667" stroke="currentColor" stroke-width="6"/>
14
+ <path d="M219.003 42L203.836 52L219.003 62" stroke="currentColor" stroke-width="6"/>
15
+ <path d="M238.835 42L223.668 52L238.835 62" stroke="currentColor" stroke-width="6"/>
16
+ <path d="M186.333 42L201.5 52L186.333 62" stroke="currentColor" stroke-width="6"/>
17
+ <path d="M166.501 42L181.668 52L166.501 62" stroke="currentColor" stroke-width="6"/>
18
+ <path d="M144.335 42L129.168 52L144.335 62" stroke="currentColor" stroke-width="6"/>
19
+ <path d="M164.167 42L149 52L164.167 62" stroke="currentColor" stroke-width="6"/>
20
+ <path d="M111.665 42L126.832 52L111.665 62" stroke="currentColor" stroke-width="6"/>
21
+ <path d="M91.8333 42L107 52L91.8333 62" stroke="currentColor" stroke-width="6"/>
22
+ <path d="M69.6667 42L54.5 52L69.6667 62" stroke="currentColor" stroke-width="6"/>
23
+ <path d="M89.4987 42L74.332 52L89.4987 62" stroke="currentColor" stroke-width="6"/>
24
+ <path d="M36.9974 42L52.1641 52L36.9974 62" stroke="currentColor" stroke-width="6"/>
25
+ <path d="M17.1654 42L32.332 52L17.1654 62" stroke="currentColor" stroke-width="6"/>
26
+ <path d="M223.665 67.3335L238.832 77.3335L223.665 87.3335" stroke="currentColor" stroke-width="6"/>
27
+ <path d="M203.833 67.3335L219 77.3335L203.833 87.3335" stroke="currentColor" stroke-width="6"/>
28
+ <path d="M181.667 67.3335L166.5 77.3335L181.667 87.3335" stroke="currentColor" stroke-width="6"/>
29
+ <path d="M201.499 67.3335L186.332 77.3335L201.499 87.3335" stroke="currentColor" stroke-width="6"/>
30
+ <path d="M148.997 67.3335L164.164 77.3335L148.997 87.3335" stroke="currentColor" stroke-width="6"/>
31
+ <path d="M129.165 67.3335L144.332 77.3335L129.165 87.3335" stroke="currentColor" stroke-width="6"/>
32
+ <path d="M107.003 67.3335L91.8359 77.3335L107.003 87.3335" stroke="currentColor" stroke-width="6"/>
33
+ <path d="M126.835 67.3335L111.668 77.3335L126.835 87.3335" stroke="currentColor" stroke-width="6"/>
34
+ <path d="M74.3333 67.3335L89.5 77.3335L74.3333 87.3335" stroke="currentColor" stroke-width="6"/>
35
+ <path d="M54.5013 67.3335L69.668 77.3335L54.5013 87.3335" stroke="currentColor" stroke-width="6"/>
36
+ <path d="M32.3346 67.3335L17.168 77.3335L32.3346 87.3335" stroke="currentColor" stroke-width="6"/>
37
+ <path d="M52.1667 67.3335L37 77.3335L52.1667 87.3335" stroke="currentColor" stroke-width="6"/>
38
+ <path d="M219.003 92.6667L203.836 102.667L219.003 112.667" stroke="currentColor" stroke-width="6"/>
39
+ <path d="M238.835 92.6667L223.668 102.667L238.835 112.667" stroke="currentColor" stroke-width="6"/>
40
+ <path d="M186.333 92.6667L201.5 102.667L186.333 112.667" stroke="currentColor" stroke-width="6"/>
41
+ <path d="M166.501 92.6667L181.668 102.667L166.501 112.667" stroke="currentColor" stroke-width="6"/>
42
+ <path d="M144.335 92.6667L129.168 102.667L144.335 112.667" stroke="currentColor" stroke-width="6"/>
43
+ <path d="M164.167 92.6667L149 102.667L164.167 112.667" stroke="currentColor" stroke-width="6"/>
44
+ <path d="M111.665 92.6667L126.832 102.667L111.665 112.667" stroke="currentColor" stroke-width="6"/>
45
+ <path d="M91.8333 92.6667L107 102.667L91.8333 112.667" stroke="currentColor" stroke-width="6"/>
46
+ <path d="M69.6667 92.6667L54.5 102.667L69.6667 112.667" stroke="currentColor" stroke-width="6"/>
47
+ <path d="M89.4987 92.6667L74.332 102.667L89.4987 112.667" stroke="currentColor" stroke-width="6"/>
48
+ <path d="M36.9974 92.6667L52.1641 102.667L36.9974 112.667" stroke="currentColor" stroke-width="6"/>
49
+ <path d="M17.1654 92.6667L32.332 102.667L17.1654 112.667" stroke="currentColor" stroke-width="6"/>
50
+ <path d="M223.665 118L238.832 128L223.665 138" stroke="currentColor" stroke-width="6"/>
51
+ <path d="M203.833 118L219 128L203.833 138" stroke="currentColor" stroke-width="6"/>
52
+ <path d="M181.667 118L166.5 128L181.667 138" stroke="currentColor" stroke-width="6"/>
53
+ <path d="M201.499 118L186.332 128L201.499 138" stroke="currentColor" stroke-width="6"/>
54
+ <path d="M148.997 118L164.164 128L148.997 138" stroke="currentColor" stroke-width="6"/>
55
+ <path d="M129.165 118L144.332 128L129.165 138" stroke="currentColor" stroke-width="6"/>
56
+ <path d="M107.003 118L91.8359 128L107.003 138" stroke="currentColor" stroke-width="6"/>
57
+ <path d="M126.835 118L111.668 128L126.835 138" stroke="currentColor" stroke-width="6"/>
58
+ <path d="M74.3333 118L89.5 128L74.3333 138" stroke="currentColor" stroke-width="6"/>
59
+ <path d="M54.5013 118L69.668 128L54.5013 138" stroke="currentColor" stroke-width="6"/>
60
+ <path d="M32.3346 118L17.168 128L32.3346 138" stroke="currentColor" stroke-width="6"/>
61
+ <path d="M52.1667 118L37 128L52.1667 138" stroke="currentColor" stroke-width="6"/>
62
+ <path d="M219.003 143.333L203.836 153.334L219.003 163.333" stroke="currentColor" stroke-width="6"/>
63
+ <path d="M238.835 143.333L223.668 153.334L238.835 163.333" stroke="currentColor" stroke-width="6"/>
64
+ <path d="M186.333 143.333L201.5 153.334L186.333 163.333" stroke="currentColor" stroke-width="6"/>
65
+ <path d="M166.501 143.333L181.668 153.334L166.501 163.333" stroke="currentColor" stroke-width="6"/>
66
+ <path d="M144.335 143.333L129.168 153.334L144.335 163.333" stroke="currentColor" stroke-width="6"/>
67
+ <path d="M164.167 143.333L149 153.334L164.167 163.333" stroke="currentColor" stroke-width="6"/>
68
+ <path d="M111.665 143.333L126.832 153.334L111.665 163.333" stroke="currentColor" stroke-width="6"/>
69
+ <path d="M91.8333 143.333L107 153.334L91.8333 163.333" stroke="currentColor" stroke-width="6"/>
70
+ <path d="M69.6667 143.333L54.5 153.334L69.6667 163.333" stroke="currentColor" stroke-width="6"/>
71
+ <path d="M89.4987 143.333L74.332 153.334L89.4987 163.333" stroke="currentColor" stroke-width="6"/>
72
+ <path d="M36.9974 143.333L52.1641 153.334L36.9974 163.333" stroke="currentColor" stroke-width="6"/>
73
+ <path d="M17.1654 143.333L32.332 153.334L17.1654 163.333" stroke="currentColor" stroke-width="6"/>
74
+ <path d="M223.665 168.667L238.832 178.667L223.665 188.667" stroke="currentColor" stroke-width="6"/>
75
+ <path d="M203.833 168.667L219 178.667L203.833 188.667" stroke="currentColor" stroke-width="6"/>
76
+ <path d="M181.667 168.667L166.5 178.667L181.667 188.667" stroke="currentColor" stroke-width="6"/>
77
+ <path d="M201.499 168.667L186.332 178.667L201.499 188.667" stroke="currentColor" stroke-width="6"/>
78
+ <path d="M148.997 168.667L164.164 178.667L148.997 188.667" stroke="currentColor" stroke-width="6"/>
79
+ <path d="M129.165 168.667L144.332 178.667L129.165 188.667" stroke="currentColor" stroke-width="6"/>
80
+ <path d="M107.003 168.667L91.8359 178.667L107.003 188.667" stroke="currentColor" stroke-width="6"/>
81
+ <path d="M126.835 168.667L111.668 178.667L126.835 188.667" stroke="currentColor" stroke-width="6"/>
82
+ <path d="M74.3333 168.667L89.5 178.667L74.3333 188.667" stroke="currentColor" stroke-width="6"/>
83
+ <path d="M54.5013 168.667L69.668 178.667L54.5013 188.667" stroke="currentColor" stroke-width="6"/>
84
+ <path d="M32.3346 168.667L17.168 178.667L32.3346 188.667" stroke="currentColor" stroke-width="6"/>
85
+ <path d="M52.1667 168.667L37 178.667L52.1667 188.667" stroke="currentColor" stroke-width="6"/>
86
+ <path d="M219.003 194L203.836 204L219.003 214" stroke="currentColor" stroke-width="6"/>
87
+ <path d="M238.835 194L223.668 204L238.835 214" stroke="currentColor" stroke-width="6"/>
88
+ <path d="M186.333 194L201.5 204L186.333 214" stroke="currentColor" stroke-width="6"/>
89
+ <path d="M166.501 194L181.668 204L166.501 214" stroke="currentColor" stroke-width="6"/>
90
+ <path d="M144.335 194L129.168 204L144.335 214" stroke="currentColor" stroke-width="6"/>
91
+ <path d="M164.167 194L149 204L164.167 214" stroke="currentColor" stroke-width="6"/>
92
+ <path d="M111.665 194L126.832 204L111.665 214" stroke="currentColor" stroke-width="6"/>
93
+ <path d="M91.8333 194L107 204L91.8333 214" stroke="currentColor" stroke-width="6"/>
94
+ <path d="M69.6667 194L54.5 204L69.6667 214" stroke="currentColor" stroke-width="6"/>
95
+ <path d="M89.4987 194L74.332 204L89.4987 214" stroke="currentColor" stroke-width="6"/>
96
+ <path d="M36.9974 194L52.1641 204L36.9974 214" stroke="currentColor" stroke-width="6"/>
97
+ <path d="M17.1654 194L32.332 204L17.1654 214" stroke="currentColor" stroke-width="6"/>
98
+ <path d="M223.665 219.333L238.832 229.334L223.665 239.333" stroke="currentColor" stroke-width="6"/>
99
+ <path d="M203.833 219.333L219 229.334L203.833 239.333" stroke="currentColor" stroke-width="6"/>
100
+ <path d="M181.667 219.333L166.5 229.334L181.667 239.333" stroke="currentColor" stroke-width="6"/>
101
+ <path d="M201.499 219.333L186.332 229.334L201.499 239.333" stroke="currentColor" stroke-width="6"/>
102
+ <path d="M148.997 219.333L164.164 229.334L148.997 239.333" stroke="currentColor" stroke-width="6"/>
103
+ <path d="M129.165 219.333L144.332 229.334L129.165 239.333" stroke="currentColor" stroke-width="6"/>
104
+ <path d="M107.003 219.333L91.8359 229.334L107.003 239.333" stroke="currentColor" stroke-width="6"/>
105
+ <path d="M126.835 219.333L111.668 229.334L126.835 239.333" stroke="currentColor" stroke-width="6"/>
106
+ <path d="M74.3333 219.333L89.5 229.334L74.3333 239.333" stroke="currentColor" stroke-width="6"/>
107
+ <path d="M54.5013 219.333L69.668 229.334L54.5013 239.333" stroke="currentColor" stroke-width="6"/>
108
+ <path d="M32.3346 219.333L17.168 229.334L32.3346 239.333" stroke="currentColor" stroke-width="6"/>
109
+ <path d="M52.1667 219.333L37 229.334L52.1667 239.333" stroke="currentColor" stroke-width="6"/>
110
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M68.5 20.5L19.75 88L68.5 155.5" stroke="currentColor" stroke-width="6"/>
3
+ <path d="M132.25 20.5L83.5 88L132.25 155.5" stroke="currentColor" stroke-width="6"/>
4
+ <path d="M187.5 20.5L236.25 88L187.5 155.5" stroke="currentColor" stroke-width="6"/>
5
+ <path d="M123.75 20.5L172.5 88L123.75 155.5" stroke="currentColor" stroke-width="6"/>
6
+ <path d="M68.5 100.5L19.75 168L68.5 235.5" stroke="currentColor" stroke-width="6"/>
7
+ <path d="M132.25 100.5L83.5 168L132.25 235.5" stroke="currentColor" stroke-width="6"/>
8
+ <path d="M187.5 100.5L236.25 168L187.5 235.5" stroke="currentColor" stroke-width="6"/>
9
+ <path d="M123.75 100.5L172.5 168L123.75 235.5" stroke="currentColor" stroke-width="6"/>
10
+ </svg>
@@ -0,0 +1,62 @@
1
+ <svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M46.3346 16.7L18.168 27.2L46.3346 37.6999" stroke="currentColor" stroke-width="2"/>
3
+ <path d="M83.1667 16.7L55 27.2L83.1667 37.6999" stroke="currentColor" stroke-width="2"/>
4
+ <path d="M54.9974 39.0999L83.1641 49.5999L54.9974 60.0999" stroke="currentColor" stroke-width="2"/>
5
+ <path d="M18.1654 39.0999L46.332 49.5999L18.1654 60.0999" stroke="currentColor" stroke-width="2"/>
6
+ <path d="M46.3346 61.5L18.168 72L46.3346 82.5" stroke="currentColor" stroke-width="2"/>
7
+ <path d="M83.1667 61.5L55 72L83.1667 82.5" stroke="currentColor" stroke-width="2"/>
8
+ <path d="M46.3346 83.8999L18.168 94.3999L46.3346 104.9" stroke="currentColor" stroke-width="2"/>
9
+ <path d="M83.1667 83.8999L55 94.3999L83.1667 104.9" stroke="currentColor" stroke-width="2"/>
10
+ <path d="M54.9974 106.3L83.1641 116.8L54.9974 127.3" stroke="currentColor" stroke-width="2"/>
11
+ <path d="M18.1654 106.3L46.332 116.8L18.1654 127.3" stroke="currentColor" stroke-width="2"/>
12
+ <path d="M46.3346 128.7L18.168 139.2L46.3346 149.7" stroke="currentColor" stroke-width="2"/>
13
+ <path d="M83.1667 128.7L55 139.2L83.1667 149.7" stroke="currentColor" stroke-width="2"/>
14
+ <path d="M54.9974 151.1L83.1641 161.6L54.9974 172.1" stroke="currentColor" stroke-width="2"/>
15
+ <path d="M18.1654 151.1L46.332 161.6L18.1654 172.1" stroke="currentColor" stroke-width="2"/>
16
+ <path d="M46.3346 173.5L18.168 184L46.3346 194.5" stroke="currentColor" stroke-width="2"/>
17
+ <path d="M83.1667 173.5L55 184L83.1667 194.5" stroke="currentColor" stroke-width="2"/>
18
+ <path d="M46.3346 195.9L18.168 206.4L46.3346 216.9" stroke="currentColor" stroke-width="2"/>
19
+ <path d="M83.1667 195.9L55 206.4L83.1667 216.9" stroke="currentColor" stroke-width="2"/>
20
+ <path d="M46.3346 218.3L18.168 228.8L46.3346 239.3" stroke="currentColor" stroke-width="2"/>
21
+ <path d="M83.1667 218.3L55 228.8L83.1667 239.3" stroke="currentColor" stroke-width="2"/>
22
+ <path d="M132.329 16.7L160.496 27.2L132.329 37.6999" stroke="currentColor" stroke-width="2"/>
23
+ <path d="M95.4974 16.7L123.664 27.2L95.4974 37.6999" stroke="currentColor" stroke-width="2"/>
24
+ <path d="M123.667 39.0999L95.5 49.5999L123.667 60.0999" stroke="currentColor" stroke-width="2"/>
25
+ <path d="M160.499 39.0999L132.332 49.5999L160.499 60.0999" stroke="currentColor" stroke-width="2"/>
26
+ <path d="M132.329 61.5L160.496 72L132.329 82.5" stroke="currentColor" stroke-width="2"/>
27
+ <path d="M95.4974 61.5L123.664 72L95.4974 82.5" stroke="currentColor" stroke-width="2"/>
28
+ <path d="M132.329 83.8999L160.496 94.3999L132.329 104.9" stroke="currentColor" stroke-width="2"/>
29
+ <path d="M95.4974 83.8999L123.664 94.3999L95.4974 104.9" stroke="currentColor" stroke-width="2"/>
30
+ <path d="M123.667 106.3L95.5 116.8L123.667 127.3" stroke="currentColor" stroke-width="2"/>
31
+ <path d="M160.499 106.3L132.332 116.8L160.499 127.3" stroke="currentColor" stroke-width="2"/>
32
+ <path d="M132.329 128.7L160.496 139.2L132.329 149.7" stroke="currentColor" stroke-width="2"/>
33
+ <path d="M95.4974 128.7L123.664 139.2L95.4974 149.7" stroke="currentColor" stroke-width="2"/>
34
+ <path d="M123.667 151.1L95.5 161.6L123.667 172.1" stroke="currentColor" stroke-width="2"/>
35
+ <path d="M160.499 151.1L132.332 161.6L160.499 172.1" stroke="currentColor" stroke-width="2"/>
36
+ <path d="M132.329 173.5L160.496 184L132.329 194.5" stroke="currentColor" stroke-width="2"/>
37
+ <path d="M95.4974 173.5L123.664 184L95.4974 194.5" stroke="currentColor" stroke-width="2"/>
38
+ <path d="M132.329 195.9L160.496 206.4L132.329 216.9" stroke="currentColor" stroke-width="2"/>
39
+ <path d="M95.4974 195.9L123.664 206.4L95.4974 216.9" stroke="currentColor" stroke-width="2"/>
40
+ <path d="M132.329 218.3L160.496 228.8L132.329 239.3" stroke="currentColor" stroke-width="2"/>
41
+ <path d="M95.4974 218.3L123.664 228.8L95.4974 239.3" stroke="currentColor" stroke-width="2"/>
42
+ <path d="M209.665 16.7L237.832 27.2L209.665 37.6999" stroke="currentColor" stroke-width="2"/>
43
+ <path d="M172.833 16.7L201 27.2L172.833 37.6999" stroke="currentColor" stroke-width="2"/>
44
+ <path d="M201.003 39.0999L172.836 49.5999L201.003 60.0999" stroke="currentColor" stroke-width="2"/>
45
+ <path d="M237.835 39.0999L209.668 49.5999L237.835 60.0999" stroke="currentColor" stroke-width="2"/>
46
+ <path d="M209.665 61.5L237.832 72L209.665 82.5" stroke="currentColor" stroke-width="2"/>
47
+ <path d="M172.833 61.5L201 72L172.833 82.5" stroke="currentColor" stroke-width="2"/>
48
+ <path d="M209.665 83.8999L237.832 94.3999L209.665 104.9" stroke="currentColor" stroke-width="2"/>
49
+ <path d="M172.833 83.8999L201 94.3999L172.833 104.9" stroke="currentColor" stroke-width="2"/>
50
+ <path d="M201.003 106.3L172.836 116.8L201.003 127.3" stroke="currentColor" stroke-width="2"/>
51
+ <path d="M237.835 106.3L209.668 116.8L237.835 127.3" stroke="currentColor" stroke-width="2"/>
52
+ <path d="M209.665 128.7L237.832 139.2L209.665 149.7" stroke="currentColor" stroke-width="2"/>
53
+ <path d="M172.833 128.7L201 139.2L172.833 149.7" stroke="currentColor" stroke-width="2"/>
54
+ <path d="M201.003 151.1L172.836 161.6L201.003 172.1" stroke="currentColor" stroke-width="2"/>
55
+ <path d="M237.835 151.1L209.668 161.6L237.835 172.1" stroke="currentColor" stroke-width="2"/>
56
+ <path d="M209.665 173.5L237.832 184L209.665 194.5" stroke="currentColor" stroke-width="2"/>
57
+ <path d="M172.833 173.5L201 184L172.833 194.5" stroke="currentColor" stroke-width="2"/>
58
+ <path d="M209.665 195.9L237.832 206.4L209.665 216.9" stroke="currentColor" stroke-width="2"/>
59
+ <path d="M172.833 195.9L201 206.4L172.833 216.9" stroke="currentColor" stroke-width="2"/>
60
+ <path d="M209.665 218.3L237.832 228.8L209.665 239.3" stroke="currentColor" stroke-width="2"/>
61
+ <path d="M172.833 218.3L201 228.8L172.833 239.3" stroke="currentColor" stroke-width="2"/>
62
+ </svg>
@@ -0,0 +1,66 @@
1
+ <svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="27.3945" y="37.0388" width="21.1039" height="38.961" stroke="currentColor" stroke-width="4"/>
3
+ <path d="M59.0508 37.0388H27.3949V95.4804" stroke="currentColor" stroke-width="4"/>
4
+ <rect x="16.8438" y="17.5635" width="42.2018" height="77.9169" stroke="currentColor" stroke-width="4"/>
5
+ <path d="M27.3957 17.5583V37.0389H16.8438" stroke="currentColor" stroke-width="4"/>
6
+ <rect x="69.6055" y="114.961" width="21.1039" height="38.961" transform="rotate(180 69.6055 114.961)" stroke="currentColor" stroke-width="4"/>
7
+ <path d="M37.9492 114.961H69.6051V56.5196" stroke="currentColor" stroke-width="4"/>
8
+ <rect x="80.1562" y="134.437" width="42.2018" height="77.9169" transform="rotate(180 80.1562 134.437)" stroke="currentColor" stroke-width="4"/>
9
+ <path d="M69.6043 134.442V114.961H80.1562" stroke="currentColor" stroke-width="4"/>
10
+ <rect x="27.3945" y="141.039" width="21.1039" height="38.961" stroke="currentColor" stroke-width="4"/>
11
+ <path d="M59.0508 141.039H27.3949V199.48" stroke="currentColor" stroke-width="4"/>
12
+ <rect x="16.8438" y="121.563" width="42.2018" height="77.9169" stroke="currentColor" stroke-width="4"/>
13
+ <path d="M27.3957 121.558V141.039H16.8438" stroke="currentColor" stroke-width="4"/>
14
+ <rect x="69.6055" y="218.961" width="21.1039" height="38.961" transform="rotate(180 69.6055 218.961)" stroke="currentColor" stroke-width="4"/>
15
+ <path d="M37.9492 218.961H69.6051V160.52" stroke="currentColor" stroke-width="4"/>
16
+ <rect x="80.1562" y="238.437" width="42.2018" height="77.9169" transform="rotate(180 80.1562 238.437)" stroke="currentColor" stroke-width="4"/>
17
+ <path d="M69.6043 238.442V218.961H80.1562" stroke="currentColor" stroke-width="4"/>
18
+ <rect width="21.1039" height="38.961" transform="matrix(-1 0 0 1 122.605 37.0388)" stroke="currentColor" stroke-width="4"/>
19
+ <path d="M90.9492 37.0388H122.605V95.4804" stroke="currentColor" stroke-width="4"/>
20
+ <rect width="42.2018" height="77.9169" transform="matrix(-1 0 0 1 133.156 17.5635)" stroke="currentColor" stroke-width="4"/>
21
+ <path d="M122.604 17.5583V37.0389H133.156" stroke="currentColor" stroke-width="4"/>
22
+ <rect width="21.1039" height="38.961" transform="matrix(1 0 0 -1 80.3945 114.961)" stroke="currentColor" stroke-width="4"/>
23
+ <path d="M112.051 114.961H80.3949V56.5196" stroke="currentColor" stroke-width="4"/>
24
+ <rect width="42.2018" height="77.9169" transform="matrix(1 0 0 -1 69.8438 134.437)" stroke="currentColor" stroke-width="4"/>
25
+ <path d="M80.3957 134.442V114.961H69.8438" stroke="currentColor" stroke-width="4"/>
26
+ <rect width="21.1039" height="38.961" transform="matrix(-1 0 0 1 122.605 141.039)" stroke="currentColor" stroke-width="4"/>
27
+ <path d="M90.9492 141.039H122.605V199.48" stroke="currentColor" stroke-width="4"/>
28
+ <rect width="42.2018" height="77.9169" transform="matrix(-1 0 0 1 133.156 121.563)" stroke="currentColor" stroke-width="4"/>
29
+ <path d="M122.604 121.558V141.039H133.156" stroke="currentColor" stroke-width="4"/>
30
+ <rect width="21.1039" height="38.961" transform="matrix(1 0 0 -1 80.3945 218.961)" stroke="currentColor" stroke-width="4"/>
31
+ <path d="M112.051 218.961H80.3949V160.52" stroke="currentColor" stroke-width="4"/>
32
+ <rect width="42.2018" height="77.9169" transform="matrix(1 0 0 -1 69.8438 238.437)" stroke="currentColor" stroke-width="4"/>
33
+ <path d="M80.3957 238.442V218.961H69.8438" stroke="currentColor" stroke-width="4"/>
34
+ <rect x="133.395" y="37.0388" width="21.1039" height="38.961" stroke="currentColor" stroke-width="4"/>
35
+ <path d="M165.051 37.0388H133.395V95.4804" stroke="currentColor" stroke-width="4"/>
36
+ <rect x="122.844" y="17.5635" width="42.2018" height="77.9169" stroke="currentColor" stroke-width="4"/>
37
+ <path d="M133.396 17.5583V37.0389H122.844" stroke="currentColor" stroke-width="4"/>
38
+ <rect x="175.605" y="114.961" width="21.1039" height="38.961" transform="rotate(180 175.605 114.961)" stroke="currentColor" stroke-width="4"/>
39
+ <path d="M143.949 114.961H175.605V56.5196" stroke="currentColor" stroke-width="4"/>
40
+ <rect x="186.156" y="134.437" width="42.2018" height="77.9169" transform="rotate(180 186.156 134.437)" stroke="currentColor" stroke-width="4"/>
41
+ <path d="M175.604 134.442V114.961H186.156" stroke="currentColor" stroke-width="4"/>
42
+ <rect x="133.395" y="141.039" width="21.1039" height="38.961" stroke="currentColor" stroke-width="4"/>
43
+ <path d="M165.051 141.039H133.395V199.48" stroke="currentColor" stroke-width="4"/>
44
+ <rect x="122.844" y="121.563" width="42.2018" height="77.9169" stroke="currentColor" stroke-width="4"/>
45
+ <path d="M133.396 121.558V141.039H122.844" stroke="currentColor" stroke-width="4"/>
46
+ <rect x="175.605" y="218.961" width="21.1039" height="38.961" transform="rotate(180 175.605 218.961)" stroke="currentColor" stroke-width="4"/>
47
+ <path d="M143.949 218.961H175.605V160.52" stroke="currentColor" stroke-width="4"/>
48
+ <rect x="186.156" y="238.437" width="42.2018" height="77.9169" transform="rotate(180 186.156 238.437)" stroke="currentColor" stroke-width="4"/>
49
+ <path d="M175.604 238.442V218.961H186.156" stroke="currentColor" stroke-width="4"/>
50
+ <rect width="21.1039" height="38.961" transform="matrix(-1 0 0 1 228.605 37.0388)" stroke="currentColor" stroke-width="4"/>
51
+ <path d="M196.949 37.0388H228.605V95.4804" stroke="currentColor" stroke-width="4"/>
52
+ <rect width="42.2018" height="77.9169" transform="matrix(-1 0 0 1 239.156 17.5635)" stroke="currentColor" stroke-width="4"/>
53
+ <path d="M228.604 17.5583V37.0389H239.156" stroke="currentColor" stroke-width="4"/>
54
+ <rect width="21.1039" height="38.961" transform="matrix(1 0 0 -1 186.395 114.961)" stroke="currentColor" stroke-width="4"/>
55
+ <path d="M218.051 114.961H186.395V56.5196" stroke="currentColor" stroke-width="4"/>
56
+ <rect width="42.2018" height="77.9169" transform="matrix(1 0 0 -1 175.844 134.437)" stroke="currentColor" stroke-width="4"/>
57
+ <path d="M186.396 134.442V114.961H175.844" stroke="currentColor" stroke-width="4"/>
58
+ <rect width="21.1039" height="38.961" transform="matrix(-1 0 0 1 228.605 141.039)" stroke="currentColor" stroke-width="4"/>
59
+ <path d="M196.949 141.039H228.605V199.48" stroke="currentColor" stroke-width="4"/>
60
+ <rect width="42.2018" height="77.9169" transform="matrix(-1 0 0 1 239.156 121.563)" stroke="currentColor" stroke-width="4"/>
61
+ <path d="M228.604 121.558V141.039H239.156" stroke="currentColor" stroke-width="4"/>
62
+ <rect width="21.1039" height="38.961" transform="matrix(1 0 0 -1 186.395 218.961)" stroke="currentColor" stroke-width="4"/>
63
+ <path d="M218.051 218.961H186.395V160.52" stroke="currentColor" stroke-width="4"/>
64
+ <rect width="42.2018" height="77.9169" transform="matrix(1 0 0 -1 175.844 238.437)" stroke="currentColor" stroke-width="4"/>
65
+ <path d="M186.396 238.442V218.961H175.844" stroke="currentColor" stroke-width="4"/>
66
+ </svg>
@@ -0,0 +1,130 @@
1
+ <svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="20.4314" height="20.4314" transform="matrix(0.554699 -0.832051 0.554699 0.832051 27.332 50)" stroke="currentColor" stroke-width="2"/>
3
+ <path d="M44.332 24.5L27.3321 50L44.332 75.5" stroke="currentColor" stroke-width="2"/>
4
+ <rect width="40.8571" height="40.8601" transform="matrix(0.554699 -0.832051 0.554699 0.832051 16 50.0022)" stroke="currentColor" stroke-width="2"/>
5
+ <path d="M21.6666 41.5L27.3333 50L21.6666 58.5" stroke="currentColor" stroke-width="2"/>
6
+ <rect width="20.4314" height="20.4314" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 72.668 50)" stroke="currentColor" stroke-width="2"/>
7
+ <path d="M55.668 75.5L72.6679 50L55.668 24.5" stroke="currentColor" stroke-width="2"/>
8
+ <rect width="40.8571" height="40.8601" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 84 49.9978)" stroke="currentColor" stroke-width="2"/>
9
+ <path d="M78.3334 58.5L72.6667 50L78.3334 41.5" stroke="currentColor" stroke-width="2"/>
10
+ <rect width="20.4314" height="20.4314" transform="matrix(0.554699 -0.832051 0.554699 0.832051 27.332 102)" stroke="currentColor" stroke-width="2"/>
11
+ <path d="M44.332 76.5L27.3321 102L44.332 127.5" stroke="currentColor" stroke-width="2"/>
12
+ <rect width="40.8571" height="40.8601" transform="matrix(0.554699 -0.832051 0.554699 0.832051 16 102.002)" stroke="currentColor" stroke-width="2"/>
13
+ <path d="M21.6666 93.5L27.3333 102L21.6666 110.5" stroke="currentColor" stroke-width="2"/>
14
+ <rect width="20.4314" height="20.4314" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 72.668 102)" stroke="currentColor" stroke-width="2"/>
15
+ <path d="M55.668 127.5L72.6679 102L55.668 76.5" stroke="currentColor" stroke-width="2"/>
16
+ <rect width="40.8571" height="40.8601" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 84 101.998)" stroke="currentColor" stroke-width="2"/>
17
+ <path d="M78.3334 110.5L72.6667 102L78.3334 93.5" stroke="currentColor" stroke-width="2"/>
18
+ <rect width="20.4314" height="20.4314" transform="matrix(0.554699 -0.832051 0.554699 0.832051 27.332 154)" stroke="currentColor" stroke-width="2"/>
19
+ <path d="M44.332 128.5L27.3321 154L44.332 179.5" stroke="currentColor" stroke-width="2"/>
20
+ <rect width="40.8571" height="40.8601" transform="matrix(0.554699 -0.832051 0.554699 0.832051 16 154.002)" stroke="currentColor" stroke-width="2"/>
21
+ <path d="M21.6666 145.5L27.3333 154L21.6666 162.5" stroke="currentColor" stroke-width="2"/>
22
+ <rect width="20.4314" height="20.4314" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 72.668 154)" stroke="currentColor" stroke-width="2"/>
23
+ <path d="M55.668 179.5L72.6679 154L55.668 128.5" stroke="currentColor" stroke-width="2"/>
24
+ <rect width="40.8571" height="40.8601" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 84 153.998)" stroke="currentColor" stroke-width="2"/>
25
+ <path d="M78.3334 162.5L72.6667 154L78.3334 145.5" stroke="currentColor" stroke-width="2"/>
26
+ <rect width="20.4314" height="20.4314" transform="matrix(0.554699 -0.832051 0.554699 0.832051 27.332 206)" stroke="currentColor" stroke-width="2"/>
27
+ <path d="M44.332 180.5L27.3321 206L44.332 231.5" stroke="currentColor" stroke-width="2"/>
28
+ <rect width="40.8571" height="40.8601" transform="matrix(0.554699 -0.832051 0.554699 0.832051 16 206.002)" stroke="currentColor" stroke-width="2"/>
29
+ <path d="M21.6666 197.5L27.3333 206L21.6666 214.5" stroke="currentColor" stroke-width="2"/>
30
+ <rect width="20.4314" height="20.4314" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 72.668 206)" stroke="currentColor" stroke-width="2"/>
31
+ <path d="M55.668 231.5L72.6679 206L55.668 180.5" stroke="currentColor" stroke-width="2"/>
32
+ <rect width="40.8571" height="40.8601" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 84 205.998)" stroke="currentColor" stroke-width="2"/>
33
+ <path d="M78.3334 214.5L72.6667 206L78.3334 197.5" stroke="currentColor" stroke-width="2"/>
34
+ <rect width="20.4314" height="20.4314" transform="matrix(0.554699 -0.832051 0.554699 0.832051 79.332 50)" stroke="currentColor" stroke-width="2"/>
35
+ <path d="M96.332 24.5L79.3321 50L96.332 75.5" stroke="currentColor" stroke-width="2"/>
36
+ <rect width="40.8571" height="40.8601" transform="matrix(0.554699 -0.832051 0.554699 0.832051 68 50.0022)" stroke="currentColor" stroke-width="2"/>
37
+ <path d="M73.6666 41.5L79.3333 50L73.6666 58.5" stroke="currentColor" stroke-width="2"/>
38
+ <rect width="20.4314" height="20.4314" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 124.668 50)" stroke="currentColor" stroke-width="2"/>
39
+ <path d="M107.668 75.5L124.668 50L107.668 24.5" stroke="currentColor" stroke-width="2"/>
40
+ <rect width="40.8571" height="40.8601" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 136 49.9978)" stroke="currentColor" stroke-width="2"/>
41
+ <path d="M130.333 58.5L124.667 50L130.333 41.5" stroke="currentColor" stroke-width="2"/>
42
+ <rect width="20.4314" height="20.4314" transform="matrix(0.554699 -0.832051 0.554699 0.832051 79.332 102)" stroke="currentColor" stroke-width="2"/>
43
+ <path d="M96.332 76.5L79.3321 102L96.332 127.5" stroke="currentColor" stroke-width="2"/>
44
+ <rect width="40.8571" height="40.8601" transform="matrix(0.554699 -0.832051 0.554699 0.832051 68 102.002)" stroke="currentColor" stroke-width="2"/>
45
+ <path d="M73.6666 93.5L79.3333 102L73.6666 110.5" stroke="currentColor" stroke-width="2"/>
46
+ <rect width="20.4314" height="20.4314" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 124.668 102)" stroke="currentColor" stroke-width="2"/>
47
+ <path d="M107.668 127.5L124.668 102L107.668 76.5" stroke="currentColor" stroke-width="2"/>
48
+ <rect width="40.8571" height="40.8601" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 136 101.998)" stroke="currentColor" stroke-width="2"/>
49
+ <path d="M130.333 110.5L124.667 102L130.333 93.5" stroke="currentColor" stroke-width="2"/>
50
+ <rect width="20.4314" height="20.4314" transform="matrix(0.554699 -0.832051 0.554699 0.832051 79.332 154)" stroke="currentColor" stroke-width="2"/>
51
+ <path d="M96.332 128.5L79.3321 154L96.332 179.5" stroke="currentColor" stroke-width="2"/>
52
+ <rect width="40.8571" height="40.8601" transform="matrix(0.554699 -0.832051 0.554699 0.832051 68 154.002)" stroke="currentColor" stroke-width="2"/>
53
+ <path d="M73.6666 145.5L79.3333 154L73.6666 162.5" stroke="currentColor" stroke-width="2"/>
54
+ <rect width="20.4314" height="20.4314" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 124.668 154)" stroke="currentColor" stroke-width="2"/>
55
+ <path d="M107.668 179.5L124.668 154L107.668 128.5" stroke="currentColor" stroke-width="2"/>
56
+ <rect width="40.8571" height="40.8601" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 136 153.998)" stroke="currentColor" stroke-width="2"/>
57
+ <path d="M130.333 162.5L124.667 154L130.333 145.5" stroke="currentColor" stroke-width="2"/>
58
+ <rect width="20.4314" height="20.4314" transform="matrix(0.554699 -0.832051 0.554699 0.832051 79.332 206)" stroke="currentColor" stroke-width="2"/>
59
+ <path d="M96.332 180.5L79.3321 206L96.332 231.5" stroke="currentColor" stroke-width="2"/>
60
+ <rect width="40.8571" height="40.8601" transform="matrix(0.554699 -0.832051 0.554699 0.832051 68 206.002)" stroke="currentColor" stroke-width="2"/>
61
+ <path d="M73.6666 197.5L79.3333 206L73.6666 214.5" stroke="currentColor" stroke-width="2"/>
62
+ <rect width="20.4314" height="20.4314" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 124.668 206)" stroke="currentColor" stroke-width="2"/>
63
+ <path d="M107.668 231.5L124.668 206L107.668 180.5" stroke="currentColor" stroke-width="2"/>
64
+ <rect width="40.8571" height="40.8601" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 136 205.998)" stroke="currentColor" stroke-width="2"/>
65
+ <path d="M130.333 214.5L124.667 206L130.333 197.5" stroke="currentColor" stroke-width="2"/>
66
+ <rect width="20.4314" height="20.4314" transform="matrix(0.554699 -0.832051 0.554699 0.832051 131.332 50)" stroke="currentColor" stroke-width="2"/>
67
+ <path d="M148.332 24.5L131.332 50L148.332 75.5" stroke="currentColor" stroke-width="2"/>
68
+ <rect width="40.8571" height="40.8601" transform="matrix(0.554699 -0.832051 0.554699 0.832051 120 50.0022)" stroke="currentColor" stroke-width="2"/>
69
+ <path d="M125.667 41.5L131.333 50L125.667 58.5" stroke="currentColor" stroke-width="2"/>
70
+ <rect width="20.4314" height="20.4314" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 176.668 50)" stroke="currentColor" stroke-width="2"/>
71
+ <path d="M159.668 75.5L176.668 50L159.668 24.5" stroke="currentColor" stroke-width="2"/>
72
+ <rect width="40.8571" height="40.8601" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 188 49.9978)" stroke="currentColor" stroke-width="2"/>
73
+ <path d="M182.333 58.5L176.667 50L182.333 41.5" stroke="currentColor" stroke-width="2"/>
74
+ <rect width="20.4314" height="20.4314" transform="matrix(0.554699 -0.832051 0.554699 0.832051 131.332 102)" stroke="currentColor" stroke-width="2"/>
75
+ <path d="M148.332 76.5L131.332 102L148.332 127.5" stroke="currentColor" stroke-width="2"/>
76
+ <rect width="40.8571" height="40.8601" transform="matrix(0.554699 -0.832051 0.554699 0.832051 120 102.002)" stroke="currentColor" stroke-width="2"/>
77
+ <path d="M125.667 93.5L131.333 102L125.667 110.5" stroke="currentColor" stroke-width="2"/>
78
+ <rect width="20.4314" height="20.4314" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 176.668 102)" stroke="currentColor" stroke-width="2"/>
79
+ <path d="M159.668 127.5L176.668 102L159.668 76.5" stroke="currentColor" stroke-width="2"/>
80
+ <rect width="40.8571" height="40.8601" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 188 101.998)" stroke="currentColor" stroke-width="2"/>
81
+ <path d="M182.333 110.5L176.667 102L182.333 93.5" stroke="currentColor" stroke-width="2"/>
82
+ <rect width="20.4314" height="20.4314" transform="matrix(0.554699 -0.832051 0.554699 0.832051 131.332 154)" stroke="currentColor" stroke-width="2"/>
83
+ <path d="M148.332 128.5L131.332 154L148.332 179.5" stroke="currentColor" stroke-width="2"/>
84
+ <rect width="40.8571" height="40.8601" transform="matrix(0.554699 -0.832051 0.554699 0.832051 120 154.002)" stroke="currentColor" stroke-width="2"/>
85
+ <path d="M125.667 145.5L131.333 154L125.667 162.5" stroke="currentColor" stroke-width="2"/>
86
+ <rect width="20.4314" height="20.4314" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 176.668 154)" stroke="currentColor" stroke-width="2"/>
87
+ <path d="M159.668 179.5L176.668 154L159.668 128.5" stroke="currentColor" stroke-width="2"/>
88
+ <rect width="40.8571" height="40.8601" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 188 153.998)" stroke="currentColor" stroke-width="2"/>
89
+ <path d="M182.333 162.5L176.667 154L182.333 145.5" stroke="currentColor" stroke-width="2"/>
90
+ <rect width="20.4314" height="20.4314" transform="matrix(0.554699 -0.832051 0.554699 0.832051 131.332 206)" stroke="currentColor" stroke-width="2"/>
91
+ <path d="M148.332 180.5L131.332 206L148.332 231.5" stroke="currentColor" stroke-width="2"/>
92
+ <rect width="40.8571" height="40.8601" transform="matrix(0.554699 -0.832051 0.554699 0.832051 120 206.002)" stroke="currentColor" stroke-width="2"/>
93
+ <path d="M125.667 197.5L131.333 206L125.667 214.5" stroke="currentColor" stroke-width="2"/>
94
+ <rect width="20.4314" height="20.4314" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 176.668 206)" stroke="currentColor" stroke-width="2"/>
95
+ <path d="M159.668 231.5L176.668 206L159.668 180.5" stroke="currentColor" stroke-width="2"/>
96
+ <rect width="40.8571" height="40.8601" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 188 205.998)" stroke="currentColor" stroke-width="2"/>
97
+ <path d="M182.333 214.5L176.667 206L182.333 197.5" stroke="currentColor" stroke-width="2"/>
98
+ <rect width="20.4314" height="20.4314" transform="matrix(0.554699 -0.832051 0.554699 0.832051 183.332 50)" stroke="currentColor" stroke-width="2"/>
99
+ <path d="M200.332 24.5L183.332 50L200.332 75.5" stroke="currentColor" stroke-width="2"/>
100
+ <rect width="40.8571" height="40.8601" transform="matrix(0.554699 -0.832051 0.554699 0.832051 172 50.0022)" stroke="currentColor" stroke-width="2"/>
101
+ <path d="M177.667 41.5L183.333 50L177.667 58.5" stroke="currentColor" stroke-width="2"/>
102
+ <rect width="20.4314" height="20.4314" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 228.668 50)" stroke="currentColor" stroke-width="2"/>
103
+ <path d="M211.668 75.5L228.668 50L211.668 24.5" stroke="currentColor" stroke-width="2"/>
104
+ <rect width="40.8571" height="40.8601" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 240 49.9978)" stroke="currentColor" stroke-width="2"/>
105
+ <path d="M234.333 58.5L228.667 50L234.333 41.5" stroke="currentColor" stroke-width="2"/>
106
+ <rect width="20.4314" height="20.4314" transform="matrix(0.554699 -0.832051 0.554699 0.832051 183.332 102)" stroke="currentColor" stroke-width="2"/>
107
+ <path d="M200.332 76.5L183.332 102L200.332 127.5" stroke="currentColor" stroke-width="2"/>
108
+ <rect width="40.8571" height="40.8601" transform="matrix(0.554699 -0.832051 0.554699 0.832051 172 102.002)" stroke="currentColor" stroke-width="2"/>
109
+ <path d="M177.667 93.5L183.333 102L177.667 110.5" stroke="currentColor" stroke-width="2"/>
110
+ <rect width="20.4314" height="20.4314" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 228.668 102)" stroke="currentColor" stroke-width="2"/>
111
+ <path d="M211.668 127.5L228.668 102L211.668 76.5" stroke="currentColor" stroke-width="2"/>
112
+ <rect width="40.8571" height="40.8601" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 240 101.998)" stroke="currentColor" stroke-width="2"/>
113
+ <path d="M234.333 110.5L228.667 102L234.333 93.5" stroke="currentColor" stroke-width="2"/>
114
+ <rect width="20.4314" height="20.4314" transform="matrix(0.554699 -0.832051 0.554699 0.832051 183.332 154)" stroke="currentColor" stroke-width="2"/>
115
+ <path d="M200.332 128.5L183.332 154L200.332 179.5" stroke="currentColor" stroke-width="2"/>
116
+ <rect width="40.8571" height="40.8601" transform="matrix(0.554699 -0.832051 0.554699 0.832051 172 154.002)" stroke="currentColor" stroke-width="2"/>
117
+ <path d="M177.667 145.5L183.333 154L177.667 162.5" stroke="currentColor" stroke-width="2"/>
118
+ <rect width="20.4314" height="20.4314" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 228.668 154)" stroke="currentColor" stroke-width="2"/>
119
+ <path d="M211.668 179.5L228.668 154L211.668 128.5" stroke="currentColor" stroke-width="2"/>
120
+ <rect width="40.8571" height="40.8601" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 240 153.998)" stroke="currentColor" stroke-width="2"/>
121
+ <path d="M234.333 162.5L228.667 154L234.333 145.5" stroke="currentColor" stroke-width="2"/>
122
+ <rect width="20.4314" height="20.4314" transform="matrix(0.554699 -0.832051 0.554699 0.832051 183.332 206)" stroke="currentColor" stroke-width="2"/>
123
+ <path d="M200.332 180.5L183.332 206L200.332 231.5" stroke="currentColor" stroke-width="2"/>
124
+ <rect width="40.8571" height="40.8601" transform="matrix(0.554699 -0.832051 0.554699 0.832051 172 206.002)" stroke="currentColor" stroke-width="2"/>
125
+ <path d="M177.667 197.5L183.333 206L177.667 214.5" stroke="currentColor" stroke-width="2"/>
126
+ <rect width="20.4314" height="20.4314" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 228.668 206)" stroke="currentColor" stroke-width="2"/>
127
+ <path d="M211.668 231.5L228.668 206L211.668 180.5" stroke="currentColor" stroke-width="2"/>
128
+ <rect width="40.8571" height="40.8601" transform="matrix(-0.554699 0.832051 -0.554699 -0.832051 240 205.998)" stroke="currentColor" stroke-width="2"/>
129
+ <path d="M234.333 214.5L228.667 206L234.333 197.5" stroke="currentColor" stroke-width="2"/>
130
+ </svg>