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,88 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 27.0.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 595.3 841.9" style="enable-background:new 0 0 595.3 841.9;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:none;stroke:#FFFFFF;stroke-width:4;stroke-miterlimit:10;}
7
+ .st1{fill:#1D1D1B;stroke:#FFFFFF;stroke-width:4;stroke-miterlimit:10;}
8
+ .st2{fill:#FFFFFF;stroke:#FFFFFF;stroke-miterlimit:10;}
9
+ .st3{font-family:'Arial-BoldMT';}
10
+ .st4{font-size:32px;}
11
+ .st5{fill:none;stroke:#FFFFFF;stroke-width:3;stroke-miterlimit:10;}
12
+ .st6{fill:#1D1D1B;stroke:#FFFFFF;stroke-width:3;stroke-miterlimit:10;}
13
+ .st7{font-family:'ArialRoundedMTBold';}
14
+ .st8{font-size:35px;}
15
+ </style>
16
+ <path class="st0" d="M251,98.9v636.8c26.2,24.3,52.1,48.6,78.3,72.9c24.4-24.3,48.8-48.6,73.1-72.9V98.9L251,98.9z"/>
17
+ <rect x="344" y="117" class="st0" width="40" height="40"/>
18
+ <rect x="344" y="207" class="st0" width="40" height="40"/>
19
+ <rect x="344" y="297" class="st0" width="40" height="40"/>
20
+ <rect x="344" y="387" class="st0" width="40" height="40"/>
21
+ <rect x="344" y="477" class="st0" width="40" height="40"/>
22
+ <rect x="344" y="567" class="st0" width="40" height="40"/>
23
+ <rect x="344" y="657" class="st0" width="40" height="40"/>
24
+ <rect x="267" y="159.1" class="st0" width="40" height="40"/>
25
+ <rect x="267" y="249.1" class="st0" width="40" height="40"/>
26
+ <rect x="267" y="339.1" class="st0" width="40" height="40"/>
27
+ <rect x="267" y="429.1" class="st0" width="40" height="40"/>
28
+ <rect x="267" y="519.1" class="st0" width="40" height="40"/>
29
+ <rect x="267" y="609.1" class="st0" width="40" height="40"/>
30
+ <path class="st0" d="M251,734.3h151.4H251z"/>
31
+ <polyline class="st0" points="329.3,808.6 344,803.9 418.2,731 418.2,91 402.4,98.9 251,98.9 263.9,91 "/>
32
+ <line class="st0" x1="263.2" y1="90.4" x2="419.2" y2="90.4"/>
33
+ <line class="st0" x1="334.7" y1="94.7" x2="334.7" y2="28"/>
34
+ <line class="st1" x1="338.1" y1="805.8" x2="338.1" y2="834"/>
35
+ <text transform="matrix(1 0 0 1 343.8154 39.2294)" class="st2 st3 st4">Probe Center</text>
36
+ <path class="st5" d="M326.7,716.8v17.5V716.8z"/>
37
+ <line class="st5" x1="287" y1="629.1" x2="287" y2="734.3"/>
38
+ <line class="st5" x1="364" y1="678.6" x2="364" y2="734.3"/>
39
+ <g>
40
+ <polyline class="st5" points="286.1,109.7 286.1,114.7 286.1,119.7 "/>
41
+ <line class="st5" x1="325.8" y1="114.7" x2="286.1" y2="114.7"/>
42
+ <polyline class="st5" points="325.8,109.4 325.8,114.4 325.8,119.4 "/>
43
+ </g>
44
+ <line class="st6" x1="524.8" y1="734.3" x2="514.8" y2="734.3"/>
45
+ <line class="st6" x1="519.8" y1="734.3" x2="519.8" y2="808.6"/>
46
+ <line class="st6" x1="524.6" y1="807.8" x2="514.6" y2="807.8"/>
47
+ <path class="st5" d="M326.7,681.7v17.5V681.7z"/>
48
+ <path class="st5" d="M326.7,646.8v17.5V646.8z"/>
49
+ <path class="st5" d="M326.7,611.6v17.5V611.6z"/>
50
+ <path class="st5" d="M326.7,576.8v17.5V576.8z"/>
51
+ <path class="st5" d="M326.7,541.6v17.5V541.6z"/>
52
+ <path class="st5" d="M326.7,506.7v17.5V506.7z"/>
53
+ <path class="st5" d="M326.7,471.5V489V471.5z"/>
54
+ <path class="st5" d="M326.7,433.3v17.5V433.3z"/>
55
+ <path class="st5" d="M326.7,398.1v17.5V398.1z"/>
56
+ <path class="st5" d="M326.7,363.2v17.5V363.2z"/>
57
+ <path class="st5" d="M326.7,328.1v17.5V328.1z"/>
58
+ <path class="st5" d="M326.7,293.2v17.5V293.2z"/>
59
+ <path class="st5" d="M326.7,258.1v17.5V258.1z"/>
60
+ <path class="st5" d="M326.7,223.2v17.5V223.2z"/>
61
+ <path class="st5" d="M326.7,188v17.5V188z"/>
62
+ <path class="st5" d="M326.7,159.1v17.5V159.1z"/>
63
+ <line class="st6" x1="221.3" y1="269.1" x2="221.3" y2="359.1"/>
64
+ <line class="st6" x1="215" y1="269.1" x2="228" y2="269.1"/>
65
+ <line class="st6" x1="215.1" y1="359.1" x2="228.1" y2="359.1"/>
66
+ <line class="st6" x1="427.5" y1="734.3" x2="438.7" y2="734.3"/>
67
+ <line class="st6" x1="449.9" y1="734.3" x2="461.2" y2="734.3"/>
68
+ <line class="st6" x1="474.6" y1="734.3" x2="485.8" y2="734.3"/>
69
+ <line class="st6" x1="497.1" y1="734.3" x2="508.3" y2="734.3"/>
70
+ <line class="st6" x1="354.5" y1="807.8" x2="365.7" y2="807.8"/>
71
+ <line class="st6" x1="376.9" y1="807.8" x2="388.1" y2="807.8"/>
72
+ <line class="st6" x1="401.6" y1="807.8" x2="412.8" y2="807.8"/>
73
+ <line class="st6" x1="424" y1="807.8" x2="435.3" y2="807.8"/>
74
+ <line class="st6" x1="451.3" y1="807.8" x2="462.6" y2="807.8"/>
75
+ <line class="st6" x1="473.8" y1="807.8" x2="485" y2="807.8"/>
76
+ <line class="st6" x1="498.4" y1="807.8" x2="509.7" y2="807.8"/>
77
+ <line class="st6" x1="221.9" y1="630.1" x2="221.9" y2="732.7"/>
78
+ <line class="st6" x1="215.7" y1="629.7" x2="228.7" y2="629.7"/>
79
+ <line class="st6" x1="215.7" y1="733.7" x2="228.7" y2="733.7"/>
80
+ <line class="st6" x1="148" y1="98.9" x2="148" y2="808.2"/>
81
+ <line class="st6" x1="141.5" y1="98.9" x2="154.5" y2="98.9"/>
82
+ <line class="st6" x1="141.1" y1="808.6" x2="154.1" y2="808.6"/>
83
+ <text transform="matrix(1 0 0 1 98.3428 418.765)" class="st2 st7 st8">A</text>
84
+ <text transform="matrix(1 0 0 1 531.3125 783.1488)" class="st2 st7 st8">B</text>
85
+ <text transform="matrix(1 0 0 1 186.9014 326.016)" class="st2 st7 st8">C</text>
86
+ <text transform="matrix(1 0 0 1 291.6641 144.8719)" class="st2 st7 st8">D</text>
87
+ <text transform="matrix(1 0 0 1 192.9014 692.4808)" class="st2 st7 st8">E</text>
88
+ </svg>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 27.0.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 60 60" style="enable-background:new 0 0 60 60;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <g>
9
+ <path class="st0" d="M59,0H1C0.4,0,0,0.4,0,1v58c0,0.6,0.4,1,1,1h58c0.6,0,1-0.4,1-1V1C60,0.4,59.6,0,59,0z M18.7,50.8l-3.8-2
10
+ l-3.8,2l0.7-4.2l-3-3l4.2-0.6l1.9-3.8l1.9,3.8l4.2,0.6l-3,3L18.7,50.8z M18,31.2l0.7,4.2l-3.8-2l-3.8,2l0.7-4.2l-3-3l4.2-0.6
11
+ l1.9-3.8l1.9,3.8l4.2,0.6L18,31.2z M18,16.1l0.7,4.2l-3.8-2l-3.8,2l0.7-4.2l-3-3l4.2-0.6l1.9-3.8l1.9,3.8l4.2,0.6L18,16.1z M47,48
12
+ H23v-4h24V48z M47,33H23v-4h24V33z M47,18H23v-4h24V18z"/>
13
+ </g>
14
+ </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="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 349.7 349.7" style="enable-background:new 0 0 349.7 349.7;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <g>
9
+ <path class="st0" d="M174.8,35.9c-56,0-101.6,45.6-101.6,101.6c0,23.2,16.3,57.5,48.4,102c23.4,32.5,47.2,59,47.5,59.2l5.7,6.3
10
+ l5.7-6.3c0.2-0.3,24-26.7,47.5-59.2c32.1-44.5,48.4-78.8,48.4-102C276.4,81.5,230.8,35.9,174.8,35.9z M174.8,281.9
11
+ c-28.5-32.9-86.2-107-86.2-144.4c0-47.5,38.7-86.2,86.2-86.2S261,90,261,137.5C261,174.8,203.3,249,174.8,281.9z"/>
12
+ <circle class="st0" cx="174.8" cy="137.5" r="38.2"/>
13
+ </g>
14
+ </svg>
@@ -0,0 +1,16 @@
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 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="M402.2,149.3c0-27.5,21.8-49.8,48.8-49.8c-26.9,0-48.8-22.3-48.8-49.8c0,27.5-21.8,49.8-48.8,49.8
9
+ C380.4,99.5,402.2,121.8,402.2,149.3z"/>
10
+ <path class="st0" d="M414.4,199c0,20.6-16.4,37.3-36.6,37.3c20.2,0,36.6,16.7,36.6,37.3c0-20.6,16.4-37.3,36.6-37.3
11
+ C430.8,236.3,414.4,219.6,414.4,199z"/>
12
+ <path class="st0" d="M231.6,199c0-41.2,32.7-74.6,73.1-74.6c-40.4,0-73.1-33.4-73.1-74.6c0,41.2-32.7,74.6-73.1,74.6
13
+ C198.9,124.4,231.6,157.8,231.6,199L231.6,199z"/>
14
+ <path class="st0" d="M329.1,124.4L61,398l48.8,49.8l268.1-273.6L329.1,124.4z M287.5,204.1L322,169l12.2,12.4l-34.5,35.2
15
+ L287.5,204.1L287.5,204.1z"/>
16
+ </svg>
@@ -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 15 15" style="enable-background:new 0 0 15 15;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:none;stroke:#FFFFFF;stroke-miterlimit:10;}
7
+ </style>
8
+ <path class="st0" d="M2.7,3C2.3,3,2,3.3,2,3.7v7.8c0,0.4,0.3,0.7,0.7,0.7h9.5c0.4,0,0.7-0.3,0.7-0.7V3.7C13,3.3,12.7,3,12.3,3H2.7z
9
+ M7.5,9.8c1.2,0,2.3-1,2.3-2.2s-1-2.2-2.3-2.2s-2.3,1-2.3,2.2S6.3,9.8,7.5,9.8z"/>
10
+ </svg>
@@ -0,0 +1,20 @@
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 300.1 300.1" style="enable-background:new 0 0 300.1 300.1;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;stroke:#000000;stroke-miterlimit:10;}
7
+ </style>
8
+ <g>
9
+ <g>
10
+ <path class="st0" d="M250.6,43c-4.5-1.8-9.7-0.8-13.1,2.5l-17.5,16.9l-20.1-30.5c-2.2-3.4-6.1-5.4-10.2-5.4s-8,2-10.2,5.4
11
+ l-20.1,30.5l-17.5-16.9c-3.4-3.3-8.6-4.3-13.1-2.5c-4.5,1.8-7.4,6.1-7.4,10.8v69.9c0,14.8,5.1,28.5,13.7,39.6l-91.9,88.8
12
+ c-4.7,4.6-4.7,11.9,0,16.5c2.4,2.3,5.4,3.4,8.5,3.4c3.1,0,6.2-1.1,8.5-3.4l92.5-89.4c10.7,6.7,23.4,10.6,37,10.6c0,0,0,0,0,0
13
+ c18.3,0,35.4-6.9,48.3-19.3c12.9-12.5,20-29.1,20-46.7V53.7C258,49,255.1,44.8,250.6,43z M233.9,123.7L233.9,123.7
14
+ c0,11.4-4.6,22.2-13,30.2c-8.4,8.1-19.5,12.5-31.3,12.5c-6.9,0-13.5-1.6-19.4-4.3l14.2-13.7c0.9,0.1,1.9,0.2,2.8,0.2
15
+ c11.1,0,20.1-8.7,20.1-19.4c0-10.7-9-19.4-20.1-19.4c-11.1,0-20.1,8.7-20.1,19.4c0,0.9,0.1,1.8,0.2,2.7l-15.1,14.6
16
+ c-4.3-6.6-6.9-14.4-6.9-22.8V81.9l7.6,7.3c2.6,2.5,6.2,3.7,9.8,3.3c3.6-0.4,6.9-2.3,8.9-5.3l18-27.3l18,27.3c2,3,5.2,4.9,8.9,5.3
17
+ c3.6,0.4,7.3-0.8,9.8-3.3l7.6-7.3L233.9,123.7L233.9,123.7z"/>
18
+ </g>
19
+ </g>
20
+ </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="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 237.2 237.2" style="enable-background:new 0 0 237.2 237.2;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <path class="st0" d="M69.7,226.2h155.6V70.5H69.7V226.2z M83.2,84.1h128.6v128.6H83.2V84.1z M154.8,90.8h13.5v77.3H91v-13.5h63.7
9
+ L154.8,90.8L154.8,90.8z M64,168.1H12.7V12.5h155.6v51.3h-13.5V26H26.3v128.6H64V168.1L64,168.1z"/>
10
+ <rect x="0.9" class="st0" width="36.2" height="36.2"/>
11
+ <rect x="143.8" y="2" class="st0" width="36.2" height="36.2"/>
12
+ <rect x="1.8" y="142.2" class="st0" width="36.2" height="36.2"/>
13
+ <rect x="141.8" y="142.2" class="st0" width="36.2" height="36.2"/>
14
+ <rect x="58.2" y="60.6" class="st0" width="36.2" height="36.2"/>
15
+ <rect x="200.2" y="59" class="st0" width="36.2" height="36.2"/>
16
+ <rect x="58.2" y="201" class="st0" width="36.2" height="36.2"/>
17
+ <rect x="199.7" y="200.6" class="st0" width="36.2" height="36.2"/>
18
+ </svg>
@@ -0,0 +1,36 @@
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 470 470" style="enable-background:new 0 0 470 470;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <path class="st0" d="M114.6,101.3h35.9c5,0,9-3.6,9-8.1c0-4.5-4-8.1-9-8.1h-35.9c-5,0-9,3.6-9,8.1
9
+ C105.6,97.7,109.6,101.3,114.6,101.3z"/>
10
+ <path class="st0" d="M258.8,85.1h-64.4c-5,0-9,3.6-9,8.1s4,8.1,9,8.1h64.4c5,0,9-3.6,9-8.1S263.7,85.1,258.8,85.1z"/>
11
+ <path class="st0" d="M191.5,141.4H91.2c-5,0-9,3.6-9,8.1c0,4.5,4,8.1,9,8.1h100.3c5,0,9-3.6,9-8.1
12
+ C200.5,145.1,196.4,141.4,191.5,141.4z"/>
13
+ <path class="st0" d="M91.2,270.2h64.4c5,0,9-3.6,9-8.1s-4-8.1-9-8.1H91.2c-5,0-9,3.6-9,8.1S86.3,270.2,91.2,270.2z"/>
14
+ <path class="st0" d="M40.2,213.9h64.4c5,0,9-3.6,9-8.1c0-4.5-4-8.1-9-8.1H40.2c-5,0-9,3.6-9,8.1C31.2,210.3,35.3,213.9,40.2,213.9z"
15
+ />
16
+ <path class="st0" d="M168.3,197.7h-35.9c-5,0-9,3.6-9,8.1c0,4.5,4,8.1,9,8.1h35.9c5,0,9-3.6,9-8.1
17
+ C177.3,201.3,173.2,197.7,168.3,197.7z"/>
18
+ <path class="st0" d="M195,381.8H58.8c-5,0-9,3.6-9,8.1s4,8.1,9,8.1H195c5,0,9-3.6,9-8.1S199.9,381.8,195,381.8z"/>
19
+ <path class="st0" d="M129.1,310.3H47.3c-4,0-7.3,3.6-7.3,8.1c0,4.5,3.3,8.1,7.3,8.1h81.7c4,0,7.3-3.6,7.3-8.1
20
+ C136.4,313.9,133.1,310.3,129.1,310.3z"/>
21
+ <g transform="translate(-1)">
22
+ <g>
23
+ <g>
24
+ <path class="st0" d="M425.6,117.6l-1-0.6c-9.8-5.7-22.4-2.3-28.1,7.5l-22.1,38.6c-1.2,2-3.7,2.8-5.8,1.7l-52.8-27.9
25
+ c-5.1-2.7-11-3.4-16.7-1.9L236,151.7c-1.5,0.4-2.8,1.3-3.6,2.6l-40,64.9c-5.7,9.9-2.9,22.7,6.3,28.5c4.9,3.1,10.7,4,16.3,2.5
26
+ l0.1,0c5.5-1.5,10.2-5.2,12.8-10.2l27.1-50l13.5-3.6l-62,121.8l-54.3,14.4c-12.9,3.4-20.9,15.9-18.3,28.3
27
+ c1.4,6.5,5.2,12,10.9,15.5c5.6,3.4,12.4,4.4,18.7,2.8l81.1-21.5c1.6-0.4,3-1.5,3.7-3l29.8-55.4l44.6,27.3l7.3,70.2
28
+ c0.3,11.9,8.7,21.8,19.9,23.6c3.5,0.6,6.9,0.4,10.2-0.5c3.5-0.9,6.8-2.7,9.6-5.1c5.4-4.7,8.4-11.6,8.1-19l-7.6-101.4
29
+ c-0.2-2-1.3-3.7-3-4.7l-60.8-35.3l28.1-48.3l33.7,19.6c9.4,5.5,22.4,2,27.8-7.4l36.7-63.2c2.7-4.7,3.4-10.1,2.1-15.3
30
+ C433.6,124.7,430.2,120.3,425.6,117.6z"/>
31
+ <path class="st0" d="M362.3,136.8c19.2-5.1,30.6-24.8,25.5-44s-24.8-30.6-44-25.5c-19.2,5.1-30.6,24.8-25.5,44
32
+ C323.4,130.4,343.1,141.9,362.3,136.8z"/>
33
+ </g>
34
+ </g>
35
+ </g>
36
+ </svg>
@@ -0,0 +1,11 @@
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 15 15" style="enable-background:new 0 0 15 15;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <path class="st0" d="M11.4,13.1c1,0,1.8-0.8,1.8-1.9c0-0.9-0.6-1.7-1.5-1.8V5.6c0.8-0.2,1.5-0.9,1.5-1.8c0-1-0.8-1.9-1.8-1.9
9
+ S9.5,2.7,9.5,3.7c0,0.9,0.6,1.7,1.5,1.8v3.8c-0.7,0.1-1.3,0.7-1.4,1.5H6.2c-1,0-1.8-0.8-1.8-1.9V7.8C5.2,7.7,5.9,6.9,5.9,6
10
+ C5.9,5,5,4.1,4,4.1S2.2,5,2.2,6c0,0.9,0.6,1.7,1.5,1.8V9c0,1.5,1.1,2.6,2.6,2.6h3.3C9.7,12.5,10.5,13.1,11.4,13.1z"/>
11
+ </svg>
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,119 @@
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 595.3 841.9" style="enable-background:new 0 0 595.3 841.9;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:none;stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;}
7
+ .st1{fill:#B2B2B2;stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;}
8
+ .st2{fill:#878787;stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;}
9
+ .st3{fill:#9D9D9C;stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;}
10
+ .st4{fill:#FFFFFF;stroke:#000000;stroke-miterlimit:10;}
11
+ .st5{fill:#706F6F;stroke:#FFFFFF;stroke-miterlimit:10;}
12
+ .st6{fill:#FFFFFF;stroke:#FFFFFF;stroke-miterlimit:10;}
13
+ .st7{fill:#FFFFFF;stroke:#FFFFFF;stroke-width:8;stroke-miterlimit:10;}
14
+ .st8{fill:#FFFFFF;}
15
+ .st9{font-family:'Arial-Black';}
16
+ .st10{font-size:18px;}
17
+ .st11{stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;}
18
+ </style>
19
+ <g>
20
+ <line class="st0" x1="202.3" y1="482.1" x2="212.9" y2="478.1"/>
21
+ <line class="st0" x1="219.4" y1="475.5" x2="230" y2="471.5"/>
22
+ <line class="st0" x1="236.4" y1="469" x2="247" y2="464.9"/>
23
+ <line class="st0" x1="254.5" y1="462" x2="265.1" y2="457.9"/>
24
+ <line class="st0" x1="271.5" y1="455.5" x2="282.1" y2="451.4"/>
25
+ <line class="st0" x1="291.3" y1="447.8" x2="301.9" y2="443.7"/>
26
+ <line class="st0" x1="308.3" y1="441.3" x2="318.9" y2="437.2"/>
27
+ <line class="st0" x1="326.4" y1="434.2" x2="337" y2="430.2"/>
28
+ <line class="st0" x1="343.4" y1="427.7" x2="354" y2="423.6"/>
29
+ <line class="st0" x1="360.5" y1="421.1" x2="371.1" y2="417"/>
30
+ <line class="st0" x1="377.4" y1="414.6" x2="388" y2="410.5"/>
31
+ <line class="st0" x1="395.6" y1="407.6" x2="406.2" y2="403.5"/>
32
+ <line class="st0" x1="412.5" y1="401" x2="423.1" y2="396.9"/>
33
+ <line class="st0" x1="428.5" y1="394.8" x2="439.1" y2="390.8"/>
34
+ <line class="st0" x1="445.5" y1="388.3" x2="456.1" y2="384.2"/>
35
+ <line class="st0" x1="463.6" y1="381.3" x2="474.2" y2="377.2"/>
36
+ <line class="st0" x1="480.6" y1="374.8" x2="491.2" y2="370.7"/>
37
+ <line class="st0" x1="497.7" y1="368.2" x2="508.3" y2="364.1"/>
38
+ <line class="st0" x1="514.6" y1="361.6" x2="525.2" y2="357.5"/>
39
+ <line class="st0" x1="532.8" y1="354.6" x2="543.4" y2="350.5"/>
40
+ <line class="st0" x1="549.7" y1="348.1" x2="560.3" y2="344"/>
41
+ </g>
42
+ <g>
43
+ <line class="st0" x1="180.5" y1="462" x2="191" y2="458"/>
44
+ <line class="st0" x1="197.6" y1="455.4" x2="208.1" y2="451.4"/>
45
+ <line class="st0" x1="214.5" y1="448.9" x2="225.1" y2="444.8"/>
46
+ <line class="st0" x1="232.7" y1="441.9" x2="243.2" y2="437.8"/>
47
+ <line class="st0" x1="249.6" y1="435.4" x2="260.2" y2="431.3"/>
48
+ <line class="st0" x1="269.5" y1="427.7" x2="280" y2="423.6"/>
49
+ <line class="st0" x1="286.4" y1="421.2" x2="297" y2="417.1"/>
50
+ <line class="st0" x1="304.6" y1="414.2" x2="315.1" y2="410.1"/>
51
+ <line class="st0" x1="321.5" y1="407.6" x2="332.1" y2="403.5"/>
52
+ <line class="st0" x1="338.6" y1="401" x2="349.2" y2="396.9"/>
53
+ <line class="st0" x1="355.6" y1="394.5" x2="366.1" y2="390.4"/>
54
+ <line class="st0" x1="373.7" y1="387.5" x2="384.3" y2="383.4"/>
55
+ <line class="st0" x1="390.7" y1="380.9" x2="401.2" y2="376.8"/>
56
+ <line class="st0" x1="406.7" y1="374.7" x2="417.2" y2="370.7"/>
57
+ <line class="st0" x1="423.6" y1="368.2" x2="434.2" y2="364.1"/>
58
+ <line class="st0" x1="441.8" y1="361.2" x2="452.3" y2="357.1"/>
59
+ <line class="st0" x1="458.7" y1="354.7" x2="469.3" y2="350.6"/>
60
+ <line class="st0" x1="475.8" y1="348.1" x2="486.4" y2="344"/>
61
+ <line class="st0" x1="492.8" y1="341.5" x2="503.3" y2="337.4"/>
62
+ <line class="st0" x1="510.9" y1="334.5" x2="521.5" y2="330.4"/>
63
+ <line class="st0" x1="527.9" y1="328" x2="538.4" y2="323.9"/>
64
+ </g>
65
+ <g>
66
+ <line class="st0" x1="157.1" y1="439.3" x2="167.7" y2="435.2"/>
67
+ <line class="st0" x1="174.2" y1="432.7" x2="184.8" y2="428.6"/>
68
+ <line class="st0" x1="191.1" y1="426.1" x2="201.7" y2="422.1"/>
69
+ <line class="st0" x1="209.3" y1="419.1" x2="219.9" y2="415.1"/>
70
+ <line class="st0" x1="226.2" y1="412.6" x2="236.8" y2="408.5"/>
71
+ <line class="st0" x1="246.1" y1="404.9" x2="256.7" y2="400.9"/>
72
+ <line class="st0" x1="263" y1="398.4" x2="273.6" y2="394.3"/>
73
+ <line class="st0" x1="281.2" y1="391.4" x2="291.8" y2="387.3"/>
74
+ <line class="st0" x1="298.1" y1="384.9" x2="308.7" y2="380.8"/>
75
+ <line class="st0" x1="315.2" y1="378.3" x2="325.8" y2="374.2"/>
76
+ <line class="st0" x1="332.2" y1="371.7" x2="342.8" y2="367.6"/>
77
+ <line class="st0" x1="350.3" y1="364.7" x2="360.9" y2="360.6"/>
78
+ <line class="st0" x1="367.3" y1="358.2" x2="377.9" y2="354.1"/>
79
+ <line class="st0" x1="383.3" y1="352" x2="393.9" y2="347.9"/>
80
+ <line class="st0" x1="400.2" y1="345.5" x2="410.8" y2="341.4"/>
81
+ <line class="st0" x1="418.4" y1="338.4" x2="429" y2="334.4"/>
82
+ <line class="st0" x1="435.3" y1="331.9" x2="445.9" y2="327.8"/>
83
+ <line class="st0" x1="452.4" y1="325.3" x2="463" y2="321.2"/>
84
+ <line class="st0" x1="469.4" y1="318.8" x2="480" y2="314.7"/>
85
+ <line class="st0" x1="487.5" y1="311.8" x2="498.1" y2="307.7"/>
86
+ <line class="st0" x1="504.5" y1="305.2" x2="515.1" y2="301.1"/>
87
+ </g>
88
+ <path class="st1" d="M452.8,159.4v207.2c3,4.7,5.9,9.4,8.9,14.2c2.8-4.7,5.6-9.5,8.4-14.2c0-69.1-0.1-138.1-0.1-207.2H452.8z"/>
89
+ <path class="st2" d="M405.5,118.3v207.2c3,4.7,5.9,9.4,8.9,14.2c2.8-4.7,5.6-9.5,8.4-14.2c0-69.1-0.1-138.1-0.1-207.2H405.5z"/>
90
+ <path class="st3" d="M268.5,202.8v207.2c3,4.7,5.9,9.4,8.9,14.2c2.8-4.7,5.6-9.5,8.4-14.2c0-69.1-0.1-138.1-0.1-207.2H268.5z"/>
91
+ <path class="st2" d="M182.7,204v207.2c3,4.7,5.9,9.4,8.9,14.2c2.8-4.7,5.6-9.5,8.4-14.2c0-69.1-0.1-138.1-0.1-207.2H182.7z"/>
92
+ <path class="st1" d="M224.9,247.3v207.2c3,4.7,5.9,9.4,8.9,14.2c2.8-4.7,5.6-9.5,8.4-14.2c0-69.1-0.1-138.1-0.1-207.2H224.9z"/>
93
+ <path class="st4" d="M492.3,188c-85.4,33.3-170.7,66.7-256.1,100c-22-23.6-43.9-47.2-65.9-70.7c83.7-32.5,167.5-65,251.2-97.6
94
+ C445.2,142.4,468.7,165.2,492.3,188z"/>
95
+ <path class="st5" d="M491.8,170c-85.4,33.3-170.7,66.7-256.1,100c-22-23.6-43.9-47.2-65.9-70.7c83.7-32.5,167.5-65,251.2-97.6
96
+ C444.6,124.5,468.2,147.3,491.8,170z"/>
97
+ <polygon class="st5" points="169.8,199.3 170.4,217.2 236.2,288 492.3,188 491.8,170 235.7,270 "/>
98
+ <line class="st6" x1="235.7" y1="270" x2="236.2" y2="288"/>
99
+ <rect x="327.4" y="182.6" class="st7" width="6.7" height="6.7"/>
100
+ <text transform="matrix(1 0 0 1 294.6851 174.7611)" class="st8 st9 st10">Center</text>
101
+ <line class="st0" x1="517.4" y1="110.6" x2="330.8" y2="187.1"/>
102
+ <line class="st11" x1="516.6" y1="110.6" x2="508.1" y2="119.9"/>
103
+ <line class="st11" x1="517.4" y1="110.9" x2="504.8" y2="110.2"/>
104
+ <text transform="matrix(1 0 0 1 481.0381 105.0947)" class="st8 st9 st10">x-stack</text>
105
+ <g>
106
+ <line class="st0" x1="424.1" y1="289.6" x2="331.3" y2="187.1"/>
107
+ <line class="st0" x1="423.8" y1="289.9" x2="414.1" y2="285.3"/>
108
+ <line class="st0" x1="424.4" y1="289.3" x2="420.9" y2="279.2"/>
109
+ </g>
110
+ <text transform="matrix(1 0 0 1 429.5918 279.0103)" class="st8 st9 st10">y-stack</text>
111
+ <text transform="matrix(0.9258 -0.3781 0.3781 0.9258 99.2159 470.1653)" class="st8 st9 st10">Line 1</text>
112
+ <text transform="matrix(0.9258 -0.3781 0.3781 0.9258 118.2317 494.5603)" class="st8 st9 st10">Line 2</text>
113
+ <text transform="matrix(0.9258 -0.3781 0.3781 0.9258 135.3618 518.2956)" class="st8 st9 st10">Line 3</text>
114
+ <text transform="matrix(1 0 0 1 186.0464 212.2686)" class="st8 st9 st10">1</text>
115
+ <text transform="matrix(1 0 0 1 409.0449 125.6211)" class="st8 st9 st10">2</text>
116
+ <text transform="matrix(1 0 0 1 272.0151 214.3599)" class="st8 st9 st10">3</text>
117
+ <text transform="matrix(1 0 0 1 228.5762 256.1377)" class="st8 st9 st10">4</text>
118
+ <text transform="matrix(1 0 0 1 456.4092 171.4077)" class="st8 st9 st10">5</text>
119
+ </svg>
@@ -0,0 +1,23 @@
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
+ <g>
9
+ <g>
10
+ <path class="st0" d="M164.4,391.6l-75.8-76L355.8,48.1l75.8,76L164.4,391.6L164.4,391.6z M70.2,354.2l55.8,55.9l-77.6,21.8
11
+ L70.2,354.2L70.2,354.2z M474.1,110L369.9,5.7c-7.5-7.5-20.8-7.5-28.4,0L46.1,301.6c-2.5,2.5-4.2,5.4-5.1,8.8L0.1,455.5
12
+ c-1.9,7,0,14.5,5.1,19.6c3.8,3.8,11.5,6.5,19.6,5.1l144.9-40.8c3.4-0.9,6.3-2.7,8.8-5.1L474,138.4C482,130.4,482,117.7,474.1,110
13
+ L474.1,110z"/>
14
+ </g>
15
+ </g>
16
+ <g>
17
+ <g>
18
+ <path class="st0" d="M507.2,211.5L507.2,211.5c-6.1-6.1-18.9,0.3-25,6.4c0,0-229.6,231.3-227.6,235.3L133,486
19
+ c-9.1,6.4-6.6,16.5-6.6,16.5c4.5,8.2,10.9,9.8,16,9.8L260.1,479c2.7-0.7,5.1-2.2,7.1-4.1l240-240.3
20
+ C513.6,228.1,513.6,217.9,507.2,211.5L507.2,211.5z"/>
21
+ </g>
22
+ </g>
23
+ </svg>
@@ -0,0 +1,13 @@
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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:none;stroke:#FFFFFF;stroke-width:5;}
7
+ </style>
8
+ <path class="st0" d="M10.9,28.3l17.4,0.9c0,0,7.8-0.9,1.7-5.2c-4.3-2.6-3.5-13,7-13.9c7-0.6,11.3,2.5,11.3,7.8
9
+ c0,6.1-7.8,7.8-3.5,11.3c1.7,1.7,24.4,0,24.4,0S67.4,47.4,68.3,50c0.9,4.3,6.1,3.5,7.8,0c3.5-5.2,13.9-3.5,14.8,7
10
+ c0.9,7.8-4.3,12.2-7,12.2c-7.8,0-6.1-4.3-11.3-4.3c-3.5,0-3.5,2.6-3.5,7c0,2.6,1.7,14.8,1.7,14.8s-15.7,2.6-19.1,2.6s-7,0.9-7.8-2.6
11
+ c-0.9-3.5,5.2-7.8,0.9-11.3S30,70.9,30,79.6c0,3.5,3.5,5.2,2.6,7.8c-0.9,3.5-6.1,2.6-12.2,1.7c-6.3-0.9-7.8-0.9-7.8-0.9L10,63.1
12
+ c0,0,0-3.5,3.5-3.5s3.5,4.3,7.8,4.3s7-2.6,7-7.8s-6.1-13-13-7S10.9,28.3,10.9,28.3"/>
13
+ </svg>
@@ -0,0 +1,22 @@
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
+ </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.8c0-0.2,0.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.4
10
+ s-3.4,4.4-5.2,4.4H9.8c-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.2c0.1,0.1,0.2,0.3,0.2,0.5s-0.1,0.4-0.2,0.5
11
+ C15.2,19.9,15,20,14.8,20z"/>
12
+ <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.1c0.1-0.7,0.5-1.3,1-1.8
13
+ c0.5-0.5,1.1-0.8,1.8-1c0.7-0.1,1.4-0.1,2,0.2C8.5,1.8,9,2.2,9.4,2.8c0.4,0.6,0.6,1.3,0.6,2c0,0.5-0.1,0.9-0.3,1.4
14
+ C9.5,6.6,9.3,7,9,7.3C8.6,7.6,8.2,7.9,7.8,8C7.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,4
15
+ C4.4,4.4,4.4,4.8,4.5,5.1c0.1,0.4,0.3,0.7,0.5,1c0.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.7
16
+ c0.2-0.3,0.3-0.7,0.3-1.1c0-0.3-0.1-0.5-0.2-0.8C8.2,3.7,8,3.5,7.9,3.3C7.7,3.2,7.4,3,7.2,2.9C7,2.8,6.7,2.8,6.4,2.8z"/>
17
+ <path class="st0" d="M17.6,22.8c-0.7,0-1.4-0.2-2-0.6c-0.6-0.4-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.8
18
+ c0.5-0.5,1.1-0.8,1.8-1c0.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.5
19
+ C19.4,22.4,18.5,22.7,17.6,22.8z M17.6,17.2c-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.2
20
+ c0.1,0.4,0.3,0.7,0.5,1c0.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.1
21
+ c0-0.5-0.2-1-0.6-1.4C18.6,17.4,18.1,17.2,17.6,17.2z"/>
22
+ </svg>
Binary file
@@ -0,0 +1,26 @@
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="22.9"/>
10
+ <rect x="5.8" y="6" class="st0" width="12.3" height="12.2"/>
11
+ <line class="st0" x1="0.5" y1="0.8" x2="5.8" y2="6"/>
12
+ <line class="st0" x1="18.1" y1="18.3" x2="23.3" y2="23.4"/>
13
+ <line class="st0" x1="23.3" y1="19" x2="18.1" y2="13.9"/>
14
+ <line class="st0" x1="10.4" y1="6" x2="5.2" y2="0.8"/>
15
+ <line class="st0" x1="9.9" y1="0.8" x2="15.2" y2="6"/>
16
+ <line class="st0" x1="18.1" y1="8.9" x2="23.4" y2="14.1"/>
17
+ <line class="st0" x1="23.5" y1="9" x2="14.9" y2="0.8"/>
18
+ <line class="st0" x1="23.3" y1="3.8" x2="20" y2="0.8"/>
19
+ <line class="st0" x1="5.8" y1="11.4" x2="0.5" y2="5.7"/>
20
+ <line class="st0" x1="12.5" y1="18.3" x2="17.3" y2="23.4"/>
21
+ <line class="st0" x1="11.5" y1="23.4" x2="6.9" y2="18.3"/>
22
+ <line class="st0" x1="5.8" y1="17.1" x2="0.5" y2="11.3"/>
23
+ <line class="st0" x1="0.5" y1="16.9" x2="6" y2="23.4"/>
24
+ <line class="st0" x1="1.9" y1="23.4" x2="0.5" y2="21.8"/>
25
+ </g>
26
+ </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="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 469.3 469.3" style="enable-background:new 0 0 469.3 469.3;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;stroke:#000000;stroke-miterlimit:10;}
7
+ </style>
8
+ <g>
9
+ <g>
10
+ <path class="st0" d="M402.1,110.8l-48.2-50.1c-12.1-12.6-33.3-12.7-45.5,0L92.4,287.1c-1,1-1.7,2.3-2,3.6L58.2,407.4
11
+ c-0.8,2.9,0,6,2,8.2c1.5,1.6,3.6,2.4,5.7,2.4c0.8,0,1.5-0.1,2.2-0.3l112.5-33.4c1.3-0.4,2.5-1.1,3.5-2.1l218-224.3
12
+ c6.1-6.3,9.4-14.7,9.4-23.6C411.4,125.4,408.2,117,402.1,110.8z M273.4,121.3l29.6,30.7L148.5,312.3l-11.1-23
13
+ c-1.4-2.8-4.1-4.6-7.2-4.6h-13L273.4,121.3z M77.7,397.6l10.5-38l26.1,27.1L77.7,397.6z M170.4,370.2L132,381.6l-38.8-40.3
14
+ l11-39.9h21.1l13.9,28.8c0.8,1.6,2,2.9,3.6,3.8l27.7,14.4L170.4,370.2L170.4,370.2z M186.5,356.4V343c0-3.1-1.7-6-4.4-7.4
15
+ l-22.1-11.5l154.4-160.2l29.6,30.7L186.5,356.4z M390.8,146.4l-35.4,36.4l-70.7-73.2l35.1-36.7c6.1-6.3,16.7-6.3,22.8,0l48.2,50
16
+ c3,3.1,4.7,7.3,4.7,11.8C395.4,139.1,393.8,143.2,390.8,146.4z"/>
17
+ </g>
18
+ </g>
19
+ </svg>
Binary file
@@ -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 490 490" style="enable-background:new 0 0 490 490;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;stroke:#FFFFFF;stroke-width:18;stroke-miterlimit:10;}
7
+ </style>
8
+ <line class="st0" x1="146.8" y1="355.3" x2="60.3" y2="468.7"/>
9
+ <line class="st0" x1="207" y1="391.4" x2="91.1" y2="304.9"/>
10
+ <rect x="134.1" y="284.9" transform="matrix(0.7782 0.628 -0.628 0.7782 223.0797 -27.9245)" class="st0" width="34" height="34"/>
11
+ <rect x="205" y="277.5" transform="matrix(0.7782 0.628 -0.628 0.7782 234.1814 -74.1138)" class="st0" width="34" height="34"/>
12
+ <rect x="197.4" y="206.9" transform="matrix(0.7782 0.628 -0.628 0.7782 188.1783 -84.9713)" class="st0" width="34" height="34"/>
13
+ <rect x="269.2" y="198" transform="matrix(0.7782 0.628 -0.628 0.7782 198.4832 -132.0377)" class="st0" width="34" height="34"/>
14
+ <rect x="263.4" y="125.1" transform="matrix(0.7782 0.628 -0.628 0.7782 151.4489 -144.5684)" class="st0" width="34" height="34"/>
15
+ <rect x="334.3" y="116.7" transform="matrix(0.7782 0.628 -0.628 0.7782 161.8739 -190.9825)" class="st0" width="34" height="34"/>
16
+ <rect x="327.4" y="45.7" transform="matrix(0.7782 0.628 -0.628 0.7782 115.7412 -202.3515)" class="st0" width="34" height="34"/>
17
+ <line class="st0" x1="87.8" y1="313.5" x2="317.4" y2="25.3"/>
18
+ <line class="st0" x1="199.6" y1="396" x2="434.6" y2="94"/>
19
+ </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:#FFFFFF;}
7
+ </style>
8
+ <g>
9
+ <g>
10
+
11
+ <ellipse transform="matrix(7.088901e-02 -0.9975 0.9975 7.088901e-02 -290.6223 484.4348)" class="st0" cx="114.7" cy="398.2" rx="42.7" ry="42.7"/>
12
+ </g>
13
+ </g>
14
+ <g>
15
+ <g>
16
+ <circle class="st0" cx="399.2" cy="113.8" r="42.7"/>
17
+ </g>
18
+ </g>
19
+ <g>
20
+ <g>
21
+ <path class="st0" d="M475.4,234.7c-2.1-21.5-7.3-42.2-15.1-61.4c-10.1,10.4-22.8,18.2-37.1,22.4c4.5,12.4,7.6,25.5,9.3,39h-43.1
22
+ c-9.2-57.4-54.6-102.9-112.1-112.1V79.5c13.9,1.7,27.4,5,40.1,9.7c4.3-14.2,12.2-26.9,22.7-36.9c-19.7-8.2-40.8-13.5-62.8-15.7V0
23
+ h-42.7v36.6c-104.6,10.1-188,93.5-198.1,198.1H0v42.7h36.6c2.1,22,7.5,43.1,15.7,62.8c9.9-10.7,22.5-18.8,36.7-23.3
24
+ c-4.6-12.6-7.8-25.8-9.5-39.5h43.1c9.2,57.4,54.6,102.9,112.1,112.1v43.1c-13.3-1.6-26.2-4.7-38.4-9.1
25
+ c-4.4,14.2-12.5,26.9-23.1,36.9c19.3,7.8,39.9,13,61.5,15.1V512h42.7v-36.6c104.6-10.1,188-93.5,198.1-198.1H512v-42.7
26
+ L475.4,234.7L475.4,234.7z M234.7,345.9c-33.9-8-60.6-34.7-68.6-68.6h68.6V345.9z M234.7,234.7h-68.6c8-33.9,34.7-60.6,68.6-68.6
27
+ V234.7z M234.7,122.6c-57.4,9.2-102.9,54.6-112.1,112.1H79.5c9.7-81,74.2-145.4,155.2-155.2L234.7,122.6L234.7,122.6z
28
+ M277.3,166.1c33.9,8,60.6,34.7,68.6,68.6h-68.6V166.1z M277.3,277.3h68.6c-8,33.9-34.7,60.6-68.6,68.6V277.3z M277.3,432.5v-43.1
29
+ c57.4-9.2,102.9-54.6,112.1-112.1h43.1C422.8,358.3,358.3,422.8,277.3,432.5z"/>
30
+ </g>
31
+ </g>
32
+ </svg>