rapid-router 5.4.1__py2.py3-none-any.whl → 7.6.8__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (354) hide show
  1. example_project/rapid_router_test_settings.py +164 -0
  2. example_project/settings.py +152 -0
  3. example_project/urls.py +15 -0
  4. example_project/{example_project/wsgi.py → wsgi.py} +2 -1
  5. game/__init__.py +1 -1
  6. game/admin.py +43 -4
  7. game/app_settings.py +3 -7
  8. game/character.py +26 -18
  9. game/decor.py +172 -97
  10. game/end_to_end_tests/base_game_test.py +44 -33
  11. game/end_to_end_tests/editor_page.py +17 -2
  12. game/end_to_end_tests/game_page.py +127 -45
  13. game/end_to_end_tests/selenium_test_case.py +1 -20
  14. game/end_to_end_tests/test_cow_crashes.py +3 -5
  15. game/end_to_end_tests/test_language_dropdown.py +14 -0
  16. game/end_to_end_tests/test_level_editor.py +290 -0
  17. game/end_to_end_tests/test_level_failures.py +1 -1
  18. game/end_to_end_tests/test_level_selection.py +79 -0
  19. game/end_to_end_tests/test_play_through.py +240 -102
  20. game/end_to_end_tests/test_python_levels.py +44 -13
  21. game/end_to_end_tests/test_saving_workspace.py +22 -0
  22. game/forms.py +9 -2
  23. game/level_management.py +38 -29
  24. game/messages.py +1218 -203
  25. game/migrations/0001_squashed_0025_levels_ordering_pt1.py +19 -1
  26. game/migrations/0026_levels_pt2.py +13 -2
  27. game/migrations/0032_cannot_turn_left_level.py +13 -2
  28. game/migrations/0033_recursion_level.py +13 -2
  29. game/migrations/0034_joes_level.py +13 -2
  30. game/migrations/0035_disable_route_score_level_70.py +0 -2
  31. game/migrations/0036_level_score_73.py +0 -2
  32. game/migrations/0037_level_score_79.py +0 -2
  33. game/migrations/0038_level_score_40.py +0 -1
  34. game/migrations/0042_level_score_73.py +0 -2
  35. game/migrations/0048_add_cow_field_and_blocks.py +0 -2
  36. game/migrations/0049_level_score_34.py +0 -2
  37. game/migrations/0050_level_score_40.py +0 -2
  38. game/migrations/0051_level_score_49.py +0 -1
  39. game/migrations/0076_level_locked_for_class.py +19 -0
  40. game/migrations/0077_alter_level_next_level.py +52 -0
  41. game/migrations/0078_add_block_types.py +23 -0
  42. game/migrations/0079_populate_block_type_add_cow_blocks.py +60 -0
  43. game/migrations/0080_level_disable_algorithm_score.py +18 -0
  44. game/migrations/0081_first_12_levels_no_algo_score.py +29 -0
  45. game/migrations/0082_level_43_solution.py +16 -0
  46. game/migrations/0083_add_cows_to_existing_levels.py +195 -0
  47. game/migrations/0084_alter_block_block_type.py +18 -0
  48. game/migrations/0085_add_new_blocks.py +53 -0
  49. game/migrations/0086_loop_levels.py +482 -0
  50. game/migrations/0087_workspace_python_view_enabled.py +18 -0
  51. game/migrations/0088_rename_episodes.py +35 -0
  52. game/migrations/0089_episodes_in_development.py +30 -0
  53. game/migrations/0090_add_missing_model_solutions.py +144 -0
  54. game/migrations/0091_disable_algo_score_if_no_model_solution.py +46 -0
  55. game/migrations/0092_disable_algo_score_in_custom_levels.py +28 -0
  56. game/migrations/0093_alter_level_character_name.py +18 -0
  57. game/migrations/0094_add_hint_lesson_subtitle_to_levels.py +28 -0
  58. game/migrations/0095_level_commands.py +18 -0
  59. game/migrations/0096_alter_level_commands.py +18 -0
  60. game/migrations/0097_add_python_den_levels.py +1515 -0
  61. game/migrations/0098_add_episode_link_fields.py +44 -0
  62. game/migrations/0099_python_episodes_links.py +103 -0
  63. game/migrations/0100_reorder_python_levels.py +179 -0
  64. game/migrations/0101_rename_episodes.py +45 -0
  65. game/migrations/0102_reoder_episodes_13_14.py +136 -0
  66. game/migrations/0103_level_1015_solution.py +26 -0
  67. game/migrations/0104_remove_level_direct_drive.py +17 -0
  68. game/migrations/0105_delete_invalid_attempts.py +18 -0
  69. game/migrations/0106_fields_to_snake_case.py +48 -0
  70. game/migrations/0107_rename_worksheet_link_episode_student_worksheet_link.py +18 -0
  71. game/migrations/0108_episode_indy_worksheet_link.py +18 -0
  72. game/migrations/0109_create_episodes_23_and_24.py +99 -0
  73. game/migrations/0110_remove_episode_indy_worksheet_link_and_more.py +100 -0
  74. game/migrations/0111_create_worksheets.py +149 -0
  75. game/migrations/0112_worksheet_locked_classes.py +21 -0
  76. game/migrations/0113_level_needs_approval.py +18 -0
  77. game/migrations/0114_default_and_non_student_levels_no_approval.py +31 -0
  78. game/migrations/0115_level_level__default_does_not_need_approval.py +22 -0
  79. game/migrations/0116_update_worksheet_video_links.py +68 -0
  80. game/migrations/0117_update_solutions_to_if_else.py +61 -0
  81. game/models.py +157 -16
  82. game/permissions.py +34 -19
  83. game/python_den_urls.py +26 -0
  84. game/random_road.py +43 -127
  85. game/serializers.py +12 -17
  86. game/static/django_reverse_js/js/reverse.js +171 -0
  87. game/static/game/css/LilitaOne-Regular.ttf +0 -0
  88. game/static/game/css/backgrounds.css +14 -10
  89. game/static/game/css/dataTables.custom.css +4 -2
  90. game/static/game/css/dataTables.jqueryui.css +561 -320
  91. game/static/game/css/editor.css +47 -0
  92. game/static/game/css/game.css +43 -49
  93. game/static/game/css/game_screen.css +116 -53
  94. game/static/game/css/jquery.dataTables.css +455 -251
  95. game/static/game/css/level_editor.css +10 -1
  96. game/static/game/css/level_selection.css +32 -3
  97. game/static/game/css/level_share.css +6 -5
  98. game/static/game/css/skulpt/codemirror.css +1 -0
  99. game/static/game/image/Python_Den_hero_student.png +0 -0
  100. game/static/game/image/Python_levels_page.svg +1954 -0
  101. game/static/game/image/characters/front_view/Electric_van.svg +448 -0
  102. game/static/game/image/characters/top_view/Electric_van.svg +448 -0
  103. game/static/game/image/characters/top_view/Sleigh.svg +436 -0
  104. game/static/game/image/decor/city/solar_panel.svg +1200 -0
  105. game/static/game/image/decor/farm/solar_panel.svg +86 -0
  106. game/static/game/image/decor/grass/solar_panel.svg +86 -0
  107. game/static/game/image/decor/snow/barn.svg +1788 -0
  108. game/static/game/image/decor/snow/cfc.svg +1050 -147
  109. game/static/game/image/decor/snow/crops.svg +7370 -0
  110. game/static/game/image/decor/snow/hospital.svg +1220 -0
  111. game/static/game/image/decor/snow/house1.svg +971 -0
  112. game/static/game/image/decor/snow/house2.svg +1574 -0
  113. game/static/game/image/decor/snow/school.svg +1071 -0
  114. game/static/game/image/decor/snow/shop.svg +3211 -0
  115. game/static/game/image/decor/snow/solar_panel.svg +173 -0
  116. game/static/game/image/electric_van.svg +448 -0
  117. game/static/game/image/icons/add_house.svg +26 -0
  118. game/static/game/image/icons/delete_house.svg +26 -0
  119. game/static/game/image/icons/description.svg +1 -0
  120. game/static/game/image/icons/hint.svg +1 -0
  121. game/static/game/image/icons/if_else.svg +3 -0
  122. game/static/game/image/icons/python.svg +1 -1
  123. game/static/game/image/if_else_example.png +0 -0
  124. game/static/game/image/pigeon.svg +684 -0
  125. game/static/game/image/python_den_header.svg +19 -0
  126. game/static/game/js/animation.js +84 -28
  127. game/static/game/js/blockly/msg/js/bg.js +52 -1
  128. game/static/game/js/blockly/msg/js/ca.js +52 -1
  129. game/static/game/js/blockly/msg/js/en-gb.js +52 -1
  130. game/static/game/js/blockly/msg/js/en.js +52 -1
  131. game/static/game/js/blockly/msg/js/es.js +52 -1
  132. game/static/game/js/blockly/msg/js/fr.js +52 -1
  133. game/static/game/js/blockly/msg/js/hi.js +52 -1
  134. game/static/game/js/blockly/msg/js/it.js +52 -1
  135. game/static/game/js/blockly/msg/js/pl.js +52 -1
  136. game/static/game/js/blockly/msg/js/pt-br.js +52 -1
  137. game/static/game/js/blockly/msg/js/ru.js +52 -1
  138. game/static/game/js/blockly/msg/js/ur.js +52 -1
  139. game/static/game/js/blocklyCompiler.js +550 -392
  140. game/static/game/js/blocklyControl.js +335 -302
  141. game/static/game/js/blocklyCustomBlocks.js +691 -458
  142. game/static/game/js/blocklyCustomisations.js +3 -1
  143. game/static/game/js/button.js +12 -0
  144. game/static/game/js/cow.js +15 -130
  145. game/static/game/js/drawing.js +313 -201
  146. game/static/game/js/editor.js +23 -0
  147. game/static/game/js/game.js +148 -139
  148. game/static/game/js/jquery.dataTables.min.js +3 -159
  149. game/static/game/js/level_editor.js +823 -448
  150. game/static/game/js/level_moderation.js +33 -2
  151. game/static/game/js/level_selection.js +62 -25
  152. game/static/game/js/loadLanguages.js +21 -0
  153. game/static/game/js/map.js +106 -36
  154. game/static/game/js/model.js +55 -107
  155. game/static/game/js/pathFinder.js +73 -72
  156. game/static/game/js/program.js +184 -193
  157. game/static/game/js/pythonControl.js +14 -1
  158. game/static/game/js/scoreboard.js +0 -37
  159. game/static/game/js/scoreboardSharedLevels.js +48 -0
  160. game/static/game/js/sharing.js +22 -10
  161. game/static/game/js/skulpt/codemirror.js +5 -4
  162. game/static/game/js/skulpt/skulpt-stdlib.js +1 -1
  163. game/static/game/js/sound.js +52 -5
  164. game/static/game/js/van.js +0 -7
  165. game/static/game/raphael_image/characters/top_view/Electric_van.svg +448 -0
  166. game/static/game/raphael_image/characters/top_view/Sleigh.svg +436 -0
  167. game/static/game/raphael_image/decor/city/solar_panel.svg +1200 -0
  168. game/static/game/raphael_image/decor/farm/solar_panel.svg +86 -0
  169. game/static/game/raphael_image/decor/grass/solar_panel.svg +86 -0
  170. game/static/game/raphael_image/decor/snow/barn.svg +1788 -0
  171. game/static/game/raphael_image/decor/snow/cfc.svg +1050 -147
  172. game/static/game/raphael_image/decor/snow/crops.svg +7370 -0
  173. game/static/game/raphael_image/decor/snow/hospital.svg +1220 -0
  174. game/static/game/raphael_image/decor/snow/house1.svg +971 -0
  175. game/static/game/raphael_image/decor/snow/house2.svg +1574 -0
  176. game/static/game/raphael_image/decor/snow/school.svg +1071 -0
  177. game/static/game/raphael_image/decor/snow/shop.svg +3211 -0
  178. game/static/game/raphael_image/decor/snow/solar_panel.svg +173 -0
  179. game/static/game/raphael_image/pigeon.svg +685 -0
  180. game/static/game/raphael_image/sleigh_wreckage.svg +430 -0
  181. game/static/game/sass/game.scss +22 -6
  182. game/static/game/sound/clown_horn.mp3 +0 -0
  183. game/static/game/sound/clown_horn.ogg +0 -0
  184. game/static/game/sound/electric_van_starting.mp3 +0 -0
  185. game/static/game/sound/electric_van_starting.ogg +0 -0
  186. game/static/game/sound/pigeon.mp3 +0 -0
  187. game/static/game/sound/pigeon.ogg +0 -0
  188. game/static/game/sound/sleigh_bells.mp3 +0 -0
  189. game/static/game/sound/sleigh_bells.ogg +0 -0
  190. game/static/game/sound/sleigh_crash.mp3 +0 -0
  191. game/static/game/sound/sleigh_crash.ogg +0 -0
  192. game/templates/game/base.html +35 -15
  193. game/templates/game/basenonav.html +23 -17
  194. game/templates/game/game.html +236 -111
  195. game/templates/game/level_editor.html +353 -275
  196. game/templates/game/level_moderation.html +19 -6
  197. game/templates/game/level_selection.html +75 -62
  198. game/templates/game/python_den_level_selection.html +291 -0
  199. game/templates/game/python_den_worksheet.html +101 -0
  200. game/templates/game/scoreboard.html +88 -65
  201. game/tests/test_level_editor.py +210 -35
  202. game/tests/test_level_moderation.py +6 -20
  203. game/tests/test_level_selection.py +332 -11
  204. game/tests/test_python_den_worksheet.py +85 -0
  205. game/tests/test_scoreboard.py +258 -66
  206. game/tests/utils/level.py +43 -3
  207. game/tests/utils/teacher.py +2 -2
  208. game/theme.py +21 -21
  209. game/urls.py +125 -78
  210. game/views/language_code_conversions.py +90 -0
  211. game/views/level.py +201 -63
  212. game/views/level_editor.py +109 -48
  213. game/views/level_moderation.py +29 -6
  214. game/views/level_selection.py +179 -56
  215. game/views/level_solutions.py +600 -106
  216. game/views/scoreboard.py +181 -66
  217. game/views/worksheet.py +25 -0
  218. rapid_router-7.6.8.dist-info/METADATA +174 -0
  219. {rapid_router-5.4.1.dist-info → rapid_router-7.6.8.dist-info}/RECORD +222 -242
  220. {rapid_router-5.4.1.dist-info → rapid_router-7.6.8.dist-info}/WHEEL +1 -1
  221. rapid_router-7.6.8.dist-info/licenses/LICENSE.md +3 -0
  222. example_project/example_project/__init__.py +0 -1
  223. example_project/example_project/settings.py +0 -54
  224. example_project/example_project/urls.py +0 -16
  225. example_project/manage.py +0 -10
  226. game/autoconfig.py +0 -59
  227. game/csp_config.py +0 -23
  228. game/locale/ar_SA/LC_MESSAGES/django.mo +0 -0
  229. game/locale/ar_SA/LC_MESSAGES/django.po +0 -405
  230. game/locale/ar_SA/LC_MESSAGES/djangojs.mo +0 -0
  231. game/locale/ar_SA/LC_MESSAGES/djangojs.po +0 -743
  232. game/locale/bg_BG/LC_MESSAGES/django.mo +0 -0
  233. game/locale/bg_BG/LC_MESSAGES/django.po +0 -405
  234. game/locale/bg_BG/LC_MESSAGES/djangojs.mo +0 -0
  235. game/locale/bg_BG/LC_MESSAGES/djangojs.po +0 -739
  236. game/locale/ca_ES/LC_MESSAGES/django.mo +0 -0
  237. game/locale/ca_ES/LC_MESSAGES/django.po +0 -405
  238. game/locale/ca_ES/LC_MESSAGES/djangojs.mo +0 -0
  239. game/locale/ca_ES/LC_MESSAGES/djangojs.po +0 -740
  240. game/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  241. game/locale/cs_CZ/LC_MESSAGES/django.po +0 -405
  242. game/locale/cs_CZ/LC_MESSAGES/djangojs.mo +0 -0
  243. game/locale/cs_CZ/LC_MESSAGES/djangojs.po +0 -741
  244. game/locale/cy_GB/LC_MESSAGES/django.mo +0 -0
  245. game/locale/cy_GB/LC_MESSAGES/django.po +0 -405
  246. game/locale/cy_GB/LC_MESSAGES/djangojs.mo +0 -0
  247. game/locale/cy_GB/LC_MESSAGES/djangojs.po +0 -743
  248. game/locale/de_DE/LC_MESSAGES/django.mo +0 -0
  249. game/locale/de_DE/LC_MESSAGES/django.po +0 -405
  250. game/locale/de_DE/LC_MESSAGES/djangojs.mo +0 -0
  251. game/locale/de_DE/LC_MESSAGES/djangojs.po +0 -739
  252. game/locale/el_GR/LC_MESSAGES/django.mo +0 -0
  253. game/locale/el_GR/LC_MESSAGES/django.po +0 -405
  254. game/locale/el_GR/LC_MESSAGES/djangojs.mo +0 -0
  255. game/locale/el_GR/LC_MESSAGES/djangojs.po +0 -739
  256. game/locale/en_GB/LC_MESSAGES/django.mo +0 -0
  257. game/locale/en_GB/LC_MESSAGES/django.po +0 -405
  258. game/locale/en_GB/LC_MESSAGES/djangojs.mo +0 -0
  259. game/locale/en_GB/LC_MESSAGES/djangojs.po +0 -739
  260. game/locale/es_ES/LC_MESSAGES/django.mo +0 -0
  261. game/locale/es_ES/LC_MESSAGES/django.po +0 -405
  262. game/locale/es_ES/LC_MESSAGES/djangojs.mo +0 -0
  263. game/locale/es_ES/LC_MESSAGES/djangojs.po +0 -739
  264. game/locale/fi_FI/LC_MESSAGES/django.mo +0 -0
  265. game/locale/fi_FI/LC_MESSAGES/django.po +0 -405
  266. game/locale/fi_FI/LC_MESSAGES/djangojs.mo +0 -0
  267. game/locale/fi_FI/LC_MESSAGES/djangojs.po +0 -739
  268. game/locale/fr_FR/LC_MESSAGES/django.mo +0 -0
  269. game/locale/fr_FR/LC_MESSAGES/django.po +0 -405
  270. game/locale/fr_FR/LC_MESSAGES/djangojs.mo +0 -0
  271. game/locale/fr_FR/LC_MESSAGES/djangojs.po +0 -739
  272. game/locale/gu_IN/LC_MESSAGES/django.mo +0 -0
  273. game/locale/gu_IN/LC_MESSAGES/django.po +0 -405
  274. game/locale/gu_IN/LC_MESSAGES/djangojs.mo +0 -0
  275. game/locale/gu_IN/LC_MESSAGES/djangojs.po +0 -739
  276. game/locale/hi_IN/LC_MESSAGES/django.mo +0 -0
  277. game/locale/hi_IN/LC_MESSAGES/django.po +0 -405
  278. game/locale/hi_IN/LC_MESSAGES/djangojs.mo +0 -0
  279. game/locale/hi_IN/LC_MESSAGES/djangojs.po +0 -739
  280. game/locale/id_ID/LC_MESSAGES/django.mo +0 -0
  281. game/locale/id_ID/LC_MESSAGES/django.po +0 -405
  282. game/locale/id_ID/LC_MESSAGES/djangojs.mo +0 -0
  283. game/locale/id_ID/LC_MESSAGES/djangojs.po +0 -738
  284. game/locale/it_IT/LC_MESSAGES/django.mo +0 -0
  285. game/locale/it_IT/LC_MESSAGES/django.po +0 -405
  286. game/locale/it_IT/LC_MESSAGES/djangojs.mo +0 -0
  287. game/locale/it_IT/LC_MESSAGES/djangojs.po +0 -739
  288. game/locale/ja_JP/LC_MESSAGES/django.mo +0 -0
  289. game/locale/ja_JP/LC_MESSAGES/django.po +0 -405
  290. game/locale/ja_JP/LC_MESSAGES/djangojs.mo +0 -0
  291. game/locale/ja_JP/LC_MESSAGES/djangojs.po +0 -738
  292. game/locale/lol_US/LC_MESSAGES/django.mo +0 -0
  293. game/locale/lol_US/LC_MESSAGES/django.po +0 -405
  294. game/locale/lol_US/LC_MESSAGES/djangojs.mo +0 -0
  295. game/locale/lol_US/LC_MESSAGES/djangojs.po +0 -739
  296. game/locale/nb_NO/LC_MESSAGES/django.mo +0 -0
  297. game/locale/nb_NO/LC_MESSAGES/django.po +0 -405
  298. game/locale/nb_NO/LC_MESSAGES/djangojs.mo +0 -0
  299. game/locale/nb_NO/LC_MESSAGES/djangojs.po +0 -739
  300. game/locale/nl_NL/LC_MESSAGES/django.mo +0 -0
  301. game/locale/nl_NL/LC_MESSAGES/django.po +0 -405
  302. game/locale/nl_NL/LC_MESSAGES/djangojs.mo +0 -0
  303. game/locale/nl_NL/LC_MESSAGES/djangojs.po +0 -739
  304. game/locale/pl_PL/LC_MESSAGES/django.mo +0 -0
  305. game/locale/pl_PL/LC_MESSAGES/django.po +0 -405
  306. game/locale/pl_PL/LC_MESSAGES/djangojs.mo +0 -0
  307. game/locale/pl_PL/LC_MESSAGES/djangojs.po +0 -741
  308. game/locale/pt_BR/LC_MESSAGES/django.mo +0 -0
  309. game/locale/pt_BR/LC_MESSAGES/django.po +0 -405
  310. game/locale/pt_BR/LC_MESSAGES/djangojs.mo +0 -0
  311. game/locale/pt_BR/LC_MESSAGES/djangojs.po +0 -739
  312. game/locale/pt_PT/LC_MESSAGES/django.mo +0 -0
  313. game/locale/pt_PT/LC_MESSAGES/django.po +0 -405
  314. game/locale/pt_PT/LC_MESSAGES/djangojs.mo +0 -0
  315. game/locale/pt_PT/LC_MESSAGES/djangojs.po +0 -739
  316. game/locale/ro_RO/LC_MESSAGES/django.mo +0 -0
  317. game/locale/ro_RO/LC_MESSAGES/django.po +0 -405
  318. game/locale/ro_RO/LC_MESSAGES/djangojs.mo +0 -0
  319. game/locale/ro_RO/LC_MESSAGES/djangojs.po +0 -740
  320. game/locale/ru_RU/LC_MESSAGES/django.mo +0 -0
  321. game/locale/ru_RU/LC_MESSAGES/django.po +0 -405
  322. game/locale/ru_RU/LC_MESSAGES/djangojs.mo +0 -0
  323. game/locale/ru_RU/LC_MESSAGES/djangojs.po +0 -741
  324. game/locale/sv_SE/LC_MESSAGES/django.mo +0 -0
  325. game/locale/sv_SE/LC_MESSAGES/django.po +0 -405
  326. game/locale/sv_SE/LC_MESSAGES/djangojs.mo +0 -0
  327. game/locale/sv_SE/LC_MESSAGES/djangojs.po +0 -739
  328. game/locale/tl_PH/LC_MESSAGES/django.mo +0 -0
  329. game/locale/tl_PH/LC_MESSAGES/django.po +0 -405
  330. game/locale/tl_PH/LC_MESSAGES/djangojs.mo +0 -0
  331. game/locale/tl_PH/LC_MESSAGES/djangojs.po +0 -739
  332. game/locale/tlh_AA/LC_MESSAGES/django.mo +0 -0
  333. game/locale/tlh_AA/LC_MESSAGES/django.po +0 -405
  334. game/locale/tlh_AA/LC_MESSAGES/djangojs.mo +0 -0
  335. game/locale/tlh_AA/LC_MESSAGES/djangojs.po +0 -739
  336. game/locale/tr_TR/LC_MESSAGES/django.mo +0 -0
  337. game/locale/tr_TR/LC_MESSAGES/django.po +0 -405
  338. game/locale/tr_TR/LC_MESSAGES/djangojs.mo +0 -0
  339. game/locale/tr_TR/LC_MESSAGES/djangojs.po +0 -740
  340. game/locale/ur_IN/LC_MESSAGES/django.mo +0 -0
  341. game/locale/ur_IN/LC_MESSAGES/django.po +0 -405
  342. game/locale/ur_IN/LC_MESSAGES/djangojs.mo +0 -0
  343. game/locale/ur_IN/LC_MESSAGES/djangojs.po +0 -739
  344. game/locale/ur_PK/LC_MESSAGES/django.mo +0 -0
  345. game/locale/ur_PK/LC_MESSAGES/django.po +0 -405
  346. game/locale/ur_PK/LC_MESSAGES/djangojs.mo +0 -0
  347. game/locale/ur_PK/LC_MESSAGES/djangojs.po +0 -739
  348. game/static/game/image/actions/go.svg +0 -18
  349. game/static/game/image/icons/destination.svg +0 -9
  350. game/static/game/js/pqselect.min.js +0 -9
  351. game/static/game/js/widget-scroller.js +0 -906
  352. rapid_router-5.4.1.dist-info/LICENSE.md +0 -577
  353. rapid_router-5.4.1.dist-info/METADATA +0 -24
  354. {rapid_router-5.4.1.dist-info → rapid_router-7.6.8.dist-info}/top_level.txt +0 -0
@@ -1,160 +1,1063 @@
1
1
  <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 26.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
2
+ <!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
3
  <svg version="1.1"
4
4
  id="Layer_1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
5
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 688 738.6"
6
- style="enable-background:new 0 0 688 738.6;" xml:space="preserve">
5
+ xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="688px" height="738.6px"
6
+ viewBox="0 0 688 738.6" style="enable-background:new 0 0 688 738.6;" xml:space="preserve">
7
7
  <style type="text/css">
8
- .st0{fill:#C6B198;stroke:#705A4A;stroke-width:3;stroke-miterlimit:10;}
9
- .st1{fill:#BA0000;stroke:#820000;stroke-width:3;stroke-miterlimit:10;}
10
- .st2{fill:#820000;}
11
- .st3{opacity:0.2;fill:#183049;enable-background:new ;}
12
- .st4{fill:#878787;stroke:#383838;stroke-width:2;stroke-miterlimit:10;}
13
- .st5{fill:#5B5B5B;}
14
- .st6{fill:#898989;}
15
- .st7{fill:none;stroke:#383838;stroke-miterlimit:10;}
16
- .st8{fill:none;stroke:#383838;stroke-width:2;stroke-miterlimit:10;}
17
- .st9{fill:none;stroke:#820000;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;}
18
- .st10{fill:#C6B198;}
19
- .st11{fill:#BAA38A;}
20
- .st12{fill:#988575;}
21
- .st13{fill:none;stroke:#705A4A;stroke-width:3;stroke-miterlimit:10;}
22
- .st14{fill:#707070;}
23
- .st15{fill:#545454;}
24
- .st16{fill:none;stroke:#383838;stroke-width:3;stroke-miterlimit:10;}
25
- .st17{fill:#707070;stroke:#383838;stroke-width:3;stroke-miterlimit:10;}
26
- .st18{fill:url(#SVGID_1_);}
27
- .st19{opacity:0.3;fill:#183049;enable-background:new ;}
28
- .st20{opacity:0.2;fill:none;stroke:#183049;stroke-width:2;stroke-miterlimit:10;enable-background:new ;}
29
- .st21{fill:#232323;}
30
- .st22{fill:none;stroke:#232323;stroke-width:2;stroke-miterlimit:10;}
31
- .st23{fill:#0D2735;}
32
- .st24{fill:none;stroke:#0F303F;stroke-miterlimit:10;}
33
- .st25{fill:url(#SVGID_00000171719522107680921250000001684180785697445524_);}
34
- .st26{fill:url(#SVGID_00000054247999265254137120000002798419057631739569_);}
35
- .st27{fill:url(#SVGID_00000120555533451227450720000006868326530100654981_);}
36
- .st28{fill:url(#SVGID_00000061469848409590989590000016403286254815034286_);}
37
- .st29{fill:url(#SVGID_00000163064185786220810070000015934983060790873769_);}
38
- .st30{fill:url(#SVGID_00000007397508546562853010000017578303078639970751_);}
39
- .st31{fill:url(#SVGID_00000146496746732753501290000016468307235839030974_);}
40
- .st32{fill:url(#SVGID_00000059282214135552746630000001393310476234907312_);}
41
- .st33{fill:#C6B198;stroke:#847061;stroke-width:3;stroke-miterlimit:10;}
42
- .st34{fill:#E5BE98;}
43
- .st35{fill:#CCA07F;}
44
- .st36{fill:none;stroke:#826E5F;stroke-width:3;stroke-miterlimit:10;}
45
- .st37{fill:none;stroke:#3C3C3C;stroke-miterlimit:10;}
46
- .st38{fill:none;stroke:#9EAEB8;stroke-width:4;}
47
- .st39{fill:none;stroke:#CCAE00;stroke-width:2;stroke-miterlimit:10;}
8
+ .st0{opacity:0.2;fill:#0C1C2B;enable-background:new ;}
9
+ .st1{fill:#C6B198;stroke:#705A4A;stroke-width:3;stroke-miterlimit:10;}
10
+ .st2{fill:#BA0000;stroke:#820000;stroke-width:3;stroke-miterlimit:10;}
11
+ .st3{fill:#820000;}
12
+ .st4{opacity:0.2;fill:#183049;enable-background:new ;}
13
+ .st5{fill:#878787;stroke:#383838;stroke-width:2;stroke-miterlimit:10;}
14
+ .st6{fill:#5B5B5B;}
15
+ .st7{fill:#898989;}
16
+ .st8{fill:none;stroke:#383838;stroke-miterlimit:10;}
17
+ .st9{fill:none;stroke:#383838;stroke-width:2;stroke-miterlimit:10;}
18
+ .st10{fill:none;stroke:#820000;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;}
19
+ .st11{fill:#C6B198;}
20
+ .st12{fill:url(#rect3656_1_);}
21
+ .st13{fill:#988575;}
22
+ .st14{fill:none;stroke:#705A4A;stroke-width:3;stroke-miterlimit:10;}
23
+ .st15{fill:#707070;stroke:#383838;stroke-width:3;stroke-miterlimit:10;}
24
+ .st16{fill:#545454;}
25
+ .st17{fill:none;stroke:#383838;stroke-width:3;stroke-miterlimit:10;}
26
+ .st18{fill:url(#path3683_1_);}
27
+ .st19{fill:#D3ECEF;}
28
+ .st20{fill:#99BEC1;}
29
+ .st21{fill:none;stroke:#C2C4C4;stroke-miterlimit:10;}
30
+ .st22{fill:#6D6D6D;}
31
+ .st23{fill:none;stroke:#BFD8DB;stroke-miterlimit:10;}
32
+ .st24{opacity:0.3;fill:#183049;enable-background:new ;}
33
+ .st25{opacity:0.4;fill:#183049;enable-background:new ;}
34
+ .st26{opacity:0.2;}
35
+ .st27{fill:#183049;}
36
+ .st28{fill:none;stroke:#183049;stroke-width:2;stroke-miterlimit:10;}
37
+ .st29{fill:#232323;}
38
+ .st30{fill:none;stroke:#B2CCCB;stroke-width:2;stroke-miterlimit:10;}
39
+ .st31{fill:#0D2735;}
40
+ .st32{fill:none;stroke:#0F303F;stroke-miterlimit:10;}
41
+ .st33{fill:none;stroke:#CCAE00;stroke-width:3;stroke-miterlimit:10;}
42
+ .st34{fill:none;stroke:#CCAE00;stroke-width:2;stroke-miterlimit:10;}
43
+ .st35{fill:url(#rect4020_1_);}
44
+ .st36{fill:url(#rect4027_1_);}
45
+ .st37{fill:url(#rect4034_1_);}
46
+ .st38{fill:url(#rect4041_1_);}
47
+ .st39{fill:url(#rect4048_1_);}
48
+ .st40{fill:url(#rect4055_1_);}
49
+ .st41{fill:url(#rect4062_1_);}
50
+ .st42{fill:url(#rect4069_1_);}
51
+ .st43{fill:#CCB696;}
52
+ .st44{fill:url(#rect4075_1_);}
53
+ .st45{fill:#B6CECE;}
54
+ .st46{fill:none;stroke:#7D9293;stroke-width:3;stroke-miterlimit:10;}
55
+ .st47{fill:#B2CCCB;}
56
+ .st48{fill:url(#SVGID_1_);}
57
+ .st49{fill:#B6E7EF;}
58
+ .st50{fill:url(#SVGID_2_);}
59
+ .st51{fill:url(#SVGID_3_);}
60
+ .st52{fill:url(#SVGID_4_);}
61
+ .st53{fill:url(#SVGID_5_);}
62
+ .st54{fill:url(#SVGID_6_);}
48
63
  </style>
49
- <path class="st0" d="M527.8,166.8c0,8-6.5,14.4-14.4,14.4H218.5c-8,0-14.4-6.5-14.4-14.4c0-8,6.5-14.4,14.4-14.4h294.9
50
- C521.3,152.4,527.8,158.8,527.8,166.8L527.8,166.8z"/>
51
- <rect x="5.8" y="570.2" class="st1" width="61" height="128"/>
52
- <polygon class="st2" points="66.8,698.2 57.3,698.2 45.3,570.2 66.8,570.2 "/>
53
- <path class="st3" d="M67.8,584.6H44.1c-2.3-1.8-5.3-2.9-8.4-2.9c-7.7,0-13.9,6.2-13.9,13.9s6.2,13.9,13.9,13.9
54
- c3.2,0,6.1-1.1,8.4-2.9h23.7L67.8,584.6L67.8,584.6z"/>
55
- <path class="st3" d="M67.8,617.1H44.1c-2.3-1.8-5.3-2.9-8.4-2.9c-7.7,0-13.9,6.2-13.9,13.9S28,642,35.7,642c3.2,0,6.1-1.1,8.4-2.9
56
- h23.7L67.8,617.1L67.8,617.1z"/>
57
- <circle class="st4" cx="35.7" cy="592.6" r="12.9"/>
58
- <circle class="st4" cx="35.7" cy="624.9" r="12.9"/>
59
- <path class="st5" d="M66.8,634.9H36.3c-5.5,0-10-4.5-10-10s4.5-10,10-10h30.5V634.9z M66.8,602.6H36.3c-5.5,0-10-4.5-10-10
60
- s4.5-10,10-10h30.5V602.6z"/>
61
- <path class="st6" d="M60.8,614.9H36.3c-5.5,0-10,4.5-10,10h34.5V614.9z M60.8,582.6H36.3c-5.5,0-10,4.5-10,10h34.5V582.6z"/>
64
+ <g id="g3537">
65
+ <g id="g3539">
66
+ </g>
67
+ <path id="path3580" class="st0" d="M650.5,299.4v-17.7h-119V173.7c0.9-2,1.4-4.3,1.4-6.6s-0.5-4.6-1.4-6.6v-8.1h-7.3
68
+ c-2.4-1.3-5.2-2.1-8.1-2.1H216.7c-2.9,0-5.7,0.8-8.1,2.1H201v8.8c-0.7,1.8-1.1,3.8-1.1,5.9s0.4,4,1.1,5.9v108.8H80.2v17.7H42.8
69
+ v264.2H0v140.2h42.8v34.9H688V299.4L650.5,299.4L650.5,299.4z"/>
70
+ <g id="g3582">
71
+ <path id="path3584" class="st1" d="M527.8,166.8c0,8-6.5,14.4-14.4,14.4H218.5c-8,0-14.4-6.5-14.4-14.4c0-8,6.5-14.4,14.4-14.4
72
+ h294.9C521.3,152.4,527.8,158.8,527.8,166.8L527.8,166.8z"/>
73
+ <g id="g3586">
74
+ <rect id="rect3588" x="5.8" y="570.2" class="st2" width="61" height="128"/>
75
+ <polygon id="polygon3590" class="st3" points="66.8,698.2 57.3,698.2 45.3,570.2 66.8,570.2 "/>
76
+ <path id="path3592" class="st4" d="M67.8,584.6H44.1c-2.3-1.8-5.3-2.9-8.4-2.9c-7.7,0-13.9,6.2-13.9,13.9s6.2,13.9,13.9,13.9
77
+ c3.2,0,6.1-1.1,8.4-2.9h23.7L67.8,584.6L67.8,584.6z"/>
78
+ <path id="path3594" class="st4" d="M67.8,617.1H44.1c-2.3-1.8-5.3-2.9-8.4-2.9c-7.7,0-13.9,6.2-13.9,13.9S28,642,35.7,642
79
+ c3.2,0,6.1-1.1,8.4-2.9h23.7L67.8,617.1L67.8,617.1z"/>
80
+ <g id="g3596">
81
+ <g id="g3598">
82
+ <circle id="circle3600" class="st5" cx="35.7" cy="592.6" r="12.9"/>
83
+ <path id="path3602" class="st6" d="M66.8,602.6H36.3c-5.5,0-10-4.5-10-10s4.5-10,10-10h30.5V602.6z"/>
84
+ </g>
85
+ <path id="path3604" class="st7" d="M60.8,582.6H36.3c-5.5,0-10,4.5-10,10h34.5V582.6z"/>
86
+ <path id="path3606" class="st8" d="M40.3,602.6c-5.5,0-10-4.5-10-10s4.5-10,10-10"/>
87
+ <path id="path3608" class="st8" d="M44.3,602.6c-3.3,0-6-4.5-6-10s2.7-10,6-10"/>
88
+ <path id="path3610" class="st8" d="M49.5,602.6c-1.7,0-3-4.5-3-10s1.3-10,3-10"/>
89
+ <line id="line3612" class="st8" x1="56.5" y1="602.6" x2="56.5" y2="582.6"/>
90
+ <path id="path3614" class="st9" d="M66.8,602.6H36.3c-5.5,0-10-4.5-10-10s4.5-10,10-10h30.5V602.6z"/>
91
+ </g>
92
+ <g id="g3616">
93
+ <g id="g3618">
94
+ <circle id="circle3620" class="st5" cx="35.7" cy="624.9" r="12.9"/>
95
+ <path id="path3622" class="st6" d="M66.8,634.9H36.3c-5.5,0-10-4.5-10-10s4.5-10,10-10h30.5V634.9z"/>
96
+ </g>
97
+ <path id="path3624" class="st7" d="M60.8,614.9H36.3c-5.5,0-10,4.5-10,10h34.5V614.9z"/>
98
+ <path id="path3626" class="st8" d="M40.3,634.9c-5.5,0-10-4.5-10-10s4.5-10,10-10"/>
99
+ <path id="path3628" class="st8" d="M44.3,634.9c-3.3,0-6-4.5-6-10s2.7-10,6-10"/>
100
+ <path id="path3630" class="st8" d="M49.5,634.9c-1.7,0-3-4.5-3-10s1.3-10,3-10"/>
101
+ <line id="line3632" class="st8" x1="56.5" y1="634.9" x2="56.5" y2="614.9"/>
102
+ <path id="path3634" class="st9" d="M66.8,634.9H36.3c-5.5,0-10-4.5-10-10s4.5-10,10-10h30.5V634.9z"/>
103
+ </g>
104
+ <g id="g3636">
105
+ <line id="line3638" class="st10" x1="17" y1="677.2" x2="41.3" y2="677.2"/>
106
+ <line id="line3640" class="st10" x1="17" y1="673" x2="41.3" y2="673"/>
107
+ <line id="line3642" class="st10" x1="17" y1="668.8" x2="41.3" y2="668.8"/>
108
+ <line id="line3644" class="st10" x1="17" y1="664.6" x2="41.3" y2="664.6"/>
109
+ <line id="line3646" class="st10" x1="17" y1="681.4" x2="41.3" y2="681.4"/>
110
+ <line id="line3648" class="st10" x1="17" y1="685.6" x2="41.3" y2="685.6"/>
111
+ <line id="line3650" class="st10" x1="17" y1="689.7" x2="41.3" y2="689.7"/>
112
+ </g>
113
+ </g>
114
+ <g id="g3652">
115
+ <rect id="rect3654" x="211" y="152.3" class="st11" width="311.2" height="148"/>
116
+ <linearGradient id="rect3656_1_" gradientUnits="userSpaceOnUse" x1="225.91" y1="232.95" x2="507.23" y2="232.95">
117
+ <stop offset="0" style="stop-color:#E5F7FF"/>
118
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
119
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
120
+ <stop offset="1" style="stop-color:#EEF7FF"/>
121
+ </linearGradient>
122
+ <rect id="rect3656" x="225.9" y="165.7" class="st12" width="281.3" height="134.6"/>
123
+ <polygon id="polygon3658" class="st13" points="230.9,170.7 507.2,170.7 507.2,165.7 225.9,165.7 225.9,300.2 230.9,300.2 "/>
124
+ <polygon id="polygon3660" class="st13" points="522.2,291.1 508,291.1 506.7,293.1 227,293.1 226.4,291.1 211,291.1 211,300.2
125
+ 522.2,300.2 "/>
126
+ <rect id="rect3662" x="225.9" y="165.7" class="st14" width="281.3" height="134.6"/>
127
+ <rect id="rect3664" x="211" y="152.3" class="st14" width="311.2" height="148"/>
128
+ </g>
129
+ <g id="g3666">
130
+ <rect id="rect3668" x="101.6" y="300.2" class="st15" width="530" height="18.3"/>
131
+ <rect id="rect3670" x="101.6" y="309.4" class="st16" width="530" height="9.1"/>
132
+ <rect id="rect3672" x="101.6" y="300.2" class="st17" width="530" height="18.3"/>
133
+ </g>
134
+ <g id="g3674">
135
+ <rect id="rect3676" x="66.6" y="317.7" class="st15" width="600" height="400"/>
136
+
137
+ <linearGradient id="path3683_1_" gradientUnits="userSpaceOnUse" x1="96.07" y1="412.3972" x2="658.068" y2="12.3971" gradientTransform="matrix(1 0 0 -1 0 737.89)">
138
+ <stop offset="0" style="stop-color:#919191"/>
139
+ <stop offset="1" style="stop-color:#919191;stop-opacity:0"/>
140
+ </linearGradient>
141
+ <path id="path3683" class="st18" d="M647.6,702.7h-572V326.2h572V702.7z M83.6,694.7h556V334.2h-556V694.7z"/>
142
+ </g>
143
+ <g id="g3685">
144
+ <rect id="rect3687" x="103.2" y="348.8" class="st19" width="530" height="338.5"/>
145
+ <g id="g3691">
146
+ <line id="line3693" class="st21" x1="113.2" y1="348.8" x2="113.2" y2="687.8"/>
147
+ <line id="line3695" class="st21" x1="123.2" y1="348.8" x2="123.2" y2="687.8"/>
148
+ <line id="line3697" class="st21" x1="133.2" y1="348.8" x2="133.2" y2="687.8"/>
149
+ <line id="line3699" class="st21" x1="143.2" y1="348.8" x2="143.2" y2="687.8"/>
150
+ <line id="line3701" class="st21" x1="153.2" y1="348.8" x2="153.2" y2="687.8"/>
151
+ <line id="line3703" class="st21" x1="163.2" y1="348.8" x2="163.2" y2="687.8"/>
152
+ <line id="line3705" class="st21" x1="173.2" y1="348.8" x2="173.2" y2="687.8"/>
153
+ <line id="line3707" class="st21" x1="183.2" y1="348.8" x2="183.2" y2="687.8"/>
154
+ <line id="line3709" class="st21" x1="193.2" y1="348.8" x2="193.2" y2="687.8"/>
155
+ <line id="line3711" class="st21" x1="203.2" y1="348.8" x2="203.2" y2="687.8"/>
156
+ <line id="line3713" class="st21" x1="213.2" y1="348.8" x2="213.2" y2="687.8"/>
157
+ <line id="line3715" class="st21" x1="223.2" y1="348.8" x2="223.2" y2="687.8"/>
158
+ <line id="line3717" class="st21" x1="233.2" y1="348.8" x2="233.2" y2="687.8"/>
159
+ <line id="line3719" class="st21" x1="243.2" y1="348.8" x2="243.2" y2="687.8"/>
160
+ <line id="line3721" class="st21" x1="253.2" y1="348.8" x2="253.2" y2="687.8"/>
161
+ <line id="line3723" class="st21" x1="263.2" y1="348.8" x2="263.2" y2="687.8"/>
162
+ <line id="line3725" class="st21" x1="273.2" y1="348.8" x2="273.2" y2="687.8"/>
163
+ <line id="line3727" class="st21" x1="283.2" y1="348.8" x2="283.2" y2="687.8"/>
164
+ <line id="line3729" class="st21" x1="293.2" y1="348.8" x2="293.2" y2="687.8"/>
165
+ <line id="line3731" class="st21" x1="303.2" y1="348.8" x2="303.2" y2="687.8"/>
166
+ <line id="line3733" class="st21" x1="313.2" y1="348.8" x2="313.2" y2="687.8"/>
167
+ <line id="line3735" class="st21" x1="323.2" y1="348.8" x2="323.2" y2="687.8"/>
168
+ <line id="line3737" class="st21" x1="333.2" y1="348.8" x2="333.2" y2="687.8"/>
169
+ <line id="line3739" class="st21" x1="343.2" y1="348.8" x2="343.2" y2="687.8"/>
170
+ <line id="line3741" class="st21" x1="353.2" y1="348.8" x2="353.2" y2="687.8"/>
171
+ <line id="line3743" class="st21" x1="363.2" y1="348.8" x2="363.2" y2="687.8"/>
172
+ <line id="line3745" class="st21" x1="373.2" y1="348.8" x2="373.2" y2="687.8"/>
173
+ <line id="line3747" class="st21" x1="383.2" y1="348.8" x2="383.2" y2="687.8"/>
174
+ <line id="line3749" class="st21" x1="393.2" y1="348.8" x2="393.2" y2="687.8"/>
175
+ <line id="line3751" class="st21" x1="403.2" y1="348.8" x2="403.2" y2="687.8"/>
176
+ <line id="line3753" class="st21" x1="413.2" y1="348.8" x2="413.2" y2="687.8"/>
177
+ <line id="line3755" class="st21" x1="423.2" y1="348.8" x2="423.2" y2="687.8"/>
178
+ <line id="line3757" class="st21" x1="433.2" y1="348.8" x2="433.2" y2="687.8"/>
179
+ <line id="line3759" class="st21" x1="443.2" y1="348.8" x2="443.2" y2="687.8"/>
180
+ <line id="line3761" class="st21" x1="453.2" y1="348.8" x2="453.2" y2="687.8"/>
181
+ <line id="line3763" class="st21" x1="463.2" y1="348.8" x2="463.2" y2="687.8"/>
182
+ <line id="line3765" class="st21" x1="473.2" y1="348.8" x2="473.2" y2="687.8"/>
183
+ <line id="line3767" class="st21" x1="483.2" y1="348.8" x2="483.2" y2="687.8"/>
184
+ <line id="line3769" class="st21" x1="493.2" y1="348.8" x2="493.2" y2="687.8"/>
185
+ <line id="line3771" class="st21" x1="503.2" y1="348.8" x2="503.2" y2="687.8"/>
186
+ <line id="line3773" class="st21" x1="513.2" y1="348.8" x2="513.2" y2="687.8"/>
187
+ <line id="line3775" class="st21" x1="523.2" y1="348.8" x2="523.2" y2="687.8"/>
188
+ <line id="line3777" class="st21" x1="533.2" y1="348.8" x2="533.2" y2="687.8"/>
189
+ <line id="line3779" class="st21" x1="543.2" y1="348.8" x2="543.2" y2="687.8"/>
190
+ <line id="line3781" class="st21" x1="553.2" y1="348.8" x2="553.2" y2="687.8"/>
191
+ <line id="line3783" class="st21" x1="563.2" y1="348.8" x2="563.2" y2="687.8"/>
192
+ <line id="line3785" class="st21" x1="573.2" y1="348.8" x2="573.2" y2="687.8"/>
193
+ <line id="line3787" class="st21" x1="583.2" y1="348.8" x2="583.2" y2="687.8"/>
194
+ <line id="line3789" class="st21" x1="593.2" y1="348.8" x2="593.2" y2="687.8"/>
195
+ <line id="line3791" class="st21" x1="603.2" y1="348.8" x2="603.2" y2="687.8"/>
196
+ <line id="line3793" class="st21" x1="613.2" y1="348.8" x2="613.2" y2="687.8"/>
197
+ <line id="line3795" class="st21" x1="623.2" y1="348.8" x2="623.2" y2="687.8"/>
198
+ </g>
199
+ <polygon id="polygon3797" class="st22" points="113.2,358.8 633.2,358.8 633.2,348.8 103.2,348.8 103.2,687.4 113.2,687.4 "/>
200
+ <g id="g3799">
201
+ <line id="line3801" class="st23" x1="112.2" y1="348.8" x2="112.2" y2="687.8"/>
202
+ <line id="line3803" class="st23" x1="122.2" y1="348.8" x2="122.2" y2="687.8"/>
203
+ <line id="line3805" class="st23" x1="132.2" y1="348.8" x2="132.2" y2="687.8"/>
204
+ <line id="line3807" class="st23" x1="142.2" y1="348.8" x2="142.2" y2="687.8"/>
205
+ <line id="line3809" class="st23" x1="152.2" y1="348.8" x2="152.2" y2="687.8"/>
206
+ <line id="line3811" class="st23" x1="162.2" y1="348.8" x2="162.2" y2="687.8"/>
207
+ <line id="line3813" class="st23" x1="172.2" y1="348.8" x2="172.2" y2="687.8"/>
208
+ <line id="line3815" class="st23" x1="182.2" y1="348.8" x2="182.2" y2="687.8"/>
209
+ <line id="line3817" class="st23" x1="192.2" y1="348.8" x2="192.2" y2="687.8"/>
210
+ <line id="line3819" class="st23" x1="202.2" y1="348.8" x2="202.2" y2="687.8"/>
211
+ <line id="line3821" class="st23" x1="212.2" y1="348.8" x2="212.2" y2="687.8"/>
212
+ <line id="line3823" class="st23" x1="222.2" y1="348.8" x2="222.2" y2="687.8"/>
213
+ <line id="line3825" class="st23" x1="232.2" y1="348.8" x2="232.2" y2="687.8"/>
214
+ <line id="line3827" class="st23" x1="242.2" y1="348.8" x2="242.2" y2="687.8"/>
215
+ <line id="line3829" class="st23" x1="252.2" y1="348.8" x2="252.2" y2="687.8"/>
216
+ <line id="line3831" class="st23" x1="262.2" y1="348.8" x2="262.2" y2="687.8"/>
217
+ <line id="line3833" class="st23" x1="272.2" y1="348.8" x2="272.2" y2="687.8"/>
218
+ <line id="line3835" class="st23" x1="282.2" y1="348.8" x2="282.2" y2="687.8"/>
219
+ <line id="line3837" class="st23" x1="292.2" y1="348.8" x2="292.2" y2="687.8"/>
220
+ <line id="line3839" class="st23" x1="302.2" y1="348.8" x2="302.2" y2="687.8"/>
221
+ <line id="line3841" class="st23" x1="312.2" y1="348.8" x2="312.2" y2="687.8"/>
222
+ <line id="line3843" class="st23" x1="322.2" y1="348.8" x2="322.2" y2="687.8"/>
223
+ <line id="line3845" class="st23" x1="332.2" y1="348.8" x2="332.2" y2="687.8"/>
224
+ <line id="line3847" class="st23" x1="342.2" y1="348.8" x2="342.2" y2="687.8"/>
225
+ <line id="line3849" class="st23" x1="352.2" y1="348.8" x2="352.2" y2="687.8"/>
226
+ <line id="line3851" class="st23" x1="362.2" y1="348.8" x2="362.2" y2="687.8"/>
227
+ <line id="line3853" class="st23" x1="372.2" y1="348.8" x2="372.2" y2="687.8"/>
228
+ <line id="line3855" class="st23" x1="382.2" y1="348.8" x2="382.2" y2="687.8"/>
229
+ <line id="line3857" class="st23" x1="392.2" y1="348.8" x2="392.2" y2="687.8"/>
230
+ <line id="line3859" class="st23" x1="402.2" y1="348.8" x2="402.2" y2="687.8"/>
231
+ <line id="line3861" class="st23" x1="412.2" y1="348.8" x2="412.2" y2="687.8"/>
232
+ <line id="line3863" class="st23" x1="422.2" y1="348.8" x2="422.2" y2="687.8"/>
233
+ <line id="line3865" class="st23" x1="432.2" y1="348.8" x2="432.2" y2="687.8"/>
234
+ <line id="line3867" class="st23" x1="442.2" y1="348.8" x2="442.2" y2="687.8"/>
235
+ <line id="line3869" class="st23" x1="452.2" y1="348.8" x2="452.2" y2="687.8"/>
236
+ <line id="line3871" class="st23" x1="462.2" y1="348.8" x2="462.2" y2="687.8"/>
237
+ <line id="line3873" class="st23" x1="472.2" y1="348.8" x2="472.2" y2="687.8"/>
238
+ <line id="line3875" class="st23" x1="482.2" y1="348.8" x2="482.2" y2="687.8"/>
239
+ <line id="line3877" class="st23" x1="492.2" y1="348.8" x2="492.2" y2="687.8"/>
240
+ <line id="line3879" class="st23" x1="502.2" y1="348.8" x2="502.2" y2="687.8"/>
241
+ <line id="line3881" class="st23" x1="512.2" y1="348.8" x2="512.2" y2="687.8"/>
242
+ <line id="line3883" class="st23" x1="522.2" y1="348.8" x2="522.2" y2="687.8"/>
243
+ <line id="line3885" class="st23" x1="532.2" y1="348.8" x2="532.2" y2="687.8"/>
244
+ <line id="line3887" class="st23" x1="542.2" y1="348.8" x2="542.2" y2="687.8"/>
245
+ <line id="line3889" class="st23" x1="552.2" y1="348.8" x2="552.2" y2="687.8"/>
246
+ <line id="line3891" class="st23" x1="562.2" y1="348.8" x2="562.2" y2="687.8"/>
247
+ <line id="line3893" class="st23" x1="572.2" y1="348.8" x2="572.2" y2="687.8"/>
248
+ <line id="line3895" class="st23" x1="582.2" y1="348.8" x2="582.2" y2="687.8"/>
249
+ <line id="line3897" class="st23" x1="592.2" y1="348.8" x2="592.2" y2="687.8"/>
250
+ <line id="line3899" class="st23" x1="602.2" y1="348.8" x2="602.2" y2="687.8"/>
251
+ <line id="line3901" class="st23" x1="612.2" y1="348.8" x2="612.2" y2="687.8"/>
252
+ <line id="line3903" class="st23" x1="622.2" y1="348.8" x2="622.2" y2="687.8"/>
253
+ </g>
254
+ <rect id="rect3905" x="103.2" y="348.8" class="st17" width="530" height="338.5"/>
255
+ </g>
256
+ <g id="g3907">
257
+ <rect id="rect3909" x="498.4" y="561.3" class="st24" width="119.4" height="118.5"/>
258
+ <g id="g3911">
259
+ <rect id="rect3913" x="118.6" y="384.2" class="st25" width="110" height="268.3"/>
260
+ <g id="g3915" class="st26">
261
+ <rect id="rect3917" x="195.1" y="650.1" class="st27" width="5.3" height="9"/>
262
+ <path id="path3919" class="st28" d="M197.5,658.1c1.5,40.5,87.5-35,119-3.5c53.9,53.9,110.1,2,191.5,2"/>
263
+ </g>
264
+ <g id="g3921">
265
+ <rect id="rect3923" x="194.4" y="648.2" class="st29" width="5.3" height="9"/>
266
+ <path id="path3925" class="st30" d="M196.8,656.2c1.5,40.5,87.5-35,119-3.5c53.9,53.9,110.1,2,191.5,2"/>
267
+ </g>
268
+ <g id="g3927">
269
+ <rect id="rect3929" x="123.2" y="388.2" class="st31" width="101" height="260"/>
270
+ <g id="g3931">
271
+ <g id="g3933">
272
+ <line id="line3935" class="st32" x1="225.8" y1="398.2" x2="121.8" y2="398.2"/>
273
+ <line id="line3937" class="st32" x1="225.8" y1="408.2" x2="121.8" y2="408.2"/>
274
+ <line id="line3939" class="st32" x1="225.8" y1="418.2" x2="121.8" y2="418.2"/>
275
+ <line id="line3941" class="st32" x1="225.8" y1="428.2" x2="121.8" y2="428.2"/>
276
+ <line id="line3943" class="st32" x1="225.8" y1="438.2" x2="121.8" y2="438.2"/>
277
+ <line id="line3945" class="st32" x1="225.8" y1="448.2" x2="121.8" y2="448.2"/>
278
+ <line id="line3947" class="st32" x1="225.8" y1="458.2" x2="121.8" y2="458.2"/>
279
+ <line id="line3949" class="st32" x1="225.8" y1="468.2" x2="121.8" y2="468.2"/>
280
+ <line id="line3951" class="st32" x1="225.8" y1="478.2" x2="121.8" y2="478.2"/>
281
+ <line id="line3953" class="st32" x1="225.8" y1="488.2" x2="121.8" y2="488.2"/>
282
+ <line id="line3955" class="st32" x1="225.8" y1="498.2" x2="121.8" y2="498.2"/>
283
+ <line id="line3957" class="st32" x1="225.8" y1="508.2" x2="121.8" y2="508.2"/>
284
+ <line id="line3959" class="st32" x1="225.8" y1="518.2" x2="121.8" y2="518.2"/>
285
+ <line id="line3961" class="st32" x1="225.8" y1="528.2" x2="121.8" y2="528.2"/>
286
+ <line id="line3963" class="st32" x1="225.8" y1="538.2" x2="121.8" y2="538.2"/>
287
+ <line id="line3965" class="st32" x1="225.8" y1="548.2" x2="121.8" y2="548.2"/>
288
+ <line id="line3967" class="st32" x1="225.8" y1="558.2" x2="121.8" y2="558.2"/>
289
+ <line id="line3969" class="st32" x1="225.8" y1="568.2" x2="121.8" y2="568.2"/>
290
+ <line id="line3971" class="st32" x1="225.8" y1="578.2" x2="121.8" y2="578.2"/>
291
+ <line id="line3973" class="st32" x1="225.8" y1="588.2" x2="121.8" y2="588.2"/>
292
+ <line id="line3975" class="st32" x1="225.8" y1="598.2" x2="121.8" y2="598.2"/>
293
+ <line id="line3977" class="st32" x1="225.8" y1="608.2" x2="121.8" y2="608.2"/>
294
+ <line id="line3979" class="st32" x1="225.8" y1="618.2" x2="121.8" y2="618.2"/>
295
+ <line id="line3981" class="st32" x1="225.8" y1="628.2" x2="121.8" y2="628.2"/>
296
+ <line id="line3983" class="st32" x1="225.8" y1="638.2" x2="121.8" y2="638.2"/>
297
+ </g>
298
+ <line id="line3985" class="st32" x1="133.4" y1="388.2" x2="133.4" y2="648.2"/>
299
+ <line id="line3987" class="st32" x1="143.4" y1="388.2" x2="143.4" y2="648.2"/>
300
+ <line id="line3989" class="st32" x1="153.6" y1="388.2" x2="153.6" y2="648.2"/>
301
+ <line id="line3991" class="st32" x1="163.6" y1="388.2" x2="163.6" y2="648.2"/>
302
+ <line id="line3993" class="st32" x1="173.8" y1="388.2" x2="173.8" y2="648.2"/>
303
+ <line id="line3995" class="st32" x1="183.9" y1="388.2" x2="183.9" y2="648.2"/>
304
+ <line id="line3997" class="st32" x1="193.9" y1="388.2" x2="193.9" y2="648.2"/>
305
+ <line id="line3999" class="st32" x1="204.1" y1="388.2" x2="204.1" y2="648.2"/>
306
+ <line id="line4001" class="st32" x1="214.1" y1="388.2" x2="214.1" y2="648.2"/>
307
+ </g>
308
+ <rect id="rect4003" x="123.2" y="388.2" class="st33" width="101" height="260"/>
309
+ <g id="g4005">
310
+ <line id="line4007" class="st34" x1="173.8" y1="388.2" x2="173.8" y2="648.2"/>
311
+ <line id="line4009" class="st34" x1="225.8" y1="518.2" x2="121.8" y2="518.2"/>
312
+ <line id="line4011" class="st34" x1="225.8" y1="453.2" x2="121.8" y2="453.2"/>
313
+ <line id="line4013" class="st34" x1="225.8" y1="583.2" x2="121.8" y2="583.2"/>
314
+ </g>
315
+
316
+ <linearGradient id="rect4020_1_" gradientUnits="userSpaceOnUse" x1="129.5389" y1="358.0495" x2="154.0389" y2="306.0495" gradientTransform="matrix(1 0 0 -1 0 737.89)">
317
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
318
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
319
+ </linearGradient>
320
+ <rect id="rect4020" x="128.8" y="393.2" class="st35" width="40" height="55"/>
321
+
322
+ <linearGradient id="rect4027_1_" gradientUnits="userSpaceOnUse" x1="179.0389" y1="358.0495" x2="203.5389" y2="306.0495" gradientTransform="matrix(1 0 0 -1 0 737.89)">
323
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
324
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
325
+ </linearGradient>
326
+ <rect id="rect4027" x="178.3" y="393.2" class="st36" width="40" height="55"/>
327
+
328
+ <linearGradient id="rect4034_1_" gradientUnits="userSpaceOnUse" x1="129.5389" y1="294.0495" x2="154.0389" y2="242.0495" gradientTransform="matrix(1 0 0 -1 0 737.89)">
329
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
330
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
331
+ </linearGradient>
332
+ <rect id="rect4034" x="128.8" y="457.2" class="st37" width="40" height="55"/>
333
+
334
+ <linearGradient id="rect4041_1_" gradientUnits="userSpaceOnUse" x1="179.0389" y1="294.0495" x2="203.5389" y2="242.0495" gradientTransform="matrix(1 0 0 -1 0 737.89)">
335
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
336
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
337
+ </linearGradient>
338
+ <rect id="rect4041" x="178.3" y="457.2" class="st38" width="40" height="55"/>
339
+
340
+ <linearGradient id="rect4048_1_" gradientUnits="userSpaceOnUse" x1="129.5427" y1="229.1513" x2="154.0427" y2="177.1513" gradientTransform="matrix(1 0 0 -1 0 737.89)">
341
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
342
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
343
+ </linearGradient>
344
+ <rect id="rect4048" x="128.8" y="522.1" class="st39" width="40" height="55"/>
345
+
346
+ <linearGradient id="rect4055_1_" gradientUnits="userSpaceOnUse" x1="179.0427" y1="229.1513" x2="203.5427" y2="177.1513" gradientTransform="matrix(1 0 0 -1 0 737.89)">
347
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
348
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
349
+ </linearGradient>
350
+ <rect id="rect4055" x="178.3" y="522.1" class="st40" width="40" height="55"/>
351
+
352
+ <linearGradient id="rect4062_1_" gradientUnits="userSpaceOnUse" x1="129.5428" y1="164.2513" x2="154.0428" y2="112.2513" gradientTransform="matrix(1 0 0 -1 0 737.89)">
353
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
354
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
355
+ </linearGradient>
356
+ <rect id="rect4062" x="128.8" y="587" class="st41" width="40" height="55"/>
357
+
358
+ <linearGradient id="rect4069_1_" gradientUnits="userSpaceOnUse" x1="179.0428" y1="164.2513" x2="203.5428" y2="112.2513" gradientTransform="matrix(1 0 0 -1 0 737.89)">
359
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
360
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
361
+ </linearGradient>
362
+ <rect id="rect4069" x="178.3" y="587" class="st42" width="40" height="55"/>
363
+ </g>
364
+ </g>
365
+ <g id="g4071">
366
+ <rect x="503.2" y="564.9" class="st43" width="110" height="110"/>
367
+ <linearGradient id="rect4075_1_" gradientUnits="userSpaceOnUse" x1="518.6" y1="619.93" x2="597.8" y2="619.93">
368
+ <stop offset="0" style="stop-color:#E5F7FF"/>
369
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
370
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
371
+ <stop offset="1" style="stop-color:#EEF7FF"/>
372
+ </linearGradient>
373
+ <rect id="rect4075" x="518.6" y="580.3" class="st44" width="79.2" height="79.2"/>
374
+ <polygon id="polygon4077" class="st45" points="525,585.7 597.8,585.7 597.8,580.3 518.6,580.3 518.6,659.5 525,659.5 "/>
375
+ <rect id="rect4079" x="518.6" y="580.3" class="st46" width="79.2" height="79.2"/>
376
+ </g>
377
+ </g>
378
+ </g>
379
+ </g>
380
+ <path class="st47" d="M626.3,303.4c-0.8,0-1.5,0.2-2.1,0.5c-0.7-0.5-1.5-0.8-2.6-0.8c-0.9,0-1.6,0.2-2.2,0.5
381
+ c-0.6-0.3-1.3-0.5-2.2-0.5c-1.2,0-2.2,0.4-2.9,1.1c-0.6-0.2-1.1-0.4-1.8-0.4h-1.1c-0.1-0.1-0.3-0.1-0.4-0.2
382
+ c-1.3-0.4-2.8-0.6-4.2-0.5c-1.2,0.1-2.2,0.4-3.1,1.3c-0.3-0.2-0.6-0.3-1-0.5c-0.3-0.1-0.7-0.2-1-0.3c-0.5-0.2-1-0.2-1.6-0.1
383
+ c-0.5-0.2-1.1-0.3-1.7-0.3h-3c-1.5,0-3,0.9-3.9,2.2c-0.6-0.3-1.3-0.5-2.1-0.5c-1.1,0-1.9,0.3-2.6,0.8c-0.3-0.1-0.7-0.1-1.1-0.1
384
+ c-1.7,0-2.9,0.8-3.6,1.9c-0.7-0.9-1.8-1.6-3.4-1.6c-0.7,0-1.3,0.1-1.8,0.4c-0.7-0.8-1.7-1.3-3.1-1.3c-1-0.8-2.3-1.2-3.9-0.9
385
+ c-2.3,0.5-4.6,0.8-6.8,1c-0.6-1.5-1.9-2.7-4-2.7c-2.1,0-3.4,1.2-4,2.7c-0.6-0.4-1.4-0.7-2.3-0.7c-1.7,0-2.9,0.8-3.6,1.8
386
+ c-0.7-1.2-1.9-2.2-3.8-2.2c-0.6,0-1.2,0.1-1.7,0.3c-0.6-0.4-1.4-0.6-2.3-0.6c-1.1,0-2,0.3-2.7,0.8c-0.8-0.7-1.9-1.2-3-1.2h-0.7
387
+ c-0.8,0-1.6,0.2-2.2,0.6c-0.7-1-1.8-1.6-3.4-1.6c-1,0-1.8,0.3-2.5,0.7c-0.2,0-0.3-0.1-0.5-0.1c-1.6,0-2.8,0.7-3.5,1.7
388
+ c-0.3,0-0.5-0.1-0.8-0.1c-1.4,0-2.5,0.5-3.2,1.4c-0.7-0.4-1.5-0.7-2.4-0.7c-1.6,0-2.8,0.7-3.5,1.7c-0.7-1-1.9-1.7-3.5-1.7
389
+ c-1.1,0-2,0.3-2.6,0.8c-0.3-0.3-0.7-0.6-1.2-0.8c-0.6-1.3-1.9-2.4-3.9-2.4c-1.4,0-2.5,0.5-3.2,1.3c-0.7-0.6-1.6-1-2.8-1
390
+ c-1.5,0-2.6,0.6-3.3,1.5c-0.7-0.5-1.6-0.8-2.7-0.8c-1,0-1.8,0.3-2.5,0.7c-0.7-0.6-1.5-1-2.7-1c-0.7-0.8-1.8-1.4-3.2-1.4
391
+ c-1.1,0-2.1,0.4-2.8,0.9c-0.5-0.2-1-0.3-1.6-0.3c-1.9,0-3.2,1-3.9,2.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.3-0.4-0.7-0.8-1.1-1.1
392
+ c-0.6-1.5-1.9-2.6-4-2.6c-1.8,0-3,0.8-3.7,2c-0.4,0-0.8,0.1-1.2,0.1c-0.4-0.1-0.7-0.1-1.2-0.1c-0.5,0-0.9,0.1-1.3,0.2
393
+ c-0.7-0.9-1.8-1.5-3.3-1.5c-1.1,0-1.9,0.3-2.6,0.8c-0.6-0.3-1.3-0.5-2.1-0.5c-1.4,0-2.5,0.5-3.2,1.3c0,0-0.1,0-0.1,0
394
+ c-1.2,0-2.1,0.4-2.8,0.9c-0.5-0.2-1-0.3-1.6-0.3c-0.4,0-0.9,0.1-1.2,0.2c-0.7-1.2-1.9-2.2-3.8-2.2c-1.6,0-2.7,0.7-3.4,1.7
395
+ c-0.4,0.2-0.8,0.4-1.2,0.8c-0.7-1.2-1.9-2.1-3.7-2.1c-2,0-3.3,1.1-3.9,2.6c-0.5-1.6-1.9-2.9-4.1-2.9c-1,0-1.8,0.3-2.5,0.7
396
+ c-0.3,0-0.5-0.1-0.8-0.1c-1,0-1.8,0.3-2.5,0.7c-0.2,0-0.3-0.1-0.5-0.1c-1.4,0-2.4,0.5-3.2,1.3c-0.6-1.3-1.9-2.3-3.8-2.3
397
+ c-0.8,0-1.5,0.2-2.1,0.5c-0.7-1.1-1.9-1.8-3.6-1.8c-0.8,0-1.4,0.2-2,0.4c-0.6-0.3-1.2-0.4-2-0.4c-1.3,0-2.2,0.4-3,1.1
398
+ c-0.3-0.1-0.7-0.1-1-0.1c-1.6,0-2.8,0.7-3.5,1.7c-0.7-1-1.9-1.7-3.5-1.7c-0.9,0-1.6,0.2-2.2,0.5c-0.6-0.3-1.3-0.5-2.2-0.5
399
+ c-1,0-1.8,0.3-2.5,0.7c-0.7-0.5-1.5-0.7-2.5-0.7c-1.1,0-1.9,0.3-2.6,0.8c-0.6-1.6-1.9-2.8-4.1-2.8c-1.7,0-2.9,0.8-3.6,1.9
400
+ c-0.4-0.1-0.7-0.2-1.1-0.2c-0.6-1.5-1.9-2.7-4-2.7c-1.9,0-3.2,1-3.9,2.4c-1.3,0.2-2.7,0.5-4,0.9c-0.4,0.1-0.7,0.3-1,0.5
401
+ c-0.7-0.4-1.5-0.7-2.5-0.7c-0.8,0-1.4,0.2-2,0.5c-0.3-0.1-0.6-0.1-1-0.1h-2c-0.9,0-1.8,0.3-2.6,0.8c-0.6-0.3-1.3-0.5-2.1-0.5
402
+ c-1.2,0-2.1,0.4-2.8,1c-0.7-0.6-1.6-1-2.8-1c-1.3,0-2.3,0.5-3,1.2c-0.8-0.7-1.9-1.2-3-1.2h-1.7c-1,0-2,0.4-2.8,1
403
+ c-0.6-1.3-1.9-2.4-3.9-2.4c-1.7,0-2.9,0.8-3.6,2c-0.4-0.6-0.8-1-1.4-1.4c-0.4-0.2-0.7-0.3-1.1-0.5c-0.8-0.2-1.6-0.2-2.4,0
404
+ c-0.8,0.1-1.6,0.2-2.3,0.4c-0.8,0.1-1.7,0.8-2.3,1.5c-0.7-1-1.9-1.7-3.5-1.7c-0.6,0-1.2,0.1-1.7,0.3c-0.4-0.1-0.9-0.2-1.3-0.3
405
+ c-2.2-0.2-4.4,0-6.5,0.4c-1,0.2-1.8,0.7-2.3,1.5c-0.7-0.8-1.7-1.3-3.1-1.3c-0.7,0-1.3,0.1-1.8,0.4c-0.7-0.6-1.6-1-2.9-1
406
+ c-0.5,0-0.9,0.1-1.3,0.2c-2-0.9-3.9-0.8-6.1-0.3c-2,0.5-3.4,0.4-5.3-0.3c-1.5-0.6-3.2,0.1-4.4,1.2c-0.7-0.5-1.5-0.8-2.6-0.8
407
+ c-1.9,0-3.2,1-3.8,2.3c-0.7-0.8-1.8-1.3-3.2-1.3c-0.7,0-1.3,0.1-1.8,0.4c-0.7-0.8-1.8-1.4-3.2-1.4c-1,0-1.8,0.3-2.5,0.7
408
+ c-0.7-1-1.9-1.7-3.5-1.7c-1.9,0-3.2,1-3.8,2.3c-0.7-0.8-1.8-1.3-3.2-1.3c-0.5,0-0.9,0.1-1.3,0.2c-2.1-0.7-4.3-0.7-6.5-0.4
409
+ c-0.7-1.1-1.9-1.8-3.5-1.8c-2,0-3.3,1.1-3.9,2.6c-0.2-0.1-0.4-0.3-0.7-0.4c-3.5-2.1-5.3-0.7-9-0.3c-3.6,0.4-7.4-1.3-11-1.9
410
+ c-3.3-0.5-6.3-0.2-9.4,1c-1.8,0.7-3.1,1.8-5.1,1.4c-1.5-0.3-2.7-1.3-4.3-1.5c-3.6-0.4-7.5,0.9-11.2,0.9c-4.6,0.1-9.1-0.4-13.7-1.5
411
+ c-1.6-0.4-3,0.1-4,1c-0.7,0.2-1.2,0.6-1.7,1.1c-1.2,0-2.1,0.5-2.8,1.1c-0.6-0.3-1.2-0.5-2-0.5c-0.1,0-0.1,0-0.2,0
412
+ c-0.7-0.6-1.6-1-2.8-1c-0.4,0-0.7,0-1.1,0.1c-0.7-0.7-1.7-1.1-2.9-1.1c-0.8,0-1.4,0.2-2,0.4c-0.6-0.3-1.2-0.4-2-0.4
413
+ c-0.4,0-0.7,0-1.1,0.1c-0.7-0.7-1.7-1.1-2.9-1.1c-1.8,0-3,0.9-3.7,2c-0.1,0-0.2,0-0.3,0c-1.3,0-2.3,0.5-3,1.2
414
+ c-0.5-0.5-1.1-0.8-1.9-1c-1.1-1-2.5-1.7-4.2-1.8c-1.5-0.1-2.8,0.2-4.2,0.7c-2,0.7-2.4,0.3-4.2-0.6c-5-2.4-12.8-0.9-12.6,6
415
+ c0.2,5,6.9,5.7,8.6,2c0.5,0.3,1,0.5,1.5,0.8c1,0.5,2,0.9,3.1,1.2c1.2,0.2,2.3,0.2,3.5,0.1c0.7-0.1,1.4-0.3,2-0.6
416
+ c0.3,0,0.5-0.1,0.6-0.2c1,1.2,2.5,1.5,4,1.3c0.2,0,0.5,0.1,0.7,0.1c1.3,0,2.3-0.5,3-1.2c0.7,0.7,1.7,1.2,3,1.2c1.8,0,3-0.9,3.7-2
417
+ c0.1,0,0.2,0,0.3,0c0.4,0,0.7,0,1.1-0.1c0.7,0.7,1.7,1.1,2.9,1.1c0.8,0,1.4-0.2,2-0.4c0.6,0.3,1.2,0.4,2,0.4c0.4,0,0.7,0,1.1-0.1
418
+ c0.7,0.7,1.7,1.1,2.9,1.1c0.1,0,0.1,0,0.2,0c0.7,0.6,1.6,1,2.8,1c1.3,0,2.3-0.4,3-1.1c0.6,0.3,1.2,0.4,2,0.5
419
+ c0.6,0.4,1.4,0.7,2.4,0.7c1.7,0,2.9-0.8,3.6-1.9c0.5,1.6,1.9,2.9,4.1,2.9c1.7,0,2.9-0.8,3.6-1.9c0.7,0.7,1.7,1.2,3.1,1.2
420
+ c1.5,0,2.6-0.6,3.4-1.6c0.3,0,0.6,0,0.9,0c1.8-0.1,3.9-0.6,5.9-0.8c0.6,1.3,1.9,2.4,3.9,2.4c1.2,0,2.1-0.4,2.8-1
421
+ c0.9,0.3,1.8,0.4,2.8,0.3c1.6-0.1,2.9-0.7,4.3-1.3c0.7,1.3,1.9,2.3,3.8,2.3c0.8,0,1.5-0.2,2-0.5c0.8,0.7,1.9,1.2,3,1.1
422
+ c1.1-0.1,2.2-0.4,3-1.2c0.7,0.5,1.6,0.8,2.7,0.8c1.9,0,3.1-0.9,3.8-2.2c0.3,0,0.6-0.1,0.9-0.1c0.6,1.5,1.9,2.6,4,2.6
423
+ c1.7,0,2.9-0.8,3.6-1.9c1.4,0.5,2.8,0.7,4.5,0.6c3.2-0.3,6.8-2.3,9.9-1.1c1.2,0.5,2.3,0.4,3.1,0c0.1,0,0.1,0,0.2,0
424
+ c1.9,0,3.2-1,3.8-2.3c0.7,0.8,1.8,1.3,3.2,1.3c1,0,1.8-0.3,2.5-0.7c0.1,0.1,0.2,0.3,0.3,0.4c0.4,1.8,1.8,3.4,4.2,3.4
425
+ c1.3,0,2.2-0.4,3-1.1c0.3,0.1,0.7,0.1,1,0.1c1.9,0,3.2-1,3.8-2.3c0.7,0.8,1.8,1.3,3.2,1.3c1.5,0,2.6-0.6,3.3-1.4
426
+ c0.4,0.3,0.8,0.5,1.3,0.7c1.9,0.7,4,1.1,6.1,1c1-0.1,2.1-0.2,3.1-0.4c0.8-0.2,1.7,0,0.8-0.5c1.2,0.7,2.4,0.7,3.4,0.4
427
+ c0.5,0.2,1.1,0.3,1.7,0.3c0.7,0,1.3-0.1,1.8-0.4c0.7,0.6,1.6,1,2.9,1c1.6,0,2.8-0.7,3.5-1.8c1.1,1.1,2.6,1.4,4.3,1.2
428
+ c0.1,0,0.2,0,0.2,0c0.1,0,0.1,0,0.2,0c0.4,0,0.8-0.1,1.2-0.1c0.8,0,1.7,0,2.5,0.1c0.5,0,1.1-0.1,1.6-0.3c0.4,0.1,0.9,0.2,1.4,0.2
429
+ c1.6,0,2.8-0.7,3.5-1.7c0.3,0.5,0.8,0.8,1.3,1.1c0.4,0.2,0.7,0.3,1.1,0.5c0.8,0.2,1.6,0.2,2.4,0l2.3-0.4c0.9-0.1,1.9-1,2.5-1.8
430
+ c0.7,1.1,1.9,2,3.6,2c1.2,0,2.1-0.4,2.8-0.9c0.2,0.4,0.4,0.7,0.7,1c0.9,0.8,2,1.3,3.2,1.3h1.7c1.1,0,2.2-0.4,3-1.2
431
+ c0.7,0.7,1.7,1.2,3,1.2c1.2,0,2.1-0.4,2.8-1c0.7,0.6,1.6,1,2.8,1c1.1,0,2-0.3,2.7-0.8c0.6,0.3,1.3,0.5,2,0.5h2
432
+ c0.6,0,1.3-0.2,1.9-0.5c0.3,0.1,0.7,0.1,1.1,0.1c0.9,0,1.6-0.2,2.2-0.6c0.9,0.7,2.2,1,3.7,0.5c3-1,5.9-1.1,8.9-0.1
433
+ c0.5,0.1,1,0.2,1.4,0.2c0.7,1,1.9,1.7,3.4,1.7c1.3,0,2.3-0.5,3-1.2c0.7,0.5,1.6,0.8,2.7,0.8c1.7,0,3-0.8,3.7-2
434
+ c0.1,0,0.1-0.1,0.2-0.1c0.7,0.5,1.5,0.8,2.5,0.8c0.9,0,1.6-0.2,2.2-0.5c0.6,0.3,1.3,0.5,2.2,0.5c0.3,0,0.6,0,0.9-0.1
435
+ c0.7,1.2,1.9,2.1,3.7,2.1c1.9,0,3.1-1,3.8-2.2c0.6-0.2,1.1-0.5,1.5-0.9c0.3,0.1,0.7,0.1,1.1,0.1c0.8,0,1.4-0.2,2-0.4
436
+ c0.6,0.3,1.2,0.4,2,0.4c0.8,0,1.5-0.2,2.1-0.5c0.7,1.1,1.9,1.8,3.6,1.8c1.4,0,2.4-0.5,3.2-1.3c0.6,1.3,1.9,2.3,3.8,2.3
437
+ c1,0,1.8-0.3,2.5-0.7c0.2,0,0.3,0.1,0.5,0.1c0.7,0,1.3-0.1,1.8-0.4c0.4,1.8,1.8,3.4,4.2,3.4c1.2,0,2.2-0.4,2.9-1
438
+ c0.5,0.2,1.1,0.4,1.8,0.4c2.3,0,3.6-1.4,4.1-3c0.7,0.8,1.8,1.4,3.2,1.4c1.3,0,2.3-0.5,3.1-1.2c0.7,1.1,1.9,1.9,3.6,1.9
439
+ c1.2,0,2.1-0.4,2.8-0.9c0.5,0.2,1,0.3,1.6,0.3c1.4,0,2.5-0.5,3.2-1.3c0,0,0.1,0,0.1,0c1.1,0,1.9-0.3,2.6-0.8
440
+ c0.6,0.3,1.3,0.5,2.1,0.5c0.5,0,0.9-0.1,1.3-0.2c0.7,0.9,1.8,1.5,3.3,1.5c0.4,0,0.8-0.1,1.2-0.1c0.4,0.1,0.7,0.1,1.2,0.1
441
+ c1.1,0,2-0.3,2.7-0.9c0.7,0.5,1.6,0.9,2.7,0.9c1.4,0,2.5-0.5,3.2-1.4c0.7,1,1.9,1.7,3.5,1.7c1.9,0,3.1-1,3.8-2.3
442
+ c0.4,0.1,0.8,0.2,1.3,0.2c0.7,0.8,1.8,1.4,3.2,1.4c1,0,1.8-0.3,2.5-0.7c0.7,0.6,1.7,1,2.9,1c1.5,0,2.6-0.6,3.3-1.5
443
+ c0.7,0.5,1.6,0.8,2.7,0.8c1.4,0,2.5-0.5,3.2-1.3c0.3,0.2,0.6,0.4,0.9,0.6c0.6,1.4,1.9,2.4,3.9,2.4c1.1,0,2-0.3,2.6-0.8
444
+ c0.7,0.7,1.7,1.2,3,1.2c1.6,0,2.8-0.7,3.5-1.7c0.7,1,1.9,1.7,3.5,1.7c1.4,0,2.5-0.5,3.2-1.4c0.7,0.4,1.5,0.7,2.4,0.7
445
+ c1.6,0,2.8-0.7,3.5-1.7c0.3,0,0.5,0.1,0.8,0.1c1,0,1.8-0.3,2.5-0.7c0.2,0,0.3,0.1,0.5,0.1c0.9,0,1.6-0.2,2.3-0.6
446
+ c0.1,0.1,0.1,0.2,0.2,0.3c0.9,0.8,2,1.3,3.2,1.3h0.7c0.9,0,1.9-0.3,2.6-0.9c0.7,0.7,1.7,1.2,3,1.2c0.6,0,1.2-0.1,1.7-0.3
447
+ c0.6,0.4,1.4,0.6,2.3,0.6c1.7,0,2.9-0.8,3.6-1.8c0.7,1.2,1.9,2.2,3.8,2.2c0.8,0,1.4-0.2,2-0.4c0.7,0.7,1.7,1.2,3,1.3
448
+ c4.5,0.2,8.9-0.2,13.3-1.1c0.7,0.6,1.6,0.9,2.8,0.9c0.7,0,1.3-0.1,1.8-0.4c0.7,0.8,1.8,1.4,3.2,1.4c1.7,0,2.9-0.8,3.6-1.9
449
+ c0.7,0.9,1.8,1.6,3.4,1.6c1.1,0,1.9-0.3,2.6-0.8c0.3,0.1,0.7,0.1,1.1,0.1c1.9,0,3.2-1,3.8-2.3c0.6,0.4,1.4,0.6,2.2,0.6h3
450
+ c0.1,0,0.2,0,0.4,0c0.1,0.1,0.3,0.1,0.4,0.2c0.3,0.1,0.7,0.2,1,0.3c1.1,0.4,2.5,0.1,3.5-0.5c0.3-0.2,0.6-0.4,0.8-0.6
451
+ c0.7,0.4,1.5,0.7,2.2,0.6c0.3,0,0.7,0,1,0c0.3,0.1,0.6,0.1,0.8,0.2c0.1,0,0.2,0,0.3,0.1c0.6,0.3,1.2,0.4,1.8,0.4h1.7
452
+ c1,0,2-0.4,2.8-1c0.5,0.2,1.1,0.4,1.8,0.4c0.9,0,1.6-0.2,2.2-0.5c0.6,0.3,1.3,0.5,2.2,0.5c0.8,0,1.5-0.2,2.1-0.5
453
+ c0.7,0.5,1.5,0.8,2.6,0.8C632.1,312.4,632.1,303.4,626.3,303.4z"/>
454
+ <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="103.9225" y1="309.761" x2="630.6802" y2="309.761">
455
+ <stop offset="0" style="stop-color:#E5F7FF"/>
456
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
457
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
458
+ <stop offset="1" style="stop-color:#EEF7FF"/>
459
+ </linearGradient>
460
+ <path class="st48" d="M626.3,306.6c-0.8,0-1.5,0.1-2.1,0.4c-0.7-0.4-1.5-0.6-2.6-0.6c-0.9,0-1.6,0.2-2.2,0.4
461
+ c-0.6-0.3-1.3-0.4-2.2-0.4c-1.2,0-2.2,0.3-2.9,0.8c-0.6-0.2-1.1-0.3-1.8-0.3h-1.1c-0.1,0-0.3-0.1-0.4-0.1c-1.3-0.3-2.8-0.5-4.2-0.4
462
+ c-1.2,0.1-2.2,0.3-3.1,1c-0.3-0.1-0.6-0.3-1-0.4c-0.3-0.1-0.7-0.2-1-0.3c-0.5-0.1-1-0.1-1.6-0.1c-0.5-0.2-1.1-0.2-1.7-0.2h-3
463
+ c-1.5,0-3,0.7-3.9,1.7c-0.6-0.2-1.3-0.4-2.1-0.4c-1.1,0-1.9,0.2-2.6,0.6c-0.3-0.1-0.7-0.1-1.1-0.1c-1.7,0-2.9,0.6-3.6,1.4
464
+ c-0.7-0.7-1.8-1.2-3.4-1.2c-0.7,0-1.3,0.1-1.8,0.3c-0.7-0.6-1.7-1-3.1-1c-1-0.6-2.3-0.9-3.9-0.7c-2.3,0.4-4.6,0.6-6.8,0.7
465
+ c-0.6-1.2-1.9-2.1-4-2.1c-2.1,0-3.4,0.9-4,2c-0.6-0.3-1.4-0.5-2.3-0.5c-1.7,0-2.9,0.6-3.6,1.4c-0.7-0.9-1.9-1.6-3.8-1.6
466
+ c-0.6,0-1.2,0.1-1.7,0.2c-0.6-0.3-1.4-0.5-2.3-0.5c-1.1,0-2,0.2-2.7,0.6c-0.8-0.5-1.9-0.9-3-0.9h-0.7c-0.8,0-1.6,0.2-2.2,0.5
467
+ c-0.7-0.7-1.8-1.2-3.4-1.2c-1,0-1.8,0.2-2.5,0.5c-0.2,0-0.3,0-0.5,0c-1.6,0-2.8,0.5-3.5,1.3c-0.3,0-0.5-0.1-0.8-0.1
468
+ c-1.4,0-2.5,0.4-3.2,1c-0.7-0.3-1.5-0.5-2.4-0.5c-1.6,0-2.8,0.5-3.5,1.3c-0.7-0.8-1.9-1.3-3.5-1.3c-1.1,0-2,0.2-2.6,0.6
469
+ c-0.3-0.2-0.7-0.4-1.2-0.6c-0.6-1-1.9-1.8-3.9-1.8c-1.4,0-2.5,0.4-3.2,1c-0.7-0.5-1.6-0.7-2.8-0.7c-1.5,0-2.6,0.5-3.3,1.1
470
+ c-0.7-0.4-1.6-0.6-2.7-0.6c-1,0-1.8,0.2-2.5,0.5c-0.7-0.4-1.5-0.7-2.7-0.8c-0.7-0.6-1.8-1-3.2-1c-1.1,0-2.1,0.3-2.8,0.7
471
+ c-0.5-0.1-1-0.2-1.6-0.2c-1.9,0-3.2,0.8-3.9,1.8c-0.1,0.1-0.2,0.2-0.4,0.2c-0.3-0.3-0.7-0.6-1.1-0.8c-0.6-1.1-1.9-2-4-2
472
+ c-1.8,0-3,0.6-3.7,1.5c-0.4,0-0.8,0-1.2,0.1c-0.4-0.1-0.7-0.1-1.2-0.1c-0.5,0-0.9,0.1-1.3,0.1c-0.7-0.7-1.8-1.2-3.3-1.2
473
+ c-1.1,0-1.9,0.2-2.6,0.6c-0.6-0.2-1.3-0.4-2.1-0.4c-1.4,0-2.5,0.4-3.2,1c0,0-0.1,0-0.1,0c-1.2,0-2.1,0.3-2.8,0.7
474
+ c-0.5-0.1-1-0.2-1.6-0.2c-0.4,0-0.9,0.1-1.2,0.1c-0.7-0.9-1.9-1.6-3.8-1.6c-1.6,0-2.7,0.5-3.4,1.3c-0.4,0.1-0.8,0.3-1.2,0.6
475
+ c-0.7-0.9-1.9-1.6-3.7-1.6c-2,0-3.3,0.8-3.9,1.9c-0.5-1.2-1.9-2.2-4.1-2.2c-1,0-1.8,0.2-2.5,0.6c-0.3,0-0.5-0.1-0.8-0.1
476
+ c-1,0-1.8,0.2-2.5,0.5c-0.2,0-0.3,0-0.5,0c-1.4,0-2.4,0.4-3.2,1c-0.6-1-1.9-1.7-3.8-1.7c-0.8,0-1.5,0.1-2.1,0.4
477
+ c-0.7-0.8-1.9-1.4-3.6-1.4c-0.8,0-1.4,0.1-2,0.3c-0.6-0.2-1.2-0.3-2-0.3c-1.3,0-2.2,0.3-3,0.8c-0.3-0.1-0.7-0.1-1-0.1
478
+ c-1.6,0-2.8,0.5-3.5,1.3c-0.7-0.8-1.9-1.3-3.5-1.3c-0.9,0-1.6,0.2-2.2,0.4c-0.6-0.3-1.3-0.4-2.2-0.4c-1,0-1.8,0.2-2.5,0.6
479
+ c-0.7-0.3-1.5-0.6-2.5-0.6c-1.1,0-1.9,0.2-2.6,0.6c-0.6-1.2-1.9-2.1-4.1-2.1c-1.7,0-2.9,0.6-3.6,1.4c-0.4-0.1-0.7-0.1-1.1-0.2
480
+ c-0.6-1.1-1.9-2-4-2c-1.9,0-3.2,0.8-3.9,1.8c-1.3,0.1-2.7,0.4-4,0.7c-0.4,0.1-0.7,0.2-1,0.4c-0.7-0.3-1.5-0.6-2.5-0.6
481
+ c-0.8,0-1.4,0.1-2,0.3c-0.3-0.1-0.6-0.1-1-0.1h-2c-0.9,0-1.8,0.2-2.6,0.6c-0.6-0.2-1.3-0.4-2.1-0.4c-1.2,0-2.1,0.3-2.8,0.8
482
+ c-0.7-0.5-1.6-0.8-2.8-0.8c-1.3,0-2.3,0.4-3,0.9c-0.8-0.5-1.9-0.9-3-0.9h-1.7c-1,0-2,0.3-2.8,0.8c-0.6-1-1.9-1.8-3.9-1.8
483
+ c-1.7,0-2.9,0.6-3.6,1.5c-0.4-0.4-0.8-0.8-1.4-1c-0.4-0.1-0.7-0.2-1.1-0.3c-0.8-0.2-1.6-0.2-2.4,0c-0.8,0.1-1.6,0.2-2.3,0.3
484
+ c-0.8,0.1-1.7,0.6-2.3,1.2c-0.7-0.8-1.9-1.3-3.5-1.3c-0.6,0-1.2,0.1-1.7,0.2c-0.4-0.1-0.9-0.2-1.3-0.2c-2.2-0.1-4.4,0-6.5,0.3
485
+ c-1,0.1-1.8,0.6-2.3,1.2c-0.7-0.6-1.7-1-3.1-1c-0.7,0-1.3,0.1-1.8,0.3c-0.7-0.5-1.6-0.8-2.9-0.8c-0.5,0-0.9,0.1-1.3,0.1
486
+ c-2-0.7-3.9-0.6-6.1-0.2c-2,0.4-3.4,0.3-5.3-0.2c-1.5-0.4-3.2,0-4.4,0.9c-0.7-0.4-1.5-0.6-2.6-0.6c-1.9,0-3.2,0.7-3.8,1.7
487
+ c-0.7-0.6-1.8-1-3.2-1c-0.7,0-1.3,0.1-1.8,0.3c-0.7-0.6-1.8-1-3.2-1c-1,0-1.8,0.2-2.5,0.6c-0.7-0.8-1.9-1.3-3.5-1.3
488
+ c-1.9,0-3.2,0.7-3.8,1.7c-0.7-0.6-1.8-1-3.2-1c-0.5,0-0.9,0.1-1.3,0.1c-2.1-0.6-4.3-0.5-6.5-0.3c-0.7-0.8-1.9-1.4-3.5-1.4
489
+ c-2,0-3.3,0.8-3.9,1.9c-0.2-0.1-0.4-0.2-0.7-0.3c-3.5-1.6-5.3-0.5-9-0.2c-3.6,0.3-7.4-1-11-1.4c-3.3-0.4-6.3-0.2-9.4,0.8
490
+ c-1.8,0.6-3.1,1.3-5.1,1c-1.5-0.2-2.7-1-4.3-1.1c-3.6-0.3-7.5,0.6-11.2,0.7c-4.6,0.1-9.1-0.3-13.7-1.1c-1.6-0.3-3,0.1-4,0.7
491
+ c-0.7,0.2-1.2,0.5-1.7,0.8c-1.2,0-2.1,0.4-2.8,0.8c-0.6-0.2-1.2-0.3-2-0.3c-0.1,0-0.1,0-0.2,0c-0.7-0.5-1.6-0.8-2.8-0.8
492
+ c-0.4,0-0.7,0-1.1,0.1c-0.7-0.5-1.7-0.8-2.9-0.8c-0.8,0-1.4,0.1-2,0.3c-0.6-0.2-1.2-0.3-2-0.3c-0.4,0-0.7,0-1.1,0.1
493
+ c-0.7-0.5-1.7-0.8-2.9-0.8c-1.8,0-3,0.6-3.7,1.5c-0.1,0-0.2,0-0.3,0c-1.3,0-2.3,0.4-3,0.9c-0.5-0.4-1.1-0.6-1.9-0.8
494
+ c-1.1-0.8-2.5-1.3-4.2-1.4c-1.5-0.1-2.8,0.1-4.2,0.5c-2,0.5-2.4,0.2-4.2-0.4c-5-1.8-12.8-0.7-12.6,4.5c0.2,3.8,6.9,4.3,8.6,1.5
495
+ c0.5,0.2,1,0.4,1.5,0.6c1,0.4,2,0.7,3.1,0.9c1.2,0.2,2.3,0.2,3.5,0c0.7-0.1,1.4-0.2,2-0.4c0.3,0,0.5-0.1,0.6-0.1c1,0.9,2.5,1.2,4,1
496
+ c0.2,0,0.5,0.1,0.7,0.1c1.3,0,2.3-0.3,3-0.9c0.7,0.5,1.7,0.9,3,0.9c1.8,0,3-0.6,3.7-1.5c0.1,0,0.2,0,0.3,0c0.4,0,0.7,0,1.1-0.1
497
+ c0.7,0.5,1.7,0.8,2.9,0.8c0.8,0,1.4-0.1,2-0.3c0.6,0.2,1.2,0.3,2,0.3c0.4,0,0.7,0,1.1-0.1c0.7,0.5,1.7,0.8,2.9,0.8
498
+ c0.1,0,0.1,0,0.2,0c0.7,0.5,1.6,0.8,2.8,0.8c1.3,0,2.3-0.3,3-0.9c0.6,0.2,1.2,0.3,2,0.3c0.6,0.3,1.4,0.5,2.4,0.5
499
+ c1.7,0,2.9-0.6,3.6-1.4c0.5,1.2,1.9,2.2,4.1,2.2c1.7,0,2.9-0.6,3.6-1.4c0.7,0.6,1.7,0.9,3.1,0.9c1.5,0,2.6-0.5,3.4-1.2
500
+ c0.3,0,0.6,0,0.9,0c1.8-0.1,3.9-0.5,5.9-0.6c0.6,1,1.9,1.8,3.9,1.8c1.2,0,2.1-0.3,2.8-0.7c0.9,0.2,1.8,0.3,2.8,0.2
501
+ c1.6-0.1,2.9-0.5,4.3-1c0.7,1,1.9,1.7,3.8,1.7c0.8,0,1.5-0.1,2-0.4c0.8,0.5,1.9,0.9,3,0.9c1.1,0,2.2-0.3,3-0.9
502
+ c0.7,0.4,1.6,0.6,2.7,0.6c1.9,0,3.1-0.7,3.8-1.7c0.3,0,0.6,0,0.9-0.1c0.6,1.1,1.9,2,4,2c1.7,0,2.9-0.6,3.6-1.4
503
+ c1.4,0.4,2.8,0.6,4.5,0.5c3.2-0.2,6.8-1.8,9.9-0.8c1.2,0.4,2.3,0.3,3.1,0c0.1,0,0.1,0,0.2,0c1.9,0,3.2-0.7,3.8-1.7
504
+ c0.7,0.6,1.8,1,3.2,1c1,0,1.8-0.2,2.5-0.6c0.1,0.1,0.2,0.2,0.3,0.3c0.4,1.4,1.8,2.5,4.2,2.5c1.3,0,2.2-0.3,3-0.8
505
+ c0.3,0.1,0.7,0.1,1,0.1c1.9,0,3.2-0.7,3.8-1.7c0.7,0.6,1.8,1,3.2,1c1.5,0,2.6-0.4,3.3-1.1c0.4,0.2,0.8,0.4,1.3,0.5
506
+ c1.9,0.6,4,0.8,6.1,0.8c1,0,2.1-0.2,3.1-0.3c0.8-0.1,1.7,0,0.8-0.4c1.2,0.5,2.4,0.5,3.4,0.3c0.5,0.2,1.1,0.3,1.7,0.3
507
+ c0.7,0,1.3-0.1,1.8-0.3c0.7,0.5,1.6,0.8,2.9,0.8c1.6,0,2.8-0.6,3.5-1.3c1.1,0.8,2.6,1.1,4.3,0.9c0.1,0,0.2,0,0.2,0
508
+ c0.1,0,0.1,0,0.2,0c0.4,0,0.8,0,1.2-0.1c0.8,0,1.7,0,2.5,0.1c0.5,0,1.1,0,1.6-0.2c0.4,0.1,0.9,0.2,1.4,0.2c1.6,0,2.8-0.5,3.5-1.3
509
+ c0.3,0.3,0.8,0.6,1.3,0.8c0.4,0.1,0.7,0.2,1.1,0.3c0.8,0.2,1.6,0.2,2.4,0l2.3-0.3c0.9-0.1,1.9-0.7,2.5-1.3c0.7,0.9,1.9,1.5,3.6,1.5
510
+ c1.2,0,2.1-0.3,2.8-0.7c0.2,0.3,0.4,0.5,0.7,0.7c0.9,0.6,2,1,3.2,1h1.7c1.1,0,2.2-0.3,3-0.9c0.7,0.5,1.7,0.9,3,0.9
511
+ c1.2,0,2.1-0.3,2.8-0.8c0.7,0.5,1.6,0.8,2.8,0.8c1.1,0,2-0.2,2.7-0.6c0.6,0.2,1.3,0.4,2,0.4h2c0.6,0,1.3-0.1,1.9-0.3
512
+ c0.3,0.1,0.7,0.1,1.1,0.1c0.9,0,1.6-0.2,2.2-0.4c0.9,0.5,2.2,0.8,3.7,0.4c3-0.7,5.9-0.8,8.9-0.1c0.5,0.1,1,0.2,1.4,0.2
513
+ c0.7,0.7,1.9,1.3,3.4,1.3c1.3,0,2.3-0.4,3-0.9c0.7,0.4,1.6,0.6,2.7,0.6c1.7,0,3-0.6,3.7-1.5c0.1,0,0.1-0.1,0.2-0.1
514
+ c0.7,0.3,1.5,0.6,2.5,0.6c0.9,0,1.6-0.2,2.2-0.4c0.6,0.3,1.3,0.4,2.2,0.4c0.3,0,0.6,0,0.9-0.1c0.7,0.9,1.9,1.6,3.7,1.6
515
+ c1.9,0,3.1-0.7,3.8-1.7c0.6-0.1,1.1-0.4,1.5-0.7c0.3,0.1,0.7,0.1,1.1,0.1c0.8,0,1.4-0.1,2-0.3c0.6,0.2,1.2,0.3,2,0.3
516
+ c0.8,0,1.5-0.1,2.1-0.4c0.7,0.8,1.9,1.4,3.6,1.4c1.4,0,2.4-0.4,3.2-1c0.6,1,1.9,1.7,3.8,1.7c1,0,1.8-0.2,2.5-0.5c0.2,0,0.3,0,0.5,0
517
+ c0.7,0,1.3-0.1,1.8-0.3c0.4,1.4,1.8,2.5,4.2,2.5c1.2,0,2.2-0.3,2.9-0.8c0.5,0.2,1.1,0.3,1.8,0.3c2.3,0,3.6-1,4.1-2.3
518
+ c0.7,0.6,1.8,1,3.2,1c1.3,0,2.3-0.4,3.1-0.9c0.7,0.8,1.9,1.4,3.6,1.4c1.2,0,2.1-0.3,2.8-0.7c0.5,0.1,1,0.2,1.6,0.2
519
+ c1.4,0,2.5-0.4,3.2-1c0,0,0.1,0,0.1,0c1.1,0,1.9-0.2,2.6-0.6c0.6,0.2,1.3,0.4,2.1,0.4c0.5,0,0.9-0.1,1.3-0.1
520
+ c0.7,0.7,1.8,1.2,3.3,1.2c0.4,0,0.8,0,1.2-0.1c0.4,0.1,0.7,0.1,1.2,0.1c1.1,0,2-0.2,2.7-0.6c0.7,0.4,1.6,0.6,2.7,0.6
521
+ c1.4,0,2.5-0.4,3.2-1c0.7,0.8,1.9,1.3,3.5,1.3c1.9,0,3.1-0.7,3.8-1.7c0.4,0.1,0.8,0.2,1.3,0.2c0.7,0.6,1.8,1,3.2,1
522
+ c1,0,1.8-0.2,2.5-0.5c0.7,0.5,1.7,0.8,2.9,0.8c1.5,0,2.6-0.5,3.3-1.1c0.7,0.4,1.6,0.6,2.7,0.6c1.4,0,2.5-0.4,3.2-1
523
+ c0.3,0.2,0.6,0.3,0.9,0.4c0.6,1,1.9,1.8,3.9,1.8c1.1,0,2-0.2,2.6-0.6c0.7,0.5,1.7,0.9,3,0.9c1.6,0,2.8-0.5,3.5-1.3
524
+ c0.7,0.8,1.9,1.3,3.5,1.3c1.4,0,2.5-0.4,3.2-1c0.7,0.3,1.5,0.5,2.4,0.5c1.6,0,2.8-0.5,3.5-1.3c0.3,0,0.5,0.1,0.8,0.1
525
+ c1,0,1.8-0.2,2.5-0.5c0.2,0,0.3,0,0.5,0c0.9,0,1.6-0.2,2.3-0.4c0.1,0.1,0.1,0.1,0.2,0.2c0.9,0.6,2,1,3.2,1h0.7
526
+ c0.9,0,1.9-0.2,2.6-0.7c0.7,0.5,1.7,0.9,3,0.9c0.6,0,1.2-0.1,1.7-0.2c0.6,0.3,1.4,0.5,2.3,0.5c1.7,0,2.9-0.6,3.6-1.4
527
+ c0.7,0.9,1.9,1.6,3.8,1.6c0.8,0,1.4-0.1,2-0.3c0.7,0.5,1.7,0.9,3,1c4.5,0.1,8.9-0.2,13.3-0.8c0.7,0.4,1.6,0.7,2.8,0.7
528
+ c0.7,0,1.3-0.1,1.8-0.3c0.7,0.6,1.8,1,3.2,1c1.7,0,2.9-0.6,3.6-1.4c0.7,0.7,1.8,1.2,3.4,1.2c1.1,0,1.9-0.2,2.6-0.6
529
+ c0.3,0.1,0.7,0.1,1.1,0.1c1.9,0,3.2-0.7,3.8-1.7c0.6,0.3,1.4,0.5,2.2,0.5h3c0.1,0,0.2,0,0.4,0c0.1,0,0.3,0.1,0.4,0.1
530
+ c0.3,0.1,0.7,0.2,1,0.3c1.1,0.3,2.5,0.1,3.5-0.3c0.3-0.1,0.6-0.3,0.8-0.5c0.7,0.3,1.5,0.5,2.2,0.5c0.3,0,0.7,0,1,0
531
+ c0.3,0,0.6,0.1,0.8,0.1c0.1,0,0.2,0,0.3,0.1c0.6,0.2,1.2,0.3,1.8,0.3h1.7c1,0,2-0.3,2.8-0.8c0.5,0.2,1.1,0.3,1.8,0.3
532
+ c0.9,0,1.6-0.2,2.2-0.4c0.6,0.3,1.3,0.4,2.2,0.4c0.8,0,1.5-0.1,2.1-0.4c0.7,0.4,1.5,0.6,2.6,0.6
533
+ C632.1,313.4,632.1,306.6,626.3,306.6z"/>
62
534
  <g>
63
- <path class="st7" d="M56.5,634.9v-20 M49.5,634.9c-1.7,0-3-4.5-3-10s1.3-10,3-10 M44.3,634.9c-3.3,0-6-4.5-6-10s2.7-10,6-10
64
- M40.3,634.9c-5.5,0-10-4.5-10-10s4.5-10,10-10 M56.5,602.6v-20 M49.5,602.6c-1.7,0-3-4.5-3-10s1.3-10,3-10 M44.3,602.6
65
- c-3.3,0-6-4.5-6-10s2.7-10,6-10 M40.3,602.6c-5.5,0-10-4.5-10-10s4.5-10,10-10"/>
66
- <path class="st8" d="M66.8,634.9H36.3c-5.5,0-10-4.5-10-10s4.5-10,10-10h30.5V634.9z M66.8,602.6H36.3c-5.5,0-10-4.5-10-10
67
- s4.5-10,10-10h30.5V602.6z"/>
68
- <path class="st9" d="M17,689.7h24.2 M17,685.6h24.2 M17,681.4h24.2 M17,664.6h24.2 M17,668.8h24.2 M17,673h24.2 M17,677.2h24.2"/>
535
+ <path class="st49" d="M312,154.7c-1.2,0-2.1,0.4-2.8,1c-0.6-1.3-1.9-2.3-3.8-2.3c-1.5,0-2.6,0.6-3.3,1.5c-0.7-0.5-1.6-0.8-2.7-0.8
536
+ c-1.1,0-2,0.3-2.7,0.8c-0.7-0.9-1.8-1.5-3.3-1.5c-1.6,0-2.8,0.7-3.5,1.7c-0.5-0.2-1.2-0.4-1.9-0.4c-1.3,0-2.3,0.5-3,1.2
537
+ c-0.7-0.7-1.7-1.2-3-1.2c-1.9,0-3.1,1-3.8,2.2c-0.2-0.6-0.5-1.2-1-1.6c-0.9-0.8-2-1.3-3.2-1.3h-0.7c-0.2,0-0.4,0-0.7,0.1
538
+ c-0.2,0-0.4-0.1-0.7-0.1c-1.1,0-2,0.3-2.7,0.9c-0.4-0.1-0.8-0.2-1.3-0.2c-1.3,0-2.3,0.5-3.1,1.2c-0.7-1.1-1.9-1.9-3.6-1.9
539
+ c-1,0-1.8,0.3-2.5,0.7c-0.7-0.1-1.3-0.1-2,0c-2.9,0.5-5.6-0.1-8.3-1.1c-0.7-0.3-1.4-0.3-2-0.1c-0.3-0.1-0.7-0.1-1.1-0.1
540
+ c-2.4,0-3.8,1.5-4.2,3.3c-1.4-2.3-3.8-3.6-6.6-3.8c-1.4-0.1-2.7,0.1-4,0.5c-1.3,0.4-2.7,1.4-4.1,1.6c-0.8,0.1-1.6,0.3-2.3,0.7
541
+ c-0.7-0.6-1.7-1-2.9-1c-1.8,0-3,0.8-3.7,2c-0.1,0-0.2,0-0.3,0c-3.7,0-5,3.6-4,6.2c-2,2.6-0.9,7.4,3.4,7.4c0.5,0,1-0.1,1.5-0.2
542
+ c-2,1.4-2.3,4.5-1,6.5c-3,1.7-2.8,6.9,0.5,8.1c-5.1,0.3-5.4,7.8-0.8,8.8c-0.6,1.1-0.7,2.4-0.4,3.7c-2.8,1.5-2.9,6-0.3,7.7
543
+ c-0.7,1.3-0.7,3,0,4.4c-0.9,1-1.2,2.3-1.1,3.6c-3.7,1.4-3.6,7.3,0.2,8.5c0.3,0.9,0.9,1.8,1.8,2.3c-1.5,1.4-1.8,3.9-0.8,5.8
544
+ c-0.9,1.7-0.7,3.9,0.5,5.3c-2.3,1.7-2.3,5.6,0,7.3c-2.7,0.7-3.6,3.8-2.7,6.1c-1.7,2.1-1.2,5.8,1.4,7c-0.9,2.2-0.2,5.1,2.2,6.1
545
+ c-2,1.3-2.4,4.1-1.4,6.1c-2.5,1.7-2.5,6.1,0.2,7.7c-0.1,0.9,0,1.9,0.4,2.8c-0.5,1-0.5,2.3-0.2,3.4c-2.4,1.3-2.8,4.9-1.2,7
546
+ c-2.1,2.6-1,7.5,3.3,7.5c4.3,0,5.4-4.9,3.3-7.5c0.8-1,1.1-2.2,1-3.5c2.9-1.1,3.4-4.9,1.7-7.1c0.7-2,0.1-4.5-1.8-5.6
547
+ c0.2-1,0-2.1-0.5-3c2.7-1.8,2.4-6.7-0.8-7.9c2.7-1.8,2.6-6.5-0.4-7.9c0.5-1.1,0.5-2.5,0.1-3.7c1.5-1.9,1.3-5.1-0.7-6.6
548
+ c3.2-0.9,3.9-5,2-7.3c1.8-1.4,2.2-4.1,1.1-6c1.1-2.1,0.6-5-1.5-6.3c2-1.8,1.9-5.4-0.3-7.1c1.7-1.3,2.1-3.9,1.2-5.8
549
+ c1.7-1.9,1.5-5.4-0.7-6.9c0.5-1.1,0.7-2.4,0.3-3.6c3.2-1.8,2.9-7.4-1-8.3c1.2-2.2,0.5-5.5-2.1-6.5c3.9-0.2,4.9-4.7,3.2-7.2
550
+ c3.5-1.9,2.7-8.4-2.2-8.4c-0.5,0-1,0.1-1.4,0.2c1.6-1.2,2.1-3.6,1.4-5.4c0.1-0.1,0.2-0.3,0.3-0.5c0.1,0,0.2,0,0.3,0
551
+ c0.9,0,1.7-0.3,2.3-0.7c0.8,0.7,1.7,1.1,2.8,1c2.2-0.2,3.8-0.9,5.8-1.7c0.5-0.2,1.1-0.3,1.5-0.4c2,3.3,7.3,2.3,8.3-1
552
+ c0.7,0.9,1.8,1.5,3.3,1.5c0.3,0,0.5,0,0.7-0.1c0,0,0,0,0,0c4.2,1.7,8.6,1.9,13.1,1.1c0.5-0.1,0.9-0.3,1.3-0.5
553
+ c0.3,0.1,0.6,0.1,0.9,0.1c1.3,0,2.3-0.5,3.1-1.2c0.7,1.1,1.9,1.9,3.6,1.9c1.1,0,2-0.3,2.7-0.9c0.4,0.1,0.8,0.2,1.3,0.2
554
+ c0.2,0,0.4,0,0.6-0.1c0.2,0,0.5,0.1,0.7,0.1h0.7c1.2,0,2.4-0.5,3.2-1.3c0.3-0.3,0.5-0.6,0.7-1c0.5,1.6,1.9,2.9,4.1,2.9
555
+ c1.3,0,2.3-0.5,3-1.2c0.7,0.7,1.7,1.2,3,1.2c1.6,0,2.8-0.7,3.5-1.7c0.5,0.2,1.2,0.4,1.9,0.4c1.1,0,2-0.3,2.7-0.8
556
+ c0.7,0.9,1.8,1.5,3.3,1.5c1.5,0,2.6-0.6,3.3-1.5c0.7,0.5,1.6,0.8,2.7,0.8c1.2,0,2.1-0.4,2.8-1c0.6,1.3,1.9,2.3,3.8,2.3
557
+ C317.8,163.7,317.8,154.7,312,154.7z"/>
558
+ <path class="st49" d="M519.1,259.5c1-1.9,0.6-4.5-1.1-5.9c0.3-0.9,0.4-2,0.1-3c1-1.4,1.1-3.4,0.3-5c5.3-0.5,5.1-9-0.5-9
559
+ c0,0-0.1,0-0.1,0c1-0.8,1.6-2,1.8-3.5c0.1-1.3,0.3-2.5,0.4-3.8c0.7-0.8,1.1-1.8,1.1-2.9c0-1.1-0.5-2.4-1.3-3.2
560
+ c-0.1-0.1-0.1-0.1-0.2-0.2c0.1-1,0-1.9-0.4-2.8c1.1-1.2,1.4-3,1-4.5c0.4-1.6,0-3.5-1.2-4.7c0.5-0.7,0.9-1.6,0.9-2.6v-4
561
+ c0-1.4-0.8-2.8-1.9-3.6c0.7-0.9,1.2-1.9,1.2-3v-1.3c0-0.2,0-0.4-0.1-0.7c0-0.2,0.1-0.4,0.1-0.7v-0.7c0-1.2-0.5-2.4-1.3-3.2
562
+ c-0.6-0.6-1.4-1-2.2-1.2c0.1-1.1-0.2-2.3-0.9-3.1c0.2,0,0.4,0,0.6,0c1.2-0.1,2.4-0.4,3.2-1.3c0.8-0.9,1.3-2,1.3-3.2v-2
563
+ c0-0.3,0-0.6-0.1-0.9c1.4-2.5,0.4-6.3-3-6.8c0.7-0.2,1.3-0.5,1.8-1.1c0.8-0.9,1.3-2,1.3-3.2v-1.3c0-1-0.4-2-1-2.8
564
+ c0.1-0.6,0.2-1.2,0.1-1.9c2.5-2.4,1.6-7.9-3-7.9c-0.3,0-0.6,0-0.8,0.1c-0.7-0.5-1.5-0.7-2.5-0.7c-1.2,0-2.1,0.4-2.8,1
565
+ c-0.6-1.3-1.9-2.3-3.8-2.3c-0.6,0-1.2,0.1-1.7,0.3c-0.5-0.2-1-0.3-1.7-0.3c-1.5,0-2.6,0.6-3.3,1.5c-0.7-0.5-1.6-0.8-2.7-0.8
566
+ c-1.8,0-3,0.8-3.7,2c-0.7-1.2-1.9-2-3.7-2c-1.7,0-2.9,0.8-3.6,1.9c-0.7-0.7-1.7-1.2-3.1-1.2c-2,0-3.2,1-3.9,2.4
567
+ c-0.5-1.7-1.9-3.1-4.1-3.1c-0.8,0-1.4,0.2-2,0.4c-0.6-0.3-1.2-0.4-2-0.4c-1.2,0-2.1,0.4-2.9,1c-0.5-0.2-1.1-0.4-1.8-0.4
568
+ c-1.6,0-2.8,0.7-3.5,1.7c-0.6-1.3-1.9-2.4-3.9-2.4c-1.5,0-2.6,0.6-3.3,1.5c-0.7-0.5-1.6-0.8-2.7-0.8c-0.8,0-1.4,0.2-2,0.4
569
+ c-0.6-0.3-1.2-0.4-2-0.4c-1.9,0-3.2,1-3.9,2.4c-0.7-1-1.9-1.7-3.5-1.7c-1.5,0-2.6,0.6-3.3,1.4c-0.6-1.5-1.9-2.8-4-2.8
570
+ c-1.4,0-2.4,0.5-3.1,1.3c-0.6-0.4-1.4-0.6-2.2-0.6c-1.1,0-2,0.3-2.7,0.8c-0.7-0.9-1.8-1.5-3.3-1.5c-0.7,0-1.3,0.1-1.8,0.4
571
+ c-0.7-0.6-1.6-1-2.9-1c-1.5,0-2.6,0.6-3.3,1.5c-0.4-0.1-0.8-0.2-1.3-0.2c-1.3,0-2.3,0.5-3.1,1.2c-0.7-1.1-1.9-1.9-3.6-1.9
572
+ c-1.5,0-2.6,0.6-3.3,1.5c-0.7-0.5-1.6-0.8-2.7-0.8c-0.2,0-0.4,0-0.6,0.1c-0.6-1.5-1.9-2.7-4-2.7c-0.2,0-0.4,0-0.7,0.1
573
+ c-0.2,0-0.4-0.1-0.7-0.1c-2,0-3.2,1-3.9,2.4c-0.5-1.7-1.9-3-4.1-3c-3.1,0-4.5,2.6-4.3,5c-3.2,0.8-6.7,1.5-7.6,0.1
574
+ c-1-1.6-3.2-2.8-5.1-2.1c-2.5,0.9-4.5,1-7,0.1c-1.3-0.4-2.4-0.3-3.3,0.2c-0.2,0-0.4-0.1-0.7-0.1H356c-0.5,0-1.1,0.1-1.6,0.3
575
+ c-0.5-0.2-1.1-0.3-1.7-0.3c-1.7,0-2.9,0.8-3.6,1.9c-0.7-0.7-1.7-1.2-3.1-1.2c-1.8,0-3,0.8-3.7,2c-0.7-1.2-1.9-2-3.7-2
576
+ c-0.5,0-0.9,0.1-1.3,0.2c-0.4-0.1-0.8-0.2-1.3-0.2c-1.5,0-2.6,0.6-3.3,1.5c-0.7-0.9-1.8-1.5-3.3-1.5c-1.3,0-2.3,0.5-3,1.2
577
+ c-0.6-0.6-1.4-1-2.4-1.1c-0.7-0.8-1.8-1.4-3.2-1.4c-5.6,0-5.8,8.3-0.6,8.9c0.7,0.8,1.8,1.4,3.2,1.4c1.3,0,2.3-0.5,3-1.2
578
+ c0.7,0.7,1.7,1.2,3,1.2c1.5,0,2.6-0.6,3.3-1.5c0.7,0.9,1.8,1.5,3.3,1.5c0.5,0,0.9-0.1,1.3-0.2c0.4,0.1,0.8,0.2,1.3,0.2
579
+ c1.8,0,3-0.8,3.7-2c0.7,1.2,1.9,2,3.7,2c1.7,0,2.9-0.8,3.6-1.9c0.7,0.7,1.7,1.2,3.1,1.2c0.6,0,1.2-0.1,1.7-0.3
580
+ c0.5,0.2,1,0.3,1.6,0.3h2.7c0.6,0,1.3-0.2,1.9-0.4c3,1,6,1.2,8.9,0.6c1.5,1.2,3.3,2,5.4,2.3c4.4,0.6,8.2-1.6,12.5-1.9
581
+ c2.7-0.2,4.1-2.2,4.3-4.3c0.2,0.2,0.5,0.4,0.7,0.6c0.2,2.1,1.6,4,4.3,4c1.1,0,2-0.3,2.7-0.9c0.4,0.1,0.8,0.2,1.3,0.2
582
+ c0.5,0,0.9-0.1,1.3-0.2c0.7,0.5,1.6,0.9,2.7,0.9c1.5,0,2.6-0.6,3.4-1.5c0.7-0.2,1.2-0.6,1.7-1c0.7,1.1,1.9,1.9,3.6,1.9
583
+ c1.5,0,2.6-0.6,3.3-1.5c0.4,0.1,0.8,0.2,1.3,0.2c0.7,0,1.3-0.1,1.8-0.4c0.7,0.6,1.6,1,2.9,1c1.1,0,2-0.3,2.7-0.8
584
+ c0.7,0.9,1.8,1.5,3.3,1.5c1.4,0,2.4-0.5,3.1-1.3c0.6,0.4,1.4,0.6,2.2,0.6c1.5,0,2.6-0.6,3.3-1.4c0.6,1.5,1.9,2.8,4,2.8
585
+ c1.9,0,3.2-1,3.9-2.4c0.7,1,1.9,1.7,3.5,1.7c0.8,0,1.4-0.2,2-0.4c0.6,0.3,1.2,0.4,2,0.4c1.5,0,2.6-0.6,3.3-1.5
586
+ c0.7,0.5,1.6,0.8,2.7,0.8c1.6,0,2.8-0.7,3.5-1.7c0.6,1.3,1.9,2.4,3.9,2.4c1.2,0,2.1-0.4,2.9-1c0.5,0.2,1.1,0.4,1.8,0.4
587
+ c0.8,0,1.4-0.2,2-0.4c0.6,0.3,1.2,0.4,2,0.4c2,0,3.2-1,3.9-2.4c0.5,1.7,1.9,3.1,4.1,3.1c1.7,0,2.9-0.8,3.6-1.9
588
+ c0.7,0.7,1.7,1.2,3.1,1.2c1.8,0,3-0.8,3.7-2c0.7,1.2,1.9,2,3.7,2c1.5,0,2.6-0.6,3.3-1.5c0.7,0.5,1.6,0.8,2.7,0.8
589
+ c0.6,0,1.2-0.1,1.7-0.3c0.5,0.2,1,0.3,1.7,0.3c1.2,0,2.1-0.4,2.8-1c0.3,0.7,0.9,1.3,1.6,1.7c-0.2,1.2,0.1,2.4,0.7,3.4
590
+ c-0.1,0.4-0.2,0.9-0.2,1.4v1.3c0,1.2,0.5,2.4,1.3,3.2c0.6,0.6,1.5,1.1,2.3,1.2c-2.1,0.7-3,2.9-2.8,5c-0.5,0.8-0.9,1.6-0.9,2.6v2
591
+ c0,1,0.4,2.1,1.1,2.9c-0.2,0-0.4-0.1-0.6-0.1c-5.4,0-5.8,7.8-1.1,8.9c0,0.1,0,0.2,0,0.3v0.7c0,0.2,0,0.4,0.1,0.7
592
+ c0,0.2-0.1,0.4-0.1,0.7v1.3c0,1.2,0.5,2.4,1.3,3.2c0.2,0.2,0.4,0.3,0.6,0.5c-0.7,0.8-1.2,1.8-1.2,3v4c0,1.3,0.6,2.5,1.6,3.4
593
+ c-0.7,1.1-0.9,2.6-0.6,4c-0.3,1.1-0.2,2.4,0.3,3.5c-1.4,1.6-1.5,4.2-0.3,6c-0.3,0.6-0.4,1.2-0.5,1.9c-0.2,2-0.4,4-0.6,6
594
+ c-0.2,2.3,2.2,4.6,4.5,4.5c-1.6,1.4-1.9,3.9-1,5.7c-3.1,0.3-4.3,3.3-3.7,5.7c-1.3,1.9-1.1,4.9,0.8,6.4c-0.7,1.9-0.2,4.3,1.5,5.5
595
+ c-0.4,0.7-0.6,1.4-0.6,2.3v1.3c0,1.2,0.5,2.4,1.3,3.2c0.3,0.3,0.7,0.6,1.1,0.8c-2.7,1.4-3,5.5-0.8,7.5c-0.3,0.2-0.7,0.4-0.9,0.7
596
+ c-0.2,0.2-0.4,0.4-0.7,0.7c-0.5,0.5-0.8,1.1-1.1,1.8c-0.7,0.6-1.2,1.3-1.4,2.2c-0.3,1.2-0.1,2.3,0.5,3.5c0.4,0.7,0.7,1.5,1.1,2.2
597
+ c-0.8,2.6,0.5,6,4.1,6c3.6,0,4.9-3.4,4.1-6c0.1-0.2,0.2-0.4,0.2-0.6c0.3-1.2,0.1-2.3-0.4-3.4c0.8-0.8,1.3-2,1.3-3.1
598
+ c0-1.1-0.5-2.4-1.3-3.2c-0.1-0.1-0.2-0.2-0.3-0.2c2.8-1.7,2.8-6.4-0.2-7.9c0.4-0.2,0.8-0.5,1.1-0.8c0.8-0.9,1.3-2,1.3-3.2v-1.3
599
+ c0-1.2-0.5-2.4-1.3-3.2C519.6,259.8,519.4,259.6,519.1,259.5z"/>
69
600
  </g>
70
- <rect x="211" y="152.3" class="st10" width="311.2" height="148"/>
71
- <rect x="225.9" y="165.7" class="st11" width="281.3" height="134.6"/>
72
- <path class="st12" d="M507.2,165.7H225.9v134.6h5V170.7h276.3V165.7z"/>
73
- <path class="st12" d="M226.4,291.1H211v9.2h311.2v-9.2H508l-1.3,2H227L226.4,291.1z"/>
74
601
  <g>
75
- <path class="st13" d="M225.9,165.7h281.3v134.6H225.9V165.7z"/>
76
- <rect x="211" y="152.3" class="st13" width="311.2" height="148"/>
77
- <rect x="101.6" y="300.2" class="st14" width="530" height="18.3"/>
602
+ <linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="216.6681" y1="224.265" x2="317.7742" y2="224.265">
603
+ <stop offset="0" style="stop-color:#E5F7FF"/>
604
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
605
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
606
+ <stop offset="1" style="stop-color:#EEF7FF"/>
607
+ </linearGradient>
608
+ <path class="st50" d="M313.5,156.6c-1.2,0-2.1,0.4-2.7,1c-0.6-1.3-1.9-2.3-3.7-2.3c-1.5,0-2.5,0.6-3.2,1.5
609
+ c-0.7-0.5-1.5-0.8-2.6-0.8c-1.1,0-1.9,0.3-2.6,0.8c-0.7-0.9-1.8-1.5-3.2-1.5c-1.6,0-2.7,0.7-3.4,1.7c-0.5-0.2-1.1-0.4-1.8-0.4
610
+ c-1.3,0-2.2,0.5-2.9,1.1c-0.7-0.7-1.7-1.1-2.9-1.1c-1.8,0-3.1,0.9-3.7,2.2c-0.2-0.6-0.5-1.1-1-1.6c-0.9-0.8-1.9-1.3-3.1-1.3H276
611
+ c-0.2,0-0.4,0-0.6,0.1c-0.2,0-0.4-0.1-0.7-0.1c-1.1,0-1.9,0.3-2.6,0.8c-0.4-0.1-0.8-0.2-1.3-0.2c-1.3,0-2.3,0.5-3,1.2
612
+ c-0.7-1.1-1.8-1.8-3.5-1.8c-1,0-1.8,0.3-2.4,0.7c-0.6-0.1-1.3-0.1-2,0c-2.8,0.5-5.5-0.1-8.1-1.1c-0.6-0.3-1.3-0.3-2-0.1
613
+ c-0.3-0.1-0.7-0.1-1.1-0.1c-2.3,0-3.7,1.5-4.1,3.2c-1.3-2.2-3.7-3.5-6.4-3.7c-1.3-0.1-2.7,0.1-3.9,0.5c-1.3,0.4-2.6,1.4-4,1.6
614
+ c-0.8,0.1-1.5,0.3-2.2,0.7c-0.7-0.6-1.6-1-2.8-1c-1.7,0-2.9,0.8-3.6,2c-0.1,0-0.2,0-0.3,0c-3.6,0-4.9,3.5-3.9,6.1
615
+ c-1.9,2.5-0.9,7.2,3.3,7.2c0.5,0,1-0.1,1.4-0.2c-1.9,1.4-2.2,4.4-0.9,6.3c-2.9,1.6-2.8,6.7,0.5,7.9c-4.9,0.3-5.2,7.6-0.8,8.6
616
+ c-0.6,1.1-0.7,2.4-0.4,3.6c-2.7,1.5-2.8,5.8-0.3,7.5c-0.7,1.3-0.7,3,0,4.3c-0.8,0.9-1.2,2.3-1.1,3.5c-3.6,1.3-3.5,7.1,0.2,8.2
617
+ c0.3,0.9,0.9,1.7,1.8,2.2c-1.5,1.4-1.8,3.8-0.8,5.6c-0.9,1.6-0.7,3.8,0.4,5.2c-2.2,1.7-2.2,5.5,0,7.1c-2.6,0.7-3.5,3.6-2.7,5.9
618
+ c-1.6,2.1-1.2,5.6,1.4,6.8c-0.9,2.1-0.2,5,2.2,5.9c-1.9,1.2-2.4,3.9-1.4,5.9c-2.5,1.7-2.4,5.9,0.2,7.4c-0.1,0.9,0,1.9,0.4,2.7
619
+ c-0.4,1-0.5,2.2-0.2,3.3c-2.4,1.3-2.8,4.8-1.1,6.8c-2,2.5-0.9,7.3,3.2,7.3c4.2,0,5.3-4.8,3.2-7.3c0.8-0.9,1.1-2.2,1-3.4
620
+ c2.8-1.1,3.3-4.8,1.7-6.9c0.7-1.9,0.1-4.4-1.7-5.5c0.2-1,0-2-0.4-2.9c2.6-1.8,2.4-6.5-0.7-7.7c2.6-1.7,2.5-6.3-0.4-7.7
621
+ c0.5-1.1,0.5-2.4,0.1-3.6c1.5-1.9,1.2-5-0.7-6.4c3.1-0.9,3.8-4.9,2-7.1c1.7-1.3,2.1-4,1.1-5.8c1.1-2,0.6-4.9-1.5-6.1
622
+ c1.9-1.8,1.8-5.3-0.3-6.9c1.7-1.3,2.1-3.8,1.2-5.7c1.7-1.9,1.5-5.3-0.7-6.7c0.5-1.1,0.6-2.3,0.3-3.5c3.1-1.7,2.8-7.2-1-8.1
623
+ c1.1-2.2,0.5-5.4-2.1-6.3c3.8-0.2,4.8-4.5,3.1-7c3.4-1.9,2.7-8.2-2.1-8.2c-0.5,0-1,0.1-1.4,0.2c1.6-1.2,2.1-3.5,1.4-5.3
624
+ c0.1-0.1,0.2-0.3,0.3-0.5c0.1,0,0.2,0,0.3,0c0.9,0,1.7-0.2,2.3-0.6c0.8,0.6,1.7,1,2.7,0.9c2.1-0.2,3.7-0.9,5.7-1.6
625
+ c0.5-0.2,1.1-0.3,1.4-0.4c1.9,3.2,7.1,2.2,8-1c0.7,0.9,1.8,1.4,3.2,1.4c0.3,0,0.5,0,0.7-0.1c0,0,0,0,0,0c4.1,1.6,8.4,1.8,12.7,1.1
626
+ c0.5-0.1,0.9-0.2,1.2-0.5c0.3,0,0.6,0.1,0.9,0.1c1.3,0,2.3-0.5,3-1.2c0.7,1.1,1.8,1.8,3.5,1.8c1.1,0,1.9-0.3,2.6-0.8
627
+ c0.4,0.1,0.8,0.2,1.3,0.2c0.2,0,0.4,0,0.6-0.1c0.2,0,0.4,0.1,0.7,0.1h0.6c1.1,0,2.3-0.5,3.1-1.3c0.3-0.3,0.5-0.6,0.7-0.9
628
+ c0.5,1.6,1.8,2.9,4,2.9c1.3,0,2.2-0.5,2.9-1.1c0.7,0.7,1.7,1.1,2.9,1.1c1.6,0,2.7-0.7,3.4-1.7c0.5,0.2,1.1,0.4,1.8,0.4
629
+ c1.1,0,1.9-0.3,2.6-0.8c0.7,0.9,1.8,1.5,3.2,1.5c1.5,0,2.5-0.6,3.2-1.5c0.7,0.5,1.5,0.8,2.6,0.8c1.2,0,2.1-0.4,2.7-1
630
+ c0.6,1.3,1.9,2.3,3.7,2.3C319.2,165.4,319.2,156.6,313.5,156.6z"/>
631
+ <linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="317.7564" y1="221.9273" x2="517.999" y2="221.9273">
632
+ <stop offset="0" style="stop-color:#E5F7FF"/>
633
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
634
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
635
+ <stop offset="1" style="stop-color:#EEF7FF"/>
636
+ </linearGradient>
637
+ <path class="st51" d="M514.9,258.5c0.9-1.8,0.6-4.4-1.1-5.7c0.3-0.9,0.4-1.9,0.1-2.9c1-1.4,1.1-3.3,0.3-4.8c5.1-0.5,5-8.7-0.5-8.7
638
+ c0,0-0.1,0-0.1,0c1-0.8,1.6-2,1.7-3.4c0.1-1.2,0.3-2.5,0.4-3.7c0.6-0.8,1-1.8,1-2.8c0-1.1-0.5-2.4-1.3-3.1
639
+ c-0.1-0.1-0.1-0.1-0.2-0.2c0.1-0.9,0-1.9-0.4-2.7c1-1.1,1.4-2.9,0.9-4.4c0.4-1.6,0-3.4-1.2-4.6c0.5-0.7,0.9-1.6,0.9-2.5v-3.9
640
+ c0-1.4-0.7-2.7-1.8-3.5c0.7-0.8,1.2-1.8,1.2-3v-1.3c0-0.2,0-0.4-0.1-0.6c0-0.2,0.1-0.4,0.1-0.7v-0.6c0-1.1-0.5-2.3-1.3-3.1
641
+ c-0.5-0.5-1.3-1-2.1-1.2c0.1-1.1-0.2-2.2-0.9-3.1c0.2,0,0.4,0,0.6,0c1.1-0.1,2.3-0.4,3.1-1.3c0.8-0.9,1.3-1.9,1.3-3.1v-1.9
642
+ c0-0.3,0-0.6-0.1-0.9c1.3-2.4,0.4-6.1-2.9-6.6c0.6-0.2,1.3-0.5,1.7-1c0.8-0.9,1.3-1.9,1.3-3.1v-1.3c0-0.9-0.4-1.9-1-2.7
643
+ c0.1-0.6,0.2-1.2,0.1-1.8c2.5-2.3,1.5-7.7-2.9-7.7c-0.3,0-0.5,0-0.8,0.1c-0.6-0.4-1.4-0.7-2.4-0.7c-1.2,0-2.1,0.4-2.7,1
644
+ c-0.6-1.3-1.9-2.3-3.7-2.3c-0.6,0-1.1,0.1-1.6,0.3c-0.5-0.2-1-0.3-1.6-0.3c-1.5,0-2.5,0.6-3.2,1.5c-0.7-0.5-1.5-0.8-2.6-0.8
645
+ c-1.7,0-2.9,0.8-3.6,1.9c-0.7-1.1-1.9-1.9-3.6-1.9c-1.7,0-2.8,0.8-3.5,1.8c-0.7-0.7-1.7-1.2-3-1.2c-1.9,0-3.1,1-3.8,2.3
646
+ c-0.5-1.6-1.8-3-4-3c-0.7,0-1.4,0.2-1.9,0.4c-0.6-0.3-1.2-0.4-1.9-0.4c-1.2,0-2.1,0.4-2.8,1c-0.5-0.2-1.1-0.3-1.8-0.3
647
+ c-1.6,0-2.7,0.7-3.4,1.7c-0.6-1.3-1.9-2.3-3.8-2.3c-1.5,0-2.5,0.6-3.2,1.5c-0.7-0.5-1.5-0.8-2.6-0.8c-0.7,0-1.4,0.2-1.9,0.4
648
+ c-0.6-0.3-1.2-0.4-1.9-0.4c-1.9,0-3.1,1-3.8,2.3c-0.7-1-1.8-1.7-3.4-1.7c-1.4,0-2.5,0.6-3.2,1.4c-0.5-1.5-1.8-2.7-3.9-2.7
649
+ c-1.3,0-2.3,0.5-3,1.2c-0.6-0.3-1.3-0.6-2.2-0.6c-1.1,0-1.9,0.3-2.6,0.8c-0.7-0.9-1.8-1.5-3.2-1.5c-0.7,0-1.3,0.1-1.8,0.3
650
+ c-0.7-0.6-1.6-1-2.8-1c-1.5,0-2.5,0.6-3.3,1.5c-0.4-0.1-0.8-0.2-1.3-0.2c-1.3,0-2.3,0.5-3,1.2c-0.7-1.1-1.8-1.8-3.5-1.8
651
+ c-1.5,0-2.5,0.6-3.2,1.5c-0.7-0.5-1.5-0.8-2.6-0.8c-0.2,0-0.4,0-0.6,0.1c-0.6-1.5-1.9-2.7-3.9-2.7c-0.2,0-0.4,0-0.6,0.1
652
+ c-0.2,0-0.4-0.1-0.6-0.1c-1.9,0-3.1,1-3.8,2.3c-0.5-1.6-1.8-3-4-3c-3,0-4.4,2.5-4.2,4.8c-3.1,0.8-6.5,1.5-7.3,0.1
653
+ c-1-1.5-3.1-2.7-4.9-2c-2.5,0.9-4.4,0.9-6.8,0.1c-1.3-0.4-2.4-0.3-3.2,0.2c-0.2,0-0.4-0.1-0.6-0.1h-2.6c-0.5,0-1.1,0.1-1.6,0.3
654
+ c-0.5-0.2-1-0.3-1.7-0.3c-1.7,0-2.8,0.8-3.5,1.8c-0.7-0.7-1.7-1.2-3-1.2c-1.7,0-2.9,0.8-3.6,1.9c-0.7-1.1-1.9-1.9-3.6-1.9
655
+ c-0.5,0-0.9,0.1-1.3,0.2c-0.4-0.1-0.8-0.2-1.3-0.2c-1.5,0-2.5,0.6-3.2,1.5c-0.7-0.9-1.8-1.5-3.2-1.5c-1.3,0-2.2,0.5-2.9,1.1
656
+ c-0.6-0.6-1.4-1-2.3-1.1c-0.7-0.8-1.8-1.4-3.2-1.4c-5.4,0-5.6,8.1-0.6,8.7c0.7,0.8,1.8,1.4,3.2,1.4c1.3,0,2.2-0.4,2.9-1.1
657
+ c0.7,0.7,1.7,1.1,2.9,1.1c1.5,0,2.5-0.6,3.2-1.5c0.7,0.9,1.8,1.5,3.2,1.5c0.5,0,0.9-0.1,1.3-0.2c0.4,0.1,0.8,0.2,1.3,0.2
658
+ c1.7,0,2.9-0.8,3.6-1.9c0.7,1.1,1.9,1.9,3.6,1.9c1.7,0,2.8-0.8,3.5-1.8c0.7,0.7,1.7,1.2,3,1.2c0.6,0,1.2-0.1,1.7-0.3
659
+ c0.5,0.2,1,0.3,1.6,0.3h2.6c0.6,0,1.2-0.2,1.8-0.4c2.9,0.9,5.8,1.1,8.7,0.5c1.4,1.2,3.2,1.9,5.3,2.2c4.3,0.6,7.9-1.6,12.1-1.9
660
+ c2.6-0.2,4-2.2,4.2-4.2c0.2,0.2,0.5,0.4,0.7,0.6c0.2,2,1.6,3.9,4.2,3.9c1.1,0,1.9-0.3,2.6-0.8c0.4,0.1,0.8,0.2,1.3,0.2
661
+ c0.5,0,0.9-0.1,1.3-0.2c0.7,0.5,1.5,0.8,2.6,0.8c1.5,0,2.6-0.6,3.3-1.5c0.7-0.2,1.2-0.6,1.7-1c0.7,1.1,1.8,1.9,3.5,1.9
662
+ c1.5,0,2.5-0.6,3.3-1.5c0.4,0.1,0.8,0.2,1.3,0.2c0.7,0,1.3-0.1,1.8-0.3c0.7,0.6,1.6,1,2.8,1c1.1,0,1.9-0.3,2.6-0.8
663
+ c0.7,0.9,1.8,1.5,3.2,1.5c1.3,0,2.3-0.5,3-1.2c0.6,0.3,1.3,0.6,2.2,0.6c1.4,0,2.5-0.6,3.2-1.4c0.5,1.5,1.8,2.7,3.9,2.7
664
+ c1.9,0,3.1-1,3.8-2.3c0.7,1,1.8,1.7,3.4,1.7c0.7,0,1.4-0.2,1.9-0.4c0.6,0.3,1.2,0.4,1.9,0.4c1.5,0,2.5-0.6,3.2-1.5
665
+ c0.7,0.5,1.5,0.8,2.6,0.8c1.6,0,2.7-0.7,3.4-1.7c0.6,1.3,1.9,2.3,3.8,2.3c1.2,0,2.1-0.4,2.8-1c0.5,0.2,1.1,0.3,1.8,0.3
666
+ c0.7,0,1.4-0.2,1.9-0.4c0.6,0.3,1.2,0.4,1.9,0.4c1.9,0,3.1-1,3.8-2.3c0.5,1.6,1.8,3,4,3c1.7,0,2.8-0.8,3.5-1.8
667
+ c0.7,0.7,1.7,1.2,3,1.2c1.7,0,2.9-0.8,3.6-1.9c0.7,1.1,1.9,1.9,3.6,1.9c1.5,0,2.5-0.6,3.2-1.5c0.7,0.5,1.5,0.8,2.6,0.8
668
+ c0.6,0,1.1-0.1,1.6-0.3c0.5,0.2,1,0.3,1.6,0.3c1.2,0,2.1-0.4,2.7-1c0.3,0.7,0.8,1.3,1.5,1.7c-0.2,1.1,0.1,2.4,0.7,3.3
669
+ c-0.1,0.4-0.2,0.9-0.2,1.3v1.3c0,1.1,0.5,2.3,1.3,3.1c0.6,0.6,1.4,1,2.3,1.2c-2.1,0.7-3,2.9-2.7,4.8c-0.5,0.7-0.9,1.6-0.9,2.5v1.9
670
+ c0,1,0.4,2,1.1,2.8c-0.2,0-0.4-0.1-0.6-0.1c-5.2,0-5.6,7.5-1.1,8.6c0,0.1,0,0.2,0,0.3v0.6c0,0.2,0,0.4,0.1,0.6
671
+ c0,0.2-0.1,0.4-0.1,0.7v1.3c0,1.1,0.5,2.3,1.3,3.1c0.2,0.2,0.4,0.3,0.6,0.5c-0.7,0.8-1.2,1.8-1.2,2.9v3.9c0,1.2,0.6,2.5,1.5,3.3
672
+ c-0.7,1.1-0.9,2.6-0.6,3.9c-0.3,1.1-0.2,2.4,0.3,3.4c-1.4,1.5-1.5,4.1-0.3,5.8c-0.3,0.5-0.4,1.1-0.5,1.8c-0.2,1.9-0.4,3.9-0.6,5.8
673
+ c-0.2,2.3,2.2,4.5,4.4,4.4c-1.6,1.3-1.9,3.8-1,5.6c-3,0.3-4.2,3.2-3.6,5.6c-1.3,1.9-1,4.7,0.8,6.2c-0.7,1.8-0.2,4.2,1.5,5.3
674
+ c-0.4,0.7-0.6,1.4-0.6,2.2v1.3c0,1.1,0.5,2.3,1.3,3.1c0.3,0.3,0.7,0.6,1.1,0.8c-2.6,1.4-2.9,5.4-0.8,7.3c-0.3,0.2-0.6,0.4-0.9,0.7
675
+ c-0.2,0.2-0.4,0.4-0.6,0.6c-0.5,0.5-0.8,1.1-1,1.7c-0.7,0.6-1.2,1.3-1.4,2.1c-0.3,1.2-0.1,2.3,0.4,3.4c0.4,0.7,0.7,1.4,1.1,2.2
676
+ c-0.8,2.5,0.5,5.8,4,5.8c3.5,0,4.8-3.3,4-5.8c0.1-0.2,0.2-0.4,0.2-0.6c0.3-1.2,0.1-2.2-0.4-3.3c0.8-0.8,1.2-1.9,1.2-3
677
+ c0-1.1-0.5-2.4-1.3-3.1c-0.1-0.1-0.2-0.1-0.3-0.2c2.8-1.6,2.7-6.2-0.2-7.7c0.4-0.2,0.8-0.4,1.1-0.8c0.8-0.9,1.3-1.9,1.3-3.1v-1.3
678
+ c0-1.1-0.5-2.3-1.3-3.1C515.4,258.8,515.1,258.6,514.9,258.5z"/>
78
679
  </g>
79
- <rect x="101.6" y="309.4" class="st15" width="530" height="9.1"/>
80
- <rect x="101.6" y="300.2" class="st16" width="530" height="18.3"/>
81
- <rect x="66.6" y="317.7" class="st17" width="600" height="400"/>
82
- <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="96.07" y1="414.5071" x2="658.068" y2="14.5071" gradientTransform="matrix(1 0 0 -1 0 740)">
83
- <stop offset="0" style="stop-color:#919191"/>
84
- <stop offset="1" style="stop-color:#919191;stop-opacity:0"/>
85
- </linearGradient>
86
- <path class="st18" d="M647.6,702.7h-572V326.2h572V702.7z M83.6,694.7h556V334.2h-556V694.7z"/>
87
- <rect x="103.2" y="348.8" class="st16" width="530" height="338.5"/>
88
- <rect x="498.4" y="561.3" class="st19" width="119.4" height="118.5"/>
89
- <rect x="195.1" y="650.1" class="st3" width="5.3" height="9"/>
90
- <path class="st20" d="M197.5,658.1c1.5,40.5,87.5-35,119-3.5c53.9,53.9,110.1,2,191.5,2"/>
91
- <rect x="194.4" y="648.2" class="st21" width="5.3" height="9"/>
92
- <path class="st22" d="M196.8,656.2c1.5,40.5,87.5-35,119-3.5c53.9,53.9,110.1,2,191.5,2"/>
93
- <rect x="123.2" y="388.2" class="st23" width="101" height="260"/>
94
- <line class="st24" x1="225.8" y1="518.2" x2="121.8" y2="518.2"/>
95
- <line class="st24" x1="173.8" y1="388.2" x2="173.8" y2="648.2"/>
96
- <linearGradient id="SVGID_00000109012920279042644500000015228385074231932562_" gradientUnits="userSpaceOnUse" x1="129.5389" y1="360.1595" x2="154.0389" y2="308.1595" gradientTransform="matrix(1 0 0 -1 0 740)">
97
- <stop offset="0" style="stop-color:#728C9A"/>
98
- <stop offset="1" style="stop-color:#0D2735"/>
99
- </linearGradient>
100
- <rect x="128.8" y="393.2" style="fill:url(#SVGID_00000109012920279042644500000015228385074231932562_);" width="40" height="55"/>
101
- <linearGradient id="SVGID_00000043437062122952382420000011929455647566270892_" gradientUnits="userSpaceOnUse" x1="179.0389" y1="360.1595" x2="203.5389" y2="308.1595" gradientTransform="matrix(1 0 0 -1 0 740)">
102
- <stop offset="0" style="stop-color:#728C9A"/>
103
- <stop offset="1" style="stop-color:#0D2735"/>
104
- </linearGradient>
105
- <rect x="178.3" y="393.2" style="fill:url(#SVGID_00000043437062122952382420000011929455647566270892_);" width="40" height="55"/>
106
- <linearGradient id="SVGID_00000163759970085351773280000015559391676757340584_" gradientUnits="userSpaceOnUse" x1="129.5389" y1="296.1595" x2="154.0389" y2="244.1595" gradientTransform="matrix(1 0 0 -1 0 740)">
107
- <stop offset="0" style="stop-color:#728C9A"/>
108
- <stop offset="1" style="stop-color:#0D2735"/>
109
- </linearGradient>
110
- <rect x="128.8" y="457.2" style="fill:url(#SVGID_00000163759970085351773280000015559391676757340584_);" width="40" height="55"/>
111
- <linearGradient id="SVGID_00000071536400949483246280000017388336968347433876_" gradientUnits="userSpaceOnUse" x1="179.0389" y1="296.1595" x2="203.5389" y2="244.1595" gradientTransform="matrix(1 0 0 -1 0 740)">
112
- <stop offset="0" style="stop-color:#728C9A"/>
113
- <stop offset="1" style="stop-color:#0D2735"/>
680
+ <path class="st49" d="M613.8,647.9c0-0.4-0.1-0.9-0.2-1.3c0.2-1.2-0.1-2.5-0.8-3.5c0.3-1.2,0.2-2.5-0.4-3.5c0-0.3-0.1-0.6-0.2-0.9
681
+ c-0.2-0.6-0.4-1.1-0.6-1.7c0-0.1,0.1-0.1,0.1-0.2c0.5-1,0.7-2.1,0.5-3.2c0.1-1.8-0.6-3.6-2.4-4.5c0.6-1.4,0.5-3.2-0.4-4.5
682
+ c0.1-0.1,0.2-0.1,0.3-0.2l0.7-0.7c0.8-0.8,1.3-2,1.3-3.2c0-0.4-0.1-0.8-0.2-1.2c0-0.4-0.1-0.8-0.3-1.2c2.5-2,2.1-6.7-1.2-7.8
683
+ c0.2-0.8,0.2-1.7-0.1-2.5c1-0.5,1.6-1.4,1.9-2.4c2.4-2,2-6.5-1.1-7.7c0.3-0.6,0.6-1.2,0.6-1.9c0.5-0.9,0.8-1.9,0.7-2.9
684
+ c0.1-1.5-0.4-3-1.6-3.9c-0.1-0.2-0.2-0.5-0.3-0.7c0-0.1,0-0.2-0.1-0.3c-0.1-0.3-0.2-0.6-0.3-0.9c0.3-0.6,0.4-1.2,0.4-1.9v-1
685
+ c0.4-0.7,0.7-1.5,0.7-2.3v-1.3c0-0.4-0.1-0.9-0.2-1.3c0.1-0.4,0.2-0.9,0.2-1.3v-2c0-1-0.4-2-1-2.8c0.5-2.2-0.4-4.8-2.8-5.5
686
+ c-0.7-0.5-1.6-0.9-2.7-0.9c-1.7,0-2.9,0.8-3.6,1.9c-0.7-0.7-1.7-1.2-3.1-1.2c-0.3,0-0.5,0-0.7,0.1c-0.7-0.8-1.8-1.4-3.3-1.4
687
+ c-1,0-1.8,0.3-2.4,0.7c-0.1,0-0.2,0-0.3,0c-1,0-1.8,0.3-2.4,0.7c-0.1,0-0.2,0-0.3,0c-1.5,0-2.6,0.6-3.3,1.5
688
+ c-0.7-0.9-1.8-1.5-3.3-1.5c-0.1,0-0.2,0-0.3,0c-0.6-0.4-1.4-0.7-2.4-0.7c-1.8,0-3,0.8-3.7,2c-0.4-0.2-0.8-0.4-1.3-0.5
689
+ c-0.7-1.2-1.9-2.1-3.8-2.1c-0.1,0-0.3,0-0.4,0c-0.1,0-0.2,0-0.3,0c-1.8,0-3,0.8-3.7,2c-0.7-1.2-1.9-2-3.7-2c-1,0-1.8,0.3-2.4,0.7
690
+ c-1.1,0.1-2,0.5-2.6,1.2c-0.6-0.4-1.4-0.6-2.2-0.6c-0.9,0-1.6,0.2-2.3,0.6c-0.4-0.5-1-0.8-1.7-1.1c-0.7-0.5-1.6-0.9-2.7-0.9
691
+ c-0.2,0-0.4,0-0.7,0.1c-0.2,0-0.4-0.1-0.7-0.1c-0.4,0-0.7,0-1,0.1c-0.3-0.1-0.6-0.1-1-0.1c-0.1,0-0.2,0-0.3,0c-0.1,0-0.2,0-0.3,0
692
+ c-1.4,0-2.5,0.6-3.3,1.4c-0.2,0-0.5-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.2,0-0.4-0.1-0.7-0.1c-0.8,0-1.5,0.2-2.1,0.5
693
+ c-0.3-0.6-0.7-1.2-1.3-1.6c-0.7-0.9-1.8-1.5-3.3-1.5c-1.9,0-3.2,1-3.8,2.3c-0.7-0.6-1.6-1-2.8-1c-1,0-1.8,0.3-2.5,0.7
694
+ c-0.3,0-0.5-0.1-0.8-0.1c-0.3,0-0.5,0-0.7,0.1c-0.7-0.8-1.8-1.4-3.3-1.4c-0.5,0-1,0.1-1.4,0.2c-0.4-0.1-0.8-0.2-1.3-0.2h-1.3
695
+ c-1.2,0-2.4,0.5-3.2,1.3c0,0,0,0-0.1,0.1c-3,0.3-4.2,3.3-3.6,5.8c-0.3,1.1-0.2,2.3,0.2,3.4c-0.8,1.8-0.5,4,1,5.4
696
+ c-0.6,0.6-1,1.3-1.3,2.1c-0.2,0.7-0.5,1.3-0.7,2c-0.2,0.6-0.2,1.3-0.1,2c-2.3,1.5-2.6,5-0.8,7c-0.6,1.3-0.6,3,0,4.3
697
+ c-1.1,1.2-1.4,3-1,4.5c-0.4,1.6-0.1,3.5,1.1,4.7c-1.4,1.4-1.7,3.8-0.8,5.6l-0.1,0.1c-0.3,0.6-0.5,1.3-0.6,2
698
+ c-1.1,2.1-0.5,5.1,1.7,6.3c-1.7,0.9-2.5,2.9-2.2,4.8c-3.4,2-2.6,8.4,2.3,8.4c0.1,0,0.1,0,0.2,0c-0.6,1.2-0.7,2.6-0.2,3.9
699
+ c-0.8,2.4,0.2,5.5,3.2,6.1c0.1,0.5,0.3,1,0.5,1.4c-2,0.8-2.9,3-2.6,5c-0.5,0.8-0.7,1.7-0.7,2.7c-2.4,1.5-2.6,5.3-0.6,7.2
700
+ c-0.1,0.5-0.1,1,0,1.4c-1.4,0.8-2.1,2.4-2.1,4c-1.6,2.7-0.4,7,3.7,7c1,0,1.8-0.3,2.5-0.7c0.3,0,0.5,0.1,0.8,0.1c2.1,0,3.5-1.2,4-2.7
701
+ c0.4-0.1,0.8-0.2,1.2-0.3c0.5,1.7,1.9,3,4.1,3c1.1,0,2-0.3,2.7-0.8c0.7,0.9,1.8,1.5,3.3,1.5c1.9,0,3.2-1,3.8-2.3
702
+ c0.5,0.2,1,0.3,1.5,0.3c0.6,0,1.2-0.1,1.7-0.3c0.5,0.2,1,0.3,1.7,0.3c1.8,0,3-0.8,3.7-2c0.6,1,1.6,1.8,3.1,1.9c0,0,0,0,0,0
703
+ c0.7,0.8,1.8,1.4,3.2,1.4c1.1,0,2-0.3,2.7-0.8c0.7,0.9,1.8,1.5,3.3,1.5c1.2,0,2.1-0.4,2.9-1c0.5,0.2,1.1,0.4,1.8,0.4
704
+ c1.9,0,3.2-1,3.8-2.3c0.7,0.6,1.6,1,2.8,1c0.5,0,0.9-0.1,1.3-0.2c0.4,0.1,0.8,0.2,1.3,0.2c0.8,0,1.5-0.2,2.1-0.5
705
+ c0.6,1.4,1.9,2.5,3.9,2.5c1.2,0,2.1-0.4,2.9-1c0.5,0.2,1.1,0.4,1.8,0.4c1.1,0,2-0.3,2.7-0.9c0.8-0.2,1.5-0.7,1.9-1.2
706
+ c0.6,1.6,1.9,2.8,4,2.8c2,0,3.2-1,3.9-2.4c0.1-0.1,0.3-0.2,0.4-0.3c0.6-0.4,1-0.8,1.4-1.4c0.5,0.3,1.1,0.6,1.9,0.6
707
+ c0.1,1,0.5,2,1.3,2.7c0.9,0.8,2,1.3,3.2,1.3h1.3c0.8,0,1.6-0.3,2.3-0.7c0.7,0.4,1.5,0.7,2.3,0.7h0.7c0.5,0,1.1-0.1,1.6-0.3
708
+ c0.5,0.2,1.1,0.3,1.7,0.3c3.7,0,5-3.6,4-6.2c1.3-1.6,1.3-4.1,0.1-5.8c-0.2-0.6-0.4-1.1-0.8-1.5c0.9-0.7,1.5-1.8,1.6-2.9
709
+ c1.5-1.4,1.8-3.8,0.9-5.6c0.8-0.9,1.3-2,1.3-3.2V647.9z M603.8,605.3c-3.1,1.7-2.9,7,0.6,8.2c-0.2,0.9-0.1,1.9,0.2,2.8
710
+ c-0.7,0.5-1.1,1.3-1.4,2.1c-0.7,0.8-1.1,1.9-1.1,2.9c0,0.6,0.1,1.2,0.4,1.8c-2.1,1.8-2.1,5.5,0.1,7.2c0.4,0.5,0.8,0.8,1.4,1.1
711
+ c-0.2,0.5-0.3,1.1-0.4,1.7c-0.1,0.2-0.2,0.4-0.3,0.6c-0.5,1-0.8,2.2-0.5,3.3c-0.2,0.7-0.2,1.5,0,2.2c0.2,0.7,0.5,1.3,0.7,2
712
+ c0.2,0.5,0.4,1,0.8,1.5c0.1,0.7,0.4,1.5,0.8,2.1c-0.2,0.6-0.2,1.3-0.1,2c-0.1,0.4-0.2,0.8-0.2,1.3v1.3c0,0.8,0.2,1.5,0.6,2.2
713
+ c-0.6,0.7-0.9,1.5-1.1,2.4c-1.7,1.6-1.8,4.6-0.4,6.4c-1.5,1.2-2,3.4-1.4,5.2c-0.8,0-1.6,0.3-2.2,0.7c-0.7-0.4-1.5-0.7-2.3-0.7h-1
714
+ c-0.2-2.1-1.6-4-4.3-4c-1.8,0-3,0.8-3.7,2c-0.4-0.2-0.7-0.4-1.1-0.5c-1.1-0.3-2.5-0.2-3.5,0.5c-0.7,0.4-1.3,0.9-2,1.3
715
+ c-0.5,0.3-0.9,0.7-1.2,1.1c-0.6-1.3-1.9-2.3-3.8-2.3c-1.1,0-2,0.3-2.7,0.9c-0.6,0.2-1.1,0.5-1.5,0.8c-0.5-0.2-1.1-0.4-1.8-0.4
716
+ c-0.8,0-1.5,0.2-2.1,0.5c-0.6-1.4-1.9-2.5-3.9-2.5c-0.5,0-0.9,0.1-1.3,0.2c-0.4-0.1-0.8-0.2-1.3-0.2c-1.9,0-3.2,1-3.8,2.3
717
+ c-0.7-0.6-1.6-1-2.8-1c-1.2,0-2.1,0.4-2.9,1c-0.5-0.2-1.1-0.4-1.8-0.4c-1.1,0-2,0.3-2.7,0.8c-0.6-0.8-1.6-1.4-2.8-1.5c0,0,0,0,0,0
718
+ c-0.2-0.2-0.4-0.4-0.6-0.6c0,0,0,0,0,0c-0.2-0.2-0.5-0.3-0.7-0.4c-0.1,0-0.2,0-0.2-0.1c-0.2-0.1-0.4-0.2-0.6-0.2
719
+ c-0.3-0.1-0.6-0.1-1-0.1c-0.4,0-0.7,0-1,0.1c-0.1,0-0.2,0.1-0.3,0.1c-0.2,0.1-0.4,0.1-0.6,0.2c-0.1,0-0.2,0.1-0.3,0.2
720
+ c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.1-0.2,0.2c-0.1,0.1-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.2-0.2,0.3c-0.1,0.1-0.2,0.2-0.2,0.3
721
+ c-0.7-1.2-1.9-2-3.7-2c-0.6,0-1.2,0.1-1.7,0.3c-0.5-0.2-1-0.3-1.7-0.3c-1.9,0-3.2,1-3.8,2.3c-0.5-0.2-1-0.3-1.5-0.3
722
+ c-1.1,0-2,0.3-2.7,0.8c-0.7-0.9-1.8-1.5-3.3-1.5c-0.7,0-1.3,0.1-1.9,0.4c-0.5-1.6-1.7-2.9-3.8-3c-0.1-1.1-0.6-2.1-1.4-2.9
723
+ c0-0.3,0-0.5,0-0.8c1.5-1,2.2-2.9,1.9-4.6c0.9-1.5,1-3.6,0.1-5.1c3.8-1.5,3.5-7.8-0.8-8.6c0-0.2-0.1-0.4-0.2-0.6
724
+ c0.8-2.3-0.1-5.3-2.8-6c1.9-1.4,2.2-4.3,1-6.3c0.3-1.8-0.5-3.8-2.2-4.7c1.3-0.7,2-2,2.2-3.3c0.1-0.1,0.2-0.2,0.3-0.4l0.7-1.3
725
+ c0.5-1.1,0.8-2.3,0.5-3.5c-0.1-0.5-0.4-1-0.7-1.5c0.2-1.5-0.2-3-1.3-4c1.2-1.2,1.6-3,1.1-4.7c0.3-1.2,0.2-2.4-0.3-3.5
726
+ c1.5-1.7,1.5-4.6,0-6.3c0.3-0.5,0.4-1.1,0.5-1.7c1.3-0.8,2-2.3,2-3.9c0,0,0-0.1,0-0.1c0.2-0.7,0.5-1.3,0.7-2
727
+ c0.4-1.1,0.1-2.5-0.5-3.5c-0.2-0.4-0.5-0.8-0.9-1.1c1.4-1.3,1.6-3.6,0.9-5.3c0.2-0.5,0.3-1,0.4-1.5c0.3,0,0.7-0.1,1-0.2
728
+ c0.4,0.1,0.9,0.2,1.4,0.2c0.3,0,0.5,0,0.7-0.1c0.7,0.8,1.8,1.4,3.3,1.4c1,0,1.8-0.3,2.5-0.7c0.3,0,0.5,0.1,0.8,0.1
729
+ c1.9,0,3.2-1,3.8-2.3c0,0,0.1,0,0.1,0.1c0.7,0.9,1.8,1.6,3.4,1.6c0.8,0,1.5-0.2,2.1-0.5c0.6,1.4,1.9,2.5,3.9,2.5
730
+ c0.2,0,0.4,0,0.7-0.1c0.2,0,0.4,0.1,0.7,0.1c1.4,0,2.5-0.6,3.3-1.4c0.2,0,0.5,0.1,0.7,0.1c0.1,0,0.2,0,0.3,0c0.1,0,0.2,0,0.3,0
731
+ c0.4,0,0.7,0,1-0.1c0.3,0.1,0.6,0.1,1,0.1c0.1,0,0.2,0,0.3,0c0.6,0.4,1.4,0.7,2.4,0.7c0.3,0,0.5,0,0.7-0.1c0.7,0.8,1.8,1.4,3.3,1.4
732
+ c1.1,0,2-0.3,2.7-0.9c0.7-0.2,1.3-0.6,1.7-1.1c0.6,0.4,1.4,0.6,2.3,0.6c1,0,1.8-0.3,2.4-0.7c1.5-0.1,2.6-0.9,3.2-2
733
+ c0.6,1.1,1.8,1.9,3.3,2c0.7,1.2,1.9,2,3.7,2c1.8,0,3-0.8,3.7-2c0.6,0.4,1.4,0.6,2.3,0.6c0.1,0,0.2,0,0.3,0c0.6,0.4,1.4,0.7,2.4,0.7
734
+ c1.5,0,2.6-0.6,3.3-1.5c0.7,0.9,1.8,1.5,3.3,1.5c1,0,1.8-0.3,2.4-0.7c0.1,0,0.2,0,0.3,0c1,0,1.8-0.3,2.4-0.7c0.1,0,0.2,0,0.3,0
735
+ c0.3,0,0.5,0,0.7-0.1c0.7,0.8,1.8,1.4,3.3,1.4c1.7,0,2.9-0.8,3.6-1.9c0.2,0.2,0.4,0.4,0.7,0.5c-0.1,0.3-0.1,0.6-0.1,0.9v2
736
+ c0,0.4,0.1,0.9,0.2,1.3c-0.1,0.4-0.2,0.9-0.2,1.3v1c-0.4,0.7-0.7,1.5-0.7,2.3v1c0,0,0,0,0,0c-0.5,1-0.8,2.3-0.5,3.5
737
+ c0.2,0.7,0.5,1.3,0.7,2c0.2,0.6,0.5,1.1,0.8,1.6c0.2,0.5,0.4,1.1,0.8,1.5c-0.8,2.2,0,5,2.3,5.9c-0.2,0.3-0.3,0.6-0.4,0.9
738
+ C603.8,601.5,603.4,603.5,603.8,605.3z"/>
739
+ <linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="505.6699" y1="618.7221" x2="612.3867" y2="618.7221">
740
+ <stop offset="0" style="stop-color:#E5F7FF"/>
741
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
742
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
743
+ <stop offset="1" style="stop-color:#EEF7FF"/>
114
744
  </linearGradient>
115
- <rect x="178.3" y="457.2" style="fill:url(#SVGID_00000071536400949483246280000017388336968347433876_);" width="40" height="55"/>
116
- <linearGradient id="SVGID_00000080902777305907206780000008859940283155364770_" gradientUnits="userSpaceOnUse" x1="129.5427" y1="231.2613" x2="154.0427" y2="179.2613" gradientTransform="matrix(1 0 0 -1 0 740)">
117
- <stop offset="0" style="stop-color:#728C9A"/>
118
- <stop offset="1" style="stop-color:#0D2735"/>
119
- </linearGradient>
120
- <rect x="128.8" y="522.1" style="fill:url(#SVGID_00000080902777305907206780000008859940283155364770_);" width="40" height="55"/>
121
- <linearGradient id="SVGID_00000151544816208415704510000014709429980318690475_" gradientUnits="userSpaceOnUse" x1="179.0427" y1="231.2613" x2="203.5427" y2="179.2613" gradientTransform="matrix(1 0 0 -1 0 740)">
122
- <stop offset="0" style="stop-color:#728C9A"/>
123
- <stop offset="1" style="stop-color:#0D2735"/>
124
- </linearGradient>
125
- <rect x="178.3" y="522.1" style="fill:url(#SVGID_00000151544816208415704510000014709429980318690475_);" width="40" height="55"/>
126
- <linearGradient id="SVGID_00000026122879663106691370000015595689297128526001_" gradientUnits="userSpaceOnUse" x1="129.5428" y1="166.3613" x2="154.0428" y2="114.3613" gradientTransform="matrix(1 0 0 -1 0 740)">
127
- <stop offset="0" style="stop-color:#728C9A"/>
128
- <stop offset="1" style="stop-color:#0D2735"/>
129
- </linearGradient>
130
- <rect x="128.8" y="587" style="fill:url(#SVGID_00000026122879663106691370000015595689297128526001_);" width="40" height="55"/>
131
- <linearGradient id="SVGID_00000073721171719763038990000015922051324058869684_" gradientUnits="userSpaceOnUse" x1="179.0428" y1="166.3613" x2="203.5428" y2="114.3613" gradientTransform="matrix(1 0 0 -1 0 740)">
132
- <stop offset="0" style="stop-color:#728C9A"/>
133
- <stop offset="1" style="stop-color:#0D2735"/>
134
- </linearGradient>
135
- <rect x="178.3" y="587" style="fill:url(#SVGID_00000073721171719763038990000015922051324058869684_);" width="40" height="55"/>
136
- <rect x="503.2" y="564.9" class="st33" width="110" height="110"/>
137
- <rect x="518.6" y="580.3" class="st34" width="79.2" height="79.2"/>
138
- <polygon class="st35" points="518.6,659.5 525,659.5 525,585.7 597.8,585.7 597.8,580.3 518.6,580.3 "/>
745
+ <path class="st52" d="M612.4,645.8c0-0.4-0.1-0.8-0.2-1.2c0.2-1.2-0.1-2.4-0.7-3.3c0.3-1.1,0.2-2.4-0.4-3.4c0-0.3-0.1-0.6-0.2-0.9
746
+ c-0.2-0.5-0.4-1.1-0.6-1.6c0-0.1,0.1-0.1,0.1-0.2c0.5-1,0.7-2,0.5-3.1c0.1-1.7-0.6-3.5-2.3-4.3c0.6-1.4,0.5-3.1-0.4-4.3
747
+ c0.1-0.1,0.2-0.1,0.2-0.2l0.6-0.6c0.8-0.8,1.3-1.9,1.3-3c0-0.4-0.1-0.8-0.2-1.1c0-0.4-0.1-0.8-0.3-1.1c2.4-1.9,2-6.4-1.1-7.5
748
+ c0.2-0.8,0.1-1.6-0.1-2.3c0.9-0.5,1.6-1.4,1.9-2.3c2.3-1.9,2-6.3-1.1-7.4c0.3-0.6,0.5-1.2,0.6-1.8c0.5-0.8,0.7-1.8,0.7-2.8
749
+ c0.1-1.4-0.4-2.8-1.5-3.7c-0.1-0.2-0.2-0.5-0.3-0.7c0-0.1,0-0.2-0.1-0.2c-0.1-0.3-0.2-0.6-0.3-0.9c0.3-0.5,0.4-1.1,0.4-1.8v-1
750
+ c0.4-0.7,0.6-1.4,0.6-2.2v-1.3c0-0.4-0.1-0.9-0.2-1.3c0.1-0.4,0.2-0.8,0.2-1.3v-1.9c0-0.9-0.4-1.9-0.9-2.6c0.5-2.1-0.4-4.6-2.7-5.3
751
+ c-0.7-0.5-1.5-0.8-2.6-0.8c-1.6,0-2.8,0.8-3.4,1.8c-0.7-0.7-1.7-1.2-2.9-1.2c-0.3,0-0.5,0-0.7,0.1c-0.7-0.8-1.7-1.3-3.1-1.3
752
+ c-0.9,0-1.7,0.3-2.3,0.7c-0.1,0-0.2,0-0.2,0c-0.9,0-1.7,0.3-2.3,0.7c-0.1,0-0.2,0-0.2,0c-1.4,0-2.5,0.6-3.2,1.4
753
+ c-0.7-0.9-1.8-1.4-3.2-1.4c-0.1,0-0.2,0-0.2,0c-0.6-0.4-1.4-0.7-2.3-0.7c-1.7,0-2.8,0.8-3.5,1.9c-0.4-0.2-0.7-0.4-1.2-0.5
754
+ c-0.6-1.2-1.8-2-3.6-2c-0.1,0-0.2,0-0.4,0c-0.1,0-0.2,0-0.3,0c-1.7,0-2.8,0.8-3.5,1.9c-0.7-1.1-1.8-1.9-3.5-1.9
755
+ c-0.9,0-1.7,0.3-2.3,0.7c-1.1,0.1-1.9,0.5-2.5,1.2c-0.6-0.3-1.3-0.6-2.1-0.6c-0.9,0-1.6,0.2-2.2,0.6c-0.4-0.4-1-0.8-1.6-1
756
+ c-0.7-0.5-1.5-0.8-2.6-0.8c-0.2,0-0.4,0-0.6,0.1c-0.2,0-0.4-0.1-0.6-0.1c-0.3,0-0.7,0-1,0.1c-0.3-0.1-0.6-0.1-1-0.1
757
+ c-0.1,0-0.2,0-0.3,0c-0.1,0-0.2,0-0.3,0c-1.4,0-2.4,0.5-3.1,1.3c-0.2,0-0.5-0.1-0.7-0.1c-0.2,0-0.4,0-0.6,0.1
758
+ c-0.2,0-0.4-0.1-0.6-0.1c-0.8,0-1.4,0.2-2,0.5c-0.3-0.6-0.7-1.2-1.2-1.6c-0.7-0.9-1.8-1.5-3.2-1.5c-1.8,0-3.1,1-3.7,2.2
759
+ c-0.7-0.6-1.6-1-2.7-1c-1,0-1.8,0.3-2.4,0.7c-0.3,0-0.5-0.1-0.8-0.1c-0.3,0-0.5,0-0.7,0.1c-0.7-0.8-1.7-1.3-3.1-1.3
760
+ c-0.5,0-0.9,0.1-1.3,0.2c-0.4-0.1-0.8-0.2-1.2-0.2h-1.3c-1.1,0-2.3,0.5-3,1.3c0,0,0,0-0.1,0.1c-2.9,0.3-4,3.2-3.4,5.5
761
+ c-0.3,1.1-0.2,2.2,0.2,3.2c-0.7,1.7-0.4,3.8,0.9,5.1c-0.6,0.5-1,1.2-1.3,2c-0.2,0.6-0.4,1.3-0.7,1.9c-0.2,0.6-0.2,1.3-0.1,1.9
762
+ c-2.2,1.4-2.5,4.8-0.8,6.7c-0.6,1.3-0.6,2.9,0,4.1c-1,1.1-1.3,2.8-0.9,4.3c-0.4,1.5-0.1,3.3,1.1,4.5c-1.4,1.3-1.6,3.6-0.8,5.3
763
+ l-0.1,0.1c-0.3,0.6-0.5,1.2-0.5,1.9c-1.1,2-0.5,4.9,1.6,6c-1.7,0.9-2.4,2.8-2.1,4.6c-3.2,1.9-2.5,8,2.2,8c0.1,0,0.1,0,0.1,0
764
+ c-0.6,1.1-0.6,2.5-0.2,3.7c-0.8,2.3,0.2,5.3,3,5.8c0.1,0.5,0.3,0.9,0.5,1.3c-1.9,0.8-2.8,2.8-2.5,4.7c-0.5,0.8-0.7,1.7-0.7,2.6
765
+ c-2.3,1.4-2.5,5.1-0.6,6.9c-0.1,0.5-0.1,0.9,0,1.4c-1.3,0.8-2,2.3-2,3.9c-1.5,2.5-0.4,6.7,3.5,6.7c1,0,1.8-0.3,2.4-0.7
766
+ c0.3,0,0.5,0.1,0.8,0.1c2,0,3.3-1.2,3.9-2.6c0.4-0.1,0.8-0.1,1.1-0.3c0.5,1.6,1.8,2.9,3.9,2.9c1,0,1.9-0.3,2.5-0.8
767
+ c0.7,0.9,1.8,1.4,3.2,1.4c1.8,0,3-0.9,3.6-2.2c0.4,0.1,0.9,0.3,1.5,0.3c0.6,0,1.1-0.1,1.6-0.3c0.5,0.2,1,0.3,1.6,0.3
768
+ c1.7,0,2.9-0.8,3.5-1.9c0.6,1,1.6,1.7,3,1.9c0,0,0,0,0,0c0.7,0.8,1.7,1.3,3.1,1.3c1,0,1.9-0.3,2.5-0.8c0.7,0.9,1.8,1.4,3.2,1.4
769
+ c1.2,0,2.1-0.4,2.7-1c0.5,0.2,1.1,0.3,1.7,0.3c1.8,0,3.1-1,3.7-2.2c0.7,0.6,1.6,1,2.7,1c0.5,0,0.9-0.1,1.3-0.2
770
+ c0.4,0.1,0.8,0.2,1.3,0.2c0.8,0,1.4-0.2,2-0.5c0.6,1.3,1.8,2.4,3.8,2.4c1.2,0,2.1-0.4,2.7-1c0.5,0.2,1.1,0.3,1.7,0.3
771
+ c1.1,0,1.9-0.3,2.6-0.8c0.8-0.2,1.4-0.6,1.8-1.2c0.5,1.5,1.8,2.7,3.9,2.7c1.9,0,3.1-1,3.7-2.3c0.1-0.1,0.2-0.2,0.4-0.2
772
+ c0.5-0.4,1-0.8,1.4-1.3c0.5,0.3,1.1,0.5,1.8,0.6c0.1,1,0.5,1.9,1.2,2.6c0.8,0.8,1.9,1.3,3,1.3h1.3c0.8,0,1.6-0.2,2.2-0.7
773
+ c0.7,0.4,1.4,0.7,2.2,0.7h0.6c0.5,0,1-0.1,1.5-0.3c0.5,0.2,1,0.3,1.6,0.3c3.5,0,4.8-3.4,3.9-6c1.2-1.5,1.2-3.9,0.1-5.5
774
+ c-0.2-0.5-0.4-1-0.8-1.5c0.9-0.7,1.4-1.7,1.6-2.8c1.4-1.3,1.7-3.6,0.9-5.3c0.8-0.8,1.3-1.9,1.3-3V645.8z M602.8,605
775
+ c-3,1.6-2.8,6.7,0.6,7.9c-0.2,0.9-0.1,1.8,0.2,2.7c-0.6,0.5-1.1,1.2-1.3,2c-0.6,0.8-1,1.8-1,2.8c0,0.6,0.1,1.2,0.4,1.7
776
+ c-2,1.7-2,5.3,0.1,6.9c0.3,0.4,0.8,0.8,1.3,1.1c-0.2,0.5-0.3,1.1-0.4,1.6c-0.1,0.2-0.2,0.4-0.3,0.6c-0.5,1-0.7,2.1-0.5,3.2
777
+ c-0.2,0.7-0.2,1.4,0,2.1c0.2,0.6,0.4,1.3,0.7,1.9c0.2,0.5,0.4,1,0.7,1.4c0.1,0.7,0.3,1.4,0.7,2c-0.2,0.6-0.2,1.3-0.1,1.9
778
+ c-0.1,0.4-0.2,0.8-0.2,1.2v1.3c0,0.7,0.2,1.5,0.6,2.1c-0.6,0.6-0.9,1.5-1,2.3c-1.6,1.5-1.7,4.4-0.4,6.1c-1.5,1.1-1.9,3.2-1.4,5
779
+ c-0.7,0-1.5,0.3-2.2,0.6c-0.7-0.4-1.4-0.7-2.2-0.7h-1c-0.2-2-1.6-3.8-4.1-3.8c-1.7,0-2.9,0.8-3.5,1.9c-0.3-0.2-0.7-0.4-1.1-0.5
780
+ c-1.1-0.2-2.4-0.2-3.3,0.4c-0.6,0.4-1.3,0.8-1.9,1.3c-0.4,0.3-0.8,0.6-1.1,1c-0.6-1.3-1.8-2.2-3.7-2.2c-1.1,0-1.9,0.3-2.6,0.8
781
+ c-0.6,0.2-1,0.4-1.4,0.8c-0.5-0.2-1.1-0.3-1.7-0.3c-0.8,0-1.4,0.2-2,0.5c-0.6-1.3-1.8-2.4-3.8-2.4c-0.5,0-0.9,0.1-1.3,0.2
782
+ c-0.4-0.1-0.8-0.2-1.3-0.2c-1.8,0-3.1,1-3.7,2.2c-0.7-0.6-1.6-1-2.7-1c-1.2,0-2.1,0.4-2.7,1c-0.5-0.2-1.1-0.3-1.7-0.3
783
+ c-1,0-1.9,0.3-2.5,0.8c-0.6-0.8-1.5-1.3-2.7-1.4c0,0,0,0,0,0c-0.2-0.2-0.4-0.4-0.6-0.5c0,0,0,0,0,0c-0.2-0.2-0.4-0.3-0.7-0.4
784
+ c-0.1,0-0.2,0-0.2-0.1c-0.2-0.1-0.4-0.1-0.6-0.2c-0.3-0.1-0.6-0.1-1-0.1c-0.3,0-0.7,0-1,0.1c-0.1,0-0.2,0.1-0.3,0.1
785
+ c-0.2,0.1-0.4,0.1-0.6,0.2c-0.1,0-0.2,0.1-0.3,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.1-0.2,0.2c-0.1,0.1-0.2,0.2-0.3,0.3
786
+ c-0.1,0.1-0.1,0.2-0.2,0.3c-0.1,0.1-0.2,0.2-0.2,0.3c-0.7-1.1-1.8-1.9-3.5-1.9c-0.6,0-1.1,0.1-1.6,0.3c-0.5-0.2-1-0.3-1.6-0.3
787
+ c-1.8,0-3,0.9-3.6,2.2c-0.4-0.1-0.9-0.3-1.5-0.3c-1,0-1.9,0.3-2.5,0.8c-0.7-0.9-1.8-1.4-3.2-1.4c-0.7,0-1.3,0.1-1.8,0.4
788
+ c-0.5-1.5-1.7-2.8-3.7-2.9c-0.1-1.1-0.5-2.1-1.3-2.8c0-0.2,0-0.5,0-0.7c1.5-0.9,2.1-2.7,1.9-4.4c0.9-1.4,0.9-3.4,0.1-4.9
789
+ c3.6-1.4,3.4-7.5-0.8-8.2c0-0.2-0.1-0.4-0.2-0.5c0.8-2.2-0.1-5.1-2.6-5.8c1.8-1.4,2.1-4.1,0.9-6c0.3-1.8-0.4-3.7-2.1-4.5
790
+ c1.2-0.6,1.9-1.9,2.1-3.2c0.1-0.1,0.2-0.2,0.3-0.4l0.6-1.3c0.5-1,0.8-2.2,0.4-3.3c-0.1-0.5-0.4-1-0.7-1.4c0.2-1.4-0.2-2.9-1.2-3.9
791
+ c1.1-1.1,1.5-2.9,1.1-4.5c0.3-1.1,0.2-2.3-0.3-3.3c1.5-1.6,1.5-4.4,0-6.1c0.2-0.5,0.4-1,0.4-1.6c1.3-0.8,1.9-2.2,1.9-3.7
792
+ c0,0,0-0.1,0-0.1c0.2-0.6,0.4-1.3,0.7-1.9c0.3-1,0.1-2.4-0.4-3.3c-0.2-0.4-0.5-0.7-0.9-1c1.3-1.3,1.6-3.4,0.9-5.1
793
+ c0.2-0.5,0.3-1,0.4-1.5c0.3,0,0.6-0.1,0.9-0.2c0.4,0.1,0.8,0.2,1.3,0.2c0.3,0,0.5,0,0.7-0.1c0.7,0.8,1.7,1.3,3.1,1.3
794
+ c1,0,1.8-0.3,2.4-0.7c0.3,0,0.5,0.1,0.8,0.1c1.8,0,3.1-1,3.7-2.2c0,0,0.1,0,0.1,0.1c0.7,0.9,1.8,1.5,3.2,1.5c0.8,0,1.4-0.2,2-0.5
795
+ c0.6,1.3,1.8,2.4,3.7,2.4c0.2,0,0.4,0,0.6-0.1c0.2,0,0.4,0.1,0.6,0.1c1.4,0,2.4-0.5,3.1-1.3c0.2,0,0.5,0.1,0.7,0.1
796
+ c0.1,0,0.2,0,0.3,0c0.1,0,0.2,0,0.3,0c0.3,0,0.7,0,1-0.1c0.3,0.1,0.6,0.1,1,0.1c0.1,0,0.2,0,0.2,0c0.6,0.4,1.4,0.7,2.3,0.7
797
+ c0.3,0,0.5,0,0.7-0.1c0.7,0.8,1.7,1.3,3.1,1.3c1.1,0,1.9-0.3,2.6-0.8c0.7-0.2,1.2-0.6,1.6-1c0.6,0.3,1.3,0.6,2.2,0.6
798
+ c0.9,0,1.7-0.3,2.3-0.7c1.4-0.1,2.5-0.9,3.1-1.9c0.6,1,1.7,1.8,3.2,1.9c0.7,1.1,1.8,1.9,3.5,1.9c1.7,0,2.8-0.8,3.5-1.9
799
+ c0.6,0.4,1.3,0.6,2.2,0.6c0.1,0,0.2,0,0.2,0c0.6,0.4,1.4,0.7,2.3,0.7c1.4,0,2.5-0.6,3.2-1.4c0.7,0.9,1.8,1.4,3.2,1.4
800
+ c0.9,0,1.7-0.3,2.3-0.7c0.1,0,0.2,0,0.2,0c0.9,0,1.7-0.3,2.3-0.7c0.1,0,0.2,0,0.2,0c0.3,0,0.5,0,0.7-0.1c0.7,0.8,1.7,1.3,3.1,1.3
801
+ c1.6,0,2.8-0.8,3.4-1.8c0.2,0.2,0.4,0.3,0.6,0.5c-0.1,0.3-0.1,0.5-0.1,0.8v1.9c0,0.4,0.1,0.9,0.2,1.3c-0.1,0.4-0.2,0.8-0.2,1.3v1
802
+ c-0.4,0.7-0.6,1.4-0.6,2.2v1c0,0,0,0,0,0c-0.5,1-0.8,2.2-0.4,3.3c0.2,0.6,0.4,1.3,0.7,1.9c0.2,0.5,0.4,1.1,0.8,1.5
803
+ c0.2,0.5,0.4,1,0.7,1.4c-0.8,2.1,0,4.8,2.2,5.7c-0.2,0.3-0.3,0.6-0.4,0.9C602.8,601.4,602.4,603.4,602.8,605z"/>
139
804
  <g>
140
- <g>
141
- <rect x="518.6" y="580.3" class="st36" width="79.2" height="79.2"/>
142
- <path class="st37" d="M232.2,348.8v339 M622.2,348.8v339 M612.2,348.8v339 M602.2,348.8v339 M592.2,348.8v339 M582.2,348.8v339
143
- M572.2,348.8v339 M562.2,348.8v339 M552.2,348.8v339 M542.2,348.8v339 M532.2,348.8v339 M522.2,348.8v339 M512.2,348.8v339
144
- M502.2,348.8v339 M492.2,348.8v339 M482.2,348.8v339 M472.2,348.8v339 M462.2,348.8v339 M452.2,348.8v339 M442.2,348.8v339
145
- M432.2,348.8v339 M422.2,348.8v339 M412.2,348.8v339 M402.2,348.8v339 M392.2,348.8v339 M382.2,348.8v339 M372.2,348.8v339
146
- M362.2,348.8v339 M352.2,348.8v339 M342.2,348.8v339 M332.2,348.8v339 M322.2,348.8v339 M312.2,348.8v339 M302.2,348.8v339
147
- M292.2,348.8v339 M282.2,348.8v339 M272.2,348.8v339 M262.2,348.8v339 M252.2,348.8v339 M242.2,348.8v339 M222.2,348.8v339
148
- M212.2,348.8v339 M202.2,348.8v339 M192.2,348.8v339 M182.2,348.8v339 M172.2,348.8v339 M162.2,348.8v339 M152.2,348.8v339
149
- M142.2,348.8v339 M132.2,348.8v339 M122.2,348.8v339 M112.2,348.8v339"/>
150
- <path class="st24" d="M214.1,388.2v260 M204,388.2v260 M193.9,388.2v260 M183.8,388.2v260 M163.6,388.2v260 M153.5,388.2v260
151
- M143.4,388.2v260 M133.3,388.2v260 M225.7,638.2h-104 M225.7,628.2h-104 M225.7,618.2h-104 M225.7,608.2h-104 M225.7,598.2h-104
152
- M225.7,588.2h-104 M225.7,578.2h-104 M225.7,568.2h-104 M225.7,558.2h-104 M225.7,548.2h-104 M225.7,538.2h-104 M225.7,528.2
153
- h-104 M225.7,508.2h-104 M225.7,498.2h-104 M225.7,488.2h-104 M225.7,478.2h-104 M225.7,468.2h-104 M225.7,458.2h-104
154
- M225.7,448.2h-104 M225.7,438.2h-104 M225.7,428.2h-104 M225.7,418.2h-104 M225.7,408.2h-104 M225.7,398.2h-104"/>
155
- </g>
156
- <path class="st38" d="M120.6,385.7h106.3v265.2H120.7L120.6,385.7z"/>
157
- <path class="st39" d="M224.2,583.2H123.3 M224.2,453.2H123.2 M224.3,518.2H123.1 M173.8,388.2v260 M123.3,388.2h101v260h-101V388.2
158
- z"/>
805
+ <path class="st49" d="M641.6,517.8c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0C641.7,517.8,641.6,517.8,641.6,517.8z"/>
806
+ <path class="st49" d="M659.6,588.9c-5-2.9-0.6-14.7-0.2-18.9c0.6-4.8,0-9.5-1.1-14.2c-0.3-1.3-0.7-2.6-1-3.9c0.2,0,0.4,0,0.7,0
807
+ c5.5,0,6.3-7.2,2.5-9.4c2.4-2.6,1.6-7.8-2.5-8.5c1.5-5.6,3.2-11.2,2.1-17.4c-0.6-3.7-2.2-7.1-4.4-9.9c5.2-9,5.8-20.2,4.3-30.9
808
+ c-0.3-2-0.7-4.1-1.1-6.2c0-0.4-0.1-0.8-0.2-1.2c-0.3-1.6-0.6-3.1-0.8-4.7c1-0.2,1.9-0.6,2.6-1.4c0.9-1,1.5-2.2,1.5-3.5v-2
809
+ c0-0.8-0.2-1.6-0.6-2.3c2.5-2.5,1.7-7.9-2.4-8.6c0.2-0.6,0.5-1.2,0.7-1.8c1.9-1.2,2.5-3.7,1.9-5.8c0.7-3.3,0.8-6.6,0.3-9.9
810
+ c4.4-1.8,3.7-9.6-2-9.6c-0.2,0-0.4,0-0.5,0c-0.4-1.4-0.8-2.8-1.1-4.2c-0.8-3.9,0.2-7.3,1.3-11.1c2.3-8.1,3.7-15.7,0.3-23.6
811
+ c-1.6-3.6-2.6-4.6-1.3-8.4c1.3-3.7,2.4-7.3,2-11.3c-0.4-4.5-2.2-8.3-3.9-12.4c-0.2-0.4-0.3-0.8-0.5-1.1c0.3,0,0.5,0.1,0.8,0.1
812
+ c4.8,0,6-5.5,3.7-8.4c0.2-0.5,0.3-1.1,0.3-1.6v-2c0-1.3-0.6-2.6-1.5-3.5c-0.9-0.9-2.3-1.5-3.5-1.5c-0.3,0-0.5,0-0.8,0.1
813
+ c-0.5-0.6-1-1.1-1.6-1.6c2.5-2.8,1.3-8.5-3.6-8.5c-1.2,0-2.2,0.4-3,1c0,0-0.1-0.1-0.1-0.1c0,0,0,0-0.1,0c-0.2-0.2-0.5-0.3-0.7-0.4
814
+ c0,0,0,0-0.1,0c-0.3-0.1-0.6-0.2-0.9-0.3c0,0,0,0,0,0c-0.3-0.1-0.7-0.1-1.1-0.1c-0.3,0-0.6,0-0.9,0.1c0,0-0.1,0-0.1,0
815
+ c-0.3,0.1-0.5,0.1-0.8,0.2c0,0-0.1,0-0.1,0.1c-0.2,0.1-0.5,0.2-0.7,0.3c0,0,0,0-0.1,0c-0.2,0.1-0.4,0.3-0.6,0.5c0,0,0,0,0,0
816
+ c-0.2,0.2-0.3,0.4-0.5,0.6c0,0,0,0,0,0.1c-0.1,0.2-0.3,0.4-0.4,0.6c0,0,0,0,0,0c-0.2,0.5-0.4,1-0.5,1.5c-6.5-0.2-13-0.3-19.4-0.3
817
+ c-0.1-2.4-1.7-4.7-4.8-4.7c-3.1,0-4.7,2.3-4.8,4.7c-6.8,0-13.5,0.1-20.3,0.3c-0.8-1.1-2.1-1.9-3.9-1.9c-1.9,0-3.3,0.9-4,2.1
818
+ c-1.2,0-2.4,0.1-3.7,0.1c-0.8-0.7-1.9-1.2-3.3-1.2c-0.8-0.6-1.8-1-3-1c-2.1,0-3.5,1.1-4.3,2.5c-0.4,0-0.7,0-1.1,0
819
+ c-0.5-1.9-2.1-3.6-4.6-3.6c-2.2,0-3.7,1.2-4.4,2.7c-0.7-0.5-1.6-0.7-2.6-0.7c-0.4,0-0.7,0-1,0.1c-0.3-0.1-0.6-0.1-1-0.1
820
+ c-0.8,0-1.4,0.1-2,0.4c-0.6-0.2-1.2-0.4-2-0.4c-2,0-3.3,0.9-4.1,2.2c-2.2,0.1-4.5,0.1-6.7,0.2c-0.7-1.4-2.1-2.4-4.2-2.4
821
+ c-2.2,0-3.6,1.1-4.3,2.6c-0.5,0-0.9,0-1.4,0c-0.7-1.5-2.1-2.7-4.3-2.7c-2,0-3.4,1-4.2,2.4c0.2-2.6-1.4-5.4-4.8-5.4
822
+ c-3.2,0-4.8,2.5-4.8,5c-0.1,0-0.1,0-0.2,0c-1.4,0-2.6,0.3-3.7,0.7c-0.7-1.5-2.1-2.7-4.3-2.7c-2.4,0-3.9,1.4-4.5,3.2
823
+ c-1.2-0.7-2.7-1.2-4.5-1.2c-2.1,0-3.8,0.6-5.2,1.6c-2.6,0.1-5.1,0.1-7.7,0.2c-1.1-3.2-3.8-5.7-8.2-5.7c-4.5,0-7.3,2.8-8.3,6.1
824
+ c-1.5,0-2.9,0.1-4.4,0.1c-1-3.4-3.7-6.2-8.3-6.2c-3.9,0-6.4,2-7.7,4.7c-1.4-1-3.1-1.7-5.3-1.7c-3.2,0-5.5,1.4-6.9,3.4
825
+ c-0.4,0-0.7,0-1.1-0.1c-1.2-3-3.8-5.3-8-5.3c-5.2,0-8.1,3.7-8.6,7.7c-0.3,0.1-0.6,0.2-0.8,0.2c-1.4,0.3,0.9-0.2,0.8-0.3
826
+ c-4.4-3.3-9.4-5.3-14.6-6.3c-0.2-2.3-1.8-4.4-4.8-4.4c-2.6,0-4.2,1.7-4.7,3.7c-1.7,0.1-3.3,0.2-4.9,0.4c-1.4,0.2-2.9,0.5-4.5,0.8
827
+ c-0.8-0.6-1.7-0.9-2.9-0.9c-2,0-3.4,1-4.2,2.3c-4.2,0.6-8.4,0.5-11.7-2c-3.7-2.8-10.3-0.8-12.3,3.2c-0.8,1.6-3.5,1.6-6,1.4
828
+ c0-2.5-1.6-5-4.8-5c-2.6,0-4.2,1.7-4.7,3.6c-1.2-0.2-2.3-0.3-3.5-0.4c0.1-2.5-1.5-5.2-4.8-5.2c-0.8-0.6-1.8-1-3-1
829
+ c-3.3,0-4.9,2.6-4.8,5.1c-0.5,0-1-0.1-1.4-0.1c0,0,0,0,0,0c0.5-2.8-1.1-6-4.7-6c-3.6,0-5.2,3.2-4.7,6c0,0,0,0.1,0,0.1
830
+ c-3.2,0.1-6.3,0.3-9.5,0.6c0.3-2.7-1.2-5.7-4.8-5.7c-2.7,0-4.2,1.7-4.7,3.8c-0.1,0.1-0.2,0.1-0.3,0.2c-0.8-0.6-1.8-1-3-1
831
+ c-1.3,0-2.3,0.4-3,1c-0.8-1.2-2.1-2-4-2c-3.9,0-5.4,3.7-4.6,6.6c-1.2-0.1-2.4-0.4-3.5-0.7c-0.2-0.9-0.7-1.8-1.3-2.3
832
+ c-1-0.9-2.2-1.5-3.5-1.5c-1.3,0.1-2.6,0.5-3.5,1.5c-0.3,0.3-0.7,0.7-1,1c-0.3,0.3-0.6,0.7-0.8,1.2c-0.6,0.4-1.3,0.9-1.8,1.5
833
+ c0-2.5-1.6-5.1-4.8-5.1c-2.4,0-3.8,1.3-4.5,3c-0.7,0.1-1.4,0.3-2,0.6c-0.7-0.4-1.5-0.7-2.6-0.7c-0.2,0-0.5,0-0.7,0
834
+ c-0.9-0.2-1.8-0.4-2.7-0.7c-0.5-1.9-2.1-3.4-4.6-3.4c-2,0-3.3,0.9-4.1,2.2c-2.1,0.5-3.8,1.6-4.9,3.1c-1.7-1.5-3.8-2.4-6.1-2.4h-1
835
+ c-1.2,0-2.4,0.2-3.5,0.8c-0.9,0.3-1.7,0.8-2.4,1.4c-0.4,0.1-0.8,0.2-1.1,0.3c-0.9-0.3-1.9-0.5-3-0.5c-1.1,0-2.1,0.2-3,0.5
836
+ c-1.4-2-3.8-3.5-7-3.5c-0.9,0-1.7,0.1-2.5,0.3c-0.8-0.2-1.6-0.3-2.5-0.3c-2.9,0-5.1,1.1-6.6,2.9c-0.2-0.4-0.4-0.8-0.7-1.5
837
+ c-2.3-5.2-10.6-5.8-14.1-1.8c-0.7,0.8-1.2,0.7-0.3,0.7c-0.1,0-0.3,0.3-0.5,0.3c-1.8,0-4.2-2.2-6.2-2.4c-3.9-0.5-6.3,1.3-9,2.9
838
+ c-3-0.2-5.8-1-9.1-0.4c-1,0.2-2.4,0.3-3.5,0.6c-1.2-2.4-3.6-4.3-5.9-4.9c-4-1.1-7.9,0.8-10.2,4.1c-0.7,1.1-1.6,2.5-2.7,3.2
839
+ c-0.2,0.1-0.3,0.3-0.4,0.3c-1.7,0.1-4.9-2.6-6.4-3.3c-3-1.5-6.2-2.7-9.6-2.9c-2.8-0.1-8.2,2-9.8,1.6c-0.6-0.2-1.3-0.3-1.8-0.3
840
+ c-1.5-0.4-3-0.3-4.7-0.1c-2.7,0.4-5.3,0.7-8,1.1c-2.1,0.3-4.4,2.4-5.4,4.1c-0.6,1.1-1.1,2.5-1.2,3.9c-3.4,1.4-3.8,6.3-1.2,8.5
841
+ c-0.1,0.4-0.2,0.7-0.3,1.1c-5.3,0.4-5.8,7.8-1.6,9.6c-0.2,2.3-0.2,4.6-0.2,6.9c-0.4,0.7-0.6,1.5-0.6,2.3c-1.7,2.2-1.3,5.9,1.1,7.4
842
+ c0.1,0.7,0.1,1.4,0.2,2.1c0,0.5,0.1,0.9,0.1,1.4c-0.5,1.1-0.6,2.4-0.3,3.5c-2.6,0.9-3.6,3.8-2.9,6.2c-0.5,1.9,0,4.2,1.6,5.5
843
+ c-1.6,1.3-2.1,3.6-1.6,5.5c-1.6,1.8-1.6,4.9-0.1,6.8c-0.2,0.5-0.3,1.1-0.3,1.7v1c0,0.9,0.3,1.8,0.7,2.5c-2.5,1.3-3.1,4.6-2,7
844
+ c-0.9,1.7-0.8,4,0.3,5.6c-1.5,5.6-2.4,11.3-1.2,17.7c0.9,4.7,2.7,9.1,3.9,13.7c0.9,3.5,0.5,6.2-0.4,9.1c-1.9,1.2-2.6,3.7-2.1,5.8
845
+ c-2.9,8.8-0.8,16,2.4,24c-1,1.8-0.8,4.2,0.5,5.9c-3.9,1.4-4.1,7.4-0.5,9.2c0.5,0.9,1.2,1.7,2.2,2.1c-1.5,4.3-3.3,8.4-3.8,13
846
+ c-0.3,2.5-0.1,4.8,0.4,7.1c-1,2.4-0.3,5.6,2.1,6.8c-1.1,2.2-0.6,5.3,1.5,6.7c0.3,1.2,0.9,2.3,2,3c0,0.1-0.1,0.3-0.1,0.4
847
+ c-1.9,5.1-4.8,9-4.9,14.7c-0.1,5.4,1.5,10.5,3.2,15.5c1.8,5.4,2.8,9.6,1.1,15.1c-1.7,5.7-4.2,11.3-4.3,17.4
848
+ c-0.1,6.9,2.7,13.8,7.7,18c-5.8,17.4-7.2,35.6-3.7,53.7c-4.2,6.4-6.4,13.6-6.3,21.5c0,3.4,1.9,6.2,4.7,7.8c0.7,1.5,2.1,2.7,4.3,2.7
849
+ c0.4,0,0.7,0,1-0.1c0.8,1.2,2.1,2.1,4,2.1c2.3,0,3.8-1.3,4.4-3c0.4,0,0.7,0,1.1,0.1c0.2,0.4,0.4,0.8,0.6,1.1c0,0,0,0,0,0
850
+ c0.3,0.3,0.6,0.6,0.9,0.9c0,0,0.1,0,0.1,0.1c0.1,0.1,0.3,0.2,0.5,0.3c0,0,0.1,0,0.1,0.1c0.2,0.1,0.4,0.2,0.6,0.2c0,0,0.1,0,0.1,0
851
+ c0.2,0.1,0.4,0.1,0.6,0.1c0.1,0,0.1,0,0.2,0c0.2,0,0.5,0.1,0.7,0.1c0.2,0,0.5,0,0.7,0c0.1,0,0.1,0,0.2,0c0.2,0,0.3-0.1,0.4-0.1
852
+ c0.1,0,0.1,0,0.2,0c0.2,0,0.3-0.1,0.5-0.2c0,0,0.1,0,0.1,0c0.2-0.1,0.4-0.2,0.5-0.3c0,0,0,0,0,0c0.2-0.1,0.3-0.2,0.4-0.3
853
+ c0,0,0.1,0,0.1-0.1c0.1-0.1,0.2-0.2,0.4-0.3c0,0,0,0,0.1-0.1c0.3-0.3,0.5-0.6,0.7-0.9c0.6,0,1.1,0.1,1.7,0.1
854
+ c0.8,1.3,2.1,2.3,4.2,2.3c0.9,0,1.7-0.2,2.4-0.6c0.8,0.9,2,1.6,3.6,1.6c1.1,0,1.9-0.3,2.6-0.7c0.8,1.6,2.4,2.7,4.4,2.7h4
855
+ c1.1,0,2.2-0.4,3.1-1.1c0.3,0.1,0.6,0.1,0.9,0.1c2.1,0,3.5-1.1,4.2-2.5c0.2-0.1,0.3-0.2,0.5-0.3c1.5,0,3,0.1,4.4,0.1
856
+ c0.1,2.4,1.7,4.7,4.8,4.7c2.5,0,4-1.5,4.6-3.4c0.8,0.8,1.9,1.4,3.4,1.4c2.1,0,3.6-1.1,4.3-2.6c5.5-0.1,10.9-0.6,16.3-1.4
857
+ c1.3-0.2,13.1-2.7,16.3-3.8c0.5,0.6,1.2,1.3,1.7,1.8c1.8,1.6,3.8,3,6,4.1c4.8,2.3,10,2.9,15.2,3.1c24.2,0.8,48.6,0,72.8,0.1
858
+ c12.3,0,24.6,0,37,0c5.5,0,11.1,0.3,16.5-0.2c5.3-0.5,9.3-3.2,14.3-4.5c7.8-1.9,16.6,1.9,24.3,3.2c8.2,1.4,15.9,1.2,22.8-2.7
859
+ c14.7,3.4,29.7,3.8,44.7,1.5c6.3,3.3,13.7,3.4,20.7,3.5c9.3,0.1,18.6,0.1,27.9,0.2l27.9,0.2c9,0.1,18.3,0.8,27.2-0.8
860
+ c4.3-0.8,8-2.5,11.7-4.7c2.7-1.5,4.2-0.5,6.9,0.8c7.9,4.1,15.4,6.5,24.2,7.3c8.7,0.8,17.5,0.3,26.3,0.2c10-0.1,20-0.2,30-0.4
861
+ c6-0.1,8.9-5,8.7-9.7c1.8-0.8,3.4-2.1,4.6-3.7c4.1-5.7,6-13,5.3-19.9c-0.4-3.8-1.2-7.2-2.9-10.7c-0.8-1.8-2-3.3-3.1-4.8
862
+ c0.2-0.3,0.4-0.6,0.6-1c0.7-1.3,1.3-2.8,1.7-4.1c0.8-2.9,1-6,1-9c0-6.9-0.4-13.7-0.6-20.6c-0.2-6.7-0.6-13.4-0.5-20
863
+ c0-4.3,0.1-8.4,3.6-11.2C666,599.4,664.2,591.6,659.6,588.9z M644,390.9c-5.4,0-6.3,7-2.7,9.3c0.1,0.5,0.3,1,0.5,1.4
864
+ c-0.5,1.9-1,3.8-1.3,5.8c-0.2,0.4-0.4,0.7-0.5,1.2c-0.3,1-0.6,2-1,3c-0.3,1-0.2,2.1,0.2,3.1c-0.8,1-1.1,2.4-1,3.7
865
+ c-0.2,2.5,1.1,5.1,4.1,5.5c1.3,4.5,2.5,8.8,0.7,13.6c-2.7,7.3-3.8,14-3.5,21.4c-0.6,1.6-0.5,3.5,0.4,5c0,0,0,0.1,0,0.1
866
+ c0.2,1.5,0.5,3.2,0.9,5.1c-1.7,1.5-2.1,4.1-1.3,6.1c-3.5,0.9-4.4,5.5-2.4,8.1c-0.2,1.3,0.1,2.6,0.8,3.7c-3.2,2.5-2.2,9,3,9
867
+ c0.2,0,0.4,0,0.6,0c-0.9,2.1-2.3,3.9-4.3,5.2c-7.3,4.9-4.7,16.2,4.3,16.8c-0.6-0.1-0.2-0.3,0.2,0c0,0,0.1,0,0.1,0c0,0-0.1,0-0.1,0
868
+ c0.2,0.1,0.3,0.3,0.4,0.6c0.1,0.5,0.2,1,0.3,1.5c-5.1,0.5-5.6,7.8-1.5,9.6c-0.5,1.6-1,3.2-1.4,4.7c-0.1,0.5-0.2,0.9-0.3,1.4
869
+ c-1.1,1.4-1.4,3.5-0.8,5.3c-0.3,4.3,0.1,8.3,0.9,12.5c-2.2,2.4-1.6,7,1.7,8.2c0.1,0.5,0.2,1,0.2,1.5c-0.4-0.1-0.9-0.2-1.4-0.2
870
+ c-6.2,0-6.4,9.2-0.7,9.9c-0.3,1.4,0,3,0.9,4.2c-0.2,1.3-0.4,2.6-0.5,4c-0.2,0-0.4-0.1-0.7-0.1c-1.2,0-2.7,0.5-3.5,1.5
871
+ c-0.9,1-1.5,2.2-1.5,3.5c0.1,1.3,0.5,2.6,1.5,3.5c0.3,0.3,0.7,0.7,1,1c0.5,0.5,1.1,0.8,1.7,1.1c-0.2,2.6,1.4,5.4,4.8,5.4
872
+ c0.1,0.1,0.1,0.3,0.2,0.4c-2.7,5.3-3.4,11.7-3.4,17.7c0.1,11.2,0.6,22.4,0.9,33.7c0.1,3.2,1,7.8-0.4,10.8c-1.4,2.7-3.4,4.4-3.9,7.6
873
+ c-0.5,2.9,0.2,6,1.7,8.6c0.7,1.2,1.6,2.3,2.3,3.3c-1,2.6,0,6.1,3.1,6.9c0,0.1,0,0.1,0,0.2c-4.9,0.3-5.8,6.5-2.7,9
874
+ c-0.1,0.1-0.1,0.2-0.2,0.3c-0.5-0.2-1.1-0.3-1.8-0.3c-2.2,0-3.6,1.2-4.3,2.7c-0.5-2-2-3.7-4.7-3.7c-3.7,0-5.3,3.3-4.7,6.1
875
+ c-0.5,0-0.9,0-1.4,0c0.1-0.4,0.1-0.8,0.1-1.1c-0.1-2.7-2.2-5-5-5h-3c-0.8,0-1.7,0.3-2.4,0.7c-0.7-0.4-1.5-0.7-2.6-0.7
876
+ c-1.9,0-3.2,0.9-4,2.1c-0.8-1.2-2.1-2.1-4-2.1c-1.5,0-2.6,0.5-3.4,1.3c-0.6-1.8-2.1-3.3-4.6-3.3c-2.3,0-3.8,1.3-4.5,3
877
+ c-0.2,0-0.3,0-0.5,0c-3.2,0-4.8,2.5-4.8,4.9c-1-0.2-2.1-0.3-3.1-0.6c-8.9-2-16.2-9-25.6-8.4c-4.6,0.3-7.9,2.5-11.9,4.5
878
+ c-3.4,1.8-7.2,2-11,2c-0.5-1.9-2.1-3.5-4.6-3.5c-2.6,0-4.1,1.6-4.6,3.5c-1.9,0-3.7,0-5.6,0c-0.2-2.3-1.8-4.5-4.8-4.5
879
+ c-2.2,0-3.6,1.1-4.3,2.7c-0.8-1-2-1.7-3.7-1.7c-1.6,0-2.8,0.6-3.6,1.6c-0.7-0.4-1.5-0.6-2.4-0.6c-2,0-3.4,1-4.2,2.3
880
+ c-0.6,0-1.3,0-1.9,0c-0.2-1.1-0.6-2.1-1.4-2.9c-1-0.9-2.2-1.5-3.5-1.5h-2c-0.9,0-1.9,0.3-2.7,0.8c-0.3-0.2-0.7-0.3-1-0.5
881
+ c-1-0.3-2-0.6-3-1c-1-0.3-2.1-0.2-3,0.1c-0.6-0.3-1.4-0.5-2.2-0.5c-2.6,0-4.2,1.7-4.7,3.7c-0.7-1.5-2.1-2.7-4.3-2.7
882
+ c-0.4,0-0.7,0-1,0.1c-0.3-0.1-0.6-0.1-1-0.1c-2.8,0-4.4,1.9-4.8,4.1c-1.1,0-2.2,0-3.2-0.1c-0.4,0-0.8,0-1.1,0
883
+ c-0.2-0.9-0.6-1.9-1.3-2.5c-1-0.9-2.2-1.5-3.5-1.5h-1c-1.1,0-2.2,0.4-3.1,1.1c-0.1-0.1-0.2-0.1-0.3-0.2c-1.7-0.7-3.6-0.8-5.6-0.6
884
+ c-0.6-0.2-1.2-0.4-1.9-0.4c-1.4,0-2.5,0.5-3.3,1.2c-1.3,0.2-2.5,0.5-3.7,0.6c-5,0.4-10,0.5-15,0.3c-4.8-0.3-9.6-0.9-14.3-1.9
885
+ c-5.7-1.2-9.1-2.4-14.2,1.1c-4.2,2.8-9.9,1.4-15,0.3c-7-1.5-14.3-3.5-21.6-3.2c-4,0.2-7.5,1.4-11.1,2.6c-0.8-1.1-2.1-1.9-3.9-1.9
886
+ c-1.6,0-2.8,0.6-3.6,1.6c-0.7-0.4-1.4-0.6-2.4-0.6c-0.2,0-0.4,0-0.6,0c-0.1,0-0.3,0-0.4,0c-2.5,0-4,1.5-4.6,3.3c-1.9,0-3.7,0-5.6,0
887
+ c0.2-2.6-1.4-5.3-4.8-5.3c-3.4,0-5,2.7-4.8,5.4c-1.3,0-2.5,0-3.8,0c-0.8-0.8-1.9-1.4-3.4-1.4c-1.2,0-2.3,0.4-3,1
888
+ c-0.8-0.6-1.7-1-3-1c-1,0-1.8,0.2-2.5,0.6c-0.4-0.3-0.9-0.4-1.5-0.5c-0.8-1.2-2.1-2.1-4-2.1c-2.5,0-4,1.5-4.6,3.3
889
+ c-0.9,0-1.8,0-2.6,0c-0.3-2.3-1.9-4.3-4.8-4.3c-2.5,0-4,1.5-4.6,3.3c-0.8-0.8-1.9-1.3-3.4-1.3c-1.7,0-2.9,0.7-3.7,1.6
890
+ c-0.7-1.5-2.1-2.6-4.3-2.6c-0.8-0.6-1.8-1-3-1c-2.9,0-4.5,2.1-4.8,4.3c-0.5,0-0.9,0-1.4,0v0c0-0.2,0-0.3,0-0.5c0,0,0,0,0,0
891
+ c0-0.2,0-0.3,0-0.5c0,0,0,0,0,0c0-0.1,0-0.3-0.1-0.4c0,0,0,0,0,0c0-0.1-0.1-0.3-0.1-0.4c0,0,0,0,0-0.1c0-0.1-0.1-0.3-0.1-0.4
892
+ c0,0,0-0.1,0-0.1c0-0.1-0.1-0.2-0.2-0.3c0,0,0-0.1,0-0.1c-0.1-0.1-0.1-0.2-0.2-0.3c0,0,0-0.1-0.1-0.1c-0.1-0.1-0.1-0.2-0.2-0.3
893
+ c0,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.1-0.2-0.2-0.2c0,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.1-0.1-0.2-0.2c0,0-0.1-0.1-0.1-0.1
894
+ c-0.1-0.1-0.2-0.1-0.2-0.2c-0.1,0-0.1-0.1-0.2-0.1c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.1-0.1-0.2-0.1c-0.1,0-0.2-0.1-0.3-0.1
895
+ c-0.1,0-0.1-0.1-0.2-0.1c-0.1,0-0.2-0.1-0.3-0.1c-0.1,0-0.1,0-0.2-0.1c-0.1,0-0.2,0-0.4-0.1c-0.1,0-0.1,0-0.2,0c-0.2,0-0.4,0-0.6,0
896
+ c-0.2,0-0.4,0-0.6,0c-0.1,0-0.1,0-0.2,0c-0.1,0-0.3,0-0.4,0.1c-0.1,0-0.1,0-0.2,0.1c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0-0.1,0.1-0.2,0.1
897
+ c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0-0.1,0.1-0.2,0.1c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0-0.1,0.1-0.2,0.1c-0.1,0.1-0.2,0.1-0.2,0.2
898
+ c0,0-0.1,0.1-0.1,0.1c-0.1,0.1-0.2,0.1-0.2,0.2c0,0-0.1,0.1-0.1,0.1c-0.1,0.1-0.1,0.2-0.2,0.2c0,0-0.1,0.1-0.1,0.1
899
+ c-0.1,0.1-0.1,0.2-0.2,0.3c0,0,0,0.1-0.1,0.1c-0.1,0.1-0.1,0.2-0.2,0.3c0,0,0,0.1,0,0.1c-0.1,0.1-0.1,0.2-0.2,0.3c0,0,0,0.1,0,0.1
900
+ c0,0.1-0.1,0.3-0.1,0.4c0,0,0,0,0,0.1c0,0.1-0.1,0.3-0.1,0.4c0,0,0,0,0,0c0,0.1-0.1,0.3-0.1,0.4c0,0,0,0,0,0c0,0.2,0,0.3,0,0.5
901
+ c0,0,0,0,0,0c0,0.2,0,0.3,0,0.5c-0.9,0-1.7,0-2.6,0c-0.6-1.8-2.1-3.3-4.6-3.3c-1,0-1.8,0.2-2.5,0.6c-0.7-0.4-1.5-0.6-2.5-0.6
902
+ c-2,0-3.4,1-4.2,2.3c-0.5-0.2-1.1-0.3-1.8-0.3c-1.6,0-2.9,0.6-3.7,1.6c-0.3,0-0.5,0-0.8,0c0.9-2.9-0.7-6.6-4.6-6.6
903
+ c-3.9,0-5.4,3.6-4.6,6.5c-1.6-0.1-3.2-0.2-4.8-0.4c-4.1-0.5-5.2-2.1-8-4.7c-4.4-4-9.8-5.3-15.6-3.9c-5.2,1.2-10,3.2-15.3,4
904
+ c-5.2,0.8-10.4,1-15.6,1c-19.8,0.1-39.7-1.3-59.6-2.4c1.2-2.8,3.6-4.8,4.7-7.6c1.5-3.7,0-7.4-0.7-11c-0.6-3.3-1-6.6-1.1-9.9
905
+ c-0.7-13.1,1.5-26.4,6.7-38.5c2.6-6.1-0.3-13.3-7.6-13.5c0,0-0.1-0.1-0.1-0.1c-0.6-0.8-0.9-1.9-1.1-3c-0.5-4.1,1.9-8.5,3.1-12.3
906
+ c3.5-10.8,1.4-19.5-1.8-29.9c-1-3.2-2-6.3-0.6-9.5c2.2-4.9,4.9-8.8,4.7-14.5c-0.1-4.6-2-8.8-4.1-12.9c-1.9-3.7-3.1-6-1.8-10.1
907
+ c1.2-4.1,3.2-7.9,4.1-12c1.1-5.4,0.6-10.8-1.3-15.9c-0.9-2.5-2.1-5-3.2-7.5l0.6-1.7c0.4-1.1,0.1-2.7-0.4-3.7c0,0,0.1,0,0.1-0.1
908
+ c0.9-1,1.5-2.2,1.5-3.5v-1.4c2.3-1,3.6-3.4,3-5.9c-0.3-1.3-0.7-2.7-1-4c-0.2-0.8-0.6-1.5-1.2-2.1c-0.1-0.9-0.3-1.8-0.8-2.6
909
+ c0.2-2,0.1-4,0-5.9c1.7-1.3,2.3-3.6,1.7-5.6c0.7-2.8-0.6-6.2-4.2-6.5c-0.2-0.6-0.4-1.2-0.6-1.9c0-0.1,0-0.1,0-0.2
910
+ c0-1-0.3-2-0.8-2.9c-0.4-1.4-0.6-2.7-0.8-4.1c5.6-0.2,6.1-8.2,1.4-9.7c1.1-3.4,2.5-6.7,3.6-10c1.3-4,2-8.1,2.4-12.2
911
+ c0.1,0,0.2,0,0.3,0c6.4,0,6.4-10,0-10c0,0-0.1,0-0.1,0c-0.1-1.6-0.1-3.1-0.3-4.7c2.2-1.4,2.7-4.5,1.6-6.8c0.9-1.8,0.8-4.1-0.4-5.7
912
+ c0-1.5-0.7-2.9-1.9-3.9c1-1.6,1.1-3.8,0.3-5.4c0.8-1.5,0.8-3.3,0.1-4.8c2.2-2.1,2-6.2-0.6-7.9c0.2-0.8,0.4-1.6,0.6-2.3
913
+ c0.5-0.3,0.9-0.6,1.3-1c0.7,0.4,1.5,0.6,2.4,0.6c2.7,0,4.2-1.7,4.7-3.7c0.1,0,0.2,0,0.3,0c1.4-0.3,3.5-1.4,4.9-1.4
914
+ c3.5,0.2,7.6,4,11,5.2c6.5,2.3,12,0.7,16.7-2.7c3.1,1.3,6.7,1.8,9.9,1.2c2-0.3,4.2-1.3,6.2-1.4c1.8,0,3.7,0.9,5.6,1
915
+ c3.2,0.1,5.2-1,7.3-2.3c0.9,0.4,1.7,0.7,2.6,1c2.1,0.5,4.2,0.6,6.4,0.4c1.1-0.1,2.2-0.3,3.3-0.6c1.1,0.9,2.3,1.7,3.5,2.5
916
+ c4.6,2.6,9,0.8,11.4-2.4c0.7,0.2,1.5,0.3,2.3,0.3c0.9,0,1.7-0.1,2.5-0.3c0.8,0.2,1.6,0.3,2.5,0.3c1.1,0,2.1-0.2,3-0.5
917
+ c1.4,2,3.8,3.5,7,3.5c1.1,0,2.1-0.2,3-0.5c0.9,0.3,1.9,0.5,3,0.5c2.4,0,4.3-0.8,5.7-2c1-0.1,1.9-0.3,2.8-0.8c1.1-0.4,2.1-1,2.9-1.9
918
+ c0.2-0.2,0.4-0.4,0.6-0.7c1.3,1.2,3,2.1,5.2,2.3c0.5,0.2,0.9,0.4,1.5,0.5c2.7,0.6,5.3,1.3,8,1.9c0.4,0.1,0.7,0.1,1.1,0.2
919
+ c1,1,2.3,1.8,3.8,2c5.4,0.7,10.5,0.7,15.8-0.7c1.2-0.3,2.2-0.9,3.2-1.7c7.3,1.6,14.5,0.9,22.4-0.3c8.3-1.3,16.7-2,25.1-2
920
+ c0.8,1.2,2.1,2,4,2c1.7,0,2.9-0.7,3.7-1.7c11.5,1.2,27.5,5.6,37.4-0.6c0.5,0.2,1.2,0.3,1.9,0.3c0.4,0,0.8,0,1.2-0.1
921
+ c5.1,1,10.6,0.5,15.9-0.3c7.6-1.3,15.2-3.6,22.6-0.2c4.1,1.9,7.2,5.1,11.9,5.5c4.6,0.4,8-2.1,12.5-2.6c4.4-0.4,9,0.3,13.5,0.3
922
+ c5.3,0.1,10.5-0.1,15.8-0.2c41.2-0.9,82.3-1.9,123.5-2.7c20-0.4,40.2-1.1,60.2-0.7c-0.1,2.4,0.2,4.8,0.9,7.1
923
+ c-3.1,2.6-2.1,8.9,3.1,8.9c0.2,0,0.5,0,0.7,0c0.4,1,0.8,2.1,1,3.1c-4,0.2-5.3,4.5-3.9,7.4c0,0,0,0,0,0.1c-0.6,1.2-0.9,2.5-0.5,3.9
924
+ c0.2,0.9,0.8,1.8,1.5,2.5c0,1.4,0.2,2.9,0.5,4.3c-0.1,0.6-0.1,1.3,0,1.9c-0.4,2.2,0.6,4.8,2.9,5.7C643.7,388,644.1,389.3,644,390.9
925
+ C644.1,390.9,644,390.9,644,390.9z"/>
926
+ </g>
927
+ <g>
928
+ <linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="631.1989" y1="517.8446" x2="631.3737" y2="517.8446">
929
+ <stop offset="0" style="stop-color:#E5F7FF"/>
930
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
931
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
932
+ <stop offset="1" style="stop-color:#EEF7FF"/>
933
+ </linearGradient>
934
+ <path class="st53" d="M631.2,517.8c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0C631.3,517.8,631.3,517.8,631.2,517.8z"/>
935
+ <linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="80.5702" y1="518.6599" x2="653.5856" y2="518.6599">
936
+ <stop offset="0" style="stop-color:#E5F7FF"/>
937
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
938
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
939
+ <stop offset="1" style="stop-color:#EEF7FF"/>
940
+ </linearGradient>
941
+ <path class="st54" d="M648.6,586.3c-4.8-2.7-0.6-14.2-0.1-18.2c0.5-4.6,0-9.2-1.1-13.7c-0.3-1.2-0.6-2.5-1-3.7c0.2,0,0.4,0,0.7,0
942
+ c5.3,0,6.1-7,2.4-9c2.3-2.5,1.6-7.5-2.4-8.2c1.5-5.4,3.1-10.8,2.1-16.7c-0.6-3.6-2.1-6.8-4.2-9.5c5-8.6,5.6-19.5,4.1-29.8
943
+ c-0.3-2-0.6-3.9-1-5.9c0-0.4-0.1-0.8-0.2-1.1c-0.3-1.5-0.6-3-0.8-4.5c0.9-0.2,1.8-0.6,2.5-1.3c0.9-0.9,1.4-2.1,1.4-3.4v-1.9
944
+ c0-0.8-0.2-1.5-0.6-2.2c2.4-2.4,1.7-7.6-2.3-8.3c0.2-0.6,0.5-1.2,0.7-1.8c1.8-1.2,2.4-3.5,1.9-5.5c0.7-3.1,0.8-6.3,0.3-9.5
945
+ c4.2-1.7,3.6-9.3-1.9-9.3c-0.2,0-0.4,0-0.5,0c-0.4-1.3-0.8-2.7-1.1-4c-0.8-3.8,0.2-7,1.3-10.6c2.2-7.7,3.6-15.1,0.3-22.7
946
+ c-1.5-3.5-2.5-4.4-1.2-8.1c1.3-3.6,2.3-7,1.9-10.9c-0.4-4.3-2.1-8-3.8-11.9c-0.2-0.4-0.3-0.7-0.5-1.1c0.2,0,0.5,0.1,0.8,0.1
947
+ c4.6,0,5.8-5.3,3.5-8c0.2-0.5,0.3-1,0.3-1.6v-1.9c0-1.2-0.5-2.5-1.4-3.4c-0.8-0.8-2.2-1.5-3.4-1.4c-0.3,0-0.5,0-0.8,0.1
948
+ c-0.5-0.6-1-1.1-1.6-1.6c2.4-2.7,1.2-8.2-3.5-8.2c-1.2,0-2.2,0.4-2.9,0.9c0,0-0.1-0.1-0.1-0.1c0,0,0,0-0.1,0
949
+ c-0.2-0.2-0.5-0.3-0.7-0.4c0,0,0,0-0.1,0c-0.3-0.1-0.6-0.2-0.9-0.3c0,0,0,0,0,0c-0.3-0.1-0.7-0.1-1-0.1c-0.3,0-0.6,0-0.9,0.1
950
+ c0,0-0.1,0-0.1,0c-0.3,0-0.5,0.1-0.7,0.2c0,0-0.1,0-0.1,0c-0.2,0.1-0.4,0.2-0.6,0.3c0,0,0,0-0.1,0c-0.2,0.1-0.4,0.3-0.6,0.4
951
+ c0,0,0,0,0,0c-0.2,0.2-0.3,0.3-0.5,0.5c0,0,0,0,0,0.1c-0.1,0.2-0.3,0.4-0.4,0.6c0,0,0,0,0,0c-0.2,0.4-0.4,0.9-0.5,1.4
952
+ c-6.2-0.2-12.5-0.3-18.7-0.3c-0.1-2.3-1.7-4.5-4.6-4.5c-3,0-4.5,2.2-4.6,4.5c-6.5,0-13,0.1-19.5,0.3c-0.8-1.1-2-1.9-3.8-1.9
953
+ c-1.8,0-3.1,0.9-3.9,2.1c-1.2,0-2.4,0.1-3.5,0.1c-0.8-0.7-1.8-1.2-3.1-1.2c-0.7-0.6-1.7-1-2.9-1c-2,0-3.4,1-4.1,2.4
954
+ c-0.4,0-0.7,0-1.1,0c-0.5-1.9-2-3.4-4.5-3.4c-2.1,0-3.5,1.1-4.2,2.6c-0.7-0.4-1.5-0.7-2.5-0.7c-0.3,0-0.7,0-1,0.1
955
+ c-0.3-0.1-0.6-0.1-1-0.1c-0.7,0-1.4,0.1-1.9,0.4c-0.6-0.2-1.2-0.4-1.9-0.4c-1.9,0-3.2,0.9-3.9,2.1c-2.2,0.1-4.3,0.1-6.5,0.2
956
+ c-0.7-1.3-2.1-2.3-4-2.3c-2.1,0-3.5,1.1-4.1,2.5c-0.4,0-0.9,0-1.3,0c-0.7-1.5-2.1-2.6-4.2-2.6c-2,0-3.3,1-4,2.3
957
+ c0.2-2.5-1.4-5.2-4.6-5.2c-3.1,0-4.6,2.4-4.6,4.8c-0.1,0-0.1,0-0.2,0c-1.3,0-2.5,0.3-3.5,0.7c-0.7-1.5-2.1-2.6-4.2-2.6
958
+ c-2.3,0-3.8,1.3-4.4,3c-1.2-0.7-2.6-1.1-4.3-1.1c-2,0-3.7,0.6-5,1.5c-2.5,0.1-4.9,0.1-7.4,0.2c-1-3.1-3.7-5.5-7.9-5.5
959
+ c-4.4,0-7,2.7-8,5.9c-1.4,0-2.8,0.1-4.2,0.1c-0.9-3.3-3.6-6-8-6c-3.7,0-6.2,1.9-7.4,4.5c-1.3-1-3-1.6-5.1-1.6
960
+ c-3.1,0-5.3,1.3-6.7,3.2c-0.3,0-0.7,0-1-0.1c-1.1-2.9-3.7-5.1-7.7-5.1c-5,0-7.8,3.5-8.3,7.4c-0.3,0.1-0.5,0.2-0.8,0.2
961
+ c-1.4,0.2,0.8-0.2,0.8-0.3c-4.2-3.1-9-5.1-14-6c-0.2-2.2-1.8-4.2-4.6-4.2c-2.5,0-4,1.6-4.5,3.5c-1.6,0.1-3.2,0.2-4.8,0.4
962
+ c-1.4,0.2-2.8,0.5-4.3,0.8c-0.7-0.5-1.7-0.9-2.8-0.9c-1.9,0-3.3,0.9-4,2.3c-4.1,0.6-8,0.5-11.3-1.9c-3.6-2.7-9.9-0.7-11.8,3.1
963
+ c-0.8,1.5-3.3,1.6-5.8,1.3c0-2.4-1.6-4.8-4.6-4.8c-2.5,0-4,1.6-4.5,3.5c-1.1-0.1-2.3-0.3-3.4-0.4c0.1-2.5-1.5-5-4.6-5
964
+ c-0.7-0.6-1.7-1-2.9-1c-3.1,0-4.7,2.5-4.6,4.9c-0.5,0-0.9-0.1-1.4-0.1c0,0,0,0,0,0c0.5-2.7-1-5.8-4.6-5.8c-3.5,0-5,3.1-4.6,5.8
965
+ c0,0,0,0.1,0,0.1c-3,0.1-6.1,0.3-9.1,0.6c0.3-2.6-1.2-5.5-4.6-5.5c-2.6,0-4.1,1.7-4.5,3.6c-0.1,0.1-0.2,0.1-0.3,0.2
966
+ c-0.7-0.6-1.7-0.9-2.9-0.9c-1.2,0-2.2,0.4-2.9,1c-0.8-1.1-2-1.9-3.8-1.9c-3.8,0-5.2,3.5-4.4,6.3c-1.2-0.1-2.3-0.3-3.4-0.7
967
+ c-0.2-0.9-0.6-1.7-1.3-2.3c-0.9-0.8-2.1-1.5-3.4-1.4c-1.3,0.1-2.5,0.5-3.4,1.4c-0.3,0.3-0.6,0.6-1,1c-0.3,0.3-0.6,0.7-0.8,1.1
968
+ c-0.6,0.4-1.2,0.8-1.7,1.4c0-2.4-1.5-4.9-4.6-4.9c-2.3,0-3.7,1.3-4.3,2.9c-0.7,0.1-1.3,0.3-1.9,0.6c-0.7-0.4-1.5-0.7-2.5-0.7
969
+ c-0.2,0-0.5,0-0.7,0c-0.9-0.2-1.7-0.4-2.6-0.6c-0.5-1.8-2-3.3-4.4-3.3c-1.9,0-3.2,0.9-3.9,2.1c-2.1,0.4-3.6,1.6-4.7,3
970
+ c-1.6-1.4-3.6-2.3-5.8-2.3h-1c-1.2,0-2.3,0.2-3.3,0.7c-0.9,0.3-1.6,0.7-2.3,1.4c-0.4,0.1-0.7,0.2-1.1,0.3c-0.9-0.3-1.8-0.4-2.9-0.4
971
+ c-1.1,0-2,0.2-2.9,0.4c-1.4-2-3.6-3.3-6.8-3.3c-0.9,0-1.7,0.1-2.4,0.3c-0.7-0.2-1.5-0.3-2.4-0.3c-2.8,0-4.9,1.1-6.3,2.8
972
+ c-0.2-0.4-0.4-0.8-0.6-1.4c-2.2-5-10.2-5.6-13.6-1.8c-0.7,0.8-1.1,0.7-0.3,0.7c-0.1,0-0.3,0.3-0.5,0.3c-1.7,0-4-2.1-6-2.3
973
+ c-3.8-0.4-6,1.2-8.7,2.8c-2.9-0.2-5.5-0.9-8.7-0.4c-1,0.2-2.3,0.3-3.4,0.6c-1.1-2.3-3.4-4.1-5.6-4.7c-3.9-1.1-7.6,0.8-9.8,4
974
+ c-0.7,1-1.5,2.4-2.6,3.1c-0.2,0.1-0.3,0.2-0.4,0.3c-1.6,0.1-4.7-2.5-6.1-3.2c-2.9-1.4-5.9-2.6-9.2-2.8c-2.7-0.1-7.9,2-9.4,1.6
975
+ c-0.6-0.2-1.2-0.2-1.8-0.3c-1.4-0.3-2.9-0.3-4.5-0.1c-2.6,0.4-5.1,0.7-7.7,1.1c-2,0.3-4.2,2.3-5.2,4c-0.6,1-1,2.4-1.1,3.7
976
+ c-3.3,1.3-3.6,6.1-1.2,8.2c-0.1,0.4-0.2,0.7-0.3,1.1c-5.1,0.4-5.6,7.5-1.5,9.2c-0.2,2.2-0.2,4.4-0.2,6.6c-0.4,0.7-0.5,1.5-0.6,2.2
977
+ c-1.6,2.1-1.2,5.7,1.1,7.2c0.1,0.7,0.1,1.3,0.2,2c0,0.5,0.1,0.9,0.1,1.4c-0.5,1.1-0.6,2.3-0.3,3.4c-2.5,0.8-3.5,3.7-2.8,6
978
+ c-0.5,1.9,0,4.1,1.5,5.3c-1.5,1.2-2,3.5-1.5,5.3c-1.5,1.8-1.6,4.7-0.1,6.5c-0.2,0.5-0.3,1-0.3,1.6v1c0,0.8,0.3,1.7,0.7,2.4
979
+ c-2.4,1.2-3,4.4-1.9,6.7c-0.8,1.7-0.7,3.8,0.3,5.4c-1.5,5.4-2.3,10.9-1.1,17.1c0.9,4.5,2.6,8.8,3.7,13.2c0.8,3.3,0.5,6-0.3,8.8
980
+ c-1.9,1.1-2.5,3.5-2,5.6c-2.8,8.5-0.7,15.4,2.3,23c-0.9,1.7-0.8,4.1,0.5,5.6c-3.8,1.3-4,7.2-0.5,8.9c0.5,0.9,1.2,1.6,2.2,2
981
+ c-1.4,4.1-3.2,8-3.6,12.5c-0.3,2.4-0.1,4.7,0.4,6.9c-1,2.3-0.3,5.3,2.1,6.5c-1.1,2.1-0.6,5.1,1.5,6.5c0.3,1.1,0.9,2.2,1.9,2.9
982
+ c0,0.1-0.1,0.2-0.1,0.4c-1.9,4.9-4.6,8.6-4.7,14.1c-0.1,5.2,1.5,10.1,3.1,14.9c1.7,5.2,2.7,9.2,1.1,14.6
983
+ c-1.6,5.5-4.1,10.8-4.1,16.7c-0.1,6.6,2.6,13.2,7.4,17.3c-5.6,16.7-6.9,34.3-3.5,51.7c-4,6.1-6.2,13-6.1,20.7c0,3.3,1.8,6,4.5,7.5
984
+ c0.7,1.5,2.1,2.6,4.2,2.6c0.3,0,0.7,0,1-0.1c0.7,1.2,2,2,3.9,2c2.2,0,3.7-1.3,4.3-2.9c0.4,0,0.7,0,1.1,0.1c0.2,0.4,0.4,0.8,0.6,1.1
985
+ c0,0,0,0,0,0c0.2,0.3,0.5,0.6,0.9,0.9c0,0,0,0,0.1,0c0.1,0.1,0.3,0.2,0.5,0.3c0,0,0.1,0,0.1,0.1c0.2,0.1,0.4,0.2,0.6,0.2
986
+ c0,0,0.1,0,0.1,0c0.2,0.1,0.4,0.1,0.5,0.1c0.1,0,0.1,0,0.2,0c0.2,0,0.5,0,0.7,0c0.2,0,0.4,0,0.6,0c0.1,0,0.1,0,0.2,0
987
+ c0.1,0,0.3-0.1,0.4-0.1c0.1,0,0.1,0,0.2,0c0.2,0,0.3-0.1,0.4-0.2c0,0,0.1,0,0.1,0c0.2-0.1,0.3-0.2,0.5-0.3c0,0,0,0,0,0
988
+ c0.1-0.1,0.3-0.2,0.4-0.3c0,0,0.1,0,0.1-0.1c0.1-0.1,0.2-0.2,0.3-0.3c0,0,0,0,0-0.1c0.3-0.3,0.5-0.6,0.6-0.9c0.5,0,1.1,0.1,1.6,0.1
989
+ c0.7,1.3,2.1,2.2,4,2.2c0.9,0,1.7-0.2,2.3-0.6c0.8,0.9,1.9,1.5,3.5,1.5c1,0,1.9-0.3,2.5-0.7c0.8,1.5,2.3,2.6,4.2,2.6h3.8
990
+ c1.1,0,2.1-0.4,2.9-1c0.3,0,0.6,0.1,0.9,0.1c2,0,3.4-1,4.1-2.4c0.2-0.1,0.3-0.2,0.5-0.3c1.4,0,2.8,0.1,4.3,0.1
991
+ c0.1,2.3,1.7,4.5,4.6,4.5c2.4,0,3.9-1.5,4.4-3.2c0.8,0.8,1.9,1.3,3.3,1.3c2.1,0,3.4-1.1,4.1-2.5c5.3-0.1,10.5-0.5,15.7-1.3
992
+ c1.2-0.2,12.6-2.6,15.7-3.7c0.5,0.6,1.1,1.2,1.7,1.8c1.7,1.6,3.6,2.9,5.7,3.9c4.6,2.2,9.6,2.8,14.6,3c23.3,0.7,46.8,0,70.1,0.1
993
+ c11.9,0,23.7,0,35.6,0c5.3,0,10.7,0.3,15.9-0.2c5.1-0.5,9-3.1,13.8-4.3c7.5-1.9,16,1.8,23.4,3.1c7.9,1.3,15.3,1.1,21.9-2.6
994
+ c14.2,3.2,28.6,3.7,43,1.4c6.1,3.2,13.2,3.3,20,3.4c8.9,0.1,17.9,0.1,26.8,0.2l26.8,0.2c8.6,0.1,17.6,0.7,26.1-0.8
995
+ c4.1-0.7,7.7-2.4,11.2-4.5c2.6-1.5,4-0.5,6.6,0.8c7.6,3.9,14.8,6.3,23.3,7.1c8.4,0.8,16.9,0.3,25.3,0.2c9.6-0.1,19.2-0.2,28.9-0.4
996
+ c5.8-0.1,8.6-4.8,8.3-9.3c1.7-0.7,3.2-2,4.4-3.6c3.9-5.5,5.8-12.5,5.1-19.2c-0.3-3.7-1.2-7-2.8-10.3c-0.8-1.7-1.9-3.1-3-4.6
997
+ c0.2-0.3,0.4-0.6,0.6-0.9c0.7-1.2,1.2-2.6,1.6-4c0.8-2.8,1-5.8,1-8.6c0-6.6-0.4-13.2-0.6-19.8c-0.2-6.4-0.5-12.9-0.5-19.3
998
+ c0-4.1,0.1-8,3.5-10.8C654.7,596.3,653,588.8,648.6,586.3z M633.5,395.7c-5.2,0-6,6.7-2.6,8.9c0.1,0.5,0.3,0.9,0.5,1.4
999
+ c-0.5,1.8-0.9,3.7-1.2,5.6c-0.2,0.3-0.4,0.7-0.5,1.1c-0.3,1-0.6,1.9-0.9,2.9c-0.3,1-0.2,2.1,0.2,3c-0.8,1-1.1,2.3-1,3.6
1000
+ c-0.2,2.4,1.1,5,4,5.3c1.3,4.3,2.4,8.5,0.7,13c-2.6,7-3.7,13.5-3.4,20.6c-0.6,1.5-0.5,3.4,0.4,4.8c0,0,0,0.1,0,0.1
1001
+ c0.2,1.4,0.5,3.1,0.8,4.9c-1.6,1.4-2,3.9-1.2,5.9c-3.4,0.9-4.2,5.3-2.3,7.8c-0.2,1.2,0.1,2.5,0.8,3.6c-3.1,2.4-2.2,8.7,2.9,8.7
1002
+ c0.2,0,0.4,0,0.6,0c-0.9,2-2.2,3.7-4.2,5c-7,4.7-4.5,15.6,4.1,16.1c-0.6-0.1-0.2-0.3,0.2,0c0,0,0.1,0,0.1,0c0,0-0.1,0-0.1,0
1003
+ c0.2,0.1,0.3,0.3,0.4,0.6c0.1,0.5,0.2,1,0.3,1.4c-4.9,0.5-5.4,7.5-1.4,9.2c-0.5,1.5-1,3-1.3,4.6c-0.1,0.4-0.2,0.9-0.3,1.3
1004
+ c-1.1,1.4-1.3,3.4-0.7,5.1c-0.3,4.1,0.1,8,0.9,12c-2.1,2.3-1.5,6.7,1.7,7.9c0.1,0.5,0.2,1,0.2,1.4c-0.4-0.1-0.9-0.2-1.3-0.2
1005
+ c-5.9,0-6.2,8.9-0.7,9.6c-0.3,1.4,0,2.9,0.8,4c-0.2,1.3-0.4,2.5-0.5,3.8c-0.2,0-0.4-0.1-0.6-0.1c-1.2,0-2.6,0.5-3.4,1.4
1006
+ c-0.8,0.9-1.5,2.1-1.4,3.4c0.1,1.3,0.5,2.5,1.4,3.4c0.3,0.3,0.6,0.6,1,1c0.5,0.5,1,0.8,1.7,1.1c-0.2,2.5,1.4,5.2,4.6,5.2
1007
+ c0.1,0.1,0.1,0.2,0.2,0.4c-2.6,5.1-3.3,11.3-3.2,17c0.1,10.8,0.6,21.6,0.9,32.4c0.1,3.1,1,7.5-0.4,10.4c-1.3,2.6-3.2,4.3-3.7,7.3
1008
+ c-0.4,2.8,0.2,5.8,1.7,8.2c0.7,1.2,1.5,2.2,2.3,3.2c-1,2.5,0,5.9,3,6.6c0,0.1,0,0.1,0,0.2c-4.7,0.3-5.6,6.2-2.6,8.6
1009
+ c-0.1,0.1-0.1,0.2-0.2,0.3c-0.5-0.2-1.1-0.3-1.7-0.3c-2.1,0-3.5,1.1-4.2,2.6c-0.5-1.9-1.9-3.5-4.5-3.5c-3.6,0-5.1,3.2-4.5,5.9
1010
+ c-0.5,0-0.9,0-1.4,0c0.1-0.4,0.1-0.7,0.1-1.1c-0.1-2.6-2.1-4.8-4.8-4.8h-2.9c-0.8,0-1.6,0.2-2.3,0.6c-0.7-0.4-1.5-0.6-2.5-0.6
1011
+ c-1.8,0-3.1,0.8-3.8,2c-0.8-1.2-2-2-3.9-2c-1.4,0-2.5,0.5-3.3,1.3c-0.5-1.8-2-3.2-4.4-3.2c-2.3,0-3.7,1.3-4.3,2.9
1012
+ c-0.2,0-0.3,0-0.5,0c-3.1,0-4.6,2.4-4.6,4.8c-1-0.1-2-0.3-2.9-0.5c-8.5-1.9-15.6-8.6-24.7-8.1c-4.4,0.3-7.6,2.4-11.4,4.4
1013
+ c-3.3,1.7-6.9,1.9-10.6,1.9c-0.5-1.8-2-3.4-4.5-3.4c-2.5,0-4,1.5-4.5,3.4c-1.8,0-3.6,0-5.4,0c-0.2-2.2-1.7-4.3-4.6-4.3
1014
+ c-2.1,0-3.5,1.1-4.1,2.6c-0.8-0.9-2-1.6-3.6-1.6c-1.5,0-2.7,0.6-3.5,1.5c-0.6-0.3-1.4-0.5-2.3-0.5c-1.9,0-3.3,1-4,2.3
1015
+ c-0.6,0-1.2,0-1.8,0c-0.2-1-0.6-2-1.3-2.8c-0.9-0.9-2.1-1.4-3.4-1.4h-1.9c-0.9,0-1.8,0.3-2.6,0.8c-0.3-0.2-0.6-0.3-1-0.5
1016
+ c-1-0.3-1.9-0.6-2.9-0.9c-1-0.3-2-0.2-2.9,0.1c-0.6-0.3-1.3-0.5-2.1-0.5c-2.5,0-4,1.6-4.5,3.5c-0.7-1.5-2.1-2.6-4.2-2.6
1017
+ c-0.3,0-0.7,0-1,0.1c-0.3-0.1-0.6-0.1-0.9-0.1c-2.7,0-4.3,1.9-4.6,3.9c-1,0-2.1,0-3.1-0.1c-0.4,0-0.7,0-1.1,0
1018
+ c-0.2-0.9-0.6-1.8-1.3-2.4c-0.9-0.9-2.1-1.4-3.4-1.4h-1c-1.1,0-2.2,0.4-3,1.1c-0.1,0-0.2-0.1-0.3-0.1c-1.7-0.7-3.5-0.8-5.4-0.6
1019
+ c-0.5-0.2-1.2-0.4-1.9-0.4c-1.3,0-2.4,0.5-3.2,1.2c-1.2,0.2-2.4,0.5-3.6,0.6c-4.8,0.4-9.6,0.5-14.4,0.2c-4.6-0.3-9.2-0.9-13.7-1.9
1020
+ c-5.5-1.2-8.8-2.3-13.7,1c-4,2.7-9.5,1.3-14.4,0.3c-6.8-1.5-13.8-3.4-20.8-3.1c-3.8,0.2-7.2,1.4-10.7,2.5c-0.8-1.1-2-1.8-3.7-1.8
1021
+ c-1.6,0-2.7,0.6-3.5,1.5c-0.6-0.3-1.4-0.6-2.3-0.6c-0.2,0-0.4,0-0.6,0c-0.1,0-0.3,0-0.4,0c-2.4,0-3.9,1.4-4.4,3.2
1022
+ c-1.8,0-3.6,0-5.4,0c0.2-2.5-1.4-5.1-4.6-5.1c-3.2,0-4.8,2.6-4.6,5.2c-1.2,0-2.4,0-3.6,0c-0.8-0.8-1.9-1.3-3.3-1.3
1023
+ c-1.2,0-2.2,0.4-2.9,0.9c-0.7-0.6-1.7-0.9-2.9-0.9c-1,0-1.8,0.2-2.4,0.6c-0.4-0.2-0.9-0.4-1.4-0.5c-0.7-1.2-2-2-3.9-2
1024
+ c-2.4,0-3.9,1.4-4.4,3.2c-0.8,0-1.7,0-2.5,0c-0.3-2.2-1.8-4.2-4.6-4.2c-2.4,0-3.9,1.4-4.4,3.2c-0.8-0.8-1.9-1.3-3.3-1.3
1025
+ c-1.6,0-2.8,0.6-3.5,1.6c-0.7-1.4-2.1-2.5-4.1-2.5c-0.7-0.6-1.7-1-2.9-1c-2.8,0-4.3,2-4.6,4.1c-0.4,0-0.9,0-1.3,0v0
1026
+ c0-0.2,0-0.3,0-0.5c0,0,0,0,0,0c0-0.1,0-0.3,0-0.4c0,0,0,0,0,0c0-0.1,0-0.3-0.1-0.4c0,0,0,0,0,0c0-0.1-0.1-0.3-0.1-0.4
1027
+ c0,0,0,0,0-0.1c0-0.1-0.1-0.2-0.1-0.4c0,0,0-0.1,0-0.1c0-0.1-0.1-0.2-0.2-0.3c0,0,0-0.1,0-0.1c-0.1-0.1-0.1-0.2-0.2-0.3
1028
+ c0,0,0-0.1-0.1-0.1c-0.1-0.1-0.1-0.2-0.2-0.3c0,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.1-0.2-0.2-0.2c0,0-0.1-0.1-0.1-0.1
1029
+ c-0.1-0.1-0.1-0.1-0.2-0.2c0,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.2-0.1-0.2-0.2c-0.1,0-0.1-0.1-0.2-0.1c-0.1,0-0.2-0.1-0.2-0.1
1030
+ c-0.1,0-0.1-0.1-0.2-0.1c-0.1,0-0.2-0.1-0.3-0.1c-0.1,0-0.1-0.1-0.2-0.1c-0.1,0-0.2-0.1-0.3-0.1c-0.1,0-0.1,0-0.2-0.1
1031
+ c-0.1,0-0.2,0-0.4-0.1c-0.1,0-0.1,0-0.2,0c-0.2,0-0.4,0-0.6,0c-0.2,0-0.4,0-0.6,0c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2,0-0.4,0.1
1032
+ c-0.1,0-0.1,0-0.2,0.1c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0-0.1,0-0.2,0.1c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0-0.1,0.1-0.2,0.1
1033
+ c-0.1,0-0.2,0.1-0.2,0.1c-0.1,0-0.1,0.1-0.2,0.1c-0.1,0.1-0.2,0.1-0.2,0.2c0,0-0.1,0.1-0.1,0.1c-0.1,0.1-0.2,0.1-0.2,0.2
1034
+ c0,0-0.1,0.1-0.1,0.1c-0.1,0.1-0.1,0.2-0.2,0.2c0,0-0.1,0.1-0.1,0.1c-0.1,0.1-0.1,0.2-0.2,0.3c0,0,0,0.1-0.1,0.1
1035
+ c-0.1,0.1-0.1,0.2-0.2,0.3c0,0,0,0.1,0,0.1c-0.1,0.1-0.1,0.2-0.2,0.3c0,0,0,0,0,0.1c0,0.1-0.1,0.2-0.1,0.4c0,0,0,0,0,0.1
1036
+ c0,0.1-0.1,0.3-0.1,0.4c0,0,0,0,0,0c0,0.1-0.1,0.3-0.1,0.4c0,0,0,0,0,0c0,0.1,0,0.3,0,0.4c0,0,0,0,0,0c0,0.2,0,0.3,0,0.5
1037
+ c-0.8,0-1.7,0-2.5,0c-0.6-1.7-2-3.2-4.4-3.2c-1,0-1.8,0.2-2.4,0.6c-0.7-0.4-1.5-0.6-2.4-0.6c-1.9,0-3.3,0.9-4,2.2
1038
+ c-0.5-0.2-1.1-0.3-1.8-0.3c-1.6,0-2.7,0.6-3.5,1.6c-0.2,0-0.5,0-0.7,0c0.8-2.8-0.6-6.4-4.4-6.4c-3.7,0-5.2,3.5-4.5,6.2
1039
+ c-1.5-0.1-3.1-0.2-4.6-0.4c-3.9-0.5-5-2-7.7-4.5c-4.2-3.9-9.4-5.1-15-3.7c-5,1.2-9.6,3-14.7,3.8c-5,0.8-10,0.9-15,1
1040
+ c-19.1,0.1-38.2-1.2-57.3-2.3c1.2-2.7,3.5-4.6,4.6-7.3c1.5-3.5,0-7.1-0.6-10.6c-0.6-3.1-0.9-6.3-1.1-9.5c-0.7-12.6,1.4-25.4,6.4-37
1041
+ c2.5-5.8-0.3-12.8-7.3-13c0,0-0.1-0.1-0.1-0.1c-0.6-0.8-0.9-1.9-1-2.8c-0.5-3.9,1.8-8.2,3-11.8c3.3-10.4,1.3-18.7-1.8-28.8
1042
+ c-0.9-3-1.9-6.1-0.6-9.1c2.1-4.7,4.7-8.5,4.6-13.9c-0.1-4.5-2-8.5-4-12.4c-1.8-3.5-3-5.8-1.8-9.7c1.2-3.9,3.1-7.6,3.9-11.6
1043
+ c1.1-5.2,0.6-10.4-1.2-15.3c-0.9-2.5-2-4.8-3.1-7.2l0.6-1.6c0.4-1.1,0.1-2.6-0.4-3.6c0,0,0.1,0,0.1-0.1c0.9-0.9,1.4-2.1,1.4-3.4
1044
+ v-1.4c2.2-1,3.5-3.3,2.9-5.7c-0.3-1.3-0.7-2.6-1-3.8c-0.2-0.7-0.6-1.4-1.1-2c-0.1-0.9-0.3-1.7-0.8-2.5c0.1-1.9,0.1-3.8,0-5.7
1045
+ c1.6-1.2,2.2-3.5,1.6-5.4c0.7-2.7-0.6-6-4-6.2c-0.2-0.6-0.4-1.2-0.5-1.8c0,0,0-0.1,0-0.1c0-1-0.3-2-0.8-2.8c-0.3-1.3-0.6-2.6-0.7-4
1046
+ c5.4-0.2,5.8-7.9,1.4-9.4c1.1-3.3,2.5-6.4,3.5-9.7c1.2-3.9,1.9-7.8,2.3-11.8c0.1,0,0.2,0,0.3,0c6.2,0,6.2-9.6,0-9.6
1047
+ c0,0-0.1,0-0.1,0c-0.1-1.5-0.1-3-0.2-4.5c2.1-1.3,2.6-4.4,1.5-6.5c0.9-1.7,0.7-3.9-0.4-5.5c0-1.4-0.6-2.8-1.8-3.7
1048
+ c1-1.5,1.1-3.6,0.2-5.2c0.7-1.4,0.7-3.2,0.1-4.6c2.1-2,1.9-6-0.6-7.6c0.2-0.7,0.3-1.5,0.5-2.2c0.5-0.3,0.9-0.6,1.3-1
1049
+ c0.6,0.3,1.4,0.6,2.3,0.6c2.6,0,4.1-1.6,4.5-3.6c0.1,0,0.2,0,0.3,0c1.4-0.3,3.4-1.4,4.7-1.3c3.4,0.2,7.3,3.8,10.6,5
1050
+ c6.2,2.2,11.6,0.7,16-2.6c3,1.2,6.4,1.7,9.5,1.2c1.9-0.3,4-1.3,5.9-1.3c1.8,0,3.5,0.9,5.4,1c3,0.1,5-0.9,7-2.2
1051
+ c0.8,0.4,1.7,0.7,2.5,0.9c2,0.5,4.1,0.6,6.1,0.4c1.1-0.1,2.1-0.3,3.2-0.6c1,0.9,2.2,1.7,3.4,2.4c4.4,2.5,8.6,0.8,11-2.4
1052
+ c0.7,0.2,1.4,0.3,2.2,0.3c0.9,0,1.7-0.1,2.4-0.3c0.7,0.2,1.5,0.3,2.4,0.3c1.1,0,2-0.2,2.9-0.4c1.4,2,3.6,3.3,6.8,3.3
1053
+ c1.1,0,2-0.2,2.9-0.4c0.9,0.3,1.8,0.4,2.9,0.4c2.3,0,4.1-0.8,5.5-1.9c0.9-0.1,1.8-0.3,2.6-0.7c1.1-0.3,2-0.9,2.8-1.8
1054
+ c0.2-0.2,0.4-0.4,0.6-0.6c1.2,1.2,2.9,2,5,2.2c0.4,0.2,0.9,0.4,1.4,0.5c2.6,0.6,5.1,1.2,7.7,1.9c0.3,0.1,0.7,0.1,1.1,0.2
1055
+ c1,1,2.2,1.7,3.7,1.9c5.2,0.7,10.1,0.7,15.2-0.7c1.1-0.3,2.1-0.9,3-1.6c7,1.6,14,0.9,21.5-0.3c8-1.3,16-1.9,24.1-1.9
1056
+ c0.8,1.2,2,2,3.8,2c1.6,0,2.8-0.7,3.6-1.6c11,1.1,26.4,5.4,36-0.6c0.5,0.2,1.1,0.3,1.8,0.3c0.4,0,0.8,0,1.1-0.1
1057
+ c4.9,1,10.2,0.5,15.3-0.3c7.3-1.2,14.6-3.5,21.7-0.2c3.9,1.8,6.9,4.9,11.5,5.3c4.4,0.4,7.7-2.1,12-2.5c4.3-0.4,8.7,0.3,13,0.3
1058
+ c5.1,0.1,10.1-0.1,15.2-0.2c39.6-0.9,79.2-1.8,118.8-2.6c19.3-0.4,38.7-1.1,58-0.7c-0.1,2.3,0.2,4.6,0.8,6.9c-3,2.5-2,8.6,3,8.6
1059
+ c0.2,0,0.5,0,0.7,0c0.4,1,0.8,2,0.9,2.9c-3.9,0.2-5.1,4.3-3.8,7.1c0,0,0,0,0,0.1c-0.6,1.2-0.8,2.4-0.5,3.7c0.2,0.8,0.8,1.7,1.5,2.4
1060
+ c0,1.4,0.2,2.8,0.5,4.1c-0.1,0.6-0.1,1.3,0,1.9c-0.4,2.2,0.5,4.6,2.8,5.5C633.3,392.9,633.6,394.2,633.5,395.7
1061
+ C633.6,395.7,633.6,395.7,633.5,395.7z"/>
159
1062
  </g>
160
1063
  </svg>