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
@@ -0,0 +1,436 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ width="69.8px" height="122px" viewBox="0 0 69.8 122" style="enable-background:new 0 0 69.8 122;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#AF6C1B;}
7
+ .st1{fill:#95ADB2;stroke:#7B8687;stroke-width:0.7224;stroke-miterlimit:10;}
8
+ .st2{fill:#8A4123;}
9
+ .st3{fill:#612F1C;}
10
+ .st4{fill:#A33516;}
11
+ .st5{fill:#763820;}
12
+ .st6{fill-rule:evenodd;clip-rule:evenodd;fill:none;stroke:#3F3F3F;stroke-width:0.76;stroke-miterlimit:10;}
13
+ .st7{fill-rule:evenodd;clip-rule:evenodd;fill:#30873A;}
14
+ .st8{fill:none;stroke:#6B3F0F;stroke-width:0.67;stroke-miterlimit:10;}
15
+ .st9{opacity:0.3;}
16
+ .st10{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
17
+ .st11{opacity:0.5;fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_1_);}
18
+ .st12{fill-rule:evenodd;clip-rule:evenodd;fill:#136E31;}
19
+ .st13{fill:none;stroke:#1A421E;stroke-width:1.34;stroke-miterlimit:10;}
20
+ .st14{fill:none;stroke:#382212;stroke-width:0.8166;stroke-miterlimit:10;}
21
+ .st15{fill:#55432A;stroke:#BC802D;stroke-width:0.5067;stroke-miterlimit:10;}
22
+ .st16{opacity:0.5;fill:#BC802D;}
23
+ .st17{fill:#3D3222;stroke:#BC802D;stroke-width:0.5067;stroke-miterlimit:10;}
24
+ .st18{fill:#BBAFAE;stroke:#4C1026;stroke-width:0.5067;stroke-miterlimit:10;}
25
+ .st19{fill:#961914;}
26
+ .st20{fill:url(#SVGID_2_);stroke:#B07146;stroke-width:0.5067;stroke-miterlimit:10;}
27
+ .st21{fill:#D89060;}
28
+ .st22{fill:#FEEEE1;}
29
+ .st23{fill:url(#SVGID_3_);}
30
+ .st24{fill:#B07146;}
31
+ .st25{fill:url(#SVGID_4_);}
32
+ .st26{fill:url(#SVGID_5_);}
33
+ .st27{fill:url(#SVGID_6_);stroke:#B07146;stroke-width:0.5067;stroke-miterlimit:10;}
34
+ .st28{fill:url(#SVGID_7_);}
35
+ .st29{fill:url(#SVGID_8_);}
36
+ .st30{fill:url(#SVGID_9_);}
37
+ .st31{fill:#C94B4A;stroke:#B53231;stroke-width:0.5067;stroke-miterlimit:10;}
38
+ .st32{opacity:0.5;fill:#C03131;}
39
+ .st33{fill:url(#SVGID_10_);stroke:#B07146;stroke-width:0.5067;stroke-miterlimit:10;}
40
+ .st34{fill:url(#SVGID_11_);stroke:#B07146;stroke-width:0.5067;stroke-miterlimit:10;}
41
+ .st35{fill:url(#SVGID_12_);stroke:#B07146;stroke-width:0.5067;stroke-miterlimit:10;}
42
+ .st36{fill:#D01317;stroke:#6B1B0C;stroke-width:0.76;}
43
+ .st37{opacity:0.1011;fill:#7C1714;enable-background:new ;}
44
+ .st38{opacity:0.2697;fill:#010202;stroke:#010202;stroke-width:0.2103;enable-background:new ;}
45
+ .st39{opacity:0.294;fill:#010202;stroke:#010202;stroke-width:0.1524;enable-background:new ;}
46
+ .st40{fill:#FFFFFF;stroke:#A8A6A7;stroke-width:0.5067;}
47
+ .st41{fill:none;stroke:#8D1F1E;stroke-width:0.2112;}
48
+ .st42{opacity:0.1124;fill:#010202;enable-background:new ;}
49
+ .st43{fill:#FFFFFF;stroke:#7C7B7B;stroke-width:0.5067;}
50
+ .st44{opacity:9.550560e-02;fill:#010202;enable-background:new ;}
51
+ .st45{fill:#62220F;fill-opacity:0.2235;}
52
+ .st46{fill:#FFFFFF;}
53
+ .st47{fill:#BC7920;}
54
+ .st48{fill:#D61F1E;}
55
+ .st49{fill:#875516;}
56
+ </style>
57
+ <path class="st0" d="M41.8,63.5h-2.6c-5.9,0-10.8-4.8-10.8-10.8V35.4c0-5.9,4.8-10.8,10.8-10.8h2.6c5.9,0,10.8,4.8,10.8,10.8v17.3
58
+ C52.5,58.7,47.7,63.5,41.8,63.5z"/>
59
+ <g>
60
+ <rect x="17.8" y="57" class="st1" width="3.6" height="65"/>
61
+ <rect x="63.7" y="57" class="st1" width="3.6" height="65"/>
62
+ </g>
63
+ <path class="st2" d="M48.1,18.7C48.1,18.7,48.1,18.7,48.1,18.7c0-0.1-0.1-0.3,0-0.4C48.2,18.5,48.2,18.6,48.1,18.7z"/>
64
+ <path class="st3" d="M45.2,25C45.1,25,45.1,25,45.2,25c-0.1-0.1,0-0.1,0-0.1C45.2,24.9,45.2,24.9,45.2,25C45.2,25,45.2,25,45.2,25z"
65
+ />
66
+ <path class="st4" d="M46.6,20.6c-0.1,0.2-0.1,0.4-0.2,0.6c-0.1,0.4-0.3,0.7-0.6,1c-0.1,0-0.1,0.1-0.2,0c-0.1-0.1-0.1-0.1-0.1,0.1
67
+ c0,0.2,0,0.3-0.1,0.5c0,0-0.1,0.1,0,0.1c0.1,0,0.1,0,0.1-0.1c0.1-0.1,0.2-0.2,0.4-0.4c0,0.3-0.2,0.5-0.3,0.6c0,0.1-0.4,0-0.4-0.1
68
+ c-0.1-0.1-0.1-0.4,0-0.5c0.3-0.3,0.5-0.6,0.8-0.9c0.1-0.1,0.2-0.2,0.1-0.4C46.2,21,46.4,20.8,46.6,20.6z"/>
69
+ <path class="st2" d="M48.1,18.8c0.1,0.1,0,0.3,0,0.3c-0.2,0.2-0.3,0.5-0.3,0.7c-0.1,0.2-0.2,0.4-0.3,0.4c-0.2,0.1-0.3,0.1-0.5,0.1
70
+ c0-0.2,0.1-0.2,0.2-0.3c0.3-0.3,0.4-0.7,0.7-1C47.8,19,47.9,18.8,48.1,18.8z"/>
71
+ <path class="st3" d="M42.6,16.7C42.6,16.7,42.5,16.6,42.6,16.7c-0.1-0.1,0-0.2,0-0.2C42.7,16.5,42.7,16.6,42.6,16.7
72
+ C42.7,16.7,42.6,16.7,42.6,16.7z"/>
73
+ <path class="st3" d="M42.4,19.3C42.4,19.4,42.4,19.4,42.4,19.3C42.4,19.4,42.4,19.4,42.4,19.3C42.4,19.4,42.4,19.3,42.4,19.3
74
+ C42.4,19.3,42.4,19.3,42.4,19.3z"/>
75
+ <path class="st3" d="M41.8,21.7C41.7,21.7,41.7,21.7,41.8,21.7C41.7,21.7,41.7,21.7,41.8,21.7z"/>
76
+ <path class="st3" d="M42.7,19C42.7,19,42.7,19,42.7,19C42.7,19,42.7,19,42.7,19C42.7,19,42.7,19,42.7,19z"/>
77
+ <path class="st5" d="M39.3,20.8c-0.3-0.1-0.5-0.2-0.7-0.4c0,0,0-0.3,0.1-0.1c0.2,0,0.3,0.4,0.5,0.2c0.1,0,0,0.1,0.1,0.1
78
+ C39.4,20.7,39.3,20.8,39.3,20.8z"/>
79
+ <path class="st5" d="M39.2,18.3c0-0.1,0.1-0.1,0.1-0.1C39.3,18.3,39.2,18.3,39.2,18.3z"/>
80
+ <path class="st5" d="M38.5,20.2C38.5,20.2,38.4,20.2,38.5,20.2C38.5,20.2,38.5,20.2,38.5,20.2z"/>
81
+ <path class="st4" d="M44.4,23.5c0,0-0.1,0-0.1-0.1c0-0.1,0-0.1,0-0.2c0.1-0.2,0.3-0.3,0.5-0.4c0,0,0.1,0,0.1,0.1
82
+ C44.9,23.1,44.6,23.5,44.4,23.5z"/>
83
+ <path class="st2" d="M37.3,18.7c0.2,0,0.2,0.3,0.4,0.3c0,0,0,0.2,0,0.2C37.5,19.1,37.4,18.9,37.3,18.7z"/>
84
+ <path class="st3" d="M38.4,18.4C38.4,18.4,38.4,18.4,38.4,18.4C38.4,18.4,38.4,18.4,38.4,18.4C38.4,18.4,38.4,18.4,38.4,18.4
85
+ C38.4,18.4,38.4,18.4,38.4,18.4z"/>
86
+ <path class="st3" d="M38.8,18.2C38.8,18.2,38.9,18.3,38.8,18.2C38.9,18.3,38.9,18.3,38.8,18.2C38.8,18.3,38.8,18.3,38.8,18.2
87
+ C38.8,18.3,38.8,18.3,38.8,18.2z"/>
88
+ <path class="st3" d="M36.1,15.9C36.1,15.9,36.1,15.9,36.1,15.9C36.1,15.8,36.1,15.9,36.1,15.9C36.1,15.9,36.1,15.9,36.1,15.9
89
+ C36.1,15.9,36.1,15.9,36.1,15.9z"/>
90
+ <path class="st3" d="M37.8,16.6C37.8,16.6,37.8,16.6,37.8,16.6C37.8,16.6,37.8,16.6,37.8,16.6C37.8,16.6,37.8,16.6,37.8,16.6z"/>
91
+ <path class="st5" d="M36.4,17C36.4,17,36.4,17,36.4,17C36.4,16.9,36.4,16.9,36.4,17C36.4,16.9,36.4,16.9,36.4,17
92
+ C36.4,17,36.4,17,36.4,17z"/>
93
+ <path class="st2" d="M38.9,24.5C38.9,24.5,38.8,24.5,38.9,24.5C38.8,24.5,38.8,24.5,38.9,24.5C38.8,24.4,38.9,24.5,38.9,24.5
94
+ C38.9,24.5,38.9,24.5,38.9,24.5z"/>
95
+ <path class="st6" d="M20.7,55.2"/>
96
+ <g>
97
+ <g>
98
+ <g>
99
+ <path class="st7" d="M68.8,115.1c0,0.5-0.4,0.9-0.9,0.9H16.5c-0.5,0-0.9-0.4-0.9-0.9V70.9c0-0.5,0.4-0.9,0.9-0.9h51.3
100
+ c0.5,0,0.9,0.4,0.9,0.9V115.1z"/>
101
+ <path class="st8" d="M68.8,115.1c0,0.5-0.4,0.9-0.9,0.9H16.5c-0.5,0-0.9-0.4-0.9-0.9V70.9c0-0.5,0.4-0.9,0.9-0.9h51.3
102
+ c0.5,0,0.9,0.4,0.9,0.9V115.1z"/>
103
+ </g>
104
+ </g>
105
+ <g class="st9">
106
+ <path class="st10" d="M18,112.7c0.8-0.6,1.9-38.2,1.9-39.5c0-1.3-2.2-1.5-2.2-1.5L18,112.7z"/>
107
+ <path class="st10" d="M66.3,112.7c-0.8-0.6-1.9-38.2-1.9-39.5c0-1.3,2.2-1.5,2.2-1.5L66.3,112.7z"/>
108
+ </g>
109
+ <g>
110
+ <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="42.1584" y1="72.0804" x2="42.1584" y2="73.0168">
111
+ <stop offset="0" style="stop-color:#6E150E;stop-opacity:0"/>
112
+ <stop offset="1" style="stop-color:#004425"/>
113
+ </linearGradient>
114
+ <path class="st11" d="M20,73.2c0,0,0,0.1,0,0.2h44.4c0-0.1,0-0.2,0-0.2c0-1.3,2.2-1.5,2.2-1.5H17.7C17.7,71.7,20,71.9,20,73.2z"/>
115
+ </g>
116
+ <g>
117
+ <path class="st12" d="M16.2,115.5c-0.3,0-0.6-0.4-0.6-0.9V70.7c0-0.5,0.4-0.9,0.9-0.9h51.3c0.5,0,0.9,0.4,0.9,0.9v43.9
118
+ c0,0.5-0.3,0.9-0.6,0.9s-0.6-0.4-0.6-0.9V71.8c0-0.5-0.4-0.9-0.9-0.9H17.7c-0.5,0-0.9,0.4-0.9,0.9v42.7
119
+ C16.8,115.1,16.5,115.5,16.2,115.5z"/>
120
+ </g>
121
+ <g>
122
+ <path class="st13" d="M68.8,115.1c0,0.5-0.4,0.9-0.9,0.9H16.5c-0.5,0-0.9-0.4-0.9-0.9V70.9c0-0.5,0.4-0.9,0.9-0.9h51.3
123
+ c0.5,0,0.9,0.4,0.9,0.9V115.1z"/>
124
+ </g>
125
+ </g>
126
+ <line class="st14" x1="43.4" y1="25.9" x2="57" y2="79.1"/>
127
+ <line class="st14" x1="36.6" y1="23.3" x2="27" y2="81.2"/>
128
+ <g>
129
+ <g>
130
+ <path class="st15" d="M45.1,79.3c0,0,3.4-2.8,5.3-2.3c1.9,0.6,0.6,5.4,0.6,5.4L45.1,79.3z"/>
131
+ <path class="st16" d="M45.5,79.3l5.4,2.9c0.2-0.6,0.3-1.6,0.4-2.5c-1.2-0.7-3-1.1-4.3-1.4C46.3,78.7,45.8,79.1,45.5,79.3z"/>
132
+ </g>
133
+ <g>
134
+ <path class="st17" d="M39.5,79.7c0,0-3.4-2.8-5.3-2.3c-1.9,0.6-0.6,5.4-0.6,5.4L39.5,79.7z"/>
135
+ <path class="st16" d="M33.4,80.5c0.1,0.8,0.2,1.6,0.3,2.2l5.4-2.9c-0.4-0.3-1.5-1.1-2.6-1.6C35.4,78.5,34.2,79.4,33.4,80.5z"/>
136
+ </g>
137
+ <g>
138
+ <g>
139
+ <ellipse class="st18" cx="43" cy="90.1" rx="13.4" ry="11.4"/>
140
+ </g>
141
+ <g>
142
+ <ellipse class="st19" cx="43" cy="90.6" rx="12.8" ry="10.8"/>
143
+ </g>
144
+ </g>
145
+ <g>
146
+ <linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="55.6784" y1="78.4675" x2="59.5293" y2="87.4053">
147
+ <stop offset="0" style="stop-color:#F7D7B8"/>
148
+ <stop offset="0.483" style="stop-color:#F8D0B0"/>
149
+ <stop offset="1" style="stop-color:#F7C7A6"/>
150
+ </linearGradient>
151
+ <path class="st20" d="M52.7,81.3c0.5-0.8,3.8-3.9,8.4-1.8c1.7,0.7,1.4,3.9,1.4,3.9s0,3-5.3,3.5S52.4,81.8,52.7,81.3z"/>
152
+ <path class="st21" d="M58.4,84.7c-1.9-0.1-4.3-2.3-5.4-3.4c-0.1,0.1-0.1,0.1-0.1,0.2c-0.1,0.2-0.4,2.2,0.5,3.6
153
+ c0.7,1.2,2,1.8,3.8,1.6c2.9-0.2,4.2-1.3,4.7-2.1C61.1,84.6,60.1,84.8,58.4,84.7z"/>
154
+ <path class="st21" d="M57.9,79c-1.6,0-2.9,0.6-3.7,1.2c1.1,1.1,3.5,1.9,3.5,1.9s2.3-1.8,3.3-1.5l-1.9-0.9c0,0,0.1-0.2,0.2-0.5
155
+ C58.8,79,58.4,79,57.9,79z"/>
156
+ <g>
157
+ <path class="st22" d="M58.8,81.4c0,0,0.6-0.4,1.2-0.6c0.3-0.1,0.6-0.2,0.9-0.2c0.2,0,0.4,0.1,0.4,0.1s-0.2-0.1-0.4-0.1
158
+ c-0.2,0-0.6,0.1-0.8,0.2c-0.6,0.3-1.1,0.7-1.1,0.7L58.8,81.4z"/>
159
+ </g>
160
+ <g>
161
+ <linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="57.1513" y1="78.0758" x2="57.1513" y2="86.1115">
162
+ <stop offset="0" style="stop-color:#F7D7B8"/>
163
+ <stop offset="0.483" style="stop-color:#F8D0B0"/>
164
+ <stop offset="1" style="stop-color:#F7C7A6"/>
165
+ </linearGradient>
166
+ <path class="st23" d="M57.7,84.5c-1.3-0.6-3.4-1.2-3.3-3.2c0.1-1.9,4.3,0.1,5.5,0.9"/>
167
+ <path class="st24" d="M57.7,84.5c0,0-0.2-0.1-0.5-0.2c-0.3-0.1-0.7-0.2-1.2-0.4c-0.5-0.2-1.1-0.5-1.5-1.1c-0.2-0.3-0.4-0.7-0.4-1
168
+ l0-0.3c0-0.1,0-0.1,0-0.2l0-0.1c0-0.1,0.2-0.5,0.3-0.6c0.4-0.3,0.8-0.3,1.2-0.2c0.4,0,0.7,0.1,1,0.2c0.6,0.2,1.2,0.5,1.7,0.7
169
+ c0.9,0.5,1.5,1,1.5,1s-0.6-0.3-1.6-0.7c-0.5-0.2-1.1-0.4-1.7-0.6c-0.3-0.1-0.6-0.1-1-0.2c-0.3,0-0.6,0-0.8,0.1
170
+ c-0.1,0-0.1,0.1-0.1,0.1c0,0-0.1,0.1-0.1,0.2l0,0.1c0,0,0,0.1,0,0.1l0,0.2c0,0.3,0.1,0.6,0.3,0.8c0.3,0.5,0.8,0.9,1.3,1.1
171
+ c0.4,0.3,0.8,0.5,1.1,0.6C57.6,84.4,57.7,84.5,57.7,84.5z"/>
172
+ </g>
173
+ <g>
174
+ <path class="st22" d="M54.7,81.1c0,0,0-0.1,0.1-0.2c0.1-0.1,0.3-0.2,0.5-0.2c0.5,0,1.1,0.1,1.7,0.3c0.6,0.2,1.2,0.4,1.6,0.6
175
+ c0.4,0.2,0.7,0.3,0.7,0.3s-0.3-0.1-0.7-0.2c-0.4-0.1-1-0.3-1.6-0.5c-0.6-0.2-1.2-0.3-1.6-0.4c-0.2,0-0.4,0-0.5,0.1
176
+ C54.7,81,54.7,81.1,54.7,81.1z"/>
177
+ </g>
178
+ <g>
179
+ <path class="st24" d="M58.6,81.5c0,0,0.4-0.6,1.1-0.9c0.6-0.3,1.4-0.3,1.4-0.3l0,0.5c0,0-0.6-0.1-1.3,0
180
+ C59.1,81.1,58.6,81.5,58.6,81.5z"/>
181
+ </g>
182
+ <g>
183
+ <g>
184
+ <linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="63.6165" y1="78.0758" x2="63.6165" y2="86.1115">
185
+ <stop offset="0" style="stop-color:#F7D7B8"/>
186
+ <stop offset="0.483" style="stop-color:#F8D0B0"/>
187
+ <stop offset="1" style="stop-color:#F7C7A6"/>
188
+ </linearGradient>
189
+ <path class="st25" d="M60.7,84.5l1.8,1.8l-1.4,0.7c0,0,1.8,3.7,2,3.8s3.9-3.7,3.5-5c-0.4-1.3-3.7-2.1-4.9-2.3"/>
190
+ <path class="st24" d="M60.7,84.5c0.4,0.2,0.7,0.4,1.1,0.7c0.3,0.3,0.6,0.6,0.9,0.9l0.2,0.3l-0.3,0.1l0,0l-1.4,0.7l0.1-0.3l0,0
191
+ l0.9,1.8c0.3,0.6,0.6,1.2,1,1.7c-0.4,0.2,0.1-0.1,0.3-0.3c0.2-0.2,0.5-0.5,0.7-0.7c0.4-0.5,0.9-1,1.2-1.5
192
+ c0.2-0.3,0.4-0.5,0.5-0.8c0.2-0.3,0.3-0.6,0.4-0.8c0-0.1,0-0.3,0-0.3c-0.1-0.2-0.1-0.3-0.2-0.4c-0.2-0.2-0.5-0.4-0.7-0.6
193
+ c-0.6-0.3-1.2-0.6-1.8-0.8c-0.3-0.1-0.6-0.2-1-0.3c-0.3-0.1-0.6-0.2-0.9-0.4c0.4-0.2,0.7-0.1,1,0c0.3,0.1,0.7,0.2,1,0.3
194
+ c0.7,0.2,1.3,0.4,1.9,0.8c0.3,0.2,0.6,0.4,0.9,0.6c0.1,0.2,0.3,0.4,0.3,0.5c0.1,0.3,0.1,0.5,0,0.7c-0.1,0.4-0.2,0.7-0.4,1
195
+ c-0.2,0.3-0.4,0.6-0.6,0.9c-0.4,0.6-0.8,1.1-1.3,1.6c-0.2,0.3-0.5,0.5-0.7,0.7c-0.1,0.1-0.2,0.2-0.4,0.4
196
+ c-0.1,0.1-0.3,0.2-0.4,0.2c-0.3,0-0.1,0-0.1,0l0,0l0,0l0,0c0,0-0.1,0-0.1-0.1c-0.1-0.1,0-0.1-0.1-0.1l-0.1-0.1
197
+ c-0.4-0.6-0.6-1.2-0.9-1.8l-0.9-1.8l0,0l-0.1-0.2l0.2-0.1l1.4-0.7l0,0l-0.1,0.4c-0.3-0.3-0.6-0.6-0.9-0.9
198
+ C61.1,85.2,60.9,84.9,60.7,84.5z"/>
199
+ </g>
200
+ <path class="st21" d="M65.7,87.3c-0.7-0.7-1.8-1.2-3-1.2l0.2-0.1c-0.1,0-0.2,0.1-0.3,0.1l0.2,0.2l-0.2,0.1l0,0L61.3,87l0.8,1.6
201
+ l0.5,0.9c0.2,0.3,0.3,0.6,0.5,0.9c0,0,0,0,0,0c0,0,0,0,0,0c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.2,0.5-0.5,0.7-0.7
202
+ c0.4-0.5,0.9-1,1.3-1.5C65.5,87.7,65.6,87.5,65.7,87.3z"/>
203
+ <g>
204
+ <linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="62.3232" y1="85.9077" x2="64.6804" y2="85.9077">
205
+ <stop offset="0" style="stop-color:#F7D7B8"/>
206
+ <stop offset="0.483" style="stop-color:#F8D0B0"/>
207
+ <stop offset="1" style="stop-color:#F7C7A6"/>
208
+ </linearGradient>
209
+ <line class="st26" x1="62.3" y1="86.3" x2="64.7" y2="85.5"/>
210
+ <polygon class="st24" points="62.2,86.1 64.7,85.5 62.4,86.6 "/>
211
+ </g>
212
+ </g>
213
+ </g>
214
+ <g>
215
+
216
+ <linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="504.1351" y1="80.8254" x2="507.986" y2="89.7632" gradientTransform="matrix(-0.8117 0 0 1 439.3701 0)">
217
+ <stop offset="0" style="stop-color:#F7D7B8"/>
218
+ <stop offset="0.483" style="stop-color:#F8D0B0"/>
219
+ <stop offset="1" style="stop-color:#F7C7A6"/>
220
+ </linearGradient>
221
+ <path class="st27" d="M32.6,83.7c-0.4-0.8-3.1-3.9-6.8-1.8c-1.4,0.7-1.1,3.9-1.1,3.9s0,3,4.3,3.5C33.3,89.7,32.8,84.1,32.6,83.7z"
222
+ />
223
+ <path class="st21" d="M27.9,87c1.5-0.1,3.5-2.3,4.4-3.4c0.1,0.1,0.1,0.1,0.1,0.2c0.1,0.2,0.3,2.2-0.4,3.6
224
+ c-0.6,1.2-1.6,1.8-3.1,1.6c-2.4-0.2-3.4-1.3-3.8-2.1C25.7,87,26.6,87.1,27.9,87z"/>
225
+ <path class="st21" d="M28.3,81.4c1.3,0,2.3,0.6,3,1.2c-0.9,1.1-2.8,1.9-2.8,1.9s-1.8-1.8-2.7-1.5l1.5-0.9c0,0-0.1-0.2-0.1-0.5
226
+ C27.6,81.4,28,81.4,28.3,81.4z"/>
227
+ <g>
228
+ <path class="st22" d="M27.4,84c0,0-0.4-0.4-0.8-0.7c-0.2-0.1-0.5-0.2-0.7-0.2c-0.2,0-0.3,0.1-0.3,0.1c0,0,0.1-0.1,0.3-0.1
229
+ c0.2,0,0.5,0.1,0.7,0.2c0.5,0.2,1,0.6,1,0.6L27.4,84z"/>
230
+ </g>
231
+ <g>
232
+
233
+ <linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="505.6081" y1="80.4337" x2="505.6081" y2="88.4695" gradientTransform="matrix(-0.8117 0 0 1 439.3701 0)">
234
+ <stop offset="0" style="stop-color:#F7D7B8"/>
235
+ <stop offset="0.483" style="stop-color:#F8D0B0"/>
236
+ <stop offset="1" style="stop-color:#F7C7A6"/>
237
+ </linearGradient>
238
+ <path class="st28" d="M28.5,86.9c1.1-0.6,2.8-1.2,2.7-3.2c-0.1-1.9-3.5,0.1-4.5,0.9"/>
239
+ <path class="st24" d="M28.5,86.9c0,0,0.1-0.1,0.3-0.2c0.2-0.1,0.5-0.4,0.9-0.6c0.4-0.3,0.7-0.6,1-1.1c0.1-0.2,0.2-0.5,0.2-0.8
240
+ c0-0.1,0-0.3,0-0.4c0-0.1,0-0.3-0.1-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.5,0.2-1,0.4-1.4,0.6
241
+ c-0.8,0.4-1.4,0.7-1.4,0.7s0.4-0.5,1.2-1c0.4-0.2,0.9-0.5,1.4-0.7c0.3-0.1,0.6-0.2,0.9-0.2c0.3,0,0.8,0.1,1,0.5
242
+ c0.1,0.2,0.1,0.3,0.1,0.5c0,0.2,0,0.3,0,0.5c0,0.3-0.2,0.6-0.3,0.9c-0.3,0.6-0.8,0.9-1.2,1.1c-0.4,0.2-0.8,0.4-1,0.5
243
+ C28.6,86.8,28.5,86.9,28.5,86.9z"/>
244
+ </g>
245
+ <g>
246
+ <path class="st22" d="M30.9,83.4c0,0,0-0.1-0.1-0.1c-0.1-0.1-0.2-0.1-0.4-0.1c-0.4,0-0.8,0.2-1.3,0.4c-0.5,0.2-0.9,0.4-1.3,0.5
247
+ c-0.4,0.1-0.6,0.2-0.6,0.2s0.2-0.1,0.5-0.3c0.3-0.2,0.8-0.4,1.3-0.6c0.5-0.2,1-0.3,1.4-0.3c0.2,0,0.4,0.1,0.4,0.2
248
+ C30.9,83.4,30.9,83.5,30.9,83.4z"/>
249
+ </g>
250
+ <g>
251
+ <path class="st24" d="M27.8,83.9c0,0-0.4-0.4-0.9-0.6c-0.5-0.2-1-0.1-1-0.1l0-0.5c0,0,0.7,0,1.2,0.3
252
+ C27.5,83.4,27.8,83.9,27.8,83.9z"/>
253
+ </g>
254
+ <g>
255
+ <g>
256
+
257
+ <linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="512.0732" y1="80.4337" x2="512.0732" y2="88.4695" gradientTransform="matrix(-0.8117 0 0 1 439.3701 0)">
258
+ <stop offset="0" style="stop-color:#F7D7B8"/>
259
+ <stop offset="0.483" style="stop-color:#F8D0B0"/>
260
+ <stop offset="1" style="stop-color:#F7C7A6"/>
261
+ </linearGradient>
262
+ <path class="st29" d="M26.1,86.9l-1.4,1.8l1.1,0.7c0,0-1.5,3.7-1.6,3.8c-0.2,0.1-3.1-3.7-2.8-5c0.3-1.3,3-2.1,4-2.3"/>
263
+ <path class="st24" d="M26.1,86.9c-0.1,0.4-0.3,0.7-0.5,1.1c-0.2,0.3-0.4,0.6-0.7,0.9l-0.1-0.4l0,0l1.1,0.7l0.2,0.1L26,89.4l0,0
264
+ c-0.4,1.2-0.9,2.3-1.4,3.5l-0.1,0.2l-0.1,0.1l-0.1,0.1c0,0-0.1,0.1-0.1,0.1c0,0-0.3,0-0.1,0l0,0l0,0l0,0
265
+ c-0.2-0.1-0.2-0.1-0.3-0.2l-0.1-0.1L23.6,93c-0.2-0.2-0.4-0.5-0.6-0.7c-0.4-0.5-0.7-1-1.1-1.6c-0.3-0.5-0.6-1.1-0.8-1.7
266
+ c-0.1-0.3-0.2-0.7,0-1.1c0.1-0.3,0.4-0.6,0.7-0.8c0.5-0.4,1.1-0.7,1.7-0.9c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,1,0
267
+ c-0.3,0.3-0.5,0.4-0.8,0.5c-0.3,0.1-0.6,0.2-0.8,0.3c-0.6,0.2-1.1,0.5-1.5,0.9c-0.2,0.2-0.4,0.4-0.5,0.6c-0.1,0.2,0,0.4,0,0.7
268
+ c0.2,0.5,0.5,1.1,0.8,1.6c0.3,0.5,0.7,1,1,1.5c0.2,0.2,0.4,0.5,0.6,0.7l0.1,0.2l0.1,0.1c0,0,0.1,0-0.1,0c0,0,0,0,0,0l0,0l0,0
269
+ c0.1,0-0.2,0-0.1,0c0,0-0.1,0.1-0.1,0.1c0,0,0,0,0,0l0-0.1l0.1-0.2c0.5-1.1,1-2.2,1.4-3.4l0,0l0.1,0.3l-1.1-0.7l0,0l-0.2-0.1
270
+ l0.2-0.3c0.2-0.3,0.4-0.6,0.7-0.9C25.4,87.3,25.7,87.1,26.1,86.9z"/>
271
+ </g>
272
+ <path class="st21" d="M22,89.7c0.6-0.7,1.5-1.2,2.4-1.2l-0.2-0.1c0.1,0,0.2,0.1,0.2,0.1l-0.1,0.2l0.2,0.1l0,0l1,0.6L24.9,91
273
+ l-0.4,0.9c-0.1,0.3-0.3,0.6-0.4,0.9c0,0,0,0,0,0c0,0,0,0,0,0c-0.1-0.1-0.2-0.2-0.3-0.3c-0.2-0.2-0.4-0.5-0.6-0.7
274
+ c-0.4-0.5-0.7-1-1-1.5C22.2,90,22.1,89.9,22,89.7z"/>
275
+ <g>
276
+
277
+ <linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="510.7799" y1="88.2657" x2="513.1371" y2="88.2657" gradientTransform="matrix(-0.8117 0 0 1 439.3701 0)">
278
+ <stop offset="0" style="stop-color:#F7D7B8"/>
279
+ <stop offset="0.483" style="stop-color:#F8D0B0"/>
280
+ <stop offset="1" style="stop-color:#F7C7A6"/>
281
+ </linearGradient>
282
+ <line class="st30" x1="24.8" y1="88.7" x2="22.8" y2="87.8"/>
283
+ <polygon class="st24" points="24.7,88.9 22.8,87.8 24.9,88.5 "/>
284
+ </g>
285
+ </g>
286
+ </g>
287
+ <g>
288
+ <path class="st31" d="M22.1,94.6c0-1.7,0.6-5.3,8.4-7s24.9-0.8,24.9-0.8s7.4-2.7,8.2,2.7c0.9,5.4-4,7.3-8,8.1S27,99.9,26.8,99.8
289
+ C26.6,99.6,22.1,100.4,22.1,94.6z"/>
290
+ <path class="st32" d="M62.3,94.2c-0.4-1.7-1.7-3.5-2.3-5.7c-0.3-1.1-0.3-1.7-0.6-2.2c-0.1,0-0.2,0-0.2,0c-1.9,0-3.7,0.6-3.7,0.6
291
+ l0,0l0,0c0,0-4.9-0.3-10.5-0.3c-6.4,0-11.3,0.3-14.3,1c-2.6,0.6-4.6,1.4-5.9,2.5c-1.2,2.8-1.4,5.7-0.7,8.6c1,0.7,2.1,0.8,2.6,0.8
292
+ c0.2,0,0.3,0,0.3,0c0,0,0.1,0,0.1,0c2.2,0,24.9-1.5,28.6-2.2C58.8,96.8,61,95.7,62.3,94.2z"/>
293
+ </g>
294
+ <linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="38.3741" y1="81.5938" x2="42.0823" y2="81.5938">
295
+ <stop offset="0" style="stop-color:#F7D7B8"/>
296
+ <stop offset="0.483" style="stop-color:#F8D0B0"/>
297
+ <stop offset="1" style="stop-color:#F7C7A6"/>
298
+ </linearGradient>
299
+ <circle class="st33" cx="40.2" cy="81.6" r="1.9"/>
300
+ <linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="24.8688" y1="94.799" x2="58.9677" y2="94.799">
301
+ <stop offset="0" style="stop-color:#F7D7B8"/>
302
+ <stop offset="0.483" style="stop-color:#F8D0B0"/>
303
+ <stop offset="1" style="stop-color:#F7C7A6"/>
304
+ </linearGradient>
305
+ <path class="st34" d="M58.8,92.2c1.1,7.3-5.6,14.4-14.9,15.8c-9.4,1.4-17.8-3.4-18.9-10.7c-1.1-7.3,5.6-14.4,14.9-15.8
306
+ C49.3,80.2,57.7,84.9,58.8,92.2z"/>
307
+ <g>
308
+
309
+ <linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="696.2031" y1="797.3051" x2="700.4656" y2="797.3051" gradientTransform="matrix(-1 0 0 -1 757.8086 890.3047)">
310
+ <stop offset="0" style="stop-color:#F7D7B8"/>
311
+ <stop offset="0.483" style="stop-color:#F8D0B0"/>
312
+ <stop offset="1" style="stop-color:#F7C7A6"/>
313
+ </linearGradient>
314
+ <path class="st35" d="M58.1,94.8c0,0,3.8-0.5,3.5-2.5s-4.1-0.8-4.2-0.7S58.1,94.8,58.1,94.8z"/>
315
+ <path class="st21" d="M58.2,94.6c0.4-0.1,1.3-0.3,2.1-0.7c0.1-0.8-0.1-1.7-0.3-2.5c-0.1,0-0.1,0-0.2,0h0c-0.9,0-1.9,0.3-2.2,0.4
316
+ C57.6,92.1,57.9,93.4,58.2,94.6z"/>
317
+ </g>
318
+ <g id="layer1_1_" transform="translate(-8.9025329,-24.385462)">
319
+ <path id="path1309_1_" class="st36" d="M47.6,136.1c-4.7-0.2-9.6-1.1-13.1-2.2c-3.5-1.1-12.6-3.8-14.7-4.7c-2.1-0.9-4.4-1-5.5-2.4
320
+ c-0.5-0.5,2.3-2.6,2.8-2.8c1.4-0.7,4-0.2,5.1-0.3c3.6-0.3,7.4-0.5,10.9-2.6c-0.7-0.3,0.4,0-1.5-3.6c-0.7-1.3-2.2-4.6-1-5.4
321
+ c1.2-0.8,2.4,1.6,3.6,1.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0
322
+ c0.6,0,5.6,0.7,9.9-0.4c2.4-0.6,6.5-0.3,8.8-0.2c3.7,0.2,8.8,0.2,12-0.2c2.4-0.3,4.6,0.3,6.9,0.1c1.3-0.1,0.5,2.8,0.5,3
323
+ c0.1,1.4-2.4,3.9-3.5,5.9s-3.2,4.8-5.5,7c-2.3,2.2-5.5,5.1-7.9,6.2C53.1,135.6,52.7,136.3,47.6,136.1z"/>
324
+ <path id="path5882_1_" class="st37" d="M35.8,130.9c-3-0.1-6.4-5.7-10.1-6.2c-2.5-0.4-9.1-0.5-8.6-0.8c1.4-0.7,4-0.2,5.1-0.3
325
+ c3.6-0.3,7.4-0.5,10.9-2.6c-0.7-0.3,0.4,0-1.5-3.6c-0.7-1.3-2.2-4.6-1-5.4c1.2-0.8,2.4,1.6,3.6,1.1c0,0,0,0,0,0c0,0,0,0,0,0
326
+ c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0.6,0,5.6,0.7,9.9-0.4c2.4-0.6,6.5-0.3,8.8-0.2
327
+ c3.7,0.2,8.8,0.2,12-0.2c2.4-0.3,4.6,0.3,6.9,0.1c1.3-0.1-8.4,0.6-4.3,1.9c1.8,0.5-17.3,0.7-23.8,6.8
328
+ C37.3,127.1,38.9,131,35.8,130.9z"/>
329
+ <path id="path5878_1_" class="st38" d="M14.7,127.4c0.5-0.3,4-3.9,4.5-3.8c0.1,0.3-0.3,0.5-0.6,0.6c0.5,0.3,0.6,0.6-0.1,0.8
330
+ c-0.8,0.2-1.7,0.4-0.7,0.8c0.4,0.3,0.1,0.9-0.1,1.2c-0.6,0.3-1.1,0.8-1.3,1.1"/>
331
+ <path id="path5003_1_" class="st39" d="M66.4,113.7c-1.2,0.4-2.7,0.9-3.7,1c-0.7,0.5-1.3,0.1-2,0c0,0.8-1.9-0.1-2.7,0
332
+ c-0.6-0.1-0.1,0.6-1.1,0.4c-1.2,0.1-2,0.1-2.9,0c-0.3-0.8-2.4-1-2.5-0.1c-1.1-0.2-3.2-0.5-3.1,0.5c-1.8-0.6-2-1.4-3.7-1.5
333
+ c0.2,0.7-3.5,1.6-4.1,0.9c-1.1-0.1,0.3,0.9-1.2,0.8c-1.6,0.5-1-1.7-4.3-0.4c-1.9,0.3-1.1-1.6-2.4-2.2c-0.4-0.7-1.8,0.5-2.4,0.5
334
+ c0-1.2,0.4-0.9-0.1-1.7c-0.4-1-0.8-1.5,1-1.9c0.7,0.4,0,0.3,0-0.7c1.1,0.1,2.6,1,2.3-0.1c0.8,0.6,3.1,0.6,3.2,1.4
335
+ c1.1-0.2,2.3-1.2,3.4-0.4c1.1,0.6,2.5,0.7,2.4,0.2c1.1-0.8,1.2-0.7,2.5-0.7c-0.2,0.9,2.9-0.3,1.3,0.8c0.7,0.3,2.6,0.3,3.6,0.1
336
+ c0.8-1,3.6-1.4,4.2-0.4c0.2,0.8,2.4,0.9,3.1,0.2c1.5,0.6,3.5-0.8,4.8-0.4c-1,1,1.7,1.2,2.1,0.5c1,0.2,2,1.2,3,0.3
337
+ c1.2,0.1,2.7,0.2,3.8,0.4c0.7-0.9,2.7-0.3,2,0.7c-0.4,0.7,1.5-0.5,1,0.4c-0.5,1-1.2,2.4-2.2,2.5c-1.4,0.4-2.3-0.1-2.5-0.9
338
+ c0.1,0.6-1.7,0.2-2.6,0.1l-0.5,0l-0.5,0.3"/>
339
+ <path id="path1307_1_" class="st40" d="M67.2,113.4c-1.2,0.4-2.3,0.6-3.4,0.7c-0.7,0.5-1.6,0.5-2.2,0.4c0,0.8-1.7-0.5-2.4-0.4
340
+ c-0.6-0.1-0.1,0.6-1.1,0.4c-1.2,0.1-2.6,0.8-3.5,0.6c-0.3-0.8-2.4-1-2.5-0.1c-1.1-0.2-2.6-1.1-2.5-0.1c-2,0.3-3-0.8-4.8-1
341
+ c0.2,0.7-2.4,1-3.1,0.4c-1.1-0.1-0.1,1.4-1.6,1.3c-1.6,0.5-1.9-1.6-3.8-0.9c-1.9,0.3-1.8-0.9-3.2-1.5c-0.4-0.7-1-0.1-1.6-0.1
342
+ c0.9-1-3.1-0.3-2.1-1.8c-0.4-1-0.1-1.8,1.7-2.3c0.7,0.4,1.3,0.8,1.3-0.2c1.1,0.1,2.6,1,2.3-0.1c0.8,0.6,3.1,0.6,3.2,1.4
343
+ c1.1-0.2,2.3-1.2,3.4-0.4c1.1,0.6,1.1,0,1.1-0.6c1.1-0.8,2.6,0,3.8,0c-0.2,0.9,2.9-0.3,1.3,0.8c0.7,0.3,2.6,0.3,3.6,0.1
344
+ c0.8-0.7,3.6-1.4,4.2-0.4c0.2,0.8,2.4,0.9,3.1,0.2c1.5,0.6,3.5-0.8,4.8-0.4c-1,1,1.7,1.2,2.1,0.5c1,0.2,2,1.2,3,0.3
345
+ c1.2,0.1,6.5,0,5.8,1.1c-0.4,0.7,1.5-0.5,1,0.4c0.1,1-0.2,2.6-2.2,2.5c-1.4,0.4-2.3-0.1-2.5-0.9c0.1,0.6-2.2,0.7-3.1,0.6l-0.3-0.1
346
+ l-0.2-0.1"/>
347
+ <path id="path3126_1_" class="st41" d="M32.4,119.2c1.1,4.1,4.7,5.6,4.5,9c-0.1,2-3.1,0.9-2.4-1.1"/>
348
+ <path id="path3249_1_" class="st42" d="M33,113.3c-0.4-0.7-1-0.1-1.6-0.1c0.9-1-3.1-0.3-2.1-1.8c-0.4-1-0.1-1.8,1.7-2.3
349
+ c0.7,0.4,1.3,0.8,1.3-0.2c1.1,0.1,2.6,1,2.3-0.1c0.8,0.6,3.1,0.6,3.2,1.4c1.1-0.2,2.3-1.1,3.4-0.2c1.1,0.6,1.2-0.2,1.1-0.7
350
+ c1.1-0.8,2.6,0,3.8,0c-0.2,0.9,1.5,0,1.3,0.8c-0.1,0.5,5.5-0.4,4.8,0.3c-2.2,1.8-6.3,0.1-6.8,0.3c-0.5,0.2-1.1,0.2-0.4,0.3
351
+ c0.8,0.1-1.1,0-2.6,0.6c-1.5,0.6-2.7,0.3-2.9-0.6c-1.1,0.6-1.3,0.1-3.1,0c1.3,0.9-2,0.6-2,0.6s0.7,1.1-0.3,1.1
352
+ c0.6,0.5,0,0.8,0,0.8S34.4,113.8,33,113.3z"/>
353
+ <path id="path2251_1_" class="st43" d="M15.6,128.1c-0.2,0.3-0.8,0.4-0.9,0.6c0.2,0.2-0.4,0.1-0.5,0.3c-0.7-0.3-1.7-0.3-2.3-0.7
354
+ c0.3,0,0.3,0.2,0,0.1c-0.6-0.1-1.2-0.3-1-0.8c0-0.2-0.4-0.4,0.1-0.5c-0.1-0.3-1-0.2-1-0.5c0.1-0.4,0-0.7-0.5-0.9
355
+ c-0.5-0.2-0.3-0.6-0.4-0.9c-0.3-0.2-0.4-0.4-0.1-0.6c0-0.4,0.5-0.7,0.4-1.1c0.2-0.2,0.6-0.3,0.8-0.5c0.6-0.1,0.6-0.6,1.1-0.8
356
+ c0.5-0.2,1.1-0.2,1.5-0.3c0.3-0.2,0.7-0.4,1.2-0.5c0.5-0.3,0.8,0.2,1.2,0.4c0.1,0.3,0.4,0.3,0.6,0c0.5-0.3,1,0,1.4,0.2
357
+ c0.4,0.2,0.8,0.4,1.2,0.5c0.6,0.3,0.9,0.9,0.9,1.4c0.1,0.3-0.4,0.4-0.7,0.5c0.2,0.3,0.6,0.6-0.1,0.7c-0.4,0.1-1.3,0.6-0.7,0.8
358
+ c0.4,0.2-0.1,0.7-0.3,1c-0.4,0.3-0.6,0.6-0.8,0.9C16.2,127.5,15.7,127.7,15.6,128.1C15.6,128.4,15.6,128.2,15.6,128.1"/>
359
+ <path id="path4128_1_" class="st44" d="M10.8,125.1c-0.2,0.2,0.8,0,0.7,0.2c0.2,0.2,0,0.2-0.1,0.4c-0.7-0.3-0.5,0.6-1,0.1
360
+ c0.3,0,0.3,0.6,0,0.5c-0.6-0.1-0.4,0.7-0.4,0.3c0.1-0.4,0-0.7-0.5-0.9c-0.5-0.2-0.3-0.6-0.4-0.9c-0.3-0.2-0.4-0.4-0.1-0.6
361
+ c0-0.4,0.5-0.7,0.4-1.1c0.2-0.2,0.6-0.3,0.8-0.5c0.6-0.1,0.6-0.6,1.1-0.8c0.5-0.2,1.1-0.2,1.5-0.3c0.3-0.2,0.7-0.4,1.2-0.5
362
+ c0.5-0.3,0.8,0.2,1.2,0.4c0.1,0.3,0.4,0.3,0.6,0c0.5-0.3,1,0,1.4,0.2c0.4,0.2-1.4,0.1-0.9,0.3c0.6,0.3-1.3-0.4-1.3,0.1
363
+ c0.1,0.3-2.1-0.1-1.6,0.4c0.2,0.3,0.3,0-0.5,0.2c-0.4,0.1-1.5,0.8-0.9,1c0.4,0.2-0.2,0-0.4,0.3c-0.4,0.3-0.1,0.1-0.4,0.4
364
+ c-0.5,0.1-0.3,0.2-0.4,0.6C10.6,124.4,10.8,125.2,10.8,125.1z"/>
365
+ <path id="path5880_1_" class="st45" d="M33,121c0,0,2.6,3.1,3.3,4.4c0.7,1.2,0.8,3.2,0.2,3.6c-0.7,0.5-1.7,0-1.9-0.8
366
+ c-0.2-0.7-0.3-0.9,0-2.4c0.1-0.7-0.2-2.2-0.6-2.9C33.6,122.4,32.7,120.9,33,121z"/>
367
+ </g>
368
+ <g>
369
+ <g>
370
+ <path class="st46" d="M33.1,84.9c0.7-0.7,1.6-0.1,2.3-0.7c0.1-0.1,0.2-0.2,0.3-0.3c0.2-0.2,0.2-0.1,0.5-0.2
371
+ c0.4-0.1,0.6-0.4,0.9-0.6c0.6-0.4,0.2-1.3-0.5-1.2c-0.8,0.2-1.6,0.4-2.4,0.4c-0.8,0.1-0.8,1.3,0,1.3c0.9-0.1,1.9-0.2,2.8-0.5
372
+ c-0.2-0.4-0.3-0.8-0.5-1.2c-0.2,0.1-0.3,0.3-0.5,0.4c-0.1,0.1-0.2,0-0.4,0.1c-0.4,0.1-0.5,0.5-0.8,0.6c-0.3,0.2-0.8,0-1.2,0.1
373
+ c-0.5,0.1-0.9,0.4-1.3,0.8C31.6,84.6,32.5,85.5,33.1,84.9L33.1,84.9z"/>
374
+ </g>
375
+ </g>
376
+ <g>
377
+ <g>
378
+ <path class="st46" d="M46.3,82.3c0.7,0.6,1.1,0.5,1.9,0.7c0.5,0.1,0.5,0.4,0.8,0.6c0.2,0.1,0.5,0.1,0.8,0.2
379
+ c0.5,0.1,0.9,0.5,1.4,0.7c0.7,0.3,1.4,0.7,2.1,1c0.8,0.3,1.1-0.9,0.3-1.2c-0.6-0.2-1.1-0.6-1.7-0.8c-0.3-0.1-0.5-0.2-0.8-0.3
380
+ c-0.2-0.1-0.3-0.3-0.5-0.4c-0.2-0.1-0.3-0.1-0.4-0.1c-0.4-0.1-0.6-0.2-0.9-0.4c-0.6-0.4-1.7-0.3-2.2-0.7
381
+ C46.6,80.8,45.7,81.7,46.3,82.3L46.3,82.3z"/>
382
+ </g>
383
+ </g>
384
+ <g>
385
+ <g>
386
+ <path class="st46" d="M36.7,82.7c0.4-0.3,0.8-0.4,1.2-0.3c0.8,0.2,1.1-1.1,0.3-1.2c-0.8-0.2-1.5,0-2.2,0.4
387
+ C35.4,82.1,36,83.1,36.7,82.7L36.7,82.7z"/>
388
+ </g>
389
+ </g>
390
+ <g>
391
+ <g>
392
+ <path class="st46" d="M42.3,81.6c1.2-0.4,2.9-0.2,3.9,0.6c0.6,0.5,1.5-0.4,0.9-0.9c-1.4-1.1-3.5-1.5-5.1-0.9
393
+ C41.2,80.7,41.6,81.9,42.3,81.6L42.3,81.6z"/>
394
+ </g>
395
+ </g>
396
+ </g>
397
+ <path class="st47" d="M40.2,66h-0.3c-1,0-1.9-0.8-1.9-1.9v0c0-1,0.8-1.9,1.9-1.9h0.3c1,0,1.9,0.8,1.9,1.9v0
398
+ C42.1,65.2,41.2,66,40.2,66z"/>
399
+ <ellipse class="st47" cx="41.1" cy="18" rx="8.9" ry="12"/>
400
+ <path class="st48" d="M36.3,26.7c0.9,0.4,1.8,0.7,2.7,1c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0.3,0.1,0.7,0.2,1,0.3
401
+ c0.4,0.2,0.9,0.2,1.4,0.2c0.9,0,1.8-0.3,2.6-0.9c0.1,0,0.1-0.1,0.2-0.1c0.1,0.2,0,0.3-0.1,0.4c-0.3,0.3-0.6,0.7-0.9,1.1
402
+ c-0.1,0.1-0.1,0.5,0,0.6c0.1,0.1,0.4,0.2,0.5,0.1c0.2-0.2,0.4-0.4,0.4-0.8c-0.2,0.2-0.3,0.3-0.4,0.4c0,0-0.1,0.2-0.1,0.1
403
+ c-0.1-0.1,0-0.1,0.1-0.2c0.1-0.2,0.2-0.3,0.1-0.6c0-0.2,0-0.2,0.1-0.1c0.1,0.1,0.2,0,0.2,0c0.4-0.3,0.6-0.7,0.8-1.2
404
+ c0.1-0.2,0.1-0.5,0.2-0.8c0.1-0.1,0.2-0.2,0.3-0.2c0.2-0.1,0.4-0.1,0.6-0.2c0.2-0.1,0.4-0.2,0.4-0.5c0.1-0.3,0.1-0.7,0.4-0.9
405
+ c0.1-0.1,0.2-0.3,0-0.4c0,0,0-0.1,0.1-0.1c0,0,0,0,0,0c0,0.6-0.2,1.1-0.4,1.7c-0.1,0.2-0.2,0.3-0.3,0.3c-0.1,0-0.2,0.1-0.2,0.3
406
+ c0.1,0.7,0.1,1.4,0.3,2c0.1,0.4,0.2,0.8,0.4,1.2c-0.4-0.1-0.9-0.1-1.3-0.2c-0.1,0-0.2-0.1-0.2,0c-0.1-0.2-0.2,0-0.2,0.1
407
+ c-0.2,0.3-0.4,0.6-0.6,0.9c-0.2,0.3-0.5,0.5-0.7,0.6c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0-0.2,0.1-0.4,0.2c-0.5,0.3-1,0.6-1.5,0.9
408
+ c-0.4,0.2-0.8,0.2-1.3,0.2c-0.1,0-0.2,0-0.3,0c0,0-0.1,0-0.1,0c-0.1-0.2-0.2-0.1-0.3-0.1c-0.1,0-0.1,0-0.2,0
409
+ c-0.2-0.1-0.4-0.1-0.5-0.1c0,0,0,0-0.1,0c-0.1-0.1-0.3,0-0.4-0.1c-0.3-0.1-0.6-0.2-0.9-0.4c0,0,0,0,0,0c-0.4-0.3-0.8-0.5-1.2-0.7
410
+ c-0.8-0.4-1.4-1-2-1.7c-0.2-0.3-0.3-0.5-0.5-0.8c0.1-0.5,0.4-1,0.7-1.4c0.2-0.3,0.2-0.7,0.3-1.1c0-0.1,0-0.1-0.1-0.2
411
+ c-0.2-0.1-0.3-0.3-0.4-0.5c-0.6-0.9-1.1-1.9-1.5-2.9c0,0,0.1,0,0.1,0c0.1,0.1,0.1,0.2,0.2,0.3c0.3,0.4,0.5,1,0.7,1.4
412
+ c0.1,0.3,0.3,0.5,0.5,0.7c0.2,0.2,0.3,0.4,0.5,0.6c0.2,0.1,0.2,0.5,0.4,0.5c0,0,0,0,0,0c0,0.1,0,0.1,0.1,0.1c0,0.1,0.1,0.2,0.2,0.2
413
+ C35.7,26.4,36,26.6,36.3,26.7z M42.5,30c0.2,0,0.6-0.5,0.6-0.7c0-0.1-0.1-0.1-0.1-0.1c-0.2,0.2-0.4,0.3-0.6,0.5c0,0.1-0.1,0.1,0,0.2
414
+ C42.4,30,42.5,30,42.5,30z"/>
415
+ <g>
416
+ <path class="st49" d="M47.5,15.7c0.8-0.1,1.5-0.7,1.9-1.4c0.4-0.7,0.7-1.5,1.2-2.1c0.3-0.3,0.7-0.7,1.1-0.6c0.2,0,0.4,0.2,0.6,0.4
417
+ c0.3,0.4,0.6,0.8,0.7,1.3c0.6-0.2,1-0.6,1.6-0.7c0.6-0.2,1.4,0.2,1.3,0.8c-0.1,0.8-1.4,0.8-1.7,1.5c0.4,0.3,1,0.5,1.6,0.5
418
+ c0.2,0,0.3,0,0.4,0.1c0,0.1,0,0.2,0,0.2c-0.2,1-1.1,1.9-2.1,2.1c-0.9,0.2-1.8-0.1-2.6-0.5c-0.5-0.2-0.9-0.5-1.4-0.6
419
+ c-1.2-0.3-2.5,0.2-3.7,0.7"/>
420
+ </g>
421
+ <g>
422
+ <path class="st49" d="M33.6,16.6c-0.8-0.2-1.3-1-1.5-1.8c-0.3-0.8-0.3-1.6-0.7-2.3c-0.2-0.4-0.5-0.8-0.9-0.8
423
+ c-0.2,0-0.5,0.1-0.6,0.2c-0.4,0.3-0.8,0.6-1,1.1c-0.5-0.3-0.9-0.8-1.4-1.1s-1.4-0.2-1.5,0.4c-0.1,0.8,1.1,1.1,1.3,1.9
424
+ c-0.5,0.2-1.1,0.2-1.6,0.1c-0.1,0-0.3-0.1-0.4,0c-0.1,0.1-0.1,0.1-0.1,0.2c0,1,0.6,2.1,1.6,2.5c0.8,0.4,1.7,0.3,2.6,0.1
425
+ c0.5-0.1,1-0.2,1.5-0.3c1.3,0,2.4,0.8,3.4,1.6"/>
426
+ </g>
427
+ <circle class="st48" cx="41.1" cy="4.5" r="3.1"/>
428
+ <g>
429
+ <ellipse class="st46" cx="36.8" cy="12.3" rx="1.2" ry="1.8"/>
430
+ <ellipse cx="37" cy="11.7" rx="0.6" ry="0.8"/>
431
+ </g>
432
+ <g>
433
+ <ellipse class="st46" cx="45.2" cy="12.3" rx="1.2" ry="1.8"/>
434
+ <ellipse cx="45.5" cy="11.7" rx="0.6" ry="0.8"/>
435
+ </g>
436
+ </svg>