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.
- example_project/rapid_router_test_settings.py +164 -0
- example_project/settings.py +152 -0
- example_project/urls.py +15 -0
- example_project/{example_project/wsgi.py → wsgi.py} +2 -1
- game/__init__.py +1 -1
- game/admin.py +43 -4
- game/app_settings.py +3 -7
- game/character.py +26 -18
- game/decor.py +172 -97
- game/end_to_end_tests/base_game_test.py +44 -33
- game/end_to_end_tests/editor_page.py +17 -2
- game/end_to_end_tests/game_page.py +127 -45
- game/end_to_end_tests/selenium_test_case.py +1 -20
- game/end_to_end_tests/test_cow_crashes.py +3 -5
- game/end_to_end_tests/test_language_dropdown.py +14 -0
- game/end_to_end_tests/test_level_editor.py +290 -0
- game/end_to_end_tests/test_level_failures.py +1 -1
- game/end_to_end_tests/test_level_selection.py +79 -0
- game/end_to_end_tests/test_play_through.py +240 -102
- game/end_to_end_tests/test_python_levels.py +44 -13
- game/end_to_end_tests/test_saving_workspace.py +22 -0
- game/forms.py +9 -2
- game/level_management.py +38 -29
- game/messages.py +1218 -203
- game/migrations/0001_squashed_0025_levels_ordering_pt1.py +19 -1
- game/migrations/0026_levels_pt2.py +13 -2
- game/migrations/0032_cannot_turn_left_level.py +13 -2
- game/migrations/0033_recursion_level.py +13 -2
- game/migrations/0034_joes_level.py +13 -2
- game/migrations/0035_disable_route_score_level_70.py +0 -2
- game/migrations/0036_level_score_73.py +0 -2
- game/migrations/0037_level_score_79.py +0 -2
- game/migrations/0038_level_score_40.py +0 -1
- game/migrations/0042_level_score_73.py +0 -2
- game/migrations/0048_add_cow_field_and_blocks.py +0 -2
- game/migrations/0049_level_score_34.py +0 -2
- game/migrations/0050_level_score_40.py +0 -2
- game/migrations/0051_level_score_49.py +0 -1
- game/migrations/0076_level_locked_for_class.py +19 -0
- game/migrations/0077_alter_level_next_level.py +52 -0
- game/migrations/0078_add_block_types.py +23 -0
- game/migrations/0079_populate_block_type_add_cow_blocks.py +60 -0
- game/migrations/0080_level_disable_algorithm_score.py +18 -0
- game/migrations/0081_first_12_levels_no_algo_score.py +29 -0
- game/migrations/0082_level_43_solution.py +16 -0
- game/migrations/0083_add_cows_to_existing_levels.py +195 -0
- game/migrations/0084_alter_block_block_type.py +18 -0
- game/migrations/0085_add_new_blocks.py +53 -0
- game/migrations/0086_loop_levels.py +482 -0
- game/migrations/0087_workspace_python_view_enabled.py +18 -0
- game/migrations/0088_rename_episodes.py +35 -0
- game/migrations/0089_episodes_in_development.py +30 -0
- game/migrations/0090_add_missing_model_solutions.py +144 -0
- game/migrations/0091_disable_algo_score_if_no_model_solution.py +46 -0
- game/migrations/0092_disable_algo_score_in_custom_levels.py +28 -0
- game/migrations/0093_alter_level_character_name.py +18 -0
- game/migrations/0094_add_hint_lesson_subtitle_to_levels.py +28 -0
- game/migrations/0095_level_commands.py +18 -0
- game/migrations/0096_alter_level_commands.py +18 -0
- game/migrations/0097_add_python_den_levels.py +1515 -0
- game/migrations/0098_add_episode_link_fields.py +44 -0
- game/migrations/0099_python_episodes_links.py +103 -0
- game/migrations/0100_reorder_python_levels.py +179 -0
- game/migrations/0101_rename_episodes.py +45 -0
- game/migrations/0102_reoder_episodes_13_14.py +136 -0
- game/migrations/0103_level_1015_solution.py +26 -0
- game/migrations/0104_remove_level_direct_drive.py +17 -0
- game/migrations/0105_delete_invalid_attempts.py +18 -0
- game/migrations/0106_fields_to_snake_case.py +48 -0
- game/migrations/0107_rename_worksheet_link_episode_student_worksheet_link.py +18 -0
- game/migrations/0108_episode_indy_worksheet_link.py +18 -0
- game/migrations/0109_create_episodes_23_and_24.py +99 -0
- game/migrations/0110_remove_episode_indy_worksheet_link_and_more.py +100 -0
- game/migrations/0111_create_worksheets.py +149 -0
- game/migrations/0112_worksheet_locked_classes.py +21 -0
- game/migrations/0113_level_needs_approval.py +18 -0
- game/migrations/0114_default_and_non_student_levels_no_approval.py +31 -0
- game/migrations/0115_level_level__default_does_not_need_approval.py +22 -0
- game/migrations/0116_update_worksheet_video_links.py +68 -0
- game/migrations/0117_update_solutions_to_if_else.py +61 -0
- game/models.py +157 -16
- game/permissions.py +34 -19
- game/python_den_urls.py +26 -0
- game/random_road.py +43 -127
- game/serializers.py +12 -17
- game/static/django_reverse_js/js/reverse.js +171 -0
- game/static/game/css/LilitaOne-Regular.ttf +0 -0
- game/static/game/css/backgrounds.css +14 -10
- game/static/game/css/dataTables.custom.css +4 -2
- game/static/game/css/dataTables.jqueryui.css +561 -320
- game/static/game/css/editor.css +47 -0
- game/static/game/css/game.css +43 -49
- game/static/game/css/game_screen.css +116 -53
- game/static/game/css/jquery.dataTables.css +455 -251
- game/static/game/css/level_editor.css +10 -1
- game/static/game/css/level_selection.css +32 -3
- game/static/game/css/level_share.css +6 -5
- game/static/game/css/skulpt/codemirror.css +1 -0
- game/static/game/image/Python_Den_hero_student.png +0 -0
- game/static/game/image/Python_levels_page.svg +1954 -0
- game/static/game/image/characters/front_view/Electric_van.svg +448 -0
- game/static/game/image/characters/top_view/Electric_van.svg +448 -0
- game/static/game/image/characters/top_view/Sleigh.svg +436 -0
- game/static/game/image/decor/city/solar_panel.svg +1200 -0
- game/static/game/image/decor/farm/solar_panel.svg +86 -0
- game/static/game/image/decor/grass/solar_panel.svg +86 -0
- game/static/game/image/decor/snow/barn.svg +1788 -0
- game/static/game/image/decor/snow/cfc.svg +1050 -147
- game/static/game/image/decor/snow/crops.svg +7370 -0
- game/static/game/image/decor/snow/hospital.svg +1220 -0
- game/static/game/image/decor/snow/house1.svg +971 -0
- game/static/game/image/decor/snow/house2.svg +1574 -0
- game/static/game/image/decor/snow/school.svg +1071 -0
- game/static/game/image/decor/snow/shop.svg +3211 -0
- game/static/game/image/decor/snow/solar_panel.svg +173 -0
- game/static/game/image/electric_van.svg +448 -0
- game/static/game/image/icons/add_house.svg +26 -0
- game/static/game/image/icons/delete_house.svg +26 -0
- game/static/game/image/icons/description.svg +1 -0
- game/static/game/image/icons/hint.svg +1 -0
- game/static/game/image/icons/if_else.svg +3 -0
- game/static/game/image/icons/python.svg +1 -1
- game/static/game/image/if_else_example.png +0 -0
- game/static/game/image/pigeon.svg +684 -0
- game/static/game/image/python_den_header.svg +19 -0
- game/static/game/js/animation.js +84 -28
- game/static/game/js/blockly/msg/js/bg.js +52 -1
- game/static/game/js/blockly/msg/js/ca.js +52 -1
- game/static/game/js/blockly/msg/js/en-gb.js +52 -1
- game/static/game/js/blockly/msg/js/en.js +52 -1
- game/static/game/js/blockly/msg/js/es.js +52 -1
- game/static/game/js/blockly/msg/js/fr.js +52 -1
- game/static/game/js/blockly/msg/js/hi.js +52 -1
- game/static/game/js/blockly/msg/js/it.js +52 -1
- game/static/game/js/blockly/msg/js/pl.js +52 -1
- game/static/game/js/blockly/msg/js/pt-br.js +52 -1
- game/static/game/js/blockly/msg/js/ru.js +52 -1
- game/static/game/js/blockly/msg/js/ur.js +52 -1
- game/static/game/js/blocklyCompiler.js +550 -392
- game/static/game/js/blocklyControl.js +335 -302
- game/static/game/js/blocklyCustomBlocks.js +691 -458
- game/static/game/js/blocklyCustomisations.js +3 -1
- game/static/game/js/button.js +12 -0
- game/static/game/js/cow.js +15 -130
- game/static/game/js/drawing.js +313 -201
- game/static/game/js/editor.js +23 -0
- game/static/game/js/game.js +148 -139
- game/static/game/js/jquery.dataTables.min.js +3 -159
- game/static/game/js/level_editor.js +823 -448
- game/static/game/js/level_moderation.js +33 -2
- game/static/game/js/level_selection.js +62 -25
- game/static/game/js/loadLanguages.js +21 -0
- game/static/game/js/map.js +106 -36
- game/static/game/js/model.js +55 -107
- game/static/game/js/pathFinder.js +73 -72
- game/static/game/js/program.js +184 -193
- game/static/game/js/pythonControl.js +14 -1
- game/static/game/js/scoreboard.js +0 -37
- game/static/game/js/scoreboardSharedLevels.js +48 -0
- game/static/game/js/sharing.js +22 -10
- game/static/game/js/skulpt/codemirror.js +5 -4
- game/static/game/js/skulpt/skulpt-stdlib.js +1 -1
- game/static/game/js/sound.js +52 -5
- game/static/game/js/van.js +0 -7
- game/static/game/raphael_image/characters/top_view/Electric_van.svg +448 -0
- game/static/game/raphael_image/characters/top_view/Sleigh.svg +436 -0
- game/static/game/raphael_image/decor/city/solar_panel.svg +1200 -0
- game/static/game/raphael_image/decor/farm/solar_panel.svg +86 -0
- game/static/game/raphael_image/decor/grass/solar_panel.svg +86 -0
- game/static/game/raphael_image/decor/snow/barn.svg +1788 -0
- game/static/game/raphael_image/decor/snow/cfc.svg +1050 -147
- game/static/game/raphael_image/decor/snow/crops.svg +7370 -0
- game/static/game/raphael_image/decor/snow/hospital.svg +1220 -0
- game/static/game/raphael_image/decor/snow/house1.svg +971 -0
- game/static/game/raphael_image/decor/snow/house2.svg +1574 -0
- game/static/game/raphael_image/decor/snow/school.svg +1071 -0
- game/static/game/raphael_image/decor/snow/shop.svg +3211 -0
- game/static/game/raphael_image/decor/snow/solar_panel.svg +173 -0
- game/static/game/raphael_image/pigeon.svg +685 -0
- game/static/game/raphael_image/sleigh_wreckage.svg +430 -0
- game/static/game/sass/game.scss +22 -6
- game/static/game/sound/clown_horn.mp3 +0 -0
- game/static/game/sound/clown_horn.ogg +0 -0
- game/static/game/sound/electric_van_starting.mp3 +0 -0
- game/static/game/sound/electric_van_starting.ogg +0 -0
- game/static/game/sound/pigeon.mp3 +0 -0
- game/static/game/sound/pigeon.ogg +0 -0
- game/static/game/sound/sleigh_bells.mp3 +0 -0
- game/static/game/sound/sleigh_bells.ogg +0 -0
- game/static/game/sound/sleigh_crash.mp3 +0 -0
- game/static/game/sound/sleigh_crash.ogg +0 -0
- game/templates/game/base.html +35 -15
- game/templates/game/basenonav.html +23 -17
- game/templates/game/game.html +236 -111
- game/templates/game/level_editor.html +353 -275
- game/templates/game/level_moderation.html +19 -6
- game/templates/game/level_selection.html +75 -62
- game/templates/game/python_den_level_selection.html +291 -0
- game/templates/game/python_den_worksheet.html +101 -0
- game/templates/game/scoreboard.html +88 -65
- game/tests/test_level_editor.py +210 -35
- game/tests/test_level_moderation.py +6 -20
- game/tests/test_level_selection.py +332 -11
- game/tests/test_python_den_worksheet.py +85 -0
- game/tests/test_scoreboard.py +258 -66
- game/tests/utils/level.py +43 -3
- game/tests/utils/teacher.py +2 -2
- game/theme.py +21 -21
- game/urls.py +125 -78
- game/views/language_code_conversions.py +90 -0
- game/views/level.py +201 -63
- game/views/level_editor.py +109 -48
- game/views/level_moderation.py +29 -6
- game/views/level_selection.py +179 -56
- game/views/level_solutions.py +600 -106
- game/views/scoreboard.py +181 -66
- game/views/worksheet.py +25 -0
- rapid_router-7.6.8.dist-info/METADATA +174 -0
- {rapid_router-5.4.1.dist-info → rapid_router-7.6.8.dist-info}/RECORD +222 -242
- {rapid_router-5.4.1.dist-info → rapid_router-7.6.8.dist-info}/WHEEL +1 -1
- rapid_router-7.6.8.dist-info/licenses/LICENSE.md +3 -0
- example_project/example_project/__init__.py +0 -1
- example_project/example_project/settings.py +0 -54
- example_project/example_project/urls.py +0 -16
- example_project/manage.py +0 -10
- game/autoconfig.py +0 -59
- game/csp_config.py +0 -23
- game/locale/ar_SA/LC_MESSAGES/django.mo +0 -0
- game/locale/ar_SA/LC_MESSAGES/django.po +0 -405
- game/locale/ar_SA/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/ar_SA/LC_MESSAGES/djangojs.po +0 -743
- game/locale/bg_BG/LC_MESSAGES/django.mo +0 -0
- game/locale/bg_BG/LC_MESSAGES/django.po +0 -405
- game/locale/bg_BG/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/bg_BG/LC_MESSAGES/djangojs.po +0 -739
- game/locale/ca_ES/LC_MESSAGES/django.mo +0 -0
- game/locale/ca_ES/LC_MESSAGES/django.po +0 -405
- game/locale/ca_ES/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/ca_ES/LC_MESSAGES/djangojs.po +0 -740
- game/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- game/locale/cs_CZ/LC_MESSAGES/django.po +0 -405
- game/locale/cs_CZ/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/cs_CZ/LC_MESSAGES/djangojs.po +0 -741
- game/locale/cy_GB/LC_MESSAGES/django.mo +0 -0
- game/locale/cy_GB/LC_MESSAGES/django.po +0 -405
- game/locale/cy_GB/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/cy_GB/LC_MESSAGES/djangojs.po +0 -743
- game/locale/de_DE/LC_MESSAGES/django.mo +0 -0
- game/locale/de_DE/LC_MESSAGES/django.po +0 -405
- game/locale/de_DE/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/de_DE/LC_MESSAGES/djangojs.po +0 -739
- game/locale/el_GR/LC_MESSAGES/django.mo +0 -0
- game/locale/el_GR/LC_MESSAGES/django.po +0 -405
- game/locale/el_GR/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/el_GR/LC_MESSAGES/djangojs.po +0 -739
- game/locale/en_GB/LC_MESSAGES/django.mo +0 -0
- game/locale/en_GB/LC_MESSAGES/django.po +0 -405
- game/locale/en_GB/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/en_GB/LC_MESSAGES/djangojs.po +0 -739
- game/locale/es_ES/LC_MESSAGES/django.mo +0 -0
- game/locale/es_ES/LC_MESSAGES/django.po +0 -405
- game/locale/es_ES/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/es_ES/LC_MESSAGES/djangojs.po +0 -739
- game/locale/fi_FI/LC_MESSAGES/django.mo +0 -0
- game/locale/fi_FI/LC_MESSAGES/django.po +0 -405
- game/locale/fi_FI/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/fi_FI/LC_MESSAGES/djangojs.po +0 -739
- game/locale/fr_FR/LC_MESSAGES/django.mo +0 -0
- game/locale/fr_FR/LC_MESSAGES/django.po +0 -405
- game/locale/fr_FR/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/fr_FR/LC_MESSAGES/djangojs.po +0 -739
- game/locale/gu_IN/LC_MESSAGES/django.mo +0 -0
- game/locale/gu_IN/LC_MESSAGES/django.po +0 -405
- game/locale/gu_IN/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/gu_IN/LC_MESSAGES/djangojs.po +0 -739
- game/locale/hi_IN/LC_MESSAGES/django.mo +0 -0
- game/locale/hi_IN/LC_MESSAGES/django.po +0 -405
- game/locale/hi_IN/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/hi_IN/LC_MESSAGES/djangojs.po +0 -739
- game/locale/id_ID/LC_MESSAGES/django.mo +0 -0
- game/locale/id_ID/LC_MESSAGES/django.po +0 -405
- game/locale/id_ID/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/id_ID/LC_MESSAGES/djangojs.po +0 -738
- game/locale/it_IT/LC_MESSAGES/django.mo +0 -0
- game/locale/it_IT/LC_MESSAGES/django.po +0 -405
- game/locale/it_IT/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/it_IT/LC_MESSAGES/djangojs.po +0 -739
- game/locale/ja_JP/LC_MESSAGES/django.mo +0 -0
- game/locale/ja_JP/LC_MESSAGES/django.po +0 -405
- game/locale/ja_JP/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/ja_JP/LC_MESSAGES/djangojs.po +0 -738
- game/locale/lol_US/LC_MESSAGES/django.mo +0 -0
- game/locale/lol_US/LC_MESSAGES/django.po +0 -405
- game/locale/lol_US/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/lol_US/LC_MESSAGES/djangojs.po +0 -739
- game/locale/nb_NO/LC_MESSAGES/django.mo +0 -0
- game/locale/nb_NO/LC_MESSAGES/django.po +0 -405
- game/locale/nb_NO/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/nb_NO/LC_MESSAGES/djangojs.po +0 -739
- game/locale/nl_NL/LC_MESSAGES/django.mo +0 -0
- game/locale/nl_NL/LC_MESSAGES/django.po +0 -405
- game/locale/nl_NL/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/nl_NL/LC_MESSAGES/djangojs.po +0 -739
- game/locale/pl_PL/LC_MESSAGES/django.mo +0 -0
- game/locale/pl_PL/LC_MESSAGES/django.po +0 -405
- game/locale/pl_PL/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/pl_PL/LC_MESSAGES/djangojs.po +0 -741
- game/locale/pt_BR/LC_MESSAGES/django.mo +0 -0
- game/locale/pt_BR/LC_MESSAGES/django.po +0 -405
- game/locale/pt_BR/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/pt_BR/LC_MESSAGES/djangojs.po +0 -739
- game/locale/pt_PT/LC_MESSAGES/django.mo +0 -0
- game/locale/pt_PT/LC_MESSAGES/django.po +0 -405
- game/locale/pt_PT/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/pt_PT/LC_MESSAGES/djangojs.po +0 -739
- game/locale/ro_RO/LC_MESSAGES/django.mo +0 -0
- game/locale/ro_RO/LC_MESSAGES/django.po +0 -405
- game/locale/ro_RO/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/ro_RO/LC_MESSAGES/djangojs.po +0 -740
- game/locale/ru_RU/LC_MESSAGES/django.mo +0 -0
- game/locale/ru_RU/LC_MESSAGES/django.po +0 -405
- game/locale/ru_RU/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/ru_RU/LC_MESSAGES/djangojs.po +0 -741
- game/locale/sv_SE/LC_MESSAGES/django.mo +0 -0
- game/locale/sv_SE/LC_MESSAGES/django.po +0 -405
- game/locale/sv_SE/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/sv_SE/LC_MESSAGES/djangojs.po +0 -739
- game/locale/tl_PH/LC_MESSAGES/django.mo +0 -0
- game/locale/tl_PH/LC_MESSAGES/django.po +0 -405
- game/locale/tl_PH/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/tl_PH/LC_MESSAGES/djangojs.po +0 -739
- game/locale/tlh_AA/LC_MESSAGES/django.mo +0 -0
- game/locale/tlh_AA/LC_MESSAGES/django.po +0 -405
- game/locale/tlh_AA/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/tlh_AA/LC_MESSAGES/djangojs.po +0 -739
- game/locale/tr_TR/LC_MESSAGES/django.mo +0 -0
- game/locale/tr_TR/LC_MESSAGES/django.po +0 -405
- game/locale/tr_TR/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/tr_TR/LC_MESSAGES/djangojs.po +0 -740
- game/locale/ur_IN/LC_MESSAGES/django.mo +0 -0
- game/locale/ur_IN/LC_MESSAGES/django.po +0 -405
- game/locale/ur_IN/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/ur_IN/LC_MESSAGES/djangojs.po +0 -739
- game/locale/ur_PK/LC_MESSAGES/django.mo +0 -0
- game/locale/ur_PK/LC_MESSAGES/django.po +0 -405
- game/locale/ur_PK/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/ur_PK/LC_MESSAGES/djangojs.po +0 -739
- game/static/game/image/actions/go.svg +0 -18
- game/static/game/image/icons/destination.svg +0 -9
- game/static/game/js/pqselect.min.js +0 -9
- game/static/game/js/widget-scroller.js +0 -906
- rapid_router-5.4.1.dist-info/LICENSE.md +0 -577
- rapid_router-5.4.1.dist-info/METADATA +0 -24
- {rapid_router-5.4.1.dist-info → rapid_router-7.6.8.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,3211 @@
|
|
|
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="149.8px" height="141px" viewBox="0 0 149.8 141" style="enable-background:new 0 0 149.8 141;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.st0{opacity:0.2;fill:#183049;enable-background:new ;}
|
|
7
|
+
.st1{fill:#604330;stroke:#281B13;stroke-miterlimit:10;}
|
|
8
|
+
.st2{fill:#4C3224;stroke:#281B13;stroke-miterlimit:10;}
|
|
9
|
+
.st3{opacity:0.4;fill:#281B13;enable-background:new ;}
|
|
10
|
+
.st4{fill:url(#SVGID_1_);}
|
|
11
|
+
.st5{fill:#006938;}
|
|
12
|
+
.st6{opacity:0.4;fill:url(#SVGID_2_);enable-background:new ;}
|
|
13
|
+
.st7{fill:#603A17;}
|
|
14
|
+
.st8{fill:#3B2416;}
|
|
15
|
+
.st9{fill:#845834;}
|
|
16
|
+
.st10{fill:#066938;}
|
|
17
|
+
.st11{opacity:0.4;fill:url(#SVGID_3_);enable-background:new ;}
|
|
18
|
+
.st12{fill:url(#SVGID_4_);}
|
|
19
|
+
.st13{opacity:0.4;fill:url(#SVGID_5_);enable-background:new ;}
|
|
20
|
+
.st14{opacity:0.4;fill:url(#SVGID_6_);enable-background:new ;}
|
|
21
|
+
.st15{fill:url(#SVGID_7_);}
|
|
22
|
+
.st16{opacity:0.4;fill:url(#SVGID_8_);enable-background:new ;}
|
|
23
|
+
.st17{opacity:0.4;fill:url(#SVGID_9_);enable-background:new ;}
|
|
24
|
+
.st18{fill:url(#SVGID_10_);}
|
|
25
|
+
.st19{opacity:0.4;fill:url(#SVGID_11_);enable-background:new ;}
|
|
26
|
+
.st20{opacity:0.4;fill:url(#SVGID_12_);enable-background:new ;}
|
|
27
|
+
.st21{fill:url(#SVGID_13_);}
|
|
28
|
+
.st22{opacity:0.4;fill:url(#SVGID_14_);enable-background:new ;}
|
|
29
|
+
.st23{opacity:0.4;fill:url(#SVGID_15_);enable-background:new ;}
|
|
30
|
+
.st24{fill:url(#SVGID_16_);}
|
|
31
|
+
.st25{opacity:0.4;fill:url(#SVGID_17_);enable-background:new ;}
|
|
32
|
+
.st26{opacity:0.4;fill:url(#SVGID_18_);enable-background:new ;}
|
|
33
|
+
.st27{fill:url(#SVGID_19_);}
|
|
34
|
+
.st28{opacity:0.4;fill:url(#SVGID_20_);enable-background:new ;}
|
|
35
|
+
.st29{opacity:0.4;fill:url(#SVGID_21_);enable-background:new ;}
|
|
36
|
+
.st30{fill:url(#SVGID_22_);}
|
|
37
|
+
.st31{opacity:0.4;fill:url(#SVGID_23_);enable-background:new ;}
|
|
38
|
+
.st32{opacity:0.4;fill:url(#SVGID_24_);enable-background:new ;}
|
|
39
|
+
.st33{fill:url(#SVGID_25_);}
|
|
40
|
+
.st34{opacity:0.4;fill:url(#SVGID_26_);enable-background:new ;}
|
|
41
|
+
.st35{opacity:0.4;fill:url(#SVGID_27_);enable-background:new ;}
|
|
42
|
+
.st36{fill:url(#SVGID_28_);}
|
|
43
|
+
.st37{opacity:0.4;fill:url(#SVGID_29_);enable-background:new ;}
|
|
44
|
+
.st38{opacity:0.4;fill:url(#SVGID_30_);enable-background:new ;}
|
|
45
|
+
.st39{fill:url(#SVGID_31_);}
|
|
46
|
+
.st40{opacity:0.4;fill:url(#SVGID_32_);enable-background:new ;}
|
|
47
|
+
.st41{opacity:0.4;fill:url(#SVGID_33_);enable-background:new ;}
|
|
48
|
+
.st42{fill:url(#SVGID_34_);}
|
|
49
|
+
.st43{opacity:0.4;fill:url(#SVGID_35_);enable-background:new ;}
|
|
50
|
+
.st44{opacity:0.4;fill:url(#SVGID_36_);enable-background:new ;}
|
|
51
|
+
.st45{fill:url(#SVGID_37_);}
|
|
52
|
+
.st46{opacity:0.4;fill:url(#SVGID_38_);enable-background:new ;}
|
|
53
|
+
.st47{opacity:0.4;fill:url(#SVGID_39_);enable-background:new ;}
|
|
54
|
+
.st48{fill:url(#SVGID_40_);}
|
|
55
|
+
.st49{opacity:0.4;fill:url(#SVGID_41_);enable-background:new ;}
|
|
56
|
+
.st50{opacity:0.4;fill:url(#SVGID_42_);enable-background:new ;}
|
|
57
|
+
.st51{fill:url(#SVGID_43_);}
|
|
58
|
+
.st52{opacity:0.4;fill:url(#SVGID_44_);enable-background:new ;}
|
|
59
|
+
.st53{opacity:0.4;fill:url(#SVGID_45_);enable-background:new ;}
|
|
60
|
+
.st54{fill:url(#SVGID_46_);}
|
|
61
|
+
.st55{opacity:0.4;fill:url(#SVGID_47_);enable-background:new ;}
|
|
62
|
+
.st56{opacity:0.4;fill:url(#SVGID_48_);enable-background:new ;}
|
|
63
|
+
.st57{fill:url(#SVGID_49_);}
|
|
64
|
+
.st58{opacity:0.4;fill:url(#SVGID_50_);enable-background:new ;}
|
|
65
|
+
.st59{opacity:0.4;fill:url(#SVGID_51_);enable-background:new ;}
|
|
66
|
+
.st60{fill:url(#SVGID_52_);stroke:#2D3A14;stroke-width:0.5;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
67
|
+
.st61{clip-path:url(#SVGID_54_);}
|
|
68
|
+
.st62{fill:#FFFFFF;}
|
|
69
|
+
.st63{fill:none;stroke:#2D3A14;stroke-width:3;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
70
|
+
.st64{fill:url(#SVGID_55_);}
|
|
71
|
+
.st65{opacity:0.5;fill:#183049;enable-background:new ;}
|
|
72
|
+
.st66{fill:url(#SVGID_56_);stroke:#2D3A14;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
73
|
+
.st67{opacity:0.5;fill:#121C08;enable-background:new ;}
|
|
74
|
+
.st68{fill:none;stroke:#5E261B;stroke-width:3;stroke-miterlimit:10;}
|
|
75
|
+
.st69{fill:url(#SVGID_57_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
76
|
+
.st70{fill:url(#SVGID_58_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
77
|
+
.st71{fill:url(#SVGID_59_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
78
|
+
.st72{fill:url(#SVGID_60_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
79
|
+
.st73{fill:url(#SVGID_61_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
80
|
+
.st74{fill:url(#SVGID_62_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
81
|
+
.st75{fill:url(#SVGID_63_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
82
|
+
.st76{fill:url(#SVGID_64_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
83
|
+
.st77{fill:url(#SVGID_65_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
84
|
+
.st78{fill:url(#SVGID_66_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
85
|
+
.st79{fill:url(#SVGID_67_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
86
|
+
.st80{fill:url(#SVGID_68_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
87
|
+
.st81{fill:url(#SVGID_69_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
88
|
+
.st82{fill:url(#SVGID_70_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
89
|
+
.st83{fill:url(#SVGID_71_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
90
|
+
.st84{fill:url(#SVGID_72_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
91
|
+
.st85{fill:url(#SVGID_73_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
92
|
+
.st86{fill:url(#SVGID_74_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
93
|
+
.st87{fill:url(#SVGID_75_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
94
|
+
.st88{fill:url(#SVGID_76_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
95
|
+
.st89{fill:url(#SVGID_77_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
96
|
+
.st90{fill:url(#SVGID_78_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
97
|
+
.st91{fill:url(#SVGID_79_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
98
|
+
.st92{fill:url(#SVGID_80_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
99
|
+
.st93{fill:url(#SVGID_81_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
100
|
+
.st94{fill:url(#SVGID_82_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
101
|
+
.st95{fill:url(#SVGID_83_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
102
|
+
.st96{fill:url(#SVGID_84_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
103
|
+
.st97{fill:url(#SVGID_85_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
104
|
+
.st98{fill:url(#SVGID_86_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
105
|
+
.st99{fill:url(#SVGID_87_);}
|
|
106
|
+
.st100{fill:url(#SVGID_88_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
107
|
+
.st101{fill:url(#SVGID_89_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
108
|
+
.st102{fill:url(#SVGID_90_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
109
|
+
.st103{fill:url(#SVGID_91_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
110
|
+
.st104{fill:url(#SVGID_92_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
111
|
+
.st105{fill:url(#SVGID_93_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
112
|
+
.st106{fill:url(#SVGID_94_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
113
|
+
.st107{fill:url(#SVGID_95_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
114
|
+
.st108{fill:url(#SVGID_96_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
115
|
+
.st109{fill:url(#SVGID_97_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
116
|
+
.st110{fill:url(#SVGID_98_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
117
|
+
.st111{fill:url(#SVGID_99_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
118
|
+
.st112{fill:url(#SVGID_100_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
119
|
+
.st113{fill:url(#SVGID_101_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
120
|
+
.st114{fill:url(#SVGID_102_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
121
|
+
.st115{fill:url(#SVGID_103_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
122
|
+
.st116{fill:url(#SVGID_104_);}
|
|
123
|
+
.st117{fill:url(#SVGID_105_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
124
|
+
.st118{fill:url(#SVGID_106_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
125
|
+
.st119{fill:url(#SVGID_107_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
126
|
+
.st120{fill:url(#SVGID_108_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
127
|
+
.st121{fill:url(#SVGID_109_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
128
|
+
.st122{fill:url(#SVGID_110_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
129
|
+
.st123{fill:url(#SVGID_111_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
130
|
+
.st124{fill:url(#SVGID_112_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
131
|
+
.st125{fill:url(#SVGID_113_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
132
|
+
.st126{fill:url(#SVGID_114_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
133
|
+
.st127{fill:url(#SVGID_115_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
134
|
+
.st128{fill:url(#SVGID_116_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
135
|
+
.st129{fill:url(#SVGID_117_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
136
|
+
.st130{fill:url(#SVGID_118_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
137
|
+
.st131{fill:url(#SVGID_119_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
138
|
+
.st132{fill:url(#SVGID_120_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
139
|
+
.st133{fill:url(#SVGID_121_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
140
|
+
.st134{fill:url(#SVGID_122_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
141
|
+
.st135{fill:url(#SVGID_123_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
142
|
+
.st136{fill:url(#SVGID_124_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
143
|
+
.st137{fill:url(#SVGID_125_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
144
|
+
.st138{fill:url(#SVGID_126_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
145
|
+
.st139{fill:url(#SVGID_127_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
146
|
+
.st140{fill:url(#SVGID_128_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
147
|
+
.st141{fill:url(#SVGID_129_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
148
|
+
.st142{fill:url(#SVGID_130_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
149
|
+
.st143{fill:url(#SVGID_131_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
150
|
+
.st144{fill:url(#SVGID_132_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
151
|
+
.st145{fill:url(#SVGID_133_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
152
|
+
.st146{fill:url(#SVGID_134_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
153
|
+
.st147{fill:url(#SVGID_135_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
154
|
+
.st148{fill:url(#SVGID_136_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
155
|
+
.st149{fill:url(#SVGID_137_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
156
|
+
.st150{fill:url(#SVGID_138_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
157
|
+
.st151{fill:url(#SVGID_139_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
158
|
+
.st152{fill:url(#SVGID_140_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
159
|
+
.st153{fill:url(#SVGID_141_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
160
|
+
.st154{fill:url(#SVGID_142_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
161
|
+
.st155{fill:url(#SVGID_143_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
162
|
+
.st156{fill:url(#SVGID_144_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
163
|
+
.st157{fill:url(#SVGID_145_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
164
|
+
.st158{fill:url(#SVGID_146_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
165
|
+
.st159{fill:url(#SVGID_147_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
166
|
+
.st160{fill:url(#SVGID_148_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
167
|
+
.st161{fill:url(#SVGID_149_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
168
|
+
.st162{fill:url(#SVGID_150_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
169
|
+
.st163{fill:url(#SVGID_151_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
170
|
+
.st164{fill:url(#SVGID_152_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
171
|
+
.st165{fill:url(#SVGID_153_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
172
|
+
.st166{fill:url(#SVGID_154_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
173
|
+
.st167{fill:url(#SVGID_155_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
174
|
+
.st168{fill:url(#SVGID_156_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
175
|
+
.st169{fill:url(#SVGID_157_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
176
|
+
.st170{fill:url(#SVGID_158_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
177
|
+
.st171{fill:url(#SVGID_159_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
178
|
+
.st172{fill:url(#SVGID_160_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
179
|
+
.st173{fill:url(#SVGID_161_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
180
|
+
.st174{fill:url(#SVGID_162_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
181
|
+
.st175{fill:url(#SVGID_163_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
182
|
+
.st176{fill:url(#SVGID_164_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
183
|
+
.st177{fill:url(#SVGID_165_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
184
|
+
.st178{fill:url(#SVGID_166_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
185
|
+
.st179{fill:url(#SVGID_167_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
186
|
+
.st180{fill:url(#SVGID_168_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
187
|
+
.st181{fill:url(#SVGID_169_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
188
|
+
.st182{fill:url(#SVGID_170_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
189
|
+
.st183{fill:url(#SVGID_171_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
190
|
+
.st184{fill:url(#SVGID_172_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
191
|
+
.st185{fill:url(#SVGID_173_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
192
|
+
.st186{fill:url(#SVGID_174_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
193
|
+
.st187{fill:url(#SVGID_175_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
194
|
+
.st188{fill:url(#SVGID_176_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
195
|
+
.st189{fill:url(#SVGID_177_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
196
|
+
.st190{fill:url(#SVGID_178_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
197
|
+
.st191{fill:url(#SVGID_179_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
198
|
+
.st192{fill:url(#SVGID_180_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
199
|
+
.st193{fill:url(#SVGID_181_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
200
|
+
.st194{fill:url(#SVGID_182_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
201
|
+
.st195{fill:url(#SVGID_183_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
202
|
+
.st196{fill:url(#SVGID_184_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
203
|
+
.st197{fill:url(#SVGID_185_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
204
|
+
.st198{fill:url(#SVGID_186_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
205
|
+
.st199{fill:url(#SVGID_187_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
206
|
+
.st200{fill:url(#SVGID_188_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
207
|
+
.st201{fill:url(#SVGID_189_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
208
|
+
.st202{fill:url(#SVGID_190_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
209
|
+
.st203{fill:url(#SVGID_191_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
210
|
+
.st204{fill:url(#SVGID_192_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
211
|
+
.st205{fill:url(#SVGID_193_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
212
|
+
.st206{fill:url(#SVGID_194_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
213
|
+
.st207{fill:url(#SVGID_195_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
214
|
+
.st208{fill:url(#SVGID_196_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
215
|
+
.st209{fill:url(#SVGID_197_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
216
|
+
.st210{fill:url(#SVGID_198_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
217
|
+
.st211{fill:url(#SVGID_199_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
218
|
+
.st212{fill:url(#SVGID_200_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
219
|
+
.st213{fill:url(#SVGID_201_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
220
|
+
.st214{fill:url(#SVGID_202_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
221
|
+
.st215{fill:url(#SVGID_203_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
222
|
+
.st216{fill:url(#SVGID_204_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
223
|
+
.st217{fill:url(#SVGID_205_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
224
|
+
.st218{fill:url(#SVGID_206_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
225
|
+
.st219{fill:url(#SVGID_207_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
226
|
+
.st220{fill:url(#SVGID_208_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
227
|
+
.st221{fill:url(#SVGID_209_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
228
|
+
.st222{fill:url(#SVGID_210_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
229
|
+
.st223{fill:url(#SVGID_211_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
230
|
+
.st224{fill:url(#SVGID_212_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
231
|
+
.st225{fill:url(#SVGID_213_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
232
|
+
.st226{fill:url(#SVGID_214_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
233
|
+
.st227{fill:url(#SVGID_215_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
234
|
+
.st228{fill:url(#SVGID_216_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
235
|
+
.st229{fill:url(#SVGID_217_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
236
|
+
.st230{fill:url(#SVGID_218_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
237
|
+
.st231{fill:url(#SVGID_219_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
238
|
+
.st232{fill:url(#SVGID_220_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
239
|
+
.st233{fill:url(#SVGID_221_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
240
|
+
.st234{fill:url(#SVGID_222_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
241
|
+
.st235{fill:url(#SVGID_223_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
242
|
+
.st236{fill:url(#SVGID_224_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
243
|
+
.st237{fill:url(#SVGID_225_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
244
|
+
.st238{fill:url(#SVGID_226_);stroke:#5E261B;stroke-miterlimit:10;}
|
|
245
|
+
.st239{opacity:0.2;}
|
|
246
|
+
.st240{fill:#183049;}
|
|
247
|
+
.st241{fill:#1C230C;}
|
|
248
|
+
.st242{fill:url(#SVGID_227_);}
|
|
249
|
+
.st243{fill:#2D3A14;}
|
|
250
|
+
.st244{fill:#232323;}
|
|
251
|
+
.st245{fill:#0C0C0C;}
|
|
252
|
+
.st246{fill:#FCFCFC;}
|
|
253
|
+
.st247{fill:url(#SVGID_228_);stroke:#2D3A14;stroke-width:0.5;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
254
|
+
.st248{fill:url(#SVGID_229_);}
|
|
255
|
+
.st249{fill:url(#SVGID_230_);stroke:#2D3A14;stroke-width:0.5;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
256
|
+
.st250{fill:#8E817B;stroke:#51433D;stroke-width:3;stroke-miterlimit:10;}
|
|
257
|
+
.st251{fill:#0F0E0D;stroke:#51433D;stroke-width:2;stroke-miterlimit:10;}
|
|
258
|
+
.st252{fill:none;stroke:#C4B5AE;stroke-miterlimit:10;}
|
|
259
|
+
.st253{fill:#C4B5AE;}
|
|
260
|
+
.st254{fill:url(#SVGID_231_);}
|
|
261
|
+
.st255{fill:url(#SVGID_232_);}
|
|
262
|
+
.st256{fill:url(#SVGID_233_);}
|
|
263
|
+
.st257{fill:url(#SVGID_234_);}
|
|
264
|
+
.st258{fill:url(#SVGID_235_);}
|
|
265
|
+
.st259{fill:url(#SVGID_236_);}
|
|
266
|
+
.st260{fill:url(#SVGID_237_);}
|
|
267
|
+
.st261{fill:url(#SVGID_238_);}
|
|
268
|
+
.st262{fill:url(#SVGID_239_);}
|
|
269
|
+
.st263{fill:url(#SVGID_240_);}
|
|
270
|
+
.st264{fill:url(#SVGID_241_);}
|
|
271
|
+
.st265{fill:url(#SVGID_242_);}
|
|
272
|
+
.st266{fill:url(#SVGID_243_);}
|
|
273
|
+
.st267{fill:url(#SVGID_244_);}
|
|
274
|
+
.st268{fill:url(#SVGID_245_);}
|
|
275
|
+
.st269{fill:url(#SVGID_246_);}
|
|
276
|
+
.st270{fill:url(#SVGID_247_);}
|
|
277
|
+
.st271{fill:url(#SVGID_248_);}
|
|
278
|
+
.st272{fill:url(#SVGID_249_);}
|
|
279
|
+
.st273{fill:url(#SVGID_250_);}
|
|
280
|
+
.st274{fill:url(#SVGID_251_);}
|
|
281
|
+
.st275{fill:url(#SVGID_252_);}
|
|
282
|
+
.st276{fill:url(#SVGID_253_);}
|
|
283
|
+
.st277{fill:url(#SVGID_254_);}
|
|
284
|
+
.st278{fill:url(#SVGID_255_);}
|
|
285
|
+
.st279{fill:url(#SVGID_256_);}
|
|
286
|
+
.st280{fill:url(#SVGID_257_);}
|
|
287
|
+
.st281{fill:url(#SVGID_258_);}
|
|
288
|
+
.st282{fill:url(#SVGID_259_);}
|
|
289
|
+
.st283{fill:url(#SVGID_260_);}
|
|
290
|
+
.st284{fill:url(#SVGID_261_);}
|
|
291
|
+
.st285{fill:url(#SVGID_262_);}
|
|
292
|
+
.st286{fill:url(#SVGID_263_);}
|
|
293
|
+
.st287{fill:url(#SVGID_264_);}
|
|
294
|
+
.st288{fill:url(#SVGID_265_);}
|
|
295
|
+
.st289{fill:url(#SVGID_266_);}
|
|
296
|
+
.st290{fill:url(#SVGID_267_);}
|
|
297
|
+
.st291{fill:url(#SVGID_268_);}
|
|
298
|
+
.st292{fill:url(#SVGID_269_);}
|
|
299
|
+
.st293{fill:url(#SVGID_270_);}
|
|
300
|
+
.st294{fill:url(#SVGID_271_);}
|
|
301
|
+
.st295{fill:url(#SVGID_272_);}
|
|
302
|
+
.st296{fill:url(#SVGID_273_);}
|
|
303
|
+
.st297{fill:url(#SVGID_274_);}
|
|
304
|
+
.st298{fill:url(#SVGID_275_);}
|
|
305
|
+
.st299{fill:url(#SVGID_276_);}
|
|
306
|
+
.st300{fill:url(#SVGID_277_);}
|
|
307
|
+
.st301{fill:url(#SVGID_278_);}
|
|
308
|
+
.st302{fill:url(#SVGID_279_);}
|
|
309
|
+
.st303{fill:url(#SVGID_280_);}
|
|
310
|
+
.st304{fill:url(#SVGID_281_);}
|
|
311
|
+
.st305{fill:url(#SVGID_282_);}
|
|
312
|
+
.st306{fill:url(#SVGID_283_);}
|
|
313
|
+
.st307{fill:url(#SVGID_284_);}
|
|
314
|
+
.st308{fill:url(#SVGID_285_);}
|
|
315
|
+
.st309{fill:url(#SVGID_286_);}
|
|
316
|
+
.st310{fill:url(#SVGID_287_);}
|
|
317
|
+
.st311{fill:url(#SVGID_288_);}
|
|
318
|
+
.st312{fill:url(#SVGID_289_);}
|
|
319
|
+
.st313{fill:url(#SVGID_290_);}
|
|
320
|
+
.st314{fill:url(#SVGID_291_);}
|
|
321
|
+
.st315{fill:url(#SVGID_292_);}
|
|
322
|
+
.st316{fill:url(#SVGID_293_);}
|
|
323
|
+
.st317{fill:url(#SVGID_294_);}
|
|
324
|
+
.st318{fill:url(#SVGID_295_);}
|
|
325
|
+
.st319{fill:url(#SVGID_296_);}
|
|
326
|
+
.st320{fill:url(#SVGID_297_);}
|
|
327
|
+
.st321{fill:url(#SVGID_298_);}
|
|
328
|
+
.st322{fill:url(#SVGID_299_);}
|
|
329
|
+
.st323{fill:url(#SVGID_300_);}
|
|
330
|
+
.st324{fill:url(#SVGID_301_);}
|
|
331
|
+
.st325{fill:url(#SVGID_302_);}
|
|
332
|
+
.st326{fill:url(#SVGID_303_);}
|
|
333
|
+
.st327{fill:url(#SVGID_304_);}
|
|
334
|
+
.st328{fill:url(#SVGID_305_);}
|
|
335
|
+
.st329{fill:url(#SVGID_306_);}
|
|
336
|
+
.st330{fill:url(#SVGID_307_);}
|
|
337
|
+
.st331{fill:url(#SVGID_308_);}
|
|
338
|
+
.st332{fill:url(#SVGID_309_);}
|
|
339
|
+
.st333{fill:url(#SVGID_310_);}
|
|
340
|
+
.st334{fill:url(#SVGID_311_);}
|
|
341
|
+
.st335{fill:url(#SVGID_312_);}
|
|
342
|
+
.st336{fill:url(#SVGID_313_);}
|
|
343
|
+
.st337{fill:url(#SVGID_314_);}
|
|
344
|
+
.st338{fill:url(#SVGID_315_);}
|
|
345
|
+
.st339{fill:url(#SVGID_316_);}
|
|
346
|
+
.st340{fill:url(#SVGID_317_);}
|
|
347
|
+
.st341{fill:url(#SVGID_318_);}
|
|
348
|
+
.st342{fill:#B6E7EF;}
|
|
349
|
+
.st343{fill:url(#SVGID_319_);}
|
|
350
|
+
.st344{fill:url(#SVGID_320_);}
|
|
351
|
+
.st345{fill:url(#SVGID_321_);}
|
|
352
|
+
.st346{fill:url(#SVGID_322_);}
|
|
353
|
+
.st347{fill:url(#SVGID_323_);}
|
|
354
|
+
.st348{fill:url(#SVGID_324_);}
|
|
355
|
+
.st349{fill:url(#SVGID_325_);}
|
|
356
|
+
.st350{fill:url(#SVGID_326_);}
|
|
357
|
+
</style>
|
|
358
|
+
<path class="st0" d="M16.1,3.5v15.7H5.5v34.2h3C3.9,57.8,1,64.1,1,71c0,10.2,6.3,18.9,15.1,22.5v43.3h133.7V3.5L16.1,3.5L16.1,3.5z"
|
|
359
|
+
/>
|
|
360
|
+
<rect x="7.8" y="21.3" class="st1" width="16.6" height="30"/>
|
|
361
|
+
<rect x="9.6" y="23.1" class="st2" width="13.1" height="26.4"/>
|
|
362
|
+
<path class="st3" d="M9.6,49.5c2.6,0,8.2-6,8.2-13.8s-4.9-12.6-8.2-12.6h13.1v26.4L9.6,49.5L9.6,49.5z"/>
|
|
363
|
+
<radialGradient id="SVGID_1_" cx="11.747" cy="115.614" r="2.238" gradientTransform="matrix(1 0 0 -1 0 141.89)" gradientUnits="userSpaceOnUse">
|
|
364
|
+
<stop offset="8.610000e-02" style="stop-color:#8BC541"/>
|
|
365
|
+
<stop offset="0.8204" style="stop-color:#009247"/>
|
|
366
|
+
</radialGradient>
|
|
367
|
+
<circle class="st4" cx="12" cy="25.8" r="1.8"/>
|
|
368
|
+
<path class="st5" d="M12,27.7c-1.1,0-1.9-0.9-1.9-1.9s0.9-1.9,1.9-1.9s1.9,0.9,1.9,1.9S13.1,27.7,12,27.7z M12,24
|
|
369
|
+
c-1,0-1.8,0.8-1.8,1.8s0.8,1.8,1.8,1.8s1.8-0.8,1.8-1.8S13,24,12,24z"/>
|
|
370
|
+
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="-270.5297" y1="155.5644" x2="-270.3497" y2="152.2944" gradientTransform="matrix(0.818 -0.5753 -0.5753 -0.818 322.8953 -4.1676)">
|
|
371
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
372
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
373
|
+
</linearGradient>
|
|
374
|
+
<path class="st6" d="M13,25c0.2,0.3,0.2,0.5,0.1,0.6c-0.1,0.1-0.4-0.1-0.5-0.3c-0.2-0.3-0.2-0.5-0.1-0.6S12.8,24.7,13,25z"/>
|
|
375
|
+
<path class="st7" d="M12,25.8c0,0,0.3-0.7,0.4-0.9c0.2-0.2,0.4,0.2,0.4,0.2L12.1,26C12.1,26,12,25.8,12,25.8z"/>
|
|
376
|
+
<path class="st8" d="M12.1,26.1L12,25.8l0,0c0,0,0.3-0.7,0.4-0.9c0,0,0.1-0.1,0.1-0.1c0.2,0,0.3,0.2,0.3,0.2l0,0
|
|
377
|
+
C12.9,25.1,12.1,26.1,12.1,26.1z M12,25.8l0.1,0.1l0.6-0.8c0-0.1-0.1-0.2-0.2-0.2c0,0-0.1,0-0.1,0C12.3,25.2,12.1,25.7,12,25.8z"/>
|
|
378
|
+
<path class="st9" d="M12.3,25.2l0.3,0.2l0.2-0.2c0,0-0.2-0.3-0.4-0.2C12.3,25.1,12.3,25.2,12.3,25.2z"/>
|
|
379
|
+
<path class="st8" d="M12.6,25.4l-0.4-0.2l0,0c0,0,0-0.1,0.2-0.3c0,0,0.1,0,0.1,0c0.2,0,0.3,0.2,0.3,0.2l0,0L12.6,25.4z M12.3,25.2
|
|
380
|
+
l0.3,0.2l0.2-0.2c0-0.1-0.1-0.2-0.2-0.2c0,0,0,0-0.1,0C12.4,25.1,12.4,25.1,12.3,25.2z"/>
|
|
381
|
+
<path class="st10" d="M11.6,25.6C11.6,25.6,11.6,25.6,11.6,25.6c0.1,0,0.1,0,0.1,0c0,0,0,0,0.1,0s0,0,0.1,0c0,0,0,0,0.1,0.1
|
|
382
|
+
c0,0,0,0,0.1,0.1c0,0,0,0,0.1,0.1c0,0,0,0,0.1,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0
|
|
383
|
+
c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0-0.1c0,0,0,0-0.1-0.1c0,0,0,0-0.1-0.1c0,0,0,0-0.1-0.1c0,0-0.1-0.1-0.1-0.1c0,0,0,0-0.1-0.1
|
|
384
|
+
c0,0,0,0-0.1,0S11.7,25.7,11.6,25.6C11.7,25.6,11.7,25.6,11.6,25.6C11.6,25.6,11.6,25.6,11.6,25.6z"/>
|
|
385
|
+
<path class="st10" d="M12.1,26C12.1,26,12.1,26,12.1,26c0,0,0.1,0,0.1,0c0.1,0,0.2,0,0.2-0.1c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0
|
|
386
|
+
c0,0,0,0,0.1,0c0.1,0,0.1,0,0.1,0s0,0-0.1,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c-0.1,0-0.2,0.1-0.2,0.1
|
|
387
|
+
C12.2,26,12.2,26,12.1,26C12.2,26,12.2,26.1,12.1,26C12.2,26.1,12.1,26,12.1,26z"/>
|
|
388
|
+
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="11.7232" y1="117.863" x2="11.9032" y2="114.59" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
389
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
390
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
391
|
+
</linearGradient>
|
|
392
|
+
<path class="st11" d="M11.8,24.2c0.2,0,0.5,0.3,0.2,0.6c-0.2,0.3-0.8,0.5-0.6,0.9c0.3,0.2,0.5,0.5,0.6,0.8c0.2,0.3,0.2-0.3,0.8-0.3
|
|
393
|
+
c0.6-0.1,0.5,1-0.5,1.2c-0.9,0.2-1.4-0.3-1.6-0.7c-0.3-0.4-0.5-1.4,0.1-2C11.4,24.3,11.6,24.2,11.8,24.2z"/>
|
|
394
|
+
<radialGradient id="SVGID_4_" cx="738.8582" cy="742.5144" r="2.2331" gradientTransform="matrix(0.9514 -0.308 -0.308 -0.9514 -458.257 960.3381)" gradientUnits="userSpaceOnUse">
|
|
395
|
+
<stop offset="8.610000e-02" style="stop-color:#8BC541"/>
|
|
396
|
+
<stop offset="0.8204" style="stop-color:#009247"/>
|
|
397
|
+
</radialGradient>
|
|
398
|
+
<circle class="st12" cx="16.1" cy="25.8" r="1.8"/>
|
|
399
|
+
<path class="st5" d="M16.7,27.6c-1,0.3-2.1-0.2-2.4-1.2c-0.3-1,0.2-2.1,1.2-2.4c1-0.3,2.1,0.2,2.4,1.2
|
|
400
|
+
C18.3,26.2,17.7,27.3,16.7,27.6z M15.6,24.1c-0.9,0.3-1.4,1.3-1.1,2.2s1.3,1.4,2.2,1.1c0.9-0.3,1.4-1.3,1.1-2.2
|
|
401
|
+
C17.5,24.3,16.5,23.8,15.6,24.1z"/>
|
|
402
|
+
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="684.7899" y1="250.0577" x2="684.9899" y2="246.7877" gradientTransform="matrix(0.601 -0.7993 -0.7993 -0.601 -196.0403 721.8913)">
|
|
403
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
404
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
405
|
+
</linearGradient>
|
|
406
|
+
<path class="st13" d="M16.8,24.7c0.3,0.2,0.4,0.4,0.3,0.6c-0.1,0.1-0.4,0-0.6-0.1c-0.3-0.2-0.4-0.4-0.3-0.6
|
|
407
|
+
C16.3,24.5,16.5,24.5,16.8,24.7z"/>
|
|
408
|
+
<path class="st7" d="M16.1,25.8c0,0,0.1-0.7,0.1-1s0.4,0,0.4,0l-0.4,1L16.1,25.8z"/>
|
|
409
|
+
<path class="st8" d="M16.3,26L16,25.9l0,0c0,0,0.1-0.7,0.1-1c0-0.1,0.1-0.1,0.1-0.1c0.1,0,0.4,0.1,0.4,0.1l0,0
|
|
410
|
+
C16.7,24.9,16.3,26,16.3,26z M16.1,25.8l0.1,0.1l0.4-1c-0.1,0-0.2-0.1-0.3-0.1c0,0,0,0-0.1,0.1C16.2,25.1,16.1,25.7,16.1,25.8z"/>
|
|
411
|
+
<path class="st9" d="M16.2,25.1l0.4,0.1l0.1-0.3c0,0-0.3-0.3-0.4-0.1C16.1,25,16.2,25.1,16.2,25.1z"/>
|
|
412
|
+
<path class="st8" d="M16.6,25.3l-0.4-0.1l0,0c0,0,0-0.1,0.1-0.3c0,0,0.1-0.1,0.1-0.1c0.1,0,0.4,0.1,0.4,0.1l0,0
|
|
413
|
+
C16.7,24.9,16.6,25.3,16.6,25.3z M16.2,25.1l0.3,0.1l0.1-0.2c-0.1,0-0.2-0.1-0.3-0.1c0,0,0,0-0.1,0C16.2,25,16.2,25.1,16.2,25.1z"/>
|
|
414
|
+
<path class="st10" d="M15.7,25.7C15.7,25.7,15.7,25.7,15.7,25.7c0.1,0,0.1,0,0.2,0c0,0,0,0,0.1,0s0.1,0,0.1,0c0,0,0.1,0,0.1,0
|
|
415
|
+
c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0.1c0,0,0,0,0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0
|
|
416
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0c-0.1,0-0.1-0.1-0.2-0.1c0,0,0,0-0.1,0
|
|
417
|
+
c0,0,0,0-0.1,0C15.8,25.8,15.8,25.8,15.7,25.7C15.7,25.8,15.7,25.8,15.7,25.7C15.7,25.8,15.7,25.7,15.7,25.7z"/>
|
|
418
|
+
<path class="st10" d="M16.3,25.9C16.3,25.9,16.3,25.9,16.3,25.9C16.3,25.9,16.3,25.9,16.3,25.9c0.1-0.1,0.2-0.2,0.3-0.2
|
|
419
|
+
c0,0,0.1,0,0.1-0.1c0,0,0,0,0.1,0c0,0,0,0,0.1,0c0.1,0,0.1,0,0.1,0s0,0-0.1,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0.1
|
|
420
|
+
c-0.1,0.1-0.1,0.1-0.2,0.2C16.4,25.9,16.3,26,16.3,25.9C16.3,26,16.3,26,16.3,25.9C16.3,26,16.3,25.9,16.3,25.9z"/>
|
|
421
|
+
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="738.8172" y1="744.7638" x2="738.9972" y2="741.4938" gradientTransform="matrix(0.9514 -0.308 -0.308 -0.9514 -458.257 960.3381)">
|
|
422
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
423
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
424
|
+
</linearGradient>
|
|
425
|
+
<path class="st14" d="M15.4,24.3c0.2-0.1,0.5,0.2,0.4,0.5c-0.1,0.3-0.6,0.7-0.3,1c0.3,0.1,0.6,0.3,0.8,0.5c0.2,0.3,0.1-0.3,0.6-0.6
|
|
426
|
+
c0.6-0.2,0.8,0.9-0.1,1.3c-0.8,0.4-1.4,0.1-1.8-0.1c-0.4-0.2-1-1.2-0.5-2C15,24.6,15.2,24.4,15.4,24.3z"/>
|
|
427
|
+
<radialGradient id="SVGID_7_" cx="739.4581" cy="731.1245" r="2.2349" gradientTransform="matrix(0.9514 -0.308 -0.308 -0.9514 -458.257 960.3381)" gradientUnits="userSpaceOnUse">
|
|
428
|
+
<stop offset="8.610000e-02" style="stop-color:#8BC541"/>
|
|
429
|
+
<stop offset="0.8204" style="stop-color:#009247"/>
|
|
430
|
+
</radialGradient>
|
|
431
|
+
<circle class="st15" cx="20.2" cy="36.4" r="1.8"/>
|
|
432
|
+
<path class="st5" d="M20.8,38.2c-1,0.3-2.1-0.2-2.4-1.2c-0.3-1,0.2-2.1,1.2-2.4c1-0.3,2.1,0.2,2.4,1.2
|
|
433
|
+
C22.3,36.8,21.8,37.9,20.8,38.2z M19.7,34.8C18.7,35,18.2,36,18.5,37s1.3,1.4,2.2,1.1c0.9-0.3,1.4-1.3,1.1-2.2
|
|
434
|
+
C21.6,35,20.6,34.5,19.7,34.8z"/>
|
|
435
|
+
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="678.7691" y1="240.3867" x2="678.8691" y2="237.1167" gradientTransform="matrix(0.601 -0.7993 -0.7993 -0.601 -196.0403 721.8913)">
|
|
436
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
437
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
438
|
+
</linearGradient>
|
|
439
|
+
<path class="st16" d="M20.9,35.4c0.3,0.2,0.4,0.4,0.3,0.6c-0.1,0.1-0.4,0-0.6-0.1c-0.3-0.2-0.4-0.4-0.3-0.6
|
|
440
|
+
C20.4,35.1,20.6,35.2,20.9,35.4z"/>
|
|
441
|
+
<path class="st7" d="M20.2,36.5c0,0,0.1-0.7,0.1-1s0.4,0,0.4,0l-0.4,1L20.2,36.5z"/>
|
|
442
|
+
<path class="st8" d="M20.4,36.7l-0.2-0.2l0,0c0,0,0.1-0.7,0.1-1c0-0.1,0.1-0.1,0.1-0.1c0.1,0,0.4,0.1,0.4,0.1l0,0
|
|
443
|
+
C20.8,35.6,20.4,36.7,20.4,36.7z M20.2,36.5l0.1,0.1l0.4-1c-0.1,0-0.2-0.1-0.3-0.1c0,0,0,0-0.1,0.1C20.3,35.8,20.2,36.4,20.2,36.5z"
|
|
444
|
+
/>
|
|
445
|
+
<path class="st9" d="M20.3,35.8l0.4,0.1l0.1-0.3c0,0-0.3-0.3-0.4-0.1C20.2,35.7,20.3,35.8,20.3,35.8z"/>
|
|
446
|
+
<path class="st8" d="M20.7,35.9l-0.4-0.1l0,0c0,0,0-0.1,0.1-0.3c0,0,0.1-0.1,0.1-0.1c0.1,0,0.4,0.1,0.4,0.1l0,0
|
|
447
|
+
C20.8,35.6,20.7,35.9,20.7,35.9z M20.3,35.8l0.3,0.1l0.1-0.2c-0.1,0-0.2-0.1-0.3-0.1c0,0,0,0-0.1,0C20.3,35.6,20.3,35.7,20.3,35.8z"
|
|
448
|
+
/>
|
|
449
|
+
<path class="st10" d="M19.7,36.4C19.7,36.4,19.8,36.4,19.7,36.4c0.1,0,0.1,0,0.2,0c0,0,0,0,0.1,0s0.1,0,0.1,0c0,0,0.1,0,0.1,0
|
|
450
|
+
c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0.1c0,0,0,0,0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0
|
|
451
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0c-0.1,0-0.1-0.1-0.2-0.1c0,0,0,0-0.1,0
|
|
452
|
+
c0,0,0,0-0.1,0C19.9,36.4,19.9,36.4,19.7,36.4C19.8,36.4,19.8,36.4,19.7,36.4C19.8,36.4,19.7,36.4,19.7,36.4z"/>
|
|
453
|
+
<path class="st10" d="M20.3,36.6C20.3,36.6,20.4,36.6,20.3,36.6C20.4,36.6,20.4,36.5,20.3,36.6c0.1-0.1,0.2-0.2,0.3-0.2
|
|
454
|
+
c0,0,0.1,0,0.1-0.1c0,0,0,0,0.1,0c0,0,0,0,0.1,0c0.1,0,0.1,0,0.1,0s0,0-0.1,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0.1
|
|
455
|
+
c-0.1,0.1-0.1,0.1-0.2,0.2C20.5,36.6,20.4,36.6,20.3,36.6C20.4,36.6,20.4,36.7,20.3,36.6C20.4,36.7,20.3,36.6,20.3,36.6z"/>
|
|
456
|
+
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="739.4252" y1="733.3737" x2="739.6052" y2="730.1037" gradientTransform="matrix(0.9514 -0.308 -0.308 -0.9514 -458.257 960.3381)">
|
|
457
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
458
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
459
|
+
</linearGradient>
|
|
460
|
+
<path class="st17" d="M19.5,35c0.2-0.1,0.5,0.2,0.4,0.5c-0.1,0.3-0.6,0.7-0.3,1c0.3,0.1,0.6,0.3,0.8,0.5c0.2,0.3,0.1-0.3,0.6-0.6
|
|
461
|
+
c0.6-0.2,0.8,0.9-0.1,1.3c-0.8,0.4-1.4,0.1-1.8-0.1c-0.4-0.2-1-1.2-0.5-2C19.1,35.2,19.3,35.1,19.5,35z"/>
|
|
462
|
+
<radialGradient id="SVGID_10_" cx="-690.251" cy="-1507.2054" r="2.2368" gradientTransform="matrix(0.8345 0.5509 0.5509 -0.8345 1417.7769 -847.618)" gradientUnits="userSpaceOnUse">
|
|
463
|
+
<stop offset="8.610000e-02" style="stop-color:#8BC541"/>
|
|
464
|
+
<stop offset="0.8204" style="stop-color:#009247"/>
|
|
465
|
+
</radialGradient>
|
|
466
|
+
<circle class="st18" cx="11.8" cy="29.7" r="1.8"/>
|
|
467
|
+
<path class="st5" d="M10.8,31.3c-0.9-0.6-1.1-1.8-0.5-2.7c0.6-0.9,1.8-1.1,2.7-0.5c0.9,0.6,1.1,1.8,0.5,2.7
|
|
468
|
+
C12.9,31.6,11.7,31.9,10.8,31.3z M12.8,28.2c-0.8-0.5-1.9-0.3-2.4,0.5c-0.5,0.8-0.3,1.9,0.5,2.4c0.8,0.5,1.9,0.3,2.4-0.5
|
|
469
|
+
C13.8,29.9,13.6,28.8,12.8,28.2z"/>
|
|
470
|
+
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="-1778.3416" y1="-767.9509" x2="-1778.1415" y2="-771.2109" gradientTransform="matrix(0.9996 -2.950000e-02 -2.950000e-02 -0.9996 1767.722 -791.5658)">
|
|
471
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
472
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
473
|
+
</linearGradient>
|
|
474
|
+
<path class="st19" d="M13.1,29.6c0,0.3-0.1,0.6-0.2,0.6c-0.1,0-0.3-0.3-0.3-0.6c0-0.3,0.1-0.6,0.2-0.6C13,29,13.1,29.3,13.1,29.6z"
|
|
475
|
+
/>
|
|
476
|
+
<path class="st7" d="M11.8,29.7c0,0,0.6-0.4,0.8-0.5c0.2-0.1,0.2,0.4,0.2,0.4L11.8,30C11.8,30,11.8,29.7,11.8,29.7z"/>
|
|
477
|
+
<path class="st8" d="M11.8,30l0-0.3l0,0c0,0,0.6-0.4,0.9-0.5c0.1,0,0.1,0,0.2,0c0.1,0.1,0.1,0.3,0.1,0.4v0
|
|
478
|
+
C12.9,29.6,11.8,30,11.8,30z M11.8,29.8l0,0.1l1-0.3c0-0.1,0-0.2-0.1-0.3c0,0-0.1,0-0.1,0C12.4,29.4,11.9,29.7,11.8,29.8z"/>
|
|
479
|
+
<path class="st9" d="M12.4,29.4l0.2,0.3l0.3-0.1c0,0,0-0.4-0.2-0.4C12.4,29.3,12.4,29.4,12.4,29.4z"/>
|
|
480
|
+
<path class="st8" d="M12.5,29.8l-0.2-0.4l0,0c0,0,0.1-0.1,0.3-0.1c0,0,0.1,0,0.1,0c0.1,0.1,0.1,0.3,0.1,0.4l0,0
|
|
481
|
+
C12.9,29.6,12.5,29.8,12.5,29.8z M12.4,29.4l0.1,0.3l0.2-0.1c0-0.1,0-0.2-0.1-0.3c0,0,0,0-0.1,0C12.5,29.3,12.4,29.3,12.4,29.4z"/>
|
|
482
|
+
<path class="st10" d="M11.6,29.3C11.6,29.3,11.6,29.4,11.6,29.3c0,0.1,0.1,0.1,0.1,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0.1c0,0,0,0.1,0,0.1
|
|
483
|
+
c0,0,0,0.1,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0
|
|
484
|
+
c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0-0.1c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0-0.2c0,0,0-0.1,0-0.1
|
|
485
|
+
c0,0,0,0,0-0.1C11.6,29.5,11.6,29.4,11.6,29.3C11.6,29.4,11.6,29.4,11.6,29.3C11.6,29.4,11.6,29.3,11.6,29.3z"/>
|
|
486
|
+
<path class="st10" d="M11.8,29.9C11.8,29.9,11.8,29.9,11.8,29.9c0.1,0,0.1,0,0.1,0c0.1,0,0.2,0,0.2,0.1c0,0,0.1,0,0.1,0.1
|
|
487
|
+
c0,0,0,0,0.1,0c0,0,0,0,0,0c0.1,0,0.1,0.1,0.1,0.1s0,0-0.1-0.1c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c-0.1,0-0.2,0-0.2-0.1
|
|
488
|
+
C11.9,30,11.8,30,11.8,29.9C11.8,30,11.8,30,11.8,29.9C11.8,30,11.8,29.9,11.8,29.9z"/>
|
|
489
|
+
<linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="-690.3507" y1="-1504.9092" x2="-690.1707" y2="-1508.2092" gradientTransform="matrix(0.8345 0.5509 0.5509 -0.8345 1417.7769 -847.618)">
|
|
490
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
491
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
492
|
+
</linearGradient>
|
|
493
|
+
<path class="st20" d="M12.5,28.3c0.2,0.1,0.2,0.5-0.1,0.7c-0.3,0.1-0.9,0-1,0.4c0.2,0.3,0.1,0.6,0.1,1c0,0.4,0.3-0.1,0.9,0.1
|
|
494
|
+
s-0.2,1.1-1.1,0.7c-0.9-0.4-1-1-1-1.4c0-0.4,0.3-1.5,1.2-1.6C12.1,28.1,12.3,28.1,12.5,28.3z"/>
|
|
495
|
+
<radialGradient id="SVGID_13_" cx="734.8381" cy="736.3344" r="2.2377" gradientTransform="matrix(0.9514 -0.308 -0.308 -0.9514 -458.257 960.3381)" gradientUnits="userSpaceOnUse">
|
|
496
|
+
<stop offset="8.610000e-02" style="stop-color:#8BC541"/>
|
|
497
|
+
<stop offset="0.8204" style="stop-color:#009247"/>
|
|
498
|
+
</radialGradient>
|
|
499
|
+
<circle class="st21" cx="14.2" cy="32.9" r="1.8"/>
|
|
500
|
+
<path class="st5" d="M14.8,34.7c-1,0.3-2.1-0.2-2.4-1.2c-0.3-1,0.2-2.1,1.2-2.4c1-0.3,2.1,0.2,2.4,1.2
|
|
501
|
+
C16.3,33.3,15.8,34.4,14.8,34.7z M13.7,31.2c-0.9,0.3-1.4,1.3-1.1,2.2s1.3,1.4,2.2,1.1c0.9-0.3,1.4-1.3,1.1-2.2
|
|
502
|
+
C15.6,31.4,14.6,30.9,13.7,31.2z"/>
|
|
503
|
+
<linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="677.9541" y1="247.3055" x2="678.1541" y2="244.0455" gradientTransform="matrix(0.601 -0.7993 -0.7993 -0.601 -196.0403 721.8913)">
|
|
504
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
505
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
506
|
+
</linearGradient>
|
|
507
|
+
<path class="st22" d="M14.9,31.8c0.3,0.2,0.4,0.4,0.3,0.6c-0.1,0.1-0.4,0-0.6-0.1c-0.3-0.2-0.4-0.4-0.3-0.6
|
|
508
|
+
C14.4,31.6,14.6,31.6,14.9,31.8z"/>
|
|
509
|
+
<path class="st7" d="M14.2,33c0,0,0.1-0.7,0.1-1s0.4,0,0.4,0l-0.4,1C14.4,33.1,14.2,33,14.2,33z"/>
|
|
510
|
+
<path class="st8" d="M14.4,33.1L14.1,33l0,0c0,0,0.1-0.7,0.1-1c0-0.1,0.1-0.1,0.1-0.1c0.1,0,0.4,0.1,0.4,0.1l0,0
|
|
511
|
+
C14.8,32,14.4,33.1,14.4,33.1z M14.2,32.9l0.1,0.1l0.4-1c-0.1,0-0.2-0.1-0.3-0.1c0,0,0,0-0.1,0.1C14.3,32.2,14.2,32.8,14.2,32.9z"/>
|
|
512
|
+
<path class="st9" d="M14.3,32.2l0.4,0.1l0.1-0.3c0,0-0.3-0.3-0.4-0.1C14.2,32.2,14.3,32.2,14.3,32.2z"/>
|
|
513
|
+
<path class="st8" d="M14.7,32.4l-0.4-0.1l0,0c0,0,0-0.1,0.1-0.3c0,0,0.1-0.1,0.1-0.1c0.1,0,0.4,0.1,0.4,0.1l0,0L14.7,32.4z
|
|
514
|
+
M14.3,32.2l0.3,0.1l0.1-0.2c-0.1,0-0.2-0.1-0.3-0.1c0,0,0,0-0.1,0C14.3,32.1,14.3,32.2,14.3,32.2z"/>
|
|
515
|
+
<path class="st10" d="M13.7,32.9C13.7,32.9,13.8,32.9,13.7,32.9c0.1,0,0.1,0,0.2,0c0,0,0,0,0.1,0s0.1,0,0.1,0c0,0,0.1,0,0.1,0
|
|
516
|
+
c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0.1c0,0,0,0,0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0
|
|
517
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0-0.1,0C14.1,33,14.1,33,14,33c0,0,0,0-0.1,0
|
|
518
|
+
c0,0,0,0-0.1,0C13.9,32.9,13.9,32.9,13.7,32.9C13.8,32.9,13.8,32.9,13.7,32.9C13.8,32.9,13.7,32.9,13.7,32.9z"/>
|
|
519
|
+
<path class="st10" d="M14.3,33.1C14.3,33.1,14.4,33,14.3,33.1C14.4,33,14.4,33,14.3,33.1c0.1-0.1,0.2-0.2,0.3-0.2c0,0,0.1,0,0.1-0.1
|
|
520
|
+
c0,0,0,0,0.1,0c0,0,0,0,0.1,0c0.1,0,0.1,0,0.1,0s0,0-0.1,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0.1c-0.1,0.1-0.1,0.1-0.2,0.2
|
|
521
|
+
C14.5,33.1,14.4,33.1,14.3,33.1C14.4,33.1,14.4,33.1,14.3,33.1C14.4,33.1,14.3,33.1,14.3,33.1z"/>
|
|
522
|
+
<linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="734.8053" y1="738.5837" x2="734.9854" y2="735.3137" gradientTransform="matrix(0.9514 -0.308 -0.308 -0.9514 -458.257 960.3381)">
|
|
523
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
524
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
525
|
+
</linearGradient>
|
|
526
|
+
<path class="st23" d="M13.5,31.4c0.2-0.1,0.5,0.2,0.4,0.5c-0.1,0.3-0.6,0.7-0.3,1c0.3,0.1,0.6,0.3,0.8,0.5c0.2,0.3,0.1-0.3,0.6-0.6
|
|
527
|
+
c0.6-0.2,0.8,0.9-0.1,1.3c-0.8,0.4-1.4,0.1-1.8-0.1c-0.4-0.2-1-1.2-0.5-2C13.1,31.7,13.3,31.5,13.5,31.4z"/>
|
|
528
|
+
<radialGradient id="SVGID_16_" cx="3843.2927" cy="814.6183" r="2.2369" gradientTransform="matrix(0.1929 -0.9812 -0.9812 -0.1929 70.5663 3964.8589)" gradientUnits="userSpaceOnUse">
|
|
529
|
+
<stop offset="8.610000e-02" style="stop-color:#8BC541"/>
|
|
530
|
+
<stop offset="0.8204" style="stop-color:#009247"/>
|
|
531
|
+
</radialGradient>
|
|
532
|
+
<circle class="st24" cx="12.1" cy="36.1" r="1.8"/>
|
|
533
|
+
<path class="st5" d="M14,36.5c-0.2,1-1.2,1.7-2.2,1.5c-1-0.2-1.7-1.2-1.5-2.2c0.2-1,1.2-1.7,2.2-1.5C13.5,34.5,14.2,35.5,14,36.5z
|
|
534
|
+
M10.4,35.8c-0.2,0.9,0.4,1.9,1.4,2.1c0.9,0.2,1.9-0.4,2.1-1.4c0.2-0.9-0.4-1.9-1.4-2.1C11.5,34.2,10.6,34.9,10.4,35.8z"/>
|
|
535
|
+
<linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="3265.5757" y1="-1476.7742" x2="3265.7756" y2="-1480.0742" gradientTransform="matrix(-0.4067 -0.9136 -0.9136 0.4067 -10.4567 3619.8293)">
|
|
536
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
537
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
538
|
+
</linearGradient>
|
|
539
|
+
<path class="st25" d="M11.6,35c0.3-0.1,0.6-0.1,0.6,0c0.1,0.1-0.1,0.3-0.4,0.5c-0.3,0.1-0.6,0.1-0.6,0C11.1,35.4,11.3,35.1,11.6,35z
|
|
540
|
+
"/>
|
|
541
|
+
<path class="st7" d="M12.2,36.2c0,0-0.6-0.4-0.8-0.6c-0.1-0.2,0.2-0.4,0.2-0.4l0.7,0.8C12.4,36.1,12.2,36.2,12.2,36.2z"/>
|
|
542
|
+
<path class="st8" d="M12.5,36.1l-0.3,0.1l0,0c0,0-0.6-0.4-0.8-0.6c0,0-0.1-0.1,0-0.1c0-0.2,0.3-0.3,0.3-0.3l0,0
|
|
543
|
+
C11.7,35.2,12.5,36.1,12.5,36.1z M12.2,36.1l0.1-0.1l-0.7-0.8c-0.1,0-0.2,0.1-0.2,0.2c0,0,0,0.1,0,0.1
|
|
544
|
+
C11.6,35.7,12.1,36.1,12.2,36.1z"/>
|
|
545
|
+
<path class="st9" d="M11.6,35.8l0.3-0.3l-0.2-0.2c0,0-0.4,0.1-0.3,0.3C11.5,35.8,11.6,35.8,11.6,35.8z"/>
|
|
546
|
+
<path class="st8" d="M11.9,35.5l-0.3,0.3h0c0,0-0.1,0-0.2-0.2c0,0,0-0.1,0-0.1c0-0.2,0.3-0.3,0.3-0.3l0,0L11.9,35.5z M11.6,35.7
|
|
547
|
+
l0.2-0.2l-0.2-0.2c-0.1,0-0.2,0.1-0.2,0.2c0,0,0,0,0,0.1C11.5,35.7,11.6,35.7,11.6,35.7z"/>
|
|
548
|
+
<path class="st10" d="M11.9,36.5L11.9,36.5c0-0.1,0-0.1,0.1-0.1c0,0,0,0,0-0.1s0,0,0.1-0.1c0,0,0,0,0.1-0.1c0,0,0.1,0,0.1-0.1
|
|
549
|
+
c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0
|
|
550
|
+
c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0-0.1,0.1-0.1,0.1c0,0,0,0-0.1,0c0,0,0,0-0.1,0
|
|
551
|
+
C12,36.4,12,36.4,11.9,36.5C11.9,36.5,11.9,36.5,11.9,36.5C11.9,36.5,11.9,36.5,11.9,36.5z"/>
|
|
552
|
+
<path class="st10" d="M12.4,36.1C12.4,36.1,12.4,36.1,12.4,36.1c0-0.1,0-0.1,0-0.1c0-0.1,0-0.2,0-0.3c0,0,0-0.1,0-0.1c0,0,0,0,0-0.1
|
|
553
|
+
c0,0,0,0,0-0.1c0-0.1,0-0.1,0-0.1s0,0,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0.1c0,0,0,0.1,0,0.1c0,0.1,0,0.2,0,0.2
|
|
554
|
+
C12.4,36,12.4,36,12.4,36.1C12.4,36.1,12.4,36.1,12.4,36.1C12.4,36.1,12.4,36.1,12.4,36.1z"/>
|
|
555
|
+
<linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="3843.3953" y1="816.8746" x2="3843.5955" y2="813.6046" gradientTransform="matrix(0.1929 -0.9812 -0.9812 -0.1929 70.5663 3964.8589)">
|
|
556
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
557
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
558
|
+
</linearGradient>
|
|
559
|
+
<path class="st26" d="M10.5,36.1c0-0.2,0.4-0.4,0.7-0.1c0.2,0.3,0.3,0.9,0.8,0.8c0.2-0.3,0.5-0.4,0.9-0.5c0.3-0.1-0.2-0.2-0.2-0.8
|
|
560
|
+
c0.1-0.6,1.1-0.2,1.1,0.7c0,0.9-0.6,1.3-1,1.5s-1.5,0.2-1.9-0.5C10.5,36.5,10.5,36.3,10.5,36.1z"/>
|
|
561
|
+
<radialGradient id="SVGID_19_" cx="3838.093" cy="805.7083" r="2.2367" gradientTransform="matrix(0.1929 -0.9812 -0.9812 -0.1929 70.5663 3964.8589)" gradientUnits="userSpaceOnUse">
|
|
562
|
+
<stop offset="8.610000e-02" style="stop-color:#8BC541"/>
|
|
563
|
+
<stop offset="0.8204" style="stop-color:#009247"/>
|
|
564
|
+
</radialGradient>
|
|
565
|
+
<circle class="st27" cx="19.9" cy="43" r="1.8"/>
|
|
566
|
+
<path class="st5" d="M21.8,43.3c-0.2,1-1.2,1.7-2.2,1.5c-1-0.2-1.7-1.2-1.5-2.2c0.2-1,1.2-1.7,2.2-1.5C21.3,41.3,22,42.3,21.8,43.3z
|
|
567
|
+
M18.2,42.6c-0.2,0.9,0.4,1.9,1.4,2.1c0.9,0.2,1.9-0.4,2.1-1.4c0.2-0.9-0.4-1.9-1.4-2.1C19.3,41.1,18.3,41.7,18.2,42.6z"/>
|
|
568
|
+
<linearGradient id="SVGID_20_" gradientUnits="userSpaceOnUse" x1="3256.2349" y1="-1481.0784" x2="3256.335" y2="-1484.3784" gradientTransform="matrix(-0.4067 -0.9136 -0.9136 0.4067 -10.4567 3619.8293)">
|
|
569
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
570
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
571
|
+
</linearGradient>
|
|
572
|
+
<path class="st28" d="M19.3,41.8c0.3-0.1,0.6-0.1,0.6,0c0.1,0.1-0.1,0.3-0.4,0.5c-0.3,0.1-0.6,0.1-0.6,0C18.8,42.2,19,42,19.3,41.8z
|
|
573
|
+
"/>
|
|
574
|
+
<path class="st7" d="M19.9,43c0,0-0.6-0.4-0.8-0.6c-0.1-0.2,0.2-0.4,0.2-0.4l0.7,0.8L19.9,43z"/>
|
|
575
|
+
<path class="st8" d="M20.2,42.9l-0.3,0.1l0,0c0,0-0.6-0.4-0.8-0.6c0,0,0-0.1,0-0.1c0-0.2,0.3-0.3,0.3-0.3l0,0
|
|
576
|
+
C19.4,42,20.2,42.9,20.2,42.9z M19.9,43l0.1-0.1l-0.7-0.8c-0.1,0-0.2,0.1-0.2,0.2c0,0,0,0.1,0,0.1C19.3,42.6,19.8,42.9,19.9,43z"/>
|
|
577
|
+
<path class="st9" d="M19.4,42.6l0.3-0.3l-0.2-0.2c0,0-0.4,0.1-0.3,0.3C19.3,42.6,19.4,42.6,19.4,42.6z"/>
|
|
578
|
+
<path class="st8" d="M19.7,42.3l-0.3,0.3h0c0,0-0.1,0-0.2-0.2c0,0,0-0.1,0-0.1c0-0.2,0.3-0.3,0.3-0.3l0,0
|
|
579
|
+
C19.4,42,19.7,42.3,19.7,42.3z M19.3,42.5l0.2-0.2l-0.2-0.2c-0.1,0-0.2,0.1-0.2,0.2c0,0,0,0,0,0.1C19.3,42.5,19.3,42.5,19.3,42.5z"
|
|
580
|
+
/>
|
|
581
|
+
<path class="st10" d="M19.6,43.3L19.6,43.3c0-0.1,0-0.1,0.1-0.1c0,0,0,0,0-0.1s0,0,0.1-0.1c0,0,0,0,0.1-0.1c0,0,0,0,0.1-0.1
|
|
582
|
+
c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0
|
|
583
|
+
c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0-0.1,0.1-0.1,0.1c0,0,0,0-0.1,0c0,0,0,0-0.1,0
|
|
584
|
+
C19.7,43.3,19.7,43.3,19.6,43.3C19.7,43.3,19.7,43.3,19.6,43.3C19.7,43.3,19.6,43.3,19.6,43.3z"/>
|
|
585
|
+
<path class="st10" d="M20.1,42.9C20.1,42.9,20.1,42.9,20.1,42.9c0-0.1,0-0.1,0-0.1c0-0.1,0-0.2,0-0.3c0,0,0-0.1,0-0.1c0,0,0,0,0-0.1
|
|
586
|
+
c0,0,0,0,0-0.1c0-0.1,0-0.1,0-0.1s0,0,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0.1c0,0,0,0.1,0,0.1c0,0.1,0,0.2,0,0.2
|
|
587
|
+
C20.2,42.8,20.2,42.8,20.1,42.9C20.2,42.9,20.2,42.9,20.1,42.9C20.2,42.9,20.1,42.9,20.1,42.9z"/>
|
|
588
|
+
<linearGradient id="SVGID_21_" gradientUnits="userSpaceOnUse" x1="3838.199" y1="807.9647" x2="3838.3987" y2="804.6948" gradientTransform="matrix(0.1929 -0.9812 -0.9812 -0.1929 70.5663 3964.8589)">
|
|
589
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
590
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
591
|
+
</linearGradient>
|
|
592
|
+
<path class="st29" d="M18.3,42.9c0-0.2,0.4-0.4,0.7-0.1c0.2,0.3,0.3,0.9,0.8,0.8c0.2-0.3,0.5-0.4,0.9-0.5c0.3-0.1-0.2-0.2-0.2-0.8
|
|
593
|
+
c0.1-0.6,1.1-0.2,1.1,0.7c0,0.9-0.6,1.3-1,1.5s-1.5,0.2-1.9-0.5C18.3,43.3,18.3,43.1,18.3,42.9z"/>
|
|
594
|
+
<radialGradient id="SVGID_22_" cx="3847.7927" cy="809.0683" r="2.2367" gradientTransform="matrix(0.1929 -0.9812 -0.9812 -0.1929 70.5663 3964.8589)" gradientUnits="userSpaceOnUse">
|
|
595
|
+
<stop offset="8.610000e-02" style="stop-color:#8BC541"/>
|
|
596
|
+
<stop offset="0.8204" style="stop-color:#009247"/>
|
|
597
|
+
</radialGradient>
|
|
598
|
+
<circle class="st30" cx="18.4" cy="32.9" r="1.8"/>
|
|
599
|
+
<path class="st5" d="M20.3,33.2c-0.2,1-1.2,1.7-2.2,1.5c-1-0.2-1.7-1.2-1.5-2.2c0.2-1,1.2-1.7,2.2-1.5
|
|
600
|
+
C19.8,31.2,20.5,32.2,20.3,33.2z M16.7,32.5c-0.2,0.9,0.4,1.9,1.4,2.1c0.9,0.2,1.9-0.4,2.1-1.4c0.2-0.9-0.4-1.9-1.4-2.1
|
|
601
|
+
C17.8,30.9,16.9,31.6,16.7,32.5z"/>
|
|
602
|
+
<linearGradient id="SVGID_23_" gradientUnits="userSpaceOnUse" x1="3266.0181" y1="-1483.8778" x2="3266.218" y2="-1487.1777" gradientTransform="matrix(-0.4067 -0.9136 -0.9136 0.4067 -10.4567 3619.8293)">
|
|
603
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
604
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
605
|
+
</linearGradient>
|
|
606
|
+
<path class="st31" d="M17.9,31.7c0.3-0.1,0.6-0.1,0.6,0c0.1,0.1-0.1,0.3-0.4,0.5c-0.3,0.1-0.6,0.1-0.6,0
|
|
607
|
+
C17.4,32.1,17.6,31.9,17.9,31.7z"/>
|
|
608
|
+
<path class="st7" d="M18.5,32.9c0,0-0.6-0.4-0.8-0.6C17.6,32.1,18,32,18,32l0.7,0.8L18.5,32.9z"/>
|
|
609
|
+
<path class="st8" d="M18.8,32.8L18.5,33l0,0c0,0-0.6-0.4-0.8-0.6c0,0,0-0.1,0-0.1c0-0.2,0.3-0.3,0.3-0.3l0,0L18.8,32.8z M18.5,32.9
|
|
610
|
+
l0.1-0.1L18,32c-0.1,0-0.2,0.1-0.2,0.2c0,0,0,0.1,0,0.1C17.9,32.5,18.4,32.8,18.5,32.9z"/>
|
|
611
|
+
<path class="st9" d="M17.9,32.5l0.3-0.3L18,32c0,0-0.4,0.1-0.3,0.3C17.8,32.5,17.9,32.5,17.9,32.5z"/>
|
|
612
|
+
<path class="st8" d="M18.2,32.2l-0.3,0.3h0c0,0-0.1,0-0.2-0.2c0,0,0-0.1,0-0.1c0-0.2,0.3-0.3,0.3-0.3l0,0
|
|
613
|
+
C18,31.9,18.2,32.2,18.2,32.2z M17.9,32.4l0.2-0.2L18,32c-0.1,0-0.2,0.1-0.2,0.2c0,0,0,0,0,0.1C17.8,32.4,17.9,32.4,17.9,32.4z"/>
|
|
614
|
+
<path class="st10" d="M18.2,33.2L18.2,33.2c0-0.1,0-0.1,0.1-0.1c0,0,0,0,0-0.1s0,0,0.1-0.1c0,0,0,0,0.1-0.1c0,0,0,0,0.1-0.1
|
|
615
|
+
c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0
|
|
616
|
+
c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0-0.1,0.1-0.1,0.1c0,0,0,0-0.1,0c0,0,0,0-0.1,0
|
|
617
|
+
C18.3,33.1,18.3,33.2,18.2,33.2C18.3,33.2,18.2,33.2,18.2,33.2C18.2,33.2,18.2,33.2,18.2,33.2z"/>
|
|
618
|
+
<path class="st10" d="M18.7,32.8C18.7,32.8,18.7,32.8,18.7,32.8c0-0.1,0-0.1,0-0.1c0-0.1,0-0.2,0-0.3c0,0,0-0.1,0-0.1c0,0,0,0,0-0.1
|
|
619
|
+
c0,0,0,0,0-0.1c0-0.1,0-0.1,0-0.1s0,0,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0.1c0,0,0,0.1,0,0.1c0,0.1,0,0.2,0,0.2
|
|
620
|
+
C18.7,32.7,18.7,32.7,18.7,32.8C18.7,32.8,18.7,32.8,18.7,32.8C18.7,32.8,18.7,32.8,18.7,32.8z"/>
|
|
621
|
+
<linearGradient id="SVGID_24_" gradientUnits="userSpaceOnUse" x1="3847.9028" y1="811.3217" x2="3848.0029" y2="808.0516" gradientTransform="matrix(0.1929 -0.9812 -0.9812 -0.1929 70.5663 3964.8589)">
|
|
622
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
623
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
624
|
+
</linearGradient>
|
|
625
|
+
<path class="st32" d="M16.8,32.8c0-0.2,0.4-0.4,0.7-0.1c0.2,0.3,0.3,0.9,0.8,0.8c0.2-0.3,0.5-0.4,0.9-0.5c0.3-0.1-0.2-0.2-0.2-0.8
|
|
626
|
+
c0.1-0.6,1.1-0.2,1.1,0.7c0,0.9-0.6,1.3-1,1.5s-1.5,0.2-1.9-0.5C16.8,33.2,16.8,33,16.8,32.8z"/>
|
|
627
|
+
<radialGradient id="SVGID_25_" cx="-441.5557" cy="-3135.8743" r="2.236" gradientTransform="matrix(0.4324 0.9017 0.9017 -0.4324 3031.0557 -917.7594)" gradientUnits="userSpaceOnUse">
|
|
628
|
+
<stop offset="8.610000e-02" style="stop-color:#8BC541"/>
|
|
629
|
+
<stop offset="0.8204" style="stop-color:#009247"/>
|
|
630
|
+
</radialGradient>
|
|
631
|
+
<circle class="st33" cx="13.2" cy="40" r="1.8"/>
|
|
632
|
+
<path class="st5" d="M11.4,40.8c-0.5-1-0.1-2.1,0.9-2.6c1-0.5,2.1-0.1,2.6,0.9c0.5,1,0.1,2.1-0.9,2.6C13,42.2,11.9,41.8,11.4,40.8z
|
|
633
|
+
M14.7,39.2c-0.4-0.9-1.5-1.2-2.3-0.8c-0.9,0.4-1.2,1.5-0.8,2.3c0.4,0.9,1.5,1.2,2.3,0.8C14.8,41.1,15.2,40.1,14.7,39.2z"/>
|
|
634
|
+
<linearGradient id="SVGID_26_" gradientUnits="userSpaceOnUse" x1="-2511.8984" y1="-2243.1499" x2="-2511.6985" y2="-2246.45" gradientTransform="matrix(0.8724 0.4888 0.4888 -0.8724 3302.437 -689.7916)">
|
|
635
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
636
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
637
|
+
</linearGradient>
|
|
638
|
+
<path class="st34" d="M14.3,40.5c-0.2,0.3-0.4,0.4-0.5,0.4c-0.1-0.1-0.1-0.4,0.1-0.6c0.2-0.3,0.4-0.4,0.5-0.4S14.5,40.2,14.3,40.5z"
|
|
639
|
+
/>
|
|
640
|
+
<path class="st7" d="M13.1,40c0,0,0.7,0,1,0c0.2,0.1,0,0.4,0,0.4L13,40.2C13,40.2,13.1,40,13.1,40z"/>
|
|
641
|
+
<path class="st8" d="M12.9,40.2l0.1-0.3l0,0c0,0,0.7,0,1,0c0.1,0,0.1,0,0.1,0.1c0.1,0.1-0.1,0.4-0.1,0.4l0,0
|
|
642
|
+
C14.1,40.5,12.9,40.2,12.9,40.2z M13.1,40l-0.1,0.1l1,0.2c0-0.1,0.1-0.2,0.1-0.3c0,0,0,0-0.1-0.1C13.8,40,13.2,40,13.1,40z"/>
|
|
643
|
+
<path class="st9" d="M13.8,40l0,0.4l0.3,0.1c0,0,0.2-0.3,0-0.4C13.9,39.9,13.8,40,13.8,40z"/>
|
|
644
|
+
<path class="st8" d="M13.7,40.4l0-0.4l0,0c0,0,0.1-0.1,0.3,0c0,0,0.1,0,0.1,0.1c0.1,0.1-0.1,0.4-0.1,0.4l0,0
|
|
645
|
+
C14.1,40.5,13.7,40.4,13.7,40.4z M13.8,40l0,0.3l0.2,0.1c0-0.1,0.1-0.2,0.1-0.3c0,0,0,0-0.1,0C13.9,40,13.9,40,13.8,40z"/>
|
|
646
|
+
<path class="st10" d="M13.1,39.5C13.1,39.5,13.1,39.5,13.1,39.5c0,0.1,0,0.1,0,0.2c0,0,0,0,0,0.1s0,0.1,0,0.1c0,0,0,0.1,0,0.1
|
|
647
|
+
c0,0,0,0.1,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0.1s0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0
|
|
648
|
+
c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0-0.1c0,0,0,0,0-0.1c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0.1-0.2c0,0,0-0.1,0-0.1
|
|
649
|
+
c0,0,0,0,0-0.1C13.1,39.7,13.1,39.6,13.1,39.5C13.1,39.6,13.1,39.6,13.1,39.5C13.1,39.5,13.1,39.5,13.1,39.5z"/>
|
|
650
|
+
<path class="st10" d="M13,40.1C13,40.1,13,40.2,13,40.1C13.1,40.2,13.1,40.2,13,40.1c0.1,0.1,0.2,0.2,0.3,0.3c0,0,0.1,0.1,0.1,0.1
|
|
651
|
+
c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0.1,0,0.1,0,0.1s0,0-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.1-0.1-0.2-0.2
|
|
652
|
+
C13,40.3,13,40.2,13,40.1C13,40.2,13,40.2,13,40.1C13,40.2,13,40.1,13,40.1z"/>
|
|
653
|
+
<linearGradient id="SVGID_27_" gradientUnits="userSpaceOnUse" x1="-441.6491" y1="-3133.5781" x2="-441.4691" y2="-3136.8782" gradientTransform="matrix(0.4324 0.9017 0.9017 -0.4324 3031.0557 -917.7594)">
|
|
654
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
655
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
656
|
+
</linearGradient>
|
|
657
|
+
<path class="st35" d="M14.5,39.1c0.1,0.2-0.1,0.6-0.5,0.5c-0.3-0.1-0.8-0.5-1.1-0.2c0,0.3-0.2,0.6-0.4,0.9c-0.2,0.3,0.3,0.1,0.7,0.6
|
|
658
|
+
c0.3,0.5-0.7,0.9-1.3,0.1c-0.6-0.8-0.3-1.4-0.1-1.8c0.2-0.4,1.1-1.1,1.9-0.7C14.2,38.7,14.4,38.9,14.5,39.1z"/>
|
|
659
|
+
<radialGradient id="SVGID_28_" cx="-433.7657" cy="-3134.2742" r="2.2356" gradientTransform="matrix(0.4324 0.9017 0.9017 -0.4324 3031.0557 -917.7594)" gradientUnits="userSpaceOnUse">
|
|
660
|
+
<stop offset="8.610000e-02" style="stop-color:#8BC541"/>
|
|
661
|
+
<stop offset="0.8204" style="stop-color:#009247"/>
|
|
662
|
+
</radialGradient>
|
|
663
|
+
<circle class="st36" cx="18" cy="46.3" r="1.8"/>
|
|
664
|
+
<path class="st5" d="M16.2,47.1c-0.5-1-0.1-2.1,0.9-2.6c1-0.5,2.1-0.1,2.6,0.9c0.5,1,0.1,2.1-0.9,2.6C17.8,48.5,16.7,48.1,16.2,47.1
|
|
665
|
+
z M19.5,45.6c-0.4-0.9-1.5-1.2-2.3-0.8c-0.9,0.4-1.2,1.5-0.8,2.3c0.4,0.9,1.5,1.2,2.3,0.8C19.6,47.5,20,46.4,19.5,45.6z"/>
|
|
666
|
+
<linearGradient id="SVGID_29_" gradientUnits="userSpaceOnUse" x1="-2504.5791" y1="-2246.3418" x2="-2504.479" y2="-2249.6418" gradientTransform="matrix(0.8724 0.4888 0.4888 -0.8724 3302.437 -689.7916)">
|
|
667
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
668
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
669
|
+
</linearGradient>
|
|
670
|
+
<path class="st37" d="M19.1,46.9c-0.2,0.3-0.4,0.4-0.5,0.4c-0.1-0.1-0.1-0.4,0.1-0.6c0.2-0.3,0.4-0.4,0.5-0.4S19.3,46.6,19.1,46.9z"
|
|
671
|
+
/>
|
|
672
|
+
<path class="st7" d="M17.9,46.3c0,0,0.7,0,1,0c0.2,0.1,0,0.4,0,0.4l-1.1-0.2L17.9,46.3z"/>
|
|
673
|
+
<path class="st8" d="M17.7,46.5l0.1-0.3l0,0c0,0,0.7,0,1,0c0.1,0,0.1,0,0.1,0.1c0.1,0.1-0.1,0.4-0.1,0.4l0,0
|
|
674
|
+
C18.9,46.8,17.7,46.5,17.7,46.5z M17.9,46.3l-0.1,0.1l1,0.2c0-0.1,0.1-0.2,0.1-0.3c0,0,0,0-0.1-0.1C18.6,46.3,18,46.3,17.9,46.3z"/>
|
|
675
|
+
<path class="st9" d="M18.6,46.3l0,0.4l0.3,0.1c0,0,0.2-0.3,0-0.4C18.7,46.2,18.6,46.3,18.6,46.3z"/>
|
|
676
|
+
<path class="st8" d="M18.5,46.7l0-0.4l0,0c0,0,0.1-0.1,0.3,0c0,0,0.1,0,0.1,0.1c0.1,0.1-0.1,0.4-0.1,0.4l0,0
|
|
677
|
+
C18.9,46.8,18.5,46.7,18.5,46.7z M18.6,46.3l0,0.3l0.2,0.1c0-0.1,0.1-0.2,0.1-0.3c0,0,0,0-0.1,0C18.7,46.3,18.7,46.3,18.6,46.3z"/>
|
|
678
|
+
<path class="st10" d="M17.9,45.9C17.9,45.9,17.9,45.9,17.9,45.9c0,0.1,0,0.1,0,0.2c0,0,0,0,0,0.1s0,0.1,0,0.1c0,0,0,0.1,0,0.1
|
|
679
|
+
c0,0,0,0.1,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0.1s0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0
|
|
680
|
+
c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0-0.1c0,0,0,0,0-0.1c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0.1-0.2c0,0,0-0.1,0-0.1
|
|
681
|
+
c0,0,0,0,0-0.1C17.9,46,17.9,46,17.9,45.9C17.9,45.9,17.9,45.9,17.9,45.9C17.9,45.9,17.9,45.9,17.9,45.9z"/>
|
|
682
|
+
<path class="st10" d="M17.8,46.5C17.8,46.5,17.8,46.5,17.8,46.5C17.8,46.5,17.9,46.5,17.8,46.5c0.1,0.1,0.2,0.2,0.3,0.3
|
|
683
|
+
c0,0,0.1,0.1,0.1,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0.1,0,0.1,0,0.1s0,0-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1-0.1-0.1-0.1
|
|
684
|
+
c-0.1-0.1-0.1-0.1-0.2-0.2C17.8,46.6,17.8,46.6,17.8,46.5C17.8,46.6,17.8,46.5,17.8,46.5C17.8,46.5,17.8,46.5,17.8,46.5z"/>
|
|
685
|
+
<linearGradient id="SVGID_30_" gradientUnits="userSpaceOnUse" x1="-433.8576" y1="-3132.0784" x2="-433.6776" y2="-3135.2783" gradientTransform="matrix(0.4324 0.9017 0.9017 -0.4324 3031.0557 -917.7594)">
|
|
686
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
687
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
688
|
+
</linearGradient>
|
|
689
|
+
<path class="st38" d="M19.3,45.4c0.1,0.2-0.1,0.6-0.5,0.5c-0.3-0.1-0.8-0.5-1.1-0.2c0,0.3-0.2,0.6-0.4,0.9c-0.2,0.3,0.3,0.1,0.7,0.6
|
|
690
|
+
c0.3,0.5-0.7,0.9-1.3,0.1c-0.5-0.8-0.3-1.4-0.1-1.8c0.2-0.4,1.1-1.1,1.9-0.7C19,45.1,19.2,45.2,19.3,45.4z"/>
|
|
691
|
+
<radialGradient id="SVGID_31_" cx="2968.6487" cy="1129.5712" r="2.2354" gradientTransform="matrix(0.4779 -0.8784 -0.8784 -0.4779 -414.13 3191.7693)" gradientUnits="userSpaceOnUse">
|
|
692
|
+
<stop offset="8.610000e-02" style="stop-color:#8BC541"/>
|
|
693
|
+
<stop offset="0.8204" style="stop-color:#009247"/>
|
|
694
|
+
</radialGradient>
|
|
695
|
+
<circle class="st39" cx="12" cy="43.7" r="1.8"/>
|
|
696
|
+
<path class="st5" d="M13.7,44.6c-0.5,0.9-1.7,1.3-2.6,0.8c-0.9-0.5-1.3-1.7-0.8-2.6c0.5-0.9,1.7-1.3,2.6-0.8
|
|
697
|
+
C13.9,42.6,14.2,43.7,13.7,44.6z M10.5,42.9c-0.5,0.8-0.1,1.9,0.7,2.4c0.9,0.5,1.9,0.1,2.4-0.7c0.5-0.8,0.1-1.9-0.7-2.4
|
|
698
|
+
C12,41.7,11,42,10.5,42.9z"/>
|
|
699
|
+
<linearGradient id="SVGID_32_" gradientUnits="userSpaceOnUse" x1="2731.1868" y1="-716.006" x2="2731.3867" y2="-719.306" gradientTransform="matrix(-0.1144 -0.9935 -0.9935 0.1144 -388.0941 2838.2708)">
|
|
700
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
701
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
702
|
+
</linearGradient>
|
|
703
|
+
<path class="st40" d="M11.8,42.5c0.3,0,0.6,0,0.6,0.2c0,0.1-0.2,0.3-0.5,0.3s-0.6,0-0.6-0.2C11.3,42.7,11.5,42.5,11.8,42.5z"/>
|
|
704
|
+
<path class="st7" d="M12.1,43.8c0,0-0.5-0.6-0.6-0.8c-0.1-0.2,0.3-0.3,0.3-0.3l0.4,1C12.3,43.8,12.1,43.8,12.1,43.8z"/>
|
|
705
|
+
<path class="st8" d="M12.4,43.8l-0.3,0.1l0,0c0,0-0.5-0.6-0.6-0.8c0-0.1,0-0.1,0-0.2c0.1-0.1,0.3-0.2,0.4-0.2l0,0
|
|
706
|
+
C11.9,42.7,12.4,43.8,12.4,43.8z M12.1,43.8l0.1,0l-0.4-0.9c-0.1,0-0.2,0-0.3,0.1c0,0,0,0.1,0,0.1C11.6,43.2,12,43.7,12.1,43.8z"/>
|
|
707
|
+
<path class="st9" d="M11.7,43.2L12,43l-0.1-0.3c0,0-0.4,0-0.3,0.2C11.6,43.2,11.7,43.2,11.7,43.2z"/>
|
|
708
|
+
<path class="st8" d="M12,43l-0.4,0.2l0,0c0,0-0.1,0-0.2-0.3c0,0,0-0.1,0-0.1c0.1-0.1,0.3-0.2,0.4-0.2l0,0L12,43z M11.7,43.2l0.3-0.2
|
|
709
|
+
l-0.1-0.2c-0.1,0-0.2,0-0.3,0.1c0,0,0,0,0,0.1C11.6,43.1,11.6,43.2,11.7,43.2z"/>
|
|
710
|
+
<path class="st10" d="M11.7,44C11.7,44,11.7,44,11.7,44c0,0,0.1-0.1,0.1-0.1c0,0,0,0,0.1,0c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0
|
|
711
|
+
c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0
|
|
712
|
+
c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.2,0.1c0,0-0.1,0-0.1,0
|
|
713
|
+
c0,0,0,0-0.1,0C11.8,44,11.8,44,11.7,44C11.8,44,11.8,44,11.7,44C11.7,44,11.7,44,11.7,44z"/>
|
|
714
|
+
<path class="st10" d="M12.3,43.8C12.3,43.8,12.3,43.7,12.3,43.8c0-0.1,0-0.1,0-0.1c0-0.1,0-0.2,0.1-0.2c0,0,0-0.1,0-0.1
|
|
715
|
+
c0,0,0,0,0-0.1s0,0,0,0c0-0.1,0.1-0.1,0.1-0.1s0,0-0.1,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0.1c0,0,0,0.1,0,0.1c0,0.1,0,0.2,0,0.2
|
|
716
|
+
C12.4,43.7,12.4,43.7,12.3,43.8C12.4,43.7,12.4,43.8,12.3,43.8C12.4,43.8,12.3,43.8,12.3,43.8z"/>
|
|
717
|
+
<linearGradient id="SVGID_33_" gradientUnits="userSpaceOnUse" x1="2968.6467" y1="1131.8171" x2="2968.8469" y2="1128.5571" gradientTransform="matrix(0.4779 -0.8784 -0.8784 -0.4779 -414.13 3191.7693)">
|
|
718
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
719
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
720
|
+
</linearGradient>
|
|
721
|
+
<path class="st41" d="M10.5,43.2c0.1-0.2,0.5-0.2,0.7,0.1c0.1,0.3,0.1,0.9,0.5,1c0.3-0.2,0.6-0.2,1-0.2s-0.2-0.3,0.1-0.9
|
|
722
|
+
c0.2-0.6,1.1,0.1,0.8,1c-0.3,0.9-0.9,1-1.4,1.1c-0.4,0.1-1.5-0.2-1.7-1.1C10.4,43.6,10.4,43.4,10.5,43.2z"/>
|
|
723
|
+
<radialGradient id="SVGID_34_" cx="-176.8943" cy="-146.5015" r="2.2359" gradientTransform="matrix(0.9951 9.920000e-02 9.920000e-02 -0.9951 204.5467 -80.8679)" gradientUnits="userSpaceOnUse">
|
|
724
|
+
<stop offset="8.610000e-02" style="stop-color:#8BC541"/>
|
|
725
|
+
<stop offset="0.8204" style="stop-color:#009247"/>
|
|
726
|
+
</radialGradient>
|
|
727
|
+
<circle class="st42" cx="14.3" cy="46.9" r="1.8"/>
|
|
728
|
+
<path class="st5" d="M14.2,48.8c-1.1-0.1-1.8-1-1.7-2.1c0.1-1.1,1-1.8,2.1-1.7c1.1,0.1,1.8,1,1.7,2.1C16.1,48.1,15.2,48.9,14.2,48.8
|
|
729
|
+
z M14.5,45.1c-1-0.1-1.8,0.6-1.9,1.6c-0.1,1,0.6,1.8,1.6,1.9c1,0.1,1.8-0.6,1.9-1.6C16.2,46.1,15.5,45.2,14.5,45.1z"/>
|
|
730
|
+
<linearGradient id="SVGID_35_" gradientUnits="userSpaceOnUse" x1="-575.6176" y1="49.6585" x2="-575.4376" y2="46.3885" gradientTransform="matrix(0.871 -0.4913 -0.4913 -0.871 540.3176 -194.2124)">
|
|
731
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
732
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
733
|
+
</linearGradient>
|
|
734
|
+
<path class="st43" d="M15.4,46.2c0.2,0.3,0.2,0.6,0.1,0.6c-0.1,0.1-0.4-0.1-0.5-0.4s-0.2-0.6-0.1-0.6C15,45.7,15.2,45.9,15.4,46.2z"
|
|
735
|
+
/>
|
|
736
|
+
<path class="st7" d="M14.3,46.9c0,0,0.3-0.6,0.5-0.8c0.2-0.2,0.4,0.2,0.4,0.2l-0.8,0.8C14.4,47.1,14.3,46.9,14.3,46.9z"/>
|
|
737
|
+
<path class="st8" d="M14.4,47.2l-0.2-0.2l0,0c0,0,0.3-0.7,0.5-0.8c0,0,0.1-0.1,0.1-0.1c0.2,0,0.3,0.2,0.3,0.3l0,0
|
|
738
|
+
C15.2,46.3,14.4,47.2,14.4,47.2z M14.3,46.9l0.1,0.1l0.7-0.7c0-0.1-0.1-0.2-0.2-0.2c0,0-0.1,0-0.1,0C14.7,46.3,14.4,46.8,14.3,46.9z
|
|
739
|
+
"/>
|
|
740
|
+
<path class="st9" d="M14.7,46.3l0.3,0.2l0.2-0.2c0,0-0.2-0.4-0.4-0.2C14.7,46.2,14.7,46.3,14.7,46.3z"/>
|
|
741
|
+
<path class="st8" d="M15,46.6l-0.4-0.3l0,0c0,0,0-0.1,0.2-0.3c0,0,0.1,0,0.1,0c0.2,0,0.3,0.2,0.3,0.3l0,0C15.2,46.3,15,46.6,15,46.6
|
|
742
|
+
z M14.7,46.3l0.3,0.2l0.2-0.2c0-0.1-0.1-0.2-0.2-0.2c0,0,0,0-0.1,0C14.8,46.2,14.7,46.3,14.7,46.3z"/>
|
|
743
|
+
<path class="st10" d="M13.9,46.7C13.9,46.7,14,46.7,13.9,46.7c0.1,0,0.1,0,0.1,0.1c0,0,0,0,0.1,0c0,0,0,0,0.1,0.1c0,0,0,0,0.1,0.1
|
|
744
|
+
c0,0,0,0,0.1,0.1c0,0,0,0,0.1,0.1c0,0,0,0,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0
|
|
745
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0-0.1c0,0,0,0-0.1-0.1c0,0,0,0-0.1-0.1c0,0-0.1-0.1-0.1-0.1c0,0,0,0-0.1-0.1
|
|
746
|
+
c0,0,0,0,0,0C14,46.8,14,46.7,13.9,46.7C14,46.7,14,46.7,13.9,46.7C14,46.7,13.9,46.7,13.9,46.7z"/>
|
|
747
|
+
<path class="st10" d="M14.4,47.1C14.4,47.1,14.4,47.1,14.4,47.1c0.1,0,0.1,0,0.1,0c0.1,0,0.2,0,0.3,0c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0
|
|
748
|
+
c0,0,0,0,0.1,0c0.1,0,0.1,0,0.1,0s0,0-0.1,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c-0.1,0-0.2,0-0.2,0.1
|
|
749
|
+
C14.5,47.1,14.5,47.2,14.4,47.1C14.5,47.2,14.4,47.2,14.4,47.1L14.4,47.1z"/>
|
|
750
|
+
<linearGradient id="SVGID_36_" gradientUnits="userSpaceOnUse" x1="-176.9063" y1="-144.2511" x2="-176.7263" y2="-147.5211" gradientTransform="matrix(0.9951 9.920000e-02 9.920000e-02 -0.9951 204.5467 -80.8679)">
|
|
751
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
752
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
753
|
+
</linearGradient>
|
|
754
|
+
<path class="st44" d="M14.3,45.3c0.2,0,0.4,0.4,0.2,0.6c-0.2,0.3-0.8,0.4-0.7,0.8c0.3,0.2,0.4,0.5,0.5,0.8c0.1,0.3,0.2-0.3,0.8-0.3
|
|
755
|
+
s0.3,1.1-0.6,1.2c-0.9,0.1-1.3-0.4-1.6-0.8c-0.2-0.4-0.4-1.5,0.3-2C13.8,45.3,14,45.3,14.3,45.3z"/>
|
|
756
|
+
<radialGradient id="SVGID_37_" cx="-175.8643" cy="-142.5015" r="2.2359" gradientTransform="matrix(0.9951 9.920000e-02 9.920000e-02 -0.9951 204.5467 -80.8679)" gradientUnits="userSpaceOnUse">
|
|
757
|
+
<stop offset="8.610000e-02" style="stop-color:#8BC541"/>
|
|
758
|
+
<stop offset="0.8204" style="stop-color:#009247"/>
|
|
759
|
+
</radialGradient>
|
|
760
|
+
<circle class="st45" cx="15.8" cy="43" r="1.8"/>
|
|
761
|
+
<path class="st5" d="M15.6,44.9c-1.1-0.1-1.8-1-1.7-2.1c0.1-1.1,1-1.8,2.1-1.7c1.1,0.1,1.8,1,1.7,2.1C17.6,44.2,16.6,45,15.6,44.9z
|
|
762
|
+
M15.9,41.3c-1-0.1-1.8,0.6-1.9,1.6c-0.1,1,0.6,1.8,1.6,1.9c1,0.1,1.8-0.6,1.9-1.6C17.6,42.2,16.9,41.4,15.9,41.3z"/>
|
|
763
|
+
<linearGradient id="SVGID_38_" gradientUnits="userSpaceOnUse" x1="-572.4787" y1="52.3345" x2="-572.2987" y2="49.0705" gradientTransform="matrix(0.871 -0.4913 -0.4913 -0.871 540.3176 -194.2124)">
|
|
764
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
765
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
766
|
+
</linearGradient>
|
|
767
|
+
<path class="st46" d="M16.8,42.3c0.2,0.3,0.2,0.6,0.1,0.6c-0.1,0.1-0.4-0.1-0.5-0.4s-0.2-0.6-0.1-0.6C16.4,41.9,16.7,42,16.8,42.3z"
|
|
768
|
+
/>
|
|
769
|
+
<path class="st7" d="M15.7,43.1c0,0,0.3-0.6,0.5-0.8c0.2-0.2,0.4,0.2,0.4,0.2l-0.8,0.8C15.8,43.3,15.7,43.1,15.7,43.1z"/>
|
|
770
|
+
<path class="st8" d="M15.8,43.3l-0.2-0.2l0,0c0,0,0.3-0.7,0.5-0.8c0,0,0.1-0.1,0.1-0.1c0.2,0,0.3,0.2,0.3,0.3l0,0
|
|
771
|
+
C16.7,42.5,15.8,43.3,15.8,43.3z M15.8,43.1l0.1,0.1l0.7-0.7c0-0.1-0.1-0.2-0.2-0.2c0,0-0.1,0-0.1,0C16.1,42.4,15.8,43,15.8,43.1z"
|
|
772
|
+
/>
|
|
773
|
+
<path class="st9" d="M16.1,42.4l0.3,0.2l0.2-0.2c0,0-0.2-0.4-0.4-0.2C16.1,42.4,16.1,42.4,16.1,42.4z"/>
|
|
774
|
+
<path class="st8" d="M16.4,42.7L16,42.5l0,0c0,0,0-0.1,0.2-0.3c0,0,0.1,0,0.1,0c0.2,0,0.3,0.2,0.3,0.3l0,0
|
|
775
|
+
C16.7,42.5,16.4,42.7,16.4,42.7z M16.1,42.4l0.3,0.2l0.2-0.2c0-0.1-0.1-0.2-0.2-0.2c0,0,0,0-0.1,0C16.2,42.3,16.1,42.4,16.1,42.4z"
|
|
776
|
+
/>
|
|
777
|
+
<path class="st10" d="M15.4,42.8C15.4,42.8,15.4,42.8,15.4,42.8c0.1,0,0.1,0,0.1,0.1c0,0,0,0,0.1,0c0,0,0,0,0.1,0.1c0,0,0,0,0.1,0.1
|
|
778
|
+
c0,0,0,0,0.1,0.1c0,0,0,0,0.1,0.1c0,0,0,0,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0
|
|
779
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0-0.1c0,0,0,0-0.1-0.1c0,0,0,0-0.1-0.1c0,0-0.1-0.1-0.1-0.1c0,0,0,0-0.1-0.1
|
|
780
|
+
c0,0,0,0,0,0C15.5,42.9,15.4,42.9,15.4,42.8C15.4,42.8,15.4,42.8,15.4,42.8C15.4,42.8,15.4,42.8,15.4,42.8z"/>
|
|
781
|
+
<path class="st10" d="M15.8,43.2C15.8,43.2,15.8,43.2,15.8,43.2c0.1,0,0.1,0,0.1,0c0.1,0,0.2,0,0.3,0c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0
|
|
782
|
+
c0,0,0,0,0.1,0c0.1,0,0.1,0,0.1,0s0,0-0.1,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c-0.1,0-0.2,0-0.2,0.1
|
|
783
|
+
C15.9,43.3,15.9,43.3,15.8,43.2C15.9,43.3,15.9,43.3,15.8,43.2C15.9,43.3,15.8,43.2,15.8,43.2z"/>
|
|
784
|
+
<linearGradient id="SVGID_39_" gradientUnits="userSpaceOnUse" x1="-175.8796" y1="-140.2507" x2="-175.6996" y2="-143.5307" gradientTransform="matrix(0.9951 9.920000e-02 9.920000e-02 -0.9951 204.5467 -80.8679)">
|
|
785
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
786
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
787
|
+
</linearGradient>
|
|
788
|
+
<path class="st47" d="M15.7,41.4c0.2,0,0.4,0.4,0.2,0.6c-0.2,0.3-0.8,0.4-0.7,0.8c0.3,0.2,0.4,0.5,0.5,0.8c0.1,0.3,0.2-0.3,0.8-0.3
|
|
789
|
+
s0.3,1.1-0.6,1.2c-0.9,0.1-1.3-0.4-1.6-0.8c-0.2-0.4-0.4-1.5,0.3-2C15.2,41.4,15.4,41.4,15.7,41.4z"/>
|
|
790
|
+
<radialGradient id="SVGID_40_" cx="-176.3543" cy="-135.8615" r="2.2363" gradientTransform="matrix(0.9951 9.920000e-02 9.920000e-02 -0.9951 204.5467 -80.8679)" gradientUnits="userSpaceOnUse">
|
|
791
|
+
<stop offset="8.610000e-02" style="stop-color:#8BC541"/>
|
|
792
|
+
<stop offset="0.8204" style="stop-color:#009247"/>
|
|
793
|
+
</radialGradient>
|
|
794
|
+
<circle class="st48" cx="15.9" cy="36.3" r="1.8"/>
|
|
795
|
+
<path class="st5" d="M15.7,38.2c-1.1-0.1-1.8-1-1.7-2.1c0.1-1.1,1-1.8,2.1-1.7c1.1,0.1,1.8,1,1.7,2.1C17.7,37.6,16.8,38.4,15.7,38.2
|
|
796
|
+
z M16.1,34.6c-1-0.1-1.8,0.6-1.9,1.6c-0.1,1,0.6,1.8,1.6,1.9c1,0.1,1.8-0.6,1.9-1.6C17.8,35.6,17.1,34.7,16.1,34.6z"/>
|
|
797
|
+
<linearGradient id="SVGID_41_" gradientUnits="userSpaceOnUse" x1="-569.0543" y1="58.0482" x2="-568.8743" y2="54.7782" gradientTransform="matrix(0.871 -0.4913 -0.4913 -0.871 540.3176 -194.2124)">
|
|
798
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
799
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
800
|
+
</linearGradient>
|
|
801
|
+
<path class="st49" d="M17,35.7c0.2,0.3,0.2,0.6,0.1,0.6c-0.1,0.1-0.4-0.1-0.5-0.4s-0.2-0.6-0.1-0.6C16.6,35.2,16.8,35.4,17,35.7z"/>
|
|
802
|
+
<path class="st7" d="M15.9,36.4c0,0,0.3-0.6,0.5-0.8c0.2-0.2,0.4,0.2,0.4,0.2L16,36.6C16,36.6,15.9,36.4,15.9,36.4z"/>
|
|
803
|
+
<path class="st8" d="M16,36.7l-0.2-0.2l0,0c0,0,0.3-0.7,0.5-0.8c0,0,0.1-0.1,0.1-0.1c0.2,0,0.3,0.2,0.3,0.3l0,0
|
|
804
|
+
C16.8,35.8,16,36.7,16,36.7z M15.9,36.4l0.1,0.1l0.7-0.7c0-0.1-0.1-0.2-0.2-0.2c0,0-0.1,0-0.1,0C16.3,35.8,16,36.3,15.9,36.4z"/>
|
|
805
|
+
<path class="st9" d="M16.3,35.8l0.3,0.2l0.2-0.2c0,0-0.2-0.4-0.4-0.2C16.3,35.7,16.3,35.8,16.3,35.8z"/>
|
|
806
|
+
<path class="st8" d="M16.6,36.1l-0.4-0.3l0,0c0,0,0-0.1,0.2-0.3c0,0,0.1,0,0.1,0c0.2,0,0.3,0.2,0.3,0.3l0,0
|
|
807
|
+
C16.8,35.8,16.6,36.1,16.6,36.1z M16.3,35.8l0.3,0.2l0.2-0.2c0-0.1-0.1-0.2-0.2-0.2c0,0,0,0-0.1,0C16.3,35.7,16.3,35.7,16.3,35.8z"
|
|
808
|
+
/>
|
|
809
|
+
<path class="st10" d="M15.5,36.1C15.5,36.1,15.6,36.1,15.5,36.1c0.1,0,0.1,0,0.1,0.1c0,0,0,0,0.1,0c0,0,0,0,0.1,0.1c0,0,0,0,0.1,0.1
|
|
810
|
+
c0,0,0,0,0.1,0.1c0,0,0,0,0.1,0.1c0,0,0,0,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0
|
|
811
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0-0.1c0,0,0,0-0.1-0.1c0,0,0,0-0.1-0.1c0,0-0.1-0.1-0.1-0.1c0,0,0,0-0.1-0.1
|
|
812
|
+
c0,0,0,0,0,0C15.6,36.2,15.6,36.2,15.5,36.1C15.6,36.2,15.6,36.2,15.5,36.1C15.6,36.2,15.5,36.1,15.5,36.1z"/>
|
|
813
|
+
<path class="st10" d="M16,36.6C16,36.6,16,36.6,16,36.6c0.1,0,0.1,0,0.1,0c0.1,0,0.2,0,0.3,0c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0
|
|
814
|
+
c0,0,0,0,0.1,0c0.1,0,0.1,0,0.1,0s0,0-0.1,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c-0.1,0-0.2,0-0.2,0.1
|
|
815
|
+
C16.1,36.6,16.1,36.6,16,36.6C16,36.6,16,36.6,16,36.6C16,36.6,16,36.6,16,36.6z"/>
|
|
816
|
+
<linearGradient id="SVGID_42_" gradientUnits="userSpaceOnUse" x1="-176.3642" y1="-133.6109" x2="-176.1841" y2="-136.8809" gradientTransform="matrix(0.9951 9.920000e-02 9.920000e-02 -0.9951 204.5467 -80.8679)">
|
|
817
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
818
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
819
|
+
</linearGradient>
|
|
820
|
+
<path class="st50" d="M15.9,34.8c0.2,0,0.4,0.4,0.2,0.6c-0.2,0.3-0.8,0.4-0.7,0.8c0.3,0.2,0.4,0.5,0.5,0.8c0.1,0.3,0.2-0.3,0.8-0.3
|
|
821
|
+
s0.3,1.1-0.6,1.2c-0.9,0.1-1.3-0.4-1.6-0.8c-0.2-0.4-0.4-1.5,0.3-2C15.4,34.8,15.6,34.7,15.9,34.8z"/>
|
|
822
|
+
<radialGradient id="SVGID_43_" cx="-174.1043" cy="-139.0615" r="2.2355" gradientTransform="matrix(0.9951 9.920000e-02 9.920000e-02 -0.9951 204.5467 -80.8679)" gradientUnits="userSpaceOnUse">
|
|
823
|
+
<stop offset="8.610000e-02" style="stop-color:#8BC541"/>
|
|
824
|
+
<stop offset="0.8204" style="stop-color:#009247"/>
|
|
825
|
+
</radialGradient>
|
|
826
|
+
<circle class="st51" cx="17.9" cy="39.7" r="1.8"/>
|
|
827
|
+
<path class="st5" d="M17.7,41.6c-1-0.1-1.8-1-1.7-2.1c0.1-1.1,1-1.8,2.1-1.7c1.1,0.1,1.8,1,1.7,2.1C19.7,41,18.7,41.8,17.7,41.6z
|
|
828
|
+
M18,38c-1-0.1-1.8,0.6-1.9,1.6c-0.1,1,0.6,1.8,1.6,1.9c1,0.1,1.8-0.6,1.9-1.6C19.7,39,19,38.1,18,38z"/>
|
|
829
|
+
<linearGradient id="SVGID_44_" gradientUnits="userSpaceOnUse" x1="-569.0573" y1="54.1455" x2="-568.8773" y2="50.8775" gradientTransform="matrix(0.871 -0.4913 -0.4913 -0.871 540.3176 -194.2124)">
|
|
830
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
831
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
832
|
+
</linearGradient>
|
|
833
|
+
<path class="st52" d="M18.9,39.1c0.2,0.3,0.2,0.6,0.1,0.6c-0.1,0.1-0.4-0.1-0.5-0.4s-0.2-0.6-0.1-0.6C18.5,38.6,18.8,38.8,18.9,39.1
|
|
834
|
+
z"/>
|
|
835
|
+
<path class="st7" d="M17.8,39.8c0,0,0.3-0.6,0.5-0.8c0.2-0.2,0.4,0.2,0.4,0.2L17.9,40L17.8,39.8z"/>
|
|
836
|
+
<path class="st8" d="M17.9,40.1l-0.2-0.2l0,0c0,0,0.3-0.7,0.5-0.8c0,0,0.1-0.1,0.1-0.1c0.2,0,0.3,0.2,0.3,0.3l0,0
|
|
837
|
+
C18.7,39.2,17.9,40.1,17.9,40.1z M17.9,39.8l0.1,0.1l0.7-0.7c0-0.1-0.1-0.2-0.2-0.2c0,0-0.1,0-0.1,0C18.2,39.2,17.9,39.7,17.9,39.8z
|
|
838
|
+
"/>
|
|
839
|
+
<path class="st9" d="M18.2,39.2l0.3,0.2l0.2-0.2c0,0-0.2-0.4-0.4-0.2C18.2,39.1,18.2,39.2,18.2,39.2z"/>
|
|
840
|
+
<path class="st8" d="M18.5,39.5l-0.4-0.3l0,0c0,0,0-0.1,0.2-0.3c0,0,0.1,0,0.1,0c0.2,0,0.3,0.2,0.3,0.3l0,0
|
|
841
|
+
C18.7,39.2,18.5,39.5,18.5,39.5z M18.2,39.2l0.3,0.2l0.2-0.2c0-0.1-0.1-0.2-0.2-0.2c0,0,0,0-0.1,0C18.3,39.1,18.2,39.1,18.2,39.2z"
|
|
842
|
+
/>
|
|
843
|
+
<path class="st10" d="M17.5,39.5C17.5,39.5,17.5,39.5,17.5,39.5c0.1,0,0.1,0,0.1,0.1c0,0,0,0,0.1,0c0,0,0,0,0.1,0.1c0,0,0,0,0.1,0.1
|
|
844
|
+
c0,0,0,0,0.1,0.1c0,0,0,0,0.1,0.1c0,0,0,0,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0
|
|
845
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0-0.1c0,0,0,0-0.1-0.1c0,0,0,0-0.1-0.1c0,0-0.1-0.1-0.1-0.1c0,0,0,0-0.1-0.1
|
|
846
|
+
c0,0,0,0,0,0C17.5,39.6,17.5,39.6,17.5,39.5C17.5,39.6,17.5,39.6,17.5,39.5C17.5,39.6,17.5,39.5,17.5,39.5z"/>
|
|
847
|
+
<path class="st10" d="M17.9,40C17.9,40,17.9,40,17.9,40c0.1,0,0.1,0,0.1,0c0.1,0,0.2,0,0.3,0c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0
|
|
848
|
+
c0,0,0,0,0.1,0c0.1,0,0.1,0,0.1,0s0,0-0.1,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c-0.1,0-0.2,0-0.2,0.1C18,40,18,40,17.9,40
|
|
849
|
+
C18,40,17.9,40,17.9,40C17.9,40,17.9,40,17.9,40z"/>
|
|
850
|
+
<linearGradient id="SVGID_45_" gradientUnits="userSpaceOnUse" x1="-174.122" y1="-136.8108" x2="-173.942" y2="-140.0808" gradientTransform="matrix(0.9951 9.920000e-02 9.920000e-02 -0.9951 204.5467 -80.8679)">
|
|
851
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
852
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
853
|
+
</linearGradient>
|
|
854
|
+
<path class="st53" d="M17.8,38.2c0.2,0,0.4,0.4,0.2,0.6c-0.2,0.3-0.8,0.4-0.7,0.8c0.3,0.2,0.4,0.5,0.5,0.8c0.1,0.3,0.2-0.3,0.8-0.3
|
|
855
|
+
s0.3,1.1-0.6,1.2c-0.9,0.1-1.3-0.4-1.6-0.8c-0.2-0.4-0.4-1.5,0.3-2C17.3,38.2,17.5,38.1,17.8,38.2z"/>
|
|
856
|
+
<radialGradient id="SVGID_46_" cx="-176.5843" cy="-129.1115" r="2.2359" gradientTransform="matrix(0.9951 9.920000e-02 9.920000e-02 -0.9951 204.5467 -80.8679)" gradientUnits="userSpaceOnUse">
|
|
857
|
+
<stop offset="8.610000e-02" style="stop-color:#8BC541"/>
|
|
858
|
+
<stop offset="0.8204" style="stop-color:#009247"/>
|
|
859
|
+
</radialGradient>
|
|
860
|
+
<circle class="st54" cx="16.4" cy="29.6" r="1.8"/>
|
|
861
|
+
<path class="st5" d="M16.2,31.5c-1.1-0.1-1.8-1-1.7-2.1c0.1-1.1,1-1.8,2.1-1.7c1.1,0.1,1.8,1,1.7,2.1C18.2,30.8,17.2,31.6,16.2,31.5
|
|
862
|
+
z M16.6,27.9c-1-0.1-1.8,0.6-1.9,1.6c-0.1,1,0.6,1.8,1.6,1.9c1,0.1,1.8-0.6,1.9-1.6C18.2,28.8,17.5,27.9,16.6,27.9z"/>
|
|
863
|
+
<linearGradient id="SVGID_47_" gradientUnits="userSpaceOnUse" x1="-565.3573" y1="63.7075" x2="-565.1773" y2="60.4375" gradientTransform="matrix(0.871 -0.4913 -0.4913 -0.871 540.3176 -194.2124)">
|
|
864
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
865
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
866
|
+
</linearGradient>
|
|
867
|
+
<path class="st55" d="M17.4,28.9c0.2,0.3,0.2,0.6,0.1,0.6c-0.1,0.1-0.4-0.1-0.5-0.4s-0.2-0.6-0.1-0.6C17.1,28.5,17.3,28.6,17.4,28.9
|
|
868
|
+
z"/>
|
|
869
|
+
<path class="st7" d="M16.3,29.7c0,0,0.3-0.6,0.5-0.8c0.2-0.2,0.4,0.2,0.4,0.2l-0.8,0.8L16.3,29.7z"/>
|
|
870
|
+
<path class="st8" d="M16.4,29.9l-0.2-0.2l0,0c0,0,0.3-0.7,0.5-0.8c0,0,0.1-0.1,0.1-0.1c0.2,0,0.3,0.2,0.3,0.3l0,0
|
|
871
|
+
C17.3,29.1,16.4,29.9,16.4,29.9z M16.4,29.7l0.1,0.1l0.7-0.7c0-0.1-0.1-0.2-0.2-0.2c0,0-0.1,0-0.1,0C16.7,29,16.4,29.5,16.4,29.7z"
|
|
872
|
+
/>
|
|
873
|
+
<path class="st9" d="M16.7,29l0.3,0.2l0.2-0.2c0,0-0.2-0.4-0.4-0.2C16.7,29,16.7,29,16.7,29z"/>
|
|
874
|
+
<path class="st8" d="M17,29.3l-0.4-0.3l0,0c0,0,0-0.1,0.2-0.3c0,0,0.1,0,0.1,0c0.2,0,0.3,0.2,0.3,0.3l0,0C17.3,29.1,17,29.3,17,29.3
|
|
875
|
+
z M16.7,29l0.3,0.2l0.2-0.2c0-0.1-0.1-0.2-0.2-0.2c0,0,0,0-0.1,0C16.8,28.9,16.8,29,16.7,29z"/>
|
|
876
|
+
<path class="st10" d="M16,29.4C16,29.4,16,29.4,16,29.4c0.1,0,0.1,0,0.1,0.1c0,0,0,0,0.1,0c0,0,0,0,0.1,0.1c0,0,0,0,0.1,0.1
|
|
877
|
+
c0,0,0,0,0.1,0.1c0,0,0,0,0.1,0.1c0,0,0,0,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0
|
|
878
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0-0.1c0,0,0,0-0.1-0.1c0,0,0,0-0.1-0.1c0,0-0.1-0.1-0.1-0.1c0,0,0,0-0.1-0.1
|
|
879
|
+
c0,0,0,0,0,0C16.1,29.5,16.1,29.5,16,29.4C16,29.4,16,29.4,16,29.4C16,29.4,16,29.4,16,29.4z"/>
|
|
880
|
+
<path class="st10" d="M16.4,29.8C16.4,29.8,16.5,29.8,16.4,29.8c0.1,0,0.1,0,0.1,0c0.1,0,0.2,0,0.3,0c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0
|
|
881
|
+
c0,0,0,0,0.1,0c0.1,0,0.1,0,0.1,0s0,0-0.1,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c-0.1,0-0.2,0-0.2,0.1
|
|
882
|
+
C16.5,29.9,16.5,29.9,16.4,29.8C16.5,29.9,16.5,29.9,16.4,29.8C16.5,29.9,16.4,29.8,16.4,29.8z"/>
|
|
883
|
+
<linearGradient id="SVGID_48_" gradientUnits="userSpaceOnUse" x1="-176.5963" y1="-126.8511" x2="-176.4163" y2="-130.1311" gradientTransform="matrix(0.9951 9.920000e-02 9.920000e-02 -0.9951 204.5467 -80.8679)">
|
|
884
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
885
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
886
|
+
</linearGradient>
|
|
887
|
+
<path class="st56" d="M16.3,28c0.2,0,0.4,0.4,0.2,0.6c-0.2,0.3-0.8,0.4-0.7,0.8c0.3,0.2,0.4,0.5,0.5,0.8c0.1,0.3,0.2-0.3,0.8-0.3
|
|
888
|
+
s0.3,1.1-0.6,1.1c-0.9,0.1-1.3-0.4-1.6-0.8c-0.2-0.4-0.4-1.5,0.3-2C15.8,28,16.1,28,16.3,28z"/>
|
|
889
|
+
<radialGradient id="SVGID_49_" cx="-697.3678" cy="-2030.6216" r="2.2359" gradientTransform="matrix(0.7285 0.685 0.685 -0.7285 1918.4823 -974.1881)" gradientUnits="userSpaceOnUse">
|
|
890
|
+
<stop offset="8.610000e-02" style="stop-color:#8BC541"/>
|
|
891
|
+
<stop offset="0.8204" style="stop-color:#009247"/>
|
|
892
|
+
</radialGradient>
|
|
893
|
+
<circle class="st57" cx="19.9" cy="27.2" r="1.8"/>
|
|
894
|
+
<path class="st5" d="M18.6,28.6c-0.8-0.7-0.8-1.9-0.1-2.7s1.9-0.8,2.7-0.1c0.8,0.7,0.8,1.9,0.1,2.7C20.6,29.3,19.4,29.3,18.6,28.6z
|
|
895
|
+
M21.1,26c-0.7-0.7-1.8-0.6-2.5,0.1s-0.6,1.8,0.1,2.5c0.7,0.7,1.8,0.6,2.5-0.1C21.9,27.7,21.8,26.6,21.1,26z"/>
|
|
896
|
+
<linearGradient id="SVGID_50_" gradientUnits="userSpaceOnUse" x1="-2085.1506" y1="-1192.0188" x2="-2084.9507" y2="-1195.2188" gradientTransform="matrix(0.99 0.1413 0.1413 -0.99 2253.7759 -859.4604)">
|
|
897
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
898
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
899
|
+
</linearGradient>
|
|
900
|
+
<path class="st58" d="M21.2,27.3c0,0.3-0.2,0.6-0.3,0.5c-0.1,0-0.2-0.3-0.2-0.6c0-0.3,0.2-0.6,0.3-0.5C21.2,26.7,21.2,27,21.2,27.3z
|
|
901
|
+
"/>
|
|
902
|
+
<path class="st7" d="M19.9,27.3c0,0,0.7-0.3,0.9-0.3c0.2,0,0.2,0.4,0.2,0.4l-1.1,0.2C19.8,27.5,19.9,27.3,19.9,27.3z"/>
|
|
903
|
+
<path class="st8" d="M19.8,27.5l0-0.3l0,0c0,0,0.7-0.3,0.9-0.3c0.1,0,0.1,0,0.1,0C21,27,21,27.3,21,27.3l0,0
|
|
904
|
+
C21,27.3,19.8,27.5,19.8,27.5z M19.9,27.3l0,0.1l1-0.2c0-0.1,0-0.2,0-0.3c0,0,0,0-0.1,0C20.6,27,20,27.2,19.9,27.3z"/>
|
|
905
|
+
<path class="st9" d="M20.5,27l0.1,0.4l0.3,0c0,0,0.1-0.4-0.1-0.4C20.6,26.9,20.5,27,20.5,27z"/>
|
|
906
|
+
<path class="st8" d="M20.6,27.4L20.5,27l0,0c0,0,0.1-0.1,0.3-0.1c0,0,0.1,0,0.1,0C21,27,21,27.3,21,27.3l0,0
|
|
907
|
+
C21,27.3,20.6,27.4,20.6,27.4z M20.6,27l0.1,0.3l0.2,0c0-0.1,0-0.2,0-0.3c0,0,0,0-0.1,0C20.7,27,20.6,27,20.6,27z"/>
|
|
908
|
+
<path class="st10" d="M19.7,26.8C19.7,26.8,19.8,26.8,19.7,26.8c0,0.1,0.1,0.1,0.1,0.1c0,0,0,0,0,0.1s0,0.1,0,0.1c0,0,0,0.1,0,0.1
|
|
909
|
+
c0,0,0,0.1,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0
|
|
910
|
+
c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0-0.1s0-0.1,0-0.1c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0-0.2c0,0,0-0.1,0-0.1
|
|
911
|
+
c0,0,0,0,0-0.1S19.8,26.9,19.7,26.8C19.8,26.9,19.8,26.9,19.7,26.8C19.7,26.8,19.7,26.8,19.7,26.8z"/>
|
|
912
|
+
<path class="st10" d="M19.9,27.4C19.9,27.4,19.9,27.5,19.9,27.4c0,0,0.1,0,0.1,0c0.1,0,0.1,0.1,0.2,0.1c0,0,0.1,0.1,0.1,0.1
|
|
913
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0.1,0.1,0.1,0.1,0.1s0,0-0.1-0.1c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1-0.1c-0.1,0-0.2-0.1-0.2-0.1
|
|
914
|
+
C19.9,27.5,19.9,27.5,19.9,27.4C19.8,27.5,19.8,27.5,19.9,27.4C19.8,27.5,19.9,27.4,19.9,27.4z"/>
|
|
915
|
+
<linearGradient id="SVGID_51_" gradientUnits="userSpaceOnUse" x1="-697.4839" y1="-2028.4266" x2="-697.304" y2="-2031.7267" gradientTransform="matrix(0.7285 0.685 0.685 -0.7285 1918.4823 -974.1881)">
|
|
916
|
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
917
|
+
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
|
918
|
+
</linearGradient>
|
|
919
|
+
<path class="st59" d="M20.8,25.9c0.2,0.2,0.1,0.6-0.2,0.6c-0.3,0.1-0.9-0.2-1.1,0.2c0.1,0.3,0,0.6-0.1,1c-0.1,0.3,0.3-0.1,0.8,0.3
|
|
920
|
+
c0.5,0.4-0.4,1.1-1.2,0.5c-0.8-0.5-0.8-1.2-0.7-1.6c0-0.4,0.6-1.4,1.5-1.4C20.5,25.7,20.7,25.8,20.8,25.9z"/>
|
|
921
|
+
<polygon class="st3" points="13.3,23.7 14.4,23.7 14.4,49.1 13.3,49.1 13.3,51.8 24.9,51.8 24.9,20.8 13.3,20.8 "/>
|
|
922
|
+
<linearGradient id="SVGID_52_" gradientUnits="userSpaceOnUse" x1="17.944" y1="54.388" x2="17.944" y2="98.498" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
923
|
+
<stop offset="0.4442" style="stop-color:#6A8447"/>
|
|
924
|
+
<stop offset="1" style="stop-color:#466647"/>
|
|
925
|
+
</linearGradient>
|
|
926
|
+
<path class="st60" d="M31.8,91.4h-7.1c-11.3,0-20.5-9.2-20.5-20.5s9.2-20.5,20.5-20.5h7.1V91.4z"/>
|
|
927
|
+
<g>
|
|
928
|
+
<defs>
|
|
929
|
+
<path id="SVGID_53_" d="M31.8,91.4h-7.1c-11.3,0-20.5-9.2-20.5-20.5s9.2-20.5,20.5-20.5h7.1V91.4z"/>
|
|
930
|
+
</defs>
|
|
931
|
+
<clipPath id="SVGID_54_">
|
|
932
|
+
<use xlink:href="#SVGID_53_" style="overflow:visible;"/>
|
|
933
|
+
</clipPath>
|
|
934
|
+
<g class="st61">
|
|
935
|
+
<rect x="3.7" y="51.8" class="st62" width="29.8" height="1.6"/>
|
|
936
|
+
<rect x="3.7" y="57.1" class="st62" width="29.8" height="5.3"/>
|
|
937
|
+
<rect x="3.7" y="67.4" class="st62" width="29.8" height="6.9"/>
|
|
938
|
+
<rect x="3.7" y="78.6" class="st62" width="29.8" height="5.3"/>
|
|
939
|
+
<rect x="3.7" y="88.1" class="st62" width="29.8" height="1.8"/>
|
|
940
|
+
</g>
|
|
941
|
+
</g>
|
|
942
|
+
<path class="st63" d="M31.8,91.4h-7.1c-11.3,0-20.5-9.2-20.5-20.5s9.2-20.5,20.5-20.5h7.1V91.4z"/>
|
|
943
|
+
<linearGradient id="SVGID_55_" gradientUnits="userSpaceOnUse" x1="17.944" y1="91.185" x2="17.944" y2="49.017" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
944
|
+
<stop offset="1.530000e-02" style="stop-color:#2D3A14"/>
|
|
945
|
+
<stop offset="0.1224" style="stop-color:#2D3A14;stop-opacity:0"/>
|
|
946
|
+
<stop offset="0.3827" style="stop-color:#2D3A14;stop-opacity:0"/>
|
|
947
|
+
<stop offset="1" style="stop-color:#2D3A14"/>
|
|
948
|
+
</linearGradient>
|
|
949
|
+
<path class="st64" d="M31.8,91.4h-7.1c-11.3,0-20.5-9.2-20.5-20.5s9.2-20.5,20.5-20.5h7.1V91.4z"/>
|
|
950
|
+
<path class="st65" d="M31.8,48.8h-7.1c-5.5,0-10.5,2-14.3,5.3c1.1,5,2,11.2,2,16.7c0,6.2-1.2,12.2-2.3,16.5c3.9,3.5,9,5.6,14.6,5.6
|
|
951
|
+
h7.1c0.8,0,1.5-0.7,1.5-1.5V50.3C33.3,49.5,32.6,48.8,31.8,48.8z"/>
|
|
952
|
+
<linearGradient id="SVGID_56_" gradientUnits="userSpaceOnUse" x1="42.045" y1="14.9495" x2="106.741" y2="14.9495" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
953
|
+
<stop offset="0.4442" style="stop-color:#6A8447"/>
|
|
954
|
+
<stop offset="1" style="stop-color:#466647"/>
|
|
955
|
+
</linearGradient>
|
|
956
|
+
<rect x="42" y="123.9" class="st66" width="64.7" height="6.1"/>
|
|
957
|
+
<path class="st67" d="M65.2,131h32l-0.3-8.1H42c-0.6,0-1,0.4-1,1v3.9L65.2,131L65.2,131z"/>
|
|
958
|
+
<path class="st68" d="M137.3,1.5c-2.4,0-4.9,0.8-5.6,2.9L23.8,17.4v2.1c-2.5,0.5-3.4,3-3.4,5.2c0,2.2,0.9,4.5,3.4,4.5v0.6
|
|
959
|
+
c-2.5,0.5-3.4,2.9-3.4,5.1c0,2.2,0.9,4.5,3.4,4.6v0.7c-2.5,0.5-3.4,2.9-3.4,5c0,2.2,0.9,4.5,3.4,4.7v0.6c-2.5,0.3-3.4,2.8-3.4,5
|
|
960
|
+
c0,2.2,0.9,4.5,3.4,4.8v0.6c-2.5,0.3-3.4,2.7-3.4,4.9c0,2.2,0.9,4.6,3.4,4.8v0.6c-2.5,0.3-3.4,2.6-3.4,4.8c0,2.2,0.9,4.6,3.4,4.9
|
|
961
|
+
v0.6c-2.5,0.2-3.4,2.6-3.4,4.7c0,2.2,0.9,4.6,3.4,4.9v0.6c-2.5,0.2-3.4,2.6-3.4,4.7c0,2.2,0.9,4.6,3.4,5v0.6c-2.5,0-3.4,2.5-3.4,4.6
|
|
962
|
+
c0,2.2,0.9,4.6,3.4,5.1v0.6c-2.5,0-3.4,2.4-3.4,4.5c0,2.3,1,4.8,3.7,5.3l107.3,13.5c0.1,2.8,3.1,3.9,5.8,3.9c2.8,0,5.8-1.1,5.8-4.1
|
|
963
|
+
V5.5C143.1,2.6,140.1,1.5,137.3,1.5L137.3,1.5z"/>
|
|
964
|
+
<linearGradient id="SVGID_57_" gradientUnits="userSpaceOnUse" x1="30.009" y1="29.12" x2="30.009" y2="18.4" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
965
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
966
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
967
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
968
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
969
|
+
</linearGradient>
|
|
970
|
+
<path class="st69" d="M24.3,112.9C24.3,112.9,24.3,112.9,24.3,112.9c-2.7-0.3-3.3,2.3-3.3,4s0.6,4.4,3.3,4.8c0,0,0,0,0,0
|
|
971
|
+
c5.9,0.7,8.8,1.1,14.7,1.9c0-3.6,0-5.5,0-9.1C33.1,113.8,30.2,113.5,24.3,112.9L24.3,112.9z"/>
|
|
972
|
+
<linearGradient id="SVGID_58_" gradientUnits="userSpaceOnUse" x1="24.353" y1="29.017" x2="38.994" y2="29.017" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
973
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
974
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
975
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
976
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
977
|
+
</linearGradient>
|
|
978
|
+
<path class="st70" d="M24.4,111.3c5.9,0.6,8.8,0.9,14.6,1.5v1.6c-5.9-0.6-8.8-0.9-14.6-1.5C24.4,112.3,24.4,111.9,24.4,111.3
|
|
979
|
+
L24.4,111.3z"/>
|
|
980
|
+
<linearGradient id="SVGID_59_" gradientUnits="userSpaceOnUse" x1="44.5085" y1="27.6" x2="44.5085" y2="16.57" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
981
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
982
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
983
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
984
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
985
|
+
</linearGradient>
|
|
986
|
+
<path class="st71" d="M38.8,114.4C38.8,114.4,38.8,114.4,38.8,114.4c-2.7-0.3-3.3,2.4-3.3,4.2s0.6,4.6,3.3,4.9h0
|
|
987
|
+
c5.9,0.7,8.8,1.1,14.7,1.9c0-3.8,0-5.7,0-9.4C47.6,115.3,44.7,115,38.8,114.4L38.8,114.4z"/>
|
|
988
|
+
<linearGradient id="SVGID_60_" gradientUnits="userSpaceOnUse" x1="38.852" y1="27.533" x2="53.494" y2="27.533" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
989
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
990
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
991
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
992
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
993
|
+
</linearGradient>
|
|
994
|
+
<path class="st72" d="M38.9,112.8c5.9,0.6,8.8,0.9,14.6,1.5c0,0.7,0,1,0,1.6c-5.9-0.6-8.8-0.9-14.6-1.5
|
|
995
|
+
C38.9,113.7,38.9,113.4,38.9,112.8L38.9,112.8z"/>
|
|
996
|
+
<linearGradient id="SVGID_61_" gradientUnits="userSpaceOnUse" x1="59.1335" y1="26.07" x2="59.1335" y2="14.73" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
997
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
998
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
999
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1000
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1001
|
+
</linearGradient>
|
|
1002
|
+
<path class="st73" d="M53.4,115.9C53.4,115.9,53.4,115.9,53.4,115.9c-2.7-0.3-3.3,2.5-3.3,4.3s0.6,4.7,3.3,5.1c0,0,0,0,0,0
|
|
1003
|
+
c5.9,0.7,8.8,1.1,14.7,1.9c0-3.9,0-5.8,0-9.7C62.2,116.9,59.3,116.5,53.4,115.9L53.4,115.9z"/>
|
|
1004
|
+
<linearGradient id="SVGID_62_" gradientUnits="userSpaceOnUse" x1="53.477" y1="26.0325" x2="68.118" y2="26.0325" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1005
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1006
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1007
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1008
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1009
|
+
</linearGradient>
|
|
1010
|
+
<path class="st74" d="M53.5,114.3c5.9,0.6,8.8,0.9,14.6,1.5v1.7c-5.9-0.6-8.8-0.9-14.6-1.5L53.5,114.3L53.5,114.3z"/>
|
|
1011
|
+
<linearGradient id="SVGID_63_" gradientUnits="userSpaceOnUse" x1="73.7585" y1="24.55" x2="73.7585" y2="12.88" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1012
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1013
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1014
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1015
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1016
|
+
</linearGradient>
|
|
1017
|
+
<path class="st75" d="M68.1,117.5C68.1,117.5,68.1,117.5,68.1,117.5c-2.7-0.3-3.3,2.6-3.3,4.5s0.6,4.9,3.3,5.2c0,0,0,0,0,0
|
|
1018
|
+
c5.9,0.7,8.8,1.1,14.7,1.9c0-4,0-6,0-10C76.9,118.4,73.9,118.1,68.1,117.5L68.1,117.5z"/>
|
|
1019
|
+
<linearGradient id="SVGID_64_" gradientUnits="userSpaceOnUse" x1="68.102" y1="24.524" x2="82.744" y2="24.524" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1020
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1021
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1022
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1023
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1024
|
+
</linearGradient>
|
|
1025
|
+
<path class="st76" d="M68.1,115.7c5.9,0.6,8.8,0.9,14.6,1.5c0,0.7,0,1.1,0,1.8c-5.9-0.6-8.8-0.9-14.6-1.5
|
|
1026
|
+
C68.1,116.8,68.1,116.4,68.1,115.7L68.1,115.7z"/>
|
|
1027
|
+
<linearGradient id="SVGID_65_" gradientUnits="userSpaceOnUse" x1="88.384" y1="23.02" x2="88.384" y2="11.04" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1028
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1029
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1030
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1031
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1032
|
+
</linearGradient>
|
|
1033
|
+
<path class="st77" d="M82.7,119C82.7,119,82.7,119,82.7,119c-2.7-0.3-3.3,2.7-3.3,4.6s0.6,5.1,3.3,5.4c0,0,0,0,0,0
|
|
1034
|
+
c5.9,0.7,8.8,1.1,14.7,1.9c0-4.1,0-6.2,0-10.4C91.5,119.9,88.6,119.6,82.7,119L82.7,119z"/>
|
|
1035
|
+
<linearGradient id="SVGID_66_" gradientUnits="userSpaceOnUse" x1="82.726" y1="23.027" x2="97.371" y2="23.027" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1036
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1037
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1038
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1039
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1040
|
+
</linearGradient>
|
|
1041
|
+
<path class="st78" d="M82.7,117.2c5.9,0.6,8.8,0.9,14.6,1.5c0,0.7,0,1.1,0,1.8c-5.9-0.6-8.8-0.9-14.6-1.5
|
|
1042
|
+
C82.7,118.3,82.7,117.9,82.7,117.2L82.7,117.2z"/>
|
|
1043
|
+
<linearGradient id="SVGID_67_" gradientUnits="userSpaceOnUse" x1="103.01" y1="21.49" x2="103.01" y2="9.2" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1044
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1045
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1046
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1047
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1048
|
+
</linearGradient>
|
|
1049
|
+
<path class="st79" d="M97.3,120.5C97.3,120.5,97.3,120.5,97.3,120.5c-2.7-0.3-3.3,2.8-3.3,4.8s0.6,5.2,3.3,5.6c0,0,0,0,0,0
|
|
1050
|
+
c5.9,0.7,8.8,1.1,14.7,1.9c0-4.3,0-6.4,0-10.7C106.1,121.4,103.2,121.1,97.3,120.5L97.3,120.5z"/>
|
|
1051
|
+
<linearGradient id="SVGID_68_" gradientUnits="userSpaceOnUse" x1="97.3459" y1="21.523" x2="111.996" y2="21.523" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1052
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1053
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1054
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1055
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1056
|
+
</linearGradient>
|
|
1057
|
+
<path class="st80" d="M97.4,118.7c5.9,0.6,8.8,0.9,14.6,1.5c0,0.7,0,1.1,0,1.9c-5.9-0.6-8.8-0.9-14.6-1.5
|
|
1058
|
+
C97.3,119.8,97.3,119.4,97.4,118.7L97.4,118.7z"/>
|
|
1059
|
+
<linearGradient id="SVGID_69_" gradientUnits="userSpaceOnUse" x1="117.633" y1="19.96" x2="117.633" y2="7.36" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1060
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1061
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1062
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1063
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1064
|
+
</linearGradient>
|
|
1065
|
+
<path class="st81" d="M111.9,122L111.9,122c-2.7-0.3-3.3,2.9-3.3,4.9s0.6,5.4,3.3,5.7h0c5.9,0.7,8.8,1.1,14.7,1.9c0-4.4,0-6.6,0-11
|
|
1066
|
+
C120.8,123,117.8,122.7,111.9,122L111.9,122z"/>
|
|
1067
|
+
<linearGradient id="SVGID_70_" gradientUnits="userSpaceOnUse" x1="111.978" y1="20.022" x2="126.62" y2="20.022" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1068
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1069
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1070
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1071
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1072
|
+
</linearGradient>
|
|
1073
|
+
<path class="st82" d="M112,120.2c5.9,0.6,8.8,0.9,14.6,1.5c0,0.8,0,1.2,0,1.9c-5.9-0.6-8.8-0.9-14.6-1.5L112,120.2L112,120.2z"/>
|
|
1074
|
+
<linearGradient id="SVGID_71_" gradientUnits="userSpaceOnUse" x1="132.232" y1="18.44" x2="132.232" y2="5.52" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1075
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1076
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1077
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1078
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1079
|
+
</linearGradient>
|
|
1080
|
+
<path class="st83" d="M126.5,123.6C126.5,123.6,126.5,123.6,126.5,123.6c-2.7-0.3-3.3,3-3.3,5.1c0,2.1,0.6,5.5,3.3,5.9c0,0,0,0,0,0
|
|
1081
|
+
c5.9,0.7,8.8,1.1,14.7,1.9c0-4.5,0-6.8,0-11.3C135.3,124.5,132.4,124.2,126.5,123.6L126.5,123.6z"/>
|
|
1082
|
+
<linearGradient id="SVGID_72_" gradientUnits="userSpaceOnUse" x1="126.569" y1="18.5245" x2="141.209" y2="18.5245" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1083
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1084
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1085
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1086
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1087
|
+
</linearGradient>
|
|
1088
|
+
<path class="st84" d="M126.6,121.6c5.9,0.6,8.8,0.9,14.6,1.5c0,0.8,0,1.2,0,2c-5.9-0.6-8.8-0.9-14.6-1.5L126.6,121.6L126.6,121.6z"
|
|
1089
|
+
/>
|
|
1090
|
+
<linearGradient id="SVGID_73_" gradientUnits="userSpaceOnUse" x1="30.009" y1="39.43" x2="30.009" y2="29.09" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1091
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1092
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1093
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1094
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1095
|
+
</linearGradient>
|
|
1096
|
+
<path class="st85" d="M24.3,102.6C24.3,102.6,24.3,102.6,24.3,102.6c-2.7-0.3-3.3,2.4-3.3,4.1s0.6,4.4,3.3,4.7c0,0,0,0,0,0
|
|
1097
|
+
c5.9,0.6,8.8,0.9,14.7,1.5c0-3.6,0-5.5,0-9.1C33.1,103.3,30.2,103,24.3,102.6L24.3,102.6z"/>
|
|
1098
|
+
<linearGradient id="SVGID_74_" gradientUnits="userSpaceOnUse" x1="24.353" y1="39.532" x2="38.994" y2="39.532" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1099
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1100
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1101
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1102
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1103
|
+
</linearGradient>
|
|
1104
|
+
<path class="st86" d="M24.4,101c5.9,0.4,8.8,0.7,14.6,1.1v1.6c-5.9-0.5-8.8-0.7-14.6-1.2C24.4,101.9,24.4,101.6,24.4,101L24.4,101z"
|
|
1105
|
+
/>
|
|
1106
|
+
<linearGradient id="SVGID_75_" gradientUnits="userSpaceOnUse" x1="44.508" y1="38.28" x2="44.508" y2="27.63" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1107
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1108
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1109
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1110
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1111
|
+
</linearGradient>
|
|
1112
|
+
<path class="st87" d="M38.8,103.7L38.8,103.7c-2.7-0.3-3.3,2.5-3.3,4.2s0.6,4.6,3.3,4.8h0c5.9,0.6,8.8,0.9,14.7,1.5
|
|
1113
|
+
c0-3.8,0-5.6,0-9.4C47.6,104.4,44.7,104.2,38.8,103.7L38.8,103.7z"/>
|
|
1114
|
+
<linearGradient id="SVGID_76_" gradientUnits="userSpaceOnUse" x1="38.852" y1="38.418" x2="53.494" y2="38.418" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1115
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1116
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1117
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1118
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1119
|
+
</linearGradient>
|
|
1120
|
+
<path class="st88" d="M38.9,102.1c5.9,0.4,8.8,0.7,14.6,1.1c0,0.7,0,1,0,1.6c-5.9-0.5-8.8-0.7-14.6-1.2
|
|
1121
|
+
C38.9,103.1,38.9,102.7,38.9,102.1L38.9,102.1z"/>
|
|
1122
|
+
<linearGradient id="SVGID_77_" gradientUnits="userSpaceOnUse" x1="59.1335" y1="37.12" x2="59.1335" y2="26.15" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1123
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1124
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1125
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1126
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1127
|
+
</linearGradient>
|
|
1128
|
+
<path class="st89" d="M53.4,104.9C53.4,104.9,53.4,104.9,53.4,104.9c-2.7-0.3-3.3,2.6-3.3,4.4s0.6,4.7,3.3,5c0,0,0,0,0,0
|
|
1129
|
+
c5.9,0.6,8.8,0.9,14.7,1.5c0-3.9,0-5.8,0-9.7C62.2,105.6,59.3,105.3,53.4,104.9L53.4,104.9z"/>
|
|
1130
|
+
<linearGradient id="SVGID_78_" gradientUnits="userSpaceOnUse" x1="53.477" y1="37.279" x2="68.118" y2="37.279" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1131
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1132
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1133
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1134
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1135
|
+
</linearGradient>
|
|
1136
|
+
<path class="st90" d="M53.5,103.2c5.9,0.4,8.8,0.7,14.6,1.1v1.7c-5.9-0.5-8.8-0.7-14.6-1.2L53.5,103.2L53.5,103.2z"/>
|
|
1137
|
+
<linearGradient id="SVGID_79_" gradientUnits="userSpaceOnUse" x1="73.7585" y1="35.96" x2="73.7585" y2="24.68" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1138
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1139
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1140
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1141
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1142
|
+
</linearGradient>
|
|
1143
|
+
<path class="st91" d="M68.1,106C68.1,106,68.1,106,68.1,106c-2.7-0.3-3.3,2.7-3.3,4.6s0.6,4.9,3.3,5.2h0c5.9,0.6,8.8,0.9,14.7,1.5
|
|
1144
|
+
c0-4,0-6,0-10C76.9,106.7,73.9,106.5,68.1,106L68.1,106z"/>
|
|
1145
|
+
<linearGradient id="SVGID_80_" gradientUnits="userSpaceOnUse" x1="68.102" y1="36.1395" x2="82.744" y2="36.1395" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1146
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1147
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1148
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1149
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1150
|
+
</linearGradient>
|
|
1151
|
+
<path class="st92" d="M68.1,104.3c5.9,0.4,8.8,0.7,14.6,1.1c0,0.7,0,1.1,0,1.8c-5.9-0.5-8.8-0.7-14.6-1.2
|
|
1152
|
+
C68.1,105.3,68.1,105,68.1,104.3L68.1,104.3z"/>
|
|
1153
|
+
<linearGradient id="SVGID_81_" gradientUnits="userSpaceOnUse" x1="88.384" y1="34.8" x2="88.384" y2="23.21" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1154
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1155
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1156
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1157
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1158
|
+
</linearGradient>
|
|
1159
|
+
<path class="st93" d="M82.7,107.2L82.7,107.2c-2.7-0.3-3.3,2.8-3.3,4.7s0.6,5,3.3,5.3h0c5.9,0.6,8.8,0.9,14.7,1.5
|
|
1160
|
+
c0-4.1,0-6.2,0-10.4C91.5,107.9,88.6,107.7,82.7,107.2L82.7,107.2z"/>
|
|
1161
|
+
<linearGradient id="SVGID_82_" gradientUnits="userSpaceOnUse" x1="82.726" y1="35.014" x2="97.369" y2="35.014" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1162
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1163
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1164
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1165
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1166
|
+
</linearGradient>
|
|
1167
|
+
<path class="st94" d="M82.7,105.4c5.9,0.4,8.8,0.7,14.6,1.1c0,0.7,0,1.1,0,1.8c-5.9-0.5-8.8-0.7-14.6-1.2
|
|
1168
|
+
C82.7,106.5,82.7,106.1,82.7,105.4L82.7,105.4z"/>
|
|
1169
|
+
<linearGradient id="SVGID_83_" gradientUnits="userSpaceOnUse" x1="103.01" y1="33.65" x2="103.01" y2="21.73" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1170
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1171
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1172
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1173
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1174
|
+
</linearGradient>
|
|
1175
|
+
<path class="st95" d="M97.3,108.4C97.3,108.4,97.3,108.4,97.3,108.4c-2.7-0.3-3.3,2.9-3.3,4.9s0.6,5.2,3.3,5.5c0,0,0,0,0,0
|
|
1176
|
+
c5.9,0.6,8.8,0.9,14.7,1.5c0-4.3,0-6.4,0-10.7C106.1,109,103.2,108.8,97.3,108.4L97.3,108.4z"/>
|
|
1177
|
+
<linearGradient id="SVGID_84_" gradientUnits="userSpaceOnUse" x1="97.351" y1="33.8735" x2="111.996" y2="33.8735" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1178
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1179
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1180
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1181
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1182
|
+
</linearGradient>
|
|
1183
|
+
<path class="st96" d="M97.4,106.5c5.9,0.4,8.8,0.7,14.6,1.1c0,0.7,0,1.1,0,1.9c-5.9-0.5-8.8-0.7-14.6-1.2
|
|
1184
|
+
C97.4,107.6,97.4,107.3,97.4,106.5L97.4,106.5z"/>
|
|
1185
|
+
<linearGradient id="SVGID_85_" gradientUnits="userSpaceOnUse" x1="117.633" y1="32.49" x2="117.633" y2="20.26" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1186
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1187
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1188
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1189
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1190
|
+
</linearGradient>
|
|
1191
|
+
<path class="st97" d="M111.9,109.5C111.9,109.5,111.9,109.5,111.9,109.5c-2.7-0.3-3.3,3-3.3,5s0.6,5.4,3.3,5.6c0,0,0,0,0,0
|
|
1192
|
+
c5.9,0.6,8.8,0.9,14.7,1.5c0-4.4,0-6.6,0-11C120.8,110.2,117.8,110,111.9,109.5L111.9,109.5z"/>
|
|
1193
|
+
<linearGradient id="SVGID_86_" gradientUnits="userSpaceOnUse" x1="111.98" y1="32.7375" x2="126.621" y2="32.7375" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1194
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1195
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1196
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1197
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1198
|
+
</linearGradient>
|
|
1199
|
+
<path class="st98" d="M112,107.6c5.9,0.4,8.8,0.7,14.6,1.1c0,0.8,0,1.2,0,1.9c-5.9-0.5-8.8-0.7-14.6-1.2L112,107.6L112,107.6z"/>
|
|
1200
|
+
<linearGradient id="SVGID_87_" gradientUnits="userSpaceOnUse" x1="116.2645" y1="31.06" x2="116.2645" y2="22.27" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1201
|
+
<stop offset="0" style="stop-color:#FFB9AC;stop-opacity:0.6"/>
|
|
1202
|
+
<stop offset="1" style="stop-color:#FFB9AC;stop-opacity:0"/>
|
|
1203
|
+
</linearGradient>
|
|
1204
|
+
<path class="st99" d="M112.7,110.6C112.7,110.6,112.7,110.6,112.7,110.6c-2.2-0.2-2.7,2.4-2.7,4c0,1.6,0.5,4.3,2.7,4.5c0,0,0,0,0,0
|
|
1205
|
+
c4,0.4,5.9,0.6,9.9,1c0,0-1.1-1.9-1.1-4.4s1-4.3,1-4.3C118.6,111.1,116.6,111,112.7,110.6L112.7,110.6z"/>
|
|
1206
|
+
<linearGradient id="SVGID_88_" gradientUnits="userSpaceOnUse" x1="132.2315" y1="31.33" x2="132.2315" y2="18.79" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1207
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1208
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1209
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1210
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1211
|
+
</linearGradient>
|
|
1212
|
+
<path class="st100" d="M126.5,110.7C126.5,110.7,126.5,110.7,126.5,110.7c-2.7-0.3-3.3,3.1-3.3,5.2s0.6,5.5,3.3,5.8c0,0,0,0,0,0
|
|
1213
|
+
c5.9,0.6,8.8,0.9,14.7,1.5c0-4.5,0-6.8,0-11.3C135.3,111.4,132.4,111.1,126.5,110.7L126.5,110.7z"/>
|
|
1214
|
+
<linearGradient id="SVGID_89_" gradientUnits="userSpaceOnUse" x1="126.57" y1="31.609" x2="141.209" y2="31.609" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1215
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1216
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1217
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1218
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1219
|
+
</linearGradient>
|
|
1220
|
+
<path class="st101" d="M126.6,108.7c5.9,0.4,8.8,0.7,14.6,1.1v2c-5.9-0.5-8.8-0.7-14.6-1.2V108.7z"/>
|
|
1221
|
+
<linearGradient id="SVGID_90_" gradientUnits="userSpaceOnUse" x1="30.01" y1="49.736" x2="30.01" y2="39.78" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1222
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1223
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1224
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1225
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1226
|
+
</linearGradient>
|
|
1227
|
+
<path class="st102" d="M24.3,92.2C24.3,92.2,24.3,92.2,24.3,92.2c-2.7-0.1-3.3,2.5-3.3,4.2s0.6,4.4,3.3,4.6h0
|
|
1228
|
+
c5.9,0.4,8.8,0.7,14.7,1.1c0-3.6,0-5.5,0-9.1C33.1,92.7,30.2,92.6,24.3,92.2L24.3,92.2z"/>
|
|
1229
|
+
<linearGradient id="SVGID_91_" gradientUnits="userSpaceOnUse" x1="24.353" y1="50.039" x2="38.994" y2="50.039" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1230
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1231
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1232
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1233
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1234
|
+
</linearGradient>
|
|
1235
|
+
<path class="st103" d="M24.4,90.7c5.9,0.3,8.8,0.4,14.6,0.7V93c-5.9-0.3-8.8-0.5-14.6-0.8V90.7z"/>
|
|
1236
|
+
<linearGradient id="SVGID_92_" gradientUnits="userSpaceOnUse" x1="44.508" y1="48.95" x2="44.508" y2="38.69" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1237
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1238
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1239
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1240
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1241
|
+
</linearGradient>
|
|
1242
|
+
<path class="st104" d="M38.8,93C38.8,93,38.8,93,38.8,93c-2.7-0.1-3.3,2.6-3.3,4.3s0.6,4.6,3.3,4.8c0,0,0,0,0,0
|
|
1243
|
+
c5.9,0.4,8.8,0.7,14.7,1.1c0-3.8,0-5.6,0-9.4C47.6,93.5,44.7,93.3,38.8,93L38.8,93z"/>
|
|
1244
|
+
<linearGradient id="SVGID_93_" gradientUnits="userSpaceOnUse" x1="38.853" y1="49.28" x2="53.494" y2="49.28" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1245
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1246
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1247
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1248
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1249
|
+
</linearGradient>
|
|
1250
|
+
<path class="st105" d="M38.9,91.4c5.9,0.3,8.8,0.4,14.6,0.7v1.6c-5.9-0.3-8.8-0.5-14.6-0.8C38.9,93,38.9,91.4,38.9,91.4z"/>
|
|
1251
|
+
<linearGradient id="SVGID_94_" gradientUnits="userSpaceOnUse" x1="59.1335" y1="48.16" x2="59.1335" y2="37.58" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1252
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1253
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1254
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1255
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1256
|
+
</linearGradient>
|
|
1257
|
+
<path class="st106" d="M53.4,93.8C53.4,93.8,53.4,93.8,53.4,93.8c-2.7-0.1-3.3,2.7-3.3,4.5s0.6,4.7,3.3,4.9h0
|
|
1258
|
+
c5.9,0.4,8.8,0.7,14.7,1.1c0-3.9,0-5.8,0-9.7C62.2,94.3,59.3,94.1,53.4,93.8L53.4,93.8z"/>
|
|
1259
|
+
<linearGradient id="SVGID_95_" gradientUnits="userSpaceOnUse" x1="53.477" y1="48.5165" x2="68.118" y2="48.5165" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1260
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1261
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1262
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1263
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1264
|
+
</linearGradient>
|
|
1265
|
+
<path class="st107" d="M53.5,92.2c5.9,0.3,8.8,0.4,14.6,0.7v1.7c-5.9-0.3-8.8-0.5-14.6-0.8C53.5,93.8,53.5,92.2,53.5,92.2z"/>
|
|
1266
|
+
<linearGradient id="SVGID_96_" gradientUnits="userSpaceOnUse" x1="73.7585" y1="47.37" x2="73.7585" y2="36.48" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1267
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1268
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1269
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1270
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1271
|
+
</linearGradient>
|
|
1272
|
+
<path class="st108" d="M68.1,94.6C68.1,94.6,68.1,94.6,68.1,94.6c-2.7-0.1-3.3,2.8-3.3,4.6s0.6,4.9,3.3,5.1c0,0,0,0,0,0
|
|
1273
|
+
c5.9,0.4,8.8,0.7,14.7,1.1c0-4,0-6,0-10C76.9,95.1,73.9,94.9,68.1,94.6L68.1,94.6z"/>
|
|
1274
|
+
<linearGradient id="SVGID_97_" gradientUnits="userSpaceOnUse" x1="68.103" y1="47.7505" x2="82.746" y2="47.7505" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1275
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1276
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1277
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1278
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1279
|
+
</linearGradient>
|
|
1280
|
+
<path class="st109" d="M68.1,92.9c5.9,0.3,8.8,0.4,14.6,0.7v1.8c-5.9-0.3-8.8-0.5-14.6-0.8V92.9z"/>
|
|
1281
|
+
<linearGradient id="SVGID_98_" gradientUnits="userSpaceOnUse" x1="88.384" y1="46.58" x2="88.384" y2="35.37" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1282
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1283
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1284
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1285
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1286
|
+
</linearGradient>
|
|
1287
|
+
<path class="st110" d="M82.7,95.4C82.7,95.4,82.7,95.4,82.7,95.4c-2.7-0.1-3.3,2.9-3.3,4.8s0.6,5,3.3,5.2h0
|
|
1288
|
+
c5.9,0.4,8.8,0.7,14.7,1.1c0-4.1,0-6.2,0-10.4C91.5,95.9,88.6,95.7,82.7,95.4L82.7,95.4z"/>
|
|
1289
|
+
<linearGradient id="SVGID_99_" gradientUnits="userSpaceOnUse" x1="82.728" y1="46.9875" x2="97.369" y2="46.9875" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1290
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1291
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1292
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1293
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1294
|
+
</linearGradient>
|
|
1295
|
+
<path class="st111" d="M82.7,93.6c5.9,0.3,8.8,0.4,14.6,0.7v1.8c-5.9-0.3-8.8-0.5-14.6-0.8V93.6z"/>
|
|
1296
|
+
<linearGradient id="SVGID_100_" gradientUnits="userSpaceOnUse" x1="103.009" y1="45.789" x2="103.009" y2="34.26" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1297
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1298
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1299
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1300
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1301
|
+
</linearGradient>
|
|
1302
|
+
<path class="st112" d="M97.3,96.2C97.3,96.2,97.3,96.2,97.3,96.2c-2.7-0.1-3.3,3-3.3,5s0.6,5.2,3.3,5.4c0,0,0,0,0,0
|
|
1303
|
+
c5.9,0.4,8.8,0.7,14.7,1.1c0-4.3,0-6.4,0-10.7C106.1,96.7,103.2,96.5,97.3,96.2L97.3,96.2z"/>
|
|
1304
|
+
<linearGradient id="SVGID_101_" gradientUnits="userSpaceOnUse" x1="97.348" y1="46.2225" x2="111.996" y2="46.2225" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1305
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1306
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1307
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1308
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1309
|
+
</linearGradient>
|
|
1310
|
+
<path class="st113" d="M97.4,94.4c5.9,0.3,8.8,0.4,14.6,0.7V97c-5.9-0.3-8.8-0.5-14.6-0.8C97.3,95.5,97.3,95.1,97.4,94.4L97.4,94.4z
|
|
1311
|
+
"/>
|
|
1312
|
+
<linearGradient id="SVGID_102_" gradientUnits="userSpaceOnUse" x1="117.633" y1="44.998" x2="117.633" y2="33.16" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1313
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1314
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1315
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1316
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1317
|
+
</linearGradient>
|
|
1318
|
+
<path class="st114" d="M111.9,97C111.9,97,111.9,97,111.9,97c-2.7-0.1-3.3,3.1-3.3,5.1s0.6,5.3,3.3,5.5c0,0,0,0,0,0
|
|
1319
|
+
c5.9,0.4,8.8,0.7,14.7,1.1c0-4.4,0-6.6,0-11C120.8,97.5,117.8,97.3,111.9,97L111.9,97z"/>
|
|
1320
|
+
<linearGradient id="SVGID_103_" gradientUnits="userSpaceOnUse" x1="111.98" y1="45.457" x2="126.619" y2="45.457" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1321
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1322
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1323
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1324
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1325
|
+
</linearGradient>
|
|
1326
|
+
<path class="st115" d="M112,95.1c5.9,0.3,8.8,0.4,14.6,0.7v1.9c-5.9-0.3-8.8-0.5-14.6-0.8V95.1z"/>
|
|
1327
|
+
<linearGradient id="SVGID_104_" gradientUnits="userSpaceOnUse" x1="116.2655" y1="43.602" x2="116.2655" y2="35.06" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1328
|
+
<stop offset="0" style="stop-color:#FFB9AC;stop-opacity:0.6"/>
|
|
1329
|
+
<stop offset="1" style="stop-color:#FFB9AC;stop-opacity:0"/>
|
|
1330
|
+
</linearGradient>
|
|
1331
|
+
<path class="st116" d="M112.7,98.1C112.7,98.1,112.7,98.1,112.7,98.1c-2.2-0.1-2.7,2.5-2.7,4.1c0,1.6,0.5,4.3,2.7,4.4c0,0,0,0,0,0
|
|
1332
|
+
c4,0.3,5.9,0.4,9.9,0.7c0,0-1.1-1.8-1.1-4.4s1-4.4,1-4.4C118.6,98.4,116.6,98.3,112.7,98.1L112.7,98.1z"/>
|
|
1333
|
+
<linearGradient id="SVGID_105_" gradientUnits="userSpaceOnUse" x1="132.2315" y1="44.21" x2="132.2315" y2="32.06" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1334
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1335
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1336
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1337
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1338
|
+
</linearGradient>
|
|
1339
|
+
<path class="st117" d="M126.5,97.8C126.5,97.8,126.5,97.8,126.5,97.8c-2.7-0.1-3.3,3.2-3.3,5.3s0.6,5.5,3.3,5.7c0,0,0,0,0,0
|
|
1340
|
+
c5.9,0.4,8.8,0.7,14.7,1.1c0-4.5,0-6.8,0-11.3C135.3,98.3,132.4,98.1,126.5,97.8L126.5,97.8z"/>
|
|
1341
|
+
<linearGradient id="SVGID_106_" gradientUnits="userSpaceOnUse" x1="126.57" y1="44.6935" x2="141.209" y2="44.6935" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1342
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1343
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1344
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1345
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1346
|
+
</linearGradient>
|
|
1347
|
+
<path class="st118" d="M126.6,95.8c5.9,0.3,8.8,0.4,14.6,0.7v2c-5.9-0.3-8.8-0.5-14.6-0.8V95.8z"/>
|
|
1348
|
+
<linearGradient id="SVGID_107_" gradientUnits="userSpaceOnUse" x1="30.009" y1="60.054" x2="30.009" y2="50.477" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1349
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1350
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1351
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1352
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1353
|
+
</linearGradient>
|
|
1354
|
+
<path class="st119" d="M24.3,81.9C24.3,81.9,24.3,81.9,24.3,81.9c-2.7,0-3.3,2.6-3.3,4.3s0.6,4.4,3.3,4.5h0
|
|
1355
|
+
c5.9,0.3,8.8,0.4,14.7,0.7c0-3.6,0-5.5,0-9.1C33.1,82.2,30.2,82.1,24.3,81.9z"/>
|
|
1356
|
+
<linearGradient id="SVGID_108_" gradientUnits="userSpaceOnUse" x1="24.353" y1="60.5495" x2="38.994" y2="60.5495" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1357
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1358
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1359
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1360
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1361
|
+
</linearGradient>
|
|
1362
|
+
<path class="st120" d="M24.4,80.4c5.9,0.1,8.8,0.2,14.6,0.4v1.6c-5.9-0.2-8.8-0.3-14.6-0.4C24.4,81.9,24.4,80.4,24.4,80.4z"/>
|
|
1363
|
+
<linearGradient id="SVGID_109_" gradientUnits="userSpaceOnUse" x1="44.509" y1="59.636" x2="44.509" y2="49.748" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1364
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1365
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1366
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1367
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1368
|
+
</linearGradient>
|
|
1369
|
+
<path class="st121" d="M38.8,82.3C38.8,82.3,38.8,82.3,38.8,82.3c-2.7,0-3.3,2.7-3.3,4.4s0.6,4.5,3.3,4.7c0,0,0,0,0,0
|
|
1370
|
+
c5.9,0.3,8.8,0.4,14.7,0.7c0-3.8,0-5.6,0-9.4C47.6,82.6,44.7,82.5,38.8,82.3z"/>
|
|
1371
|
+
<linearGradient id="SVGID_110_" gradientUnits="userSpaceOnUse" x1="38.853" y1="60.1565" x2="53.494" y2="60.1565" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1372
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1373
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1374
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1375
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1376
|
+
</linearGradient>
|
|
1377
|
+
<path class="st122" d="M38.9,80.7c5.9,0.1,8.8,0.2,14.6,0.4v1.6c-5.9-0.2-8.8-0.3-14.6-0.4V80.7z"/>
|
|
1378
|
+
<linearGradient id="SVGID_111_" gradientUnits="userSpaceOnUse" x1="59.134" y1="59.214" x2="59.134" y2="49.01" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1379
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1380
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1381
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1382
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1383
|
+
</linearGradient>
|
|
1384
|
+
<path class="st123" d="M53.4,82.8C53.4,82.8,53.4,82.8,53.4,82.8c-2.7,0-3.3,2.8-3.3,4.6s0.6,4.7,3.3,4.8c0,0,0,0,0,0
|
|
1385
|
+
c5.9,0.3,8.8,0.4,14.7,0.7c0-3.9,0-5.8,0-9.7C62.2,83,59.3,82.9,53.4,82.8z"/>
|
|
1386
|
+
<linearGradient id="SVGID_112_" gradientUnits="userSpaceOnUse" x1="53.477" y1="59.7595" x2="68.118" y2="59.7595" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1387
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1388
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1389
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1390
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1391
|
+
</linearGradient>
|
|
1392
|
+
<path class="st124" d="M53.5,81.1c5.9,0.1,8.8,0.2,14.6,0.4v1.7c-5.9-0.2-8.8-0.3-14.6-0.4C53.5,82.7,53.5,81.1,53.5,81.1z"/>
|
|
1393
|
+
<linearGradient id="SVGID_113_" gradientUnits="userSpaceOnUse" x1="73.7585" y1="58.791" x2="73.7585" y2="48.274" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1394
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1395
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1396
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1397
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1398
|
+
</linearGradient>
|
|
1399
|
+
<path class="st125" d="M68.1,83.2C68.1,83.2,68.1,83.2,68.1,83.2c-2.7,0-3.3,2.9-3.3,4.7s0.6,4.9,3.3,5c0,0,0,0,0,0
|
|
1400
|
+
c5.9,0.3,8.8,0.4,14.7,0.7c0-4,0-6,0-10C76.9,83.4,73.9,83.4,68.1,83.2z"/>
|
|
1401
|
+
<linearGradient id="SVGID_114_" gradientUnits="userSpaceOnUse" x1="68.103" y1="59.363" x2="82.746" y2="59.363" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1402
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1403
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1404
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1405
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1406
|
+
</linearGradient>
|
|
1407
|
+
<path class="st126" d="M68.1,81.5c5.9,0.1,8.8,0.2,14.6,0.4c0,0.7,0,1.1,0,1.8c-5.9-0.2-8.8-0.3-14.6-0.4
|
|
1408
|
+
C68.1,83.2,68.1,81.5,68.1,81.5z"/>
|
|
1409
|
+
<linearGradient id="SVGID_115_" gradientUnits="userSpaceOnUse" x1="88.3835" y1="58.371" x2="88.3835" y2="47.538" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1410
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1411
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1412
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1413
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1414
|
+
</linearGradient>
|
|
1415
|
+
<path class="st127" d="M82.7,83.6C82.7,83.6,82.7,83.6,82.7,83.6c-2.7,0-3.3,3-3.3,4.9s0.6,5,3.3,5.1c0,0,0,0,0,0
|
|
1416
|
+
c5.9,0.3,8.8,0.4,14.7,0.7c0-4.1,0-6.2,0-10.3C91.5,83.9,88.6,83.8,82.7,83.6z"/>
|
|
1417
|
+
<linearGradient id="SVGID_116_" gradientUnits="userSpaceOnUse" x1="82.728" y1="58.968" x2="97.369" y2="58.968" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1418
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1419
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1420
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1421
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1422
|
+
</linearGradient>
|
|
1423
|
+
<path class="st128" d="M82.7,81.8c5.9,0.1,8.8,0.2,14.6,0.4V84c-5.9-0.2-8.8-0.3-14.6-0.4V81.8z"/>
|
|
1424
|
+
<linearGradient id="SVGID_117_" gradientUnits="userSpaceOnUse" x1="103.009" y1="57.95" x2="103.009" y2="46.798" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1425
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1426
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1427
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1428
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1429
|
+
</linearGradient>
|
|
1430
|
+
<path class="st129" d="M97.3,84C97.3,84,97.3,84,97.3,84c-2.7,0-3.3,3.1-3.3,5s0.6,5.2,3.3,5.3c0,0,0,0,0,0
|
|
1431
|
+
c5.9,0.3,8.8,0.4,14.7,0.7c0-4.3,0-6.4,0-10.7C106.1,84.3,103.2,84.2,97.3,84L97.3,84z"/>
|
|
1432
|
+
<linearGradient id="SVGID_118_" gradientUnits="userSpaceOnUse" x1="97.348" y1="58.5725" x2="111.996" y2="58.5725" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1433
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1434
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1435
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1436
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1437
|
+
</linearGradient>
|
|
1438
|
+
<path class="st130" d="M97.4,82.2c5.9,0.1,8.8,0.2,14.6,0.4v1.9c-5.9-0.2-8.8-0.3-14.6-0.4C97.3,83.3,97.3,82.9,97.4,82.2L97.4,82.2
|
|
1439
|
+
z"/>
|
|
1440
|
+
<linearGradient id="SVGID_119_" gradientUnits="userSpaceOnUse" x1="117.633" y1="57.529" x2="117.633" y2="46.062" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1441
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1442
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1443
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1444
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1445
|
+
</linearGradient>
|
|
1446
|
+
<path class="st131" d="M111.9,84.5C111.9,84.5,111.9,84.5,111.9,84.5c-2.7,0-3.3,3.2-3.3,5.2s0.6,5.3,3.3,5.5c0,0,0,0,0,0
|
|
1447
|
+
c5.9,0.3,8.8,0.4,14.7,0.7c0-4.4,0-6.6,0-11C120.8,84.7,117.8,84.6,111.9,84.5L111.9,84.5z"/>
|
|
1448
|
+
<linearGradient id="SVGID_120_" gradientUnits="userSpaceOnUse" x1="111.98" y1="58.175" x2="126.621" y2="58.175" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1449
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1450
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1451
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1452
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1453
|
+
</linearGradient>
|
|
1454
|
+
<path class="st132" d="M112,82.6c5.9,0.1,8.8,0.2,14.6,0.4v1.9c-5.9-0.2-8.8-0.3-14.6-0.4L112,82.6L112,82.6z"/>
|
|
1455
|
+
<linearGradient id="SVGID_121_" gradientUnits="userSpaceOnUse" x1="132.2315" y1="57.106" x2="132.2315" y2="45.326" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1456
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1457
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1458
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1459
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1460
|
+
</linearGradient>
|
|
1461
|
+
<path class="st133" d="M126.5,84.9L126.5,84.9c-2.7,0-3.3,3.3-3.3,5.4s0.6,5.5,3.3,5.6c0,0,0,0,0,0c5.9,0.3,8.8,0.4,14.7,0.7
|
|
1462
|
+
c0-4.5,0-6.8,0-11.3C135.3,85.1,132.4,85,126.5,84.9L126.5,84.9z"/>
|
|
1463
|
+
<linearGradient id="SVGID_122_" gradientUnits="userSpaceOnUse" x1="126.57" y1="57.7795" x2="141.209" y2="57.7795" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1464
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1465
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1466
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1467
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1468
|
+
</linearGradient>
|
|
1469
|
+
<path class="st134" d="M126.6,82.9c5.9,0.1,8.8,0.2,14.6,0.4v2c-5.9-0.2-8.8-0.3-14.6-0.4V82.9z"/>
|
|
1470
|
+
<linearGradient id="SVGID_123_" gradientUnits="userSpaceOnUse" x1="30.008" y1="70.38" x2="30.008" y2="61.176" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1471
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1472
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1473
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1474
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1475
|
+
</linearGradient>
|
|
1476
|
+
<path class="st135" d="M24.3,71.6C24.3,71.6,24.3,71.6,24.3,71.6c-2.8,0-3.3,2.7-3.3,4.3s0.6,4.4,3.3,4.4c0,0,0,0,0,0
|
|
1477
|
+
c5.9,0.1,8.8,0.2,14.7,0.4c0-3.6,0-5.5,0-9.1C33.1,71.6,30.2,71.6,24.3,71.6z"/>
|
|
1478
|
+
<linearGradient id="SVGID_124_" gradientUnits="userSpaceOnUse" x1="24.353" y1="71.064" x2="38.994" y2="71.064" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1479
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1480
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1481
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1482
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1483
|
+
</linearGradient>
|
|
1484
|
+
<path class="st136" d="M24.4,70c5.9,0,8.8,0,14.6,0v1.6c-5.9,0-8.8,0-14.6-0.1C24.4,71,24.4,70.6,24.4,70z"/>
|
|
1485
|
+
<linearGradient id="SVGID_125_" gradientUnits="userSpaceOnUse" x1="44.5085" y1="70.328" x2="44.5085" y2="60.812" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1486
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1487
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1488
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1489
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1490
|
+
</linearGradient>
|
|
1491
|
+
<path class="st137" d="M38.8,71.6C38.8,71.6,38.8,71.6,38.8,71.6c-2.8,0-3.3,2.8-3.3,4.5s0.6,4.5,3.3,4.6c0,0,0,0,0,0
|
|
1492
|
+
c5.9,0.1,8.8,0.2,14.7,0.4c0-3.8,0-5.6,0-9.4C47.6,71.7,44.7,71.7,38.8,71.6z"/>
|
|
1493
|
+
<linearGradient id="SVGID_126_" gradientUnits="userSpaceOnUse" x1="38.853" y1="71.0385" x2="53.494" y2="71.0385" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1494
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1495
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1496
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1497
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1498
|
+
</linearGradient>
|
|
1499
|
+
<path class="st138" d="M38.9,70c5.9,0,8.8,0,14.6,0v1.6c-5.9,0-8.8,0-14.6-0.1C38.9,71.6,38.9,70,38.9,70z"/>
|
|
1500
|
+
<linearGradient id="SVGID_127_" gradientUnits="userSpaceOnUse" x1="59.135" y1="70.274" x2="59.135" y2="60.444" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1501
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1502
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1503
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1504
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1505
|
+
</linearGradient>
|
|
1506
|
+
<path class="st139" d="M53.4,71.7C53.4,71.7,53.4,71.7,53.4,71.7c-2.8,0-3.3,2.9-3.3,4.7s0.6,4.7,3.3,4.8c0,0,0,0,0,0
|
|
1507
|
+
c5.9,0.1,8.8,0.2,14.7,0.4c0-3.9,0-5.8,0-9.7C62.2,71.7,59.3,71.7,53.4,71.7z"/>
|
|
1508
|
+
<linearGradient id="SVGID_128_" gradientUnits="userSpaceOnUse" x1="53.477" y1="71.009" x2="68.118" y2="71.009" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1509
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1510
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1511
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1512
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1513
|
+
</linearGradient>
|
|
1514
|
+
<path class="st140" d="M53.5,70h14.6v1.7c-5.9,0-8.8,0-14.6-0.1C53.5,71.7,53.5,70,53.5,70z"/>
|
|
1515
|
+
<linearGradient id="SVGID_129_" gradientUnits="userSpaceOnUse" x1="73.759" y1="70.222" x2="73.759" y2="60.076" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1516
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1517
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1518
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1519
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1520
|
+
</linearGradient>
|
|
1521
|
+
<path class="st141" d="M68.1,71.8C68.1,71.8,68.1,71.8,68.1,71.8c-2.8,0-3.3,3-3.3,4.8s0.6,4.8,3.3,4.9h0c5.9,0.1,8.8,0.2,14.7,0.4
|
|
1522
|
+
c0-4,0-6,0-10C76.9,71.8,73.9,71.8,68.1,71.8z"/>
|
|
1523
|
+
<linearGradient id="SVGID_130_" gradientUnits="userSpaceOnUse" x1="68.103" y1="70.982" x2="82.746" y2="70.982" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1524
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1525
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1526
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1527
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1528
|
+
</linearGradient>
|
|
1529
|
+
<path class="st142" d="M68.1,70h14.6v1.8c-5.9,0-8.8,0-14.6-0.1V70z"/>
|
|
1530
|
+
<linearGradient id="SVGID_131_" gradientUnits="userSpaceOnUse" x1="88.385" y1="70.17" x2="88.385" y2="59.707" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1531
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1532
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1533
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1534
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1535
|
+
</linearGradient>
|
|
1536
|
+
<path class="st143" d="M82.7,71.8C82.7,71.8,82.7,71.8,82.7,71.8c-2.8,0-3.3,3.1-3.3,5s0.6,5,3.3,5.1c0,0,0,0,0,0
|
|
1537
|
+
c5.9,0.1,8.8,0.2,14.7,0.4c0-4.1,0-6.2,0-10.4C91.5,71.8,88.6,71.8,82.7,71.8z"/>
|
|
1538
|
+
<linearGradient id="SVGID_132_" gradientUnits="userSpaceOnUse" x1="82.728" y1="70.9555" x2="97.371" y2="70.9555" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1539
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1540
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1541
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1542
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1543
|
+
</linearGradient>
|
|
1544
|
+
<path class="st144" d="M82.7,70c5.9,0,8.8,0,14.6,0c0,0.7,0,1.1,0,1.8c-5.9,0-8.8,0-14.6-0.1V70z"/>
|
|
1545
|
+
<linearGradient id="SVGID_133_" gradientUnits="userSpaceOnUse" x1="103.009" y1="70.118" x2="103.009" y2="59.338" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1546
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1547
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1548
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1549
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1550
|
+
</linearGradient>
|
|
1551
|
+
<path class="st145" d="M97.3,71.9C97.3,71.9,97.3,71.9,97.3,71.9C94.6,71.9,94,75,94,77s0.6,5.2,3.3,5.2h0c5.9,0.1,8.8,0.2,14.7,0.4
|
|
1552
|
+
c0-4.3,0-6.4,0-10.7C106.1,71.9,103.2,71.9,97.3,71.9L97.3,71.9z"/>
|
|
1553
|
+
<linearGradient id="SVGID_134_" gradientUnits="userSpaceOnUse" x1="97.348" y1="70.9275" x2="111.996" y2="70.9275" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1554
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1555
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1556
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1557
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1558
|
+
</linearGradient>
|
|
1559
|
+
<path class="st146" d="M97.4,70H112v1.9c-5.9,0-8.8,0-14.6-0.1C97.3,71.1,97.3,70.8,97.4,70L97.4,70z"/>
|
|
1560
|
+
<linearGradient id="SVGID_135_" gradientUnits="userSpaceOnUse" x1="117.633" y1="70.063" x2="117.633" y2="58.972" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1561
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1562
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1563
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1564
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1565
|
+
</linearGradient>
|
|
1566
|
+
<path class="st147" d="M111.9,71.9C111.9,71.9,111.9,71.9,111.9,71.9c-2.8,0-3.3,3.2-3.3,5.3s0.6,5.3,3.3,5.4c0,0,0,0,0,0
|
|
1567
|
+
c5.9,0.1,8.8,0.2,14.7,0.4c0-4.4,0-6.6,0-11C120.8,72,117.8,71.9,111.9,71.9L111.9,71.9z"/>
|
|
1568
|
+
<linearGradient id="SVGID_136_" gradientUnits="userSpaceOnUse" x1="111.98" y1="70.9015" x2="126.619" y2="70.9015" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1569
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1570
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1571
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1572
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1573
|
+
</linearGradient>
|
|
1574
|
+
<path class="st148" d="M112,70c5.9,0,8.8,0,14.6,0v1.9c-5.9,0-8.8,0-14.6-0.1V70z"/>
|
|
1575
|
+
<linearGradient id="SVGID_137_" gradientUnits="userSpaceOnUse" x1="132.2325" y1="70.01" x2="132.2325" y2="58.602" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1576
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1577
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1578
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1579
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1580
|
+
</linearGradient>
|
|
1581
|
+
<path class="st149" d="M126.5,72C126.5,72,126.5,72,126.5,72c-2.8,0-3.3,3.4-3.3,5.4s0.6,5.5,3.3,5.5c0,0,0,0,0,0
|
|
1582
|
+
c5.9,0.1,8.8,0.2,14.7,0.4c0-4.5,0-6.8,0-11.3C135.3,72,132.4,72,126.5,72L126.5,72z"/>
|
|
1583
|
+
<linearGradient id="SVGID_138_" gradientUnits="userSpaceOnUse" x1="126.57" y1="70.873" x2="141.209" y2="70.873" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1584
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1585
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1586
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1587
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1588
|
+
</linearGradient>
|
|
1589
|
+
<path class="st150" d="M126.6,70h14.6v2c-5.9,0-8.8,0-14.6-0.1V70z"/>
|
|
1590
|
+
<linearGradient id="SVGID_139_" gradientUnits="userSpaceOnUse" x1="30.009" y1="81.019" x2="30.009" y2="71.871" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1591
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1592
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1593
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1594
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1595
|
+
</linearGradient>
|
|
1596
|
+
<path class="st151" d="M24.3,61.3C24.3,61.3,24.3,61.3,24.3,61.3c-2.7,0-3.3,2.8-3.3,4.4s0.6,4.4,3.3,4.4c0,0,0,0,0,0
|
|
1597
|
+
c5.9,0,8.8,0,14.7,0c0-3.6,0-5.5,0-9.1C33.1,61.1,30.2,61.1,24.3,61.3z"/>
|
|
1598
|
+
<linearGradient id="SVGID_140_" gradientUnits="userSpaceOnUse" x1="24.353" y1="81.6025" x2="38.994" y2="81.6025" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1599
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1600
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1601
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1602
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1603
|
+
</linearGradient>
|
|
1604
|
+
<path class="st152" d="M24.4,59.7c5.9-0.1,8.8-0.2,14.6-0.4v1.6c-5.9,0.1-8.8,0.2-14.6,0.3V59.7z"/>
|
|
1605
|
+
<linearGradient id="SVGID_141_" gradientUnits="userSpaceOnUse" x1="44.5085" y1="81.331" x2="44.5085" y2="71.873" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1606
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1607
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1608
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1609
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1610
|
+
</linearGradient>
|
|
1611
|
+
<path class="st153" d="M38.8,61C38.8,61,38.8,60.9,38.8,61c-2.7,0-3.3,2.9-3.3,4.6S36,70,38.8,70h0c5.9,0,8.8,0,14.7,0
|
|
1612
|
+
c0-3.8,0-5.6,0-9.4C47.6,60.8,44.7,60.8,38.8,61z"/>
|
|
1613
|
+
<linearGradient id="SVGID_142_" gradientUnits="userSpaceOnUse" x1="38.853" y1="81.941" x2="53.494" y2="81.941" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1614
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1615
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1616
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1617
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1618
|
+
</linearGradient>
|
|
1619
|
+
<path class="st154" d="M38.9,59.3c5.9-0.1,8.8-0.2,14.6-0.4v1.6c-5.9,0.1-8.8,0.2-14.6,0.3V59.3z"/>
|
|
1620
|
+
<linearGradient id="SVGID_143_" gradientUnits="userSpaceOnUse" x1="59.135" y1="81.646" x2="59.135" y2="71.873" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1621
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1622
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1623
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1624
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1625
|
+
</linearGradient>
|
|
1626
|
+
<path class="st155" d="M53.4,60.6L53.4,60.6c-2.7,0-3.3,2.9-3.3,4.7c0,1.8,0.6,4.7,3.3,4.7h0c5.9,0,8.8,0,14.7,0c0-3.9,0-5.8,0-9.7
|
|
1627
|
+
C62.2,60.4,59.3,60.5,53.4,60.6z"/>
|
|
1628
|
+
<linearGradient id="SVGID_144_" gradientUnits="userSpaceOnUse" x1="53.477" y1="82.2815" x2="68.118" y2="82.2815" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1629
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1630
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1631
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1632
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1633
|
+
</linearGradient>
|
|
1634
|
+
<path class="st156" d="M53.5,59c5.9-0.1,8.8-0.2,14.6-0.4v1.7c-5.9,0.1-8.8,0.2-14.6,0.3C53.5,60.6,53.5,59,53.5,59z"/>
|
|
1635
|
+
<linearGradient id="SVGID_145_" gradientUnits="userSpaceOnUse" x1="73.759" y1="81.961" x2="73.759" y2="71.873" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1636
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1637
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1638
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1639
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1640
|
+
</linearGradient>
|
|
1641
|
+
<path class="st157" d="M68.1,60.3C68.1,60.3,68.1,60.3,68.1,60.3c-2.7,0-3.3,3-3.3,4.9s0.6,4.8,3.3,4.8c0,0,0,0,0,0
|
|
1642
|
+
c5.9,0,8.8,0,14.7,0c0-4,0-6,0-10C76.9,60.1,73.9,60.2,68.1,60.3z"/>
|
|
1643
|
+
<linearGradient id="SVGID_146_" gradientUnits="userSpaceOnUse" x1="68.103" y1="82.621" x2="82.746" y2="82.621" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1644
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1645
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1646
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1647
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1648
|
+
</linearGradient>
|
|
1649
|
+
<path class="st158" d="M68.1,58.6c5.9-0.1,8.8-0.2,14.6-0.4V60c-5.9,0.1-8.8,0.2-14.6,0.3V58.6z"/>
|
|
1650
|
+
<linearGradient id="SVGID_147_" gradientUnits="userSpaceOnUse" x1="88.385" y1="82.28" x2="88.385" y2="71.874" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1651
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1652
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1653
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1654
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1655
|
+
</linearGradient>
|
|
1656
|
+
<path class="st159" d="M82.7,60C82.7,60,82.7,60,82.7,60c-2.7,0-3.3,3.1-3.3,5.1c0,1.9,0.6,5,3.3,5c0,0,0,0,0,0c5.9,0,8.8,0,14.7,0
|
|
1657
|
+
c0-4.1,0-6.2,0-10.4C91.5,59.8,88.6,59.9,82.7,60z"/>
|
|
1658
|
+
<linearGradient id="SVGID_148_" gradientUnits="userSpaceOnUse" x1="82.728" y1="82.965" x2="97.369" y2="82.965" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1659
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1660
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1661
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1662
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1663
|
+
</linearGradient>
|
|
1664
|
+
<path class="st160" d="M82.7,58.2c5.9-0.1,8.8-0.2,14.6-0.4v1.8c-5.9,0.1-8.8,0.2-14.6,0.3V58.2z"/>
|
|
1665
|
+
<linearGradient id="SVGID_149_" gradientUnits="userSpaceOnUse" x1="103.009" y1="82.592" x2="103.009" y2="71.874" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1666
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1667
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1668
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1669
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1670
|
+
</linearGradient>
|
|
1671
|
+
<path class="st161" d="M97.3,59.7L97.3,59.7c-2.7,0-3.3,3.2-3.3,5.2c0,2,0.6,5.1,3.3,5.1c0,0,0,0,0,0c5.9,0,8.8,0,14.7,0
|
|
1672
|
+
c0-4.3,0-6.4,0-10.7C106.1,59.5,103.2,59.6,97.3,59.7L97.3,59.7z"/>
|
|
1673
|
+
<linearGradient id="SVGID_150_" gradientUnits="userSpaceOnUse" x1="97.348" y1="83.305" x2="111.996" y2="83.305" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1674
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1675
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1676
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1677
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1678
|
+
</linearGradient>
|
|
1679
|
+
<path class="st162" d="M97.4,57.9c5.9-0.1,8.8-0.2,14.6-0.4v1.9c-5.9,0.1-8.8,0.2-14.6,0.3C97.3,59,97.3,58.6,97.4,57.9L97.4,57.9z"
|
|
1680
|
+
/>
|
|
1681
|
+
<linearGradient id="SVGID_151_" gradientUnits="userSpaceOnUse" x1="117.633" y1="82.909" x2="117.633" y2="71.875" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1682
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1683
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1684
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1685
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1686
|
+
</linearGradient>
|
|
1687
|
+
<path class="st163" d="M111.9,59.4C111.9,59.4,111.9,59.4,111.9,59.4c-2.7,0-3.3,3.3-3.3,5.4c0,2,0.6,5.3,3.3,5.3h0
|
|
1688
|
+
c5.9,0,8.8,0,14.7,0c0-4.4,0-6.6,0-11C120.8,59.2,117.8,59.3,111.9,59.4L111.9,59.4z"/>
|
|
1689
|
+
<linearGradient id="SVGID_152_" gradientUnits="userSpaceOnUse" x1="111.98" y1="83.6455" x2="126.619" y2="83.6455" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1690
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1691
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1692
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1693
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1694
|
+
</linearGradient>
|
|
1695
|
+
<path class="st164" d="M112,57.5c5.9-0.1,8.8-0.2,14.6-0.4V59c-5.9,0.1-8.8,0.2-14.6,0.3V57.5z"/>
|
|
1696
|
+
<linearGradient id="SVGID_153_" gradientUnits="userSpaceOnUse" x1="132.2325" y1="83.224" x2="132.2325" y2="71.875" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1697
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1698
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1699
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1700
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1701
|
+
</linearGradient>
|
|
1702
|
+
<path class="st165" d="M126.5,59.1C126.5,59.1,126.5,59.1,126.5,59.1c-2.7,0-3.3,3.4-3.3,5.5c0,2.1,0.6,5.4,3.3,5.4h0
|
|
1703
|
+
c5.9,0,8.8,0,14.7,0c0-4.5,0-6.8,0-11.3C135.3,58.9,132.4,58.9,126.5,59.1L126.5,59.1z"/>
|
|
1704
|
+
<linearGradient id="SVGID_154_" gradientUnits="userSpaceOnUse" x1="126.57" y1="83.9845" x2="141.209" y2="83.9845" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1705
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1706
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1707
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1708
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1709
|
+
</linearGradient>
|
|
1710
|
+
<path class="st166" d="M126.6,57.1c5.9-0.1,8.8-0.2,14.6-0.4v2c-5.9,0.1-8.8,0.2-14.6,0.3V57.1z"/>
|
|
1711
|
+
<linearGradient id="SVGID_155_" gradientUnits="userSpaceOnUse" x1="30.009" y1="91.715" x2="30.009" y2="82.195" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1712
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1713
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1714
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1715
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1716
|
+
</linearGradient>
|
|
1717
|
+
<path class="st167" d="M24.3,50.9C24.3,50.9,24.3,50.9,24.3,50.9C21.6,51,21,53.8,21,55.4s0.6,4.3,3.3,4.3c0,0,0,0,0,0
|
|
1718
|
+
c5.9-0.1,8.8-0.2,14.7-0.4c0-3.6,0-5.5,0-9.1C33.1,50.5,30.2,50.7,24.3,50.9z"/>
|
|
1719
|
+
<linearGradient id="SVGID_156_" gradientUnits="userSpaceOnUse" x1="24.353" y1="92.1095" x2="38.994" y2="92.1095" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1720
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1721
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1722
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1723
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1724
|
+
</linearGradient>
|
|
1725
|
+
<path class="st168" d="M24.4,49.4c5.9-0.3,8.8-0.4,14.6-0.7v1.6c-5.9,0.3-8.8,0.4-14.6,0.7V49.4z"/>
|
|
1726
|
+
<linearGradient id="SVGID_157_" gradientUnits="userSpaceOnUse" x1="44.509" y1="92.393" x2="44.509" y2="82.562" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1727
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1728
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1729
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1730
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1731
|
+
</linearGradient>
|
|
1732
|
+
<path class="st169" d="M38.8,50.3C38.8,50.3,38.8,50.3,38.8,50.3c-2.7,0.1-3.3,2.9-3.3,4.7s0.6,4.5,3.3,4.4c0,0,0,0,0,0
|
|
1733
|
+
c5.9-0.1,8.8-0.2,14.7-0.4c0-3.8,0-5.6,0-9.4C47.6,49.9,44.7,50,38.8,50.3z"/>
|
|
1734
|
+
<linearGradient id="SVGID_158_" gradientUnits="userSpaceOnUse" x1="38.853" y1="92.815" x2="53.494" y2="92.815" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1735
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1736
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1737
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1738
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1739
|
+
</linearGradient>
|
|
1740
|
+
<path class="st170" d="M38.9,48.6c5.9-0.3,8.8-0.4,14.6-0.7v1.6c-5.9,0.3-8.8,0.4-14.6,0.7V48.6z"/>
|
|
1741
|
+
<linearGradient id="SVGID_159_" gradientUnits="userSpaceOnUse" x1="59.1345" y1="93.078" x2="59.1345" y2="82.931" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1742
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1743
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1744
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1745
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1746
|
+
</linearGradient>
|
|
1747
|
+
<path class="st171" d="M53.4,49.6C53.4,49.6,53.4,49.6,53.4,49.6c-2.7,0.1-3.3,3-3.3,4.8s0.6,4.7,3.3,4.6c0,0,0,0,0,0
|
|
1748
|
+
c5.9-0.1,8.8-0.2,14.7-0.4c0-3.9,0-5.8,0-9.7C62.2,49.2,59.3,49.3,53.4,49.6z"/>
|
|
1749
|
+
<linearGradient id="SVGID_160_" gradientUnits="userSpaceOnUse" x1="53.477" y1="93.5235" x2="68.118" y2="93.5235" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1750
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1751
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1752
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1753
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1754
|
+
</linearGradient>
|
|
1755
|
+
<path class="st172" d="M53.5,47.9c5.9-0.3,8.8-0.4,14.6-0.7v1.7c-5.9,0.3-8.8,0.4-14.6,0.7C53.5,49.6,53.5,47.9,53.5,47.9z"/>
|
|
1756
|
+
<linearGradient id="SVGID_161_" gradientUnits="userSpaceOnUse" x1="73.7595" y1="93.762" x2="73.7595" y2="83.298" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1757
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1758
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1759
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1760
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1761
|
+
</linearGradient>
|
|
1762
|
+
<path class="st173" d="M68.1,48.9C68.1,48.9,68.1,48.9,68.1,48.9c-2.7,0.1-3.3,3.1-3.3,5s0.6,4.8,3.3,4.7c0,0,0,0,0,0
|
|
1763
|
+
c5.9-0.1,8.8-0.2,14.7-0.4c0-4,0-6,0-10C76.9,48.5,73.9,48.6,68.1,48.9z"/>
|
|
1764
|
+
<linearGradient id="SVGID_162_" gradientUnits="userSpaceOnUse" x1="68.103" y1="94.2325" x2="82.746" y2="94.2325" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1765
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1766
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1767
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1768
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1769
|
+
</linearGradient>
|
|
1770
|
+
<path class="st174" d="M68.1,47.2c5.9-0.3,8.8-0.4,14.6-0.7v1.8c-5.9,0.3-8.8,0.4-14.6,0.7V47.2z"/>
|
|
1771
|
+
<linearGradient id="SVGID_163_" gradientUnits="userSpaceOnUse" x1="88.384" y1="94.448" x2="88.384" y2="83.669" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1772
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1773
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1774
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1775
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1776
|
+
</linearGradient>
|
|
1777
|
+
<path class="st175" d="M82.7,48.2C82.7,48.2,82.7,48.2,82.7,48.2c-2.7,0.1-3.3,3.2-3.3,5.1s0.6,5,3.3,4.9c0,0,0,0,0,0
|
|
1778
|
+
c5.9-0.1,8.8-0.2,14.7-0.4c0-4.1,0-6.2,0-10.3C91.5,47.8,88.6,47.9,82.7,48.2z"/>
|
|
1779
|
+
<linearGradient id="SVGID_164_" gradientUnits="userSpaceOnUse" x1="82.728" y1="94.9425" x2="97.369" y2="94.9425" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1780
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1781
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1782
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1783
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1784
|
+
</linearGradient>
|
|
1785
|
+
<path class="st176" d="M82.7,46.4c5.9-0.3,8.8-0.4,14.6-0.7v1.8c-5.9,0.3-8.8,0.4-14.6,0.7V46.4z"/>
|
|
1786
|
+
<linearGradient id="SVGID_165_" gradientUnits="userSpaceOnUse" x1="103.009" y1="95.127" x2="103.009" y2="84.039" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1787
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1788
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1789
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1790
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1791
|
+
</linearGradient>
|
|
1792
|
+
<path class="st177" d="M97.3,47.5C97.3,47.5,97.3,47.5,97.3,47.5c-2.7,0.1-3.3,3.3-3.3,5.3s0.6,5.1,3.3,5.1c0,0,0,0,0,0
|
|
1793
|
+
c5.9-0.1,8.8-0.2,14.7-0.4c0-4.3,0-6.4,0-10.7C106.1,47.1,103.2,47.3,97.3,47.5L97.3,47.5z"/>
|
|
1794
|
+
<linearGradient id="SVGID_166_" gradientUnits="userSpaceOnUse" x1="97.348" y1="95.6515" x2="111.996" y2="95.6515" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1795
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1796
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1797
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1798
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1799
|
+
</linearGradient>
|
|
1800
|
+
<path class="st178" d="M97.4,45.7c5.9-0.3,8.8-0.4,14.6-0.7v1.9c-5.9,0.3-8.8,0.4-14.6,0.7C97.3,46.8,97.3,46.4,97.4,45.7L97.4,45.7
|
|
1801
|
+
z"/>
|
|
1802
|
+
<linearGradient id="SVGID_167_" gradientUnits="userSpaceOnUse" x1="117.633" y1="95.813" x2="117.633" y2="84.408" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1803
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1804
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1805
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1806
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1807
|
+
</linearGradient>
|
|
1808
|
+
<path class="st179" d="M111.9,46.9C111.9,46.9,111.9,46.9,111.9,46.9c-2.7,0.1-3.3,3.4-3.3,5.5s0.6,5.3,3.3,5.2c0,0,0,0,0,0
|
|
1809
|
+
c5.9-0.1,8.8-0.2,14.7-0.4c0-4.4,0-6.6,0-11C120.8,46.4,117.8,46.6,111.9,46.9L111.9,46.9z"/>
|
|
1810
|
+
<linearGradient id="SVGID_168_" gradientUnits="userSpaceOnUse" x1="111.98" y1="96.3605" x2="126.619" y2="96.3605" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1811
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1812
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1813
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1814
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1815
|
+
</linearGradient>
|
|
1816
|
+
<path class="st180" d="M112,45c5.9-0.3,8.8-0.4,14.6-0.7v1.9c-5.9,0.3-8.8,0.4-14.6,0.7V45z"/>
|
|
1817
|
+
<linearGradient id="SVGID_169_" gradientUnits="userSpaceOnUse" x1="132.2315" y1="96.494" x2="132.2315" y2="84.775" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1818
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1819
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1820
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1821
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1822
|
+
</linearGradient>
|
|
1823
|
+
<path class="st181" d="M126.5,46.2C126.5,46.2,126.5,46.2,126.5,46.2c-2.7,0.1-3.3,3.5-3.3,5.6s0.6,5.4,3.3,5.4c0,0,0,0,0,0
|
|
1824
|
+
c5.9-0.1,8.8-0.2,14.7-0.4c0-4.5,0-6.8,0-11.3C135.3,45.8,132.4,45.9,126.5,46.2L126.5,46.2z"/>
|
|
1825
|
+
<linearGradient id="SVGID_170_" gradientUnits="userSpaceOnUse" x1="126.57" y1="97.0695" x2="141.209" y2="97.0695" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1826
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1827
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1828
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1829
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1830
|
+
</linearGradient>
|
|
1831
|
+
<path class="st182" d="M126.6,44.2c5.9-0.3,8.8-0.4,14.6-0.7v2c-5.9,0.3-8.8,0.4-14.6,0.7V44.2z"/>
|
|
1832
|
+
<linearGradient id="SVGID_171_" gradientUnits="userSpaceOnUse" x1="30.009" y1="102.413" x2="30.009" y2="92.516" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1833
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1834
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1835
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1836
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1837
|
+
</linearGradient>
|
|
1838
|
+
<path class="st183" d="M24.3,40.6L24.3,40.6c-2.7,0.3-3.3,2.9-3.3,4.6s0.6,4.3,3.3,4.2c0,0,0,0,0,0c5.9-0.3,8.8-0.4,14.7-0.7
|
|
1839
|
+
c0-3.6,0-5.5,0-9.1C33.1,40,30.2,40.2,24.3,40.6z"/>
|
|
1840
|
+
<linearGradient id="SVGID_172_" gradientUnits="userSpaceOnUse" x1="24.353" y1="102.6175" x2="38.994" y2="102.6175" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1841
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1842
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1843
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1844
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1845
|
+
</linearGradient>
|
|
1846
|
+
<path class="st184" d="M24.4,39.1c5.9-0.4,8.8-0.7,14.6-1.1v1.6c-5.9,0.4-8.8,0.6-14.6,1.1V39.1z"/>
|
|
1847
|
+
<linearGradient id="SVGID_173_" gradientUnits="userSpaceOnUse" x1="44.509" y1="103.457" x2="44.509" y2="93.248" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1848
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1849
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1850
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1851
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1852
|
+
</linearGradient>
|
|
1853
|
+
<path class="st185" d="M38.8,39.6L38.8,39.6c-2.7,0.3-3.3,3-3.3,4.8s0.6,4.5,3.3,4.3c0,0,0,0,0,0c5.9-0.3,8.8-0.4,14.7-0.7
|
|
1854
|
+
c0-3.8,0-5.6,0-9.4C47.6,38.9,44.7,39.1,38.8,39.6z"/>
|
|
1855
|
+
<linearGradient id="SVGID_174_" gradientUnits="userSpaceOnUse" x1="38.853" y1="103.6895" x2="53.494" y2="103.6895" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1856
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1857
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1858
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1859
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1860
|
+
</linearGradient>
|
|
1861
|
+
<path class="st186" d="M38.9,38c5.9-0.4,8.8-0.7,14.6-1.1v1.6c-5.9,0.4-8.8,0.6-14.6,1.1C38.9,39.6,38.9,38,38.9,38z"/>
|
|
1862
|
+
<linearGradient id="SVGID_175_" gradientUnits="userSpaceOnUse" x1="59.1345" y1="104.508" x2="59.1345" y2="93.985" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1863
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1864
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1865
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1866
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1867
|
+
</linearGradient>
|
|
1868
|
+
<path class="st187" d="M53.4,38.5C53.4,38.5,53.4,38.5,53.4,38.5c-2.7,0.3-3.3,3.1-3.3,4.9s0.6,4.6,3.3,4.5c0,0,0,0,0,0
|
|
1869
|
+
c5.9-0.3,8.8-0.4,14.7-0.7c0-3.9,0-5.8,0-9.7C62.2,37.9,59.3,38.1,53.4,38.5z"/>
|
|
1870
|
+
<linearGradient id="SVGID_176_" gradientUnits="userSpaceOnUse" x1="53.477" y1="104.7665" x2="68.118" y2="104.7665" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1871
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1872
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1873
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1874
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1875
|
+
</linearGradient>
|
|
1876
|
+
<path class="st188" d="M53.5,36.9c5.9-0.4,8.8-0.7,14.6-1.1v1.7c-5.9,0.4-8.8,0.6-14.6,1.1C53.5,38.5,53.5,36.9,53.5,36.9z"/>
|
|
1877
|
+
<linearGradient id="SVGID_177_" gradientUnits="userSpaceOnUse" x1="73.7595" y1="105.561" x2="73.7595" y2="94.722" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1878
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1879
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1880
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1881
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1882
|
+
</linearGradient>
|
|
1883
|
+
<path class="st189" d="M68.1,37.5C68.1,37.5,68.1,37.5,68.1,37.5c-2.7,0.3-3.3,3.2-3.3,5.1s0.6,4.8,3.3,4.7c0,0,0,0,0,0
|
|
1884
|
+
c5.9-0.3,8.8-0.4,14.7-0.7c0-4,0-6,0-10C76.9,36.8,73.9,37.1,68.1,37.5z"/>
|
|
1885
|
+
<linearGradient id="SVGID_178_" gradientUnits="userSpaceOnUse" x1="68.103" y1="105.844" x2="82.744" y2="105.844" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1886
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1887
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1888
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1889
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1890
|
+
</linearGradient>
|
|
1891
|
+
<path class="st190" d="M68.1,35.7c5.9-0.4,8.8-0.7,14.6-1.1v1.8c-5.9,0.4-8.8,0.6-14.6,1.1V35.7z"/>
|
|
1892
|
+
<linearGradient id="SVGID_179_" gradientUnits="userSpaceOnUse" x1="88.384" y1="106.614" x2="88.384" y2="95.461" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1893
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1894
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1895
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1896
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1897
|
+
</linearGradient>
|
|
1898
|
+
<path class="st191" d="M82.7,36.4C82.7,36.4,82.7,36.4,82.7,36.4c-2.7,0.3-3.3,3.3-3.3,5.2s0.6,5,3.3,4.8c0,0,0,0,0,0
|
|
1899
|
+
c5.9-0.3,8.8-0.4,14.7-0.7c0-4.1,0-6.2,0-10.3C91.5,35.8,88.6,36,82.7,36.4z"/>
|
|
1900
|
+
<linearGradient id="SVGID_180_" gradientUnits="userSpaceOnUse" x1="82.728" y1="106.922" x2="97.369" y2="106.922" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1901
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1902
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1903
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1904
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1905
|
+
</linearGradient>
|
|
1906
|
+
<path class="st192" d="M82.7,34.6c5.9-0.4,8.8-0.7,14.6-1.1v1.8c-5.9,0.4-8.8,0.6-14.6,1.1V34.6z"/>
|
|
1907
|
+
<linearGradient id="SVGID_181_" gradientUnits="userSpaceOnUse" x1="103.009" y1="107.666" x2="103.009" y2="96.2" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1908
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1909
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1910
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1911
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1912
|
+
</linearGradient>
|
|
1913
|
+
<path class="st193" d="M97.3,35.4C97.3,35.4,97.3,35.4,97.3,35.4c-2.7,0.3-3.3,3.4-3.3,5.4s0.6,5.1,3.3,5c0,0,0,0,0,0
|
|
1914
|
+
c5.9-0.3,8.8-0.4,14.7-0.7c0-4.3,0-6.4,0-10.7C106.1,34.7,103.2,34.9,97.3,35.4L97.3,35.4z"/>
|
|
1915
|
+
<linearGradient id="SVGID_182_" gradientUnits="userSpaceOnUse" x1="97.348" y1="108.001" x2="111.996" y2="108.001" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1916
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1917
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1918
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1919
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1920
|
+
</linearGradient>
|
|
1921
|
+
<path class="st194" d="M97.4,33.5c5.9-0.4,8.8-0.7,14.6-1.1v1.9c-5.9,0.4-8.8,0.6-14.6,1.1C97.3,34.6,97.3,34.3,97.4,33.5L97.4,33.5
|
|
1922
|
+
z"/>
|
|
1923
|
+
<linearGradient id="SVGID_183_" gradientUnits="userSpaceOnUse" x1="117.633" y1="108.72" x2="117.633" y2="96.935" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1924
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1925
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1926
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1927
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1928
|
+
</linearGradient>
|
|
1929
|
+
<path class="st195" d="M111.9,34.3L111.9,34.3c-2.7,0.3-3.3,3.5-3.3,5.5s0.6,5.3,3.3,5.1c0,0,0,0,0,0c5.9-0.3,8.8-0.4,14.7-0.7
|
|
1930
|
+
c0-4.4,0-6.6,0-11C120.8,33.7,117.8,33.9,111.9,34.3L111.9,34.3z"/>
|
|
1931
|
+
<linearGradient id="SVGID_184_" gradientUnits="userSpaceOnUse" x1="111.98" y1="109.08" x2="126.619" y2="109.08" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1932
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1933
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1934
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1935
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1936
|
+
</linearGradient>
|
|
1937
|
+
<path class="st196" d="M112,32.4c5.9-0.4,8.8-0.7,14.6-1.1v1.9c-5.9,0.4-8.8,0.6-14.6,1.1C112,34.3,112,32.4,112,32.4z"/>
|
|
1938
|
+
<linearGradient id="SVGID_185_" gradientUnits="userSpaceOnUse" x1="132.2315" y1="109.769" x2="132.2315" y2="97.673" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1939
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1940
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1941
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1942
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1943
|
+
</linearGradient>
|
|
1944
|
+
<path class="st197" d="M126.5,33.3C126.5,33.3,126.5,33.3,126.5,33.3c-2.7,0.3-3.3,3.6-3.3,5.7s0.6,5.4,3.3,5.3h0
|
|
1945
|
+
c5.9-0.3,8.8-0.4,14.7-0.7c0-4.5,0-6.8,0-11.3C135.3,32.6,132.4,32.9,126.5,33.3L126.5,33.3z"/>
|
|
1946
|
+
<linearGradient id="SVGID_186_" gradientUnits="userSpaceOnUse" x1="126.57" y1="110.155" x2="141.209" y2="110.155" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1947
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1948
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1949
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1950
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1951
|
+
</linearGradient>
|
|
1952
|
+
<path class="st198" d="M126.6,31.3c5.9-0.4,8.8-0.7,14.6-1.1v2c-5.9,0.4-8.8,0.6-14.6,1.1C126.6,33.2,126.6,31.3,126.6,31.3z"/>
|
|
1953
|
+
<linearGradient id="SVGID_187_" gradientUnits="userSpaceOnUse" x1="30.009" y1="113.134" x2="30.009" y2="102.858" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1954
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1955
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1956
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1957
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1958
|
+
</linearGradient>
|
|
1959
|
+
<path class="st199" d="M24.3,30.3C24.3,30.3,24.3,30.3,24.3,30.3c-2.7,0.3-3.3,3-3.3,4.7s0.6,4.3,3.3,4.1c0,0,0,0,0,0
|
|
1960
|
+
c5.9-0.4,8.8-0.7,14.7-1.1c0-3.6,0-5.5,0-9.1C33.1,29.4,30.2,29.7,24.3,30.3z"/>
|
|
1961
|
+
<linearGradient id="SVGID_188_" gradientUnits="userSpaceOnUse" x1="24.353" y1="113.152" x2="38.994" y2="113.152" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1962
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1963
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1964
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1965
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1966
|
+
</linearGradient>
|
|
1967
|
+
<path class="st200" d="M24.4,28.7c5.9-0.6,8.8-0.9,14.6-1.5v1.6c-5.9,0.6-8.8,0.9-14.6,1.4V28.7z"/>
|
|
1968
|
+
<linearGradient id="SVGID_189_" gradientUnits="userSpaceOnUse" x1="44.508" y1="114.546" x2="44.508" y2="103.956" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1969
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1970
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1971
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1972
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1973
|
+
</linearGradient>
|
|
1974
|
+
<path class="st201" d="M38.8,28.9C38.8,28.9,38.8,28.9,38.8,28.9c-2.7,0.3-3.3,3.1-3.3,4.8c0,1.7,0.6,4.5,3.3,4.3c0,0,0,0,0,0
|
|
1975
|
+
c5.9-0.4,8.8-0.7,14.7-1.1c0-3.8,0-5.6,0-9.4C47.6,28,44.7,28.3,38.8,28.9z"/>
|
|
1976
|
+
<linearGradient id="SVGID_190_" gradientUnits="userSpaceOnUse" x1="38.853" y1="114.5895" x2="53.494" y2="114.5895" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1977
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1978
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1979
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1980
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1981
|
+
</linearGradient>
|
|
1982
|
+
<path class="st202" d="M38.9,27.2c5.9-0.6,8.8-0.9,14.6-1.5v1.6c-5.9,0.6-8.8,0.9-14.6,1.4C38.9,28.8,38.9,27.2,38.9,27.2z"/>
|
|
1983
|
+
<linearGradient id="SVGID_191_" gradientUnits="userSpaceOnUse" x1="59.1335" y1="115.964" x2="59.1335" y2="105.062" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1984
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1985
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1986
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1987
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1988
|
+
</linearGradient>
|
|
1989
|
+
<path class="st203" d="M53.4,27.4C53.4,27.4,53.4,27.4,53.4,27.4c-2.7,0.3-3.3,3.2-3.3,5c0,1.8,0.6,4.6,3.3,4.4c0,0,0,0,0,0
|
|
1990
|
+
c5.9-0.4,8.8-0.7,14.7-1.1c0-3.9,0-5.8,0-9.7C62.2,26.6,59.3,26.9,53.4,27.4z"/>
|
|
1991
|
+
<linearGradient id="SVGID_192_" gradientUnits="userSpaceOnUse" x1="53.477" y1="116.036" x2="68.118" y2="116.036" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1992
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
1993
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
1994
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
1995
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
1996
|
+
</linearGradient>
|
|
1997
|
+
<path class="st204" d="M53.5,25.8c5.9-0.6,8.8-0.9,14.6-1.5V26c-5.9,0.6-8.8,0.9-14.6,1.4C53.5,27.4,53.5,25.8,53.5,25.8z"/>
|
|
1998
|
+
<linearGradient id="SVGID_193_" gradientUnits="userSpaceOnUse" x1="73.7585" y1="117.387" x2="73.7585" y2="106.169" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
1999
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2000
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2001
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2002
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2003
|
+
</linearGradient>
|
|
2004
|
+
<path class="st205" d="M68.1,26C68.1,26,68.1,26,68.1,26c-2.7,0.3-3.3,3.3-3.3,5.1s0.6,4.8,3.3,4.6c0,0,0,0,0,0
|
|
2005
|
+
c5.9-0.4,8.8-0.7,14.7-1.1c0-4,0-6,0-10C76.9,25.2,73.9,25.4,68.1,26z"/>
|
|
2006
|
+
<linearGradient id="SVGID_194_" gradientUnits="userSpaceOnUse" x1="68.103" y1="117.4825" x2="82.744" y2="117.4825" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2007
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2008
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2009
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2010
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2011
|
+
</linearGradient>
|
|
2012
|
+
<path class="st206" d="M68.1,24.3c5.9-0.6,8.8-0.9,14.6-1.5v1.8c-5.9,0.6-8.8,0.9-14.6,1.4C68.1,26,68.1,24.3,68.1,24.3z"/>
|
|
2013
|
+
<linearGradient id="SVGID_195_" gradientUnits="userSpaceOnUse" x1="88.384" y1="118.809" x2="88.384" y2="107.28" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2014
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2015
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2016
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2017
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2018
|
+
</linearGradient>
|
|
2019
|
+
<path class="st207" d="M82.7,24.6L82.7,24.6c-2.7,0.3-3.3,3.4-3.3,5.3s0.6,4.9,3.3,4.7c0,0,0,0,0,0c5.9-0.4,8.8-0.7,14.7-1.1
|
|
2020
|
+
c0-4.1,0-6.2,0-10.3C91.5,23.7,88.6,24,82.7,24.6z"/>
|
|
2021
|
+
<linearGradient id="SVGID_196_" gradientUnits="userSpaceOnUse" x1="82.728" y1="118.93" x2="97.369" y2="118.93" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2022
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2023
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2024
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2025
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2026
|
+
</linearGradient>
|
|
2027
|
+
<path class="st208" d="M82.7,22.8c5.9-0.6,8.8-0.9,14.6-1.5v1.8c-5.9,0.6-8.8,0.9-14.6,1.4V22.8z"/>
|
|
2028
|
+
<linearGradient id="SVGID_197_" gradientUnits="userSpaceOnUse" x1="103.009" y1="120.23" x2="103.009" y2="108.387" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2029
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2030
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2031
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2032
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2033
|
+
</linearGradient>
|
|
2034
|
+
<path class="st209" d="M97.3,23.2C97.3,23.2,97.3,23.2,97.3,23.2c-2.7,0.3-3.3,3.5-3.3,5.5s0.6,5.1,3.3,4.9h0
|
|
2035
|
+
c5.9-0.4,8.8-0.7,14.7-1.1c0-4.3,0-6.4,0-10.7C106.1,22.3,103.2,22.6,97.3,23.2L97.3,23.2z"/>
|
|
2036
|
+
<linearGradient id="SVGID_198_" gradientUnits="userSpaceOnUse" x1="97.348" y1="120.3775" x2="111.996" y2="120.3775" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2037
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2038
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2039
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2040
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2041
|
+
</linearGradient>
|
|
2042
|
+
<path class="st210" d="M97.4,21.3c5.9-0.6,8.8-0.9,14.6-1.5v1.9c-5.9,0.6-8.8,0.9-14.6,1.4C97.3,22.4,97.3,22.1,97.4,21.3L97.4,21.3
|
|
2043
|
+
z"/>
|
|
2044
|
+
<linearGradient id="SVGID_199_" gradientUnits="userSpaceOnUse" x1="117.633" y1="121.652" x2="117.633" y2="109.492" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2045
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2046
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2047
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2048
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2049
|
+
</linearGradient>
|
|
2050
|
+
<path class="st211" d="M111.9,21.8C111.9,21.8,111.9,21.8,111.9,21.8c-2.7,0.3-3.3,3.6-3.3,5.6s0.6,5.3,3.3,5c0,0,0,0,0,0
|
|
2051
|
+
c5.9-0.4,8.8-0.7,14.7-1.1c0-4.4,0-6.6,0-11C120.8,20.9,117.8,21.2,111.9,21.8L111.9,21.8z"/>
|
|
2052
|
+
<linearGradient id="SVGID_200_" gradientUnits="userSpaceOnUse" x1="111.98" y1="121.8255" x2="126.619" y2="121.8255" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2053
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2054
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2055
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2056
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2057
|
+
</linearGradient>
|
|
2058
|
+
<path class="st212" d="M112,19.9c5.9-0.6,8.8-0.9,14.6-1.5v1.9c-5.9,0.6-8.8,0.9-14.6,1.4C112,21.7,112,19.9,112,19.9z"/>
|
|
2059
|
+
<linearGradient id="SVGID_201_" gradientUnits="userSpaceOnUse" x1="132.2315" y1="123.072" x2="132.2315" y2="110.597" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2060
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2061
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2062
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2063
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2064
|
+
</linearGradient>
|
|
2065
|
+
<path class="st213" d="M126.5,20.3C126.5,20.3,126.5,20.3,126.5,20.3c-2.7,0.3-3.3,3.7-3.3,5.8s0.6,5.4,3.3,5.2c0,0,0,0,0,0
|
|
2066
|
+
c5.9-0.4,8.8-0.7,14.7-1.1c0-4.5,0-6.8,0-11.3C135.3,19.5,132.4,19.8,126.5,20.3L126.5,20.3z"/>
|
|
2067
|
+
<linearGradient id="SVGID_202_" gradientUnits="userSpaceOnUse" x1="126.57" y1="123.27" x2="141.209" y2="123.27" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2068
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2069
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2070
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2071
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2072
|
+
</linearGradient>
|
|
2073
|
+
<path class="st214" d="M126.6,18.4c5.9-0.6,8.8-0.9,14.6-1.5v2c-5.9,0.6-8.8,0.9-14.6,1.4C126.6,20.3,126.6,18.4,126.6,18.4z"/>
|
|
2074
|
+
<linearGradient id="SVGID_203_" gradientUnits="userSpaceOnUse" x1="30.009" y1="123.831" x2="30.009" y2="113.175" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2075
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2076
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2077
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2078
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2079
|
+
</linearGradient>
|
|
2080
|
+
<path class="st215" d="M24.3,19.9C24.3,19.9,24.3,19.9,24.3,19.9C21.6,20.3,21,23,21,24.7s0.6,4.3,3.3,4h0c5.9-0.6,8.8-0.9,14.7-1.5
|
|
2081
|
+
c0-3.6,0-5.5,0-9.1C33.1,18.9,30.2,19.2,24.3,19.9z"/>
|
|
2082
|
+
<linearGradient id="SVGID_204_" gradientUnits="userSpaceOnUse" x1="24.353" y1="123.662" x2="38.994" y2="123.662" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2083
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2084
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2085
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2086
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2087
|
+
</linearGradient>
|
|
2088
|
+
<path class="st216" d="M24.4,18.4c5.9-0.7,8.8-1.1,14.6-1.8v1.6c-5.9,0.7-8.8,1.1-14.6,1.8C24.4,19.9,24.4,18.4,24.4,18.4z"/>
|
|
2089
|
+
<linearGradient id="SVGID_205_" gradientUnits="userSpaceOnUse" x1="44.508" y1="125.605" x2="44.508" y2="114.638" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2090
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2091
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2092
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2093
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2094
|
+
</linearGradient>
|
|
2095
|
+
<path class="st217" d="M38.8,18.2C38.8,18.2,38.8,18.2,38.8,18.2c-2.8,0.3-3.3,3.2-3.3,4.9s0.6,4.5,3.3,4.2h0
|
|
2096
|
+
c5.9-0.6,8.8-0.9,14.7-1.5c0-3.8,0-5.6,0-9.4C47.6,17.1,44.7,17.5,38.8,18.2z"/>
|
|
2097
|
+
<linearGradient id="SVGID_206_" gradientUnits="userSpaceOnUse" x1="38.853" y1="125.4635" x2="53.494" y2="125.4635" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2098
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2099
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2100
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2101
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2102
|
+
</linearGradient>
|
|
2103
|
+
<path class="st218" d="M38.9,16.6c5.9-0.7,8.8-1.1,14.6-1.8v1.6c-5.9,0.7-8.8,1.1-14.6,1.8C38.9,18.1,38.9,16.6,38.9,16.6z"/>
|
|
2104
|
+
<linearGradient id="SVGID_207_" gradientUnits="userSpaceOnUse" x1="59.1335" y1="127.397" x2="59.1335" y2="116.114" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2105
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2106
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2107
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2108
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2109
|
+
</linearGradient>
|
|
2110
|
+
<path class="st219" d="M53.4,16.4C53.4,16.4,53.4,16.4,53.4,16.4c-2.8,0.3-3.3,3.3-3.3,5.1s0.6,4.6,3.3,4.3h0
|
|
2111
|
+
c5.9-0.6,8.8-0.9,14.7-1.5c0-3.9,0-5.8,0-9.7C62.2,15.3,59.3,15.7,53.4,16.4z"/>
|
|
2112
|
+
<linearGradient id="SVGID_208_" gradientUnits="userSpaceOnUse" x1="53.477" y1="127.2805" x2="68.118" y2="127.2805" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2113
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2114
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2115
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2116
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2117
|
+
</linearGradient>
|
|
2118
|
+
<path class="st220" d="M53.5,14.7c5.9-0.7,8.8-1.1,14.6-1.8v1.7c-5.9,0.7-8.8,1.1-14.6,1.8C53.5,16.4,53.5,14.7,53.5,14.7z"/>
|
|
2119
|
+
<linearGradient id="SVGID_209_" gradientUnits="userSpaceOnUse" x1="73.7585" y1="129.185" x2="73.7585" y2="117.589" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2120
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2121
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2122
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2123
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2124
|
+
</linearGradient>
|
|
2125
|
+
<path class="st221" d="M68.1,14.6C68.1,14.6,68.1,14.6,68.1,14.6c-2.8,0.3-3.3,3.4-3.3,5.2s0.6,4.8,3.3,4.5c0,0,0,0,0,0
|
|
2126
|
+
c5.9-0.6,8.8-0.9,14.7-1.5c0-4,0-6,0-10C76.9,13.5,73.9,13.9,68.1,14.6z"/>
|
|
2127
|
+
<linearGradient id="SVGID_210_" gradientUnits="userSpaceOnUse" x1="68.103" y1="129.0935" x2="82.744" y2="129.0935" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2128
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2129
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2130
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2131
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2132
|
+
</linearGradient>
|
|
2133
|
+
<path class="st222" d="M68.1,12.9c5.9-0.7,8.8-1.1,14.6-1.8v1.8c-5.9,0.7-8.8,1.1-14.6,1.8C68.1,14.6,68.1,12.9,68.1,12.9z"/>
|
|
2134
|
+
<linearGradient id="SVGID_211_" gradientUnits="userSpaceOnUse" x1="88.384" y1="130.976" x2="88.384" y2="119.067" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2135
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2136
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2137
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2138
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2139
|
+
</linearGradient>
|
|
2140
|
+
<path class="st223" d="M82.7,12.8C82.7,12.8,82.7,12.8,82.7,12.8c-2.8,0.3-3.3,3.5-3.3,5.4s0.6,4.9,3.3,4.6c0,0,0,0,0,0
|
|
2141
|
+
c5.9-0.6,8.8-0.9,14.7-1.5c0-4.1,0-6.2,0-10.3C91.5,11.7,88.6,12.1,82.7,12.8z"/>
|
|
2142
|
+
<linearGradient id="SVGID_212_" gradientUnits="userSpaceOnUse" x1="82.728" y1="130.911" x2="97.369" y2="130.911" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2143
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2144
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2145
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2146
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2147
|
+
</linearGradient>
|
|
2148
|
+
<path class="st224" d="M82.7,11c5.9-0.7,8.8-1.1,14.6-1.8V11c-5.9,0.7-8.8,1.1-14.6,1.8V11z"/>
|
|
2149
|
+
<linearGradient id="SVGID_213_" gradientUnits="userSpaceOnUse" x1="103.009" y1="132.765" x2="103.009" y2="120.542" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2150
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2151
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2152
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2153
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2154
|
+
</linearGradient>
|
|
2155
|
+
<path class="st225" d="M97.3,11C97.3,11,97.3,11,97.3,11c-2.8,0.3-3.3,3.6-3.3,5.5s0.6,5.1,3.3,4.8c0,0,0,0,0,0
|
|
2156
|
+
c5.9-0.6,8.8-0.9,14.7-1.5c0-4.3,0-6.4,0-10.7C106.1,9.9,103.2,10.3,97.3,11L97.3,11z"/>
|
|
2157
|
+
<linearGradient id="SVGID_214_" gradientUnits="userSpaceOnUse" x1="97.348" y1="132.7265" x2="111.996" y2="132.7265" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2158
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2159
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2160
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2161
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2162
|
+
</linearGradient>
|
|
2163
|
+
<path class="st226" d="M97.4,9.2c5.9-0.7,8.8-1.1,14.6-1.8v1.9c-5.9,0.7-8.8,1.1-14.6,1.8C97.3,10.3,97.3,9.9,97.4,9.2L97.4,9.2z"/>
|
|
2164
|
+
<linearGradient id="SVGID_215_" gradientUnits="userSpaceOnUse" x1="117.633" y1="134.558" x2="117.633" y2="122.018" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2165
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2166
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2167
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2168
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2169
|
+
</linearGradient>
|
|
2170
|
+
<path class="st227" d="M111.9,9.2C111.9,9.2,111.9,9.2,111.9,9.2c-2.8,0.3-3.3,3.7-3.3,5.7s0.6,5.2,3.3,5c0,0,0,0,0,0
|
|
2171
|
+
c5.9-0.6,8.8-0.9,14.7-1.5c0-4.4,0-6.6,0-11C120.8,8.2,117.8,8.5,111.9,9.2L111.9,9.2z"/>
|
|
2172
|
+
<linearGradient id="SVGID_216_" gradientUnits="userSpaceOnUse" x1="111.98" y1="134.543" x2="126.619" y2="134.543" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2173
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2174
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2175
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2176
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2177
|
+
</linearGradient>
|
|
2178
|
+
<path class="st228" d="M112,7.3c5.9-0.7,8.8-1.1,14.6-1.8v1.9c-5.9,0.7-8.8,1.1-14.6,1.8V7.3z"/>
|
|
2179
|
+
<linearGradient id="SVGID_217_" gradientUnits="userSpaceOnUse" x1="132.2315" y1="136.3446" x2="132.2315" y2="123.491" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2180
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2181
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2182
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2183
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2184
|
+
</linearGradient>
|
|
2185
|
+
<path class="st229" d="M126.5,7.4L126.5,7.4c-2.8,0.3-3.3,3.8-3.3,5.9s0.6,5.4,3.3,5.1c0,0,0,0,0,0c5.9-0.6,8.8-0.9,14.7-1.5
|
|
2186
|
+
c0-4.5,0-6.8,0-11.3C135.3,6.4,132.4,6.7,126.5,7.4L126.5,7.4z"/>
|
|
2187
|
+
<linearGradient id="SVGID_218_" gradientUnits="userSpaceOnUse" x1="126.57" y1="136.3555" x2="141.209" y2="136.3555" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2188
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2189
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2190
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2191
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2192
|
+
</linearGradient>
|
|
2193
|
+
<path class="st230" d="M126.6,5.5c5.9-0.7,8.8-1.1,14.6-1.8v2c-5.9,0.7-8.8,1.1-14.6,1.8V5.5z"/>
|
|
2194
|
+
<linearGradient id="SVGID_219_" gradientUnits="userSpaceOnUse" x1="4492.8169" y1="542.83" x2="4492.8169" y2="532.1" gradientTransform="matrix(-4.371100e-08 -1 -1 4.371100e-08 674.66 4622.2002)">
|
|
2195
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2196
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2197
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2198
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2199
|
+
</linearGradient>
|
|
2200
|
+
<path class="st231" d="M131.9,135.5C131.9,135.5,131.9,135.5,131.9,135.5c0,3,3.3,3.6,5.3,3.6s5.3-0.6,5.3-3.6c0,0,0,0,0,0l0-15.7
|
|
2201
|
+
l-10.7,0.1L131.9,135.5L131.9,135.5z"/>
|
|
2202
|
+
<linearGradient id="SVGID_220_" gradientUnits="userSpaceOnUse" x1="4510.0073" y1="542.83" x2="4510.0073" y2="532.1" gradientTransform="matrix(-4.371100e-08 -1 -1 4.371100e-08 674.66 4622.2002)">
|
|
2203
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2204
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2205
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2206
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2207
|
+
</linearGradient>
|
|
2208
|
+
<path class="st232" d="M131.9,118.3C131.9,118.3,131.9,118.3,131.9,118.3c0,3,3.3,3.6,5.3,3.6s5.3-0.6,5.3-3.6c0,0,0,0,0,0l0-15.7
|
|
2209
|
+
l-10.7,0.1L131.9,118.3L131.9,118.3z"/>
|
|
2210
|
+
<linearGradient id="SVGID_221_" gradientUnits="userSpaceOnUse" x1="4527.0171" y1="542.83" x2="4527.0171" y2="532.1" gradientTransform="matrix(-4.371100e-08 -1 -1 4.371100e-08 674.66 4622.2002)">
|
|
2211
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2212
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2213
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2214
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2215
|
+
</linearGradient>
|
|
2216
|
+
<path class="st233" d="M131.9,101.3C131.9,101.3,131.9,101.3,131.9,101.3c0,3,3.3,3.6,5.3,3.6s5.3-0.6,5.3-3.6c0,0,0,0,0,0l0-15.7
|
|
2217
|
+
l-10.7,0.1L131.9,101.3L131.9,101.3z"/>
|
|
2218
|
+
<linearGradient id="SVGID_222_" gradientUnits="userSpaceOnUse" x1="4543.8628" y1="542.83" x2="4543.8628" y2="532.1" gradientTransform="matrix(-4.371100e-08 -1 -1 4.371100e-08 674.66 4622.2002)">
|
|
2219
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2220
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2221
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2222
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2223
|
+
</linearGradient>
|
|
2224
|
+
<path class="st234" d="M131.9,84.4C131.9,84.4,131.9,84.4,131.9,84.4c0,3,3.3,3.6,5.3,3.6s5.3-0.6,5.3-3.6c0,0,0,0,0,0l0-15.7
|
|
2225
|
+
l-10.7,0.1L131.9,84.4L131.9,84.4z"/>
|
|
2226
|
+
<linearGradient id="SVGID_223_" gradientUnits="userSpaceOnUse" x1="604.9001" y1="542.83" x2="604.9001" y2="532.1" gradientTransform="matrix(-4.371100e-08 1 -1 -4.371100e-08 674.66 -593.26)">
|
|
2227
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2228
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2229
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2230
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2231
|
+
</linearGradient>
|
|
2232
|
+
<path class="st235" d="M131.9,5.6C131.9,5.6,131.9,5.6,131.9,5.6c0-3,3.3-3.6,5.3-3.6s5.3,0.6,5.3,3.6c0,0,0,0,0,0l0,15.7l-10.7-0.1
|
|
2233
|
+
L131.9,5.6L131.9,5.6z"/>
|
|
2234
|
+
<linearGradient id="SVGID_224_" gradientUnits="userSpaceOnUse" x1="620.6342" y1="542.83" x2="620.6342" y2="532.1" gradientTransform="matrix(-4.371100e-08 1 -1 -4.371100e-08 674.66 -593.26)">
|
|
2235
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2236
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2237
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2238
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2239
|
+
</linearGradient>
|
|
2240
|
+
<path class="st236" d="M131.9,21.3C131.9,21.3,131.9,21.3,131.9,21.3c0-3,3.3-3.6,5.3-3.6s5.3,0.6,5.3,3.6c0,0,0,0,0,0l0,15.7
|
|
2241
|
+
l-10.7,0L131.9,21.3L131.9,21.3z"/>
|
|
2242
|
+
<linearGradient id="SVGID_225_" gradientUnits="userSpaceOnUse" x1="635.9996" y1="542.83" x2="635.9996" y2="532.1" gradientTransform="matrix(-4.371100e-08 1 -1 -4.371100e-08 674.66 -593.26)">
|
|
2243
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2244
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2245
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2246
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2247
|
+
</linearGradient>
|
|
2248
|
+
<path class="st237" d="M131.9,36.7C131.9,36.7,131.9,36.7,131.9,36.7c0-3,3.3-3.6,5.3-3.6s5.3,0.6,5.3,3.6c0,0,0,0,0,0l0,15.7
|
|
2249
|
+
l-10.7,0L131.9,36.7L131.9,36.7z"/>
|
|
2250
|
+
<linearGradient id="SVGID_226_" gradientUnits="userSpaceOnUse" x1="652.3586" y1="542.83" x2="652.3586" y2="532.1" gradientTransform="matrix(-4.371100e-08 1 -1 -4.371100e-08 674.66 -593.26)">
|
|
2251
|
+
<stop offset="0" style="stop-color:#943B25"/>
|
|
2252
|
+
<stop offset="0.2857" style="stop-color:#935241"/>
|
|
2253
|
+
<stop offset="0.6327" style="stop-color:#935241"/>
|
|
2254
|
+
<stop offset="0.9286" style="stop-color:#943B25"/>
|
|
2255
|
+
</linearGradient>
|
|
2256
|
+
<path class="st238" d="M131.9,53C131.9,53,131.9,53,131.9,53c0-3,3.3-3.6,5.3-3.6s5.3,0.6,5.3,3.6c0,0,0,0,0,0l0,15.7l-10.7-0.1
|
|
2257
|
+
L131.9,53L131.9,53z"/>
|
|
2258
|
+
<g class="st239">
|
|
2259
|
+
<path class="st240" d="M20.6,129.1c0.7,1.5,0.1,3.3-1.4,4l-7.8,3.7c-1.5,0.7-3.3,0.1-4-1.4l-7.1-15c-0.7-1.5-0.1-3.3,1.4-4l7.8-3.7
|
|
2260
|
+
c1.5-0.7,3.3-0.1,4,1.4L20.6,129.1L20.6,129.1z"/>
|
|
2261
|
+
</g>
|
|
2262
|
+
<rect x="11.6" y="132.9" transform="matrix(0.9036 -0.4284 0.4284 0.9036 -56.2143 18.1956)" class="st241" width="1.4" height="2.2"/>
|
|
2263
|
+
<rect x="16.2" y="130.7" transform="matrix(0.9037 -0.4282 0.4282 0.9037 -54.8235 19.9314)" class="st241" width="1.4" height="2.2"/>
|
|
2264
|
+
<linearGradient id="SVGID_227_" gradientUnits="userSpaceOnUse" x1="1074.4298" y1="831.5932" x2="1074.4298" y2="825.7232" gradientTransform="matrix(0.9036 -0.4284 -0.4284 -0.9036 -602.9951 1338.267)">
|
|
2265
|
+
<stop offset="0" style="stop-color:#6A8447"/>
|
|
2266
|
+
<stop offset="1" style="stop-color:#466647"/>
|
|
2267
|
+
</linearGradient>
|
|
2268
|
+
<path class="st242" d="M4.7,129.5c2.6,2.4,3.9,3.6,6.5,6c0.7-0.3,1.1-0.5,1.8-0.8c-0.3-0.4-0.5-0.7-0.9-1.1c1.8-0.9,2.7-1.3,4.6-2.2
|
|
2269
|
+
c0.1,0.5,0.2,0.8,0.3,1.4c0.7-0.3,1.1-0.5,1.8-0.8c-0.2-3.5-0.3-5.3-0.5-8.8C12.9,125.7,10.1,127,4.7,129.5L4.7,129.5z"/>
|
|
2270
|
+
<path class="st243" d="M19.1,132c-1,0.5-1.4,0.7-2.4,1.1c-0.1-0.5-0.2-0.8-0.4-1.3c-1.5,0.7-2.2,1.1-3.8,1.8
|
|
2271
|
+
c0.3,0.4,0.5,0.7,0.8,1.1c-1,0.5-1.4,0.7-2.4,1.1c-2.9-2.5-4.2-3.4-7-5.9c6-2.8,9-4.3,15-7.2C19.1,126.6,19,128.2,19.1,132L19.1,132
|
|
2272
|
+
z M17.3,132.4l1.2-0.6c-0.3-3.3-0.2-4.6-0.5-7.9c-4.9,2.3-7.4,3.5-12.3,5.9c2.4,2.3,3.4,3.1,5.8,5.4c0.5-0.2,0.7-0.3,1.2-0.6
|
|
2273
|
+
c-0.4-0.4-0.5-0.7-0.9-1.1c2.2-1,3.2-1.5,5.4-2.6C17.1,131.6,17.2,131.9,17.3,132.4L17.3,132.4z"/>
|
|
2274
|
+
<path class="st244" d="M16.3,125.7c-3.4,1.6-5.1,2.4-8.5,4c1.2,1.3,1.8,2,3,3.3c2.5-1.2,3.7-1.8,6.2-2.9
|
|
2275
|
+
C16.7,128.4,16.6,127.5,16.3,125.7L16.3,125.7z"/>
|
|
2276
|
+
<path class="st245" d="M17.5,130.1c-2.8,1.3-4.2,2-7,3.3c-1.4-1.4-2.1-2.1-3.5-3.5c4-1.9,5.9-2.8,9.9-4.7
|
|
2277
|
+
C17.2,127.2,17.3,128.2,17.5,130.1L17.5,130.1z M11.2,132.7c2.1-1,3.2-1.5,5.4-2.5c-0.3-1.6-0.3-2-0.6-3.6c-2.9,1.4-4.3,2-7.2,3.4
|
|
2278
|
+
C9.8,131.2,10.1,131.5,11.2,132.7L11.2,132.7z"/>
|
|
2279
|
+
<g>
|
|
2280
|
+
<path class="st246" d="M9.7,130.1c0.1-0.1,0.2-0.1,0.3-0.1c0.3,0,0.5,0,0.7,0c-0.1-0.1-0.1-0.2-0.2-0.3c0.1-0.1,0.2-0.1,0.3-0.1
|
|
2281
|
+
c0.1,0.2,0.1,0.2,0.2,0.4c-0.1,0.1-0.2,0.1-0.3,0.1c-0.3,0-0.4,0-0.8,0c0.1,0.1,0.1,0.2,0.2,0.3c-0.1,0.1-0.2,0.1-0.3,0.1
|
|
2282
|
+
C9.9,130.4,9.9,130.3,9.7,130.1L9.7,130.1z"/>
|
|
2283
|
+
<path class="st246" d="M12.3,129c-0.3,0.1-0.5,0.2-0.8,0.4c0,0,0,0,0.1,0.1c0.3-0.1,0.4-0.2,0.7-0.3c0,0,0,0,0,0.1
|
|
2284
|
+
c-0.3,0.1-0.4,0.2-0.7,0.3c0,0,0,0.1,0.1,0.1c0.3-0.1,0.5-0.2,0.8-0.4c0,0,0,0,0,0.1c-0.4,0.2-0.6,0.3-1.1,0.5
|
|
2285
|
+
c-0.1-0.2-0.1-0.2-0.2-0.4C11.6,129.3,11.8,129.2,12.3,129C12.3,129,12.3,129,12.3,129L12.3,129z"/>
|
|
2286
|
+
<path class="st246" d="M12.7,128.7c0.1,0.1,0.2,0.1,0.3,0.1c0,0,0,0,0.1,0c0,0,0-0.1,0-0.1c0-0.1,0-0.2,0.1-0.3
|
|
2287
|
+
c0.1-0.1,0.2-0.1,0.3-0.2c0.1,0.1,0.2,0.1,0.3,0.2c0,0,0,0,0.1,0c0,0,0-0.1,0-0.1c0-0.1,0.1-0.2,0.1-0.3c0.1-0.1,0.2-0.1,0.3-0.1
|
|
2288
|
+
c-0.1,0.3-0.2,0.4-0.2,0.6c-0.1,0.1-0.2,0.1-0.3,0.1c-0.1-0.1-0.2-0.1-0.3-0.2c0,0,0,0-0.1-0.1c0,0,0,0.1,0,0.1
|
|
2289
|
+
c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1c-0.2-0.1-0.4-0.1-0.6-0.2C12.5,128.8,12.6,128.8,12.7,128.7L12.7,128.7z"/>
|
|
2290
|
+
<path class="st246" d="M14.7,128.1C14.7,128.2,14.7,128.2,14.7,128.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.1
|
|
2291
|
+
c0.1,0,0.1-0.1,0.1-0.1c0,0,0,0-0.1,0c0,0-0.1,0-0.2,0.1c-0.1,0-0.1,0-0.2,0.1c-0.1,0.1-0.3,0.1-0.3,0.1c-0.1,0-0.2,0-0.2,0
|
|
2292
|
+
c0,0,0-0.1,0.1-0.2c0.1-0.1,0.2-0.2,0.4-0.2c0.2-0.1,0.3-0.1,0.4-0.1c0.1,0,0.2,0,0.2,0c-0.1,0.1-0.2,0.1-0.3,0.1c0,0-0.1,0-0.1,0
|
|
2293
|
+
c-0.1,0-0.1,0-0.2,0.1c-0.1,0-0.1,0.1-0.2,0.1c0,0-0.1,0.1-0.1,0.1c0,0,0,0,0.1,0c0,0,0.1,0,0.2-0.1c0.1,0,0.2-0.1,0.3-0.1
|
|
2294
|
+
c0.1,0,0.2-0.1,0.3-0.1c0.1,0,0.1,0,0.1,0c0,0,0,0.1-0.1,0.2c-0.1,0.1-0.2,0.2-0.4,0.2c-0.2,0.1-0.3,0.1-0.4,0.2
|
|
2295
|
+
c-0.1,0-0.2,0-0.2,0C14.5,128.2,14.6,128.2,14.7,128.1L14.7,128.1z"/>
|
|
2296
|
+
</g>
|
|
2297
|
+
<linearGradient id="SVGID_228_" gradientUnits="userSpaceOnUse" x1="1074.4341" y1="832.0332" x2="1074.4341" y2="833.9332" gradientTransform="matrix(0.9036 -0.4284 -0.4284 -0.9036 -602.9951 1338.267)">
|
|
2298
|
+
<stop offset="0.4442" style="stop-color:#6A8447"/>
|
|
2299
|
+
<stop offset="1" style="stop-color:#466647"/>
|
|
2300
|
+
</linearGradient>
|
|
2301
|
+
<polygon class="st247" points="17.7,121.4 3.8,128 4.2,129.8 18.8,122.9 "/>
|
|
2302
|
+
<rect x="8.3" y="114" transform="matrix(0.9035 -0.4286 0.4286 0.9035 -48.4768 14.9691)" class="st241" width="1.4" height="2.2"/>
|
|
2303
|
+
<rect x="3.7" y="116.2" transform="matrix(0.9035 -0.4286 0.4286 0.9035 -49.8391 13.2164)" class="st241" width="1.4" height="2.2"/>
|
|
2304
|
+
<linearGradient id="SVGID_229_" gradientUnits="userSpaceOnUse" x1="3627.5139" y1="-4637.2534" x2="3627.5139" y2="-4643.1533" gradientTransform="matrix(-0.9036 0.4284 0.4284 0.9036 5274.0752 2758.6331)">
|
|
2305
|
+
<stop offset="0" style="stop-color:#6A8447"/>
|
|
2306
|
+
<stop offset="1" style="stop-color:#466647"/>
|
|
2307
|
+
</linearGradient>
|
|
2308
|
+
<path class="st248" d="M16.7,119.6c-2.6-2.4-3.9-3.6-6.5-6c-0.7,0.3-1.1,0.5-1.8,0.8c0.3,0.4,0.5,0.7,0.9,1.1
|
|
2309
|
+
c-1.8,0.9-2.7,1.3-4.6,2.2c-0.1-0.5-0.2-0.8-0.3-1.4c-0.7,0.3-1.1,0.5-1.8,0.8c0.2,3.5,0.3,5.3,0.5,8.8
|
|
2310
|
+
C8.5,123.5,11.2,122.2,16.7,119.6L16.7,119.6z"/>
|
|
2311
|
+
<path class="st243" d="M2.2,117.1c1-0.5,1.4-0.7,2.4-1.1c0.1,0.5,0.2,0.8,0.4,1.3c1.5-0.7,2.2-1.1,3.8-1.8c-0.3-0.4-0.5-0.7-0.8-1.1
|
|
2312
|
+
c1-0.5,1.4-0.7,2.4-1.1c2.9,2.5,4.2,3.4,7,5.9c-6,2.8-9,4.3-15,7.2C2.2,122.6,2.3,120.9,2.2,117.1L2.2,117.1z M4,116.7
|
|
2313
|
+
c-0.5,0.2-0.7,0.3-1.2,0.6c0.3,3.3,0.2,4.6,0.5,7.9c4.9-2.3,7.4-3.5,12.3-5.9c-2.4-2.3-3.4-3.1-5.8-5.4c-0.5,0.2-0.7,0.3-1.2,0.6
|
|
2314
|
+
c0.4,0.4,0.5,0.7,0.9,1.1l-5.4,2.6C4.2,117.5,4.1,117.3,4,116.7L4,116.7z"/>
|
|
2315
|
+
<path class="st244" d="M5,123.4c3.4-1.6,5.1-2.4,8.5-4c-1.2-1.3-1.8-2-3-3.3c-2.5,1.2-3.7,1.8-6.2,2.9C4.6,120.8,4.7,121.6,5,123.4
|
|
2316
|
+
L5,123.4z"/>
|
|
2317
|
+
<path class="st245" d="M3.8,119c2.8-1.3,4.2-2,7-3.3c1.4,1.4,2.1,2.1,3.5,3.5c-4,1.9-5.9,2.8-9.9,4.7C4.2,121.9,4.1,121,3.8,119
|
|
2318
|
+
L3.8,119z M10.2,116.4C8,117.4,7,118,4.8,119c0.3,1.6,0.3,2,0.6,3.6c2.9-1.4,4.3-2,7.2-3.4C11.6,117.9,11.2,117.7,10.2,116.4
|
|
2319
|
+
L10.2,116.4z"/>
|
|
2320
|
+
<g>
|
|
2321
|
+
<path class="st246" d="M11.6,119c-0.1,0.1-0.2,0.1-0.3,0.1c-0.3,0-0.5,0-0.7,0c0.1,0.1,0.1,0.2,0.2,0.3c-0.1,0.1-0.2,0.1-0.3,0.1
|
|
2322
|
+
c-0.1-0.2-0.1-0.2-0.2-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.3,0,0.4,0,0.8,0c-0.1-0.1-0.1-0.2-0.2-0.3c0.1-0.1,0.2-0.1,0.3-0.1
|
|
2323
|
+
C11.4,118.8,11.5,118.8,11.6,119L11.6,119z"/>
|
|
2324
|
+
<path class="st246" d="M9,120.1c0.3-0.1,0.5-0.2,0.8-0.4c0,0,0,0-0.1-0.1c-0.3,0.1-0.4,0.2-0.7,0.3c0,0,0,0,0-0.1
|
|
2325
|
+
c0.3-0.1,0.4-0.2,0.7-0.3c0,0,0-0.1-0.1-0.1c-0.3,0.1-0.5,0.2-0.8,0.4c0,0,0,0,0-0.1c0.4-0.2,0.6-0.3,1.1-0.5
|
|
2326
|
+
c0.1,0.2,0.1,0.2,0.2,0.4C9.7,119.9,9.5,120,9,120.1C9.1,120.1,9.1,120.1,9,120.1L9,120.1z"/>
|
|
2327
|
+
<path class="st246" d="M8.6,120.4c-0.1-0.1-0.2-0.1-0.3-0.1c0,0,0,0-0.1,0c0,0,0,0.1,0,0.1c0,0.1,0,0.2-0.1,0.3
|
|
2328
|
+
c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1-0.1-0.2-0.1-0.3-0.2c0,0,0,0-0.1,0c0,0,0,0.1,0,0.1c0,0.1-0.1,0.2-0.1,0.3
|
|
2329
|
+
c-0.1,0.1-0.2,0.1-0.3,0.1c0.1-0.3,0.2-0.4,0.2-0.6c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0.1,0.2,0.1,0.3,0.2c0,0,0,0,0.1,0.1
|
|
2330
|
+
c0,0,0-0.1,0-0.1c0-0.1,0-0.2,0.1-0.3c0.1-0.1,0.2-0.1,0.3-0.1c0.2,0.1,0.4,0.1,0.6,0.2C8.8,120.3,8.7,120.3,8.6,120.4L8.6,120.4z"
|
|
2331
|
+
/>
|
|
2332
|
+
<path class="st246" d="M6.6,121C6.6,121,6.6,121,6.6,121c-0.1,0-0.2,0-0.3,0.1c-0.1,0-0.1,0.1-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.1
|
|
2333
|
+
c0,0,0,0,0.1,0c0,0,0.1,0,0.2-0.1c0.1,0,0.1,0,0.2-0.1c0.2-0.1,0.3-0.1,0.3-0.1c0.1,0,0.2,0,0.2,0c0,0,0,0.1-0.1,0.2
|
|
2334
|
+
c-0.1,0.1-0.2,0.2-0.4,0.2c-0.2,0.1-0.3,0.1-0.4,0.1c-0.1,0-0.2,0-0.2,0c0.1-0.1,0.2-0.1,0.3-0.1c0,0,0.1,0,0.1,0
|
|
2335
|
+
c0.1,0,0.1,0,0.2-0.1c0.1,0,0.1-0.1,0.2-0.1c0,0,0.1-0.1,0.1-0.1c0,0,0,0-0.1,0c0,0-0.1,0-0.2,0.1c-0.1,0-0.2,0.1-0.3,0.1
|
|
2336
|
+
c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0-0.1,0-0.1,0c0,0,0-0.1,0.1-0.2c0.1-0.1,0.2-0.2,0.4-0.2c0.2-0.1,0.3-0.1,0.4-0.2c0.1,0,0.2,0,0.2,0
|
|
2337
|
+
C6.8,120.9,6.7,120.9,6.6,121L6.6,121z"/>
|
|
2338
|
+
</g>
|
|
2339
|
+
<linearGradient id="SVGID_230_" gradientUnits="userSpaceOnUse" x1="3627.5181" y1="-4636.8535" x2="3627.5181" y2="-4634.8535" gradientTransform="matrix(-0.9036 0.4284 0.4284 0.9036 5274.0752 2758.6331)">
|
|
2340
|
+
<stop offset="0.4442" style="stop-color:#6A8447"/>
|
|
2341
|
+
<stop offset="1" style="stop-color:#466647"/>
|
|
2342
|
+
</linearGradient>
|
|
2343
|
+
<polygon class="st249" points="3.7,127.7 17.5,121.1 17.1,119.4 2.6,126.3 "/>
|
|
2344
|
+
<g>
|
|
2345
|
+
<rect x="101.6" y="95.1" class="st250" width="25.5" height="25.5"/>
|
|
2346
|
+
<rect x="106.7" y="100.2" class="st251" width="15.3" height="15.3"/>
|
|
2347
|
+
<polyline class="st252" points="103.7,119 103.7,97.1 125.6,97.1 "/>
|
|
2348
|
+
<path class="st253" d="M123.1,99.2c0.3,3,0.5,5.9,0.6,8.9c0.2,3,0.3,5.9,0.4,8.9l0,0.5l-0.5,0c-3-0.1-6-0.2-8.9-0.4l-4.5-0.3
|
|
2349
|
+
c-1.5-0.1-3-0.2-4.5-0.4c1.5-0.1,3-0.1,4.5-0.1l4.5,0c3,0,6,0.1,8.9,0.1l-0.5,0.5c-0.1-3-0.1-5.9-0.1-8.9
|
|
2350
|
+
C123,105.2,123,102.2,123.1,99.2L123.1,99.2z"/>
|
|
2351
|
+
</g>
|
|
2352
|
+
<linearGradient id="SVGID_231_" gradientUnits="userSpaceOnUse" x1="77.3205" y1="131.8344" x2="77.3205" y2="9.1635">
|
|
2353
|
+
<stop offset="0" style="stop-color:#E5F7FF"/>
|
|
2354
|
+
<stop offset="0.2704" style="stop-color:#EEF7FF"/>
|
|
2355
|
+
<stop offset="0.4286" style="stop-color:#E4F7FF"/>
|
|
2356
|
+
<stop offset="1" style="stop-color:#EEF7FF"/>
|
|
2357
|
+
</linearGradient>
|
|
2358
|
+
<polygon class="st254" points="24.9,22.8 129.4,9.2 129.8,131.8 24.9,119 "/>
|
|
2359
|
+
<g>
|
|
2360
|
+
<linearGradient id="SVGID_232_" gradientUnits="userSpaceOnUse" x1="96.6901" y1="-116.3724" x2="96.7855" y2="-116.3724">
|
|
2361
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2362
|
+
<stop offset="1" style="stop-color:#FFB9AC;stop-opacity:0"/>
|
|
2363
|
+
</linearGradient>
|
|
2364
|
+
<path class="st255" d="M96.7-116.4C96.7-116.4,96.7-116.4,96.7-116.4C96.8-116.4,96.8-116.4,96.7-116.4
|
|
2365
|
+
C96.8-116.4,96.7-116.4,96.7-116.4z"/>
|
|
2366
|
+
</g>
|
|
2367
|
+
<linearGradient id="SVGID_233_" gradientUnits="userSpaceOnUse" x1="28.4695" y1="27.9539" x2="28.4695" y2="20.3239" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2368
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2369
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2370
|
+
</linearGradient>
|
|
2371
|
+
<path class="st256" d="M24.9,113.8C24.9,113.8,24.9,113.8,24.9,113.8c-2.2-0.3-2.7,1.9-2.7,3.2c0,1.3,0.5,3.6,2.7,3.8c0,0,0,0,0,0
|
|
2372
|
+
c4,0.5,5.9,0.7,9.9,1.2c0,0-1.1-1.6-1.1-3.7s1-3.5,1-3.5C30.8,114.4,28.8,114.2,24.9,113.8L24.9,113.8z"/>
|
|
2373
|
+
<linearGradient id="SVGID_234_" gradientUnits="userSpaceOnUse" x1="42.97" y1="26.4039" x2="42.97" y2="18.5439" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2374
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2375
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2376
|
+
</linearGradient>
|
|
2377
|
+
<path class="st257" d="M39.4,115.3L39.4,115.3c-2.2-0.3-2.7,1.9-2.7,3.3c0,1.4,0.5,3.7,2.7,4c0,0,0,0,0,0c4,0.5,5.9,0.7,9.9,1.2
|
|
2378
|
+
c0,0-1.1-1.7-1.1-3.8s1-3.7,1-3.7C45.3,115.9,43.3,115.7,39.4,115.3L39.4,115.3z"/>
|
|
2379
|
+
<linearGradient id="SVGID_235_" gradientUnits="userSpaceOnUse" x1="57.5945" y1="24.8439" x2="57.5945" y2="16.7439" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2380
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2381
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2382
|
+
</linearGradient>
|
|
2383
|
+
<path class="st258" d="M54,116.9L54,116.9c-2.2-0.3-2.7,2-2.7,3.5c0,1.4,0.5,3.8,2.7,4.1c0,0,0,0,0,0c4,0.5,5.9,0.7,9.9,1.2
|
|
2384
|
+
c0,0-1.1-1.7-1.1-3.9s1-3.8,1-3.8C59.9,117.5,57.9,117.3,54,116.9L54,116.9z"/>
|
|
2385
|
+
<linearGradient id="SVGID_236_" gradientUnits="userSpaceOnUse" x1="72.2195" y1="23.2739" x2="72.2195" y2="14.9439" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2386
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2387
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2388
|
+
</linearGradient>
|
|
2389
|
+
<path class="st259" d="M68.6,118.4L68.6,118.4c-2.2-0.3-2.7,2.1-2.7,3.6s0.5,3.9,2.7,4.2c0,0,0,0,0,0c4,0.5,5.9,0.7,9.9,1.2
|
|
2390
|
+
c0,0-1.1-1.7-1.1-4s1-3.9,1-3.9C74.5,119.1,72.6,118.9,68.6,118.4L68.6,118.4z"/>
|
|
2391
|
+
<linearGradient id="SVGID_237_" gradientUnits="userSpaceOnUse" x1="86.846" y1="21.7039" x2="86.846" y2="13.1439" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2392
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2393
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2394
|
+
</linearGradient>
|
|
2395
|
+
<path class="st260" d="M83.2,120C83.2,120,83.2,120,83.2,120c-2.2-0.3-2.7,2.2-2.7,3.7c0,1.5,0.5,4.1,2.7,4.3c0,0,0,0,0,0
|
|
2396
|
+
c4,0.5,5.9,0.7,9.9,1.2c0,0-1.1-1.8-1.1-4.2s1-4,1-4C89.1,120.6,87.2,120.4,83.2,120L83.2,120z"/>
|
|
2397
|
+
<linearGradient id="SVGID_238_" gradientUnits="userSpaceOnUse" x1="101.4715" y1="20.1339" x2="101.4715" y2="11.3439" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2398
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2399
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2400
|
+
</linearGradient>
|
|
2401
|
+
<path class="st261" d="M97.9,121.6L97.9,121.6c-2.2-0.3-2.7,2.3-2.7,3.8c0,1.6,0.5,4.2,2.7,4.5c0,0,0,0,0,0c4,0.5,5.9,0.7,9.9,1.2
|
|
2402
|
+
c0,0-1.1-1.9-1.1-4.3c0-2.4,1-4.2,1-4.2C103.8,122.2,101.8,122,97.9,121.6L97.9,121.6z"/>
|
|
2403
|
+
<linearGradient id="SVGID_239_" gradientUnits="userSpaceOnUse" x1="116.0925" y1="18.5739" x2="116.0925" y2="9.5539" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2404
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2405
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2406
|
+
</linearGradient>
|
|
2407
|
+
<path class="st262" d="M112.5,123.1C112.5,123.1,112.5,123.1,112.5,123.1c-2.2-0.3-2.7,2.3-2.7,4c0,1.6,0.5,4.3,2.7,4.6h0
|
|
2408
|
+
c4,0.5,5.9,0.7,9.9,1.2c0,0-1.1-1.9-1.1-4.4c0-2.5,1-4.3,1-4.3C118.4,123.8,116.4,123.6,112.5,123.1L112.5,123.1z"/>
|
|
2409
|
+
<linearGradient id="SVGID_240_" gradientUnits="userSpaceOnUse" x1="130.6915" y1="17.0039" x2="130.6915" y2="7.7639" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2410
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2411
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2412
|
+
</linearGradient>
|
|
2413
|
+
<path class="st263" d="M127.1,124.7L127.1,124.7c-2.2-0.3-2.7,2.4-2.7,4.1c0,1.7,0.5,4.4,2.7,4.7c0,0,0,0,0,0c4,0.5,5.9,0.7,9.9,1.2
|
|
2414
|
+
c0,0-1.1-2-1.1-4.5c0-2.6,1-4.4,1-4.4C133,125.3,131,125.1,127.1,124.7L127.1,124.7z"/>
|
|
2415
|
+
<linearGradient id="SVGID_241_" gradientUnits="userSpaceOnUse" x1="28.47" y1="38.3039" x2="28.47" y2="30.9039" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2416
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2417
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2418
|
+
</linearGradient>
|
|
2419
|
+
<path class="st264" d="M24.9,103.4C24.9,103.4,24.9,103.4,24.9,103.4c-2.2-0.2-2.7,1.9-2.7,3.3c0,1.3,0.5,3.5,2.7,3.8c0,0,0,0,0,0
|
|
2420
|
+
c4,0.4,5.9,0.6,9.9,1c0,0-1.1-1.6-1.1-3.6s1-3.6,1-3.6C30.8,103.9,28.8,103.8,24.9,103.4L24.9,103.4z"/>
|
|
2421
|
+
<linearGradient id="SVGID_242_" gradientUnits="userSpaceOnUse" x1="42.9695" y1="37.1139" x2="42.9695" y2="29.4839" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2422
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2423
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2424
|
+
</linearGradient>
|
|
2425
|
+
<path class="st265" d="M39.4,104.6L39.4,104.6c-2.2-0.2-2.7,2-2.7,3.4s0.5,3.7,2.7,3.9c0,0,0,0,0,0c4,0.4,5.9,0.6,9.9,1
|
|
2426
|
+
c0,0-1.1-1.6-1.1-3.8s1-3.7,1-3.7C45.3,105.1,43.3,104.9,39.4,104.6L39.4,104.6z"/>
|
|
2427
|
+
<linearGradient id="SVGID_243_" gradientUnits="userSpaceOnUse" x1="57.5945" y1="35.9139" x2="57.5945" y2="28.0539" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2428
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2429
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2430
|
+
</linearGradient>
|
|
2431
|
+
<path class="st266" d="M54,105.8C54,105.8,54,105.8,54,105.8c-2.2-0.2-2.7,2.1-2.7,3.5s0.5,3.8,2.7,4c0,0,0,0,0,0
|
|
2432
|
+
c4,0.4,5.9,0.6,9.9,1c0,0-1.1-1.7-1.1-3.9s1-3.8,1-3.8C59.9,106.3,57.9,106.1,54,105.8L54,105.8z"/>
|
|
2433
|
+
<linearGradient id="SVGID_244_" gradientUnits="userSpaceOnUse" x1="72.2205" y1="34.7139" x2="72.2205" y2="26.6239" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2434
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2435
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2436
|
+
</linearGradient>
|
|
2437
|
+
<path class="st267" d="M68.6,107C68.6,107,68.6,107,68.6,107c-2.2-0.2-2.7,2.2-2.7,3.7c0,1.5,0.5,3.9,2.7,4.1c0,0,0,0,0,0
|
|
2438
|
+
c4,0.4,5.9,0.6,9.9,1c0,0-1.1-1.7-1.1-4s1-3.9,1-3.9C74.5,107.5,72.6,107.3,68.6,107L68.6,107z"/>
|
|
2439
|
+
<linearGradient id="SVGID_245_" gradientUnits="userSpaceOnUse" x1="86.845" y1="33.5139" x2="86.845" y2="25.1939" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2440
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2441
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2442
|
+
</linearGradient>
|
|
2443
|
+
<path class="st268" d="M83.2,108.2L83.2,108.2c-2.2-0.2-2.7,2.2-2.7,3.8c0,1.5,0.5,4,2.7,4.3c0,0,0,0,0,0c4,0.4,5.9,0.6,9.9,1
|
|
2444
|
+
c0,0-1.1-1.8-1.1-4.1s1-4.1,1-4.1C89.1,108.7,87.2,108.5,83.2,108.2L83.2,108.2z"/>
|
|
2445
|
+
<linearGradient id="SVGID_246_" gradientUnits="userSpaceOnUse" x1="101.4715" y1="32.3239" x2="101.4715" y2="23.7639" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2446
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2447
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2448
|
+
</linearGradient>
|
|
2449
|
+
<path class="st269" d="M97.9,109.4C97.9,109.4,97.9,109.4,97.9,109.4c-2.2-0.2-2.7,2.3-2.7,3.9c0,1.6,0.5,4.2,2.7,4.4h0
|
|
2450
|
+
c4,0.4,5.9,0.6,9.9,1c0,0-1.1-1.8-1.1-4.3s1-4.2,1-4.2C103.8,109.9,101.8,109.7,97.9,109.4L97.9,109.4z"/>
|
|
2451
|
+
<linearGradient id="SVGID_247_" gradientUnits="userSpaceOnUse" x1="130.6926" y1="29.9239" x2="130.6926" y2="20.9139" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2452
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2453
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2454
|
+
</linearGradient>
|
|
2455
|
+
<path class="st270" d="M127.1,111.8C127.1,111.8,127.1,111.8,127.1,111.8c-2.2-0.2-2.7,2.5-2.7,4.2c0,1.7,0.5,4.4,2.7,4.6
|
|
2456
|
+
c0,0,0,0,0,0c4,0.4,5.9,0.6,9.9,1c0,0-1.1-1.9-1.1-4.5s1-4.4,1-4.4C133,112.3,131,112.1,127.1,111.8L127.1,111.8z"/>
|
|
2457
|
+
<linearGradient id="SVGID_248_" gradientUnits="userSpaceOnUse" x1="28.47" y1="48.6359" x2="28.47" y2="41.4739" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2458
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2459
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2460
|
+
</linearGradient>
|
|
2461
|
+
<path class="st271" d="M24.9,93.1C24.9,93.1,24.9,93.1,24.9,93.1c-2.2-0.1-2.7,2-2.7,3.3c0,1.3,0.5,3.5,2.7,3.7c0,0,0,0,0,0
|
|
2462
|
+
c4,0.3,5.9,0.4,9.9,0.7c0,0-1.1-1.5-1.1-3.6s1-3.6,1-3.6C30.8,93.4,28.8,93.3,24.9,93.1L24.9,93.1z"/>
|
|
2463
|
+
<linearGradient id="SVGID_249_" gradientUnits="userSpaceOnUse" x1="42.9695" y1="47.8109" x2="42.9695" y2="40.4239" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2464
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2465
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2466
|
+
</linearGradient>
|
|
2467
|
+
<path class="st272" d="M39.4,93.9C39.4,93.9,39.4,93.9,39.4,93.9c-2.2-0.1-2.7,2.1-2.7,3.5c0,1.4,0.5,3.7,2.7,3.8c0,0,0,0,0,0
|
|
2468
|
+
c4,0.3,5.9,0.4,9.9,0.7c0,0-1.1-1.6-1.1-3.7s1-3.7,1-3.7C45.3,94.2,43.3,94.1,39.4,93.9L39.4,93.9z"/>
|
|
2469
|
+
<linearGradient id="SVGID_250_" gradientUnits="userSpaceOnUse" x1="57.5945" y1="46.9819" x2="57.5945" y2="39.3639" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2470
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2471
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2472
|
+
</linearGradient>
|
|
2473
|
+
<path class="st273" d="M54,94.7L54,94.7c-2.2-0.1-2.7,2.2-2.7,3.6c0,1.4,0.5,3.8,2.7,3.9c0,0,0,0,0,0c4,0.3,5.9,0.4,9.9,0.7
|
|
2474
|
+
c0,0-1.1-1.6-1.1-3.9s1-3.8,1-3.8C59.9,95.1,57.9,95,54,94.7L54,94.7z"/>
|
|
2475
|
+
<linearGradient id="SVGID_251_" gradientUnits="userSpaceOnUse" x1="72.219" y1="46.1509" x2="72.219" y2="38.3039" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2476
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2477
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2478
|
+
</linearGradient>
|
|
2479
|
+
<path class="st274" d="M68.6,95.6L68.6,95.6c-2.2-0.1-2.7,2.2-2.7,3.7s0.5,3.9,2.7,4.1c0,0,0,0,0,0c4,0.3,5.9,0.4,9.9,0.7
|
|
2480
|
+
c0,0-1.1-1.7-1.1-4s1-4,1-4C74.5,95.9,72.6,95.8,68.6,95.6L68.6,95.6z"/>
|
|
2481
|
+
<linearGradient id="SVGID_252_" gradientUnits="userSpaceOnUse" x1="86.8455" y1="45.3229" x2="86.8455" y2="37.2439" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2482
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2483
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2484
|
+
</linearGradient>
|
|
2485
|
+
<path class="st275" d="M83.2,96.4L83.2,96.4c-2.2-0.1-2.7,2.3-2.7,3.8c0,1.5,0.5,4,2.7,4.2c0,0,0,0,0,0c4,0.3,5.9,0.4,9.9,0.7
|
|
2486
|
+
c0,0-1.1-1.7-1.1-4.1s1-4.1,1-4.1C89.1,96.7,87.2,96.6,83.2,96.4L83.2,96.4z"/>
|
|
2487
|
+
<linearGradient id="SVGID_253_" gradientUnits="userSpaceOnUse" x1="101.4705" y1="44.4939" x2="101.4705" y2="36.1839" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2488
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2489
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2490
|
+
</linearGradient>
|
|
2491
|
+
<path class="st276" d="M97.9,97.2C97.9,97.2,97.9,97.2,97.9,97.2c-2.2-0.1-2.7,2.4-2.7,4c0,1.6,0.5,4.2,2.7,4.3c0,0,0,0,0,0
|
|
2492
|
+
c4,0.3,5.9,0.4,9.9,0.7c0,0-1.1-1.8-1.1-4.2s1-4.2,1-4.2C103.8,97.5,101.8,97.4,97.9,97.2L97.9,97.2z"/>
|
|
2493
|
+
<linearGradient id="SVGID_254_" gradientUnits="userSpaceOnUse" x1="130.6926" y1="42.8359" x2="130.6926" y2="34.0639" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2494
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2495
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2496
|
+
</linearGradient>
|
|
2497
|
+
<path class="st277" d="M127.1,98.9L127.1,98.9c-2.2-0.1-2.7,2.5-2.7,4.2c0,1.7,0.5,4.4,2.7,4.6c0,0,0,0,0,0c4,0.3,5.9,0.4,9.9,0.7
|
|
2498
|
+
c0,0-1.1-1.9-1.1-4.5s1-4.5,1-4.5C133,99.2,131,99.1,127.1,98.9L127.1,98.9z"/>
|
|
2499
|
+
<linearGradient id="SVGID_255_" gradientUnits="userSpaceOnUse" x1="28.4705" y1="58.9799" x2="28.4705" y2="52.0539" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2500
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2501
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2502
|
+
</linearGradient>
|
|
2503
|
+
<path class="st278" d="M24.9,82.8C24.9,82.8,24.9,82.8,24.9,82.8c-2.2,0-2.7,2.1-2.7,3.4c0,1.3,0.5,3.5,2.7,3.6c0,0,0,0,0,0
|
|
2504
|
+
c4,0.2,5.9,0.3,9.9,0.5c0,0-1.1-1.5-1.1-3.6s1-3.6,1-3.6C30.8,82.9,28.8,82.9,24.9,82.8z"/>
|
|
2505
|
+
<linearGradient id="SVGID_256_" gradientUnits="userSpaceOnUse" x1="42.969" y1="58.5239" x2="42.969" y2="51.3659" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2506
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2507
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2508
|
+
</linearGradient>
|
|
2509
|
+
<path class="st279" d="M39.4,83.2C39.4,83.2,39.4,83.2,39.4,83.2c-2.2,0-2.7,2.1-2.7,3.5c0,1.4,0.5,3.6,2.7,3.8c0,0,0,0,0,0
|
|
2510
|
+
c4,0.2,5.9,0.3,9.9,0.5c0,0-1.1-1.6-1.1-3.7s1-3.7,1-3.7C45.3,83.4,43.3,83.3,39.4,83.2z"/>
|
|
2511
|
+
<linearGradient id="SVGID_257_" gradientUnits="userSpaceOnUse" x1="57.594" y1="58.0639" x2="57.594" y2="50.6749" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2512
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2513
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2514
|
+
</linearGradient>
|
|
2515
|
+
<path class="st280" d="M54,83.7C54,83.7,54,83.7,54,83.7c-2.2,0-2.7,2.2-2.7,3.7s0.5,3.8,2.7,3.9c0,0,0,0,0,0c4,0.2,5.9,0.3,9.9,0.5
|
|
2516
|
+
c0,0-1.1-1.6-1.1-3.8s1-3.9,1-3.9C59.9,83.8,57.9,83.8,54,83.7z"/>
|
|
2517
|
+
<linearGradient id="SVGID_258_" gradientUnits="userSpaceOnUse" x1="72.219" y1="57.5999" x2="72.219" y2="49.9809" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2518
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2519
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2520
|
+
</linearGradient>
|
|
2521
|
+
<path class="st281" d="M68.6,84.1C68.6,84.1,68.6,84.1,68.6,84.1c-2.2,0-2.7,2.3-2.7,3.8s0.5,3.9,2.7,4c0,0,0,0,0,0
|
|
2522
|
+
c4,0.2,5.9,0.3,9.9,0.5c0,0-1.1-1.7-1.1-4s1-4,1-4C74.5,84.3,72.6,84.2,68.6,84.1z"/>
|
|
2523
|
+
<linearGradient id="SVGID_259_" gradientUnits="userSpaceOnUse" x1="86.845" y1="57.1419" x2="86.845" y2="49.2909" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2524
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2525
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2526
|
+
</linearGradient>
|
|
2527
|
+
<path class="st282" d="M83.2,84.6C83.2,84.6,83.2,84.6,83.2,84.6c-2.2,0-2.7,2.4-2.7,3.9c0,1.5,0.5,4,2.7,4.1c0,0,0,0,0,0
|
|
2528
|
+
c4,0.2,5.9,0.3,9.9,0.5c0,0-1.1-1.7-1.1-4.1s1-4.1,1-4.1C89.1,84.8,87.2,84.7,83.2,84.6z"/>
|
|
2529
|
+
<linearGradient id="SVGID_260_" gradientUnits="userSpaceOnUse" x1="101.4715" y1="56.6809" x2="101.4715" y2="48.5969" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2530
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2531
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2532
|
+
</linearGradient>
|
|
2533
|
+
<path class="st283" d="M97.9,85L97.9,85c-2.2,0-2.7,2.5-2.7,4c0,1.6,0.5,4.1,2.7,4.3c0,0,0,0,0,0c4,0.2,5.9,0.3,9.9,0.5
|
|
2534
|
+
c0,0-1.1-1.8-1.1-4.2s1-4.3,1-4.3C103.8,85.2,101.8,85.1,97.9,85L97.9,85z"/>
|
|
2535
|
+
<linearGradient id="SVGID_261_" gradientUnits="userSpaceOnUse" x1="116.0925" y1="56.2189" x2="116.0925" y2="47.9059" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2536
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2537
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2538
|
+
</linearGradient>
|
|
2539
|
+
<path class="st284" d="M112.5,85.5L112.5,85.5c-2.2,0-2.7,2.5-2.7,4.2c0,1.6,0.5,4.3,2.7,4.4c0,0,0,0,0,0c4,0.2,5.9,0.3,9.9,0.5
|
|
2540
|
+
c0,0-1.1-1.8-1.1-4.3s1-4.4,1-4.4C118.4,85.7,116.4,85.6,112.5,85.5L112.5,85.5z"/>
|
|
2541
|
+
<linearGradient id="SVGID_262_" gradientUnits="userSpaceOnUse" x1="130.6926" y1="55.7589" x2="130.6926" y2="47.2159" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2542
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2543
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2544
|
+
</linearGradient>
|
|
2545
|
+
<path class="st285" d="M127.1,85.9L127.1,85.9c-2.2,0-2.7,2.6-2.7,4.3c0,1.7,0.5,4.4,2.7,4.5c0,0,0,0,0,0c4,0.2,5.9,0.3,9.9,0.5
|
|
2546
|
+
c0,0-1.1-1.9-1.1-4.5s1-4.5,1-4.5C133,86.1,131,86.1,127.1,85.9L127.1,85.9z"/>
|
|
2547
|
+
<linearGradient id="SVGID_263_" gradientUnits="userSpaceOnUse" x1="28.47" y1="69.3339" x2="28.47" y2="62.6359" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2548
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2549
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2550
|
+
</linearGradient>
|
|
2551
|
+
<path class="st286" d="M24.9,72.4C24.9,72.4,24.9,72.4,24.9,72.4c-2.2,0-2.7,2.1-2.7,3.5s0.5,3.5,2.7,3.6h0c4,0.1,5.9,0.1,9.9,0.2
|
|
2552
|
+
c0,0-1.1-1.5-1.1-3.6s1-3.6,1-3.6C30.8,72.4,28.8,72.4,24.9,72.4z"/>
|
|
2553
|
+
<linearGradient id="SVGID_264_" gradientUnits="userSpaceOnUse" x1="42.9695" y1="69.2419" x2="42.9695" y2="62.3129" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2554
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2555
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2556
|
+
</linearGradient>
|
|
2557
|
+
<path class="st287" d="M39.4,72.5L39.4,72.5c-2.2,0-2.7,2.2-2.7,3.6c0,1.4,0.5,3.6,2.7,3.7c0,0,0,0,0,0c4,0.1,5.9,0.1,9.9,0.2
|
|
2558
|
+
c0,0-1.1-1.5-1.1-3.7s1-3.8,1-3.8C45.3,72.5,43.3,72.5,39.4,72.5z"/>
|
|
2559
|
+
<linearGradient id="SVGID_265_" gradientUnits="userSpaceOnUse" x1="57.5945" y1="69.1509" x2="57.5945" y2="61.9909" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2560
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2561
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2562
|
+
</linearGradient>
|
|
2563
|
+
<path class="st288" d="M54,72.6L54,72.6c-2.2,0-2.7,2.3-2.7,3.7s0.5,3.8,2.7,3.8c0,0,0,0,0,0c4,0.1,5.9,0.1,9.9,0.2
|
|
2564
|
+
c0,0-1.1-1.6-1.1-3.8s1-3.9,1-3.9C59.9,72.6,57.9,72.6,54,72.6z"/>
|
|
2565
|
+
<linearGradient id="SVGID_266_" gradientUnits="userSpaceOnUse" x1="72.2195" y1="69.0579" x2="72.2195" y2="61.6679" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2566
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2567
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2568
|
+
</linearGradient>
|
|
2569
|
+
<path class="st289" d="M68.6,72.7L68.6,72.7c-2.2,0-2.7,2.4-2.7,3.9s0.5,3.9,2.7,3.9c0,0,0,0,0,0c4,0.1,5.9,0.1,9.9,0.2
|
|
2570
|
+
c0,0-1.1-1.6-1.1-3.9s1-4,1-4C74.5,72.7,72.6,72.7,68.6,72.7z"/>
|
|
2571
|
+
<linearGradient id="SVGID_267_" gradientUnits="userSpaceOnUse" x1="86.845" y1="68.9669" x2="86.845" y2="61.3449" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2572
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2573
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2574
|
+
</linearGradient>
|
|
2575
|
+
<path class="st290" d="M83.2,72.7L83.2,72.7c-2.2,0-2.7,2.4-2.7,4c0,1.5,0.5,4,2.7,4.1c0,0,0,0,0,0c4,0.1,5.9,0.1,9.9,0.2
|
|
2576
|
+
c0,0-1.1-1.7-1.1-4.1s1-4.1,1-4.1C89.1,72.8,87.2,72.8,83.2,72.7z"/>
|
|
2577
|
+
<linearGradient id="SVGID_268_" gradientUnits="userSpaceOnUse" x1="101.4715" y1="68.8739" x2="101.4715" y2="61.0219" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2578
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2579
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2580
|
+
</linearGradient>
|
|
2581
|
+
<path class="st291" d="M97.9,72.8C97.9,72.8,97.9,72.8,97.9,72.8c-2.2,0-2.7,2.5-2.7,4.1c0,1.6,0.5,4.1,2.7,4.2c0,0,0,0,0,0
|
|
2582
|
+
c4,0.1,5.9,0.1,9.9,0.2c0,0-1.1-1.7-1.1-4.2s1-4.3,1-4.3C103.8,72.9,101.8,72.9,97.9,72.8L97.9,72.8z"/>
|
|
2583
|
+
<linearGradient id="SVGID_269_" gradientUnits="userSpaceOnUse" x1="116.0925" y1="68.7829" x2="116.0925" y2="60.6989" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2584
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2585
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2586
|
+
</linearGradient>
|
|
2587
|
+
<path class="st292" d="M112.5,72.9C112.5,72.9,112.5,72.9,112.5,72.9c-2.2,0-2.7,2.6-2.7,4.2c0,1.6,0.5,4.3,2.7,4.3c0,0,0,0,0,0
|
|
2588
|
+
c4,0.1,5.9,0.1,9.9,0.2c0,0-1.1-1.8-1.1-4.3s1-4.4,1-4.4C118.4,73,116.4,72.9,112.5,72.9L112.5,72.9z"/>
|
|
2589
|
+
<linearGradient id="SVGID_270_" gradientUnits="userSpaceOnUse" x1="130.6915" y1="68.6889" x2="130.6915" y2="60.3739" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2590
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2591
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2592
|
+
</linearGradient>
|
|
2593
|
+
<path class="st293" d="M127.1,73L127.1,73c-2.2,0-2.7,2.7-2.7,4.4s0.5,4.4,2.7,4.4c0,0,0,0,0,0c4,0.1,5.9,0.1,9.9,0.2
|
|
2594
|
+
c0,0-1.1-1.8-1.1-4.4s1-4.5,1-4.5C133,73,131,73,127.1,73L127.1,73z"/>
|
|
2595
|
+
<linearGradient id="SVGID_271_" gradientUnits="userSpaceOnUse" x1="28.47" y1="79.8689" x2="28.47" y2="73.2039" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2596
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2597
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2598
|
+
</linearGradient>
|
|
2599
|
+
<path class="st294" d="M24.9,62.1C24.9,62.1,24.9,62.1,24.9,62.1c-2.2,0-2.7,2.2-2.7,3.5c0,1.3,0.5,3.5,2.7,3.5c0,0,0,0,0,0
|
|
2600
|
+
c4,0,5.9,0,9.9,0c0,0-1.1-1.5-1.1-3.5c0-2.1,1-3.7,1-3.7C30.8,61.9,28.8,62,24.9,62.1z"/>
|
|
2601
|
+
<linearGradient id="SVGID_272_" gradientUnits="userSpaceOnUse" x1="42.9695" y1="80.1419" x2="42.9695" y2="73.2459" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2602
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2603
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2604
|
+
</linearGradient>
|
|
2605
|
+
<path class="st295" d="M39.4,61.8L39.4,61.8c-2.2,0-2.7,2.3-2.7,3.7c0,1.4,0.5,3.6,2.7,3.6c0,0,0,0,0,0c4,0,5.9,0,9.9,0
|
|
2606
|
+
c0,0-1.1-1.5-1.1-3.7c0-2.1,1-3.8,1-3.8C45.3,61.7,43.3,61.7,39.4,61.8z"/>
|
|
2607
|
+
<linearGradient id="SVGID_273_" gradientUnits="userSpaceOnUse" x1="57.5945" y1="80.4179" x2="57.5945" y2="73.2919" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2608
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2609
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2610
|
+
</linearGradient>
|
|
2611
|
+
<path class="st296" d="M54,61.5L54,61.5c-2.2,0-2.7,2.4-2.7,3.8c0,1.4,0.5,3.7,2.7,3.7c0,0,0,0,0,0c4,0,5.9,0,9.9,0
|
|
2612
|
+
c0,0-1.1-1.6-1.1-3.8c0-2.2,1-3.9,1-3.9C59.9,61.4,57.9,61.4,54,61.5z"/>
|
|
2613
|
+
<linearGradient id="SVGID_274_" gradientUnits="userSpaceOnUse" x1="72.2195" y1="80.6939" x2="72.2195" y2="73.3379" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2614
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2615
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2616
|
+
</linearGradient>
|
|
2617
|
+
<path class="st297" d="M68.6,61.2L68.6,61.2c-2.2,0-2.7,2.4-2.7,3.9c0,1.5,0.5,3.9,2.7,3.9c0,0,0,0,0,0c4,0,5.9,0,9.9,0
|
|
2618
|
+
c0,0-1.1-1.6-1.1-3.9c0-2.3,1-4,1-4C74.5,61.1,72.6,61.1,68.6,61.2z"/>
|
|
2619
|
+
<linearGradient id="SVGID_275_" gradientUnits="userSpaceOnUse" x1="86.845" y1="80.9719" x2="86.845" y2="73.3829" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2620
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2621
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2622
|
+
</linearGradient>
|
|
2623
|
+
<path class="st298" d="M83.2,60.9L83.2,60.9c-2.2,0-2.7,2.5-2.7,4c0,1.5,0.5,4,2.7,4c0,0,0,0,0,0c4,0,5.9,0,9.9,0c0,0-1.1-1.7-1.1-4
|
|
2624
|
+
c0-2.4,1-4.2,1-4.2C89.1,60.8,87.2,60.9,83.2,60.9z"/>
|
|
2625
|
+
<linearGradient id="SVGID_276_" gradientUnits="userSpaceOnUse" x1="101.4715" y1="81.2479" x2="101.4715" y2="73.4279" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2626
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2627
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2628
|
+
</linearGradient>
|
|
2629
|
+
<path class="st299" d="M97.9,60.7L97.9,60.7c-2.2,0-2.7,2.6-2.7,4.2c0,1.6,0.5,4.1,2.7,4.1c0,0,0,0,0,0c4,0,5.9,0,9.9,0
|
|
2630
|
+
c0,0-1.1-1.7-1.1-4.2c0-2.4,1-4.3,1-4.3C103.8,60.5,101.8,60.6,97.9,60.7L97.9,60.7z"/>
|
|
2631
|
+
<linearGradient id="SVGID_277_" gradientUnits="userSpaceOnUse" x1="116.0925" y1="81.5229" x2="116.0925" y2="73.4749" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2632
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2633
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2634
|
+
</linearGradient>
|
|
2635
|
+
<path class="st300" d="M112.5,60.4C112.5,60.4,112.5,60.4,112.5,60.4c-2.2,0-2.7,2.7-2.7,4.3c0,1.6,0.5,4.2,2.7,4.2c0,0,0,0,0,0
|
|
2636
|
+
c4,0,5.9,0,9.9,0c0,0-1.1-1.8-1.1-4.3c0-2.5,1-4.4,1-4.4C118.4,60.3,116.4,60.3,112.5,60.4L112.5,60.4z"/>
|
|
2637
|
+
<linearGradient id="SVGID_278_" gradientUnits="userSpaceOnUse" x1="130.6915" y1="81.7989" x2="130.6915" y2="73.5189" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2638
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2639
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2640
|
+
</linearGradient>
|
|
2641
|
+
<path class="st301" d="M127.1,60.1C127.1,60.1,127.1,60.1,127.1,60.1c-2.2,0-2.7,2.7-2.7,4.4c0,1.7,0.5,4.4,2.7,4.4h0
|
|
2642
|
+
c4,0,5.9,0,9.9,0c0,0-1.1-1.8-1.1-4.4c0-2.6,1-4.6,1-4.6C133,60,131,60,127.1,60.1L127.1,60.1z"/>
|
|
2643
|
+
<linearGradient id="SVGID_279_" gradientUnits="userSpaceOnUse" x1="28.47" y1="90.4499" x2="28.47" y2="83.5589" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2644
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2645
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2646
|
+
</linearGradient>
|
|
2647
|
+
<path class="st302" d="M24.9,51.7C24.9,51.7,24.9,51.7,24.9,51.7c-2.2,0-2.7,2.3-2.7,3.6c0,1.3,0.5,3.5,2.7,3.4c0,0,0,0,0,0
|
|
2648
|
+
c4-0.1,5.9-0.2,9.9-0.3c0,0-1.1-1.4-1.1-3.5s1-3.7,1-3.7C30.8,51.5,28.8,51.5,24.9,51.7z"/>
|
|
2649
|
+
<linearGradient id="SVGID_280_" gradientUnits="userSpaceOnUse" x1="42.9695" y1="91.0909" x2="42.9695" y2="83.9699" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2650
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2651
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2652
|
+
</linearGradient>
|
|
2653
|
+
<path class="st303" d="M39.4,51.1C39.4,51.1,39.4,51.1,39.4,51.1c-2.2,0-2.7,2.3-2.7,3.7s0.5,3.6,2.7,3.5c0,0,0,0,0,0
|
|
2654
|
+
c4-0.1,5.9-0.2,9.9-0.3c0,0-1.1-1.5-1.1-3.6s1-3.8,1-3.8C45.3,50.8,43.3,50.9,39.4,51.1z"/>
|
|
2655
|
+
<linearGradient id="SVGID_281_" gradientUnits="userSpaceOnUse" x1="57.5945" y1="91.7339" x2="57.5945" y2="84.3819" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2656
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2657
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2658
|
+
</linearGradient>
|
|
2659
|
+
<path class="st304" d="M54,50.4C54,50.4,54,50.4,54,50.4c-2.2,0-2.7,2.4-2.7,3.9S51.8,58,54,58c0,0,0,0,0,0c4-0.1,5.9-0.2,9.9-0.3
|
|
2660
|
+
c0,0-1.1-1.5-1.1-3.8s1-3.9,1-3.9C59.9,50.2,57.9,50.2,54,50.4z"/>
|
|
2661
|
+
<linearGradient id="SVGID_282_" gradientUnits="userSpaceOnUse" x1="72.2195" y1="92.3789" x2="72.2195" y2="84.7959" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2662
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2663
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2664
|
+
</linearGradient>
|
|
2665
|
+
<path class="st305" d="M68.6,49.8L68.6,49.8c-2.2,0-2.7,2.5-2.7,4c0,1.5,0.5,3.9,2.7,3.8c0,0,0,0,0,0c4-0.1,5.9-0.2,9.9-0.3
|
|
2666
|
+
c0,0-1.1-1.6-1.1-3.9s1-4.1,1-4.1C74.5,49.5,72.6,49.6,68.6,49.8z"/>
|
|
2667
|
+
<linearGradient id="SVGID_283_" gradientUnits="userSpaceOnUse" x1="86.845" y1="93.0259" x2="86.845" y2="85.2099" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2668
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2669
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2670
|
+
</linearGradient>
|
|
2671
|
+
<path class="st306" d="M83.2,49.1L83.2,49.1c-2.2,0-2.7,2.6-2.7,4.1c0,1.5,0.5,4,2.7,3.9c0,0,0,0,0,0c4-0.1,5.9-0.2,9.9-0.3
|
|
2672
|
+
c0,0-1.1-1.6-1.1-4s1-4.2,1-4.2C89.1,48.9,87.2,48.9,83.2,49.1z"/>
|
|
2673
|
+
<linearGradient id="SVGID_284_" gradientUnits="userSpaceOnUse" x1="101.4715" y1="93.6699" x2="101.4715" y2="85.6239" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2674
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2675
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2676
|
+
</linearGradient>
|
|
2677
|
+
<path class="st307" d="M97.9,48.5L97.9,48.5c-2.2,0-2.7,2.7-2.7,4.2c0,1.6,0.5,4.1,2.7,4h0c4-0.1,5.9-0.2,9.9-0.3
|
|
2678
|
+
c0,0-1.1-1.7-1.1-4.1s1-4.3,1-4.3C103.8,48.2,101.8,48.3,97.9,48.5L97.9,48.5z"/>
|
|
2679
|
+
<linearGradient id="SVGID_285_" gradientUnits="userSpaceOnUse" x1="116.0925" y1="94.3149" x2="116.0925" y2="86.0369" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2680
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2681
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2682
|
+
</linearGradient>
|
|
2683
|
+
<path class="st308" d="M112.5,47.8L112.5,47.8c-2.2,0-2.7,2.7-2.7,4.4c0,1.6,0.5,4.2,2.7,4.2c0,0,0,0,0,0c4-0.1,5.9-0.2,9.9-0.3
|
|
2684
|
+
c0,0-1.1-1.7-1.1-4.3s1-4.5,1-4.5C118.4,47.6,116.4,47.6,112.5,47.8L112.5,47.8z"/>
|
|
2685
|
+
<linearGradient id="SVGID_286_" gradientUnits="userSpaceOnUse" x1="130.6915" y1="94.9589" x2="130.6915" y2="86.4499" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2686
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2687
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2688
|
+
</linearGradient>
|
|
2689
|
+
<path class="st309" d="M127.1,47.2L127.1,47.2c-2.2,0-2.7,2.8-2.7,4.5c0,1.7,0.5,4.4,2.7,4.3h0c4-0.1,5.9-0.2,9.9-0.3
|
|
2690
|
+
c0,0-1.1-1.8-1.1-4.4s1-4.6,1-4.6C133,46.9,131,47,127.1,47.2L127.1,47.2z"/>
|
|
2691
|
+
<linearGradient id="SVGID_287_" gradientUnits="userSpaceOnUse" x1="28.47" y1="101.0369" x2="28.47" y2="93.9109" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2692
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2693
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2694
|
+
</linearGradient>
|
|
2695
|
+
<path class="st310" d="M24.9,41.4L24.9,41.4c-2.1,0.2-2.7,2.3-2.7,3.7c0,1.3,0.5,3.5,2.7,3.4c0,0,0,0,0,0c4-0.2,5.9-0.3,9.9-0.5
|
|
2696
|
+
c0,0-1.1-1.4-1.1-3.5s1-3.7,1-3.7C30.8,41,28.8,41.1,24.9,41.4z"/>
|
|
2697
|
+
<linearGradient id="SVGID_288_" gradientUnits="userSpaceOnUse" x1="42.9695" y1="102.0409" x2="42.9695" y2="94.6869" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2698
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2699
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2700
|
+
</linearGradient>
|
|
2701
|
+
<path class="st311" d="M39.4,40.4C39.4,40.4,39.4,40.4,39.4,40.4c-2.1,0.2-2.7,2.4-2.7,3.8c0,1.4,0.5,3.6,2.7,3.5c0,0,0,0,0,0
|
|
2702
|
+
c4-0.2,5.9-0.3,9.9-0.5c0,0-1.1-1.5-1.1-3.6s1-3.8,1-3.8C45.3,40,43.3,40.1,39.4,40.4z"/>
|
|
2703
|
+
<linearGradient id="SVGID_289_" gradientUnits="userSpaceOnUse" x1="57.5945" y1="103.0529" x2="57.5945" y2="95.4689" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2704
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2705
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2706
|
+
</linearGradient>
|
|
2707
|
+
<path class="st312" d="M54,39.3L54,39.3c-2.2,0.2-2.7,2.5-2.7,3.9c0,1.4,0.5,3.7,2.7,3.6c0,0,0,0,0,0c4-0.2,5.9-0.3,9.9-0.5
|
|
2708
|
+
c0,0-1.1-1.5-1.1-3.7s1-4,1-4C59.9,38.9,57.9,39.1,54,39.3z"/>
|
|
2709
|
+
<linearGradient id="SVGID_290_" gradientUnits="userSpaceOnUse" x1="72.2195" y1="104.0679" x2="72.2195" y2="96.2499" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2710
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2711
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2712
|
+
</linearGradient>
|
|
2713
|
+
<path class="st313" d="M68.6,38.3L68.6,38.3c-2.2,0.2-2.7,2.6-2.7,4.1s0.5,3.9,2.7,3.7c0,0,0,0,0,0c4-0.2,5.9-0.3,9.9-0.5
|
|
2714
|
+
c0,0-1.1-1.6-1.1-3.9s1-4.1,1-4.1C74.5,37.9,72.6,38.1,68.6,38.3z"/>
|
|
2715
|
+
<linearGradient id="SVGID_291_" gradientUnits="userSpaceOnUse" x1="86.845" y1="105.0819" x2="86.845" y2="97.0369" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2716
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2717
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2718
|
+
</linearGradient>
|
|
2719
|
+
<path class="st314" d="M83.2,37.3C83.2,37.3,83.2,37.3,83.2,37.3c-2.1,0.2-2.7,2.6-2.7,4.2c0,1.5,0.5,4,2.7,3.9c0,0,0,0,0,0
|
|
2720
|
+
c4-0.2,5.9-0.3,9.9-0.5c0,0-1.1-1.6-1.1-4s1-4.2,1-4.2C89.1,36.9,87.2,37,83.2,37.3z"/>
|
|
2721
|
+
<linearGradient id="SVGID_292_" gradientUnits="userSpaceOnUse" x1="101.4715" y1="106.0949" x2="101.4715" y2="97.8179" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2722
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2723
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2724
|
+
</linearGradient>
|
|
2725
|
+
<path class="st315" d="M97.9,36.3C97.9,36.3,97.9,36.3,97.9,36.3c-2.1,0.2-2.7,2.7-2.7,4.3c0,1.6,0.5,4.1,2.7,4c0,0,0,0,0,0
|
|
2726
|
+
c4-0.2,5.9-0.3,9.9-0.5c0,0-1.1-1.7-1.1-4.1s1-4.4,1-4.4C103.8,35.9,101.8,36,97.9,36.3L97.9,36.3z"/>
|
|
2727
|
+
<linearGradient id="SVGID_293_" gradientUnits="userSpaceOnUse" x1="116.0925" y1="107.1089" x2="116.0925" y2="98.5999" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2728
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2729
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2730
|
+
</linearGradient>
|
|
2731
|
+
<path class="st316" d="M112.5,35.3C112.5,35.3,112.5,35.3,112.5,35.3c-2.1,0.2-2.7,2.8-2.7,4.4c0,1.6,0.5,4.2,2.7,4.1c0,0,0,0,0,0
|
|
2732
|
+
c4-0.2,5.9-0.3,9.9-0.5c0,0-1.1-1.7-1.1-4.2s1-4.5,1-4.5C118.4,34.9,116.4,35,112.5,35.3L112.5,35.3z"/>
|
|
2733
|
+
<linearGradient id="SVGID_294_" gradientUnits="userSpaceOnUse" x1="130.6915" y1="108.1199" x2="130.6915" y2="99.3789" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2734
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2735
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2736
|
+
</linearGradient>
|
|
2737
|
+
<path class="st317" d="M127.1,34.3L127.1,34.3c-2.1,0.2-2.7,2.9-2.7,4.6c0,1.7,0.5,4.3,2.7,4.2c0,0,0,0,0,0c4-0.2,5.9-0.3,9.9-0.5
|
|
2738
|
+
c0,0-1.1-1.8-1.1-4.3s1-4.6,1-4.6C133,33.8,131,34,127.1,34.3L127.1,34.3z"/>
|
|
2739
|
+
<linearGradient id="SVGID_295_" gradientUnits="userSpaceOnUse" x1="28.47" y1="111.6449" x2="28.47" y2="104.2859" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2740
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2741
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2742
|
+
</linearGradient>
|
|
2743
|
+
<path class="st318" d="M24.9,31L24.9,31c-2.2,0.2-2.7,2.4-2.7,3.8c0,1.3,0.5,3.5,2.7,3.3c0,0,0,0,0,0c4-0.3,5.9-0.5,9.9-0.8
|
|
2744
|
+
c0,0-1.1-1.4-1.1-3.5s1-3.7,1-3.7C30.8,30.5,28.8,30.6,24.9,31z"/>
|
|
2745
|
+
<linearGradient id="SVGID_296_" gradientUnits="userSpaceOnUse" x1="42.9685" y1="113.0159" x2="42.9685" y2="105.4269" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2746
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2747
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2748
|
+
</linearGradient>
|
|
2749
|
+
<path class="st319" d="M39.4,29.6C39.4,29.6,39.4,29.6,39.4,29.6c-2.2,0.2-2.7,2.5-2.7,3.9c0,1.4,0.5,3.6,2.7,3.4c0,0,0,0,0,0
|
|
2750
|
+
c4-0.3,5.9-0.5,9.9-0.8c0,0-1.1-1.4-1.1-3.6s1-3.9,1-3.9C45.3,29.1,43.3,29.3,39.4,29.6z"/>
|
|
2751
|
+
<linearGradient id="SVGID_297_" gradientUnits="userSpaceOnUse" x1="57.5945" y1="114.3969" x2="57.5945" y2="106.5799" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2752
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2753
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2754
|
+
</linearGradient>
|
|
2755
|
+
<path class="st320" d="M54,28.2C54,28.2,54,28.2,54,28.2c-2.2,0.2-2.7,2.6-2.7,4s0.5,3.7,2.7,3.5c0,0,0,0,0,0c4-0.3,5.9-0.5,9.9-0.8
|
|
2756
|
+
c0,0-1.1-1.5-1.1-3.7s1-4,1-4C59.9,27.7,57.9,27.9,54,28.2z"/>
|
|
2757
|
+
<linearGradient id="SVGID_298_" gradientUnits="userSpaceOnUse" x1="72.2195" y1="115.7819" x2="72.2195" y2="107.7319" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2758
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2759
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2760
|
+
</linearGradient>
|
|
2761
|
+
<path class="st321" d="M68.6,26.9C68.6,26.9,68.6,26.9,68.6,26.9c-2.2,0.2-2.7,2.6-2.7,4.1c0,1.5,0.5,3.8,2.7,3.7c0,0,0,0,0,0
|
|
2762
|
+
c4-0.3,5.9-0.5,9.9-0.8c0,0-1.1-1.5-1.1-3.8s1-4.1,1-4.1C74.5,26.3,72.6,26.5,68.6,26.9z"/>
|
|
2763
|
+
<linearGradient id="SVGID_299_" gradientUnits="userSpaceOnUse" x1="86.844" y1="117.1659" x2="86.844" y2="108.8829" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2764
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2765
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2766
|
+
</linearGradient>
|
|
2767
|
+
<path class="st322" d="M83.2,25.5C83.2,25.5,83.2,25.5,83.2,25.5c-2.2,0.2-2.7,2.7-2.7,4.2c0,1.5,0.5,4,2.7,3.8c0,0,0,0,0,0
|
|
2768
|
+
c4-0.3,5.9-0.5,9.9-0.8c0,0-1.1-1.6-1.1-4s1-4.3,1-4.3C89.1,24.9,87.2,25.1,83.2,25.5z"/>
|
|
2769
|
+
<linearGradient id="SVGID_300_" gradientUnits="userSpaceOnUse" x1="101.4715" y1="118.5459" x2="101.4715" y2="110.0369" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2770
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2771
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2772
|
+
</linearGradient>
|
|
2773
|
+
<path class="st323" d="M97.9,24.1L97.9,24.1c-2.2,0.2-2.7,2.8-2.7,4.4c0,1.6,0.5,4.1,2.7,3.9c0,0,0,0,0,0c4-0.3,5.9-0.5,9.9-0.8
|
|
2774
|
+
c0,0-1.1-1.6-1.1-4.1s1-4.4,1-4.4C103.8,23.5,101.8,23.7,97.9,24.1L97.9,24.1z"/>
|
|
2775
|
+
<linearGradient id="SVGID_301_" gradientUnits="userSpaceOnUse" x1="116.0925" y1="119.9299" x2="116.0925" y2="111.1879" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2776
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2777
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2778
|
+
</linearGradient>
|
|
2779
|
+
<path class="st324" d="M112.5,22.7L112.5,22.7c-2.2,0.2-2.7,2.9-2.7,4.5c0,1.6,0.5,4.2,2.7,4c0,0,0,0,0,0c4-0.3,5.9-0.5,9.9-0.8
|
|
2780
|
+
c0,0-1.1-1.7-1.1-4.2s1-4.5,1-4.5C118.4,22.1,116.4,22.3,112.5,22.7L112.5,22.7z"/>
|
|
2781
|
+
<linearGradient id="SVGID_302_" gradientUnits="userSpaceOnUse" x1="130.6915" y1="121.3099" x2="130.6915" y2="112.3369" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2782
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2783
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2784
|
+
</linearGradient>
|
|
2785
|
+
<path class="st325" d="M127.1,21.3L127.1,21.3c-2.2,0.2-2.7,3-2.7,4.6c0,1.7,0.5,4.3,2.7,4.2c0,0,0,0,0,0c4-0.3,5.9-0.5,9.9-0.8
|
|
2786
|
+
c0,0-1.1-1.7-1.1-4.3s1-4.6,1-4.6C133,20.7,131,20.9,127.1,21.3L127.1,21.3z"/>
|
|
2787
|
+
<linearGradient id="SVGID_303_" gradientUnits="userSpaceOnUse" x1="130.6915" y1="134.472" x2="130.6915" y2="125.2639" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2788
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2789
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2790
|
+
</linearGradient>
|
|
2791
|
+
<path class="st326" d="M127.1,8.4C127.1,8.4,127.1,8.4,127.1,8.4c-2.2,0.3-2.7,3-2.7,4.7s0.5,4.3,2.7,4.1h0c4-0.4,5.9-0.6,9.9-1
|
|
2792
|
+
c0,0-1.1-1.7-1.1-4.3s1-4.7,1-4.7C133,7.7,131,7.9,127.1,8.4L127.1,8.4z"/>
|
|
2793
|
+
<linearGradient id="SVGID_304_" gradientUnits="userSpaceOnUse" x1="4493.0225" y1="541.6719" x2="4493.0225" y2="533.8019" gradientTransform="matrix(-4.371100e-08 -1 -1 4.371100e-08 674.66 4622.2002)">
|
|
2794
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2795
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2796
|
+
</linearGradient>
|
|
2797
|
+
<path class="st327" d="M132.8,134.6L132.8,134.6c0,2.4,2.6,2.9,4.3,2.9c1.6,0,4.3-0.5,4.3-2.8c0,0,0,0,0,0l0-13.7l-8.5,0
|
|
2798
|
+
L132.8,134.6L132.8,134.6z"/>
|
|
2799
|
+
<linearGradient id="SVGID_305_" gradientUnits="userSpaceOnUse" x1="4510.2129" y1="541.6719" x2="4510.2129" y2="533.8019" gradientTransform="matrix(-4.371100e-08 -1 -1 4.371100e-08 674.66 4622.2002)">
|
|
2800
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2801
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2802
|
+
</linearGradient>
|
|
2803
|
+
<path class="st328" d="M132.8,117.4L132.8,117.4c0,2.4,2.6,2.9,4.3,2.9c1.6,0,4.3-0.5,4.3-2.8c0,0,0,0,0,0l0-13.7l-8.5,0
|
|
2804
|
+
L132.8,117.4L132.8,117.4z"/>
|
|
2805
|
+
<linearGradient id="SVGID_306_" gradientUnits="userSpaceOnUse" x1="4527.2227" y1="541.6719" x2="4527.2227" y2="533.8019" gradientTransform="matrix(-4.371100e-08 -1 -1 4.371100e-08 674.66 4622.2002)">
|
|
2806
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2807
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2808
|
+
</linearGradient>
|
|
2809
|
+
<path class="st329" d="M132.8,100.4L132.8,100.4c0,2.4,2.6,2.9,4.3,2.9c1.6,0,4.3-0.5,4.3-2.8c0,0,0,0,0,0l0-13.7l-8.5,0
|
|
2810
|
+
L132.8,100.4L132.8,100.4z"/>
|
|
2811
|
+
<linearGradient id="SVGID_307_" gradientUnits="userSpaceOnUse" x1="4544.0679" y1="541.6719" x2="4544.0679" y2="533.8019" gradientTransform="matrix(-4.371100e-08 -1 -1 4.371100e-08 674.66 4622.2002)">
|
|
2812
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2813
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2814
|
+
</linearGradient>
|
|
2815
|
+
<path class="st330" d="M132.8,83.6L132.8,83.6c0,2.4,2.6,2.9,4.3,2.9c1.6,0,4.3-0.5,4.3-2.8c0,0,0,0,0,0l0-13.7l-8.5,0L132.8,83.6
|
|
2816
|
+
L132.8,83.6z"/>
|
|
2817
|
+
<linearGradient id="SVGID_308_" gradientUnits="userSpaceOnUse" x1="620.7122" y1="541.6719" x2="620.7122" y2="533.8019" gradientTransform="matrix(-4.371100e-08 1 -1 -4.371100e-08 674.66 -593.26)">
|
|
2818
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2819
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2820
|
+
</linearGradient>
|
|
2821
|
+
<path class="st331" d="M132.8,22L132.8,22c0-2.4,2.6-2.9,4.3-2.9c1.6,0,4.3,0.5,4.3,2.8c0,0,0,0,0,0l0,13.7l-8.5,0L132.8,22
|
|
2822
|
+
L132.8,22z"/>
|
|
2823
|
+
<linearGradient id="SVGID_309_" gradientUnits="userSpaceOnUse" x1="636.0787" y1="541.6719" x2="636.0787" y2="533.8019" gradientTransform="matrix(-4.371100e-08 1 -1 -4.371100e-08 674.66 -593.26)">
|
|
2824
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2825
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2826
|
+
</linearGradient>
|
|
2827
|
+
<path class="st332" d="M132.8,37.4L132.8,37.4c0-2.4,2.6-2.9,4.3-2.9c1.6,0,4.3,0.5,4.3,2.8c0,0,0,0,0,0l0,13.7l-8.5,0L132.8,37.4
|
|
2828
|
+
L132.8,37.4z"/>
|
|
2829
|
+
<linearGradient id="SVGID_310_" gradientUnits="userSpaceOnUse" x1="652.4372" y1="541.6719" x2="652.4372" y2="533.8019" gradientTransform="matrix(-4.371100e-08 1 -1 -4.371100e-08 674.66 -593.26)">
|
|
2830
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2831
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2832
|
+
</linearGradient>
|
|
2833
|
+
<path class="st333" d="M132.8,53.7L132.8,53.7c0-2.4,2.6-2.9,4.3-2.9c1.6,0,4.3,0.5,4.3,2.8c0,0,0,0,0,0l0,13.7l-8.5,0L132.8,53.7
|
|
2834
|
+
L132.8,53.7z"/>
|
|
2835
|
+
<rect x="101.6" y="95.1" class="st250" width="25.5" height="25.5"/>
|
|
2836
|
+
<path class="st253" d="M123.1,99.2c0.3,3,0.5,5.9,0.6,8.9c0.2,3,0.3,5.9,0.4,8.9l0,0.5l-0.5,0c-3-0.1-6-0.2-8.9-0.4l-4.5-0.3
|
|
2837
|
+
c-1.5-0.1-3-0.2-4.5-0.4c1.5-0.1,3-0.1,4.5-0.1l4.5,0c3,0,6,0.1,8.9,0.1l-0.5,0.5c-0.1-3-0.1-5.9-0.1-8.9
|
|
2838
|
+
C123,105.2,123,102.2,123.1,99.2L123.1,99.2z"/>
|
|
2839
|
+
<linearGradient id="SVGID_311_" gradientUnits="userSpaceOnUse" x1="28.47" y1="122.2309" x2="28.47" y2="114.6349" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2840
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2841
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2842
|
+
</linearGradient>
|
|
2843
|
+
<path class="st334" d="M24.9,20.7C24.9,20.7,24.9,20.7,24.9,20.7c-2.2,0.3-2.7,2.5-2.7,3.8s0.5,3.5,2.7,3.2c0,0,0,0,0,0
|
|
2844
|
+
c4-0.4,5.9-0.6,9.9-1c0,0-1.1-1.4-1.1-3.4s1-3.8,1-3.8C30.8,20,28.8,20.2,24.9,20.7z"/>
|
|
2845
|
+
<linearGradient id="SVGID_312_" gradientUnits="userSpaceOnUse" x1="42.9695" y1="123.9659" x2="42.9695" y2="116.1439" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2846
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2847
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2848
|
+
</linearGradient>
|
|
2849
|
+
<path class="st335" d="M39.4,18.9C39.4,18.9,39.4,18.9,39.4,18.9c-2.2,0.3-2.7,2.6-2.7,3.9s0.5,3.6,2.7,3.3c0,0,0,0,0,0
|
|
2850
|
+
c4-0.4,5.9-0.6,9.9-1c0,0-1.1-1.4-1.1-3.6s1-3.9,1-3.9C45.3,18.2,43.3,18.5,39.4,18.9z"/>
|
|
2851
|
+
<linearGradient id="SVGID_313_" gradientUnits="userSpaceOnUse" x1="57.5945" y1="125.7159" x2="57.5945" y2="117.6649" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2852
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2853
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2854
|
+
</linearGradient>
|
|
2855
|
+
<path class="st336" d="M54,17.2C54,17.2,54,17.2,54,17.2c-2.2,0.3-2.7,2.6-2.7,4.1s0.5,3.7,2.7,3.5c0,0,0,0,0,0c4-0.4,5.9-0.6,9.9-1
|
|
2856
|
+
c0,0-1.1-1.5-1.1-3.7s1-4,1-4C59.9,16.5,57.9,16.7,54,17.2z"/>
|
|
2857
|
+
<linearGradient id="SVGID_314_" gradientUnits="userSpaceOnUse" x1="72.2195" y1="127.4679" x2="72.2195" y2="119.1859" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2858
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2859
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2860
|
+
</linearGradient>
|
|
2861
|
+
<path class="st337" d="M68.6,15.4C68.6,15.4,68.6,15.4,68.6,15.4c-2.2,0.3-2.7,2.7-2.7,4.2s0.5,3.8,2.7,3.6c0,0,0,0,0,0
|
|
2862
|
+
c4-0.4,5.9-0.6,9.9-1c0,0-1.1-1.5-1.1-3.8s1-4.1,1-4.1C74.5,14.7,72.6,14.9,68.6,15.4z"/>
|
|
2863
|
+
<linearGradient id="SVGID_315_" gradientUnits="userSpaceOnUse" x1="86.845" y1="129.2189" x2="86.845" y2="120.7059" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2864
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2865
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2866
|
+
</linearGradient>
|
|
2867
|
+
<path class="st338" d="M83.2,13.7L83.2,13.7c-2.2,0.3-2.7,2.8-2.7,4.3c0,1.5,0.5,4,2.7,3.7c0,0,0,0,0,0c4-0.4,5.9-0.6,9.9-1
|
|
2868
|
+
c0,0-1.1-1.6-1.1-3.9s1-4.3,1-4.3c-1.2,0.1-2.2,0.3-3.1,0.4C87.8,13.1,86,13.3,83.2,13.7z"/>
|
|
2869
|
+
<linearGradient id="SVGID_316_" gradientUnits="userSpaceOnUse" x1="101.4715" y1="130.9699" x2="101.4715" y2="122.2259" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2870
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2871
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2872
|
+
</linearGradient>
|
|
2873
|
+
<path class="st339" d="M97.9,11.9C97.9,11.9,97.9,11.9,97.9,11.9c-2.2,0.3-2.7,2.9-2.7,4.4c0,1.6,0.5,4.1,2.7,3.8c0,0,0,0,0,0
|
|
2874
|
+
c4-0.4,5.9-0.6,9.9-1c0,0-1.1-1.6-1.1-4s1-4.4,1-4.4C103.8,11.2,101.8,11.4,97.9,11.9L97.9,11.9z"/>
|
|
2875
|
+
<linearGradient id="SVGID_317_" gradientUnits="userSpaceOnUse" x1="116.0925" y1="132.7229" x2="116.0925" y2="123.7469" gradientTransform="matrix(1 0 0 -1 0 141.89)">
|
|
2876
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2877
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2878
|
+
</linearGradient>
|
|
2879
|
+
<path class="st340" d="M112.5,10.1C112.5,10.1,112.5,10.1,112.5,10.1c-2.2,0.3-2.7,2.9-2.7,4.6s0.5,4.2,2.7,4c0,0,0,0,0,0
|
|
2880
|
+
c4-0.4,5.9-0.6,9.9-1c0,0-1.1-1.7-1.1-4.2s1-4.5,1-4.5C118.4,9.4,116.4,9.7,112.5,10.1L112.5,10.1z"/>
|
|
2881
|
+
<linearGradient id="SVGID_318_" gradientUnits="userSpaceOnUse" x1="604.9787" y1="541.6719" x2="604.9787" y2="533.8019" gradientTransform="matrix(-4.371100e-08 1 -1 -4.371100e-08 674.66 -593.26)">
|
|
2882
|
+
<stop offset="0" style="stop-color:#B6E7EF;stop-opacity:0.6"/>
|
|
2883
|
+
<stop offset="1" style="stop-color:#E8F6FE;stop-opacity:0"/>
|
|
2884
|
+
</linearGradient>
|
|
2885
|
+
<path class="st341" d="M132.8,6.3L132.8,6.3c0-2.4,2.6-2.9,4.3-2.9c1.6,0,4.3,0.5,4.3,2.8c0,0,0,0,0,0l0,13.7l-8.5,0L132.8,6.3
|
|
2886
|
+
L132.8,6.3z"/>
|
|
2887
|
+
<path class="st342" d="M130.8,86.7c0.7-0.7,1-1.7,0.3-2.8c-1.2-1.8-1.2-5-0.2-6.5c1.5-2.1,2.6-2.9,2.3-5.7c-0.1-1.5-0.8-2.6-1.2-3.9
|
|
2888
|
+
c-0.7-2.5-0.4-4.6-0.3-7.1c0.1-3.2-0.8-6.1-2.1-9c0,0,0,0,0,0c0.1,0,0.1,0,0.2,0c1.4-0.4,2-1.7,1.7-3.1c-0.2-0.7-0.5-1.5-0.9-2.1
|
|
2889
|
+
c-0.4-0.5-0.8-0.9-1.4-1.1c0.5-0.3,1-0.9,1.1-1.5c0.1-1,0.2-1.9-0.1-2.8c-0.1-0.2-0.2-0.4-0.3-0.6c0.4-0.4,0.7-1,0.7-1.7v-0.5
|
|
2890
|
+
c0-1.3-1.1-2.6-2.5-2.5c-1.4,0.1-2.5,1.1-2.5,2.5v0.5c0,0.5,0.1,0.9,0.4,1.3c-0.6,0.6-0.9,1.5-0.6,2.4c0,0.1,0.1,0.2,0.1,0.3
|
|
2891
|
+
c0,0,0,0,0,0c0,0.2,0,0.2,0,0.1c0,0,0,0,0,0c-0.1,0.6,0,1.1,0.3,1.7c0.3,0.5,0.8,0.9,1.4,1.1c-1,0.7-1.7,2.3-0.9,3.4
|
|
2892
|
+
c0.1,0.1,0.1,0.2,0.2,0.3c0,0.1,0.1,0.3,0.1,0.3c0,0.1,0.1,0.2,0.1,0.3c0,0.2,0.2,0.5,0.3,0.7c-1.3,0.5-2.5,2-1.7,3.7
|
|
2893
|
+
c1.9,4.2,0.7,7.2,1,11.4c0.1,1.8,1.4,3.3,1.6,4.9c0.2,1.9-0.5,2.5-1.7,4.2c-1.2,1.7-2,2.9-1.6,5.1c0.2,1.2,0.8,2.3,1.1,3.5
|
|
2894
|
+
c0.3,1.2,0.4,2,1.1,3.1c0.5,0.8,1.2,1.1,1.9,1.1c-0.5,0.7-0.7,1.6-0.5,2.4c-0.1,0.1-0.3,0.3-0.4,0.5c-0.1,0.1-0.1,0.2-0.2,0.3
|
|
2895
|
+
c-0.6,1.2-0.3,2.8,0.9,3.4c1.1,0.6,2.8,0.4,3.4-0.9c0.1-0.1,0.1-0.2,0.2-0.3c0.3-0.6,0.4-1.4,0.2-2.1
|
|
2896
|
+
C133.4,89.5,132.9,87,130.8,86.7z"/>
|
|
2897
|
+
<path class="st342" d="M130.9,128.1c-0.1-0.2-0.1-0.5-0.2-0.7c1.7-2.8-2.7-5.3-4.3-2.5c-0.5,0.8-0.7,1.6-0.8,2.4
|
|
2898
|
+
c-1.3-0.2-2.5-0.2-3.8,0.3c-1.5-1-3.2-1.1-4.9-0.3c-2.9-1.1-8.3-3.9-10.7-1.8c-2.8-0.6-5.6-0.4-8.5-1.3c-3-1-5.2-1.5-8.4-0.7
|
|
2899
|
+
c-0.2-0.1-0.4-0.1-0.7-0.1c0,0-0.1,0-0.1,0c-0.4-0.3-0.9-0.5-1.5-0.5c-0.5,0-0.9,0.1-1.3,0.4c-0.4-0.3-0.9-0.5-1.5-0.5
|
|
2900
|
+
c-0.6,0-1,0.2-1.4,0.4c-0.3-0.9-1.1-1.6-2.3-1.6c-0.3,0-0.6,0.1-0.9,0.2c-0.3-0.1-0.6-0.2-0.9-0.2c-0.4,0-0.7,0.1-1,0.2
|
|
2901
|
+
c-0.3-0.1-0.6-0.2-1-0.2h-0.5c-0.5,0-0.9,0.1-1.3,0.4c-0.3-0.1-0.7-0.2-1-0.3c-0.6-0.1-1.1-0.1-1.7-0.2c-0.6-0.1-1.3,0.2-1.7,0.7
|
|
2902
|
+
c-0.3-0.4-0.7-0.7-1.3-0.9c-0.2-0.1-0.3-0.1-0.5-0.2c-0.5-0.2-1.1-0.1-1.6,0.1c-0.4-0.3-0.9-0.5-1.6-0.5c-0.4,0-0.7,0.1-1,0.2
|
|
2903
|
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.9,0-1.5,0.4-1.9,1c-0.4-0.7-1.1-1.1-2.1-1.1c-0.5,0-0.9,0.1-1.3,0.4c-0.3-0.4-0.7-0.6-1.2-0.8l-0.6-0.1
|
|
2904
|
+
c-0.4-0.3-0.9-0.5-1.4-0.5h-0.2c-0.6,0-1.2,0.2-1.6,0.6c-0.4-0.7-1.2-1.1-2.1-1.1h-0.7c-1.3,0-2.6,1.1-2.5,2.5
|
|
2905
|
+
c0.1,1.4,1.1,2.5,2.5,2.5h0.7c0.6,0,1.2-0.2,1.6-0.6c0.4,0.5,0.9,0.9,1.5,1.1c0.2,0.1,0.4,0.2,0.7,0.3c0.2,0.1,0.4,0.1,0.7,0.2
|
|
2906
|
+
c0.7,0.2,1.4,0,2-0.3c0.4,0.5,1,0.9,1.9,0.9c0.9,0,1.5-0.4,1.9-1c0.4,0.7,1.1,1.1,2.1,1.1c0.4,0,0.7-0.1,1-0.2
|
|
2907
|
+
c0.3,0.1,0.6,0.2,1,0.2c0.4,0,0.7-0.1,1-0.2c0.2,0.2,0.5,0.3,0.8,0.4c0.2,0.1,0.3,0.1,0.5,0.2c0.8,0.3,1.8,0,2.4-0.6
|
|
2908
|
+
c0.4,0.6,1.1,0.9,2,1c0.6,0.1,1.1,0.1,1.7,0.2c0.5,0,0.9-0.1,1.3-0.4c0.3,0.1,0.7,0.2,1,0.2h0.5c0.3,0,0.7-0.1,1-0.2
|
|
2909
|
+
c0.3,0.1,0.6,0.2,1,0.2c0.3,0,0.6-0.1,0.9-0.2c0.3,0.1,0.6,0.2,0.9,0.2c0.6,0,1-0.2,1.4-0.4c0.3,0.9,1.1,1.6,2.3,1.6
|
|
2910
|
+
c0.5,0,0.9-0.1,1.3-0.4c0.4,0.3,0.9,0.5,1.5,0.5c0,0,0.1,0,0.1,0c0.4,0.3,0.9,0.5,1.5,0.5c0.2,0,0.4,0,0.6-0.1
|
|
2911
|
+
c0.4,0.1,0.8,0.1,1.3,0c3.3-0.8,5.3,1.1,8.2,1.8c2.6,0.6,4.9-0.6,7.5,0.5c1,0.4,2.5,0.3,3.3-0.6c0.1,0,0.3,0.1,0.4,0.1
|
|
2912
|
+
c0.5,0.2,0.9,0.4,1.4,0.6c1.4,0.6,2.8,1.1,4.3,1.4c0.3,0.1,4,0,3.7-0.4c0.7,1,2.2,1.7,3.4,0.9c1.6-0.8,3-0.6,4.3,0.4
|
|
2913
|
+
c0.9,0.5,2.3,0.5,3-0.4c0.3-0.3,0.6-0.7,0.9-1C131.8,130.7,132,129.1,130.9,128.1z"/>
|
|
2914
|
+
<path class="st342" d="M44.8,118.4c-0.1,0-0.1,0-0.2,0c-0.3-0.1-0.6-0.2-1-0.2c-0.3,0-0.6,0.1-0.8,0.1c-0.4-0.5-1-0.8-1.8-0.8
|
|
2915
|
+
c-0.2,0-0.3,0-0.5,0c-0.3-0.1-0.6-0.2-1-0.2c-0.7,0-1.2,0.2-1.6,0.6c-0.4-0.3-0.9-0.6-1.6-0.6c-0.4,0-0.8,0.1-1.1,0.2
|
|
2916
|
+
c-0.4-0.3-0.9-0.6-1.6-0.6c-3.2,0-3.2,5,0,5c0.4,0,0.8-0.1,1.1-0.2c0.4,0.3,0.9,0.6,1.6,0.6c0.7,0,1.2-0.2,1.6-0.6
|
|
2917
|
+
c0.4,0.3,0.9,0.6,1.6,0.6c0.2,0,0.3,0,0.5,0c0.3,0.1,0.6,0.2,1,0.2c0.3,0,0.6-0.1,0.8-0.1c0.4,0.5,1,0.8,1.8,0.8c0.1,0,0.1,0,0.2,0
|
|
2918
|
+
c0.3,0.1,0.6,0.2,1,0.2C48.1,123.4,48.1,118.4,44.8,118.4z"/>
|
|
2919
|
+
<linearGradient id="SVGID_319_" gradientUnits="userSpaceOnUse" x1="47.9979" y1="124.8391" x2="131.6619" y2="124.8391">
|
|
2920
|
+
<stop offset="0" style="stop-color:#E5F7FF"/>
|
|
2921
|
+
<stop offset="0.2704" style="stop-color:#EEF7FF"/>
|
|
2922
|
+
<stop offset="0.4286" style="stop-color:#E4F7FF"/>
|
|
2923
|
+
<stop offset="1" style="stop-color:#EEF7FF"/>
|
|
2924
|
+
</linearGradient>
|
|
2925
|
+
<path class="st343" d="M130.9,126.7c-0.1-0.2-0.1-0.5-0.2-0.7c1.7-2.8-2.7-5.3-4.3-2.5c-0.5,0.8-0.7,1.6-0.8,2.4
|
|
2926
|
+
c-1.3-0.2-2.5-0.2-3.8,0.3c-1.5-1-3.2-1.1-4.9-0.3c-2.9-1.1-8.3-3.9-10.7-1.8c-2.8-0.6-5.6-0.4-8.5-1.3c-3-1-5.2-1.5-8.4-0.7
|
|
2927
|
+
c-0.2-0.1-0.4-0.1-0.7-0.1c0,0-0.1,0-0.1,0c-0.4-0.3-0.9-0.5-1.5-0.5c-0.5,0-0.9,0.1-1.3,0.4c-0.4-0.3-0.9-0.5-1.5-0.5
|
|
2928
|
+
c-0.6,0-1,0.2-1.4,0.4c-0.3-0.9-1.1-1.6-2.3-1.6c-0.3,0-0.6,0.1-0.9,0.2c-0.3-0.1-0.6-0.2-0.9-0.2c-0.4,0-0.7,0.1-1,0.2
|
|
2929
|
+
c-0.3-0.1-0.6-0.2-1-0.2h-0.5c-0.5,0-0.9,0.1-1.3,0.4c-0.3-0.1-0.7-0.2-1-0.3c-0.6-0.1-1.1-0.1-1.7-0.2c-0.6-0.1-1.3,0.2-1.7,0.7
|
|
2930
|
+
c-0.3-0.4-0.7-0.7-1.3-0.9c-0.2-0.1-0.3-0.1-0.5-0.2c-0.5-0.2-1.1-0.1-1.6,0.1c-0.4-0.3-0.9-0.5-1.6-0.5c-0.4,0-0.7,0.1-1,0.2
|
|
2931
|
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.9,0-1.5,0.4-1.9,1c-0.4-0.7-1.1-1.1-2.1-1.1c-0.5,0-0.9,0.1-1.3,0.4c-0.3-0.4-0.7-0.6-1.2-0.8l-0.6-0.1
|
|
2932
|
+
c-0.4-0.3-0.9-0.5-1.4-0.5h-0.2c-0.6,0-1.2,0.2-1.6,0.6c-0.4-0.7-1.2-1.1-2.1-1.1h-0.7c-1.3,0-2.6,1.1-2.5,2.5
|
|
2933
|
+
c0.1,1.4,1.1,2.5,2.5,2.5h0.7c0.6,0,1.2-0.2,1.6-0.6c0.4,0.5,0.9,0.9,1.5,1.1c0.2,0.1,0.4,0.2,0.7,0.3c0.2,0.1,0.4,0.1,0.7,0.2
|
|
2934
|
+
c0.7,0.2,1.4,0,2-0.3c0.4,0.5,1,0.9,1.9,0.9c0.9,0,1.5-0.4,1.9-1c0.4,0.7,1.1,1.1,2.1,1.1c0.4,0,0.7-0.1,1-0.2
|
|
2935
|
+
c0.3,0.1,0.6,0.2,1,0.2c0.4,0,0.7-0.1,1-0.2c0.2,0.2,0.5,0.3,0.8,0.4c0.2,0.1,0.3,0.1,0.5,0.2c0.8,0.3,1.8,0,2.4-0.6
|
|
2936
|
+
c0.4,0.6,1.1,0.9,2,1c0.6,0.1,1.1,0.1,1.7,0.2c0.5,0,0.9-0.1,1.3-0.4c0.3,0.1,0.7,0.2,1,0.2h0.5c0.3,0,0.7-0.1,1-0.2
|
|
2937
|
+
c0.3,0.1,0.6,0.2,1,0.2c0.3,0,0.6-0.1,0.9-0.2c0.3,0.1,0.6,0.2,0.9,0.2c0.6,0,1-0.2,1.4-0.4c0.3,0.9,1.1,1.6,2.3,1.6
|
|
2938
|
+
c0.5,0,0.9-0.1,1.3-0.4c0.4,0.3,0.9,0.5,1.5,0.5c0,0,0.1,0,0.1,0c0.4,0.3,0.9,0.5,1.5,0.5c0.2,0,0.4,0,0.6-0.1
|
|
2939
|
+
c0.4,0.1,0.8,0.1,1.3,0c3.3-0.8,5.3,1.1,8.2,1.8c2.6,0.6,4.9-0.6,7.5,0.5c1,0.4,2.5,0.3,3.3-0.6c0.1,0,0.3,0.1,0.4,0.1
|
|
2940
|
+
c0.5,0.2,0.9,0.4,1.4,0.6c1.4,0.6,2.8,1.1,4.3,1.4c0.3,0.1,4,0,3.7-0.4c0.7,1,2.2,1.7,3.4,0.9c1.6-0.8,3-0.6,4.3,0.4
|
|
2941
|
+
c0.9,0.5,2.3,0.5,3-0.4c0.3-0.3,0.6-0.7,0.9-1C131.8,129.3,132,127.7,130.9,126.7z"/>
|
|
2942
|
+
<linearGradient id="SVGID_320_" gradientUnits="userSpaceOnUse" x1="31.2517" y1="118.8347" x2="47.2483" y2="118.8347">
|
|
2943
|
+
<stop offset="0" style="stop-color:#E5F7FF"/>
|
|
2944
|
+
<stop offset="0.2704" style="stop-color:#EEF7FF"/>
|
|
2945
|
+
<stop offset="0.4286" style="stop-color:#E4F7FF"/>
|
|
2946
|
+
<stop offset="1" style="stop-color:#EEF7FF"/>
|
|
2947
|
+
</linearGradient>
|
|
2948
|
+
<path class="st344" d="M44.8,117c-0.1,0-0.1,0-0.2,0c-0.3-0.1-0.6-0.2-1-0.2c-0.3,0-0.6,0.1-0.8,0.1c-0.4-0.5-1-0.8-1.8-0.8
|
|
2949
|
+
c-0.2,0-0.3,0-0.5,0c-0.3-0.1-0.6-0.2-1-0.2c-0.7,0-1.2,0.2-1.6,0.6c-0.4-0.3-0.9-0.6-1.6-0.6c-0.4,0-0.8,0.1-1.1,0.2
|
|
2950
|
+
c-0.4-0.3-0.9-0.6-1.6-0.6c-3.2,0-3.2,5,0,5c0.4,0,0.8-0.1,1.1-0.2c0.4,0.3,0.9,0.6,1.6,0.6c0.7,0,1.2-0.2,1.6-0.6
|
|
2951
|
+
c0.4,0.3,0.9,0.6,1.6,0.6c0.2,0,0.3,0,0.5,0c0.3,0.1,0.6,0.2,1,0.2c0.3,0,0.6-0.1,0.8-0.1c0.4,0.5,1,0.8,1.8,0.8c0.1,0,0.1,0,0.2,0
|
|
2952
|
+
c0.3,0.1,0.6,0.2,1,0.2C48.1,122,48.1,117,44.8,117z"/>
|
|
2953
|
+
<path class="st342" d="M28.3,116.6h-0.5c-0.2,0-0.3,0-0.5,0.1c0-0.2-0.1-0.4-0.2-0.6c0.3-0.7,0.3-1.6,0-2.2c0.1-0.3,0.2-0.6,0.2-0.9
|
|
2954
|
+
c1.7-0.5,2.1-2.5,1.3-3.8c0,0,0,0,0-0.1v-0.2c0.6-0.5,0.9-1.3,0.9-2c0-0.7-0.2-1.4-0.6-1.9c0.1-0.2,0.1-0.4,0.1-0.6
|
|
2955
|
+
c0-0.1,0-0.2,0-0.3c0,0,0,0,0-0.1c0-0.1,0.1-0.2,0.1-0.3c0.4-1-0.2-2.2-1.1-2.8c0.2-0.7,0.2-1.6-0.3-2.3c0.2-0.3,0.3-0.6,0.3-0.9
|
|
2956
|
+
c1-1.1,0.9-3-0.3-3.9c0.5-0.3,0.8-0.8,0.9-1.3c1.7-0.8,1.7-3.5,0.1-4.4c0.2-0.5,0.2-0.9,0.1-1.4c0.3-0.7,0.3-1.4,0-2.1
|
|
2957
|
+
c0.8-0.9,0.9-2.4,0.3-3.3c0.1-0.3,0.2-0.6,0.2-1v-0.7c0-0.5-0.2-1-0.5-1.5c0.2-0.7,0.1-1.5-0.3-2.1c0-0.2-0.1-0.4-0.2-0.6
|
|
2958
|
+
c0.3-0.6,0.4-1.3,0.2-1.9c0.3-1.4-0.4-3.2-2.3-3.2c-1.9,0-2.7,1.7-2.3,3.2c-0.2,0.6-0.1,1.3,0.2,1.9c-0.4,0.8-0.4,1.9,0.1,2.7
|
|
2959
|
+
c0.1,0.3,0.2,0.6,0.3,0.8c-0.1,0.2-0.1,0.5-0.1,0.8v0.7c0,0.6,0.2,1.1,0.6,1.6c-0.2,0.6-0.2,1.3,0,2c-0.6,0.6-0.8,1.5-0.7,2.3
|
|
2960
|
+
c-0.2,0.5-0.2,1.1-0.1,1.6c-0.4,0.8-0.3,1.9,0.2,2.6c-0.7,1.1-0.6,2.8,0.6,3.6c-0.5,0.4-0.9,1-1,1.6c-0.8,0.8-0.9,2.3-0.3,3.2
|
|
2961
|
+
c-0.7,1.1-0.5,2.8,0.7,3.5c0,0.1-0.1,0.1-0.1,0.2c-0.2,0.6-0.3,1.3-0.2,2c0,0.3,0.1,0.6,0.2,0.9c-0.3,0.6-0.4,1.3-0.2,2
|
|
2962
|
+
c-0.2,0.4-0.4,0.8-0.4,1.3v0.5c0,0.5,0.2,0.9,0.4,1.3c-1.4,0.5-1.8,2.3-1.2,3.5c-0.3,0.7-0.3,1.5,0,2.2c-0.4,0.9-0.3,2.1,0.4,2.8
|
|
2963
|
+
c0,0.6,0.2,1.2,0.7,1.7c0.1,0.1,0.1,0.1,0.2,0.2c0.7,0.7,1.7,0.9,2.6,0.6c0.3,0.2,0.7,0.3,1.2,0.3h0.5c1.3,0,2.6-1.1,2.5-2.5
|
|
2964
|
+
C30.8,117.7,29.7,116.6,28.3,116.6z"/>
|
|
2965
|
+
<path class="st342" d="M28,63.7c0.1-0.4,0.1-0.8,0-1.3c0-0.1,0.1-0.2,0.1-0.2c0.1-0.3,0.1-0.6,0.2-0.8c0.1-0.6,0-1.2-0.2-1.7
|
|
2966
|
+
c0.2-0.7,0.2-1.4-0.1-2.1c1.5-0.8,1.6-3.2,0.3-4.2c0.4-0.9,0.3-2.1-0.4-2.9c-0.1-0.4-0.2-0.8-0.5-1.1c0.3-0.6,0.3-1.2,0.2-1.8
|
|
2967
|
+
c0.4-0.4,0.7-1,0.7-1.7v-0.3c0-0.1,0-0.1,0-0.2c0.4-0.9,0.3-2.2-0.4-2.9c0.2-0.5,0.2-1.1,0-1.7c0.1-0.1,0.1-0.2,0.2-0.3
|
|
2968
|
+
c0.1-0.1,0.1-0.2,0.2-0.3c0.4-0.8,0.4-1.8,0-2.5c0.3-0.3,0.5-0.6,0.6-1.1c0.2-0.9,0.2-1.8-0.1-2.7c-0.2-0.6-0.6-1.1-1.1-1.5
|
|
2969
|
+
c-0.5-0.3-1.3-0.4-1.9-0.3c-1.2,0.4-2.2,1.8-1.7,3.1c0,0.1,0.1,0.2,0.1,0.3c-0.1,0.6,0,1.1,0.3,1.6c0,0,0,0,0,0
|
|
2970
|
+
c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.1-0.1,0.2-0.2,0.3c-0.3,0.7-0.4,1.4-0.2,2.1c-0.6,1-0.6,2.4,0.2,3.2c-0.1,0.3-0.1,0.6-0.1,0.9
|
|
2971
|
+
c-0.3,0.4-0.4,0.9-0.4,1.4v0.3c0,0.2,0,0.5,0.1,0.7c-0.7,0.9-0.7,2.2-0.1,3.1C23.1,50,23,50.4,23,50.9v0.5c0,0.8,0.4,1.5,1,2
|
|
2972
|
+
c0.2,0.3,0.4,0.6,0.7,0.9c-0.3,0.7-0.3,1.6,0,2.3c-1.1,0.6-1.5,2-1.1,3.1c-0.1,0.1-0.1,0.3-0.1,0.4c-0.1,0.3-0.1,0.6-0.2,0.8
|
|
2973
|
+
c-0.1,0.5-0.1,1,0.1,1.5c-0.2,0.9,0,2,0.8,2.7C24,65.2,24,65.5,24,65.7v0.2c0,0.2,0,0.4,0.1,0.6c0,0.2-0.1,0.4-0.1,0.6v0.2
|
|
2974
|
+
c0,1.3,1.1,2.6,2.5,2.5c1.4-0.1,2.5-1.1,2.5-2.5v-0.2c0-0.2,0-0.4-0.1-0.6c0-0.2,0.1-0.4,0.1-0.6v-0.2C29,65,28.6,64.2,28,63.7z"/>
|
|
2975
|
+
<linearGradient id="SVGID_321_" gradientUnits="userSpaceOnUse" x1="24.678" y1="95.86" x2="32.9247" y2="95.86">
|
|
2976
|
+
<stop offset="0" style="stop-color:#E5F7FF"/>
|
|
2977
|
+
<stop offset="0.2704" style="stop-color:#EEF7FF"/>
|
|
2978
|
+
<stop offset="0.4286" style="stop-color:#E4F7FF"/>
|
|
2979
|
+
<stop offset="1" style="stop-color:#EEF7FF"/>
|
|
2980
|
+
</linearGradient>
|
|
2981
|
+
<path class="st345" d="M30.4,116.6h-0.5c-0.2,0-0.3,0-0.5,0.1c0-0.2-0.1-0.4-0.2-0.6c0.3-0.7,0.3-1.6,0-2.2c0.1-0.3,0.2-0.6,0.2-0.9
|
|
2982
|
+
c1.7-0.5,2.1-2.5,1.3-3.8c0,0,0,0,0-0.1v-0.2c0.6-0.5,0.9-1.3,0.9-2c0-0.7-0.2-1.4-0.6-1.9c0.1-0.2,0.1-0.4,0.1-0.6
|
|
2983
|
+
c0-0.1,0-0.2,0-0.3c0,0,0,0,0-0.1c0-0.1,0.1-0.2,0.1-0.3c0.4-1-0.2-2.2-1.1-2.8c0.2-0.7,0.2-1.6-0.3-2.3c0.2-0.3,0.3-0.6,0.3-0.9
|
|
2984
|
+
c1-1.1,0.9-3-0.3-3.9c0.5-0.3,0.8-0.8,0.9-1.3c1.7-0.8,1.7-3.5,0.1-4.4C31,87.5,31,87,31,86.5c0.3-0.7,0.3-1.4,0-2.1
|
|
2985
|
+
c0.8-0.9,0.9-2.4,0.3-3.3c0.1-0.3,0.2-0.6,0.2-1v-0.7c0-0.5-0.2-1-0.5-1.5c0.2-0.7,0.1-1.5-0.3-2.1c0-0.2-0.1-0.4-0.2-0.6
|
|
2986
|
+
c0.3-0.6,0.4-1.3,0.2-1.9c0.3-1.4-0.4-3.2-2.3-3.2c-1.9,0-2.7,1.7-2.3,3.2c-0.2,0.6-0.1,1.3,0.2,1.9c-0.4,0.8-0.4,1.9,0.1,2.7
|
|
2987
|
+
c0.1,0.3,0.2,0.6,0.3,0.8c-0.1,0.2-0.1,0.5-0.1,0.8v0.7c0,0.6,0.2,1.1,0.6,1.6c-0.2,0.6-0.2,1.3,0,2c-0.6,0.6-0.8,1.5-0.7,2.3
|
|
2988
|
+
c-0.2,0.5-0.2,1.1-0.1,1.6c-0.4,0.8-0.3,1.9,0.2,2.6c-0.7,1.1-0.6,2.8,0.6,3.6c-0.5,0.4-0.9,1-1,1.6c-0.8,0.8-0.9,2.3-0.3,3.2
|
|
2989
|
+
c-0.7,1.1-0.5,2.8,0.7,3.5c0,0.1-0.1,0.1-0.1,0.2c-0.2,0.6-0.3,1.3-0.2,2c0,0.3,0.1,0.6,0.2,0.9c-0.3,0.6-0.4,1.3-0.2,2
|
|
2990
|
+
c-0.2,0.4-0.4,0.8-0.4,1.3v0.5c0,0.5,0.2,0.9,0.4,1.3c-1.4,0.5-1.8,2.3-1.2,3.5c-0.3,0.7-0.3,1.5,0,2.2c-0.4,0.9-0.3,2.1,0.4,2.8
|
|
2991
|
+
c0,0.6,0.2,1.2,0.7,1.7c0.1,0.1,0.1,0.1,0.2,0.2c0.7,0.7,1.7,0.9,2.6,0.6c0.3,0.2,0.7,0.3,1.2,0.3h0.5c1.3,0,2.6-1.1,2.5-2.5
|
|
2992
|
+
C32.9,117.8,31.8,116.6,30.4,116.6z"/>
|
|
2993
|
+
<linearGradient id="SVGID_322_" gradientUnits="userSpaceOnUse" x1="24.753" y1="50.885" x2="31.0681" y2="50.885">
|
|
2994
|
+
<stop offset="0" style="stop-color:#E5F7FF"/>
|
|
2995
|
+
<stop offset="0.2704" style="stop-color:#EEF7FF"/>
|
|
2996
|
+
<stop offset="0.4286" style="stop-color:#E4F7FF"/>
|
|
2997
|
+
<stop offset="1" style="stop-color:#EEF7FF"/>
|
|
2998
|
+
</linearGradient>
|
|
2999
|
+
<path class="st346" d="M29.8,63.7c0.1-0.4,0.1-0.8,0-1.3c0-0.1,0.1-0.2,0.1-0.2c0.1-0.3,0.1-0.6,0.2-0.8c0.1-0.6,0-1.2-0.2-1.7
|
|
3000
|
+
c0.2-0.7,0.2-1.4-0.1-2.1c1.5-0.8,1.6-3.2,0.3-4.2c0.4-0.9,0.3-2.1-0.4-2.9c-0.1-0.4-0.2-0.8-0.5-1.1c0.3-0.6,0.3-1.2,0.2-1.8
|
|
3001
|
+
c0.4-0.4,0.7-1,0.7-1.7v-0.3c0-0.1,0-0.1,0-0.2c0.4-0.9,0.3-2.2-0.4-2.9c0.2-0.5,0.2-1.1,0-1.7c0.1-0.1,0.1-0.2,0.2-0.3
|
|
3002
|
+
c0.1-0.1,0.1-0.2,0.2-0.3c0.4-0.8,0.4-1.8,0-2.5c0.3-0.3,0.5-0.6,0.6-1.1c0.2-0.9,0.2-1.8-0.1-2.7c-0.2-0.6-0.6-1.1-1.1-1.5
|
|
3003
|
+
c-0.5-0.3-1.3-0.4-1.9-0.3c-1.2,0.4-2.2,1.8-1.7,3.1c0,0.1,0.1,0.2,0.1,0.3c-0.1,0.6,0,1.1,0.3,1.6c0,0,0,0,0,0
|
|
3004
|
+
c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.1-0.1,0.2-0.2,0.3c-0.3,0.7-0.4,1.4-0.2,2.1c-0.6,1-0.6,2.4,0.2,3.2c-0.1,0.3-0.1,0.6-0.1,0.9
|
|
3005
|
+
c-0.3,0.4-0.4,0.9-0.4,1.4v0.3c0,0.2,0,0.5,0.1,0.7c-0.7,0.9-0.7,2.2-0.1,3.1c-0.2,0.4-0.3,0.8-0.3,1.2v0.5c0,0.8,0.4,1.5,1,2
|
|
3006
|
+
c0.2,0.3,0.4,0.6,0.7,0.9c-0.3,0.7-0.3,1.6,0,2.3c-1.1,0.6-1.5,2-1.1,3.1c-0.1,0.1-0.1,0.3-0.1,0.4c-0.1,0.3-0.1,0.6-0.2,0.8
|
|
3007
|
+
c-0.1,0.5-0.1,1,0.1,1.5c-0.2,0.9,0,2,0.8,2.7c-0.1,0.2-0.1,0.5-0.1,0.7v0.2c0,0.2,0,0.4,0.1,0.6c0,0.2-0.1,0.4-0.1,0.6v0.2
|
|
3008
|
+
c0,1.3,1.1,2.6,2.5,2.5c1.4-0.1,2.5-1.1,2.5-2.5v-0.2c0-0.2,0-0.4-0.1-0.6c0-0.2,0.1-0.4,0.1-0.6v-0.2C30.8,65,30.4,64.2,29.8,63.7z
|
|
3009
|
+
"/>
|
|
3010
|
+
<path class="st342" d="M128,7.1c-0.1,0-0.3,0-0.5,0c-0.6,0-1,0.2-1.4,0.4c-0.4-0.3-0.8-0.4-1.4-0.4c-1,0-1.7,0.5-2.1,1.2
|
|
3011
|
+
c-0.2,0.1-0.4,0.2-0.5,0.3c-0.4-0.1-0.8-0.1-1.2,0c-1.3,0.3-2.7-0.2-4-0.1c-1.3,0-2.7,0.3-3.7,1.1c0,0-0.1,0.1-0.1,0.1
|
|
3012
|
+
c-0.3-0.1-0.6-0.2-1-0.2h-0.2c-0.8,0-1.7,0.5-2.1,1.2c-0.4-0.3-0.9-0.5-1.5-0.5c-0.9,0-1.5,0.4-1.9,0.9c-0.4-0.5-1-0.9-1.9-0.9
|
|
3013
|
+
c-0.4,0-0.8,0.1-1.1,0.3c-0.6-0.2-1.2-0.1-1.8,0.2c-1,0.5-0.9,0.5-1.6,0.2c-0.9-0.3-1.6-0.6-2.6-0.2c-0.8,0.3-1.5,0.9-2.3,1.1
|
|
3014
|
+
c-1.1,0.3-2.4,0.2-3.5,0.2c-0.2,0-0.5,0-0.7,0.1c-0.1,0-0.1,0-0.2,0c-0.8,0-1.4,0.3-1.8,0.7c-0.4-0.3-0.9-0.6-1.6-0.6
|
|
3015
|
+
c-0.8,0-1.5,0.4-1.9,0.9c-0.1,0-0.2,0-0.3,0c-1,0-1.7,0.5-2,1.1c0,0-0.1,0-0.1,0c-1-0.2-2.1-0.9-3.1-0.9c-0.7,0-1.1,0.4-1.8,0.6
|
|
3016
|
+
c-2,0.3-3-0.3-4.8,0.7c-0.1,0-0.1,0.1-0.2,0.1c-0.1,0-0.2-0.1-0.3-0.1c-1-0.3-1.9,0.5-2.8,0.8c-0.9,0.2-1.5-0.1-2.5-0.1
|
|
3017
|
+
c-1.4,0-2.9,0.3-4.3,0.7c-0.5,0.1-1,0.4-1.2,0.7c-0.4-0.4-0.9-0.6-1.6-0.6c-1.1,0-1.9,0.6-2.2,1.4c-0.3-0.2-0.7-0.3-1.1-0.3
|
|
3018
|
+
c-0.7,0-1.2,0.2-1.6,0.6c-0.4-0.4-1-0.7-1.8-0.7c-0.9,0-1.6,0.4-2,1c-0.4-0.3-0.9-0.5-1.5-0.5c-1.1,0-1.8,0.6-2.2,1.4
|
|
3019
|
+
c-0.4-0.2-0.8-0.4-1.3-0.4c-0.3,0-0.6,0.1-0.8,0.1c-0.4-0.4-0.9-0.6-1.7-0.6c-0.8,0-1.4,0.3-1.8,0.8c-0.7,0-1.3,0.3-1.7,0.7
|
|
3020
|
+
c-0.7,0-1.3,0.3-1.7,0.7c-0.5,0.1-1,0.3-1.3,0.6c-0.2-0.2-0.4-0.3-0.7-0.4c-0.4-0.3-0.9-0.5-1.5-0.5c-0.8,0-1.4,0.3-1.8,0.7
|
|
3021
|
+
c-0.4-0.5-1-0.9-1.9-0.9c-0.4-1-1.3-1.7-2.3-1.7c-1.2,0.1-2.3,0.9-2.5,2.1c-0.9,0.2-1.7,0.9-2.2,1.7c-0.5,0.9-0.4,2.1,0.2,2.9
|
|
3022
|
+
c-1.3,0.4-1.8,1.7-1.6,2.8c-0.1,0.2-0.1,0.5-0.1,0.7v0.3c0,1.3,1.1,2.6,2.5,2.5c1.4-0.1,2.5-1.1,2.5-2.5v-0.3c0-0.2-0.1-0.5-0.1-0.7
|
|
3023
|
+
c0.1-0.7-0.1-1.5-0.5-2.1c0.3-0.1,0.6-0.2,0.9-0.4c0.2,0,0.3-0.1,0.5-0.2c0.4,0.4,0.9,0.6,1.6,0.6c0.8,0,1.4-0.3,1.8-0.7
|
|
3024
|
+
c0.5-0.1,0.9-0.4,1.2-0.7c0.3,0.4,0.6,0.6,1.1,0.8c0.4,0.3,0.9,0.5,1.5,0.5c0.7,0,1.3-0.3,1.7-0.6c0.4,0.3,0.9,0.5,1.5,0.5
|
|
3025
|
+
c0.8,0,1.3-0.3,1.7-0.7c0.5-0.1,1-0.3,1.3-0.6c0.8,0,1.4-0.3,1.8-0.8c0.3,0,0.6-0.1,0.8-0.1c0.4,0.4,0.9,0.6,1.7,0.6
|
|
3026
|
+
c1.1,0,1.8-0.6,2.2-1.4c0.4,0.2,0.8,0.4,1.3,0.4c0.9,0,1.6-0.4,2-1c0.4,0.3,0.9,0.5,1.5,0.5c0.7,0,1.2-0.2,1.6-0.6
|
|
3027
|
+
c0.4,0.4,1,0.7,1.8,0.7c1.1,0,1.9-0.6,2.2-1.4c0.3,0.2,0.7,0.3,1.1,0.3c0.9,0,1.5-0.4,1.9-0.9c0.5,0.6,1.3,0.9,2.3,0.6
|
|
3028
|
+
c2.2-0.5,4.4,0.3,6.6-0.4c0.5-0.2,1-0.6,1.5-0.6c0.5-0.1,1.1,0.2,1.6,0.1c0.6-0.1,1-0.3,1.4-0.7c0.1-0.1,0.1-0.1,0.2-0.1
|
|
3029
|
+
c0.2,0.1,0.4,0.1,0.7,0.2c1.3,0.2,2.3-0.1,3.4-0.6c0.6,0.2,1,0.4,1.8,0.5c1.2,0.2,2.1-0.3,2.6-1.1c0.3,0.1,0.6,0.2,0.9,0.2
|
|
3030
|
+
c0.8,0,1.5-0.4,1.9-0.9c0.1,0,0.2,0,0.3,0c0.8,0,1.4-0.3,1.8-0.7c0.4,0.3,0.9,0.6,1.6,0.6c0.2,0,0.4,0,0.6-0.1c0.1,0,0.1,0,0.2,0
|
|
3031
|
+
c1.4,0,2.8,0,4.2-0.2c0.9-0.2,1.8-0.7,2.6-1.1c0.6,0.3,1.2,0.5,2,0.5c1.2,0,2.4-0.5,3.5-1.1c0.2,0,0.4,0.1,0.7,0.1
|
|
3032
|
+
c0.9,0,1.5-0.4,1.9-0.9c0.4,0.5,1,0.9,1.9,0.9c1,0,1.7-0.5,2.1-1.2c0.4,0.4,1,0.6,1.6,0.6h0.2c0.5,0,1-0.2,1.4-0.5
|
|
3033
|
+
c0.7,0.3,1.6,0.3,2.2-0.1c0.8-0.6,1.6-0.5,2.5-0.4c1.4,0.1,2.7,0.2,4.1-0.1c0.3-0.1,0.5-0.2,0.7-0.3c0.2,0,0.4,0.1,0.6,0.1
|
|
3034
|
+
c1,0,1.7-0.5,2.1-1.2c0,0,0.1,0,0.1-0.1c-0.2,0.8-0.3,1.7-0.4,2.6c-0.1,2.3,1.1,4.8-0.6,6.7c-1.2,1.3-0.7,2.9,0.4,3.8
|
|
3035
|
+
c0.1,0.5,0.2,1,0.6,1.4c-0.3,0.4-0.5,0.9-0.5,1.5v0.3c0,0.8,0.4,1.5,1,2c-0.5,0.4-0.8,1.1-0.8,1.8c-0.4,1.1,0,2.5,1,3.1
|
|
3036
|
+
c1.2,0.6,2.7,0.3,3.4-0.9c0.5-0.9,0.6-1.8,0.4-2.8c-0.1-0.5-0.5-1-0.9-1.3c0.5-0.4,0.9-1.1,0.9-1.8v-0.3c0-0.6-0.3-1.2-0.7-1.7
|
|
3037
|
+
c0.6-0.9,0.6-2.1,0-3c0.8-1.3,1.3-2.9,1.2-4.5c-0.1-2.8-0.7-5.1,0.6-7.8C132.4,8.3,129.7,6.2,128,7.1z"/>
|
|
3038
|
+
<linearGradient id="SVGID_323_" gradientUnits="userSpaceOnUse" x1="25.133" y1="23.2183" x2="130.3061" y2="23.2183">
|
|
3039
|
+
<stop offset="0" style="stop-color:#E5F7FF"/>
|
|
3040
|
+
<stop offset="0.2704" style="stop-color:#EEF7FF"/>
|
|
3041
|
+
<stop offset="0.4286" style="stop-color:#E4F7FF"/>
|
|
3042
|
+
<stop offset="1" style="stop-color:#EEF7FF"/>
|
|
3043
|
+
</linearGradient>
|
|
3044
|
+
<path class="st347" d="M126.8,9.3c-0.1,0-0.3,0-0.4,0c-0.6,0-1,0.2-1.4,0.4c-0.4-0.3-0.8-0.4-1.4-0.4c-1,0-1.7,0.5-2,1.2
|
|
3045
|
+
c-0.2,0.1-0.3,0.2-0.5,0.3c-0.4-0.1-0.7-0.1-1.2,0c-1.3,0.3-2.6-0.2-3.9-0.1c-1.3,0-2.6,0.3-3.6,1.1c0,0-0.1,0.1-0.1,0.1
|
|
3046
|
+
c-0.3-0.1-0.6-0.2-0.9-0.2h-0.2c-0.8,0-1.6,0.5-2.1,1.2c-0.4-0.3-0.9-0.5-1.5-0.5c-0.9,0-1.5,0.4-1.9,0.9c-0.4-0.5-1-0.9-1.9-0.9
|
|
3047
|
+
c-0.4,0-0.8,0.1-1.1,0.3c-0.5-0.2-1.1-0.1-1.8,0.2c-1,0.5-0.9,0.5-1.6,0.2c-0.9-0.3-1.5-0.6-2.5-0.2c-0.8,0.3-1.4,0.9-2.2,1.1
|
|
3048
|
+
c-1.1,0.3-2.3,0.2-3.4,0.2c-0.2,0-0.4,0-0.6,0.1c-0.1,0-0.1,0-0.2,0c-0.7,0-1.3,0.3-1.7,0.7c-0.4-0.3-0.9-0.6-1.5-0.6
|
|
3049
|
+
c-0.8,0-1.4,0.4-1.8,0.9c-0.1,0-0.2,0-0.3,0c-1,0-1.6,0.5-2,1.1c0,0-0.1,0-0.1,0c-1-0.2-2-0.9-3.1-0.9c-0.7,0-1.1,0.4-1.7,0.6
|
|
3050
|
+
c-1.9,0.3-2.9-0.3-4.7,0.7c-0.1,0-0.1,0.1-0.2,0.1c-0.1,0-0.2-0.1-0.3-0.1c-1-0.3-1.9,0.5-2.7,0.8c-0.9,0.2-1.5-0.1-2.4-0.1
|
|
3051
|
+
c-1.4,0-2.8,0.3-4.1,0.7c-0.5,0.1-0.9,0.4-1.2,0.7c-0.4-0.4-0.9-0.6-1.6-0.6c-1.1,0-1.8,0.6-2.1,1.4c-0.3-0.2-0.7-0.3-1.1-0.3
|
|
3052
|
+
c-0.6,0-1.2,0.2-1.5,0.6c-0.4-0.4-1-0.7-1.7-0.7c-0.9,0-1.5,0.4-1.9,1c-0.4-0.3-0.9-0.5-1.5-0.5c-1.1,0-1.8,0.6-2.1,1.4
|
|
3053
|
+
c-0.3-0.2-0.8-0.4-1.3-0.4c-0.3,0-0.6,0.1-0.8,0.1c-0.4-0.4-0.9-0.6-1.6-0.6c-0.8,0-1.4,0.3-1.8,0.8c-0.7,0-1.2,0.3-1.6,0.7
|
|
3054
|
+
c-0.7,0-1.3,0.3-1.7,0.7c-0.5,0.1-0.9,0.3-1.3,0.6c-0.2-0.2-0.4-0.3-0.6-0.4c-0.4-0.3-0.8-0.5-1.4-0.5c-0.8,0-1.3,0.3-1.7,0.7
|
|
3055
|
+
c-0.4-0.5-1-0.9-1.8-0.9c-0.3-1-1.2-1.7-2.3-1.7c-1.2,0.1-2.2,0.9-2.4,2.1c-0.9,0.2-1.7,0.9-2.1,1.7c-0.5,0.9-0.4,2.1,0.2,2.9
|
|
3056
|
+
c-1.2,0.4-1.8,1.7-1.6,2.8c-0.1,0.2-0.1,0.5-0.1,0.7v0.3c0,1.3,1.1,2.6,2.4,2.5C28.9,33,30,32,30,30.6v-0.3c0-0.2,0-0.5-0.1-0.7
|
|
3057
|
+
c0.1-0.7-0.1-1.5-0.5-2.1c0.3-0.1,0.6-0.2,0.9-0.4c0.2,0,0.3-0.1,0.5-0.2c0.4,0.4,0.9,0.6,1.6,0.6c0.7,0,1.3-0.3,1.7-0.7
|
|
3058
|
+
c0.5-0.1,0.9-0.4,1.1-0.7c0.3,0.4,0.6,0.6,1.1,0.8c0.4,0.3,0.8,0.5,1.4,0.5c0.7,0,1.2-0.3,1.6-0.6c0.4,0.3,0.8,0.5,1.4,0.5
|
|
3059
|
+
c0.7,0,1.3-0.3,1.7-0.7c0.5-0.1,0.9-0.3,1.3-0.6c0.8,0,1.4-0.3,1.8-0.8c0.3,0,0.6-0.1,0.8-0.1c0.4,0.4,0.9,0.6,1.6,0.6
|
|
3060
|
+
c1.1,0,1.8-0.6,2.1-1.4c0.3,0.2,0.8,0.4,1.3,0.4c0.9,0,1.5-0.4,1.9-1c0.4,0.3,0.9,0.5,1.5,0.5c0.6,0,1.2-0.2,1.5-0.6
|
|
3061
|
+
c0.4,0.4,1,0.7,1.7,0.7c1.1,0,1.8-0.6,2.1-1.4c0.3,0.2,0.7,0.3,1.1,0.3c0.8,0,1.5-0.4,1.8-0.9c0.5,0.6,1.3,0.9,2.3,0.6
|
|
3062
|
+
c2.2-0.5,4.3,0.3,6.4-0.4c0.5-0.2,0.9-0.6,1.4-0.6c0.5-0.1,1.1,0.2,1.6,0.1c0.6-0.1,0.9-0.3,1.4-0.7c0.1-0.1,0.1-0.1,0.2-0.1
|
|
3063
|
+
c0.1,0.1,0.4,0.1,0.7,0.2c1.2,0.2,2.3-0.1,3.3-0.6c0.5,0.2,1,0.4,1.7,0.5c1.1,0.2,2-0.3,2.5-1.1c0.3,0.1,0.5,0.2,0.9,0.2
|
|
3064
|
+
c0.8,0,1.4-0.4,1.8-0.9c0.1,0,0.2,0,0.3,0c0.7,0,1.3-0.3,1.7-0.7c0.4,0.3,0.9,0.6,1.5,0.6c0.2,0,0.4,0,0.6-0.1c0.1,0,0.1,0,0.2,0
|
|
3065
|
+
c1.4,0,2.7,0,4-0.2c0.9-0.2,1.7-0.7,2.6-1.1c0.6,0.3,1.2,0.5,1.9,0.5c1.2,0,2.4-0.5,3.4-1.1c0.2,0,0.4,0.1,0.6,0.1
|
|
3066
|
+
c0.9,0,1.5-0.4,1.9-0.9c0.4,0.5,1,0.9,1.9,0.9c1,0,1.7-0.5,2-1.2c0.4,0.4,0.9,0.6,1.5,0.6h0.2c0.5,0,1-0.2,1.4-0.5
|
|
3067
|
+
c0.7,0.3,1.5,0.3,2.1-0.1c0.8-0.6,1.5-0.5,2.4-0.4c1.4,0.1,2.6,0.2,4-0.1c0.3-0.1,0.5-0.2,0.7-0.3c0.2,0,0.4,0.1,0.6,0.1
|
|
3068
|
+
c1,0,1.7-0.5,2-1.2c0,0,0.1,0,0.1-0.1c-0.2,0.8-0.3,1.7-0.4,2.6c-0.1,2.3,1.1,4.8-0.6,6.7c-1.2,1.3-0.7,2.9,0.4,3.8
|
|
3069
|
+
c0.1,0.5,0.2,1,0.6,1.4c-0.3,0.4-0.5,0.9-0.5,1.5v0.3c0,0.8,0.4,1.5,1,2c-0.5,0.4-0.8,1.1-0.8,1.8c-0.4,1.1,0,2.5,1,3.1
|
|
3070
|
+
c1.2,0.6,2.6,0.3,3.3-0.9c0.5-0.9,0.6-1.8,0.4-2.8c-0.1-0.5-0.4-1-0.9-1.3c0.5-0.4,0.8-1.1,0.8-1.8v-0.3c0-0.6-0.3-1.2-0.7-1.7
|
|
3071
|
+
c0.6-0.9,0.5-2.1,0-3c0.8-1.3,1.2-2.9,1.2-4.5c-0.1-2.8-0.6-5.1,0.6-7.8C131.1,10.5,128.5,8.4,126.8,9.3z"/>
|
|
3072
|
+
<path class="st342" d="M139.6,114.1c0-0.1-0.1-0.1-0.1-0.2c0.1-0.3,0.2-0.5,0.2-0.9c0.7-9.7,0-19.1-0.1-28.7c0-2.3-0.8-4.6-0.7-6.9
|
|
3073
|
+
c0.1-2.6,1-5.1,1.1-7.7c0.3-5.1-2.6-10.3-0.5-15c1.3-3.1,1.9-5.5,1.2-8.9c-0.7-3.2-0.9-5.7-0.3-9c0.3-1.7,0.7-3.3,0.5-5
|
|
3074
|
+
c-0.2-2.1-0.4-3-0.1-5c0.2-1.4,0-2.5-0.3-3.8c-1.2-5.2,0.1-10.4-0.3-15.8c0-0.2-0.1-0.4-0.1-0.5c0.7-1.5,0-3.7-2.1-3.7
|
|
3075
|
+
c-1.8,0-2.6,1.5-2.4,2.9c0,0,0,0,0,0l-1.1,1.6c-0.9,1.3-0.3,2.6,0.7,3.2c0,0.3,0,0.6-0.1,0.9c-0.6,0.4-1,1.1-1,2v0.7
|
|
3076
|
+
c0,0.6,0.2,1.1,0.6,1.6c-0.2,1.9-0.2,3.8,0.1,5.7c0.4,2.1,0.7,3.4,0.6,5.6c-0.1,1.3,0,2.1,0.2,3.5c0.6,4.6-1.5,8.9-0.6,13.4
|
|
3077
|
+
c0.6,2.9,1.4,5.1,0.2,8c-0.7,1.6-1.4,3.1-1.7,4.8c-0.5,4.3,1.8,8.4,1.5,12.7c-0.2,2.3-0.8,4.5-1,6.8c-0.2,2.6,0.6,5.1,0.7,7.7
|
|
3078
|
+
c0.2,9.6,0.8,19.1,0.1,28.7c0,0.3,0,0.6,0.1,0.9c-0.2,0.4-0.2,0.9-0.1,1.5c0.9,3.3,0.1,6.5-0.1,9.9c-0.1,2.4,1.3,6.9,0,8.9
|
|
3079
|
+
c-1.7,2.7,2.6,5.2,4.3,2.5c2.1-3.3,0.7-6.4,0.6-10C139.6,122.4,140.7,118.4,139.6,114.1z"/>
|
|
3080
|
+
<linearGradient id="SVGID_324_" gradientUnits="userSpaceOnUse" x1="136.6472" y1="70.4656" x2="144.2072" y2="70.4656">
|
|
3081
|
+
<stop offset="0" style="stop-color:#E5F7FF"/>
|
|
3082
|
+
<stop offset="0.2704" style="stop-color:#EEF7FF"/>
|
|
3083
|
+
<stop offset="0.4286" style="stop-color:#E4F7FF"/>
|
|
3084
|
+
<stop offset="1" style="stop-color:#EEF7FF"/>
|
|
3085
|
+
</linearGradient>
|
|
3086
|
+
<path class="st348" d="M142.9,114.1c0-0.1-0.1-0.1-0.1-0.2c0.1-0.3,0.2-0.5,0.2-0.9c0.7-9.7,0-19.1-0.1-28.7c0-2.3-0.8-4.6-0.7-6.9
|
|
3087
|
+
c0.1-2.6,1-5.1,1.1-7.7c0.3-5.1-2.6-10.3-0.5-15c1.3-3.1,1.9-5.5,1.2-8.9c-0.7-3.2-0.9-5.7-0.3-9c0.3-1.7,0.7-3.3,0.5-5
|
|
3088
|
+
c-0.2-2.1-0.4-3-0.1-5c0.2-1.4,0-2.5-0.3-3.8c-1.2-5.2,0.1-10.4-0.3-15.8c0-0.2-0.1-0.4-0.1-0.5c0.7-1.5,0-3.7-2.1-3.7
|
|
3089
|
+
c-1.8,0-2.6,1.5-2.4,2.9c0,0,0,0,0,0l-1.1,1.6c-0.9,1.3-0.3,2.6,0.7,3.2c0,0.3,0,0.6-0.1,0.9c-0.6,0.4-1,1.1-1,2v0.7
|
|
3090
|
+
c0,0.6,0.2,1.1,0.6,1.6c-0.2,1.9-0.2,3.8,0.1,5.7c0.4,2.1,0.7,3.4,0.6,5.6c-0.1,1.3,0,2.1,0.2,3.5c0.6,4.6-1.5,8.9-0.6,13.4
|
|
3091
|
+
c0.6,2.9,1.4,5.1,0.2,8c-0.7,1.6-1.4,3.1-1.7,4.8c-0.5,4.3,1.8,8.4,1.5,12.7c-0.2,2.3-0.8,4.5-1,6.8c-0.2,2.6,0.6,5.1,0.7,7.7
|
|
3092
|
+
c0.2,9.6,0.8,19.1,0.1,28.7c0,0.3,0,0.6,0.1,0.9c-0.2,0.4-0.2,0.9-0.1,1.5c0.9,3.3,0.1,6.5-0.1,9.9c-0.1,2.4,1.3,6.9,0,8.9
|
|
3093
|
+
c-1.7,2.7,2.6,5.2,4.3,2.5c2.1-3.3,0.7-6.4,0.6-10C142.9,122.4,144,118.4,142.9,114.1z"/>
|
|
3094
|
+
<rect x="106.7" y="100.2" class="st251" width="15.3" height="15.3"/>
|
|
3095
|
+
<polyline class="st252" points="103.7,119 103.7,97.1 125.6,97.1 "/>
|
|
3096
|
+
<g>
|
|
3097
|
+
<linearGradient id="SVGID_325_" gradientUnits="userSpaceOnUse" x1="127.4011" y1="107.3785" x2="127.4093" y2="107.3785">
|
|
3098
|
+
<stop offset="0" style="stop-color:#E5F7FF"/>
|
|
3099
|
+
<stop offset="0.2704" style="stop-color:#EEF7FF"/>
|
|
3100
|
+
<stop offset="0.4286" style="stop-color:#E4F7FF"/>
|
|
3101
|
+
<stop offset="1" style="stop-color:#EEF7FF"/>
|
|
3102
|
+
</linearGradient>
|
|
3103
|
+
<polygon class="st349" points="127.4,107.4 127.4,107.4 127.4,107.4 "/>
|
|
3104
|
+
<linearGradient id="SVGID_326_" gradientUnits="userSpaceOnUse" x1="101.4123" y1="107.4361" x2="128.4577" y2="107.4361">
|
|
3105
|
+
<stop offset="0" style="stop-color:#E5F7FF"/>
|
|
3106
|
+
<stop offset="0.2704" style="stop-color:#EEF7FF"/>
|
|
3107
|
+
<stop offset="0.4286" style="stop-color:#E4F7FF"/>
|
|
3108
|
+
<stop offset="1" style="stop-color:#EEF7FF"/>
|
|
3109
|
+
</linearGradient>
|
|
3110
|
+
<path class="st350" d="M128.2,112.2c-0.2-0.2,0-1,0-1.3c0-0.3,0-0.6-0.1-1c0-0.1,0-0.2,0-0.3c0,0,0,0,0,0c0.2,0,0.3-0.5,0.1-0.6
|
|
3111
|
+
c0.1-0.2,0.1-0.5-0.1-0.6c0.1-0.4,0.1-0.8,0.1-1.2c0-0.3-0.1-0.5-0.2-0.7c0.2-0.6,0.3-1.4,0.2-2.1c0-0.1,0-0.3,0-0.4
|
|
3112
|
+
c0,0,0-0.1,0-0.1c0-0.1,0-0.2,0-0.3c0,0,0.1,0,0.1-0.1c0-0.1,0.1-0.1,0.1-0.2v-0.1c0-0.1,0-0.1,0-0.2c0.1-0.2,0.1-0.5-0.1-0.6
|
|
3113
|
+
c0,0,0-0.1,0-0.1c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.4,0-0.7c0.2-0.1,0.2-0.7-0.1-0.7c0,0,0,0,0,0c0-0.1,0-0.2-0.1-0.3
|
|
3114
|
+
c0-0.3,0-0.5,0.1-0.8c0.1-0.5,0.2-1.1,0-1.6c-0.1-0.2-0.1-0.3-0.1-0.6c0.1-0.3,0.1-0.5,0.1-0.8c0-0.3-0.1-0.6-0.2-0.8
|
|
3115
|
+
c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0.2,0,0.3-0.4,0.2-0.6c0,0,0-0.1,0-0.1V95c0-0.1,0-0.2-0.1-0.2c0-0.1-0.1-0.1-0.2-0.1c0,0,0,0,0,0
|
|
3116
|
+
c0,0,0-0.1-0.1-0.1c0.1-0.2,0.1-0.6-0.2-0.6c-0.1,0-0.1,0-0.1,0.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,0
|
|
3117
|
+
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,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,0
|
|
3118
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1c-0.3,0-0.6,0-0.9,0c0-0.2-0.1-0.3-0.2-0.3
|
|
3119
|
+
c-0.1,0-0.2,0.2-0.2,0.3c-0.3,0-0.6,0-0.9,0c0-0.1-0.1-0.1-0.2-0.1c-0.1,0-0.1,0.1-0.2,0.1c-0.1,0-0.1,0-0.2,0
|
|
3120
|
+
c0-0.1-0.1-0.1-0.1-0.1c0,0-0.1-0.1-0.1-0.1c-0.1,0-0.2,0.1-0.2,0.2c0,0,0,0-0.1,0c0-0.1-0.1-0.2-0.2-0.2c-0.1,0-0.2,0.1-0.2,0.2
|
|
3121
|
+
c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0c-0.1,0-0.2,0.1-0.2,0.2c-0.1,0-0.2,0-0.3,0
|
|
3122
|
+
c0-0.1-0.1-0.2-0.2-0.2c-0.1,0-0.2,0.1-0.2,0.2c0,0,0,0-0.1,0c0-0.1-0.1-0.2-0.2-0.2c-0.1,0-0.2,0.1-0.2,0.2c0-0.2-0.1-0.4-0.2-0.4
|
|
3123
|
+
c-0.1,0-0.2,0.2-0.2,0.3c0,0,0,0,0,0c-0.1,0-0.1,0-0.2,0c0-0.1-0.1-0.2-0.2-0.2c-0.1,0-0.2,0.1-0.2,0.2c-0.1,0-0.1-0.1-0.2-0.1
|
|
3124
|
+
c-0.1,0-0.2,0-0.2,0.1c-0.1,0-0.2,0-0.3,0c0-0.2-0.2-0.4-0.4-0.4c-0.2,0-0.3,0.2-0.4,0.4c-0.1,0-0.1,0-0.2,0c0-0.2-0.2-0.4-0.4-0.4
|
|
3125
|
+
c-0.2,0-0.3,0.1-0.4,0.3c-0.1-0.1-0.1-0.1-0.2-0.1c-0.1,0-0.2,0.1-0.3,0.2c0,0,0,0,0,0c-0.1-0.2-0.2-0.4-0.4-0.4
|
|
3126
|
+
c-0.2,0-0.4,0.2-0.4,0.5c0,0,0,0,0,0c-0.1,0,0,0,0,0c-0.2-0.2-0.4-0.4-0.7-0.4c0-0.2-0.1-0.3-0.2-0.3c-0.1,0-0.2,0.1-0.2,0.2
|
|
3127
|
+
c-0.1,0-0.2,0-0.2,0c-0.1,0-0.1,0-0.2,0.1c0,0-0.1-0.1-0.1-0.1c-0.1,0-0.2,0.1-0.2,0.2c-0.2,0-0.4,0-0.5-0.1
|
|
3128
|
+
c-0.2-0.2-0.5-0.1-0.6,0.2c0,0.1-0.2,0.1-0.3,0.1c0-0.2-0.1-0.3-0.2-0.3c-0.1,0-0.2,0.1-0.2,0.2c-0.1,0-0.1,0-0.2,0
|
|
3129
|
+
c0-0.2-0.1-0.4-0.2-0.4c0,0-0.1-0.1-0.1-0.1c-0.1,0-0.2,0.2-0.2,0.3c0,0,0,0-0.1,0c0,0,0,0,0,0c0-0.2,0-0.4-0.2-0.4
|
|
3130
|
+
c-0.2,0-0.2,0.2-0.2,0.4c0,0,0,0,0,0c-0.1,0-0.3,0-0.4,0c0-0.2-0.1-0.4-0.2-0.4c-0.1,0-0.2,0.1-0.2,0.3c0,0,0,0,0,0
|
|
3131
|
+
c0,0-0.1-0.1-0.1-0.1c-0.1,0-0.1,0-0.1,0.1c0-0.1-0.1-0.1-0.2-0.1c-0.2,0-0.2,0.2-0.2,0.4c-0.1,0-0.1,0-0.2-0.1
|
|
3132
|
+
c0-0.1,0-0.1-0.1-0.2c0-0.1-0.1-0.1-0.2-0.1c-0.1,0-0.1,0-0.2,0.1c0,0,0,0,0,0.1c0,0,0,0.1,0,0.1c0,0-0.1,0.1-0.1,0.1
|
|
3133
|
+
c0-0.2-0.1-0.3-0.2-0.3c-0.1,0-0.2,0.1-0.2,0.2c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0
|
|
3134
|
+
c0-0.1-0.1-0.2-0.2-0.2c-0.1,0-0.2,0.1-0.2,0.2c-0.1,0-0.2,0.1-0.2,0.2c-0.1-0.1-0.2-0.2-0.3-0.2h0c-0.1,0-0.1,0-0.2,0.1
|
|
3135
|
+
c0,0-0.1,0.1-0.1,0.1c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0c-0.1-0.1-0.2-0.2-0.3-0.2c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0
|
|
3136
|
+
c-0.1,0-0.2,0.1-0.3,0.2c0,0,0-0.1,0-0.1c-0.1-0.4-0.5-0.4-0.6-0.1c0,0.1-0.1,0,0,0c0,0,0,0,0,0c-0.1,0-0.2-0.1-0.3-0.2
|
|
3137
|
+
c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0-0.3-0.1-0.4,0c0,0-0.1,0-0.2,0c-0.1-0.2-0.2-0.3-0.3-0.3c-0.2-0.1-0.4,0.1-0.5,0.3
|
|
3138
|
+
c0,0.1-0.1,0.2-0.1,0.2c0,0,0,0,0,0c-0.1,0-0.2-0.2-0.3-0.2c-0.1-0.1-0.3-0.2-0.4-0.2c-0.1,0-0.4,0.1-0.4,0.1c0,0-0.1,0-0.1,0
|
|
3139
|
+
c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2,0.1-0.4,0.1c-0.1,0-0.2,0.2-0.2,0.3c0,0.1,0,0.2-0.1,0.3c-0.2,0.1-0.2,0.4-0.1,0.6c0,0,0,0.1,0,0.1
|
|
3140
|
+
c-0.2,0-0.3,0.5-0.1,0.7c0,0.2,0,0.3,0,0.5c0,0,0,0.1,0,0.2c-0.1,0.2-0.1,0.4,0.1,0.5c0,0,0,0.1,0,0.1c0,0,0,0.1,0,0.1
|
|
3141
|
+
c0,0.1,0,0.2,0,0.2c-0.1,0.1-0.2,0.3-0.1,0.4c0,0.1,0,0.3,0.1,0.4c-0.1,0.1-0.1,0.2-0.1,0.4c-0.1,0.1-0.1,0.3,0,0.5
|
|
3142
|
+
c0,0,0,0.1,0,0.1v0.1c0,0.1,0,0.1,0,0.2c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.1,0,0.3,0,0.4c-0.1,0.4-0.1,0.8-0.1,1.2
|
|
3143
|
+
c0,0.3,0.1,0.6,0.2,0.9c0,0.2,0,0.4,0,0.6c-0.1,0.1-0.1,0.3-0.1,0.4c-0.1,0.6,0,1.1,0.1,1.6c0,0.1,0,0.3,0,0.4
|
|
3144
|
+
c-0.2,0.1-0.2,0.5,0,0.6c0,0.1,0.1,0.1,0.1,0.1c-0.1,0.3-0.2,0.6-0.2,0.9c0,0.2,0,0.3,0,0.5c0,0.2,0,0.4,0.1,0.5
|
|
3145
|
+
c-0.1,0.2,0,0.4,0.1,0.5c0,0.1,0,0.2,0.1,0.2c0,0,0,0,0,0c-0.1,0.3-0.2,0.6-0.2,1c0,0.4,0.1,0.7,0.1,1.1c0.1,0.4,0.1,0.7,0.1,1
|
|
3146
|
+
c-0.1,0.4-0.2,0.8-0.2,1.2c0,0.5,0.1,0.9,0.4,1.2c-0.3,1.2-0.3,2.4-0.2,3.6c-0.2,0.4-0.3,0.9-0.3,1.5c0,0.2,0.1,0.4,0.2,0.5
|
|
3147
|
+
c0,0.1,0.1,0.2,0.2,0.2c0,0,0,0,0,0c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2-0.1,0.2-0.2c0,0,0,0,0.1,0c0,0,0,0.1,0,0.1c0,0,0,0,0,0
|
|
3148
|
+
c0,0,0,0,0,0.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,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
3149
|
+
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,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,0
|
|
3150
|
+
c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0.1,0c0,0.1,0.1,0.2,0.2,0.2c0,0,0.1,0,0.1,0c0,0.1,0.1,0.1,0.2,0.1c0,0,0.1,0,0.1,0
|
|
3151
|
+
c0,0.1,0.1,0.2,0.2,0.2h0.2c0,0,0.1,0,0.1-0.1c0,0,0,0,0,0c0.1,0,0.2-0.1,0.2-0.2c0,0,0,0,0,0c0.1,0,0.1,0,0.2,0
|
|
3152
|
+
c0,0.2,0.1,0.3,0.2,0.3c0.1,0,0.2-0.1,0.2-0.2c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2-0.1,0.2-0.2c0.2,0,0.5,0,0.7-0.1
|
|
3153
|
+
c0.1,0,0.6-0.2,0.7-0.3c0,0,0.1,0.1,0.1,0.1c0.1,0.1,0.2,0.2,0.3,0.3c0.2,0.2,0.5,0.2,0.7,0.2c1.1,0.1,2.2,0,3.3,0
|
|
3154
|
+
c0.6,0,1.1,0,1.7,0c0.2,0,0.5,0,0.8,0c0.2,0,0.4-0.2,0.7-0.3c0.4-0.1,0.8,0.1,1.1,0.2c0.4,0.1,0.7,0.1,1-0.2c0.7,0.2,1.4,0.3,2,0.1
|
|
3155
|
+
c0.3,0.2,0.6,0.2,0.9,0.2c0.4,0,0.8,0,1.3,0l1.3,0c0.4,0,0.8,0.1,1.2-0.1c0.2-0.1,0.4-0.2,0.5-0.3c0.1-0.1,0.2,0,0.3,0.1
|
|
3156
|
+
c0.4,0.3,0.7,0.4,1.1,0.5c0.4,0.1,0.8,0,1.2,0c0.5,0,0.9,0,1.4,0c0.3,0,0.4-0.3,0.4-0.7c0.1-0.1,0.2-0.1,0.2-0.3
|
|
3157
|
+
c0.2-0.4,0.3-0.9,0.2-1.4c0-0.3-0.1-0.5-0.1-0.7c0-0.1-0.1-0.2-0.1-0.3c0,0,0,0,0-0.1c0-0.1,0.1-0.2,0.1-0.3c0-0.2,0-0.4,0-0.6
|
|
3158
|
+
c0-0.5,0-0.9,0-1.4c0-0.5,0-0.9,0-1.4c0-0.3,0-0.6,0.2-0.8C128.5,112.9,128.4,112.4,128.2,112.2z M127.5,98.8
|
|
3159
|
+
c-0.2,0-0.3,0.5-0.1,0.6c0,0,0,0.1,0,0.1c0,0.1,0,0.3-0.1,0.4c0,0,0,0.1,0,0.1c0,0.1,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2
|
|
3160
|
+
c0,0.1-0.1,0.2,0,0.3c0,0.2,0.1,0.3,0.2,0.4c0.1,0.3,0.1,0.6,0,0.9c-0.1,0.5-0.2,1-0.2,1.5c0,0.1,0,0.2,0,0.3c0,0,0,0,0,0
|
|
3161
|
+
c0,0.1,0,0.2,0,0.3c-0.1,0.1-0.1,0.3-0.1,0.4c-0.2,0.1-0.2,0.4-0.1,0.5c0,0.1,0,0.2,0,0.3c-0.1,0.2-0.1,0.6,0.1,0.6c0,0,0,0,0,0
|
|
3162
|
+
c0,0.1-0.1,0.3-0.2,0.4c-0.3,0.3-0.2,1.1,0.2,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.1,0,0.1
|
|
3163
|
+
c-0.2,0-0.3,0.5-0.1,0.7c0,0.1,0,0.2-0.1,0.3c0,0,0,0.1,0,0.1c-0.1,0.1-0.1,0.2,0,0.4c0,0.3,0,0.6,0,0.9c-0.1,0.2-0.1,0.5,0.1,0.6
|
|
3164
|
+
c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0c-0.3,0-0.3,0.6,0,0.7c0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3c0,0,0,0,0,0c-0.1,0-0.1,0-0.2,0.1
|
|
3165
|
+
c0,0.1-0.1,0.1-0.1,0.2c0,0.1,0,0.2,0.1,0.2c0,0,0,0,0,0.1c0,0,0,0.1,0.1,0.1c0,0.2,0.1,0.4,0.2,0.4c0,0,0,0,0,0
|
|
3166
|
+
c-0.1,0.4-0.2,0.8-0.2,1.2c0,0.8,0,1.5,0,2.3c0,0.2,0,0.5,0,0.7c-0.1,0.2-0.2,0.3-0.2,0.5c0,0.2,0,0.4,0.1,0.6
|
|
3167
|
+
c0,0.1,0.1,0.2,0.1,0.2c0,0.2,0,0.4,0.1,0.5c0,0,0,0,0,0c-0.2,0-0.3,0.4-0.1,0.6c0,0,0,0,0,0c0,0-0.1,0-0.1,0
|
|
3168
|
+
c-0.1,0-0.2,0.1-0.2,0.2c0-0.1-0.1-0.2-0.2-0.2c-0.2,0-0.2,0.2-0.2,0.4c0,0,0,0-0.1,0c0,0,0-0.1,0-0.1c0-0.2-0.1-0.3-0.2-0.3h-0.1
|
|
3169
|
+
c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0c-0.1,0-0.1,0.1-0.2,0.1c0-0.1-0.1-0.1-0.2-0.1c-0.1,0-0.1,0-0.2,0.1c0-0.1-0.1-0.2-0.2-0.2
|
|
3170
|
+
c-0.1,0-0.2,0.1-0.2,0.2c0,0,0,0,0,0c-0.1,0-0.2,0.2-0.2,0.3c0,0-0.1,0-0.1,0c-0.4-0.1-0.7-0.6-1.2-0.6c-0.2,0-0.4,0.2-0.5,0.3
|
|
3171
|
+
c-0.2,0.1-0.3,0.1-0.5,0.1c0-0.1-0.1-0.2-0.2-0.2c-0.1,0-0.2,0.1-0.2,0.2c-0.1,0-0.2,0-0.3,0c0-0.2-0.1-0.3-0.2-0.3
|
|
3172
|
+
c-0.1,0-0.2,0.1-0.2,0.2c0-0.1-0.1-0.1-0.2-0.1c-0.1,0-0.1,0-0.2,0.1c0,0-0.1,0-0.1,0c-0.1,0-0.2,0.1-0.2,0.2c0,0-0.1,0-0.1,0
|
|
3173
|
+
c0-0.1,0-0.1-0.1-0.2c0-0.1-0.1-0.1-0.2-0.1h-0.1c0,0-0.1,0-0.1,0.1c0,0,0,0,0,0c0,0-0.1,0-0.1-0.1c0,0-0.1,0-0.1,0
|
|
3174
|
+
c0,0-0.1,0-0.1,0c-0.1,0-0.2,0.1-0.2,0.2c0-0.1-0.1-0.2-0.2-0.2c0,0,0,0,0,0c0,0,0,0,0,0c-0.1,0-0.2,0.1-0.2,0.3c0,0-0.1,0-0.1,0
|
|
3175
|
+
c0,0,0,0-0.1,0c0-0.1,0-0.1-0.1-0.2c0-0.1-0.1-0.1-0.2-0.1h0c-0.1,0-0.1,0-0.1,0.1c0,0,0,0,0,0c-0.1,0-0.2-0.1-0.3,0
|
|
3176
|
+
c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.1,0.1c-0.1,0-0.1,0-0.2,0c-0.2,0-0.5,0-0.7,0c-0.2,0-0.4-0.1-0.6-0.1c-0.3-0.1-0.4-0.2-0.6,0.1
|
|
3177
|
+
c-0.2,0.2-0.4,0.1-0.7,0c-0.3-0.1-0.7-0.2-1-0.2c-0.2,0-0.3,0.1-0.5,0.2c0-0.1-0.1-0.1-0.2-0.1c-0.1,0-0.1,0-0.2,0.1
|
|
3178
|
+
c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c-0.1,0-0.2,0.1-0.2,0.2c-0.1,0-0.2,0-0.3,0c0-0.2-0.1-0.4-0.2-0.4
|
|
3179
|
+
c-0.2,0-0.2,0.2-0.2,0.4c-0.1,0-0.1,0-0.2,0c0-0.1-0.1-0.1-0.2-0.1c-0.1,0-0.1,0-0.1,0.1c0,0-0.1-0.1-0.1-0.1c0,0-0.1,0-0.1,0
|
|
3180
|
+
c0,0,0,0-0.1,0c0-0.1-0.1-0.1-0.2-0.1c-0.1,0-0.2,0.1-0.2,0.2c0,0-0.1,0-0.1,0c0-0.2-0.1-0.3-0.2-0.3c-0.1,0-0.2,0.1-0.2,0.2
|
|
3181
|
+
c0-0.1-0.1-0.1-0.2-0.1c-0.1,0-0.1,0-0.2,0.1c0-0.1-0.1-0.2-0.2-0.2c0,0-0.1-0.1-0.1-0.1c-0.1,0-0.2,0.1-0.2,0.3c0,0,0,0-0.1,0v0
|
|
3182
|
+
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,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,0
|
|
3183
|
+
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,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,0
|
|
3184
|
+
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,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,0
|
|
3185
|
+
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,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,0
|
|
3186
|
+
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,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,0
|
|
3187
|
+
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,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,0
|
|
3188
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0-0.1-0.1-0.2-0.2-0.2c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0c-0.1,0-0.2,0.1-0.2,0.2
|
|
3189
|
+
c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.2,0.1c0,0,0,0,0,0c0-0.2,0-0.5-0.2-0.5c-0.2,0-0.2,0.2-0.2,0.4c-0.1,0-0.1,0-0.2,0
|
|
3190
|
+
c-0.2,0-0.2-0.1-0.4-0.3c-0.2-0.3-0.4-0.4-0.7-0.3c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.5,0.1-0.7,0.1c-0.9,0-1.8-0.1-2.7-0.2
|
|
3191
|
+
c0.1-0.2,0.2-0.3,0.2-0.5c0.1-0.2,0-0.5,0-0.7c0-0.2,0-0.4-0.1-0.7c0-0.9,0.1-1.8,0.3-2.6c0.1-0.4,0-0.9-0.3-0.9c0,0,0,0,0,0
|
|
3192
|
+
c0-0.1,0-0.1,0-0.2c0-0.3,0.1-0.6,0.1-0.8c0.2-0.7,0.1-1.3-0.1-2c0-0.2-0.1-0.4,0-0.6c0.1-0.3,0.2-0.6,0.2-1c0-0.3-0.1-0.6-0.2-0.9
|
|
3193
|
+
c-0.1-0.2-0.1-0.4-0.1-0.7c0.1-0.3,0.1-0.5,0.2-0.8c0.1-0.4,0-0.7-0.1-1.1c0-0.2-0.1-0.3-0.1-0.5l0-0.1c0-0.1,0-0.2,0-0.3
|
|
3194
|
+
c0,0,0,0,0,0c0-0.1,0.1-0.1,0.1-0.2v-0.1c0.1-0.1,0.2-0.2,0.1-0.4c0-0.1,0-0.2,0-0.3c0-0.1,0-0.1-0.1-0.1c0-0.1,0-0.1,0-0.2
|
|
3195
|
+
c0-0.1,0-0.3,0-0.4c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.4-0.2-0.4c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0-0.1,0-0.1,0-0.2c0-0.1,0-0.2,0-0.3
|
|
3196
|
+
c0.3,0,0.3-0.6,0.1-0.7c0.1-0.2,0.1-0.5,0.2-0.7c0.1-0.3,0.1-0.6,0.1-0.8c0,0,0,0,0,0c0.3,0,0.3-0.7,0-0.7c0,0,0,0,0,0
|
|
3197
|
+
c0-0.1,0-0.2,0-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.1,0-0.3,0-0.4c0-0.1,0-0.2-0.1-0.3c0-0.1,0.1-0.3,0-0.4c0-0.1,0-0.2,0-0.3
|
|
3198
|
+
c0.1-0.1,0.1-0.4,0-0.5c0-0.1,0-0.1,0-0.2c0,0,0,0,0.1-0.1c0,0,0.1,0,0.1,0c0.1,0,0.2-0.1,0.2-0.3c0,0,0,0,0,0
|
|
3199
|
+
c0.1,0,0.2-0.1,0.2-0.1c0.2,0,0.3,0.3,0.5,0.4c0.3,0.2,0.5,0,0.8-0.2c0.1,0.1,0.3,0.1,0.4,0.1c0.1,0,0.2-0.1,0.3-0.1
|
|
3200
|
+
c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2-0.1,0.3-0.2c0,0,0.1,0,0.1,0.1c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0,0.2,0c0,0.1,0.1,0.1,0.2,0.2
|
|
3201
|
+
c0.2,0.2,0.4,0.1,0.5-0.2c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0.1,0.1,0.2,0.2,0.3,0.2
|
|
3202
|
+
c0.1,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0.1,0,0.2-0.1,0.3-0.1c0,0,0.1,0,0.1-0.1c0.1,0,0.1-0.1,0.1-0.1c0,0,0,0,0,0
|
|
3203
|
+
c0.1,0.1,0.1,0.1,0.2,0.2c0,0,0,0,0.1,0c0.1,0,0.2,0.1,0.4,0.1c0,0,0,0,0,0c0,0.1,0.1,0.1,0.2,0.1c0.2,0.1,0.5,0,0.7,0
|
|
3204
|
+
c0.1,0,0.1-0.1,0.1-0.1c0.3,0.1,0.7,0.1,1,0c0.4-0.1,0.8-0.1,1.1-0.1c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.1,0,0.2-0.1
|
|
3205
|
+
c0.5,0.1,1.2,0.4,1.7,0c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0c0.2,0.1,0.5,0,0.7,0c0.3-0.1,0.7-0.2,1,0c0.2,0.1,0.3,0.3,0.5,0.4
|
|
3206
|
+
c0.2,0,0.4-0.1,0.6-0.2c0.2,0,0.4,0,0.6,0c0.2,0,0.5,0,0.7,0c1.9-0.1,3.7-0.1,5.6-0.2c0.9,0,1.8-0.1,2.7,0c0,0.2,0,0.3,0,0.5
|
|
3207
|
+
c-0.1,0.2-0.1,0.6,0.1,0.6c0,0,0,0,0,0c0,0.1,0,0.1,0,0.2c-0.2,0-0.2,0.3-0.2,0.5c0,0,0,0,0,0c0,0.1,0,0.2,0,0.3
|
|
3208
|
+
c0,0.1,0,0.1,0.1,0.2c0,0.1,0,0.2,0,0.3c0,0,0,0.1,0,0.1c0,0.2,0,0.3,0.1,0.4C127.5,98.6,127.5,98.7,127.5,98.8
|
|
3209
|
+
C127.5,98.8,127.5,98.8,127.5,98.8z"/>
|
|
3210
|
+
</g>
|
|
3211
|
+
</svg>
|