@luminati-io/uikit 1.2.2 → 1.3.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 (88) hide show
  1. package/assets/icons/account.svg +8 -0
  2. package/assets/icons/adapt.svg +4 -0
  3. package/assets/icons/add.svg +3 -0
  4. package/assets/icons/add_circle.svg +5 -0
  5. package/assets/icons/add_funds.svg +7 -0
  6. package/assets/icons/attach.svg +3 -0
  7. package/assets/icons/book_help.svg +4 -0
  8. package/assets/icons/building.svg +3 -0
  9. package/assets/icons/calendar.svg +13 -0
  10. package/assets/icons/calendar_graph.svg +14 -0
  11. package/assets/icons/call.svg +5 -0
  12. package/assets/icons/camera.svg +5 -0
  13. package/assets/icons/cart.svg +3 -0
  14. package/assets/icons/close.svg +3 -0
  15. package/assets/icons/close_circle.svg +3 -0
  16. package/assets/icons/close_small.svg +5 -0
  17. package/assets/icons/collapse.svg +4 -0
  18. package/assets/icons/column.svg +22 -0
  19. package/assets/icons/columns.svg +10 -0
  20. package/assets/icons/connect.svg +3 -0
  21. package/assets/icons/contact_support.svg +3 -0
  22. package/assets/icons/copy.svg +3 -0
  23. package/assets/icons/copy_small.svg +3 -0
  24. package/assets/icons/customize.svg +6 -0
  25. package/assets/icons/dataset.svg +3 -0
  26. package/assets/icons/delete.svg +4 -4
  27. package/assets/icons/desktop.svg +3 -0
  28. package/assets/icons/dislike.svg +3 -0
  29. package/assets/icons/doc_new.svg +8 -0
  30. package/assets/icons/document.svg +3 -0
  31. package/assets/icons/dots_horizontal.svg +3 -0
  32. package/assets/icons/dots_vertical.svg +3 -0
  33. package/assets/icons/download.svg +3 -0
  34. package/assets/icons/drag_and_drop.svg +3 -0
  35. package/assets/icons/edit.svg +3 -0
  36. package/assets/icons/edit_small.svg +3 -0
  37. package/assets/icons/envelope.svg +4 -0
  38. package/assets/icons/file_csv.svg +7 -0
  39. package/assets/icons/file_json.svg +8 -0
  40. package/assets/icons/filter.svg +3 -0
  41. package/assets/icons/folder.svg +3 -0
  42. package/assets/icons/forward.svg +3 -0
  43. package/assets/icons/index.js +162 -4
  44. package/assets/icons/info.svg +3 -0
  45. package/assets/icons/invite.svg +3 -0
  46. package/assets/icons/lightning.svg +3 -0
  47. package/assets/icons/like.svg +3 -0
  48. package/assets/icons/link_ext.svg +4 -0
  49. package/assets/icons/lock.svg +4 -0
  50. package/assets/icons/login.svg +12 -0
  51. package/assets/icons/logout.svg +4 -0
  52. package/assets/icons/maximize.svg +4 -0
  53. package/assets/icons/mention.svg +3 -0
  54. package/assets/icons/menu_close.svg +3 -0
  55. package/assets/icons/menu_expand.svg +3 -0
  56. package/assets/icons/message.svg +3 -0
  57. package/assets/icons/minimize.svg +4 -0
  58. package/assets/icons/minus.svg +3 -0
  59. package/assets/icons/monitor.svg +3 -0
  60. package/assets/icons/on_off.svg +8 -0
  61. package/assets/icons/pause.svg +3 -0
  62. package/assets/icons/pin.svg +3 -0
  63. package/assets/icons/play.svg +3 -0
  64. package/assets/icons/publish.svg +9 -0
  65. package/assets/icons/question.svg +3 -0
  66. package/assets/icons/queue.svg +8 -0
  67. package/assets/icons/referal.svg +4 -0
  68. package/assets/icons/refresh.svg +3 -0
  69. package/assets/icons/reset.svg +4 -0
  70. package/assets/icons/search.svg +10 -0
  71. package/assets/icons/seo.svg +17 -0
  72. package/assets/icons/settings.svg +3 -0
  73. package/assets/icons/smartphone.svg +4 -0
  74. package/assets/icons/sort.svg +4 -0
  75. package/assets/icons/sum.svg +3 -0
  76. package/assets/icons/trash.svg +3 -0
  77. package/assets/icons/unpin.svg +4 -0
  78. package/assets/icons/upgrade.svg +11 -0
  79. package/assets/icons/upload.svg +4 -0
  80. package/assets/icons/upload_cloud.svg +4 -0
  81. package/assets/icons/verify.svg +4 -0
  82. package/dist/uikit.umd.js +1 -1
  83. package/package.json +1 -1
  84. package/src/icon.js +20 -24
  85. package/src/icon_button.js +75 -0
  86. package/src/index.js +2 -1
  87. package/src/infochip.js +8 -6
  88. package/src/utils.js +5 -0
@@ -1,7 +1,165 @@
1
1
  // LICENSE_CODE ZON
2
2
  'use strict'; /*jslint react:true*/
3
- import ic_delete from './delete.svg';
3
+ import Account from './account.svg';
4
+ import Adapt from './adapt.svg';
5
+ import AddCircle from './add_circle.svg';
6
+ import AddFunds from './add_funds.svg';
7
+ import Add from './add.svg';
8
+ import Attach from './attach.svg';
9
+ import BookHelp from './book_help.svg';
10
+ import Building from './building.svg';
11
+ import CalendarGraph from './calendar_graph.svg';
12
+ import Calendar from './calendar.svg';
13
+ import Call from './call.svg';
14
+ import Camera from './camera.svg';
15
+ import Cart from './cart.svg';
16
+ import CloseCircle from './close_circle.svg';
17
+ import CloseSmall from './close_small.svg';
18
+ import Close from './close.svg';
19
+ import Collapse from './collapse.svg';
20
+ import Column from './column.svg';
21
+ import Columns from './columns.svg';
22
+ import Connect from './connect.svg';
23
+ import ContactSupport from './contact_support.svg';
24
+ import CopySmall from './copy_small.svg';
25
+ import Copy from './copy.svg';
26
+ import Customize from './customize.svg';
27
+ import Dataset from './dataset.svg';
28
+ import Delete from './delete.svg';
29
+ import Desktop from './desktop.svg';
30
+ import Dislike from './dislike.svg';
31
+ import DocNew from './doc_new.svg';
32
+ import Document from './document.svg';
33
+ import DotsHorizontal from './dots_horizontal.svg';
34
+ import DotsVertical from './dots_vertical.svg';
35
+ import Download from './download.svg';
36
+ import DragAndDrop from './drag_and_drop.svg';
37
+ import EditSmall from './edit_small.svg';
38
+ import Edit from './edit.svg';
39
+ import Envelope from './envelope.svg';
40
+ import FileCsv from './file_csv.svg';
41
+ import FileJson from './file_json.svg';
42
+ import Filter from './filter.svg';
43
+ import Folder from './folder.svg';
44
+ import Forward from './forward.svg';
45
+ import Info from './info.svg';
46
+ import Invite from './invite.svg';
47
+ import Lightning from './lightning.svg';
48
+ import Like from './like.svg';
49
+ import LinkExt from './link_ext.svg';
50
+ import Lock from './lock.svg';
51
+ import Login from './login.svg';
52
+ import Logout from './logout.svg';
53
+ import Maximize from './maximize.svg';
54
+ import Mention from './mention.svg';
55
+ import MenuClose from './menu_close.svg';
56
+ import MenuExpand from './menu_expand.svg';
57
+ import Message from './message.svg';
58
+ import Minimize from './minimize.svg';
59
+ import Minus from './minus.svg';
60
+ import Monitor from './monitor.svg';
61
+ import OnOff from './on_off.svg';
62
+ import Pause from './pause.svg';
63
+ import Pin from './pin.svg';
64
+ import Play from './play.svg';
65
+ import Publish from './publish.svg';
66
+ import Question from './question.svg';
67
+ import Queue from './queue.svg';
68
+ import Referal from './referal.svg';
69
+ import Refresh from './refresh.svg';
70
+ import Reset from './reset.svg';
71
+ import Search from './search.svg';
72
+ import Seo from './seo.svg';
73
+ import Settings from './settings.svg';
74
+ import Smartphone from './smartphone.svg';
75
+ import Sort from './sort.svg';
76
+ import Sum from './sum.svg';
77
+ import Trash from './trash.svg';
78
+ import Unpin from './unpin.svg';
79
+ import Upgrade from './upgrade.svg';
80
+ import UploadCloud from './upload_cloud.svg';
81
+ import Upload from './upload.svg';
82
+ import Verify from './verify.svg';
4
83
 
5
- const icons = {delete: ic_delete};
6
-
7
- export default icons;
84
+ export default {
85
+ Account,
86
+ Adapt,
87
+ AddCircle,
88
+ AddFunds,
89
+ Add,
90
+ Attach,
91
+ BookHelp,
92
+ Building,
93
+ CalendarGraph,
94
+ Calendar,
95
+ Call,
96
+ Camera,
97
+ Cart,
98
+ CloseCircle,
99
+ CloseSmall,
100
+ Close,
101
+ Collapse,
102
+ Column,
103
+ Columns,
104
+ Connect,
105
+ ContactSupport,
106
+ CopySmall,
107
+ Copy,
108
+ Customize,
109
+ Dataset,
110
+ Delete,
111
+ Desktop,
112
+ Dislike,
113
+ DocNew,
114
+ Document,
115
+ DotsHorizontal,
116
+ DotsVertical,
117
+ Download,
118
+ DragAndDrop,
119
+ EditSmall,
120
+ Edit,
121
+ Envelope,
122
+ FileCsv,
123
+ FileJson,
124
+ Filter,
125
+ Folder,
126
+ Forward,
127
+ Info,
128
+ Invite,
129
+ Lightning,
130
+ Like,
131
+ LinkExt,
132
+ Lock,
133
+ Login,
134
+ Logout,
135
+ Maximize,
136
+ Mention,
137
+ MenuClose,
138
+ MenuExpand,
139
+ Message,
140
+ Minimize,
141
+ Minus,
142
+ Monitor,
143
+ OnOff,
144
+ Pause,
145
+ Pin,
146
+ Play,
147
+ Publish,
148
+ Question,
149
+ Queue,
150
+ Referal,
151
+ Refresh,
152
+ Reset,
153
+ Search,
154
+ Seo,
155
+ Settings,
156
+ Smartphone,
157
+ Sort,
158
+ Sum,
159
+ Trash,
160
+ Unpin,
161
+ Upgrade,
162
+ UploadCloud,
163
+ Upload,
164
+ Verify,
165
+ };
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M9.99996 2.16669C5.67373 2.16669 2.16663 5.67379 2.16663 10C2.16663 14.3263 5.67373 17.8334 9.99996 17.8334C14.3262 17.8334 17.8333 14.3263 17.8333 10C17.8333 5.67379 14.3262 2.16669 9.99996 2.16669ZM1.16663 10C1.16663 5.12151 5.12144 1.16669 9.99996 1.16669C14.8785 1.16669 18.8333 5.12151 18.8333 10C18.8333 14.8785 14.8785 18.8334 9.99996 18.8334C5.12144 18.8334 1.16663 14.8785 1.16663 10ZM10 9.25C10.4142 9.25 10.75 9.58579 10.75 10V13.3333C10.75 13.7475 10.4142 14.0833 10 14.0833C9.58579 14.0833 9.25 13.7475 9.25 13.3333V10C9.25 9.58579 9.58579 9.25 10 9.25ZM10 5.91669C9.58579 5.91669 9.25 6.25247 9.25 6.66669C9.25 7.0809 9.58579 7.41669 10 7.41669H10.0083C10.4225 7.41669 10.7583 7.0809 10.7583 6.66669C10.7583 6.25247 10.4225 5.91669 10.0083 5.91669H10Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M13.2053 10.1291C13.5444 10.2411 13.8778 10.3749 14.2045 10.5302C14.5357 10.6876 14.6766 11.0838 14.5191 11.415C14.3617 11.7463 13.9656 11.8871 13.6343 11.7297C12.7048 11.2878 11.711 11.052 10.6778 11.0278C10.6188 11.0301 10.5595 11.0312 10.5 11.0312C10.441 11.0312 10.3823 11.0301 10.3239 11.0279C6.9522 11.1094 4.03245 13.5275 3.34332 16.8376C3.30025 17.0445 3.35152 17.2565 3.48397 17.4193C3.56067 17.5136 3.7317 17.6719 4.01518 17.6719H12.1933C12.5601 17.6719 12.8574 17.9692 12.8574 18.3359C12.8574 18.7027 12.5601 19 12.1933 19H4.01518C3.40664 19 2.83744 18.7293 2.45358 18.2573C2.06782 17.7829 1.91817 17.1668 2.04308 16.567C2.44162 14.6526 3.49738 12.9104 5.01583 11.6614C5.84391 10.9803 6.79004 10.4638 7.79835 10.1318C6.69783 9.30748 5.98436 7.9933 5.98436 6.51562C5.98436 4.02572 8.01005 2 10.5 2C12.9899 2 15.0156 4.02572 15.0156 6.51562C15.0156 7.99167 14.3037 9.30455 13.2053 10.1291ZM10.5 9.69758C10.5541 9.69758 10.6081 9.69808 10.662 9.69904C12.3446 9.61444 13.6875 8.21891 13.6875 6.51562C13.6875 4.75802 12.2576 3.32812 10.5 3.32812C8.74238 3.32812 7.31249 4.75802 7.31249 6.51562C7.31249 8.21934 8.65605 9.61514 10.3393 9.69911C10.3928 9.69811 10.4464 9.69758 10.5 9.69758ZM16.5094 15.1816H18.3356C18.7024 15.1816 18.9997 15.4789 18.9997 15.8457C18.9997 16.2125 18.7024 16.5098 18.3356 16.5098H16.5094V18.3359C16.5094 18.7027 16.2121 19 15.8454 19C15.4786 19 15.1813 18.7027 15.1813 18.3359V16.5098H13.3551C12.9884 16.5098 12.6911 16.2125 12.6911 15.8457C12.6911 15.4789 12.9884 15.1816 13.3551 15.1816H15.1813V13.3555C15.1813 12.9887 15.4786 12.6914 15.8454 12.6914C16.2121 12.6914 16.5094 12.9887 16.5094 13.3555V15.1816Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10.8333 1.66663L2.5 11.6666H10L9.16667 18.3333L17.5 8.33329H10L10.8333 1.66663Z" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M9.37451 1.125C9.09043 1.125 8.83074 1.2855 8.70369 1.53959L5.78599 7.375H2.49951C2.13484 7.375 1.7851 7.51987 1.52724 7.77773C1.26938 8.03559 1.12451 8.38533 1.12451 8.75V15.625C1.12451 15.9897 1.26938 16.3394 1.52724 16.5973C1.7851 16.8551 2.13484 17 2.49951 17H6.24951H15.771C16.2585 17 16.7292 16.822 17.0946 16.4994C17.4601 16.1767 17.6951 15.7318 17.7556 15.2481L18.6931 7.74807C18.7283 7.46667 18.7032 7.18101 18.6195 6.91004C18.5359 6.63907 18.3956 6.38899 18.2079 6.1764C18.0202 5.9638 17.7895 5.79354 17.531 5.67692C17.2725 5.56031 16.9921 5.5 16.7085 5.5H12.6245V4.375C12.6245 3.9482 12.5404 3.52559 12.3771 3.13128C12.2138 2.73697 11.9744 2.37869 11.6726 2.0769C11.3708 1.77511 11.0125 1.53572 10.6182 1.37239C10.2239 1.20906 9.80131 1.125 9.37451 1.125ZM6.99951 15.5H15.771C15.8929 15.5 16.0106 15.4555 16.1019 15.3748C16.1933 15.2942 16.2521 15.1829 16.2672 15.062L17.2047 7.56202C17.2135 7.49167 17.2072 7.42025 17.1863 7.35251C17.1654 7.28477 17.1303 7.22225 17.0834 7.1691C17.0365 7.11595 16.9788 7.07339 16.9141 7.04423C16.8495 7.01508 16.7794 7 16.7085 7H11.8745C11.4603 7 11.1245 6.66421 11.1245 6.25V4.375C11.1245 4.14519 11.0792 3.91762 10.9913 3.7053C10.9034 3.49299 10.7745 3.30007 10.6119 3.13756C10.4494 2.97506 10.2565 2.84616 10.0442 2.75821C9.96805 2.72667 9.88993 2.70061 9.81045 2.68017L6.99951 8.30205V15.5ZM5.49951 8.875H2.62451V15.5H5.49951V8.875Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M3 17L17 3" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M5.625 3H17V14.375" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.8929 7.78571V6.42857C15.8929 4.98882 15.3209 3.60805 14.3029 2.58999C13.2848 1.57194 11.904 1 10.4643 1C9.02454 1 7.64376 1.57194 6.62571 2.58999C5.60765 3.60805 5.03571 4.98882 5.03571 6.42857V7.78571C4.49581 7.78571 3.97802 8.00019 3.59625 8.38196C3.21448 8.76373 3 9.28152 3 9.82143V17.9643C3 18.5042 3.21448 19.022 3.59625 19.4038C3.97802 19.7855 4.49581 20 5.03571 20H15.8929C16.4328 20 16.9506 19.7855 17.3323 19.4038C17.7141 19.022 17.9286 18.5042 17.9286 17.9643V9.82143C17.9286 9.28152 17.7141 8.76373 17.3323 8.38196C16.9506 8.00019 16.4328 7.78571 15.8929 7.78571ZM6.39286 6.42857C6.39286 5.34876 6.82181 4.31318 7.58535 3.54964C8.34889 2.7861 9.38448 2.35714 10.4643 2.35714C11.5441 2.35714 12.5797 2.7861 13.3432 3.54964C14.1068 4.31318 14.5357 5.34876 14.5357 6.42857V7.78571H6.39286V6.42857ZM16.5714 17.9643C16.5714 18.1443 16.4999 18.3169 16.3727 18.4441C16.2454 18.5714 16.0728 18.6429 15.8929 18.6429H5.03571C4.85575 18.6429 4.68315 18.5714 4.55589 18.4441C4.42864 18.3169 4.35714 18.1443 4.35714 17.9643V9.82143C4.35714 9.64146 4.42864 9.46886 4.55589 9.34161C4.68315 9.21435 4.85575 9.14286 5.03571 9.14286H15.8929C16.0728 9.14286 16.2454 9.21435 16.3727 9.34161C16.4999 9.46886 16.5714 9.64146 16.5714 9.82143V17.9643Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.5186 11.0428C10.9683 11.0428 11.3329 11.4074 11.3329 11.8571L11.3329 15.1143C11.3329 15.564 10.9683 15.9286 10.5186 15.9286C10.0689 15.9286 9.70431 15.564 9.70431 15.1143L9.70431 11.8571C9.70431 11.4074 10.0689 11.0428 10.5186 11.0428Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_2275_31251)">
3
+ <path d="M13.5938 6.71875L16.875 10L13.5938 13.2812" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M8.125 10H16.875" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M8.125 16.875H3.75C3.58424 16.875 3.42527 16.8092 3.30806 16.6919C3.19085 16.5747 3.125 16.4158 3.125 16.25V3.75C3.125 3.58424 3.19085 3.42527 3.30806 3.30806C3.42527 3.19085 3.58424 3.125 3.75 3.125H8.125" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0_2275_31251">
9
+ <rect width="20" height="20" fill="white"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10.465 17.5192H4.11624C3.72684 17.5192 3.41084 17.2032 3.41084 16.8138V4.11627C3.41084 3.72688 3.72688 3.41087 4.11624 3.41087H10.465C10.8551 3.41087 11.1704 3.09556 11.1704 2.70547C11.1704 2.31538 10.8551 2 10.465 2H4.11624C2.94948 2 2 2.94952 2 4.11627V16.8138C2 17.9805 2.94948 18.93 4.11624 18.93H10.465C10.8551 18.93 11.1704 18.6147 11.1704 18.2246C11.1704 17.8345 10.8551 17.5192 10.465 17.5192Z" fill="currentColor"/>
3
+ <path d="M18.7762 9.96263L14.4873 5.73012C14.2107 5.45642 13.7635 5.45997 13.4898 5.73719C13.2161 6.01441 13.2189 6.46094 13.4969 6.73465L16.5619 9.75946H8.34871C7.95862 9.75946 7.64331 10.0748 7.64331 10.4649C7.64331 10.8549 7.95862 11.1703 8.34871 11.1703H16.5619L13.4969 14.1951C13.2189 14.4688 13.2168 14.9153 13.4898 15.1926C13.628 15.3322 13.81 15.4028 13.9921 15.4028C14.1712 15.4028 14.3504 15.3351 14.4873 15.1996L18.7762 10.9671C18.9102 10.8345 18.9864 10.6539 18.9864 10.4648C18.9864 10.2759 18.9109 10.096 18.7762 9.96263Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M17.7783 2.49825C17.7774 2.49547 17.7763 2.49229 17.775 2.48884L17.7751 2.4888L17.7728 2.48308C17.725 2.3668 17.6326 2.27499 17.5172 2.22729L17.4408 2.41211M17.7783 2.49825L11.5625 8.05606M17.7783 2.49825C17.7968 2.54779 17.8079 2.60195 17.8084 2.65955L17.8085 2.66161H17.8085V6.94436C17.8085 7.20368 17.5983 7.41419 17.3386 7.41419C17.079 7.41419 16.8688 7.20368 16.8688 6.94436V3.79582M17.7783 2.49825L16.8688 3.79582M17.4408 2.41211C17.4401 2.41182 17.4394 2.41164 17.4387 2.41145C17.438 2.41128 17.4373 2.4111 17.4367 2.41085M17.4408 2.41211L17.5196 2.22829C17.5124 2.22518 17.506 2.22295 17.5012 2.2214M17.4408 2.41211C17.5074 2.43963 17.5604 2.49252 17.5878 2.55908C17.588 2.55975 17.5882 2.56043 17.5884 2.56109C17.5886 2.56183 17.5887 2.56255 17.589 2.56321C17.6011 2.59379 17.6081 2.62671 17.6085 2.66161V6.94436C17.6085 7.09331 17.4878 7.21419 17.3386 7.21419C17.1895 7.21419 17.0688 7.09331 17.0688 6.94436V3.59583L16.8688 3.79582M17.4367 2.41085L17.51 2.22478C17.5071 2.22363 17.5041 2.2225 17.5012 2.2214M17.4367 2.41085C17.4061 2.3988 17.373 2.3916 17.3383 2.3916H13.0555C12.9064 2.3916 12.7857 2.51249 12.7857 2.66143C12.7857 2.81038 12.9064 2.93126 13.0555 2.93126H16.4042L16.2042 3.13126M17.4367 2.41085L17.5069 2.22358C17.5005 2.22119 17.4953 2.21963 17.4923 2.21878C17.4898 2.21807 17.4873 2.21744 17.4888 2.21782C17.4891 2.21792 17.4931 2.21891 17.4977 2.22033C17.4988 2.22064 17.4999 2.221 17.5012 2.2214M17.5012 2.2214C17.4522 2.20318 17.3974 2.1916 17.3383 2.1916H13.0555C12.7959 2.1916 12.5857 2.40212 12.5857 2.66143C12.5857 2.92075 12.7959 3.13126 13.0555 3.13126H16.2042M16.8688 3.79582V3.51298L11.9442 8.4376C11.8915 8.49031 11.8224 8.51657 11.7533 8.51657C11.6842 8.51657 11.6152 8.49031 11.5625 8.4376C11.457 8.33219 11.457 8.16147 11.5625 8.05606M11.5625 8.05606L16.4871 3.13126H16.2042M11.5625 8.05606L11.421 7.91464L11.421 7.91464L16.2042 3.13126" fill="currentColor" stroke="currentColor" stroke-width="0.4"/>
3
+ <path d="M2.55908 17.5881L2.48028 17.7719C2.48753 17.775 2.4939 17.7772 2.49871 17.7788C2.54766 17.797 2.60254 17.8086 2.66161 17.8086H6.94454C7.20421 17.8086 7.41437 17.5981 7.41437 17.3388C7.41437 17.0794 7.20421 16.8689 6.94454 16.8689H3.79566L8.57884 12.0859L8.43742 11.9445L8.57884 12.0859C8.76236 11.9024 8.76236 11.605 8.57884 11.4215C8.3955 11.2382 8.09797 11.2377 7.91428 11.4213L3.13126 16.2044V13.0556C3.13126 12.7963 2.9211 12.5858 2.66143 12.5858C2.40176 12.5858 2.1916 12.7963 2.1916 13.0556V17.3386C2.1916 17.3981 2.20327 17.4529 2.22156 17.5019C2.22245 17.5047 2.22354 17.5079 2.22484 17.5113L2.22475 17.5114L2.22711 17.5171C2.27488 17.6334 2.36728 17.7252 2.48265 17.7729L2.55908 17.5881ZM2.55908 17.5881C2.55974 17.5884 2.56046 17.5885 2.56121 17.5887C2.56186 17.5889 2.56254 17.5891 2.56321 17.5893M2.55908 17.5881C2.49252 17.5606 2.43945 17.5077 2.41211 17.4411L2.56321 17.5893M2.56321 17.5893C2.59379 17.6014 2.62689 17.6086 2.66161 17.6086H6.94454C7.09367 17.6086 7.21437 17.4877 7.21437 17.3388C7.21437 17.1898 7.09367 17.0689 6.94454 17.0689H3.59565L2.56321 17.5893Z" fill="#889096" stroke="#889096" stroke-width="0.4"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10.7906 1.00309C8.59625 0.944598 6.35134 1.71745 4.66678 3.26576C2.98223 4.8141 1.88256 7.15527 2.01002 10.0936C2.12939 12.8453 2.9333 14.8307 4.10886 16.1998C5.28442 17.5688 6.80314 18.3025 8.26669 18.6661C11.1938 19.3933 13.992 18.706 13.992 18.706C14.8482 18.5025 14.5426 17.2183 13.6865 17.4219C13.6865 17.4219 11.129 18.014 8.5855 17.382C7.31374 17.0661 6.07137 16.4608 5.10958 15.3407C4.14778 14.2206 3.43917 12.5631 3.32955 10.0361C3.21729 7.44825 4.14353 5.53446 5.5568 4.23548C6.97007 2.9365 8.89671 2.27312 10.7552 2.32261C12.4472 2.36773 14.0672 2.99383 15.2318 4.23548C16.3965 5.4771 17.1399 7.351 16.9986 10.0316C16.997 10.0498 16.9244 10.8763 16.6399 11.6877C16.4962 12.0977 16.2975 12.4865 16.0776 12.7327C15.8576 12.9789 15.7325 13.1532 15.4354 13.1532C15.1271 13.1532 15.0786 13.0824 14.9706 12.8522C14.8626 12.6212 14.7801 12.1012 14.7669 11.4043C14.7405 10.0104 14.9205 7.92109 14.7447 5.50187C14.7231 5.22481 14.5301 4.99106 14.2621 4.91738C14.2621 4.91738 12.272 4.35344 10.1928 4.67827C9.15324 4.8406 8.05898 5.23495 7.21726 6.09079C6.37555 6.94664 5.84017 8.2407 5.84017 10.0007C5.84017 11.7921 6.37478 13.1032 7.24383 13.9282C8.11288 14.7533 9.25595 15.0556 10.339 15.0441C11.422 15.0327 12.47 14.7262 13.2924 14.2515C13.8443 13.9328 13.9103 13.6331 13.9103 13.6331C13.9103 13.6331 14.3892 14.4064 15.3691 14.4064C16.0712 14.4064 16.6638 14.058 17.0606 13.6138C17.4573 13.1697 17.7052 12.6364 17.8842 12.1261C18.242 11.1054 18.3181 10.1202 18.3181 10.1202C18.3182 10.1134 18.3182 10.1089 18.3181 10.1021C18.4743 7.13947 17.623 4.85667 16.1927 3.33177C14.7623 1.80687 12.7884 1.05584 10.7906 1.00267L10.7906 1.00309ZM10.3965 5.98009C11.8755 5.74902 13.0334 6.06875 13.4297 6.1617C13.525 8.18597 13.4307 10.0527 13.4474 11.4309C13.4568 12.2061 13.2187 12.7617 12.6371 13.1048C12.0248 13.4552 11.1578 13.7158 10.3257 13.7247C9.49351 13.7338 8.7189 13.5107 8.15156 12.9719C7.58423 12.4333 7.1597 11.5394 7.1597 10.0008C7.1597 8.49627 7.57515 7.60251 8.15599 7.01193C8.73683 6.42133 9.53937 6.11412 10.3965 5.98023L10.3965 5.98009Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M7.66667 5.83333C7.66667 5.3731 8.03976 5 8.5 5H15.1667C15.6269 5 16 5.3731 16 5.83333C16 6.29357 15.6269 6.66667 15.1667 6.66667H8.5C8.03976 6.66667 7.66667 6.29357 7.66667 5.83333ZM7.66667 14.1667C7.66667 13.7064 8.03976 13.3333 8.5 13.3333H15.1667C15.6269 13.3333 16 13.7064 16 14.1667C16 14.6269 15.6269 15 15.1667 15H8.5C8.03976 15 7.66667 14.6269 7.66667 14.1667ZM5.70804 12.3722C6.09769 12.6171 6.61212 12.4998 6.85705 12.1101C7.10197 11.7205 6.98465 11.2061 6.59499 10.9611L6.39167 10.8333L15.1667 10.8333C15.6269 10.8333 16 10.4602 16 10C16 9.53976 15.6269 9.16667 15.1667 9.16667L6.39167 9.16667L6.59499 9.03886C6.98465 8.79394 7.10197 8.27951 6.85705 7.88986C6.61212 7.5002 6.09769 7.38288 5.70804 7.6278L3.05652 9.29447C2.81391 9.44697 2.66667 9.71343 2.66667 10C2.66667 10.2866 2.81391 10.553 3.05652 10.7055L5.70804 12.3722Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11.3333 5.83333C11.3333 5.3731 10.9602 5 10.5 5H3.83333C3.3731 5 3 5.3731 3 5.83333C3 6.29357 3.3731 6.66667 3.83333 6.66667H10.5C10.9602 6.66667 11.3333 6.29357 11.3333 5.83333ZM11.3333 14.1667C11.3333 13.7064 10.9602 13.3333 10.5 13.3333H3.83333C3.3731 13.3333 3 13.7064 3 14.1667C3 14.6269 3.3731 15 3.83333 15H10.5C10.9602 15 11.3333 14.6269 11.3333 14.1667ZM13.292 12.3722C12.9023 12.6171 12.3879 12.4998 12.143 12.1101C11.898 11.7205 12.0154 11.2061 12.405 10.9611L12.6083 10.8333L3.83333 10.8333C3.3731 10.8333 3 10.4602 3 10C3 9.53976 3.3731 9.16667 3.83333 9.16667L12.6083 9.16667L12.405 9.03886C12.0154 8.79394 11.898 8.27951 12.143 7.88986C12.3879 7.5002 12.9023 7.38288 13.292 7.6278L15.9435 9.29447C16.1861 9.44697 16.3333 9.71343 16.3333 10C16.3333 10.2866 16.1861 10.553 15.9435 10.7055L13.292 12.3722Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5.54688 14.3984L3.02344 16.5078C2.93238 16.5832 2.82183 16.6311 2.70461 16.6462C2.58738 16.6613 2.46829 16.6428 2.36115 16.5929C2.25401 16.543 2.16321 16.4637 2.09929 16.3643C2.03536 16.2649 2.00094 16.1494 2 16.0313V3.625C2 3.45924 2.06585 3.30027 2.18306 3.18306C2.30027 3.06585 2.45924 3 2.625 3H16.375C16.5408 3 16.6997 3.06585 16.8169 3.18306C16.9342 3.30027 17 3.45924 17 3.625V13.625C17 13.7908 16.9342 13.9497 16.8169 14.0669C16.6997 14.1842 16.5408 14.25 16.375 14.25H5.94531C5.79899 14.25 5.65756 14.3027 5.54688 14.3984V14.3984Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11.3135 8.40992C11.3144 8.4127 11.3155 8.41588 11.3168 8.41933L11.3167 8.41937L11.319 8.42509C11.3668 8.54137 11.4592 8.63318 11.5746 8.68089L11.651 8.49606M11.3135 8.40992L17.5293 2.85211M11.3135 8.40992C11.295 8.36038 11.2839 8.30623 11.2833 8.24862L11.2833 8.24656L11.2833 8.24656L11.2833 3.96381C11.2833 3.7045 11.4935 3.49398 11.7532 3.49398C12.0128 3.49398 12.223 3.7045 12.223 3.96381L12.223 7.11235M11.3135 8.40992L12.223 7.11235M11.651 8.49606C11.6517 8.49635 11.6524 8.49653 11.6531 8.49673C11.6538 8.4969 11.6545 8.49707 11.6551 8.49732M11.651 8.49606L11.5722 8.67988C11.5794 8.68299 11.5858 8.68523 11.5906 8.68677M11.651 8.49606C11.5844 8.46854 11.5314 8.41565 11.504 8.3491C11.5038 8.34842 11.5036 8.34774 11.5034 8.34709C11.5032 8.34634 11.5031 8.34563 11.5028 8.34496C11.4907 8.31438 11.4837 8.28146 11.4833 8.24656L11.4833 3.96381C11.4833 3.81487 11.604 3.69398 11.7532 3.69398C11.9023 3.69398 12.023 3.81487 12.023 3.96381L12.023 7.31235L12.223 7.11235M11.6551 8.49732L11.5818 8.68339C11.5847 8.68454 11.5876 8.68567 11.5906 8.68677M11.6551 8.49732C11.6857 8.50938 11.7188 8.51657 11.7535 8.51657L16.0363 8.51657C16.1854 8.51657 16.3061 8.39569 16.3061 8.24674C16.3061 8.09779 16.1854 7.97691 16.0363 7.97691L12.6876 7.97691L12.8875 7.77691M11.6551 8.49732L11.5849 8.68459C11.5913 8.68698 11.5965 8.68854 11.5995 8.68939C11.602 8.6901 11.6045 8.69073 11.603 8.69035C11.6027 8.69025 11.5987 8.68926 11.5941 8.68784C11.593 8.68753 11.5919 8.68717 11.5906 8.68677M11.5906 8.68677C11.6396 8.70499 11.6944 8.71657 11.7535 8.71657L16.0363 8.71657C16.2959 8.71657 16.5061 8.50606 16.5061 8.24674C16.5061 7.98742 16.2959 7.77691 16.0363 7.77691L12.8875 7.77691M12.223 7.11235L12.223 7.39519L17.1476 2.47057C17.2003 2.41786 17.2694 2.3916 17.3385 2.3916C17.4076 2.3916 17.4766 2.41786 17.5293 2.47057C17.6348 2.57598 17.6348 2.7467 17.5293 2.85211M17.5293 2.85211L12.6047 7.77691L12.8875 7.77691M17.5293 2.85211L17.6708 2.99353L17.6708 2.99353L12.8875 7.77691" fill="currentColor" stroke="currentColor" stroke-width="0.4"/>
3
+ <path d="M8.34901 11.5043L8.4278 11.3205C8.42056 11.3174 8.41418 11.3151 8.40937 11.3136C8.36042 11.2954 8.30555 11.2838 8.24647 11.2838L3.96354 11.2838C3.70387 11.2838 3.49371 11.4943 3.49371 11.7536C3.49371 12.0129 3.70387 12.2235 3.96354 12.2235L7.11242 12.2235L2.32924 17.0065L2.47066 17.1479L2.32924 17.0065C2.14572 17.19 2.14572 17.4873 2.32924 17.6709C2.51258 17.8542 2.81011 17.8547 2.9938 17.671L7.77682 12.888L7.77682 16.0367C7.77682 16.296 7.98698 16.5066 8.24665 16.5066C8.50632 16.5066 8.71648 16.296 8.71648 16.0367L8.71648 11.7538C8.71648 11.6943 8.70481 11.6394 8.68652 11.5905C8.68563 11.5877 8.68454 11.5845 8.68324 11.581L8.68333 11.581L8.68097 11.5753C8.6332 11.459 8.5408 11.3672 8.42543 11.3195L8.34901 11.5043ZM8.34901 11.5043C8.34834 11.504 8.34762 11.5038 8.34688 11.5036C8.34622 11.5035 8.34554 11.5033 8.34487 11.503M8.34901 11.5043C8.41556 11.5318 8.46863 11.5847 8.49597 11.6513L8.34487 11.503M8.34487 11.503C8.31429 11.491 8.28119 11.4838 8.24647 11.4838L3.96354 11.4838C3.81441 11.4838 3.69371 11.6047 3.69371 11.7536C3.69371 11.9026 3.81441 12.0235 3.96354 12.0235L7.31243 12.0235L8.34487 11.503Z" fill="currentColor" stroke="currentColor" stroke-width="0.4"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M9.25 9.25H3C2.58579 9.25 2.25 9.58579 2.25 10C2.25 10.4142 2.58579 10.75 3 10.75H9.25H10.75H16.5C16.9142 10.75 17.25 10.4142 17.25 10C17.25 9.58579 16.9142 9.25 16.5 9.25H10.75H9.25Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2 4.40226C2 3.62781 2.62781 3 3.40226 3H17C17.7744 3 18.4022 3.62781 18.4022 4.40226V12.9008C18.4022 13.6753 17.7744 14.3031 17 14.3031H11.306V16.8952H15.5573C15.8624 16.8952 16.1097 17.1425 16.1097 17.4476C16.1097 17.7527 15.8624 18 15.5573 18H5.65444C5.34936 18 5.10204 17.7527 5.10204 17.4476C5.10204 17.1425 5.34936 16.8952 5.65444 16.8952H10.2012V14.3031H3.40226C2.62782 14.3031 2 13.6753 2 12.9008V4.40226ZM3.40226 4.10481C3.23799 4.10481 3.10481 4.23799 3.10481 4.40226V12.9008C3.10481 13.0651 3.23799 13.1983 3.40226 13.1983H17C17.1642 13.1983 17.2974 13.0651 17.2974 12.9008V4.40226C17.2974 4.23799 17.1642 4.10481 17 4.10481H3.40226Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <mask id="path-1-outside-1_763_0" maskUnits="userSpaceOnUse" x="0.512817" y="0" width="19" height="20" fill="black">
3
+ <rect fill="white" x="0.512817" width="19" height="20"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.7223 9.66339C10.7223 10.0636 10.3979 10.388 9.9976 10.388C9.5973 10.388 9.27295 10.0637 9.27295 9.66339V1.72465C9.27295 1.32445 9.5973 1 9.9976 1C10.3979 1 10.7223 1.32445 10.7223 1.72465V9.66339ZM14.9757 4.51154C15.2588 4.22854 15.7176 4.22854 16.0006 4.51154C17.6041 6.11505 18.4872 8.24708 18.4871 10.5149C18.4871 12.7826 17.6041 14.9145 16.0007 16.5178C14.346 18.1725 12.172 18.9999 9.99833 19C7.82407 19.0001 5.65011 18.1725 3.99481 16.5172C0.685262 13.2077 0.685552 7.82234 3.99529 4.5126C4.27839 4.2296 4.73714 4.2296 5.02014 4.5126C5.30315 4.79551 5.30315 5.25436 5.02014 5.53736C2.27544 8.28206 2.27515 12.7479 5.01966 15.4924C6.39216 16.8649 8.19539 17.5512 9.99823 17.5513C11.8011 17.5515 13.6034 16.8654 14.9757 15.493C16.3055 14.1633 17.0378 12.3953 17.0378 10.5148C17.0378 8.63415 16.3055 6.86609 14.9757 5.5363C14.6927 5.25329 14.6927 4.79454 14.9757 4.51154Z"/>
5
+ </mask>
6
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.7223 9.66339C10.7223 10.0636 10.3979 10.388 9.9976 10.388C9.5973 10.388 9.27295 10.0637 9.27295 9.66339V1.72465C9.27295 1.32445 9.5973 1 9.9976 1C10.3979 1 10.7223 1.32445 10.7223 1.72465V9.66339ZM14.9757 4.51154C15.2588 4.22854 15.7176 4.22854 16.0006 4.51154C17.6041 6.11505 18.4872 8.24708 18.4871 10.5149C18.4871 12.7826 17.6041 14.9145 16.0007 16.5178C14.346 18.1725 12.172 18.9999 9.99833 19C7.82407 19.0001 5.65011 18.1725 3.99481 16.5172C0.685262 13.2077 0.685552 7.82234 3.99529 4.5126C4.27839 4.2296 4.73714 4.2296 5.02014 4.5126C5.30315 4.79551 5.30315 5.25436 5.02014 5.53736C2.27544 8.28206 2.27515 12.7479 5.01966 15.4924C6.39216 16.8649 8.19539 17.5512 9.99823 17.5513C11.8011 17.5515 13.6034 16.8654 14.9757 15.493C16.3055 14.1633 17.0378 12.3953 17.0378 10.5148C17.0378 8.63415 16.3055 6.86609 14.9757 5.5363C14.6927 5.25329 14.6927 4.79454 14.9757 4.51154Z" fill="currentColor"/>
7
+ <path d="M16.0006 4.51154L16.142 4.37012L16.0006 4.51154ZM14.9757 4.51154L14.8343 4.37009L14.8343 4.37012L14.9757 4.51154ZM18.4871 10.5149L18.2871 10.5149V10.5149H18.4871ZM16.0007 16.5178L15.8593 16.3764L15.8593 16.3764L16.0007 16.5178ZM9.99833 19L9.99832 18.8L9.99833 19ZM3.99481 16.5172L3.85339 16.6587L3.99481 16.5172ZM3.99529 4.5126L3.85389 4.37115L3.85387 4.37118L3.99529 4.5126ZM5.02014 4.5126L4.87872 4.65402L4.87875 4.65405L5.02014 4.5126ZM5.02014 5.53736L4.87872 5.39594L5.02014 5.53736ZM5.01966 15.4924L5.16108 15.351L5.01966 15.4924ZM9.99823 17.5513L9.99825 17.3513H9.99824L9.99823 17.5513ZM14.9757 15.493L14.8343 15.3515L14.8343 15.3515L14.9757 15.493ZM14.9757 5.5363L15.1172 5.39487L14.9757 5.5363ZM9.9976 10.588C10.5084 10.588 10.9223 10.174 10.9223 9.66339H10.5223C10.5223 9.95315 10.2874 10.188 9.9976 10.188V10.588ZM9.07295 9.66339C9.07295 10.1741 9.48685 10.588 9.9976 10.588V10.188C9.70776 10.188 9.47295 9.95323 9.47295 9.66339H9.07295ZM9.07295 1.72465V9.66339H9.47295V1.72465H9.07295ZM9.9976 0.8C9.48683 0.8 9.07295 1.21401 9.07295 1.72465H9.47295C9.47295 1.43489 9.70778 1.2 9.9976 1.2V0.8ZM10.9223 1.72465C10.9223 1.21401 10.5084 0.8 9.9976 0.8V1.2C10.2874 1.2 10.5223 1.43489 10.5223 1.72465H10.9223ZM10.9223 9.66339V1.72465H10.5223V9.66339H10.9223ZM16.142 4.37012C15.7809 4.009 15.1955 4.00903 14.8343 4.37009L15.1171 4.65298C15.3221 4.44804 15.6543 4.44807 15.8592 4.65296L16.142 4.37012ZM18.6871 10.5149C18.6872 8.19404 17.783 6.01114 16.142 4.37012L15.8592 4.65296C17.4252 6.21897 18.2872 8.30012 18.2871 10.5149L18.6871 10.5149ZM16.1421 16.6592C17.783 15.0184 18.6871 12.8356 18.6871 10.5149H18.2871C18.2871 12.7295 17.4252 14.8106 15.8593 16.3764L16.1421 16.6592ZM9.99834 19.2C12.2227 19.1999 14.4482 18.3531 16.1421 16.6592L15.8593 16.3764C14.2437 17.992 12.1213 18.7999 9.99832 18.8L9.99834 19.2ZM3.85339 16.6587C5.54782 18.3531 7.77338 19.2001 9.99834 19.2L9.99832 18.8C7.87477 18.8001 5.7524 17.992 4.13623 16.3758L3.85339 16.6587ZM3.85387 4.37118C0.466037 7.75901 0.465724 13.271 3.85339 16.6587L4.13623 16.3758C0.9048 13.1444 0.905066 7.88567 4.13671 4.65402L3.85387 4.37118ZM5.16157 4.37118C4.80045 4.01006 4.21508 4.01009 3.85389 4.37115L4.13669 4.65405C4.3417 4.4491 4.67384 4.44914 4.87872 4.65402L5.16157 4.37118ZM5.16157 5.67878C5.52266 5.31769 5.52269 4.73218 5.16154 4.37115L4.87875 4.65405C5.0836 4.85883 5.08363 5.19103 4.87872 5.39594L5.16157 5.67878ZM5.16108 15.351C2.49469 12.6846 2.49496 8.34539 5.16157 5.67878L4.87872 5.39594C2.05593 8.21873 2.05561 12.8112 4.87824 15.6338L5.16108 15.351ZM9.99824 17.3513C8.24608 17.3512 6.49444 16.6843 5.16108 15.351L4.87824 15.6338C6.28988 17.0454 8.1447 17.7512 9.99822 17.7513L9.99824 17.3513ZM14.8343 15.3515C13.5011 16.6848 11.7504 17.3515 9.99825 17.3513L9.99821 17.7513C11.8518 17.7515 13.7057 17.0459 15.1172 15.6344L14.8343 15.3515ZM16.8378 10.5148C16.8378 12.3423 16.1266 14.0593 14.8343 15.3515L15.1172 15.6344C16.4845 14.2672 17.2378 12.4483 17.2378 10.5148H16.8378ZM14.8343 5.67772C16.1266 6.97 16.8378 8.68718 16.8378 10.5148H17.2378C17.2378 8.58111 16.4845 6.76217 15.1172 5.39487L14.8343 5.67772ZM14.8343 4.37012C14.4732 4.73122 14.4732 5.31661 14.8343 5.67772L15.1172 5.39487C14.9123 5.18998 14.9123 4.85786 15.1172 4.65296L14.8343 4.37012Z" fill="currentColor" mask="url(#path-1-outside-1_763_0)"/>
8
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M16.3631 3.6371C12.8468 0.120742 7.15493 0.120214 3.63808 3.6371C0.121719 7.15346 0.121191 12.8453 3.63808 16.3622C7.15443 19.8785 12.8463 19.879 16.3631 16.3622C19.8795 12.8458 19.88 7.15399 16.3631 3.6371ZM10.0006 17.5195C5.85415 17.5195 2.48075 14.1461 2.48075 9.99961C2.48075 5.85317 5.85415 2.47981 10.0006 2.47981C14.147 2.47981 17.5204 5.85321 17.5204 9.99965C17.5204 14.1461 14.147 17.5195 10.0006 17.5195ZM11.5015 6.63309C11.0933 6.63309 10.7625 6.96398 10.7625 7.37217V12.6278C10.7625 13.036 11.0933 13.3669 11.5015 13.3669C11.9097 13.3669 12.2406 13.036 12.2406 12.6278V7.37217C12.2406 6.96398 11.9098 6.63309 11.5015 6.63309ZM7.75928 7.37217C7.75928 6.96398 8.09017 6.63309 8.49835 6.63309C8.90657 6.63309 9.23743 6.96398 9.23743 7.37217V12.6278C9.23743 13.036 8.90654 13.3669 8.49835 13.3669C8.09017 13.3669 7.75928 13.036 7.75928 12.6278V7.37217Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M14.1666 12.5C15.0871 12.5 15.8333 11.7538 15.8333 10.8333C15.8333 9.53283 15.3976 8.51195 14.675 7.79675C14.3316 7.45688 13.9595 7.22182 13.6111 7.05868V5.83333C13.6111 3.99239 12.1187 2.5 10.2777 2.5H9.72218C7.88123 2.5 6.38885 3.99239 6.38885 5.83333L6.38885 7.05869C6.04039 7.22183 5.66834 7.45688 5.32493 7.79675C4.60227 8.51195 4.16663 9.53284 4.16663 10.8333C4.16663 11.7538 4.91278 12.5 5.83324 12.5H9.16662V16.6667C9.16662 17.1269 9.53972 17.5 9.99996 17.5C10.4602 17.5 10.8333 17.1269 10.8333 16.6667V12.5H14.1666ZM10.0018 10.8333H14.1666C14.1666 10.0667 13.9577 9.53521 13.6679 9.16667C13.2728 8.6641 12.7274 8.46462 12.3567 8.38545C12.1317 8.33738 11.9444 8.14679 11.9444 7.91667V5.83333C11.9444 4.91286 11.1982 4.16667 10.2777 4.16667L9.72218 4.16667C8.80171 4.16667 8.05551 4.91286 8.05551 5.83333V7.91667C8.05551 8.14679 7.86827 8.33738 7.64322 8.38545C7.27252 8.46463 6.72713 8.66411 6.332 9.16667C6.04228 9.53516 5.83334 10.0669 5.83329 10.8333H9.99812C9.99873 10.8333 9.99934 10.8333 9.99996 10.8333C10.0006 10.8333 10.0012 10.8333 10.0018 10.8333Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1 10.0023C1 5.03077 5.02875 1.00201 10.0003 1.00201C14.9707 1.00201 19.0006 5.03077 19 10.0023C19 14.9715 14.9707 18.9996 10.0003 18.9996C5.02875 18.9996 1 14.9721 1 10.0023ZM2.50344 10.0023C2.50344 14.1431 5.86014 17.498 10.0003 17.498C14.1399 17.498 17.4966 14.1431 17.496 10.0023C17.496 5.86275 14.1399 2.50426 10.0003 2.50426C5.86014 2.50426 2.50344 5.86335 2.50344 10.0023ZM9.23116 6.93112L12.9688 9.6481C13.0856 9.73315 13.1563 9.86673 13.1557 10.0117C13.1557 10.1542 13.0868 10.2884 12.9688 10.3753L9.23116 13.0898C9.1521 13.1479 9.05866 13.1773 8.96641 13.1773C8.89573 13.1773 8.82565 13.1611 8.76156 13.1288C8.61002 13.0521 8.51538 12.897 8.51538 12.7269V7.2947C8.51538 7.12638 8.61002 6.97065 8.76156 6.89398C8.91191 6.81671 9.094 6.83169 9.23116 6.93112Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <mask id="path-1-outside-1_2364_31579" maskUnits="userSpaceOnUse" x="0" y="3.28162" width="18" height="15" fill="black">
3
+ <rect fill="white" y="3.28162" width="18" height="15"/>
4
+ <path d="M17.2853 13.4897C17.0699 13.4897 16.8951 13.6644 16.8951 13.8799V15.529C16.8944 16.1752 16.3707 16.6988 15.7244 16.6996H2.95102C2.30475 16.6988 1.78117 16.1752 1.78041 15.529V6.23264C1.78117 5.58636 2.30475 5.06279 2.95102 5.06203H5.64969C5.86522 5.06203 6.03989 4.88735 6.03989 4.67182C6.03989 4.45629 5.86522 4.28162 5.64969 4.28162H2.95102C1.874 4.28284 1.00122 5.15561 1 6.23264V15.529C1.00122 16.606 1.874 17.4788 2.95102 17.48H15.7244C16.8015 17.4788 17.6742 16.606 17.6755 15.529V13.8799C17.6755 13.6644 17.5008 13.4897 17.2853 13.4897Z"/>
5
+ </mask>
6
+ <path d="M17.2853 13.4897C17.0699 13.4897 16.8951 13.6644 16.8951 13.8799V15.529C16.8944 16.1752 16.3707 16.6988 15.7244 16.6996H2.95102C2.30475 16.6988 1.78117 16.1752 1.78041 15.529V6.23264C1.78117 5.58636 2.30475 5.06279 2.95102 5.06203H5.64969C5.86522 5.06203 6.03989 4.88735 6.03989 4.67182C6.03989 4.45629 5.86522 4.28162 5.64969 4.28162H2.95102C1.874 4.28284 1.00122 5.15561 1 6.23264V15.529C1.00122 16.606 1.874 17.4788 2.95102 17.48H15.7244C16.8015 17.4788 17.6742 16.606 17.6755 15.529V13.8799C17.6755 13.6644 17.5008 13.4897 17.2853 13.4897Z" fill="currentColor"/>
7
+ <path d="M16.8951 15.529L17.1951 15.5292V15.529H16.8951ZM15.7244 16.6996V16.9996H15.7248L15.7244 16.6996ZM2.95102 16.6996L2.95067 16.9996H2.95102V16.6996ZM1.78041 15.529H1.48041L1.48041 15.5293L1.78041 15.529ZM1.78041 6.23264L1.48041 6.23229V6.23264H1.78041ZM2.95102 5.06203V4.76203L2.95067 4.76203L2.95102 5.06203ZM2.95102 4.28162V3.98162L2.95069 3.98162L2.95102 4.28162ZM1 6.23264L0.7 6.2323V6.23264H1ZM1 15.529H0.7L0.7 15.5293L1 15.529ZM2.95102 17.48L2.95069 17.78H2.95102V17.48ZM15.7244 17.48V17.78L15.7248 17.78L15.7244 17.48ZM17.6755 15.529L17.9755 15.5293V15.529H17.6755ZM17.2853 13.1897C16.9043 13.1897 16.5951 13.4986 16.5951 13.8799H17.1951C17.1951 13.8301 17.2355 13.7897 17.2853 13.7897V13.1897ZM16.5951 13.8799V15.529H17.1951V13.8799H16.5951ZM16.5951 15.5287C16.5946 16.0094 16.205 16.399 15.7241 16.3996L15.7248 16.9996C16.5364 16.9986 17.1943 16.3411 17.1951 15.5292L16.5951 15.5287ZM15.7244 16.3996H2.95102V16.9996H15.7244V16.3996ZM2.95138 16.3996C2.47051 16.399 2.08098 16.0095 2.08041 15.5286L1.48041 15.5293C1.48137 16.341 2.13899 16.9986 2.95067 16.9996L2.95138 16.3996ZM2.08041 15.529V6.23264H1.48041V15.529H2.08041ZM2.08041 6.23299C2.08098 5.75213 2.47051 5.36259 2.95138 5.36203L2.95067 4.76203C2.13899 4.76298 1.48137 5.4206 1.48041 6.23229L2.08041 6.23299ZM2.95102 5.36203H5.64969V4.76203H2.95102V5.36203ZM5.64969 5.36203C6.0309 5.36203 6.33989 5.05303 6.33989 4.67182H5.73989C5.73989 4.72166 5.69953 4.76203 5.64969 4.76203V5.36203ZM6.33989 4.67182C6.33989 4.29061 6.0309 3.98162 5.64969 3.98162V4.58162C5.69953 4.58162 5.73989 4.62198 5.73989 4.67182H6.33989ZM5.64969 3.98162H2.95102V4.58162H5.64969V3.98162ZM2.95069 3.98162C1.70824 3.98302 0.701407 4.98985 0.7 6.2323L1.3 6.23298C1.30103 5.32137 2.03976 4.58265 2.95136 4.58162L2.95069 3.98162ZM0.7 6.23264V15.529H1.3V6.23264H0.7ZM0.7 15.5293C0.701407 16.7717 1.70824 17.7786 2.95069 17.78L2.95136 17.18C2.03976 17.179 1.30103 16.4402 1.3 15.5286L0.7 15.5293ZM2.95102 17.78H15.7244V17.18H2.95102V17.78ZM15.7248 17.78C16.9672 17.7786 17.9741 16.7717 17.9755 15.5293L17.3755 15.5286C17.3744 16.4402 16.6357 17.179 15.7241 17.18L15.7248 17.78ZM17.9755 15.529V13.8799H17.3755V15.529H17.9755ZM17.9755 13.8799C17.9755 13.4987 17.6665 13.1897 17.2853 13.1897V13.7897C17.3351 13.7897 17.3755 13.83 17.3755 13.8799H17.9755Z" fill="currentColor" mask="url(#path-1-outside-1_2364_31579)"/>
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M18.6264 3.06071C19.007 3.38039 19.0564 3.94809 18.7367 4.32871L13.6972 10.3287C13.5273 10.531 13.2771 10.6485 13.0129 10.6499C12.7486 10.6513 12.4972 10.5365 12.3251 10.336L9.65026 7.21911C9.32656 6.84191 9.36992 6.27371 9.74712 5.95001C10.1243 5.6263 10.6925 5.66967 11.0162 6.04687L13.0007 8.3593L17.3584 3.17104C17.678 2.79042 18.2457 2.74103 18.6264 3.06071Z" fill="currentColor"/>
9
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M9.5 2.37477C5.01256 2.37477 1.37477 6.01256 1.37477 10.5C1.37477 14.9874 5.01256 18.6252 9.5 18.6252C13.9874 18.6252 17.6252 14.9874 17.6252 10.5C17.6252 6.01256 13.9874 2.37477 9.5 2.37477ZM0 10.5C0 5.25329 4.25329 1 9.5 1C14.7467 1 19 5.25329 19 10.5C19 15.7467 14.7467 20 9.5 20C4.25329 20 0 15.7467 0 10.5ZM9.76029 6.80533C9.30492 6.72722 8.8366 6.81279 8.43828 7.04689C8.03995 7.28099 7.73733 7.64851 7.58401 8.08435C7.45803 8.44247 7.06559 8.63066 6.70747 8.50468C6.34935 8.3787 6.16117 7.98626 6.28714 7.62814C6.5482 6.88603 7.06348 6.26026 7.7417 5.86166C8.41993 5.46306 9.21735 5.31735 9.99271 5.45035C10.7681 5.58334 11.4713 5.98646 11.978 6.58829C12.4845 7.19006 12.7618 7.95167 12.7607 8.73826V8.73751H12.0733L12.7607 8.73853C12.7602 9.98414 11.835 10.8241 11.1327 11.2923C10.7606 11.5404 10.3933 11.7235 10.1218 11.8442C9.98508 11.905 9.87018 11.951 9.78785 11.9823C9.74663 11.998 9.71341 12.0101 9.68952 12.0186L9.66078 12.0287L9.65193 12.0317L9.64894 12.0327L9.64781 12.0331L9.64733 12.0333C9.64712 12.0333 9.64692 12.0334 9.43666 11.4026L9.64692 12.0334C9.28677 12.1535 8.89749 11.9588 8.77744 11.5987C8.65751 11.2389 8.85162 10.8501 9.21104 10.7296L9.21183 10.7293C9.212 10.7292 9.21218 10.7292 9.42937 11.3807L9.21218 10.7292L9.21348 10.7287L9.22896 10.7233C9.24379 10.718 9.26737 10.7095 9.29844 10.6976C9.3607 10.6739 9.45234 10.6373 9.56347 10.5879C9.78766 10.4883 10.0814 10.3409 10.3701 10.1484C10.9896 9.73545 11.3859 9.25386 11.3859 8.73751V8.73648C11.3866 8.27446 11.2238 7.8271 10.9262 7.47364C10.6287 7.12018 10.2157 6.88343 9.76029 6.80533ZM9.50004 14.2189C9.12041 14.2189 8.81266 14.5267 8.81266 14.9063C8.81266 15.2859 9.12041 15.5937 9.50004 15.5937H9.51062C9.89025 15.5937 10.198 15.2859 10.198 14.9063C10.198 14.5267 9.89025 14.2189 9.51062 14.2189H9.50004Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="2" y="13.8889" width="15.5556" height="3.11111" fill="currentColor"/>
3
+ <rect x="6.66687" y="9.22229" width="6.22222" height="1.55556" rx="0.777778" fill="currentColor"/>
4
+ <rect x="5.11084" y="6.11108" width="6.22222" height="1.55556" rx="0.777778" fill="currentColor"/>
5
+ <rect x="3.55542" y="3" width="6.22222" height="1.55556" rx="0.777778" fill="currentColor"/>
6
+ <path d="M2 11.7777C2 11.2254 2.44772 10.7777 3 10.7777H4.11111C4.6634 10.7777 5.11111 11.2254 5.11111 11.7777V13.8888H2V11.7777Z" fill="currentColor"/>
7
+ <path d="M14.4446 11.7777C14.4446 11.2254 14.8923 10.7777 15.4446 10.7777H16.5557C17.108 10.7777 17.5557 11.2254 17.5557 11.7777V13.8888H14.4446V11.7777Z" fill="currentColor"/>
8
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M14.2045 10.5302C13.8778 10.3749 13.5444 10.2411 13.2053 10.1291C14.3037 9.30455 15.0156 7.99167 15.0156 6.51562C15.0156 4.02572 12.9899 2 10.5 2C8.01005 2 5.98436 4.02572 5.98436 6.51562C5.98436 7.9933 6.69783 9.30748 7.79835 10.1318C6.79004 10.4638 5.84391 10.9803 5.01583 11.6614C3.49738 12.9104 2.44162 14.6526 2.04308 16.567C1.91817 17.1668 2.06782 17.7829 2.45358 18.2573C2.83744 18.7293 3.40664 19 4.01518 19H12.1933C12.5601 19 12.8574 18.7027 12.8574 18.3359C12.8574 17.9692 12.5601 17.6719 12.1933 17.6719H4.01518C3.7317 17.6719 3.56067 17.5136 3.48397 17.4193C3.35152 17.2565 3.30025 17.0445 3.34332 16.8376C4.03245 13.5275 6.9522 11.1094 10.3239 11.0279C10.3823 11.0301 10.441 11.0312 10.5 11.0312C10.5595 11.0312 10.6188 11.0301 10.6778 11.0278C11.711 11.052 12.7048 11.2878 13.6343 11.7297C13.9656 11.8871 14.3617 11.7463 14.5191 11.415C14.6766 11.0838 14.5357 10.6876 14.2045 10.5302ZM10.662 9.69904C10.6081 9.69808 10.5541 9.69758 10.5 9.69758C10.4464 9.69758 10.3928 9.69811 10.3393 9.69911C8.65605 9.61514 7.31249 8.21934 7.31249 6.51562C7.31249 4.75802 8.74238 3.32812 10.5 3.32812C12.2576 3.32812 13.6875 4.75802 13.6875 6.51562C13.6875 8.21891 12.3446 9.61444 10.662 9.69904Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M19.3456 13.1643C19.3456 12.992 19.2771 12.8266 19.1552 12.7047C19.0333 12.5828 18.868 12.5143 18.6956 12.5143H15.7934C15.4344 12.5143 15.1434 12.8054 15.1434 13.1643C15.1434 13.5233 15.4344 13.8143 15.7934 13.8143L17.1264 13.8143L14.2359 16.7048C13.9821 16.9586 13.9821 17.3702 14.2359 17.624C14.4898 17.8779 14.9013 17.8779 15.1552 17.624L18.0456 14.7336L18.0456 16.0665C18.0456 16.4255 18.3366 16.7165 18.6956 16.7165C19.0546 16.7165 19.3456 16.4255 19.3456 16.0665L19.3456 13.1643Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M9.51313 2.25C8.5118 2.25 7.52028 2.44723 6.59517 2.83042C5.67006 3.21361 4.82949 3.77526 4.12144 4.48331L2.75 5.85475V3.91528C2.75 3.50107 2.41421 3.16528 2 3.16528C1.58579 3.16528 1.25 3.50107 1.25 3.91528V7.66528C1.25 8.07191 1.5736 8.40296 1.97733 8.41495C1.98491 8.41518 1.99251 8.41529 2.00012 8.41529H6C6.41421 8.41529 6.75 8.07951 6.75 7.66529C6.75 7.25108 6.41421 6.91529 6 6.91529H5.75363L5.75 6.91528H3.81079L5.1821 5.54397C5.75086 4.97521 6.42608 4.52405 7.16919 4.21624C7.91231 3.90843 8.70878 3.75 9.51313 3.75C10.3175 3.75 11.1139 3.90843 11.8571 4.21624C12.6002 4.52405 13.2754 4.97521 13.8442 5.54397C14.1371 5.83686 14.6119 5.83686 14.9048 5.54397C15.1977 5.25108 15.1977 4.7762 14.9048 4.48331C14.1968 3.77526 13.3562 3.21361 12.4311 2.83042C11.506 2.44723 10.5145 2.25 9.51313 2.25ZM12.5261 12.0847C12.5261 11.6705 12.8619 11.3347 13.2761 11.3347H17.0261H17.0261C17.1319 11.3347 17.2325 11.3566 17.3237 11.3961C17.3961 11.4273 17.4645 11.4705 17.526 11.5256C17.5474 11.5447 17.5677 11.5651 17.5868 11.5865C17.638 11.644 17.6788 11.7075 17.7092 11.7746C17.7522 11.8691 17.7761 11.9741 17.7761 12.0847V15.8347C17.7761 16.2489 17.4403 16.5847 17.0261 16.5847C16.6119 16.5847 16.2761 16.2489 16.2761 15.8347V13.8954L14.9048 15.2667C14.1967 15.9747 13.3562 16.5364 12.4311 16.9196C11.5059 17.3028 10.5144 17.5 9.51309 17.5C8.51176 17.5 7.52024 17.3028 6.59513 16.9196C5.67002 16.5364 4.82945 15.9747 4.1214 15.2667C3.82851 14.9738 3.82851 14.4989 4.1214 14.206C4.4143 13.9131 4.88917 13.9131 5.18206 14.206C5.75082 14.7748 6.42604 15.226 7.16916 15.5338C7.91228 15.8416 8.70875 16 9.51309 16C10.3174 16 11.1139 15.8416 11.857 15.5338C12.6001 15.226 13.2754 14.7748 13.8441 14.206L15.2154 12.8347H13.2761C12.8619 12.8347 12.5261 12.4989 12.5261 12.0847Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M6.75 7.66418H3V3.91418" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M5.65625 14.7344C6.61751 15.6964 7.84251 16.3518 9.17628 16.6175C10.5101 16.8832 11.8927 16.7474 13.1492 16.2272C14.4058 15.707 15.4799 14.8258 16.2356 13.6951C16.9912 12.5644 17.3946 11.235 17.3946 9.875C17.3946 8.51502 16.9912 7.18558 16.2356 6.05488C15.4799 4.92417 14.4058 4.04298 13.1492 3.52279C11.8927 3.00261 10.5101 2.86679 9.17628 3.13252C7.84251 3.39824 6.61751 4.05358 5.65625 5.01563L3 7.66407" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_516_60)">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1.48148 8.97119C1.48148 4.83474 4.83474 1.48148 8.97119 1.48148C13.1076 1.48148 16.4609 4.83474 16.4609 8.97119C16.4609 10.9976 15.6562 12.836 14.3488 14.1844C14.3178 14.2069 14.2881 14.2322 14.2602 14.2602C14.2322 14.2881 14.2069 14.3178 14.1844 14.3488C12.836 15.6562 10.9976 16.4609 8.97119 16.4609C4.83474 16.4609 1.48148 13.1076 1.48148 8.97119ZM14.7695 15.817C13.2058 17.1428 11.1819 17.9424 8.97119 17.9424C4.01654 17.9424 0 13.9258 0 8.97119C0 4.01654 4.01654 0 8.97119 0C13.9258 0 17.9424 4.01654 17.9424 8.97119C17.9424 11.1819 17.1428 13.2058 15.817 14.7695L19.783 18.7355C20.0723 19.0248 20.0723 19.4938 19.783 19.783C19.4938 20.0723 19.0248 20.0723 18.7355 19.783L14.7695 15.817Z" fill="currentColor"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="clip0_516_60">
7
+ <rect width="20" height="20" fill="white"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -0,0 +1,17 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_2273_31266)">
3
+ <circle cx="10" cy="10" r="8.5" stroke="currentColor"/>
4
+ <rect x="9.5" width="1" height="3" rx="0.5" fill="currentColor"/>
5
+ <rect x="9.5" y="17" width="1" height="3" rx="0.5" fill="currentColor"/>
6
+ <rect y="10.5" width="1" height="2" rx="0.5" transform="rotate(-90 0 10.5)" fill="currentColor"/>
7
+ <rect x="18" y="10.5" width="1" height="2" rx="0.5" transform="rotate(-90 18 10.5)" fill="currentColor"/>
8
+ <path d="M5.82707 9.3925L4.9647 9.04C4.69474 8.9275 4.37229 8.785 4.37229 8.41C4.37229 8.0275 4.70974 7.8175 5.13717 7.8175C5.57961 7.8175 5.97705 8.035 6.307 8.335L6.77193 7.6375C6.46447 7.3225 5.93205 7.015 5.19716 7.015C4.10983 7.015 3.40493 7.6375 3.40493 8.5375C3.40493 9.1675 3.77988 9.565 4.34229 9.79L5.15217 10.1125C5.5946 10.2925 5.86456 10.4275 5.86456 10.8325C5.86456 11.2825 5.53461 11.515 5.05468 11.515C4.56726 11.515 4.07983 11.275 3.67489 10.8325L3.20996 11.5375C3.54741 11.9275 4.15482 12.34 5.03969 12.34C6.13452 12.34 6.83942 11.7025 6.83942 10.7425C6.83942 10.0975 6.55446 9.6925 5.82707 9.3925Z" fill="currentColor"/>
9
+ <path d="M7.58157 7.075V12.25H10.8361V11.44H8.55643V9.97H10.6486V9.1675H8.55643V7.885H10.7761V7.075H7.58157Z" fill="currentColor"/>
10
+ <path d="M14.0829 12.34C15.5826 12.34 16.79 11.335 16.79 9.67C16.79 8.005 15.5826 7 14.0829 7C12.5906 7 11.3758 8.005 11.3758 9.67C11.3758 11.335 12.5906 12.34 14.0829 12.34ZM15.7851 9.6625C15.7851 10.7875 15.0427 11.485 14.0829 11.485C13.1305 11.485 12.3806 10.7875 12.3806 9.6625C12.3806 8.5375 13.123 7.8475 14.0829 7.8475C15.0427 7.8475 15.7851 8.5375 15.7851 9.6625Z" fill="currentColor"/>
11
+ </g>
12
+ <defs>
13
+ <clipPath id="clip0_2273_31266">
14
+ <rect width="20" height="20" fill="white"/>
15
+ </clipPath>
16
+ </defs>
17
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8.82222 18V13H10.1556V14.8444H18V16.1778H10.1556V18H8.82222ZM2 16.1778V14.8444H7.48889V16.1778H2ZM6.15556 12.4889V10.6667H2V9.33333H6.15556V7.46667H7.48889V12.4889H6.15556ZM8.82222 10.6667V9.33333H18V10.6667H8.82222ZM12.5111 7V2H13.8444V3.82222H18V5.15556H13.8444V7H12.5111ZM2 5.15556V3.82222H11.1778V5.15556H2Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="4" y="1" width="12" height="17" rx="2" stroke="currentColor" stroke-width="1.5"/>
3
+ <circle cx="9.94995" cy="14.25" r="0.75" fill="currentColor" stroke="currentColor"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M6.04418 8.18242C5.85194 8.37467 5.85194 8.68636 6.04418 8.87861C6.23643 9.07085 6.54812 9.07085 6.74037 8.87861L9.53049 6.08848L12.3206 8.87861C12.5129 9.07085 12.8246 9.07085 13.0168 8.87861C13.209 8.68636 13.209 8.37467 13.0168 8.18242L9.87859 5.0442C9.68634 4.85196 9.37465 4.85196 9.1824 5.0442L6.04418 8.18242Z" fill="currentColor" stroke="currentColor" stroke-width="0.2" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M13.0169 11.6476C13.2091 11.4553 13.2091 11.1437 13.0169 10.9514C12.8246 10.7592 12.5129 10.7592 12.3207 10.9514L9.53054 13.7415L6.74042 10.9514C6.54817 10.7592 6.23648 10.7592 6.04423 10.9514C5.85199 11.1437 5.85199 11.4553 6.04423 11.6476L9.18245 14.7858C9.37469 14.9781 9.68639 14.9781 9.87863 14.7858L13.0169 11.6476Z" fill="currentColor" stroke="currentColor" stroke-width="0.2" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M14.1831 6.13969V4.11747H5.70466L9.80136 8.84508C9.92879 8.99227 9.99893 9.18036 9.99893 9.37493C9.99893 9.56951 9.92879 9.7576 9.80136 9.90479L5.70466 14.6324H14.1831V12.6102C14.1831 12.3212 14.3372 12.0542 14.5874 11.9097C14.8376 11.7652 15.1461 11.7652 15.3963 11.9097C15.6466 12.0542 15.8007 12.3212 15.8007 12.6102V15.4412C15.8007 15.6557 15.7155 15.8615 15.5638 16.0132C15.4122 16.1648 15.2064 16.25 14.9919 16.25H3.93335C3.7255 16.2499 3.52576 16.1698 3.37545 16.0263C3.22501 15.8829 3.13578 15.687 3.12589 15.4794C3.11614 15.2718 3.18656 15.0684 3.32264 14.9113L8.11923 9.375L3.32264 3.83866C3.18656 3.68159 3.11614 3.47821 3.12589 3.27061C3.13578 3.06302 3.22501 2.86707 3.37545 2.7237C3.52576 2.58016 3.7255 2.50014 3.93335 2.5H14.9919C15.2064 2.5 15.4122 2.58517 15.5638 2.73683C15.7155 2.88849 15.8007 3.0943 15.8007 3.3088V6.13982C15.8007 6.42878 15.6466 6.69581 15.3963 6.84029C15.1461 6.98478 14.8376 6.98478 14.5874 6.84029C14.3371 6.69581 14.1831 6.42866 14.1831 6.13969Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M7.57944 2.57944C7.77948 2.3794 8.05079 2.26702 8.33368 2.26702H11.667C11.9499 2.26702 12.2212 2.3794 12.4213 2.57944C12.6213 2.77948 12.7337 3.05079 12.7337 3.33368V4.40002H7.26702V3.33368C7.26702 3.05079 7.3794 2.77948 7.57944 2.57944ZM6.06702 4.40002V3.33368C6.06702 2.73253 6.30583 2.15599 6.73091 1.73091C7.15599 1.30583 7.73253 1.06702 8.33368 1.06702H11.667C12.2682 1.06702 12.8447 1.30583 13.2698 1.73091C13.6949 2.15599 13.9337 2.73253 13.9337 3.33368V4.40002H17.5C17.8314 4.40002 18.1 4.66865 18.1 5.00002C18.1 5.3314 17.8314 5.60002 17.5 5.60002H16.4337V16.667C16.4337 17.2682 16.1949 17.8447 15.7698 18.2698C15.3447 18.6949 14.7682 18.9337 14.167 18.9337H5.83368C5.23253 18.9337 4.65599 18.6949 4.23091 18.2698C3.80583 17.8447 3.56702 17.2682 3.56702 16.667V5.60002H2.50002C2.16865 5.60002 1.90002 5.3314 1.90002 5.00002C1.90002 4.66865 2.16865 4.40002 2.50002 4.40002H4.16669H6.06702ZM6.66702 5.60035H13.3337H15.2337V16.667C15.2337 16.9499 15.1213 17.2212 14.9213 17.4213C14.7212 17.6213 14.4499 17.7337 14.167 17.7337H5.83368C5.55079 17.7337 5.27947 17.6213 5.07944 17.4213C4.8794 17.2212 4.76702 16.9499 4.76702 16.667V5.60035H6.66702ZM8.33303 8.56702C8.6644 8.56702 8.93303 8.83565 8.93303 9.16702V14.167C8.93303 14.4984 8.6644 14.767 8.33303 14.767C8.00166 14.767 7.73303 14.4984 7.73303 14.167V9.16702C7.73303 8.83565 8.00166 8.56702 8.33303 8.56702ZM12.267 9.16702C12.267 8.83565 11.9984 8.56702 11.667 8.56702C11.3356 8.56702 11.067 8.83565 11.067 9.16702V14.167C11.067 14.4984 11.3356 14.767 11.667 14.767C11.9984 14.767 12.267 14.4984 12.267 14.167V9.16702Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11.0379 12.5L9.5228 10.8333H5.83341C5.83347 10.0669 6.0424 9.53516 6.33212 9.16667C6.637 8.77889 7.03134 8.57156 7.36586 8.46071L6.18478 7.16151C5.89785 7.31655 5.60213 7.52254 5.32505 7.79675C4.60239 8.51195 4.16675 9.53284 4.16675 10.8333C4.16675 11.7538 4.91291 12.5 5.83336 12.5H9.16675V16.6667C9.16675 17.1269 9.53984 17.5 10.0001 17.5C10.4603 17.5 10.8334 17.1269 10.8334 16.6667V12.5H11.0379ZM6.83722 4.16268C7.41413 3.16854 8.49014 2.5 9.7223 2.5H10.2779C12.1188 2.5 13.6112 3.99239 13.6112 5.83333V7.05868C13.9597 7.22182 14.3317 7.45688 14.6751 7.79675C15.3978 8.51195 15.8334 9.53283 15.8334 10.8333C15.8334 11.6741 15.2109 12.3694 14.4017 12.4836L12.9014 10.8333H14.1667C14.1667 10.0667 13.9578 9.53521 13.668 9.16667C13.2729 8.6641 12.7275 8.46462 12.3568 8.38545C12.1318 8.33738 11.9445 8.14679 11.9445 7.91667V5.83333C11.9445 4.91286 11.1983 4.16667 10.2779 4.16667L9.7223 4.16667C8.90447 4.16667 8.22423 4.75572 8.08268 5.53269L6.83722 4.16268Z" fill="currentColor"/>
3
+ <path d="M4 4L14 15" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_3410_34283)">
3
+ <path d="M2.79167 10.1929C1.33333 9.22065 0.847222 7.76232 1.16668 6.08353C1.50129 4.28205 3.23268 3.0929 5.03413 3.42736C5.52552 3.51863 5.96878 3.71672 6.35061 3.98878C6.98774 1.96012 9.05119 0.678895 11.1947 1.07703C13.2877 1.4658 14.7327 3.32238 14.6746 5.38584C15.0124 5.34072 15.3626 5.34587 15.7162 5.41155C17.5175 5.74613 18.7068 7.47794 18.3724 9.27939" stroke="currentColor" stroke-width="1.3" stroke-miterlimit="10" stroke-linecap="round"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M9.25012 18.5C9.25012 18.9142 9.58591 19.25 10.0001 19.25C10.4143 19.25 10.7501 18.9142 10.7501 18.5L10.7501 9.81066L13.6364 12.697C13.9293 12.9898 14.4042 12.9898 14.6971 12.697C14.99 12.4041 14.99 11.9292 14.6971 11.6363L10.5304 7.46963C10.3898 7.32898 10.199 7.24996 10.0001 7.24996C9.80117 7.24996 9.6104 7.32898 9.46975 7.46963L5.30309 11.6363C5.01019 11.9292 5.01019 12.4041 5.30308 12.697C5.59598 12.9898 6.07085 12.9898 6.36375 12.697L9.25012 9.81058L9.25012 18.5Z" fill="currentColor"/>
5
+ </g>
6
+ <defs>
7
+ <clipPath id="clip0_3410_34283">
8
+ <rect width="20" height="20" fill="white"/>
9
+ </clipPath>
10
+ </defs>
11
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2.5 11.75C2.91421 11.75 3.25 12.0858 3.25 12.5V15.8333C3.25 16.0764 3.34658 16.3096 3.51849 16.4815C3.69039 16.6534 3.92355 16.75 4.16667 16.75H15.8333C16.0764 16.75 16.3096 16.6534 16.4815 16.4815C16.6534 16.3096 16.75 16.0764 16.75 15.8333V12.5C16.75 12.0858 17.0858 11.75 17.5 11.75C17.9142 11.75 18.25 12.0858 18.25 12.5V15.8333C18.25 16.4743 17.9954 17.089 17.5422 17.5422C17.089 17.9954 16.4743 18.25 15.8333 18.25H4.16667C3.52573 18.25 2.91104 17.9954 2.45783 17.5422C2.00461 17.089 1.75 16.4743 1.75 15.8333V12.5C1.75 12.0858 2.08579 11.75 2.5 11.75Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M9.25012 12.5001C9.25012 12.9143 9.58591 13.2501 10.0001 13.2501C10.4143 13.2501 10.7501 12.9143 10.7501 12.5001L10.7501 3.81072L13.6364 6.69702C13.9293 6.98991 14.4042 6.98991 14.6971 6.69702C14.99 6.40412 14.99 5.92925 14.6971 5.63636L10.5304 1.46969C10.3898 1.32904 10.199 1.25002 10.0001 1.25002C9.80117 1.25002 9.6104 1.32904 9.46975 1.46969L5.30309 5.63636C5.01019 5.92925 5.01019 6.40412 5.30308 6.69702C5.59598 6.98991 6.07085 6.98991 6.36375 6.69702L9.25012 3.81064L9.25012 12.5001Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16.8674 14.5886C17.6654 14.1536 18.2957 13.4653 18.659 12.6322C19.0223 11.7992 19.0978 10.8689 18.8736 9.98818C18.6494 9.10745 18.1384 8.32646 17.421 7.76846C16.7037 7.21046 15.821 6.90723 14.9122 6.90663H13.8814C13.6337 5.94882 13.1722 5.05962 12.5314 4.30586C11.8907 3.55211 11.0874 2.95342 10.182 2.5548C9.27652 2.15618 8.2925 1.96801 7.30387 2.00444C6.31525 2.04086 5.34774 2.30093 4.47409 2.7651C3.60045 3.22926 2.84339 3.88544 2.25985 4.68431C1.6763 5.48317 1.28145 6.40393 1.10497 7.37736C0.928498 8.35079 0.974996 9.35156 1.24097 10.3044C1.50694 11.2573 1.98547 12.1375 2.64057 12.8788" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.0355 9.14645C9.94175 9.05268 9.81458 9 9.68197 9C9.54936 9 9.42218 9.05268 9.32842 9.14645L6.14645 12.3284C5.95118 12.5237 5.95118 12.8403 6.14645 13.0355C6.34171 13.2308 6.65829 13.2308 6.85355 13.0355L9.18188 10.7072V17C9.18188 17.2761 9.40574 17.5 9.68188 17.5C9.95803 17.5 10.1819 17.2761 10.1819 17V10.707L12.5104 13.0355C12.7056 13.2308 13.0222 13.2308 13.2175 13.0355C13.4128 12.8403 13.4128 12.5237 13.2175 12.3284L10.0355 9.14645Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10 18.3333C10 18.3333 16.6667 15 16.6667 9.99996V4.16663L10 1.66663L3.33337 4.16663V9.99996C3.33337 15 10 18.3333 10 18.3333Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M13.125 7.5L9.4504 11.875L7.5 9.60227" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>