@opentiny/fluent-editor 4.0.0-alpha.9 → 4.0.0-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (385) hide show
  1. package/README.md +88 -88
  2. package/es/attributors/line-height.es.js.map +1 -1
  3. package/es/config/base64-image.es.js.map +1 -1
  4. package/es/config/editor.config.es.js +27 -0
  5. package/es/config/editor.config.es.js.map +1 -1
  6. package/es/config/editor.utils.es.js.map +1 -1
  7. package/es/config/i18n/en-us.es.js +2 -0
  8. package/es/config/i18n/en-us.es.js.map +1 -1
  9. package/es/config/i18n/zh-cn.es.js +2 -0
  10. package/es/config/i18n/zh-cn.es.js.map +1 -1
  11. package/es/config/index.es.js +3 -1
  12. package/es/config/index.es.js.map +1 -1
  13. package/es/core/fluent-editor.es.js.map +1 -1
  14. package/es/fluent-editor.es.js +17 -13
  15. package/es/fluent-editor.es.js.map +1 -1
  16. package/es/formats/emoji.es.js.map +1 -1
  17. package/es/formats/soft-break.es.js.map +1 -1
  18. package/es/formats/strike.es.js.map +1 -1
  19. package/es/formats/video.es.js.map +1 -1
  20. package/es/index.es.js +35 -2
  21. package/es/index.es.js.map +1 -1
  22. package/es/modules/ai/constants.es.js.map +1 -1
  23. package/es/modules/ai/icons.es.js.map +1 -1
  24. package/es/modules/ai/index.es.js +1 -1
  25. package/es/modules/ai/index.es.js.map +1 -1
  26. package/es/modules/collaborative-editing/awareness/awareness.es.js +6 -7
  27. package/es/modules/collaborative-editing/awareness/awareness.es.js.map +1 -1
  28. package/es/modules/collaborative-editing/awareness/y-indexeddb.es.js +7 -3
  29. package/es/modules/collaborative-editing/awareness/y-indexeddb.es.js.map +1 -1
  30. package/es/modules/collaborative-editing/collaborative-editing.es.js +13 -8
  31. package/es/modules/collaborative-editing/collaborative-editing.es.js.map +1 -1
  32. package/es/modules/collaborative-editing/module.es.js.map +1 -1
  33. package/es/modules/collaborative-editing/provider/providerRegistry.es.js.map +1 -1
  34. package/es/modules/collaborative-editing/provider/webrtc.es.js +8 -4
  35. package/es/modules/collaborative-editing/provider/webrtc.es.js.map +1 -1
  36. package/es/modules/collaborative-editing/provider/websocket.es.js +6 -4
  37. package/es/modules/collaborative-editing/provider/websocket.es.js.map +1 -1
  38. package/es/modules/counter.es.js.map +1 -1
  39. package/es/modules/custom-clipboard.es.js.map +1 -1
  40. package/es/modules/custom-image/actions/action.es.js.map +1 -1
  41. package/es/modules/custom-image/actions/custom-resize-action.es.js.map +1 -1
  42. package/es/modules/custom-image/actions/delete-action.es.js.map +1 -1
  43. package/es/modules/custom-image/actions/image-toolbar-buttons.es.js +1 -1
  44. package/es/modules/custom-image/actions/image-toolbar-buttons.es.js.map +1 -1
  45. package/es/modules/custom-image/actions/toolbar-action.es.js.map +1 -1
  46. package/es/modules/custom-image/actions/toolbar.es.js.map +1 -1
  47. package/es/modules/custom-image/blot-formatter.es.js +1 -1
  48. package/es/modules/custom-image/blot-formatter.es.js.map +1 -1
  49. package/es/modules/custom-image/image.es.js.map +1 -1
  50. package/es/modules/custom-image/options.es.js.map +1 -1
  51. package/es/modules/custom-image/specs/blot-spec.es.js.map +1 -1
  52. package/es/modules/custom-image/specs/custom-image-spec.es.js.map +1 -1
  53. package/es/modules/custom-image/specs/image-spec.es.js.map +1 -1
  54. package/es/modules/custom-uploader.es.js.map +1 -1
  55. package/es/modules/divider.es.js.map +1 -1
  56. package/es/modules/emoji.es.js +1 -1
  57. package/es/modules/emoji.es.js.map +1 -1
  58. package/es/modules/file/formats/file.es.js.map +1 -1
  59. package/es/modules/file/modules/file-bar.es.js.map +1 -1
  60. package/es/modules/file/modules/file-module.es.js.map +1 -1
  61. package/es/modules/flow-chart/config-utils.es.js +102 -0
  62. package/es/modules/flow-chart/config-utils.es.js.map +1 -0
  63. package/es/modules/flow-chart/formats/flow-chart-blot.es.js +369 -0
  64. package/es/modules/flow-chart/formats/flow-chart-blot.es.js.map +1 -0
  65. package/es/modules/flow-chart/i18n/en-us.es.js +30 -0
  66. package/es/modules/flow-chart/i18n/en-us.es.js.map +1 -0
  67. package/es/modules/flow-chart/i18n/index.es.js +12 -0
  68. package/es/modules/flow-chart/i18n/index.es.js.map +1 -0
  69. package/es/modules/flow-chart/i18n/zh-cn.es.js +30 -0
  70. package/es/modules/flow-chart/i18n/zh-cn.es.js.map +1 -0
  71. package/es/modules/flow-chart/icons.es.js +27 -0
  72. package/es/modules/flow-chart/icons.es.js.map +1 -0
  73. package/es/modules/flow-chart/index.es.js +45 -0
  74. package/es/modules/flow-chart/index.es.js.map +1 -0
  75. package/es/modules/flow-chart/modules/context-menu.es.js +184 -0
  76. package/es/modules/flow-chart/modules/context-menu.es.js.map +1 -0
  77. package/es/modules/flow-chart/modules/control-panel.es.js +286 -0
  78. package/es/modules/flow-chart/modules/control-panel.es.js.map +1 -0
  79. package/es/modules/flow-chart/modules/custom-resize-action.es.js +150 -0
  80. package/es/modules/flow-chart/modules/custom-resize-action.es.js.map +1 -0
  81. package/es/modules/i18n.es.js.map +1 -1
  82. package/es/modules/index.es.js +4 -0
  83. package/es/modules/index.es.js.map +1 -1
  84. package/es/modules/link/formats/link.es.js.map +1 -1
  85. package/es/modules/link/modules/tooltip.es.js.map +1 -1
  86. package/es/modules/mathlive/formats.es.js.map +1 -1
  87. package/es/modules/mathlive/module.es.js.map +1 -1
  88. package/es/modules/mathlive/tooltip.es.js.map +1 -1
  89. package/es/modules/mention/constants.es.js.map +1 -1
  90. package/es/modules/mention/mention-link.es.js.map +1 -1
  91. package/es/modules/mention/mention.es.js.map +1 -1
  92. package/es/modules/mind-map/config-utils.es.js +108 -0
  93. package/es/modules/mind-map/config-utils.es.js.map +1 -0
  94. package/es/modules/mind-map/formats/mind-map-blot.es.js +356 -0
  95. package/es/modules/mind-map/formats/mind-map-blot.es.js.map +1 -0
  96. package/es/modules/mind-map/i18n/en-us.es.js +29 -0
  97. package/es/modules/mind-map/i18n/en-us.es.js.map +1 -0
  98. package/es/modules/mind-map/i18n/index.es.js +12 -0
  99. package/es/modules/mind-map/i18n/index.es.js.map +1 -0
  100. package/es/modules/mind-map/i18n/zh-cn.es.js +29 -0
  101. package/es/modules/mind-map/i18n/zh-cn.es.js.map +1 -0
  102. package/es/modules/mind-map/icons.es.js +45 -0
  103. package/es/modules/mind-map/icons.es.js.map +1 -0
  104. package/es/modules/mind-map/index.es.js +56 -0
  105. package/es/modules/mind-map/index.es.js.map +1 -0
  106. package/es/modules/mind-map/modules/context-menu.es.js +128 -0
  107. package/es/modules/mind-map/modules/context-menu.es.js.map +1 -0
  108. package/es/modules/mind-map/modules/control-panel.es.js +425 -0
  109. package/es/modules/mind-map/modules/control-panel.es.js.map +1 -0
  110. package/es/modules/mind-map/modules/custom-resize-action.es.js +161 -0
  111. package/es/modules/mind-map/modules/custom-resize-action.es.js.map +1 -0
  112. package/es/modules/shortcut-key/index.es.js +16 -0
  113. package/es/modules/shortcut-key/index.es.js.map +1 -1
  114. package/es/modules/syntax.es.js.map +1 -1
  115. package/es/modules/table-up/index.es.js.map +1 -1
  116. package/es/modules/toolbar/better-picker.es.js.map +1 -1
  117. package/es/modules/toolbar/better-toolbar.es.js.map +1 -1
  118. package/es/modules/toolbar/toolbar-tip.es.js.map +1 -1
  119. package/es/themes/snow.es.js.map +1 -1
  120. package/es/tools/format-painter.es.js.map +1 -1
  121. package/es/tools/fullscreen.es.js.map +1 -1
  122. package/es/tools/screenshot.es.js.map +1 -1
  123. package/es/ui/icons.config.es.js +4 -0
  124. package/es/ui/icons.config.es.js.map +1 -1
  125. package/es/ui/icons.es.js +4 -2
  126. package/es/ui/icons.es.js.map +1 -1
  127. package/es/utils/debounce.es.js.map +1 -1
  128. package/es/utils/image.es.js.map +1 -1
  129. package/es/utils/is.es.js.map +1 -1
  130. package/es/utils/merge.es.js +27 -0
  131. package/es/utils/merge.es.js.map +1 -0
  132. package/es/utils/method.es.js.map +1 -1
  133. package/es/utils/scroll-lock.es.js.map +1 -1
  134. package/flow-chart.css +185 -0
  135. package/lib/attributors/line-height.cjs.js.map +1 -1
  136. package/lib/config/base64-image.cjs.js.map +1 -1
  137. package/lib/config/editor.config.cjs.js +27 -0
  138. package/lib/config/editor.config.cjs.js.map +1 -1
  139. package/lib/config/editor.utils.cjs.js.map +1 -1
  140. package/lib/config/i18n/en-us.cjs.js +2 -0
  141. package/lib/config/i18n/en-us.cjs.js.map +1 -1
  142. package/lib/config/i18n/zh-cn.cjs.js +2 -0
  143. package/lib/config/i18n/zh-cn.cjs.js.map +1 -1
  144. package/lib/config/index.cjs.js +2 -0
  145. package/lib/config/index.cjs.js.map +1 -1
  146. package/lib/core/fluent-editor.cjs.js.map +1 -1
  147. package/lib/fluent-editor.cjs.js +23 -19
  148. package/lib/fluent-editor.cjs.js.map +1 -1
  149. package/lib/formats/emoji.cjs.js.map +1 -1
  150. package/lib/formats/soft-break.cjs.js.map +1 -1
  151. package/lib/formats/strike.cjs.js.map +1 -1
  152. package/lib/formats/video.cjs.js.map +1 -1
  153. package/lib/index.cjs.js +39 -6
  154. package/lib/index.cjs.js.map +1 -1
  155. package/lib/modules/ai/constants.cjs.js.map +1 -1
  156. package/lib/modules/ai/icons.cjs.js.map +1 -1
  157. package/lib/modules/ai/index.cjs.js.map +1 -1
  158. package/lib/modules/collaborative-editing/awareness/awareness.cjs.js +6 -24
  159. package/lib/modules/collaborative-editing/awareness/awareness.cjs.js.map +1 -1
  160. package/lib/modules/collaborative-editing/awareness/y-indexeddb.cjs.js +7 -3
  161. package/lib/modules/collaborative-editing/awareness/y-indexeddb.cjs.js.map +1 -1
  162. package/lib/modules/collaborative-editing/collaborative-editing.cjs.js +19 -31
  163. package/lib/modules/collaborative-editing/collaborative-editing.cjs.js.map +1 -1
  164. package/lib/modules/collaborative-editing/module.cjs.js.map +1 -1
  165. package/lib/modules/collaborative-editing/provider/providerRegistry.cjs.js.map +1 -1
  166. package/lib/modules/collaborative-editing/provider/webrtc.cjs.js +10 -23
  167. package/lib/modules/collaborative-editing/provider/webrtc.cjs.js.map +1 -1
  168. package/lib/modules/collaborative-editing/provider/websocket.cjs.js +10 -25
  169. package/lib/modules/collaborative-editing/provider/websocket.cjs.js.map +1 -1
  170. package/lib/modules/counter.cjs.js.map +1 -1
  171. package/lib/modules/custom-clipboard.cjs.js.map +1 -1
  172. package/lib/modules/custom-image/actions/action.cjs.js.map +1 -1
  173. package/lib/modules/custom-image/actions/custom-resize-action.cjs.js.map +1 -1
  174. package/lib/modules/custom-image/actions/delete-action.cjs.js.map +1 -1
  175. package/lib/modules/custom-image/actions/image-toolbar-buttons.cjs.js.map +1 -1
  176. package/lib/modules/custom-image/actions/toolbar-action.cjs.js.map +1 -1
  177. package/lib/modules/custom-image/actions/toolbar.cjs.js.map +1 -1
  178. package/lib/modules/custom-image/blot-formatter.cjs.js +2 -2
  179. package/lib/modules/custom-image/blot-formatter.cjs.js.map +1 -1
  180. package/lib/modules/custom-image/image.cjs.js.map +1 -1
  181. package/lib/modules/custom-image/options.cjs.js.map +1 -1
  182. package/lib/modules/custom-image/specs/blot-spec.cjs.js.map +1 -1
  183. package/lib/modules/custom-image/specs/custom-image-spec.cjs.js.map +1 -1
  184. package/lib/modules/custom-image/specs/image-spec.cjs.js.map +1 -1
  185. package/lib/modules/custom-uploader.cjs.js.map +1 -1
  186. package/lib/modules/divider.cjs.js.map +1 -1
  187. package/lib/modules/emoji.cjs.js +2 -2
  188. package/lib/modules/emoji.cjs.js.map +1 -1
  189. package/lib/modules/file/formats/file.cjs.js.map +1 -1
  190. package/lib/modules/file/modules/file-bar.cjs.js.map +1 -1
  191. package/lib/modules/file/modules/file-module.cjs.js.map +1 -1
  192. package/lib/modules/flow-chart/config-utils.cjs.js +102 -0
  193. package/lib/modules/flow-chart/config-utils.cjs.js.map +1 -0
  194. package/lib/modules/flow-chart/formats/flow-chart-blot.cjs.js +369 -0
  195. package/lib/modules/flow-chart/formats/flow-chart-blot.cjs.js.map +1 -0
  196. package/lib/modules/flow-chart/i18n/en-us.cjs.js +30 -0
  197. package/lib/modules/flow-chart/i18n/en-us.cjs.js.map +1 -0
  198. package/lib/modules/flow-chart/i18n/index.cjs.js +12 -0
  199. package/lib/modules/flow-chart/i18n/index.cjs.js.map +1 -0
  200. package/lib/modules/flow-chart/i18n/zh-cn.cjs.js +30 -0
  201. package/lib/modules/flow-chart/i18n/zh-cn.cjs.js.map +1 -0
  202. package/lib/modules/flow-chart/icons.cjs.js +27 -0
  203. package/lib/modules/flow-chart/icons.cjs.js.map +1 -0
  204. package/lib/modules/flow-chart/index.cjs.js +45 -0
  205. package/lib/modules/flow-chart/index.cjs.js.map +1 -0
  206. package/lib/modules/flow-chart/modules/context-menu.cjs.js +184 -0
  207. package/lib/modules/flow-chart/modules/context-menu.cjs.js.map +1 -0
  208. package/lib/modules/flow-chart/modules/control-panel.cjs.js +286 -0
  209. package/lib/modules/flow-chart/modules/control-panel.cjs.js.map +1 -0
  210. package/lib/modules/flow-chart/modules/custom-resize-action.cjs.js +150 -0
  211. package/lib/modules/flow-chart/modules/custom-resize-action.cjs.js.map +1 -0
  212. package/lib/modules/i18n.cjs.js.map +1 -1
  213. package/lib/modules/index.cjs.js +9 -5
  214. package/lib/modules/index.cjs.js.map +1 -1
  215. package/lib/modules/link/formats/link.cjs.js.map +1 -1
  216. package/lib/modules/link/modules/tooltip.cjs.js.map +1 -1
  217. package/lib/modules/mathlive/formats.cjs.js.map +1 -1
  218. package/lib/modules/mathlive/module.cjs.js.map +1 -1
  219. package/lib/modules/mathlive/tooltip.cjs.js.map +1 -1
  220. package/lib/modules/mention/constants.cjs.js.map +1 -1
  221. package/lib/modules/mention/mention-link.cjs.js.map +1 -1
  222. package/lib/modules/mention/mention.cjs.js.map +1 -1
  223. package/lib/modules/mind-map/config-utils.cjs.js +108 -0
  224. package/lib/modules/mind-map/config-utils.cjs.js.map +1 -0
  225. package/lib/modules/mind-map/formats/mind-map-blot.cjs.js +356 -0
  226. package/lib/modules/mind-map/formats/mind-map-blot.cjs.js.map +1 -0
  227. package/lib/modules/mind-map/i18n/en-us.cjs.js +29 -0
  228. package/lib/modules/mind-map/i18n/en-us.cjs.js.map +1 -0
  229. package/lib/modules/mind-map/i18n/index.cjs.js +12 -0
  230. package/lib/modules/mind-map/i18n/index.cjs.js.map +1 -0
  231. package/lib/modules/mind-map/i18n/zh-cn.cjs.js +29 -0
  232. package/lib/modules/mind-map/i18n/zh-cn.cjs.js.map +1 -0
  233. package/lib/modules/mind-map/icons.cjs.js +45 -0
  234. package/lib/modules/mind-map/icons.cjs.js.map +1 -0
  235. package/lib/modules/mind-map/index.cjs.js +56 -0
  236. package/lib/modules/mind-map/index.cjs.js.map +1 -0
  237. package/lib/modules/mind-map/modules/context-menu.cjs.js +128 -0
  238. package/lib/modules/mind-map/modules/context-menu.cjs.js.map +1 -0
  239. package/lib/modules/mind-map/modules/control-panel.cjs.js +425 -0
  240. package/lib/modules/mind-map/modules/control-panel.cjs.js.map +1 -0
  241. package/lib/modules/mind-map/modules/custom-resize-action.cjs.js +161 -0
  242. package/lib/modules/mind-map/modules/custom-resize-action.cjs.js.map +1 -0
  243. package/lib/modules/shortcut-key/index.cjs.js +16 -0
  244. package/lib/modules/shortcut-key/index.cjs.js.map +1 -1
  245. package/lib/modules/syntax.cjs.js.map +1 -1
  246. package/lib/modules/table-up/index.cjs.js.map +1 -1
  247. package/lib/modules/toolbar/better-picker.cjs.js.map +1 -1
  248. package/lib/modules/toolbar/better-toolbar.cjs.js.map +1 -1
  249. package/lib/modules/toolbar/toolbar-tip.cjs.js.map +1 -1
  250. package/lib/themes/snow.cjs.js.map +1 -1
  251. package/lib/tools/format-painter.cjs.js.map +1 -1
  252. package/lib/tools/fullscreen.cjs.js.map +1 -1
  253. package/lib/tools/screenshot.cjs.js.map +1 -1
  254. package/lib/ui/icons.cjs.js +3 -1
  255. package/lib/ui/icons.cjs.js.map +1 -1
  256. package/lib/ui/icons.config.cjs.js +4 -0
  257. package/lib/ui/icons.config.cjs.js.map +1 -1
  258. package/lib/utils/debounce.cjs.js.map +1 -1
  259. package/lib/utils/image.cjs.js.map +1 -1
  260. package/lib/utils/is.cjs.js.map +1 -1
  261. package/lib/utils/merge.cjs.js +27 -0
  262. package/lib/utils/merge.cjs.js.map +1 -0
  263. package/lib/utils/method.cjs.js.map +1 -1
  264. package/lib/utils/scroll-lock.cjs.js.map +1 -1
  265. package/mind-map.css +224 -0
  266. package/package.json +45 -67
  267. package/patches/quill@2.0.3.patch +33 -0
  268. package/scripts/apply-patches.cjs +248 -0
  269. package/style.css +4 -2
  270. package/types/attributors/font-size.d.ts +1 -1
  271. package/types/attributors/font-style.d.ts +1 -1
  272. package/types/attributors/index.d.ts +4 -4
  273. package/types/attributors/line-height.d.ts +1 -1
  274. package/types/attributors/text-indent.d.ts +1 -1
  275. package/types/config/base64-image.d.ts +2 -2
  276. package/types/config/editor.config.d.ts +55 -11
  277. package/types/config/editor.utils.d.ts +40 -40
  278. package/types/config/i18n/en-us.d.ts +125 -123
  279. package/types/config/i18n/zh-cn.d.ts +125 -123
  280. package/types/config/index.d.ts +7 -7
  281. package/types/config/types/editor-config.interface.d.ts +11 -12
  282. package/types/config/types/editor-modules.interface.d.ts +40 -37
  283. package/types/config/types/index.d.ts +3 -3
  284. package/types/config/types/type.d.ts +2 -2
  285. package/types/core/fluent-editor.d.ts +10 -11
  286. package/types/fluent-editor.d.ts +1 -2
  287. package/types/formats/emoji.d.ts +7 -8
  288. package/types/formats/index.d.ts +4 -4
  289. package/types/formats/soft-break.d.ts +11 -12
  290. package/types/formats/strike.d.ts +7 -8
  291. package/types/formats/video.d.ts +12 -13
  292. package/types/index.d.ts +7 -8
  293. package/types/modules/ai/constants.d.ts +30 -30
  294. package/types/modules/ai/icons.d.ts +21 -21
  295. package/types/modules/ai/index.d.ts +93 -94
  296. package/types/modules/ai/types.d.ts +16 -16
  297. package/types/modules/collaborative-editing/awareness/awareness.d.ts +25 -26
  298. package/types/modules/collaborative-editing/awareness/index.d.ts +2 -2
  299. package/types/modules/collaborative-editing/awareness/y-indexeddb.d.ts +3 -3
  300. package/types/modules/collaborative-editing/collaborative-editing.d.ts +22 -22
  301. package/types/modules/collaborative-editing/index.d.ts +2 -2
  302. package/types/modules/collaborative-editing/module.d.ts +10 -11
  303. package/types/modules/collaborative-editing/provider/index.d.ts +3 -3
  304. package/types/modules/collaborative-editing/provider/providerRegistry.d.ts +25 -25
  305. package/types/modules/collaborative-editing/provider/webrtc.d.ts +35 -35
  306. package/types/modules/collaborative-editing/provider/websocket.d.ts +39 -39
  307. package/types/modules/collaborative-editing/types.d.ts +51 -35
  308. package/types/modules/counter.d.ts +21 -22
  309. package/types/modules/custom-clipboard.d.ts +23 -24
  310. package/types/modules/custom-image/actions/action.d.ts +7 -8
  311. package/types/modules/custom-image/actions/custom-resize-action.d.ts +22 -23
  312. package/types/modules/custom-image/actions/delete-action.d.ts +5 -6
  313. package/types/modules/custom-image/actions/image-toolbar-buttons.d.ts +15 -16
  314. package/types/modules/custom-image/actions/index.d.ts +6 -6
  315. package/types/modules/custom-image/actions/toolbar-action.d.ts +7 -8
  316. package/types/modules/custom-image/actions/toolbar.d.ts +16 -17
  317. package/types/modules/custom-image/blot-formatter.d.ts +19 -20
  318. package/types/modules/custom-image/image.d.ts +26 -27
  319. package/types/modules/custom-image/index.d.ts +4 -4
  320. package/types/modules/custom-image/options.d.ts +45 -46
  321. package/types/modules/custom-image/specs/blot-spec.d.ts +10 -11
  322. package/types/modules/custom-image/specs/custom-image-spec.d.ts +15 -16
  323. package/types/modules/custom-image/specs/image-spec.d.ts +7 -8
  324. package/types/modules/custom-image/specs/index.d.ts +3 -3
  325. package/types/modules/custom-uploader.d.ts +37 -38
  326. package/types/modules/divider.d.ts +7 -8
  327. package/types/modules/emoji.d.ts +35 -36
  328. package/types/modules/file/formats/file.d.ts +17 -18
  329. package/types/modules/file/index.d.ts +3 -3
  330. package/types/modules/file/modules/file-bar.d.ts +14 -14
  331. package/types/modules/file/modules/file-module.d.ts +7 -8
  332. package/types/modules/flow-chart/config-utils.d.ts +10 -0
  333. package/types/modules/flow-chart/formats/flow-chart-blot.d.ts +43 -0
  334. package/types/modules/flow-chart/i18n/en-us.d.ts +26 -0
  335. package/types/modules/flow-chart/i18n/index.d.ts +1 -0
  336. package/types/modules/flow-chart/i18n/zh-cn.d.ts +26 -0
  337. package/types/modules/flow-chart/icons.d.ts +12 -0
  338. package/types/modules/flow-chart/index.d.ts +10 -0
  339. package/types/modules/flow-chart/modules/context-menu.d.ts +3 -0
  340. package/types/modules/flow-chart/modules/control-panel.d.ts +3 -0
  341. package/types/modules/flow-chart/modules/custom-resize-action.d.ts +22 -0
  342. package/types/modules/flow-chart/options.d.ts +29 -0
  343. package/types/modules/i18n.d.ts +13 -14
  344. package/types/modules/index.d.ts +18 -16
  345. package/types/modules/link/formats/link.d.ts +14 -15
  346. package/types/modules/link/index.d.ts +2 -2
  347. package/types/modules/link/modules/tooltip.d.ts +25 -26
  348. package/types/modules/mathlive/formats.d.ts +20 -21
  349. package/types/modules/mathlive/index.d.ts +3 -3
  350. package/types/modules/mathlive/module.d.ts +7 -8
  351. package/types/modules/mathlive/tooltip.d.ts +14 -15
  352. package/types/modules/mention/constants.d.ts +3 -3
  353. package/types/modules/mention/index.d.ts +2 -2
  354. package/types/modules/mention/mention-link.d.ts +14 -15
  355. package/types/modules/mention/mention.d.ts +52 -53
  356. package/types/modules/mind-map/config-utils.d.ts +12 -0
  357. package/types/modules/mind-map/formats/mind-map-blot.d.ts +44 -0
  358. package/types/modules/mind-map/i18n/en-us.d.ts +25 -0
  359. package/types/modules/mind-map/i18n/index.d.ts +1 -0
  360. package/types/modules/mind-map/i18n/zh-cn.d.ts +25 -0
  361. package/types/modules/mind-map/icons.d.ts +21 -0
  362. package/types/modules/mind-map/index.d.ts +10 -0
  363. package/types/modules/mind-map/modules/context-menu.d.ts +3 -0
  364. package/types/modules/mind-map/modules/control-panel.d.ts +3 -0
  365. package/types/modules/mind-map/modules/custom-resize-action.d.ts +23 -0
  366. package/types/modules/mind-map/options.d.ts +27 -0
  367. package/types/modules/shortcut-key/index.d.ts +67 -68
  368. package/types/modules/syntax.d.ts +12 -13
  369. package/types/modules/table-up/index.d.ts +32 -33
  370. package/types/modules/toolbar/better-picker.d.ts +13 -14
  371. package/types/modules/toolbar/better-toolbar.d.ts +6 -7
  372. package/types/modules/toolbar/index.d.ts +3 -3
  373. package/types/modules/toolbar/toolbar-tip.d.ts +7 -8
  374. package/types/themes/snow.d.ts +9 -10
  375. package/types/tools/format-painter.d.ts +12 -13
  376. package/types/tools/fullscreen.d.ts +4 -5
  377. package/types/tools/screenshot.d.ts +17 -18
  378. package/types/ui/icons.config.d.ts +40 -38
  379. package/types/ui/icons.d.ts +6 -6
  380. package/types/utils/debounce.d.ts +6 -6
  381. package/types/utils/image.d.ts +1 -1
  382. package/types/utils/is.d.ts +6 -6
  383. package/types/utils/merge.d.ts +7 -0
  384. package/types/utils/method.d.ts +6 -6
  385. package/types/utils/scroll-lock.d.ts +6 -6
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const backIcon = `<svg t="1761403103969" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4781" width="20" height="20"><path d="M995.648 459.296C684.448 281.568 406.08 318.656 171.232 567.904L32 416v384h352l-160.736-175.328c211.168-227.072 452.192-259.776 734.304-98.688a38.4 38.4 0 0 0 38.08-66.688z" p-id="4782" fill="#2c2c2c" data-spm-anchor-id="a313x.collections_detail.0.i0.26dd3a81klL5t6" class="selected"></path></svg>`;
4
+ const forwardIcon = `<svg t="1761403135994" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5138" width="20" height="20"><path d="M860.992 558.912C627.904 317.536 352.384 283.648 44.8 459.296a38.4 38.4 0 1 0 38.08 66.688c278.432-159.008 516.896-129.408 726.08 89.696L640 800h352V416l-131.008 142.912z" p-id="5139"></path></svg>`;
5
+ const zoomOutIcon = `<svg t="1761403245796" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="8340" width="20" height="20"><path d="M170.666667 469.333333h682.666666v85.333334H170.666667z" fill="#2c2c2c" p-id="8341" data-spm-anchor-id="a313x.collections_detail.0.i0.466d3a81c91yTh" class="selected"></path></svg>`;
6
+ const zoomInIcon = `<svg t="1761403317929" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="8601" width="20" height="20"><path d="M469.333333 469.333333V170.666667h85.333334v298.666666h298.666666v85.333334h-298.666666v298.666666h-85.333334v-298.666666H170.666667v-85.333334h298.666666z" fill="#2c2c2c" p-id="8602" data-spm-anchor-id="a313x.collections_detail.0.i3.466d3a81c91yTh" class="selected"></path></svg>`;
7
+ const fitIcon = `<svg t="1761403396579" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5306" width="20" height="20"><path d="M921.6 64c20.48 0 38.4 17.92 38.4 38.4v819.2c0 20.48-17.92 38.4-38.4 38.4H102.4c-20.48 0-38.4-17.92-38.4-38.4V102.4c0-20.48 17.92-38.4 38.4-38.4h819.2z m-38.4 76.8H140.8v742.4h742.4V140.8z m-640 478.72c17.92 0 33.28 15.36 33.28 33.28v94.72H371.2c17.92 0 33.28 15.36 33.28 33.28s-15.36 33.28-33.28 33.28h-128a33.92 33.92 0 0 1-33.28-33.28v-128c0-17.92 15.36-33.28 33.28-33.28z m537.6 0c17.92 0 33.28 15.36 33.28 33.28v128c0 17.92-15.36 33.28-33.28 33.28h-128a33.92 33.92 0 0 1-33.28-33.28c0-17.92 15.36-33.28 33.28-33.28h94.72V652.8c0-17.92 15.36-33.28 33.28-33.28z m0-409.6c17.92 0 33.28 15.36 33.28 33.28v128c0 17.92-15.36 33.28-33.28 33.28a33.92 33.92 0 0 1-33.28-33.28V276.48H652.8a33.92 33.92 0 0 1-33.28-33.28c0-17.92 15.36-33.28 33.28-33.28h128z m-409.6 0c17.92 0 33.28 15.36 33.28 33.28s-15.36 33.28-33.28 33.28H276.48V371.2c0 17.92-15.36 33.28-33.28 33.28a33.92 33.92 0 0 1-33.28-33.28v-128c0-17.92 15.36-33.28 33.28-33.28h128z" fill="#2c2c2c" p-id="5307" data-spm-anchor-id="a313x.search_index.0.i0.4ac53a81alttUW" class="selected"></path></svg>`;
8
+ const insertChildNodeIcon = `<svg t="1761403532394" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6379" width="20" height="20"><path d="M874.666667 732.16h-81.92v-81.28a27.733333 27.733333 0 1 0-55.466667 0v81.28h-81.493333a27.733333 27.733333 0 1 0 0 55.466667h81.28v81.28a27.733333 27.733333 0 1 0 55.466666 0v-81.28H874.666667a27.733333 27.733333 0 0 0 0-55.466667zM631.466667 170.666667a59.733333 59.733333 0 0 0-59.733334-59.733334H178.133333A59.733333 59.733333 0 0 0 118.4 170.666667v164.906666a59.733333 59.733333 0 0 0 59.733333 59.733334h169.173334v352.426666a51.2 51.2 0 0 0 51.2 51.2h125.653333a27.733333 27.733333 0 1 0 0-55.466666h-99.413333a21.333333 21.333333 0 0 1-21.333334-21.333334V394.24h169.173334a59.733333 59.733333 0 0 0 59.733333-59.733333zM576 334.506667a4.266667 4.266667 0 0 1-4.266667 4.266666H178.133333a4.266667 4.266667 0 0 1-4.266666-4.266666V170.666667a4.266667 4.266667 0 0 1 4.266666-4.266667h393.813334A4.266667 4.266667 0 0 1 576 170.666667z" fill="#2c2c2c" p-id="6380"></path></svg>`;
9
+ const insertNodeIcon = `<svg t="1761403837229" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7441" width="20" height="20"><path d="M803.84 131.626667H410.24A59.733333 59.733333 0 0 0 350.506667 192v45.226667H199.68a51.626667 51.626667 0 0 0-51.626667 51.626666v465.92a51.626667 51.626667 0 0 0 51.626667 51.626667h187.52v-55.466667h-162.133333a21.333333 21.333333 0 0 1-21.333334-21.333333V313.386667a21.333333 21.333333 0 0 1 21.333334-21.333334h125.653333v64a59.733333 59.733333 0 0 0 59.733333 59.733334h393.386667a59.733333 59.733333 0 0 0 59.733333-59.733334V192a59.733333 59.733333 0 0 0-59.733333-60.373333z m4.266667 224.64a4.266667 4.266667 0 0 1-4.266667 4.266666H410.24a4.266667 4.266667 0 0 1-4.266667-4.266666V192a4.266667 4.266667 0 0 1 4.266667-4.266667h393.6a4.266667 4.266667 0 0 1 4.266667 4.266667zM716.16 749.44h-81.28v-81.493333a27.733333 27.733333 0 0 0-55.466667 0v81.28h-81.493333a27.733333 27.733333 0 1 0 0 55.466666h81.28v81.28a27.733333 27.733333 0 1 0 55.466667 0v-81.066666h81.28a27.733333 27.733333 0 0 0 0-55.466667z" p-id="7442" fill="#2c2c2c" data-spm-anchor-id="a313x.search_index.0.i5.4ac53a81alttUW" class="selected"></path></svg>`;
10
+ const insertParentNodeIcon = `<svg t="1761404224763" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="8539" data-spm-anchor-id="a313x.search_index.0.i10.4ac53a81alttUW" width="20" height="20"><path d="M512 170.666667c34.133333 0 56.888889 22.755556 56.888889 56.888889v85.333333c0 34.133333-22.755556 56.888889-56.888889 56.888889H227.555556v284.444444h113.777777V517.688889C341.333333 483.555556 364.088889 455.111111 398.222222 455.111111h512c34.133333 0 56.888889 28.444444 56.888889 62.577778v267.377778c0 34.133333-22.755556 62.577778-56.888889 62.577777H398.222222c-34.133333 0-56.888889-28.444444-56.888889-62.577777v-79.644445H199.111111c-11.377778 0-22.755556-11.377778-28.444444-22.755555V369.777778H113.777778c-34.133333 0-56.888889-22.755556-56.888889-56.888889V227.555556c0-34.133333 22.755556-56.888889 56.888889-56.888889h398.222222z m398.222222 341.333333H398.222222v284.444444h512V512z" p-id="8540" data-spm-anchor-id="a313x.search_index.0.i9.4ac53a81alttUW" class="selected" fill="#2c2c2c"></path></svg>`;
11
+ const removeNodeIcon = `<svg t="1761404295085" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="13251" width="20" height="20"><path d="M512 64.887129a447.234535 447.234535 0 0 1 174.00903 859.085307A447.228451 447.228451 0 0 1 337.990971 99.997149 444.172673 444.172673 0 0 1 512 64.887129m0-64.887129c-282.765941 0-512 229.223921-512 512s229.223921 512 512 512 512-229.223921 512-512-229.234059-512-512-512z" fill="#2c2c2c" p-id="13252"></path><path d="M272.876737 320.32545l45.882297-45.882298 430.61836 430.617347-45.882297 45.883311z" fill="#2c2c2c" p-id="13253"></path><path d="M273.583398 704.854685l430.617347-430.617346 45.883311 45.881283-430.618361 430.61836z" fill="#2c2c2c" p-id="13254"></path></svg>`;
12
+ const insertIconIcon = `<svg t="1761404596527" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="18201" data-spm-anchor-id="a313x.search_index.0.i24.4ac53a81alttUW" width="20" height="20"><path d="M945.424922 509.059018c0-240.652965-195.076954-435.727873-435.726849-435.727873-240.651942 0-435.727873 195.074907-435.727873 435.727873 0 240.662175 195.075931 435.737082 435.727873 435.737082 98.792027 0 189.248202-33.611515 262.339894-88.998987 3.003404-3.40761 4.975315-7.753591 4.975315-12.637832 0-10.666944-8.651031-19.315928-19.315928-19.315928-5.53404 0-10.464329 2.194992-13.981433 5.91471l-0.246617 0c-65.407686 48.12916-145.915277 76.945463-233.346559 76.945463-217.908962 0-394.587893-176.701444-394.587893-394.598126 0-217.931474 176.678932-394.588917 394.587893-394.588917 217.930451 0 394.58687 176.657442 394.58687 394.588917 0 66.571185-15.617699 129.220037-44.74611 184.229908l0 0.323365c-0.536212 1.838881-1.122567 3.631714-1.122567 5.602601 0 10.666944 8.650007 19.315928 19.314904 19.315928 8.312316 0 15.259542-5.335519 17.971303-12.68388l0 0.1361C927.164023 649.080052 945.424922 581.210291 945.424922 509.059018zM395.534963 391.95902c0-24.334221-19.71911-44.052309-44.053332-44.052309-24.334221 0-44.052309 19.718087-44.052309 44.052309 0 24.334221 19.718087 44.029796 44.052309 44.029796C375.815853 435.989839 395.534963 416.294264 395.534963 391.95902zM669.125085 347.974249c-24.314779 0-44.030819 19.696598-44.030819 44.029796s19.717064 44.052309 44.030819 44.052309c24.332175 0 44.052309-19.71911 44.052309-44.052309C713.17637 367.669824 693.456237 347.974249 669.125085 347.974249zM680.214654 642.001843c-2.62171 0-5.063319 0.647753-7.370875 1.477654l-0.201591 0c-49.497321 22.382776-104.283088 34.728966-162.137751 34.728966-58.752102 0-114.322745-12.097526-164.423817-35.111682l-0.448208 0c-1.74576-0.468674-3.473101-1.095961-5.377474-1.095961-11.965519 0-21.621437 9.655917-21.621437 21.597901 0 7.912204 5.685489 15.400758 12.027941 19.173688-0.169869-0.075725-0.297782-0.132006 0.048095 0.028653 54.629201 24.670889 116.382661 39.593763 180.219571 39.593763 64.24214 0 124.875079-14.564717 179.772386-39.526225 6.721075-3.697205 11.293207-10.891048 11.293207-19.114336C701.994704 651.726322 692.224176 642.001843 680.214654 642.001843z" fill="#2c2c2c" p-id="18202" data-spm-anchor-id="a313x.search_index.0.i25.4ac53a81alttUW" class="selected"></path></svg>`;
13
+ const setLayoutIcon = `<svg t="1761451636996" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="8062" width="20" height="20"><path d="M130.093 351.89h766c17.673 0 32-14.327 32-32v-128c0-17.673-14.327-32-32-32h-766c-17.673 0-32 14.327-32 32v128c0 17.673 14.327 32 32 32z m32-128h702v64h-702v-64zM128.025 527.448H480.1v33.598c0 17.673 14.327 32 32 32 17.673 0 32-14.327 32-32v-33.598h346.399c17.673 0 32-14.327 32-32s-14.327-32-32-32H544.1v-30.24c0-17.673-14.327-32-32-32-17.673 0-32 14.327-32 32v30.24H128.025c-17.673 0-32 14.327-32 32s14.327 32 32 32zM287.55 639.802h-158c-17.673 0-32 14.327-32 32v160c0 17.673 14.327 32 32 32h158c17.673 0 32-14.327 32-32v-160c0-17.673-14.327-32-32-32z m-32 160h-94v-96h94v96zM592.093 639.802h-158c-17.673 0-32 14.327-32 32v160c0 17.673 14.327 32 32 32h158c17.673 0 32-14.327 32-32v-160c0-17.673-14.327-32-32-32z m-32 160h-94v-96h94v96zM896.637 639.802h-158c-17.673 0-32 14.327-32 32v160c0 17.673 14.327 32 32 32h158c17.673 0 32-14.327 32-32v-160c0-17.673-14.327-32-32-32z m-32 160h-94v-96h94v96z" fill="#2c2c2c" p-id="8063"></path></svg>`;
14
+ const screenTypeIcon = `<svg t="1761452295156" class="icon" viewBox="0 0 1026 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1999" width="20" height="20"><path d="M163.2 94.08a48 48 0 0 0-67.84 0 48 48 0 0 0 0 67.84l67.84-67.84z m145.28 279.04a48 48 0 0 0 67.84 0 48 48 0 0 0 0-67.84L308.48 373.12z m-213.12-211.2l213.12 211.2 67.84-67.84-213.12-211.2-67.84 67.84zM95.36 859.52a48 48 0 0 0 67.84 68.48l-67.84-68.48z m280.96-142.72a48 48 0 0 0-67.84-68.48l67.84 68.48z m-213.12 211.2l213.12-211.2-67.84-68.48-213.12 211.2 67.84 68.48zM863.36 928a48 48 0 0 0 67.84-67.84l-67.84 67.84z m-143.36-279.04a47.36 47.36 0 0 0-67.84 0 48 48 0 0 0 0 67.84l67.84-67.84z m211.2 211.2l-211.2-211.2-67.84 67.84 211.2 211.2 67.84-67.84zM929.28 161.92a48 48 0 0 0 0-67.84 49.28 49.28 0 0 0-68.48 0l68.48 67.84z m-279.68 143.36a48 48 0 0 0 0 67.84 49.28 49.28 0 0 0 68.48 0l-68.48-67.84z m211.2-211.2l-211.2 211.2 68.48 67.84 211.2-211.2-68.48-67.84z" fill="#2c2c2c" p-id="2000" data-spm-anchor-id="a313x.collections_detail.0.i1.6af43a81bnfxmJ" class="selected"></path><path d="M704 80a48 48 0 0 0 0 96v-96zM896 128h48a48.64 48.64 0 0 0-48-48V128z m-48 192a48 48 0 0 0 96 0zM704 176h192v-96h-192v96zM849.28 128v192h96V128zM945.28 704a48 48 0 0 0-96 0zM896 896v48a48.64 48.64 0 0 0 48-48z m-192-48a48 48 0 0 0 0 96v-96zM849.28 704v192h96v-192z m46.72 144h-192v96h192v-96zM320 944a48 48 0 0 0 0-96v96zM128 896h-46.72a48 48 0 0 0 48 48V896z m48-192a48 48 0 0 0-96 0zM320 848H128v96h192v-96zM177.28 896v-192h-96v192zM81.28 320a48 48 0 0 0 96 0zM128 128v-48a48 48 0 0 0-46.72 48z m192 48a48 48 0 0 0 0-96v96zM177.28 320V128h-96v192zM128 176h192v-96H128v96z" fill="#2c2c2c" p-id="2001" data-spm-anchor-id="a313x.collections_detail.0.i0.6af43a81bnfxmJ" class="selected"></path></svg>`;
15
+ const screenReduceIcon = `<svg t="1761452375205" class="icon" viewBox="0 0 1026 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2267" data-spm-anchor-id="a313x.collections_detail.0.i9.6af43a81bnfxmJ" width="20" height="20"><path d="M308.48 373.12a48 48 0 0 0 67.84 0 48 48 0 0 0 0-67.84L308.48 373.12zM163.2 94.08a48 48 0 0 0-67.84 0 48 48 0 0 0 0 67.84l67.84-67.84z m213.12 211.2l-213.12-211.2-67.84 67.84 213.12 211.2 67.84-67.84zM720 650.88a48 48 0 1 0-67.84 67.84l67.84-67.84z m143.36 279.04a48 48 0 0 0 67.84-67.84l-67.84 67.84z m-211.2-211.2l211.2 211.2 67.84-67.84-211.2-211.2-67.84 67.84zM652.16 305.28a48 48 0 1 0 67.84 67.84l-67.84-67.84z m279.04-143.36a48 48 0 0 0-67.84-67.84l67.84 67.84z m-211.2 211.2l211.2-211.2-67.84-67.84-211.2 211.2 67.84 67.84z" fill="#2c2c2c" p-id="2268" data-spm-anchor-id="a313x.collections_detail.0.i4.6af43a81bnfxmJ" class="selected"></path><path d="M875.52 387.2a48 48 0 0 0 0-96v96z m-192-48h-48a48.64 48.64 0 0 0 48 48V339.2z m48-192a48 48 0 1 0-96 0z m144 144h-192v96h192v-96z m-144 48v-192h-96v192zM640 874.88a48 48 0 0 0 96 0z m48-192v-48a47.36 47.36 0 0 0-48 48z m192 48a48 48 0 0 0 0-96v96z m-144 144v-192H640v192z m-48-144h192v-96h-192v96zM376.32 718.72a48 48 0 0 0 0-67.84 48 48 0 0 0-67.84 0l67.84 67.84z m-280.96 143.36a48 48 0 0 0 0 67.84 48 48 0 0 0 67.84 0l-67.84-67.84z m213.12-211.2l-213.12 211.2 67.84 67.84 213.12-211.2-67.84-67.84zM150.4 634.88a48 48 0 1 0 0 96v-96z" fill="#2c2c2c" p-id="2269" data-spm-anchor-id="a313x.collections_detail.0.i5.6af43a81bnfxmJ" class="selected"></path><path d="M342.4 682.88h48a47.36 47.36 0 0 0-48-48v48zM294.4 874.88a48 48 0 0 0 96 0zM150.4 730.88h192v-96h-192v96z" fill="#2c2c2c" p-id="2270" data-spm-anchor-id="a313x.collections_detail.0.i8.6af43a81bnfxmJ" class="selected"></path><path d="M294.4 682.88v192h96v-192H294.4zM390.4 147.2a48 48 0 0 0-96 0z m-48 192v48a48 48 0 0 0 48-48z m-192-48a48 48 0 0 0 0 96v-96zM294.4 147.2v192h96v-192z m48 144h-192v96h192v-96z" fill="#2c2c2c" p-id="2271" data-spm-anchor-id="a313x.collections_detail.0.i6.6af43a81bnfxmJ" class="selected"></path></svg>`;
16
+ const catalogOrganizationIcon = `<svg version="1.0" xmlns="http://www.w3.org/2000/svg" width="255.000000" height="151.000000" viewBox="0 0 255.000000 151.000000" preserveAspectRatio="xMidYMid meet"><rect x="0" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="0" width="18" height="11" fill="rgb(254,254,254)" /><rect x="101" y="0" width="18" height="11" fill="rgb(254,254,254)" /><rect x="118" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="135" y="0" width="18" height="11" fill="rgb(254,254,255)" /><rect x="152" y="0" width="18" height="11" fill="rgb(254,254,254)" /><rect x="169" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="186" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="9" width="18" height="11" fill="rgb(224,234,242)" /><rect x="101" y="9" width="18" height="11" fill="rgb(177,209,234)" /><rect x="118" y="9" width="18" height="11" fill="rgb(177,209,234)" /><rect x="135" y="9" width="18" height="11" fill="rgb(177,209,234)" /><rect x="152" y="9" width="18" height="11" fill="rgb(220,231,241)" /><rect x="169" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="186" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="19" width="18" height="11" fill="rgb(200,224,242)" /><rect x="101" y="19" width="18" height="11" fill="rgb(129,199,255)" /><rect x="118" y="19" width="18" height="11" fill="rgb(129,200,255)" /><rect x="135" y="19" width="18" height="11" fill="rgb(129,199,255)" /><rect x="152" y="19" width="18" height="11" fill="rgb(193,220,242)" /><rect x="169" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="186" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="29" width="18" height="11" fill="rgb(200,224,242)" /><rect x="101" y="29" width="18" height="11" fill="rgb(129,200,255)" /><rect x="118" y="29" width="18" height="11" fill="rgb(129,200,255)" /><rect x="135" y="29" width="18" height="11" fill="rgb(129,200,255)" /><rect x="152" y="29" width="18" height="11" fill="rgb(193,221,242)" /><rect x="169" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="186" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="39" width="18" height="11" fill="rgb(219,231,241)" /><rect x="101" y="39" width="18" height="11" fill="rgb(166,204,234)" /><rect x="118" y="39" width="18" height="11" fill="rgb(162,200,231)" /><rect x="135" y="39" width="18" height="11" fill="rgb(166,204,234)" /><rect x="152" y="39" width="18" height="11" fill="rgb(214,228,240)" /><rect x="169" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="186" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="49" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="49" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="49" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="49" width="18" height="11" fill="rgb(241,241,241)" /><rect x="67" y="49" width="18" height="11" fill="rgb(234,234,234)" /><rect x="84" y="49" width="18" height="11" fill="rgb(234,234,234)" /><rect x="101" y="49" width="18" height="11" fill="rgb(234,234,234)" /><rect x="118" y="49" width="18" height="11" fill="rgb(225,225,225)" /><rect x="135" y="49" width="18" height="11" fill="rgb(234,234,234)" /><rect x="152" y="49" width="18" height="11" fill="rgb(234,234,234)" /><rect x="169" y="49" width="18" height="11" fill="rgb(234,234,234)" /><rect x="186" y="49" width="18" height="11" fill="rgb(240,240,240)" /><rect x="203" y="49" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="49" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="49" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="59" width="18" height="11" fill="rgb(254,254,254)" /><rect x="16" y="59" width="18" height="11" fill="rgb(250,250,250)" /><rect x="33" y="59" width="18" height="11" fill="rgb(244,244,244)" /><rect x="50" y="59" width="18" height="11" fill="rgb(233,233,233)" /><rect x="67" y="59" width="18" height="11" fill="rgb(249,249,249)" /><rect x="84" y="59" width="18" height="11" fill="rgb(254,254,254)" /><rect x="101" y="59" width="18" height="11" fill="rgb(245,245,245)" /><rect x="118" y="59" width="18" height="11" fill="rgb(244,244,244)" /><rect x="135" y="59" width="18" height="11" fill="rgb(244,244,244)" /><rect x="152" y="59" width="18" height="11" fill="rgb(253,253,253)" /><rect x="169" y="59" width="18" height="11" fill="rgb(254,254,254)" /><rect x="186" y="59" width="18" height="11" fill="rgb(242,242,242)" /><rect x="203" y="59" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="59" width="18" height="11" fill="rgb(254,254,254)" /><rect x="237" y="59" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="69" width="18" height="11" fill="rgb(254,254,254)" /><rect x="16" y="69" width="18" height="11" fill="rgb(234,234,234)" /><rect x="33" y="69" width="18" height="11" fill="rgb(234,234,234)" /><rect x="50" y="69" width="18" height="11" fill="rgb(234,234,234)" /><rect x="67" y="69" width="18" height="11" fill="rgb(231,231,231)" /><rect x="84" y="69" width="18" height="11" fill="rgb(244,244,244)" /><rect x="101" y="69" width="18" height="11" fill="rgb(229,229,229)" /><rect x="118" y="69" width="18" height="11" fill="rgb(234,234,234)" /><rect x="135" y="69" width="18" height="11" fill="rgb(234,234,234)" /><rect x="152" y="69" width="18" height="11" fill="rgb(240,240,240)" /><rect x="169" y="69" width="18" height="11" fill="rgb(235,235,235)" /><rect x="186" y="69" width="18" height="11" fill="rgb(232,232,232)" /><rect x="203" y="69" width="18" height="11" fill="rgb(234,234,234)" /><rect x="220" y="69" width="18" height="11" fill="rgb(235,235,235)" /><rect x="237" y="69" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="79" width="18" height="11" fill="rgb(242,242,242)" /><rect x="33" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="79" width="18" height="11" fill="rgb(242,242,242)" /><rect x="84" y="79" width="18" height="11" fill="rgb(242,242,242)" /><rect x="101" y="79" width="18" height="11" fill="rgb(248,248,248)" /><rect x="118" y="79" width="18" height="11" fill="rgb(254,254,254)" /><rect x="135" y="79" width="18" height="11" fill="rgb(254,254,254)" /><rect x="152" y="79" width="18" height="11" fill="rgb(242,242,242)" /><rect x="169" y="79" width="18" height="11" fill="rgb(242,242,242)" /><rect x="186" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="79" width="18" height="11" fill="rgb(242,242,242)" /><rect x="237" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="89" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="89" width="18" height="11" fill="rgb(240,240,240)" /><rect x="33" y="89" width="18" height="11" fill="rgb(234,234,234)" /><rect x="50" y="89" width="18" height="11" fill="rgb(234,234,234)" /><rect x="67" y="89" width="18" height="11" fill="rgb(238,238,238)" /><rect x="84" y="89" width="18" height="11" fill="rgb(251,251,251)" /><rect x="101" y="89" width="18" height="11" fill="rgb(233,233,233)" /><rect x="118" y="89" width="18" height="11" fill="rgb(227,227,227)" /><rect x="135" y="89" width="18" height="11" fill="rgb(234,234,234)" /><rect x="152" y="89" width="18" height="11" fill="rgb(247,247,247)" /><rect x="169" y="89" width="18" height="11" fill="rgb(237,237,237)" /><rect x="186" y="89" width="18" height="11" fill="rgb(234,234,234)" /><rect x="203" y="89" width="18" height="11" fill="rgb(234,234,234)" /><rect x="220" y="89" width="18" height="11" fill="rgb(237,237,237)" /><rect x="237" y="89" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="99" width="18" height="11" fill="rgb(242,242,242)" /><rect x="135" y="99" width="18" height="11" fill="rgb(235,235,235)" /><rect x="152" y="99" width="18" height="11" fill="rgb(234,234,234)" /><rect x="169" y="99" width="18" height="11" fill="rgb(241,241,241)" /><rect x="186" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="109" width="18" height="11" fill="rgb(234,234,234)" /><rect x="135" y="109" width="18" height="11" fill="rgb(225,225,225)" /><rect x="152" y="109" width="18" height="11" fill="rgb(234,234,234)" /><rect x="169" y="109" width="18" height="11" fill="rgb(236,236,236)" /><rect x="186" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="119" width="18" height="11" fill="rgb(242,242,242)" /><rect x="135" y="119" width="18" height="11" fill="rgb(231,231,231)" /><rect x="152" y="119" width="18" height="11" fill="rgb(224,224,224)" /><rect x="169" y="119" width="18" height="11" fill="rgb(238,238,238)" /><rect x="186" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="129" width="18" height="11" fill="rgb(241,241,241)" /><rect x="135" y="129" width="18" height="11" fill="rgb(230,230,230)" /><rect x="152" y="129" width="18" height="11" fill="rgb(244,244,244)" /><rect x="169" y="129" width="18" height="11" fill="rgb(238,238,238)" /><rect x="186" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="16" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="33" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="50" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="67" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="84" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="101" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="118" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="135" y="139" width="18" height="12" fill="rgb(244,244,244)" /><rect x="152" y="139" width="18" height="12" fill="rgb(236,236,236)" /><rect x="169" y="139" width="18" height="12" fill="rgb(247,247,247)" /><rect x="186" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="203" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="220" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="237" y="139" width="18" height="12" fill="rgb(255,255,255)" /><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#92928C" stroke="none"><path d="M1590 1330 c0 -7 3 -10 7 -7 3 4 3 10 0 14 -4 3 -7 0 -7 -7z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#929292" stroke="none"><path d="M977 1373 c-28 -7 -37 -46 -37 -163 l0 -109 10 -25 c5 -14 15 -26 22 -26 l12 0 -12 12 -12 12 0 137 0 138 8 5 c4 2 144 6 310 7 l301 2 -5 8 -5 8 -287 -1 c-158 0 -295 -2 -305 -5z"/><path d="M1590 1350 c0 -7 3 -10 7 -7 3 4 3 10 0 14 -4 3 -7 0 -7 -7z"/><path d="M1599 1325 c-4 -5 -8 -64 -8 -129 l-2 -120 -11 -13 -10 -13 11 0 c6 0 16 12 22 26 l10 27 -3 116 c-2 64 -6 112 -9 106z"/><path d="M990 1049 l0 -10 23 1 c12 1 75 2 140 1 l117 -1 0 -50 0 -50 -339 0 -340 0 -15 -16 -16 -15 0 -44 0 -44 -150 -3 -149 -3 -13 -13 -13 -13 0 -94 0 -94 13 -13 13 -13 254 0 254 0 13 13 13 13 0 94 0 94 -13 13 -13 13 -94 3 -95 4 0 49 0 49 695 0 695 0 0 -60 0 -60 -88 0 -88 0 -20 -14 -19 -14 0 -96 0 -95 13 -13 13 -13 247 -3 247 -3 20 15 20 14 0 97 0 97 -19 14 -20 14 -143 0 -143 0 0 54 0 55 -16 15 -15 16 -335 0 -334 0 0 50 0 50 129 0 130 0 6 10 6 9 -286 0 -285 0 0 -10z m-215 -354 l0 -100 -260 0 -260 0 -3 89 c-2 49 -1 95 2 103 l6 13 257 -2 258 -3 0 -100z m1520 -20 l0 -100 -260 0 -260 0 -3 89 c-2 49 -1 95 2 103 l6 13 257 -2 258 -3 0 -100z"/><path d="M1033 810 l-22 -9 -7 -36 c-3 -19 -4 -65 -2 -100 l4 -65 12 -12 13 -13 119 -3 120 -4 0 -188 0 -189 16 -15 15 -16 55 0 54 0 0 -10 c0 -5 9 -19 20 -30 l20 -20 145 0 145 0 20 20 20 20 0 45 0 45 -20 20 -20 20 -145 0 -145 0 -20 -20 -20 -20 0 -25 0 -25 -60 0 -60 0 0 100 0 100 55 0 55 0 0 -15 c0 -8 9 -24 20 -35 l20 -20 145 0 145 0 20 20 20 20 0 49 0 50 -22 15 -22 16 -143 0 -143 0 -20 -20 c-11 -11 -20 -29 -20 -40 l0 -20 -55 0 -55 0 0 85 0 85 120 0 120 0 21 21 21 21 -4 88 -3 89 -13 13 -13 13 -242 2 -242 2 -22 -9z m512 -115 l0 -100 -260 0 -260 0 -3 89 c-2 49 -1 95 2 103 l6 13 257 -2 258 -3 0 -100z m205 -300 l0 -65 -165 0 -165 0 0 65 0 65 165 0 165 0 0 -65z m10 -210 l0 -65 -165 0 -165 0 0 65 0 65 165 0 165 0 0 -65z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#BFBFBF" stroke="none"><path d="M564 928 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M1275 170 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#C5C5C5" stroke="none"><path d="M1975 930 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#D2D2D2" stroke="none"><path d="M254 788 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M765 790 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1024 788 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M1535 790 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1774 768 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M2285 770 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M255 600 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M764 598 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/><path d="M1025 600 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1534 598 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M1775 580 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M2284 578 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#8CB2D8" stroke="none"><path d="M964 1348 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#85B2DF" stroke="none"><path d="M965 1070 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#F2F2F2" stroke="none"><path d="M1404 468 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M1755 470 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1405 320 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1754 318 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M1414 258 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M1765 260 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1415 110 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1764 108 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#F8F8F8" stroke="none"><path d="M1424 448 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/><path d="M1735 450 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1425 340 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1734 338 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M1434 238 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M1745 240 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1435 130 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1744 128 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#7FCCFF" stroke="none"><path d="M1524 1348 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M1550 1330 c0 -7 3 -10 7 -7 3 4 3 10 0 14 -4 3 -7 0 -7 -7z"/><path d="M1003 1103 c4 -3 10 -3 14 0 3 4 0 7 -7 7 -7 0 -10 -3 -7 -7z"/><path d="M1543 1103 c4 -3 10 -3 14 0 3 4 0 7 -7 7 -7 0 -10 -3 -7 -7z"/><path d="M1525 1070 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#85CCFF" stroke="none"><path d="M990 1349 c0 -6 -4 -8 -9 -5 l-9 6 -5 -23 c-8 -33 -9 -220 -1 -240 3 -9 10 -14 15 -11 5 3 9 1 9 -5 l0 -10 271 -1 270 0 -7 12 -7 13 14 -12 c7 -7 17 -13 22 -13 l8 0 -7 12 -7 11 13 -8 12 -8 9 14 9 14 -1 105 c-1 122 -5 146 -26 154 l-16 6 -15 -12 -16 -13 8 13 7 12 -270 0 -271 -1 0 -10z m567 -26 c-4 -3 -7 0 -7 7 0 7 3 10 7 7 3 -4 3 -10 0 -14z m-540 -220 c-4 -3 -10 -3 -14 0 -3 4 0 7 7 7 7 0 10 -3 7 -7z m540 0 c-4 -3 -10 -3 -14 0 -3 4 0 7 7 7 7 0 10 -3 7 -7z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#FFFFFF" stroke="none"><path d="M0 755 l0 -755 1275 0 1275 0 0 755 0 755 -1275 0 -1275 0 0 -755z m1598 613 l12 -12 0 -146 0 -146 -12 -12 -12 -12 -148 0 -148 0 0 -50 0 -50 348 -2 347 -3 3 -67 3 -68 152 0 153 0 12 -12 12 -12 0 -101 0 -101 -12 -12 -12 -12 -261 0 -261 0 -12 12 -12 12 0 101 0 101 12 12 12 12 98 0 99 0 -3 58 -3 57 -690 0 -690 0 -3 -47 -3 -48 98 0 99 0 12 -12 12 -12 0 -101 0 -101 -12 -12 -12 -12 -261 0 -261 0 -12 12 -12 12 0 101 0 101 12 12 12 12 153 0 152 0 3 58 3 57 353 3 352 2 0 50 0 50 -153 0 -153 0 -12 12 -12 12 0 146 0 146 12 12 12 12 311 0 311 0 12 -12z m-40 -560 l12 -12 0 -101 0 -101 -12 -12 -12 -12 -128 0 -128 0 0 -85 0 -85 54 0 55 0 3 38 3 37 180 0 180 0 0 -80 0 -80 -180 0 -180 0 -3 33 -3 32 -55 0 -55 0 3 -97 3 -98 57 -3 57 -3 3 43 3 43 180 0 180 0 0 -80 0 -80 -180 0 -180 0 -3 27 -3 27 -67 3 -67 3 -3 203 -2 202 -123 0 -123 0 -12 12 -12 12 0 101 0 101 12 12 12 12 261 0 261 0 12 -12z"/><path d="M266 784 l-16 -15 0 -74 0 -74 16 -15 15 -16 234 0 234 0 15 16 16 15 0 74 0 74 -16 15 -15 16 -234 0 -234 0 -15 -16z"/><path d="M1786 764 l-16 -15 0 -74 0 -74 16 -15 15 -16 234 0 234 0 15 16 16 15 0 74 0 74 -16 15 -15 16 -234 0 -234 0 -15 -16z"/><path d="M1036 784 l-16 -15 0 -74 0 -74 16 -15 15 -16 234 0 234 0 15 16 16 15 0 74 0 74 -16 15 -15 16 -234 0 -234 0 -15 -16z"/><path d="M1432 448 l-12 -12 0 -41 0 -41 12 -12 12 -12 141 0 141 0 12 12 12 12 0 41 0 41 -12 12 -12 12 -141 0 -141 0 -12 -12z"/><path d="M1442 238 l-12 -12 0 -41 0 -41 12 -12 12 -12 141 0 141 0 12 12 12 12 0 41 0 41 -12 12 -12 12 -141 0 -141 0 -12 -12z"/></g></svg>`;
17
+ const fishboneIcon = `<svg version="1.0" xmlns="http://www.w3.org/2000/svg" width="255.000000" height="151.000000" viewBox="0 0 255.000000 151.000000" preserveAspectRatio="xMidYMid meet"><rect x="0" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="135" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="169" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="186" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="135" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="169" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="186" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="135" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="169" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="186" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="29" width="18" height="11" fill="rgb(248,248,248)" /><rect x="101" y="29" width="18" height="11" fill="rgb(231,231,231)" /><rect x="118" y="29" width="18" height="11" fill="rgb(234,234,234)" /><rect x="135" y="29" width="18" height="11" fill="rgb(233,233,233)" /><rect x="152" y="29" width="18" height="11" fill="rgb(245,245,245)" /><rect x="169" y="29" width="18" height="11" fill="rgb(234,234,234)" /><rect x="186" y="29" width="18" height="11" fill="rgb(234,234,234)" /><rect x="203" y="29" width="18" height="11" fill="rgb(235,235,235)" /><rect x="220" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="39" width="18" height="11" fill="rgb(242,242,242)" /><rect x="101" y="39" width="18" height="11" fill="rgb(248,248,248)" /><rect x="118" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="135" y="39" width="18" height="11" fill="rgb(242,242,242)" /><rect x="152" y="39" width="18" height="11" fill="rgb(242,242,242)" /><rect x="169" y="39" width="18" height="11" fill="rgb(254,254,254)" /><rect x="186" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="39" width="18" height="11" fill="rgb(242,242,242)" /><rect x="220" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="49" width="18" height="11" fill="rgb(254,254,254)" /><rect x="16" y="49" width="18" height="11" fill="rgb(254,254,254)" /><rect x="33" y="49" width="18" height="11" fill="rgb(255,254,255)" /><rect x="50" y="49" width="18" height="11" fill="rgb(255,254,255)" /><rect x="67" y="49" width="18" height="11" fill="rgb(254,254,254)" /><rect x="84" y="49" width="18" height="11" fill="rgb(248,248,248)" /><rect x="101" y="49" width="18" height="11" fill="rgb(231,231,231)" /><rect x="118" y="49" width="18" height="11" fill="rgb(230,230,230)" /><rect x="135" y="49" width="18" height="11" fill="rgb(232,232,232)" /><rect x="152" y="49" width="18" height="11" fill="rgb(245,245,245)" /><rect x="169" y="49" width="18" height="11" fill="rgb(230,230,230)" /><rect x="186" y="49" width="18" height="11" fill="rgb(234,234,234)" /><rect x="203" y="49" width="18" height="11" fill="rgb(235,235,235)" /><rect x="220" y="49" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="49" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="59" width="18" height="11" fill="rgb(254,254,254)" /><rect x="16" y="59" width="18" height="11" fill="rgb(184,212,234)" /><rect x="33" y="59" width="18" height="11" fill="rgb(142,194,234)" /><rect x="50" y="59" width="18" height="11" fill="rgb(142,194,234)" /><rect x="67" y="59" width="18" height="11" fill="rgb(142,194,234)" /><rect x="84" y="59" width="18" height="11" fill="rgb(228,235,242)" /><rect x="101" y="59" width="18" height="11" fill="rgb(242,242,242)" /><rect x="118" y="59" width="18" height="11" fill="rgb(249,249,249)" /><rect x="135" y="59" width="18" height="11" fill="rgb(254,254,254)" /><rect x="152" y="59" width="18" height="11" fill="rgb(246,246,246)" /><rect x="169" y="59" width="18" height="11" fill="rgb(245,245,245)" /><rect x="186" y="59" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="59" width="18" height="11" fill="rgb(254,254,254)" /><rect x="220" y="59" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="59" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="69" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="69" width="18" height="11" fill="rgb(172,211,242)" /><rect x="33" y="69" width="18" height="11" fill="rgb(129,200,255)" /><rect x="50" y="69" width="18" height="11" fill="rgb(129,200,255)" /><rect x="67" y="69" width="18" height="11" fill="rgb(129,199,255)" /><rect x="84" y="69" width="18" height="11" fill="rgb(206,218,227)" /><rect x="101" y="69" width="18" height="11" fill="rgb(223,223,223)" /><rect x="118" y="69" width="18" height="11" fill="rgb(233,233,233)" /><rect x="135" y="69" width="18" height="11" fill="rgb(234,234,234)" /><rect x="152" y="69" width="18" height="11" fill="rgb(223,223,223)" /><rect x="169" y="69" width="18" height="11" fill="rgb(246,246,246)" /><rect x="186" y="69" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="69" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="69" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="69" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="79" width="18" height="11" fill="rgb(172,211,242)" /><rect x="33" y="79" width="18" height="11" fill="rgb(129,200,255)" /><rect x="50" y="79" width="18" height="11" fill="rgb(129,200,255)" /><rect x="67" y="79" width="18" height="11" fill="rgb(129,199,255)" /><rect x="84" y="79" width="18" height="11" fill="rgb(221,233,242)" /><rect x="101" y="79" width="18" height="11" fill="rgb(254,254,254)" /><rect x="118" y="79" width="18" height="11" fill="rgb(239,239,239)" /><rect x="135" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="79" width="18" height="11" fill="rgb(254,254,254)" /><rect x="169" y="79" width="18" height="11" fill="rgb(239,239,239)" /><rect x="186" y="79" width="18" height="11" fill="rgb(254,254,254)" /><rect x="203" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="89" width="18" height="11" fill="rgb(254,254,254)" /><rect x="16" y="89" width="18" height="11" fill="rgb(222,232,239)" /><rect x="33" y="89" width="18" height="11" fill="rgb(200,219,234)" /><rect x="50" y="89" width="18" height="11" fill="rgb(200,219,234)" /><rect x="67" y="89" width="18" height="11" fill="rgb(200,219,234)" /><rect x="84" y="89" width="18" height="11" fill="rgb(243,245,248)" /><rect x="101" y="89" width="18" height="11" fill="rgb(252,252,252)" /><rect x="118" y="89" width="18" height="11" fill="rgb(231,231,231)" /><rect x="135" y="89" width="18" height="11" fill="rgb(242,242,242)" /><rect x="152" y="89" width="18" height="11" fill="rgb(251,251,251)" /><rect x="169" y="89" width="18" height="11" fill="rgb(241,241,241)" /><rect x="186" y="89" width="18" height="11" fill="rgb(238,238,238)" /><rect x="203" y="89" width="18" height="11" fill="rgb(244,244,244)" /><rect x="220" y="89" width="18" height="11" fill="rgb(252,252,252)" /><rect x="237" y="89" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="99" width="18" height="11" fill="rgb(237,237,237)" /><rect x="118" y="99" width="18" height="11" fill="rgb(234,234,234)" /><rect x="135" y="99" width="18" height="11" fill="rgb(234,234,234)" /><rect x="152" y="99" width="18" height="11" fill="rgb(236,236,236)" /><rect x="169" y="99" width="18" height="11" fill="rgb(235,235,235)" /><rect x="186" y="99" width="18" height="11" fill="rgb(234,234,234)" /><rect x="203" y="99" width="18" height="11" fill="rgb(234,234,234)" /><rect x="220" y="99" width="18" height="11" fill="rgb(238,238,238)" /><rect x="237" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="109" width="18" height="11" fill="rgb(242,242,242)" /><rect x="118" y="109" width="18" height="11" fill="rgb(254,254,254)" /><rect x="135" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="109" width="18" height="11" fill="rgb(242,242,242)" /><rect x="169" y="109" width="18" height="11" fill="rgb(242,242,242)" /><rect x="186" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="109" width="18" height="11" fill="rgb(242,242,242)" /><rect x="237" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="119" width="18" height="11" fill="rgb(244,244,244)" /><rect x="118" y="119" width="18" height="11" fill="rgb(234,234,234)" /><rect x="135" y="119" width="18" height="11" fill="rgb(234,234,234)" /><rect x="152" y="119" width="18" height="11" fill="rgb(243,243,243)" /><rect x="169" y="119" width="18" height="11" fill="rgb(242,242,242)" /><rect x="186" y="119" width="18" height="11" fill="rgb(234,234,234)" /><rect x="203" y="119" width="18" height="11" fill="rgb(234,234,234)" /><rect x="220" y="119" width="18" height="11" fill="rgb(245,245,245)" /><rect x="237" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="135" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="169" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="186" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="16" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="33" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="50" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="67" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="84" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="101" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="118" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="135" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="152" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="169" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="186" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="203" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="220" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="237" y="139" width="18" height="12" fill="rgb(255,255,255)" /><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#92928C" stroke="none"><path d="M253 893 c4 -3 10 -3 14 0 3 4 0 7 -7 7 -7 0 -10 -3 -7 -7z"/><path d="M290 580 c0 -5 5 -10 10 -10 6 0 10 5 10 10 0 6 -4 10 -10 10 -5 0 -10 -4 -10 -10z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#929292" stroke="none"><path d="M1033 1180 l-22 -9 -7 -36 c-3 -19 -4 -65 -2 -100 l4 -65 12 -12 13 -13 89 -5 90 -5 -67 -97 -67 -98 -93 0 -93 0 0 60 0 60 -10 0 -10 0 0 -129 0 -130 -10 -6 c-5 -3 -131 -6 -280 -5 l-270 0 0 -10 0 -11 275 3 274 3 12 12 13 13 4 60 4 60 162 0 162 0 67 -97 67 -98 -105 -5 -104 -5 -13 -13 -13 -13 0 -94 0 -94 13 -13 13 -13 219 0 219 0 13 13 13 13 0 94 0 94 -13 13 -13 13 -109 5 -109 5 -58 85 c-33 47 -63 91 -67 98 l-7 12 258 0 259 0 67 -97 67 -98 -42 -7 c-23 -4 -46 -12 -52 -18 l-11 -11 0 -94 0 -94 13 -13 13 -13 219 0 219 0 13 13 13 13 0 95 0 96 -19 14 -20 14 -166 0 -166 0 -75 110 -74 109 -63 3 -62 3 65 95 66 95 189 5 189 5 13 13 13 13 0 94 0 94 -13 13 -13 13 -219 0 -219 0 -13 -13 -13 -13 -3 -77 -4 -77 10 -24 9 -25 31 -10 32 -11 -67 -98 -67 -97 -259 0 -258 0 7 13 c4 6 34 50 67 97 l58 85 124 5 124 5 13 13 13 13 0 94 0 94 -13 13 -13 13 -207 2 -207 2 -22 -9z m442 -115 l0 -100 -225 0 -225 0 -3 89 c-2 49 -1 95 2 103 l6 13 222 -2 223 -3 0 -100z m660 0 l0 -100 -225 0 -225 0 -3 89 c-2 49 -1 95 2 103 l6 13 222 -2 223 -3 0 -100z m-550 -670 l0 -100 -225 0 -225 0 -3 89 c-2 49 -1 95 2 103 l6 13 222 -2 223 -3 0 -100z m660 0 l0 -100 -225 0 -225 0 -3 89 c-2 49 -1 95 2 103 l6 13 222 -2 223 -3 0 -100z"/><path d="M270 900 l0 -10 285 0 285 0 0 10 0 9 -285 0 -285 0 0 -9z"/><path d="M229 873 l-10 -28 3 -122 3 -122 10 -9 c6 -6 20 -13 33 -17 l22 -6 0 12 c0 7 -3 9 -6 6 -4 -3 -15 -2 -26 4 l-19 10 3 150 c2 82 2 149 0 149 -1 0 -7 -12 -13 -27z"/><path d="M850 896 c0 -2 7 -9 15 -16 l15 -13 -6 17 c-5 14 -24 23 -24 12z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#A5A5A5" stroke="none"><path d="M1145 840 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1675 840 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1284 618 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/><path d="M1814 618 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#ACACAC" stroke="none"><path d="M1744 718 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#D2D2D2" stroke="none"><path d="M1024 1158 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/><path d="M1465 1160 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1684 1158 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M2125 1160 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1025 970 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1464 968 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M1685 970 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M2124 968 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M1134 488 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/><path d="M1575 490 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1794 488 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M2235 490 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1135 300 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1574 298 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/><path d="M1795 300 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M2234 298 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#85CCFF" stroke="none"><path d="M270 879 c0 -5 -6 -8 -12 -6 l-13 2 -3 -115 c-1 -63 0 -125 3 -138 l6 -23 9 6 c6 3 10 2 10 -3 l0 -10 286 -1 286 -2 -8 12 -7 12 13 -8 12 -8 9 14 9 14 0 122 0 122 -20 11 -20 10 -280 0 -280 -1 0 -10z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#FFFFFF" stroke="none"><path d="M0 755 l0 -755 1275 0 1275 0 0 755 0 755 -1275 0 -1275 0 0 -755z m1488 423 l12 -12 0 -101 0 -101 -12 -12 -12 -12 -120 0 -121 0 -68 -100 -68 -100 248 0 248 0 68 100 68 100 -23 0 c-13 0 -29 5 -36 12 l-12 12 0 101 0 101 12 12 12 12 226 0 226 0 12 -12 12 -12 0 -101 0 -101 -12 -12 -12 -12 -186 0 -185 0 -68 -100 -68 -100 60 0 60 0 13 -14 c7 -7 42 -56 78 -109 l65 -97 170 0 171 0 12 -12 12 -12 0 -101 0 -101 -12 -12 -12 -12 -226 0 -226 0 -12 12 -12 12 0 101 0 101 12 12 12 12 39 0 38 0 -68 100 -68 100 -248 0 -248 0 68 -100 68 -100 106 0 105 0 12 -12 12 -12 0 -101 0 -101 -12 -12 -12 -12 -226 0 -226 0 -12 12 -12 12 0 101 0 101 12 12 12 12 104 0 103 0 -68 100 -68 100 -157 0 -158 0 0 -63 0 -63 -12 -12 -12 -12 -311 0 -311 0 -12 12 -12 12 0 146 0 146 12 12 12 12 311 0 311 0 12 -12 12 -12 0 -73 0 -73 88 0 87 0 68 100 68 100 -88 0 -89 0 -12 12 -12 12 0 101 0 101 12 12 12 12 226 0 226 0 12 -12z"/><path d="M1036 1154 l-16 -15 0 -74 0 -74 16 -15 15 -16 199 0 199 0 15 16 16 15 0 74 0 74 -16 15 -15 16 -199 0 -199 0 -15 -16z"/><path d="M1696 1154 l-16 -15 0 -74 0 -74 16 -15 15 -16 199 0 199 0 15 16 16 15 0 74 0 74 -16 15 -15 16 -199 0 -199 0 -15 -16z"/><path d="M1146 484 l-16 -15 0 -74 0 -74 16 -15 15 -16 199 0 199 0 15 16 16 15 0 74 0 74 -16 15 -15 16 -199 0 -199 0 -15 -16z"/><path d="M1806 484 l-16 -15 0 -74 0 -74 16 -15 15 -16 199 0 199 0 15 16 16 15 0 74 0 74 -16 15 -15 16 -199 0 -199 0 -15 -16z"/></g></svg>`;
18
+ const logicalStructureIcon = `<svg version="1.0" xmlns="http://www.w3.org/2000/svg" width="255.000000" height="151.000000" viewBox="0 0 255.000000 151.000000" preserveAspectRatio="xMidYMid meet"><rect x="0" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="135" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="169" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="186" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="135" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="169" y="9" width="18" height="11" fill="rgb(254,254,254)" /><rect x="186" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="9" width="18" height="11" fill="rgb(254,254,254)" /><rect x="237" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="135" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="19" width="18" height="11" fill="rgb(254,254,254)" /><rect x="169" y="19" width="18" height="11" fill="rgb(237,237,237)" /><rect x="186" y="19" width="18" height="11" fill="rgb(234,234,234)" /><rect x="203" y="19" width="18" height="11" fill="rgb(234,234,234)" /><rect x="220" y="19" width="18" height="11" fill="rgb(237,237,237)" /><rect x="237" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="29" width="18" height="11" fill="rgb(235,235,235)" /><rect x="135" y="29" width="18" height="11" fill="rgb(234,234,234)" /><rect x="152" y="29" width="18" height="11" fill="rgb(234,234,234)" /><rect x="169" y="29" width="18" height="11" fill="rgb(235,235,235)" /><rect x="186" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="29" width="18" height="11" fill="rgb(242,242,242)" /><rect x="237" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="39" width="18" height="11" fill="rgb(242,242,242)" /><rect x="135" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="169" y="39" width="18" height="11" fill="rgb(235,235,235)" /><rect x="186" y="39" width="18" height="11" fill="rgb(234,234,234)" /><rect x="203" y="39" width="18" height="11" fill="rgb(234,234,234)" /><rect x="220" y="39" width="18" height="11" fill="rgb(235,235,235)" /><rect x="237" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="49" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="49" width="18" height="11" fill="rgb(240,242,244)" /><rect x="33" y="49" width="18" height="11" fill="rgb(223,229,234)" /><rect x="50" y="49" width="18" height="11" fill="rgb(223,229,234)" /><rect x="67" y="49" width="18" height="11" fill="rgb(223,229,234)" /><rect x="84" y="49" width="18" height="11" fill="rgb(245,247,248)" /><rect x="101" y="49" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="49" width="18" height="11" fill="rgb(242,242,242)" /><rect x="135" y="49" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="49" width="18" height="11" fill="rgb(255,255,255)" /><rect x="169" y="49" width="18" height="11" fill="rgb(254,254,254)" /><rect x="186" y="49" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="49" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="49" width="18" height="11" fill="rgb(254,254,254)" /><rect x="237" y="49" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="59" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="59" width="18" height="11" fill="rgb(187,217,242)" /><rect x="33" y="59" width="18" height="11" fill="rgb(129,200,255)" /><rect x="50" y="59" width="18" height="11" fill="rgb(129,200,255)" /><rect x="67" y="59" width="18" height="11" fill="rgb(129,199,255)" /><rect x="84" y="59" width="18" height="11" fill="rgb(208,227,242)" /><rect x="101" y="59" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="59" width="18" height="11" fill="rgb(242,242,242)" /><rect x="135" y="59" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="59" width="18" height="11" fill="rgb(254,254,254)" /><rect x="169" y="59" width="18" height="11" fill="rgb(237,237,237)" /><rect x="186" y="59" width="18" height="11" fill="rgb(234,234,234)" /><rect x="203" y="59" width="18" height="11" fill="rgb(234,234,234)" /><rect x="220" y="59" width="18" height="11" fill="rgb(237,237,237)" /><rect x="237" y="59" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="69" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="69" width="18" height="11" fill="rgb(186,218,242)" /><rect x="33" y="69" width="18" height="11" fill="rgb(129,200,255)" /><rect x="50" y="69" width="18" height="11" fill="rgb(129,200,255)" /><rect x="67" y="69" width="18" height="11" fill="rgb(129,200,255)" /><rect x="84" y="69" width="18" height="11" fill="rgb(194,214,229)" /><rect x="101" y="69" width="18" height="11" fill="rgb(234,234,234)" /><rect x="118" y="69" width="18" height="11" fill="rgb(224,224,224)" /><rect x="135" y="69" width="18" height="11" fill="rgb(234,234,234)" /><rect x="152" y="69" width="18" height="11" fill="rgb(234,234,234)" /><rect x="169" y="69" width="18" height="11" fill="rgb(235,235,235)" /><rect x="186" y="69" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="69" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="69" width="18" height="11" fill="rgb(242,242,242)" /><rect x="237" y="69" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="79" width="18" height="11" fill="rgb(188,216,238)" /><rect x="33" y="79" width="18" height="11" fill="rgb(130,194,244)" /><rect x="50" y="79" width="18" height="11" fill="rgb(130,194,244)" /><rect x="67" y="79" width="18" height="11" fill="rgb(130,194,244)" /><rect x="84" y="79" width="18" height="11" fill="rgb(209,226,240)" /><rect x="101" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="79" width="18" height="11" fill="rgb(242,242,242)" /><rect x="135" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="169" y="79" width="18" height="11" fill="rgb(235,235,235)" /><rect x="186" y="79" width="18" height="11" fill="rgb(234,234,234)" /><rect x="203" y="79" width="18" height="11" fill="rgb(234,234,234)" /><rect x="220" y="79" width="18" height="11" fill="rgb(235,235,235)" /><rect x="237" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="89" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="89" width="18" height="11" fill="rgb(246,246,245)" /><rect x="33" y="89" width="18" height="11" fill="rgb(234,234,234)" /><rect x="50" y="89" width="18" height="11" fill="rgb(234,234,234)" /><rect x="67" y="89" width="18" height="11" fill="rgb(234,234,234)" /><rect x="84" y="89" width="18" height="11" fill="rgb(249,249,249)" /><rect x="101" y="89" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="89" width="18" height="11" fill="rgb(242,242,242)" /><rect x="135" y="89" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="89" width="18" height="11" fill="rgb(255,255,255)" /><rect x="169" y="89" width="18" height="11" fill="rgb(254,254,254)" /><rect x="186" y="89" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="89" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="89" width="18" height="11" fill="rgb(254,254,254)" /><rect x="237" y="89" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="99" width="18" height="11" fill="rgb(242,242,242)" /><rect x="135" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="99" width="18" height="11" fill="rgb(254,254,254)" /><rect x="169" y="99" width="18" height="11" fill="rgb(237,237,237)" /><rect x="186" y="99" width="18" height="11" fill="rgb(234,234,234)" /><rect x="203" y="99" width="18" height="11" fill="rgb(234,234,234)" /><rect x="220" y="99" width="18" height="11" fill="rgb(237,237,237)" /><rect x="237" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="109" width="18" height="11" fill="rgb(233,233,233)" /><rect x="135" y="109" width="18" height="11" fill="rgb(234,234,234)" /><rect x="152" y="109" width="18" height="11" fill="rgb(234,234,234)" /><rect x="169" y="109" width="18" height="11" fill="rgb(235,235,235)" /><rect x="186" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="109" width="18" height="11" fill="rgb(242,242,242)" /><rect x="237" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="119" width="18" height="11" fill="rgb(254,254,254)" /><rect x="135" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="169" y="119" width="18" height="11" fill="rgb(235,235,235)" /><rect x="186" y="119" width="18" height="11" fill="rgb(234,234,234)" /><rect x="203" y="119" width="18" height="11" fill="rgb(234,234,234)" /><rect x="220" y="119" width="18" height="11" fill="rgb(235,235,235)" /><rect x="237" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="135" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="169" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="186" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="16" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="33" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="50" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="67" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="84" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="101" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="118" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="135" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="152" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="169" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="186" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="203" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="220" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="237" y="139" width="18" height="12" fill="rgb(255,255,255)" /><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#92928C" stroke="none"><path d="M885 920 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M895 660 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M845 610 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#929292" stroke="none"><path d="M1776 1267 l-17 -13 -6 -42 -6 -42 -248 0 -248 0 -15 -16 -16 -15 0 -185 0 -184 -155 0 -155 0 -1 48 c-1 54 -5 81 -14 90 -3 4 -5 -53 -4 -125 l2 -132 9 5 c4 3 8 25 8 50 l0 44 155 0 155 0 0 -189 0 -190 16 -15 15 -16 248 0 248 0 6 -41 c3 -23 10 -47 17 -53 l11 -11 247 -3 247 -3 20 15 20 14 0 97 0 97 -19 14 -20 14 -241 0 -241 0 -18 -13 -18 -13 -5 -47 -6 -47 -253 0 -254 0 0 195 0 195 254 0 253 0 6 -46 c2 -25 10 -51 16 -57 l12 -12 247 -3 247 -3 20 15 20 14 0 97 0 97 -19 14 -20 14 -241 0 -241 0 -18 -13 -17 -13 -6 -42 -6 -42 -253 0 -254 0 0 190 0 190 254 0 253 0 6 -46 c2 -25 10 -51 16 -57 l12 -12 247 -3 247 -3 20 15 20 14 0 97 0 97 -19 14 -20 14 -241 0 -241 0 -18 -13z m519 -112 l0 -100 -260 0 -260 0 -3 89 c-2 49 -1 95 2 103 l6 13 257 -2 258 -3 0 -100z m0 -400 l0 -100 -260 0 -260 0 -3 89 c-2 49 -1 95 2 103 l6 13 257 -2 258 -3 0 -100z m0 -400 l0 -100 -260 0 -260 0 -3 89 c-2 49 -1 95 2 103 l6 13 257 -2 258 -3 0 -100z"/><path d="M281 931 l-15 -9 310 0 309 0 -20 8 -20 9 -275 0 -275 1 -14 -9z"/><path d="M250 910 c0 -7 3 -10 7 -7 3 4 3 10 0 14 -4 3 -7 0 -7 -7z"/><path d="M241 771 l-2 -119 11 -7 10 -6 0 125 0 126 -9 0 -9 0 -1 -119z"/><path d="M880 625 l-12 -15 10 0 c12 0 26 19 19 26 -2 2 -10 -2 -17 -11z"/><path d="M290 611 l0 -10 279 -1 280 -1 5 10 6 9 -285 1 -285 2 0 -10z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#BFBFBF" stroke="none"><path d="M1224 1158 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M1225 350 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#D2D2D2" stroke="none"><path d="M1774 1248 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M2285 1250 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1775 1060 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M2284 1058 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M1774 848 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M2285 850 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1775 660 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M2284 658 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M1774 448 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M2285 450 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1775 260 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M2284 258 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#8CB2D8" stroke="none"><path d="M264 908 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M875 910 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M874 628 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#7FCCFF" stroke="none"><path d="M804 908 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/><path d="M280 690 c0 -7 3 -10 7 -7 3 4 3 10 0 14 -4 3 -7 0 -7 -7z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#85CCFF" stroke="none"><path d="M277 902 l-17 -19 0 -116 0 -116 16 -16 17 -16 287 3 288 3 9 8 c9 10 17 218 9 251 l-6 24 -26 6 -26 7 -16 -13 -16 -13 8 13 7 12 -259 0 -259 0 -16 -18z m10 -219 c-4 -3 -7 0 -7 7 0 7 3 10 7 7 3 -4 3 -10 0 -14z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#FFFFFF" stroke="none"><path d="M0 755 l0 -755 1275 0 1275 0 0 755 0 755 -1275 0 -1275 0 0 -755z m2308 513 l12 -12 0 -101 0 -101 -12 -12 -12 -12 -261 0 -261 0 -12 12 -12 12 0 48 0 48 -252 -2 -253 -3 -3 -187 -2 -188 255 0 255 0 0 43 0 43 12 12 12 12 261 0 261 0 12 -12 12 -12 0 -101 0 -101 -12 -12 -12 -12 -261 0 -261 0 -12 12 -12 12 0 48 0 48 -255 0 -255 0 2 -192 3 -193 253 -3 252 -2 0 48 0 48 12 12 12 12 261 0 261 0 12 -12 12 -12 0 -101 0 -101 -12 -12 -12 -12 -261 0 -261 0 -12 12 -12 12 0 43 0 43 -262 2 -263 3 -3 203 -2 202 -155 0 -155 0 0 -63 0 -63 -12 -12 -12 -12 -311 0 -311 0 -12 12 -12 12 0 146 0 146 12 12 12 12 311 0 311 0 12 -12 12 -12 0 -73 0 -73 155 0 155 0 2 198 3 197 263 3 262 2 0 43 0 43 12 12 12 12 261 0 261 0 12 -12z"/><path d="M1786 1244 l-16 -15 0 -74 0 -74 16 -15 15 -16 234 0 234 0 15 16 16 15 0 74 0 74 -16 15 -15 16 -234 0 -234 0 -15 -16z"/><path d="M1786 844 l-16 -15 0 -74 0 -74 16 -15 15 -16 234 0 234 0 15 16 16 15 0 74 0 74 -16 15 -15 16 -234 0 -234 0 -15 -16z"/><path d="M1786 444 l-16 -15 0 -74 0 -74 16 -15 15 -16 234 0 234 0 15 16 16 15 0 74 0 74 -16 15 -15 16 -234 0 -234 0 -15 -16z"/></g></svg>`;
19
+ const mindMapIcon = `<svg version="1.0" xmlns="http://www.w3.org/2000/svg" width="255.000000" height="151.000000" viewBox="0 0 255.000000 151.000000" preserveAspectRatio="xMidYMid meet"><rect x="0" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="135" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="169" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="186" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="135" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="169" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="186" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="19" width="18" height="11" fill="rgb(254,254,254)" /><rect x="16" y="19" width="18" height="11" fill="rgb(254,254,254)" /><rect x="33" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="19" width="18" height="11" fill="rgb(254,254,254)" /><rect x="67" y="19" width="18" height="11" fill="rgb(254,254,254)" /><rect x="84" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="135" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="169" y="19" width="18" height="11" fill="rgb(253,253,253)" /><rect x="186" y="19" width="18" height="11" fill="rgb(244,244,244)" /><rect x="203" y="19" width="18" height="11" fill="rgb(244,244,244)" /><rect x="220" y="19" width="18" height="11" fill="rgb(245,245,245)" /><rect x="237" y="19" width="18" height="11" fill="rgb(254,254,254)" /><rect x="0" y="29" width="18" height="11" fill="rgb(250,250,250)" /><rect x="16" y="29" width="18" height="11" fill="rgb(228,228,228)" /><rect x="33" y="29" width="18" height="11" fill="rgb(234,234,234)" /><rect x="50" y="29" width="18" height="11" fill="rgb(234,234,234)" /><rect x="67" y="29" width="18" height="11" fill="rgb(239,239,239)" /><rect x="84" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="135" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="169" y="29" width="18" height="11" fill="rgb(240,240,240)" /><rect x="186" y="29" width="18" height="11" fill="rgb(234,234,234)" /><rect x="203" y="29" width="18" height="11" fill="rgb(234,234,234)" /><rect x="220" y="29" width="18" height="11" fill="rgb(229,229,229)" /><rect x="237" y="29" width="18" height="11" fill="rgb(245,245,245)" /><rect x="0" y="39" width="18" height="11" fill="rgb(248,248,248)" /><rect x="16" y="39" width="18" height="11" fill="rgb(242,242,242)" /><rect x="33" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="39" width="18" height="11" fill="rgb(254,254,254)" /><rect x="67" y="39" width="18" height="11" fill="rgb(222,222,222)" /><rect x="84" y="39" width="18" height="11" fill="rgb(254,254,254)" /><rect x="101" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="135" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="39" width="18" height="11" fill="rgb(254,254,254)" /><rect x="169" y="39" width="18" height="11" fill="rgb(222,222,222)" /><rect x="186" y="39" width="18" height="11" fill="rgb(254,254,254)" /><rect x="203" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="39" width="18" height="11" fill="rgb(248,248,248)" /><rect x="237" y="39" width="18" height="11" fill="rgb(242,242,242)" /><rect x="0" y="49" width="18" height="11" fill="rgb(253,253,253)" /><rect x="16" y="49" width="18" height="11" fill="rgb(232,232,232)" /><rect x="33" y="49" width="18" height="11" fill="rgb(234,234,234)" /><rect x="50" y="49" width="18" height="11" fill="rgb(234,234,234)" /><rect x="67" y="49" width="18" height="11" fill="rgb(231,231,231)" /><rect x="84" y="49" width="18" height="11" fill="rgb(245,246,248)" /><rect x="101" y="49" width="18" height="11" fill="rgb(223,229,234)" /><rect x="118" y="49" width="18" height="11" fill="rgb(223,229,234)" /><rect x="135" y="49" width="18" height="11" fill="rgb(222,229,234)" /><rect x="152" y="49" width="18" height="11" fill="rgb(240,242,244)" /><rect x="169" y="49" width="18" height="11" fill="rgb(235,235,235)" /><rect x="186" y="49" width="18" height="11" fill="rgb(234,234,234)" /><rect x="203" y="49" width="18" height="11" fill="rgb(234,234,234)" /><rect x="220" y="49" width="18" height="11" fill="rgb(233,233,233)" /><rect x="237" y="49" width="18" height="11" fill="rgb(251,251,251)" /><rect x="0" y="59" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="59" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="59" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="59" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="59" width="18" height="11" fill="rgb(242,242,242)" /><rect x="84" y="59" width="18" height="11" fill="rgb(208,227,242)" /><rect x="101" y="59" width="18" height="11" fill="rgb(129,200,255)" /><rect x="118" y="59" width="18" height="11" fill="rgb(129,200,255)" /><rect x="135" y="59" width="18" height="11" fill="rgb(129,200,255)" /><rect x="152" y="59" width="18" height="11" fill="rgb(187,217,242)" /><rect x="169" y="59" width="18" height="11" fill="rgb(242,242,242)" /><rect x="186" y="59" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="59" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="59" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="59" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="69" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="69" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="69" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="69" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="69" width="18" height="11" fill="rgb(241,241,241)" /><rect x="84" y="69" width="18" height="11" fill="rgb(194,214,229)" /><rect x="101" y="69" width="18" height="11" fill="rgb(129,200,255)" /><rect x="118" y="69" width="18" height="11" fill="rgb(129,200,255)" /><rect x="135" y="69" width="18" height="11" fill="rgb(129,200,255)" /><rect x="152" y="69" width="18" height="11" fill="rgb(177,208,233)" /><rect x="169" y="69" width="18" height="11" fill="rgb(239,239,239)" /><rect x="186" y="69" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="69" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="69" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="69" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="79" width="18" height="11" fill="rgb(242,242,242)" /><rect x="84" y="79" width="18" height="11" fill="rgb(209,226,239)" /><rect x="101" y="79" width="18" height="11" fill="rgb(130,194,244)" /><rect x="118" y="79" width="18" height="11" fill="rgb(130,194,244)" /><rect x="135" y="79" width="18" height="11" fill="rgb(130,194,244)" /><rect x="152" y="79" width="18" height="11" fill="rgb(188,216,238)" /><rect x="169" y="79" width="18" height="11" fill="rgb(242,242,242)" /><rect x="186" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="89" width="18" height="11" fill="rgb(254,254,254)" /><rect x="16" y="89" width="18" height="11" fill="rgb(236,236,236)" /><rect x="33" y="89" width="18" height="11" fill="rgb(234,234,234)" /><rect x="50" y="89" width="18" height="11" fill="rgb(234,234,234)" /><rect x="67" y="89" width="18" height="11" fill="rgb(235,235,235)" /><rect x="84" y="89" width="18" height="11" fill="rgb(249,249,249)" /><rect x="101" y="89" width="18" height="11" fill="rgb(234,234,234)" /><rect x="118" y="89" width="18" height="11" fill="rgb(234,234,234)" /><rect x="135" y="89" width="18" height="11" fill="rgb(234,234,234)" /><rect x="152" y="89" width="18" height="11" fill="rgb(246,246,246)" /><rect x="169" y="89" width="18" height="11" fill="rgb(239,239,239)" /><rect x="186" y="89" width="18" height="11" fill="rgb(234,234,234)" /><rect x="203" y="89" width="18" height="11" fill="rgb(234,234,234)" /><rect x="220" y="89" width="18" height="11" fill="rgb(235,235,235)" /><rect x="237" y="89" width="18" height="11" fill="rgb(254,254,254)" /><rect x="0" y="99" width="18" height="11" fill="rgb(249,249,249)" /><rect x="16" y="99" width="18" height="11" fill="rgb(241,241,241)" /><rect x="33" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="99" width="18" height="11" fill="rgb(254,254,254)" /><rect x="67" y="99" width="18" height="11" fill="rgb(224,224,224)" /><rect x="84" y="99" width="18" height="11" fill="rgb(254,254,254)" /><rect x="101" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="135" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="99" width="18" height="11" fill="rgb(254,254,254)" /><rect x="169" y="99" width="18" height="11" fill="rgb(223,223,223)" /><rect x="186" y="99" width="18" height="11" fill="rgb(244,244,244)" /><rect x="203" y="99" width="18" height="11" fill="rgb(244,244,244)" /><rect x="220" y="99" width="18" height="11" fill="rgb(238,238,238)" /><rect x="237" y="99" width="18" height="11" fill="rgb(243,243,243)" /><rect x="0" y="109" width="18" height="11" fill="rgb(249,249,249)" /><rect x="16" y="109" width="18" height="11" fill="rgb(241,241,241)" /><rect x="33" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="109" width="18" height="11" fill="rgb(254,254,254)" /><rect x="67" y="109" width="18" height="11" fill="rgb(231,231,231)" /><rect x="84" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="135" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="169" y="109" width="18" height="11" fill="rgb(231,231,231)" /><rect x="186" y="109" width="18" height="11" fill="rgb(254,254,254)" /><rect x="203" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="109" width="18" height="11" fill="rgb(248,248,248)" /><rect x="237" y="109" width="18" height="11" fill="rgb(242,242,242)" /><rect x="0" y="119" width="18" height="11" fill="rgb(254,254,254)" /><rect x="16" y="119" width="18" height="11" fill="rgb(236,236,236)" /><rect x="33" y="119" width="18" height="11" fill="rgb(234,234,234)" /><rect x="50" y="119" width="18" height="11" fill="rgb(234,234,234)" /><rect x="67" y="119" width="18" height="11" fill="rgb(247,247,247)" /><rect x="84" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="135" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="169" y="119" width="18" height="11" fill="rgb(248,248,248)" /><rect x="186" y="119" width="18" height="11" fill="rgb(234,234,234)" /><rect x="203" y="119" width="18" height="11" fill="rgb(234,234,234)" /><rect x="220" y="119" width="18" height="11" fill="rgb(233,233,233)" /><rect x="237" y="119" width="18" height="11" fill="rgb(252,252,252)" /><rect x="0" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="135" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="169" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="186" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="16" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="33" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="50" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="67" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="84" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="101" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="118" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="135" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="152" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="169" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="186" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="203" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="220" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="237" y="139" width="18" height="12" fill="rgb(255,255,255)" /><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#92928C" stroke="none"><path d="M1000 936 c0 -2 7 -7 16 -10 l15 -6 -6 10 c-6 10 -25 14 -25 6z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#929292" stroke="none"><path d="M1847 1208 l-18 -14 -6 -42 -6 -42 -33 0 -33 0 -15 -16 -16 -15 0 -155 0 -154 -49 0 -49 0 -4 71 -4 71 -19 14 -20 15 -292 -1 -291 -2 -18 -13 -18 -13 -4 -71 -4 -71 -54 0 -54 0 0 154 0 155 -16 15 -15 16 -33 0 -33 0 -7 40 -6 41 -26 9 -25 10 -233 0 -232 0 -20 -14 -19 -14 0 -96 0 -95 13 -13 13 -13 255 0 256 0 14 19 14 20 0 43 0 43 40 0 40 0 0 -335 0 -335 -39 0 -38 0 -6 46 c-2 25 -10 51 -16 57 l-12 12 -254 0 -254 0 -13 -13 -13 -13 0 -95 0 -96 20 -14 20 -15 247 3 247 3 11 11 c7 6 14 30 17 53 l6 41 33 0 33 0 15 16 16 15 0 160 0 159 55 0 55 0 0 -42 c0 -57 9 -85 27 -93 l16 -5 -13 15 -12 14 1 138 c1 75 4 139 6 141 6 6 606 3 616 -3 l9 -6 0 -145 0 -144 -292 -1 c-161 -1 -296 -1 -300 0 -5 0 -8 -4 -8 -9 l0 -11 289 1 289 1 18 13 18 13 4 62 4 61 49 0 49 0 0 -159 0 -160 16 -15 15 -16 33 0 33 0 6 -47 5 -47 18 -13 19 -14 247 3 247 3 13 13 13 13 0 95 0 96 -20 14 -20 15 -247 -3 -247 -3 -11 -11 c-7 -6 -14 -30 -17 -53 l-6 -41 -38 0 -39 0 0 335 0 335 39 0 38 0 6 -46 c2 -25 10 -51 16 -57 l12 -12 254 0 254 0 13 13 13 13 0 94 0 94 -13 13 -13 13 -247 3 -247 3 -18 -13z m518 -113 l0 -100 -260 0 -260 0 -3 89 c-2 49 -1 95 2 103 l6 13 257 -2 258 -3 0 -100z m-1650 -10 l0 -100 -260 0 -260 0 -3 89 c-2 49 -1 95 2 103 l6 13 257 -2 258 -3 0 -100z m0 -670 l0 -100 -260 0 -260 0 -3 89 c-2 49 -1 95 2 103 l6 13 257 -2 258 -3 0 -100z m1650 -10 l0 -100 -260 0 -260 0 -3 89 c-2 49 -1 95 2 103 l6 13 257 -2 258 -3 0 -100z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#BFBFBF" stroke="none"><path d="M1724 1098 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M1725 410 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#D2D2D2" stroke="none"><path d="M1844 1188 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M2355 1190 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M194 1178 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M705 1180 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1845 1000 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M2354 998 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M195 990 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M704 988 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M194 508 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M705 510 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1844 498 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M2355 500 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M195 320 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M704 318 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/><path d="M1845 310 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M2354 308 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#8CB2D8" stroke="none"><path d="M974 908 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M1584 628 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#7FCCFF" stroke="none"><path d="M1025 900 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1543 873 c4 -3 10 -3 14 0 3 4 0 7 -7 7 -7 0 -10 -3 -7 -7z"/><path d="M1000 690 c0 -7 3 -10 7 -7 3 4 3 10 0 14 -4 3 -7 0 -7 -7z"/><path d="M1540 690 c0 -7 3 -10 7 -7 3 4 3 10 0 14 -4 3 -7 0 -7 -7z"/><path d="M1000 650 c0 -7 3 -10 7 -7 3 4 3 10 0 14 -4 3 -7 0 -7 -7z"/><path d="M1579 643 l-14 -18 18 14 c16 13 21 21 13 21 -2 0 -10 -8 -17 -17z"/><path d="M1024 628 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#85CCFF" stroke="none"><path d="M985 904 l-17 -17 4 -123 3 -123 13 -13 12 -12 21 12 21 13 -7 -11 -6 -10 270 0 271 1 0 10 0 10 12 -7 11 -7 -7 11 c-3 6 -2 13 3 16 l9 6 1 108 c2 110 -4 146 -20 136 -5 -3 -9 -1 -9 5 l0 10 -284 1 -284 0 -17 -16z m50 -4 c3 -5 4 -10 1 -10 -3 0 -8 5 -11 10 -3 6 -4 10 -1 10 3 0 8 -4 11 -10z m522 -27 c-4 -3 -10 -3 -14 0 -3 4 0 7 7 7 7 0 10 -3 7 -7z m-550 -190 c-4 -3 -7 0 -7 7 0 7 3 10 7 7 3 -4 3 -10 0 -14z m540 0 c-4 -3 -7 0 -7 7 0 7 3 10 7 7 3 -4 3 -10 0 -14z m-540 -40 c-4 -3 -7 0 -7 7 0 7 3 10 7 7 3 -4 3 -10 0 -14z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#FFFFFF" stroke="none"><path d="M0 755 l0 -755 1275 0 1275 0 0 755 0 755 -1275 0 -1275 0 0 -755z m2378 453 l12 -12 0 -101 0 -101 -12 -12 -12 -12 -261 0 -261 0 -12 12 -12 12 0 49 0 48 -37 -3 -38 -3 0 -330 0 -330 38 -3 37 -3 0 43 0 44 12 12 12 12 261 0 261 0 12 -12 12 -12 0 -101 0 -101 -12 -12 -12 -12 -261 0 -261 0 -12 12 -12 12 0 47 0 48 -47 3 -48 3 -3 173 -2 172 -50 0 -50 0 0 -63 0 -63 -12 -12 -12 -12 -311 0 -311 0 -12 12 -12 12 0 63 0 63 -55 0 -55 0 -2 -172 -3 -173 -47 -3 -48 -3 0 -43 0 -42 -12 -12 -12 -12 -261 0 -261 0 -12 12 -12 12 0 101 0 101 12 12 12 12 261 0 261 0 12 -12 12 -12 0 -49 0 -48 38 3 37 3 0 330 0 330 -37 3 -38 3 0 -53 0 -54 -12 -12 -12 -12 -261 0 -261 0 -12 12 -12 12 0 101 0 101 12 12 12 12 261 0 261 0 12 -12 12 -12 0 -37 0 -38 48 -3 47 -3 3 -167 2 -168 55 0 55 0 0 73 0 73 12 12 12 12 311 0 311 0 12 -12 12 -12 0 -73 0 -73 50 0 50 0 2 168 3 167 48 3 47 3 0 43 0 42 12 12 12 12 261 0 261 0 12 -12z"/><path d="M1856 1184 l-16 -15 0 -74 0 -74 16 -15 15 -16 234 0 234 0 15 16 16 15 0 74 0 74 -16 15 -15 16 -234 0 -234 0 -15 -16z"/><path d="M206 1174 l-16 -15 0 -74 0 -74 16 -15 15 -16 234 0 234 0 15 16 16 15 0 74 0 74 -16 15 -15 16 -234 0 -234 0 -15 -16z"/><path d="M206 504 l-16 -15 0 -74 0 -74 16 -15 15 -16 234 0 234 0 15 16 16 15 0 74 0 74 -16 15 -15 16 -234 0 -234 0 -15 -16z"/><path d="M1856 494 l-16 -15 0 -74 0 -74 16 -15 15 -16 234 0 234 0 15 16 16 15 0 74 0 74 -16 15 -15 16 -234 0 -234 0 -15 -16z"/></g></svg>`;
20
+ const organizationStructureIcon = `<svg version="1.0" xmlns="http://www.w3.org/2000/svg" width="255.000000" height="151.000000" viewBox="0 0 255.000000 151.000000" preserveAspectRatio="xMidYMid meet"><rect x="0" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="135" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="169" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="186" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="9" width="18" height="11" fill="rgb(241,244,246)" /><rect x="101" y="9" width="18" height="11" fill="rgb(211,224,234)" /><rect x="118" y="9" width="18" height="11" fill="rgb(211,224,234)" /><rect x="135" y="9" width="18" height="11" fill="rgb(211,224,234)" /><rect x="152" y="9" width="18" height="11" fill="rgb(234,239,243)" /><rect x="169" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="186" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="19" width="18" height="11" fill="rgb(207,227,242)" /><rect x="101" y="19" width="18" height="11" fill="rgb(129,199,255)" /><rect x="118" y="19" width="18" height="11" fill="rgb(129,200,255)" /><rect x="135" y="19" width="18" height="11" fill="rgb(129,199,255)" /><rect x="152" y="19" width="18" height="11" fill="rgb(186,217,242)" /><rect x="169" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="186" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="29" width="18" height="11" fill="rgb(207,227,242)" /><rect x="101" y="29" width="18" height="11" fill="rgb(129,200,255)" /><rect x="118" y="29" width="18" height="11" fill="rgb(129,200,255)" /><rect x="135" y="29" width="18" height="11" fill="rgb(129,200,255)" /><rect x="152" y="29" width="18" height="11" fill="rgb(186,218,242)" /><rect x="169" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="186" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="39" width="18" height="11" fill="rgb(211,226,238)" /><rect x="101" y="39" width="18" height="11" fill="rgb(131,189,234)" /><rect x="118" y="39" width="18" height="11" fill="rgb(131,189,234)" /><rect x="135" y="39" width="18" height="11" fill="rgb(131,189,234)" /><rect x="152" y="39" width="18" height="11" fill="rgb(190,215,235)" /><rect x="169" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="186" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="39" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="49" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="49" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="49" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="49" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="49" width="18" height="11" fill="rgb(254,254,254)" /><rect x="84" y="49" width="18" height="11" fill="rgb(252,252,252)" /><rect x="101" y="49" width="18" height="11" fill="rgb(244,244,244)" /><rect x="118" y="49" width="18" height="11" fill="rgb(233,233,233)" /><rect x="135" y="49" width="18" height="11" fill="rgb(244,244,244)" /><rect x="152" y="49" width="18" height="11" fill="rgb(250,250,250)" /><rect x="169" y="49" width="18" height="11" fill="rgb(254,254,254)" /><rect x="186" y="49" width="18" height="11" fill="rgb(254,254,254)" /><rect x="203" y="49" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="49" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="49" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="59" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="59" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="59" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="59" width="18" height="11" fill="rgb(250,250,250)" /><rect x="67" y="59" width="18" height="11" fill="rgb(226,226,226)" /><rect x="84" y="59" width="18" height="11" fill="rgb(234,234,234)" /><rect x="101" y="59" width="18" height="11" fill="rgb(234,234,234)" /><rect x="118" y="59" width="18" height="11" fill="rgb(233,233,233)" /><rect x="135" y="59" width="18" height="11" fill="rgb(234,234,234)" /><rect x="152" y="59" width="18" height="11" fill="rgb(234,234,234)" /><rect x="169" y="59" width="18" height="11" fill="rgb(234,234,234)" /><rect x="186" y="59" width="18" height="11" fill="rgb(242,242,242)" /><rect x="203" y="59" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="59" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="59" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="69" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="69" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="69" width="18" height="11" fill="rgb(237,237,237)" /><rect x="50" y="69" width="18" height="11" fill="rgb(232,232,232)" /><rect x="67" y="69" width="18" height="11" fill="rgb(231,231,231)" /><rect x="84" y="69" width="18" height="11" fill="rgb(235,235,235)" /><rect x="101" y="69" width="18" height="11" fill="rgb(254,254,254)" /><rect x="118" y="69" width="18" height="11" fill="rgb(255,255,255)" /><rect x="135" y="69" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="69" width="18" height="11" fill="rgb(236,236,236)" /><rect x="169" y="69" width="18" height="11" fill="rgb(234,234,234)" /><rect x="186" y="69" width="18" height="11" fill="rgb(231,231,231)" /><rect x="203" y="69" width="18" height="11" fill="rgb(236,236,236)" /><rect x="220" y="69" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="69" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="79" width="18" height="11" fill="rgb(242,242,242)" /><rect x="50" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="79" width="18" height="11" fill="rgb(242,242,242)" /><rect x="101" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="135" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="79" width="18" height="11" fill="rgb(242,242,242)" /><rect x="169" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="186" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="79" width="18" height="11" fill="rgb(242,242,242)" /><rect x="220" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="89" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="89" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="89" width="18" height="11" fill="rgb(237,237,237)" /><rect x="50" y="89" width="18" height="11" fill="rgb(234,234,234)" /><rect x="67" y="89" width="18" height="11" fill="rgb(231,231,231)" /><rect x="84" y="89" width="18" height="11" fill="rgb(235,235,235)" /><rect x="101" y="89" width="18" height="11" fill="rgb(254,254,254)" /><rect x="118" y="89" width="18" height="11" fill="rgb(255,255,255)" /><rect x="135" y="89" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="89" width="18" height="11" fill="rgb(236,236,236)" /><rect x="169" y="89" width="18" height="11" fill="rgb(234,234,234)" /><rect x="186" y="89" width="18" height="11" fill="rgb(231,231,231)" /><rect x="203" y="89" width="18" height="11" fill="rgb(236,236,236)" /><rect x="220" y="89" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="89" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="99" width="18" height="11" fill="rgb(254,254,254)" /><rect x="33" y="99" width="18" height="11" fill="rgb(235,235,235)" /><rect x="50" y="99" width="18" height="11" fill="rgb(234,234,234)" /><rect x="67" y="99" width="18" height="11" fill="rgb(228,228,228)" /><rect x="84" y="99" width="18" height="11" fill="rgb(232,232,232)" /><rect x="101" y="99" width="18" height="11" fill="rgb(254,254,254)" /><rect x="118" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="135" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="99" width="18" height="11" fill="rgb(235,235,235)" /><rect x="169" y="99" width="18" height="11" fill="rgb(234,234,234)" /><rect x="186" y="99" width="18" height="11" fill="rgb(228,228,228)" /><rect x="203" y="99" width="18" height="11" fill="rgb(232,232,232)" /><rect x="220" y="99" width="18" height="11" fill="rgb(254,254,254)" /><rect x="237" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="109" width="18" height="11" fill="rgb(254,254,254)" /><rect x="16" y="109" width="18" height="11" fill="rgb(247,247,247)" /><rect x="33" y="109" width="18" height="11" fill="rgb(233,233,233)" /><rect x="50" y="109" width="18" height="11" fill="rgb(252,252,252)" /><rect x="67" y="109" width="18" height="11" fill="rgb(253,253,253)" /><rect x="84" y="109" width="18" height="11" fill="rgb(233,233,233)" /><rect x="101" y="109" width="18" height="11" fill="rgb(246,246,246)" /><rect x="118" y="109" width="18" height="11" fill="rgb(254,254,254)" /><rect x="135" y="109" width="18" height="11" fill="rgb(247,247,247)" /><rect x="152" y="109" width="18" height="11" fill="rgb(233,233,233)" /><rect x="169" y="109" width="18" height="11" fill="rgb(252,252,252)" /><rect x="186" y="109" width="18" height="11" fill="rgb(253,253,253)" /><rect x="203" y="109" width="18" height="11" fill="rgb(233,233,233)" /><rect x="220" y="109" width="18" height="11" fill="rgb(246,246,246)" /><rect x="237" y="109" width="18" height="11" fill="rgb(254,254,254)" /><rect x="0" y="119" width="18" height="11" fill="rgb(254,254,254)" /><rect x="16" y="119" width="18" height="11" fill="rgb(229,229,229)" /><rect x="33" y="119" width="18" height="11" fill="rgb(234,234,234)" /><rect x="50" y="119" width="18" height="11" fill="rgb(239,239,239)" /><rect x="67" y="119" width="18" height="11" fill="rgb(241,241,241)" /><rect x="84" y="119" width="18" height="11" fill="rgb(234,234,234)" /><rect x="101" y="119" width="18" height="11" fill="rgb(226,226,226)" /><rect x="118" y="119" width="18" height="11" fill="rgb(254,254,254)" /><rect x="135" y="119" width="18" height="11" fill="rgb(229,229,229)" /><rect x="152" y="119" width="18" height="11" fill="rgb(234,234,234)" /><rect x="169" y="119" width="18" height="11" fill="rgb(239,239,239)" /><rect x="186" y="119" width="18" height="11" fill="rgb(241,241,241)" /><rect x="203" y="119" width="18" height="11" fill="rgb(234,234,234)" /><rect x="220" y="119" width="18" height="11" fill="rgb(226,226,226)" /><rect x="237" y="119" width="18" height="11" fill="rgb(254,254,254)" /><rect x="0" y="129" width="18" height="11" fill="rgb(254,254,254)" /><rect x="16" y="129" width="18" height="11" fill="rgb(233,233,233)" /><rect x="33" y="129" width="18" height="11" fill="rgb(234,234,234)" /><rect x="50" y="129" width="18" height="11" fill="rgb(243,243,243)" /><rect x="67" y="129" width="18" height="11" fill="rgb(246,246,246)" /><rect x="84" y="129" width="18" height="11" fill="rgb(234,234,234)" /><rect x="101" y="129" width="18" height="11" fill="rgb(231,231,231)" /><rect x="118" y="129" width="18" height="11" fill="rgb(254,254,254)" /><rect x="135" y="129" width="18" height="11" fill="rgb(233,233,233)" /><rect x="152" y="129" width="18" height="11" fill="rgb(234,234,234)" /><rect x="169" y="129" width="18" height="11" fill="rgb(243,243,243)" /><rect x="186" y="129" width="18" height="11" fill="rgb(246,246,246)" /><rect x="203" y="129" width="18" height="11" fill="rgb(234,234,234)" /><rect x="220" y="129" width="18" height="11" fill="rgb(231,231,231)" /><rect x="237" y="129" width="18" height="11" fill="rgb(254,254,254)" /><rect x="0" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="16" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="33" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="50" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="67" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="84" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="101" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="118" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="135" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="152" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="169" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="186" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="203" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="220" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="237" y="139" width="18" height="12" fill="rgb(255,255,255)" /><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#92928C" stroke="none"><path d="M1545 1340 c-3 -5 -2 -10 4 -10 5 0 13 5 16 10 3 6 2 10 -4 10 -5 0 -13 -4 -16 -10z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#929292" stroke="none"><path d="M980 1340 l-15 -9 23 2 c12 0 22 5 22 9 0 11 -12 10 -30 -2z"/><path d="M1020 1340 l0 -10 259 0 260 0 6 9 5 10 -265 1 -265 1 0 -11z"/><path d="M1578 1333 l23 -4 -3 -147 -3 -147 -304 -3 -305 -2 -9 9 -10 10 1 132 1 132 -10 -10 -11 -11 4 -125 3 -126 13 -13 13 -13 149 -3 150 -3 0 -50 0 -49 -289 0 -290 0 -15 -16 -16 -15 0 -44 0 -43 -120 -4 -119 -3 -13 -13 -13 -13 0 -94 0 -94 13 -13 13 -13 124 -3 125 -4 0 -34 0 -34 -139 0 -140 0 -15 -16 -16 -15 0 -60 0 -59 -70 0 -70 0 -20 -20 -20 -20 0 -45 0 -45 20 -20 20 -20 145 0 145 0 20 20 20 20 0 45 0 45 -20 20 -20 20 -65 0 -65 0 0 65 0 65 300 0 300 0 0 -65 0 -65 -70 0 -70 0 -20 -20 -20 -20 0 -45 0 -45 20 -20 20 -20 145 0 145 0 20 20 20 20 0 45 0 45 -20 20 -20 20 -65 0 -65 0 0 59 0 60 -16 15 -15 16 -140 0 -139 0 0 34 0 34 121 4 121 3 15 20 14 20 -3 87 -3 87 -13 13 -13 13 -124 3 -125 4 0 49 0 49 595 0 595 0 0 -49 0 -49 -135 -4 -134 -3 -13 -13 -13 -13 0 -95 0 -96 19 -14 20 -14 128 0 128 0 0 -35 0 -35 -144 0 -145 0 -15 -16 -16 -15 0 -60 0 -59 -70 0 -70 0 -18 -18 -19 -19 -1 -46 -2 -47 20 -20 20 -20 143 0 143 0 22 16 22 15 0 50 0 49 -20 20 -20 20 -65 0 -65 0 0 65 0 65 300 0 300 0 0 -65 0 -65 -70 0 -70 0 -20 -20 -20 -20 0 -45 0 -45 20 -20 20 -20 145 0 145 0 20 20 20 20 0 45 0 45 -20 20 -20 20 -65 0 -65 0 0 59 0 60 -16 15 -15 16 -135 0 -134 0 0 34 0 34 111 4 111 3 15 20 14 20 -3 87 -3 87 -13 13 -13 13 -109 3 -110 4 0 43 0 44 -16 15 -15 16 -285 0 -284 0 0 49 0 50 145 3 144 3 13 13 13 13 3 122 3 122 -10 28 -11 27 -22 -1 -23 -2 23 -4z m-633 -668 l0 -100 -260 0 -260 0 -3 89 c-2 49 -1 95 2 103 l6 13 257 -2 258 -3 0 -100z m1180 0 l0 -100 -260 0 -260 0 -3 89 c-2 49 -1 95 2 103 l6 13 257 -2 258 -3 0 -100z m-1585 -430 l0 -65 -165 0 -165 0 0 65 0 65 165 0 165 0 0 -65z m620 0 l0 -65 -165 0 -165 0 0 65 0 65 165 0 165 0 0 -65z m570 0 l0 -65 -165 0 -165 0 0 65 0 65 165 0 165 0 0 -65z m620 0 l0 -65 -165 0 -165 0 0 65 0 65 165 0 165 0 0 -65z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#BFBFBF" stroke="none"><path d="M674 898 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M374 458 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/><path d="M1564 458 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#D2D2D2" stroke="none"><path d="M424 758 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M935 760 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1604 758 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M2115 760 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M425 570 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M934 568 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/><path d="M1605 570 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M2114 568 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#8CB2DF" stroke="none"><path d="M975 1040 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1584 1038 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#F2F2F2" stroke="none"><path d="M194 308 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/><path d="M545 310 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M814 308 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/><path d="M1165 310 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1384 308 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/><path d="M1735 310 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M2004 308 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/><path d="M2355 310 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M195 160 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M544 158 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M815 160 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1164 158 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/><path d="M1385 160 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1734 158 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/><path d="M2005 160 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M2354 158 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#F8F8F8" stroke="none"><path d="M214 288 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M525 290 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M834 288 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/><path d="M1145 290 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1404 288 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/><path d="M1715 290 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M2024 288 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M2335 290 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M215 180 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M524 178 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/><path d="M835 180 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1144 178 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/><path d="M1405 180 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1714 178 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M2025 180 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M2334 178 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#7FCCFF" stroke="none"><path d="M1004 1308 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/><path d="M1554 1298 l-19 -23 23 19 c21 18 27 26 19 26 -2 0 -12 -10 -23 -22z"/><path d="M978 1073 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 l-19 -1 13 -5z"/><path d="M1020 1060 c0 -7 3 -10 7 -7 3 4 3 10 0 14 -4 3 -7 0 -7 -7z"/><path d="M1570 1049 l0 -10 10 6 c6 3 10 8 10 11 0 2 -4 4 -10 4 -5 0 -10 -5 -10 -11z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#85CCFF" stroke="none"><path d="M985 1314 l-15 -15 0 -110 0 -109 18 -1 17 0 -19 -8 -18 -7 17 -17 17 -18 284 1 284 1 0 15 c0 8 6 14 14 14 l15 0 0 116 c0 64 -3 123 -6 131 l-6 14 -26 -23 -26 -23 18 21 c9 11 17 23 17 27 0 4 -128 6 -285 6 l-284 0 -16 -15z m35 2 c0 -3 -5 -8 -12 -12 l-11 -7 7 11 c7 12 16 16 16 8z m7 -263 c-4 -3 -7 0 -7 7 0 7 3 10 7 7 3 -4 3 -10 0 -14z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#FFFFFF" stroke="none"><path d="M0 755 l0 -755 1275 0 1275 0 0 755 0 755 -1275 0 -1275 0 0 -755z m1608 583 l12 -12 0 -146 0 -146 -12 -12 -12 -12 -148 0 -148 0 0 -50 0 -50 298 -2 297 -3 3 -57 3 -58 112 0 113 0 12 -12 12 -12 0 -101 0 -101 -12 -12 -12 -12 -113 0 -113 0 0 -35 0 -34 148 -3 147 -3 3 -72 3 -72 82 -3 82 -3 0 -80 0 -80 -180 0 -180 0 0 80 0 80 88 3 88 3 -3 62 -3 62 -295 0 -295 0 -3 -62 -3 -62 83 -3 83 -3 0 -80 0 -80 -180 0 -180 0 0 80 0 80 87 3 87 3 3 72 3 72 158 3 157 3 0 34 0 35 -138 0 -138 0 -12 12 -12 12 0 101 0 101 12 12 12 12 139 0 138 0 -3 48 -3 47 -590 0 -590 0 -3 -47 -3 -48 128 0 129 0 12 -12 12 -12 0 -101 0 -101 -12 -12 -12 -12 -123 0 -123 0 0 -35 0 -34 153 -3 152 -3 3 -72 3 -72 82 -3 82 -3 0 -80 0 -80 -180 0 -180 0 0 80 0 80 88 3 88 3 -3 62 -3 62 -295 0 -295 0 -3 -62 -3 -62 83 -3 83 -3 0 -80 0 -80 -180 0 -180 0 0 80 0 80 87 3 87 3 3 72 3 72 153 3 152 3 0 34 0 35 -128 0 -128 0 -12 12 -12 12 0 101 0 101 12 12 12 12 123 0 122 0 3 58 3 57 303 3 302 2 0 50 0 50 -153 0 -153 0 -12 12 -12 12 0 146 0 146 12 12 12 12 311 0 311 0 12 -12z"/><path d="M436 754 l-16 -15 0 -74 0 -74 16 -15 15 -16 234 0 234 0 15 16 16 15 0 74 0 74 -16 15 -15 16 -234 0 -234 0 -15 -16z"/><path d="M1616 754 l-16 -15 0 -74 0 -74 16 -15 15 -16 234 0 234 0 15 16 16 15 0 74 0 74 -16 15 -15 16 -234 0 -234 0 -15 -16z"/><path d="M222 288 l-12 -12 0 -41 0 -41 12 -12 12 -12 141 0 141 0 12 12 12 12 0 41 0 41 -12 12 -12 12 -141 0 -141 0 -12 -12z"/><path d="M842 288 l-12 -12 0 -41 0 -41 12 -12 12 -12 141 0 141 0 12 12 12 12 0 41 0 41 -12 12 -12 12 -141 0 -141 0 -12 -12z"/><path d="M1412 288 l-12 -12 0 -41 0 -41 12 -12 12 -12 141 0 141 0 12 12 12 12 0 41 0 41 -12 12 -12 12 -141 0 -141 0 -12 -12z"/><path d="M2032 288 l-12 -12 0 -41 0 -41 12 -12 12 -12 141 0 141 0 12 12 12 12 0 41 0 41 -12 12 -12 12 -141 0 -141 0 -12 -12z"/></g></svg>`;
21
+ const timelineIcon = `<svg version="1.0" xmlns="http://www.w3.org/2000/svg" width="255.000000" height="151.000000" viewBox="0 0 255.000000 151.000000" preserveAspectRatio="xMidYMid meet"><rect x="0" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="135" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="169" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="186" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="0" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="135" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="169" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="186" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="9" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="135" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="169" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="186" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="19" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="29" width="18" height="11" fill="rgb(253,253,253)" /><rect x="16" y="29" width="18" height="11" fill="rgb(244,244,244)" /><rect x="33" y="29" width="18" height="11" fill="rgb(244,244,244)" /><rect x="50" y="29" width="18" height="11" fill="rgb(244,244,244)" /><rect x="67" y="29" width="18" height="11" fill="rgb(254,254,254)" /><rect x="84" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="135" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="169" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="186" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="29" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="39" width="18" height="11" fill="rgb(218,230,239)" /><rect x="16" y="39" width="18" height="11" fill="rgb(131,189,234)" /><rect x="33" y="39" width="18" height="11" fill="rgb(131,189,234)" /><rect x="50" y="39" width="18" height="11" fill="rgb(132,189,234)" /><rect x="67" y="39" width="18" height="11" fill="rgb(225,231,235)" /><rect x="84" y="39" width="18" height="11" fill="rgb(231,231,231)" /><rect x="101" y="39" width="18" height="11" fill="rgb(234,234,234)" /><rect x="118" y="39" width="18" height="11" fill="rgb(235,235,235)" /><rect x="135" y="39" width="18" height="11" fill="rgb(234,234,234)" /><rect x="152" y="39" width="18" height="11" fill="rgb(234,234,234)" /><rect x="169" y="39" width="18" height="11" fill="rgb(229,229,229)" /><rect x="186" y="39" width="18" height="11" fill="rgb(235,235,235)" /><rect x="203" y="39" width="18" height="11" fill="rgb(234,234,234)" /><rect x="220" y="39" width="18" height="11" fill="rgb(234,234,234)" /><rect x="237" y="39" width="18" height="11" fill="rgb(244,244,244)" /><rect x="0" y="49" width="18" height="11" fill="rgb(214,230,242)" /><rect x="16" y="49" width="18" height="11" fill="rgb(129,200,255)" /><rect x="33" y="49" width="18" height="11" fill="rgb(129,200,255)" /><rect x="50" y="49" width="18" height="11" fill="rgb(129,199,255)" /><rect x="67" y="49" width="18" height="11" fill="rgb(202,210,216)" /><rect x="84" y="49" width="18" height="11" fill="rgb(248,248,248)" /><rect x="101" y="49" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="49" width="18" height="11" fill="rgb(236,236,236)" /><rect x="135" y="49" width="18" height="11" fill="rgb(237,237,237)" /><rect x="152" y="49" width="18" height="11" fill="rgb(255,255,255)" /><rect x="169" y="49" width="18" height="11" fill="rgb(242,242,242)" /><rect x="186" y="49" width="18" height="11" fill="rgb(228,228,228)" /><rect x="203" y="49" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="49" width="18" height="11" fill="rgb(254,254,254)" /><rect x="237" y="49" width="18" height="11" fill="rgb(242,242,242)" /><rect x="0" y="59" width="18" height="11" fill="rgb(214,230,242)" /><rect x="16" y="59" width="18" height="11" fill="rgb(129,199,255)" /><rect x="33" y="59" width="18" height="11" fill="rgb(129,200,255)" /><rect x="50" y="59" width="18" height="11" fill="rgb(129,199,255)" /><rect x="67" y="59" width="18" height="11" fill="rgb(222,229,235)" /><rect x="84" y="59" width="18" height="11" fill="rgb(227,227,227)" /><rect x="101" y="59" width="18" height="11" fill="rgb(234,234,234)" /><rect x="118" y="59" width="18" height="11" fill="rgb(235,235,235)" /><rect x="135" y="59" width="18" height="11" fill="rgb(230,230,230)" /><rect x="152" y="59" width="18" height="11" fill="rgb(234,234,234)" /><rect x="169" y="59" width="18" height="11" fill="rgb(229,229,229)" /><rect x="186" y="59" width="18" height="11" fill="rgb(232,232,232)" /><rect x="203" y="59" width="18" height="11" fill="rgb(232,232,232)" /><rect x="220" y="59" width="18" height="11" fill="rgb(234,234,234)" /><rect x="237" y="59" width="18" height="11" fill="rgb(244,244,244)" /><rect x="0" y="69" width="18" height="11" fill="rgb(243,246,247)" /><rect x="16" y="69" width="18" height="11" fill="rgb(211,224,234)" /><rect x="33" y="69" width="18" height="11" fill="rgb(211,224,234)" /><rect x="50" y="69" width="18" height="11" fill="rgb(211,224,234)" /><rect x="67" y="69" width="18" height="11" fill="rgb(248,249,250)" /><rect x="84" y="69" width="18" height="11" fill="rgb(242,242,242)" /><rect x="101" y="69" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="69" width="18" height="11" fill="rgb(254,254,254)" /><rect x="135" y="69" width="18" height="11" fill="rgb(242,242,242)" /><rect x="152" y="69" width="18" height="11" fill="rgb(255,255,255)" /><rect x="169" y="69" width="18" height="11" fill="rgb(254,254,254)" /><rect x="186" y="69" width="18" height="11" fill="rgb(242,242,242)" /><rect x="203" y="69" width="18" height="11" fill="rgb(248,248,248)" /><rect x="220" y="69" width="18" height="11" fill="rgb(254,254,254)" /><rect x="237" y="69" width="18" height="11" fill="rgb(254,254,254)" /><rect x="0" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="79" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="79" width="18" height="11" fill="rgb(242,242,242)" /><rect x="101" y="79" width="18" height="11" fill="rgb(237,237,237)" /><rect x="118" y="79" width="18" height="11" fill="rgb(232,232,232)" /><rect x="135" y="79" width="18" height="11" fill="rgb(240,240,240)" /><rect x="152" y="79" width="18" height="11" fill="rgb(240,240,240)" /><rect x="169" y="79" width="18" height="11" fill="rgb(234,234,234)" /><rect x="186" y="79" width="18" height="11" fill="rgb(235,235,235)" /><rect x="203" y="79" width="18" height="11" fill="rgb(237,237,237)" /><rect x="220" y="79" width="18" height="11" fill="rgb(234,234,234)" /><rect x="237" y="79" width="18" height="11" fill="rgb(245,245,245)" /><rect x="0" y="89" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="89" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="89" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="89" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="89" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="89" width="18" height="11" fill="rgb(235,235,235)" /><rect x="101" y="89" width="18" height="11" fill="rgb(237,237,237)" /><rect x="118" y="89" width="18" height="11" fill="rgb(242,242,242)" /><rect x="135" y="89" width="18" height="11" fill="rgb(232,232,232)" /><rect x="152" y="89" width="18" height="11" fill="rgb(234,234,234)" /><rect x="169" y="89" width="18" height="11" fill="rgb(254,254,254)" /><rect x="186" y="89" width="18" height="11" fill="rgb(229,229,229)" /><rect x="203" y="89" width="18" height="11" fill="rgb(225,225,225)" /><rect x="220" y="89" width="18" height="11" fill="rgb(254,254,254)" /><rect x="237" y="89" width="18" height="11" fill="rgb(242,242,242)" /><rect x="0" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="99" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="99" width="18" height="11" fill="rgb(242,242,242)" /><rect x="101" y="99" width="18" height="11" fill="rgb(233,233,233)" /><rect x="118" y="99" width="18" height="11" fill="rgb(225,225,225)" /><rect x="135" y="99" width="18" height="11" fill="rgb(241,241,241)" /><rect x="152" y="99" width="18" height="11" fill="rgb(238,238,238)" /><rect x="169" y="99" width="18" height="11" fill="rgb(224,224,224)" /><rect x="186" y="99" width="18" height="11" fill="rgb(236,236,236)" /><rect x="203" y="99" width="18" height="11" fill="rgb(237,237,237)" /><rect x="220" y="99" width="18" height="11" fill="rgb(224,224,224)" /><rect x="237" y="99" width="18" height="11" fill="rgb(244,244,244)" /><rect x="0" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="109" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="109" width="18" height="11" fill="rgb(236,236,236)" /><rect x="101" y="109" width="18" height="11" fill="rgb(225,225,225)" /><rect x="118" y="109" width="18" height="11" fill="rgb(229,229,229)" /><rect x="135" y="109" width="18" height="11" fill="rgb(229,229,229)" /><rect x="152" y="109" width="18" height="11" fill="rgb(225,225,225)" /><rect x="169" y="109" width="18" height="11" fill="rgb(234,234,234)" /><rect x="186" y="109" width="18" height="11" fill="rgb(228,228,228)" /><rect x="203" y="109" width="18" height="11" fill="rgb(220,220,220)" /><rect x="220" y="109" width="18" height="11" fill="rgb(234,234,234)" /><rect x="237" y="109" width="18" height="11" fill="rgb(237,237,237)" /><rect x="0" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="119" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="119" width="18" height="11" fill="rgb(251,251,251)" /><rect x="101" y="119" width="18" height="11" fill="rgb(233,233,233)" /><rect x="118" y="119" width="18" height="11" fill="rgb(231,231,231)" /><rect x="135" y="119" width="18" height="11" fill="rgb(246,246,246)" /><rect x="152" y="119" width="18" height="11" fill="rgb(234,234,234)" /><rect x="169" y="119" width="18" height="11" fill="rgb(234,234,234)" /><rect x="186" y="119" width="18" height="11" fill="rgb(244,244,244)" /><rect x="203" y="119" width="18" height="11" fill="rgb(236,236,236)" /><rect x="220" y="119" width="18" height="11" fill="rgb(234,234,234)" /><rect x="237" y="119" width="18" height="11" fill="rgb(241,241,241)" /><rect x="0" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="16" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="33" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="50" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="67" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="84" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="101" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="118" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="135" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="152" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="169" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="186" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="203" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="220" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="237" y="129" width="18" height="11" fill="rgb(255,255,255)" /><rect x="0" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="16" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="33" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="50" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="67" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="84" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="101" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="118" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="135" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="152" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="169" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="186" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="203" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="220" y="139" width="18" height="12" fill="rgb(255,255,255)" /><rect x="237" y="139" width="18" height="12" fill="rgb(255,255,255)" /><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#92928C" stroke="none"><path d="M700 1060 c0 -7 3 -10 7 -7 3 4 3 10 0 14 -4 3 -7 0 -7 -7z"/><path d="M120 1050 c0 -7 3 -10 7 -7 3 4 3 10 0 14 -4 3 -7 0 -7 -7z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#8C9292" stroke="none"><path d="M690 1070 c0 -7 3 -10 7 -7 3 4 3 10 0 14 -4 3 -7 0 -7 -7z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#929292" stroke="none"><path d="M170 1110 l0 -10 253 0 253 0 12 -12 12 -12 0 12 c0 7 -12 17 -26 22 l-25 10 -240 0 -239 0 0 -10z"/><path d="M130 1090 c0 -7 3 -10 7 -7 3 4 3 10 0 14 -4 3 -7 0 -7 -7z"/><path d="M856 1077 l-19 -14 -5 -51 -5 -52 -58 0 -59 0 0 44 c0 25 -4 48 -10 51 l-9 6 -3 -128 -3 -128 -258 -3 -257 -2 0 -11 0 -10 255 3 254 3 12 12 11 11 5 66 6 66 57 0 57 0 7 -40 6 -41 26 -9 c14 -6 36 -10 50 -10 l24 0 0 -249 0 -250 16 -15 15 -16 45 0 44 0 0 -10 c0 -5 9 -19 20 -30 l20 -20 115 0 115 0 20 20 20 20 0 45 0 45 -20 20 -20 20 -115 0 -115 0 -20 -20 -20 -20 0 -25 0 -25 -50 0 -50 0 0 115 0 115 45 0 45 0 0 -15 c0 -8 9 -24 20 -35 l20 -20 115 0 115 0 20 20 20 20 0 45 0 45 -20 20 -20 20 -115 0 -115 0 -20 -20 c-11 -11 -20 -29 -20 -40 l0 -20 -45 0 -45 0 0 130 0 130 144 0 145 0 25 10 26 9 6 41 7 40 36 0 37 0 10 -42 9 -43 38 -9 37 -10 0 -247 0 -248 16 -15 15 -16 45 0 44 0 0 -10 c0 -5 9 -19 20 -30 l20 -20 115 0 115 0 20 20 20 20 0 45 0 45 -20 20 -20 20 -115 0 -115 0 -20 -20 -20 -20 0 -25 0 -25 -50 0 -50 0 0 115 0 115 45 0 45 0 0 -15 c0 -8 9 -24 20 -35 l20 -20 113 0 113 0 22 16 22 15 0 50 0 49 -20 20 -20 20 -115 0 -115 0 -20 -20 c-11 -11 -20 -29 -20 -40 l0 -20 -45 0 -45 0 0 130 0 130 154 0 155 0 25 10 26 9 6 41 7 40 31 0 32 0 10 -42 9 -43 33 -9 32 -9 0 -248 0 -248 16 -15 15 -16 45 0 44 0 0 -10 c0 -5 9 -19 20 -30 l20 -20 115 0 115 0 20 20 20 20 0 45 0 45 -20 20 -20 20 -115 0 -115 0 -20 -20 -20 -20 0 -25 0 -25 -50 0 -50 0 0 115 0 115 45 0 45 0 0 -15 c0 -8 9 -24 20 -35 l20 -20 115 0 115 0 20 20 20 20 0 45 0 45 -20 20 -20 20 -115 0 -115 0 -20 -20 c-11 -11 -20 -29 -20 -40 l0 -20 -45 0 -45 0 0 130 0 130 168 0 168 0 20 14 19 14 0 96 0 95 -13 13 -13 13 -209 0 -209 0 -12 -12 c-6 -6 -14 -35 -17 -62 l-5 -51 -32 0 -32 0 -5 51 c-3 27 -11 56 -17 62 l-12 12 -202 3 -202 3 -19 -14 -19 -14 -5 -51 -5 -52 -37 0 -37 0 -5 51 c-3 27 -11 56 -17 62 l-12 12 -202 3 -202 3 -19 -14z m429 -112 l0 -100 -215 0 -215 0 -3 89 c-2 49 0 95 2 103 l6 13 212 -2 213 -3 0 -100z m560 0 l0 -100 -215 0 -215 0 -3 89 c-2 49 0 95 2 103 l6 13 212 -2 213 -3 0 -100z m550 0 l0 -100 -215 0 -215 0 -3 89 c-2 49 0 95 2 103 l6 13 212 -2 213 -3 0 -100z m-1055 -390 l0 -65 -135 0 -135 0 0 65 0 65 135 0 135 0 0 -65z m540 0 l0 -65 -135 0 -135 0 0 65 0 65 135 0 135 0 0 -65z m540 0 l0 -65 -135 0 -135 0 0 65 0 65 135 0 135 0 0 -65z m-1070 -240 l0 -65 -135 0 -135 0 0 65 0 65 135 0 135 0 0 -65z m540 0 l0 -65 -135 0 -135 0 0 65 0 65 135 0 135 0 0 -65z m540 0 l0 -65 -135 0 -135 0 0 65 0 65 135 0 135 0 0 -65z"/><path d="M122 950 l1 -120 8 0 9 0 0 120 0 120 -9 0 -9 0 0 -120z"/><path d="M130 810 c0 -7 3 -10 7 -7 3 4 3 10 0 14 -4 3 -7 0 -7 -7z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#BFBFBF" stroke="none"><path d="M945 320 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1485 320 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M2025 320 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#D2D2D2" stroke="none"><path d="M854 1058 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M1275 1060 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1414 1058 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M1835 1060 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1964 1058 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M2385 1060 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M855 870 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1274 868 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M1415 870 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1834 868 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M1965 870 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M2384 868 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#F2F2F2" stroke="none"><path d="M1054 648 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M1345 650 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1594 648 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/><path d="M1885 650 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M2134 648 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/><path d="M2425 650 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1055 500 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1344 498 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M1595 500 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1884 498 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M2135 500 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M2424 498 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M1064 408 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/><path d="M1355 410 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1604 408 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M1895 410 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M2144 408 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M2435 410 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1065 260 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1354 258 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/><path d="M1605 260 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1894 258 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/><path d="M2145 260 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M2434 258 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#F8F8F8" stroke="none"><path d="M1074 628 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/><path d="M1325 630 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1614 628 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M1865 630 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M2154 628 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M2405 630 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1075 520 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1324 518 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M1615 520 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1864 518 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M2155 520 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M2404 518 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M1084 388 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/><path d="M1335 390 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1624 388 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M1875 390 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M2164 388 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M2415 390 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1085 280 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1334 278 l-7 -11 11 7 c7 4 12 9 12 12 0 8 -9 4 -16 -8z"/><path d="M1625 280 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M1874 278 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/><path d="M2165 280 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M2414 278 l-7 -11 11 7 c12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#7FCCFF" stroke="none"><path d="M646 1074 c-4 -9 -4 -19 -1 -22 3 -3 5 0 5 7 0 7 4 10 8 7 5 -3 9 1 9 9 0 20 -13 19 -21 -1z"/><path d="M675 860 c3 -5 8 -10 11 -10 3 0 2 5 -1 10 -3 6 -8 10 -11 10 -3 0 -2 -4 1 -10z"/><path d="M640 840 c0 -7 3 -10 7 -7 3 4 3 10 0 14 -4 3 -7 0 -7 -7z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#85CCFF" stroke="none"><path d="M152 1088 l-12 -12 0 -126 0 -126 12 -12 12 -12 246 0 246 0 20 14 19 15 -13 21 -13 22 10 -7 11 -6 0 100 c0 103 -5 135 -21 125 -5 -3 -6 -10 -3 -16 l7 -11 -11 7 -12 7 0 -12 c0 -7 -3 -10 -6 -7 -3 4 -1 16 6 27 l11 21 -249 0 -248 0 -12 -12z m495 -255 c-4 -3 -7 0 -7 7 0 7 3 10 7 7 3 -4 3 -10 0 -14z"/></g><g transform="translate(0.000000,151.000000) scale(0.100000,-0.100000)" fill="#FFFFFF" stroke="none"><path d="M0 755 l0 -755 1275 0 1275 0 0 755 0 755 -1275 0 -1275 0 0 -755z m698 353 l12 -12 0 -68 0 -68 60 0 60 0 0 53 0 53 12 12 12 12 216 0 216 0 12 -12 12 -12 0 -53 0 -53 40 0 40 0 0 53 0 53 12 12 12 12 216 0 216 0 12 -12 12 -12 0 -53 0 -53 35 0 35 0 0 53 0 53 12 12 12 12 216 0 216 0 12 -12 12 -12 0 -101 0 -101 -12 -12 -12 -12 -178 0 -178 0 0 -130 0 -130 44 0 45 0 3 37 3 38 150 0 150 0 0 -80 0 -80 -150 0 -150 0 -3 33 -3 32 -45 0 -45 0 3 -112 3 -113 47 -3 47 -3 3 43 3 43 150 0 150 0 0 -80 0 -80 -150 0 -150 0 -3 27 -3 27 -57 3 -57 3 -3 263 -2 262 -28 0 c-15 0 -33 5 -40 12 l-12 12 0 38 0 38 -35 0 -35 0 0 -38 0 -38 -12 -12 -12 -12 -173 0 -173 0 0 -130 0 -130 44 0 45 0 3 38 3 37 150 0 150 0 0 -80 0 -80 -150 0 -150 0 -3 33 -3 32 -45 0 -45 0 3 -112 3 -113 47 -3 47 -3 3 43 3 43 150 0 150 0 0 -80 0 -80 -150 0 -150 0 -3 27 -3 27 -57 3 -57 3 -3 263 -2 262 -33 0 c-18 0 -38 5 -45 12 l-12 12 0 38 0 38 -40 0 -40 0 0 -38 0 -38 -12 -12 -12 -12 -163 0 -163 0 0 -130 0 -130 44 0 45 0 3 38 3 37 150 0 150 0 0 -80 0 -80 -150 0 -150 0 -3 33 -3 32 -45 0 -45 0 3 -112 3 -113 47 -3 47 -3 3 43 3 43 150 0 150 0 0 -80 0 -80 -150 0 -150 0 -3 27 -3 27 -57 3 -57 3 -3 263 -2 262 -43 0 -43 0 -12 12 -12 12 0 38 0 38 -60 0 -60 0 0 -68 0 -68 -12 -12 -12 -12 -271 0 -271 0 -12 12 -12 12 0 146 0 146 12 12 12 12 271 0 271 0 12 -12z"/><path d="M866 1054 l-16 -15 0 -74 0 -74 16 -15 15 -16 189 0 189 0 15 16 16 15 0 74 0 74 -16 15 -15 16 -189 0 -189 0 -15 -16z"/><path d="M1426 1054 l-16 -15 0 -74 0 -74 16 -15 15 -16 189 0 189 0 15 16 16 15 0 74 0 74 -16 15 -15 16 -189 0 -189 0 -15 -16z"/><path d="M1976 1054 l-16 -15 0 -74 0 -74 16 -15 15 -16 189 0 189 0 15 16 16 15 0 74 0 74 -16 15 -15 16 -189 0 -189 0 -15 -16z"/><path d="M1082 628 l-12 -12 0 -41 0 -41 12 -12 12 -12 111 0 111 0 12 12 12 12 0 41 0 41 -12 12 -12 12 -111 0 -111 0 -12 -12z"/><path d="M1622 628 l-12 -12 0 -41 0 -41 12 -12 12 -12 111 0 111 0 12 12 12 12 0 41 0 41 -12 12 -12 12 -111 0 -111 0 -12 -12z"/><path d="M2162 628 l-12 -12 0 -41 0 -41 12 -12 12 -12 111 0 111 0 12 12 12 12 0 41 0 41 -12 12 -12 12 -111 0 -111 0 -12 -12z"/><path d="M1092 388 l-12 -12 0 -41 0 -41 12 -12 12 -12 111 0 111 0 12 12 12 12 0 41 0 41 -12 12 -12 12 -111 0 -111 0 -12 -12z"/><path d="M1632 388 l-12 -12 0 -41 0 -41 12 -12 12 -12 111 0 111 0 12 12 12 12 0 41 0 41 -12 12 -12 12 -111 0 -111 0 -12 -12z"/><path d="M2172 388 l-12 -12 0 -41 0 -41 12 -12 12 -12 111 0 111 0 12 12 12 12 0 41 0 41 -12 12 -12 12 -111 0 -111 0 -12 -12z"/></g></svg>`;
22
+ const contractIcon = `<svg t="1761475762316" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2405" width="20" height="20"><path d="M373.408 200.224a32 32 0 0 0-42.816 47.552l293.664 264.256-291.84 264.256a32 32 0 0 0-4.8 42.048l2.56 3.136a32 32 0 0 0 45.184 2.24l318.112-288a32 32 0 0 0-0.064-47.488l-320-288z" fill="#111111" p-id="2406"></path></svg>`;
23
+ const expandIcon = `<svg t="1761475982886" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2574" width="20" height="20"><path d="M631.04 161.941333a42.666667 42.666667 0 0 1 63.061333 57.386667l-2.474666 2.730667-289.962667 292.245333 289.706667 287.402667a42.666667 42.666667 0 0 1 2.730666 57.6l-2.474666 2.752a42.666667 42.666667 0 0 1-57.6 2.709333l-2.752-2.474667-320-317.44a42.666667 42.666667 0 0 1-2.709334-57.6l2.474667-2.752 320-322.56z" fill="#111111" p-id="2575"></path></svg>`;
24
+ exports.backIcon = backIcon;
25
+ exports.catalogOrganizationIcon = catalogOrganizationIcon;
26
+ exports.contractIcon = contractIcon;
27
+ exports.expandIcon = expandIcon;
28
+ exports.fishboneIcon = fishboneIcon;
29
+ exports.fitIcon = fitIcon;
30
+ exports.forwardIcon = forwardIcon;
31
+ exports.insertChildNodeIcon = insertChildNodeIcon;
32
+ exports.insertIconIcon = insertIconIcon;
33
+ exports.insertNodeIcon = insertNodeIcon;
34
+ exports.insertParentNodeIcon = insertParentNodeIcon;
35
+ exports.logicalStructureIcon = logicalStructureIcon;
36
+ exports.mindMapIcon = mindMapIcon;
37
+ exports.organizationStructureIcon = organizationStructureIcon;
38
+ exports.removeNodeIcon = removeNodeIcon;
39
+ exports.screenReduceIcon = screenReduceIcon;
40
+ exports.screenTypeIcon = screenTypeIcon;
41
+ exports.setLayoutIcon = setLayoutIcon;
42
+ exports.timelineIcon = timelineIcon;
43
+ exports.zoomInIcon = zoomInIcon;
44
+ exports.zoomOutIcon = zoomOutIcon;
45
+ //# sourceMappingURL=icons.cjs.js.map