driftlessmap 1.1.0__py3-none-any.whl

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 (210) hide show
  1. driftlessmap/__init__.py +16 -0
  2. driftlessmap/__main__.py +5 -0
  3. driftlessmap/about.py +24 -0
  4. driftlessmap/allen_downloader.py +908 -0
  5. driftlessmap/app.py +8085 -0
  6. driftlessmap/atlas_downloader.py +370 -0
  7. driftlessmap/atlas_loader.py +526 -0
  8. driftlessmap/atlas_processor.py +784 -0
  9. driftlessmap/atlas_transform.py +111 -0
  10. driftlessmap/atlas_view.py +1435 -0
  11. driftlessmap/cell_detection.py +27 -0
  12. driftlessmap/coordinate_validation.py +19 -0
  13. driftlessmap/czi_reader.py +236 -0
  14. driftlessmap/data/WHS_atlas_labels.pkl +0 -0
  15. driftlessmap/data/allen_mice_atlas_labels.pkl +0 -0
  16. driftlessmap/data/atlas_labels.pkl +0 -0
  17. driftlessmap/data/query.csv +1328 -0
  18. driftlessmap/download_utils.py +85 -0
  19. driftlessmap/herbs.png +0 -0
  20. driftlessmap/icons/backward.svg +15 -0
  21. driftlessmap/icons/dot.svg +11 -0
  22. driftlessmap/icons/down-arrow.svg +10 -0
  23. driftlessmap/icons/fast_backward.svg +14 -0
  24. driftlessmap/icons/fast_forward.svg +14 -0
  25. driftlessmap/icons/forward.svg +14 -0
  26. driftlessmap/icons/layers/add.png +0 -0
  27. driftlessmap/icons/layers/ai.png +0 -0
  28. driftlessmap/icons/layers/eye_off.png +0 -0
  29. driftlessmap/icons/layers/eye_on.png +0 -0
  30. driftlessmap/icons/layers/eye_white.png +0 -0
  31. driftlessmap/icons/layers/hi.png +0 -0
  32. driftlessmap/icons/layers/trash.png +0 -0
  33. driftlessmap/icons/object.svg +22 -0
  34. driftlessmap/icons/sidebar/add.png +0 -0
  35. driftlessmap/icons/sidebar/atlascontrol.png +0 -0
  36. driftlessmap/icons/sidebar/atlascontrol.svg +32 -0
  37. driftlessmap/icons/sidebar/bnd.svg +14 -0
  38. driftlessmap/icons/sidebar/c_section.png +0 -0
  39. driftlessmap/icons/sidebar/c_section2.png +0 -0
  40. driftlessmap/icons/sidebar/cell.svg +24 -0
  41. driftlessmap/icons/sidebar/check.svg +9 -0
  42. driftlessmap/icons/sidebar/compare.svg +18 -0
  43. driftlessmap/icons/sidebar/contour.svg +14 -0
  44. driftlessmap/icons/sidebar/h_section.png +0 -0
  45. driftlessmap/icons/sidebar/info.svg +14 -0
  46. driftlessmap/icons/sidebar/layers.png +0 -0
  47. driftlessmap/icons/sidebar/layers.svg +23 -0
  48. driftlessmap/icons/sidebar/line.svg +10 -0
  49. driftlessmap/icons/sidebar/link.svg +18 -0
  50. driftlessmap/icons/sidebar/link_off.svg +18 -0
  51. driftlessmap/icons/sidebar/merge.svg +11 -0
  52. driftlessmap/icons/sidebar/object.svg +13 -0
  53. driftlessmap/icons/sidebar/probe.png +0 -0
  54. driftlessmap/icons/sidebar/probe.svg +23 -0
  55. driftlessmap/icons/sidebar/rotation_horizontal.svg +14 -0
  56. driftlessmap/icons/sidebar/rotation_vertical.svg +14 -0
  57. driftlessmap/icons/sidebar/s_section.png +0 -0
  58. driftlessmap/icons/sidebar/tool.png +0 -0
  59. driftlessmap/icons/sidebar/tool.svg +19 -0
  60. driftlessmap/icons/sidebar/trash.png +0 -0
  61. driftlessmap/icons/sidebar/tree_checked.svg +10 -0
  62. driftlessmap/icons/sidebar/treeview.png +0 -0
  63. driftlessmap/icons/sidebar/treeview.svg +10 -0
  64. driftlessmap/icons/sidebar/treeview2.png +0 -0
  65. driftlessmap/icons/sidebar/virus.svg +24 -0
  66. driftlessmap/icons/tdown.svg +16 -0
  67. driftlessmap/icons/toolbar/accept.svg +18 -0
  68. driftlessmap/icons/toolbar/accept2.svg +24 -0
  69. driftlessmap/icons/toolbar/aim.svg +44 -0
  70. driftlessmap/icons/toolbar/aim_not.svg +28 -0
  71. driftlessmap/icons/toolbar/anchor.svg +14 -0
  72. driftlessmap/icons/toolbar/anticlockwise_rotation.svg +12 -0
  73. driftlessmap/icons/toolbar/atlas_icon.png +0 -0
  74. driftlessmap/icons/toolbar/boundary_register.svg +18 -0
  75. driftlessmap/icons/toolbar/cancel.svg +32 -0
  76. driftlessmap/icons/toolbar/cell_select.svg +22 -0
  77. driftlessmap/icons/toolbar/cell_select_not.svg +12 -0
  78. driftlessmap/icons/toolbar/check.svg +9 -0
  79. driftlessmap/icons/toolbar/clockwise_rotation.svg +11 -0
  80. driftlessmap/icons/toolbar/closed_path.svg +16 -0
  81. driftlessmap/icons/toolbar/closed_path2 copy.svg +19 -0
  82. driftlessmap/icons/toolbar/closed_path2.svg +20 -0
  83. driftlessmap/icons/toolbar/eraser.png +0 -0
  84. driftlessmap/icons/toolbar/eraser.svg +19 -0
  85. driftlessmap/icons/toolbar/eye.svg +17 -0
  86. driftlessmap/icons/toolbar/eye_closed.svg +19 -0
  87. driftlessmap/icons/toolbar/fill.svg +12 -0
  88. driftlessmap/icons/toolbar/gps.svg +15 -0
  89. driftlessmap/icons/toolbar/h_flip.png +0 -0
  90. driftlessmap/icons/toolbar/handle.png +0 -0
  91. driftlessmap/icons/toolbar/image_icon.png +0 -0
  92. driftlessmap/icons/toolbar/image_icon.svg +25 -0
  93. driftlessmap/icons/toolbar/info.svg +14 -0
  94. driftlessmap/icons/toolbar/inpart.png +0 -0
  95. driftlessmap/icons/toolbar/inpart.svg +17 -0
  96. driftlessmap/icons/toolbar/lasso.png +0 -0
  97. driftlessmap/icons/toolbar/lasso.svg +14 -0
  98. driftlessmap/icons/toolbar/left90.png +0 -0
  99. driftlessmap/icons/toolbar/line.svg +10 -0
  100. driftlessmap/icons/toolbar/line_sites.svg +11 -0
  101. driftlessmap/icons/toolbar/linear_silicon.png +0 -0
  102. driftlessmap/icons/toolbar/linear_silicon.svg +88 -0
  103. driftlessmap/icons/toolbar/list.svg +14 -0
  104. driftlessmap/icons/toolbar/location.svg +14 -0
  105. driftlessmap/icons/toolbar/magic-wand.svg +16 -0
  106. driftlessmap/icons/toolbar/magic_white.png +0 -0
  107. driftlessmap/icons/toolbar/mask.svg +10 -0
  108. driftlessmap/icons/toolbar/match.svg +20 -0
  109. driftlessmap/icons/toolbar/matchbnd.svg +18 -0
  110. driftlessmap/icons/toolbar/matching.svg +36 -0
  111. driftlessmap/icons/toolbar/merge.svg +11 -0
  112. driftlessmap/icons/toolbar/move_down.png +0 -0
  113. driftlessmap/icons/toolbar/move_left.png +0 -0
  114. driftlessmap/icons/toolbar/move_right.png +0 -0
  115. driftlessmap/icons/toolbar/move_up.png +0 -0
  116. driftlessmap/icons/toolbar/moving.png +0 -0
  117. driftlessmap/icons/toolbar/multi-probe.svg +119 -0
  118. driftlessmap/icons/toolbar/multi_pencil.svg +23 -0
  119. driftlessmap/icons/toolbar/multi_probe.png +0 -0
  120. driftlessmap/icons/toolbar/object.svg +13 -0
  121. driftlessmap/icons/toolbar/open_path.svg +22 -0
  122. driftlessmap/icons/toolbar/outpart.png +0 -0
  123. driftlessmap/icons/toolbar/outpart.svg +26 -0
  124. driftlessmap/icons/toolbar/pencil.png +0 -0
  125. driftlessmap/icons/toolbar/pencil.svg +19 -0
  126. driftlessmap/icons/toolbar/plasso.png +0 -0
  127. driftlessmap/icons/toolbar/probe.svg +19 -0
  128. driftlessmap/icons/toolbar/radar.svg +32 -0
  129. driftlessmap/icons/toolbar/rotation.svg +45 -0
  130. driftlessmap/icons/toolbar/rotation_clockwise.svg +18 -0
  131. driftlessmap/icons/toolbar/rotation_counter_clockwise.svg +18 -0
  132. driftlessmap/icons/toolbar/ruler.svg +27 -0
  133. driftlessmap/icons/toolbar/separate_sites.svg +13 -0
  134. driftlessmap/icons/toolbar/single_pencil.svg +16 -0
  135. driftlessmap/icons/toolbar/toa.svg +11 -0
  136. driftlessmap/icons/toolbar/toa_delete.svg +36 -0
  137. driftlessmap/icons/toolbar/toaa.svg +11 -0
  138. driftlessmap/icons/toolbar/toh.svg +11 -0
  139. driftlessmap/icons/toolbar/toh_delete.svg +36 -0
  140. driftlessmap/icons/toolbar/tohh.svg +11 -0
  141. driftlessmap/icons/toolbar/trans.png +0 -0
  142. driftlessmap/icons/toolbar/trans.svg +16 -0
  143. driftlessmap/icons/toolbar/triangulation.svg +10 -0
  144. driftlessmap/icons/toolbar/two_window.png +0 -0
  145. driftlessmap/icons/toolbar/unmerge.svg +16 -0
  146. driftlessmap/icons/toolbar/v_flip.png +0 -0
  147. driftlessmap/icons/toolbar/virus.svg +24 -0
  148. driftlessmap/icons/toolbar/virus_register.svg +31 -0
  149. driftlessmap/icons/toolbar/vis2d.svg +29 -0
  150. driftlessmap/icons/toolbar/window2.png +0 -0
  151. driftlessmap/icons/toolbar/window3.png +0 -0
  152. driftlessmap/icons/toolbar/window4.png +0 -0
  153. driftlessmap/icons/tree_close.svg +14 -0
  154. driftlessmap/icons/tree_open.svg +14 -0
  155. driftlessmap/icons/up-arrow.svg +10 -0
  156. driftlessmap/image_curves.py +579 -0
  157. driftlessmap/image_reader.py +186 -0
  158. driftlessmap/image_stacks.py +359 -0
  159. driftlessmap/image_view.py +646 -0
  160. driftlessmap/images_reader.py +5 -0
  161. driftlessmap/label_tree.py +278 -0
  162. driftlessmap/layer_validation.py +25 -0
  163. driftlessmap/layers_control.py +554 -0
  164. driftlessmap/main_window.ui +883 -0
  165. driftlessmap/movable_points.py +254 -0
  166. driftlessmap/obj_items.py +122 -0
  167. driftlessmap/object_control.py +1762 -0
  168. driftlessmap/persistence.py +376 -0
  169. driftlessmap/popup_message.py +16 -0
  170. driftlessmap/probe_csv.py +319 -0
  171. driftlessmap/probe_reconstruction.py +409 -0
  172. driftlessmap/probe_utiles.py +1442 -0
  173. driftlessmap/qss/atlas_view_group_box.qss +15 -0
  174. driftlessmap/qss/box_label.qss +7 -0
  175. driftlessmap/qss/channel_selector.qss +19 -0
  176. driftlessmap/qss/color_combo.qss +121 -0
  177. driftlessmap/qss/decor_label.qss +9 -0
  178. driftlessmap/qss/dialogs.qss +11 -0
  179. driftlessmap/qss/hidden_line_edit.qss +5 -0
  180. driftlessmap/qss/label_tree.qss +123 -0
  181. driftlessmap/qss/main_window.qss +243 -0
  182. driftlessmap/qss/menu_bar.qss +42 -0
  183. driftlessmap/qss/multi_handle_slider.qss +14 -0
  184. driftlessmap/qss/obj_ctrl_bottom_button.qss +29 -0
  185. driftlessmap/qss/object_text_button.qss +19 -0
  186. driftlessmap/qss/page_control.qss +36 -0
  187. driftlessmap/qss/rotation_button.qss +9 -0
  188. driftlessmap/qss/side_bar.qss +23 -0
  189. driftlessmap/qss/spinbox.qss +106 -0
  190. driftlessmap/qss/tabs.qss +211 -0
  191. driftlessmap/qss/tool_bar.qss +77 -0
  192. driftlessmap/resources.py +34 -0
  193. driftlessmap/roi_analysis.py +375 -0
  194. driftlessmap/run_driftlessmap.py +4 -0
  195. driftlessmap/slice_stacks.py +268 -0
  196. driftlessmap/slice_validation.py +20 -0
  197. driftlessmap/toolbox.py +569 -0
  198. driftlessmap/triangulation.py +517 -0
  199. driftlessmap/triangulation_points.py +108 -0
  200. driftlessmap/user_settings.py +92 -0
  201. driftlessmap/uuuuuu.py +1168 -0
  202. driftlessmap/version.py +3 -0
  203. driftlessmap/widgets_utils.py +140 -0
  204. driftlessmap/wtiles.py +715 -0
  205. driftlessmap-1.1.0.dist-info/METADATA +186 -0
  206. driftlessmap-1.1.0.dist-info/RECORD +210 -0
  207. driftlessmap-1.1.0.dist-info/WHEEL +5 -0
  208. driftlessmap-1.1.0.dist-info/entry_points.txt +2 -0
  209. driftlessmap-1.1.0.dist-info/licenses/LICENSE.txt +23 -0
  210. driftlessmap-1.1.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,24 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <g>
9
+ <g>
10
+ <path class="st0" d="M426.4,214.5c-15.5,0-28.8,9.4-34.5,22.8h-29.8c-2.6-18.5-9.9-35.5-20.6-49.7l21.1-21.1
11
+ c13.5,5.4,29.6,2.6,40.5-8.3c14.7-14.7,14.7-38.5,0-53.2s-38.5-14.7-53.2,0c-10.9,10.9-13.7,27-8.3,40.5l-21.1,21.1
12
+ c-14.2-10.8-31.2-18.1-49.7-20.6v-29.8c13.4-5.8,22.8-19.1,22.8-34.5c0-20.7-16.9-37.6-37.6-37.6s-37.6,16.9-37.6,37.6
13
+ c0,15.5,9.4,28.8,22.8,34.5V146c-18.5,2.6-35.5,9.9-49.7,20.6l-21.1-21.1c5.4-13.5,2.6-29.6-8.3-40.5l0,0
14
+ c-14.7-14.7-38.5-14.7-53.2,0c-14.7,14.7-14.7,38.5,0,53.2c10.9,10.9,27,13.7,40.5,8.3l21.1,21.1c-10.8,14.2-18.1,31.2-20.6,49.7
15
+ h-29.8c-5.8-13.4-19.1-22.8-34.5-22.8c-20.7,0-37.6,16.9-37.6,37.6c0,20.7,16.9,37.6,37.6,37.6c15.5,0,28.8-9.4,34.5-22.8h29.8
16
+ c2.6,18.5,9.9,35.5,20.6,49.7l-21.1,21.1c-13.5-5.4-29.6-2.6-40.5,8.3c-14.7,14.7-14.7,38.5,0,53.2c28.8,28.8,76.5-2.8,61.5-40.5
17
+ l21.1-21.1c14.2,10.8,31.2,18.1,49.7,20.6V388c-13.4,5.8-22.8,19.1-22.8,34.5c0,20.7,16.9,37.6,37.6,37.6s37.6-16.9,37.6-37.6
18
+ c0-15.5-9.4-28.8-22.8-34.5v-29.8c18.5-2.6,35.5-9.9,49.7-20.6l21.1,21.1c-15,37.9,32.6,69.4,61.5,40.5
19
+ c14.7-14.7,14.7-38.5,0-53.2c-10.9-10.9-27-13.7-40.5-8.3l-21.1-21.1c10.8-14.2,18.1-31.2,20.6-49.7h29.8
20
+ c5.8,13.4,19.1,22.8,34.5,22.8c20.7,0,37.6-16.9,37.6-37.6S447.1,214.5,426.4,214.5z M256,285.1c-18.3,0-33.1-14.8-33.1-33.1
21
+ S237.7,219,256,219s33.1,14.8,33.1,33.1S274.3,285.1,256,285.1z"/>
22
+ </g>
23
+ </g>
24
+ </svg>
@@ -0,0 +1,16 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 28.8 28.8" style="enable-background:new 0 0 28.8 28.8;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <g>
9
+ <g id="c106_arrow">
10
+ <path class="st0" d="M28.7,5.8l-14,17.7c-0.2,0.2-0.5,0.2-0.7,0L0.1,5.8C0,5.7,0,5.5,0,5.4c0.1-0.1,0.2-0.2,0.4-0.2h27.9
11
+ c0.2,0,0.3,0.1,0.4,0.2C28.8,5.5,28.8,5.7,28.7,5.8z"/>
12
+ </g>
13
+ <g id="Capa_1_26_">
14
+ </g>
15
+ </g>
16
+ </svg>
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <g>
9
+ <g>
10
+ <path class="st0" d="M29.5,29.5v453h453v-453H29.5z M438.7,438.7H73.3V73.3h365.3L438.7,438.7L438.7,438.7z"/>
11
+ </g>
12
+ </g>
13
+ <g>
14
+ <g>
15
+ <polygon class="st0" points="335.5,174.7 226.8,283.5 169.2,225.9 138.2,256.9 226.8,345.4 366.5,205.7 "/>
16
+ </g>
17
+ </g>
18
+ </svg>
@@ -0,0 +1,24 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#699F4C;}
7
+ .st1{opacity:0.1;enable-background:new ;}
8
+ .st2{fill:#FFFFFF;}
9
+ .st3{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;stroke:#000000;stroke-width:15;stroke-miterlimit:10;}
10
+ </style>
11
+ <path class="st0" d="M256,478c122.6,0,222-99.4,222-222S378.6,34,256,34S34,133.4,34,256S133.4,478,256,478z"/>
12
+ <path class="st1" d="M93.7,256c0-112.5,83.7-205.4,192.2-220c-9.8-1.3-19.7-2-29.9-2C133.4,34,34,133.4,34,256s99.4,222,222,222
13
+ c10.1,0,20.1-0.7,29.9-2C177.4,461.4,93.7,368.5,93.7,256z"/>
14
+ <path d="M406.5,92.6c-2.9,2.9-2.9,7.7,0.1,10.6c41.3,40.7,64,94.9,64,152.8c0,57.3-22.3,111.2-62.8,151.7s-94.4,62.8-151.7,62.8
15
+ c-31.7,0-62.3-6.8-90.8-20.1c-3.7-1.7-8.2-0.1-9.9,3.6s-0.1,8.2,3.6,9.9c30.5,14.3,63.2,21.5,97.2,21.5
16
+ c61.3,0,118.9-23.9,162.3-67.2c43.3-43.3,67.2-101,67.2-162.3c0-61.9-24.3-120-68.4-163.5C414.1,89.6,409.4,89.7,406.5,92.6z"/>
17
+ <path d="M130.8,448.4c1.3,0.8,2.7,1.2,4.1,1.2c2.4,0,4.8-1.2,6.3-3.4c2.3-3.5,1.3-8.1-2.2-10.3C77.9,396,41.4,328.8,41.4,256
18
+ c0-57.3,22.3-111.2,62.8-151.7s94.4-62.8,151.7-62.8c46.8,0,91.3,14.8,128.7,42.8c3.3,2.5,8,1.8,10.5-1.5s1.8-8-1.5-10.5
19
+ c-40-30-87.5-45.8-137.6-45.8c-61.3,0-118.9,23.9-162.3,67.2C50.4,137,26.5,194.7,26.5,256C26.5,333.9,65.5,405.8,130.8,448.4z"/>
20
+ <line class="st2" x1="600.7" y1="-25.1" x2="658.8" y2="-23.4"/>
21
+ <path class="st3" d="M375.1,146.1l0.5,0.5l13.4,13.6c10.2,10.6,10.2,27.3,0,37.9L223.9,365.8c-9.6,9.9-25.3,10.2-35.2,0.6l-0.4-0.4
22
+ l-65.1-64.7c-10.5-10.6-10.5-27.7,0-38.3l13.8-13.7c9.7-9.8,25.5-9.8,35.2-0.2l0.5,0.6l24.4,25.3c4.7,5,12.6,5.2,17.6,0.5l0.5-0.5
23
+ l124.3-128.2c9.5-10,25.2-10.4,35.2-0.9L375.1,146.1z"/>
24
+ </svg>
@@ -0,0 +1,44 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 496.2 496.2" style="enable-background:new 0 0 496.2 496.2;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <path class="st0" d="M156.6,154.9c-4.9,0-9.8-1.9-13.5-5.6c-7.5-7.5-7.5-19.6,0-27.1c28.1-28.1,65.4-43.6,105.1-43.6
9
+ c39.7,0,77,15.5,105.1,43.5c7.5,7.5,7.5,19.6,0,27.1s-19.6,7.5-27.1,0c-20.8-20.8-48.5-32.3-77.9-32.3c-29.5,0-57.1,11.5-78,32.3
10
+ C166.4,153.1,161.5,154.9,156.6,154.9z"/>
11
+ <path class="st0" d="M248.1,114.8c-10.6,0-19.2-8.6-19.2-19.2V19.2C229,8.6,237.6,0,248.1,0s19.2,8.6,19.2,19.2v76.4
12
+ C267.3,106.2,258.7,114.8,248.1,114.8z"/>
13
+ <path class="st0" d="M206.1,207.6c23.1-23.2,60.8-23.2,84,0"/>
14
+ <path class="st0" d="M290.1,226.8c-4.9,0-9.8-1.9-13.6-5.6c-7.6-7.6-17.7-11.8-28.5-11.8l0,0c-10.7,0-20.8,4.2-28.4,11.8
15
+ c-7.5,7.5-19.6,7.5-27.1,0c-7.5-7.5-7.5-19.6,0-27.1c14.8-14.9,34.5-23,55.5-23h0c21,0,40.7,8.2,55.6,23c7.5,7.5,7.5,19.6,0,27.1
16
+ C299.9,224.9,295,226.8,290.1,226.8z"/>
17
+ <path class="st0" d="M248.1,417.6c-39.7,0-77-15.5-105.1-43.5c-7.5-7.5-7.5-19.6,0-27.1s19.6-7.5,27.1,0
18
+ c20.8,20.8,48.5,32.3,77.9,32.3c29.5,0,57.1-11.5,78-32.3c7.5-7.5,19.6-7.5,27.1,0c7.5,7.5,7.5,19.6,0,27.1
19
+ C325.1,402.1,287.8,417.6,248.1,417.6z"/>
20
+ <path class="st0" d="M248.1,496.2c-10.6,0-19.2-8.6-19.2-19.2v-76.4c0-10.6,8.6-19.2,19.2-19.2s19.2,8.6,19.2,19.2v76.4
21
+ C267.3,487.7,258.7,496.2,248.1,496.2z"/>
22
+ <path class="st0" d="M290.1,288.6c-23.2,23.2-60.8,23.2-84,0"/>
23
+ <path class="st0" d="M248.1,325.2c-21,0-40.7-8.2-55.6-23c-7.5-7.5-7.5-19.6,0-27.1c7.5-7.5,19.6-7.5,27.1,0
24
+ c7.6,7.6,17.7,11.8,28.5,11.8h0c10.7,0,20.8-4.2,28.4-11.8c7.5-7.5,19.6-7.5,27.1,0c7.5,7.5,7.5,19.6,0,27.1
25
+ C288.9,317.1,269.1,325.2,248.1,325.2L248.1,325.2z"/>
26
+ <path class="st0" d="M360.5,358.8c-4.9,0-9.8-1.9-13.6-5.6c-7.5-7.5-7.5-19.6,0-27.1c20.8-20.8,32.3-48.5,32.3-77.9
27
+ s-11.5-57.1-32.3-78c-7.5-7.5-7.5-19.6,0-27.1c7.5-7.5,19.6-7.5,27.1,0c28.1,28.1,43.6,65.4,43.6,105.1c0,39.7-15.4,77-43.5,105.1
28
+ C370.3,356.9,365.4,358.8,360.5,358.8z"/>
29
+ <path class="st0" d="M477.1,267.3h-76.4c-10.6,0-19.2-8.6-19.2-19.2s8.6-19.2,19.2-19.2h76.4c10.6,0,19.2,8.6,19.2,19.2
30
+ C496.2,258.7,487.7,267.3,477.1,267.3z"/>
31
+ <path class="st0" d="M288.6,206.1c23.2,23.1,23.2,60.8,0,84"/>
32
+ <path class="st0" d="M288.6,309.3c-4.9,0-9.8-1.9-13.6-5.6c-7.5-7.5-7.5-19.6,0-27.1c7.6-7.6,11.8-17.7,11.8-28.5
33
+ s-4.2-20.8-11.8-28.4c-7.5-7.5-7.5-19.6,0-27.1c7.5-7.5,19.6-7.5,27.1,0c14.9,14.8,23,34.5,23,55.5c0,21-8.2,40.7-23,55.6
34
+ C298.5,307.4,293.6,309.3,288.6,309.3z"/>
35
+ <path class="st0" d="M135.8,358.8c-4.9,0-9.8-1.9-13.6-5.6c-28.1-28.1-43.6-65.4-43.6-105.1c0-39.7,15.5-77,43.5-105.1
36
+ c7.5-7.5,19.6-7.5,27.1,0c7.5,7.5,7.5,19.6,0,27.1C128.4,191,117,218.6,117,248.1c0,29.5,11.5,57.2,32.3,78c7.5,7.5,7.5,19.6,0,27.1
37
+ C145.6,356.9,140.7,358.8,135.8,358.8z"/>
38
+ <path class="st0" d="M95.6,267.3H19.2C8.6,267.3,0,258.7,0,248.1s8.6-19.2,19.2-19.2h76.4c10.6,0,19.2,8.6,19.2,19.2
39
+ S106.2,267.3,95.6,267.3z"/>
40
+ <path class="st0" d="M207.6,290.1c-23.2-23.1-23.2-60.8,0-84"/>
41
+ <path class="st0" d="M207.6,309.3c-4.9,0-9.8-1.9-13.6-5.6c-14.8-14.8-23-34.6-23-55.6c0-21,8.2-40.7,23-55.6
42
+ c7.5-7.5,19.6-7.5,27.1,0c7.5,7.5,7.5,19.6,0,27.1c-7.6,7.6-11.8,17.7-11.8,28.5c0,10.7,4.2,20.8,11.8,28.4c7.5,7.5,7.5,19.6,0,27.1
43
+ C217.4,307.4,212.5,309.3,207.6,309.3z"/>
44
+ </svg>
@@ -0,0 +1,28 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 496.2 496.2" style="enable-background:new 0 0 496.2 496.2;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <path class="st0" d="M156.6,154.9c-4.9,0-9.8-1.9-13.5-5.6c-7.5-7.5-7.5-19.6,0-27.1c28.1-28.1,65.4-43.6,105.1-43.6
9
+ s77,15.5,105.1,43.5c7.5,7.5,7.5,19.6,0,27.1s-19.6,7.5-27.1,0c-20.8-20.8-48.5-32.3-77.9-32.3c-29.5,0-57.1,11.5-78,32.3
10
+ C166.4,153.1,161.5,154.9,156.6,154.9z"/>
11
+ <path class="st0" d="M248.1,114.8c-10.6,0-19.2-8.6-19.2-19.2V19.2C229,8.6,237.6,0,248.1,0s19.2,8.6,19.2,19.2v76.4
12
+ C267.3,106.2,258.7,114.8,248.1,114.8z"/>
13
+ <path class="st0" d="M248.1,417.6c-39.7,0-77-15.5-105.1-43.5c-7.5-7.5-7.5-19.6,0-27.1s19.6-7.5,27.1,0
14
+ c20.8,20.8,48.5,32.3,77.9,32.3c29.5,0,57.1-11.5,78-32.3c7.5-7.5,19.6-7.5,27.1,0s7.5,19.6,0,27.1
15
+ C325.1,402.1,287.8,417.6,248.1,417.6z"/>
16
+ <path class="st0" d="M248.1,496.2c-10.6,0-19.2-8.6-19.2-19.2v-76.4c0-10.6,8.6-19.2,19.2-19.2c10.6,0,19.2,8.6,19.2,19.2V477
17
+ C267.3,487.7,258.7,496.2,248.1,496.2z"/>
18
+ <path class="st0" d="M360.5,358.8c-4.9,0-9.8-1.9-13.6-5.6c-7.5-7.5-7.5-19.6,0-27.1c20.8-20.8,32.3-48.5,32.3-77.9
19
+ s-11.5-57.1-32.3-78c-7.5-7.5-7.5-19.6,0-27.1s19.6-7.5,27.1,0c28.1,28.1,43.6,65.4,43.6,105.1s-15.4,77-43.5,105.1
20
+ C370.3,356.9,365.4,358.8,360.5,358.8z"/>
21
+ <path class="st0" d="M477.1,267.3h-76.4c-10.6,0-19.2-8.6-19.2-19.2s8.6-19.2,19.2-19.2h76.4c10.6,0,19.2,8.6,19.2,19.2
22
+ C496.2,258.7,487.7,267.3,477.1,267.3z"/>
23
+ <path class="st0" d="M135.8,358.8c-4.9,0-9.8-1.9-13.6-5.6c-28.1-28.1-43.6-65.4-43.6-105.1s15.5-77,43.5-105.1
24
+ c7.5-7.5,19.6-7.5,27.1,0s7.5,19.6,0,27.1c-20.8,20.9-32.2,48.5-32.2,78s11.5,57.2,32.3,78c7.5,7.5,7.5,19.6,0,27.1
25
+ C145.6,356.9,140.7,358.8,135.8,358.8z"/>
26
+ <path class="st0" d="M95.6,267.3H19.2C8.6,267.3,0,258.7,0,248.1c0-10.6,8.6-19.2,19.2-19.2h76.4c10.6,0,19.2,8.6,19.2,19.2
27
+ C114.8,258.7,106.2,267.3,95.6,267.3z"/>
28
+ </svg>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 200.5 200.5" style="enable-background:new 0 0 200.5 200.5;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;stroke:#000000;stroke-miterlimit:10;}
7
+ </style>
8
+ <path class="st0" d="M159.8,119.2c-4.5,0-8.2,3.5-8.2,7.9c0,18.9-18.4,34.5-42.3,37.5v-62.9h17.4c2.7,4,7.4,6.7,12.8,6.7
9
+ c8.4,0,15.2-6.5,15.2-14.6s-6.8-14.6-15.2-14.6c-5.4,0-10.1,2.7-12.8,6.7h-17.4v-15c0-0.1,0-0.2,0-0.3c10.1-3.3,17.4-12.4,17.4-23.1
10
+ c0-13.5-11.5-24.5-25.6-24.5S75.5,34,75.5,47.5c0,10.7,7.3,19.8,17.4,23.1c0,0.1,0,0.2,0,0.3v15H75.4c-2.7-4-7.4-6.7-12.8-6.7
11
+ c-8.4,0-15.2,6.5-15.2,14.6s6.8,14.6,15.2,14.6c5.4,0,10.1-2.7,12.8-6.7h17.4v62.9c-24-3-42.3-18.6-42.3-37.5c0-4.3-3.7-7.9-8.2-7.9
12
+ s-8.2,3.5-8.2,7.9c0,29.7,30.1,53.8,67,53.8s67-24.2,67-53.8C168.1,122.7,164.4,119.2,159.8,119.2z M101.1,38.8c5,0,9.1,3.9,9.1,8.7
13
+ s-4.1,8.7-9.1,8.7s-9.1-3.9-9.1-8.7S96.1,38.8,101.1,38.8z"/>
14
+ </svg>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <path class="st0" d="M248.9,50c11.9,0,23.9,1,35.9,3.1c85.2,15,152.1,81.9,167.1,167.1c15,85.2-24.9,170.9-99.9,214.2
9
+ c-32.8,18.9-69.3,28-105.5,27.6c-46.6-0.6-92.7-16.9-130-48.1l30.9-36.8c50.9,42.8,123,49,180.6,15.8
10
+ c57.6-33.3,88.2-98.8,76.6-164.3c-11.5-65.5-62.7-116.6-128.2-128.2c-51.7-9.1-103.3,8-139.2,43.9L185,192H57V64l46.3,46.3
11
+ C141.8,72,194.2,50,248.9,50z"/>
12
+ </svg>
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:none;}
7
+ .st1{fill:#FFFFFF;}
8
+ .st2{fill-rule:evenodd;clip-rule:evenodd;fill:#699F4C;stroke:#000000;stroke-width:6;stroke-miterlimit:10;}
9
+ </style>
10
+ <line class="st0" x1="529.4" y1="207.4" x2="558.2" y2="208.2"/>
11
+ <rect id="_Transparent_Rectangle_" x="-7" y="-7" class="st0" width="519" height="519"/>
12
+ <path class="st1" d="M196.6,33.5l-41,0l0,41l41,0L196.6,33.5z M114.6,33.4l-41,0l0,41l41,0L114.6,33.4z M360.6,33.6l-41,0l0,41l41,0
13
+ L360.6,33.6z M278.6,33.5l-41,0l0,41l41,0L278.6,33.5z M114.6,115.4l-41,0l0,41l41,0L114.6,115.4z M114.5,197.4l-41,0l0,41l41,0
14
+ L114.5,197.4z M442.4,402.6l0.2-369l-41,0l-0.2,328l-328-0.2l0,41L442.4,402.6z M114.5,279.4l-41,0l0,41l41,0L114.5,279.4z"/>
15
+ <path class="st2" d="M463.3,173l0.5,0.7l18.1,25c13.6,19.4,9.5,46.4-9.4,61L166.1,488.5c-18,13.5-43.1,10-56.6-7.6l-0.5-0.7
16
+ L20.3,360.2c-14.2-19.5-10.1-47.1,9.5-61.6l25.5-18.7c18-13.5,43.4-9.6,56.5,8.4l0.5,1.1l33,46.5c6.2,9.2,18.9,11.5,28.1,5l0.7-0.5
17
+ l231.2-175.4c17.7-13.9,43.1-10.4,56.7,7.4L463.3,173z"/>
18
+ </svg>
@@ -0,0 +1,32 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FF6465;}
7
+ .st1{opacity:0.1;enable-background:new ;}
8
+ .st2{fill:#FFFFFF;}
9
+ </style>
10
+ <path class="st0" d="M256,478c122.6,0,222-99.4,222-222S378.6,34,256,34S34,133.4,34,256S133.4,478,256,478z"/>
11
+ <path class="st1" d="M93.7,256c0-112.5,83.7-205.4,192.2-220c-9.8-1.3-19.7-2-29.9-2C133.4,34,34,133.4,34,256s99.4,222,222,222
12
+ c10.1,0,20.1-0.7,29.9-2C177.4,461.4,93.7,368.5,93.7,256z"/>
13
+ <path class="st2" d="M305.8,256l58.5-58.5c4.2-4.2,4.2-11.1,0-15.4l-34.4-34.4c-4.2-4.2-11.1-4.2-15.4,0L256,206.2l-58.5-58.5
14
+ c-4.2-4.2-11.1-4.2-15.4,0l-34.4,34.4c-4.2,4.2-4.2,11.1,0,15.4l58.5,58.5l-58.5,58.5c-4.2,4.2-4.2,11.1,0,15.4l34.4,34.4
15
+ c4.2,4.2,11.1,4.2,15.4,0l58.5-58.5l58.5,58.5c4.2,4.2,11.1,4.2,15.4,0l34.4-34.4c4.2-4.2,4.2-11.1,0-15.4L305.8,256z"/>
16
+ <path d="M374.9,189.9c0-4.9-1.9-9.5-5.4-13l-34.4-34.4c-3.5-3.5-8.1-5.4-13-5.4c-4.9,0-9.5,1.9-13,5.4L256,195.7l-53.2-53.2
17
+ c-3.5-3.5-8.1-5.4-13-5.4s-9.5,1.9-13,5.4l-34.4,34.4c-7.2,7.2-7.2,18.8,0,25.9l53.2,53.2l-53.2,53.2c-7.2,7.2-7.2,18.8,0,25.9
18
+ l34.4,34.4c3.5,3.5,8.1,5.4,13,5.4s9.5-1.9,13-5.4l53.2-53.2l53.2,53.2c3.5,3.5,8.1,5.4,13,5.4c4.9,0,9.5-1.9,13-5.4l34.4-34.4
19
+ c3.5-3.5,5.4-8.1,5.4-13s-1.9-9.5-5.4-13L316.3,256l53.2-53.2C373,199.4,374.9,194.8,374.9,189.9z M359,192.3l-58.5,58.5
20
+ c-2.9,2.9-2.9,7.6,0,10.6l58.5,58.5c0.9,0.9,1,1.9,1,2.4s-0.1,1.5-1,2.4L324.6,359c-0.9,0.9-1.9,1-2.4,1c-0.5,0-1.5-0.1-2.4-1
21
+ l-58.5-58.5c-1.5-1.5-3.4-2.2-5.3-2.2c-1.9,0-3.8,0.7-5.3,2.2L192.3,359c-0.9,0.9-1.9,1-2.4,1c-0.5,0-1.5-0.1-2.4-1L153,324.6
22
+ c-1.3-1.3-1.3-3.5,0-4.8l58.5-58.5c2.9-2.9,2.9-7.6,0-10.6L153,192.3c-1.3-1.3-1.3-3.5,0-4.8l34.4-34.4c0.9-0.9,1.9-1,2.4-1
23
+ s1.5,0.1,2.4,1l58.5,58.5c2.9,2.9,7.6,2.9,10.6,0l58.5-58.5c0.9-0.9,1.9-1,2.4-1s1.5,0.1,2.4,1l34.4,34.4c0.9,0.9,1,1.9,1,2.4
24
+ S359.8,191.4,359,192.3z"/>
25
+ <path d="M406.5,92.6c-2.9,2.9-2.9,7.7,0.1,10.6c41.3,40.7,64,94.9,64,152.8c0,57.3-22.3,111.2-62.8,151.7s-94.4,62.8-151.7,62.8
26
+ c-31.7,0-62.3-6.8-90.8-20.1c-3.7-1.7-8.2-0.1-9.9,3.6c-1.7,3.7-0.1,8.2,3.6,9.9c30.5,14.3,63.2,21.5,97.2,21.5
27
+ c61.3,0,118.9-23.9,162.3-67.2c43.3-43.3,67.2-101,67.2-162.3c0-61.9-24.3-120-68.4-163.5C414.1,89.6,409.4,89.7,406.5,92.6z"/>
28
+ <path d="M130.8,448.4c1.3,0.8,2.7,1.2,4.1,1.2c2.4,0,4.8-1.2,6.3-3.4c2.3-3.5,1.3-8.1-2.2-10.3C77.9,396,41.4,328.8,41.4,256
29
+ c0-57.3,22.3-111.2,62.8-151.7c40.5-40.5,94.4-62.8,151.7-62.8c46.8,0,91.3,14.8,128.7,42.8c3.3,2.5,8,1.8,10.5-1.5
30
+ c2.5-3.3,1.8-8-1.5-10.5c-40-30-87.5-45.8-137.6-45.8c-61.3,0-118.9,23.9-162.3,67.2c-43.3,43.3-67.2,101-67.2,162.3
31
+ C26.5,333.9,65.5,405.8,130.8,448.4z"/>
32
+ </svg>
@@ -0,0 +1,22 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 295.1 295.1" style="enable-background:new 0 0 295.1 295.1;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;stroke:#FFFFFF;stroke-miterlimit:10;}
7
+ .st1{fill:#FFFFFF;stroke:#FFFFFF;stroke-width:14;stroke-miterlimit:10;}
8
+ </style>
9
+ <path class="st0" d="M220.8,155.5c-6,0-11.2,3.2-14.2,7.9v-5.4c0-9.2-7.5-16.7-16.7-16.7c-6,0-11.2,3.2-14.2,7.9v-3.7
10
+ c0-9.2-7.5-16.7-16.7-16.7c-6,0-11.2,3.2-14.2,7.9V86.4c0-9.2-7.5-16.7-16.7-16.7s-16.7,7.5-16.7,16.7v125.4l-18.7-24
11
+ c-5.6-7.3-16.2-8.6-23.4-2.9c-7.3,5.6-8.6,16.2-2.9,23.4l52.4,67.1c7.9,11.8,21.3,19.6,36.5,19.6h32.7c26.6,0,49.2-21.5,49.2-49.2
12
+ c0-7.5,0-66.7,0-73.4C237.5,163,230.1,155.5,220.8,155.5z"/>
13
+ <g>
14
+ <g id="c149_moon_00000166635865244178639450000010901135327909030838_">
15
+ <path id="_x3C_Compound_Path_x3E__00000158004728891882684050000002900858574138139541_" class="st1" d="M128.9,15.8
16
+ c25.1,0,45.4,20.3,45.4,45.4s-20.3,45.4-45.4,45.4S83.4,86.1,83.4,61.1C83.5,36.2,103.8,15.8,128.9,15.8 M128.9,8.2
17
+ c-29.1,0-53,23.8-53,53s24,53,53,53s53-23.8,53-53C181.9,32.1,158,8.2,128.9,8.2L128.9,8.2z"/>
18
+ </g>
19
+ <g id="Capa_1_00000100345982005453222040000002878838994826359715_">
20
+ </g>
21
+ </g>
22
+ </svg>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 295.1 295.1" style="enable-background:new 0 0 295.1 295.1;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;stroke:#FFFFFF;stroke-miterlimit:10;}
7
+ </style>
8
+ <path class="st0" d="M220.8,155.5c-6,0-11.2,3.2-14.2,7.9V158c0-9.2-7.5-16.7-16.7-16.7c-6,0-11.2,3.2-14.2,7.9v-3.7
9
+ c0-9.2-7.5-16.7-16.7-16.7c-6,0-11.2,3.2-14.2,7.9V86.4c0-9.2-7.5-16.7-16.7-16.7s-16.7,7.5-16.7,16.7v125.4l-18.7-24
10
+ c-5.6-7.3-16.2-8.6-23.4-2.9c-7.3,5.6-8.6,16.2-2.9,23.4l52.4,67.1c7.9,11.8,21.3,19.6,36.5,19.6H188c26.6,0,49.2-21.5,49.2-49.2
11
+ c0-7.5,0-66.7,0-73.4C237.5,163,230.1,155.5,220.8,155.5z"/>
12
+ </svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 240.6 240.6" style="enable-background:new 0 0 240.6 240.6;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <path class="st0" d="M193.9,45.2l26.4,26.4L96.6,195.4l-76.3-76.3l26.4-26.4l49.8,49.8L193.9,45.2z"/>
9
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <path class="st0" d="M263.1,50c-11.9,0-23.9,1-35.9,3.1C142,68.2,75.2,135,60.1,220.2c-15,85.2,24.9,170.9,99.9,214.2
9
+ c32.8,18.9,69.3,28,105.5,27.6c46.6-0.6,92.7-16.9,130-48.1L364.6,377c-51,42.8-123,49-180.6,15.8c-57.6-33.3-88.2-98.8-76.6-164.3
10
+ c11.6-65.5,62.7-116.6,128.2-128.2c51.7-9.1,103.3,8,139.2,43.9L327,192h128V64l-46.3,46.3C370.2,72,317.8,50,263.1,50z"/>
11
+ </svg>
@@ -0,0 +1,16 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ .st1{fill:none;stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;}
8
+ </style>
9
+ <path class="st0" d="M6.4,8.3c-0.7,0-1.4-0.2-2-0.6c-0.6-0.4-1-0.9-1.3-1.6C2.9,5.5,2.9,4.8,3,4.1s0.5-1.3,1-1.8s1.1-0.8,1.8-1
10
+ c0.7-0.1,1.4-0.1,2,0.2C8.5,1.8,9,2.2,9.4,2.8s0.6,1.3,0.6,2c0,0.5-0.1,0.9-0.3,1.4C9.5,6.6,9.3,7,9,7.3C8.6,7.6,8.2,7.9,7.8,8
11
+ C7.4,8.2,6.9,8.3,6.4,8.3z M6.4,2.8C6,2.8,5.7,2.9,5.3,3.1C5,3.3,4.7,3.6,4.6,4C4.4,4.4,4.4,4.8,4.5,5.1c0.1,0.4,0.3,0.7,0.5,1
12
+ c0.3,0.3,0.6,0.5,1,0.5c0.4,0.1,0.8,0,1.2-0.1c0.4-0.2,0.7-0.4,0.9-0.7c0.2-0.3,0.3-0.7,0.3-1.1c0-0.3-0.1-0.5-0.2-0.8
13
+ c0-0.2-0.2-0.4-0.3-0.6C7.7,3.2,7.4,3,7.2,2.9C7,2.8,6.7,2.8,6.4,2.8z"/>
14
+ <path class="st1" d="M9.2,3.6c1.3-0.6,4-1.6,7.3-1.1c1.4,0.2,2.9,0.4,4.2,1.6c3,2.8,1.2,8.7,1,9.2c-0.1,0.4-2.9,8.7-9.9,8.7
15
+ c-3.4,0-7.1-2-8.7-5.7c-2.1-4.9,1-9.2,1.1-9.4"/>
16
+ </svg>
@@ -0,0 +1,19 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:none;stroke:#1D1D1B;stroke-linecap:round;stroke-miterlimit:10;}
7
+ </style>
8
+ <line class="st0" x1="0" y1="0" x2="24" y2="24"/>
9
+ <line class="st0" x1="4.9" y1="0" x2="24" y2="19.4"/>
10
+ <line class="st0" x1="9.9" y1="0" x2="24.2" y2="14.2"/>
11
+ <line class="st0" x1="15.3" y1="0" x2="24.3" y2="8.7"/>
12
+ <line class="st0" x1="20.6" y1="0" x2="24" y2="3.3"/>
13
+ <line class="st0" x1="0" y1="5.2" x2="17.7" y2="24"/>
14
+ <line class="st0" x1="0" y1="11.1" x2="11.6" y2="24"/>
15
+ <line class="st0" x1="0" y1="17" x2="5.8" y2="24"/>
16
+ <line class="st0" x1="0" y1="22.2" x2="1.5" y2="24"/>
17
+ <rect y="-0.3" class="st0" width="24.3" height="24.3"/>
18
+ <rect x="5.6" y="5.6" class="st0" width="13" height="13"/>
19
+ </svg>
@@ -0,0 +1,20 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#1D1D1B;}
7
+ </style>
8
+ <path class="st0" d="M14.8,20h-5c-1.8,0-5.2-0.9-5.2-4.4s3.4-4.4,5.2-4.4h4.4c0.1,0,3.7-0.1,3.7-2.9s-3.6-2.9-3.7-2.9h-5
9
+ C9,5.6,8.8,5.5,8.7,5.3C8.5,5.2,8.5,5,8.5,4.8s0.1-0.4,0.2-0.5C8.8,4.1,9,4.1,9.2,4.1h5c1.8,0,5.2,0.9,5.2,4.4s-3.4,4.4-5.2,4.4H9.8
10
+ c-0.1,0-3.7,0.1-3.7,2.9s3.6,2.9,3.7,2.9h5c0.2,0,0.4,0.1,0.5,0.2s0.2,0.3,0.2,0.5s-0.1,0.4-0.2,0.5C15.2,19.9,15,20,14.8,20z"/>
11
+ <path class="st0" d="M6.4,8.3c-0.7,0-1.4-0.2-2-0.6c-0.6-0.4-1-0.9-1.3-1.6C2.9,5.5,2.9,4.8,3,4.1s0.5-1.3,1-1.8s1.1-0.8,1.8-1
12
+ c0.7-0.1,1.4-0.1,2,0.2C8.5,1.8,9,2.2,9.4,2.8s0.6,1.3,0.6,2c0,0.5-0.1,0.9-0.3,1.4C9.5,6.6,9.3,7,9,7.3C8.6,7.6,8.2,7.9,7.8,8
13
+ C7.4,8.2,6.9,8.3,6.4,8.3z M6.4,2.8C6,2.8,5.7,2.9,5.3,3.1C5,3.3,4.7,3.6,4.6,4C4.4,4.4,4.4,4.8,4.5,5.1c0.1,0.4,0.3,0.7,0.5,1
14
+ c0.3,0.3,0.6,0.5,1,0.5c0.4,0.1,0.8,0,1.2-0.1c0.4-0.2,0.7-0.4,0.9-0.7c0.2-0.3,0.3-0.7,0.3-1.1c0-0.3-0.1-0.5-0.2-0.8
15
+ c0-0.2-0.2-0.4-0.3-0.6C7.7,3.2,7.4,3,7.2,2.9C7,2.8,6.7,2.8,6.4,2.8z"/>
16
+ <path class="st0" d="M17.6,22.8c-0.7,0-1.4-0.2-2-0.6s-1-0.9-1.3-1.6c-0.3-0.6-0.3-1.4-0.2-2c0.1-0.7,0.5-1.3,1-1.8s1.1-0.8,1.8-1
17
+ c0.7-0.1,1.4-0.1,2,0.2c0.6,0.3,1.2,0.7,1.6,1.3s0.6,1.3,0.6,2c0,0.9-0.4,1.8-1,2.5C19.4,22.4,18.5,22.7,17.6,22.8z M17.6,17.2
18
+ c-0.4,0-0.8,0.1-1.1,0.3c-0.3,0.2-0.6,0.5-0.7,0.9c-0.2,0.4-0.2,0.8-0.1,1.2c0.1,0.4,0.3,0.7,0.5,1c0.3,0.3,0.6,0.5,1,0.5
19
+ c0.4,0.1,0.8,0,1.2-0.1c0.4-0.2,0.7-0.4,0.9-0.7c0.2-0.3,0.3-0.7,0.3-1.1c0-0.5-0.2-1-0.6-1.4S18.1,17.2,17.6,17.2z"/>
20
+ </svg>
Binary file
@@ -0,0 +1,19 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 495.8 495.8" style="enable-background:new 0 0 495.8 495.8;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;stroke:#000000;stroke-miterlimit:10;}
7
+ </style>
8
+ <g>
9
+ <path class="st0" d="M239.1,343.6l22.2-20.6l-19.2-17.8l-22.2,20.6c-14.8,13.8-40.6,13.8-55.4,0l-70.3-65.4c-1-0.9-1.6-2.3-1.6-3.7
10
+ c0-1.4,0.6-2.7,1.7-3.7l45.9-42.7L121,192.4l-45.9,42.7c-6.1,5.7-9.6,13.5-9.6,21.6s3.5,15.9,9.6,21.6l70.3,65.4
11
+ c12.6,11.7,29.2,18.1,46.9,18.1C210,361.6,226.6,355.2,239.1,343.6z"/>
12
+ <path class="st0" d="M406.2,145l-94.1-87.4c-12.2-11.4-34-11.4-46.3,0l-116.1,108l9.6,8.9l121.2,112.8l9.6,9l116-107.9
13
+ c6.2-5.8,9.6-13.4,9.6-21.6C415.7,158.5,412.4,150.8,406.2,145z"/>
14
+ <path class="st0" d="M228.9,374.7c0,7,6.1,12.6,13.6,12.6H312c7.5,0,13.6-5.7,13.6-12.6c0-7-6.1-12.6-13.6-12.6h-69.6
15
+ C234.9,362,228.9,367.6,228.9,374.7z"/>
16
+ <path class="st0" d="M366.9,409.8h-199c-7.4,0-13.6,5.7-13.6,12.6c0,7,6.1,12.6,13.6,12.6h199c7.5,0,13.6-5.6,13.6-12.6
17
+ C380.5,415.5,374.4,409.8,366.9,409.8z"/>
18
+ </g>
19
+ </svg>
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 612 612" style="enable-background:new 0 0 612 612;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <g>
9
+ <g>
10
+ <path class="st0" d="M609.6,315.4c3.2-5.9,3.2-13,0-18.9C551.1,188.9,437.1,115.9,306,115.9S60.9,188.9,2.4,296.6
11
+ c-3.2,5.9-3.2,13,0,18.9C60.9,423.1,174.9,496.1,306,496.1S551.1,423.1,609.6,315.4z M306,451.9c-80.6,0-145.9-65.3-145.9-145.9
12
+ S225.4,160.1,306,160.1S451.9,225.4,451.9,306S386.6,451.9,306,451.9z"/>
13
+ <path class="st0" d="M306,231.7c-6.1,0-12.1,0.7-17.8,2.1c5.8,6.8,9.4,15.6,9.4,25.2c0,21.3-17.3,38.6-38.6,38.6
14
+ c-9.6,0-18.4-3.5-25.2-9.4c-1.4,5.7-2.1,11.7-2.1,17.8c0,41.1,33.3,74.3,74.3,74.3s74.3-33.3,74.3-74.3S347.1,231.7,306,231.7z"/>
15
+ </g>
16
+ </g>
17
+ </svg>
@@ -0,0 +1,19 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 612 612" style="enable-background:new 0 0 612 612;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <g>
9
+ <path class="st0" d="M609.6,315.4c2.3-4.3,3-9.2,1.9-13.8c-0.5-2.3-1.5-4.6-1.9-5.1c-4.9-5.4-74.1,59.3-139.6,93.5
10
+ c-12.3,6.4-76.1,38.7-162.9,38.8c-83.1,0-144.7-29.5-159.1-36.8C78.9,357.3,7.3,291.1,2.4,296.6c-0.4,0.5-1.4,2.8-1.9,5.1
11
+ c-1,4.6-0.4,9.5,1.9,13.8C31.1,368.5,68,401,68,401c25.5,22.3,67.1,58,133.9,79.1c20.4,6.4,57.2,16,104.2,16
12
+ C437.1,496.1,551.1,423.1,609.6,315.4z"/>
13
+ <path class="st0" d="M597.7,481.7c9.1,15.7,3.7,35.7-12,44.8c-15.7,9.1-35.7,3.7-44.8-12c0,0,0,0,0,0l-44.5-77
14
+ c-25.1,15.6-52,28-80.3,36.8l14.2,80.4c3.1,17.8-8.8,34.8-26.6,38s-34.8-8.8-38-26.6L352,487.7c-29.9,3.5-60.1,3.5-90,0L248.2,566
15
+ c-3.1,17.8-20.2,29.7-38,26.6c-17.8-3.1-29.7-20.2-26.6-38l14.2-80.5c-28.2-8.8-55.1-21.2-80.1-36.8l-44.8,77.5
16
+ c-9.1,15.7-29.1,21-44.8,12c-15.7-9.1-21-29.1-12-44.8l48.8-84.5c-0.7-0.6-1.5-1.5-1.3-2.2c2.7-6.6,118.6,65.3,242.4,65.6
17
+ c124.8,0.3,241.8-72.2,244.5-65.5c0.2,0.6-0.6,1.5-1.3,2.2L597.7,481.7z"/>
18
+ </g>
19
+ </svg>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Uploaded_to_svgrepo.com" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
4
+ x="0px" y="0px" viewBox="0 0 32 32" style="enable-background:new 0 0 32 32;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <path class="st0" d="M7.3,16.3l-1.2,1.1c0,0-0.1,0.1-0.1,0.6v3c0,1.1-0.9,2-2,2s-2-0.9-2-2v-4c0-2,1.3-5,5-5l4.6,0L7.3,16.3z
9
+ M17,17.3c0.6,0,1-0.4,1-1V7c0-2.8,2.5-3,3-3c0.5,0,3,0.2,3,3v4.5l2,2V7c0-4-3.3-5-5-5s-5,1-5,5v9.3C16,16.8,16.4,17.3,17,17.3z
10
+ M29.6,18.5L19,8v8.3c0,1.1-0.9,2-2,2s-2-0.9-2-2V10l-8,8l11.6,11.5c0.8,0.8,2.1,0.8,2.8,0l8.2-8.2C30.4,20.5,30.4,19.3,29.6,18.5z
11
+ M4,25c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2C6,25.9,5.1,25,4,25z"/>
12
+ </svg>
@@ -0,0 +1,15 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 107.9 122.9" style="enable-background:new 0 0 107.9 122.9;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
7
+ </style>
8
+ <path class="st0" d="M80.6,79.1c10.7,3.4,17.6,8.7,17.6,14.8c0,10.2-19.5,18.4-43.6,18.4S11,104.1,11,93.9c0-6.2,7.3-11.7,18.4-15
9
+ c0.4,0.6,0.8,1.2,1.2,1.8c0.9,1.3,1.8,2.5,2.7,3.7c-7.8,2.1-12.8,5.3-12.8,8.9c0,6.3,15.1,11.4,33.7,11.4S88,99.6,88,93.3
10
+ c0-3.4-4.3-6.4-11.2-8.5C78.1,83,79.4,81.1,80.6,79.1L80.6,79.1z M68.9,81.3c-3.6,4-7.8,7.5-12.5,10.3c-0.6,0.4-1.4,0.5-2,0.1
11
+ c-6.6-4.2-12.5-9.4-17.4-15.5C30.8,68.3,26.8,59.5,25.4,51c-1.4-8.6-0.1-16.8,4.2-23.6c1.7-2.7,3.9-5.2,6.5-7.2
12
+ c6-4.8,12.9-7.3,19.8-7.3c7,0.1,13.7,2.8,18.8,7.7c2,1.8,3.6,3.8,5,6.1c4.6,7.6,5.6,17.2,3.6,27C80.9,64,76,73.5,68.9,81.3
13
+ L68.9,81.3L68.9,81.3z M54.5,28.3c8.1,0,14.8,6.6,14.8,14.8s-6.6,14.8-14.8,14.8S39.8,51.2,39.8,43C39.8,34.9,46.4,28.3,54.5,28.3
14
+ C54.5,28.3,54.5,28.3,54.5,28.3z"/>
15
+ </svg>
Binary file
Binary file
@@ -0,0 +1,25 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;stroke:#000000;stroke-miterlimit:10;}
7
+ </style>
8
+ <path class="st0" d="M440.4,181.3c8.3-40.2-20.9-77.8-61.7-82.1c-21.3-49-90.1-57.2-122.6-13.1C223.7,42,154.8,50.2,133.5,99.2
9
+ c-40.8,4.3-70.1,42.1-61.7,82.1c-30.4,24.8-33.6,69-8,97.7c-42.4,55.5-2.1,136.5,71,136.5c23.3,47.4,90,53,121.3,10.4
10
+ c31.4,42.6,98.1,37,121.3-10.4c72.9,0.2,113.4-80.9,71-136.5C473.9,250.3,470.8,206.1,440.4,181.3L440.4,181.3z M196.9,428.6
11
+ c-36.9,0-58.2-42.2-34.1-70.6c4.7-5.5,3.8-13.5-1.8-18.1s-13.9-3.7-18.6,1.8c-11.1,13.1-17,30-16.1,47.4
12
+ c-50.1-5.2-72.4-63.5-39.3-99.4c0.3,0.4,12.8-16.9,39.3-19.6c-0.4,8.4,0.7,16.7,3.4,24.9c1.8,5.4,7,8.8,12.5,8.8
13
+ c8.9,0,15.4-8.5,12.5-16.9c-7.6-22.6,5.2-47,28.3-54.4c7-2.2,10.7-9.5,8.4-16.3c-2.3-6.8-9.7-10.4-16.7-8.2c-3,1-6,2.2-8.8,3.4
14
+ c-5.2-13.1-1.6-28.6,10.1-38.1c5.6-4.5,6.4-12.7,1.7-18.1c-4.7-5.5-13-6.2-18.6-1.7c-22.9,18.5-28.2,49.5-14.9,73.6
15
+ c-8.9,9.6-11,16.7-11.7,16.7c-19.4,0-37.3,6.1-51.9,16.6C64.5,240.7,69.1,210.9,92,197c5.2-3.2,7.5-9.6,5.5-15.2
16
+ c-9.6-26.5,8.8-57.6,43.8-57.6c6,0,11.2-3.9,12.8-9.6c5.2-18.9,22.8-32,42.8-32c24.4,0,44.3,19.4,44.3,43.1v259.7
17
+ C241.2,409.2,221.3,428.6,196.9,428.6L196.9,428.6z M427.9,260.5c-15.8-11.2-34.9-16.8-52.1-16.5c-3-6.1-6.7-11.6-11.5-16.7
18
+ c13.3-24.1,8-55.1-14.9-73.6c-5.6-4.5-13.9-3.7-18.6,1.7c-4.7,5.5-3.8,13.5,1.7,18.1c11.7,9.5,15.4,24.9,10.1,38.1
19
+ c-2.8-1.4-5.7-2.5-8.8-3.4c-7-2.2-14.4,1.5-16.7,8.2c-2.3,6.7,1.6,14,8.4,16.3c23.2,7.4,35.9,31.8,28.3,54.4
20
+ c-2.3,6.8,1.6,14,8.4,16.3c6.9,2.2,14.4-1.4,16.7-8.2c2.8-8.1,3.8-16.6,3.4-24.9c31,3.2,54.9,28.9,54.9,59.5
21
+ c0,30.8-24.1,56.3-55,59.5c0.9-17.3-4.9-34.3-16.1-47.4c-4.7-5.5-13-6.2-18.6-1.8c-5.6,4.5-6.4,12.7-1.8,18.1
22
+ c24,28.3,2.8,70.6-34.1,70.6c-24.4,0-44.3-19.4-44.3-43.1V125.7c0-23.7,19.9-43.1,44.3-43.1c20.1,0,37.7,13.1,42.8,32
23
+ c1.6,5.8,7,9.8,13.2,9.6c30.9-1.1,53.8,28.8,43.2,57.6c-2.1,5.7,0.2,12,5.5,15.2C439.5,210.9,444.1,240.7,427.9,260.5L427.9,260.5z"
24
+ />
25
+ </svg>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 245.3 245.3" style="enable-background:new 0 0 245.3 245.3;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <g>
9
+ <path class="st0" d="M122.7,18C65,18,18,65,18,122.7s47,104.7,104.7,104.7s104.7-47,104.7-104.7S180.4,18,122.7,18z M122.7,201.7
10
+ c-43.6,0-79.1-35.5-79.1-79.1s35.5-79.1,79.1-79.1s79.1,35.5,79.1,79.1S166.3,201.7,122.7,201.7z"/>
11
+ <rect x="109.9" y="111.1" class="st0" width="25.6" height="67.4"/>
12
+ <rect x="109.9" y="66.8" class="st0" width="25.6" height="24.7"/>
13
+ </g>
14
+ </svg>
Binary file
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;}
7
+ </style>
8
+ <g>
9
+ <rect x="0.5" y="0.5" class="st0" width="23" height="23"/>
10
+ <rect x="5.8" y="6.1" class="st0" width="12.3" height="12.3"/>
11
+ <line class="st0" x1="5.8" y1="6.1" x2="18.1" y2="18.4"/>
12
+ <line class="st0" x1="18.1" y1="13.9" x2="10.4" y2="6.1"/>
13
+ <line class="st0" x1="15.2" y1="6.1" x2="18.1" y2="8.9"/>
14
+ <line class="st0" x1="12.4" y1="18.4" x2="5.8" y2="11.4"/>
15
+ <line class="st0" x1="5.8" y1="17.1" x2="6.9" y2="18.4"/>
16
+ </g>
17
+ </svg>
Binary file
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 32 32" style="enable-background:new 0 0 32 32;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;stroke:#FFFFFF;stroke-miterlimit:10;}
7
+ .st1{fill:none;}
8
+ </style>
9
+ <path class="st0" d="M28.7,3.9c-0.3-0.2-0.7-0.3-1-0.1l-9.6,5.1L4.9,3.7c-0.5-0.2-1,0-1.2,0.5c-0.1,0.2-0.1,0.5,0,0.7l5.8,12.9
10
+ c-1.6,1.2-1.8,3.4-0.6,5c0.5,0.6,1.1,1,1.9,1.2c-0.4,1.6-1.8,2.8-3.5,2.8H5.5v1.8h1.8c2.7,0,5-1.9,5.4-4.6c1.3-0.3,2.3-1.3,2.7-2.6
11
+ h7.6c0.8,0,1.5-0.5,1.7-1.3L29,4.8C29.1,4.5,29,4.1,28.7,3.9z M11.8,22.4c-1,0-1.8-0.8-1.8-1.8s0.8-1.8,1.8-1.8s1.8,0.8,1.8,1.8
12
+ C13.6,21.6,12.8,22.4,11.8,22.4z M22.9,19.7h-7.6c-0.4-1.8-2.2-3-4.1-2.6L6.3,6.2l11.9,4.6l8.5-4.5L22.9,19.7z"/>
13
+ <rect id="_Transparent_Rectangle_" class="st1" width="32" height="32"/>
14
+ </svg>
Binary file
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;stroke:#FFFFFF;stroke-miterlimit:10;}
7
+ </style>
8
+ <path class="st0" d="M20.7,3.3c-0.4-0.3-0.9-0.3-1.3,0l0,0L3.3,19c-0.4,0.3-0.4,0.9,0,1.2l0,0c0.4,0.3,0.9,0.3,1.3,0l0,0L20.7,4.5
9
+ C21.1,4.1,21.1,3.6,20.7,3.3L20.7,3.3z"/>
10
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 27.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <rect x="167.7" y="7" class="st0" width="150.6" height="131.7"/>
9
+ <rect x="167.7" y="190.4" class="st0" width="150.6" height="131.7"/>
10
+ <rect x="167.7" y="373.5" class="st0" width="150.6" height="131.7"/>
11
+ </svg>