--- /dev/null
+# Normalize EOL for all files that Git considers text files.
+* text=auto eol=lf
--- /dev/null
+# Godot 4+ specific ignores
+.godot/
--- /dev/null
+[gd_scene format=3 uid="uid://cksx0y6ckjy0v"]
+
+[node name="Node2D" type="Node2D"]
--- /dev/null
+[gd_scene load_steps=7 format=3 uid="uid://dp1mcc1mb7cql"]
+
+[ext_resource type="Script" uid="uid://bt4c1ckn3st5d" path="res://play.gd" id="1_3dgs8"]
+[ext_resource type="PackedScene" uid="uid://vhcmu8n6wjb1" path="res://scenes/layouts/layout_picker.tscn" id="2_g5dql"]
+
+[sub_resource type="InputEventKey" id="InputEventKey_6ogyc"]
+device = -1
+keycode = 82
+unicode = 114
+
+[sub_resource type="Shortcut" id="Shortcut_l3nhm"]
+events = [SubResource("InputEventKey_6ogyc")]
+
+[sub_resource type="InputEventKey" id="InputEventKey_ig882"]
+device = -1
+keycode = 4194305
+
+[sub_resource type="Shortcut" id="Shortcut_vgyld"]
+events = [SubResource("InputEventKey_ig882")]
+
+[node name="Control" type="Control" groups=["layout_subscribers"]]
+layout_mode = 3
+anchors_preset = 15
+anchor_right = 1.0
+anchor_bottom = 1.0
+grow_horizontal = 2
+grow_vertical = 2
+script = ExtResource("1_3dgs8")
+
+[node name="ColorRect" type="ColorRect" parent="."]
+layout_mode = 1
+anchors_preset = 15
+anchor_right = 1.0
+anchor_bottom = 1.0
+grow_horizontal = 2
+grow_vertical = 2
+size_flags_horizontal = 3
+color = Color(0.37, 0.6745, 1, 1)
+
+[node name="VBoxContainer" type="VBoxContainer" parent="."]
+layout_mode = 1
+anchors_preset = 15
+anchor_right = 1.0
+anchor_bottom = 1.0
+grow_horizontal = 2
+grow_vertical = 2
+
+[node name="PanelContainer" type="PanelContainer" parent="VBoxContainer"]
+layout_mode = 2
+
+[node name="ColorRect" type="ColorRect" parent="VBoxContainer/PanelContainer"]
+layout_mode = 2
+size_flags_horizontal = 3
+color = Color(0.1887, 0.343995, 0.51, 1)
+
+[node name="MarginContainer" type="MarginContainer" parent="VBoxContainer/PanelContainer"]
+layout_mode = 2
+theme_override_constants/margin_left = 4
+theme_override_constants/margin_top = 4
+theme_override_constants/margin_right = 4
+theme_override_constants/margin_bottom = 4
+
+[node name="ControlContainer" type="HBoxContainer" parent="VBoxContainer/PanelContainer/MarginContainer"]
+layout_mode = 2
+theme_override_constants/separation = 16
+
+[node name="HBoxContainer" type="HBoxContainer" parent="VBoxContainer/PanelContainer/MarginContainer/ControlContainer"]
+layout_mode = 2
+
+[node name="draw_button" type="Button" parent="VBoxContainer/PanelContainer/MarginContainer/ControlContainer/HBoxContainer"]
+layout_mode = 2
+shortcut = SubResource("Shortcut_l3nhm")
+text = " Draw "
+
+[node name="main_menu_button" type="Button" parent="VBoxContainer/PanelContainer/MarginContainer/ControlContainer/HBoxContainer"]
+layout_mode = 2
+shortcut = SubResource("Shortcut_vgyld")
+text = " Main Menu "
+
+[node name="VBoxContainer" type="VBoxContainer" parent="VBoxContainer/PanelContainer/MarginContainer/ControlContainer"]
+layout_mode = 2
+
+[node name="Label" type="Label" parent="VBoxContainer/PanelContainer/MarginContainer/ControlContainer/VBoxContainer"]
+layout_mode = 2
+text = "Items per card"
+horizontal_alignment = 1
+
+[node name="HSlider" type="HSlider" parent="VBoxContainer/PanelContainer/MarginContainer/ControlContainer/VBoxContainer"]
+custom_minimum_size = Vector2(256, 0)
+layout_mode = 2
+size_flags_horizontal = 3
+size_flags_vertical = 4
+min_value = 5.0
+max_value = 12.0
+value = 5.0
+rounded = true
+tick_count = 8
+ticks_on_borders = true
+
+[node name="CardContainer" parent="VBoxContainer/PanelContainer/MarginContainer/ControlContainer" instance=ExtResource("2_g5dql")]
+layout_mode = 2
+
+[node name="MarginContainer" type="MarginContainer" parent="VBoxContainer/PanelContainer/MarginContainer/ControlContainer"]
+layout_mode = 2
+size_flags_horizontal = 10
+
+[node name="Label" type="Label" parent="VBoxContainer/PanelContainer/MarginContainer/ControlContainer/MarginContainer"]
+layout_mode = 2
+text = "active deck label"
+
+[connection signal="pressed" from="VBoxContainer/PanelContainer/MarginContainer/ControlContainer/HBoxContainer/draw_button" to="." method="new_card_set"]
+[connection signal="pressed" from="VBoxContainer/PanelContainer/MarginContainer/ControlContainer/HBoxContainer/main_menu_button" to="." method="_on_main_menu_jump_action"]
+[connection signal="drag_ended" from="VBoxContainer/PanelContainer/MarginContainer/ControlContainer/VBoxContainer/HSlider" to="." method="_on_item_count_changed"]
--- /dev/null
+@tool
+@icon("icon.svg")
+extends Node
+class_name HTML5FileDialog
+## File dialog for web exports [br]
+## Works on (multiple) files and directories [br]
+## Works on all major browsers [br]
+## returns HTML5FileHandle files, which are used to read the contents of uploaded files [br]
+
+## Emitted after calling `show()`. May incorrectly emit if there has not been sufficient browser interaction from the user when `show` is called.
+signal shown()
+
+## One file selected. Only triggers with the "Open File" file mode
+signal file_selected(file:HTML5FileHandle)
+## One or more files selected. Only triggers with the "Open File" file mode
+signal files_selected(files:Array[HTML5FileHandle])
+## One directory selected. Only triggers with the "Open Directory" file mode [br]
+## Returns all the files inside the directory, including those in sub-directories.
+signal dir_selected(files:Array[HTML5FileHandle])
+## One or more directories selected. Only triggers with the "Open Directories" file mode [br]
+## Returns all the files inside the directories, including those in sub-directories.
+signal dirs_selected(files:Array[HTML5FileHandle])
+
+## Triggers no matter what the file mode is set to, as long as the user selected something.
+signal anything_selected(files:Array[HTML5FileDialog])
+
+enum FileMode {
+ OPEN_FILE, ## Open a single file
+ OPEN_FILES, ## Open multiple files
+ OPEN_DIRECTORY, ## Open a single directory
+ OPEN_DIRECTORIES, ## Open multiple directories
+}
+## Type of dialog that appears when you call [method show]
+@export var file_mode:FileMode = FileMode.OPEN_FILE
+## Specify what kind of files may be selected. [br]
+## Leave empty for anything. [br]
+## Read the MDN page for more information: [br][url]https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file#unique_file_type_specifiers[/url]
+@export var filters:PackedStringArray = []
+
+# interface is the resulting object of the js_snippet
+var interface:JavaScriptObject
+# is_web is a shortcut boolean for checking if the current build is running in browser
+var is_web:bool = OS.get_name() == 'Web'
+# JS version of the _on_js_callback function
+var _callback:JavaScriptObject
+
+# snippet of code that handles stuff on the javascript side of things
+const js_snippet := """
+if (window.html5filedialoginterface == null) {
+ window.html5filedialoginterface = {
+ callbacks: {},
+ buffers: {},
+
+ register_dialog: function(id, FileMode, filter, callback) {
+ let root = document.getElementsByTagName('body')[0];
+ let input = document.createElement("input");
+
+ input.setAttribute('id','html5filedialog-'+id);
+ input.setAttribute('type','file');
+ input.setAttribute('style','display: none;');
+ input.setAttribute('data-id', ''+id);
+
+ if (FileMode == "OPEN_DIRECTORY" || FileMode == "OPEN_DIRECTORIES") {
+ input.setAttribute("directory", 'true');
+ input.setAttribute('webkitdirectory','true');
+ }
+
+ if (FileMode == "OPEN_DIRECTORIES" || FileMode == "OPEN_FILES") {
+ input.setAttribute('multiple','true');
+ }
+
+ if (filter != "") {
+ input.setAttribute('accept',filter)
+ }
+
+ input.addEventListener('change', window.html5filedialoginterface.onchanged)
+ window.html5filedialoginterface.callbacks[''+id] = callback;
+ root.appendChild(input);
+
+ console.log("HTML5FileDialog: registered dialog "+id);
+
+ return id;
+ },
+
+ deregister_dialog: function(id) {
+ let input = document.getElementById('html5filedialog-'+id);
+ if (input != null) {
+ console.log("HTML5FileDialog: deregistering "+id);
+ input.remove();
+ } else {
+ console.log("HTML5FileDialog: ERROR, attempted to deregister non-existing dialog "+id);
+ }
+ },
+
+ prompt_dialog: function(id) {
+ console.log("HTML5FileDialog: opening dialog for "+id);
+ let input = document.getElementById('html5filedialog-'+id);
+ input.click();
+ },
+
+ onchanged: function(event) {
+ let id = event.target.getAttribute('data-id')+'';
+ console.log("HTML5FileDialog: change event for "+id);
+
+ let out = [];
+ for (const file of event.target.files) {
+ out.push(file);
+ }
+
+ let callback = window.html5filedialoginterface.callbacks[id]
+ callback(...out);
+ }
+ }
+}
+"""
+
+
+
+
+func _ready():
+ if Engine.is_editor_hint():
+ update_configuration_warnings()
+
+ if is_web:
+ JavaScriptBridge.eval(js_snippet)
+ interface = JavaScriptBridge.get_interface('html5filedialoginterface')
+
+ _callback = JavaScriptBridge.create_callback(_on_js_callback)
+ interface.register_dialog(get_instance_id(), FileMode.keys()[file_mode], ','.join(filters), _callback)
+
+## Show the dialog
+func show():
+ assert(is_web, "HTML5FileDialog node only works in web exports!")
+ assert(is_node_ready(), "HTML5FileDialog cannot be shown before its _ready! did you forget to call add_child()?")
+ assert(interface != null, "HTML5FileDialog JS interface is null! This is probably a bug, please report it at https://gitlab.com/mocchapi/godot-4-html5-file-dialogs/-/issues")
+ interface.prompt_dialog(get_instance_id())
+ shown.emit()
+
+# Callback triggered from js when a file is uploaded
+func _on_js_callback(files):
+ var out:Array[HTML5FileHandle] = []
+ for file in files:
+ out.append(HTML5FileHandle.new(file))
+
+ match file_mode:
+ FileMode.OPEN_FILE:
+ file_selected.emit(out[0])
+ FileMode.OPEN_FILES:
+ files_selected.emit(out)
+ FileMode.OPEN_DIRECTORY:
+ dir_selected.emit(out)
+ FileMode.OPEN_DIRECTORIES:
+ dirs_selected.emit(out)
+
+ anything_selected.emit(out)
+
+func _get_configuration_warnings()->PackedStringArray:
+ var out:Array = []
+ if OS.get_name() != 'Web':
+ out.append("This node only works on web exports! Calling its functions in a regular build will result in failed assertions")
+ out.append("This node's attributes must not be changed after _ready() is called")
+ return out
+
+func _notification(what):
+ if what == NOTIFICATION_PREDELETE:
+ if interface:
+ # Removes the <input> element when this node is freed
+ interface.deregister_dialog(get_instance_id())
--- /dev/null
+uid://c82il5ecn7p8d
--- /dev/null
+extends RefCounted
+class_name HTML5FileHandle
+## File handle for files uploaded through the HTML5FileDialog node [br]
+## Used for reading the contents of files
+
+## The text file contents are done loading. [br]
+## Triggers sometime after `as_text()` [br]
+## Alternatively, you can use `await object.as_text()`
+signal text_loaded(text:String)
+## The binary file contents are done reading [br]
+## Triggers sometime after `as_buffer()` [br]
+## Alternatively, you can use `await object.as_buffer()`
+signal buffer_loaded(buffer:PackedByteArray)
+
+## Filepath
+@export var path:String
+## Filename
+@export var name:String
+## Unix epoch
+@export var last_modified:float
+
+## Wether or not to cache the contents when as_text() or as_bufffer() was called, for use in subsequent calls.
+@export var cache_contents:bool = true
+
+var js_file:JavaScriptObject
+
+var _js_text_callback:JavaScriptObject
+var _js_buffer_callback:JavaScriptObject
+
+var _contents_text:String
+var _contents_buffer:PackedByteArray
+
+func _init(JSFile:JavaScriptObject):
+ assert(OS.get_name() == 'Web', "HTML5FileHandles can only be used in a web export, and should only be created by a HTML5FileDialog node.")
+ js_file = JSFile
+
+ name = js_file.name
+ last_modified = js_file.lastModified
+ path = js_file.webkitRelativePath
+
+## Returns the file's contents as a utf8 string [br]
+## Async function! Await this, or connect to the `text_loaded` signal.
+func as_text()->String:
+ if cache_contents and _contents_text != '':
+ return _contents_text
+ if _js_text_callback == null:
+ _js_text_callback = JavaScriptBridge.create_callback(_text_callback)
+ js_file.text().then(_js_text_callback)
+
+ return await text_loaded
+
+## Returns the file's contents as a PackedByteArray [br]
+## Async function! Await this, or connect to the `buffer_loaded` signal.
+func as_buffer()->PackedByteArray:
+ if not _contents_buffer.is_empty():
+ return _contents_buffer
+ if _js_buffer_callback == null:
+ _js_buffer_callback = JavaScriptBridge.create_callback(_buffer_callback)
+ js_file.arrayBuffer().then(_js_buffer_callback)
+ return await buffer_loaded
+
+func _text_callback(args):
+ if cache_contents:
+ _contents_text = args[0]
+ text_loaded.emit(args[0])
+
+func _buffer_callback(args):
+ # NOTE: EVIL WORKAROUND
+ # for the life of me i cannot find any information on converting a JavaScriptObject (ArrayBuffer)
+ # into its godot counterpart (PackedByteArray)
+ #
+ # So instead we write the buffer to a temporary variable on JS' `window`
+ # And then read it back through eval() immediately, which for some reason does perform the conversion
+ # (and then remove the variable again)
+ var out:PackedByteArray
+ var janky_varname = "HTML5FileHandle_"+str(get_instance_id()).replace('-','_')+'_buffer'
+
+ var window = JavaScriptBridge.get_interface("window")
+ window[janky_varname] = args[0]
+ out = JavaScriptBridge.eval("window."+janky_varname)
+ window[janky_varname] = null
+
+ if cache_contents:
+ _contents_buffer = out
+
+ buffer_loaded.emit(out)
--- /dev/null
+uid://bwxbc6s8c51t1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c35mo7m8i7gki"
+path="res://.godot/imported/icon.png-bb42749800b6659b138001b0989a72fa.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://addons/html5_file_dialog/icon.png"
+dest_files=["res://.godot/imported/icon.png-bb42749800b6659b138001b0989a72fa.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+<svg height="16" viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M3 1a2 2 0 0 0-2 2v1h14V3a2 2 0 0 0-2-2zm9 1h1v1h-1zM1 5v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V5zm3 2h3c1 0 1 2 2 2h3v4H4z" fill="#cd3e78"/></svg>
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://wnjgsc2te31c"
+path="res://.godot/imported/icon.svg-19fe3bf96392333bbd22eb3f905045e1.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://addons/html5_file_dialog/icon.svg"
+dest_files=["res://.godot/imported/icon.svg-19fe3bf96392333bbd22eb3f905045e1.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
+svg/scale=1.0
+editor/scale_with_editor_scale=false
+editor/convert_colors_with_editor_theme=false
--- /dev/null
+[plugin]
+
+name="HTML5 File Dialog"
+description="Adds a read-only native HTML5 filesystem dialog node \"HTML5FileDialog\" which prompts the user to upload file(s) or (multiple) directories.
+
+The signals return (arrays of) \"HTML5FileHandle\" objects which wrap around javascript File objects, which are used to read the contents of selected files."
+author="(lis)anne"
+version="1.1"
+script="plugin.gd"
--- /dev/null
+@tool
+extends EditorPlugin
+
+func _enter_tree():
+ pass
+
+func _exit_tree():
+ pass
--- /dev/null
+uid://dij36r13jy4bl
--- /dev/null
+[gd_scene format=3 uid="uid://boq3ul26kjggj"]
+
+[node name="Node2D" type="Control"]
+layout_mode = 3
+anchors_preset = 0
+size_flags_horizontal = 4
+size_flags_vertical = 4
+
+[node name="HSplitContainer" type="HSplitContainer" parent="."]
+layout_mode = 0
+offset_right = 680.0
+offset_bottom = 416.0
+
+[node name="ItemList" type="ItemList" parent="HSplitContainer"]
+layout_mode = 2
+same_column_width = true
--- /dev/null
+[InternetShortcut]
+URL=http://www.kenney.nl/
\ No newline at end of file
--- /dev/null
+
+
+ Animal Pack Redux
+
+ by Kenney Vleugels (Kenney.nl)
+
+ ------------------------------
+
+ License (Creative Commons Zero, CC0)
+ http://creativecommons.org/publicdomain/zero/1.0/
+
+ You may use these assets in personal and commercial projects.
+ Credit (Kenney or www.kenney.nl) would be nice but is not mandatory.
+
+ ------------------------------
+
+ Donate: http://support.kenney.nl
+ Request: http://request.kenney.nl
+
+ Follow on Twitter for updates: @KenneyNL (www.twitter.com/kenneynl)
\ No newline at end of file
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dj54qbutbex5y"
+path="res://.godot/imported/bear.png-32e29bbcf30b1f798c9c2006a48907f2.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round (outline)/bear.png"
+dest_files=["res://.godot/imported/bear.png-32e29bbcf30b1f798c9c2006a48907f2.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b1sflhry6ukmf"
+path="res://.godot/imported/buffalo.png-a58a3fe11f8dffc1daa748bbe57ba2b9.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round (outline)/buffalo.png"
+dest_files=["res://.godot/imported/buffalo.png-a58a3fe11f8dffc1daa748bbe57ba2b9.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://d0gwohg7v5v28"
+path="res://.godot/imported/chick.png-529d5d49a7d792e7ffff0f492648f800.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round (outline)/chick.png"
+dest_files=["res://.godot/imported/chick.png-529d5d49a7d792e7ffff0f492648f800.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://basi8uo6t1hhc"
+path="res://.godot/imported/chicken.png-e81913c5132a4afa41c5bed0e531e650.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round (outline)/chicken.png"
+dest_files=["res://.godot/imported/chicken.png-e81913c5132a4afa41c5bed0e531e650.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://ccyfmic4pss8p"
+path="res://.godot/imported/cow.png-bf5aedbaa479e5f2a9176555a6f7e38b.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round (outline)/cow.png"
+dest_files=["res://.godot/imported/cow.png-bf5aedbaa479e5f2a9176555a6f7e38b.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b73winn2car1j"
+path="res://.godot/imported/crocodile.png-c935eccec798969ef13ffaa026beac81.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round (outline)/crocodile.png"
+dest_files=["res://.godot/imported/crocodile.png-c935eccec798969ef13ffaa026beac81.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://0grc2l0wp4dw"
+path="res://.godot/imported/dog.png-71e34352d86195106d1176b6e9711b45.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round (outline)/dog.png"
+dest_files=["res://.godot/imported/dog.png-71e34352d86195106d1176b6e9711b45.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bpr1ko7j2g612"
+path="res://.godot/imported/duck.png-61d5e4c1ee3650fc062461d7b3da9df7.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round (outline)/duck.png"
+dest_files=["res://.godot/imported/duck.png-61d5e4c1ee3650fc062461d7b3da9df7.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b2y60jgvwmmxm"
+path="res://.godot/imported/elephant.png-ed7dca769b6a4022965f70a685223342.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round (outline)/elephant.png"
+dest_files=["res://.godot/imported/elephant.png-ed7dca769b6a4022965f70a685223342.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cg5gdo4w32uj7"
+path="res://.godot/imported/frog.png-1f23ff35c48c2a758482e09a6c0bbff0.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round (outline)/frog.png"
+dest_files=["res://.godot/imported/frog.png-1f23ff35c48c2a758482e09a6c0bbff0.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cfn8ujddwdd55"
+path="res://.godot/imported/giraffe.png-d223b0c30c62204dff390243d4af3f52.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round (outline)/giraffe.png"
+dest_files=["res://.godot/imported/giraffe.png-d223b0c30c62204dff390243d4af3f52.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://1blyuxa1bbux"
+path="res://.godot/imported/goat.png-14922509d4072411eb37a40519ece336.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round (outline)/goat.png"
+dest_files=["res://.godot/imported/goat.png-14922509d4072411eb37a40519ece336.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dywc4el3kd4il"
+path="res://.godot/imported/gorilla.png-16558c4bb5da3bd7005ec61daa33e30c.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round (outline)/gorilla.png"
+dest_files=["res://.godot/imported/gorilla.png-16558c4bb5da3bd7005ec61daa33e30c.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://051xc3te2v7b"
+path="res://.godot/imported/hippo.png-12a8b6f0ed26573439c7432d4e6b6897.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round (outline)/hippo.png"
+dest_files=["res://.godot/imported/hippo.png-12a8b6f0ed26573439c7432d4e6b6897.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bynjjs21hnn74"
+path="res://.godot/imported/horse.png-577b26fb21a171d335a486d5a69b5b81.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round (outline)/horse.png"
+dest_files=["res://.godot/imported/horse.png-577b26fb21a171d335a486d5a69b5b81.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b27iy5r37xp24"
+path="res://.godot/imported/monkey.png-334b77be7c7c439cf8036edf2599e36a.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round (outline)/monkey.png"
+dest_files=["res://.godot/imported/monkey.png-334b77be7c7c439cf8036edf2599e36a.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c6x42yfotud6q"
+path="res://.godot/imported/moose.png-e2065e1b6912b228d620b7ca1f4c2484.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round (outline)/moose.png"
+dest_files=["res://.godot/imported/moose.png-e2065e1b6912b228d620b7ca1f4c2484.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b0heob5iexo0e"
+path="res://.godot/imported/narwhal.png-193561aa160a4196c30ae36d8fe33357.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round (outline)/narwhal.png"
+dest_files=["res://.godot/imported/narwhal.png-193561aa160a4196c30ae36d8fe33357.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dqkvlbfuc41y"
+path="res://.godot/imported/owl.png-5f88d550313f83ea27d13671e7f0ade2.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round (outline)/owl.png"
+dest_files=["res://.godot/imported/owl.png-5f88d550313f83ea27d13671e7f0ade2.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://mbt8wk67rss3"
+path="res://.godot/imported/panda.png-036a96c9ffaaa96c2cc2d61193fcce8c.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round (outline)/panda.png"
+dest_files=["res://.godot/imported/panda.png-036a96c9ffaaa96c2cc2d61193fcce8c.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://baleb32vy72vn"
+path="res://.godot/imported/parrot.png-008a9089af382cc6b0afafa7eff31e5b.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round (outline)/parrot.png"
+dest_files=["res://.godot/imported/parrot.png-008a9089af382cc6b0afafa7eff31e5b.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cat8jgovvafxu"
+path="res://.godot/imported/penguin.png-2d1d51b24f22202b2ab8eca3bfa8a7d3.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round (outline)/penguin.png"
+dest_files=["res://.godot/imported/penguin.png-2d1d51b24f22202b2ab8eca3bfa8a7d3.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://d3y58i557j583"
+path="res://.godot/imported/pig.png-4173db606f88a441e106578f249bea2a.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round (outline)/pig.png"
+dest_files=["res://.godot/imported/pig.png-4173db606f88a441e106578f249bea2a.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bnya70xxfl56g"
+path="res://.godot/imported/rabbit.png-b166653e6341913f38efef357c1dc4cf.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round (outline)/rabbit.png"
+dest_files=["res://.godot/imported/rabbit.png-b166653e6341913f38efef357c1dc4cf.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://rc8wp2j8t2b6"
+path="res://.godot/imported/rhino.png-87b68d3fb9b08927c4450d332eebf68d.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round (outline)/rhino.png"
+dest_files=["res://.godot/imported/rhino.png-87b68d3fb9b08927c4450d332eebf68d.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cbbybdvctlbur"
+path="res://.godot/imported/sloth.png-6987f602ddfb4cc184738c8190eded45.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round (outline)/sloth.png"
+dest_files=["res://.godot/imported/sloth.png-6987f602ddfb4cc184738c8190eded45.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://lq5767t4v3g0"
+path="res://.godot/imported/snake.png-2b258c86d21cc62c697db7a9b03c77ca.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round (outline)/snake.png"
+dest_files=["res://.godot/imported/snake.png-2b258c86d21cc62c697db7a9b03c77ca.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dull7ngi3pis4"
+path="res://.godot/imported/walrus.png-86d5f478f4ef9b5a88c8bb092c9352da.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round (outline)/walrus.png"
+dest_files=["res://.godot/imported/walrus.png-86d5f478f4ef9b5a88c8bb092c9352da.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dljlij003mrm0"
+path="res://.godot/imported/whale.png-59c54d20c5d045a3943532855d553a9a.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round (outline)/whale.png"
+dest_files=["res://.godot/imported/whale.png-59c54d20c5d045a3943532855d553a9a.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b2fac8r1h56tl"
+path="res://.godot/imported/zebra.png-00ca2d4de05024e2bcb17aaa814b3241.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round (outline)/zebra.png"
+dest_files=["res://.godot/imported/zebra.png-00ca2d4de05024e2bcb17aaa814b3241.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bra2bhcgnxhq7"
+path="res://.godot/imported/bear.png-dfb5c6b0a8b484b82417c5437dd2eba9.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details (outline)/bear.png"
+dest_files=["res://.godot/imported/bear.png-dfb5c6b0a8b484b82417c5437dd2eba9.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bivdraiasfkhs"
+path="res://.godot/imported/buffalo.png-5a6611b01567c4a459e4c05d2f00e898.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details (outline)/buffalo.png"
+dest_files=["res://.godot/imported/buffalo.png-5a6611b01567c4a459e4c05d2f00e898.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bv0clkd4aj4t2"
+path="res://.godot/imported/chick.png-e52f4c124fa61ba572149146ce730b1a.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details (outline)/chick.png"
+dest_files=["res://.godot/imported/chick.png-e52f4c124fa61ba572149146ce730b1a.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b0y3lemdeiom2"
+path="res://.godot/imported/chicken.png-73be5cdee3ddbc66e41d3a9e94e09fc1.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details (outline)/chicken.png"
+dest_files=["res://.godot/imported/chicken.png-73be5cdee3ddbc66e41d3a9e94e09fc1.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://d1bpyy843shjn"
+path="res://.godot/imported/cow.png-c229f067a16757227d80867ee6cca90a.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details (outline)/cow.png"
+dest_files=["res://.godot/imported/cow.png-c229f067a16757227d80867ee6cca90a.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c8pqxybwsuaax"
+path="res://.godot/imported/crocodile.png-86dd1291cb92fdc2505fb34631bf3a27.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details (outline)/crocodile.png"
+dest_files=["res://.godot/imported/crocodile.png-86dd1291cb92fdc2505fb34631bf3a27.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dwhv8hsohq6eh"
+path="res://.godot/imported/dog.png-38904dc18299c28ada0e69306a4daea0.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details (outline)/dog.png"
+dest_files=["res://.godot/imported/dog.png-38904dc18299c28ada0e69306a4daea0.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://wqg7lpsjaxlo"
+path="res://.godot/imported/duck.png-8a07c467df45c82242a6b21452507efe.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details (outline)/duck.png"
+dest_files=["res://.godot/imported/duck.png-8a07c467df45c82242a6b21452507efe.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bk6ua4qonglo1"
+path="res://.godot/imported/elephant.png-9a9a166a4b79ae120b63e923feb3ff98.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details (outline)/elephant.png"
+dest_files=["res://.godot/imported/elephant.png-9a9a166a4b79ae120b63e923feb3ff98.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://yrowpgqdspt7"
+path="res://.godot/imported/frog.png-9681b341a4e0768e012e777a0099d748.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details (outline)/frog.png"
+dest_files=["res://.godot/imported/frog.png-9681b341a4e0768e012e777a0099d748.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cyitb88yre8ks"
+path="res://.godot/imported/giraffe.png-f95e098e8383cb33206a8a789b877314.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details (outline)/giraffe.png"
+dest_files=["res://.godot/imported/giraffe.png-f95e098e8383cb33206a8a789b877314.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://20h1638a6v25"
+path="res://.godot/imported/goat.png-4ee9a42bea60a8bfb124bb573ce0c288.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details (outline)/goat.png"
+dest_files=["res://.godot/imported/goat.png-4ee9a42bea60a8bfb124bb573ce0c288.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c7iojxgtwmdg3"
+path="res://.godot/imported/gorilla.png-3d4ddfe2b9165830bc3290d7e72ad9db.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details (outline)/gorilla.png"
+dest_files=["res://.godot/imported/gorilla.png-3d4ddfe2b9165830bc3290d7e72ad9db.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://btjholymut3jg"
+path="res://.godot/imported/hippo.png-42b87fb22dab2f4967b497fe7911aacb.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details (outline)/hippo.png"
+dest_files=["res://.godot/imported/hippo.png-42b87fb22dab2f4967b497fe7911aacb.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dd48fjcki60je"
+path="res://.godot/imported/horse.png-bb97434602588f4ecc0bd05dbb7abc1a.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details (outline)/horse.png"
+dest_files=["res://.godot/imported/horse.png-bb97434602588f4ecc0bd05dbb7abc1a.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://d0k0kk42t3tpt"
+path="res://.godot/imported/monkey.png-25ee60d117eecf307c9c17147926bc38.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details (outline)/monkey.png"
+dest_files=["res://.godot/imported/monkey.png-25ee60d117eecf307c9c17147926bc38.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://udxetehkienh"
+path="res://.godot/imported/moose.png-bff8f888a8a1b03a9b2b008cf92a2b10.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details (outline)/moose.png"
+dest_files=["res://.godot/imported/moose.png-bff8f888a8a1b03a9b2b008cf92a2b10.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://de6phn01a4l1t"
+path="res://.godot/imported/narwhal.png-d3b28dddeb8986f277bcbdb3ba194f79.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details (outline)/narwhal.png"
+dest_files=["res://.godot/imported/narwhal.png-d3b28dddeb8986f277bcbdb3ba194f79.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dooqvwu78vmt4"
+path="res://.godot/imported/owl.png-c4e9fa077110df626d22d509dcf0aa47.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details (outline)/owl.png"
+dest_files=["res://.godot/imported/owl.png-c4e9fa077110df626d22d509dcf0aa47.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bi5144salwtkp"
+path="res://.godot/imported/panda.png-7a93db0c110b6f7b9bea218648926160.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details (outline)/panda.png"
+dest_files=["res://.godot/imported/panda.png-7a93db0c110b6f7b9bea218648926160.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://timbocmql2bk"
+path="res://.godot/imported/parrot.png-2c3dc1ee8e50693d5460944e289267a6.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details (outline)/parrot.png"
+dest_files=["res://.godot/imported/parrot.png-2c3dc1ee8e50693d5460944e289267a6.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cl7snebq2a6eb"
+path="res://.godot/imported/penguin.png-913be94d35100ca6729e790fa71d0eb9.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details (outline)/penguin.png"
+dest_files=["res://.godot/imported/penguin.png-913be94d35100ca6729e790fa71d0eb9.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dng8f23ruummx"
+path="res://.godot/imported/pig.png-adaa32f8d5f03306b87ca53f2d2f553c.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details (outline)/pig.png"
+dest_files=["res://.godot/imported/pig.png-adaa32f8d5f03306b87ca53f2d2f553c.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b0hcbrsaivo3k"
+path="res://.godot/imported/rabbit.png-17c424bf56dbaf9e8154b0bee10ee641.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details (outline)/rabbit.png"
+dest_files=["res://.godot/imported/rabbit.png-17c424bf56dbaf9e8154b0bee10ee641.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://vvmgidvwssyv"
+path="res://.godot/imported/rhino.png-ca024055788565ffb493f26f7d3462fb.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details (outline)/rhino.png"
+dest_files=["res://.godot/imported/rhino.png-ca024055788565ffb493f26f7d3462fb.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://ce03sn3bhgma1"
+path="res://.godot/imported/sloth.png-8d4fe3de2df27ef1b6e9d3f5f09cbadc.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details (outline)/sloth.png"
+dest_files=["res://.godot/imported/sloth.png-8d4fe3de2df27ef1b6e9d3f5f09cbadc.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cvtmsyqbapnti"
+path="res://.godot/imported/snake.png-dc89d2769f95c7c2de4209ec51265977.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details (outline)/snake.png"
+dest_files=["res://.godot/imported/snake.png-dc89d2769f95c7c2de4209ec51265977.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cj5tas78ksunc"
+path="res://.godot/imported/walrus.png-36eda61f845680fb1e197da78d9d2d40.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details (outline)/walrus.png"
+dest_files=["res://.godot/imported/walrus.png-36eda61f845680fb1e197da78d9d2d40.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bbkaf65dgcwdh"
+path="res://.godot/imported/whale.png-c0e9d32576e6751c84609e0d013ad83f.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details (outline)/whale.png"
+dest_files=["res://.godot/imported/whale.png-c0e9d32576e6751c84609e0d013ad83f.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dhxa8jg5u0w6e"
+path="res://.godot/imported/zebra.png-ec75dd759e6117b3d5b1c390d0d62465.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details (outline)/zebra.png"
+dest_files=["res://.godot/imported/zebra.png-ec75dd759e6117b3d5b1c390d0d62465.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c5g572oxu53ug"
+path="res://.godot/imported/bear.png-a43b1e8b91d2befc19454f33c0137cef.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details/bear.png"
+dest_files=["res://.godot/imported/bear.png-a43b1e8b91d2befc19454f33c0137cef.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b8uv314bt3x"
+path="res://.godot/imported/buffalo.png-39c16b19e2a7bf54c5170574fb7175ba.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details/buffalo.png"
+dest_files=["res://.godot/imported/buffalo.png-39c16b19e2a7bf54c5170574fb7175ba.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://yav2q1ul7bxa"
+path="res://.godot/imported/chick.png-1e79b34fa12cc1ac0b30e178beadfc84.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details/chick.png"
+dest_files=["res://.godot/imported/chick.png-1e79b34fa12cc1ac0b30e178beadfc84.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://d08v6826l5ec0"
+path="res://.godot/imported/chicken.png-7a4d75224a87e69f1a311bd9eed5478a.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details/chicken.png"
+dest_files=["res://.godot/imported/chicken.png-7a4d75224a87e69f1a311bd9eed5478a.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bpueakd4cen8b"
+path="res://.godot/imported/cow.png-938a59336b9706465822a7f6ed989475.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details/cow.png"
+dest_files=["res://.godot/imported/cow.png-938a59336b9706465822a7f6ed989475.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://tmy83l86x6lj"
+path="res://.godot/imported/crocodile.png-e364fdd228d2dbf13d5b4d542e9e8cc8.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details/crocodile.png"
+dest_files=["res://.godot/imported/crocodile.png-e364fdd228d2dbf13d5b4d542e9e8cc8.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dxp7tvafmra6g"
+path="res://.godot/imported/dog.png-e4a39a47a55ee1b2c6ec97c52f816d99.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details/dog.png"
+dest_files=["res://.godot/imported/dog.png-e4a39a47a55ee1b2c6ec97c52f816d99.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://boud2ym1c45jd"
+path="res://.godot/imported/duck.png-01f809a99c810d01798e741959ae21ee.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details/duck.png"
+dest_files=["res://.godot/imported/duck.png-01f809a99c810d01798e741959ae21ee.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://eum0l1rrgjn7"
+path="res://.godot/imported/elephant.png-4ae9109c8b8c518289d133edf0fdebac.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details/elephant.png"
+dest_files=["res://.godot/imported/elephant.png-4ae9109c8b8c518289d133edf0fdebac.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://df7b2m5vva54h"
+path="res://.godot/imported/frog.png-e1b868741eb0450e0e89a20bc1be5d79.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details/frog.png"
+dest_files=["res://.godot/imported/frog.png-e1b868741eb0450e0e89a20bc1be5d79.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bpofx4nu3cu76"
+path="res://.godot/imported/giraffe.png-a0c54bf51af4dd66c1da30e869a75b6d.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details/giraffe.png"
+dest_files=["res://.godot/imported/giraffe.png-a0c54bf51af4dd66c1da30e869a75b6d.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b2yscvyrcdg6h"
+path="res://.godot/imported/goat.png-26e7c564994dee90b102973d8ce77fe5.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details/goat.png"
+dest_files=["res://.godot/imported/goat.png-26e7c564994dee90b102973d8ce77fe5.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://xubluw0ynilm"
+path="res://.godot/imported/gorilla.png-2e94bb0033d072195b3bd59fe715a06e.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details/gorilla.png"
+dest_files=["res://.godot/imported/gorilla.png-2e94bb0033d072195b3bd59fe715a06e.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cv2tlwhobgdi1"
+path="res://.godot/imported/hippo.png-80a1cdf960a2cb0f7311e73418b618f4.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details/hippo.png"
+dest_files=["res://.godot/imported/hippo.png-80a1cdf960a2cb0f7311e73418b618f4.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dkbnk0yr61bge"
+path="res://.godot/imported/horse.png-c69da4bca7dc3ae6429a6a83c42b8756.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details/horse.png"
+dest_files=["res://.godot/imported/horse.png-c69da4bca7dc3ae6429a6a83c42b8756.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://im7jfwmy5ngo"
+path="res://.godot/imported/monkey.png-3961f4281ea3d19c9d6d84b318cdca21.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details/monkey.png"
+dest_files=["res://.godot/imported/monkey.png-3961f4281ea3d19c9d6d84b318cdca21.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cbay2ldshgamc"
+path="res://.godot/imported/moose.png-8734ffe8cee9857bd02d4ec74e220c42.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details/moose.png"
+dest_files=["res://.godot/imported/moose.png-8734ffe8cee9857bd02d4ec74e220c42.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://ctnvowlwwu8c1"
+path="res://.godot/imported/narwhal.png-4b59f2d07dad2c7441d313908ec76432.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details/narwhal.png"
+dest_files=["res://.godot/imported/narwhal.png-4b59f2d07dad2c7441d313908ec76432.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c5agwm45x83xx"
+path="res://.godot/imported/owl.png-272c3bdf6d4cf3dc8b0c38135155de25.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details/owl.png"
+dest_files=["res://.godot/imported/owl.png-272c3bdf6d4cf3dc8b0c38135155de25.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cf6e45r5w1jh2"
+path="res://.godot/imported/panda.png-78ee265e16c548294197ae170bc8bbbe.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details/panda.png"
+dest_files=["res://.godot/imported/panda.png-78ee265e16c548294197ae170bc8bbbe.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bm144yaiu77v2"
+path="res://.godot/imported/parrot.png-7b75dd46338058f394841fa6565ff49c.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details/parrot.png"
+dest_files=["res://.godot/imported/parrot.png-7b75dd46338058f394841fa6565ff49c.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://scpkhm1bnb0w"
+path="res://.godot/imported/penguin.png-2ab2cf0931998d0f00f7ad9024e6b26f.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details/penguin.png"
+dest_files=["res://.godot/imported/penguin.png-2ab2cf0931998d0f00f7ad9024e6b26f.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bv1mulrg0ln4o"
+path="res://.godot/imported/pig.png-248abe3becb13ffc32adc950c4942292.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details/pig.png"
+dest_files=["res://.godot/imported/pig.png-248abe3becb13ffc32adc950c4942292.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c0svgafxfhqch"
+path="res://.godot/imported/rabbit.png-4ef9b015d8fec1e840638bab15fde5e5.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details/rabbit.png"
+dest_files=["res://.godot/imported/rabbit.png-4ef9b015d8fec1e840638bab15fde5e5.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://kokkrm4cwbki"
+path="res://.godot/imported/rhino.png-aa524f0e9c10a4416679d371933665bc.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details/rhino.png"
+dest_files=["res://.godot/imported/rhino.png-aa524f0e9c10a4416679d371933665bc.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cam03lhy08qij"
+path="res://.godot/imported/sloth.png-7eb1bbe0df3b65beae4dc8cf3e6d2580.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details/sloth.png"
+dest_files=["res://.godot/imported/sloth.png-7eb1bbe0df3b65beae4dc8cf3e6d2580.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://k226ib3l40l4"
+path="res://.godot/imported/snake.png-0c9685408fe7661b5d0b43a0d32ca097.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details/snake.png"
+dest_files=["res://.godot/imported/snake.png-0c9685408fe7661b5d0b43a0d32ca097.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://btn5npbj5cvqq"
+path="res://.godot/imported/walrus.png-8d1937905f6a1fbc6fae484c882e422b.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details/walrus.png"
+dest_files=["res://.godot/imported/walrus.png-8d1937905f6a1fbc6fae484c882e422b.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://w10ew61l0ghp"
+path="res://.godot/imported/whale.png-a8722ef840256ce024b1d288d1f6aa0c.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details/whale.png"
+dest_files=["res://.godot/imported/whale.png-a8722ef840256ce024b1d288d1f6aa0c.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://pa2yjf74wot1"
+path="res://.godot/imported/zebra.png-af906f0ec611771c9298e4b4660f1863.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round without details/zebra.png"
+dest_files=["res://.godot/imported/zebra.png-af906f0ec611771c9298e4b4660f1863.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dimn5v7uh8bxu"
+path="res://.godot/imported/bear.png-6ce05334a60643c40a79cf2e4209a401.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round/bear.png"
+dest_files=["res://.godot/imported/bear.png-6ce05334a60643c40a79cf2e4209a401.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c3o4whie14yeo"
+path="res://.godot/imported/buffalo.png-87c41a0ab8705dce0a4c4c26e6861146.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round/buffalo.png"
+dest_files=["res://.godot/imported/buffalo.png-87c41a0ab8705dce0a4c4c26e6861146.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://triyhbbmvx4l"
+path="res://.godot/imported/chick.png-4060ddef25d3f20b950508d4fd626f07.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round/chick.png"
+dest_files=["res://.godot/imported/chick.png-4060ddef25d3f20b950508d4fd626f07.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cuvjjbeg6i7ny"
+path="res://.godot/imported/chicken.png-44a8e77e566be6815501204a208a8e43.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round/chicken.png"
+dest_files=["res://.godot/imported/chicken.png-44a8e77e566be6815501204a208a8e43.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cw0n0emqb8wva"
+path="res://.godot/imported/cow.png-c36ef8bc15a81b90223294cdc5b31bba.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round/cow.png"
+dest_files=["res://.godot/imported/cow.png-c36ef8bc15a81b90223294cdc5b31bba.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bmem5hihbrvfo"
+path="res://.godot/imported/crocodile.png-8119066f031b3986e4814929f2015ea9.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round/crocodile.png"
+dest_files=["res://.godot/imported/crocodile.png-8119066f031b3986e4814929f2015ea9.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://d4lt3bs025cnk"
+path="res://.godot/imported/dog.png-657190f8ad97e5bfb0da27e752bac763.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round/dog.png"
+dest_files=["res://.godot/imported/dog.png-657190f8ad97e5bfb0da27e752bac763.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cxqiw2tacgrqp"
+path="res://.godot/imported/duck.png-7f55b7c4f75e04edc3053dab395303b1.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round/duck.png"
+dest_files=["res://.godot/imported/duck.png-7f55b7c4f75e04edc3053dab395303b1.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c0gwqqmk7pqr"
+path="res://.godot/imported/elephant.png-ca14f7f4c9e41aa008815ad4addf6f37.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round/elephant.png"
+dest_files=["res://.godot/imported/elephant.png-ca14f7f4c9e41aa008815ad4addf6f37.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c3okqhdkh20m1"
+path="res://.godot/imported/frog.png-b4222ff58c846b470e2a635144f24957.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round/frog.png"
+dest_files=["res://.godot/imported/frog.png-b4222ff58c846b470e2a635144f24957.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cyu53b5wngako"
+path="res://.godot/imported/giraffe.png-25fcfae3ec276581bd27cd7e6a0075e8.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round/giraffe.png"
+dest_files=["res://.godot/imported/giraffe.png-25fcfae3ec276581bd27cd7e6a0075e8.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://d1k6227wxfrlx"
+path="res://.godot/imported/goat.png-c2e99c9029e4897bfb083bfbca018481.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round/goat.png"
+dest_files=["res://.godot/imported/goat.png-c2e99c9029e4897bfb083bfbca018481.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://vjovh1f34a3d"
+path="res://.godot/imported/gorilla.png-6701a597e35a98cd75a29c1ca6816462.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round/gorilla.png"
+dest_files=["res://.godot/imported/gorilla.png-6701a597e35a98cd75a29c1ca6816462.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cwrimpy31s0ft"
+path="res://.godot/imported/hippo.png-90a75fc49e20d587ff6a9cd4f65185a3.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round/hippo.png"
+dest_files=["res://.godot/imported/hippo.png-90a75fc49e20d587ff6a9cd4f65185a3.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cgl8wo5pelvpf"
+path="res://.godot/imported/horse.png-05f24f2ede772479908589be71f1a11f.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round/horse.png"
+dest_files=["res://.godot/imported/horse.png-05f24f2ede772479908589be71f1a11f.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dmc3hcu0mk4np"
+path="res://.godot/imported/monkey.png-1b8e72ee8e12dcc2a7808272ff58270a.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round/monkey.png"
+dest_files=["res://.godot/imported/monkey.png-1b8e72ee8e12dcc2a7808272ff58270a.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dh6kxwbkqvxbs"
+path="res://.godot/imported/moose.png-e73e6d8d70a5db8eb3d2f6e7c4655d5f.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round/moose.png"
+dest_files=["res://.godot/imported/moose.png-e73e6d8d70a5db8eb3d2f6e7c4655d5f.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cqsqpenga8x4b"
+path="res://.godot/imported/narwhal.png-459d08d988206f47a0d87a4a4e344658.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round/narwhal.png"
+dest_files=["res://.godot/imported/narwhal.png-459d08d988206f47a0d87a4a4e344658.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cjjt50y6lgunn"
+path="res://.godot/imported/owl.png-2ef1779796c31a740ba834641d665117.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round/owl.png"
+dest_files=["res://.godot/imported/owl.png-2ef1779796c31a740ba834641d665117.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b2qbe8ln7tsjl"
+path="res://.godot/imported/panda.png-df7062f0510d204bf3a0cb50addda446.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round/panda.png"
+dest_files=["res://.godot/imported/panda.png-df7062f0510d204bf3a0cb50addda446.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dboe0hqcc2qp3"
+path="res://.godot/imported/parrot.png-9bb8f5bb5ca8da629fdeac0080b24083.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round/parrot.png"
+dest_files=["res://.godot/imported/parrot.png-9bb8f5bb5ca8da629fdeac0080b24083.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cklcrfyyklt4x"
+path="res://.godot/imported/penguin.png-243869653c968874673cc074a66bf5ec.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round/penguin.png"
+dest_files=["res://.godot/imported/penguin.png-243869653c968874673cc074a66bf5ec.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dey1881dljnoa"
+path="res://.godot/imported/pig.png-8c0f9bfa9303ef64fdae8e71b62afe50.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round/pig.png"
+dest_files=["res://.godot/imported/pig.png-8c0f9bfa9303ef64fdae8e71b62afe50.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c12d5rcuboag5"
+path="res://.godot/imported/rabbit.png-a90eda46983903c57b6f451a8b78008d.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round/rabbit.png"
+dest_files=["res://.godot/imported/rabbit.png-a90eda46983903c57b6f451a8b78008d.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c8ndob0a651dc"
+path="res://.godot/imported/rhino.png-8f944c25d6268b30e8f94b87b0758b2a.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round/rhino.png"
+dest_files=["res://.godot/imported/rhino.png-8f944c25d6268b30e8f94b87b0758b2a.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c0t31bfox1lql"
+path="res://.godot/imported/sloth.png-04612b81e1af662e3ccd40c0e1967b6d.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round/sloth.png"
+dest_files=["res://.godot/imported/sloth.png-04612b81e1af662e3ccd40c0e1967b6d.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://jsv6bvamlp4o"
+path="res://.godot/imported/snake.png-2d3f91118e35b9b969b169da84bb28d0.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round/snake.png"
+dest_files=["res://.godot/imported/snake.png-2d3f91118e35b9b969b169da84bb28d0.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://ckuomahfi6gdd"
+path="res://.godot/imported/walrus.png-443ab882569c8158c5e85beab5738dc3.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round/walrus.png"
+dest_files=["res://.godot/imported/walrus.png-443ab882569c8158c5e85beab5738dc3.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dmuo0oefgjaik"
+path="res://.godot/imported/whale.png-61431a39496bdbde3b88b54bc1672d4a.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round/whale.png"
+dest_files=["res://.godot/imported/whale.png-61431a39496bdbde3b88b54bc1672d4a.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cpfelpwksv283"
+path="res://.godot/imported/zebra.png-72a178837bd45b2ff9c5d21ff8821f00.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Round/zebra.png"
+dest_files=["res://.godot/imported/zebra.png-72a178837bd45b2ff9c5d21ff8821f00.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dai2mi22flu7l"
+path="res://.godot/imported/bear.png-ebd3185026a31f3e2a1800b12d70625f.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square (outline)/bear.png"
+dest_files=["res://.godot/imported/bear.png-ebd3185026a31f3e2a1800b12d70625f.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://d0ytrfsuais7f"
+path="res://.godot/imported/buffalo.png-43e9a8cf873fa74babdb2d5692e06983.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square (outline)/buffalo.png"
+dest_files=["res://.godot/imported/buffalo.png-43e9a8cf873fa74babdb2d5692e06983.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bt46ympyol1qy"
+path="res://.godot/imported/chick.png-f52d971d340d204da35ea9b95c6d78ce.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square (outline)/chick.png"
+dest_files=["res://.godot/imported/chick.png-f52d971d340d204da35ea9b95c6d78ce.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://d1nhp5s1d88j0"
+path="res://.godot/imported/chicken.png-9288bfc75b09592072f8b44c40852a7e.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square (outline)/chicken.png"
+dest_files=["res://.godot/imported/chicken.png-9288bfc75b09592072f8b44c40852a7e.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://vs405mawrmr3"
+path="res://.godot/imported/cow.png-83ac60c914969fe1700be4db21c1828c.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square (outline)/cow.png"
+dest_files=["res://.godot/imported/cow.png-83ac60c914969fe1700be4db21c1828c.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cjvk6toru5low"
+path="res://.godot/imported/crocodile.png-87941e0cc3c3b071574b0cffcb0ee708.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square (outline)/crocodile.png"
+dest_files=["res://.godot/imported/crocodile.png-87941e0cc3c3b071574b0cffcb0ee708.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bnxxl6bcqeqho"
+path="res://.godot/imported/dog.png-673fe4ef5c5af055acfbebe1a940e715.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square (outline)/dog.png"
+dest_files=["res://.godot/imported/dog.png-673fe4ef5c5af055acfbebe1a940e715.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dd7cjpbvw5ixk"
+path="res://.godot/imported/duck.png-115275305e03e3651493b51190ecb418.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square (outline)/duck.png"
+dest_files=["res://.godot/imported/duck.png-115275305e03e3651493b51190ecb418.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c2am0pttq52fk"
+path="res://.godot/imported/elephant.png-0d2096537c124b609c94d9f695b3b4fa.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square (outline)/elephant.png"
+dest_files=["res://.godot/imported/elephant.png-0d2096537c124b609c94d9f695b3b4fa.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://d1mqtevic3vos"
+path="res://.godot/imported/frog.png-f69410a46b3566584ab57b648902bb0a.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square (outline)/frog.png"
+dest_files=["res://.godot/imported/frog.png-f69410a46b3566584ab57b648902bb0a.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cr14tqvgymf8j"
+path="res://.godot/imported/giraffe.png-33f13c426152dc4b1d843321bcddc17c.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square (outline)/giraffe.png"
+dest_files=["res://.godot/imported/giraffe.png-33f13c426152dc4b1d843321bcddc17c.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dwghihrixcjk0"
+path="res://.godot/imported/goat.png-f291358174497915db89346fdba0330a.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square (outline)/goat.png"
+dest_files=["res://.godot/imported/goat.png-f291358174497915db89346fdba0330a.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://ckxoofwflmhxr"
+path="res://.godot/imported/gorilla.png-85faea494c9aded29730e76f3bb07a2d.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square (outline)/gorilla.png"
+dest_files=["res://.godot/imported/gorilla.png-85faea494c9aded29730e76f3bb07a2d.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b5xi6blb21db1"
+path="res://.godot/imported/hippo.png-18de8ad761956e3ec850d270478e9c84.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square (outline)/hippo.png"
+dest_files=["res://.godot/imported/hippo.png-18de8ad761956e3ec850d270478e9c84.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://7n58vig53qbw"
+path="res://.godot/imported/horse.png-12513f9de6e2bb6d35dffda9458a9be6.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square (outline)/horse.png"
+dest_files=["res://.godot/imported/horse.png-12513f9de6e2bb6d35dffda9458a9be6.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://ccetgg2e0lxdq"
+path="res://.godot/imported/monkey.png-13487daf43861d3cf21d4a64bd53f1ae.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square (outline)/monkey.png"
+dest_files=["res://.godot/imported/monkey.png-13487daf43861d3cf21d4a64bd53f1ae.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://wgdani5dwypk"
+path="res://.godot/imported/moose.png-57951c4a55c9c749c16b81dfbe6b6879.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square (outline)/moose.png"
+dest_files=["res://.godot/imported/moose.png-57951c4a55c9c749c16b81dfbe6b6879.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c2ull2xdaihnp"
+path="res://.godot/imported/narwhal.png-f73eec30e4afd5c09be6adc1cbeb045e.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square (outline)/narwhal.png"
+dest_files=["res://.godot/imported/narwhal.png-f73eec30e4afd5c09be6adc1cbeb045e.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b2nb8gic23deg"
+path="res://.godot/imported/owl.png-0d8e17ac12bad818f546f9912646e69c.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square (outline)/owl.png"
+dest_files=["res://.godot/imported/owl.png-0d8e17ac12bad818f546f9912646e69c.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://baomtx3kvd6hl"
+path="res://.godot/imported/panda.png-953274a36d16859443f775ac25adfbd9.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square (outline)/panda.png"
+dest_files=["res://.godot/imported/panda.png-953274a36d16859443f775ac25adfbd9.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b2q7y0stgv21c"
+path="res://.godot/imported/parrot.png-20425f4626898ad0b0c8eeda7fb138a0.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square (outline)/parrot.png"
+dest_files=["res://.godot/imported/parrot.png-20425f4626898ad0b0c8eeda7fb138a0.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://vsifs6aqjgbb"
+path="res://.godot/imported/penguin.png-cd2b6cae6783a542fc8985b07c03cb71.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square (outline)/penguin.png"
+dest_files=["res://.godot/imported/penguin.png-cd2b6cae6783a542fc8985b07c03cb71.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bhghcvjjlvj4"
+path="res://.godot/imported/pig.png-97d9498a20a99407739e3e6033510c5a.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square (outline)/pig.png"
+dest_files=["res://.godot/imported/pig.png-97d9498a20a99407739e3e6033510c5a.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://ba30ddgba7v7b"
+path="res://.godot/imported/rabbit.png-53d628539332bdecc6cb6d15ebdc3b3d.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square (outline)/rabbit.png"
+dest_files=["res://.godot/imported/rabbit.png-53d628539332bdecc6cb6d15ebdc3b3d.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://wm5wwakscq1l"
+path="res://.godot/imported/rhino.png-22dd4d3bc771e576b39e1bcb3d028960.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square (outline)/rhino.png"
+dest_files=["res://.godot/imported/rhino.png-22dd4d3bc771e576b39e1bcb3d028960.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://d2buck7dao6i7"
+path="res://.godot/imported/sloth.png-7bfe24f95c7ae370183b353ecdb834ab.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square (outline)/sloth.png"
+dest_files=["res://.godot/imported/sloth.png-7bfe24f95c7ae370183b353ecdb834ab.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dwxua2oirtd4r"
+path="res://.godot/imported/snake.png-1ef2a726a205344a911253ea9b552feb.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square (outline)/snake.png"
+dest_files=["res://.godot/imported/snake.png-1ef2a726a205344a911253ea9b552feb.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cylu35nki3nyw"
+path="res://.godot/imported/walrus.png-17385bef330f4b5329bfe05f0765b2bf.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square (outline)/walrus.png"
+dest_files=["res://.godot/imported/walrus.png-17385bef330f4b5329bfe05f0765b2bf.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bc7nfrma48qxw"
+path="res://.godot/imported/whale.png-3b8273820b88d79563b8ec38539e7cb8.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square (outline)/whale.png"
+dest_files=["res://.godot/imported/whale.png-3b8273820b88d79563b8ec38539e7cb8.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cr6gqmbaekolr"
+path="res://.godot/imported/zebra.png-79e5ca5a11b83401ff349d7a698e2f45.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square (outline)/zebra.png"
+dest_files=["res://.godot/imported/zebra.png-79e5ca5a11b83401ff349d7a698e2f45.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://vy7xfdjs5emy"
+path="res://.godot/imported/bear.png-f6ae6774c577610ef3e7fb2652889e64.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details (outline)/bear.png"
+dest_files=["res://.godot/imported/bear.png-f6ae6774c577610ef3e7fb2652889e64.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c8rve46iuegcj"
+path="res://.godot/imported/buffalo.png-4eb0093547e250106b46730d2a8afcaa.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details (outline)/buffalo.png"
+dest_files=["res://.godot/imported/buffalo.png-4eb0093547e250106b46730d2a8afcaa.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dsi0pm04emb8l"
+path="res://.godot/imported/chick.png-12b05db01f12a4f0f31edd50971a0d2a.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details (outline)/chick.png"
+dest_files=["res://.godot/imported/chick.png-12b05db01f12a4f0f31edd50971a0d2a.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b4ra8c7dyvtu2"
+path="res://.godot/imported/chicken.png-1b9fe932dad950b7a9f6519f50f57b5d.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details (outline)/chicken.png"
+dest_files=["res://.godot/imported/chicken.png-1b9fe932dad950b7a9f6519f50f57b5d.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://4t1g3r5airiw"
+path="res://.godot/imported/cow.png-12186b43057c7ab83015e9d55e15f14e.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details (outline)/cow.png"
+dest_files=["res://.godot/imported/cow.png-12186b43057c7ab83015e9d55e15f14e.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dk3qw84yvjmtk"
+path="res://.godot/imported/crocodile.png-21313d19ca169daa8e83111db9bb5d6c.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details (outline)/crocodile.png"
+dest_files=["res://.godot/imported/crocodile.png-21313d19ca169daa8e83111db9bb5d6c.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://d305cbul84cg3"
+path="res://.godot/imported/dog.png-72d988d789d93b36c8f566ff714165eb.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details (outline)/dog.png"
+dest_files=["res://.godot/imported/dog.png-72d988d789d93b36c8f566ff714165eb.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bm5o7lmkfjy7u"
+path="res://.godot/imported/duck.png-919ac9d28454a414da6a10b83a6be058.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details (outline)/duck.png"
+dest_files=["res://.godot/imported/duck.png-919ac9d28454a414da6a10b83a6be058.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cue30mjs0ab0p"
+path="res://.godot/imported/elephant.png-525de70e089403ca5df555c85e3bdc92.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details (outline)/elephant.png"
+dest_files=["res://.godot/imported/elephant.png-525de70e089403ca5df555c85e3bdc92.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bl3dsp1pmo6m0"
+path="res://.godot/imported/frog.png-8580f8b4c8b9dfe62f40779ea2711388.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details (outline)/frog.png"
+dest_files=["res://.godot/imported/frog.png-8580f8b4c8b9dfe62f40779ea2711388.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://coih8l7jn6f74"
+path="res://.godot/imported/giraffe.png-c86aff150932c55dc3291472dcd22eee.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details (outline)/giraffe.png"
+dest_files=["res://.godot/imported/giraffe.png-c86aff150932c55dc3291472dcd22eee.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://xv5a1p5murel"
+path="res://.godot/imported/goat.png-82ef30a6e17aed06dc9cd59185092d3b.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details (outline)/goat.png"
+dest_files=["res://.godot/imported/goat.png-82ef30a6e17aed06dc9cd59185092d3b.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://6vhej80jxa68"
+path="res://.godot/imported/gorilla.png-b579e52b6aa4741a78d8e8c584d25de6.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details (outline)/gorilla.png"
+dest_files=["res://.godot/imported/gorilla.png-b579e52b6aa4741a78d8e8c584d25de6.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cdrtguww6lu23"
+path="res://.godot/imported/hippo.png-0bbec4cdbde52279f7b26195fdd2187a.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details (outline)/hippo.png"
+dest_files=["res://.godot/imported/hippo.png-0bbec4cdbde52279f7b26195fdd2187a.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://8eysiavkdut5"
+path="res://.godot/imported/horse.png-7d7c4de7df708a07ea77a88df1f51617.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details (outline)/horse.png"
+dest_files=["res://.godot/imported/horse.png-7d7c4de7df708a07ea77a88df1f51617.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://by4d6yqf30nym"
+path="res://.godot/imported/monkey.png-722952ba8d087292dfab49aa1a69b728.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details (outline)/monkey.png"
+dest_files=["res://.godot/imported/monkey.png-722952ba8d087292dfab49aa1a69b728.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://byqqhsc4cx6op"
+path="res://.godot/imported/moose.png-96b17872951c1a5791ffb4c0ae506b61.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details (outline)/moose.png"
+dest_files=["res://.godot/imported/moose.png-96b17872951c1a5791ffb4c0ae506b61.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://ckl06l75ayunu"
+path="res://.godot/imported/narwhal.png-2b59ce8d803154ed61fe8b911e47e62c.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details (outline)/narwhal.png"
+dest_files=["res://.godot/imported/narwhal.png-2b59ce8d803154ed61fe8b911e47e62c.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://fdi2on61o1ch"
+path="res://.godot/imported/owl.png-3b29e77eff2a03db8ee4265b2efed4de.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details (outline)/owl.png"
+dest_files=["res://.godot/imported/owl.png-3b29e77eff2a03db8ee4265b2efed4de.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://shftij1hmkc3"
+path="res://.godot/imported/panda.png-07d3241f575c817889d69882c2ec18db.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details (outline)/panda.png"
+dest_files=["res://.godot/imported/panda.png-07d3241f575c817889d69882c2ec18db.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cq62dbki3m38o"
+path="res://.godot/imported/parrot.png-c0cafe3a85865bb303ca619963435a64.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details (outline)/parrot.png"
+dest_files=["res://.godot/imported/parrot.png-c0cafe3a85865bb303ca619963435a64.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://gejvdgtq1lbm"
+path="res://.godot/imported/penguin.png-196fa663526352d89ca885b7a9e3f1fd.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details (outline)/penguin.png"
+dest_files=["res://.godot/imported/penguin.png-196fa663526352d89ca885b7a9e3f1fd.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cp4bem7f4kb7s"
+path="res://.godot/imported/pig.png-57976dbd26bc3ff831802231521204da.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details (outline)/pig.png"
+dest_files=["res://.godot/imported/pig.png-57976dbd26bc3ff831802231521204da.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://daf5ustgp06ht"
+path="res://.godot/imported/rabbit.png-5907c10c58ec1a942a002fef694e78db.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details (outline)/rabbit.png"
+dest_files=["res://.godot/imported/rabbit.png-5907c10c58ec1a942a002fef694e78db.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://ccmtuj37xuvg0"
+path="res://.godot/imported/rhino.png-5abe39c9451de4b075486a0df0b6450d.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details (outline)/rhino.png"
+dest_files=["res://.godot/imported/rhino.png-5abe39c9451de4b075486a0df0b6450d.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cddmgw3cn6vve"
+path="res://.godot/imported/sloth.png-f625d7adbb8db6d2616373c2ff33fb12.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details (outline)/sloth.png"
+dest_files=["res://.godot/imported/sloth.png-f625d7adbb8db6d2616373c2ff33fb12.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://blsc86kwyvge0"
+path="res://.godot/imported/snake.png-25d3e9b0db845f61a0deb1e60072b02f.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details (outline)/snake.png"
+dest_files=["res://.godot/imported/snake.png-25d3e9b0db845f61a0deb1e60072b02f.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cgmcm4r1xw17o"
+path="res://.godot/imported/walrus.png-107e39df4665c0bd9e5fb91944e59485.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details (outline)/walrus.png"
+dest_files=["res://.godot/imported/walrus.png-107e39df4665c0bd9e5fb91944e59485.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dyyxq6303tx1r"
+path="res://.godot/imported/whale.png-4983f1dd10fe0fb14fbbfa49f4dbaed5.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details (outline)/whale.png"
+dest_files=["res://.godot/imported/whale.png-4983f1dd10fe0fb14fbbfa49f4dbaed5.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bet4kdsvjirio"
+path="res://.godot/imported/zebra.png-ea2662c3e6b2702696efadd7f522c942.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details (outline)/zebra.png"
+dest_files=["res://.godot/imported/zebra.png-ea2662c3e6b2702696efadd7f522c942.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cm7l2g0f0g7f0"
+path="res://.godot/imported/bear.png-62dcd62d7e1e0405a07894e49bfe019f.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details/bear.png"
+dest_files=["res://.godot/imported/bear.png-62dcd62d7e1e0405a07894e49bfe019f.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cgkqmdarleym3"
+path="res://.godot/imported/buffalo.png-56b2efde5dccbe965fa72992e8af959c.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details/buffalo.png"
+dest_files=["res://.godot/imported/buffalo.png-56b2efde5dccbe965fa72992e8af959c.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://462huao4rxin"
+path="res://.godot/imported/chick.png-252be068b4ba56f9eab25e9054b13698.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details/chick.png"
+dest_files=["res://.godot/imported/chick.png-252be068b4ba56f9eab25e9054b13698.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cihw7dblhjvrf"
+path="res://.godot/imported/chicken.png-e8946810c06091a46e4809b0b12cf521.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details/chicken.png"
+dest_files=["res://.godot/imported/chicken.png-e8946810c06091a46e4809b0b12cf521.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cgdyo4tfpwewm"
+path="res://.godot/imported/cow.png-a56ffd2637f9b81a25798888c7c5a64a.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details/cow.png"
+dest_files=["res://.godot/imported/cow.png-a56ffd2637f9b81a25798888c7c5a64a.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dga78vebwnoq8"
+path="res://.godot/imported/crocodile.png-10d3fad64832adaa391a71b7ce7ae523.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details/crocodile.png"
+dest_files=["res://.godot/imported/crocodile.png-10d3fad64832adaa391a71b7ce7ae523.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dpau4g0x1mjwh"
+path="res://.godot/imported/dog.png-4848a9f4ecef841c2275fa9dd5a4f922.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details/dog.png"
+dest_files=["res://.godot/imported/dog.png-4848a9f4ecef841c2275fa9dd5a4f922.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cl3083fdygi55"
+path="res://.godot/imported/duck.png-f6b095a5e7f15403330314cad76dbe1e.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details/duck.png"
+dest_files=["res://.godot/imported/duck.png-f6b095a5e7f15403330314cad76dbe1e.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://btd04ggxwc43f"
+path="res://.godot/imported/elephant.png-f6a50903db3a209b80f14d16de7048a5.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details/elephant.png"
+dest_files=["res://.godot/imported/elephant.png-f6a50903db3a209b80f14d16de7048a5.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://jdohijhnmsnl"
+path="res://.godot/imported/frog.png-93efa91e998f9ab654011f0a37d07a13.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details/frog.png"
+dest_files=["res://.godot/imported/frog.png-93efa91e998f9ab654011f0a37d07a13.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b2t8bvtw21vi6"
+path="res://.godot/imported/giraffe.png-61f8675172bbf518fc1c3d0dbe55bbbe.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details/giraffe.png"
+dest_files=["res://.godot/imported/giraffe.png-61f8675172bbf518fc1c3d0dbe55bbbe.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c2kv0pa47a8vo"
+path="res://.godot/imported/goat.png-7b36670088312c8f8e9b077e31fcf6ed.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details/goat.png"
+dest_files=["res://.godot/imported/goat.png-7b36670088312c8f8e9b077e31fcf6ed.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://0g60vij4y5s3"
+path="res://.godot/imported/gorilla.png-5a3b56ee8deec0f16e0a0c02b2d7048a.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details/gorilla.png"
+dest_files=["res://.godot/imported/gorilla.png-5a3b56ee8deec0f16e0a0c02b2d7048a.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dc0764nefc02u"
+path="res://.godot/imported/hippo.png-434a0483c1e0f66e6dbfcbb3032df21d.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details/hippo.png"
+dest_files=["res://.godot/imported/hippo.png-434a0483c1e0f66e6dbfcbb3032df21d.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c1tlptbw4x7lr"
+path="res://.godot/imported/horse.png-ab1ffca19d8d30d5476c96570b00c352.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details/horse.png"
+dest_files=["res://.godot/imported/horse.png-ab1ffca19d8d30d5476c96570b00c352.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bio1041wb5eo6"
+path="res://.godot/imported/monkey.png-54e086fd706f05bf7edd572042ae9bfe.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details/monkey.png"
+dest_files=["res://.godot/imported/monkey.png-54e086fd706f05bf7edd572042ae9bfe.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://fvrc07hmlyye"
+path="res://.godot/imported/moose.png-125ce02483a53f356df6667ae2eadf7d.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details/moose.png"
+dest_files=["res://.godot/imported/moose.png-125ce02483a53f356df6667ae2eadf7d.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://d7bniggftq7p"
+path="res://.godot/imported/narwhal.png-a89e690e2bfaf938cce5785c9645e9c3.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details/narwhal.png"
+dest_files=["res://.godot/imported/narwhal.png-a89e690e2bfaf938cce5785c9645e9c3.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://ggfrcuvenqqe"
+path="res://.godot/imported/owl.png-8fdf3b2bb0e2974b201e10833d15596e.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details/owl.png"
+dest_files=["res://.godot/imported/owl.png-8fdf3b2bb0e2974b201e10833d15596e.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://qv5gvfyh50rw"
+path="res://.godot/imported/panda.png-b93c23471c12efcdfcecdce69642db7e.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details/panda.png"
+dest_files=["res://.godot/imported/panda.png-b93c23471c12efcdfcecdce69642db7e.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dqftgwp7otpog"
+path="res://.godot/imported/parrot.png-fb1a5bf03ff22a9cabf50ddbaeb170b4.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details/parrot.png"
+dest_files=["res://.godot/imported/parrot.png-fb1a5bf03ff22a9cabf50ddbaeb170b4.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://d12mxbq6kv11o"
+path="res://.godot/imported/penguin.png-db92fda103fecb009aaff0d00dfd67d8.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details/penguin.png"
+dest_files=["res://.godot/imported/penguin.png-db92fda103fecb009aaff0d00dfd67d8.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c8l4qhv3sprq5"
+path="res://.godot/imported/pig.png-4e1263d867534538f3f22a740d1a4527.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details/pig.png"
+dest_files=["res://.godot/imported/pig.png-4e1263d867534538f3f22a740d1a4527.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://rgvgs48ycxqn"
+path="res://.godot/imported/rabbit.png-a108fbe5a82ff04cdb60abe32c1bd3b2.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details/rabbit.png"
+dest_files=["res://.godot/imported/rabbit.png-a108fbe5a82ff04cdb60abe32c1bd3b2.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://ipubatdr6gcd"
+path="res://.godot/imported/rhino.png-563c7f8158c510f2e72d5c03c145a497.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details/rhino.png"
+dest_files=["res://.godot/imported/rhino.png-563c7f8158c510f2e72d5c03c145a497.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://chd4infr1wfye"
+path="res://.godot/imported/sloth.png-8a908aa51e51751d1a32b59316ec859a.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details/sloth.png"
+dest_files=["res://.godot/imported/sloth.png-8a908aa51e51751d1a32b59316ec859a.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://ca8i8rrl1emuo"
+path="res://.godot/imported/snake.png-984ac87e3a23145ad377d31cd37c12bc.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details/snake.png"
+dest_files=["res://.godot/imported/snake.png-984ac87e3a23145ad377d31cd37c12bc.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bmrrih0nho4rm"
+path="res://.godot/imported/walrus.png-64b3e7e9b33a11846a658e24b970dec5.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details/walrus.png"
+dest_files=["res://.godot/imported/walrus.png-64b3e7e9b33a11846a658e24b970dec5.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dvplduqhv3p16"
+path="res://.godot/imported/whale.png-0aa6983a37c45634de91c98fd017ee7b.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details/whale.png"
+dest_files=["res://.godot/imported/whale.png-0aa6983a37c45634de91c98fd017ee7b.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://d1vr241t0mxpq"
+path="res://.godot/imported/zebra.png-da3cbdc2914d1810b46d10b4481d3f70.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square without details/zebra.png"
+dest_files=["res://.godot/imported/zebra.png-da3cbdc2914d1810b46d10b4481d3f70.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://drtel1f6t25ta"
+path="res://.godot/imported/bear.png-d85aa4c155fcafd06186aa3b3d94bae5.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square/bear.png"
+dest_files=["res://.godot/imported/bear.png-d85aa4c155fcafd06186aa3b3d94bae5.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b0i5bn77bshef"
+path="res://.godot/imported/buffalo.png-331bc713defca5c8432fd3a2eda38049.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square/buffalo.png"
+dest_files=["res://.godot/imported/buffalo.png-331bc713defca5c8432fd3a2eda38049.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://05jdwcslkkyp"
+path="res://.godot/imported/chick.png-2fedad06ad8b21bef3fc4dff423842ec.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square/chick.png"
+dest_files=["res://.godot/imported/chick.png-2fedad06ad8b21bef3fc4dff423842ec.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://e22hx8bnu0rx"
+path="res://.godot/imported/chicken.png-dcaab847ffb31d66ee0b67c2868a84d5.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square/chicken.png"
+dest_files=["res://.godot/imported/chicken.png-dcaab847ffb31d66ee0b67c2868a84d5.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dtb6g8ls5fnwl"
+path="res://.godot/imported/cow.png-af41611cfd347b364a81fbdd23a0a279.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square/cow.png"
+dest_files=["res://.godot/imported/cow.png-af41611cfd347b364a81fbdd23a0a279.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://f23158uj1d4w"
+path="res://.godot/imported/crocodile.png-b0e034a9f494257f51053cabcbf09ed0.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square/crocodile.png"
+dest_files=["res://.godot/imported/crocodile.png-b0e034a9f494257f51053cabcbf09ed0.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://kydq682rmeu4"
+path="res://.godot/imported/dog.png-1c87eb221e9c74ee22c1435b7beec94d.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square/dog.png"
+dest_files=["res://.godot/imported/dog.png-1c87eb221e9c74ee22c1435b7beec94d.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cev1pfljbo782"
+path="res://.godot/imported/duck.png-cc24fd01958ffb1bcc2482e7707d91a1.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square/duck.png"
+dest_files=["res://.godot/imported/duck.png-cc24fd01958ffb1bcc2482e7707d91a1.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c12lcdpujeskk"
+path="res://.godot/imported/elephant.png-8ba59fb5f833d3adb143422a3618675c.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square/elephant.png"
+dest_files=["res://.godot/imported/elephant.png-8ba59fb5f833d3adb143422a3618675c.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://o6g4b338lqj1"
+path="res://.godot/imported/frog.png-f86803ac8bc5852182f0fb321c7ead68.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square/frog.png"
+dest_files=["res://.godot/imported/frog.png-f86803ac8bc5852182f0fb321c7ead68.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cxit8hhtpwx1i"
+path="res://.godot/imported/giraffe.png-baad04ae7d301746511b25f135f380a7.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square/giraffe.png"
+dest_files=["res://.godot/imported/giraffe.png-baad04ae7d301746511b25f135f380a7.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cjlhbac0o223e"
+path="res://.godot/imported/goat.png-6253d5c5d03993545b9686221050f174.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square/goat.png"
+dest_files=["res://.godot/imported/goat.png-6253d5c5d03993545b9686221050f174.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b5xh5ih2riq4h"
+path="res://.godot/imported/gorilla.png-3295b1869b067c8fdc575fbae3502ce3.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square/gorilla.png"
+dest_files=["res://.godot/imported/gorilla.png-3295b1869b067c8fdc575fbae3502ce3.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://ct5eteh0xa2jt"
+path="res://.godot/imported/hippo.png-5f132be328cf1ef2803ade23f3a1d814.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square/hippo.png"
+dest_files=["res://.godot/imported/hippo.png-5f132be328cf1ef2803ade23f3a1d814.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c52pbybumcual"
+path="res://.godot/imported/horse.png-1698941e915c69076eb473b94630c79c.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square/horse.png"
+dest_files=["res://.godot/imported/horse.png-1698941e915c69076eb473b94630c79c.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://brvlpmmf6m12j"
+path="res://.godot/imported/monkey.png-c29e2778e6dd761b844a66f3d930b848.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square/monkey.png"
+dest_files=["res://.godot/imported/monkey.png-c29e2778e6dd761b844a66f3d930b848.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cc2xxs76mgidh"
+path="res://.godot/imported/moose.png-5654c4758b116e38abae58b51c756d6f.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square/moose.png"
+dest_files=["res://.godot/imported/moose.png-5654c4758b116e38abae58b51c756d6f.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dtaa5p4xqcfks"
+path="res://.godot/imported/narwhal.png-066564505d2ed0e46c8ea3efad20a9c1.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square/narwhal.png"
+dest_files=["res://.godot/imported/narwhal.png-066564505d2ed0e46c8ea3efad20a9c1.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dhl03wiso4s56"
+path="res://.godot/imported/owl.png-84ac2c82abc281a7ffd79b8406e9112b.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square/owl.png"
+dest_files=["res://.godot/imported/owl.png-84ac2c82abc281a7ffd79b8406e9112b.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b46w882x5lay1"
+path="res://.godot/imported/panda.png-041d128efa1fbbb7be26f2cf7ec1a1e0.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square/panda.png"
+dest_files=["res://.godot/imported/panda.png-041d128efa1fbbb7be26f2cf7ec1a1e0.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://ol6lt8w18vfv"
+path="res://.godot/imported/parrot.png-9d22df18534f14861a18310a1560fa43.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square/parrot.png"
+dest_files=["res://.godot/imported/parrot.png-9d22df18534f14861a18310a1560fa43.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c5jj3tvaqc34"
+path="res://.godot/imported/penguin.png-2027f4e39fe06c3068064902e09e7452.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square/penguin.png"
+dest_files=["res://.godot/imported/penguin.png-2027f4e39fe06c3068064902e09e7452.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://ona2gka2eugg"
+path="res://.godot/imported/pig.png-07192ae4aff9f9636e1d33b1da1e29aa.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square/pig.png"
+dest_files=["res://.godot/imported/pig.png-07192ae4aff9f9636e1d33b1da1e29aa.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dm2rli8bgvvrr"
+path="res://.godot/imported/rabbit.png-e3a89c9ce071f4d19d18a7284c6c6e9e.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square/rabbit.png"
+dest_files=["res://.godot/imported/rabbit.png-e3a89c9ce071f4d19d18a7284c6c6e9e.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bqdb2pcp116gj"
+path="res://.godot/imported/rhino.png-b4e12da29d1bcbf36ed376f6da587e13.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square/rhino.png"
+dest_files=["res://.godot/imported/rhino.png-b4e12da29d1bcbf36ed376f6da587e13.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cocakfgta7nti"
+path="res://.godot/imported/sloth.png-130eec7324db0c483b732b9f386ce650.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square/sloth.png"
+dest_files=["res://.godot/imported/sloth.png-130eec7324db0c483b732b9f386ce650.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dvxy724xkiie"
+path="res://.godot/imported/snake.png-2b95fd6545092d38560308333af8ce7b.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square/snake.png"
+dest_files=["res://.godot/imported/snake.png-2b95fd6545092d38560308333af8ce7b.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cuf0k3p7w3p58"
+path="res://.godot/imported/walrus.png-3017b6bfbe9bb73e6e3e43a992a99af7.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square/walrus.png"
+dest_files=["res://.godot/imported/walrus.png-3017b6bfbe9bb73e6e3e43a992a99af7.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cp1iniav62fjh"
+path="res://.godot/imported/whale.png-a294a798d54347fd40910a4baedd8dc6.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square/whale.png"
+dest_files=["res://.godot/imported/whale.png-a294a798d54347fd40910a4baedd8dc6.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://br48mnbv45xqg"
+path="res://.godot/imported/zebra.png-b96b300577b89a6a99e7a65bc5597392.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/PNG/Square/zebra.png"
+dest_files=["res://.godot/imported/zebra.png-b96b300577b89a6a99e7a65bc5597392.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[InternetShortcut]
+URL=https://www.patreon.com/kenney/
\ No newline at end of file
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c0atii2y7dyc7"
+path="res://.godot/imported/round.png-aec81c3041ed2605cc8d2a93089815ec.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/Spritesheet/round.png"
+dest_files=["res://.godot/imported/round.png-aec81c3041ed2605cc8d2a93089815ec.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+<TextureAtlas imagePath="round.png">
+ <SubTexture name="bear.png" x="184" y="162" width="154" height="132"/>
+ <SubTexture name="buffalo.png" x="0" y="487" width="183" height="152"/>
+ <SubTexture name="chick.png" x="615" y="304" width="129" height="128"/>
+ <SubTexture name="chicken.png" x="740" y="141" width="128" height="145"/>
+ <SubTexture name="cow.png" x="337" y="294" width="145" height="128"/>
+ <SubTexture name="crocodile.png" x="486" y="698" width="129" height="128"/>
+ <SubTexture name="dog.png" x="482" y="272" width="129" height="157"/>
+ <SubTexture name="duck.png" x="615" y="432" width="129" height="128"/>
+ <SubTexture name="elephant.png" x="0" y="333" width="183" height="154"/>
+ <SubTexture name="frog.png" x="478" y="0" width="130" height="144"/>
+ <SubTexture name="giraffe.png" x="183" y="333" width="154" height="162"/>
+ <SubTexture name="goat.png" x="0" y="162" width="184" height="171"/>
+ <SubTexture name="gorilla.png" x="611" y="176" width="129" height="128"/>
+ <SubTexture name="hippo.png" x="183" y="495" width="154" height="128"/>
+ <SubTexture name="horse.png" x="486" y="429" width="129" height="141"/>
+ <SubTexture name="monkey.png" x="174" y="639" width="174" height="128"/>
+ <SubTexture name="moose.png" x="0" y="0" width="269" height="162"/>
+ <SubTexture name="narwhal.png" x="348" y="550" width="138" height="155"/>
+ <SubTexture name="owl.png" x="743" y="560" width="128" height="128"/>
+ <SubTexture name="panda.png" x="0" y="639" width="174" height="128"/>
+ <SubTexture name="parrot.png" x="478" y="144" width="129" height="128"/>
+ <SubTexture name="penguin.png" x="338" y="128" width="140" height="128"/>
+ <SubTexture name="pig.png" x="337" y="422" width="144" height="128"/>
+ <SubTexture name="rabbit.png" x="608" y="0" width="129" height="176"/>
+ <SubTexture name="rhino.png" x="269" y="0" width="154" height="128"/>
+ <SubTexture name="sloth.png" x="486" y="570" width="129" height="128"/>
+ <SubTexture name="snake.png" x="615" y="698" width="128" height="142"/>
+ <SubTexture name="walrus.png" x="615" y="560" width="128" height="138"/>
+ <SubTexture name="whale.png" x="348" y="705" width="138" height="154"/>
+ <SubTexture name="zebra.png" x="737" y="0" width="128" height="141"/>
+</TextureAtlas>
\ No newline at end of file
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bhmu32qg5c2e1"
+path="res://.godot/imported/roundOutline.png-a521cbd9302df0775e51d1d3b61c1b3f.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/Spritesheet/roundOutline.png"
+dest_files=["res://.godot/imported/roundOutline.png-a521cbd9302df0775e51d1d3b61c1b3f.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+<TextureAtlas imagePath="roundOutline.png">
+ <SubTexture name="bear.png" x="277" y="0" width="162" height="140"/>
+ <SubTexture name="buffalo.png" x="0" y="349" width="191" height="160"/>
+ <SubTexture name="chick.png" x="647" y="464" width="137" height="136"/>
+ <SubTexture name="chicken.png" x="775" y="600" width="136" height="153"/>
+ <SubTexture name="cow.png" x="353" y="340" width="153" height="136"/>
+ <SubTexture name="crocodile.png" x="638" y="784" width="137" height="136"/>
+ <SubTexture name="dog.png" x="643" y="299" width="137" height="165"/>
+ <SubTexture name="duck.png" x="640" y="163" width="137" height="136"/>
+ <SubTexture name="elephant.png" x="0" y="509" width="191" height="162"/>
+ <SubTexture name="frog.png" x="502" y="163" width="138" height="152"/>
+ <SubTexture name="giraffe.png" x="192" y="170" width="162" height="170"/>
+ <SubTexture name="goat.png" x="0" y="170" width="192" height="179"/>
+ <SubTexture name="gorilla.png" x="638" y="648" width="137" height="136"/>
+ <SubTexture name="hippo.png" x="191" y="485" width="162" height="136"/>
+ <SubTexture name="horse.png" x="506" y="315" width="137" height="149"/>
+ <SubTexture name="monkey.png" x="0" y="671" width="182" height="136"/>
+ <SubTexture name="moose.png" x="0" y="0" width="277" height="170"/>
+ <SubTexture name="narwhal.png" x="502" y="0" width="146" height="163"/>
+ <SubTexture name="owl.png" x="780" y="295" width="136" height="136"/>
+ <SubTexture name="panda.png" x="182" y="671" width="182" height="136"/>
+ <SubTexture name="parrot.png" x="364" y="774" width="137" height="136"/>
+ <SubTexture name="penguin.png" x="354" y="140" width="148" height="136"/>
+ <SubTexture name="pig.png" x="353" y="476" width="152" height="136"/>
+ <SubTexture name="rabbit.png" x="510" y="464" width="137" height="184"/>
+ <SubTexture name="rhino.png" x="191" y="349" width="162" height="136"/>
+ <SubTexture name="sloth.png" x="501" y="774" width="137" height="136"/>
+ <SubTexture name="snake.png" x="775" y="753" width="136" height="150"/>
+ <SubTexture name="walrus.png" x="648" y="0" width="136" height="146"/>
+ <SubTexture name="whale.png" x="364" y="612" width="146" height="162"/>
+ <SubTexture name="zebra.png" x="777" y="146" width="136" height="149"/>
+</TextureAtlas>
\ No newline at end of file
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cf5k428dsfkxj"
+path="res://.godot/imported/round_nodetails.png-56350661d2bdbc91c1379cb72495c4d3.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/Spritesheet/round_nodetails.png"
+dest_files=["res://.godot/imported/round_nodetails.png-56350661d2bdbc91c1379cb72495c4d3.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+<TextureAtlas imagePath="round_nodetails.png">
+ <SubTexture name="bear.png" x="643" y="513" width="128" height="129"/>
+ <SubTexture name="buffalo.png" x="129" y="263" width="129" height="129"/>
+ <SubTexture name="chick.png" x="258" y="640" width="129" height="128"/>
+ <SubTexture name="chicken.png" x="643" y="257" width="128" height="128"/>
+ <SubTexture name="cow.png" x="129" y="520" width="129" height="128"/>
+ <SubTexture name="crocodile.png" x="258" y="384" width="129" height="128"/>
+ <SubTexture name="dog.png" x="261" y="0" width="129" height="128"/>
+ <SubTexture name="duck.png" x="261" y="128" width="129" height="128"/>
+ <SubTexture name="elephant.png" x="387" y="256" width="129" height="128"/>
+ <SubTexture name="frog.png" x="390" y="0" width="128" height="129"/>
+ <SubTexture name="giraffe.png" x="387" y="640" width="128" height="129"/>
+ <SubTexture name="goat.png" x="515" y="640" width="128" height="129"/>
+ <SubTexture name="gorilla.png" x="258" y="512" width="129" height="128"/>
+ <SubTexture name="hippo.png" x="387" y="384" width="128" height="128"/>
+ <SubTexture name="horse.png" x="0" y="391" width="129" height="128"/>
+ <SubTexture name="monkey.png" x="643" y="642" width="128" height="128"/>
+ <SubTexture name="moose.png" x="0" y="263" width="129" height="128"/>
+ <SubTexture name="narwhal.png" x="0" y="0" width="132" height="132"/>
+ <SubTexture name="owl.png" x="515" y="512" width="128" height="128"/>
+ <SubTexture name="panda.png" x="258" y="256" width="129" height="128"/>
+ <SubTexture name="parrot.png" x="132" y="128" width="129" height="128"/>
+ <SubTexture name="penguin.png" x="132" y="0" width="129" height="128"/>
+ <SubTexture name="pig.png" x="387" y="512" width="128" height="128"/>
+ <SubTexture name="rabbit.png" x="129" y="392" width="129" height="128"/>
+ <SubTexture name="rhino.png" x="516" y="129" width="128" height="128"/>
+ <SubTexture name="sloth.png" x="0" y="519" width="129" height="128"/>
+ <SubTexture name="snake.png" x="518" y="0" width="128" height="128"/>
+ <SubTexture name="walrus.png" x="643" y="385" width="128" height="128"/>
+ <SubTexture name="whale.png" x="0" y="132" width="132" height="131"/>
+ <SubTexture name="zebra.png" x="515" y="384" width="128" height="128"/>
+</TextureAtlas>
\ No newline at end of file
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://djnrpc1fhvyth"
+path="res://.godot/imported/round_nodetailsOutline.png-222346f02bf5fec8df87c8a5fc184b0c.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/Spritesheet/round_nodetailsOutline.png"
+dest_files=["res://.godot/imported/round_nodetailsOutline.png-222346f02bf5fec8df87c8a5fc184b0c.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+<TextureAtlas imagePath="round_nodetailsOutline.png">
+ <SubTexture name="bear.png" x="547" y="545" width="136" height="137"/>
+ <SubTexture name="buffalo.png" x="0" y="551" width="137" height="137"/>
+ <SubTexture name="chick.png" x="140" y="0" width="137" height="136"/>
+ <SubTexture name="chicken.png" x="683" y="409" width="136" height="136"/>
+ <SubTexture name="cow.png" x="137" y="415" width="137" height="136"/>
+ <SubTexture name="crocodile.png" x="277" y="0" width="137" height="136"/>
+ <SubTexture name="dog.png" x="274" y="544" width="137" height="136"/>
+ <SubTexture name="duck.png" x="277" y="136" width="137" height="136"/>
+ <SubTexture name="elephant.png" x="411" y="272" width="137" height="136"/>
+ <SubTexture name="frog.png" x="547" y="408" width="136" height="137"/>
+ <SubTexture name="giraffe.png" x="414" y="0" width="136" height="137"/>
+ <SubTexture name="goat.png" x="411" y="680" width="136" height="137"/>
+ <SubTexture name="gorilla.png" x="274" y="680" width="137" height="136"/>
+ <SubTexture name="hippo.png" x="550" y="0" width="136" height="136"/>
+ <SubTexture name="horse.png" x="0" y="415" width="137" height="136"/>
+ <SubTexture name="monkey.png" x="683" y="273" width="136" height="136"/>
+ <SubTexture name="moose.png" x="0" y="279" width="137" height="136"/>
+ <SubTexture name="narwhal.png" x="0" y="0" width="140" height="140"/>
+ <SubTexture name="owl.png" x="547" y="682" width="136" height="136"/>
+ <SubTexture name="panda.png" x="274" y="408" width="137" height="136"/>
+ <SubTexture name="parrot.png" x="274" y="272" width="137" height="136"/>
+ <SubTexture name="penguin.png" x="140" y="136" width="137" height="136"/>
+ <SubTexture name="pig.png" x="411" y="408" width="136" height="136"/>
+ <SubTexture name="rabbit.png" x="137" y="551" width="137" height="136"/>
+ <SubTexture name="rhino.png" x="548" y="137" width="136" height="136"/>
+ <SubTexture name="sloth.png" x="137" y="279" width="137" height="136"/>
+ <SubTexture name="snake.png" x="411" y="544" width="136" height="136"/>
+ <SubTexture name="walrus.png" x="683" y="545" width="136" height="136"/>
+ <SubTexture name="whale.png" x="0" y="140" width="140" height="139"/>
+ <SubTexture name="zebra.png" x="683" y="681" width="136" height="136"/>
+</TextureAtlas>
\ No newline at end of file
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dt4q7ef7s7lts"
+path="res://.godot/imported/square.png-e0b848b6de9f1d0af8df5a60d0b92a06.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/Spritesheet/square.png"
+dest_files=["res://.godot/imported/square.png-e0b848b6de9f1d0af8df5a60d0b92a06.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+<TextureAtlas imagePath="square.png">
+ <SubTexture name="bear.png" x="186" y="162" width="162" height="128"/>
+ <SubTexture name="buffalo.png" x="0" y="290" width="184" height="154"/>
+ <SubTexture name="chick.png" x="626" y="577" width="128" height="128"/>
+ <SubTexture name="chicken.png" x="625" y="271" width="128" height="145"/>
+ <SubTexture name="cow.png" x="0" y="162" width="186" height="128"/>
+ <SubTexture name="crocodile.png" x="687" y="0" width="128" height="128"/>
+ <SubTexture name="dog.png" x="751" y="416" width="128" height="161"/>
+ <SubTexture name="duck.png" x="559" y="0" width="128" height="128"/>
+ <SubTexture name="elephant.png" x="0" y="615" width="184" height="138"/>
+ <SubTexture name="frog.png" x="348" y="161" width="138" height="128"/>
+ <SubTexture name="giraffe.png" x="268" y="0" width="162" height="161"/>
+ <SubTexture name="goat.png" x="0" y="444" width="184" height="171"/>
+ <SubTexture name="gorilla.png" x="354" y="289" width="128" height="128"/>
+ <SubTexture name="hippo.png" x="184" y="418" width="166" height="128"/>
+ <SubTexture name="horse.png" x="615" y="128" width="128" height="143"/>
+ <SubTexture name="monkey.png" x="178" y="753" width="174" height="128"/>
+ <SubTexture name="moose.png" x="0" y="0" width="268" height="162"/>
+ <SubTexture name="narwhal.png" x="352" y="703" width="146" height="145"/>
+ <SubTexture name="owl.png" x="495" y="546" width="128" height="128"/>
+ <SubTexture name="panda.png" x="0" y="753" width="178" height="128"/>
+ <SubTexture name="parrot.png" x="623" y="449" width="128" height="128"/>
+ <SubTexture name="penguin.png" x="350" y="418" width="147" height="128"/>
+ <SubTexture name="pig.png" x="184" y="290" width="170" height="128"/>
+ <SubTexture name="rabbit.png" x="497" y="273" width="128" height="176"/>
+ <SubTexture name="rhino.png" x="184" y="546" width="163" height="128"/>
+ <SubTexture name="sloth.png" x="498" y="674" width="128" height="128"/>
+ <SubTexture name="snake.png" x="430" y="0" width="129" height="139"/>
+ <SubTexture name="walrus.png" x="486" y="139" width="129" height="134"/>
+ <SubTexture name="whale.png" x="347" y="546" width="148" height="157"/>
+ <SubTexture name="zebra.png" x="626" y="705" width="128" height="145"/>
+</TextureAtlas>
\ No newline at end of file
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://t6wm5bkq0fd4"
+path="res://.godot/imported/squareOutline.png-c9ff484b512ba3c893ba5b66a28262c5.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/Spritesheet/squareOutline.png"
+dest_files=["res://.godot/imported/squareOutline.png-c9ff484b512ba3c893ba5b66a28262c5.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+<TextureAtlas imagePath="squareOutline.png">
+ <SubTexture name="bear.png" x="194" y="170" width="170" height="136"/>
+ <SubTexture name="buffalo.png" x="0" y="306" width="192" height="162"/>
+ <SubTexture name="chick.png" x="658" y="760" width="136" height="136"/>
+ <SubTexture name="chicken.png" x="658" y="607" width="136" height="153"/>
+ <SubTexture name="cow.png" x="0" y="170" width="194" height="136"/>
+ <SubTexture name="crocodile.png" x="655" y="471" width="136" height="136"/>
+ <SubTexture name="dog.png" x="646" y="136" width="136" height="169"/>
+ <SubTexture name="duck.png" x="582" y="0" width="136" height="136"/>
+ <SubTexture name="elephant.png" x="0" y="647" width="192" height="146"/>
+ <SubTexture name="frog.png" x="364" y="169" width="146" height="136"/>
+ <SubTexture name="giraffe.png" x="276" y="0" width="170" height="169"/>
+ <SubTexture name="goat.png" x="0" y="468" width="192" height="179"/>
+ <SubTexture name="gorilla.png" x="657" y="305" width="136" height="136"/>
+ <SubTexture name="hippo.png" x="192" y="442" width="174" height="136"/>
+ <SubTexture name="horse.png" x="521" y="320" width="136" height="151"/>
+ <SubTexture name="monkey.png" x="186" y="793" width="182" height="136"/>
+ <SubTexture name="moose.png" x="0" y="0" width="276" height="170"/>
+ <SubTexture name="narwhal.png" x="368" y="743" width="154" height="153"/>
+ <SubTexture name="owl.png" x="370" y="305" width="136" height="136"/>
+ <SubTexture name="panda.png" x="0" y="793" width="186" height="136"/>
+ <SubTexture name="parrot.png" x="519" y="578" width="136" height="136"/>
+ <SubTexture name="penguin.png" x="366" y="442" width="155" height="136"/>
+ <SubTexture name="pig.png" x="192" y="306" width="178" height="136"/>
+ <SubTexture name="rabbit.png" x="510" y="136" width="136" height="184"/>
+ <SubTexture name="rhino.png" x="192" y="578" width="171" height="136"/>
+ <SubTexture name="sloth.png" x="446" y="0" width="136" height="136"/>
+ <SubTexture name="snake.png" x="782" y="153" width="136" height="147"/>
+ <SubTexture name="walrus.png" x="522" y="714" width="136" height="142"/>
+ <SubTexture name="whale.png" x="363" y="578" width="156" height="165"/>
+ <SubTexture name="zebra.png" x="782" y="0" width="136" height="153"/>
+</TextureAtlas>
\ No newline at end of file
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://erkpf2yuqnqk"
+path="res://.godot/imported/square_nodetails.png-ec83f4aba9a6a1c936f0690bffe54248.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/Spritesheet/square_nodetails.png"
+dest_files=["res://.godot/imported/square_nodetails.png-ec83f4aba9a6a1c936f0690bffe54248.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+<TextureAtlas imagePath="square_nodetails.png">
+ <SubTexture name="bear.png" x="257" y="256" width="128" height="128"/>
+ <SubTexture name="buffalo.png" x="513" y="512" width="128" height="128"/>
+ <SubTexture name="chick.png" x="513" y="384" width="128" height="128"/>
+ <SubTexture name="chicken.png" x="513" y="256" width="128" height="128"/>
+ <SubTexture name="cow.png" x="513" y="128" width="128" height="128"/>
+ <SubTexture name="crocodile.png" x="513" y="0" width="128" height="128"/>
+ <SubTexture name="dog.png" x="385" y="640" width="128" height="128"/>
+ <SubTexture name="duck.png" x="385" y="512" width="128" height="128"/>
+ <SubTexture name="elephant.png" x="385" y="384" width="128" height="128"/>
+ <SubTexture name="frog.png" x="385" y="256" width="128" height="128"/>
+ <SubTexture name="giraffe.png" x="385" y="128" width="128" height="128"/>
+ <SubTexture name="goat.png" x="0" y="640" width="129" height="128"/>
+ <SubTexture name="gorilla.png" x="257" y="640" width="128" height="128"/>
+ <SubTexture name="hippo.png" x="257" y="512" width="128" height="128"/>
+ <SubTexture name="horse.png" x="513" y="640" width="128" height="128"/>
+ <SubTexture name="monkey.png" x="0" y="0" width="129" height="128"/>
+ <SubTexture name="moose.png" x="257" y="128" width="128" height="128"/>
+ <SubTexture name="narwhal.png" x="257" y="0" width="128" height="128"/>
+ <SubTexture name="owl.png" x="129" y="640" width="128" height="128"/>
+ <SubTexture name="panda.png" x="129" y="512" width="128" height="128"/>
+ <SubTexture name="parrot.png" x="385" y="0" width="128" height="128"/>
+ <SubTexture name="penguin.png" x="129" y="256" width="128" height="128"/>
+ <SubTexture name="pig.png" x="129" y="384" width="128" height="128"/>
+ <SubTexture name="rabbit.png" x="129" y="0" width="128" height="128"/>
+ <SubTexture name="rhino.png" x="0" y="512" width="129" height="128"/>
+ <SubTexture name="sloth.png" x="129" y="128" width="128" height="128"/>
+ <SubTexture name="snake.png" x="0" y="384" width="129" height="128"/>
+ <SubTexture name="walrus.png" x="0" y="256" width="129" height="128"/>
+ <SubTexture name="whale.png" x="0" y="128" width="129" height="128"/>
+ <SubTexture name="zebra.png" x="257" y="384" width="128" height="128"/>
+</TextureAtlas>
\ No newline at end of file
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://boh4voq7bk25j"
+path="res://.godot/imported/square_nodetailsOutline.png-7901ddcf57c60ff5a249efa1e311045e.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/Spritesheet/square_nodetailsOutline.png"
+dest_files=["res://.godot/imported/square_nodetailsOutline.png-7901ddcf57c60ff5a249efa1e311045e.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+<TextureAtlas imagePath="square_nodetailsOutline.png">
+ <SubTexture name="bear.png" x="272" y="272" width="136" height="136"/>
+ <SubTexture name="buffalo.png" x="544" y="544" width="136" height="136"/>
+ <SubTexture name="chick.png" x="544" y="408" width="136" height="136"/>
+ <SubTexture name="chicken.png" x="544" y="272" width="136" height="136"/>
+ <SubTexture name="cow.png" x="544" y="136" width="136" height="136"/>
+ <SubTexture name="crocodile.png" x="544" y="0" width="136" height="136"/>
+ <SubTexture name="dog.png" x="408" y="680" width="136" height="136"/>
+ <SubTexture name="duck.png" x="408" y="544" width="136" height="136"/>
+ <SubTexture name="elephant.png" x="408" y="408" width="136" height="136"/>
+ <SubTexture name="frog.png" x="408" y="272" width="136" height="136"/>
+ <SubTexture name="giraffe.png" x="408" y="136" width="136" height="136"/>
+ <SubTexture name="goat.png" x="408" y="0" width="136" height="136"/>
+ <SubTexture name="gorilla.png" x="272" y="680" width="136" height="136"/>
+ <SubTexture name="hippo.png" x="272" y="544" width="136" height="136"/>
+ <SubTexture name="horse.png" x="272" y="408" width="136" height="136"/>
+ <SubTexture name="monkey.png" x="544" y="680" width="136" height="136"/>
+ <SubTexture name="moose.png" x="272" y="136" width="136" height="136"/>
+ <SubTexture name="narwhal.png" x="272" y="0" width="136" height="136"/>
+ <SubTexture name="owl.png" x="136" y="680" width="136" height="136"/>
+ <SubTexture name="panda.png" x="136" y="544" width="136" height="136"/>
+ <SubTexture name="parrot.png" x="136" y="408" width="136" height="136"/>
+ <SubTexture name="penguin.png" x="136" y="272" width="136" height="136"/>
+ <SubTexture name="pig.png" x="136" y="136" width="136" height="136"/>
+ <SubTexture name="rabbit.png" x="136" y="0" width="136" height="136"/>
+ <SubTexture name="rhino.png" x="0" y="680" width="136" height="136"/>
+ <SubTexture name="sloth.png" x="0" y="544" width="136" height="136"/>
+ <SubTexture name="snake.png" x="0" y="408" width="136" height="136"/>
+ <SubTexture name="walrus.png" x="0" y="272" width="136" height="136"/>
+ <SubTexture name="whale.png" x="0" y="136" width="136" height="136"/>
+ <SubTexture name="zebra.png" x="0" y="0" width="136" height="136"/>
+</TextureAtlas>
\ No newline at end of file
--- /dev/null
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <defs/>
+ <g>
+ <path stroke="none" fill="#31DE7A" d="M192 130 Q191.3 104.75 173.3 86.75 168.9 82.35 164.1 79 148.35 68 128 68 107.7 68 91.9 79.05 87.1 82.4 82.75 86.75 64.7 104.75 64.05 130 L64 128 Q64 101.45 82.75 82.75 87 78.5 91.6 75.25 107.5 64 128 64 148.55 64 164.4 75.2 169.05 78.5 173.3 82.75 192 101.45 192 128 L192 130"/>
+ <path stroke="none" fill="#2ECC71" d="M192 130 Q191.55 145.2 184.85 157.85 L182.85 159.35 182.4 159.7 181.55 160.3 162.1 170.45 160.7 170.95 Q155.25 172.8 149.5 174 L141.25 175.3 136.7 175.75 136.55 175.75 135.55 175.85 128.3 176.05 128 176.05 126.65 176.05 121.45 175.9 119.75 175.8 114.75 175.3 112.7 175.05 106.6 174 Q100.75 172.8 95.35 170.95 83.3 166.8 73.2 159.35 L71.15 157.8 Q64.45 145.2 64.05 130 64.7 104.75 82.75 86.75 87.1 82.4 91.9 79.05 93.6 95.05 102.2 107.05 112.9 122 128 122 143.1 122 153.8 107.05 162.4 95.05 164.1 79 168.9 82.35 173.3 86.75 191.3 104.75 192 130 M120.55 153.4 Q118.95 151.8 116.7 151.8 114.55 151.8 112.95 153.3 L112.8 153.45 Q110.05 156.2 109.15 159.35 108.3 162.45 109.9 164.05 110.55 164.7 111.5 164.95 L114.6 164.75 Q116.95 164.1 119.15 162.35 L120.5 161.15 120.65 161 Q122.15 159.45 122.15 157.25 122.15 155 120.55 153.4 M146.1 164.05 Q147.7 162.45 146.85 159.35 146 156.2 143.2 153.45 L143.05 153.3 Q141.5 151.8 139.3 151.8 137.05 151.8 135.45 153.4 133.85 155 133.85 157.25 133.85 159.45 135.35 161 L135.5 161.15 136.9 162.35 Q139.05 164.1 141.4 164.75 L144.55 164.95 Q145.45 164.7 146.1 164.05"/>
+ <path stroke="none" fill="#2ABD68" d="M160.7 170.95 L162.1 170.45 181.55 160.3 182.4 159.7 182.85 159.35 184.85 157.85 Q180.45 166.1 173.3 173.25 160.95 185.6 145.25 189.85 L141.25 190.75 141.25 175.3 149.5 174 153.15 177.1 Q155.5 179.05 157.85 175.35 L160.7 170.95 M114.75 190.75 L110.75 189.8 Q95.1 185.6 82.75 173.25 75.6 166.1 71.15 157.8 L73.2 159.35 Q83.3 166.8 95.35 170.95 L98.15 175.35 Q100.5 179.05 102.85 177.1 L106.6 174 112.7 175.05 114.75 175.3 114.75 190.75 M119.75 175.8 L121.45 175.9 126.65 176.05 128 176.05 128.3 176.05 135.55 175.85 136.55 175.75 128 176.25 119.75 175.8"/>
+ <path stroke="none" fill="#28BD68" d="M91.9 79.05 Q107.7 68 128 68 148.35 68 164.1 79 162.4 95.05 153.8 107.05 143.1 122 128 122 112.9 122 102.2 107.05 93.6 95.05 91.9 79.05 M152 93.5 L152.05 93.45 Q152.35 92.45 152.05 91.55 L152.05 91.5 Q151.6 90.35 150.6 89.95 L150.65 90 Q129.05 78.95 105.45 89.95 L105.5 89.95 Q104.35 90.4 104 91.55 103.65 92.45 104 93.45 104.35 94.45 105.45 95 L105.45 95.05 Q129.05 105.95 150.65 95 151.6 94.5 152 93.5 M113.45 112.55 L113.4 112.55 Q128.65 119.6 142.65 112.55 L142.7 112.5 Q143.55 112.1 143.85 111.2 L143.8 111.3 Q144.1 110.45 143.85 109.75 143.55 108.8 142.7 108.4 L142.65 108.4 Q128.7 101.25 113.5 108.35 112.45 108.75 112.2 109.75 111.9 110.45 112.25 111.3 112.5 112.1 113.45 112.55"/>
+ <path stroke="none" fill="#31DB79" d="M113.45 112.55 Q112.5 112.1 112.25 111.3 111.9 110.45 112.2 109.75 112.45 108.75 113.5 108.35 128.7 101.25 142.65 108.4 L142.7 108.4 Q143.55 108.8 143.85 109.75 144.1 110.45 143.8 111.3 L143.85 111.2 Q143.55 112.1 142.7 112.5 L142.65 112.55 Q128.65 119.6 113.4 112.55 L113.45 112.55 M152 93.5 Q151.6 94.5 150.65 95 129.05 105.95 105.45 95.05 L105.45 95 Q104.35 94.45 104 93.45 103.65 92.45 104 91.55 104.35 90.4 105.5 89.95 L105.45 89.95 Q129.05 78.95 150.65 90 L150.6 89.95 Q151.6 90.35 152.05 91.5 L152.05 91.55 Q152.35 92.45 152.05 93.45 L152 93.5"/>
+ <path stroke="none" fill="#24A35A" d="M120.55 153.4 Q122.15 155 122.15 157.25 122.15 159.45 120.65 161 L120.5 161.15 119.15 162.35 Q116.95 164.1 114.6 164.75 L111.5 164.95 Q110.55 164.7 109.9 164.05 108.3 162.45 109.15 159.35 110.05 156.2 112.8 153.45 L112.95 153.3 Q114.55 151.8 116.7 151.8 118.95 151.8 120.55 153.4 M146.1 164.05 Q145.45 164.7 144.55 164.95 L141.4 164.75 Q139.05 164.1 136.9 162.35 L135.5 161.15 135.35 161 Q133.85 159.45 133.85 157.25 133.85 155 135.45 153.4 137.05 151.8 139.3 151.8 141.5 151.8 143.05 153.3 L143.2 153.45 Q146 156.2 146.85 159.35 147.7 162.45 146.1 164.05"/>
+ <path stroke="none" fill="#E74C3C" d="M128 196.75 L120.25 204.55 Q119.3 205.45 117.95 205.45 116.65 205.45 115.7 204.55 114.75 203.55 114.75 202.25 L114.75 190.75 114.75 175.3 119.75 175.8 128 176.25 128 196.75"/>
+ <path stroke="none" fill="#FFFFFF" d="M95.35 170.95 Q100.75 172.8 106.6 174 L102.85 177.1 Q100.5 179.05 98.15 175.35 L95.35 170.95 M149.5 174 Q155.25 172.8 160.7 170.95 L157.85 175.35 Q155.5 179.05 153.15 177.1 L149.5 174"/>
+ <path stroke="none" fill="#D24436" d="M141.25 190.75 L141.25 202.25 Q141.25 203.55 140.3 204.55 139.35 205.45 138.05 205.45 136.7 205.45 135.8 204.55 L128 196.75 128 176.25 136.55 175.75 136.7 175.75 141.25 175.3 141.25 190.75"/>
+ <path stroke="none" fill="#FFFFFF" d="M166.85 143.7 Q166.85 140.05 165.9 137.6 164.9 135.1 163.5 135.05 L163.4 135.05 Q162.05 135.1 161.05 137.6 160.05 140.05 160.05 143.7 L160.05 144.55 Q160.15 147.5 161.05 149.65 162.05 152.1 163.4 152.15 L163.5 152.15 Q164.9 152.1 165.9 149.65 166.75 147.5 166.85 144.55 L166.85 143.7 M179.65 143.8 Q179.65 149.5 175.6 153.4 171.55 157.5 165.85 157.5 160.25 157.5 156.1 153.4 152.15 149.5 152.15 143.8 152.15 138.05 156.1 134.05 160.25 130 165.85 130 171.55 130 175.6 134.05 179.65 138.05 179.65 143.8 M89.95 143.7 L89.95 144.55 Q90.05 147.5 90.9 149.65 91.9 152.1 93.3 152.15 L93.4 152.15 Q94.7 152.1 95.75 149.65 96.6 147.5 96.7 144.55 L96.75 143.7 Q96.75 140.05 95.75 137.6 94.7 135.1 93.4 135.05 L93.3 135.05 Q91.9 135.1 90.9 137.6 89.95 140.05 89.95 143.7 M77.15 143.8 Q77.15 138.05 81.2 134.05 85.25 130 90.95 130 96.55 130 100.7 134.05 104.65 138.05 104.65 143.8 104.65 149.5 100.7 153.4 96.55 157.5 90.95 157.5 85.25 157.5 81.2 153.4 77.15 149.5 77.15 143.8"/>
+ <path stroke="none" fill="#5B5B5B" d="M166.85 143.7 L166.85 144.55 Q166.75 147.5 165.9 149.65 164.9 152.1 163.5 152.15 L163.4 152.15 Q162.05 152.1 161.05 149.65 160.15 147.5 160.05 144.55 L160.05 143.7 Q160.05 140.05 161.05 137.6 162.05 135.1 163.4 135.05 L163.5 135.05 Q164.9 135.1 165.9 137.6 166.85 140.05 166.85 143.7 M89.95 143.7 Q89.95 140.05 90.9 137.6 91.9 135.1 93.3 135.05 L93.4 135.05 Q94.7 135.1 95.75 137.6 96.75 140.05 96.75 143.7 L96.7 144.55 Q96.6 147.5 95.75 149.65 94.7 152.1 93.4 152.15 L93.3 152.15 Q91.9 152.1 90.9 149.65 90.05 147.5 89.95 144.55 L89.95 143.7"/>
+ <path stroke="none" fill="#FFCC00" d="M460.05 92.4 Q459.5 87.45 456.55 82.4 452.9 76.05 447.65 73.05 442.9 70.45 439.5 71.85 L437.35 73.05 Q427.7 78.65 422.95 86.5 L422.35 86 421.4 85.25 422.15 83.85 Q426.9 75.1 437.35 69.05 L439.5 67.85 Q442.9 66.45 447.65 69.05 452.9 72.05 456.55 78.4 460.2 84.65 460.15 90.65 L460.05 92.4 M345 86.45 Q340.2 78.6 330.6 73.05 L328.45 71.85 Q325.05 70.45 320.3 73.05 315.05 76.05 311.4 82.4 308.45 87.45 307.95 92.4 L307.8 90.65 Q307.75 84.65 311.4 78.4 315.05 72.05 320.3 69.05 325.05 66.45 328.45 67.85 L330.6 69.05 Q341.05 75.1 345.8 83.85 L346.55 85.25 345 86.45"/>
+ <path stroke="none" fill="#E9BB00" d="M345 86.45 Q341.9 88.85 339 91.75 335.4 87.7 330 84.55 L328.25 83.6 Q325.45 82.45 321.5 84.55 317.2 87.05 314.2 92.3 312.25 95.6 311.6 98.85 L310.85 98.35 Q308.4 96.5 307.95 92.4 308.45 87.45 311.4 82.4 315.05 76.05 320.3 73.05 325.05 70.45 328.45 71.85 L330.6 73.05 Q340.2 78.6 345 86.45 M422.95 86.5 Q427.7 78.65 437.35 73.05 L439.5 71.85 Q442.9 70.45 447.65 73.05 452.9 76.05 456.55 82.4 459.5 87.45 460.05 92.4 459.55 96.5 457.1 98.35 L456.35 98.85 Q455.7 95.6 453.75 92.3 450.75 87.05 446.45 84.55 442.5 82.45 439.7 83.6 L437.95 84.55 Q432.55 87.7 428.95 91.75 L422.95 86.5"/>
+ <path stroke="none" fill="#CBA200" d="M428.95 91.75 Q432.55 87.7 437.95 84.55 L439.7 83.6 Q442.5 82.45 446.45 84.55 450.75 87.05 453.75 92.3 455.7 95.6 456.35 98.85 L455.05 99.6 Q447.15 104.15 439.55 105.2 435.4 98.15 429.25 92 L428.95 91.75 M311.6 98.85 Q312.25 95.6 314.2 92.3 317.2 87.05 321.5 84.55 325.45 82.45 328.25 83.6 L330 84.55 Q335.4 87.7 339 91.75 L338.7 92 Q332.55 98.15 328.4 105.2 320.8 104.15 312.9 99.6 L311.6 98.85"/>
+ <path stroke="none" fill="#EEBE00" d="M347.85 79.55 Q363.65 68.5 383.95 68.5 404.3 68.5 420.05 79.5 418.35 95.55 409.75 107.55 399.05 122.5 383.95 122.5 368.85 122.5 358.15 107.55 349.55 95.55 347.85 79.55 M371.4 110.8 Q371.6 111.6 372.2 112.25 372.85 112.75 373.7 112.9 L379.9 113.55 Q380.75 113.65 381.5 113.2 382.25 112.75 382.6 111.95 L385.15 106.25 Q385.5 105.45 385.35 104.65 385.15 103.75 384.55 103.2 L379.9 99 Q379.25 98.4 378.4 98.35 377.55 98.25 376.8 98.65 L371.35 101.8 Q370.6 102.2 370.25 103.05 369.9 103.8 370.1 104.7 L371.4 110.8 M380 87.15 Q380.45 86.45 380.45 85.6 380.45 84.75 380 84.05 L375.05 77.25 373.75 76.3 Q372.9 76 372.1 76.3 L364.15 78.85 Q363.3 79.15 362.8 79.85 362.3 80.5 362.3 81.35 L362.3 89.75 Q362.3 90.65 362.8 91.35 363.3 92 364.15 92.25 L372.1 94.85 Q372.9 95.1 373.75 94.85 L375.05 93.95 380 87.15 M392.65 103.1 Q393.35 103.6 394.2 103.6 395.1 103.6 395.8 103.1 L405.5 96.05 Q406.15 95.5 406.4 94.7 406.65 93.9 406.4 93.1 L402.7 81.65 Q402.45 80.8 401.8 80.3 401.1 79.8 400.2 79.8 L388.15 79.8 Q387.25 79.8 386.6 80.3 385.9 80.8 385.65 81.65 L381.95 93.1 Q381.7 93.9 381.95 94.7 382.2 95.5 382.9 96.05 L392.65 103.1"/>
+ <path stroke="none" fill="#FFCC00" d="M447.95 130.5 Q447.5 145.7 440.8 158.35 438.85 162.05 436.35 165.5 L436.3 165.5 Q433.15 169.8 429.2 173.75 L424.55 178.05 Q420.15 176.45 420.2 171.75 419.1 160.5 409.75 152.25 399.25 143 384.4 143 369.55 143 359 152.25 349.7 160.5 348.65 171.75 347.3 176.55 343.45 178.15 L338.65 173.75 Q331.05 166.15 326.55 157.3 L321 140.6 321 140.4 320.8 139.3 320.75 139.05 320.7 138.55 320.6 138 320.45 136.75 320.45 136.55 320.35 135.95 320.35 135.7 320.3 135.5 320.3 135.25 320.25 134.95 320.2 134.3 320.2 134.05 320.15 133.75 320 130.5 Q320.65 105.25 338.7 87.25 343.05 82.9 347.85 79.55 349.55 95.55 358.15 107.55 368.85 122.5 383.95 122.5 399.05 122.5 409.75 107.55 418.35 95.55 420.05 79.5 424.85 82.85 429.25 87.25 447.25 105.25 447.95 130.5 M392.65 103.1 L382.9 96.05 Q382.2 95.5 381.95 94.7 381.7 93.9 381.95 93.1 L385.65 81.65 Q385.9 80.8 386.6 80.3 387.25 79.8 388.15 79.8 L400.2 79.8 Q401.1 79.8 401.8 80.3 402.45 80.8 402.7 81.65 L406.4 93.1 Q406.65 93.9 406.4 94.7 406.15 95.5 405.5 96.05 L395.8 103.1 Q395.1 103.6 394.2 103.6 393.35 103.6 392.65 103.1 M380 87.15 L375.05 93.95 373.75 94.85 Q372.9 95.1 372.1 94.85 L364.15 92.25 Q363.3 92 362.8 91.35 362.3 90.65 362.3 89.75 L362.3 81.35 Q362.3 80.5 362.8 79.85 363.3 79.15 364.15 78.85 L372.1 76.3 Q372.9 76 373.75 76.3 L375.05 77.25 380 84.05 Q380.45 84.75 380.45 85.6 380.45 86.45 380 87.15 M371.4 110.8 L370.1 104.7 Q369.9 103.8 370.25 103.05 370.6 102.2 371.35 101.8 L376.8 98.65 Q377.55 98.25 378.4 98.35 379.25 98.4 379.9 99 L384.55 103.2 Q385.15 103.75 385.35 104.65 385.5 105.45 385.15 106.25 L382.6 111.95 Q382.25 112.75 381.5 113.2 380.75 113.65 379.9 113.55 L373.7 112.9 Q372.85 112.75 372.2 112.25 371.6 111.6 371.4 110.8"/>
+ <path stroke="none" fill="#FFD738" d="M320 130.5 L319.95 128.5 Q319.95 101.95 338.7 83.25 342.95 79 347.55 75.75 363.45 64.5 383.95 64.5 404.5 64.5 420.35 75.7 425 79 429.25 83.25 447.95 101.95 447.95 128.5 L447.95 130.5 Q447.25 105.25 429.25 87.25 424.85 82.85 420.05 79.5 404.3 68.5 383.95 68.5 363.65 68.5 347.85 79.55 343.05 82.9 338.7 87.25 320.65 105.25 320 130.5"/>
+ <path stroke="none" fill="#D2A800" d="M424.55 178.05 L420.35 181.25 Q404.45 192.5 383.95 192.5 363.4 192.5 347.55 181.3 L343.45 178.15 Q347.3 176.55 348.65 171.75 349.7 160.5 359 152.25 369.55 143 384.4 143 399.25 143 409.75 152.25 419.1 160.5 420.2 171.75 420.15 176.45 424.55 178.05 M402.9 156.5 Q401.4 155 398.45 155.85 395.5 156.65 392.85 159.3 L392.7 159.45 Q391.3 160.9 391.3 163 391.3 165.15 392.8 166.65 394.3 168.15 396.45 168.15 398.5 168.15 400 166.75 L400.15 166.6 Q402.8 163.95 403.6 161 404.45 158.05 402.9 156.5 M368.8 166.75 Q370.3 168.15 372.35 168.15 374.5 168.15 376 166.65 377.5 165.15 377.5 163 377.5 160.9 376.1 159.45 L375.95 159.3 Q373.3 156.65 370.35 155.85 367.4 155 365.9 156.5 364.35 158.05 365.2 161 366 163.95 368.65 166.6 L368.8 166.75"/>
+ <path stroke="none" fill="#A38200" d="M368.8 166.75 L368.65 166.6 Q366 163.95 365.2 161 364.35 158.05 365.9 156.5 367.4 155 370.35 155.85 373.3 156.65 375.95 159.3 L376.1 159.45 Q377.5 160.9 377.5 163 377.5 165.15 376 166.65 374.5 168.15 372.35 168.15 370.3 168.15 368.8 166.75 M402.9 156.5 Q404.45 158.05 403.6 161 402.8 163.95 400.15 166.6 L400 166.75 Q398.5 168.15 396.45 168.15 394.3 168.15 392.8 166.65 391.3 165.15 391.3 163 391.3 160.9 392.7 159.45 L392.85 159.3 Q395.5 156.65 398.45 155.85 401.4 155 402.9 156.5"/>
+ <path stroke="none" fill="#FFFFFF" d="M334.9 135.05 Q334.9 129.85 338.55 126.2 342.2 122.55 347.4 122.55 352.5 122.55 356.2 126.2 359.85 129.85 359.85 135.05 359.85 140.2 356.2 143.8 352.5 147.5 347.4 147.5 342.2 147.5 338.55 143.8 334.9 140.2 334.9 135.05 M339.6 135.25 Q339.6 138.85 342.15 141.3 344.65 143.85 348.3 143.85 351.85 143.85 354.4 141.3 356.95 138.85 356.95 135.25 356.95 131.65 354.4 129.1 351.85 126.6 348.3 126.6 344.65 126.6 342.15 129.1 339.6 131.65 339.6 135.25 M427.15 135.25 Q427.15 131.65 424.65 129.1 422.15 126.6 418.5 126.6 414.95 126.6 412.35 129.1 409.85 131.65 409.85 135.25 409.85 138.85 412.35 141.3 414.95 143.85 418.5 143.85 422.15 143.85 424.65 141.3 427.15 138.85 427.15 135.25 M431.9 135.05 Q431.9 140.2 428.25 143.8 424.6 147.5 419.4 147.5 414.3 147.5 410.6 143.8 406.95 140.2 406.95 135.05 406.95 129.85 410.6 126.2 414.3 122.55 419.4 122.55 424.6 122.55 428.25 126.2 431.9 129.85 431.9 135.05"/>
+ <path stroke="none" fill="#5B5B5B" d="M339.6 135.25 Q339.6 131.65 342.15 129.1 344.65 126.6 348.3 126.6 351.85 126.6 354.4 129.1 356.95 131.65 356.95 135.25 356.95 138.85 354.4 141.3 351.85 143.85 348.3 143.85 344.65 143.85 342.15 141.3 339.6 138.85 339.6 135.25 M427.15 135.25 Q427.15 138.85 424.65 141.3 422.15 143.85 418.5 143.85 414.95 143.85 412.35 141.3 409.85 138.85 409.85 135.25 409.85 131.65 412.35 129.1 414.95 126.6 418.5 126.6 422.15 126.6 424.65 129.1 427.15 131.65 427.15 135.25"/>
+ <path stroke="none" fill="#CBA200" d="M417.15 43.95 L416.95 44.8 Q415.8 49 412 51.25 L411.5 51.55 Q410.2 52.2 408.85 52.5 L402.3 71.15 402.3 71.2 Q401.8 72.45 400.65 73.05 L400.65 73.1 398.25 73.35 398.3 73.35 Q397.1 73.1 396.35 71.9 L396.3 71.8 Q395.65 70.7 395.95 69.45 L399.6 50.05 Q398.4 48.9 397.45 47.4 L397.45 47.35 Q396.55 45.8 396.25 44.25 L396.45 43.3 Q397.25 40.15 399.5 38.15 400.35 37.4 401.35 36.8 405.15 34.6 409.45 35.75 413.65 36.9 415.9 40.7 416.8 42.3 417.15 43.95 M350.8 43.95 Q351.15 42.3 352.05 40.7 354.25 36.9 358.5 35.75 362.8 34.6 366.55 36.85 L366.6 36.85 367.95 37.8 Q370.55 39.85 371.5 43.3 L371.7 44.2 Q371.4 45.85 370.5 47.4 L370.5 47.45 368.35 50.05 372.05 69.5 372 69.45 Q372.2 70.65 371.7 71.7 L371.55 71.95 371.6 71.95 Q370.9 73 369.7 73.4 L367.3 73.15 367.2 73.1 Q366.15 72.5 365.7 71.2 L365.65 71.2 359.15 52.5 Q357.5 52.15 355.95 51.3 L355.7 51.15 Q352.1 48.9 351 44.8 L350.8 43.95"/>
+ <path stroke="none" fill="#DBAF00" d="M350.8 43.95 Q350.05 40.1 352.05 36.7 354.25 32.9 358.5 31.75 362.8 30.6 366.55 32.85 L366.6 32.85 367.95 33.8 Q370.55 35.85 371.5 39.3 372.2 41.85 371.7 44.2 L371.5 43.3 Q370.55 39.85 367.95 37.8 L366.6 36.85 366.55 36.85 Q362.8 34.6 358.5 35.75 354.25 36.9 352.05 40.7 351.15 42.3 350.8 43.95 M396.25 44.25 Q395.75 41.85 396.45 39.3 397.25 36.15 399.5 34.15 400.35 33.4 401.35 32.8 405.15 30.6 409.45 31.75 413.65 32.9 415.9 36.7 417.9 40.1 417.15 43.95 416.8 42.3 415.9 40.7 413.65 36.9 409.45 35.75 405.15 34.6 401.35 36.8 400.35 37.4 399.5 38.15 397.25 40.15 396.45 43.3 L396.25 44.25"/>
+ <path stroke="none" fill="#774B2A" d="M60.05 307.15 Q60.05 300.2 65.05 295.25 70 290.3 76.9 290.3 83.95 290.3 88.9 295.25 93.9 300.2 93.9 307.15 93.9 314.2 88.9 319.1 83.95 324.15 76.9 324.15 70 324.15 65.05 319.1 60.05 314.2 60.05 307.15 M195.95 307.15 Q195.95 314.2 190.95 319.1 186 324.15 179.1 324.15 172.05 324.15 167.1 319.1 162.1 314.2 162.1 307.15 162.1 300.2 167.1 295.25 172.05 290.3 179.1 290.3 186 290.3 190.95 295.25 195.95 300.2 195.95 307.15"/>
+ <path stroke="none" fill="#8E5A32" d="M195.95 307.15 Q195.95 300.2 190.95 295.25 186 290.3 179.1 290.3 172.05 290.3 167.1 295.25 162.1 300.2 162.1 307.15 162.1 314.2 167.1 319.1 172.05 324.15 179.1 324.15 186 324.15 190.95 319.1 195.95 314.2 195.95 307.15 M41.55 309.15 Q42.2 298.05 50.35 289.9 59.1 281.15 71.5 281.15 83.85 281.15 92.75 289.9 100.8 298.05 101.45 309.15 100.8 320.25 92.75 328.35 83.85 337.15 71.5 337.15 59.1 337.15 50.35 328.35 42.2 320.25 41.55 309.15 M60.05 307.15 Q60.05 314.2 65.05 319.1 70 324.15 76.9 324.15 83.95 324.15 88.9 319.1 93.9 314.2 93.9 307.15 93.9 300.2 88.9 295.25 83.95 290.3 76.9 290.3 70 290.3 65.05 295.25 60.05 300.2 60.05 307.15 M214.45 309.15 Q213.8 320.25 205.65 328.35 196.9 337.15 184.5 337.15 172.15 337.15 163.25 328.35 155.2 320.25 154.55 309.15 155.2 298.05 163.25 289.9 172.15 281.15 184.5 281.15 196.9 281.15 205.65 289.9 213.8 298.05 214.45 309.15"/>
+ <path stroke="none" fill="#B67340" d="M214.45 309.15 Q213.8 298.05 205.65 289.9 196.9 281.15 184.5 281.15 172.15 281.15 163.25 289.9 155.2 298.05 154.55 309.15 L154.5 307.15 Q154.5 294.8 163.25 285.9 172.15 277.15 184.5 277.15 196.9 277.15 205.65 285.9 214.5 294.8 214.5 307.15 L214.45 309.15 M101.45 309.15 Q100.8 298.05 92.75 289.9 83.85 281.15 71.5 281.15 59.1 281.15 50.35 289.9 42.2 298.05 41.55 309.15 L41.5 307.15 Q41.5 294.8 50.35 285.9 59.1 277.15 71.5 277.15 83.85 277.15 92.75 285.9 101.5 294.8 101.5 307.15 L101.45 309.15"/>
+ <path stroke="none" fill="#B4723F" d="M85 274.6 L82.75 276.7 Q64.55 294.9 64 320.5 L64 320 Q64 293.45 82.75 274.7 L83.8 273.7 Q102.2 256 128 256 153.85 256 172.25 273.7 L173.25 274.7 Q176.95 278.4 179.95 282.45 192 298.7 192 320 L192 320.5 Q191.55 300.15 179.95 284.45 176.95 280.4 173.25 276.7 L171.05 274.6 Q153 258 128 258 103.05 258 85 274.6"/>
+ <path stroke="none" fill="#A16639" d="M85 274.6 Q87.75 276.5 91.4 278.25 106.55 285.5 128 285.5 149.45 285.5 164.6 278.25 168.25 276.5 171.05 274.6 L173.25 276.7 Q176.95 280.4 179.95 284.45 191.55 300.15 192 320.5 L192 321 192 322 Q191.45 342 179.95 357.5 L177.85 360.15 176.45 361.8 173.25 365.2 Q164.05 374.45 152.95 379.15 141.45 384 128 384 119.45 384 111.75 382.05 107.3 380.95 103.1 379.15 91.95 374.45 82.75 365.2 L79.55 361.8 Q64.65 344.9 64 322 L64 321 64 320.5 Q64.55 294.9 82.75 276.7 L85 274.6 M168 299.85 Q160.6 292.45 150.2 292.45 139.7 292.45 132.35 299.85 130.8 301.35 128 301.35 125.2 301.35 123.7 299.85 116.3 292.45 105.9 292.45 95.45 292.45 88.05 299.85 80.65 307.25 80.65 317.65 80.65 328.1 88.05 335.55 L88.1 335.55 92.3 338.95 Q92.35 353.6 102.75 363.95 106.9 368.1 111.75 370.6 119.1 374.4 128 374.4 142.8 374.4 153.3 363.95 L156.65 360.15 Q163.65 351 163.75 338.95 L168 335.55 Q175.4 328.1 175.4 317.65 175.4 307.25 168 299.85 M133.3 333.7 Q135.25 331.75 137.4 331.1 139.65 330.5 140.75 331.6 141.85 332.7 141.25 334.95 140.65 337.1 138.65 339.05 L138.55 339.2 Q137.45 340.25 135.95 340.25 134.35 340.25 133.25 339.15 132.1 338 132.1 336.4 132.1 334.85 133.15 333.8 L133.3 333.7 M123.65 339.15 Q122.45 340.25 120.9 340.25 119.35 340.25 118.25 339.2 L118.15 339.05 Q116.15 337.1 115.6 334.95 115 332.7 116.1 331.6 117.25 330.5 119.45 331.1 121.65 331.75 123.55 333.7 L123.7 333.8 Q124.75 334.85 124.75 336.4 124.75 338 123.65 339.15"/>
+ <path stroke="none" fill="#AA6C3B" d="M171.05 274.6 Q168.25 276.5 164.6 278.25 149.45 285.5 128 285.5 106.55 285.5 91.4 278.25 87.75 276.5 85 274.6 103.05 258 128 258 153 258 171.05 274.6"/>
+ <path stroke="none" fill="#FFFFFF" d="M163.1 319.15 Q163.1 315.85 160.85 313.7 158.6 311.55 155.45 311.55 152.35 311.55 150 313.7 147.75 315.85 147.75 319.15 147.75 322.3 150 324.45 152.35 326.75 155.45 326.75 158.6 326.75 160.85 324.45 163.1 322.3 163.1 319.15 M168.95 318.9 Q168.95 323.95 165.45 327.4 161.85 331.05 156.75 331.05 151.75 331.05 148.2 327.4 144.6 323.95 144.6 318.9 144.6 313.85 148.2 310.3 151.75 306.8 156.75 306.8 161.85 306.8 165.45 310.3 168.95 313.85 168.95 318.9 M111.75 343.8 L114.35 344.25 Q129.5 349.55 142.1 344.45 143.9 343.7 145.75 343.85 148.65 351.5 145.75 360.15 130.15 365.8 111.75 360.15 108.5 351.05 111.75 343.8 M87.75 318.9 Q87.75 313.85 91.35 310.3 94.95 306.8 99.95 306.8 104.95 306.8 108.65 310.3 112.15 313.85 112.15 318.9 112.15 323.95 108.65 327.4 104.95 331.05 99.95 331.05 94.95 331.05 91.35 327.4 87.75 323.95 87.75 318.9 M93.7 319.15 Q93.7 322.3 95.95 324.45 98.1 326.75 101.3 326.75 104.45 326.75 106.7 324.45 108.95 322.3 108.95 319.15 108.95 315.85 106.7 313.7 104.45 311.55 101.3 311.55 98.1 311.55 95.95 313.7 93.7 315.85 93.7 319.15"/>
+ <path stroke="none" fill="#5B5B5B" d="M93.7 319.15 Q93.7 315.85 95.95 313.7 98.1 311.55 101.3 311.55 104.45 311.55 106.7 313.7 108.95 315.85 108.95 319.15 108.95 322.3 106.7 324.45 104.45 326.75 101.3 326.75 98.1 326.75 95.95 324.45 93.7 322.3 93.7 319.15 M163.1 319.15 Q163.1 322.3 160.85 324.45 158.6 326.75 155.45 326.75 152.35 326.75 150 324.45 147.75 322.3 147.75 319.15 147.75 315.85 150 313.7 152.35 311.55 155.45 311.55 158.6 311.55 160.85 313.7 163.1 315.85 163.1 319.15"/>
+ <path stroke="none" fill="#BF8559" d="M168.95 318.9 Q168.95 313.85 165.45 310.3 161.85 306.8 156.75 306.8 151.75 306.8 148.2 310.3 144.6 313.85 144.6 318.9 144.6 323.95 148.2 327.4 151.75 331.05 156.75 331.05 161.85 331.05 165.45 327.4 168.95 323.95 168.95 318.9 M168 299.85 Q175.4 307.25 175.4 317.65 175.4 328.1 168 335.55 L163.75 338.95 Q163.65 351 156.65 360.15 L153.3 363.95 Q142.8 374.4 128 374.4 119.1 374.4 111.75 370.6 106.9 368.1 102.75 363.95 92.35 353.6 92.3 338.95 L88.1 335.55 88.05 335.55 Q80.65 328.1 80.65 317.65 80.65 307.25 88.05 299.85 95.45 292.45 105.9 292.45 116.3 292.45 123.7 299.85 125.2 301.35 128 301.35 130.8 301.35 132.35 299.85 139.7 292.45 150.2 292.45 160.6 292.45 168 299.85 M133.3 333.7 L133.15 333.8 Q132.1 334.85 132.1 336.4 132.1 338 133.25 339.15 134.35 340.25 135.95 340.25 137.45 340.25 138.55 339.2 L138.65 339.05 Q140.65 337.1 141.25 334.95 141.85 332.7 140.75 331.6 139.65 330.5 137.4 331.1 135.25 331.75 133.3 333.7 M123.65 339.15 Q124.75 338 124.75 336.4 124.75 334.85 123.7 333.8 L123.55 333.7 Q121.65 331.75 119.45 331.1 117.25 330.5 116.1 331.6 115 332.7 115.6 334.95 116.15 337.1 118.15 339.05 L118.25 339.2 Q119.35 340.25 120.9 340.25 122.45 340.25 123.65 339.15 M145.75 343.85 Q143.9 343.7 142.1 344.45 129.5 349.55 114.35 344.25 L111.75 343.8 Q110 343.8 108.3 344.6 105.3 346.05 104.25 349.2 103.15 352.25 104.6 355.25 106 358.2 109.15 359.3 L111.75 360.15 Q130.15 365.8 145.75 360.15 L148.25 359.15 Q151.25 357.8 152.5 354.8 153.7 351.75 152.45 348.7 151.2 345.65 148.15 344.45 L145.75 343.85 M87.75 318.9 Q87.75 323.95 91.35 327.4 94.95 331.05 99.95 331.05 104.95 331.05 108.65 327.4 112.15 323.95 112.15 318.9 112.15 313.85 108.65 310.3 104.95 306.8 99.95 306.8 94.95 306.8 91.35 310.3 87.75 313.85 87.75 318.9"/>
+ <path stroke="none" fill="#E7E7E7" d="M111.75 343.8 Q108.5 351.05 111.75 360.15 L109.15 359.3 Q106 358.2 104.6 355.25 103.15 352.25 104.25 349.2 105.3 346.05 108.3 344.6 110 343.8 111.75 343.8 M145.75 360.15 Q148.65 351.5 145.75 343.85 L148.15 344.45 Q151.2 345.65 152.45 348.7 153.7 351.75 152.5 354.8 151.25 357.8 148.25 359.15 L145.75 360.15"/>
+ <path stroke="none" fill="#29454F" d="M704.75 174.55 Q700.45 178.85 692.8 177.3 685.35 175.75 678.95 169.55 L678.85 169.45 Q675.75 166.3 676.6 161.1 677.45 155.85 681.75 151.55 686 147.3 691.25 146.45 696.5 145.55 699.6 148.7 L699.7 148.8 Q705.9 155.2 707.45 162.65 709 170.3 704.75 174.55 M571.95 174.55 Q567.7 170.3 569.25 162.65 570.8 155.2 577 148.8 L577.1 148.7 Q580.2 145.55 585.45 146.45 590.7 147.3 594.95 151.55 599.25 155.85 600.1 161.1 600.95 166.3 597.85 169.45 L597.75 169.55 Q591.35 175.75 583.9 177.3 576.25 178.85 571.95 174.55"/>
+ <path stroke="none" fill="#447180" d="M702.35 130 Q701.65 104.75 683.65 86.75 679.25 82.35 674.45 79 658.7 68 638.35 68 618.05 68 602.25 79.05 597.45 82.4 593.1 86.75 575.05 104.75 574.4 130 L574.35 128 Q574.35 101.45 593.1 82.75 597.35 78.5 601.95 75.25 617.85 64 638.35 64 658.9 64 674.75 75.2 679.4 78.5 683.65 82.75 702.35 101.45 702.35 128 L702.35 130"/>
+ <path stroke="none" fill="#365A66" d="M702.35 130 Q701.9 145.2 695.2 157.85 693.25 161.55 690.75 165 L690.7 165 Q687.55 169.3 683.6 173.25 L678.95 177.55 676.35 179.65 673.35 177.5 Q658.85 168 638.35 168 617.85 168 603.35 177.5 L600.35 179.65 597.85 177.65 593.05 173.25 Q585.45 165.65 580.95 156.8 L575.4 140.1 575.4 139.9 575.2 138.8 575.15 138.55 575.1 138.05 575 137.5 574.85 136.25 574.85 136.05 574.75 135.45 574.75 135.2 574.7 135 574.7 134.75 574.65 134.45 574.6 133.8 574.6 133.55 574.55 133.25 574.4 130 Q575.05 104.75 593.1 86.75 597.45 82.4 602.25 79.05 618.05 68 638.35 68 658.7 68 674.45 79 679.25 82.35 683.65 86.75 701.65 104.75 702.35 130 M685.3 118.75 Q683.45 112.2 677.5 108.75 671.3 105.15 664.45 107 657.65 108.8 654.05 115.05 650.6 120.95 652.2 127.65 L652.35 128.2 Q655.6 140.3 662.8 147.5 669.95 154.7 676.8 152.9 683.65 151.05 686.2 141.2 688.7 131.4 685.45 119.3 L685.3 118.75 M654.1 145.4 Q653.35 140.55 649.7 136.85 L647.9 135.3 Q643.85 132.25 638.55 132.25 633.25 132.25 629.2 135.3 L627.35 136.85 Q623.7 140.55 622.95 145.4 L622.75 148 622.8 149.05 Q623.1 152.55 627.35 155.05 632 157.75 638.55 157.75 645.1 157.75 649.7 155.05 653.95 152.55 654.25 149.05 L654.3 148 654.1 145.4 M624.95 127.7 Q626.6 121 623.1 115.05 619.6 108.85 612.7 107.05 605.85 105.15 599.65 108.75 593.7 112.2 591.8 118.75 L591.6 119.3 Q588.4 131.4 591 141.25 593.6 151.05 600.4 152.95 607.3 154.75 614.45 147.5 621.55 140.35 624.75 128.25 L624.95 127.7"/>
+ <path stroke="none" fill="#D5EEF7" d="M624.95 127.7 L624.75 128.25 Q621.55 140.35 614.45 147.5 607.3 154.75 600.4 152.95 593.6 151.05 591 141.25 588.4 131.4 591.6 119.3 L591.8 118.75 Q593.7 112.2 599.65 108.75 605.85 105.15 612.7 107.05 619.6 108.85 623.1 115.05 626.6 121 624.95 127.7 M685.3 118.75 L685.45 119.3 Q688.7 131.4 686.2 141.2 683.65 151.05 676.8 152.9 669.95 154.7 662.8 147.5 655.6 140.3 652.35 128.2 L652.2 127.65 Q650.6 120.95 654.05 115.05 657.65 108.8 664.45 107 671.3 105.15 677.5 108.75 683.45 112.2 685.3 118.75"/>
+ <path stroke="none" fill="#FF9900" d="M622.95 145.4 Q623.7 140.55 627.35 136.85 L629.2 135.3 Q633.25 132.25 638.55 132.25 643.85 132.25 647.9 135.3 L649.7 136.85 Q653.35 140.55 654.1 145.4 653.4 147.4 649.7 148.9 645.1 150.8 638.55 150.8 632 150.8 627.35 148.9 623.65 147.4 622.95 145.4"/>
+ <path stroke="none" fill="#E08600" d="M622.95 145.4 Q623.65 147.4 627.35 148.9 632 150.8 638.55 150.8 645.1 150.8 649.7 148.9 653.4 147.4 654.1 145.4 L654.3 148 654.25 149.05 Q653.95 152.55 649.7 155.05 645.1 157.75 638.55 157.75 632 157.75 627.35 155.05 623.1 152.55 622.8 149.05 L622.75 148 622.95 145.4"/>
+ <path stroke="none" fill="#F2F9FB" d="M600.35 179.65 L603.35 177.5 Q617.85 168 638.35 168 658.85 168 673.35 177.5 L676.35 179.65 674.75 180.75 Q658.85 192 638.35 192 617.8 192 601.95 180.8 L600.35 179.65"/>
+ <path stroke="none" fill="#FFFFFF" d="M677.6 130.6 Q677.6 134.95 674.5 137.95 671.4 141.1 667.05 141.1 662.8 141.1 659.6 137.95 656.6 134.95 656.6 130.6 656.6 126.2 659.6 123.15 662.8 120.1 667.05 120.1 671.4 120.1 674.5 123.15 677.6 126.2 677.6 130.6 M672.85 132.55 Q672.85 129.75 670.95 127.9 669 125.95 666.25 125.95 663.55 125.95 661.55 127.9 659.65 129.75 659.65 132.55 L659.65 133.2 Q659.85 135.45 661.55 137.1 663.55 139 666.25 139 669 139 670.95 137.1 672.6 135.45 672.8 133.2 L672.85 132.55 M599.35 130.6 Q599.35 126.2 602.4 123.15 605.5 120.1 609.85 120.1 614.15 120.1 617.3 123.15 620.35 126.2 620.35 130.6 620.35 134.95 617.3 137.95 614.15 141.1 609.85 141.1 605.5 141.1 602.4 137.95 599.35 134.95 599.35 130.6 M604.1 132.55 L604.15 133.2 Q604.3 135.45 605.95 137.1 607.9 139 610.7 139 613.35 139 615.35 137.1 617.1 135.45 617.25 133.2 L617.3 132.55 Q617.3 129.75 615.35 127.9 613.35 125.95 610.7 125.95 607.9 125.95 605.95 127.9 604.1 129.75 604.1 132.55"/>
+ <path stroke="none" fill="#5B5B5B" d="M604.1 132.55 Q604.1 129.75 605.95 127.9 607.9 125.95 610.7 125.95 613.35 125.95 615.35 127.9 617.3 129.75 617.3 132.55 L617.25 133.2 Q617.1 135.45 615.35 137.1 613.35 139 610.7 139 607.9 139 605.95 137.1 604.3 135.45 604.15 133.2 L604.1 132.55 M672.85 132.55 L672.8 133.2 Q672.6 135.45 670.95 137.1 669 139 666.25 139 663.55 139 661.55 137.1 659.85 135.45 659.65 133.2 L659.65 132.55 Q659.65 129.75 661.55 127.9 663.55 125.95 666.25 125.95 669 125.95 670.95 127.9 672.85 129.75 672.85 132.55"/>
+ <path stroke="none" fill="#414040" d="M982.15 111 Q981.5 122.1 973.35 130.2 964.6 139 952.2 139 939.85 139 930.95 130.2 922.9 122.1 922.25 111 922.9 99.9 930.95 91.75 939.85 83 952.2 83 964.6 83 973.35 91.75 981.5 99.9 982.15 111 M963.65 109 Q963.65 102.05 958.65 97.1 953.7 92.15 946.8 92.15 939.75 92.15 934.8 97.1 929.8 102.05 929.8 109 929.8 116.05 934.8 120.95 939.75 126 946.8 126 953.7 126 958.65 120.95 963.65 116.05 963.65 109 M827.75 109 Q827.75 116.05 832.75 120.95 837.7 126 844.6 126 851.65 126 856.6 120.95 861.6 116.05 861.6 109 861.6 102.05 856.6 97.1 851.65 92.15 844.6 92.15 837.7 92.15 832.75 97.1 827.75 102.05 827.75 109 M809.25 111 Q809.9 99.9 818.05 91.75 826.8 83 839.2 83 851.55 83 860.45 91.75 868.5 99.9 869.15 111 868.5 122.1 860.45 130.2 851.55 139 839.2 139 826.8 139 818.05 130.2 809.9 122.1 809.25 111"/>
+ <path stroke="none" fill="#545353" d="M809.25 111 L809.2 109 Q809.2 96.65 818.05 87.75 826.8 79 839.2 79 851.55 79 860.45 87.75 869.2 96.65 869.2 109 L869.15 111 Q868.5 99.9 860.45 91.75 851.55 83 839.2 83 826.8 83 818.05 91.75 809.9 99.9 809.25 111 M922.25 111 L922.2 109 Q922.2 96.65 930.95 87.75 939.85 79 952.2 79 964.6 79 973.35 87.75 982.2 96.65 982.2 109 L982.15 111 Q981.5 99.9 973.35 91.75 964.6 83 952.2 83 939.85 83 930.95 91.75 922.9 99.9 922.25 111"/>
+ <path stroke="none" fill="#353434" d="M963.65 109 Q963.65 116.05 958.65 120.95 953.7 126 946.8 126 939.75 126 934.8 120.95 929.8 116.05 929.8 109 929.8 102.05 934.8 97.1 939.75 92.15 946.8 92.15 953.7 92.15 958.65 97.1 963.65 102.05 963.65 109 M827.75 109 Q827.75 102.05 832.75 97.1 837.7 92.15 844.6 92.15 851.65 92.15 856.6 97.1 861.6 102.05 861.6 109 861.6 116.05 856.6 120.95 851.65 126 844.6 126 837.7 126 832.75 120.95 827.75 116.05 827.75 109"/>
+ <path stroke="none" fill="#FFFFFF" d="M959.7 130 Q959 104.75 941 86.75 936.6 82.35 931.8 79 928.45 76.7 924.95 74.85 922.6 83.85 918.3 91.45 908.95 108 895.7 108 882.45 108 873.05 91.45 868.75 83.9 866.45 74.9 862.95 76.7 859.6 79.05 854.8 82.4 850.45 86.75 832.4 104.75 831.75 130 L831.7 128 Q831.7 101.45 850.45 82.75 854.7 78.5 859.3 75.25 862.4 73.05 865.65 71.35 879.15 64 895.7 64 912.25 64 925.8 71.3 929.05 73.05 932.1 75.2 936.75 78.5 941 82.75 959.7 101.45 959.7 128 L959.7 130"/>
+ <path stroke="none" fill="#F5F5F5" d="M959.7 130 Q959.25 145.2 952.55 157.85 950.6 161.55 948.1 165 L948.05 165 Q944.9 169.3 940.95 173.25 L936.3 177.55 Q934.25 179.25 932.1 180.75 L927.3 183.85 924.85 181.75 Q912.8 172 895.7 172 878.6 172 866.5 181.75 L864.1 183.85 859.3 180.8 855.2 177.65 850.4 173.25 Q842.8 165.65 838.3 156.8 L832.75 140.1 832.75 139.9 832.55 138.8 832.5 138.55 832.45 138.05 832.35 137.5 832.2 136.25 832.2 136.05 832.1 135.45 832.1 135.2 832.05 135 832.05 134.75 832 134.45 831.95 133.8 831.95 133.55 831.9 133.25 831.75 130 Q832.4 104.75 850.45 86.75 854.8 82.4 859.6 79.05 862.95 76.7 866.45 74.9 868.75 83.9 873.05 91.45 882.45 108 895.7 108 908.95 108 918.3 91.45 922.6 83.85 924.95 74.85 928.45 76.7 931.8 79 936.6 82.35 941 86.75 959 104.75 959.7 130"/>
+ <path stroke="none" fill="#E5E5E5" d="M864.1 183.85 L866.5 181.75 Q878.6 172 895.7 172 912.8 172 924.85 181.75 L927.3 183.85 Q913.15 192 895.7 192 878.2 192 864.1 183.85"/>
+ <path stroke="none" fill="#5B5B5B" d="M844.35 121.95 L844.35 121.9 Q846 115.9 851.3 112.85 856.7 109.75 862.7 111.35 868.65 112.9 871.8 118.3 874.9 123.65 873.3 129.65 L873.3 129.7 Q871.35 136.9 865.8 140.75 860.15 144.75 854.2 143.2 848.2 141.6 845.3 135.3 842.45 129.15 844.35 121.95 M850 125.4 Q850 129.25 852.7 131.85 855.45 134.65 859.3 134.65 863.1 134.65 865.85 131.85 868.55 129.25 868.55 125.4 868.55 121.55 865.85 118.85 863.1 116.15 859.3 116.15 855.45 116.15 852.7 118.85 850 121.55 850 125.4 M854.5 125.55 Q854.5 123.1 856.2 121.45 857.9 119.75 860.3 119.75 862.7 119.75 864.45 121.45 866.15 123.1 866.15 125.55 866.15 127.95 864.45 129.6 862.7 131.35 860.3 131.35 857.9 131.35 856.2 129.6 854.5 127.95 854.5 125.55 M946.05 121.95 Q947.95 129.15 945.1 135.3 942.2 141.6 936.2 143.2 930.25 144.75 924.6 140.75 919.05 136.9 917.1 129.7 L917.1 129.65 Q915.5 123.65 918.6 118.3 921.75 112.9 927.7 111.35 933.7 109.75 939.1 112.85 944.4 115.9 946.05 121.9 L946.05 121.95 M935.9 125.55 Q935.9 127.95 934.2 129.6 932.5 131.35 930.1 131.35 927.7 131.35 925.95 129.6 924.25 127.95 924.25 125.55 924.25 123.1 925.95 121.45 927.7 119.75 930.1 119.75 932.5 119.75 934.2 121.45 935.9 123.1 935.9 125.55 M940.4 125.4 Q940.4 121.55 937.7 118.85 934.95 116.15 931.1 116.15 927.3 116.15 924.55 118.85 921.85 121.55 921.85 125.4 921.85 129.25 924.55 131.85 927.3 134.65 931.1 134.65 934.95 134.65 937.7 131.85 940.4 129.25 940.4 125.4"/>
+ <path stroke="none" fill="#FFFFFF" d="M940.4 125.4 Q940.4 129.25 937.7 131.85 934.95 134.65 931.1 134.65 927.3 134.65 924.55 131.85 921.85 129.25 921.85 125.4 921.85 121.55 924.55 118.85 927.3 116.15 931.1 116.15 934.95 116.15 937.7 118.85 940.4 121.55 940.4 125.4 M850 125.4 Q850 121.55 852.7 118.85 855.45 116.15 859.3 116.15 863.1 116.15 865.85 118.85 868.55 121.55 868.55 125.4 868.55 129.25 865.85 131.85 863.1 134.65 859.3 134.65 855.45 134.65 852.7 131.85 850 129.25 850 125.4 M854.5 125.55 Q854.5 127.95 856.2 129.6 857.9 131.35 860.3 131.35 862.7 131.35 864.45 129.6 866.15 127.95 866.15 125.55 866.15 123.1 864.45 121.45 862.7 119.75 860.3 119.75 857.9 119.75 856.2 121.45 854.5 123.1 854.5 125.55 M935.9 125.55 Q935.9 123.1 934.2 121.45 932.5 119.75 930.1 119.75 927.7 119.75 925.95 121.45 924.25 123.1 924.25 125.55 924.25 127.95 925.95 129.6 927.7 131.35 930.1 131.35 932.5 131.35 934.2 129.6 935.9 127.95 935.9 125.55"/>
+ <path stroke="none" fill="#666666" d="M882.85 136.25 L882.65 133.9 882.65 133 Q882.95 130.6 886.45 128.9 890.3 127.05 895.7 127.05 901.1 127.05 904.95 128.9 908.4 130.6 908.75 133 L908.75 133.9 908.55 136.25 Q907.85 134.35 904.95 132.9 901.1 131.05 895.7 131.05 890.3 131.05 886.45 132.9 883.55 134.3 882.85 136.25"/>
+ <path stroke="none" fill="#464646" d="M900.15 146.25 L901 147.25 Q901.95 148.2 903.05 148.75 904.45 149.4 906.1 149.4 909.1 149.4 911.25 147.25 L912.5 145.6 913 145.15 913.7 145.2 918.4 147.65 918.85 148.15 918.8 148.8 917.3 151.1 916.25 152.25 Q912 156.45 906.1 156.45 900.2 156.45 896 152.25 L895.7 151.95 895.4 152.25 Q891.15 156.45 885.25 156.45 879.3 156.45 875.15 152.25 L874.1 151.1 872.6 148.9 Q872.4 148.55 872.55 148.25 872.6 147.9 872.95 147.7 L877.55 145.15 878.2 145.05 Q878.55 145.15 878.75 145.5 L880.1 147.25 Q882.25 149.4 885.25 149.4 886.9 149.4 888.35 148.75 L890.4 147.25 891.25 146.25 Q895.9 148 900.15 146.25"/>
+ <path stroke="none" fill="#5B5B5B" d="M900.15 146.25 Q895.9 148 891.25 146.25 888.6 145.3 886.45 143.15 883.5 140.2 882.85 136.25 883.55 134.3 886.45 132.9 890.3 131.05 895.7 131.05 901.1 131.05 904.95 132.9 907.85 134.35 908.55 136.25 907.9 140.2 904.95 143.15 902.8 145.3 900.15 146.25"/>
+ <path stroke="none" fill="#BDB6B6" d="M887.05 315.95 Q886.95 326.75 884.05 336.55 877.65 358.05 861.5 362.4 845.35 366.7 829.05 351.25 813.25 336.3 806.2 311.45 L805.85 310.2 Q804.5 305.2 804.35 300.4 804.65 290.65 809.9 281.6 818.2 267.2 834.25 262.8 850.45 258.55 864.9 266.95 879.35 275.25 883.65 291.35 L883.9 292.6 Q886.95 304.75 887.05 315.95 M924.1 301.75 L923.9 302.6 Q919.6 319.9 923.8 334.2 928.2 349 939.3 351.95 950.4 354.9 961.65 344.3 972.5 334 977.35 316.95 L977.6 316.1 Q980.55 305 974.8 295.05 969.1 285.15 958.05 282.1 946.9 279.2 937 284.95 927.05 290.7 924.1 301.75 M987.05 300.4 Q986.9 305.2 985.55 310.2 L985.2 311.45 Q978.15 336.3 962.35 351.25 946.05 366.7 929.9 362.4 913.75 358.05 907.35 336.55 904.45 326.75 904.35 315.95 904.45 304.75 907.5 292.6 L907.75 291.35 Q912.05 275.25 926.5 266.95 940.95 258.55 957.15 262.8 973.2 267.2 981.5 281.6 986.75 290.65 987.05 300.4 M867.3 301.75 Q864.35 290.7 854.4 284.95 844.5 279.2 833.35 282.1 822.3 285.15 816.6 295.05 810.85 305 813.8 316.1 L814.05 316.95 Q818.9 334 829.75 344.3 841 354.9 852.1 351.95 863.2 349 867.6 334.2 871.8 319.9 867.5 302.6 L867.3 301.75"/>
+ <path stroke="none" fill="#AFA8A8" d="M867.3 301.75 L867.5 302.6 Q871.8 319.9 867.6 334.2 863.2 349 852.1 351.95 841 354.9 829.75 344.3 818.9 334 814.05 316.95 L813.8 316.1 Q810.85 305 816.6 295.05 822.3 285.15 833.35 282.1 844.5 279.2 854.4 284.95 864.35 290.7 867.3 301.75 M924.1 301.75 Q927.05 290.7 937 284.95 946.9 279.2 958.05 282.1 969.1 285.15 974.8 295.05 980.55 305 977.6 316.1 L977.35 316.95 Q972.5 334 961.65 344.3 950.4 354.9 939.3 351.95 928.2 349 923.8 334.2 919.6 319.9 923.9 302.6 L924.1 301.75"/>
+ <path stroke="none" fill="#DBD9D9" d="M904.35 315.95 Q904.2 303.85 907.5 290.6 L907.75 289.35 Q912.05 273.25 926.5 264.95 940.95 256.55 957.15 260.8 973.2 265.2 981.5 279.6 987.3 289.6 987.05 300.4 986.75 290.65 981.5 281.6 973.2 267.2 957.15 262.8 940.95 258.55 926.5 266.95 912.05 275.25 907.75 291.35 L907.5 292.6 Q904.45 304.75 904.35 315.95 M887.05 315.95 Q886.95 304.75 883.9 292.6 L883.65 291.35 Q879.35 275.25 864.9 266.95 850.45 258.55 834.25 262.8 818.2 267.2 809.9 281.6 804.65 290.65 804.35 300.4 804.1 289.6 809.9 279.6 818.2 265.2 834.25 260.8 850.45 256.55 864.9 264.95 879.35 273.25 883.65 289.35 L883.9 290.6 Q887.2 303.85 887.05 315.95"/>
+ <path stroke="none" fill="#DBD9D9" d="M831.75 322 L831.7 320 Q831.7 293.45 850.45 274.75 854.7 270.5 859.3 267.25 861.05 266.05 862.85 264.95 877.45 256 895.7 256 914 256 928.6 264.9 L932.1 267.2 Q936.75 270.5 941 274.75 959.7 293.45 959.7 320 L959.7 322 Q959 296.75 941 278.75 936.6 274.35 931.8 271 929 269.05 926.05 267.45 L922.9 269.95 Q911.65 278 895.7 278 879.75 278 868.45 269.95 L865.35 267.5 Q862.4 269.1 859.6 271.05 854.8 274.4 850.45 278.75 832.4 296.75 831.75 322"/>
+ <path stroke="none" fill="#D2D0D0" d="M831.75 322 Q832.4 296.75 850.45 278.75 854.8 274.4 859.6 271.05 862.4 269.1 865.35 267.5 L868.45 269.95 Q879.75 278 895.7 278 911.65 278 922.9 269.95 L926.05 267.45 Q929 269.05 931.8 271 936.6 274.35 941 278.75 959 296.75 959.7 322 959.25 337.2 952.55 349.85 950.6 353.55 948.1 357 L948.05 357 Q944.9 361.3 940.95 365.25 L936.3 369.55 Q934.25 371.25 932.1 372.75 916.2 384 895.7 384 875.15 384 859.3 372.8 L855.2 369.65 850.4 365.25 Q842.8 357.65 838.3 348.8 L832.75 332.1 832.75 331.9 832.55 330.8 832.5 330.55 832.45 330.05 832.35 329.5 832.2 328.25 832.2 328.05 832.1 327.45 832.1 327.2 832.05 327 832.05 326.75 832 326.45 831.95 325.8 831.95 325.55 831.9 325.25 831.75 322"/>
+ <path stroke="none" fill="#FFFCF5" d="M853.35 394.2 Q852.55 394.05 851.9 393.5 L851.75 393.45 Q851.05 392.7 850.9 391.8 849.65 386.35 849.1 381.5 L848.65 376.15 Q848.05 356.55 866.25 350.85 869.7 354 871.45 357.55 L872.1 359.05 869.2 361.95 Q855.85 375.75 853.75 390.3 L853.35 394.2 M919.3 359.05 L920 357.55 Q921.7 354 925.15 350.85 943.35 356.55 942.75 376.15 L942.35 381.45 Q941.8 386.3 940.5 391.8 940.35 392.7 939.65 393.45 L939.5 393.5 Q938.85 394.05 938.05 394.2 L937.7 390.3 Q935.55 375.75 922.2 361.95 L919.3 359.05"/>
+ <path stroke="none" fill="#CDCBCB" d="M919.3 359.05 Q917.75 363.3 918.3 368.2 L915 366.15 910.55 363.6 909.65 363 908.6 362 908.55 361.95 Q908.15 361.25 908.2 360.5 L908.15 360.45 908.1 360.25 908.1 360.15 910.2 356.35 917.65 342.5 Q919.85 349.05 925.15 350.85 921.7 354 920 357.55 L919.3 359.05 M872.1 359.05 L871.45 357.55 Q869.7 354 866.25 350.85 871.55 349.05 873.75 342.5 L881.2 356.35 883.3 360.15 883.3 360.25 883.25 360.45 883.2 360.5 882.85 361.95 882.8 362 881.75 363 880.9 363.6 876.4 366.15 Q874.65 367.1 873.1 368.2 873.65 363.3 872.1 359.05"/>
+ <path stroke="none" fill="#F0EDE7" d="M872.1 359.05 Q873.65 363.3 873.1 368.2 L871.25 369.45 Q867.4 372.45 864.45 376.45 862.75 378.8 861.35 381.5 860.45 383.15 859.7 384.95 L858.55 388.05 Q856.6 393.85 853.35 394.2 L853.75 390.3 Q855.85 375.75 869.2 361.95 L872.1 359.05 M881.2 356.35 L882.9 359 882.95 359 883.3 360.15 881.2 356.35 M926.7 376.15 Q923.85 372.3 920.15 369.45 L918.3 368.2 Q917.75 363.3 919.3 359.05 L922.2 361.95 Q935.55 375.75 937.7 390.3 L938.05 394.2 Q934.8 393.85 932.85 388.05 L931.7 384.95 930.1 381.5 Q928.55 378.6 926.7 376.15 M910.2 356.35 L908.1 360.15 Q908.2 359.45 908.45 359 L908.5 359 Q909.3 357.55 910.2 356.35"/>
+ <path stroke="none" fill="#000000" fill-opacity="0.050980392156862744" d="M880.9 363.6 L881.2 364 882.9 365.85 882.95 365.85 883.3 366.65 883.3 366.7 883.25 366.85 883.2 366.85 882.85 367.9 882.8 367.9 881.75 368.6 876.4 370.8 Q874.65 371.45 873.1 372.25 872.15 372.6 871.25 373.1 868.15 374.75 865.65 376.9 L864.45 376.45 Q867.4 372.45 871.25 369.45 L873.1 368.2 Q874.65 367.1 876.4 366.15 L880.9 363.6 M910.55 363.6 L915 366.15 918.3 368.2 920.15 369.45 Q923.85 372.3 926.7 376.15 L925.6 376.8 Q923.15 374.7 920.15 373.1 919.25 372.6 918.3 372.25 916.75 371.45 915 370.8 L909.65 368.6 908.6 367.9 908.55 367.9 Q908.15 367.4 908.2 366.85 L908.15 366.85 908.1 366.7 908.1 366.65 Q908.2 366.15 908.45 365.85 L908.5 365.85 910.2 364 910.55 363.6"/>
+ <path stroke="none" fill="#E7E5E5" d="M871.6 352.85 L871.2 351.5 Q869 342.6 875.4 335.3 883 327 895.7 327 908.45 327 915.85 335.3 922.45 342.6 920.15 351.5 L919.85 352.85 Q918.6 350.5 915.85 348.35 908.45 342.55 895.7 342.55 883 342.55 875.4 348.35 872.7 350.5 871.6 352.85"/>
+ <path stroke="none" fill="#DBD9D9" d="M919.85 352.85 Q914.3 367.35 910.7 383 908 394.5 906.4 406.65 906.05 408.2 902.8 409.2 899.8 410.1 895.7 410.1 891.6 410.1 888.55 409.2 885.4 408.2 885.05 406.65 883.6 394.1 881.2 383 877.5 366.25 871.6 352.85 872.7 350.5 875.4 348.35 883 342.55 895.7 342.55 908.45 342.55 915.85 348.35 918.6 350.5 919.85 352.85 M883.55 359 L883.5 359 Q896.2 364.85 907.9 359 L907.95 358.95 Q908.65 358.65 908.9 357.85 L908.9 357.95 Q909.15 357.25 908.9 356.65 908.65 355.85 907.95 355.55 L907.9 355.55 Q896.25 349.6 883.55 355.5 882.7 355.8 882.5 356.65 882.25 357.25 882.5 357.95 882.75 358.65 883.55 359"/>
+ <path stroke="none" fill="#CDCBCB" d="M883.55 359 Q882.75 358.65 882.5 357.95 882.25 357.25 882.5 356.65 882.7 355.8 883.55 355.5 896.25 349.6 907.9 355.55 L907.95 355.55 Q908.65 355.85 908.9 356.65 909.15 357.25 908.9 357.95 L908.9 357.85 Q908.65 358.65 907.95 358.95 L907.9 359 Q896.2 364.85 883.5 359 L883.55 359"/>
+ <path stroke="none" fill="#FFFFFF" d="M854.65 330.5 Q854.65 333.05 856.45 334.85 858.3 336.65 860.95 336.65 863.5 336.65 865.4 334.85 867.25 333.05 867.25 330.5 867.25 327.85 865.4 326.05 863.5 324.2 860.95 324.2 858.3 324.2 856.45 326.05 854.65 327.85 854.65 330.5 M849.15 329.3 Q849.15 325.1 852.1 322.2 855.05 319.25 859.2 319.25 863.3 319.25 866.3 322.2 869.2 325.1 869.2 329.3 869.2 333.45 866.3 336.3 863.3 339.3 859.2 339.3 855.05 339.3 852.1 336.3 849.15 333.45 849.15 329.3 M942.25 329.3 Q942.25 333.45 939.3 336.3 936.35 339.3 932.2 339.3 928.1 339.3 925.1 336.3 922.2 333.45 922.2 329.3 922.2 325.1 925.1 322.2 928.1 319.25 932.2 319.25 936.35 319.25 939.3 322.2 942.25 325.1 942.25 329.3 M936.75 330.5 Q936.75 327.85 934.95 326.05 933.1 324.2 930.45 324.2 927.9 324.2 926 326.05 924.15 327.85 924.15 330.5 924.15 333.05 926 334.85 927.9 336.65 930.45 336.65 933.1 336.65 934.95 334.85 936.75 333.05 936.75 330.5"/>
+ <path stroke="none" fill="#5B5B5B" d="M936.75 330.5 Q936.75 333.05 934.95 334.85 933.1 336.65 930.45 336.65 927.9 336.65 926 334.85 924.15 333.05 924.15 330.5 924.15 327.85 926 326.05 927.9 324.2 930.45 324.2 933.1 324.2 934.95 326.05 936.75 327.85 936.75 330.5 M854.65 330.5 Q854.65 327.85 856.45 326.05 858.3 324.2 860.95 324.2 863.5 324.2 865.4 326.05 867.25 327.85 867.25 330.5 867.25 333.05 865.4 334.85 863.5 336.65 860.95 336.65 858.3 336.65 856.45 334.85 854.65 333.05 854.65 330.5"/>
+ <path stroke="none" fill="#F53707" d="M1085.55 130 L1085.5 128 Q1085.5 101.45 1104.2 82.7 1123 64 1149.5 64 1176.05 64 1194.75 82.7 1213.5 101.45 1213.5 128 L1213.5 130 Q1212.8 104.75 1194.75 86.7 1176.05 68 1149.5 68 1123 68 1104.2 86.7 1086.2 104.75 1085.55 130"/>
+ <path stroke="none" fill="#D23007" d="M1085.55 130 Q1086.2 104.75 1104.2 86.7 1123 68 1149.5 68 1176.05 68 1194.75 86.7 1212.8 104.75 1213.5 130 1213.1 144.35 1207.1 156.4 1202.5 165.45 1194.75 173.2 L1191.35 176.45 Q1186.35 180.85 1180.8 184.05 1179.85 182.2 1178.7 180.5 1179.8 179.95 1180.25 179.15 1181.45 177 1177.6 174.2 1174.05 171.5 1167.8 169.85 L1167.65 169.8 1167.3 169.75 Q1159.4 164.95 1149.5 164.95 1139.6 164.95 1131.7 169.75 L1131.35 169.8 1131.2 169.85 Q1124.95 171.5 1121.4 174.2 1117.55 177 1118.75 179.15 1119.2 179.95 1120.35 180.5 1119.15 182.2 1118.25 184 1112.75 180.9 1107.75 176.5 L1104.2 173.2 Q1096.5 165.5 1092 156.5 1085.9 144.4 1085.55 130"/>
+ <path stroke="none" fill="#FFCC00" d="M1180.8 184.05 Q1166.8 192 1149.5 192 1132.25 192 1118.25 184 1119.15 182.2 1120.35 180.5 1119.2 179.95 1118.75 179.15 1117.55 177 1121.4 174.2 1124.95 171.5 1131.2 169.85 L1131.35 169.8 1131.7 169.75 Q1139.6 164.95 1149.5 164.95 1159.4 164.95 1167.3 169.75 L1167.65 169.8 1167.8 169.85 Q1174.05 171.5 1177.6 174.2 1181.45 177 1180.25 179.15 1179.8 179.95 1178.7 180.5 1179.85 182.2 1180.8 184.05"/>
+ <path stroke="none" fill="#BB2905" d="M1207.1 156.4 Q1207.9 160.4 1207.45 166.75 1206.7 175.2 1199.4 181 1192.15 186.75 1191.55 178.55 L1191.35 176.45 1194.75 173.2 Q1202.5 165.45 1207.1 156.4 M1107.75 176.5 L1107.55 178.45 Q1106.95 186.65 1099.7 181.05 1092.4 175.15 1091.65 166.7 1091.2 160.5 1092 156.5 1096.5 165.5 1104.2 173.2 L1107.75 176.5"/>
+ <path stroke="none" fill="#D5EEF7" d="M1193.25 121.4 L1193.4 121.95 Q1196.65 134.05 1194.15 143.85 1191.6 153.7 1184.75 155.55 1177.9 157.35 1170.75 150.15 1163.55 142.95 1160.3 130.85 L1160.15 130.3 Q1158.55 123.6 1162 117.7 1165.6 111.45 1172.4 109.65 1179.25 107.8 1185.45 111.4 1191.4 114.85 1193.25 121.4 M1185.55 133.25 Q1185.55 128.85 1182.45 125.8 1179.35 122.75 1175 122.75 1170.75 122.75 1167.55 125.8 1164.55 128.85 1164.55 133.25 1164.55 137.6 1167.55 140.6 1170.75 143.75 1175 143.75 1179.35 143.75 1182.45 140.6 1185.55 137.6 1185.55 133.25 M1138.9 130.35 L1138.7 130.9 Q1135.5 143 1128.4 150.15 1121.25 157.4 1114.35 155.6 1107.55 153.7 1104.95 143.9 1102.35 134.05 1105.55 121.95 L1105.75 121.4 Q1107.65 114.85 1113.6 111.4 1119.8 107.8 1126.65 109.7 1133.55 111.5 1137.05 117.7 1140.55 123.65 1138.9 130.35 M1113.3 133.25 Q1113.3 137.6 1116.35 140.6 1119.45 143.75 1123.8 143.75 1128.1 143.75 1131.25 140.6 1134.3 137.6 1134.3 133.25 1134.3 128.85 1131.25 125.8 1128.1 122.75 1123.8 122.75 1119.45 122.75 1116.35 125.8 1113.3 128.85 1113.3 133.25"/>
+ <path stroke="none" fill="#FFFFFF" d="M1113.3 133.25 Q1113.3 128.85 1116.35 125.8 1119.45 122.75 1123.8 122.75 1128.1 122.75 1131.25 125.8 1134.3 128.85 1134.3 133.25 1134.3 137.6 1131.25 140.6 1128.1 143.75 1123.8 143.75 1119.45 143.75 1116.35 140.6 1113.3 137.6 1113.3 133.25 M1179.8 133.2 Q1179.8 130.4 1177.9 128.55 1175.95 126.6 1173.2 126.6 1170.5 126.6 1168.5 128.55 1166.6 130.4 1166.6 133.2 L1166.6 133.85 Q1166.8 136.1 1168.5 137.75 1170.5 139.65 1173.2 139.65 1175.95 139.65 1177.9 137.75 1179.55 136.1 1179.75 133.85 L1179.8 133.2 M1185.55 133.25 Q1185.55 137.6 1182.45 140.6 1179.35 143.75 1175 143.75 1170.75 143.75 1167.55 140.6 1164.55 137.6 1164.55 133.25 1164.55 128.85 1167.55 125.8 1170.75 122.75 1175 122.75 1179.35 122.75 1182.45 125.8 1185.55 128.85 1185.55 133.25 M1119.05 133.2 L1119.1 133.85 Q1119.25 136.1 1120.9 137.75 1122.85 139.65 1125.65 139.65 1128.3 139.65 1130.3 137.75 1132.05 136.1 1132.2 133.85 L1132.25 133.2 Q1132.25 130.4 1130.3 128.55 1128.3 126.6 1125.65 126.6 1122.85 126.6 1120.9 128.55 1119.05 130.4 1119.05 133.2"/>
+ <path stroke="none" fill="#5B5B5B" d="M1119.05 133.2 Q1119.05 130.4 1120.9 128.55 1122.85 126.6 1125.65 126.6 1128.3 126.6 1130.3 128.55 1132.25 130.4 1132.25 133.2 L1132.2 133.85 Q1132.05 136.1 1130.3 137.75 1128.3 139.65 1125.65 139.65 1122.85 139.65 1120.9 137.75 1119.25 136.1 1119.1 133.85 L1119.05 133.2 M1179.8 133.2 L1179.75 133.85 Q1179.55 136.1 1177.9 137.75 1175.95 139.65 1173.2 139.65 1170.5 139.65 1168.5 137.75 1166.8 136.1 1166.6 133.85 L1166.6 133.2 Q1166.6 130.4 1168.5 128.55 1170.5 126.6 1173.2 126.6 1175.95 126.6 1177.9 128.55 1179.8 130.4 1179.8 133.2"/>
+ <path stroke="none" fill="#61A3FF" d="M1131.5 149.5 L1131.5 146 Q1131.5 143.65 1132.05 141.5 L1132.3 140.65 1132.35 140.5 Q1133.6 136.45 1136.7 133.3 1142.05 128 1149.5 128 1157 128 1162.2 133.3 1165.4 136.45 1166.65 140.5 L1166.7 140.65 1166.9 141.5 Q1167.5 143.65 1167.5 146 L1167.5 149.5 Q1167.45 147.55 1166.9 145.7 L1166.7 144.95 1166.65 144.8 Q1165.4 141 1162.2 138.1 1157 133.15 1149.5 133.15 1142.05 133.15 1136.7 138.1 1133.6 141 1132.35 144.8 L1132.3 144.95 1132.05 145.7 Q1131.55 147.55 1131.5 149.5"/>
+ <path stroke="none" fill="#5D9CF3" d="M1131.5 149.5 Q1131.55 147.55 1132.05 145.7 L1132.3 144.95 1132.35 144.8 Q1133.6 141 1136.7 138.1 1142.05 133.15 1149.5 133.15 1157 133.15 1162.2 138.1 1165.4 141 1166.65 144.8 L1166.7 144.95 1166.9 145.7 Q1167.45 147.55 1167.5 149.5 L1167.5 149.9 1167.5 155.9 1167.5 156.4 1167.4 157.85 1167.3 158.7 Q1149.5 163.25 1131.7 158.7 L1131.6 157.85 1131.5 156.2 1131.5 155.9 1131.5 149.9 1131.5 149.5"/>
+ <path stroke="none" fill="#397EDE" d="M1166.5 161.95 Q1165.2 165.65 1162.2 168.65 1157 174 1149.5 174 1142.05 174 1136.7 168.65 1133.75 165.65 1132.5 161.95 1149.5 165.8 1166.5 161.95"/>
+ <path stroke="none" fill="#3473CB" d="M1166.5 161.95 Q1149.5 165.8 1132.5 161.95 1131.95 160.4 1131.7 158.7 1149.5 163.25 1167.3 158.7 L1166.5 161.95"/>
+ <path stroke="none" fill="#BB2905" d="M1162.9 82.45 Q1166.8 89.2 1167.55 95.1 1168.45 100.95 1165.7 102.5 1162.95 104.1 1158.25 100.45 1153.65 96.8 1149.75 90.05 L1148.85 88.5 Q1147.25 85.3 1147.65 82 1148.05 78.35 1150.8 76.75 1153.55 75.2 1156.95 76.65 1159.95 77.95 1161.95 80.95 L1162.9 82.45"/>
+ <path stroke="none" fill="#BB2905" d="M1143.2 90.15 Q1140.65 94.65 1137.5 97.05 1134.45 99.5 1132.65 98.4 1130.85 97.4 1131.4 93.5 1131.95 89.6 1134.5 85.15 L1135.1 84.1 Q1136.45 82.1 1138.45 81.25 1140.7 80.25 1142.5 81.3 1144.3 82.4 1144.6 84.85 1144.85 86.95 1143.8 89.1 L1143.2 90.15"/>
+ <path stroke="none" fill="#A8A1A1" d="M1141.55 270.45 L1140 273.4 Q1135.9 279.9 1128.2 282 1120.5 284.05 1113.65 280.45 L1110.15 278.1 1110.15 273.9 Q1110.15 263.75 1108.85 248.85 1107.6 233.95 1113.9 232.2 1120.25 230.45 1130.25 242.9 1139.25 258.05 1141.55 270.45 M1157.45 270.45 Q1159.75 258.05 1168.75 242.9 1178.75 230.45 1185.1 232.2 1191.4 233.95 1190.15 248.85 1188.85 263.75 1188.85 273.9 L1188.85 278.1 1185.35 280.45 Q1178.5 284.05 1170.8 282 1163.1 279.9 1159 273.4 1158.05 271.95 1157.45 270.45"/>
+ <path stroke="none" fill="#BDB6B6" d="M1157.45 270.45 Q1156.65 268.5 1156.4 266.55 L1156.3 265.4 Q1156.95 247.95 1170.45 225.3 1182.15 210.7 1189.6 212.75 1195.25 214.3 1195.75 224.85 L1195.55 228.3 Q1194.05 245.8 1194.05 257.7 L1194.1 258.55 1194.05 261.7 1194.05 269.8 Q1192.65 274.85 1188.85 278.1 L1188.85 273.9 Q1188.85 263.75 1190.15 248.85 1191.4 233.95 1185.1 232.2 1178.75 230.45 1168.75 242.9 1159.75 258.05 1157.45 270.45 M1103.25 224.85 Q1103.75 214.3 1109.4 212.75 1116.85 210.7 1128.55 225.3 1142.05 247.95 1142.7 265.4 L1142.6 266.55 Q1142.35 268.5 1141.55 270.45 1139.25 258.05 1130.25 242.9 1120.25 230.45 1113.9 232.2 1107.6 233.95 1108.85 248.85 1110.15 263.75 1110.15 273.9 L1110.15 278.1 Q1106.35 274.85 1104.95 269.8 L1104.95 261.7 1104.9 258.55 1104.95 257.7 Q1104.95 245.8 1103.45 228.3 L1103.25 224.85"/>
+ <path stroke="none" fill="#CBC3C3" d="M1103.25 224.85 Q1102.75 210.6 1109.4 208.75 1116.85 206.7 1128.55 221.3 1143.65 246.6 1142.7 265.4 1142.05 247.95 1128.55 225.3 1116.85 210.7 1109.4 212.75 1103.75 214.3 1103.25 224.85 M1195.75 224.85 Q1195.25 214.3 1189.6 212.75 1182.15 210.7 1170.45 225.3 1156.95 247.95 1156.3 265.4 1155.35 246.6 1170.45 221.3 1182.15 206.7 1189.6 208.75 1196.25 210.6 1195.75 224.85"/>
+ <path stroke="none" fill="#DBD9D9" d="M1213.5 322 Q1212.8 296.75 1194.8 278.75 1186.4 270.35 1176.45 265.7 L1172.45 269.1 Q1162.95 276 1149.5 276 1136.05 276 1126.5 269.1 1124.25 267.5 1122.6 265.75 1112.65 270.35 1104.25 278.75 1086.2 296.75 1085.55 322 L1085.5 320 Q1085.5 293.45 1104.25 274.75 1111.65 267.35 1120.25 262.9 1133.45 256 1149.5 256 1165.55 256 1178.8 262.85 1187.4 267.35 1194.8 274.75 1213.5 293.45 1213.5 320 L1213.5 322"/>
+ <path stroke="none" fill="#D2D0D0" d="M1213.5 322 Q1212.8 347.25 1194.8 365.25 1185.05 375 1173.2 379.7 1163 359.75 1149.5 359.75 1136.1 359.75 1125.9 379.7 1114 375 1104.25 365.25 1086.2 347.25 1085.55 322 1086.2 296.75 1104.25 278.75 1112.65 270.35 1122.6 265.75 1124.25 267.5 1126.5 269.1 1136.05 276 1149.5 276 1162.95 276 1172.45 269.1 L1176.45 265.7 Q1186.4 270.35 1194.8 278.75 1212.8 296.75 1213.5 322"/>
+ <path stroke="none" fill="#E5E3E3" d="M1125.9 379.7 Q1136.1 359.75 1149.5 359.75 1163 359.75 1173.2 379.7 1162.25 384 1149.5 384 1136.8 384 1125.9 379.7"/>
+ <path stroke="none" fill="#FFFFFF" d="M1184.25 305.25 Q1184.25 301.95 1182 299.8 1179.75 297.65 1176.6 297.65 1173.5 297.65 1171.15 299.8 1168.9 301.95 1168.9 305.25 1168.9 308.4 1171.15 310.55 1173.5 312.85 1176.6 312.85 1179.75 312.85 1182 310.55 1184.25 308.4 1184.25 305.25 M1108.9 305 Q1108.9 299.95 1112.5 296.4 1116.1 292.9 1121.1 292.9 1126.1 292.9 1129.8 296.4 1133.3 299.95 1133.3 305 1133.3 310.05 1129.8 313.5 1126.1 317.15 1121.1 317.15 1116.1 317.15 1112.5 313.5 1108.9 310.05 1108.9 305 M1114.85 305.25 Q1114.85 308.4 1117.1 310.55 1119.25 312.85 1122.45 312.85 1125.6 312.85 1127.85 310.55 1130.1 308.4 1130.1 305.25 1130.1 301.95 1127.85 299.8 1125.6 297.65 1122.45 297.65 1119.25 297.65 1117.1 299.8 1114.85 301.95 1114.85 305.25 M1190.1 305 Q1190.1 310.05 1186.6 313.5 1183 317.15 1177.9 317.15 1172.9 317.15 1169.35 313.5 1165.75 310.05 1165.75 305 1165.75 299.95 1169.35 296.4 1172.9 292.9 1177.9 292.9 1183 292.9 1186.6 296.4 1190.1 299.95 1190.1 305"/>
+ <path stroke="none" fill="#5B5B5B" d="M1114.85 305.25 Q1114.85 301.95 1117.1 299.8 1119.25 297.65 1122.45 297.65 1125.6 297.65 1127.85 299.8 1130.1 301.95 1130.1 305.25 1130.1 308.4 1127.85 310.55 1125.6 312.85 1122.45 312.85 1119.25 312.85 1117.1 310.55 1114.85 308.4 1114.85 305.25 M1184.25 305.25 Q1184.25 308.4 1182 310.55 1179.75 312.85 1176.6 312.85 1173.5 312.85 1171.15 310.55 1168.9 308.4 1168.9 305.25 1168.9 301.95 1171.15 299.8 1173.5 297.65 1176.6 297.65 1179.75 297.65 1182 299.8 1184.25 301.95 1184.25 305.25"/>
+ <path stroke="none" fill="#FFFFFF" d="M1142.65 349.15 Q1139.35 350.7 1135.45 350.7 1128.5 350.7 1123.55 345.75 1118.65 340.85 1118.65 333.9 1118.65 326.9 1123.55 322 1128.5 317.05 1135.45 317.05 L1163.95 317.05 Q1170.65 317.2 1175.4 322 1180.35 326.9 1180.35 333.9 1180.35 340.85 1175.4 345.75 1170.5 350.7 1163.5 350.7 1159.6 350.7 1156.35 349.15 1153.8 347.95 1151.6 345.75 L1149.5 343.25 1147.35 345.75 Q1145.2 347.95 1142.65 349.15"/>
+ <path stroke="none" fill="#A8A1A1" d="M1142.65 349.15 Q1145.2 347.95 1147.35 345.75 L1149.5 343.25 1151.6 345.75 Q1153.8 347.95 1156.35 349.15 1153.25 350.7 1149.5 350.7 1145.75 350.7 1142.65 349.15"/>
+ <path stroke="none" fill="#FFC4FF" d="M1137.6 316.3 L1137.5 314.7 1137.5 313.8 Q1137.75 311.55 1141.1 309.9 1144.8 308.15 1150 308.15 1155.15 308.15 1158.8 309.9 1162.15 311.55 1162.45 313.8 L1162.5 314.7 1162.4 316.45 Q1161.9 314.4 1158.8 312.9 1155.15 311.15 1150 311.15 1144.8 311.15 1141.1 312.9 1138.1 314.35 1137.6 316.3"/>
+ <path stroke="none" fill="#FFAAFF" d="M1137.6 316.3 Q1138.1 314.35 1141.1 312.9 1144.8 311.15 1150 311.15 1155.15 311.15 1158.8 312.9 1161.9 314.4 1162.4 316.45 1161.85 320.5 1158.8 323.45 1155.15 327.15 1150 327.15 1144.8 327.15 1141.1 323.45 1138.1 320.45 1137.6 316.3"/>
+ <path stroke="none" fill="#A8A1A1" d="M1110.05 322.3 Q1110.1 321.95 1110.3 321.8 L1110.8 321.5 Q1119.35 319.85 1129.15 325.2 L1129.6 325.7 1129.6 326.3 1129.3 326.85 1128.7 327.05 Q1120 326.6 1110.3 328.1 L1109.8 328 1109.35 327.55 1109.35 326.95 1110.05 322.3 M1113.6 334.45 L1113.6 334 1113.9 333.6 Q1119.45 329.55 1128.3 330.05 L1128.8 330.25 1129 330.7 1129 331.2 1128.6 331.55 Q1121.35 333.55 1115.75 338.5 L1115.3 338.6 1114.85 338.45 1114.65 338.05 1113.6 334.45 M1188.95 322.3 L1189.65 326.95 1189.65 327.55 1189.2 328 1188.7 328.1 Q1179 326.6 1170.3 327.05 L1169.7 326.85 Q1169.4 326.6 1169.4 326.3 L1169.4 325.7 Q1169.55 325.4 1169.85 325.2 1179.65 319.85 1188.2 321.5 L1188.7 321.8 1188.95 322.3 M1185.4 334.45 L1184.35 338.05 1184.15 338.45 1183.7 338.6 1183.25 338.5 Q1177.65 333.55 1170.4 331.55 L1170 331.2 1170 330.7 1170.2 330.25 1170.7 330.05 Q1179.55 329.55 1185.1 333.6 L1185.4 334 1185.4 334.45"/>
+ <path stroke="none" fill="#D5F0FF" d="M192.6 512.6 L192.4 512.7 192 512.9 190.75 513.6 Q164.4 528.65 127.1 528.65 89.8 528.65 63.45 513.6 L62.85 513.25 62.25 512.9 61.85 512.7 61.65 512.55 61.65 512.7 61.6 511.8 61.6 510.5 61.65 508.55 61.85 508.7 62.25 508.9 62.85 509.25 63.45 509.6 Q89.8 524.65 127.1 524.65 164.4 524.65 190.75 509.6 L192 508.9 192.4 508.7 192.6 508.55 192.6 510.5 192.6 511.8 192.6 512.2 192.6 512.6"/>
+ <path stroke="none" fill="#365A66" d="M192.4 508.7 L192 508.9 190.75 509.6 Q164.4 524.65 127.1 524.65 89.8 524.65 63.45 509.6 L62.85 509.25 62.25 508.9 61.85 508.7 Q63.7 485.25 80.75 468.15 94.8 454.15 113.1 450.4 L115.5 449.95 127.1 449 Q134.15 449 140.65 450.3 L143 450.8 Q149.85 452.45 156.1 455.55 165.45 460.2 173.4 468.15 190 484.75 192.25 507.25 L192.4 508.7"/>
+ <path stroke="none" fill="#C3DCE9" d="M61.65 512.7 L61.65 512.55 61.85 512.7 62.25 512.9 62.85 513.25 63.45 513.6 Q89.8 528.65 127.1 528.65 164.4 528.65 190.75 513.6 L192 512.9 192.4 512.7 192.6 512.6 192.5 514.4 192.45 515.25 192.35 516.55 Q191.3 529.35 185.65 540.3 L182.7 545.45 181.9 546.65 Q178.25 551.95 173.4 556.8 L171.4 558.75 Q166.95 562.9 162.1 566.05 146.65 576 127.1 576 108.2 576 93.2 566.7 87.75 563.35 82.8 558.8 L80.75 556.8 Q76.75 552.8 73.65 548.5 L72.35 546.65 69.25 541.55 Q63 530.15 61.85 516.65 L61.85 516.55 61.75 514.8 61.65 512.8 61.65 512.7"/>
+ <path stroke="none" fill="#48798A" d="M192.6 508.55 L192.4 508.7 192.25 507.25 Q190 484.75 173.4 468.15 165.45 460.2 156.1 455.55 149.85 452.45 143 450.8 L140.65 450.3 Q134.15 449 127.1 449 L115.5 449.95 113.1 450.4 Q94.8 454.15 80.75 468.15 63.7 485.25 61.85 508.7 L61.65 508.55 Q62.3 482.65 80.75 464.15 94.8 450.15 113.1 446.4 L114.15 446.2 115.5 445.95 127.1 445 Q134.15 445 140.65 446.3 L141.95 446.6 143 446.8 Q149.85 448.45 156.1 451.55 165.45 456.2 173.4 464.15 190 480.75 192.25 503.25 L192.6 508.55"/>
+ <path stroke="none" fill="#39606D" d="M69.25 541.55 L72.35 546.65 70.9 548.4 Q66.1 554.75 64.25 561.6 63.7 563.7 63.5 565.6 62.95 570.75 65.05 574.35 L62.8 572.6 Q60 569.8 59.5 565.6 59.05 562.1 60.25 557.6 62.3 550.05 67.95 543.1 L69.25 541.55 M182.7 545.45 L185.65 540.3 186.95 541.7 Q193.5 549.25 195.75 557.6 196.95 562.1 196.5 565.6 196 569.8 193.2 572.6 192.15 573.65 190.95 574.35 193.05 570.8 192.5 565.6 L191.75 561.6 Q189.7 554.05 184.1 547.15 L182.7 545.45 M113.1 446.4 Q115.05 437.75 118.1 431.65 122.65 422.5 128.05 422.5 133.4 422.5 137.95 431.65 141 437.85 143 446.8 L141.95 446.6 Q140.25 440.35 137.95 435.65 133.4 426.5 128.05 426.5 122.65 426.5 118.1 435.65 115.8 440.2 114.15 446.2 L113.1 446.4"/>
+ <path stroke="none" fill="#2F4E58" d="M72.35 546.65 L73.65 548.5 Q76.75 552.8 80.75 556.8 L82.8 558.8 Q87.75 563.35 93.2 566.7 L92.35 567.4 90.45 568.9 Q84.35 573.35 77.75 575.1 71.35 576.8 67 575.25 65.95 574.9 65.05 574.35 62.95 570.75 63.5 565.6 63.7 563.7 64.25 561.6 66.1 554.75 70.9 548.4 L72.35 546.65 M162.1 566.05 Q166.95 562.9 171.4 558.75 L173.4 556.8 Q178.25 551.95 181.9 546.65 L182.7 545.45 184.1 547.15 Q189.7 554.05 191.75 561.6 L192.5 565.6 Q193.05 570.8 190.95 574.35 L190.3 574.7 Q185.6 577.05 178.25 575.1 171.2 573.25 164.75 568.25 L162.85 566.7 162.1 566.05 M141.95 446.6 L140.65 446.3 Q134.15 445 127.1 445 L115.5 445.95 114.15 446.2 Q115.8 440.2 118.1 435.65 122.65 426.5 128.05 426.5 133.4 426.5 137.95 435.65 140.25 440.35 141.95 446.6"/>
+ <path stroke="none" fill="#C3DCE9" d="M167.2 498.35 Q170 495.5 170 491.55 169.95 487.6 167.15 484.8 164.4 482.05 160.4 481.95 156.45 482 153.65 484.85 150.85 487.6 150.85 491.5 150.9 495.55 153.65 498.3 156.45 501.1 160.45 501.1 164.4 501.1 167.2 498.35 M169.45 480.85 Q176.55 488.15 178.8 496.05 180.95 504.05 176.95 508.05 172.85 512.15 164.9 509.95 156.9 507.8 149.7 500.55 L149.5 500.2 Q145.55 496.3 145.55 490.65 145.6 484.9 149.6 480.85 153.7 476.75 159.5 476.75 165.05 476.8 169.05 480.55 L169.45 480.85"/>
+ <path stroke="none" fill="#FFFFFF" d="M162.85 496.55 Q164.65 494.75 164.65 492.35 164.65 489.8 162.9 488.05 161.15 486.3 158.6 486.3 156.15 486.25 154.35 488.05 L153.95 488.45 Q152.6 490.05 152.65 492.2 152.7 494.75 154.45 496.5 156.2 498.25 158.7 498.25 160.8 498.25 162.4 496.95 L162.85 496.55 M167.2 498.35 Q164.4 501.1 160.45 501.1 156.45 501.1 153.65 498.3 150.9 495.55 150.85 491.5 150.85 487.6 153.65 484.85 156.45 482 160.4 481.95 164.4 482.05 167.15 484.8 169.95 487.6 170 491.55 170 495.5 167.2 498.35"/>
+ <path stroke="none" fill="#5B5B5B" d="M162.85 496.55 L162.4 496.95 Q160.8 498.25 158.7 498.25 156.2 498.25 154.45 496.5 152.7 494.75 152.65 492.2 152.6 490.05 153.95 488.45 L154.35 488.05 Q156.15 486.25 158.6 486.3 161.15 486.3 162.9 488.05 164.65 489.8 164.65 492.35 164.65 494.75 162.85 496.55"/>
+ <path stroke="none" fill="#C3DCE9" d="M84.65 480.85 L85.05 480.55 Q89.05 476.8 94.6 476.75 100.4 476.75 104.5 480.85 108.5 484.9 108.55 490.65 108.55 496.3 104.6 500.2 L104.4 500.55 Q97.2 507.8 89.2 509.95 81.25 512.15 77.15 508.05 73.15 504.05 75.3 496.05 77.55 488.15 84.65 480.85 M86.9 498.35 Q89.7 501.1 93.65 501.1 97.65 501.1 100.45 498.3 103.2 495.55 103.25 491.5 103.25 487.6 100.45 484.85 97.65 482 93.7 481.95 89.7 482.05 86.95 484.8 84.15 487.6 84.1 491.55 84.1 495.5 86.9 498.35"/>
+ <path stroke="none" fill="#FFFFFF" d="M86.9 498.35 Q84.1 495.5 84.1 491.55 84.15 487.6 86.95 484.8 89.7 482.05 93.7 481.95 97.65 482 100.45 484.85 103.25 487.6 103.25 491.5 103.2 495.55 100.45 498.3 97.65 501.1 93.65 501.1 89.7 501.1 86.9 498.35 M91.25 496.55 L91.7 496.95 Q93.3 498.25 95.4 498.25 97.9 498.25 99.65 496.5 101.4 494.75 101.45 492.2 101.5 490.05 100.15 488.45 L99.75 488.05 Q97.95 486.25 95.5 486.3 92.95 486.3 91.2 488.05 89.45 489.8 89.45 492.35 89.45 494.75 91.25 496.55"/>
+ <path stroke="none" fill="#5B5B5B" d="M91.25 496.55 Q89.45 494.75 89.45 492.35 89.45 489.8 91.2 488.05 92.95 486.3 95.5 486.3 97.95 486.25 99.75 488.05 L100.15 488.45 Q101.5 490.05 101.45 492.2 101.4 494.75 99.65 496.5 97.9 498.25 95.4 498.25 93.3 498.25 91.7 496.95 L91.25 496.55"/>
+ <path stroke="none" fill="#FFFFFF" d="M320 514 L319.95 512 Q319.95 485.5 338.7 466.75 357.45 448 383.95 448 410.4 448 429.15 466.75 447.95 485.5 447.95 512 L447.95 514 Q447.25 488.8 429.15 470.75 410.4 452 383.95 452 357.45 452 338.7 470.75 320.65 488.8 320 514 M421 564.25 Q404.85 576 383.95 576 361.55 576 344.7 562.55 L345.95 560.25 Q361.05 533.9 382.4 533.9 403.75 533.9 418.8 560.25 L421 564.25"/>
+ <path stroke="none" fill="#F0F0F0" d="M421 564.25 L418.8 560.25 Q403.75 533.9 382.4 533.9 361.05 533.9 345.95 560.25 L344.7 562.55 338.7 557.2 Q320.65 539.15 320 514 320.65 488.8 338.7 470.75 357.45 452 383.95 452 410.4 452 429.15 470.75 447.25 488.8 447.95 514 447.25 539.15 429.15 557.2 425.25 561.15 421 564.25"/>
+ <path stroke="none" fill="#FFFFFF" d="M435.2 515 Q435.2 520.7 431.15 524.6 427.1 528.7 421.4 528.7 415.8 528.7 411.65 524.6 407.7 520.7 407.7 515 407.7 509.25 411.65 505.25 415.8 501.2 421.4 501.2 427.1 501.2 431.15 505.25 435.2 509.25 435.2 515 M427.65 514.9 Q427.65 511.25 425.2 508.8 422.65 506.25 419 506.25 415.5 506.25 412.9 508.8 410.35 511.25 410.35 514.9 L410.4 515.75 Q410.65 518.7 412.9 520.85 415.5 523.35 419 523.35 422.65 523.35 425.2 520.85 427.35 518.7 427.6 515.75 L427.65 514.9"/>
+ <path stroke="none" fill="#5B5B5B" d="M427.65 514.9 L427.6 515.75 Q427.35 518.7 425.2 520.85 422.65 523.35 419 523.35 415.5 523.35 412.9 520.85 410.65 518.7 410.4 515.75 L410.35 514.9 Q410.35 511.25 412.9 508.8 415.5 506.25 419 506.25 422.65 506.25 425.2 508.8 427.65 511.25 427.65 514.9"/>
+ <path stroke="none" fill="#FFFFFF" d="M332.7 515 Q332.7 509.25 336.75 505.25 340.8 501.2 346.5 501.2 352.1 501.2 356.25 505.25 360.2 509.25 360.2 515 360.2 520.7 356.25 524.6 352.1 528.7 346.5 528.7 340.8 528.7 336.75 524.6 332.7 520.7 332.7 515 M340.25 514.9 L340.3 515.75 Q340.55 518.7 342.7 520.85 345.25 523.35 348.9 523.35 352.4 523.35 355 520.85 357.25 518.7 357.5 515.75 L357.55 514.9 Q357.55 511.25 355 508.8 352.4 506.25 348.9 506.25 345.25 506.25 342.7 508.8 340.25 511.25 340.25 514.9"/>
+ <path stroke="none" fill="#5B5B5B" d="M340.25 514.9 Q340.25 511.25 342.7 508.8 345.25 506.25 348.9 506.25 352.4 506.25 355 508.8 357.55 511.25 357.55 514.9 L357.5 515.75 Q357.25 518.7 355 520.85 352.4 523.35 348.9 523.35 345.25 523.35 342.7 520.85 340.55 518.7 340.3 515.75 L340.25 514.9"/>
+ <path stroke="none" fill="#D23007" d="M366.3 553.15 Q366.3 549.3 369.75 546.2 L371.8 544.3 Q378.9 537.4 382.35 528.65 382.8 528.2 383.45 528.05 L383.8 528 384.1 528 384.4 528.05 Q385.05 528.2 385.55 528.65 389.05 537.4 396.15 544.35 L398.15 546.2 Q401.6 549.3 401.6 553.15 L401.55 553.3 Q399.6 559.55 391.15 558.55 387.75 558.15 384.95 555.95 L383.95 555.05 382.9 555.95 Q380.15 558.15 376.7 558.55 368.25 559.55 366.35 553.3 L366.3 553.15"/>
+ <path stroke="none" fill="#C62C05" d="M366.3 553.15 L366.35 553.3 Q368.25 559.55 376.7 558.55 380.15 558.15 382.9 555.95 L383.95 555.05 384.95 555.95 Q387.75 558.15 391.15 558.55 399.6 559.55 401.55 553.3 L401.6 553.15 401.3 555.4 Q399.4 563.25 391.05 562 387.7 561.45 384.95 558.7 L383.95 557.6 382.95 558.7 Q380.2 561.45 376.8 562 368.5 563.25 366.6 555.4 366.3 554.25 366.3 553.15"/>
+ <path stroke="none" fill="#FF9900" d="M361.7 524.05 Q362.8 517.1 368 511.8 L370.65 509.55 Q376.45 505.2 384.05 505.2 391.65 505.2 397.45 509.55 L400 511.8 Q405.25 517.1 406.3 524.05 405.8 525.4 404.35 526.65 403.05 521.6 398.85 517.65 L396.5 515.7 Q391.1 511.95 384.05 511.95 377 511.95 371.6 515.7 L369.15 517.65 Q365 521.6 363.7 526.65 362.2 525.45 361.7 524.05"/>
+ <path stroke="none" fill="#F39100" d="M363.7 526.65 Q365 521.6 369.15 517.65 L371.6 515.7 Q377 511.95 384.05 511.95 391.1 511.95 396.5 515.7 L398.85 517.65 Q403.05 521.6 404.35 526.65 402.75 527.95 400 529.05 393.4 531.75 384.05 531.75 374.65 531.75 368 529.05 365.25 527.95 363.7 526.65"/>
+ <path stroke="none" fill="#E08600" d="M363.7 526.65 Q365.25 527.95 368 529.05 374.65 531.75 384.05 531.75 393.4 531.75 400 529.05 402.75 527.95 404.35 526.65 405.8 525.4 406.3 524.05 L406.6 527.75 406.5 529.25 Q406.1 534.25 400 537.85 393.4 541.7 384.05 541.7 374.65 541.7 368 537.85 361.95 534.25 361.5 529.25 L361.45 527.75 Q361.45 525.8 361.7 524.05 362.2 525.45 363.7 526.65"/>
+ <path stroke="none" fill="#F53707" d="M359.85 460.95 L359.75 458.95 Q359.75 451.95 364.5 446.95 L364.95 446.45 Q365.45 449.55 363.2 452.45 360.35 456.2 359.85 460.95 M364.65 445 L364.5 442.95 Q364.5 437.85 368.05 434.25 371.65 430.7 376.75 430.7 380.85 430.7 383.95 433.05 387.05 430.7 391.2 430.7 396.25 430.7 399.85 434.25 403.4 437.85 403.4 442.95 L403.25 445 Q402.7 441.15 399.85 438.25 396.25 434.7 391.2 434.7 387.05 434.7 383.95 437.05 380.85 434.7 376.75 434.7 371.65 434.7 368.05 438.25 365.2 441.15 364.65 445 M402.95 446.45 L403 446.45 403.4 446.9 Q405.8 449.4 407 452.45 408.15 455.45 408.15 458.95 L408.05 460.95 Q407.55 456.2 404.75 452.45 402.45 449.55 402.95 446.45 M403 450.45 L402.95 450.45 403 450.3 403 450.45"/>
+ <path stroke="none" fill="#D23007" d="M403 450.45 L403 450.3 402.95 450.45 403 450.45 M408.05 460.95 Q407.6 465.4 405.1 468.95 L405.6 472.2 405.65 473.9 405.6 475.9 Q404.95 483.05 399.7 488.3 393.7 494.3 385.25 494.3 L383.95 494.25 382.65 494.3 Q374.2 494.3 368.25 488.3 363 483.1 362.35 475.95 L362.25 473.9 362.35 472.15 Q362.45 470.5 362.85 468.95 360.3 465.4 359.85 460.95 360.35 456.2 363.2 452.45 365.45 449.55 364.95 446.45 L364.65 445 Q365.2 441.15 368.05 438.25 371.65 434.7 376.75 434.7 380.85 434.7 383.95 437.05 387.05 434.7 391.2 434.7 396.25 434.7 399.85 438.25 402.7 441.15 403.25 445 L402.95 446.45 Q402.45 449.55 404.75 452.45 407.55 456.2 408.05 460.95"/>
+ <path stroke="none" fill="#FFD738" d="M573.9 514 L573.85 512 Q573.85 485.5 592.6 466.75 611.35 448 637.85 448 664.3 448 683.05 466.75 701.85 485.5 701.85 512 L701.85 514 Q701.15 488.8 683.05 470.75 664.3 452 637.85 452 611.35 452 592.6 470.75 574.55 488.8 573.9 514"/>
+ <path stroke="none" fill="#FFCC00" d="M701.85 514 Q701.15 539.15 683.05 557.2 679.15 561.15 674.9 564.25 L672.7 560.25 Q657.65 533.9 636.3 533.9 614.95 533.9 599.85 560.25 L598.6 562.55 592.6 557.2 Q574.55 539.15 573.9 514 574.55 488.8 592.6 470.75 611.35 452 637.85 452 664.3 452 683.05 470.75 701.15 488.8 701.85 514"/>
+ <path stroke="none" fill="#EEBE00" d="M674.9 564.25 Q658.75 576 637.85 576 615.45 576 598.6 562.55 L599.85 560.25 Q614.95 533.9 636.3 533.9 657.65 533.9 672.7 560.25 L674.9 564.25"/>
+ <path stroke="none" fill="#FFFFFF" d="M681.55 514.9 Q681.55 511.25 679.1 508.8 676.55 506.25 672.9 506.25 669.4 506.25 666.8 508.8 664.25 511.25 664.25 514.9 L664.3 515.75 Q664.55 518.7 666.8 520.85 669.4 523.35 672.9 523.35 676.55 523.35 679.1 520.85 681.25 518.7 681.5 515.75 L681.55 514.9 M689.1 515 Q689.1 520.7 685.05 524.6 681 528.7 675.3 528.7 669.7 528.7 665.55 524.6 661.6 520.7 661.6 515 661.6 509.25 665.55 505.25 669.7 501.2 675.3 501.2 681 501.2 685.05 505.25 689.1 509.25 689.1 515"/>
+ <path stroke="none" fill="#5B5B5B" d="M681.55 514.9 L681.5 515.75 Q681.25 518.7 679.1 520.85 676.55 523.35 672.9 523.35 669.4 523.35 666.8 520.85 664.55 518.7 664.3 515.75 L664.25 514.9 Q664.25 511.25 666.8 508.8 669.4 506.25 672.9 506.25 676.55 506.25 679.1 508.8 681.55 511.25 681.55 514.9"/>
+ <path stroke="none" fill="#5B5B5B" d="M594.15 514.9 Q594.15 511.25 596.6 508.8 599.15 506.25 602.8 506.25 606.3 506.25 608.9 508.8 611.45 511.25 611.45 514.9 L611.4 515.75 Q611.15 518.7 608.9 520.85 606.3 523.35 602.8 523.35 599.15 523.35 596.6 520.85 594.45 518.7 594.2 515.75 L594.15 514.9"/>
+ <path stroke="none" fill="#FFFFFF" d="M594.15 514.9 L594.2 515.75 Q594.45 518.7 596.6 520.85 599.15 523.35 602.8 523.35 606.3 523.35 608.9 520.85 611.15 518.7 611.4 515.75 L611.45 514.9 Q611.45 511.25 608.9 508.8 606.3 506.25 602.8 506.25 599.15 506.25 596.6 508.8 594.15 511.25 594.15 514.9 M586.6 515 Q586.6 509.25 590.65 505.25 594.7 501.2 600.4 501.2 606 501.2 610.15 505.25 614.1 509.25 614.1 515 614.1 520.7 610.15 524.6 606 528.7 600.4 528.7 594.7 528.7 590.65 524.6 586.6 520.7 586.6 515"/>
+ <path stroke="none" fill="#FF9900" d="M660.2 524.05 Q659.7 525.4 658.25 526.65 656.95 521.6 652.75 517.65 L650.4 515.7 Q645 511.95 637.95 511.95 630.9 511.95 625.5 515.7 624.25 516.55 623.05 517.65 618.9 521.6 617.6 526.65 616.1 525.45 615.6 524.05 616.7 517.1 621.9 511.8 623.2 510.5 624.55 509.55 630.35 505.2 637.95 505.2 645.55 505.2 651.35 509.55 L653.9 511.8 Q659.15 517.1 660.2 524.05"/>
+ <path stroke="none" fill="#F39100" d="M617.6 526.65 Q618.9 521.6 623.05 517.65 624.25 516.55 625.5 515.7 630.9 511.95 637.95 511.95 645 511.95 650.4 515.7 L652.75 517.65 Q656.95 521.6 658.25 526.65 656.65 527.95 653.9 529.05 647.3 531.75 637.95 531.75 628.55 531.75 621.9 529.05 619.15 527.95 617.6 526.65"/>
+ <path stroke="none" fill="#E08600" d="M660.2 524.05 L660.5 527.75 660.4 529.25 Q660 534.25 653.9 537.85 647.3 541.7 637.95 541.7 628.55 541.7 621.9 537.85 615.85 534.25 615.4 529.25 L615.35 527.75 Q615.35 525.8 615.6 524.05 616.1 525.45 617.6 526.65 619.15 527.95 621.9 529.05 628.55 531.75 637.95 531.75 647.3 531.75 653.9 529.05 656.65 527.95 658.25 526.65 659.7 525.4 660.2 524.05"/>
+ <path stroke="none" fill="#EEBE00" d="M651.25 464.45 Q655.15 471.2 655.9 477.1 656.8 482.95 654.05 484.5 651.3 486.1 646.6 482.45 642 478.8 638.1 472.05 L637.2 470.5 Q635.6 467.3 636 464 636.4 460.35 639.15 458.75 641.9 457.2 645.3 458.65 648.3 459.95 650.3 462.95 L651.25 464.45 M631.55 472.15 Q629 476.65 625.85 479.05 622.8 481.5 621 480.4 619.2 479.4 619.75 475.5 620.3 471.6 622.85 467.15 L623.45 466.1 Q624.8 464.1 626.8 463.25 629.05 462.25 630.85 463.3 632.65 464.4 632.95 466.85 633.2 468.95 632.15 471.1 L631.55 472.15"/>
+ <path stroke="none" fill="#B67340" d="M917 451.25 Q917.1 447.45 920 443.35 923.8 438.3 930.15 436.05 936.45 433.8 941.65 435.7 946.3 437.45 947.6 441.65 L948.15 444.3 Q951 458.35 948.5 469.8 L948.2 470.95 Q949.85 460.6 947.4 448.2 L946.8 445.5 Q945.55 441.35 940.85 439.55 935.65 437.65 929.4 439.9 923 442.15 919.2 447.25 917.7 449.25 917 451.25 M843.25 471 L842.95 469.8 Q840.5 458.35 843.3 444.35 L843.85 441.65 Q845.15 437.45 849.8 435.75 855.05 433.85 861.3 436.1 867.65 438.3 871.45 443.4 874.35 447.45 874.45 451.25 873.7 449.3 872.25 447.3 868.45 442.15 862.1 439.95 855.8 437.7 850.6 439.6 845.9 441.35 844.65 445.5 L844.05 448.25 Q841.6 460.6 843.25 471"/>
+ <path stroke="none" fill="#8E5A32" d="M843.25 471 Q841.6 460.6 844.05 448.25 L844.65 445.5 Q845.9 441.35 850.6 439.6 855.8 437.7 862.1 439.95 868.45 442.15 872.25 447.3 873.7 449.3 874.45 451.25 L874.4 452.55 873.85 455.35 873.2 458.25 871.95 462.85 Q871.4 461.25 870.2 459.55 867.45 455.85 862.85 454.25 L854.6 454 Q851.2 455.3 850.3 458.35 L849.9 460.2 Q847.85 470.3 849.65 478.55 L850 479.95 Q850.45 481.85 851.15 483.35 L850.55 483.05 Q845.5 480.35 843.25 471 M948.2 470.95 Q945.9 480.35 940.85 483.05 L940.3 483.3 941.4 479.9 941.8 478.55 Q943.6 470.3 941.55 460.2 L941.1 458.3 Q940.25 455.25 936.9 453.95 L928.6 454.2 Q924 455.85 921.25 459.5 920.05 461.25 919.5 462.8 L918.2 458.25 917.6 455.3 917.1 452.5 917 451.25 Q917.7 449.25 919.2 447.25 923 442.15 929.4 439.9 935.65 437.65 940.85 439.55 945.55 441.35 946.8 445.5 L947.4 448.2 Q949.85 460.6 948.2 470.95"/>
+ <path stroke="none" fill="#774B2A" d="M940.3 483.3 L939.7 483.6 Q936.3 484.75 932.95 483 929.9 481.45 926.9 477.5 922.65 472.05 919.95 464.2 L919.5 462.8 Q920.05 461.25 921.25 459.5 924 455.85 928.6 454.2 L936.9 453.95 Q940.25 455.25 941.1 458.3 L941.55 460.2 Q943.6 470.3 941.8 478.55 L941.4 479.9 940.3 483.3 M871.95 462.85 L871.55 464.2 Q868.85 472.1 864.55 477.5 861.55 481.45 858.5 483 855.15 484.75 851.75 483.6 L851.15 483.35 Q850.45 481.85 850 479.95 L849.65 478.55 Q847.85 470.3 849.9 460.2 L850.3 458.35 Q851.2 455.3 854.6 454 L862.85 454.25 Q867.45 455.85 870.2 459.55 871.4 461.25 871.95 462.85"/>
+ <path stroke="none" fill="#BD7841" d="M905.7 452.7 L895.7 452 885.7 452.7 Q865.55 455.65 850.45 470.7 832.4 488.8 831.75 514 L831.7 512 Q831.7 485.5 850.45 466.7 869.2 448 895.7 448 922.2 448 940.95 466.7 959.7 485.5 959.7 512 L959.7 514 Q959 488.8 940.95 470.7 925.85 455.65 905.7 452.7"/>
+ <path stroke="none" fill="#F3DBC8" d="M905.7 452.7 Q905 502.85 925.75 541.25 L865.65 541.25 Q886.4 502.85 885.7 452.7 L895.7 452 905.7 452.7"/>
+ <path stroke="none" fill="#A16639" d="M905.7 452.7 Q925.85 455.65 940.95 470.7 959 488.8 959.7 514 959.3 528.9 952.85 541.25 948.35 549.85 940.95 557.2 922.2 576 895.7 576 869.2 576 850.45 557.2 832.4 539.2 831.75 514 832.4 488.8 850.45 470.7 865.55 455.65 885.7 452.7 886.4 502.85 865.65 541.25 L925.75 541.25 Q905 502.85 905.7 452.7"/>
+ <path stroke="none" fill="#9C6236" d="M867.9 460.7 Q866.35 457.75 870.3 452.65 874.25 447.4 881.7 443.15 895.15 435.5 909.7 443.15 917.1 447.4 921.05 452.65 925.05 457.75 923.5 460.65 922.8 458.85 921.05 456.65 917.1 451.4 909.7 447.15 895.15 439.5 881.7 447.15 874.25 451.4 870.3 456.65 868.55 458.85 867.9 460.7"/>
+ <path stroke="none" fill="#8E5A32" d="M867.9 460.7 Q868.55 458.85 870.3 456.65 874.25 451.4 881.7 447.15 895.15 439.5 909.7 447.15 917.1 451.4 921.05 456.65 922.8 458.85 923.5 460.65 L923.4 460.8 Q921.65 463.9 915.05 463 910.6 462.35 905.7 460.1 906.5 462.3 906.75 464.35 L906.8 464.6 Q907 466.5 906.65 467.75 906.35 468.9 905.5 469.4 903.6 470.5 900.35 468 897.85 466 895.7 462.7 893.5 466 891 468 887.8 470.5 885.9 469.4 885.05 468.9 884.7 467.75 884.35 466.5 884.6 464.65 L884.6 464.35 Q884.9 462.3 885.75 460.1 880.8 462.35 876.3 463 869.75 463.9 867.95 460.8 L867.9 460.7"/>
+ <path stroke="none" fill="#B67340" d="M858.25 543.9 L858.2 542 858.2 541 Q858.6 528.4 869.15 519.35 880.15 510 895.7 510 911.2 510 922.2 519.35 932.75 528.4 933.2 541 L933.2 542 933.15 543.9 Q932.3 532 922.2 523.35 911.2 514 895.7 514 880.15 514 869.15 523.35 859.05 532 858.25 543.9"/>
+ <path stroke="none" fill="#8E5A32" d="M858.25 543.9 Q859.05 532 869.15 523.35 880.15 514 895.7 514 911.2 514 922.2 523.35 932.3 532 933.15 543.9 932.4 555.95 922.2 564.6 911.2 574 895.7 574 880.15 574 869.15 564.6 859 555.9 858.25 543.9 M880.1 534.4 Q881.6 535.8 883.65 535.8 885.8 535.8 887.3 534.3 888.8 532.8 888.8 530.65 888.8 529.55 888.45 528.65 L887.4 527.1 887.25 526.95 Q884.7 524.4 881.85 523.55 L881.65 523.5 Q879.45 522.85 878.1 523.55 877.6 523.75 877.2 524.15 L876.6 525 Q875.95 526.25 876.4 528.15 L876.5 528.65 876.95 529.95 Q877.9 532.2 879.95 534.25 L880.1 534.4 M914.2 524.15 L913.35 523.55 Q911.95 522.85 909.75 523.5 L909.5 523.6 Q906.65 524.45 904.15 526.95 L904 527.1 Q903.35 527.8 903 528.65 902.6 529.55 902.6 530.65 902.6 532.8 904.1 534.3 905.6 535.8 907.75 535.8 909.8 535.8 911.3 534.4 L911.45 534.25 Q913.5 532.2 914.45 529.95 L914.9 528.65 915.05 528.15 Q915.45 526.25 914.8 525 L914.2 524.15"/>
+ <path stroke="none" fill="#704627" d="M914.2 524.15 L914.8 525 Q915.45 526.25 915.05 528.15 L914.9 528.65 914.45 529.95 Q913.5 532.2 911.45 534.25 L911.3 534.4 Q909.8 535.8 907.75 535.8 905.6 535.8 904.1 534.3 902.6 532.8 902.6 530.65 902.6 529.55 903 528.65 903.35 527.8 904 527.1 L904.15 526.95 Q906.65 524.45 909.5 523.6 L909.75 523.5 Q911.95 522.85 913.35 523.55 L914.2 524.15 M880.1 534.4 L879.95 534.25 Q877.9 532.2 876.95 529.95 L876.5 528.65 876.4 528.15 Q875.95 526.25 876.6 525 L877.2 524.15 Q877.6 523.75 878.1 523.55 879.45 522.85 881.65 523.5 L881.85 523.55 Q884.7 524.4 887.25 526.95 L887.4 527.1 888.45 528.65 Q888.8 529.55 888.8 530.65 888.8 532.8 887.3 534.3 885.8 535.8 883.65 535.8 881.6 535.8 880.1 534.4"/>
+ <path stroke="none" fill="#FFFFFF" d="M944.2 494.55 Q944.2 499.7 940.55 503.3 936.9 507 931.7 507 926.6 507 922.9 503.3 919.25 499.7 919.25 494.55 919.25 489.35 922.9 485.7 926.6 482.05 931.7 482.05 936.9 482.05 940.55 485.7 944.2 489.35 944.2 494.55 M939.45 494.75 Q939.45 491.15 936.95 488.6 934.45 486.1 930.8 486.1 927.25 486.1 924.65 488.6 922.15 491.15 922.15 494.75 922.15 498.35 924.65 500.8 927.25 503.35 930.8 503.35 934.45 503.35 936.95 500.8 939.45 498.35 939.45 494.75 M847.2 494.55 Q847.2 489.35 850.85 485.7 854.5 482.05 859.7 482.05 864.8 482.05 868.5 485.7 872.15 489.35 872.15 494.55 872.15 499.7 868.5 503.3 864.8 507 859.7 507 854.5 507 850.85 503.3 847.2 499.7 847.2 494.55 M851.9 494.75 Q851.9 498.35 854.45 500.8 856.95 503.35 860.6 503.35 864.15 503.35 866.7 500.8 869.25 498.35 869.25 494.75 869.25 491.15 866.7 488.6 864.15 486.1 860.6 486.1 856.95 486.1 854.45 488.6 851.9 491.15 851.9 494.75"/>
+ <path stroke="none" fill="#5B5B5B" d="M851.9 494.75 Q851.9 491.15 854.45 488.6 856.95 486.1 860.6 486.1 864.15 486.1 866.7 488.6 869.25 491.15 869.25 494.75 869.25 498.35 866.7 500.8 864.15 503.35 860.6 503.35 856.95 503.35 854.45 500.8 851.9 498.35 851.9 494.75 M939.45 494.75 Q939.45 498.35 936.95 500.8 934.45 503.35 930.8 503.35 927.25 503.35 924.65 500.8 922.15 498.35 922.15 494.75 922.15 491.15 924.65 488.6 927.25 486.1 930.8 486.1 934.45 486.1 936.95 488.6 939.45 491.15 939.45 494.75"/>
+ <path stroke="none" fill="#774B2A" d="M1194.5 472.95 Q1198.1 468.9 1203.5 465.75 1204.35 465.3 1205.25 464.8 1208.05 463.65 1212 465.75 1216.3 468.25 1219.3 473.5 1221.25 476.8 1221.9 480.05 L1220.6 480.8 Q1212.7 485.35 1205.1 486.4 1200.95 479.35 1194.8 473.2 L1194.5 472.95 M1104.55 472.95 L1104.25 473.2 Q1098.1 479.35 1093.95 486.4 1086.35 485.35 1078.45 480.8 L1077.15 480.05 Q1077.8 476.8 1079.75 473.5 1082.75 468.25 1087.05 465.75 1091 463.65 1093.8 464.8 L1095.55 465.75 Q1100.95 468.9 1104.55 472.95"/>
+ <path stroke="none" fill="#8E5A32" d="M1188.5 467.7 Q1193.25 459.85 1202.9 454.25 L1205.05 453.05 Q1208.45 451.65 1213.2 454.25 1218.45 457.25 1222.1 463.6 1225.05 468.65 1225.6 473.6 1225.1 477.7 1222.65 479.55 L1221.9 480.05 Q1221.25 476.8 1219.3 473.5 1216.3 468.25 1212 465.75 1208.05 463.65 1205.25 464.8 1204.35 465.3 1203.5 465.75 1198.1 468.9 1194.5 472.95 L1188.5 467.7 M1073.5 473.6 Q1074 468.65 1076.95 463.6 1080.6 457.25 1085.85 454.25 1090.6 451.65 1094 453.05 L1096.15 454.25 Q1105.75 459.8 1110.55 467.65 1107.45 470.05 1104.55 472.95 1100.95 468.9 1095.55 465.75 L1093.8 464.8 Q1091 463.65 1087.05 465.75 1082.75 468.25 1079.75 473.5 1077.8 476.8 1077.15 480.05 L1076.4 479.55 Q1073.95 477.7 1073.5 473.6"/>
+ <path stroke="none" fill="#B67340" d="M1073.5 473.6 L1073.35 471.85 Q1073.3 465.85 1076.95 459.6 1080.6 453.25 1085.85 450.25 1090.6 447.65 1094 449.05 L1096.15 450.25 Q1106.6 456.3 1111.35 465.05 L1112.1 466.45 1110.55 467.65 Q1105.75 459.8 1096.15 454.25 L1094 453.05 Q1090.6 451.65 1085.85 454.25 1080.6 457.25 1076.95 463.6 1074 468.65 1073.5 473.6 M1225.6 473.6 Q1225.05 468.65 1222.1 463.6 1218.45 457.25 1213.2 454.25 1208.45 451.65 1205.05 453.05 L1202.9 454.25 Q1193.25 459.85 1188.5 467.7 L1187.9 467.2 1186.95 466.45 1187.7 465.05 Q1192.45 456.3 1202.9 450.25 L1205.05 449.05 Q1208.45 447.65 1213.2 450.25 1218.45 453.25 1222.1 459.6 1225.75 465.85 1225.7 471.85 L1225.6 473.6"/>
+ <path stroke="none" fill="#D49562" d="M1257.5 444.75 Q1257.8 448.8 1259.65 448.6 1261.65 448.15 1264.3 440.45 1266.9 430.75 1268.2 420.65 1268.55 417.5 1271.1 415.55 1273.55 413.65 1276.65 414 1279.8 414.3 1281.7 416.8 1283.4 418.95 1283.4 421.55 L1283.55 429.15 1283.4 425.55 Q1283.4 422.95 1281.7 420.8 1279.8 418.3 1276.65 418 1273.55 417.65 1271.1 419.55 1268.55 421.5 1268.2 424.65 1266.9 434.75 1264.3 444.45 1261.65 452.15 1259.65 452.6 1257.05 452.9 1257.5 444.75 M1195.75 496.9 Q1195.15 494.95 1195.75 492.9 1196.55 489.85 1199.4 488.35 L1199.45 488.3 Q1213.9 477.9 1216.5 463.15 1218.3 455.65 1219.2 447.95 1219.6 444.85 1222.1 442.85 1224.6 440.9 1227.75 441.35 1230.9 441.7 1232.85 444.15 1234.75 446.65 1234.45 449.8 L1234.25 451 Q1233.85 449.45 1232.85 448.15 1230.9 445.7 1227.75 445.35 1224.6 444.9 1222.1 446.85 1219.6 448.85 1219.2 451.95 1218.3 459.65 1216.5 467.15 1213.9 481.9 1199.45 492.3 L1199.4 492.35 Q1196.55 493.85 1195.75 496.9 M1233.9 458.55 Q1234.1 460.8 1235.1 461 1236.7 461.4 1238.8 454.65 1241.5 444.95 1242.7 434.8 1243.05 431.7 1245.55 429.75 1248 427.8 1251.15 428.2 1254.3 428.55 1256.2 431.1 1258.3 433.6 1257.85 436.7 L1257.75 438.05 Q1257.35 436.45 1256.2 435.1 1254.3 432.55 1251.15 432.2 1248 431.8 1245.55 433.75 1243.05 435.7 1242.7 438.8 1241.5 448.95 1238.8 458.65 1236.7 465.4 1235.1 465 1233.45 464.7 1233.9 458.55 M1041.25 438.05 L1041.15 436.7 Q1040.7 433.6 1042.8 431.1 1044.7 428.55 1047.85 428.2 1051 427.8 1053.45 429.75 1055.95 431.7 1056.3 434.8 1057.5 444.95 1060.2 454.65 1062.3 461.4 1063.9 461 1064.9 460.8 1065.1 458.55 1065.55 464.7 1063.9 465 1062.3 465.4 1060.2 458.65 1057.5 448.95 1056.3 438.8 1055.95 435.7 1053.45 433.75 1051 431.8 1047.85 432.2 1044.7 432.55 1042.8 435.1 1041.65 436.45 1041.25 438.05 M1064.75 451 L1064.55 449.8 Q1064.25 446.65 1066.15 444.15 1068.1 441.7 1071.25 441.35 1074.4 440.9 1076.9 442.85 1079.4 444.85 1079.8 447.95 1080.7 455.65 1082.5 463.15 1085.1 477.9 1099.55 488.3 L1099.6 488.35 Q1102.45 489.85 1103.25 492.9 1103.85 494.95 1103.25 496.9 1102.45 493.85 1099.6 492.35 L1099.55 492.3 Q1085.1 481.9 1082.5 467.15 1080.7 459.65 1079.8 451.95 1079.4 448.85 1076.9 446.85 1074.4 444.9 1071.25 445.35 1068.1 445.7 1066.15 448.15 1065.15 449.45 1064.75 451 M1015.45 429.15 Q1015.4 425.4 1015.6 421.55 1015.6 418.95 1017.3 416.8 1019.2 414.3 1022.35 414 1025.45 413.65 1027.9 415.55 1030.45 417.5 1030.8 420.65 1032.1 430.75 1034.7 440.45 1037.35 448.15 1039.35 448.6 1041.2 448.8 1041.5 444.75 1041.95 452.9 1039.35 452.6 1037.35 452.15 1034.7 444.45 1032.1 434.75 1030.8 424.65 1030.45 421.5 1027.9 419.55 1025.45 417.65 1022.35 418 1019.2 418.3 1017.3 420.8 1015.6 422.95 1015.6 425.55 L1015.45 429.15"/>
+ <path stroke="none" fill="#BF8658" d="M1015.45 429.15 L1015.6 425.55 Q1015.6 422.95 1017.3 420.8 1019.2 418.3 1022.35 418 1025.45 417.65 1027.9 419.55 1030.45 421.5 1030.8 424.65 1032.1 434.75 1034.7 444.45 1037.35 452.15 1039.35 452.6 1041.95 452.9 1041.5 444.75 L1041.45 439.55 1041.25 438.05 Q1041.65 436.45 1042.8 435.1 1044.7 432.55 1047.85 432.2 1051 431.8 1053.45 433.75 1055.95 435.7 1056.3 438.8 1057.5 448.95 1060.2 458.65 1062.3 465.4 1063.9 465 1065.55 464.7 1065.1 458.55 1065.35 456.3 1064.9 452 L1064.75 451 Q1065.15 449.45 1066.15 448.15 1068.1 445.7 1071.25 445.35 1074.4 444.9 1076.9 446.85 1079.4 448.85 1079.8 451.95 1080.7 459.65 1082.5 467.15 1085.1 481.9 1099.55 492.3 L1099.6 492.35 Q1102.45 493.85 1103.25 496.9 L1103.25 497 1102.55 498.75 1101.9 499.7 Q1055.05 493.15 1016.15 438.65 1015.55 434 1015.45 429.15 M1257.5 444.75 Q1257.05 452.9 1259.65 452.6 1261.65 452.15 1264.3 444.45 1266.9 434.75 1268.2 424.65 1268.55 421.5 1271.1 419.55 1273.55 417.65 1276.65 418 1279.8 418.3 1281.7 420.8 1283.4 422.95 1283.4 425.55 L1283.55 429.15 Q1283.45 434 1282.85 438.65 1243.95 493.15 1197.1 499.7 L1196.45 498.75 Q1195.95 497.9 1195.75 497 L1195.75 496.9 Q1196.55 493.85 1199.4 492.35 L1199.45 492.3 Q1213.9 481.9 1216.5 467.15 1218.3 459.65 1219.2 451.95 1219.6 448.85 1222.1 446.85 1224.6 444.9 1227.75 445.35 1230.9 445.7 1232.85 448.15 1233.85 449.45 1234.25 451 L1234.1 452 Q1233.65 456.3 1233.9 458.55 1233.45 464.7 1235.1 465 1236.7 465.4 1238.8 458.65 1241.5 448.95 1242.7 438.8 1243.05 435.7 1245.55 433.75 1248 431.8 1251.15 432.2 1254.3 432.55 1256.2 435.1 1257.35 436.45 1257.75 438.05 L1257.55 439.55 Q1257.3 442.7 1257.5 444.75"/>
+ <path stroke="none" fill="#B47E52" d="M1282.85 438.65 Q1281.8 446.3 1279.4 453.3 1272.75 472.6 1255.6 487.2 1239.3 500.8 1212.15 502.8 L1201 502.35 Q1198.5 501.65 1197.1 499.7 1243.95 493.15 1282.85 438.65 M1101.9 499.7 Q1100.5 501.65 1098 502.35 L1086.85 502.8 Q1059.7 500.8 1043.4 487.2 1026.25 472.6 1019.6 453.3 1017.2 446.3 1016.15 438.65 1055.05 493.15 1101.9 499.7"/>
+ <path stroke="none" fill="#BD7841" d="M1159.5 452.7 L1149.5 452 1139.5 452.7 Q1119.35 455.65 1104.25 470.7 1086.2 488.8 1085.55 514 L1085.5 512 Q1085.5 485.5 1104.25 466.7 1123 448 1149.5 448 1176 448 1194.75 466.7 1213.5 485.5 1213.5 512 L1213.5 514 Q1212.8 488.8 1194.75 470.7 1179.65 455.65 1159.5 452.7"/>
+ <path stroke="none" fill="#AA6C3B" d="M1159.5 452.7 Q1158.8 502.85 1179.55 541.25 L1119.45 541.25 Q1140.2 502.85 1139.5 452.7 L1149.5 452 1159.5 452.7"/>
+ <path stroke="none" fill="#A16639" d="M1159.5 452.7 Q1179.65 455.65 1194.75 470.7 1212.8 488.8 1213.5 514 1213.1 528.9 1206.65 541.25 1202.15 549.85 1194.75 557.2 1176 576 1149.5 576 1123 576 1104.25 557.2 1086.2 539.2 1085.55 514 1086.2 488.8 1104.25 470.7 1119.35 455.65 1139.5 452.7 1140.2 502.85 1119.45 541.25 L1179.55 541.25 Q1158.8 502.85 1159.5 452.7"/>
+ <path stroke="none" fill="#BD7841" d="M1128.5 451.2 L1128.5 447.45 Q1128.5 444.65 1130.45 442.65 1132.4 440.65 1135.2 440.65 L1163.8 440.65 Q1166.55 440.65 1168.5 442.65 1170.5 444.65 1170.5 447.45 L1170.5 451.2 Q1170.45 449.95 1170 448.85 1169.5 447.65 1168.5 446.65 1166.55 444.65 1163.8 444.65 L1135.2 444.65 Q1132.4 444.65 1130.45 446.65 1129.5 447.65 1129 448.8 1128.55 449.9 1128.5 451.2"/>
+ <path stroke="none" fill="#AA6C3B" d="M1128.5 451.2 Q1128.55 449.9 1129 448.8 1129.5 447.65 1130.45 446.65 1132.4 444.65 1135.2 444.65 L1163.8 444.65 Q1166.55 444.65 1168.5 446.65 1169.5 447.65 1170 448.85 1170.45 449.95 1170.5 451.2 L1170.5 463.1 Q1170.4 465.8 1168.5 467.65 L1164.2 471.2 Q1149.5 481.2 1135.05 471.35 1132.4 469.65 1130.45 467.65 1128.6 465.8 1128.5 463.1 L1128.5 451.2"/>
+ <path stroke="none" fill="#B67340" d="M1112.05 543.9 L1112 542 1112 541 Q1112.4 528.4 1122.95 519.35 1133.95 510 1149.5 510 1165 510 1176 519.35 1186.55 528.4 1187 541 L1187 542 1186.95 543.9 Q1186.1 532 1176 523.35 1165 514 1149.5 514 1133.95 514 1122.95 523.35 1112.85 532 1112.05 543.9"/>
+ <path stroke="none" fill="#8E5A32" d="M1112.05 543.9 Q1112.85 532 1122.95 523.35 1133.95 514 1149.5 514 1165 514 1176 523.35 1186.1 532 1186.95 543.9 1186.2 555.95 1176 564.6 1165 574 1149.5 574 1133.95 574 1122.95 564.6 1112.8 555.9 1112.05 543.9 M1133.9 534.4 Q1135.4 535.8 1137.45 535.8 1139.6 535.8 1141.1 534.3 1142.6 532.8 1142.6 530.65 1142.6 529.55 1142.25 528.65 L1141.2 527.1 1141.05 526.95 Q1138.5 524.4 1135.65 523.55 L1135.45 523.5 Q1133.25 522.85 1131.9 523.55 1131.4 523.75 1131 524.15 L1130.4 525 Q1129.75 526.25 1130.2 528.15 L1130.3 528.65 1130.75 529.95 Q1131.7 532.2 1133.75 534.25 L1133.9 534.4 M1168 524.15 L1167.15 523.55 Q1165.75 522.85 1163.55 523.5 L1163.3 523.6 Q1160.45 524.45 1157.95 526.95 L1157.8 527.1 Q1157.15 527.8 1156.8 528.65 1156.4 529.55 1156.4 530.65 1156.4 532.8 1157.9 534.3 1159.4 535.8 1161.55 535.8 1163.6 535.8 1165.1 534.4 L1165.25 534.25 Q1167.3 532.2 1168.25 529.95 L1168.7 528.65 1168.85 528.15 Q1169.25 526.25 1168.6 525 L1168 524.15"/>
+ <path stroke="none" fill="#704627" d="M1168 524.15 L1168.6 525 Q1169.25 526.25 1168.85 528.15 L1168.7 528.65 1168.25 529.95 Q1167.3 532.2 1165.25 534.25 L1165.1 534.4 Q1163.6 535.8 1161.55 535.8 1159.4 535.8 1157.9 534.3 1156.4 532.8 1156.4 530.65 1156.4 529.55 1156.8 528.65 1157.15 527.8 1157.8 527.1 L1157.95 526.95 Q1160.45 524.45 1163.3 523.6 L1163.55 523.5 Q1165.75 522.85 1167.15 523.55 L1168 524.15 M1133.9 534.4 L1133.75 534.25 Q1131.7 532.2 1130.75 529.95 L1130.3 528.65 1130.2 528.15 Q1129.75 526.25 1130.4 525 L1131 524.15 Q1131.4 523.75 1131.9 523.55 1133.25 522.85 1135.45 523.5 L1135.65 523.55 Q1138.5 524.4 1141.05 526.95 L1141.2 527.1 1142.25 528.65 Q1142.6 529.55 1142.6 530.65 1142.6 532.8 1141.1 534.3 1139.6 535.8 1137.45 535.8 1135.4 535.8 1133.9 534.4"/>
+ <path stroke="none" fill="#FFFFFF" d="M1198 494.55 Q1198 499.7 1194.35 503.3 1190.7 507 1185.5 507 1180.4 507 1176.7 503.3 1173.05 499.7 1173.05 494.55 1173.05 489.35 1176.7 485.7 1180.4 482.05 1185.5 482.05 1190.7 482.05 1194.35 485.7 1198 489.35 1198 494.55 M1193.25 494.75 Q1193.25 491.15 1190.75 488.6 1188.25 486.1 1184.6 486.1 1181.05 486.1 1178.45 488.6 1175.95 491.15 1175.95 494.75 1175.95 498.35 1178.45 500.8 1181.05 503.35 1184.6 503.35 1188.25 503.35 1190.75 500.8 1193.25 498.35 1193.25 494.75 M1101 494.55 Q1101 489.35 1104.65 485.7 1108.3 482.05 1113.5 482.05 1118.6 482.05 1122.3 485.7 1125.95 489.35 1125.95 494.55 1125.95 499.7 1122.3 503.3 1118.6 507 1113.5 507 1108.3 507 1104.65 503.3 1101 499.7 1101 494.55 M1105.7 494.75 Q1105.7 498.35 1108.25 500.8 1110.75 503.35 1114.4 503.35 1117.95 503.35 1120.5 500.8 1123.05 498.35 1123.05 494.75 1123.05 491.15 1120.5 488.6 1117.95 486.1 1114.4 486.1 1110.75 486.1 1108.25 488.6 1105.7 491.15 1105.7 494.75"/>
+ <path stroke="none" fill="#5B5B5B" d="M1105.7 494.75 Q1105.7 491.15 1108.25 488.6 1110.75 486.1 1114.4 486.1 1117.95 486.1 1120.5 488.6 1123.05 491.15 1123.05 494.75 1123.05 498.35 1120.5 500.8 1117.95 503.35 1114.4 503.35 1110.75 503.35 1108.25 500.8 1105.7 498.35 1105.7 494.75 M1193.25 494.75 Q1193.25 498.35 1190.75 500.8 1188.25 503.35 1184.6 503.35 1181.05 503.35 1178.45 500.8 1175.95 498.35 1175.95 494.75 1175.95 491.15 1178.45 488.6 1181.05 486.1 1184.6 486.1 1188.25 486.1 1190.75 488.6 1193.25 491.15 1193.25 494.75"/>
+ <path stroke="none" fill="#B17E58" d="M192 706 Q191.3 680.75 173.3 662.75 164.9 654.35 154.95 649.7 L150.95 653.1 Q141.45 660 128 660 114.55 660 105 653.1 102.75 651.5 101.1 649.75 91.15 654.35 82.75 662.75 64.7 680.75 64.05 706 L64 704 Q64 677.45 82.75 658.75 90.15 651.35 98.75 646.9 111.95 640 128 640 144.05 640 157.3 646.85 165.9 651.35 173.3 658.75 192 677.45 192 704 L192 706"/>
+ <path stroke="none" fill="#986C4C" d="M64.05 706 Q64.7 680.75 82.75 662.75 91.15 654.35 101.1 649.75 102.75 651.5 105 653.1 114.55 660 128 660 141.45 660 150.95 653.1 L154.95 649.7 Q164.9 654.35 173.3 662.75 191.3 680.75 192 706 191.3 731.25 173.3 749.25 163.55 759 151.7 763.7 145.95 752.45 139.15 747.55 149.35 744.8 157.35 736.8 169.5 724.65 169.5 707.45 169.5 690.25 157.35 678.1 145.2 665.95 128 665.95 110.8 665.95 98.65 678.1 86.5 690.25 86.5 707.45 86.5 724.65 98.65 736.8 106.7 744.85 116.9 747.55 110.15 752.45 104.4 763.7 92.5 759 82.75 749.25 64.7 731.25 64.05 706"/>
+ <path stroke="none" fill="#916546" d="M116.9 747.55 Q106.7 744.85 98.65 736.8 86.5 724.65 86.5 707.45 86.5 690.25 98.65 678.1 110.8 665.95 128 665.95 145.2 665.95 157.35 678.1 169.5 690.25 169.5 707.45 169.5 724.65 157.35 736.8 149.35 744.8 139.15 747.55 133.85 748.95 128 748.95 122.15 748.95 116.9 747.55"/>
+ <path stroke="none" fill="#845C41" d="M116.9 747.55 Q122.15 748.95 128 748.95 133.85 748.95 139.15 747.55 145.95 752.45 151.7 763.7 140.75 768 128 768 115.3 768 104.4 763.7 110.15 752.45 116.9 747.55"/>
+ <path stroke="none" fill="#FFFFFF" d="M155.75 687.25 Q155.75 683.95 153.5 681.8 151.25 679.65 148.1 679.65 145 679.65 142.65 681.8 140.4 683.95 140.4 687.25 140.4 690.4 142.65 692.55 145 694.85 148.1 694.85 151.25 694.85 153.5 692.55 155.75 690.4 155.75 687.25 M94.4 687 Q94.4 681.95 98 678.4 101.6 674.9 106.6 674.9 111.6 674.9 115.3 678.4 118.8 681.95 118.8 687 118.8 692.05 115.3 695.5 111.6 699.15 106.6 699.15 101.6 699.15 98 695.5 94.4 692.05 94.4 687 M100.35 687.25 Q100.35 690.4 102.6 692.55 104.75 694.85 107.95 694.85 111.1 694.85 113.35 692.55 115.6 690.4 115.6 687.25 115.6 683.95 113.35 681.8 111.1 679.65 107.95 679.65 104.75 679.65 102.6 681.8 100.35 683.95 100.35 687.25 M161.6 687 Q161.6 692.05 158.1 695.5 154.5 699.15 149.4 699.15 144.4 699.15 140.85 695.5 137.25 692.05 137.25 687 137.25 681.95 140.85 678.4 144.4 674.9 149.4 674.9 154.5 674.9 158.1 678.4 161.6 681.95 161.6 687"/>
+ <path stroke="none" fill="#5B5B5B" d="M100.35 687.25 Q100.35 683.95 102.6 681.8 104.75 679.65 107.95 679.65 111.1 679.65 113.35 681.8 115.6 683.95 115.6 687.25 115.6 690.4 113.35 692.55 111.1 694.85 107.95 694.85 104.75 694.85 102.6 692.55 100.35 690.4 100.35 687.25 M155.75 687.25 Q155.75 690.4 153.5 692.55 151.25 694.85 148.1 694.85 145 694.85 142.65 692.55 140.4 690.4 140.4 687.25 140.4 683.95 142.65 681.8 145 679.65 148.1 679.65 151.25 679.65 153.5 681.8 155.75 683.95 155.75 687.25"/>
+ <path stroke="none" fill="#F0EDE7" d="M111.95 742.6 L111.9 740.8 111.6 733.15 Q111.6 732.35 111.95 731.6 112.35 730.9 113.05 730.5 113.8 730.05 114.6 730.05 L121.35 730.05 Q122.6 730.05 123.45 730.95 124.35 731.8 124.35 733.05 L124.35 744 Q124.3 742.75 123.45 741.95 122.6 741.05 121.35 741.05 L114.6 741.05 Q113.8 741.05 113.05 741.5 112.35 741.9 111.95 742.6 M144.05 742.6 L142.95 741.5 Q142.2 741.05 141.4 741.05 L134.65 741.05 Q133.4 741.05 132.55 741.95 131.7 742.75 131.65 744 L131.65 733.05 Q131.65 731.8 132.55 730.95 133.4 730.05 134.65 730.05 L141.4 730.05 Q142.2 730.05 142.95 730.5 L144.05 731.6 144.4 733.15 144.15 740.8 144.05 742.6"/>
+ <path stroke="none" fill="#FFFCF5" d="M144.05 742.6 Q142.55 774.5 137.7 777.3 136.55 778.15 135.25 778 133.5 777.95 132.5 776.65 131.7 775.65 131.65 774.5 L131.65 774.2 131.65 744 Q131.7 742.75 132.55 741.95 133.4 741.05 134.65 741.05 L141.4 741.05 Q142.2 741.05 142.95 741.5 L144.05 742.6 M111.95 742.6 Q112.35 741.9 113.05 741.5 113.8 741.05 114.6 741.05 L121.35 741.05 Q122.6 741.05 123.45 741.95 124.3 742.75 124.35 744 L124.35 774.2 124.35 774.5 Q124.3 775.65 123.5 776.65 122.5 777.95 120.75 778 119.45 778.15 118.3 777.3 113.45 774.5 111.95 742.6"/>
+ <path stroke="none" fill="#3C6672" d="M121.15 736.15 Q117.85 737.7 113.95 737.7 107 737.7 102.05 732.75 97.15 727.85 97.15 720.9 97.15 713.9 102.05 709 107 704.05 113.95 704.05 L142.45 704.05 Q149.15 704.2 153.9 709 158.85 713.9 158.85 720.9 158.85 727.85 153.9 732.75 149 737.7 142 737.7 138.1 737.7 134.85 736.15 132.3 734.95 130.1 732.75 L128 730.25 125.85 732.75 Q123.7 734.95 121.15 736.15"/>
+ <path stroke="none" fill="#252525" d="M140.4 703.45 Q139.85 707.5 136.8 710.45 133.15 714.15 128 714.15 122.8 714.15 119.1 710.45 116.1 707.45 115.6 703.3 116.1 701.35 119.1 699.9 122.8 698.15 128 698.15 133.15 698.15 136.8 699.9 139.9 701.4 140.4 703.45"/>
+ <path stroke="none" fill="#333333" d="M140.4 703.45 Q139.9 701.4 136.8 699.9 133.15 698.15 128 698.15 122.8 698.15 119.1 699.9 116.1 701.35 115.6 703.3 L115.5 701.7 115.5 700.8 Q115.75 698.55 119.1 696.9 122.8 695.15 128 695.15 133.15 695.15 136.8 696.9 140.15 698.55 140.45 700.8 L140.5 701.7 140.4 703.45"/>
+ <path stroke="none" fill="#252525" d="M163.9 721.45 L162.85 725.05 162.65 725.45 162.2 725.6 161.75 725.5 Q156.15 720.55 148.9 718.55 L148.5 718.2 148.5 717.7 148.7 717.25 Q148.9 717.1 149.2 717.05 158.05 716.55 163.6 720.6 L163.9 721 163.9 721.45 M167.45 709.3 L168.15 713.95 168.15 714.55 167.7 715 167.2 715.1 Q157.5 713.6 148.8 714.05 L148.2 713.85 147.9 713.3 147.9 712.7 Q148.05 712.4 148.35 712.2 158.15 706.85 166.7 708.5 166.95 708.55 167.2 708.8 L167.45 709.3 M92.1 721.45 L92.1 721 92.4 720.6 Q97.95 716.55 106.8 717.05 L107.3 717.25 107.5 717.7 107.5 718.2 107.1 718.55 Q99.85 720.55 94.25 725.5 L93.8 725.6 93.35 725.45 93.15 725.05 92.1 721.45 M88.55 709.3 Q88.6 708.95 88.8 708.8 L89.3 708.5 Q97.85 706.85 107.65 712.2 L108.1 712.7 108.1 713.3 107.8 713.85 107.2 714.05 Q98.5 713.6 88.8 715.1 L88.3 715 87.85 714.55 87.85 713.95 88.55 709.3"/>
+ <path stroke="none" fill="#B67340" d="M343.9 654.45 Q339.15 647.65 330.6 642.7 L328.45 641.5 Q325.05 640.1 320.3 642.7 315.05 645.7 311.4 652.05 308.45 657.1 307.95 662.05 L307.8 660.3 Q307.75 654.3 311.4 648.05 315.05 641.7 320.3 638.7 325.05 636.1 328.45 637.5 L330.6 638.7 Q340.8 644.6 345.6 653.1 L343.9 654.45 M422.35 653.15 Q427.1 644.6 437.35 638.7 L439.5 637.5 Q442.9 636.1 447.65 638.7 452.9 641.7 456.55 648.05 460.2 654.3 460.15 660.3 L460.05 662.05 Q459.5 657.1 456.55 652.05 452.9 645.7 447.65 642.7 442.9 640.1 439.5 641.5 L437.35 642.7 Q428.75 647.7 424.05 654.5 L422.35 653.15"/>
+ <path stroke="none" fill="#8E5A32" d="M337.8 660.1 Q334.5 656.85 330 654.2 L328.25 653.25 Q325.45 652.1 321.5 654.2 317.2 656.7 314.2 661.95 312.25 665.25 311.6 668.5 L310.85 668 Q308.4 666.15 307.95 662.05 308.45 657.1 311.4 652.05 315.05 645.7 320.3 642.7 325.05 640.1 328.45 641.5 L330.6 642.7 Q339.15 647.65 343.9 654.45 341.25 656.6 338.7 659.15 L337.8 660.1 M460.05 662.05 Q459.55 666.15 457.1 668 L456.35 668.5 Q455.7 665.25 453.75 661.95 450.75 656.7 446.45 654.2 442.5 652.1 439.7 653.25 L437.95 654.2 Q433.4 656.85 430.15 660.15 L429.2 659.15 Q426.7 656.65 424.05 654.5 428.75 647.7 437.35 642.7 L439.5 641.5 Q442.9 640.1 447.65 642.7 452.9 645.7 456.55 652.05 459.5 657.1 460.05 662.05"/>
+ <path stroke="none" fill="#774B2A" d="M311.6 668.5 Q312.25 665.25 314.2 661.95 317.2 656.7 321.5 654.2 325.45 652.1 328.25 653.25 L330 654.2 Q334.5 656.85 337.8 660.1 331.25 666.9 327.1 674.65 320.15 673.4 312.9 669.25 L311.6 668.5 M456.35 668.5 L455.05 669.25 Q447.8 673.45 440.8 674.65 436.65 666.9 430.15 660.15 433.4 656.85 437.95 654.2 L439.7 653.25 Q442.5 652.1 446.45 654.2 450.75 656.7 453.75 661.95 455.7 665.25 456.35 668.5"/>
+ <path stroke="none" fill="#BD7841" d="M327.1 674.65 Q331.25 666.9 337.8 660.1 L338.7 659.15 Q341.25 656.6 343.9 654.45 L345.6 653.1 Q362.15 640.45 383.95 640.45 405.8 640.45 422.35 653.15 L424.05 654.5 Q426.7 656.65 429.2 659.15 L430.15 660.15 Q436.65 666.9 440.8 674.65 447.95 688.1 447.95 704.45 L447.95 706.45 Q447.25 681.25 429.2 663.15 414.1 648.1 393.95 645.15 L383.95 644.45 373.95 645.15 Q353.8 648.1 338.7 663.15 320.65 681.25 320 706.45 L319.95 704.45 Q319.95 688.1 327.1 674.65"/>
+ <path stroke="none" fill="#A16639" d="M447.95 706.45 Q447.55 721.35 441.1 733.7 436.6 742.3 429.2 749.65 L426.95 751.8 423.05 755.15 Q406.85 741.4 383.95 741.4 361.1 741.4 344.85 755.15 L340.95 751.8 338.7 749.65 Q320.65 731.65 320 706.45 320.65 681.25 338.7 663.15 353.8 648.1 373.95 645.15 L383.95 644.45 393.95 645.15 Q414.1 648.1 429.2 663.15 447.25 681.25 447.95 706.45 M401.45 663.9 Q401.45 658.7 396.3 655.05 391.2 651.4 383.95 651.4 376.7 651.4 371.55 655.05 366.45 658.7 366.45 663.9 L366.5 664.75 Q366.85 675.35 371.55 683 376.7 691.4 383.95 691.4 391.2 691.4 396.3 683 401.05 675.35 401.45 664.75 L401.45 663.9"/>
+ <path stroke="none" fill="#AA6C3C" d="M401.45 663.9 L401.45 664.75 Q401.05 675.35 396.3 683 391.2 691.4 383.95 691.4 376.7 691.4 371.55 683 366.85 675.35 366.5 664.75 L366.45 663.9 Q366.45 658.7 371.55 655.05 376.7 651.4 383.95 651.4 391.2 651.4 396.3 655.05 401.45 658.7 401.45 663.9"/>
+ <path stroke="none" fill="#955E34" d="M423.05 755.15 Q406.25 768.45 383.95 768.45 361.65 768.45 344.85 755.15 361.1 741.4 383.95 741.4 406.85 741.4 423.05 755.15"/>
+ <path stroke="none" fill="#545454" d="M371.1 707.65 L370.9 705.3 370.9 704.4 Q371.2 702 374.7 700.3 378.55 698.45 383.95 698.45 389.35 698.45 393.2 700.3 396.65 702 397 704.4 L397 705.3 396.8 707.65 Q396.1 705.75 393.2 704.3 389.35 702.45 383.95 702.45 378.55 702.45 374.7 704.3 371.8 705.7 371.1 707.65"/>
+ <path stroke="none" fill="#464646" d="M371.1 707.65 Q371.8 705.7 374.7 704.3 378.55 702.45 383.95 702.45 389.35 702.45 393.2 704.3 396.1 705.75 396.8 707.65 396.15 711.6 393.2 714.55 391.05 716.7 388.4 717.65 384.15 719.4 379.5 717.65 376.85 716.7 374.7 714.55 371.75 711.6 371.1 707.65"/>
+ <path stroke="none" fill="#383838" d="M388.4 717.65 L389.25 718.65 Q390.2 719.6 391.3 720.15 392.7 720.8 394.35 720.8 397.35 720.8 399.5 718.65 L400.75 717 401.25 716.55 401.95 716.6 406.65 719.05 407.1 719.55 407.05 720.2 405.55 722.5 404.5 723.65 Q400.25 727.85 394.35 727.85 388.45 727.85 384.25 723.65 L383.95 723.35 383.65 723.65 Q379.4 727.85 373.5 727.85 367.55 727.85 363.4 723.65 L362.35 722.5 Q361.45 721.4 360.85 720.3 360.65 719.95 360.8 719.65 360.85 719.3 361.2 719.1 L365.8 716.55 366.45 716.45 367 716.9 Q367.55 717.85 368.35 718.65 370.5 720.8 373.5 720.8 375.15 720.8 376.6 720.15 L378.65 718.65 379.5 717.65 Q384.15 719.4 388.4 717.65"/>
+ <path stroke="none" fill="#FFFFFF" d="M422.65 692.25 Q422.65 689.8 420.95 688.15 419.25 686.45 416.85 686.45 414.45 686.45 412.7 688.15 411 689.8 411 692.25 411 694.65 412.7 696.3 414.45 698.05 416.85 698.05 419.25 698.05 420.95 696.3 422.65 694.65 422.65 692.25 M427.15 692.1 Q427.15 695.95 424.45 698.55 421.7 701.35 417.85 701.35 414.05 701.35 411.3 698.55 408.6 695.95 408.6 692.1 408.6 688.25 411.3 685.55 414.05 682.85 417.85 682.85 421.7 682.85 424.45 685.55 427.15 688.25 427.15 692.1 M340.75 692.1 Q340.75 688.25 343.45 685.55 346.2 682.85 350.05 682.85 353.85 682.85 356.6 685.55 359.3 688.25 359.3 692.1 359.3 695.95 356.6 698.55 353.85 701.35 350.05 701.35 346.2 701.35 343.45 698.55 340.75 695.95 340.75 692.1 M345.25 692.25 Q345.25 694.65 346.95 696.3 348.65 698.05 351.05 698.05 353.45 698.05 355.2 696.3 356.9 694.65 356.9 692.25 356.9 689.8 355.2 688.15 353.45 686.45 351.05 686.45 348.65 686.45 346.95 688.15 345.25 689.8 345.25 692.25"/>
+ <path stroke="none" fill="#5B5B5B" d="M345.25 692.25 Q345.25 689.8 346.95 688.15 348.65 686.45 351.05 686.45 353.45 686.45 355.2 688.15 356.9 689.8 356.9 692.25 356.9 694.65 355.2 696.3 353.45 698.05 351.05 698.05 348.65 698.05 346.95 696.3 345.25 694.65 345.25 692.25 M422.65 692.25 Q422.65 694.65 420.95 696.3 419.25 698.05 416.85 698.05 414.45 698.05 412.7 696.3 411 694.65 411 692.25 411 689.8 412.7 688.15 414.45 686.45 416.85 686.45 419.25 686.45 420.95 688.15 422.65 689.8 422.65 692.25"/>
+ <path stroke="none" fill="#8E5A32" d="M427.15 692.1 Q427.15 688.25 424.45 685.55 421.7 682.85 417.85 682.85 414.05 682.85 411.3 685.55 408.6 688.25 408.6 692.1 408.6 695.95 411.3 698.55 414.05 701.35 417.85 701.35 421.7 701.35 424.45 698.55 427.15 695.95 427.15 692.1 M432.8 688.65 Q434.7 695.85 431.85 702 428.95 708.3 422.95 709.9 417 711.45 411.35 707.45 405.8 703.6 403.85 696.4 L403.85 696.35 Q402.25 690.35 405.35 685 408.5 679.6 414.45 678.05 420.45 676.45 425.85 679.55 431.15 682.6 432.8 688.6 L432.8 688.65 M335.1 688.65 L335.1 688.6 Q336.75 682.6 342.05 679.55 347.45 676.45 353.45 678.05 359.4 679.6 362.55 685 365.65 690.35 364.05 696.35 L364.05 696.4 Q362.1 703.6 356.55 707.45 350.9 711.45 344.95 709.9 338.95 708.3 336.05 702 333.2 695.85 335.1 688.65 M340.75 692.1 Q340.75 695.95 343.45 698.55 346.2 701.35 350.05 701.35 353.85 701.35 356.6 698.55 359.3 695.95 359.3 692.1 359.3 688.25 356.6 685.55 353.85 682.85 350.05 682.85 346.2 682.85 343.45 685.55 340.75 688.25 340.75 692.1"/>
+ <path stroke="none" fill="#5A9BF3" d="M702.45 701 L702.25 701.15 702.1 699.7 Q699.85 677.2 683.25 660.6 675.3 652.65 665.95 648 659.7 644.9 652.85 643.25 L650.5 642.75 Q644 641.45 636.95 641.45 L625.35 642.4 622.95 642.85 Q604.65 646.6 590.6 660.6 573.55 677.7 571.7 701.15 L571.5 701 Q572.15 675.1 590.6 656.6 604.65 642.6 622.95 638.85 L624 638.65 625.35 638.4 636.95 637.45 Q644 637.45 650.5 638.75 L651.8 639.05 652.85 639.25 Q659.7 640.9 665.95 644 675.3 648.65 683.25 656.6 699.85 673.2 702.1 695.7 L702.45 701"/>
+ <path stroke="none" fill="#528CDB" d="M702.45 701 L702.45 702.95 702.45 704.25 702.45 704.65 702.45 705.05 702.35 706.85 702.3 707.7 702.2 709 Q701.15 721.8 695.5 732.75 L692.55 737.9 691.75 739.1 Q688.1 744.4 683.25 749.25 L681.25 751.2 Q676.8 755.35 671.95 758.5 656.5 768.45 636.95 768.45 618.05 768.45 603.05 759.15 597.6 755.8 592.65 751.25 L590.6 749.25 Q586.6 745.25 583.5 740.95 L582.2 739.1 579.1 734 Q572.85 722.6 571.7 709.1 L571.7 709 571.6 707.25 571.5 705.25 571.5 705.15 571.45 704.25 571.45 702.95 571.5 701 571.7 701.15 Q573.55 677.7 590.6 660.6 604.65 646.6 622.95 642.85 L625.35 642.4 636.95 641.45 Q644 641.45 650.5 642.75 L652.85 643.25 Q659.7 644.9 665.95 648 675.3 652.65 683.25 660.6 699.85 677.2 702.1 699.7 L702.25 701.15 702.45 701 M624.35 669.7 Q624.35 667.75 622.95 666.35 621.55 664.95 619.6 664.95 617.65 664.95 616.25 666.35 614.85 667.75 614.85 669.7 614.85 671.65 616.25 673.05 617.65 674.45 619.6 674.45 621.55 674.45 622.95 673.05 624.35 671.65 624.35 669.7 M613.2 657.75 Q613.2 656.3 612.15 655.25 611.1 654.2 609.65 654.2 608.2 654.2 607.15 655.25 606.1 656.3 606.1 657.75 606.1 659.2 607.15 660.25 608.2 661.3 609.65 661.3 611.1 661.3 612.15 660.25 613.2 659.2 613.2 657.75 M610.5 672.35 Q610.5 670 608.8 668.3 607.15 666.65 604.8 666.65 602.45 666.65 600.75 668.3 599.1 670 599.1 672.35 599.1 674.7 600.75 676.35 602.45 678.05 604.8 678.05 607.15 678.05 608.8 676.35 610.5 674.7 610.5 672.35 M658.15 753.2 Q657.55 750.9 655.45 749.75 653.45 748.6 651.2 749.2 648.9 749.8 647.65 751.85 646.55 753.85 647.15 756.15 647.75 758.4 649.75 759.6 651.85 760.8 654.15 760.2 656.4 759.6 657.55 757.5 658.75 755.45 658.15 753.2 M670.8 747.1 Q670.3 745.2 668.6 744.2 666.9 743.2 665.05 743.7 663.15 744.2 662.15 745.95 661.15 747.65 661.65 749.55 662.2 751.4 663.9 752.4 665.6 753.35 667.5 752.85 669.35 752.35 670.35 750.65 671.35 748.95 670.8 747.1 M657 738.4 Q656.6 737 655.35 736.25 654 735.5 652.6 735.9 651.2 736.25 650.5 737.55 649.75 738.85 650.15 740.25 650.5 741.65 651.8 742.4 653.05 743.1 654.45 742.75 655.85 742.35 656.65 741.1 657.35 739.8 657 738.4"/>
+ <path stroke="none" fill="#406EAF" d="M582.2 739.1 L583.5 740.95 Q586.6 745.25 590.6 749.25 L592.65 751.25 Q597.6 755.8 603.05 759.15 L602.2 759.85 600.3 761.35 Q594.2 765.8 587.6 767.55 581.2 769.25 576.85 767.7 575.8 767.35 574.9 766.8 572.8 763.2 573.35 758.05 573.55 756.15 574.1 754.05 575.95 747.2 580.75 740.85 L582.2 739.1 M671.95 758.5 Q676.8 755.35 681.25 751.2 L683.25 749.25 Q688.1 744.4 691.75 739.1 L692.55 737.9 693.95 739.6 Q699.55 746.5 701.6 754.05 L702.35 758.05 Q702.9 763.25 700.8 766.8 L700.15 767.15 Q695.45 769.5 688.1 767.55 681.05 765.7 674.6 760.7 L672.7 759.15 671.95 758.5"/>
+ <path stroke="none" fill="#4475BB" d="M579.1 734 L582.2 739.1 580.75 740.85 Q575.95 747.2 574.1 754.05 573.55 756.15 573.35 758.05 572.8 763.2 574.9 766.8 573.7 766.1 572.65 765.05 569.85 762.25 569.35 758.05 568.9 754.55 570.1 750.05 572.15 742.5 577.8 735.55 L579.1 734 M692.55 737.9 L695.5 732.75 696.8 734.15 Q703.35 741.7 705.6 750.05 706.8 754.55 706.35 758.05 705.85 762.25 703.05 765.05 L700.8 766.8 Q702.9 763.25 702.35 758.05 L701.6 754.05 Q699.55 746.5 693.95 739.6 L692.55 737.9"/>
+ <path stroke="none" fill="#4A7FC6" d="M657 738.4 Q657.35 739.8 656.65 741.1 655.85 742.35 654.45 742.75 653.05 743.1 651.8 742.4 650.5 741.65 650.15 740.25 649.75 738.85 650.5 737.55 651.2 736.25 652.6 735.9 654 735.5 655.35 736.25 656.6 737 657 738.4 M670.8 747.1 Q671.35 748.95 670.35 750.65 669.35 752.35 667.5 752.85 665.6 753.35 663.9 752.4 662.2 751.4 661.65 749.55 661.15 747.65 662.15 745.95 663.15 744.2 665.05 743.7 666.9 743.2 668.6 744.2 670.3 745.2 670.8 747.1 M658.15 753.2 Q658.75 755.45 657.55 757.5 656.4 759.6 654.15 760.2 651.85 760.8 649.75 759.6 647.75 758.4 647.15 756.15 646.55 753.85 647.65 751.85 648.9 749.8 651.2 749.2 653.45 748.6 655.45 749.75 657.55 750.9 658.15 753.2 M610.5 672.35 Q610.5 674.7 608.8 676.35 607.15 678.05 604.8 678.05 602.45 678.05 600.75 676.35 599.1 674.7 599.1 672.35 599.1 670 600.75 668.3 602.45 666.65 604.8 666.65 607.15 666.65 608.8 668.3 610.5 670 610.5 672.35 M613.2 657.75 Q613.2 659.2 612.15 660.25 611.1 661.3 609.65 661.3 608.2 661.3 607.15 660.25 606.1 659.2 606.1 657.75 606.1 656.3 607.15 655.25 608.2 654.2 609.65 654.2 611.1 654.2 612.15 655.25 613.2 656.3 613.2 657.75 M624.35 669.7 Q624.35 671.65 622.95 673.05 621.55 674.45 619.6 674.45 617.65 674.45 616.25 673.05 614.85 671.65 614.85 669.7 614.85 667.75 616.25 666.35 617.65 664.95 619.6 664.95 621.55 664.95 622.95 666.35 624.35 667.75 624.35 669.7"/>
+ <path stroke="none" fill="#5B5B5B" d="M677.3 692.3 Q679.75 693 680.95 695.05 682.25 697.25 681.6 699.7 681 702.05 678.8 703.35 676.65 704.6 674.2 703.95 L673.65 703.8 Q671.7 703.1 670.7 701.2 669.4 699 670.1 696.55 670.7 694.2 672.85 692.95 674.7 691.9 676.7 692.2 L677.3 692.3 M598.4 692.3 L599 692.2 Q601 691.9 602.85 692.95 605 694.2 605.6 696.55 606.3 699 605 701.2 604 703.1 602.05 703.8 L601.5 703.95 Q599.05 704.6 596.9 703.35 594.7 702.05 594.1 699.7 593.45 697.25 594.75 695.05 595.95 693 598.4 692.3"/>
+ <path stroke="none" fill="#FFFFFF" d="M598.4 692.3 Q595.95 693 594.75 695.05 593.45 697.25 594.1 699.7 594.7 702.05 596.9 703.35 599.05 704.6 601.5 703.95 L602.05 703.8 Q604 703.1 605 701.2 606.3 699 605.6 696.55 605 694.2 602.85 692.95 601 691.9 599 692.2 L598.4 692.3 M680.2 688.6 Q684.05 689.7 686 693.1 687.95 696.5 686.95 700.35 685.9 704.15 682.5 706.2 679.05 708.1 675.2 707.05 671.4 706.05 669.45 702.7 667.45 699.2 668.5 695.4 669.5 691.6 673 689.6 676.4 687.65 680.2 688.6 M677.3 692.3 L676.7 692.2 Q674.7 691.9 672.85 692.95 670.7 694.2 670.1 696.55 669.4 699 670.7 701.2 671.7 703.1 673.65 703.8 L674.2 703.95 Q676.65 704.6 678.8 703.35 681 702.05 681.6 699.7 682.25 697.25 680.95 695.05 679.75 693 677.3 692.3 M595.5 688.6 Q599.3 687.65 602.7 689.6 606.2 691.6 607.2 695.4 608.25 699.2 606.25 702.7 604.3 706.05 600.5 707.05 596.65 708.1 593.2 706.2 589.8 704.15 588.75 700.35 587.75 696.5 589.7 693.1 591.65 689.7 595.5 688.6"/>
+ <path stroke="none" fill="#5A9BF3" d="M595.5 688.6 Q591.65 689.7 589.7 693.1 587.75 696.5 588.75 700.35 589.8 704.15 593.2 706.2 596.65 708.1 600.5 707.05 604.3 706.05 606.25 702.7 608.25 699.2 607.2 695.4 606.2 691.6 602.7 689.6 599.3 687.65 595.5 688.6 M690.9 702.6 L690.7 703.05 Q689.1 708.3 684.3 711.15 679.3 714.05 673.7 712.55 668.2 711.05 665.3 706.1 662.5 701.2 663.95 695.85 L663.9 695.45 Q666.55 685.6 672.4 679.7 678.15 673.8 683.75 675.3 689.25 676.75 691.35 684.8 693.35 692.75 690.9 702.6 M680.2 688.6 Q676.4 687.65 673 689.6 669.5 691.6 668.5 695.4 667.45 699.2 669.45 702.7 671.4 706.05 675.2 707.05 679.05 708.1 682.5 706.2 685.9 704.15 686.95 700.35 687.95 696.5 686 693.1 684.05 689.7 680.2 688.6 M584.8 702.6 Q582.35 692.75 584.35 684.8 586.45 676.75 591.95 675.3 597.55 673.8 603.3 679.7 609.15 685.6 611.8 695.45 L611.75 695.85 Q613.2 701.2 610.4 706.1 607.5 711.05 602 712.55 596.4 714.05 591.4 711.15 586.6 708.3 585 703.05 L584.8 702.6"/>
+ <path stroke="none" fill="#FFFCF5" d="M632.25 650.2 L635.8 616.4 Q635.9 615.55 636.5 615 L636.9 614.75 637.9 614.5 638.95 614.75 639.3 615 639.35 615 Q639.95 615.55 640 616.4 L643.6 650 637.55 650.75 632.25 650.2 M644.05 653.9 L645.75 670.1 Q643.55 672.25 637.55 672.3 632.1 672.35 630.05 670.45 L631.8 654.15 Q633.9 654.85 637.55 654.8 641.65 654.75 644.05 653.9 M646.2 674.35 L646.95 681.4 Q646.05 686.7 637.55 686.85 629.6 686.95 628.85 681.8 L629.6 674.75 Q631.45 677.15 637.55 677.05 644.2 676.95 646.2 674.35"/>
+ <path stroke="none" fill="#F0EDE7" d="M646.2 674.35 Q644.2 676.95 637.55 677.05 631.45 677.15 629.6 674.75 L630.05 670.45 Q632.1 672.35 637.55 672.3 643.55 672.25 645.75 670.1 L646.2 674.35 M643.6 650 L644.05 653.9 Q641.65 654.75 637.55 654.8 633.9 654.85 631.8 654.15 L632.25 650.2 637.55 650.75 643.6 650 M646.95 681.4 L647.05 682.25 Q647.3 690.95 637.55 691.15 628.2 691.35 628.75 682.25 L628.85 681.8 Q629.6 686.95 637.55 686.85 646.05 686.7 646.95 681.4"/>
+ <path stroke="none" fill="#FFFFFF" d="M621.15 710.9 Q622.45 710.9 623.75 711.35 638.9 716.65 651.5 711.55 653.3 710.8 655.15 710.95 658.05 718.6 655.15 727.25 639.55 732.9 621.15 727.25 617.9 718.15 621.15 710.9"/>
+ <path stroke="none" fill="#E7E7E7" d="M621.15 710.9 Q617.9 718.15 621.15 727.25 L618.55 726.4 Q615.4 725.3 614 722.35 612.55 719.35 613.65 716.3 614.7 713.15 617.7 711.7 619.4 710.9 621.15 710.9 M655.15 727.25 Q658.05 718.6 655.15 710.95 L657.55 711.55 Q660.6 712.75 661.85 715.8 663.1 718.85 661.9 721.9 660.65 724.9 657.65 726.25 L655.15 727.25"/>
+ <path stroke="none" fill="#BD7841" d="M831.75 1090 L831.7 1088 Q831.7 1071.65 838.85 1058.2 843 1050.45 849.55 1043.65 L850.45 1042.7 855.65 1038 857.35 1036.65 Q873.9 1024 895.7 1024 917.55 1024 934.1 1036.7 L935.8 1038.05 940.95 1042.7 941.9 1043.7 Q948.4 1050.45 952.55 1058.2 955.05 1062.95 956.7 1068.05 L957.9 1072.3 Q959.7 1079.8 959.7 1088 L959.7 1090 Q959.45 1080.65 956.8 1072.3 L955.3 1068.05 Q950.6 1056.35 940.95 1046.7 925.85 1031.65 905.7 1028.7 L895.7 1028 885.7 1028.7 Q865.55 1031.65 850.45 1046.7 832.4 1064.8 831.75 1090"/>
+ <path stroke="none" fill="#A16639" d="M831.75 1090 Q832.4 1064.8 850.45 1046.7 865.55 1031.65 885.7 1028.7 L895.7 1028 905.7 1028.7 Q925.85 1031.65 940.95 1046.7 950.6 1056.35 955.3 1068.05 L956.8 1072.3 Q959.45 1080.65 959.7 1090 959.6 1094.5 958.9 1098.8 957.35 1108.65 952.85 1117.25 948.35 1125.85 940.95 1133.2 L938.7 1135.35 934.8 1138.7 Q928.5 1133.35 921.25 1130.1 926.35 1127.95 930.9 1124.8 L931.7 1124.2 935.4 1121.3 936.45 1120.35 Q946.35 1111 946 1100.45 945.7 1090 938.85 1098.2 936.55 1100.9 932.65 1101.95 L932.6 1101.95 Q926.6 1103.55 921.25 1100.45 L918.9 1098.8 Q915.5 1095.9 914.3 1091.35 912.7 1085.35 915.8 1079.95 918.85 1074.65 924.85 1073 L924.9 1073 928.95 1072.3 932 1072.3 Q938.05 1072.35 933.4 1068.1 L933.4 1068.05 931.7 1066.45 930.95 1065.85 Q925.55 1061.15 919.4 1058.2 916 1056.6 912.35 1055.5 913.05 1052.1 913.2 1048.3 L913.2 1047.45 Q913.2 1042.25 908.05 1038.6 902.95 1034.95 895.7 1034.95 888.45 1034.95 883.3 1038.6 878.2 1042.25 878.2 1047.45 L878.25 1048.3 Q878.4 1052.1 879.05 1055.55 868.4 1058.75 859.8 1066.45 L858.1 1068.05 Q854.1 1072.65 860.45 1072.3 L861.4 1072.3 866.45 1073.05 866.5 1073.05 Q872.5 1074.7 875.55 1080 878.65 1085.4 877.05 1091.4 875.9 1095.9 872.5 1098.8 871.4 1099.75 870.1 1100.5 864.75 1103.6 858.75 1102 L858.7 1102 Q854.75 1100.95 852.75 1098.75 845.45 1090.8 844.85 1098.8 845.05 1111.25 855.4 1120.75 L858.1 1122.95 859.8 1124.2 Q864.65 1127.75 870.2 1130.15 862.9 1133.4 856.6 1138.7 L852.7 1135.35 850.45 1133.2 Q832.4 1115.2 831.75 1090 M928.35 1078.65 Q924.5 1078.65 921.8 1081.35 919.1 1084.1 919.1 1087.95 919.1 1091.75 921.8 1094.5 924.5 1097.2 928.35 1097.2 932.2 1097.2 934.8 1094.5 937.6 1091.75 937.6 1087.95 937.6 1084.1 934.8 1081.35 932.2 1078.65 928.35 1078.65 M863 1078.7 Q859.15 1078.7 856.55 1081.4 853.75 1084.15 853.75 1088 853.75 1091.8 856.55 1094.55 859.15 1097.25 863 1097.25 866.85 1097.25 869.55 1094.55 872.25 1091.8 872.25 1088 872.25 1084.15 869.55 1081.4 866.85 1078.7 863 1078.7"/>
+ <path stroke="none" fill="#AA6C3C" d="M879.05 1055.55 Q878.4 1052.1 878.25 1048.3 L878.2 1047.45 Q878.2 1042.25 883.3 1038.6 888.45 1034.95 895.7 1034.95 902.95 1034.95 908.05 1038.6 913.2 1042.25 913.2 1047.45 L913.2 1048.3 Q913.05 1052.1 912.35 1055.5 904.55 1053.15 895.7 1053.15 L894.1 1053.2 Q886.15 1053.4 879.05 1055.55"/>
+ <path stroke="none" fill="#EBCEB7" d="M879.05 1055.55 Q886.15 1053.4 894.1 1053.2 L895.7 1053.15 Q904.55 1053.15 912.35 1055.5 916 1056.6 919.4 1058.2 925.55 1061.15 930.95 1065.85 L931.7 1066.45 933.4 1068.05 933.4 1068.1 Q938.05 1072.35 932 1072.3 L928.95 1072.3 924.9 1073 924.85 1073 Q918.85 1074.65 915.8 1079.95 912.7 1085.35 914.3 1091.35 915.5 1095.9 918.9 1098.8 L921.25 1100.45 Q926.6 1103.55 932.6 1101.95 L932.65 1101.95 Q936.55 1100.9 938.85 1098.2 945.7 1090 946 1100.45 946.35 1111 936.45 1120.35 L935.4 1121.3 931.7 1124.2 930.9 1124.8 Q926.35 1127.95 921.25 1130.1 L919.4 1130.85 Q908.7 1134.95 895.7 1134.95 L894.1 1134.95 Q882.3 1134.7 872.45 1131.05 L870.2 1130.15 Q864.65 1127.75 859.8 1124.2 L858.1 1122.95 855.4 1120.75 Q845.05 1111.25 844.85 1098.8 845.45 1090.8 852.75 1098.75 854.75 1100.95 858.7 1102 L858.75 1102 Q864.75 1103.6 870.1 1100.5 871.4 1099.75 872.5 1098.8 875.9 1095.9 877.05 1091.4 878.65 1085.4 875.55 1080 872.5 1074.7 866.5 1073.05 L866.45 1073.05 861.4 1072.3 860.45 1072.3 Q854.1 1072.65 858.1 1068.05 L859.8 1066.45 Q868.4 1058.75 879.05 1055.55 M882.85 1098.1 L883 1098.8 Q883.75 1102.3 886.45 1105 888.6 1107.15 891.25 1108.1 L890.4 1109.1 888.35 1110.6 Q886.9 1111.25 885.25 1111.25 882.25 1111.25 880.1 1109.1 L878.75 1107.35 Q878.55 1107 878.2 1106.9 L877.55 1107 872.95 1109.55 Q872.6 1109.75 872.55 1110.1 872.4 1110.4 872.6 1110.75 L874.1 1112.95 875.15 1114.1 Q879.3 1118.3 885.25 1118.3 891.15 1118.3 895.4 1114.1 L895.7 1113.8 896 1114.1 Q900.2 1118.3 906.1 1118.3 912 1118.3 916.25 1114.1 L917.3 1112.95 918.8 1110.65 918.85 1110 918.4 1109.5 913.7 1107.05 913 1107 912.5 1107.45 911.25 1109.1 Q909.1 1111.25 906.1 1111.25 904.45 1111.25 903.05 1110.6 901.95 1110.05 901 1109.1 L900.15 1108.1 Q902.8 1107.15 904.95 1105 907.65 1102.3 908.45 1098.8 L908.55 1098.1 908.75 1095.75 908.75 1094.85 Q908.4 1092.45 904.95 1090.75 901.1 1088.9 895.7 1088.9 890.3 1088.9 886.45 1090.75 882.95 1092.45 882.65 1094.85 L882.65 1095.75 882.85 1098.1"/>
+ <path stroke="none" fill="#FFFFFF" d="M928.5 1083.15 Q926.05 1083.15 924.4 1084.85 922.7 1086.55 922.7 1088.95 922.7 1091.35 924.4 1093.1 926.05 1094.8 928.5 1094.8 930.9 1094.8 932.55 1093.1 934.3 1091.35 934.3 1088.95 934.3 1086.55 932.55 1084.85 930.9 1083.15 928.5 1083.15 M928.35 1078.65 Q932.2 1078.65 934.8 1081.35 937.6 1084.1 937.6 1087.95 937.6 1091.75 934.8 1094.5 932.2 1097.2 928.35 1097.2 924.5 1097.2 921.8 1094.5 919.1 1091.75 919.1 1087.95 919.1 1084.1 921.8 1081.35 924.5 1078.65 928.35 1078.65 M863 1078.7 Q866.85 1078.7 869.55 1081.4 872.25 1084.15 872.25 1088 872.25 1091.8 869.55 1094.55 866.85 1097.25 863 1097.25 859.15 1097.25 856.55 1094.55 853.75 1091.8 853.75 1088 853.75 1084.15 856.55 1081.4 859.15 1078.7 863 1078.7 M862.85 1083.2 Q860.45 1083.2 858.8 1084.9 857.05 1086.6 857.05 1089 857.05 1091.4 858.8 1093.15 860.45 1094.85 862.85 1094.85 865.3 1094.85 866.95 1093.15 868.65 1091.4 868.65 1089 868.65 1086.6 866.95 1084.9 865.3 1083.2 862.85 1083.2"/>
+ <path stroke="none" fill="#5B5B5B" d="M862.85 1083.2 Q865.3 1083.2 866.95 1084.9 868.65 1086.6 868.65 1089 868.65 1091.4 866.95 1093.15 865.3 1094.85 862.85 1094.85 860.45 1094.85 858.8 1093.15 857.05 1091.4 857.05 1089 857.05 1086.6 858.8 1084.9 860.45 1083.2 862.85 1083.2 M928.5 1083.15 Q930.9 1083.15 932.55 1084.85 934.3 1086.55 934.3 1088.95 934.3 1091.35 932.55 1093.1 930.9 1094.8 928.5 1094.8 926.05 1094.8 924.4 1093.1 922.7 1091.35 922.7 1088.95 922.7 1086.55 924.4 1084.85 926.05 1083.15 928.5 1083.15"/>
+ <path stroke="none" fill="#545454" d="M882.85 1098.1 L882.65 1095.75 882.65 1094.85 Q882.95 1092.45 886.45 1090.75 890.3 1088.9 895.7 1088.9 901.1 1088.9 904.95 1090.75 908.4 1092.45 908.75 1094.85 L908.75 1095.75 908.55 1098.1 Q907.85 1096.2 904.95 1094.75 901.1 1092.9 895.7 1092.9 890.3 1092.9 886.45 1094.75 883.55 1096.15 882.85 1098.1"/>
+ <path stroke="none" fill="#464646" d="M882.85 1098.1 Q883.55 1096.15 886.45 1094.75 890.3 1092.9 895.7 1092.9 901.1 1092.9 904.95 1094.75 907.85 1096.2 908.55 1098.1 L908.45 1098.8 Q907.65 1102.3 904.95 1105 902.8 1107.15 900.15 1108.1 895.9 1109.85 891.25 1108.1 888.6 1107.15 886.45 1105 883.75 1102.3 883 1098.8 L882.85 1098.1"/>
+ <path stroke="none" fill="#383838" d="M900.15 1108.1 L901 1109.1 Q901.95 1110.05 903.05 1110.6 904.45 1111.25 906.1 1111.25 909.1 1111.25 911.25 1109.1 L912.5 1107.45 913 1107 913.7 1107.05 918.4 1109.5 918.85 1110 918.8 1110.65 917.3 1112.95 916.25 1114.1 Q912 1118.3 906.1 1118.3 900.2 1118.3 896 1114.1 L895.7 1113.8 895.4 1114.1 Q891.15 1118.3 885.25 1118.3 879.3 1118.3 875.15 1114.1 L874.1 1112.95 872.6 1110.75 Q872.4 1110.4 872.55 1110.1 872.6 1109.75 872.95 1109.55 L877.55 1107 878.2 1106.9 Q878.55 1107 878.75 1107.35 L880.1 1109.1 Q882.25 1111.25 885.25 1111.25 886.9 1111.25 888.35 1110.6 L890.4 1109.1 891.25 1108.1 Q895.9 1109.85 900.15 1108.1"/>
+ <path stroke="none" fill="#955E34" d="M934.8 1138.7 Q918 1152 895.7 1152 873.4 1152 856.6 1138.7 862.9 1133.4 870.2 1130.15 L872.45 1131.05 Q882.3 1134.7 894.1 1134.95 L895.7 1134.95 Q908.7 1134.95 919.4 1130.85 L921.25 1130.1 Q928.5 1133.35 934.8 1138.7"/>
+ <path stroke="none" fill="#704E35" d="M1094.2 668.3 Q1083.85 666.65 1071.5 669.1 L1068.7 669.75 Q1064.55 671 1062.75 675.65 1060.9 680.9 1063.1 687.1 1065.4 693.55 1070.5 697.3 1072.45 698.85 1074.5 699.5 1070.65 699.4 1066.55 696.5 1061.6 692.7 1059.3 686.35 1057.05 680.05 1058.95 674.85 1060.7 670.2 1064.9 668.95 L1067.5 668.4 Q1081.55 665.55 1093 668 L1094.2 668.3 M1204.8 668.3 L1206 667.95 Q1217.45 665.5 1231.5 668.35 L1234.1 668.9 Q1238.3 670.2 1240.05 674.85 1241.95 680.05 1239.7 686.35 1237.4 692.7 1232.45 696.5 1228.35 699.4 1224.5 699.45 1226.55 698.85 1228.5 697.3 1233.65 693.5 1235.9 687.1 1238.1 680.9 1236.25 675.6 1234.45 670.95 1230.3 669.75 L1227.5 669.1 Q1215.15 666.65 1204.8 668.3"/>
+ <path stroke="none" fill="#5F422D" d="M1204.8 668.3 Q1215.15 666.65 1227.5 669.1 L1230.3 669.75 Q1234.45 670.95 1236.25 675.6 1238.1 680.9 1235.9 687.1 1233.65 693.5 1228.5 697.3 1226.55 698.85 1224.5 699.45 L1223.3 699.45 1220.5 698.85 1217.5 698.25 1213 696.95 1216.25 695.3 Q1219.9 692.45 1221.55 687.9 1223.2 683.4 1221.85 679.6 1220.5 676.3 1217.45 675.45 1216.6 675.05 1215.55 675 1205.5 672.9 1197.2 674.7 L1195.85 675.1 1194.15 675.6 1192.5 676.15 1192.75 675.65 Q1194.65 672.1 1199.8 669.9 L1204.8 668.3 M1074.5 699.5 Q1072.45 698.85 1070.5 697.3 1065.4 693.55 1063.1 687.1 1060.9 680.9 1062.75 675.65 1064.55 671 1068.7 669.75 L1071.5 669.1 Q1083.85 666.65 1094.2 668.3 1103.5 670.65 1106.25 675.65 L1106.5 676.2 Q1105.05 675.6 1103.15 675.15 L1101.8 674.7 Q1093.5 672.95 1083.45 675 L1081.55 675.45 Q1078.5 676.3 1077.15 679.6 1075.8 683.45 1077.45 687.95 1079.1 692.5 1082.75 695.3 1084.45 696.5 1086 697 L1081.5 698.3 1078.5 698.9 1075.7 699.45 1074.5 699.5"/>
+ <path stroke="none" fill="#4F3725" d="M1086 697 Q1084.45 696.5 1082.75 695.3 1079.1 692.5 1077.45 687.95 1075.8 683.45 1077.15 679.6 1078.5 676.3 1081.55 675.45 L1083.45 675 Q1093.5 672.95 1101.8 674.7 L1103.15 675.15 Q1105.05 675.6 1106.5 676.2 L1106.8 676.8 Q1108 680.2 1106.25 683.55 1104.7 686.6 1100.75 689.65 1095.25 693.9 1087.45 696.55 L1086 697 M1213 696.95 L1211.55 696.55 Q1203.75 693.9 1198.25 689.6 1194.3 686.6 1192.75 683.55 1191.3 680.7 1191.85 677.9 L1192.2 676.75 1192.5 676.15 1194.15 675.6 1195.85 675.1 1197.2 674.7 Q1205.5 672.9 1215.55 675 1216.6 675.05 1217.45 675.45 1220.5 676.3 1221.85 679.6 1223.2 683.4 1221.55 687.9 1219.9 692.45 1216.25 695.3 L1213 696.95"/>
+ <path stroke="none" fill="#704E35" d="M1121.7 773.1 Q1120.15 770.15 1124.1 765.05 1128.05 759.8 1135.5 755.55 1148.95 747.9 1163.5 755.55 1170.9 759.8 1174.85 765.05 1178.85 770.15 1177.3 773.05 1176.6 771.25 1174.85 769.05 1170.9 763.8 1163.5 759.55 1148.95 751.9 1135.5 759.55 1128.05 763.8 1124.1 769.05 1122.35 771.25 1121.7 773.1"/>
+ <path stroke="none" fill="#5F422D" d="M1121.7 773.1 Q1122.35 771.25 1124.1 769.05 1128.05 763.8 1135.5 759.55 1148.95 751.9 1163.5 759.55 1170.9 763.8 1174.85 769.05 1176.6 771.25 1177.3 773.05 L1177.2 773.2 Q1175.45 776.3 1168.85 775.4 1164.4 774.75 1159.5 772.5 1160.3 774.7 1160.55 776.75 L1160.6 777 Q1160.8 778.9 1160.45 780.15 1160.15 781.3 1159.3 781.8 1157.4 782.9 1154.15 780.4 1151.65 778.4 1149.5 775.1 1147.3 778.4 1144.8 780.4 1141.6 782.9 1139.7 781.8 1138.85 781.3 1138.5 780.15 1138.15 778.9 1138.4 777.05 L1138.4 776.75 Q1138.7 774.7 1139.55 772.5 1134.6 774.75 1130.1 775.4 1123.55 776.3 1121.75 773.2 L1121.7 773.1"/>
+ <path stroke="none" fill="#704E35" d="M1186.95 736.05 Q1186.1 724.15 1176 715.5 1173 712.95 1169.65 711.1 1160.75 706.15 1149.5 706.15 1138.25 706.15 1129.4 711.05 1126 712.9 1122.95 715.5 1112.85 724.15 1112.05 736.05 L1112 734.15 1112 733.15 Q1112.4 720.55 1122.95 711.5 1126.7 708.3 1131 706.2 1139.25 702.15 1149.5 702.15 1159.75 702.15 1168 706.25 1172.25 708.3 1176 711.5 1186.55 720.55 1187 733.15 L1187 734.15 1186.95 736.05"/>
+ <path stroke="none" fill="#5F422D" d="M1186.95 736.05 Q1186.2 748.1 1176 756.75 1165 766.15 1149.5 766.15 1133.95 766.15 1122.95 756.75 1112.8 748.05 1112.05 736.05 1112.85 724.15 1122.95 715.5 1126 712.9 1129.4 711.05 1138.25 706.15 1149.5 706.15 1160.75 706.15 1169.65 711.1 1173 712.95 1176 715.5 1186.1 724.15 1186.95 736.05 M1168 706.25 Q1159.75 702.15 1149.5 702.15 1139.25 702.15 1131 706.2 1139.95 678.1 1139.5 644.85 L1149.5 644.15 1159.5 644.85 Q1159.05 678.1 1168 706.25 M1133.9 726.55 Q1135.4 727.95 1137.45 727.95 1139.6 727.95 1141.1 726.45 1142.6 724.95 1142.6 722.8 1142.6 721.7 1142.25 720.8 L1141.2 719.25 1141.05 719.1 Q1138.5 716.55 1135.65 715.7 L1135.45 715.65 Q1133.25 715 1131.9 715.7 1131.4 715.9 1131 716.3 L1130.4 717.15 Q1129.75 718.4 1130.2 720.3 L1130.3 720.8 1130.75 722.1 Q1131.7 724.35 1133.75 726.4 L1133.9 726.55 M1168 716.3 L1167.15 715.7 Q1165.75 715 1163.55 715.65 L1163.3 715.75 Q1160.45 716.6 1157.95 719.1 L1157.8 719.25 Q1157.15 719.95 1156.8 720.8 1156.4 721.7 1156.4 722.8 1156.4 724.95 1157.9 726.45 1159.4 727.95 1161.55 727.95 1163.6 727.95 1165.1 726.55 L1165.25 726.4 Q1167.3 724.35 1168.25 722.1 L1168.7 720.8 1168.85 720.3 Q1169.25 718.4 1168.6 717.15 L1168 716.3"/>
+ <path stroke="none" fill="#A16639" d="M1186.95 736.05 L1187 734.15 1187 733.15 Q1186.55 720.55 1176 711.5 1172.25 708.3 1168 706.25 1159.05 678.1 1159.5 644.85 1179.65 647.8 1194.75 662.85 1212.8 680.95 1213.5 706.15 1213.1 721.05 1206.65 733.4 1202.15 742 1194.75 749.35 1176 768.15 1149.5 768.15 1123 768.15 1104.25 749.35 1086.2 731.35 1085.55 706.15 1086.2 680.95 1104.25 662.85 1119.35 647.8 1139.5 644.85 1139.95 678.1 1131 706.2 1126.7 708.3 1122.95 711.5 1112.4 720.55 1112 733.15 L1112 734.15 1112.05 736.05 Q1112.8 748.05 1122.95 756.75 1133.95 766.15 1149.5 766.15 1165 766.15 1176 756.75 1186.2 748.1 1186.95 736.05"/>
+ <path stroke="none" fill="#4F3725" d="M1133.9 726.55 L1133.75 726.4 Q1131.7 724.35 1130.75 722.1 L1130.3 720.8 1130.2 720.3 Q1129.75 718.4 1130.4 717.15 L1131 716.3 Q1131.4 715.9 1131.9 715.7 1133.25 715 1135.45 715.65 L1135.65 715.7 Q1138.5 716.55 1141.05 719.1 L1141.2 719.25 1142.25 720.8 Q1142.6 721.7 1142.6 722.8 1142.6 724.95 1141.1 726.45 1139.6 727.95 1137.45 727.95 1135.4 727.95 1133.9 726.55 M1168 716.3 L1168.6 717.15 Q1169.25 718.4 1168.85 720.3 L1168.7 720.8 1168.25 722.1 Q1167.3 724.35 1165.25 726.4 L1165.1 726.55 Q1163.6 727.95 1161.55 727.95 1159.4 727.95 1157.9 726.45 1156.4 724.95 1156.4 722.8 1156.4 721.7 1156.8 720.8 1157.15 719.95 1157.8 719.25 L1157.95 719.1 Q1160.45 716.6 1163.3 715.75 L1163.55 715.65 Q1165.75 715 1167.15 715.7 L1168 716.3"/>
+ <path stroke="none" fill="#BD7841" d="M1085.55 706.15 L1085.5 704.15 Q1085.5 677.65 1104.25 658.85 1123 640.15 1149.5 640.15 1176 640.15 1194.75 658.85 1213.5 677.65 1213.5 704.15 L1213.5 706.15 Q1212.8 680.95 1194.75 662.85 1179.65 647.8 1159.5 644.85 L1149.5 644.15 1139.5 644.85 Q1119.35 647.8 1104.25 662.85 1086.2 680.95 1085.55 706.15"/>
+ <path stroke="none" fill="#5B5B5B" d="M1107.45 693.7 Q1107.45 691.05 1109.25 689.25 1111.1 687.4 1113.75 687.4 1116.3 687.4 1118.2 689.25 1120.05 691.05 1120.05 693.7 1120.05 696.25 1118.2 698.05 1116.3 699.85 1113.75 699.85 1111.1 699.85 1109.25 698.05 1107.45 696.25 1107.45 693.7 M1189.55 693.7 Q1189.55 696.25 1187.75 698.05 1185.9 699.85 1183.25 699.85 1180.7 699.85 1178.8 698.05 1176.95 696.25 1176.95 693.7 1176.95 691.05 1178.8 689.25 1180.7 687.4 1183.25 687.4 1185.9 687.4 1187.75 689.25 1189.55 691.05 1189.55 693.7"/>
+ <path stroke="none" fill="#FFFFFF" d="M1189.55 693.7 Q1189.55 691.05 1187.75 689.25 1185.9 687.4 1183.25 687.4 1180.7 687.4 1178.8 689.25 1176.95 691.05 1176.95 693.7 1176.95 696.25 1178.8 698.05 1180.7 699.85 1183.25 699.85 1185.9 699.85 1187.75 698.05 1189.55 696.25 1189.55 693.7 M1101.95 692.5 Q1101.95 688.3 1104.9 685.4 1107.85 682.45 1112 682.45 1116.1 682.45 1119.1 685.4 1122 688.3 1122 692.5 1122 696.65 1119.1 699.5 1116.1 702.5 1112 702.5 1107.85 702.5 1104.9 699.5 1101.95 696.65 1101.95 692.5 M1107.45 693.7 Q1107.45 696.25 1109.25 698.05 1111.1 699.85 1113.75 699.85 1116.3 699.85 1118.2 698.05 1120.05 696.25 1120.05 693.7 1120.05 691.05 1118.2 689.25 1116.3 687.4 1113.75 687.4 1111.1 687.4 1109.25 689.25 1107.45 691.05 1107.45 693.7 M1195.05 692.5 Q1195.05 696.65 1192.1 699.5 1189.15 702.5 1185 702.5 1180.9 702.5 1177.9 699.5 1175 696.65 1175 692.5 1175 688.3 1177.9 685.4 1180.9 682.45 1185 682.45 1189.15 682.45 1192.1 685.4 1195.05 688.3 1195.05 692.5"/>
+ <path stroke="none" fill="#FFDFC6" d="M1087.25 634.85 Q1090 631.7 1095.6 631.2 1093.55 638.6 1100.1 640.5 1108.1 643.05 1117.55 638.15 1128.9 632.35 1139.25 637.45 1144.65 640.9 1145.65 646.2 1142.6 643.25 1137.85 641.05 1124.35 635.95 1114.3 641.75 1105.95 646.65 1096.1 644.1 1088.15 642.2 1087.25 634.85 M1154.85 646.2 Q1155.85 640.9 1161.25 637.45 1171.6 632.35 1182.95 638.15 1192.4 643.05 1200.4 640.5 1206.95 638.6 1204.9 631.2 1210.5 631.7 1213.25 634.85 1212.35 642.2 1204.4 644.1 1194.55 646.65 1186.2 641.75 1176.15 635.95 1162.65 641.05 1157.9 643.25 1154.85 646.2"/>
+ <path stroke="none" fill="#EBCEB7" d="M1154.85 646.2 Q1157.9 643.25 1162.65 641.05 1176.15 635.95 1186.2 641.75 1194.55 646.65 1204.4 644.1 1212.35 642.2 1213.25 634.85 1217.1 639.3 1215.4 649.1 1213.45 660.25 1194.3 664.55 1163.3 670.45 1156.5 656.35 1155.3 653.6 1154.75 650.3 1154.5 648.1 1154.85 646.2 M1145.65 646.2 Q1146 648.1 1145.75 650.3 1145.2 653.6 1144 656.35 1137.2 670.45 1106.2 664.55 1087.05 660.25 1085.1 649.1 1083.4 639.3 1087.25 634.85 1088.15 642.2 1096.1 644.1 1105.95 646.65 1114.3 641.75 1124.35 635.95 1137.85 641.05 1142.6 643.25 1145.65 646.2"/>
+ <path stroke="none" fill="#414040" d="M412.8 838.65 L411.55 838.05 Q407.7 836.2 403.65 834.9 L403.7 834.45 403.8 832.2 404.45 831.25 Q408.25 826.15 414.65 823.9 420.9 821.65 426.1 823.55 430.8 825.35 432.05 829.5 L432.65 832.2 Q435 843.95 433.6 853.9 L433.45 854.95 433.4 855.25 432.25 853.9 429.2 850.7 427.6 849.15 426.8 844.2 426.35 842.3 Q425.5 839.25 422.15 837.95 L413.85 838.2 412.8 838.65 M409.25 841 Q416.15 843.95 422.35 848.7 417.15 851.15 413 853.9 L410.65 855.55 408.95 856.7 Q405.3 858.7 405 854.95 L405.05 853.9 Q405.15 851.55 405.65 849.45 406.65 844.8 409.25 841 M334.5 855 Q332.85 844.6 335.3 832.25 L335.9 829.5 Q337.15 825.35 341.85 823.6 347.05 821.7 353.35 823.95 359.7 826.15 363.5 831.3 L364.1 832.2 Q364 833.25 364.2 834.45 L364.3 834.9 Q360.2 836.2 356.35 838.05 L355.15 838.65 354.1 838.25 345.85 838 Q342.45 839.3 341.55 842.35 L341.15 844.2 340.4 849.1 Q339.55 849.85 338.7 850.7 L334.55 855.25 334.5 855 M364.85 838.15 Q364.65 837.05 364.9 836 L365.4 834.55 365.6 834.1 365.95 833.5 Q367.5 831.05 370.2 831.05 L397.75 831.05 Q399.65 831.05 400.95 832.3 L401.95 833.5 402.35 834.15 402.55 834.55 403 836.05 Q403.2 837.3 403.05 838.7 L403.05 838.75 401.3 850.65 400.95 851.95 Q400.35 853.5 399.15 854.65 L395.4 857.6 Q389.4 861.45 383.9 861.5 378.45 861.45 372.75 857.7 L368.75 854.65 Q367.05 853.05 366.6 850.65 L364.85 838.75 364.85 838.3 364.85 838.15 M358.7 841 Q361.3 844.85 362.3 849.6 362.85 852.15 362.9 854.95 362.6 858.65 359.05 856.7 L357.25 855.55 Q352.3 851.85 345.6 848.7 351.75 843.95 358.7 841 M320.65 905.7 Q329.55 900.55 340.75 900.75 346.75 901.05 341.6 906 330.8 916.4 330.9 931.95 322.65 920.1 320.65 905.7 M437 932 Q437.15 916.4 426.3 906 421.15 901.05 427.15 900.75 438.35 900.55 447.35 905.75 445.85 916.15 441.1 925.25 439.3 928.7 437 932 M365.45 898.05 L367.8 889.95 Q371.05 880.05 383.95 880.4 397.95 880.8 400.1 889.95 L402.5 898.1 Q394.2 894 383.95 894 373.7 894 365.45 898.05 M421.4 927.9 Q420.65 939.95 410.45 948.6 399.45 958 383.95 958 368.4 958 357.4 948.6 347.25 939.9 346.5 927.9 347.3 916 357.4 907.35 360.45 904.75 363.8 902.9 372.7 898 383.95 898 395.2 898 404.1 902.95 407.45 904.8 410.45 907.35 420.55 916 421.4 927.9 M402.45 908.15 L401.6 907.55 Q400.2 906.85 398 907.5 L397.75 907.6 Q394.9 908.45 392.4 910.95 L392.25 911.1 Q391.6 911.8 391.25 912.65 390.85 913.55 390.85 914.65 390.85 916.8 392.35 918.3 393.85 919.8 396 919.8 398.05 919.8 399.55 918.4 L399.7 918.25 Q401.75 916.2 402.7 913.95 L403.15 912.65 403.3 912.15 Q403.7 910.25 403.05 909 L402.45 908.15 M368.35 918.4 Q369.85 919.8 371.9 919.8 374.05 919.8 375.55 918.3 377.05 916.8 377.05 914.65 377.05 913.55 376.7 912.65 L375.65 911.1 375.5 910.95 Q372.95 908.4 370.1 907.55 L369.9 907.5 Q367.7 906.85 366.35 907.55 365.85 907.75 365.45 908.15 L364.85 909 Q364.2 910.25 364.65 912.15 L364.75 912.65 365.2 913.95 Q366.15 916.2 368.2 918.25 L368.35 918.4"/>
+ <path stroke="none" fill="#4F4E4E" d="M411.55 838.05 L412.8 838.65 Q419.5 842.05 425.5 847.25 423.85 847.95 422.35 848.7 416.15 843.95 409.25 841 L409.6 840.45 Q410.5 839.2 411.55 838.05 M342.4 847.25 Q348.4 842.05 355.15 838.65 L356.35 838.05 358.35 840.45 358.7 841 Q351.75 843.95 345.6 848.7 L342.4 847.25"/>
+ <path stroke="none" fill="#FFFFFF" d="M342.4 847.25 L345.6 848.7 Q342.75 850.85 340.1 853.4 L338.7 854.7 335.45 858.25 Q320.6 875.2 320 898 L319.95 896 Q319.95 872.6 334.55 855.25 L338.7 850.7 Q339.55 849.85 340.4 849.1 L342.4 847.25 M427.6 849.15 L429.2 850.7 432.25 853.9 433.4 855.25 Q447.95 872.65 447.95 896 L447.95 898 Q447.3 875.2 432.5 858.25 L429.2 854.7 428.4 853.9 427.9 853.45 Q425.2 850.85 422.35 848.7 423.85 847.95 425.5 847.25 L427.6 849.15 M403.65 834.9 Q407.7 836.2 411.55 838.05 410.5 839.2 409.6 840.45 L409.25 841 409 840.9 Q406.1 839.65 403.05 838.75 L403.05 838.7 403.65 834.9 M364.3 834.9 L364.85 838.15 364.85 838.3 364.85 838.75 Q361.8 839.65 358.9 840.9 L358.7 841 358.35 840.45 356.35 838.05 Q360.2 836.2 364.3 834.9 M432.45 878.55 Q432.45 883.7 428.8 887.3 425.15 891 419.95 891 414.85 891 411.15 887.3 407.5 883.7 407.5 878.55 407.5 873.35 411.15 869.7 414.85 866.05 419.95 866.05 425.15 866.05 428.8 869.7 432.45 873.35 432.45 878.55 M427.7 878.75 Q427.7 875.15 425.2 872.6 422.7 870.1 419.05 870.1 415.5 870.1 412.9 872.6 410.4 875.15 410.4 878.75 410.4 882.35 412.9 884.8 415.5 887.35 419.05 887.35 422.7 887.35 425.2 884.8 427.7 882.35 427.7 878.75 M340.15 878.75 Q340.15 882.35 342.7 884.8 345.2 887.35 348.85 887.35 352.4 887.35 354.95 884.8 357.5 882.35 357.5 878.75 357.5 875.15 354.95 872.6 352.4 870.1 348.85 870.1 345.2 870.1 342.7 872.6 340.15 875.15 340.15 878.75 M335.45 878.55 Q335.45 873.35 339.1 869.7 342.75 866.05 347.95 866.05 353.05 866.05 356.75 869.7 360.4 873.35 360.4 878.55 360.4 883.7 356.75 887.3 353.05 891 347.95 891 342.75 891 339.1 887.3 335.45 883.7 335.45 878.55"/>
+ <path stroke="none" fill="#545353" d="M433.45 854.95 L433.6 853.9 Q435 843.95 432.65 832.2 L432.05 829.5 Q430.8 825.35 426.1 823.55 420.9 821.65 414.65 823.9 408.25 826.15 404.45 831.25 L403.8 832.2 403.7 834.45 403.65 834.9 403.05 838.7 Q403.2 837.3 403 836.05 L402.55 834.55 402.35 834.15 401.95 833.5 400.95 832.3 Q399.65 831.05 397.75 831.05 L370.2 831.05 Q367.5 831.05 365.95 833.5 L365.6 834.1 365.4 834.55 364.9 836 Q364.65 837.05 364.85 838.15 L364.3 834.9 364.2 834.45 Q364 833.25 364.1 832.2 L363.5 831.3 Q359.7 826.15 353.35 823.95 347.05 821.7 341.85 823.6 337.15 825.35 335.9 829.5 L335.3 832.25 Q332.85 844.6 334.5 855 L334.2 853.8 Q331.75 842.35 334.55 828.35 L335.1 825.65 Q336.4 821.45 341.05 819.75 346.3 817.85 352.55 820.1 358.9 822.3 362.7 827.4 363.75 828.9 364.45 830.35 L365.25 828.55 Q366.85 825.9 369.65 825.9 L398.25 825.9 Q399.8 825.9 400.95 826.75 401.9 827.35 402.6 828.55 403.15 829.4 403.5 830.4 404.15 828.9 405.25 827.35 409.05 822.3 415.4 820.05 421.7 817.8 426.9 819.7 431.55 821.45 432.85 825.65 L433.4 828.3 Q436.25 842.35 433.75 853.8 L433.75 853.9 433.45 854.95 M402.5 898.1 Q406.7 900.2 410.45 903.35 421 912.4 421.45 925 L421.45 926 421.4 927.9 Q420.55 916 410.45 907.35 407.45 904.8 404.1 902.95 395.2 898 383.95 898 372.7 898 363.8 902.9 360.45 904.75 357.4 907.35 347.3 916 346.5 927.9 L346.45 926 346.45 925 Q346.85 912.4 357.4 903.35 361.15 900.15 365.45 898.05 373.7 894 383.95 894 394.2 894 402.5 898.1"/>
+ <path stroke="none" fill="#2E2D2D" d="M412.8 838.65 L413.85 838.2 422.15 837.95 Q425.5 839.25 426.35 842.3 L426.8 844.2 427.6 849.15 425.5 847.25 Q419.5 842.05 412.8 838.65 M340.4 849.1 L341.15 844.2 341.55 842.35 Q342.45 839.3 345.85 838 L354.1 838.25 355.15 838.65 Q348.4 842.05 342.4 847.25 L340.4 849.1 M402.45 908.15 L403.05 909 Q403.7 910.25 403.3 912.15 L403.15 912.65 402.7 913.95 Q401.75 916.2 399.7 918.25 L399.55 918.4 Q398.05 919.8 396 919.8 393.85 919.8 392.35 918.3 390.85 916.8 390.85 914.65 390.85 913.55 391.25 912.65 391.6 911.8 392.25 911.1 L392.4 910.95 Q394.9 908.45 397.75 907.6 L398 907.5 Q400.2 906.85 401.6 907.55 L402.45 908.15 M368.35 918.4 L368.2 918.25 Q366.15 916.2 365.2 913.95 L364.75 912.65 364.65 912.15 Q364.2 910.25 364.85 909 L365.45 908.15 Q365.85 907.75 366.35 907.55 367.7 906.85 369.9 907.5 L370.1 907.55 Q372.95 908.4 375.5 910.95 L375.65 911.1 376.7 912.65 Q377.05 913.55 377.05 914.65 377.05 916.8 375.55 918.3 374.05 919.8 371.9 919.8 369.85 919.8 368.35 918.4"/>
+ <path stroke="none" fill="#E9E9E9" d="M403.05 838.75 Q406.1 839.65 409 840.9 L409.25 841 Q406.65 844.8 405.65 849.45 405.15 851.55 405.05 853.9 L405 854.95 Q405.3 858.7 408.95 856.7 L410.65 855.55 413 853.9 Q417.15 851.15 422.35 848.7 425.2 850.85 427.9 853.45 L428.4 853.9 429.2 854.7 432.5 858.25 Q447.3 875.2 447.95 898 447.85 901.95 447.35 905.75 438.35 900.55 427.15 900.75 421.15 901.05 426.3 906 437.15 916.4 437 932 433.6 936.8 429.2 941.2 410.45 960 383.95 960 357.45 960 338.7 941.2 334.25 936.8 330.9 931.95 330.8 916.4 341.6 906 346.75 901.05 340.75 900.75 329.55 900.55 320.65 905.7 320.1 901.95 320 898 320.6 875.2 335.45 858.25 L338.7 854.7 340.1 853.4 Q342.75 850.85 345.6 848.7 352.3 851.85 357.25 855.55 L359.05 856.7 Q362.6 858.65 362.9 854.95 362.85 852.15 362.3 849.6 361.3 844.85 358.7 841 L358.9 840.9 Q361.8 839.65 364.85 838.75 L366.6 850.65 Q367.05 853.05 368.75 854.65 L372.75 857.7 Q378.45 861.45 383.9 861.5 389.4 861.45 395.4 857.6 L399.15 854.65 Q400.35 853.5 400.95 851.95 L401.3 850.65 403.05 838.75 M432.45 878.55 Q432.45 873.35 428.8 869.7 425.15 866.05 419.95 866.05 414.85 866.05 411.15 869.7 407.5 873.35 407.5 878.55 407.5 883.7 411.15 887.3 414.85 891 419.95 891 425.15 891 428.8 887.3 432.45 883.7 432.45 878.55 M335.45 878.55 Q335.45 883.7 339.1 887.3 342.75 891 347.95 891 353.05 891 356.75 887.3 360.4 883.7 360.4 878.55 360.4 873.35 356.75 869.7 353.05 866.05 347.95 866.05 342.75 866.05 339.1 869.7 335.45 873.35 335.45 878.55 M402.5 898.1 L400.1 889.95 Q397.95 880.8 383.95 880.4 371.05 880.05 367.8 889.95 L365.45 898.05 Q361.15 900.15 357.4 903.35 346.85 912.4 346.45 925 L346.45 926 346.5 927.9 Q347.25 939.9 357.4 948.6 368.4 958 383.95 958 399.45 958 410.45 948.6 420.65 939.95 421.4 927.9 L421.45 926 421.45 925 Q421 912.4 410.45 903.35 406.7 900.2 402.5 898.1"/>
+ <path stroke="none" fill="#5B5B5B" d="M427.7 878.75 Q427.7 882.35 425.2 884.8 422.7 887.35 419.05 887.35 415.5 887.35 412.9 884.8 410.4 882.35 410.4 878.75 410.4 875.15 412.9 872.6 415.5 870.1 419.05 870.1 422.7 870.1 425.2 872.6 427.7 875.15 427.7 878.75 M340.15 878.75 Q340.15 875.15 342.7 872.6 345.2 870.1 348.85 870.1 352.4 870.1 354.95 872.6 357.5 875.15 357.5 878.75 357.5 882.35 354.95 884.8 352.4 887.35 348.85 887.35 345.2 887.35 342.7 884.8 340.15 882.35 340.15 878.75"/>
+ <path stroke="none" fill="#F095F0" d="M664.3 278.7 Q664.4 274.9 668.3 270.8 673.35 265.75 681.85 263.5 690.2 261.25 697.15 263.15 703.35 264.9 705.1 269.1 L705.85 271.75 Q709.6 285.8 706.3 297.25 L705.9 298.4 Q708.1 288.05 704.85 275.65 L704.05 272.95 Q702.35 268.8 696.1 267 689.15 265.1 680.8 267.35 672.3 269.6 667.25 274.7 665.25 276.7 664.3 278.7 M565.95 298.45 L565.55 297.25 Q562.25 285.8 566 271.8 L566.75 269.1 Q568.45 264.9 574.7 263.2 581.65 261.3 590 263.55 598.5 265.75 603.55 270.85 607.4 274.9 607.55 278.7 606.55 276.75 604.6 274.75 599.55 269.6 591.05 267.4 582.7 265.15 575.75 267.05 569.45 268.8 567.8 272.95 L567 275.7 Q563.7 288.05 565.95 298.45"/>
+ <path stroke="none" fill="#D987D9" d="M565.95 298.45 Q563.7 288.05 567 275.7 L567.8 272.95 Q569.45 268.8 575.75 267.05 582.7 265.15 591.05 267.4 599.55 269.6 604.6 274.75 606.55 276.75 607.55 278.7 L607.45 280 606.75 282.8 605.9 285.7 604.2 290.3 Q603.45 288.7 601.9 287 598.2 283.3 592.1 281.7 586.05 280.05 581.05 281.45 576.55 282.75 575.35 285.8 L574.8 287.65 Q572.1 297.75 574.5 306 L574.95 307.4 Q575.55 309.3 576.5 310.8 L575.7 310.5 Q568.95 307.8 565.95 298.45 M705.9 298.4 Q702.85 307.8 696.1 310.5 L695.35 310.75 Q696.25 309.3 696.85 307.35 L697.35 306 Q699.75 297.75 697.05 287.65 L696.45 285.75 Q695.3 282.7 690.8 281.4 685.75 280 679.75 281.65 673.65 283.3 669.95 286.95 668.35 288.7 667.65 290.25 L665.9 285.7 665.1 282.75 664.4 279.95 664.3 278.7 Q665.25 276.7 667.25 274.7 672.3 269.6 680.8 267.35 689.15 265.1 696.1 267 702.35 268.8 704.05 272.95 L704.85 275.65 Q708.1 288.05 705.9 298.4"/>
+ <path stroke="none" fill="#C97DC9" d="M695.35 310.75 L694.55 311.05 Q690.05 312.2 685.55 310.45 681.5 308.9 677.5 304.95 671.8 299.5 668.2 291.65 L667.65 290.25 Q668.35 288.7 669.95 286.95 673.65 283.3 679.75 281.65 685.75 280 690.8 281.4 695.3 282.7 696.45 285.75 L697.05 287.65 Q699.75 297.75 697.35 306 L696.85 307.35 Q696.25 309.3 695.35 310.75 M604.2 290.3 L603.65 291.65 Q600.05 299.55 594.35 304.95 590.35 308.9 586.3 310.45 581.8 312.2 577.3 311.05 L576.5 310.8 Q575.55 309.3 574.95 307.4 L574.5 306 Q572.1 297.75 574.8 287.65 L575.35 285.8 Q576.55 282.75 581.05 281.45 586.05 280.05 592.1 281.7 598.2 283.3 601.9 287 603.45 288.7 604.2 290.3"/>
+ <path stroke="none" fill="#FFAAFF" d="M699.9 322 Q699.2 296.75 681.2 278.75 676.8 274.35 672 271 669.2 269.05 666.25 267.45 L663.1 269.95 Q651.85 278 635.9 278 619.95 278 608.65 269.95 L605.55 267.5 Q602.6 269.1 599.8 271.05 595 274.4 590.65 278.75 579 290.35 574.65 304.95 572.2 313 571.95 322 L571.9 320 Q571.9 312.15 573.55 304.95 577.45 287.9 590.65 274.75 594.9 270.5 599.5 267.25 L603.05 264.95 Q617.65 256 635.9 256 654.2 256 668.8 264.9 L672.3 267.2 Q676.95 270.5 681.2 274.75 699.9 293.45 699.9 320 L699.9 322"/>
+ <path stroke="none" fill="#EE9FEE" d="M699.9 322 Q699.45 337.2 692.75 349.85 690.8 353.55 688.3 357 L688.25 357 Q685.1 361.3 681.15 365.25 L676.5 369.55 672.3 372.75 Q656.4 384 635.9 384 615.35 384 599.5 372.8 L595.4 369.65 590.6 365.25 Q583 357.65 578.5 348.8 L572.95 332.1 572.95 331.9 572.75 330.8 572.7 330.55 572.65 330.05 572.55 329.5 572.4 328.25 572.4 328.05 572.3 327.45 572.3 327.2 572.25 327 572.25 326.75 572.2 326.45 572.15 325.8 572.15 325.55 572.1 325.25 571.95 322 Q572.2 313 574.65 304.95 579 290.35 590.65 278.75 595 274.4 599.8 271.05 602.6 269.1 605.55 267.5 L608.65 269.95 Q619.95 278 635.9 278 651.85 278 663.1 269.95 L666.25 267.45 Q669.2 269.05 672 271 676.8 274.35 681.2 278.75 699.2 296.75 699.9 322 M684.4 322.5 Q684.4 317.3 680.75 313.65 677.1 310 671.9 310 666.8 310 663.1 313.65 659.45 317.3 659.45 322.5 659.45 327.65 663.1 331.25 666.8 334.95 671.9 334.95 677.1 334.95 680.75 331.25 684.4 327.65 684.4 322.5 M587.4 322.5 Q587.4 327.65 591.05 331.25 594.7 334.95 599.9 334.95 605 334.95 608.7 331.25 612.35 327.65 612.35 322.5 612.35 317.3 608.7 313.65 605 310 599.9 310 594.7 310 591.05 313.65 587.4 317.3 587.4 322.5"/>
+ <path stroke="none" fill="#FFFFFF" d="M684.4 322.5 Q684.4 327.65 680.75 331.25 677.1 334.95 671.9 334.95 666.8 334.95 663.1 331.25 659.45 327.65 659.45 322.5 659.45 317.3 663.1 313.65 666.8 310 671.9 310 677.1 310 680.75 313.65 684.4 317.3 684.4 322.5 M679.65 322.7 Q679.65 319.1 677.15 316.55 674.65 314.05 671 314.05 667.45 314.05 664.85 316.55 662.35 319.1 662.35 322.7 662.35 326.3 664.85 328.75 667.45 331.3 671 331.3 674.65 331.3 677.15 328.75 679.65 326.3 679.65 322.7 M587.4 322.5 Q587.4 317.3 591.05 313.65 594.7 310 599.9 310 605 310 608.7 313.65 612.35 317.3 612.35 322.5 612.35 327.65 608.7 331.25 605 334.95 599.9 334.95 594.7 334.95 591.05 331.25 587.4 327.65 587.4 322.5 M592.1 322.7 Q592.1 326.3 594.65 328.75 597.15 331.3 600.8 331.3 604.35 331.3 606.9 328.75 609.45 326.3 609.45 322.7 609.45 319.1 606.9 316.55 604.35 314.05 600.8 314.05 597.15 314.05 594.65 316.55 592.1 319.1 592.1 322.7"/>
+ <path stroke="none" fill="#5B5B5B" d="M592.1 322.7 Q592.1 319.1 594.65 316.55 597.15 314.05 600.8 314.05 604.35 314.05 606.9 316.55 609.45 319.1 609.45 322.7 609.45 326.3 606.9 328.75 604.35 331.3 600.8 331.3 597.15 331.3 594.65 328.75 592.1 326.3 592.1 322.7 M679.65 322.7 Q679.65 326.3 677.15 328.75 674.65 331.3 671 331.3 667.45 331.3 664.85 328.75 662.35 326.3 662.35 322.7 662.35 319.1 664.85 316.55 667.45 314.05 671 314.05 674.65 314.05 677.15 316.55 679.65 319.1 679.65 322.7"/>
+ <path stroke="none" fill="#FFC4FF" d="M610 348.55 L609.9 347.45 609.9 346.6 Q609.9 335.8 617.45 328.2 L619.3 326.5 Q626.4 320.6 635.9 320.6 645.4 320.6 652.45 326.55 L654.25 328.2 Q661.9 335.8 661.9 346.6 L661.9 347.45 661.85 348.5 Q661.15 339.05 654.25 332.2 L652.45 330.55 Q645.4 324.6 635.9 324.6 626.4 324.6 619.3 330.5 L617.45 332.2 Q610.65 339.05 610 348.55"/>
+ <path stroke="none" fill="#FFAAFF" d="M610 348.55 Q610.65 339.05 617.45 332.2 L619.3 330.5 Q626.4 324.6 635.9 324.6 645.4 324.6 652.45 330.55 L654.25 332.2 Q661.15 339.05 661.85 348.5 661.55 351.4 660.35 354 658.85 357.2 655.95 359.9 L654.25 361.35 Q646.65 367.4 635.9 367.4 625.1 367.4 617.45 361.35 L615.85 360 Q612.95 357.25 611.45 354.05 610.25 351.45 610 348.55 M654.4 340 Q652.9 338.5 649.95 339.35 L649.7 339.45 Q646.85 340.3 644.35 342.8 L644.2 342.95 Q643.55 343.65 643.2 344.5 642.8 345.4 642.8 346.5 642.8 348.65 644.3 350.15 645.8 351.65 647.95 351.65 650 351.65 651.5 350.25 L651.65 350.1 Q653.7 348.05 654.65 345.8 L655.1 344.5 Q655.75 342.25 655 340.85 L654.4 340 M620.3 350.25 Q621.8 351.65 623.85 351.65 626 351.65 627.5 350.15 629 348.65 629 346.5 629 345.4 628.65 344.5 L627.6 342.95 627.45 342.8 Q624.9 340.25 622.05 339.4 L621.85 339.35 Q618.9 338.5 617.4 340 L616.8 340.85 Q616.05 342.25 616.7 344.5 616.85 345.15 617.15 345.8 618.1 348.05 620.15 350.1 L620.3 350.25"/>
+ <path stroke="none" fill="#AF74AF" d="M620.3 350.25 L620.15 350.1 Q618.1 348.05 617.15 345.8 616.85 345.15 616.7 344.5 616.05 342.25 616.8 340.85 L617.4 340 Q618.9 338.5 621.85 339.35 L622.05 339.4 Q624.9 340.25 627.45 342.8 L627.6 342.95 628.65 344.5 Q629 345.4 629 346.5 629 348.65 627.5 350.15 626 351.65 623.85 351.65 621.8 351.65 620.3 350.25 M654.4 340 L655 340.85 Q655.75 342.25 655.1 344.5 L654.65 345.8 Q653.7 348.05 651.65 350.1 L651.5 350.25 Q650 351.65 647.95 351.65 645.8 351.65 644.3 350.15 642.8 348.65 642.8 346.5 642.8 345.4 643.2 344.5 643.55 343.65 644.2 342.95 L644.35 342.8 Q646.85 340.3 649.7 339.45 L649.95 339.35 Q652.9 338.5 654.4 340"/>
+ <path stroke="none" fill="#000000" fill-opacity="0.10196078431372549" d="M655.95 359.9 L655.5 361 Q653.95 364.25 650.6 366.9 644.5 371.75 635.9 371.75 627.25 371.75 621.1 366.9 617.8 364.3 616.3 361.05 L615.85 360 617.45 361.35 Q625.1 367.4 635.9 367.4 646.65 367.4 654.25 361.35 L655.95 359.9"/>
+ <path stroke="none" fill="#528CDB" d="M460.05 284.4 Q459.5 279.45 456.55 274.4 452.9 268.05 447.65 265.05 442.9 262.45 439.5 263.85 L437.35 265.05 Q427.7 270.65 422.95 278.5 L422.35 278 421.4 277.25 422.15 275.85 Q426.9 267.1 437.35 261.05 L439.5 259.85 Q442.9 258.45 447.65 261.05 452.9 264.05 456.55 270.4 460.2 276.65 460.15 282.65 L460.05 284.4 M345 278.45 Q340.2 270.6 330.6 265.05 L328.45 263.85 Q325.05 262.45 320.3 265.05 315.05 268.05 311.4 274.4 308.45 279.45 307.95 284.4 L307.8 282.65 Q307.75 276.65 311.4 270.4 315.05 264.05 320.3 261.05 325.05 258.45 328.45 259.85 L330.6 261.05 Q341.05 267.1 345.8 275.85 L346.55 277.25 345 278.45"/>
+ <path stroke="none" fill="#4B80C9" d="M345 278.45 Q341.9 280.85 339 283.75 335.4 279.7 330 276.55 L328.25 275.6 Q325.45 274.45 321.5 276.55 317.2 279.05 314.2 284.3 312.25 287.6 311.6 290.85 L310.85 290.35 Q308.4 288.5 307.95 284.4 308.45 279.45 311.4 274.4 315.05 268.05 320.3 265.05 325.05 262.45 328.45 263.85 L330.6 265.05 Q340.2 270.6 345 278.45 M422.95 278.5 Q427.7 270.65 437.35 265.05 L439.5 263.85 Q442.9 262.45 447.65 265.05 452.9 268.05 456.55 274.4 459.5 279.45 460.05 284.4 459.55 288.5 457.1 290.35 L456.35 290.85 Q455.7 287.6 453.75 284.3 450.75 279.05 446.45 276.55 442.5 274.45 439.7 275.6 L437.95 276.55 Q432.55 279.7 428.95 283.75 L422.95 278.5"/>
+ <path stroke="none" fill="#3B6EB4" d="M428.95 283.75 Q432.55 279.7 437.95 276.55 L439.7 275.6 Q442.5 274.45 446.45 276.55 450.75 279.05 453.75 284.3 455.7 287.6 456.35 290.85 L455.05 291.6 Q447.15 296.15 439.55 297.2 435.4 290.15 429.25 284 L428.95 283.75 M311.6 290.85 Q312.25 287.6 314.2 284.3 317.2 279.05 321.5 276.55 325.45 274.45 328.25 275.6 L330 276.55 Q335.4 279.7 339 283.75 L338.7 284 Q332.55 290.15 328.4 297.2 320.8 296.15 312.9 291.6 L311.6 290.85"/>
+ <path stroke="none" fill="#5A9BF3" d="M320 322 L319.95 320 Q319.95 293.45 338.7 274.75 L342.35 271.35 Q344.9 269.15 347.55 267.25 363.45 256 383.95 256 404.5 256 420.35 267.2 423 269.1 425.55 271.3 L429.25 274.75 Q447.95 293.45 447.95 320 L447.95 322 Q447.25 296.75 429.25 278.75 426.2 275.7 422.95 273.15 L422.5 273.45 Q406.55 284 383.95 284 361.35 284 345.35 273.45 L344.95 273.2 Q341.7 275.75 338.7 278.75 320.65 296.75 320 322"/>
+ <path stroke="none" fill="#528CDB" d="M320 322 Q320.65 296.75 338.7 278.75 341.7 275.75 344.95 273.2 L345.35 273.45 Q361.35 284 383.95 284 406.55 284 422.5 273.45 L422.95 273.15 Q426.2 275.7 429.25 278.75 447.25 296.75 447.95 322 447.5 337.2 440.8 349.85 438.85 353.55 436.35 357 L436.3 357 Q433.15 361.3 429.2 365.25 L424.55 369.55 Q420.15 367.95 420.2 363.25 419.1 352 409.75 343.75 399.25 334.5 384.4 334.5 369.55 334.5 359 343.75 349.7 352 348.65 363.25 347.3 368.05 343.45 369.65 L338.65 365.25 Q331.05 357.65 326.55 348.8 L321 332.1 321 331.9 320.8 330.8 320.75 330.55 320.7 330.05 320.6 329.5 320.45 328.25 320.45 328.05 320.35 327.45 320.35 327.2 320.3 327 320.3 326.75 320.25 326.45 320.2 325.8 320.2 325.55 320.15 325.25 320 322"/>
+ <path stroke="none" fill="#4178C2" d="M424.55 369.55 L420.35 372.75 Q404.45 384 383.95 384 363.4 384 347.55 372.8 L343.45 369.65 Q347.3 368.05 348.65 363.25 349.7 352 359 343.75 369.55 334.5 384.4 334.5 399.25 334.5 409.75 343.75 419.1 352 420.2 363.25 420.15 367.95 424.55 369.55 M401.55 347.35 Q400.45 346.25 398.25 346.85 396 347.45 394.05 349.45 L393.9 349.55 Q392.85 350.65 392.85 352.25 392.85 353.85 394 354.95 395.1 356.1 396.75 356.1 398.25 356.1 399.4 355.05 L399.5 354.95 Q401.5 352.95 402.1 350.75 402.75 348.5 401.55 347.35 M369.4 355.05 Q370.5 356.1 372.05 356.1 373.65 356.1 374.8 354.95 375.9 353.85 375.9 352.25 375.9 350.65 374.85 349.55 L374.75 349.45 Q372.75 347.45 370.55 346.85 368.35 346.25 367.2 347.35 366.05 348.5 366.7 350.75 367.3 352.95 369.3 354.95 L369.4 355.05"/>
+ <path stroke="none" fill="#2D5D9C" d="M369.4 355.05 L369.3 354.95 Q367.3 352.95 366.7 350.75 366.05 348.5 367.2 347.35 368.35 346.25 370.55 346.85 372.75 347.45 374.75 349.45 L374.85 349.55 Q375.9 350.65 375.9 352.25 375.9 353.85 374.8 354.95 373.65 356.1 372.05 356.1 370.5 356.1 369.4 355.05 M401.55 347.35 Q402.75 348.5 402.1 350.75 401.5 352.95 399.5 354.95 L399.4 355.05 Q398.25 356.1 396.75 356.1 395.1 356.1 394 354.95 392.85 353.85 392.85 352.25 392.85 350.65 393.9 349.55 L394.05 349.45 Q396 347.45 398.25 346.85 400.45 346.25 401.55 347.35"/>
+ <path stroke="none" fill="#FFFFFF" d="M435.2 327.2 Q435.2 332.9 431.15 336.8 427.1 340.9 421.4 340.9 415.8 340.9 411.65 336.8 407.7 332.9 407.7 327.2 407.7 321.45 411.65 317.45 415.8 313.4 421.4 313.4 427.1 313.4 431.15 317.45 435.2 321.45 435.2 327.2 M427.65 327.1 Q427.65 323.45 425.2 321 422.65 318.45 419 318.45 415.5 318.45 412.9 321 410.35 323.45 410.35 327.1 L410.4 327.95 Q410.65 330.9 412.9 333.05 415.5 335.55 419 335.55 422.65 335.55 425.2 333.05 427.35 330.9 427.6 327.95 L427.65 327.1"/>
+ <path stroke="none" fill="#5B5B5B" d="M427.65 327.1 L427.6 327.95 Q427.35 330.9 425.2 333.05 422.65 335.55 419 335.55 415.5 335.55 412.9 333.05 410.65 330.9 410.4 327.95 L410.35 327.1 Q410.35 323.45 412.9 321 415.5 318.45 419 318.45 422.65 318.45 425.2 321 427.65 323.45 427.65 327.1"/>
+ <path stroke="none" fill="#FFFFFF" d="M340.25 327.1 L340.3 327.95 Q340.55 330.9 342.7 333.05 345.25 335.55 348.9 335.55 352.4 335.55 355 333.05 357.25 330.9 357.5 327.95 L357.55 327.1 Q357.55 323.45 355 321 352.4 318.45 348.9 318.45 345.25 318.45 342.7 321 340.25 323.45 340.25 327.1 M332.7 327.2 Q332.7 321.45 336.75 317.45 340.8 313.4 346.5 313.4 352.1 313.4 356.25 317.45 360.2 321.45 360.2 327.2 360.2 332.9 356.25 336.8 352.1 340.9 346.5 340.9 340.8 340.9 336.75 336.8 332.7 332.9 332.7 327.2"/>
+ <path stroke="none" fill="#5B5B5B" d="M340.25 327.1 Q340.25 323.45 342.7 321 345.25 318.45 348.9 318.45 352.4 318.45 355 321 357.55 323.45 357.55 327.1 L357.5 327.95 Q357.25 330.9 355 333.05 352.4 335.55 348.9 335.55 345.25 335.55 342.7 333.05 340.55 330.9 340.3 327.95 L340.25 327.1"/>
+ <path stroke="none" fill="#CDC6C6" d="M167 854.5 L166.4 854 165.45 853.25 166.2 851.85 Q170.95 843.1 181.4 837.05 L183.55 835.85 Q186.95 834.45 191.7 837.05 196.95 840.05 200.6 846.4 204.25 852.65 204.2 858.65 L204.1 860.4 Q203.55 855.45 200.6 850.4 196.95 844.05 191.7 841.05 186.95 838.45 183.55 839.85 L181.4 841.05 Q171.75 846.65 167 854.5 M52 860.4 L51.85 858.65 Q51.8 852.65 55.45 846.4 59.1 840.05 64.35 837.05 69.1 834.45 72.5 835.85 L74.65 837.05 Q85.1 843.1 89.85 851.85 L90.6 853.25 89.05 854.45 Q84.25 846.6 74.65 841.05 L72.5 839.85 Q69.1 838.45 64.35 841.05 59.1 844.05 55.45 850.4 52.5 855.45 52 860.4"/>
+ <path stroke="none" fill="#BDB6B6" d="M52 860.4 Q52.5 855.45 55.45 850.4 59.1 844.05 64.35 841.05 69.1 838.45 72.5 839.85 L74.65 841.05 Q84.25 846.6 89.05 854.45 85.95 856.85 83.05 859.75 79.45 855.7 74.05 852.55 L72.3 851.6 Q69.5 850.45 65.55 852.55 61.25 855.05 58.25 860.3 56.3 863.6 55.65 866.85 L54.9 866.35 Q52.45 864.5 52 860.4 M204.1 860.4 Q203.6 864.5 201.15 866.35 L200.4 866.85 Q199.75 863.6 197.8 860.3 194.8 855.05 190.5 852.55 186.55 850.45 183.75 851.6 L182 852.55 Q176.6 855.7 173 859.75 L167 854.5 Q171.75 846.65 181.4 841.05 L183.55 839.85 Q186.95 838.45 191.7 841.05 196.95 844.05 200.6 850.4 203.55 855.45 204.1 860.4"/>
+ <path stroke="none" fill="#A8A1A1" d="M200.4 866.85 L199.1 867.6 Q191.2 872.15 183.6 873.2 179.45 866.15 173.3 860 L173 859.75 Q176.6 855.7 182 852.55 L183.75 851.6 Q186.55 850.45 190.5 852.55 194.8 855.05 197.8 860.3 199.75 863.6 200.4 866.85 M83.05 859.75 L82.75 860 Q76.6 866.15 72.45 873.2 64.85 872.15 56.95 867.6 L55.65 866.85 Q56.3 863.6 58.25 860.3 61.25 855.05 65.55 852.55 69.5 850.45 72.3 851.6 L74.05 852.55 Q79.45 855.7 83.05 859.75"/>
+ <path stroke="none" fill="#DBD9D9" d="M192 898 Q191.3 872.75 173.3 854.75 170.25 851.7 167 849.15 L166.55 849.45 Q150.6 860 128 860 105.4 860 89.4 849.45 L89 849.2 Q85.75 851.75 82.75 854.75 64.7 872.75 64.05 898 L64 896 Q64 869.45 82.75 850.75 L86.4 847.35 Q88.95 845.15 91.6 843.25 107.5 832 128 832 148.55 832 164.4 843.2 L169.6 847.3 173.3 850.75 Q192 869.45 192 896 L192 898"/>
+ <path stroke="none" fill="#D2D0D0" d="M192 898 Q191.55 913.2 184.85 925.85 182.9 929.55 180.4 933 L180.35 933 Q177.2 937.3 173.25 941.25 L168.6 945.55 Q164.2 943.95 164.25 939.25 163.15 928 153.8 919.75 143.3 910.5 128.45 910.5 113.6 910.5 103.05 919.75 93.75 928 92.7 939.25 91.35 944.05 87.5 945.65 L82.7 941.25 Q75.1 933.65 70.6 924.8 L65.05 908.1 65.05 907.9 64.85 906.8 64.8 906.55 64.75 906.05 64.65 905.5 64.5 904.25 64.5 904.05 64.4 903.45 64.4 903.2 64.35 903 64.35 902.75 64.3 902.45 64.25 901.8 64.25 901.55 64.2 901.25 64.05 898 Q64.7 872.75 82.75 854.75 85.75 851.75 89 849.2 L89.4 849.45 Q105.4 860 128 860 150.6 860 166.55 849.45 L167 849.15 Q170.25 851.7 173.3 854.75 191.3 872.75 192 898"/>
+ <path stroke="none" fill="#BDB6B6" d="M87.5 945.65 Q91.35 944.05 92.7 939.25 93.75 928 103.05 919.75 113.6 910.5 128.45 910.5 143.3 910.5 153.8 919.75 163.15 928 164.25 939.25 164.2 943.95 168.6 945.55 L164.4 948.75 Q148.5 960 128 960 107.45 960 91.6 948.8 L87.5 945.65 M145.6 923.35 Q144.5 922.25 142.3 922.85 140.05 923.45 138.1 925.45 L137.95 925.55 Q136.9 926.65 136.9 928.25 136.9 929.85 138.05 930.95 139.15 932.1 140.8 932.1 142.3 932.1 143.45 931.05 L143.55 930.95 Q145.55 928.95 146.15 926.75 146.8 924.5 145.6 923.35 M113.45 931.05 Q114.55 932.1 116.1 932.1 117.7 932.1 118.85 930.95 119.95 929.85 119.95 928.25 119.95 926.65 118.9 925.55 L118.8 925.45 Q116.8 923.45 114.6 922.85 112.4 922.25 111.25 923.35 110.1 924.5 110.75 926.75 111.35 928.95 113.35 930.95 L113.45 931.05"/>
+ <path stroke="none" fill="#9A9494" d="M113.45 931.05 L113.35 930.95 Q111.35 928.95 110.75 926.75 110.1 924.5 111.25 923.35 112.4 922.25 114.6 922.85 116.8 923.45 118.8 925.45 L118.9 925.55 Q119.95 926.65 119.95 928.25 119.95 929.85 118.85 930.95 117.7 932.1 116.1 932.1 114.55 932.1 113.45 931.05 M145.6 923.35 Q146.8 924.5 146.15 926.75 145.55 928.95 143.55 930.95 L143.45 931.05 Q142.3 932.1 140.8 932.1 139.15 932.1 138.05 930.95 136.9 929.85 136.9 928.25 136.9 926.65 137.95 925.55 L138.1 925.45 Q140.05 923.45 142.3 922.85 144.5 922.25 145.6 923.35"/>
+ <path stroke="none" fill="#FFFFFF" d="M179.25 903.2 Q179.25 908.9 175.2 912.8 171.15 916.9 165.45 916.9 159.85 916.9 155.7 912.8 151.75 908.9 151.75 903.2 151.75 897.45 155.7 893.45 159.85 889.4 165.45 889.4 171.15 889.4 175.2 893.45 179.25 897.45 179.25 903.2 M171.7 903.1 Q171.7 899.45 169.25 897 166.7 894.45 163.05 894.45 159.55 894.45 156.95 897 154.4 899.45 154.4 903.1 L154.45 903.95 Q154.7 906.9 156.95 909.05 159.55 911.55 163.05 911.55 166.7 911.55 169.25 909.05 171.4 906.9 171.65 903.95 L171.7 903.1"/>
+ <path stroke="none" fill="#5B5B5B" d="M171.7 903.1 L171.65 903.95 Q171.4 906.9 169.25 909.05 166.7 911.55 163.05 911.55 159.55 911.55 156.95 909.05 154.7 906.9 154.45 903.95 L154.4 903.1 Q154.4 899.45 156.95 897 159.55 894.45 163.05 894.45 166.7 894.45 169.25 897 171.7 899.45 171.7 903.1"/>
+ <path stroke="none" fill="#FFFFFF" d="M76.75 903.2 Q76.75 897.45 80.8 893.45 84.85 889.4 90.55 889.4 96.15 889.4 100.3 893.45 104.25 897.45 104.25 903.2 104.25 908.9 100.3 912.8 96.15 916.9 90.55 916.9 84.85 916.9 80.8 912.8 76.75 908.9 76.75 903.2 M84.3 903.1 L84.35 903.95 Q84.6 906.9 86.75 909.05 89.3 911.55 92.95 911.55 96.45 911.55 99.05 909.05 101.3 906.9 101.55 903.95 L101.6 903.1 Q101.6 899.45 99.05 897 96.45 894.45 92.95 894.45 89.3 894.45 86.75 897 84.3 899.45 84.3 903.1"/>
+ <path stroke="none" fill="#5B5B5B" d="M84.3 903.1 Q84.3 899.45 86.75 897 89.3 894.45 92.95 894.45 96.45 894.45 99.05 897 101.6 899.45 101.6 903.1 L101.55 903.95 Q101.3 906.9 99.05 909.05 96.45 911.55 92.95 911.55 89.3 911.55 86.75 909.05 84.6 906.9 84.35 903.95 L84.3 903.1"/>
+ <path stroke="none" fill="#FFFCF5" d="M117.95 893.15 L126.6 863.8 Q126.75 863.35 127.15 863.05 127.55 862.75 128 862.75 128.5 862.75 128.9 863.05 L129.4 863.8 138.1 893.2 139.25 897.15 140 900.6 Q139.65 902.4 138.35 903.65 135.6 906.5 128 906.5 120.4 906.5 117.7 903.65 116.35 902.35 116.05 900.55 116.2 898.95 116.75 897.15 L117.95 893.15"/>
+ <path stroke="none" fill="#BDB6B6" d="M117.95 893.15 L116.75 897.15 Q116.2 898.95 116.05 900.55 115.5 905 117.7 907.6 120.4 911.15 128 911.15 135.6 911.15 138.35 907.6 140.5 905 140 900.6 L139.25 897.15 138.1 893.2 Q139.55 893.95 140.9 895 146.3 899.2 146.3 905.15 146.3 911.1 140.9 915.25 135.6 919.45 128 919.45 120.4 919.45 115 915.25 109.7 911.1 109.7 905.15 109.7 899.2 115 895 116.4 893.95 117.95 893.15"/>
+ <path stroke="none" fill="#F0EDE7" d="M116.05 900.55 Q116.35 902.35 117.7 903.65 120.4 906.5 128 906.5 135.6 906.5 138.35 903.65 139.65 902.4 140 900.6 140.5 905 138.35 907.6 135.6 911.15 128 911.15 120.4 911.15 117.7 907.6 115.5 905 116.05 900.55"/>
+ <path stroke="none" fill="#545353" d="M573.9 898.5 L573.85 898 573.85 897 573.85 896.5 573.85 896 Q573.85 882.45 578.75 870.95 L579.65 868.95 Q584.25 859.05 592.6 850.7 L593.65 849.7 Q612.05 832 637.85 832 663.7 832 682.1 849.7 L683.1 850.7 Q686.8 854.4 689.8 858.45 693.5 863.45 696.1 868.95 L697 870.95 Q701.85 882.45 701.85 896 L701.85 896.5 701.85 897 701.85 898 701.85 898.5 Q701.55 883.45 695.1 870.95 L694.05 868.95 Q692.15 865.6 689.8 862.45 686.8 858.4 683.1 854.7 L682.1 853.7 Q663.7 836 637.85 836 612.05 836 593.65 853.7 L592.6 854.7 Q585.95 861.35 581.7 868.95 L580.6 870.95 Q574.2 883.45 573.9 898.5"/>
+ <path stroke="none" fill="#414040" d="M573.9 898.5 Q574.2 883.45 580.6 870.95 L581.7 868.95 Q585.95 861.35 592.6 854.7 L593.65 853.7 Q612.05 836 637.85 836 663.7 836 682.1 853.7 L683.1 854.7 Q686.8 858.4 689.8 862.45 692.15 865.6 694.05 868.95 L695.1 870.95 Q701.55 883.45 701.85 898.5 701.15 918.2 689.8 933.5 L687.7 936.15 686.3 937.8 683.1 941.2 Q673.9 950.45 662.8 955.15 651.3 960 637.85 960 629.3 960 621.6 958.05 617.15 956.95 612.95 955.15 601.8 950.45 592.6 941.2 L589.4 937.8 Q574.65 921.1 573.9 898.5 M681.4 872.85 L679.35 870.95 676.6 868.95 Q670.15 864.8 662 864.8 653.8 864.8 647.35 868.95 637.85 873.8 628.35 868.95 621.9 864.8 613.75 864.8 605.6 864.8 599.15 868.95 597.75 869.85 596.4 870.95 L594.3 872.85 Q586.25 880.9 586.25 892.25 586.25 903.65 594.3 911.75 L594.4 911.75 598.95 915.45 Q599 931.4 610.35 942.65 614.85 947.2 620.15 949.9 628.15 954.05 637.85 954.05 653.95 954.05 665.4 942.65 L669.05 938.55 Q676.65 928.55 676.75 915.45 L681.4 911.75 Q689.45 903.65 689.45 892.25 689.45 880.9 681.4 872.85 M655.85 859.75 L655.8 859.2 Q655.35 852 650.7 846.75 645.55 841 638.35 841 631.1 841 625.95 846.75 621.35 852 620.9 859.2 L620.85 859.75 Q620.85 860.45 621.15 861.1 622.05 863.25 625.95 864.9 631.1 867 638.35 867 645.55 867 650.7 864.9 654.65 863.25 655.6 861.1 L655.85 859.75"/>
+ <path stroke="none" fill="#FFFFFF" d="M596.2 896.1 Q596.2 891.5 599.45 888.3 602.75 885.1 607.35 885.1 611.9 885.1 615.25 888.3 618.45 891.5 618.45 896.1 618.45 900.7 615.25 903.85 611.9 907.2 607.35 907.2 602.75 907.2 599.45 903.85 596.2 900.7 596.2 896.1 M601.65 896.35 Q601.65 899.2 603.7 901.15 605.6 903.25 608.55 903.25 611.45 903.25 613.5 901.15 615.55 899.2 615.55 896.35 615.55 893.35 613.5 891.4 611.45 889.4 608.55 889.4 605.6 889.4 603.7 891.4 601.65 893.35 601.65 896.35 M620.15 918.4 Q640.15 912.25 657.15 918.4 660.3 927.8 657.15 936.15 655.15 936.3 653.2 935.5 639.45 929.95 622.95 935.7 L620.15 936.2 Q616.6 928.3 620.15 918.4 M680.25 896.1 Q680.25 900.7 677 903.85 673.75 907.2 669.1 907.2 664.55 907.2 661.35 903.85 658 900.7 658 896.1 658 891.5 661.35 888.3 664.55 885.1 669.1 885.1 673.75 885.1 677 888.3 680.25 891.5 680.25 896.1 M674.9 896.35 Q674.9 893.35 672.85 891.4 670.8 889.4 667.95 889.4 665.1 889.4 662.95 891.4 660.9 893.35 660.9 896.35 660.9 899.2 662.95 901.15 665.1 903.25 667.95 903.25 670.8 903.25 672.85 901.15 674.9 899.2 674.9 896.35"/>
+ <path stroke="none" fill="#BDB6B6" d="M596.2 896.1 Q596.2 900.7 599.45 903.85 602.75 907.2 607.35 907.2 611.9 907.2 615.25 903.85 618.45 900.7 618.45 896.1 618.45 891.5 615.25 888.3 611.9 885.1 607.35 885.1 602.75 885.1 599.45 888.3 596.2 891.5 596.2 896.1 M681.4 872.85 Q689.45 880.9 689.45 892.25 689.45 903.65 681.4 911.75 L676.75 915.45 Q676.65 928.55 669.05 938.55 L665.4 942.65 Q653.95 954.05 637.85 954.05 628.15 954.05 620.15 949.9 614.85 947.2 610.35 942.65 599 931.4 598.95 915.45 L594.4 911.75 594.3 911.75 Q586.25 903.65 586.25 892.25 586.25 880.9 594.3 872.85 L596.4 870.95 Q597.75 869.85 599.15 868.95 605.6 864.8 613.75 864.8 621.9 864.8 628.35 868.95 637.85 873.8 647.35 868.95 653.8 864.8 662 864.8 670.15 864.8 676.6 868.95 L679.35 870.95 681.4 872.85 M616.1 875.75 Q614.8 875.9 613.8 876.85 612.85 877.8 612.85 879.15 612.85 880.5 613.8 881.45 614.8 882.4 616.4 882.6 637.8 885.2 659 882.4 660.85 882.4 661.8 881.45 662.75 880.5 662.75 879.15 662.75 877.8 661.8 876.85 660.85 875.9 659 875.7 637 873.65 616.1 875.75 M641.6 899.2 L641.45 899.3 Q640.3 900.45 640.3 902.15 640.3 903.9 641.55 905.15 L641.95 905.45 642.35 905.75 Q643.25 906.35 644.5 906.35 646.15 906.35 647.3 905.2 L647.45 905 649.1 903 Q649.95 901.8 650.25 900.55 L650.35 900.2 Q650.8 898 649.7 896.9 648.5 895.7 646.05 896.35 643.75 897.05 641.6 899.2 M635.1 905.15 Q636.3 903.9 636.3 902.15 636.3 900.45 635.15 899.3 L635 899.2 Q632.9 897.05 630.5 896.35 628.1 895.7 626.85 896.9 625.75 898 626.25 900.2 L626.35 900.55 Q626.65 901.8 627.45 903.05 L629.1 905 629.2 905.2 Q630.4 906.35 632.1 906.35 633.3 906.35 634.3 905.75 L634.7 905.45 635.1 905.15 M620.15 918.4 L617.3 919.3 Q613.85 920.5 612.35 923.7 610.75 927 611.95 930.3 613.1 933.75 616.4 935.3 618.25 936.2 620.15 936.2 L622.95 935.7 Q639.45 929.95 653.2 935.5 655.15 936.3 657.15 936.15 L659.8 935.5 Q663.1 934.2 664.45 930.85 665.8 927.55 664.5 924.2 663.15 920.95 659.9 919.5 L657.15 918.4 Q640.15 912.25 620.15 918.4 M680.25 896.1 Q680.25 891.5 677 888.3 673.75 885.1 669.1 885.1 664.55 885.1 661.35 888.3 658 891.5 658 896.1 658 900.7 661.35 903.85 664.55 907.2 669.1 907.2 673.75 907.2 677 903.85 680.25 900.7 680.25 896.1"/>
+ <path stroke="none" fill="#464545" d="M655.85 859.75 L655.6 861.1 Q654.65 863.25 650.7 864.9 645.55 867 638.35 867 631.1 867 625.95 864.9 622.05 863.25 621.15 861.1 620.85 860.45 620.85 859.75 L620.9 859.2 Q621.35 852 625.95 846.75 631.1 841 638.35 841 645.55 841 650.7 846.75 655.35 852 655.8 859.2 L655.85 859.75"/>
+ <path stroke="none" fill="#A8A1A1" d="M616.1 875.75 Q637 873.65 659 875.7 660.85 875.9 661.8 876.85 662.75 877.8 662.75 879.15 662.75 880.5 661.8 881.45 660.85 882.4 659 882.4 637.8 885.2 616.4 882.6 614.8 882.4 613.8 881.45 612.85 880.5 612.85 879.15 612.85 877.8 613.8 876.85 614.8 875.9 616.1 875.75"/>
+ <path stroke="none" fill="#989292" d="M641.6 899.2 Q643.75 897.05 646.05 896.35 648.5 895.7 649.7 896.9 650.8 898 650.35 900.2 L650.25 900.55 Q649.95 901.8 649.1 903 L647.45 905 647.3 905.2 Q646.15 906.35 644.5 906.35 643.25 906.35 642.35 905.75 L641.95 905.45 641.55 905.15 Q640.3 903.9 640.3 902.15 640.3 900.45 641.45 899.3 L641.6 899.2 M635.1 905.15 L634.7 905.45 634.3 905.75 Q633.3 906.35 632.1 906.35 630.4 906.35 629.2 905.2 L629.1 905 627.45 903.05 Q626.65 901.8 626.35 900.55 L626.25 900.2 Q625.75 898 626.85 896.9 628.1 895.7 630.5 896.35 632.9 897.05 635 899.2 L635.15 899.3 Q636.3 900.45 636.3 902.15 636.3 903.9 635.1 905.15"/>
+ <path stroke="none" fill="#5B5B5B" d="M601.65 896.35 Q601.65 893.35 603.7 891.4 605.6 889.4 608.55 889.4 611.45 889.4 613.5 891.4 615.55 893.35 615.55 896.35 615.55 899.2 613.5 901.15 611.45 903.25 608.55 903.25 605.6 903.25 603.7 901.15 601.65 899.2 601.65 896.35 M674.9 896.35 Q674.9 899.2 672.85 901.15 670.8 903.25 667.95 903.25 665.1 903.25 662.95 901.15 660.9 899.2 660.9 896.35 660.9 893.35 662.95 891.4 665.1 889.4 667.95 889.4 670.8 889.4 672.85 891.4 674.9 893.35 674.9 896.35"/>
+ <path stroke="none" fill="#E7E7E7" d="M620.15 936.2 Q618.25 936.2 616.4 935.3 613.1 933.75 611.95 930.3 610.75 927 612.35 923.7 613.85 920.5 617.3 919.3 L620.15 918.4 Q616.6 928.3 620.15 936.2 M657.15 918.4 L659.9 919.5 Q663.15 920.95 664.5 924.2 665.8 927.55 664.45 930.85 663.1 934.2 659.8 935.5 L657.15 936.15 Q660.3 927.8 657.15 918.4"/>
+ <path stroke="none" fill="#31DE7A" d="M831.75 898 L831.7 896 Q831.7 869.5 850.45 850.75 858.55 842.65 868.15 838.05 880.7 832 895.7 832 910.7 832 923.25 838.05 932.8 842.65 940.9 850.75 959.7 869.5 959.7 896 L959.7 898 Q959 872.8 940.9 854.75 932.6 846.45 922.8 841.85 910.45 836 895.7 836 880.95 836 868.6 841.8 858.75 846.45 850.45 854.75 832.4 872.8 831.75 898"/>
+ <path stroke="none" fill="#2ECC71" d="M831.75 898 Q832.4 872.8 850.45 854.75 858.75 846.45 868.6 841.8 870.4 854.7 875.9 864.75 884.1 879.8 895.7 879.8 907.3 879.8 915.5 864.75 921 854.7 922.8 841.85 932.6 846.45 940.9 854.75 959 872.8 959.7 898 959.1 920.1 945.05 936.7 932.9 943.7 925.75 936.7 912.2 917.9 894.15 917.9 876.1 917.9 862.55 936.7 857.2 943.6 846.35 936.7 832.3 920.1 831.75 898"/>
+ <path stroke="none" fill="#2FD274" d="M868.6 841.8 Q880.95 836 895.7 836 910.45 836 922.8 841.85 921 854.7 915.5 864.75 907.3 879.8 895.7 879.8 884.1 879.8 875.9 864.75 870.4 854.7 868.6 841.8"/>
+ <path stroke="none" fill="#F3F3F3" d="M945.05 936.7 L940.9 941.2 Q937 945.15 932.75 948.25 916.6 960 895.7 960 873.3 960 856.45 946.55 L850.45 941.2 846.35 936.7 Q857.2 943.6 862.55 936.7 876.1 917.9 894.15 917.9 912.2 917.9 925.75 936.7 932.9 943.7 945.05 936.7"/>
+ <path stroke="none" fill="#FFFFFF" d="M929.45 890 Q929.45 886.7 927.2 884.55 924.95 882.4 921.8 882.4 918.7 882.4 916.35 884.55 914.1 886.7 914.1 890 914.1 893.15 916.35 895.3 918.7 897.6 921.8 897.6 924.95 897.6 927.2 895.3 929.45 893.15 929.45 890 M935.3 889.75 Q935.3 894.8 931.8 898.25 928.2 901.9 923.1 901.9 918.1 901.9 914.55 898.25 910.95 894.8 910.95 889.75 910.95 884.7 914.55 881.15 918.1 877.65 923.1 877.65 928.2 877.65 931.8 881.15 935.3 884.7 935.3 889.75 M862.05 890 Q862.05 893.15 864.3 895.3 866.45 897.6 869.65 897.6 872.8 897.6 875.05 895.3 876.1 894.3 876.65 893.1 877.3 891.7 877.3 890 877.3 888.25 876.65 886.8 876.1 885.55 875.05 884.55 872.8 882.4 869.65 882.4 866.45 882.4 864.3 884.55 862.05 886.7 862.05 890 M856.1 889.75 Q856.1 884.7 859.7 881.15 863.3 877.65 868.3 877.65 873.05 877.65 876.65 880.85 L877 881.15 Q880.5 884.7 880.5 889.75 880.5 894.8 877 898.25 L876.65 898.6 Q873.05 901.9 868.3 901.9 863.3 901.9 859.7 898.25 856.1 894.8 856.1 889.75"/>
+ <path stroke="none" fill="#5B5B5B" d="M929.45 890 Q929.45 893.15 927.2 895.3 924.95 897.6 921.8 897.6 918.7 897.6 916.35 895.3 914.1 893.15 914.1 890 914.1 886.7 916.35 884.55 918.7 882.4 921.8 882.4 924.95 882.4 927.2 884.55 929.45 886.7 929.45 890 M862.05 890 Q862.05 886.7 864.3 884.55 866.45 882.4 869.65 882.4 872.8 882.4 875.05 884.55 876.1 885.55 876.65 886.8 877.3 888.25 877.3 890 877.3 891.7 876.65 893.1 876.1 894.3 875.05 895.3 872.8 897.6 869.65 897.6 866.45 897.6 864.3 895.3 862.05 893.15 862.05 890"/>
+ <path stroke="none" fill="#FFD738" d="M916.2 914.45 L916 913.05 915.65 911.05 Q915.25 909.1 914.5 907.3 913 903.75 910.3 900.8 L907.95 898.55 Q902.65 894.2 895.75 894.2 888.8 894.2 883.55 898.55 882.3 899.5 881.1 900.8 878.45 903.75 876.95 907.3 876.2 909.1 875.75 911.05 L875.35 913.05 875.25 914.55 875.2 914.25 875.15 912.75 875.35 909.05 875.65 907.5 875.75 907.05 Q877.05 901.3 881.1 896.8 882.3 895.5 883.55 894.55 888.8 890.2 895.75 890.2 902.65 890.2 907.95 894.55 L910.3 896.8 Q914.4 901.3 915.65 907.05 L915.75 907.5 916 909.05 916.3 912.75 916.2 914.25 916.2 914.45"/>
+ <path stroke="none" fill="#FFCC00" d="M916.2 914.45 L916.1 915.3 915.65 916.85 Q914.35 920.2 910.3 922.85 L909.7 923.25 909.3 923.5 Q903.55 926.7 895.75 926.7 887.9 926.7 882.15 923.5 L881.75 923.25 881.1 922.85 Q877.05 920.2 875.8 916.8 L875.4 915.3 875.25 914.55 875.35 913.05 875.75 911.05 Q876.2 909.1 876.95 907.3 878.45 903.75 881.1 900.8 882.3 899.5 883.55 898.55 888.8 894.2 895.75 894.2 902.65 894.2 907.95 898.55 L910.3 900.8 Q913 903.75 914.5 907.3 915.25 909.1 915.65 911.05 L916 913.05 916.2 914.45"/>
+ <path stroke="none" fill="#EEBE00" d="M916.2 914.45 L916.2 914.25 916.3 912.75 916 909.05 915.75 907.5 920.65 908.55 Q930.8 911.15 931.05 914.8 L915.65 916.85 916.1 915.3 916.2 914.45 M875.65 907.5 L875.35 909.05 875.15 912.75 875.2 914.25 875.25 914.55 875.4 915.3 875.8 916.8 860.35 914.75 Q860.65 911.1 870.65 908.55 L875.65 907.5"/>
+ <path stroke="none" fill="#DEB100" d="M875.8 916.8 Q877.05 920.2 881.1 922.85 L881.75 923.25 879.5 923 Q874.75 922.35 870.65 921.3 860.85 918.8 860.4 915.3 L860.35 914.95 860.35 914.75 875.8 916.8 M909.7 923.25 L910.3 922.85 Q914.35 920.2 915.65 916.85 L931.05 914.8 931.05 914.95 931.05 915.3 Q930.55 918.8 920.65 921.3 916.6 922.35 911.9 923 L909.7 923.25"/>
+ <path stroke="none" fill="#29BB67" d="M906.1 848.05 Q909.15 853.3 909.7 857.85 910.4 862.4 908.3 863.6 906.15 864.85 902.5 862 898.95 859.15 895.9 853.95 L895.2 852.75 Q894 850.25 894.3 847.7 894.6 844.85 896.75 843.6 898.85 842.4 901.5 843.55 903.85 844.55 905.4 846.9 L906.1 848.05 M890.85 854 Q888.85 857.5 886.4 859.35 884.05 861.25 882.65 860.4 881.25 859.65 881.7 856.6 882.1 853.6 884.1 850.15 L884.55 849.3 Q885.6 847.75 887.15 847.1 L890.3 847.15 Q891.7 848 891.95 849.9 892.1 851.55 891.3 853.2 L890.85 854"/>
+ <path stroke="none" fill="#414040" d="M1176.7 841.35 Q1179.9 838.95 1185.6 837.55 L1186.75 837.25 Q1198.2 834.75 1212.25 837.6 L1214.9 838.15 Q1219.1 839.45 1220.85 844.1 1221.45 845.8 1221.65 847.6 1221.4 850 1220.5 852.6 1218.25 858.95 1213.2 862.75 1209.1 865.65 1205.3 865.75 L1204.05 865.65 1201.25 865.15 1198.3 864.55 1197.35 864.3 1193.75 863.25 Q1195.3 862.7 1197.05 861.5 1200.7 858.75 1202.35 854.15 1202.95 852.55 1203.15 851 1203.5 848.3 1202.6 845.85 1201.3 842.5 1198.25 841.65 L1196.35 841.2 Q1186.25 839.15 1178 840.95 L1176.7 841.35 M1077.3 847.6 Q1077.5 845.8 1078.1 844.1 1079.85 839.45 1084.05 838.15 L1086.7 837.6 Q1100.75 834.75 1112.2 837.25 L1113.35 837.55 Q1119.05 838.95 1122.25 841.35 L1120.95 840.95 Q1112.7 839.15 1102.6 841.2 L1100.7 841.65 Q1097.65 842.5 1096.35 845.85 1095.45 848.3 1095.8 851 1096 852.55 1096.6 854.15 1098.25 858.75 1101.9 861.5 1103.65 862.7 1105.2 863.25 L1101.6 864.3 1100.65 864.55 1097.7 865.15 1094.9 865.65 1093.65 865.75 Q1089.85 865.65 1085.75 862.75 1080.7 858.95 1078.45 852.6 1077.55 850 1077.3 847.6"/>
+ <path stroke="none" fill="#545353" d="M1077.3 847.6 Q1077 844.15 1078.1 841.1 1079.85 836.45 1084.05 835.15 L1086.7 834.6 Q1100.75 831.75 1112.2 834.25 L1113.35 834.55 Q1122.75 836.85 1125.45 841.9 L1125.7 842.45 1122.3 841.35 1122.25 841.35 Q1119.05 838.95 1113.35 837.55 L1112.2 837.25 Q1100.75 834.75 1086.7 837.6 L1084.05 838.15 Q1079.85 839.45 1078.1 844.1 1077.5 845.8 1077.3 847.6 M1221.65 847.6 Q1221.45 845.8 1220.85 844.1 1219.1 839.45 1214.9 838.15 L1212.25 837.6 Q1198.2 834.75 1186.75 837.25 L1185.6 837.55 Q1179.9 838.95 1176.7 841.35 L1176.65 841.35 Q1174.7 841.8 1173.25 842.45 L1173.5 841.9 Q1176.2 836.85 1185.6 834.55 L1186.75 834.25 Q1198.2 831.75 1212.25 834.6 L1214.9 835.15 Q1219.1 836.45 1220.85 841.1 1221.95 844.15 1221.65 847.6"/>
+ <path stroke="none" fill="#FFAAFF" d="M1176.7 841.35 L1178 840.95 Q1186.25 839.15 1196.35 841.2 L1198.25 841.65 Q1201.3 842.5 1202.6 845.85 1203.5 848.3 1203.15 851 1202.95 852.55 1202.35 854.15 1200.7 858.75 1197.05 861.5 1195.3 862.7 1193.75 863.25 L1192.35 862.8 Q1184.5 860.1 1179.05 855.85 1175.1 852.85 1173.55 849.8 1171.8 846.45 1172.95 843.05 L1173.25 842.45 Q1174.7 841.8 1176.65 841.35 L1176.7 841.35 M1122.25 841.35 L1122.3 841.35 1125.7 842.45 1126 843.05 Q1127.15 846.45 1125.4 849.8 1123.85 852.85 1119.9 855.85 1114.45 860.1 1106.6 862.8 L1105.2 863.25 Q1103.65 862.7 1101.9 861.5 1098.25 858.75 1096.6 854.15 1096 852.55 1095.8 851 1095.45 848.3 1096.35 845.85 1097.65 842.5 1100.7 841.65 L1102.6 841.2 Q1112.7 839.15 1120.95 840.95 L1122.25 841.35"/>
+ <path stroke="none" fill="#4F4E4E" d="M1165.05 837.75 L1165.5 833.85 Q1181.9 837.9 1194.75 850.7 L1196 852 Q1213.5 870.4 1213.5 896 L1213.5 898 Q1212.8 873.7 1196 856 L1194.75 854.7 Q1181.75 841.75 1165.05 837.75 M1133.5 833.9 L1133.95 837.75 1133.95 837.8 Q1123.8 840.2 1115 845.95 1109.35 849.65 1104.25 854.7 1086.2 872.8 1085.55 898 L1085.5 896 Q1085.5 869.5 1104.25 850.7 1109.35 845.6 1115 841.95 1123.6 836.3 1133.5 833.9"/>
+ <path stroke="none" fill="#FFFFFF" d="M1133.5 833.9 Q1141.1 832 1149.5 832 1157.85 832 1165.45 833.85 L1165.5 833.85 1165.05 837.75 1165 837.75 1159.5 836.7 1149.5 836 1139.5 836.7 1133.95 837.8 1133.95 837.75 1133.5 833.9"/>
+ <path stroke="none" fill="#F0F0F0" d="M1133.95 837.8 L1139.5 836.7 1149.5 836 1159.5 836.7 1165 837.75 1165.05 837.75 Q1161.8 853.2 1160.85 868.95 1160.1 881.1 1160.75 893.45 1161.95 915.65 1203.3 930.9 1199.65 936.35 1194.75 941.2 1176 960 1149.5 960 1123 960 1104.25 941.2 1099.35 936.3 1095.75 930.9 1137.05 915.65 1138.25 893.45 1138.9 881.1 1138.2 868.95 1137.2 853.25 1133.95 837.8"/>
+ <path stroke="none" fill="#414040" d="M1133.95 837.8 Q1137.2 853.25 1138.2 868.95 1138.9 881.1 1138.25 893.45 1137.05 915.65 1095.75 930.9 1086 916.35 1085.55 898 1086.2 872.8 1104.25 854.7 1109.35 849.65 1115 845.95 1123.8 840.2 1133.95 837.8 M1203.3 930.9 Q1161.95 915.65 1160.75 893.45 1160.1 881.1 1160.85 868.95 1161.8 853.2 1165.05 837.75 1181.75 841.75 1194.75 854.7 L1196 856 Q1212.8 873.7 1213.5 898 1213.1 912.9 1206.65 925.25 L1203.3 930.9"/>
+ <path stroke="none" fill="#FFC4FF" d="M1112.05 927.9 L1112 926 1112 925 Q1112.4 912.4 1122.95 903.35 1133.95 894 1149.5 894 1165 894 1176 903.35 1186.55 912.4 1187 925 L1187 926 1186.95 927.9 Q1186.1 916 1176 907.35 1165 898 1149.5 898 1133.95 898 1122.95 907.35 1112.85 916 1112.05 927.9"/>
+ <path stroke="none" fill="#FFAAFF" d="M1112.05 927.9 Q1112.85 916 1122.95 907.35 1133.95 898 1149.5 898 1165 898 1176 907.35 1186.1 916 1186.95 927.9 1186.3 938.1 1178.9 945.9 L1176 948.6 Q1173.9 950.4 1171.6 951.9 1161.75 949.9 1149.5 949.9 1137.2 949.9 1127.4 951.9 L1122.95 948.6 1120.1 945.9 Q1112.7 938.1 1112.05 927.9 M1168 908.15 L1167.15 907.55 Q1165.75 906.85 1163.55 907.5 L1163.3 907.6 Q1160.45 908.45 1157.95 910.95 L1157.8 911.1 Q1157.15 911.8 1156.8 912.65 1156.4 913.55 1156.4 914.65 1156.4 916.8 1157.9 918.3 1159.4 919.8 1161.55 919.8 1163.6 919.8 1165.1 918.4 L1165.25 918.25 Q1167.3 916.2 1168.25 913.95 L1168.7 912.65 1168.85 912.15 Q1169.25 910.25 1168.6 909 L1168 908.15 M1133.9 918.4 Q1135.4 919.8 1137.45 919.8 1139.6 919.8 1141.1 918.3 1142.6 916.8 1142.6 914.65 1142.6 913.55 1142.25 912.65 L1141.2 911.1 1141.05 910.95 Q1138.5 908.4 1135.65 907.55 L1135.45 907.5 Q1133.25 906.85 1131.9 907.55 1131.4 907.75 1131 908.15 L1130.4 909 Q1129.75 910.25 1130.2 912.15 L1130.3 912.65 1130.75 913.95 Q1131.7 916.2 1133.75 918.25 L1133.9 918.4"/>
+ <path stroke="none" fill="#A66EA6" d="M1133.9 918.4 L1133.75 918.25 Q1131.7 916.2 1130.75 913.95 L1130.3 912.65 1130.2 912.15 Q1129.75 910.25 1130.4 909 L1131 908.15 Q1131.4 907.75 1131.9 907.55 1133.25 906.85 1135.45 907.5 L1135.65 907.55 Q1138.5 908.4 1141.05 910.95 L1141.2 911.1 1142.25 912.65 Q1142.6 913.55 1142.6 914.65 1142.6 916.8 1141.1 918.3 1139.6 919.8 1137.45 919.8 1135.4 919.8 1133.9 918.4 M1168 908.15 L1168.6 909 Q1169.25 910.25 1168.85 912.15 L1168.7 912.65 1168.25 913.95 Q1167.3 916.2 1165.25 918.25 L1165.1 918.4 Q1163.6 919.8 1161.55 919.8 1159.4 919.8 1157.9 918.3 1156.4 916.8 1156.4 914.65 1156.4 913.55 1156.8 912.65 1157.15 911.8 1157.8 911.1 L1157.95 910.95 Q1160.45 908.45 1163.3 907.6 L1163.55 907.5 Q1165.75 906.85 1167.15 907.55 L1168 908.15"/>
+ <path stroke="none" fill="#F0A0F0" d="M1171.6 951.9 Q1162 958 1149.5 958 1136.95 958 1127.4 951.9 1137.2 949.9 1149.5 949.9 1161.75 949.9 1171.6 951.9"/>
+ <path stroke="none" fill="#FFFFFF" d="M1190.5 872.05 Q1190.5 876.15 1187.55 879.05 1184.65 882 1180.5 882 1176.4 882 1173.45 879.05 1170.55 876.15 1170.55 872.05 1170.55 867.85 1173.45 864.95 1176.4 862.05 1180.5 862.05 1184.65 862.05 1187.55 864.95 1190.5 867.85 1190.5 872.05 M1186.7 872.2 Q1186.7 869.3 1184.7 867.25 1182.7 865.25 1179.75 865.25 1176.95 865.25 1174.85 867.25 1172.85 869.3 1172.85 872.2 1172.85 875.05 1174.85 877.05 1176.95 879.05 1179.75 879.05 1182.7 879.05 1184.7 877.05 1186.7 875.05 1186.7 872.2 M1108.5 872.05 Q1108.5 867.85 1111.4 864.95 1114.35 862.05 1118.5 862.05 1122.55 862.05 1125.55 864.95 1128.45 867.85 1128.45 872.05 1128.45 876.15 1125.55 879.05 1122.55 882 1118.5 882 1114.35 882 1111.4 879.05 1108.5 876.15 1108.5 872.05 M1112.25 872.2 Q1112.25 875.05 1114.3 877.05 1116.3 879.05 1119.2 879.05 1122.05 879.05 1124.1 877.05 1126.15 875.05 1126.15 872.2 1126.15 869.3 1124.1 867.25 1122.05 865.25 1119.2 865.25 1116.3 865.25 1114.3 867.25 1112.25 869.3 1112.25 872.2"/>
+ <path stroke="none" fill="#5B5B5B" d="M1112.25 872.2 Q1112.25 869.3 1114.3 867.25 1116.3 865.25 1119.2 865.25 1122.05 865.25 1124.1 867.25 1126.15 869.3 1126.15 872.2 1126.15 875.05 1124.1 877.05 1122.05 879.05 1119.2 879.05 1116.3 879.05 1114.3 877.05 1112.25 875.05 1112.25 872.2 M1186.7 872.2 Q1186.7 875.05 1184.7 877.05 1182.7 879.05 1179.75 879.05 1176.95 879.05 1174.85 877.05 1172.85 875.05 1172.85 872.2 1172.85 869.3 1174.85 867.25 1176.95 865.25 1179.75 865.25 1182.7 865.25 1184.7 867.25 1186.7 869.3 1186.7 872.2"/>
+ <path stroke="none" fill="#704E35" d="M109.05 1162.95 Q108 1160 110.7 1154.9 113.4 1149.65 118.45 1145.4 127.6 1137.75 137.55 1145.4 142.6 1149.65 145.25 1154.9 148 1160 146.95 1162.9 146.45 1161.1 145.25 1158.9 142.6 1153.65 137.55 1149.4 127.6 1141.75 118.45 1149.4 113.4 1153.65 110.7 1158.9 109.5 1161.1 109.05 1162.95"/>
+ <path stroke="none" fill="#5F422D" d="M109.05 1162.95 Q109.5 1161.1 110.7 1158.9 113.4 1153.65 118.45 1149.4 127.6 1141.75 137.55 1149.4 142.6 1153.65 145.25 1158.9 146.45 1161.1 146.95 1162.9 L146.85 1163.05 Q145.7 1166.15 141.2 1165.25 138.15 1164.6 134.8 1162.35 135.35 1164.55 135.5 1166.6 L135.55 1166.85 Q135.7 1168.75 135.45 1170 135.25 1171.15 134.65 1171.65 133.4 1172.75 131.15 1170.25 129.45 1168.25 128 1164.95 126.5 1168.25 124.8 1170.25 122.6 1172.75 121.3 1171.65 120.75 1171.15 120.5 1170 120.25 1168.75 120.45 1166.9 L120.45 1166.6 Q120.65 1164.55 121.2 1162.35 117.85 1164.6 114.8 1165.25 110.3 1166.15 109.1 1163.05 L109.05 1162.95"/>
+ <path stroke="none" fill="#5F422D" d="M85 1060.3 L81.65 1059.25 80.3 1058.8 Q72 1057.05 61.95 1059.1 L60.05 1059.55 Q57 1060.4 55.65 1063.7 54.3 1067.55 55.95 1072.05 57.6 1076.6 61.25 1079.4 62.95 1080.6 64.5 1081.1 L60 1082.4 57 1083 54.2 1083.55 53 1083.6 Q50.95 1082.95 49 1081.4 43.9 1077.65 41.6 1071.2 39.4 1065 41.25 1059.75 43.05 1055.1 47.2 1053.85 L50 1053.2 Q62.35 1050.75 72.7 1052.4 82 1054.75 84.75 1059.75 L85 1060.3 M183.3 1052.4 Q193.65 1050.75 206 1053.2 L208.8 1053.85 Q212.95 1055.05 214.75 1059.7 216.6 1065 214.4 1071.2 212.15 1077.6 207 1081.4 205.05 1082.95 203 1083.55 L201.8 1083.55 199 1082.95 196 1082.35 191.5 1081.05 Q193.05 1080.55 194.75 1079.4 198.4 1076.55 200.05 1072 201.7 1067.5 200.35 1063.7 199 1060.4 195.95 1059.55 195.1 1059.15 194.05 1059.1 184 1057 175.7 1058.8 L174.35 1059.2 172.65 1059.7 171 1060.25 171.25 1059.75 Q173.15 1056.2 178.3 1054 180.55 1053.1 183.3 1052.4"/>
+ <path stroke="none" fill="#4F3725" d="M64.5 1081.1 Q62.95 1080.6 61.25 1079.4 57.6 1076.6 55.95 1072.05 54.3 1067.55 55.65 1063.7 57 1060.4 60.05 1059.55 L61.95 1059.1 Q72 1057.05 80.3 1058.8 L81.65 1059.25 85 1060.3 85.3 1060.9 Q86.5 1064.3 84.75 1067.65 83.2 1070.7 79.25 1073.75 73.75 1078 65.95 1080.65 L64.5 1081.1 M191.5 1081.05 L190.05 1080.65 Q182.25 1078 176.75 1073.7 172.8 1070.7 171.25 1067.65 169.8 1064.8 170.35 1062 L170.7 1060.85 171 1060.25 172.65 1059.7 174.35 1059.2 175.7 1058.8 Q184 1057 194.05 1059.1 195.1 1059.15 195.95 1059.55 199 1060.4 200.35 1063.7 201.7 1067.5 200.05 1072 198.4 1076.55 194.75 1079.4 193.05 1080.55 191.5 1081.05"/>
+ <path stroke="none" fill="#704E35" d="M72.7 1052.4 Q62.35 1050.75 50 1053.2 L47.2 1053.85 Q43.05 1055.1 41.25 1059.75 39.4 1065 41.6 1071.2 43.9 1077.65 49 1081.4 50.95 1082.95 53 1083.6 49.15 1083.5 45.05 1080.6 40.1 1076.8 37.8 1070.45 35.55 1064.15 37.45 1058.95 39.2 1054.3 43.4 1053.05 L46 1052.5 Q60.05 1049.65 71.5 1052.1 L72.7 1052.4 M183.3 1052.4 L184.5 1052.05 Q195.95 1049.6 210 1052.45 L212.6 1053 Q216.8 1054.3 218.55 1058.95 220.45 1064.15 218.2 1070.45 215.9 1076.8 210.95 1080.6 206.85 1083.5 203 1083.55 205.05 1082.95 207 1081.4 212.15 1077.6 214.4 1071.2 216.6 1065 214.75 1059.7 212.95 1055.05 208.8 1053.85 L206 1053.2 Q193.65 1050.75 183.3 1052.4"/>
+ <path stroke="none" fill="#BD7841" d="M192 1090.55 Q191.3 1065.35 173.25 1047.25 158.15 1032.2 138 1029.25 L128 1028.55 118 1029.25 Q97.85 1032.2 82.75 1047.25 64.7 1065.35 64.05 1090.55 L64 1088.55 Q64 1072.2 71.15 1058.75 75.3 1051 81.85 1044.2 L82.75 1043.25 Q85.3 1040.7 87.95 1038.55 L89.65 1037.2 Q106.2 1024.55 128 1024.55 149.85 1024.55 166.4 1037.25 L168.1 1038.6 173.25 1043.25 174.2 1044.25 Q180.7 1051 184.85 1058.75 192 1072.2 192 1088.55 L192 1090.55"/>
+ <path stroke="none" fill="#A16639" d="M192 1090.55 Q191.6 1105.45 185.15 1117.8 180.65 1126.4 173.25 1133.75 L171 1135.9 167.1 1139.25 Q150.9 1125.5 128 1125.5 105.15 1125.5 88.9 1139.25 L85 1135.9 82.75 1133.75 Q64.7 1115.75 64.05 1090.55 64.7 1065.35 82.75 1047.25 97.85 1032.2 118 1029.25 L128 1028.55 138 1029.25 Q158.15 1032.2 173.25 1047.25 191.3 1065.35 192 1090.55 M145.5 1060.35 Q145.5 1050 140.35 1042.75 135.25 1035.5 128 1035.5 120.75 1035.5 115.6 1042.75 110.5 1050 110.5 1060.35 L110.55 1062.05 Q110.9 1083.1 115.6 1098.3 120.75 1115 128 1115 135.25 1115 140.35 1098.3 145.1 1083.1 145.5 1062.05 L145.5 1060.35"/>
+ <path stroke="none" fill="#B6733F" d="M145.5 1060.35 L145.5 1062.05 Q145.1 1083.1 140.35 1098.3 135.25 1115 128 1115 120.75 1115 115.6 1098.3 110.9 1083.1 110.55 1062.05 L110.5 1060.35 Q110.5 1050 115.6 1042.75 120.75 1035.5 128 1035.5 135.25 1035.5 140.35 1042.75 145.5 1050 145.5 1060.35"/>
+ <path stroke="none" fill="#955E34" d="M88.9 1139.25 Q105.15 1125.5 128 1125.5 150.9 1125.5 167.1 1139.25 150.3 1152.55 128 1152.55 105.7 1152.55 88.9 1139.25"/>
+ <path stroke="none" fill="#464646" d="M123.5 1131.8 L123.2 1131.7 123.25 1131.7 Q120.35 1130.65 118.05 1128.35 115.7 1126.05 114.75 1123.15 114.6 1122.75 114.8 1122.4 L115.3 1121.9 116.05 1121.85 119.85 1122.95 Q128.4 1124.85 136.2 1122.95 L136.25 1122.95 140.05 1121.9 140.75 1121.95 141.3 1122.45 141.3 1123.2 Q140.25 1126.05 137.95 1128.35 135.65 1130.65 132.8 1131.7 L132.85 1131.7 132.5 1131.85 129.8 1132.5 128.85 1132.6 126.7 1132.55 125.95 1132.45 123.5 1131.8"/>
+ <path stroke="none" fill="#383838" d="M123.5 1131.8 L125.95 1132.45 126.7 1132.55 128.85 1132.6 129.8 1132.5 132.5 1131.85 133.3 1132.75 Q134.25 1133.7 135.35 1134.25 136.75 1134.9 138.4 1134.9 141.4 1134.9 143.55 1132.75 L144.8 1131.1 145.3 1130.65 146 1130.7 150.7 1133.15 151.15 1133.65 151.1 1134.3 149.6 1136.6 148.55 1137.75 Q144.3 1141.95 138.4 1141.95 132.5 1141.95 128.3 1137.75 L128 1137.45 127.7 1137.75 Q123.45 1141.95 117.55 1141.95 111.6 1141.95 107.45 1137.75 L106.4 1136.6 104.9 1134.4 Q104.7 1134.05 104.85 1133.75 104.9 1133.4 105.25 1133.2 L109.85 1130.65 110.5 1130.55 111.05 1131 112.4 1132.75 Q114.55 1134.9 117.55 1134.9 119.2 1134.9 120.65 1134.25 L122.7 1132.75 123.5 1131.8"/>
+ <path stroke="none" fill="#5B5B5B" d="M89.3 1080.35 Q89.3 1077.9 91 1076.25 92.7 1074.55 95.1 1074.55 97.5 1074.55 99.25 1076.25 100.95 1077.9 100.95 1080.35 100.95 1082.75 99.25 1084.4 97.5 1086.15 95.1 1086.15 92.7 1086.15 91 1084.4 89.3 1082.75 89.3 1080.35 M166.7 1080.35 Q166.7 1082.75 165 1084.4 163.3 1086.15 160.9 1086.15 158.5 1086.15 156.75 1084.4 155.05 1082.75 155.05 1080.35 155.05 1077.9 156.75 1076.25 158.5 1074.55 160.9 1074.55 163.3 1074.55 165 1076.25 166.7 1077.9 166.7 1080.35"/>
+ <path stroke="none" fill="#FFFFFF" d="M166.7 1080.35 Q166.7 1077.9 165 1076.25 163.3 1074.55 160.9 1074.55 158.5 1074.55 156.75 1076.25 155.05 1077.9 155.05 1080.35 155.05 1082.75 156.75 1084.4 158.5 1086.15 160.9 1086.15 163.3 1086.15 165 1084.4 166.7 1082.75 166.7 1080.35 M84.8 1080.2 Q84.8 1076.35 87.5 1073.65 90.25 1070.95 94.1 1070.95 97.9 1070.95 100.65 1073.65 103.35 1076.35 103.35 1080.2 103.35 1084.05 100.65 1086.65 97.9 1089.45 94.1 1089.45 90.25 1089.45 87.5 1086.65 84.8 1084.05 84.8 1080.2 M89.3 1080.35 Q89.3 1082.75 91 1084.4 92.7 1086.15 95.1 1086.15 97.5 1086.15 99.25 1084.4 100.95 1082.75 100.95 1080.35 100.95 1077.9 99.25 1076.25 97.5 1074.55 95.1 1074.55 92.7 1074.55 91 1076.25 89.3 1077.9 89.3 1080.35 M171.2 1080.2 Q171.2 1084.05 168.5 1086.65 165.75 1089.45 161.9 1089.45 158.1 1089.45 155.35 1086.65 152.65 1084.05 152.65 1080.2 152.65 1076.35 155.35 1073.65 158.1 1070.95 161.9 1070.95 165.75 1070.95 168.5 1073.65 171.2 1076.35 171.2 1080.2"/>
+ <path stroke="none" fill="#8E5A32" d="M171.2 1080.2 Q171.2 1076.35 168.5 1073.65 165.75 1070.95 161.9 1070.95 158.1 1070.95 155.35 1073.65 152.65 1076.35 152.65 1080.2 152.65 1084.05 155.35 1086.65 158.1 1089.45 161.9 1089.45 165.75 1089.45 168.5 1086.65 171.2 1084.05 171.2 1080.2 M84.8 1080.2 Q84.8 1084.05 87.5 1086.65 90.25 1089.45 94.1 1089.45 97.9 1089.45 100.65 1086.65 103.35 1084.05 103.35 1080.2 103.35 1076.35 100.65 1073.65 97.9 1070.95 94.1 1070.95 90.25 1070.95 87.5 1073.65 84.8 1076.35 84.8 1080.2 M79.15 1076.75 L79.15 1076.7 Q80.8 1070.7 86.1 1067.65 91.5 1064.55 97.5 1066.15 103.45 1067.7 106.6 1073.1 109.7 1078.45 108.1 1084.45 L108.1 1084.5 Q106.15 1091.7 100.6 1095.55 94.95 1099.55 89 1098 83 1096.4 80.1 1090.1 77.25 1083.95 79.15 1076.75 M176.85 1076.75 Q178.75 1083.95 175.9 1090.1 173 1096.4 167 1098 161.05 1099.55 155.4 1095.55 149.85 1091.7 147.9 1084.5 L147.9 1084.45 Q146.3 1078.45 149.4 1073.1 152.55 1067.7 158.5 1066.15 164.5 1064.55 169.9 1067.65 175.2 1070.7 176.85 1076.7 L176.85 1076.75"/>
+ <path stroke="none" fill="#FFDFC6" d="M108.05 1045.1 Q106.65 1041.45 100.8 1037.3 84.3 1025.35 72.05 1002.05 L72 1002.05 Q72.25 1001.85 72.55 1001.8 73 1001.65 73.4 1001.8 L74.05 1002.4 Q86.3 1022.9 102.8 1031.1 112.95 1036 109.75 1042.3 L109.75 1042.35 108.05 1045.1 M147.95 1045.1 L146.25 1042.35 146.25 1042.3 Q143.05 1036 153.2 1031.1 169.7 1022.9 181.95 1002.4 L182.6 1001.8 Q183 1001.65 183.45 1001.8 L184 1002.05 183.95 1002.05 Q171.7 1025.35 155.2 1037.3 149.35 1041.45 147.95 1045.1"/>
+ <path stroke="none" fill="#EBCEB7" d="M147.95 1045.1 Q149.35 1041.45 155.2 1037.3 171.7 1025.35 183.95 1002.05 L184 1002.05 184.15 1002.2 184.45 1003.05 Q185.25 1027.5 168.9 1046.95 L168.95 1046.95 Q163.05 1054.55 154.25 1050.25 150.4 1048.35 147.95 1045.1 M108.05 1045.1 Q105.6 1048.35 101.75 1050.25 92.95 1054.55 87.05 1046.95 L87.1 1046.95 Q70.75 1027.5 71.55 1003.05 L71.85 1002.2 72 1002.05 72.05 1002.05 Q84.3 1025.35 100.8 1037.3 106.65 1041.45 108.05 1045.1"/>
+ <path stroke="none" fill="#BD7841" d="M320 1090 L319.95 1088 Q319.95 1061.45 338.65 1042.7 357.45 1024 383.95 1024 410.5 1024 429.2 1042.7 447.95 1061.45 447.95 1088 L447.95 1090 Q447.25 1064.75 429.2 1046.7 410.5 1028 383.95 1028 357.45 1028 338.65 1046.7 320.65 1064.75 320 1090"/>
+ <path stroke="none" fill="#8E5A32" d="M441.55 1116.4 Q442.35 1120.4 441.9 1126.75 441.15 1135.2 433.85 1141 426.6 1146.75 426 1138.55 L425.8 1136.45 429.2 1133.2 Q436.95 1125.45 441.55 1116.4 M342.2 1136.5 L342 1138.45 Q341.4 1146.65 334.15 1141.05 326.85 1135.15 326.1 1126.7 325.65 1120.5 326.45 1116.5 330.95 1125.5 338.65 1133.2 L342.2 1136.5 M377.65 1047.75 L378.25 1048.8 Q379.3 1050.95 379.05 1053.05 378.75 1055.5 376.95 1056.6 375.15 1057.65 372.9 1056.65 370.9 1055.8 369.55 1053.8 L368.95 1052.75 Q366.4 1048.3 365.85 1044.4 365.3 1040.5 367.1 1039.5 368.9 1038.4 371.95 1040.85 375.1 1043.25 377.65 1047.75 M397.35 1055.45 L396.4 1056.95 Q394.4 1059.95 391.4 1061.25 388 1062.7 385.25 1061.15 382.5 1059.55 382.1 1055.9 381.7 1052.6 383.3 1049.4 L384.2 1047.85 Q388.1 1041.1 392.7 1037.45 397.4 1033.8 400.15 1035.4 402.9 1036.95 402 1042.8 401.25 1048.7 397.35 1055.45"/>
+ <path stroke="none" fill="#A16639" d="M397.35 1055.45 Q401.25 1048.7 402 1042.8 402.9 1036.95 400.15 1035.4 397.4 1033.8 392.7 1037.45 388.1 1041.1 384.2 1047.85 L383.3 1049.4 Q381.7 1052.6 382.1 1055.9 382.5 1059.55 385.25 1061.15 388 1062.7 391.4 1061.25 394.4 1059.95 396.4 1056.95 L397.35 1055.45 M447.95 1090 Q447.55 1104.35 441.55 1116.4 436.95 1125.45 429.2 1133.2 L425.8 1136.45 422.55 1139.15 Q420.8 1130.1 411.5 1123.35 400.1 1115 383.95 1115 367.8 1115 356.35 1123.35 347.15 1130.1 345.4 1139.15 L342.2 1136.5 338.65 1133.2 Q330.95 1125.5 326.45 1116.5 320.35 1104.4 320 1090 320.65 1064.75 338.65 1046.7 357.45 1028 383.95 1028 410.5 1028 429.2 1046.7 447.25 1064.75 447.95 1090 M377.65 1047.75 Q375.1 1043.25 371.95 1040.85 368.9 1038.4 367.1 1039.5 365.3 1040.5 365.85 1044.4 366.4 1048.3 368.95 1052.75 L369.55 1053.8 Q370.9 1055.8 372.9 1056.65 375.15 1057.65 376.95 1056.6 378.75 1055.5 379.05 1053.05 379.3 1050.95 378.25 1048.8 L377.65 1047.75"/>
+ <path stroke="none" fill="#EBCEB7" d="M422.55 1139.15 Q419 1141.9 415.25 1144.05 401.25 1152 383.95 1152 366.7 1152 352.7 1144 348.9 1141.85 345.4 1139.15 347.15 1130.1 356.35 1123.35 367.8 1115 383.95 1115 400.1 1115 411.5 1123.35 420.8 1130.1 422.55 1139.15 M377.05 1133.65 Q379.9 1136.5 383.95 1136.5 387.95 1136.5 390.8 1133.65 393.65 1130.8 393.65 1126.8 393.65 1125.3 393.25 1123.95 L393 1123.6 392.6 1123.5 392 1123.5 391.55 1123.65 391.35 1124.1 Q391.2 1126.85 389.2 1128.8 387 1131 383.95 1131 380.85 1131 378.7 1128.8 376.7 1126.85 376.5 1124.1 L376.3 1123.65 375.85 1123.5 375.25 1123.5 374.85 1123.6 374.65 1123.95 Q374.25 1125.3 374.25 1126.8 374.25 1130.85 377.05 1133.65 M364.7 1142.75 Q368.45 1142.75 371.15 1140.05 L372.05 1139 372.25 1138.4 372 1137.75 Q371.8 1137.5 371.45 1137.45 L370.8 1137.55 Q368.95 1138.5 366.7 1138.5 363.1 1138.5 360.5 1135.85 358.4 1133.8 357.95 1131.05 L357.65 1130.5 357.05 1130.2 356.4 1130.4 356 1130.9 Q355.6 1132.2 355.6 1133.65 355.6 1137.4 358.25 1140.05 L358.3 1140.1 Q360.95 1142.75 364.7 1142.75 M403.2 1142.75 Q406.95 1142.75 409.6 1140.1 L409.65 1140.05 Q412.3 1137.4 412.3 1133.65 412.3 1132.2 411.9 1130.9 L411.5 1130.4 410.85 1130.2 410.25 1130.5 409.95 1131.05 Q409.5 1133.8 407.4 1135.85 404.8 1138.5 401.2 1138.5 398.95 1138.5 397.1 1137.55 L396.45 1137.45 395.9 1137.75 Q395.65 1138 395.65 1138.4 395.6 1138.7 395.85 1139 L396.75 1140.05 Q399.45 1142.75 403.2 1142.75"/>
+ <path stroke="none" fill="#C6AD99" d="M403.2 1142.75 Q399.45 1142.75 396.75 1140.05 L395.85 1139 Q395.6 1138.7 395.65 1138.4 395.65 1138 395.9 1137.75 L396.45 1137.45 397.1 1137.55 Q398.95 1138.5 401.2 1138.5 404.8 1138.5 407.4 1135.85 409.5 1133.8 409.95 1131.05 L410.25 1130.5 410.85 1130.2 411.5 1130.4 411.9 1130.9 Q412.3 1132.2 412.3 1133.65 412.3 1137.4 409.65 1140.05 L409.6 1140.1 Q406.95 1142.75 403.2 1142.75 M377.05 1133.65 Q374.25 1130.85 374.25 1126.8 374.25 1125.3 374.65 1123.95 L374.85 1123.6 375.25 1123.5 375.85 1123.5 376.3 1123.65 376.5 1124.1 Q376.7 1126.85 378.7 1128.8 380.85 1131 383.95 1131 387 1131 389.2 1128.8 391.2 1126.85 391.35 1124.1 L391.55 1123.65 392 1123.5 392.6 1123.5 393 1123.6 393.25 1123.95 Q393.65 1125.3 393.65 1126.8 393.65 1130.8 390.8 1133.65 387.95 1136.5 383.95 1136.5 379.9 1136.5 377.05 1133.65 M364.7 1142.75 Q360.95 1142.75 358.3 1140.1 L358.25 1140.05 Q355.6 1137.4 355.6 1133.65 355.6 1132.2 356 1130.9 L356.4 1130.4 357.05 1130.2 357.65 1130.5 357.95 1131.05 Q358.4 1133.8 360.5 1135.85 363.1 1138.5 366.7 1138.5 368.95 1138.5 370.8 1137.55 L371.45 1137.45 Q371.8 1137.5 372 1137.75 L372.25 1138.4 372.05 1139 371.15 1140.05 Q368.45 1142.75 364.7 1142.75"/>
+ <path stroke="none" fill="#EBCEB7" d="M377.35 1082.55 Q378.15 1085.45 378.15 1088.7 378.15 1098.05 371.5 1104.65 364.9 1111.3 355.55 1111.3 346.2 1111.3 339.6 1104.65 333 1098.05 333 1088.7 333 1085.35 333.85 1082.35 335.95 1075.45 332.25 1072.6 330.25 1071 329.8 1069.3 365.15 1067.1 377.35 1082.55 M423.2 1088.7 Q423.2 1084.2 420.05 1081 416.8 1077.85 412.35 1077.85 407.85 1077.85 404.65 1081 401.45 1084.2 401.45 1088.7 401.45 1093.25 404.65 1096.4 407.85 1099.6 412.35 1099.6 416.8 1099.6 420.05 1096.4 423.2 1093.25 423.2 1088.7 M438.1 1069.3 Q437.65 1071 435.65 1072.6 431.95 1075.45 434.05 1082.35 434.9 1085.35 434.9 1088.7 434.9 1098.05 428.3 1104.65 421.7 1111.3 412.35 1111.3 403 1111.3 396.4 1104.65 389.75 1098.05 389.75 1088.7 389.75 1085.45 390.55 1082.55 402.75 1067.1 438.1 1069.3 M344.7 1088.7 Q344.7 1093.25 347.85 1096.4 351.1 1099.6 355.55 1099.6 360.05 1099.6 363.25 1096.4 366.45 1093.25 366.45 1088.7 366.45 1084.2 363.25 1081 360.05 1077.85 355.55 1077.85 351.1 1077.85 347.85 1081 344.7 1084.2 344.7 1088.7"/>
+ <path stroke="none" fill="#FFFFFF" d="M344.7 1088.7 Q344.7 1084.2 347.85 1081 351.1 1077.85 355.55 1077.85 360.05 1077.85 363.25 1081 366.45 1084.2 366.45 1088.7 366.45 1093.25 363.25 1096.4 360.05 1099.6 355.55 1099.6 351.1 1099.6 347.85 1096.4 344.7 1093.25 344.7 1088.7 M423.2 1088.7 Q423.2 1093.25 420.05 1096.4 416.8 1099.6 412.35 1099.6 407.85 1099.6 404.65 1096.4 401.45 1093.25 401.45 1088.7 401.45 1084.2 404.65 1081 407.85 1077.85 412.35 1077.85 416.8 1077.85 420.05 1081 423.2 1084.2 423.2 1088.7 M416.9 1088.7 Q416.9 1086.15 415.05 1084.35 413.25 1082.55 410.7 1082.55 408.15 1082.55 406.25 1084.35 404.45 1086.15 404.45 1088.7 404.45 1091.3 406.25 1093.15 408.15 1094.95 410.7 1094.95 413.25 1094.95 415.05 1093.15 416.9 1091.3 416.9 1088.7 M351 1088.7 Q351 1091.3 352.85 1093.15 354.65 1094.95 357.2 1094.95 359.75 1094.95 361.65 1093.15 363.45 1091.3 363.45 1088.7 363.45 1086.15 361.65 1084.35 359.75 1082.55 357.2 1082.55 354.65 1082.55 352.85 1084.35 351 1086.15 351 1088.7"/>
+ <path stroke="none" fill="#5B5B5B" d="M351 1088.7 Q351 1086.15 352.85 1084.35 354.65 1082.55 357.2 1082.55 359.75 1082.55 361.65 1084.35 363.45 1086.15 363.45 1088.7 363.45 1091.3 361.65 1093.15 359.75 1094.95 357.2 1094.95 354.65 1094.95 352.85 1093.15 351 1091.3 351 1088.7 M416.9 1088.7 Q416.9 1091.3 415.05 1093.15 413.25 1094.95 410.7 1094.95 408.15 1094.95 406.25 1093.15 404.45 1091.3 404.45 1088.7 404.45 1086.15 406.25 1084.35 408.15 1082.55 410.7 1082.55 413.25 1082.55 415.05 1084.35 416.9 1086.15 416.9 1088.7"/>
+ <path stroke="none" fill="#DEC2AD" d="M390.55 1082.55 Q392.05 1077.05 396.4 1072.75 401.9 1067.2 415.05 1064.3 424.25 1062.5 430.7 1063.35 437.15 1064.1 438.05 1067.45 438.3 1068.4 438.1 1069.3 402.75 1067.1 390.55 1082.55 M377.35 1082.55 Q365.15 1067.1 329.8 1069.3 329.6 1068.4 329.85 1067.45 330.75 1064.1 337.2 1063.35 343.65 1062.5 352.85 1064.3 366 1067.2 371.5 1072.75 375.85 1077.05 377.35 1082.55"/>
+ <path stroke="none" fill="#FF9900" d="M370.45 1101.85 Q371.1 1097.65 374.25 1094.4 L375.85 1093.05 Q379.35 1090.45 383.95 1090.45 388.55 1090.45 392.05 1093.05 L393.6 1094.4 Q396.8 1097.65 397.4 1101.85 L396.25 1103.4 Q395.45 1100.35 392.9 1097.95 L391.5 1096.8 Q388.2 1094.5 383.95 1094.5 379.7 1094.5 376.45 1096.8 L374.95 1097.95 Q372.45 1100.35 371.65 1103.4 370.75 1102.7 370.45 1101.85"/>
+ <path stroke="none" fill="#F39100" d="M371.65 1103.4 Q372.45 1100.35 374.95 1097.95 L376.45 1096.8 Q379.7 1094.5 383.95 1094.5 388.2 1094.5 391.5 1096.8 L392.9 1097.95 Q395.45 1100.35 396.25 1103.4 395.25 1104.2 393.6 1104.85 389.6 1106.5 383.95 1106.5 378.25 1106.5 374.25 1104.85 L371.65 1103.4"/>
+ <path stroke="none" fill="#E08600" d="M371.65 1103.4 L374.25 1104.85 Q378.25 1106.5 383.95 1106.5 389.6 1106.5 393.6 1104.85 395.25 1104.2 396.25 1103.4 L397.4 1101.85 397.6 1104.05 397.55 1104.95 Q397.3 1108 393.6 1110.15 389.6 1112.5 383.95 1112.5 378.25 1112.5 374.25 1110.15 370.6 1108 370.3 1104.95 L370.3 1104.05 Q370.3 1102.9 370.45 1101.85 370.75 1102.7 371.65 1103.4"/>
+ <path stroke="none" fill="#EBCEB7" d="M653.5 1106.25 L652.75 1105.7 Q651.6 1105.15 649.7 1105.7 L649.5 1105.75 Q647.1 1106.5 645 1108.6 L644.85 1108.75 Q644.3 1109.3 644 1110.05 643.65 1110.8 643.65 1111.75 643.65 1113.55 644.95 1114.8 646.2 1116.1 648.05 1116.1 649.75 1116.1 651.05 1114.9 L651.15 1114.8 Q652.9 1113.05 653.7 1111.15 L654.1 1110.05 654.2 1109.6 Q654.55 1108 654 1106.95 L653.5 1106.25 M687.2 1128.7 L683.05 1133.2 681.85 1134.4 674.9 1140.25 Q658.75 1152 637.85 1152 615.45 1152 598.6 1138.55 L593.85 1134.4 592.6 1133.2 588.5 1128.7 Q578.15 1116.5 575.15 1101.3 L580.35 1103.45 Q595.1 1109 613.6 1111.15 614.1 1106.7 617.35 1103.35 621.3 1099.45 626.85 1099.45 632.35 1099.45 636.25 1103.35 L637.85 1105.2 639.4 1103.35 Q643.35 1099.45 648.9 1099.45 654.4 1099.45 658.3 1103.35 661.65 1106.7 662.15 1111.15 680.65 1109 695.35 1103.45 L700.6 1101.3 Q697.55 1116.5 687.2 1128.7 M624.65 1114.9 Q625.9 1116.1 627.65 1116.1 629.45 1116.1 630.7 1114.8 632 1113.55 632 1111.75 L631.7 1110.05 630.8 1108.75 630.7 1108.6 Q628.5 1106.45 626.1 1105.7 L625.95 1105.7 Q624.1 1105.15 622.95 1105.7 622.5 1105.9 622.2 1106.25 L621.65 1106.95 Q621.1 1108 621.5 1109.6 L621.6 1110.05 621.95 1111.15 Q622.75 1113.05 624.5 1114.8 L624.65 1114.9"/>
+ <path stroke="none" fill="#B19A89" d="M624.65 1114.9 L624.5 1114.8 Q622.75 1113.05 621.95 1111.15 L621.6 1110.05 621.5 1109.6 Q621.1 1108 621.65 1106.95 L622.2 1106.25 Q622.5 1105.9 622.95 1105.7 624.1 1105.15 625.95 1105.7 L626.1 1105.7 Q628.5 1106.45 630.7 1108.6 L630.8 1108.75 631.7 1110.05 632 1111.75 Q632 1113.55 630.7 1114.8 629.45 1116.1 627.65 1116.1 625.9 1116.1 624.65 1114.9 M653.5 1106.25 L654 1106.95 Q654.55 1108 654.2 1109.6 L654.1 1110.05 653.7 1111.15 Q652.9 1113.05 651.15 1114.8 L651.05 1114.9 Q649.75 1116.1 648.05 1116.1 646.2 1116.1 644.95 1114.8 643.65 1113.55 643.65 1111.75 643.65 1110.8 644 1110.05 644.3 1109.3 644.85 1108.75 L645 1108.6 Q647.1 1106.5 649.5 1105.75 L649.7 1105.7 Q651.6 1105.15 652.75 1105.7 L653.5 1106.25"/>
+ <path stroke="none" fill="#F0EDE7" d="M592.05 1111.1 L591.05 1106.45 Q590.95 1106.1 591.1 1105.8 591.25 1105.4 591.55 1105.25 L592.25 1105.2 606 1107.7 Q606.4 1107.75 606.7 1108.05 L607.15 1108.65 607.25 1109.45 606.3 1113.7 592.05 1111.1 M669.4 1113.7 Q668.85 1111.7 668.45 1109.45 L668.55 1108.65 669 1108.05 Q669.3 1107.75 669.7 1107.7 L683.45 1105.2 684.15 1105.25 684.6 1105.8 684.65 1106.45 683.65 1111.1 669.4 1113.7"/>
+ <path stroke="none" fill="#FFFCF5" d="M669.4 1113.7 L683.65 1111.1 Q681.65 1118.35 677.6 1124.5 L677.05 1125.05 676.35 1125.25 675.7 1125 Q671.5 1121.8 669.4 1113.7 M606.3 1113.7 Q604.2 1121.8 600 1125 L599.35 1125.25 598.65 1125.05 598.1 1124.5 Q594.05 1118.35 592.05 1111.1 L606.3 1113.7"/>
+ <path stroke="none" fill="#FFFFFF" d="M604.2 1042 Q604.2 1045.15 606.45 1047.3 608.6 1049.6 611.8 1049.6 614.95 1049.6 617.2 1047.3 L617.3 1047.25 Q618.25 1046.25 618.8 1045.1 619.45 1043.7 619.45 1042 619.45 1040.25 618.8 1038.8 618.25 1037.55 617.2 1036.55 L616.85 1036.25 Q614.7 1034.4 611.8 1034.4 608.6 1034.4 606.45 1036.55 604.2 1038.7 604.2 1042 M598.25 1041.75 L598.25 1041.7 Q598.25 1039.1 599.25 1036.9 600.1 1034.85 601.85 1033.15 605.45 1029.65 610.45 1029.65 L611.15 1029.7 Q614.25 1029.8 616.85 1031.4 L616.9 1031.45 618.8 1032.85 619.15 1033.15 Q622.65 1036.7 622.65 1041.75 622.65 1046.8 619.15 1050.25 L618.8 1050.6 617.65 1051.55 Q614.45 1053.9 610.45 1053.9 605.45 1053.9 601.85 1050.25 598.25 1046.8 598.25 1041.75 M671.6 1042 Q671.6 1038.7 669.35 1036.55 667.1 1034.4 663.95 1034.4 661.1 1034.4 658.85 1036.25 L658.5 1036.55 Q656.25 1038.7 656.25 1042 656.25 1045.1 658.45 1047.25 L658.5 1047.3 Q660.85 1049.6 663.95 1049.6 667.1 1049.6 669.35 1047.3 671.6 1045.15 671.6 1042 M677.45 1041.75 Q677.45 1046.8 673.95 1050.25 670.35 1053.9 665.25 1053.9 661.15 1053.9 658.05 1051.5 L656.7 1050.25 Q653.1 1046.8 653.1 1041.75 653.1 1036.7 656.7 1033.15 657.7 1032.15 658.8 1031.5 L658.95 1031.4 Q661.45 1029.8 664.6 1029.7 L665.25 1029.65 Q670.35 1029.65 673.95 1033.15 675.65 1034.9 676.55 1037 677.45 1039.15 677.45 1041.7 L677.45 1041.75"/>
+ <path stroke="none" fill="#2ECC71" d="M677.45 1041.75 L677.45 1041.7 Q677.45 1039.15 676.55 1037 675.65 1034.9 673.95 1033.15 670.35 1029.65 665.25 1029.65 L664.6 1029.7 Q661.45 1029.8 658.95 1031.4 L658.8 1031.5 Q657.7 1032.15 656.7 1033.15 653.1 1036.7 653.1 1041.75 653.1 1046.8 656.7 1050.25 L658.05 1051.5 Q661.15 1053.9 665.25 1053.9 670.35 1053.9 673.95 1050.25 677.45 1046.8 677.45 1041.75 M598.25 1041.75 Q598.25 1046.8 601.85 1050.25 605.45 1053.9 610.45 1053.9 614.45 1053.9 617.65 1051.55 L618.8 1050.6 619.15 1050.25 Q622.65 1046.8 622.65 1041.75 622.65 1036.7 619.15 1033.15 L618.8 1032.85 616.9 1031.45 616.85 1031.4 Q614.25 1029.8 611.15 1029.7 L610.45 1029.65 Q605.45 1029.65 601.85 1033.15 600.1 1034.85 599.25 1036.9 598.25 1039.1 598.25 1041.7 L598.25 1041.75 M622.75 1029.65 L622.95 1029.95 Q627.65 1034.85 627.65 1041.75 627.6 1048.7 622.95 1053.5 L622.7 1053.8 622.35 1054.15 622.1 1054.35 Q620.3 1055.95 618.35 1057 L619.65 1064.05 618.35 1065.3 Q617.7 1066.1 617.6 1067.2 L617.6 1067.6 617.6 1067.95 Q617.7 1068.65 618.05 1069.25 618.6 1070.1 619.4 1070.25 620.25 1070.4 620.9 1069.6 L621 1069.5 623 1075.7 Q624.3 1079.2 625.7 1081.95 624.5 1082.75 623.8 1083.7 L623.85 1083.6 Q622.9 1084.6 622.8 1086.1 L622.8 1086.2 622.8 1086.45 622.8 1086.65 622.8 1086.9 Q622.9 1087.75 623.4 1088.55 L623.45 1088.6 Q624.3 1089.95 625.55 1090.1 L625.6 1090.15 Q627.15 1090.5 628.45 1089.1 L628.55 1088.95 629.2 1088.4 629.55 1088.25 629.7 1088.2 Q633.45 1092.5 637.85 1092.5 642.25 1092.5 646.05 1088.15 L646.2 1088.2 646.6 1088.4 647.25 1089 647.3 1089.05 Q648.45 1090.5 650.1 1090.15 L650.15 1090.1 Q651.4 1089.95 652.3 1088.6 L652.3 1088.55 652.9 1087 652.9 1086.9 652.95 1086.45 652.9 1085.95 Q652.75 1084.6 652 1083.7 L651.95 1083.65 Q651.2 1082.75 650.05 1081.95 L652.7 1075.7 654.75 1069.4 654.9 1069.6 Q655.5 1070.4 656.35 1070.25 657.15 1070.1 657.7 1069.25 L658.15 1067.95 658.2 1067.65 658.15 1067.2 Q658.05 1066.1 657.45 1065.3 L656.1 1064 657.35 1057 Q655.15 1055.8 653.25 1053.9 L653.1 1053.75 Q648.1 1048.85 648.1 1041.75 648.1 1034.65 653.1 1029.7 L653.2 1029.6 Q654.95 1027.85 656.95 1026.75 660.65 1024.65 665.25 1024.65 672.4 1024.65 677.45 1029.6 L677.7 1029.85 Q682.45 1034.8 682.45 1041.75 L682.45 1042.15 682 1045.75 683.05 1046.75 Q688.85 1052.55 692.85 1059.05 701.35 1072.85 701.85 1090 701.7 1095.85 700.6 1101.3 L695.35 1103.45 Q680.65 1109 662.15 1111.15 661.65 1106.7 658.3 1103.35 654.4 1099.45 648.9 1099.45 643.35 1099.45 639.4 1103.35 L637.85 1105.2 636.25 1103.35 Q632.35 1099.45 626.85 1099.45 621.3 1099.45 617.35 1103.35 614.1 1106.7 613.6 1111.15 595.1 1109 580.35 1103.45 L575.15 1101.3 Q574.05 1095.85 573.9 1090 574.35 1072.85 582.85 1059.05 586.8 1052.55 592.6 1046.75 L593.7 1045.7 Q593.3 1044 593.25 1042.1 L593.25 1041.75 Q593.25 1034.75 598.15 1029.8 L598.35 1029.6 Q603.4 1024.65 610.45 1024.65 615 1024.65 618.8 1026.75 620.55 1027.7 622.15 1029.1 L622.05 1029.05 622.7 1029.6 622.75 1029.65"/>
+ <path stroke="none" fill="#5B5B5B" d="M604.2 1042 Q604.2 1038.7 606.45 1036.55 608.6 1034.4 611.8 1034.4 614.7 1034.4 616.85 1036.25 L617.2 1036.55 Q618.25 1037.55 618.8 1038.8 619.45 1040.25 619.45 1042 619.45 1043.7 618.8 1045.1 618.25 1046.25 617.3 1047.25 L617.2 1047.3 Q614.95 1049.6 611.8 1049.6 608.6 1049.6 606.45 1047.3 604.2 1045.15 604.2 1042 M671.6 1042 Q671.6 1045.15 669.35 1047.3 667.1 1049.6 663.95 1049.6 660.85 1049.6 658.5 1047.3 L658.45 1047.25 Q656.25 1045.1 656.25 1042 656.25 1038.7 658.5 1036.55 L658.85 1036.25 Q661.1 1034.4 663.95 1034.4 667.1 1034.4 669.35 1036.55 671.6 1038.7 671.6 1042"/>
+ <path stroke="none" fill="#31DE7A" d="M653.1 1029.7 L645.85 1028.45 637.85 1028 629.85 1028.45 622.75 1029.65 622.7 1029.6 622.05 1029.05 622.15 1029.1 Q620.55 1027.7 618.8 1026.75 627.75 1024 637.85 1024 647.9 1024 656.95 1026.75 654.95 1027.85 653.2 1029.6 L653.1 1029.7 M593.25 1042.1 Q593.3 1044 593.7 1045.7 L592.6 1046.75 Q586.8 1052.55 582.85 1059.05 574.35 1072.85 573.9 1090 L573.85 1088 Q573.85 1072.75 580.1 1060.05 584.65 1050.7 592.6 1042.75 L593.25 1042.1 M701.85 1090 Q701.35 1072.85 692.85 1059.05 688.85 1052.55 683.05 1046.75 L682 1045.75 682.45 1042.15 683.05 1042.75 Q691 1050.7 695.65 1060.05 701.85 1072.75 701.85 1088 L701.85 1090"/>
+ <path stroke="none" fill="#30D776" d="M619.65 1064.05 L618.35 1057 Q620.3 1055.95 622.1 1054.35 L622.35 1054.15 622.7 1053.8 622.95 1053.5 Q627.6 1048.7 627.65 1041.75 627.65 1034.85 622.95 1029.95 L622.75 1029.65 629.85 1028.45 637.85 1028 645.85 1028.45 653.1 1029.7 Q648.1 1034.65 648.1 1041.75 648.1 1048.85 653.1 1053.75 L653.25 1053.9 Q655.15 1055.8 657.35 1057 L656.1 1064 652.95 1061.85 Q646.65 1058.45 637.9 1058.45 629.05 1058.45 622.9 1061.85 621 1062.9 619.65 1064.05 M621 1069.5 Q621.7 1068.65 622.8 1067.95 L624.35 1067.25 624.35 1067.3 Q629.95 1065.1 637.9 1065.1 645.85 1065.1 651.5 1067.3 L651.45 1067.25 653 1067.95 654.75 1069.4 652.7 1075.7 650.05 1081.95 648.5 1081 Q644.05 1078.55 637.9 1078.55 631.65 1078.55 627.3 1081 L627.25 1081 Q626.35 1081.45 625.7 1081.95 624.3 1079.2 623 1075.7 L621 1069.5 M629.7 1088.2 L629.9 1088.15 Q633.2 1086.85 637.9 1086.85 642.6 1086.85 645.95 1088.15 L646.05 1088.15 Q642.25 1092.5 637.85 1092.5 633.45 1092.5 629.7 1088.2"/>
+ <path stroke="none" fill="#28B463" d="M629.7 1088.2 L629.55 1088.25 629.2 1088.4 628.55 1088.95 628.45 1089.1 Q627.15 1090.5 625.6 1090.15 L625.55 1090.1 Q624.3 1089.95 623.45 1088.6 L623.4 1088.55 Q622.9 1087.75 622.8 1086.9 L622.8 1086.65 622.8 1086.45 622.8 1086.2 622.8 1086.1 Q622.9 1084.6 623.85 1083.6 L623.8 1083.7 Q624.5 1082.75 625.7 1081.95 626.35 1081.45 627.25 1081 L627.3 1081 Q631.65 1078.55 637.9 1078.55 644.05 1078.55 648.5 1081 L650.05 1081.95 Q651.2 1082.75 651.95 1083.65 L652 1083.7 Q652.75 1084.6 652.9 1085.95 L652.95 1086.45 652.9 1086.9 652.9 1087 652.3 1088.55 652.3 1088.6 Q651.4 1089.95 650.15 1090.1 L650.1 1090.15 Q648.45 1090.5 647.3 1089.05 L647.25 1089 646.6 1088.4 646.2 1088.2 646.05 1088.15 645.95 1088.15 Q642.6 1086.85 637.9 1086.85 633.2 1086.85 629.9 1088.15 L629.7 1088.2 M619.65 1064.05 Q621 1062.9 622.9 1061.85 629.05 1058.45 637.9 1058.45 646.65 1058.45 652.95 1061.85 L656.1 1064 657.45 1065.3 Q658.05 1066.1 658.15 1067.2 L658.2 1067.65 658.15 1067.95 657.7 1069.25 Q657.15 1070.1 656.35 1070.25 655.5 1070.4 654.9 1069.6 L654.75 1069.4 653 1067.95 651.45 1067.25 651.5 1067.3 Q645.85 1065.1 637.9 1065.1 629.95 1065.1 624.35 1067.3 L624.35 1067.25 622.8 1067.95 Q621.7 1068.65 621 1069.5 L620.9 1069.6 Q620.25 1070.4 619.4 1070.25 618.6 1070.1 618.05 1069.25 617.7 1068.65 617.6 1067.95 L617.6 1067.6 617.6 1067.2 Q617.7 1066.1 618.35 1065.3 L619.65 1064.05"/>
+ <path stroke="none" fill="#31DE7A" d="M836.15 681 Q840.85 669 850.65 659.2 858.75 651.1 868.35 646.5 876.65 642.5 886 641.15 L895.9 640.45 905.8 641.15 Q915.15 642.5 923.45 646.5 933 651.1 941.1 659.2 950.95 669.05 955.65 681 L954.15 681.45 Q949.45 671.55 941.1 663.2 932.8 654.9 923 650.3 910.65 644.45 895.9 644.45 881.15 644.45 868.8 650.25 858.95 654.9 850.65 663.2 842.3 671.55 837.7 681.4 L836.15 681"/>
+ <path stroke="none" fill="#23A35A" d="M907.1 656.9 L907.45 657.4 Q907.85 658.15 907.6 659.3 L907.5 659.6 907.25 660.4 Q906.65 661.75 905.4 663 L905.35 663.1 Q904.45 663.95 903.2 663.95 901.9 663.95 901 663 900.1 662.1 900.1 660.85 900.1 660.15 900.35 659.6 L900.95 658.7 901.05 658.6 Q902.55 657.1 904.25 656.55 L904.4 656.55 Q905.75 656.15 906.55 656.55 L907.1 656.9 M886.55 663.1 L886.45 663 Q885.2 661.75 884.65 660.4 884.45 660 884.4 659.6 L884.3 659.3 Q884 658.15 884.4 657.4 L884.8 656.9 Q885 656.65 885.35 656.55 886.15 656.15 887.5 656.55 L887.6 656.55 Q889.3 657.05 890.85 658.6 L890.95 658.7 891.55 659.6 891.8 660.85 Q891.8 662.1 890.85 663 889.95 663.95 888.7 663.95 887.45 663.95 886.55 663.1"/>
+ <path stroke="none" fill="#2ECC71" d="M837.7 681.4 Q842.3 671.55 850.65 663.2 858.95 654.9 868.8 650.25 881.15 644.45 895.9 644.45 910.65 644.45 923 650.3 932.8 654.9 941.1 663.2 949.45 671.55 954.15 681.45 929.7 688 895.95 688 862.2 688 837.7 681.4 M907.1 656.9 L906.55 656.55 Q905.75 656.15 904.4 656.55 L904.25 656.55 Q902.55 657.1 901.05 658.6 L900.95 658.7 900.35 659.6 Q900.1 660.15 900.1 660.85 900.1 662.1 901 663 901.9 663.95 903.2 663.95 904.45 663.95 905.35 663.1 L905.4 663 Q906.65 661.75 907.25 660.4 L907.5 659.6 907.6 659.3 Q907.85 658.15 907.45 657.4 L907.1 656.9 M886.55 663.1 Q887.45 663.95 888.7 663.95 889.95 663.95 890.85 663 891.8 662.1 891.8 660.85 L891.55 659.6 890.95 658.7 890.85 658.6 Q889.3 657.05 887.6 656.55 L887.5 656.55 Q886.15 656.15 885.35 656.55 885 656.65 884.8 656.9 L884.4 657.4 Q884 658.15 884.3 659.3 L884.4 659.6 Q884.45 660 884.65 660.4 885.2 661.75 886.45 663 L886.55 663.1"/>
+ <path stroke="none" fill="#FFFFFF" d="M955.65 681 L956.95 684.65 955.65 685 954.15 685.45 Q929.7 692 895.95 692 862.2 692 837.7 685.4 L836.15 685 834.85 684.6 836.15 681 837.7 681.4 Q862.2 688 895.95 688 929.7 688 954.15 681.45 L955.65 681"/>
+ <path stroke="none" fill="#E5E5E5" d="M956.95 684.65 Q959.9 693.9 959.9 704.45 L959.9 706.45 Q959.3 728.55 945.25 745.15 L941.1 749.65 Q937.2 753.6 932.95 756.7 916.8 768.45 895.9 768.45 873.5 768.45 856.65 755 L850.65 749.65 846.55 745.15 Q832.5 728.55 831.95 706.45 L831.9 704.45 Q831.9 693.9 834.85 684.6 L836.15 685 837.7 685.4 Q862.2 692 895.95 692 929.7 692 954.15 685.45 L955.65 685 956.95 684.65 M923 746.25 Q922.4 743.95 920.3 742.8 918.3 741.65 916.05 742.25 913.75 742.85 912.5 744.9 911.4 746.9 912 749.2 912.6 751.45 914.6 752.65 916.7 753.85 919 753.25 921.25 752.65 922.4 750.55 923.6 748.5 923 746.25 M921.85 731.45 Q921.45 730.05 920.2 729.3 918.85 728.55 917.45 728.95 916.05 729.3 915.35 730.6 914.6 731.9 915 733.3 915.35 734.7 916.65 735.45 917.9 736.15 919.3 735.8 920.7 735.4 921.5 734.15 922.2 732.85 921.85 731.45 M935.65 740.15 Q935.15 738.25 933.45 737.25 931.75 736.25 929.9 736.75 928 737.25 927 739 926 740.7 926.5 742.6 927.05 744.45 928.75 745.45 930.45 746.4 932.35 745.9 934.2 745.4 935.2 743.7 936.2 742 935.65 740.15"/>
+ <path stroke="none" fill="#D7D7D7" d="M935.65 740.15 Q936.2 742 935.2 743.7 934.2 745.4 932.35 745.9 930.45 746.4 928.75 745.45 927.05 744.45 926.5 742.6 926 740.7 927 739 928 737.25 929.9 736.75 931.75 736.25 933.45 737.25 935.15 738.25 935.65 740.15 M921.85 731.45 Q922.2 732.85 921.5 734.15 920.7 735.4 919.3 735.8 917.9 736.15 916.65 735.45 915.35 734.7 915 733.3 914.6 731.9 915.35 730.6 916.05 729.3 917.45 728.95 918.85 728.55 920.2 729.3 921.45 730.05 921.85 731.45 M923 746.25 Q923.6 748.5 922.4 750.55 921.25 752.65 919 753.25 916.7 753.85 914.6 752.65 912.6 751.45 912 749.2 911.4 746.9 912.5 744.9 913.75 742.85 916.05 742.25 918.3 741.65 920.3 742.8 922.4 743.95 923 746.25"/>
+ <path stroke="none" fill="#2ECC71" d="M903.25 647.35 Q903.85 640.3 909.1 635.1 L909.15 635.05 Q910.55 633.7 912.05 632.7 L912.7 632.25 Q916.75 629.65 921.85 629.35 L923.3 629.25 Q931.65 629.25 937.6 635.05 L937.75 635.2 Q940.5 638 941.95 641.45 L942 641.5 Q943.1 644.25 943.4 647.4 942.75 654.45 937.7 659.5 L937.65 659.55 Q931.7 665.5 923.3 665.5 916.4 665.45 911.2 661.45 L910.9 661.2 909.25 659.65 909.1 659.5 Q903.85 654.45 903.25 647.35 M935.5 645.35 L935.5 645.3 Q935.5 642.75 934.6 640.6 933.7 638.5 932 636.75 928.4 633.25 923.3 633.25 L922.65 633.3 Q919.5 633.4 917 635 L916.85 635.1 Q915.75 635.75 914.75 636.75 911.15 640.3 911.15 645.35 911.15 650.4 914.75 653.85 L916.1 655.1 Q919.2 657.5 923.3 657.5 928.4 657.5 932 653.85 935.5 650.4 935.5 645.35 M888.6 647.3 Q887.95 654.5 882.85 659.55 L882.85 659.5 882.5 659.85 882.25 660.15 880.5 661.55 880.45 661.6 Q875.1 665.5 868.5 665.5 860.2 665.55 854.2 659.5 L854.4 659.65 Q849.05 654.6 848.4 647.45 848.7 644.1 850.05 641.2 L849.9 641.45 Q851.35 637.9 854.35 635 L854.35 635.05 Q860.25 629.25 868.5 629.25 L869.85 629.35 Q874.85 629.55 879.1 632.2 L879.6 632.55 Q880.9 633.35 882.1 634.4 L882.85 635.1 882.9 635.15 Q887.95 640.25 888.6 647.3 M856.3 645.35 Q856.3 650.4 859.9 653.85 863.5 657.5 868.5 657.5 872.5 657.5 875.7 655.15 L876.85 654.2 877.2 653.85 Q880.7 650.4 880.7 645.35 880.7 640.3 877.2 636.75 L876.85 636.45 874.95 635.05 874.9 635 Q872.3 633.4 869.2 633.3 L868.5 633.25 Q863.5 633.25 859.9 636.75 858.15 638.45 857.3 640.5 856.3 642.7 856.3 645.3 L856.3 645.35"/>
+ <path stroke="none" fill="#D23007" d="M856.3 645.35 L856.3 645.3 Q856.3 642.7 857.3 640.5 858.15 638.45 859.9 636.75 863.5 633.25 868.5 633.25 L869.2 633.3 Q872.3 633.4 874.9 635 L874.95 635.05 876.85 636.45 877.2 636.75 Q880.7 640.3 880.7 645.35 880.7 650.4 877.2 653.85 L876.85 654.2 875.7 655.15 Q872.5 657.5 868.5 657.5 863.5 657.5 859.9 653.85 856.3 650.4 856.3 645.35 M935.5 645.35 Q935.5 650.4 932 653.85 928.4 657.5 923.3 657.5 919.2 657.5 916.1 655.1 L914.75 653.85 Q911.15 650.4 911.15 645.35 911.15 640.3 914.75 636.75 915.75 635.75 916.85 635.1 L917 635 Q919.5 633.4 922.65 633.3 L923.3 633.25 Q928.4 633.25 932 636.75 933.7 638.5 934.6 640.6 935.5 642.75 935.5 645.3 L935.5 645.35 M929.65 645.6 Q929.65 642.3 927.4 640.15 925.15 638 922 638 919.15 638 916.9 639.85 L916.55 640.15 Q914.3 642.3 914.3 645.6 914.3 648.7 916.5 650.85 L916.55 650.9 Q918.9 653.2 922 653.2 925.15 653.2 927.4 650.9 929.65 648.75 929.65 645.6 M862.25 645.6 Q862.25 648.75 864.5 650.9 866.65 653.2 869.85 653.2 873 653.2 875.25 650.9 L875.35 650.85 Q876.3 649.85 876.85 648.7 877.5 647.3 877.5 645.6 877.5 643.85 876.85 642.4 876.3 641.15 875.25 640.15 L874.9 639.85 Q872.75 638 869.85 638 866.65 638 864.5 640.15 862.25 642.3 862.25 645.6"/>
+ <path stroke="none" fill="#31DE7A" d="M943.4 647.4 Q943.1 644.25 942 641.5 L941.95 641.45 Q940.5 638 937.75 635.2 L937.6 635.05 Q931.65 629.25 923.3 629.25 L921.85 629.35 Q916.75 629.65 912.7 632.25 L912.05 632.7 Q910.55 633.7 909.15 635.05 L909.1 635.1 Q903.85 640.3 903.25 647.35 L903.15 645.35 Q903.15 637 909.1 631.1 L909.15 631.05 Q910.55 629.7 912.05 628.7 L912.7 628.25 Q916.75 625.65 921.85 625.35 L923.3 625.25 Q931.65 625.25 937.6 631.05 L937.75 631.2 Q940.5 634 941.95 637.45 L942 637.5 Q943.45 641.05 943.5 645.3 L943.5 645.35 943.4 647.4 M848.4 647.45 L848.3 645.35 848.3 645.3 Q848.35 640.9 850.05 637.2 L849.9 637.45 Q851.35 633.9 854.35 631 L854.35 631.05 Q860.25 625.25 868.5 625.25 L869.85 625.35 Q874.85 625.55 879.1 628.2 L879.6 628.55 Q880.9 629.35 882.1 630.4 L882.85 631.1 882.9 631.15 Q888.7 637 888.7 645.35 L888.6 647.3 Q887.95 640.25 882.9 635.15 L882.85 635.1 882.1 634.4 Q880.9 633.35 879.6 632.55 L879.1 632.2 Q874.85 629.55 869.85 629.35 L868.5 629.25 Q860.25 629.25 854.35 635.05 L854.35 635 Q851.35 637.9 849.9 641.45 L850.05 641.2 Q848.7 644.1 848.4 647.45"/>
+ <path stroke="none" fill="#3F3F3F" d="M929.65 645.6 Q929.65 648.75 927.4 650.9 925.15 653.2 922 653.2 918.9 653.2 916.55 650.9 L916.5 650.85 Q914.3 648.7 914.3 645.6 914.3 642.3 916.55 640.15 L916.9 639.85 Q919.15 638 922 638 925.15 638 927.4 640.15 929.65 642.3 929.65 645.6 M862.25 645.6 Q862.25 642.3 864.5 640.15 866.65 638 869.85 638 872.75 638 874.9 639.85 L875.25 640.15 Q876.3 641.15 876.85 642.4 877.5 643.85 877.5 645.6 877.5 647.3 876.85 648.7 876.3 649.85 875.35 650.85 L875.25 650.9 Q873 653.2 869.85 653.2 866.65 653.2 864.5 650.9 862.25 648.75 862.25 645.6"/>
+ <path stroke="none" fill="#2ECC71" d="M958.95 681.45 Q957.05 686.2 952.35 688.9 946.85 692.1 940.65 690.45 934.45 688.8 931.25 683.25 928.6 678.6 929.35 673.5 931.25 668.7 935.85 666 941.45 662.8 947.65 664.45 953.85 666.1 956.95 671.65 959.7 676.3 958.95 681.45 M862.5 673.5 Q863.15 678.6 860.5 683.25 857.35 688.8 851.15 690.45 845 692.1 839.4 688.9 834.7 686.25 832.9 681.45 832.05 676.35 834.8 671.65 838 666.1 844.15 664.45 850.35 662.8 855.9 666 860.5 668.7 862.5 673.5"/>
+ <path stroke="none" fill="#31DE7A" d="M862.5 673.5 Q860.5 668.7 855.9 666 850.35 662.8 844.15 664.45 838 666.1 834.8 671.65 832.05 676.35 832.9 681.45 L832.25 679.55 Q830.6 673.35 833.75 667.8 837 662.25 843.15 660.6 849.35 658.95 854.85 662.15 860.45 665.35 862.1 671.55 L862.5 673.5 M929.35 673.5 Q929.45 672.5 929.7 671.55 931.35 665.35 936.9 662.15 942.45 658.95 948.65 660.6 954.85 662.25 958 667.8 961.2 673.35 959.55 679.55 L958.95 681.45 Q959.7 676.3 956.95 671.65 953.85 666.1 947.65 664.45 941.45 662.8 935.85 666 931.25 668.7 929.35 673.5"/>
+ <path stroke="none" fill="#958F8F" d="M1093.8 1031.5 Q1094.2 1016.35 1099.9 1001.15 1100.25 1000.25 1101.1 999.8 L1102.9 999.6 Q1103.85 999.85 1104.4 1000.7 L1124.35 1031.3 1123.2 1033.15 1111.05 1019.7 Q1110.65 1019.3 1110 1019.45 1109.35 1019.55 1108.75 1020.1 1108.15 1020.65 1107.95 1021.4 1100.75 1043.45 1105.7 1060.3 L1104.4 1062.35 Q1103.9 1063.15 1102.95 1063.45 L1101.1 1063.25 Q1100.25 1062.8 1099.9 1061.9 1094.2 1046.7 1093.8 1031.5 M1174.65 1031.3 L1194.6 1000.7 Q1195.15 999.85 1196.1 999.6 L1197.9 999.8 Q1198.75 1000.25 1199.1 1001.15 1204.8 1016.35 1205.2 1031.5 1204.8 1046.7 1199.1 1061.9 1198.75 1062.8 1197.9 1063.25 L1196.05 1063.45 Q1195.1 1063.15 1194.6 1062.35 L1193.3 1060.3 Q1198.25 1043.45 1191.05 1021.4 1190.85 1020.65 1190.25 1020.1 1189.65 1019.55 1189 1019.45 1188.35 1019.3 1187.95 1019.7 L1175.8 1033.15 1174.65 1031.3"/>
+ <path stroke="none" fill="#B1A9A9" d="M1174.65 1031.3 L1174.2 1030.6 Q1173.8 1030 1173.8 1029.25 1173.8 1028.5 1174.2 1027.9 L1194.6 996.7 Q1195.15 995.85 1196.1 995.6 L1197.9 995.8 Q1198.75 996.25 1199.1 997.15 1205.6 1014.3 1205.2 1031.5 1204.8 1016.35 1199.1 1001.15 1198.75 1000.25 1197.9 999.8 L1196.1 999.6 Q1195.15 999.85 1194.6 1000.7 L1174.65 1031.3 M1124.35 1031.3 L1104.4 1000.7 Q1103.85 999.85 1102.9 999.6 L1101.1 999.8 Q1100.25 1000.25 1099.9 1001.15 1094.2 1016.35 1093.8 1031.5 1093.4 1014.3 1099.9 997.15 1100.25 996.25 1101.1 995.8 L1102.9 995.6 Q1103.85 995.85 1104.4 996.7 L1124.8 1027.9 Q1125.2 1028.5 1125.2 1029.25 1125.2 1030 1124.8 1030.6 L1124.35 1031.3"/>
+ <path stroke="none" fill="#D2D0D0" d="M1105.7 1060.3 Q1100.75 1043.45 1107.95 1021.4 1108.15 1020.65 1108.75 1020.1 1109.35 1019.55 1110 1019.45 1110.65 1019.3 1111.05 1019.7 L1123.2 1033.15 1105.7 1060.3 M1175.8 1033.15 L1187.95 1019.7 Q1188.35 1019.3 1189 1019.45 1189.65 1019.55 1190.25 1020.1 1190.85 1020.65 1191.05 1021.4 1198.25 1043.45 1193.3 1060.3 L1175.8 1033.15"/>
+ <path stroke="none" fill="#B1A9A9" d="M1085.55 1090 L1085.5 1088 Q1085.5 1061.45 1104.25 1042.75 1108.5 1038.5 1113.1 1035.25 L1116.65 1032.95 Q1131.25 1024 1149.5 1024 1167.8 1024 1182.4 1032.9 L1185.9 1035.2 Q1190.55 1038.5 1194.8 1042.75 1213.5 1061.45 1213.5 1088 L1213.5 1090 Q1212.8 1064.75 1194.8 1046.75 1190.4 1042.35 1185.6 1039 1182.8 1037.05 1179.85 1035.45 L1176.7 1037.95 Q1165.45 1046 1149.5 1046 1133.55 1046 1122.25 1037.95 L1119.15 1035.5 Q1116.2 1037.1 1113.4 1039.05 1108.6 1042.4 1104.25 1046.75 1086.2 1064.75 1085.55 1090"/>
+ <path stroke="none" fill="#9F9898" d="M1085.55 1090 Q1086.2 1064.75 1104.25 1046.75 1108.6 1042.4 1113.4 1039.05 1116.2 1037.1 1119.15 1035.5 L1122.25 1037.95 Q1133.55 1046 1149.5 1046 1165.45 1046 1176.7 1037.95 L1179.85 1035.45 Q1182.8 1037.05 1185.6 1039 1190.4 1042.35 1194.8 1046.75 1212.8 1064.75 1213.5 1090 1213.05 1105.2 1206.35 1117.85 1204.4 1121.55 1201.9 1125 L1201.85 1125 1201.45 1125.6 Q1199.8 1113 1186.15 1108.4 1199.15 1105.35 1205 1092.55 1210.85 1079.65 1200.9 1063.8 1190.9 1047.95 1175.3 1055.85 1159.65 1063.7 1158.65 1091.9 L1140.35 1091.9 Q1139.35 1063.7 1123.7 1055.85 1108.1 1047.95 1098.1 1063.8 1088.15 1079.65 1094 1092.55 1099.85 1105.35 1112.85 1108.4 1099.2 1113 1097.6 1125.6 1094.4 1121.35 1092.1 1116.8 L1086.55 1100.1 1086.55 1099.9 1086.35 1098.8 1086.3 1098.55 1086.25 1098.05 1086.15 1097.5 1086 1096.25 1086 1096.05 1085.9 1095.45 1085.9 1095.2 1085.85 1095 1085.85 1094.75 1085.8 1094.45 1085.75 1093.8 1085.75 1093.55 1085.7 1093.25 1085.55 1090"/>
+ <path stroke="none" fill="#D2D0D0" d="M1201.45 1125.6 Q1198.45 1129.55 1194.75 1133.25 L1190.1 1137.55 1185.9 1140.75 Q1170 1152 1149.5 1152 1128.95 1152 1113.1 1140.8 1111 1139.3 1109 1137.65 L1104.2 1133.25 Q1100.5 1129.55 1097.6 1125.6 1099.2 1113 1112.85 1108.4 1099.85 1105.35 1094 1092.55 1088.15 1079.65 1098.1 1063.8 1108.1 1047.95 1123.7 1055.85 1139.35 1063.7 1140.35 1091.9 L1158.65 1091.9 Q1159.65 1063.7 1175.3 1055.85 1190.9 1047.95 1200.9 1063.8 1210.85 1079.65 1205 1092.55 1199.15 1105.35 1186.15 1108.4 1199.8 1113 1201.45 1125.6"/>
+ <path stroke="none" fill="#383838" d="M1153.95 1106.95 L1154.8 1107.95 1156.85 1109.45 Q1158.25 1110.1 1159.9 1110.1 1162.9 1110.1 1165.05 1107.95 L1166.3 1106.3 1166.8 1105.85 1167.5 1105.9 1172.2 1108.35 1172.65 1108.85 1172.6 1109.5 1171.1 1111.8 1170.05 1112.95 Q1165.8 1117.15 1159.9 1117.15 1154 1117.15 1149.8 1112.95 L1149.5 1112.65 1149.2 1112.95 Q1144.95 1117.15 1139.05 1117.15 1133.1 1117.15 1128.95 1112.95 L1127.9 1111.8 1126.4 1109.6 Q1126.2 1109.25 1126.35 1108.95 1126.4 1108.6 1126.75 1108.4 L1131.35 1105.85 1132 1105.75 1132.55 1106.2 1133.9 1107.95 Q1136.05 1110.1 1139.05 1110.1 1140.7 1110.1 1142.15 1109.45 1143.25 1108.9 1144.2 1107.95 L1145.05 1106.95 Q1149.7 1108.7 1153.95 1106.95"/>
+ <path stroke="none" fill="#545454" d="M1136.65 1096.95 L1136.45 1094.6 1136.45 1093.7 Q1136.75 1091.3 1140.25 1089.6 1144.1 1087.75 1149.5 1087.75 1154.9 1087.75 1158.75 1089.6 1162.2 1091.3 1162.55 1093.7 L1162.55 1094.6 1162.35 1096.95 Q1161.65 1095.05 1158.75 1093.6 1154.9 1091.75 1149.5 1091.75 1144.1 1091.75 1140.25 1093.6 1137.35 1095 1136.65 1096.95"/>
+ <path stroke="none" fill="#464646" d="M1136.65 1096.95 Q1137.35 1095 1140.25 1093.6 1144.1 1091.75 1149.5 1091.75 1154.9 1091.75 1158.75 1093.6 1161.65 1095.05 1162.35 1096.95 1161.7 1100.9 1158.75 1103.85 1156.6 1106 1153.95 1106.95 1149.7 1108.7 1145.05 1106.95 1142.4 1106 1140.25 1103.85 1137.3 1100.9 1136.65 1096.95"/>
+ <path stroke="none" fill="#FFFFFF" d="M1191.25 1084 Q1191.15 1081.65 1188.75 1079.95 1186.25 1078.25 1182.6 1078.25 1179.05 1078.25 1176.45 1079.95 1174.05 1081.65 1173.95 1084 L1173.95 1084.3 Q1174.05 1086.65 1176.45 1088.25 1179.05 1090 1182.6 1090 1186.25 1090 1188.75 1088.25 1191.15 1086.65 1191.25 1084.3 L1191.25 1084 M1103 1083.95 Q1103 1078.75 1106.65 1075.1 1110.3 1071.45 1115.5 1071.45 1120.6 1071.45 1124.3 1075.1 1127.95 1078.75 1127.95 1083.95 1127.95 1089.1 1124.3 1092.7 1120.6 1096.4 1115.5 1096.4 1110.3 1096.4 1106.65 1092.7 1103 1089.1 1103 1083.95 M1107.7 1084 L1107.7 1084.3 Q1107.8 1086.65 1110.25 1088.25 1112.75 1090 1116.4 1090 1119.95 1090 1122.5 1088.25 1124.95 1086.65 1125.05 1084.3 L1125.05 1084 Q1124.95 1081.65 1122.5 1079.95 1119.95 1078.25 1116.4 1078.25 1112.75 1078.25 1110.25 1079.95 1107.8 1081.65 1107.7 1084 M1196 1083.95 Q1196 1089.1 1192.35 1092.7 1188.7 1096.4 1183.5 1096.4 1178.4 1096.4 1174.7 1092.7 1171.05 1089.1 1171.05 1083.95 1171.05 1078.75 1174.7 1075.1 1178.4 1071.45 1183.5 1071.45 1188.7 1071.45 1192.35 1075.1 1196 1078.75 1196 1083.95"/>
+ <path stroke="none" fill="#5B5B5B" d="M1107.7 1084 Q1107.8 1081.65 1110.25 1079.95 1112.75 1078.25 1116.4 1078.25 1119.95 1078.25 1122.5 1079.95 1124.95 1081.65 1125.05 1084 L1125.05 1084.3 Q1124.95 1086.65 1122.5 1088.25 1119.95 1090 1116.4 1090 1112.75 1090 1110.25 1088.25 1107.8 1086.65 1107.7 1084.3 L1107.7 1084 M1191.25 1084 L1191.25 1084.3 Q1191.15 1086.65 1188.75 1088.25 1186.25 1090 1182.6 1090 1179.05 1090 1176.45 1088.25 1174.05 1086.65 1173.95 1084.3 L1173.95 1084 Q1174.05 1081.65 1176.45 1079.95 1179.05 1078.25 1182.6 1078.25 1186.25 1078.25 1188.75 1079.95 1191.15 1081.65 1191.25 1084"/>
+ </g>
+</svg>
\ No newline at end of file
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://d0mymd2qgfo0l"
+path="res://.godot/imported/round.svg-9c422bc6b84b983cab1b0dbcb15ebadc.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/Vector/round.svg"
+dest_files=["res://.godot/imported/round.svg-9c422bc6b84b983cab1b0dbcb15ebadc.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
+svg/scale=1.0
+editor/scale_with_editor_scale=false
+editor/convert_colors_with_editor_theme=false
--- /dev/null
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <defs/>
+ <g>
+ <path stroke="none" fill="#8A1D03" d="M1149.5 60 Q1177.7 60 1197.6 79.9 1217.5 99.8 1217.5 128 L1217.5 130 1217.5 130.1 Q1217.1 144.65 1211.3 157 1211.85 161.05 1211.45 167.05 L1211.45 167.1 Q1210.6 177.2 1201.9 184.15 1196.05 188.75 1192.65 187.1 1189.9 186.7 1188.6 183.75 L1182.8 187.55 Q1167.9 196 1149.5 196 1131.15 196 1116.3 187.5 L1110.45 183.75 Q1109.2 186.55 1106.55 187 1103.15 188.75 1097.25 184.25 L1097.2 184.15 Q1088.5 177.15 1087.7 167.05 L1087.65 167 Q1087.25 161.15 1087.85 157.1 1081.95 144.75 1081.55 130.2 L1081.5 128 Q1081.5 99.8 1101.4 79.9 1121.35 60 1149.5 60"/>
+ <path stroke="none" fill="#F53707" d="M1213.5 130 Q1212.8 104.75 1194.75 86.7 1176.05 68 1149.5 68 1123 68 1104.2 86.7 1086.2 104.75 1085.55 130 L1085.5 128 Q1085.5 101.45 1104.2 82.7 1123 64 1149.5 64 1176.05 64 1194.75 82.7 1213.5 101.45 1213.5 128 L1213.5 130"/>
+ <path stroke="none" fill="#D23007" d="M1213.5 130 Q1213.1 144.35 1207.1 156.4 1202.5 165.45 1194.75 173.2 L1191.35 176.45 Q1186.35 180.85 1180.8 184.05 1179.85 182.2 1178.7 180.5 1179.8 179.95 1180.25 179.15 1181.45 177 1177.6 174.2 1174.05 171.5 1167.8 169.85 L1167.65 169.8 1167.3 169.75 Q1159.4 164.95 1149.5 164.95 1139.6 164.95 1131.7 169.75 L1131.35 169.8 1131.2 169.85 Q1124.95 171.5 1121.4 174.2 1117.55 177 1118.75 179.15 1119.2 179.95 1120.35 180.5 1119.15 182.2 1118.25 184 1112.75 180.9 1107.75 176.5 L1104.2 173.2 Q1096.5 165.5 1092 156.5 1085.9 144.4 1085.55 130 1086.2 104.75 1104.2 86.7 1123 68 1149.5 68 1176.05 68 1194.75 86.7 1212.8 104.75 1213.5 130"/>
+ <path stroke="none" fill="#FFCC00" d="M1118.25 184 Q1119.15 182.2 1120.35 180.5 1119.2 179.95 1118.75 179.15 1117.55 177 1121.4 174.2 1124.95 171.5 1131.2 169.85 L1131.35 169.8 1131.7 169.75 Q1139.6 164.95 1149.5 164.95 1159.4 164.95 1167.3 169.75 L1167.65 169.8 1167.8 169.85 Q1174.05 171.5 1177.6 174.2 1181.45 177 1180.25 179.15 1179.8 179.95 1178.7 180.5 1179.85 182.2 1180.8 184.05 1166.8 192 1149.5 192 1132.25 192 1118.25 184"/>
+ <path stroke="none" fill="#BB2905" d="M1092 156.5 Q1096.5 165.5 1104.2 173.2 L1107.75 176.5 1107.55 178.45 Q1106.95 186.65 1099.7 181.05 1092.4 175.15 1091.65 166.7 1091.2 160.5 1092 156.5 M1191.35 176.45 L1194.75 173.2 Q1202.5 165.45 1207.1 156.4 1207.9 160.4 1207.45 166.75 1206.7 175.2 1199.4 181 1192.15 186.75 1191.55 178.55 L1191.35 176.45"/>
+ <path stroke="none" fill="#D5EEF7" d="M1193.25 121.4 L1193.4 121.95 Q1196.65 134.05 1194.15 143.85 1191.6 153.7 1184.75 155.55 1177.9 157.35 1170.75 150.15 1163.55 142.95 1160.3 130.85 L1160.15 130.3 Q1158.55 123.6 1162 117.7 1165.6 111.45 1172.4 109.65 1179.25 107.8 1185.45 111.4 1191.4 114.85 1193.25 121.4 M1185.55 133.25 Q1185.55 128.85 1182.45 125.8 1179.35 122.75 1175 122.75 1170.75 122.75 1167.55 125.8 1164.55 128.85 1164.55 133.25 1164.55 137.6 1167.55 140.6 1170.75 143.75 1175 143.75 1179.35 143.75 1182.45 140.6 1185.55 137.6 1185.55 133.25 M1138.9 130.35 L1138.7 130.9 Q1135.5 143 1128.4 150.15 1121.25 157.4 1114.35 155.6 1107.55 153.7 1104.95 143.9 1102.35 134.05 1105.55 121.95 L1105.75 121.4 Q1107.65 114.85 1113.6 111.4 1119.8 107.8 1126.65 109.7 1133.55 111.5 1137.05 117.7 1140.55 123.65 1138.9 130.35 M1113.3 133.25 Q1113.3 137.6 1116.35 140.6 1119.45 143.75 1123.8 143.75 1128.1 143.75 1131.25 140.6 1134.3 137.6 1134.3 133.25 1134.3 128.85 1131.25 125.8 1128.1 122.75 1123.8 122.75 1119.45 122.75 1116.35 125.8 1113.3 128.85 1113.3 133.25"/>
+ <path stroke="none" fill="#FFFFFF" d="M1113.3 133.25 Q1113.3 128.85 1116.35 125.8 1119.45 122.75 1123.8 122.75 1128.1 122.75 1131.25 125.8 1134.3 128.85 1134.3 133.25 1134.3 137.6 1131.25 140.6 1128.1 143.75 1123.8 143.75 1119.45 143.75 1116.35 140.6 1113.3 137.6 1113.3 133.25 M1179.8 133.2 Q1179.8 130.4 1177.9 128.55 1175.95 126.6 1173.2 126.6 1170.5 126.6 1168.5 128.55 1166.6 130.4 1166.6 133.2 L1166.6 133.85 Q1166.8 136.1 1168.5 137.75 1170.5 139.65 1173.2 139.65 1175.95 139.65 1177.9 137.75 1179.55 136.1 1179.75 133.85 L1179.8 133.2 M1185.55 133.25 Q1185.55 137.6 1182.45 140.6 1179.35 143.75 1175 143.75 1170.75 143.75 1167.55 140.6 1164.55 137.6 1164.55 133.25 1164.55 128.85 1167.55 125.8 1170.75 122.75 1175 122.75 1179.35 122.75 1182.45 125.8 1185.55 128.85 1185.55 133.25 M1119.05 133.2 L1119.1 133.85 Q1119.25 136.1 1120.9 137.75 1122.85 139.65 1125.65 139.65 1128.3 139.65 1130.3 137.75 1132.05 136.1 1132.2 133.85 L1132.25 133.2 Q1132.25 130.4 1130.3 128.55 1128.3 126.6 1125.65 126.6 1122.85 126.6 1120.9 128.55 1119.05 130.4 1119.05 133.2"/>
+ <path stroke="none" fill="#5B5B5B" d="M1179.8 133.2 L1179.75 133.85 Q1179.55 136.1 1177.9 137.75 1175.95 139.65 1173.2 139.65 1170.5 139.65 1168.5 137.75 1166.8 136.1 1166.6 133.85 L1166.6 133.2 Q1166.6 130.4 1168.5 128.55 1170.5 126.6 1173.2 126.6 1175.95 126.6 1177.9 128.55 1179.8 130.4 1179.8 133.2 M1119.05 133.2 Q1119.05 130.4 1120.9 128.55 1122.85 126.6 1125.65 126.6 1128.3 126.6 1130.3 128.55 1132.25 130.4 1132.25 133.2 L1132.2 133.85 Q1132.05 136.1 1130.3 137.75 1128.3 139.65 1125.65 139.65 1122.85 139.65 1120.9 137.75 1119.25 136.1 1119.1 133.85 L1119.05 133.2"/>
+ <path stroke="none" fill="#61A3FF" d="M1167.5 149.5 Q1167.45 147.55 1166.9 145.7 L1166.7 144.95 1166.65 144.8 Q1165.4 141 1162.2 138.1 1157 133.15 1149.5 133.15 1142.05 133.15 1136.7 138.1 1133.6 141 1132.35 144.8 L1132.3 144.95 1132.05 145.7 Q1131.55 147.55 1131.5 149.5 L1131.5 146 Q1131.5 143.65 1132.05 141.5 L1132.3 140.65 1132.35 140.5 Q1133.6 136.45 1136.7 133.3 1142.05 128 1149.5 128 1157 128 1162.2 133.3 1165.4 136.45 1166.65 140.5 L1166.7 140.65 1166.9 141.5 Q1167.5 143.65 1167.5 146 L1167.5 149.5"/>
+ <path stroke="none" fill="#5D9CF3" d="M1167.5 149.5 L1167.5 149.9 1167.5 155.9 1167.5 156.4 1167.4 157.85 1167.3 158.7 Q1149.5 163.25 1131.7 158.7 L1131.6 157.85 1131.5 156.2 1131.5 155.9 1131.5 149.9 1131.5 149.5 Q1131.55 147.55 1132.05 145.7 L1132.3 144.95 1132.35 144.8 Q1133.6 141 1136.7 138.1 1142.05 133.15 1149.5 133.15 1157 133.15 1162.2 138.1 1165.4 141 1166.65 144.8 L1166.7 144.95 1166.9 145.7 Q1167.45 147.55 1167.5 149.5"/>
+ <path stroke="none" fill="#397EDE" d="M1166.5 161.95 Q1165.2 165.65 1162.2 168.65 1157 174 1149.5 174 1142.05 174 1136.7 168.65 1133.75 165.65 1132.5 161.95 1149.5 165.8 1166.5 161.95"/>
+ <path stroke="none" fill="#3473CB" d="M1166.5 161.95 Q1149.5 165.8 1132.5 161.95 1131.95 160.4 1131.7 158.7 1149.5 163.25 1167.3 158.7 L1166.5 161.95"/>
+ <path stroke="none" fill="#BB2905" d="M1162.9 82.45 Q1166.8 89.2 1167.55 95.1 1168.45 100.95 1165.7 102.5 1162.95 104.1 1158.25 100.45 1153.65 96.8 1149.75 90.05 L1148.85 88.5 Q1147.25 85.3 1147.65 82 1148.05 78.35 1150.8 76.75 1153.55 75.2 1156.95 76.65 1159.95 77.95 1161.95 80.95 L1162.9 82.45"/>
+ <path stroke="none" fill="#BB2905" d="M1143.2 90.15 Q1140.65 94.65 1137.5 97.05 1134.45 99.5 1132.65 98.4 1130.85 97.4 1131.4 93.5 1131.95 89.6 1134.5 85.15 L1135.1 84.1 Q1136.45 82.1 1138.45 81.25 1140.7 80.25 1142.5 81.3 1144.3 82.4 1144.6 84.85 1144.85 86.95 1143.8 89.1 L1143.2 90.15"/>
+ <path stroke="none" fill="#807F7F" d="M986.2 109 L986.15 111.2 986.15 111.25 Q985.45 123.85 976.2 133.05 970.1 139.15 962.45 141.5 960.6 151.15 956.1 159.75 954 163.65 951.35 167.35 L950.95 167.85 Q947.75 172.1 943.8 176.1 L938.9 180.6 938.85 180.65 934.4 184.05 929.35 187.3 929.3 187.35 Q914.25 196 895.7 196 877.1 196 862.1 187.35 L862.15 187.35 Q859.5 185.85 857 184.1 L857 184.05 Q854.75 182.45 852.65 180.75 L847.6 176.1 Q839.5 168 834.75 158.65 L834.5 158.05 829 141.55 Q821.35 139.15 815.25 133.05 805.95 123.85 805.25 111.25 L805.25 111.2 805.2 109 Q805.2 95 815.25 84.95 825.15 75 839.2 75 845.35 75 850.8 76.95 L857 72 Q860.3 69.65 863.8 67.8 L863.75 67.85 Q878.1 60 895.7 60 913.3 60 927.7 67.8 931.15 69.65 934.4 71.95 L934.45 71.95 Q937.65 74.2 940.7 76.95 946.05 75 952.2 75 966.25 75 976.2 84.95 986.2 95 986.2 109 M828.75 140.1 L828.7 139.9 828.75 140.2 828.75 140.1"/>
+ <path stroke="none" fill="#414040" d="M982.15 111 Q981.5 122.1 973.35 130.2 964.6 139 952.2 139 939.85 139 930.95 130.2 922.9 122.1 922.25 111 922.9 99.9 930.95 91.75 939.85 83 952.2 83 964.6 83 973.35 91.75 981.5 99.9 982.15 111 M963.65 109 Q963.65 102.05 958.65 97.1 953.7 92.15 946.8 92.15 939.75 92.15 934.8 97.1 929.8 102.05 929.8 109 929.8 116.05 934.8 120.95 939.75 126 946.8 126 953.7 126 958.65 120.95 963.65 116.05 963.65 109 M827.75 109 Q827.75 116.05 832.75 120.95 837.7 126 844.6 126 851.65 126 856.6 120.95 861.6 116.05 861.6 109 861.6 102.05 856.6 97.1 851.65 92.15 844.6 92.15 837.7 92.15 832.75 97.1 827.75 102.05 827.75 109 M809.25 111 Q809.9 99.9 818.05 91.75 826.8 83 839.2 83 851.55 83 860.45 91.75 868.5 99.9 869.15 111 868.5 122.1 860.45 130.2 851.55 139 839.2 139 826.8 139 818.05 130.2 809.9 122.1 809.25 111"/>
+ <path stroke="none" fill="#545353" d="M809.25 111 L809.2 109 Q809.2 96.65 818.05 87.75 826.8 79 839.2 79 851.55 79 860.45 87.75 869.2 96.65 869.2 109 L869.15 111 Q868.5 99.9 860.45 91.75 851.55 83 839.2 83 826.8 83 818.05 91.75 809.9 99.9 809.25 111 M922.25 111 L922.2 109 Q922.2 96.65 930.95 87.75 939.85 79 952.2 79 964.6 79 973.35 87.75 982.2 96.65 982.2 109 L982.15 111 Q981.5 99.9 973.35 91.75 964.6 83 952.2 83 939.85 83 930.95 91.75 922.9 99.9 922.25 111"/>
+ <path stroke="none" fill="#353434" d="M963.65 109 Q963.65 116.05 958.65 120.95 953.7 126 946.8 126 939.75 126 934.8 120.95 929.8 116.05 929.8 109 929.8 102.05 934.8 97.1 939.75 92.15 946.8 92.15 953.7 92.15 958.65 97.1 963.65 102.05 963.65 109 M827.75 109 Q827.75 102.05 832.75 97.1 837.7 92.15 844.6 92.15 851.65 92.15 856.6 97.1 861.6 102.05 861.6 109 861.6 116.05 856.6 120.95 851.65 126 844.6 126 837.7 126 832.75 120.95 827.75 116.05 827.75 109"/>
+ <path stroke="none" fill="#FFFFFF" d="M831.75 130 L831.7 128 Q831.7 101.45 850.45 82.75 854.7 78.5 859.3 75.25 862.4 73.05 865.65 71.35 879.15 64 895.7 64 912.25 64 925.8 71.3 929.05 73.05 932.1 75.2 936.75 78.5 941 82.75 959.7 101.45 959.7 128 L959.7 130 Q959 104.75 941 86.75 936.6 82.35 931.8 79 928.45 76.7 924.95 74.85 922.6 83.85 918.3 91.45 908.95 108 895.7 108 882.45 108 873.05 91.45 868.75 83.9 866.45 74.9 862.95 76.7 859.6 79.05 854.8 82.4 850.45 86.75 832.4 104.75 831.75 130"/>
+ <path stroke="none" fill="#F5F5F5" d="M831.75 130 Q832.4 104.75 850.45 86.75 854.8 82.4 859.6 79.05 862.95 76.7 866.45 74.9 868.75 83.9 873.05 91.45 882.45 108 895.7 108 908.95 108 918.3 91.45 922.6 83.85 924.95 74.85 928.45 76.7 931.8 79 936.6 82.35 941 86.75 959 104.75 959.7 130 959.25 145.2 952.55 157.85 950.6 161.55 948.1 165 L948.05 165 Q944.9 169.3 940.95 173.25 L936.3 177.55 Q934.25 179.25 932.1 180.75 L927.3 183.85 924.85 181.75 Q912.8 172 895.7 172 878.6 172 866.5 181.75 L864.1 183.85 859.3 180.8 855.2 177.65 850.4 173.25 Q842.8 165.65 838.3 156.8 L832.75 140.1 832.75 139.9 832.55 138.8 832.5 138.55 832.45 138.05 832.35 137.5 832.2 136.25 832.2 136.05 832.1 135.45 832.1 135.2 832.05 135 832.05 134.75 832 134.45 831.95 133.8 831.95 133.55 831.9 133.25 831.75 130"/>
+ <path stroke="none" fill="#E5E5E5" d="M927.3 183.85 Q913.15 192 895.7 192 878.2 192 864.1 183.85 L866.5 181.75 Q878.6 172 895.7 172 912.8 172 924.85 181.75 L927.3 183.85"/>
+ <path stroke="none" fill="#5B5B5B" d="M844.35 121.95 L844.35 121.9 Q846 115.9 851.3 112.85 856.7 109.75 862.7 111.35 868.65 112.9 871.8 118.3 874.9 123.65 873.3 129.65 L873.3 129.7 Q871.35 136.9 865.8 140.75 860.15 144.75 854.2 143.2 848.2 141.6 845.3 135.3 842.45 129.15 844.35 121.95 M850 125.4 Q850 129.25 852.7 131.85 855.45 134.65 859.3 134.65 863.1 134.65 865.85 131.85 868.55 129.25 868.55 125.4 868.55 121.55 865.85 118.85 863.1 116.15 859.3 116.15 855.45 116.15 852.7 118.85 850 121.55 850 125.4 M854.5 125.55 Q854.5 123.1 856.2 121.45 857.9 119.75 860.3 119.75 862.7 119.75 864.45 121.45 866.15 123.1 866.15 125.55 866.15 127.95 864.45 129.6 862.7 131.35 860.3 131.35 857.9 131.35 856.2 129.6 854.5 127.95 854.5 125.55 M946.05 121.95 Q947.95 129.15 945.1 135.3 942.2 141.6 936.2 143.2 930.25 144.75 924.6 140.75 919.05 136.9 917.1 129.7 L917.1 129.65 Q915.5 123.65 918.6 118.3 921.75 112.9 927.7 111.35 933.7 109.75 939.1 112.85 944.4 115.9 946.05 121.9 L946.05 121.95 M935.9 125.55 Q935.9 127.95 934.2 129.6 932.5 131.35 930.1 131.35 927.7 131.35 925.95 129.6 924.25 127.95 924.25 125.55 924.25 123.1 925.95 121.45 927.7 119.75 930.1 119.75 932.5 119.75 934.2 121.45 935.9 123.1 935.9 125.55 M940.4 125.4 Q940.4 121.55 937.7 118.85 934.95 116.15 931.1 116.15 927.3 116.15 924.55 118.85 921.85 121.55 921.85 125.4 921.85 129.25 924.55 131.85 927.3 134.65 931.1 134.65 934.95 134.65 937.7 131.85 940.4 129.25 940.4 125.4"/>
+ <path stroke="none" fill="#FFFFFF" d="M940.4 125.4 Q940.4 129.25 937.7 131.85 934.95 134.65 931.1 134.65 927.3 134.65 924.55 131.85 921.85 129.25 921.85 125.4 921.85 121.55 924.55 118.85 927.3 116.15 931.1 116.15 934.95 116.15 937.7 118.85 940.4 121.55 940.4 125.4 M850 125.4 Q850 121.55 852.7 118.85 855.45 116.15 859.3 116.15 863.1 116.15 865.85 118.85 868.55 121.55 868.55 125.4 868.55 129.25 865.85 131.85 863.1 134.65 859.3 134.65 855.45 134.65 852.7 131.85 850 129.25 850 125.4 M854.5 125.55 Q854.5 127.95 856.2 129.6 857.9 131.35 860.3 131.35 862.7 131.35 864.45 129.6 866.15 127.95 866.15 125.55 866.15 123.1 864.45 121.45 862.7 119.75 860.3 119.75 857.9 119.75 856.2 121.45 854.5 123.1 854.5 125.55 M935.9 125.55 Q935.9 123.1 934.2 121.45 932.5 119.75 930.1 119.75 927.7 119.75 925.95 121.45 924.25 123.1 924.25 125.55 924.25 127.95 925.95 129.6 927.7 131.35 930.1 131.35 932.5 131.35 934.2 129.6 935.9 127.95 935.9 125.55"/>
+ <path stroke="none" fill="#666666" d="M882.85 136.25 L882.65 133.9 882.65 133 Q882.95 130.6 886.45 128.9 890.3 127.05 895.7 127.05 901.1 127.05 904.95 128.9 908.4 130.6 908.75 133 L908.75 133.9 908.55 136.25 Q907.85 134.35 904.95 132.9 901.1 131.05 895.7 131.05 890.3 131.05 886.45 132.9 883.55 134.3 882.85 136.25"/>
+ <path stroke="none" fill="#464646" d="M900.15 146.25 L901 147.25 Q901.95 148.2 903.05 148.75 904.45 149.4 906.1 149.4 909.1 149.4 911.25 147.25 L912.5 145.6 913 145.15 913.7 145.2 918.4 147.65 918.85 148.15 918.8 148.8 917.3 151.1 916.25 152.25 Q912 156.45 906.1 156.45 900.2 156.45 896 152.25 L895.7 151.95 895.4 152.25 Q891.15 156.45 885.25 156.45 879.3 156.45 875.15 152.25 L874.1 151.1 872.6 148.9 Q872.4 148.55 872.55 148.25 872.6 147.9 872.95 147.7 L877.55 145.15 878.2 145.05 Q878.55 145.15 878.75 145.5 L880.1 147.25 Q882.25 149.4 885.25 149.4 886.9 149.4 888.35 148.75 L890.4 147.25 891.25 146.25 Q895.9 148 900.15 146.25"/>
+ <path stroke="none" fill="#5B5B5B" d="M900.15 146.25 Q895.9 148 891.25 146.25 888.6 145.3 886.45 143.15 883.5 140.2 882.85 136.25 883.55 134.3 886.45 132.9 890.3 131.05 895.7 131.05 901.1 131.05 904.95 132.9 907.85 134.35 908.55 136.25 907.9 140.2 904.95 143.15 902.8 145.3 900.15 146.25"/>
+ <path stroke="none" fill="#1D3138" d="M677.1 71.95 Q682 75.45 686.5 79.95 706.35 99.8 706.35 128 L706.35 130 706.35 130.15 Q706.1 139.1 703.75 147.3 709.8 154.05 711.4 161.85 713.4 171.85 707.6 177.4 702 183.25 692 181.25 687.9 180.4 684.1 178.35 L681.55 180.6 681.5 180.65 678.9 182.75 678.65 182.95 677.05 184.05 Q669.85 189.15 661.75 192.05 650.85 196 638.35 196 625.8 196 614.9 192.05 606.8 189.15 599.65 184.1 L599.7 184.1 597.95 182.85 597.85 182.8 595.35 180.8 595.3 180.75 592.6 178.35 Q588.8 180.4 584.75 181.25 L584.7 181.25 Q574.7 183.25 569.15 177.4 563.3 171.85 565.35 161.85 566.95 153.75 573.4 146.8 L571.6 141.4 571.4 140.2 571.35 139.9 571.15 138.9 571.15 138.7 571.1 138.5 571.1 138.3 571.05 138.1 570.9 136.6 570.8 136.1 570.8 135.8 570.75 135.45 570.75 135.4 570.7 135.15 570.65 134.6 570.6 134.05 570.55 133.5 570.4 130.2 570.35 128 Q570.35 99.8 590.3 79.95 594.8 75.4 599.65 72 616.55 60 638.35 60 660.2 60 677.05 71.95 L677.1 71.95"/>
+ <path stroke="none" fill="#29454F" d="M704.75 174.55 Q700.45 178.85 692.8 177.3 685.35 175.75 678.95 169.55 L678.85 169.45 Q675.75 166.3 676.6 161.1 677.45 155.85 681.75 151.55 686 147.3 691.25 146.45 696.5 145.55 699.6 148.7 L699.7 148.8 Q705.9 155.2 707.45 162.65 709 170.3 704.75 174.55 M571.95 174.55 Q567.7 170.3 569.25 162.65 570.8 155.2 577 148.8 L577.1 148.7 Q580.2 145.55 585.45 146.45 590.7 147.3 594.95 151.55 599.25 155.85 600.1 161.1 600.95 166.3 597.85 169.45 L597.75 169.55 Q591.35 175.75 583.9 177.3 576.25 178.85 571.95 174.55"/>
+ <path stroke="none" fill="#447180" d="M574.4 130 L574.35 128 Q574.35 101.45 593.1 82.75 597.35 78.5 601.95 75.25 617.85 64 638.35 64 658.9 64 674.75 75.2 679.4 78.5 683.65 82.75 702.35 101.45 702.35 128 L702.35 130 Q701.65 104.75 683.65 86.75 679.25 82.35 674.45 79 658.7 68 638.35 68 618.05 68 602.25 79.05 597.45 82.4 593.1 86.75 575.05 104.75 574.4 130"/>
+ <path stroke="none" fill="#365A66" d="M574.4 130 Q575.05 104.75 593.1 86.75 597.45 82.4 602.25 79.05 618.05 68 638.35 68 658.7 68 674.45 79 679.25 82.35 683.65 86.75 701.65 104.75 702.35 130 701.9 145.2 695.2 157.85 693.25 161.55 690.75 165 L690.7 165 Q687.55 169.3 683.6 173.25 L678.95 177.55 676.35 179.65 673.35 177.5 Q658.85 168 638.35 168 617.85 168 603.35 177.5 L600.35 179.65 597.85 177.65 593.05 173.25 Q585.45 165.65 580.95 156.8 L575.4 140.1 575.4 139.9 575.2 138.8 575.15 138.55 575.1 138.05 575 137.5 574.85 136.25 574.85 136.05 574.75 135.45 574.75 135.2 574.7 135 574.7 134.75 574.65 134.45 574.6 133.8 574.6 133.55 574.55 133.25 574.4 130 M685.3 118.75 Q683.45 112.2 677.5 108.75 671.3 105.15 664.45 107 657.65 108.8 654.05 115.05 650.6 120.95 652.2 127.65 L652.35 128.2 Q655.6 140.3 662.8 147.5 669.95 154.7 676.8 152.9 683.65 151.05 686.2 141.2 688.7 131.4 685.45 119.3 L685.3 118.75 M622.95 145.4 L622.75 148 622.8 149.05 Q623.1 152.55 627.35 155.05 632 157.75 638.55 157.75 645.1 157.75 649.7 155.05 653.95 152.55 654.25 149.05 L654.3 148 654.1 145.4 Q653.35 140.55 649.7 136.85 L647.9 135.3 Q643.85 132.25 638.55 132.25 633.25 132.25 629.2 135.3 L627.35 136.85 Q623.7 140.55 622.95 145.4 M624.95 127.7 Q626.6 121 623.1 115.05 619.6 108.85 612.7 107.05 605.85 105.15 599.65 108.75 593.7 112.2 591.8 118.75 L591.6 119.3 Q588.4 131.4 591 141.25 593.6 151.05 600.4 152.95 607.3 154.75 614.45 147.5 621.55 140.35 624.75 128.25 L624.95 127.7"/>
+ <path stroke="none" fill="#D5EEF7" d="M624.95 127.7 L624.75 128.25 Q621.55 140.35 614.45 147.5 607.3 154.75 600.4 152.95 593.6 151.05 591 141.25 588.4 131.4 591.6 119.3 L591.8 118.75 Q593.7 112.2 599.65 108.75 605.85 105.15 612.7 107.05 619.6 108.85 623.1 115.05 626.6 121 624.95 127.7 M685.3 118.75 L685.45 119.3 Q688.7 131.4 686.2 141.2 683.65 151.05 676.8 152.9 669.95 154.7 662.8 147.5 655.6 140.3 652.35 128.2 L652.2 127.65 Q650.6 120.95 654.05 115.05 657.65 108.8 664.45 107 671.3 105.15 677.5 108.75 683.45 112.2 685.3 118.75"/>
+ <path stroke="none" fill="#E08600" d="M654.1 145.4 L654.3 148 654.25 149.05 Q653.95 152.55 649.7 155.05 645.1 157.75 638.55 157.75 632 157.75 627.35 155.05 623.1 152.55 622.8 149.05 L622.75 148 622.95 145.4 Q623.65 147.4 627.35 148.9 632 150.8 638.55 150.8 645.1 150.8 649.7 148.9 653.4 147.4 654.1 145.4"/>
+ <path stroke="none" fill="#FF9900" d="M654.1 145.4 Q653.4 147.4 649.7 148.9 645.1 150.8 638.55 150.8 632 150.8 627.35 148.9 623.65 147.4 622.95 145.4 623.7 140.55 627.35 136.85 L629.2 135.3 Q633.25 132.25 638.55 132.25 643.85 132.25 647.9 135.3 L649.7 136.85 Q653.35 140.55 654.1 145.4"/>
+ <path stroke="none" fill="#F2F9FB" d="M676.35 179.65 L674.75 180.75 Q658.85 192 638.35 192 617.8 192 601.95 180.8 L600.35 179.65 603.35 177.5 Q617.85 168 638.35 168 658.85 168 673.35 177.5 L676.35 179.65"/>
+ <path stroke="none" fill="#FFFFFF" d="M604.1 132.55 L604.15 133.2 Q604.3 135.45 605.95 137.1 607.9 139 610.7 139 613.35 139 615.35 137.1 617.1 135.45 617.25 133.2 L617.3 132.55 Q617.3 129.75 615.35 127.9 613.35 125.95 610.7 125.95 607.9 125.95 605.95 127.9 604.1 129.75 604.1 132.55 M677.6 130.6 Q677.6 134.95 674.5 137.95 671.4 141.1 667.05 141.1 662.8 141.1 659.6 137.95 656.6 134.95 656.6 130.6 656.6 126.2 659.6 123.15 662.8 120.1 667.05 120.1 671.4 120.1 674.5 123.15 677.6 126.2 677.6 130.6 M672.85 132.55 Q672.85 129.75 670.95 127.9 669 125.95 666.25 125.95 663.55 125.95 661.55 127.9 659.65 129.75 659.65 132.55 L659.65 133.2 Q659.85 135.45 661.55 137.1 663.55 139 666.25 139 669 139 670.95 137.1 672.6 135.45 672.8 133.2 L672.85 132.55 M599.35 130.6 Q599.35 126.2 602.4 123.15 605.5 120.1 609.85 120.1 614.15 120.1 617.3 123.15 620.35 126.2 620.35 130.6 620.35 134.95 617.3 137.95 614.15 141.1 609.85 141.1 605.5 141.1 602.4 137.95 599.35 134.95 599.35 130.6"/>
+ <path stroke="none" fill="#5B5B5B" d="M672.85 132.55 L672.8 133.2 Q672.6 135.45 670.95 137.1 669 139 666.25 139 663.55 139 661.55 137.1 659.85 135.45 659.65 133.2 L659.65 132.55 Q659.65 129.75 661.55 127.9 663.55 125.95 666.25 125.95 669 125.95 670.95 127.9 672.85 129.75 672.85 132.55 M604.1 132.55 Q604.1 129.75 605.95 127.9 607.9 125.95 610.7 125.95 613.35 125.95 615.35 127.9 617.3 129.75 617.3 132.55 L617.25 133.2 Q617.1 135.45 615.35 137.1 613.35 139 610.7 139 607.9 139 605.95 137.1 604.3 135.45 604.15 133.2 L604.1 132.55"/>
+ <path stroke="none" fill="#987900" d="M419.35 34.7 Q422.1 39.4 421.1 44.75 L421.05 44.95 420.85 45.7 420.8 45.85 Q419.25 51.6 414.05 54.7 L413.55 55 413.3 55.15 411.95 55.75 408.75 64.95 Q416.05 67.75 422.65 72.45 L422.7 72.45 424.6 73.9 Q429 69.25 435.35 65.6 L435.4 65.6 Q436.45 64.95 437.6 64.35 L438 64.15 Q442.85 61.85 449.6 65.55 L449.65 65.6 Q455.75 69 460.05 76.4 L460 76.4 Q464.25 83.65 464.15 90.65 L464.15 90.7 464.05 92.9 Q463.3 98.9 459.5 101.55 L459.45 101.6 458.5 102.25 458.25 102.4 457.15 103 457.05 103.1 Q452.85 105.5 448.7 107 451.95 117.05 451.95 128.5 L451.95 130.5 451.95 130.65 Q451.45 146.8 444.35 160.25 442.25 164.15 439.6 167.85 L439.2 168.35 Q436 172.6 432.05 176.6 L427.15 181.1 427.1 181.15 422.65 184.55 Q405.75 196.5 383.95 196.5 362.1 196.5 345.25 184.6 L345.25 184.55 340.9 181.25 335.85 176.6 Q327.75 168.5 323 159.15 L322.75 158.55 317.2 141.85 317 140.7 317 140.6 316.95 140.4 316.75 139.4 316.75 139.2 316.7 139 316.7 138.8 316.65 138.6 316.5 137.1 316.4 136.6 316.4 136.3 316.35 135.95 316.35 135.9 316.3 135.65 316.25 135.1 316.2 134.55 316.15 134 316 130.7 315.95 128.5 Q315.95 117.05 319.25 107 315.1 105.5 310.9 103.1 L310.8 103 309.7 102.4 309.5 102.25 308.55 101.6 308.45 101.55 Q304.65 98.9 304 92.85 L304 93.1 303.8 90.7 303.8 90.65 Q303.7 83.65 307.95 76.4 312.2 69 318.35 65.6 L318.4 65.55 Q325.1 61.85 330 64.15 L330.4 64.35 332.6 65.6 Q338.95 69.25 343.4 73.85 L345.25 72.5 Q351.85 67.8 359.25 64.95 L356.05 55.75 354.05 54.8 353.9 54.75 353.6 54.55 Q348.65 51.45 347.15 45.85 L347.1 45.7 346.95 44.95 346.9 44.75 Q345.85 39.4 348.6 34.7 351.6 29.5 357.45 27.9 L357.5 27.9 Q363.15 26.35 368.15 29.2 L368.6 29.4 370.55 30.75 370.45 30.65 Q374.05 33.45 375.35 38.25 376.35 41.8 375.65 45.05 L375.65 44.95 Q375.25 46.95 374.25 48.9 L373.9 49.6 372.65 51.3 374.55 61.1 383.95 60.5 393.5 61.1 395.3 51.3 394.1 49.55 393.75 48.85 Q392.7 46.95 392.35 45 L392.35 45.1 Q391.65 41.8 392.6 38.35 L392.6 38.25 Q393.7 33.9 396.85 31.15 L399.3 29.4 399.35 29.35 Q404.55 26.3 410.5 27.9 416.25 29.45 419.35 34.65 L419.35 34.7"/>
+ <path stroke="none" fill="#FFCC00" d="M460.05 92.4 Q459.5 87.45 456.55 82.4 452.9 76.05 447.65 73.05 442.9 70.45 439.5 71.85 L437.35 73.05 Q427.7 78.65 422.95 86.5 L422.35 86 421.4 85.25 422.15 83.85 Q426.9 75.1 437.35 69.05 L439.5 67.85 Q442.9 66.45 447.65 69.05 452.9 72.05 456.55 78.4 460.2 84.65 460.15 90.65 L460.05 92.4 M345 86.45 Q340.2 78.6 330.6 73.05 L328.45 71.85 Q325.05 70.45 320.3 73.05 315.05 76.05 311.4 82.4 308.45 87.45 307.95 92.4 L307.8 90.65 Q307.75 84.65 311.4 78.4 315.05 72.05 320.3 69.05 325.05 66.45 328.45 67.85 L330.6 69.05 Q341.05 75.1 345.8 83.85 L346.55 85.25 345 86.45"/>
+ <path stroke="none" fill="#E9BB00" d="M345 86.45 Q341.9 88.85 339 91.75 335.4 87.7 330 84.55 L328.25 83.6 Q325.45 82.45 321.5 84.55 317.2 87.05 314.2 92.3 312.25 95.6 311.6 98.85 L310.85 98.35 Q308.4 96.5 307.95 92.4 308.45 87.45 311.4 82.4 315.05 76.05 320.3 73.05 325.05 70.45 328.45 71.85 L330.6 73.05 Q340.2 78.6 345 86.45 M422.95 86.5 Q427.7 78.65 437.35 73.05 L439.5 71.85 Q442.9 70.45 447.65 73.05 452.9 76.05 456.55 82.4 459.5 87.45 460.05 92.4 459.55 96.5 457.1 98.35 L456.35 98.85 Q455.7 95.6 453.75 92.3 450.75 87.05 446.45 84.55 442.5 82.45 439.7 83.6 L437.95 84.55 Q432.55 87.7 428.95 91.75 L422.95 86.5"/>
+ <path stroke="none" fill="#CBA200" d="M428.95 91.75 Q432.55 87.7 437.95 84.55 L439.7 83.6 Q442.5 82.45 446.45 84.55 450.75 87.05 453.75 92.3 455.7 95.6 456.35 98.85 L455.05 99.6 Q447.15 104.15 439.55 105.2 435.4 98.15 429.25 92 L428.95 91.75 M311.6 98.85 Q312.25 95.6 314.2 92.3 317.2 87.05 321.5 84.55 325.45 82.45 328.25 83.6 L330 84.55 Q335.4 87.7 339 91.75 L338.7 92 Q332.55 98.15 328.4 105.2 320.8 104.15 312.9 99.6 L311.6 98.85"/>
+ <path stroke="none" fill="#EEBE00" d="M347.85 79.55 Q363.65 68.5 383.95 68.5 404.3 68.5 420.05 79.5 418.35 95.55 409.75 107.55 399.05 122.5 383.95 122.5 368.85 122.5 358.15 107.55 349.55 95.55 347.85 79.55 M371.4 110.8 Q371.6 111.6 372.2 112.25 372.85 112.75 373.7 112.9 L379.9 113.55 Q380.75 113.65 381.5 113.2 382.25 112.75 382.6 111.95 L385.15 106.25 Q385.5 105.45 385.35 104.65 385.15 103.75 384.55 103.2 L379.9 99 Q379.25 98.4 378.4 98.35 377.55 98.25 376.8 98.65 L371.35 101.8 Q370.6 102.2 370.25 103.05 369.9 103.8 370.1 104.7 L371.4 110.8 M380 87.15 Q380.45 86.45 380.45 85.6 380.45 84.75 380 84.05 L375.05 77.25 373.75 76.3 Q372.9 76 372.1 76.3 L364.15 78.85 Q363.3 79.15 362.8 79.85 362.3 80.5 362.3 81.35 L362.3 89.75 Q362.3 90.65 362.8 91.35 363.3 92 364.15 92.25 L372.1 94.85 Q372.9 95.1 373.75 94.85 L375.05 93.95 380 87.15 M392.65 103.1 Q393.35 103.6 394.2 103.6 395.1 103.6 395.8 103.1 L405.5 96.05 Q406.15 95.5 406.4 94.7 406.65 93.9 406.4 93.1 L402.7 81.65 Q402.45 80.8 401.8 80.3 401.1 79.8 400.2 79.8 L388.15 79.8 Q387.25 79.8 386.6 80.3 385.9 80.8 385.65 81.65 L381.95 93.1 Q381.7 93.9 381.95 94.7 382.2 95.5 382.9 96.05 L392.65 103.1"/>
+ <path stroke="none" fill="#FFCC00" d="M392.65 103.1 L382.9 96.05 Q382.2 95.5 381.95 94.7 381.7 93.9 381.95 93.1 L385.65 81.65 Q385.9 80.8 386.6 80.3 387.25 79.8 388.15 79.8 L400.2 79.8 Q401.1 79.8 401.8 80.3 402.45 80.8 402.7 81.65 L406.4 93.1 Q406.65 93.9 406.4 94.7 406.15 95.5 405.5 96.05 L395.8 103.1 Q395.1 103.6 394.2 103.6 393.35 103.6 392.65 103.1 M420.05 79.5 Q424.85 82.85 429.25 87.25 447.25 105.25 447.95 130.5 447.5 145.7 440.8 158.35 438.85 162.05 436.35 165.5 L436.3 165.5 Q433.15 169.8 429.2 173.75 L424.55 178.05 Q420.15 176.45 420.2 171.75 419.1 160.5 409.75 152.25 399.25 143 384.4 143 369.55 143 359 152.25 349.7 160.5 348.65 171.75 347.3 176.55 343.45 178.15 L338.65 173.75 Q331.05 166.15 326.55 157.3 L321 140.6 321 140.4 320.8 139.3 320.75 139.05 320.7 138.55 320.6 138 320.45 136.75 320.45 136.55 320.35 135.95 320.35 135.7 320.3 135.5 320.3 135.25 320.25 134.95 320.2 134.3 320.2 134.05 320.15 133.75 320 130.5 Q320.65 105.25 338.7 87.25 343.05 82.9 347.85 79.55 349.55 95.55 358.15 107.55 368.85 122.5 383.95 122.5 399.05 122.5 409.75 107.55 418.35 95.55 420.05 79.5 M380 87.15 L375.05 93.95 373.75 94.85 Q372.9 95.1 372.1 94.85 L364.15 92.25 Q363.3 92 362.8 91.35 362.3 90.65 362.3 89.75 L362.3 81.35 Q362.3 80.5 362.8 79.85 363.3 79.15 364.15 78.85 L372.1 76.3 Q372.9 76 373.75 76.3 L375.05 77.25 380 84.05 Q380.45 84.75 380.45 85.6 380.45 86.45 380 87.15 M371.4 110.8 L370.1 104.7 Q369.9 103.8 370.25 103.05 370.6 102.2 371.35 101.8 L376.8 98.65 Q377.55 98.25 378.4 98.35 379.25 98.4 379.9 99 L384.55 103.2 Q385.15 103.75 385.35 104.65 385.5 105.45 385.15 106.25 L382.6 111.95 Q382.25 112.75 381.5 113.2 380.75 113.65 379.9 113.55 L373.7 112.9 Q372.85 112.75 372.2 112.25 371.6 111.6 371.4 110.8"/>
+ <path stroke="none" fill="#FFD738" d="M447.95 130.5 Q447.25 105.25 429.25 87.25 424.85 82.85 420.05 79.5 404.3 68.5 383.95 68.5 363.65 68.5 347.85 79.55 343.05 82.9 338.7 87.25 320.65 105.25 320 130.5 L319.95 128.5 Q319.95 101.95 338.7 83.25 342.95 79 347.55 75.75 363.45 64.5 383.95 64.5 404.5 64.5 420.35 75.7 425 79 429.25 83.25 447.95 101.95 447.95 128.5 L447.95 130.5"/>
+ <path stroke="none" fill="#D2A800" d="M343.45 178.15 Q347.3 176.55 348.65 171.75 349.7 160.5 359 152.25 369.55 143 384.4 143 399.25 143 409.75 152.25 419.1 160.5 420.2 171.75 420.15 176.45 424.55 178.05 L420.35 181.25 Q404.45 192.5 383.95 192.5 363.4 192.5 347.55 181.3 L343.45 178.15 M402.9 156.5 Q401.4 155 398.45 155.85 395.5 156.65 392.85 159.3 L392.7 159.45 Q391.3 160.9 391.3 163 391.3 165.15 392.8 166.65 394.3 168.15 396.45 168.15 398.5 168.15 400 166.75 L400.15 166.6 Q402.8 163.95 403.6 161 404.45 158.05 402.9 156.5 M368.8 166.75 Q370.3 168.15 372.35 168.15 374.5 168.15 376 166.65 377.5 165.15 377.5 163 377.5 160.9 376.1 159.45 L375.95 159.3 Q373.3 156.65 370.35 155.85 367.4 155 365.9 156.5 364.35 158.05 365.2 161 366 163.95 368.65 166.6 L368.8 166.75"/>
+ <path stroke="none" fill="#A38200" d="M368.8 166.75 L368.65 166.6 Q366 163.95 365.2 161 364.35 158.05 365.9 156.5 367.4 155 370.35 155.85 373.3 156.65 375.95 159.3 L376.1 159.45 Q377.5 160.9 377.5 163 377.5 165.15 376 166.65 374.5 168.15 372.35 168.15 370.3 168.15 368.8 166.75 M402.9 156.5 Q404.45 158.05 403.6 161 402.8 163.95 400.15 166.6 L400 166.75 Q398.5 168.15 396.45 168.15 394.3 168.15 392.8 166.65 391.3 165.15 391.3 163 391.3 160.9 392.7 159.45 L392.85 159.3 Q395.5 156.65 398.45 155.85 401.4 155 402.9 156.5"/>
+ <path stroke="none" fill="#5B5B5B" d="M339.6 135.25 Q339.6 131.65 342.15 129.1 344.65 126.6 348.3 126.6 351.85 126.6 354.4 129.1 356.95 131.65 356.95 135.25 356.95 138.85 354.4 141.3 351.85 143.85 348.3 143.85 344.65 143.85 342.15 141.3 339.6 138.85 339.6 135.25 M427.15 135.25 Q427.15 138.85 424.65 141.3 422.15 143.85 418.5 143.85 414.95 143.85 412.35 141.3 409.85 138.85 409.85 135.25 409.85 131.65 412.35 129.1 414.95 126.6 418.5 126.6 422.15 126.6 424.65 129.1 427.15 131.65 427.15 135.25"/>
+ <path stroke="none" fill="#FFFFFF" d="M427.15 135.25 Q427.15 131.65 424.65 129.1 422.15 126.6 418.5 126.6 414.95 126.6 412.35 129.1 409.85 131.65 409.85 135.25 409.85 138.85 412.35 141.3 414.95 143.85 418.5 143.85 422.15 143.85 424.65 141.3 427.15 138.85 427.15 135.25 M339.6 135.25 Q339.6 138.85 342.15 141.3 344.65 143.85 348.3 143.85 351.85 143.85 354.4 141.3 356.95 138.85 356.95 135.25 356.95 131.65 354.4 129.1 351.85 126.6 348.3 126.6 344.65 126.6 342.15 129.1 339.6 131.65 339.6 135.25 M334.9 135.05 Q334.9 129.85 338.55 126.2 342.2 122.55 347.4 122.55 352.5 122.55 356.2 126.2 359.85 129.85 359.85 135.05 359.85 140.2 356.2 143.8 352.5 147.5 347.4 147.5 342.2 147.5 338.55 143.8 334.9 140.2 334.9 135.05 M431.9 135.05 Q431.9 140.2 428.25 143.8 424.6 147.5 419.4 147.5 414.3 147.5 410.6 143.8 406.95 140.2 406.95 135.05 406.95 129.85 410.6 126.2 414.3 122.55 419.4 122.55 424.6 122.55 428.25 126.2 431.9 129.85 431.9 135.05"/>
+ <path stroke="none" fill="#CBA200" d="M417.15 43.95 L416.95 44.8 Q415.8 49 412 51.25 L411.5 51.55 Q410.2 52.2 408.85 52.5 L402.3 71.15 402.3 71.2 Q401.8 72.45 400.65 73.05 L400.65 73.1 398.25 73.35 398.3 73.35 Q397.1 73.1 396.35 71.9 L396.3 71.8 Q395.65 70.7 395.95 69.45 L399.6 50.05 Q398.4 48.9 397.45 47.4 L397.45 47.35 Q396.55 45.8 396.25 44.25 L396.45 43.3 Q397.25 40.15 399.5 38.15 400.35 37.4 401.35 36.8 405.15 34.6 409.45 35.75 413.65 36.9 415.9 40.7 416.8 42.3 417.15 43.95 M350.8 43.95 Q351.15 42.3 352.05 40.7 354.25 36.9 358.5 35.75 362.8 34.6 366.55 36.85 L366.6 36.85 367.95 37.8 Q370.55 39.85 371.5 43.3 L371.7 44.2 Q371.4 45.85 370.5 47.4 L370.5 47.45 368.35 50.05 372.05 69.5 372 69.45 Q372.2 70.65 371.7 71.7 L371.55 71.95 371.6 71.95 Q370.9 73 369.7 73.4 L367.3 73.15 367.2 73.1 Q366.15 72.5 365.7 71.2 L365.65 71.2 359.15 52.5 Q357.5 52.15 355.95 51.3 L355.7 51.15 Q352.1 48.9 351 44.8 L350.8 43.95"/>
+ <path stroke="none" fill="#DBAF00" d="M350.8 43.95 Q350.05 40.1 352.05 36.7 354.25 32.9 358.5 31.75 362.8 30.6 366.55 32.85 L366.6 32.85 367.95 33.8 Q370.55 35.85 371.5 39.3 372.2 41.85 371.7 44.2 L371.5 43.3 Q370.55 39.85 367.95 37.8 L366.6 36.85 366.55 36.85 Q362.8 34.6 358.5 35.75 354.25 36.9 352.05 40.7 351.15 42.3 350.8 43.95 M396.25 44.25 Q395.75 41.85 396.45 39.3 397.25 36.15 399.5 34.15 400.35 33.4 401.35 32.8 405.15 30.6 409.45 31.75 413.65 32.9 415.9 36.7 417.9 40.1 417.15 43.95 416.8 42.3 415.9 40.7 413.65 36.9 409.45 35.75 405.15 34.6 401.35 36.8 400.35 37.4 399.5 38.15 397.25 40.15 396.45 43.3 L396.25 44.25"/>
+ <path stroke="none" fill="#1B8045" d="M166.75 71.95 Q171.65 75.45 176.15 79.95 196 99.8 196 128 L196 130 196 130.15 Q195.5 146.3 188.4 159.75 183.7 168.5 176.15 176.1 163 189.2 146.3 193.7 L146.25 193.75 145.25 194 145.25 202.25 Q145.3 205.1 143.2 207.3 L143.05 207.45 Q140.95 209.45 138.05 209.45 135 209.45 133 207.4 L128.05 202.45 123.1 207.4 123 207.45 Q120.9 209.45 117.95 209.45 115.05 209.45 112.95 207.45 L112.8 207.3 Q110.7 205.1 110.75 202.25 L110.75 193.95 109.75 193.7 Q93.05 189.2 79.95 176.1 72.35 168.5 67.65 159.7 60.5 146.3 60.05 130.2 L60 128 Q60 99.8 79.95 79.95 84.45 75.4 89.3 72 106.2 60 128 60 149.85 60 166.7 71.95 L166.75 71.95"/>
+ <path stroke="none" fill="#31DE7A" d="M64.05 130 L64 128 Q64 101.45 82.75 82.75 87 78.5 91.6 75.25 107.5 64 128 64 148.55 64 164.4 75.2 169.05 78.5 173.3 82.75 192 101.45 192 128 L192 130 Q191.3 104.75 173.3 86.75 168.9 82.35 164.1 79 148.35 68 128 68 107.7 68 91.9 79.05 87.1 82.4 82.75 86.75 64.7 104.75 64.05 130"/>
+ <path stroke="none" fill="#2ECC71" d="M64.05 130 Q64.7 104.75 82.75 86.75 87.1 82.4 91.9 79.05 93.6 95.05 102.2 107.05 112.9 122 128 122 143.1 122 153.8 107.05 162.4 95.05 164.1 79 168.9 82.35 173.3 86.75 191.3 104.75 192 130 191.55 145.2 184.85 157.85 L182.85 159.35 182.4 159.7 181.55 160.3 162.1 170.45 160.7 170.95 Q155.25 172.8 149.5 174 L141.25 175.3 136.7 175.75 136.55 175.75 135.55 175.85 128.3 176.05 128 176.05 126.65 176.05 121.45 175.9 119.75 175.8 114.75 175.3 112.7 175.05 106.6 174 Q100.75 172.8 95.35 170.95 83.3 166.8 73.2 159.35 L71.15 157.8 Q64.45 145.2 64.05 130 M120.55 153.4 Q118.95 151.8 116.7 151.8 114.55 151.8 112.95 153.3 L112.8 153.45 Q110.05 156.2 109.15 159.35 108.3 162.45 109.9 164.05 110.55 164.7 111.5 164.95 L114.6 164.75 Q116.95 164.1 119.15 162.35 L120.5 161.15 120.65 161 Q122.15 159.45 122.15 157.25 122.15 155 120.55 153.4 M146.1 164.05 Q147.7 162.45 146.85 159.35 146 156.2 143.2 153.45 L143.05 153.3 Q141.5 151.8 139.3 151.8 137.05 151.8 135.45 153.4 133.85 155 133.85 157.25 133.85 159.45 135.35 161 L135.5 161.15 136.9 162.35 Q139.05 164.1 141.4 164.75 L144.55 164.95 Q145.45 164.7 146.1 164.05"/>
+ <path stroke="none" fill="#2ABD68" d="M184.85 157.85 Q180.45 166.1 173.3 173.25 160.95 185.6 145.25 189.85 L141.25 190.75 141.25 175.3 149.5 174 153.15 177.1 Q155.5 179.05 157.85 175.35 L160.7 170.95 162.1 170.45 181.55 160.3 182.4 159.7 182.85 159.35 184.85 157.85 M114.75 190.75 L110.75 189.8 Q95.1 185.6 82.75 173.25 75.6 166.1 71.15 157.8 L73.2 159.35 Q83.3 166.8 95.35 170.95 L98.15 175.35 Q100.5 179.05 102.85 177.1 L106.6 174 112.7 175.05 114.75 175.3 114.75 190.75 M119.75 175.8 L121.45 175.9 126.65 176.05 128 176.05 128.3 176.05 135.55 175.85 136.55 175.75 128 176.25 119.75 175.8"/>
+ <path stroke="none" fill="#28BD68" d="M91.9 79.05 Q107.7 68 128 68 148.35 68 164.1 79 162.4 95.05 153.8 107.05 143.1 122 128 122 112.9 122 102.2 107.05 93.6 95.05 91.9 79.05 M152 93.5 L152.05 93.45 Q152.35 92.45 152.05 91.55 L152.05 91.5 Q151.6 90.35 150.6 89.95 L150.65 90 Q129.05 78.95 105.45 89.95 L105.5 89.95 Q104.35 90.4 104 91.55 103.65 92.45 104 93.45 104.35 94.45 105.45 95 L105.45 95.05 Q129.05 105.95 150.65 95 151.6 94.5 152 93.5 M113.45 112.55 L113.4 112.55 Q128.65 119.6 142.65 112.55 L142.7 112.5 Q143.55 112.1 143.85 111.2 L143.8 111.3 Q144.1 110.45 143.85 109.75 143.55 108.8 142.7 108.4 L142.65 108.4 Q128.7 101.25 113.5 108.35 112.45 108.75 112.2 109.75 111.9 110.45 112.25 111.3 112.5 112.1 113.45 112.55"/>
+ <path stroke="none" fill="#31DB79" d="M113.45 112.55 Q112.5 112.1 112.25 111.3 111.9 110.45 112.2 109.75 112.45 108.75 113.5 108.35 128.7 101.25 142.65 108.4 L142.7 108.4 Q143.55 108.8 143.85 109.75 144.1 110.45 143.8 111.3 L143.85 111.2 Q143.55 112.1 142.7 112.5 L142.65 112.55 Q128.65 119.6 113.4 112.55 L113.45 112.55 M152 93.5 Q151.6 94.5 150.65 95 129.05 105.95 105.45 95.05 L105.45 95 Q104.35 94.45 104 93.45 103.65 92.45 104 91.55 104.35 90.4 105.5 89.95 L105.45 89.95 Q129.05 78.95 150.65 90 L150.6 89.95 Q151.6 90.35 152.05 91.5 L152.05 91.55 Q152.35 92.45 152.05 93.45 L152 93.5"/>
+ <path stroke="none" fill="#24A35A" d="M120.55 153.4 Q122.15 155 122.15 157.25 122.15 159.45 120.65 161 L120.5 161.15 119.15 162.35 Q116.95 164.1 114.6 164.75 L111.5 164.95 Q110.55 164.7 109.9 164.05 108.3 162.45 109.15 159.35 110.05 156.2 112.8 153.45 L112.95 153.3 Q114.55 151.8 116.7 151.8 118.95 151.8 120.55 153.4 M146.1 164.05 Q145.45 164.7 144.55 164.95 L141.4 164.75 Q139.05 164.1 136.9 162.35 L135.5 161.15 135.35 161 Q133.85 159.45 133.85 157.25 133.85 155 135.45 153.4 137.05 151.8 139.3 151.8 141.5 151.8 143.05 153.3 L143.2 153.45 Q146 156.2 146.85 159.35 147.7 162.45 146.1 164.05"/>
+ <path stroke="none" fill="#E74C3C" d="M128 196.75 L120.25 204.55 Q119.3 205.45 117.95 205.45 116.65 205.45 115.7 204.55 114.75 203.55 114.75 202.25 L114.75 190.75 114.75 175.3 119.75 175.8 128 176.25 128 196.75"/>
+ <path stroke="none" fill="#FFFFFF" d="M95.35 170.95 Q100.75 172.8 106.6 174 L102.85 177.1 Q100.5 179.05 98.15 175.35 L95.35 170.95 M149.5 174 Q155.25 172.8 160.7 170.95 L157.85 175.35 Q155.5 179.05 153.15 177.1 L149.5 174"/>
+ <path stroke="none" fill="#D24436" d="M141.25 190.75 L141.25 202.25 Q141.25 203.55 140.3 204.55 139.35 205.45 138.05 205.45 136.7 205.45 135.8 204.55 L128 196.75 128 176.25 136.55 175.75 136.7 175.75 141.25 175.3 141.25 190.75"/>
+ <path stroke="none" fill="#FFFFFF" d="M179.65 143.8 Q179.65 149.5 175.6 153.4 171.55 157.5 165.85 157.5 160.25 157.5 156.1 153.4 152.15 149.5 152.15 143.8 152.15 138.05 156.1 134.05 160.25 130 165.85 130 171.55 130 175.6 134.05 179.65 138.05 179.65 143.8 M166.85 143.7 Q166.85 140.05 165.9 137.6 164.9 135.1 163.5 135.05 L163.4 135.05 Q162.05 135.1 161.05 137.6 160.05 140.05 160.05 143.7 L160.05 144.55 Q160.15 147.5 161.05 149.65 162.05 152.1 163.4 152.15 L163.5 152.15 Q164.9 152.1 165.9 149.65 166.75 147.5 166.85 144.55 L166.85 143.7 M89.95 143.7 L89.95 144.55 Q90.05 147.5 90.9 149.65 91.9 152.1 93.3 152.15 L93.4 152.15 Q94.7 152.1 95.75 149.65 96.6 147.5 96.7 144.55 L96.75 143.7 Q96.75 140.05 95.75 137.6 94.7 135.1 93.4 135.05 L93.3 135.05 Q91.9 135.1 90.9 137.6 89.95 140.05 89.95 143.7 M77.15 143.8 Q77.15 138.05 81.2 134.05 85.25 130 90.95 130 96.55 130 100.7 134.05 104.65 138.05 104.65 143.8 104.65 149.5 100.7 153.4 96.55 157.5 90.95 157.5 85.25 157.5 81.2 153.4 77.15 149.5 77.15 143.8"/>
+ <path stroke="none" fill="#5B5B5B" d="M166.85 143.7 L166.85 144.55 Q166.75 147.5 165.9 149.65 164.9 152.1 163.5 152.15 L163.4 152.15 Q162.05 152.1 161.05 149.65 160.15 147.5 160.05 144.55 L160.05 143.7 Q160.05 140.05 161.05 137.6 162.05 135.1 163.4 135.05 L163.5 135.05 Q164.9 135.1 165.9 137.6 166.85 140.05 166.85 143.7 M89.95 143.7 Q89.95 140.05 90.9 137.6 91.9 135.1 93.3 135.05 L93.4 135.05 Q94.7 135.1 95.75 137.6 96.75 140.05 96.75 143.7 L96.7 144.55 Q96.6 147.5 95.75 149.65 94.7 152.1 93.4 152.15 L93.3 152.15 Q91.9 152.1 90.9 149.65 90.05 147.5 89.95 144.55 L89.95 143.7"/>
+ <path stroke="none" fill="#6D4526" d="M79.95 271.9 L81.05 270.85 81.1 270.75 Q100.65 252 128 252 155.45 252 175.05 270.85 L175.1 270.9 176.1 271.9 177.9 273.8 184.5 273.15 Q198.55 273.15 208.5 283.1 218.5 293.15 218.5 307.15 L218.45 309.35 218.45 309.4 Q217.75 322 208.5 331.2 201.75 337.95 193.2 340.15 189.95 350.75 183.15 359.9 L180.95 362.75 180.95 362.7 179.45 364.45 176.1 368.05 Q166.3 377.85 154.5 382.85 142.3 388 128 388 118.95 388 110.8 385.95 106 384.7 101.55 382.85 89.7 377.85 79.95 368.05 L76.55 364.45 Q66.85 353.45 62.85 340.15 54.25 337.95 47.55 331.2 38.25 322 37.55 309.4 L37.55 309.35 37.5 307.15 Q37.5 293.15 47.55 283.1 57.45 273.15 71.5 273.15 L78.1 273.75 79.95 271.9"/>
+ <path stroke="none" fill="#8E5A32" d="M195.95 307.15 Q195.95 300.2 190.95 295.25 186 290.3 179.1 290.3 172.05 290.3 167.1 295.25 162.1 300.2 162.1 307.15 162.1 314.2 167.1 319.1 172.05 324.15 179.1 324.15 186 324.15 190.95 319.1 195.95 314.2 195.95 307.15 M60.05 307.15 Q60.05 314.2 65.05 319.1 70 324.15 76.9 324.15 83.95 324.15 88.9 319.1 93.9 314.2 93.9 307.15 93.9 300.2 88.9 295.25 83.95 290.3 76.9 290.3 70 290.3 65.05 295.25 60.05 300.2 60.05 307.15 M41.55 309.15 Q42.2 298.05 50.35 289.9 59.1 281.15 71.5 281.15 83.85 281.15 92.75 289.9 100.8 298.05 101.45 309.15 100.8 320.25 92.75 328.35 83.85 337.15 71.5 337.15 59.1 337.15 50.35 328.35 42.2 320.25 41.55 309.15 M214.45 309.15 Q213.8 320.25 205.65 328.35 196.9 337.15 184.5 337.15 172.15 337.15 163.25 328.35 155.2 320.25 154.55 309.15 155.2 298.05 163.25 289.9 172.15 281.15 184.5 281.15 196.9 281.15 205.65 289.9 213.8 298.05 214.45 309.15"/>
+ <path stroke="none" fill="#B67340" d="M41.55 309.15 L41.5 307.15 Q41.5 294.8 50.35 285.9 59.1 277.15 71.5 277.15 83.85 277.15 92.75 285.9 101.5 294.8 101.5 307.15 L101.45 309.15 Q100.8 298.05 92.75 289.9 83.85 281.15 71.5 281.15 59.1 281.15 50.35 289.9 42.2 298.05 41.55 309.15 M154.55 309.15 L154.5 307.15 Q154.5 294.8 163.25 285.9 172.15 277.15 184.5 277.15 196.9 277.15 205.65 285.9 214.5 294.8 214.5 307.15 L214.45 309.15 Q213.8 298.05 205.65 289.9 196.9 281.15 184.5 281.15 172.15 281.15 163.25 289.9 155.2 298.05 154.55 309.15"/>
+ <path stroke="none" fill="#774B2A" d="M60.05 307.15 Q60.05 300.2 65.05 295.25 70 290.3 76.9 290.3 83.95 290.3 88.9 295.25 93.9 300.2 93.9 307.15 93.9 314.2 88.9 319.1 83.95 324.15 76.9 324.15 70 324.15 65.05 319.1 60.05 314.2 60.05 307.15 M195.95 307.15 Q195.95 314.2 190.95 319.1 186 324.15 179.1 324.15 172.05 324.15 167.1 319.1 162.1 314.2 162.1 307.15 162.1 300.2 167.1 295.25 172.05 290.3 179.1 290.3 186 290.3 190.95 295.25 195.95 300.2 195.95 307.15"/>
+ <path stroke="none" fill="#A16639" d="M192 320.5 L192 321 192 322 Q191.45 342 179.95 357.5 L177.85 360.15 176.45 361.8 173.25 365.2 Q164.05 374.45 152.95 379.15 141.45 384 128 384 119.45 384 111.75 382.05 107.3 380.95 103.1 379.15 91.95 374.45 82.75 365.2 L79.55 361.8 Q64.65 344.9 64 322 L64 321 64 320.5 Q64.55 294.9 82.75 276.7 L85 274.6 Q87.75 276.5 91.4 278.25 106.55 285.5 128 285.5 149.45 285.5 164.6 278.25 168.25 276.5 171.05 274.6 L173.25 276.7 Q176.95 280.4 179.95 284.45 191.55 300.15 192 320.5 M168 299.85 Q160.6 292.45 150.2 292.45 139.7 292.45 132.35 299.85 130.8 301.35 128 301.35 125.2 301.35 123.7 299.85 116.3 292.45 105.9 292.45 95.45 292.45 88.05 299.85 80.65 307.25 80.65 317.65 80.65 328.1 88.05 335.55 L88.1 335.55 92.3 338.95 Q92.35 353.6 102.75 363.95 106.9 368.1 111.75 370.6 119.1 374.4 128 374.4 142.8 374.4 153.3 363.95 L156.65 360.15 Q163.65 351 163.75 338.95 L168 335.55 Q175.4 328.1 175.4 317.65 175.4 307.25 168 299.85 M133.3 333.7 Q135.25 331.75 137.4 331.1 139.65 330.5 140.75 331.6 141.85 332.7 141.25 334.95 140.65 337.1 138.65 339.05 L138.55 339.2 Q137.45 340.25 135.95 340.25 134.35 340.25 133.25 339.15 132.1 338 132.1 336.4 132.1 334.85 133.15 333.8 L133.3 333.7 M123.65 339.15 Q122.45 340.25 120.9 340.25 119.35 340.25 118.25 339.2 L118.15 339.05 Q116.15 337.1 115.6 334.95 115 332.7 116.1 331.6 117.25 330.5 119.45 331.1 121.65 331.75 123.55 333.7 L123.7 333.8 Q124.75 334.85 124.75 336.4 124.75 338 123.65 339.15"/>
+ <path stroke="none" fill="#AA6C3B" d="M85 274.6 Q103.05 258 128 258 153 258 171.05 274.6 168.25 276.5 164.6 278.25 149.45 285.5 128 285.5 106.55 285.5 91.4 278.25 87.75 276.5 85 274.6"/>
+ <path stroke="none" fill="#B4723F" d="M85 274.6 L82.75 276.7 Q64.55 294.9 64 320.5 L64 320 Q64 293.45 82.75 274.7 L83.8 273.7 Q102.2 256 128 256 153.85 256 172.25 273.7 L173.25 274.7 Q176.95 278.4 179.95 282.45 192 298.7 192 320 L192 320.5 Q191.55 300.15 179.95 284.45 176.95 280.4 173.25 276.7 L171.05 274.6 Q153 258 128 258 103.05 258 85 274.6"/>
+ <path stroke="none" fill="#FFFFFF" d="M163.1 319.15 Q163.1 315.85 160.85 313.7 158.6 311.55 155.45 311.55 152.35 311.55 150 313.7 147.75 315.85 147.75 319.15 147.75 322.3 150 324.45 152.35 326.75 155.45 326.75 158.6 326.75 160.85 324.45 163.1 322.3 163.1 319.15 M168.95 318.9 Q168.95 323.95 165.45 327.4 161.85 331.05 156.75 331.05 151.75 331.05 148.2 327.4 144.6 323.95 144.6 318.9 144.6 313.85 148.2 310.3 151.75 306.8 156.75 306.8 161.85 306.8 165.45 310.3 168.95 313.85 168.95 318.9 M145.75 343.85 Q148.65 351.5 145.75 360.15 130.15 365.8 111.75 360.15 108.5 351.05 111.75 343.8 L114.35 344.25 Q129.5 349.55 142.1 344.45 143.9 343.7 145.75 343.85 M87.75 318.9 Q87.75 313.85 91.35 310.3 94.95 306.8 99.95 306.8 104.95 306.8 108.65 310.3 112.15 313.85 112.15 318.9 112.15 323.95 108.65 327.4 104.95 331.05 99.95 331.05 94.95 331.05 91.35 327.4 87.75 323.95 87.75 318.9 M93.7 319.15 Q93.7 322.3 95.95 324.45 98.1 326.75 101.3 326.75 104.45 326.75 106.7 324.45 108.95 322.3 108.95 319.15 108.95 315.85 106.7 313.7 104.45 311.55 101.3 311.55 98.1 311.55 95.95 313.7 93.7 315.85 93.7 319.15"/>
+ <path stroke="none" fill="#5B5B5B" d="M93.7 319.15 Q93.7 315.85 95.95 313.7 98.1 311.55 101.3 311.55 104.45 311.55 106.7 313.7 108.95 315.85 108.95 319.15 108.95 322.3 106.7 324.45 104.45 326.75 101.3 326.75 98.1 326.75 95.95 324.45 93.7 322.3 93.7 319.15 M163.1 319.15 Q163.1 322.3 160.85 324.45 158.6 326.75 155.45 326.75 152.35 326.75 150 324.45 147.75 322.3 147.75 319.15 147.75 315.85 150 313.7 152.35 311.55 155.45 311.55 158.6 311.55 160.85 313.7 163.1 315.85 163.1 319.15"/>
+ <path stroke="none" fill="#BF8559" d="M168.95 318.9 Q168.95 313.85 165.45 310.3 161.85 306.8 156.75 306.8 151.75 306.8 148.2 310.3 144.6 313.85 144.6 318.9 144.6 323.95 148.2 327.4 151.75 331.05 156.75 331.05 161.85 331.05 165.45 327.4 168.95 323.95 168.95 318.9 M168 299.85 Q175.4 307.25 175.4 317.65 175.4 328.1 168 335.55 L163.75 338.95 Q163.65 351 156.65 360.15 L153.3 363.95 Q142.8 374.4 128 374.4 119.1 374.4 111.75 370.6 106.9 368.1 102.75 363.95 92.35 353.6 92.3 338.95 L88.1 335.55 88.05 335.55 Q80.65 328.1 80.65 317.65 80.65 307.25 88.05 299.85 95.45 292.45 105.9 292.45 116.3 292.45 123.7 299.85 125.2 301.35 128 301.35 130.8 301.35 132.35 299.85 139.7 292.45 150.2 292.45 160.6 292.45 168 299.85 M133.3 333.7 L133.15 333.8 Q132.1 334.85 132.1 336.4 132.1 338 133.25 339.15 134.35 340.25 135.95 340.25 137.45 340.25 138.55 339.2 L138.65 339.05 Q140.65 337.1 141.25 334.95 141.85 332.7 140.75 331.6 139.65 330.5 137.4 331.1 135.25 331.75 133.3 333.7 M123.65 339.15 Q124.75 338 124.75 336.4 124.75 334.85 123.7 333.8 L123.55 333.7 Q121.65 331.75 119.45 331.1 117.25 330.5 116.1 331.6 115 332.7 115.6 334.95 116.15 337.1 118.15 339.05 L118.25 339.2 Q119.35 340.25 120.9 340.25 122.45 340.25 123.65 339.15 M145.75 360.15 L148.25 359.15 Q151.25 357.8 152.5 354.8 153.7 351.75 152.45 348.7 151.2 345.65 148.15 344.45 L145.75 343.85 Q143.9 343.7 142.1 344.45 129.5 349.55 114.35 344.25 L111.75 343.8 Q110 343.8 108.3 344.6 105.3 346.05 104.25 349.2 103.15 352.25 104.6 355.25 106 358.2 109.15 359.3 L111.75 360.15 Q130.15 365.8 145.75 360.15 M87.75 318.9 Q87.75 323.95 91.35 327.4 94.95 331.05 99.95 331.05 104.95 331.05 108.65 327.4 112.15 323.95 112.15 318.9 112.15 313.85 108.65 310.3 104.95 306.8 99.95 306.8 94.95 306.8 91.35 310.3 87.75 313.85 87.75 318.9"/>
+ <path stroke="none" fill="#E7E7E7" d="M145.75 343.85 L148.15 344.45 Q151.2 345.65 152.45 348.7 153.7 351.75 152.5 354.8 151.25 357.8 148.25 359.15 L145.75 360.15 Q148.65 351.5 145.75 343.85 M111.75 360.15 L109.15 359.3 Q106 358.2 104.6 355.25 103.15 352.25 104.25 349.2 105.3 346.05 108.3 344.6 110 343.8 111.75 343.8 108.5 351.05 111.75 360.15"/>
+ <path stroke="none" fill="#2D548C" d="M422.7 263.95 L424.9 265.6 Q429.2 261.15 435.35 257.6 L435.4 257.6 Q436.45 256.95 437.6 256.35 L438 256.15 Q442.85 253.85 449.6 257.55 L449.65 257.6 Q455.75 261 460.05 268.4 L460 268.4 Q464.25 275.65 464.15 282.65 L464.15 282.7 464.05 284.9 Q463.3 290.9 459.5 293.55 L459.45 293.6 458.5 294.25 458.25 294.4 457.15 295 457.05 295.1 Q452.9 297.45 448.85 298.95 451.95 308.8 451.95 320 L451.95 322 451.95 322.15 Q451.45 338.3 444.35 351.75 442.25 355.65 439.6 359.35 L439.2 359.85 Q436 364.1 432.05 368.1 L427.15 372.6 427.1 372.65 422.65 376.05 Q405.75 388 383.95 388 362.1 388 345.25 376.1 L345.25 376.05 340.9 372.75 335.85 368.1 Q327.75 360 323 350.65 L322.75 350.05 317.2 333.35 317 332.2 316.95 331.9 316.75 330.9 316.75 330.7 316.7 330.5 316.7 330.3 316.65 330.1 316.5 328.6 316.4 328.1 316.4 327.8 316.35 327.45 316.35 327.4 316.3 327.15 316.25 326.6 316.2 326.05 316.15 325.5 316 322.2 315.95 320 Q315.95 308.8 319.1 298.95 315.05 297.45 310.9 295.1 L310.8 295 309.7 294.4 309.5 294.25 308.55 293.6 308.45 293.55 Q304.65 290.9 304 284.85 L304 285.1 303.8 282.7 303.8 282.65 Q303.7 275.65 307.95 268.4 312.2 261 318.35 257.6 L318.4 257.55 Q325.1 253.85 330 256.15 L330.4 256.35 332.6 257.6 Q338.75 261.15 343.1 265.6 L345.25 264 Q362.15 252 383.95 252 405.8 252 422.65 263.95 L422.7 263.95"/>
+ <path stroke="none" fill="#528CDB" d="M460.05 284.4 Q459.5 279.45 456.55 274.4 452.9 268.05 447.65 265.05 442.9 262.45 439.5 263.85 L437.35 265.05 Q427.7 270.65 422.95 278.5 L422.35 278 421.4 277.25 422.15 275.85 Q426.9 267.1 437.35 261.05 L439.5 259.85 Q442.9 258.45 447.65 261.05 452.9 264.05 456.55 270.4 460.2 276.65 460.15 282.65 L460.05 284.4 M345 278.45 Q340.2 270.6 330.6 265.05 L328.45 263.85 Q325.05 262.45 320.3 265.05 315.05 268.05 311.4 274.4 308.45 279.45 307.95 284.4 L307.8 282.65 Q307.75 276.65 311.4 270.4 315.05 264.05 320.3 261.05 325.05 258.45 328.45 259.85 L330.6 261.05 Q341.05 267.1 345.8 275.85 L346.55 277.25 345 278.45"/>
+ <path stroke="none" fill="#4B80C9" d="M345 278.45 Q341.9 280.85 339 283.75 335.4 279.7 330 276.55 L328.25 275.6 Q325.45 274.45 321.5 276.55 317.2 279.05 314.2 284.3 312.25 287.6 311.6 290.85 L310.85 290.35 Q308.4 288.5 307.95 284.4 308.45 279.45 311.4 274.4 315.05 268.05 320.3 265.05 325.05 262.45 328.45 263.85 L330.6 265.05 Q340.2 270.6 345 278.45 M422.95 278.5 Q427.7 270.65 437.35 265.05 L439.5 263.85 Q442.9 262.45 447.65 265.05 452.9 268.05 456.55 274.4 459.5 279.45 460.05 284.4 459.55 288.5 457.1 290.35 L456.35 290.85 Q455.7 287.6 453.75 284.3 450.75 279.05 446.45 276.55 442.5 274.45 439.7 275.6 L437.95 276.55 Q432.55 279.7 428.95 283.75 L422.95 278.5"/>
+ <path stroke="none" fill="#3B6EB4" d="M428.95 283.75 Q432.55 279.7 437.95 276.55 L439.7 275.6 Q442.5 274.45 446.45 276.55 450.75 279.05 453.75 284.3 455.7 287.6 456.35 290.85 L455.05 291.6 Q447.15 296.15 439.55 297.2 435.4 290.15 429.25 284 L428.95 283.75 M311.6 290.85 Q312.25 287.6 314.2 284.3 317.2 279.05 321.5 276.55 325.45 274.45 328.25 275.6 L330 276.55 Q335.4 279.7 339 283.75 L338.7 284 Q332.55 290.15 328.4 297.2 320.8 296.15 312.9 291.6 L311.6 290.85"/>
+ <path stroke="none" fill="#5A9BF3" d="M447.95 322 Q447.25 296.75 429.25 278.75 426.2 275.7 422.95 273.15 L422.5 273.45 Q406.55 284 383.95 284 361.35 284 345.35 273.45 L344.95 273.2 Q341.7 275.75 338.7 278.75 320.65 296.75 320 322 L319.95 320 Q319.95 293.45 338.7 274.75 L342.35 271.35 Q344.9 269.15 347.55 267.25 363.45 256 383.95 256 404.5 256 420.35 267.2 423 269.1 425.55 271.3 L429.25 274.75 Q447.95 293.45 447.95 320 L447.95 322"/>
+ <path stroke="none" fill="#528CDB" d="M447.95 322 Q447.5 337.2 440.8 349.85 438.85 353.55 436.35 357 L436.3 357 Q433.15 361.3 429.2 365.25 L424.55 369.55 Q420.15 367.95 420.2 363.25 419.1 352 409.75 343.75 399.25 334.5 384.4 334.5 369.55 334.5 359 343.75 349.7 352 348.65 363.25 347.3 368.05 343.45 369.65 L338.65 365.25 Q331.05 357.65 326.55 348.8 L321 332.1 321 331.9 320.8 330.8 320.75 330.55 320.7 330.05 320.6 329.5 320.45 328.25 320.45 328.05 320.35 327.45 320.35 327.2 320.3 327 320.3 326.75 320.25 326.45 320.2 325.8 320.2 325.55 320.15 325.25 320 322 Q320.65 296.75 338.7 278.75 341.7 275.75 344.95 273.2 L345.35 273.45 Q361.35 284 383.95 284 406.55 284 422.5 273.45 L422.95 273.15 Q426.2 275.7 429.25 278.75 447.25 296.75 447.95 322"/>
+ <path stroke="none" fill="#4178C2" d="M343.45 369.65 Q347.3 368.05 348.65 363.25 349.7 352 359 343.75 369.55 334.5 384.4 334.5 399.25 334.5 409.75 343.75 419.1 352 420.2 363.25 420.15 367.95 424.55 369.55 L420.35 372.75 Q404.45 384 383.95 384 363.4 384 347.55 372.8 L343.45 369.65 M401.55 347.35 Q400.45 346.25 398.25 346.85 396 347.45 394.05 349.45 L393.9 349.55 Q392.85 350.65 392.85 352.25 392.85 353.85 394 354.95 395.1 356.1 396.75 356.1 398.25 356.1 399.4 355.05 L399.5 354.95 Q401.5 352.95 402.1 350.75 402.75 348.5 401.55 347.35 M369.4 355.05 Q370.5 356.1 372.05 356.1 373.65 356.1 374.8 354.95 375.9 353.85 375.9 352.25 375.9 350.65 374.85 349.55 L374.75 349.45 Q372.75 347.45 370.55 346.85 368.35 346.25 367.2 347.35 366.05 348.5 366.7 350.75 367.3 352.95 369.3 354.95 L369.4 355.05"/>
+ <path stroke="none" fill="#2D5D9C" d="M401.55 347.35 Q402.75 348.5 402.1 350.75 401.5 352.95 399.5 354.95 L399.4 355.05 Q398.25 356.1 396.75 356.1 395.1 356.1 394 354.95 392.85 353.85 392.85 352.25 392.85 350.65 393.9 349.55 L394.05 349.45 Q396 347.45 398.25 346.85 400.45 346.25 401.55 347.35 M369.4 355.05 L369.3 354.95 Q367.3 352.95 366.7 350.75 366.05 348.5 367.2 347.35 368.35 346.25 370.55 346.85 372.75 347.45 374.75 349.45 L374.85 349.55 Q375.9 350.65 375.9 352.25 375.9 353.85 374.8 354.95 373.65 356.1 372.05 356.1 370.5 356.1 369.4 355.05"/>
+ <path stroke="none" fill="#FFFFFF" d="M435.2 327.2 Q435.2 332.9 431.15 336.8 427.1 340.9 421.4 340.9 415.8 340.9 411.65 336.8 407.7 332.9 407.7 327.2 407.7 321.45 411.65 317.45 415.8 313.4 421.4 313.4 427.1 313.4 431.15 317.45 435.2 321.45 435.2 327.2 M427.65 327.1 Q427.65 323.45 425.2 321 422.65 318.45 419 318.45 415.5 318.45 412.9 321 410.35 323.45 410.35 327.1 L410.4 327.95 Q410.65 330.9 412.9 333.05 415.5 335.55 419 335.55 422.65 335.55 425.2 333.05 427.35 330.9 427.6 327.95 L427.65 327.1"/>
+ <path stroke="none" fill="#5B5B5B" d="M427.65 327.1 L427.6 327.95 Q427.35 330.9 425.2 333.05 422.65 335.55 419 335.55 415.5 335.55 412.9 333.05 410.65 330.9 410.4 327.95 L410.35 327.1 Q410.35 323.45 412.9 321 415.5 318.45 419 318.45 422.65 318.45 425.2 321 427.65 323.45 427.65 327.1"/>
+ <path stroke="none" fill="#FFFFFF" d="M340.25 327.1 L340.3 327.95 Q340.55 330.9 342.7 333.05 345.25 335.55 348.9 335.55 352.4 335.55 355 333.05 357.25 330.9 357.5 327.95 L357.55 327.1 Q357.55 323.45 355 321 352.4 318.45 348.9 318.45 345.25 318.45 342.7 321 340.25 323.45 340.25 327.1 M332.7 327.2 Q332.7 321.45 336.75 317.45 340.8 313.4 346.5 313.4 352.1 313.4 356.25 317.45 360.2 321.45 360.2 327.2 360.2 332.9 356.25 336.8 352.1 340.9 346.5 340.9 340.8 340.9 336.75 336.8 332.7 332.9 332.7 327.2"/>
+ <path stroke="none" fill="#5B5B5B" d="M340.25 327.1 Q340.25 323.45 342.7 321 345.25 318.45 348.9 318.45 352.4 318.45 355 321 357.55 323.45 357.55 327.1 L357.5 327.95 Q357.25 330.9 355 333.05 352.4 335.55 348.9 335.55 345.25 335.55 342.7 333.05 340.55 330.9 340.3 327.95 L340.25 327.1"/>
+ <path stroke="none" fill="#9C619C" d="M670.9 261.5 L672.8 262.7 Q676.4 260.8 680.85 259.65 L680.8 259.65 Q690.3 257.1 698.2 259.3 L698.25 259.3 Q706.6 261.65 708.8 267.55 L708.95 267.95 709.75 270.75 Q713.8 285.95 710.15 298.35 L710.1 298.55 709.7 299.65 709.65 299.8 Q707.35 306.75 703.3 310.6 703.9 315.15 703.9 320 L703.9 322 703.9 322.15 Q703.4 338.3 696.3 351.75 694.2 355.65 691.55 359.35 L691.15 359.85 Q687.95 364.1 684 368.1 L679.1 372.6 679.05 372.65 Q676.9 374.45 674.6 376.05 657.7 388 635.9 388 614.05 388 597.2 376.1 L597.2 376.05 592.85 372.75 587.8 368.1 Q579.7 360 574.95 350.65 L574.7 350.05 569.15 333.35 568.95 332.2 568.9 331.9 568.7 330.9 568.7 330.7 568.65 330.5 568.65 330.3 568.6 330.1 568.45 328.6 568.35 328.1 568.35 327.8 568.3 327.45 568.3 327.4 568.25 327.15 568.25 327.05 568.25 327 568.2 326.6 568.15 326.05 568.1 325.5 567.95 322.2 567.9 320 Q567.9 315.15 568.5 310.6 564.4 306.7 562.15 299.7 L562.15 299.75 561.75 298.55 561.7 298.35 Q558.05 285.95 562.15 270.8 L562.15 270.85 562.95 267.95 563.05 267.6 Q565.15 261.65 573.65 259.35 581.55 257.15 591.05 259.7 L591 259.7 Q595.45 260.85 599.1 262.75 L601 261.55 600.95 261.55 Q616.5 252 635.9 252 655.35 252 670.9 261.5"/>
+ <path stroke="none" fill="#F095F0" d="M664.3 278.7 Q664.4 274.9 668.3 270.8 673.35 265.75 681.85 263.5 690.2 261.25 697.15 263.15 703.35 264.9 705.1 269.1 L705.85 271.75 Q709.6 285.8 706.3 297.25 L705.9 298.4 Q708.1 288.05 704.85 275.65 L704.05 272.95 Q702.35 268.8 696.1 267 689.15 265.1 680.8 267.35 672.3 269.6 667.25 274.7 665.25 276.7 664.3 278.7 M565.95 298.45 L565.55 297.25 Q562.25 285.8 566 271.8 L566.75 269.1 Q568.45 264.9 574.7 263.2 581.65 261.3 590 263.55 598.5 265.75 603.55 270.85 607.4 274.9 607.55 278.7 606.55 276.75 604.6 274.75 599.55 269.6 591.05 267.4 582.7 265.15 575.75 267.05 569.45 268.8 567.8 272.95 L567 275.7 Q563.7 288.05 565.95 298.45"/>
+ <path stroke="none" fill="#D987D9" d="M565.95 298.45 Q563.7 288.05 567 275.7 L567.8 272.95 Q569.45 268.8 575.75 267.05 582.7 265.15 591.05 267.4 599.55 269.6 604.6 274.75 606.55 276.75 607.55 278.7 L607.45 280 606.75 282.8 605.9 285.7 604.2 290.3 Q603.45 288.7 601.9 287 598.2 283.3 592.1 281.7 586.05 280.05 581.05 281.45 576.55 282.75 575.35 285.8 L574.8 287.65 Q572.1 297.75 574.5 306 L574.95 307.4 Q575.55 309.3 576.5 310.8 L575.7 310.5 Q568.95 307.8 565.95 298.45 M705.9 298.4 Q702.85 307.8 696.1 310.5 L695.35 310.75 Q696.25 309.3 696.85 307.35 L697.35 306 Q699.75 297.75 697.05 287.65 L696.45 285.75 Q695.3 282.7 690.8 281.4 685.75 280 679.75 281.65 673.65 283.3 669.95 286.95 668.35 288.7 667.65 290.25 L665.9 285.7 665.1 282.75 664.4 279.95 664.3 278.7 Q665.25 276.7 667.25 274.7 672.3 269.6 680.8 267.35 689.15 265.1 696.1 267 702.35 268.8 704.05 272.95 L704.85 275.65 Q708.1 288.05 705.9 298.4"/>
+ <path stroke="none" fill="#C97DC9" d="M695.35 310.75 L694.55 311.05 Q690.05 312.2 685.55 310.45 681.5 308.9 677.5 304.95 671.8 299.5 668.2 291.65 L667.65 290.25 Q668.35 288.7 669.95 286.95 673.65 283.3 679.75 281.65 685.75 280 690.8 281.4 695.3 282.7 696.45 285.75 L697.05 287.65 Q699.75 297.75 697.35 306 L696.85 307.35 Q696.25 309.3 695.35 310.75 M604.2 290.3 L603.65 291.65 Q600.05 299.55 594.35 304.95 590.35 308.9 586.3 310.45 581.8 312.2 577.3 311.05 L576.5 310.8 Q575.55 309.3 574.95 307.4 L574.5 306 Q572.1 297.75 574.8 287.65 L575.35 285.8 Q576.55 282.75 581.05 281.45 586.05 280.05 592.1 281.7 598.2 283.3 601.9 287 603.45 288.7 604.2 290.3"/>
+ <path stroke="none" fill="#FFAAFF" d="M571.95 322 L571.9 320 Q571.9 312.15 573.55 304.95 577.45 287.9 590.65 274.75 594.9 270.5 599.5 267.25 L603.05 264.95 Q617.65 256 635.9 256 654.2 256 668.8 264.9 L672.3 267.2 Q676.95 270.5 681.2 274.75 699.9 293.45 699.9 320 L699.9 322 Q699.2 296.75 681.2 278.75 676.8 274.35 672 271 669.2 269.05 666.25 267.45 L663.1 269.95 Q651.85 278 635.9 278 619.95 278 608.65 269.95 L605.55 267.5 Q602.6 269.1 599.8 271.05 595 274.4 590.65 278.75 579 290.35 574.65 304.95 572.2 313 571.95 322"/>
+ <path stroke="none" fill="#EE9FEE" d="M571.95 322 Q572.2 313 574.65 304.95 579 290.35 590.65 278.75 595 274.4 599.8 271.05 602.6 269.1 605.55 267.5 L608.65 269.95 Q619.95 278 635.9 278 651.85 278 663.1 269.95 L666.25 267.45 Q669.2 269.05 672 271 676.8 274.35 681.2 278.75 699.2 296.75 699.9 322 699.45 337.2 692.75 349.85 690.8 353.55 688.3 357 L688.25 357 Q685.1 361.3 681.15 365.25 L676.5 369.55 672.3 372.75 Q656.4 384 635.9 384 615.35 384 599.5 372.8 L595.4 369.65 590.6 365.25 Q583 357.65 578.5 348.8 L572.95 332.1 572.95 331.9 572.75 330.8 572.7 330.55 572.65 330.05 572.55 329.5 572.4 328.25 572.4 328.05 572.3 327.45 572.3 327.2 572.25 327 572.25 326.75 572.2 326.45 572.15 325.8 572.15 325.55 572.1 325.25 571.95 322 M684.4 322.5 Q684.4 317.3 680.75 313.65 677.1 310 671.9 310 666.8 310 663.1 313.65 659.45 317.3 659.45 322.5 659.45 327.65 663.1 331.25 666.8 334.95 671.9 334.95 677.1 334.95 680.75 331.25 684.4 327.65 684.4 322.5 M587.4 322.5 Q587.4 327.65 591.05 331.25 594.7 334.95 599.9 334.95 605 334.95 608.7 331.25 612.35 327.65 612.35 322.5 612.35 317.3 608.7 313.65 605 310 599.9 310 594.7 310 591.05 313.65 587.4 317.3 587.4 322.5"/>
+ <path stroke="none" fill="#FFFFFF" d="M587.4 322.5 Q587.4 317.3 591.05 313.65 594.7 310 599.9 310 605 310 608.7 313.65 612.35 317.3 612.35 322.5 612.35 327.65 608.7 331.25 605 334.95 599.9 334.95 594.7 334.95 591.05 331.25 587.4 327.65 587.4 322.5 M684.4 322.5 Q684.4 327.65 680.75 331.25 677.1 334.95 671.9 334.95 666.8 334.95 663.1 331.25 659.45 327.65 659.45 322.5 659.45 317.3 663.1 313.65 666.8 310 671.9 310 677.1 310 680.75 313.65 684.4 317.3 684.4 322.5 M679.65 322.7 Q679.65 319.1 677.15 316.55 674.65 314.05 671 314.05 667.45 314.05 664.85 316.55 662.35 319.1 662.35 322.7 662.35 326.3 664.85 328.75 667.45 331.3 671 331.3 674.65 331.3 677.15 328.75 679.65 326.3 679.65 322.7 M592.1 322.7 Q592.1 326.3 594.65 328.75 597.15 331.3 600.8 331.3 604.35 331.3 606.9 328.75 609.45 326.3 609.45 322.7 609.45 319.1 606.9 316.55 604.35 314.05 600.8 314.05 597.15 314.05 594.65 316.55 592.1 319.1 592.1 322.7"/>
+ <path stroke="none" fill="#5B5B5B" d="M592.1 322.7 Q592.1 319.1 594.65 316.55 597.15 314.05 600.8 314.05 604.35 314.05 606.9 316.55 609.45 319.1 609.45 322.7 609.45 326.3 606.9 328.75 604.35 331.3 600.8 331.3 597.15 331.3 594.65 328.75 592.1 326.3 592.1 322.7 M679.65 322.7 Q679.65 326.3 677.15 328.75 674.65 331.3 671 331.3 667.45 331.3 664.85 328.75 662.35 326.3 662.35 322.7 662.35 319.1 664.85 316.55 667.45 314.05 671 314.05 674.65 314.05 677.15 316.55 679.65 319.1 679.65 322.7"/>
+ <path stroke="none" fill="#FFC4FF" d="M610 348.55 L609.9 347.45 609.9 346.6 Q609.9 335.8 617.45 328.2 L619.3 326.5 Q626.4 320.6 635.9 320.6 645.4 320.6 652.45 326.55 L654.25 328.2 Q661.9 335.8 661.9 346.6 L661.9 347.45 661.85 348.5 Q661.15 339.05 654.25 332.2 L652.45 330.55 Q645.4 324.6 635.9 324.6 626.4 324.6 619.3 330.5 L617.45 332.2 Q610.65 339.05 610 348.55"/>
+ <path stroke="none" fill="#FFAAFF" d="M610 348.55 Q610.65 339.05 617.45 332.2 L619.3 330.5 Q626.4 324.6 635.9 324.6 645.4 324.6 652.45 330.55 L654.25 332.2 Q661.15 339.05 661.85 348.5 661.55 351.4 660.35 354 658.85 357.2 655.95 359.9 L654.25 361.35 Q646.65 367.4 635.9 367.4 625.1 367.4 617.45 361.35 L615.85 360 Q612.95 357.25 611.45 354.05 610.25 351.45 610 348.55 M654.4 340 Q652.9 338.5 649.95 339.35 L649.7 339.45 Q646.85 340.3 644.35 342.8 L644.2 342.95 Q643.55 343.65 643.2 344.5 642.8 345.4 642.8 346.5 642.8 348.65 644.3 350.15 645.8 351.65 647.95 351.65 650 351.65 651.5 350.25 L651.65 350.1 Q653.7 348.05 654.65 345.8 L655.1 344.5 Q655.75 342.25 655 340.85 L654.4 340 M620.3 350.25 Q621.8 351.65 623.85 351.65 626 351.65 627.5 350.15 629 348.65 629 346.5 629 345.4 628.65 344.5 L627.6 342.95 627.45 342.8 Q624.9 340.25 622.05 339.4 L621.85 339.35 Q618.9 338.5 617.4 340 L616.8 340.85 Q616.05 342.25 616.7 344.5 616.85 345.15 617.15 345.8 618.1 348.05 620.15 350.1 L620.3 350.25"/>
+ <path stroke="none" fill="#AF74AF" d="M620.3 350.25 L620.15 350.1 Q618.1 348.05 617.15 345.8 616.85 345.15 616.7 344.5 616.05 342.25 616.8 340.85 L617.4 340 Q618.9 338.5 621.85 339.35 L622.05 339.4 Q624.9 340.25 627.45 342.8 L627.6 342.95 628.65 344.5 Q629 345.4 629 346.5 629 348.65 627.5 350.15 626 351.65 623.85 351.65 621.8 351.65 620.3 350.25 M654.4 340 L655 340.85 Q655.75 342.25 655.1 344.5 L654.65 345.8 Q653.7 348.05 651.65 350.1 L651.5 350.25 Q650 351.65 647.95 351.65 645.8 351.65 644.3 350.15 642.8 348.65 642.8 346.5 642.8 345.4 643.2 344.5 643.55 343.65 644.2 342.95 L644.35 342.8 Q646.85 340.3 649.7 339.45 L649.95 339.35 Q652.9 338.5 654.4 340"/>
+ <path stroke="none" fill="#000000" fill-opacity="0.10196078431372549" d="M655.95 359.9 L655.5 361 Q653.95 364.25 650.6 366.9 644.5 371.75 635.9 371.75 627.25 371.75 621.1 366.9 617.8 364.3 616.3 361.05 L615.85 360 617.45 361.35 Q625.1 367.4 635.9 367.4 646.65 367.4 654.25 361.35 L655.95 359.9"/>
+ <path stroke="none" fill="#857E7E" d="M991.05 300.55 Q990.9 305.75 989.45 311.2 L989.4 311.25 989.05 312.55 989.05 312.65 Q981.65 338.55 965.1 354.15 955.4 363.35 945.75 366.1 946.9 370.65 946.75 376.3 L946.35 381.9 Q945.75 386.95 944.45 392.7 944.05 394.6 942.6 396.2 L941.5 397 Q940.25 397.85 938.8 398.15 L937.65 398.2 Q932.05 398.2 929.05 389.35 L929.1 389.35 928 386.5 928 386.45 926.6 383.4 926.55 383.35 925.45 381.4 Q920.05 384 914.25 385.6 911.85 396.1 910.4 407.2 L910.3 407.55 Q910.15 411.1 904 413.05 L903.95 413.05 Q900.45 414.1 895.7 414.1 890.95 414.1 887.45 413.05 L887.35 413.05 Q881.35 411.1 881.15 407.55 L881.1 407.1 Q879.8 395.85 877.7 385.75 871.6 384.15 866 381.4 L864.9 383.35 864.85 383.45 863.45 386.45 863.4 386.5 862.35 389.35 Q859.35 398.2 853.8 398.2 L852.65 398.15 Q851.15 397.85 849.9 397 L848.85 396.2 Q847.35 394.6 847 392.7 L847 392.55 846.95 392.45 Q845.7 386.95 845.15 382 844.75 379 844.65 376.3 844.5 370.7 845.7 366.15 L845.7 366.1 845.65 366.1 Q836 363.3 826.3 354.15 809.75 338.55 802.4 312.65 L802.35 312.55 802 311.2 Q800.5 305.75 800.35 300.55 L800.35 300.5 Q800.05 288.6 806.45 277.6 815.55 261.8 833.2 256.95 L833.25 256.95 Q849.25 252.75 863.75 259.8 878.15 252 895.7 252 913.3 252 927.7 259.8 942.15 252.75 958.2 256.95 975.85 261.8 985 277.6 L984.95 277.6 Q991.35 288.6 991.05 300.5 L991.05 300.55 M868.15 380.05 L868.25 379.95 868.15 380.05"/>
+ <path stroke="none" fill="#BDB6B6" d="M924.1 301.75 L923.9 302.6 Q919.6 319.9 923.8 334.2 928.2 349 939.3 351.95 950.4 354.9 961.65 344.3 972.5 334 977.35 316.95 L977.6 316.1 Q980.55 305 974.8 295.05 969.1 285.15 958.05 282.1 946.9 279.2 937 284.95 927.05 290.7 924.1 301.75 M987.05 300.4 Q986.9 305.2 985.55 310.2 L985.2 311.45 Q978.15 336.3 962.35 351.25 946.05 366.7 929.9 362.4 913.75 358.05 907.35 336.55 904.45 326.75 904.35 315.95 904.45 304.75 907.5 292.6 L907.75 291.35 Q912.05 275.25 926.5 266.95 940.95 258.55 957.15 262.8 973.2 267.2 981.5 281.6 986.75 290.65 987.05 300.4 M887.05 315.95 Q886.95 326.75 884.05 336.55 877.65 358.05 861.5 362.4 845.35 366.7 829.05 351.25 813.25 336.3 806.2 311.45 L805.85 310.2 Q804.5 305.2 804.35 300.4 804.65 290.65 809.9 281.6 818.2 267.2 834.25 262.8 850.45 258.55 864.9 266.95 879.35 275.25 883.65 291.35 L883.9 292.6 Q886.95 304.75 887.05 315.95 M867.3 301.75 Q864.35 290.7 854.4 284.95 844.5 279.2 833.35 282.1 822.3 285.15 816.6 295.05 810.85 305 813.8 316.1 L814.05 316.95 Q818.9 334 829.75 344.3 841 354.9 852.1 351.95 863.2 349 867.6 334.2 871.8 319.9 867.5 302.6 L867.3 301.75"/>
+ <path stroke="none" fill="#AFA8A8" d="M867.3 301.75 L867.5 302.6 Q871.8 319.9 867.6 334.2 863.2 349 852.1 351.95 841 354.9 829.75 344.3 818.9 334 814.05 316.95 L813.8 316.1 Q810.85 305 816.6 295.05 822.3 285.15 833.35 282.1 844.5 279.2 854.4 284.95 864.35 290.7 867.3 301.75 M924.1 301.75 Q927.05 290.7 937 284.95 946.9 279.2 958.05 282.1 969.1 285.15 974.8 295.05 980.55 305 977.6 316.1 L977.35 316.95 Q972.5 334 961.65 344.3 950.4 354.9 939.3 351.95 928.2 349 923.8 334.2 919.6 319.9 923.9 302.6 L924.1 301.75"/>
+ <path stroke="none" fill="#DBD9D9" d="M904.35 315.95 Q904.2 303.85 907.5 290.6 L907.75 289.35 Q912.05 273.25 926.5 264.95 940.95 256.55 957.15 260.8 973.2 265.2 981.5 279.6 987.3 289.6 987.05 300.4 986.75 290.65 981.5 281.6 973.2 267.2 957.15 262.8 940.95 258.55 926.5 266.95 912.05 275.25 907.75 291.35 L907.5 292.6 Q904.45 304.75 904.35 315.95 M887.05 315.95 Q886.95 304.75 883.9 292.6 L883.65 291.35 Q879.35 275.25 864.9 266.95 850.45 258.55 834.25 262.8 818.2 267.2 809.9 281.6 804.65 290.65 804.35 300.4 804.1 289.6 809.9 279.6 818.2 265.2 834.25 260.8 850.45 256.55 864.9 264.95 879.35 273.25 883.65 289.35 L883.9 290.6 Q887.2 303.85 887.05 315.95"/>
+ <path stroke="none" fill="#DBD9D9" d="M959.7 322 Q959 296.75 941 278.75 936.6 274.35 931.8 271 929 269.05 926.05 267.45 L922.9 269.95 Q911.65 278 895.7 278 879.75 278 868.45 269.95 L865.35 267.5 Q862.4 269.1 859.6 271.05 854.8 274.4 850.45 278.75 832.4 296.75 831.75 322 L831.7 320 Q831.7 293.45 850.45 274.75 854.7 270.5 859.3 267.25 861.05 266.05 862.85 264.95 877.45 256 895.7 256 914 256 928.6 264.9 L932.1 267.2 Q936.75 270.5 941 274.75 959.7 293.45 959.7 320 L959.7 322"/>
+ <path stroke="none" fill="#D2D0D0" d="M959.7 322 Q959.25 337.2 952.55 349.85 950.6 353.55 948.1 357 L948.05 357 Q944.9 361.3 940.95 365.25 L936.3 369.55 Q934.25 371.25 932.1 372.75 916.2 384 895.7 384 875.15 384 859.3 372.8 L855.2 369.65 850.4 365.25 Q842.8 357.65 838.3 348.8 L832.75 332.1 832.75 331.9 832.55 330.8 832.5 330.55 832.45 330.05 832.35 329.5 832.2 328.25 832.2 328.05 832.1 327.45 832.1 327.2 832.05 327 832.05 326.75 832 326.45 831.95 325.8 831.95 325.55 831.9 325.25 831.75 322 Q832.4 296.75 850.45 278.75 854.8 274.4 859.6 271.05 862.4 269.1 865.35 267.5 L868.45 269.95 Q879.75 278 895.7 278 911.65 278 922.9 269.95 L926.05 267.45 Q929 269.05 931.8 271 936.6 274.35 941 278.75 959 296.75 959.7 322"/>
+ <path stroke="none" fill="#FFFCF5" d="M853.35 394.2 Q852.55 394.05 851.9 393.5 L851.75 393.45 Q851.05 392.7 850.9 391.8 849.65 386.35 849.1 381.5 L848.65 376.15 Q848.05 356.55 866.25 350.85 869.7 354 871.45 357.55 L872.1 359.05 869.2 361.95 Q855.85 375.75 853.75 390.3 L853.35 394.2 M938.05 394.2 L937.7 390.3 Q935.55 375.75 922.2 361.95 L919.3 359.05 920 357.55 Q921.7 354 925.15 350.85 943.35 356.55 942.75 376.15 L942.35 381.45 Q941.8 386.3 940.5 391.8 940.35 392.7 939.65 393.45 L939.5 393.5 Q938.85 394.05 938.05 394.2"/>
+ <path stroke="none" fill="#CDCBCB" d="M872.1 359.05 L871.45 357.55 Q869.7 354 866.25 350.85 871.55 349.05 873.75 342.5 L881.2 356.35 883.3 360.15 883.3 360.25 883.25 360.45 883.2 360.5 882.85 361.95 882.8 362 881.75 363 880.9 363.6 876.4 366.15 Q874.65 367.1 873.1 368.2 873.65 363.3 872.1 359.05 M918.3 368.2 L915 366.15 910.55 363.6 909.65 363 908.6 362 908.55 361.95 Q908.15 361.25 908.2 360.5 L908.15 360.45 908.1 360.25 908.1 360.15 910.2 356.35 917.65 342.5 Q919.85 349.05 925.15 350.85 921.7 354 920 357.55 L919.3 359.05 Q917.75 363.3 918.3 368.2"/>
+ <path stroke="none" fill="#F0EDE7" d="M918.3 368.2 Q917.75 363.3 919.3 359.05 L922.2 361.95 Q935.55 375.75 937.7 390.3 L938.05 394.2 Q934.8 393.85 932.85 388.05 L931.7 384.95 930.1 381.5 Q928.55 378.6 926.7 376.15 923.85 372.3 920.15 369.45 L918.3 368.2 M853.35 394.2 L853.75 390.3 Q855.85 375.75 869.2 361.95 L872.1 359.05 Q873.65 363.3 873.1 368.2 L871.25 369.45 Q867.4 372.45 864.45 376.45 862.75 378.8 861.35 381.5 860.45 383.15 859.7 384.95 L858.55 388.05 Q856.6 393.85 853.35 394.2 M881.2 356.35 L882.9 359 882.95 359 883.3 360.15 881.2 356.35 M908.1 360.15 Q908.2 359.45 908.45 359 L908.5 359 Q909.3 357.55 910.2 356.35 L908.1 360.15"/>
+ <path stroke="none" fill="#000000" fill-opacity="0.050980392156862744" d="M880.9 363.6 L881.2 364 882.9 365.85 882.95 365.85 883.3 366.65 883.3 366.7 883.25 366.85 883.2 366.85 882.85 367.9 882.8 367.9 881.75 368.6 876.4 370.8 Q874.65 371.45 873.1 372.25 872.15 372.6 871.25 373.1 868.15 374.75 865.65 376.9 L864.45 376.45 Q867.4 372.45 871.25 369.45 L873.1 368.2 Q874.65 367.1 876.4 366.15 L880.9 363.6 M918.3 368.2 L920.15 369.45 Q923.85 372.3 926.7 376.15 L925.6 376.8 Q923.15 374.7 920.15 373.1 919.25 372.6 918.3 372.25 916.75 371.45 915 370.8 L909.65 368.6 908.6 367.9 908.55 367.9 Q908.15 367.4 908.2 366.85 L908.15 366.85 908.1 366.7 908.1 366.65 Q908.2 366.15 908.45 365.85 L908.5 365.85 910.2 364 910.55 363.6 915 366.15 918.3 368.2"/>
+ <path stroke="none" fill="#E7E5E5" d="M871.6 352.85 L871.2 351.5 Q869 342.6 875.4 335.3 883 327 895.7 327 908.45 327 915.85 335.3 922.45 342.6 920.15 351.5 L919.85 352.85 Q918.6 350.5 915.85 348.35 908.45 342.55 895.7 342.55 883 342.55 875.4 348.35 872.7 350.5 871.6 352.85"/>
+ <path stroke="none" fill="#DBD9D9" d="M871.6 352.85 Q872.7 350.5 875.4 348.35 883 342.55 895.7 342.55 908.45 342.55 915.85 348.35 918.6 350.5 919.85 352.85 914.3 367.35 910.7 383 908 394.5 906.4 406.65 906.05 408.2 902.8 409.2 899.8 410.1 895.7 410.1 891.6 410.1 888.55 409.2 885.4 408.2 885.05 406.65 883.6 394.1 881.2 383 877.5 366.25 871.6 352.85 M883.55 359 L883.5 359 Q896.2 364.85 907.9 359 L907.95 358.95 Q908.65 358.65 908.9 357.85 L908.9 357.95 Q909.15 357.25 908.9 356.65 908.65 355.85 907.95 355.55 L907.9 355.55 Q896.25 349.6 883.55 355.5 882.7 355.8 882.5 356.65 882.25 357.25 882.5 357.95 882.75 358.65 883.55 359"/>
+ <path stroke="none" fill="#CDCBCB" d="M883.55 359 Q882.75 358.65 882.5 357.95 882.25 357.25 882.5 356.65 882.7 355.8 883.55 355.5 896.25 349.6 907.9 355.55 L907.95 355.55 Q908.65 355.85 908.9 356.65 909.15 357.25 908.9 357.95 L908.9 357.85 Q908.65 358.65 907.95 358.95 L907.9 359 Q896.2 364.85 883.5 359 L883.55 359"/>
+ <path stroke="none" fill="#FFFFFF" d="M854.65 330.5 Q854.65 333.05 856.45 334.85 858.3 336.65 860.95 336.65 863.5 336.65 865.4 334.85 867.25 333.05 867.25 330.5 867.25 327.85 865.4 326.05 863.5 324.2 860.95 324.2 858.3 324.2 856.45 326.05 854.65 327.85 854.65 330.5 M849.15 329.3 Q849.15 325.1 852.1 322.2 855.05 319.25 859.2 319.25 863.3 319.25 866.3 322.2 869.2 325.1 869.2 329.3 869.2 333.45 866.3 336.3 863.3 339.3 859.2 339.3 855.05 339.3 852.1 336.3 849.15 333.45 849.15 329.3 M942.25 329.3 Q942.25 333.45 939.3 336.3 936.35 339.3 932.2 339.3 928.1 339.3 925.1 336.3 922.2 333.45 922.2 329.3 922.2 325.1 925.1 322.2 928.1 319.25 932.2 319.25 936.35 319.25 939.3 322.2 942.25 325.1 942.25 329.3 M936.75 330.5 Q936.75 327.85 934.95 326.05 933.1 324.2 930.45 324.2 927.9 324.2 926 326.05 924.15 327.85 924.15 330.5 924.15 333.05 926 334.85 927.9 336.65 930.45 336.65 933.1 336.65 934.95 334.85 936.75 333.05 936.75 330.5"/>
+ <path stroke="none" fill="#5B5B5B" d="M936.75 330.5 Q936.75 333.05 934.95 334.85 933.1 336.65 930.45 336.65 927.9 336.65 926 334.85 924.15 333.05 924.15 330.5 924.15 327.85 926 326.05 927.9 324.2 930.45 324.2 933.1 324.2 934.95 326.05 936.75 327.85 936.75 330.5 M854.65 330.5 Q854.65 327.85 856.45 326.05 858.3 324.2 860.95 324.2 863.5 324.2 865.4 326.05 867.25 327.85 867.25 330.5 867.25 333.05 865.4 334.85 863.5 336.65 860.95 336.65 858.3 336.65 856.45 334.85 854.65 333.05 854.65 330.5"/>
+ <path stroke="none" fill="#857E7E" d="M1099.25 225 Q1098.6 206.75 1108.35 204.9 1117.8 201.5 1131.7 218.8 L1132 219.25 Q1142.7 237.25 1145.65 252.1 L1149.5 252 1153.35 252.1 Q1156.25 237.25 1167.05 219.25 L1167.35 218.8 Q1181.2 201.5 1190.65 204.9 L1190.7 204.9 Q1200.4 206.75 1199.75 225 L1199.55 228.65 Q1198.05 245.95 1198.05 257.7 L1198.1 258.1 1198.1 258.65 1198.05 261.8 1198.05 269.8 1197.9 270.9 1197.6 271.9 1197.65 271.95 Q1217.5 291.8 1217.5 320 L1217.5 322 1217.5 322.1 Q1216.75 348.95 1197.65 368.1 1187.25 378.45 1174.7 383.45 L1174.65 383.45 Q1163.05 388 1149.5 388 1136 388 1124.45 383.45 1111.8 378.45 1101.45 368.1 1082.25 349 1081.55 322.2 L1081.5 320 Q1081.5 291.8 1101.45 271.95 L1101.1 270.9 Q1100.95 270.35 1100.95 269.8 L1100.95 261.8 1100.9 258.65 1100.95 258.1 1100.95 257.7 Q1100.95 245.95 1099.5 228.65 L1099.25 225"/>
+ <path stroke="none" fill="#A8A1A1" d="M1110.15 278.1 L1110.15 273.9 Q1110.15 263.75 1108.85 248.85 1107.6 233.95 1113.9 232.2 1120.25 230.45 1130.25 242.9 1139.25 258.05 1141.55 270.45 L1140 273.4 Q1135.9 279.9 1128.2 282 1120.5 284.05 1113.65 280.45 L1110.15 278.1 M1188.85 278.1 L1185.35 280.45 Q1178.5 284.05 1170.8 282 1163.1 279.9 1159 273.4 1158.05 271.95 1157.45 270.45 1159.75 258.05 1168.75 242.9 1178.75 230.45 1185.1 232.2 1191.4 233.95 1190.15 248.85 1188.85 263.75 1188.85 273.9 L1188.85 278.1"/>
+ <path stroke="none" fill="#BDB6B6" d="M1188.85 278.1 L1188.85 273.9 Q1188.85 263.75 1190.15 248.85 1191.4 233.95 1185.1 232.2 1178.75 230.45 1168.75 242.9 1159.75 258.05 1157.45 270.45 1156.65 268.5 1156.4 266.55 L1156.3 265.4 Q1156.95 247.95 1170.45 225.3 1182.15 210.7 1189.6 212.75 1195.25 214.3 1195.75 224.85 L1195.55 228.3 Q1194.05 245.8 1194.05 257.7 L1194.1 258.55 1194.05 261.7 1194.05 269.8 Q1192.65 274.85 1188.85 278.1 M1103.25 224.85 Q1103.75 214.3 1109.4 212.75 1116.85 210.7 1128.55 225.3 1142.05 247.95 1142.7 265.4 L1142.6 266.55 Q1142.35 268.5 1141.55 270.45 1139.25 258.05 1130.25 242.9 1120.25 230.45 1113.9 232.2 1107.6 233.95 1108.85 248.85 1110.15 263.75 1110.15 273.9 L1110.15 278.1 Q1106.35 274.85 1104.95 269.8 L1104.95 261.7 1104.9 258.55 1104.95 257.7 Q1104.95 245.8 1103.45 228.3 L1103.25 224.85"/>
+ <path stroke="none" fill="#CBC3C3" d="M1103.25 224.85 Q1102.75 210.6 1109.4 208.75 1116.85 206.7 1128.55 221.3 1143.65 246.6 1142.7 265.4 1142.05 247.95 1128.55 225.3 1116.85 210.7 1109.4 212.75 1103.75 214.3 1103.25 224.85 M1156.3 265.4 Q1155.35 246.6 1170.45 221.3 1182.15 206.7 1189.6 208.75 1196.25 210.6 1195.75 224.85 1195.25 214.3 1189.6 212.75 1182.15 210.7 1170.45 225.3 1156.95 247.95 1156.3 265.4"/>
+ <path stroke="none" fill="#DBD9D9" d="M1085.55 322 L1085.5 320 Q1085.5 293.45 1104.25 274.75 1111.65 267.35 1120.25 262.9 1133.45 256 1149.5 256 1165.55 256 1178.8 262.85 1187.4 267.35 1194.8 274.75 1213.5 293.45 1213.5 320 L1213.5 322 Q1212.8 296.75 1194.8 278.75 1186.4 270.35 1176.45 265.7 L1172.45 269.1 Q1162.95 276 1149.5 276 1136.05 276 1126.5 269.1 1124.25 267.5 1122.6 265.75 1112.65 270.35 1104.25 278.75 1086.2 296.75 1085.55 322"/>
+ <path stroke="none" fill="#D2D0D0" d="M1085.55 322 Q1086.2 296.75 1104.25 278.75 1112.65 270.35 1122.6 265.75 1124.25 267.5 1126.5 269.1 1136.05 276 1149.5 276 1162.95 276 1172.45 269.1 L1176.45 265.7 Q1186.4 270.35 1194.8 278.75 1212.8 296.75 1213.5 322 1212.8 347.25 1194.8 365.25 1185.05 375 1173.2 379.7 1163 359.75 1149.5 359.75 1136.1 359.75 1125.9 379.7 1114 375 1104.25 365.25 1086.2 347.25 1085.55 322"/>
+ <path stroke="none" fill="#E5E3E3" d="M1173.2 379.7 Q1162.25 384 1149.5 384 1136.8 384 1125.9 379.7 1136.1 359.75 1149.5 359.75 1163 359.75 1173.2 379.7"/>
+ <path stroke="none" fill="#FFFFFF" d="M1184.25 305.25 Q1184.25 301.95 1182 299.8 1179.75 297.65 1176.6 297.65 1173.5 297.65 1171.15 299.8 1168.9 301.95 1168.9 305.25 1168.9 308.4 1171.15 310.55 1173.5 312.85 1176.6 312.85 1179.75 312.85 1182 310.55 1184.25 308.4 1184.25 305.25 M1108.9 305 Q1108.9 299.95 1112.5 296.4 1116.1 292.9 1121.1 292.9 1126.1 292.9 1129.8 296.4 1133.3 299.95 1133.3 305 1133.3 310.05 1129.8 313.5 1126.1 317.15 1121.1 317.15 1116.1 317.15 1112.5 313.5 1108.9 310.05 1108.9 305 M1114.85 305.25 Q1114.85 308.4 1117.1 310.55 1119.25 312.85 1122.45 312.85 1125.6 312.85 1127.85 310.55 1130.1 308.4 1130.1 305.25 1130.1 301.95 1127.85 299.8 1125.6 297.65 1122.45 297.65 1119.25 297.65 1117.1 299.8 1114.85 301.95 1114.85 305.25 M1190.1 305 Q1190.1 310.05 1186.6 313.5 1183 317.15 1177.9 317.15 1172.9 317.15 1169.35 313.5 1165.75 310.05 1165.75 305 1165.75 299.95 1169.35 296.4 1172.9 292.9 1177.9 292.9 1183 292.9 1186.6 296.4 1190.1 299.95 1190.1 305"/>
+ <path stroke="none" fill="#5B5B5B" d="M1114.85 305.25 Q1114.85 301.95 1117.1 299.8 1119.25 297.65 1122.45 297.65 1125.6 297.65 1127.85 299.8 1130.1 301.95 1130.1 305.25 1130.1 308.4 1127.85 310.55 1125.6 312.85 1122.45 312.85 1119.25 312.85 1117.1 310.55 1114.85 308.4 1114.85 305.25 M1184.25 305.25 Q1184.25 308.4 1182 310.55 1179.75 312.85 1176.6 312.85 1173.5 312.85 1171.15 310.55 1168.9 308.4 1168.9 305.25 1168.9 301.95 1171.15 299.8 1173.5 297.65 1176.6 297.65 1179.75 297.65 1182 299.8 1184.25 301.95 1184.25 305.25"/>
+ <path stroke="none" fill="#FFFFFF" d="M1142.65 349.15 Q1139.35 350.7 1135.45 350.7 1128.5 350.7 1123.55 345.75 1118.65 340.85 1118.65 333.9 1118.65 326.9 1123.55 322 1128.5 317.05 1135.45 317.05 L1163.95 317.05 Q1170.65 317.2 1175.4 322 1180.35 326.9 1180.35 333.9 1180.35 340.85 1175.4 345.75 1170.5 350.7 1163.5 350.7 1159.6 350.7 1156.35 349.15 1153.8 347.95 1151.6 345.75 L1149.5 343.25 1147.35 345.75 Q1145.2 347.95 1142.65 349.15"/>
+ <path stroke="none" fill="#A8A1A1" d="M1142.65 349.15 Q1145.2 347.95 1147.35 345.75 L1149.5 343.25 1151.6 345.75 Q1153.8 347.95 1156.35 349.15 1153.25 350.7 1149.5 350.7 1145.75 350.7 1142.65 349.15"/>
+ <path stroke="none" fill="#FFC4FF" d="M1137.6 316.3 L1137.5 314.7 1137.5 313.8 Q1137.75 311.55 1141.1 309.9 1144.8 308.15 1150 308.15 1155.15 308.15 1158.8 309.9 1162.15 311.55 1162.45 313.8 L1162.5 314.7 1162.4 316.45 Q1161.9 314.4 1158.8 312.9 1155.15 311.15 1150 311.15 1144.8 311.15 1141.1 312.9 1138.1 314.35 1137.6 316.3"/>
+ <path stroke="none" fill="#FFAAFF" d="M1137.6 316.3 Q1138.1 314.35 1141.1 312.9 1144.8 311.15 1150 311.15 1155.15 311.15 1158.8 312.9 1161.9 314.4 1162.4 316.45 1161.85 320.5 1158.8 323.45 1155.15 327.15 1150 327.15 1144.8 327.15 1141.1 323.45 1138.1 320.45 1137.6 316.3"/>
+ <path stroke="none" fill="#A8A1A1" d="M1110.05 322.3 Q1110.1 321.95 1110.3 321.8 L1110.8 321.5 Q1119.35 319.85 1129.15 325.2 L1129.6 325.7 1129.6 326.3 1129.3 326.85 1128.7 327.05 Q1120 326.6 1110.3 328.1 L1109.8 328 1109.35 327.55 1109.35 326.95 1110.05 322.3 M1113.6 334.45 L1113.6 334 1113.9 333.6 Q1119.45 329.55 1128.3 330.05 L1128.8 330.25 1129 330.7 1129 331.2 1128.6 331.55 Q1121.35 333.55 1115.75 338.5 L1115.3 338.6 1114.85 338.45 1114.65 338.05 1113.6 334.45 M1185.4 334.45 L1184.35 338.05 1184.15 338.45 1183.7 338.6 1183.25 338.5 Q1177.65 333.55 1170.4 331.55 L1170 331.2 1170 330.7 1170.2 330.25 1170.7 330.05 Q1179.55 329.55 1185.1 333.6 L1185.4 334 1185.4 334.45 M1188.95 322.3 L1189.65 326.95 1189.65 327.55 1189.2 328 1188.7 328.1 Q1179 326.6 1170.3 327.05 L1169.7 326.85 Q1169.4 326.6 1169.4 326.3 L1169.4 325.7 Q1169.55 325.4 1169.85 325.2 1179.65 319.85 1188.2 321.5 L1188.7 321.8 1188.95 322.3"/>
+ <path stroke="none" fill="#233B43" d="M196.6 511.8 L196.6 512.2 196.6 512.4 196.6 512.85 196.5 514.65 196.5 514.85 196.45 515.25 196.45 515.55 196.35 516.85 196.35 516.9 Q195.35 529.05 190.45 539.6 197.25 547.65 199.6 556.55 L199.65 556.6 Q201.05 561.9 200.5 566.1 199.8 571.7 196.05 575.45 L193.2 577.7 193 577.8 192.1 578.3 Q186.3 581.4 177.25 579 169.45 576.95 162.3 571.4 L162.35 571.45 161.75 571 Q146.25 580 127.1 580 108.55 580 93.6 571.55 L92.85 572.15 92.8 572.15 Q86.05 577.05 78.8 579 71 581.05 65.75 579.05 L65.65 579.05 63.05 577.8 63 577.8 60 575.45 Q56.2 571.7 55.55 566.1 54.95 561.9 56.4 556.6 L56.4 556.55 Q58.55 548.5 64.5 541.05 59 529.9 57.9 517 L57.75 515 57.65 513 57.65 512.9 57.6 511.8 57.6 510.5 57.65 508.45 Q58.35 480.95 77.95 461.35 91.9 447.4 109.8 443.05 111.7 435.45 114.55 429.85 L114.55 429.9 Q120.45 417.9 128.05 418.5 135.6 417.9 141.55 429.9 144.35 435.6 146.35 443.55 152.35 445.2 157.9 448 167.8 452.9 176.25 461.35 193.85 478.95 196.25 502.85 L196.25 502.9 196.6 508.4 196.6 508.55 196.6 510.5 196.6 511.8"/>
+ <path stroke="none" fill="#C3DCE9" d="M93.2 566.7 Q87.75 563.35 82.8 558.8 L80.75 556.8 Q76.75 552.8 73.65 548.5 L72.35 546.65 69.25 541.55 Q63 530.15 61.85 516.65 L61.85 516.55 61.75 514.8 61.65 512.8 61.65 512.7 61.65 512.55 61.85 512.7 62.25 512.9 62.85 513.25 63.45 513.6 Q89.8 528.65 127.1 528.65 164.4 528.65 190.75 513.6 L192 512.9 192.4 512.7 192.6 512.6 192.5 514.4 192.45 515.25 192.35 516.55 Q191.3 529.35 185.65 540.3 L182.7 545.45 181.9 546.65 Q178.25 551.95 173.4 556.8 L171.4 558.75 Q166.95 562.9 162.1 566.05 146.65 576 127.1 576 108.2 576 93.2 566.7"/>
+ <path stroke="none" fill="#D5F0FF" d="M61.85 508.7 L62.25 508.9 62.85 509.25 63.45 509.6 Q89.8 524.65 127.1 524.65 164.4 524.65 190.75 509.6 L192 508.9 192.4 508.7 192.6 508.55 192.6 510.5 192.6 511.8 192.6 512.2 192.6 512.6 192.4 512.7 192 512.9 190.75 513.6 Q164.4 528.65 127.1 528.65 89.8 528.65 63.45 513.6 L62.85 513.25 62.25 512.9 61.85 512.7 61.65 512.55 61.65 512.7 61.6 511.8 61.6 510.5 61.65 508.55 61.85 508.7"/>
+ <path stroke="none" fill="#365A66" d="M61.85 508.7 Q63.7 485.25 80.75 468.15 94.8 454.15 113.1 450.4 L115.5 449.95 127.1 449 Q134.15 449 140.65 450.3 L143 450.8 Q149.85 452.45 156.1 455.55 165.45 460.2 173.4 468.15 190 484.75 192.25 507.25 L192.4 508.7 192 508.9 190.75 509.6 Q164.4 524.65 127.1 524.65 89.8 524.65 63.45 509.6 L62.85 509.25 62.25 508.9 61.85 508.7"/>
+ <path stroke="none" fill="#48798A" d="M61.85 508.7 L61.65 508.55 Q62.3 482.65 80.75 464.15 94.8 450.15 113.1 446.4 L114.15 446.2 115.5 445.95 127.1 445 Q134.15 445 140.65 446.3 L141.95 446.6 143 446.8 Q149.85 448.45 156.1 451.55 165.45 456.2 173.4 464.15 190 480.75 192.25 503.25 L192.6 508.55 192.4 508.7 192.25 507.25 Q190 484.75 173.4 468.15 165.45 460.2 156.1 455.55 149.85 452.45 143 450.8 L140.65 450.3 Q134.15 449 127.1 449 L115.5 449.95 113.1 450.4 Q94.8 454.15 80.75 468.15 63.7 485.25 61.85 508.7"/>
+ <path stroke="none" fill="#39606D" d="M185.65 540.3 L186.95 541.7 Q193.5 549.25 195.75 557.6 196.95 562.1 196.5 565.6 196 569.8 193.2 572.6 192.15 573.65 190.95 574.35 193.05 570.8 192.5 565.6 L191.75 561.6 Q189.7 554.05 184.1 547.15 L182.7 545.45 185.65 540.3 M65.05 574.35 L62.8 572.6 Q60 569.8 59.5 565.6 59.05 562.1 60.25 557.6 62.3 550.05 67.95 543.1 L69.25 541.55 72.35 546.65 70.9 548.4 Q66.1 554.75 64.25 561.6 63.7 563.7 63.5 565.6 62.95 570.75 65.05 574.35 M141.95 446.6 Q140.25 440.35 137.95 435.65 133.4 426.5 128.05 426.5 122.65 426.5 118.1 435.65 115.8 440.2 114.15 446.2 L113.1 446.4 Q115.05 437.75 118.1 431.65 122.65 422.5 128.05 422.5 133.4 422.5 137.95 431.65 141 437.85 143 446.8 L141.95 446.6"/>
+ <path stroke="none" fill="#2F4E58" d="M141.95 446.6 L140.65 446.3 Q134.15 445 127.1 445 L115.5 445.95 114.15 446.2 Q115.8 440.2 118.1 435.65 122.65 426.5 128.05 426.5 133.4 426.5 137.95 435.65 140.25 440.35 141.95 446.6 M190.95 574.35 L190.3 574.7 Q185.6 577.05 178.25 575.1 171.2 573.25 164.75 568.25 L162.85 566.7 162.1 566.05 Q166.95 562.9 171.4 558.75 L173.4 556.8 Q178.25 551.95 181.9 546.65 L182.7 545.45 184.1 547.15 Q189.7 554.05 191.75 561.6 L192.5 565.6 Q193.05 570.8 190.95 574.35 M93.2 566.7 L92.35 567.4 90.45 568.9 Q84.35 573.35 77.75 575.1 71.35 576.8 67 575.25 65.95 574.9 65.05 574.35 62.95 570.75 63.5 565.6 63.7 563.7 64.25 561.6 66.1 554.75 70.9 548.4 L72.35 546.65 73.65 548.5 Q76.75 552.8 80.75 556.8 L82.8 558.8 Q87.75 563.35 93.2 566.7"/>
+ <path stroke="none" fill="#FFFFFF" d="M167.2 498.35 Q164.4 501.1 160.45 501.1 156.45 501.1 153.65 498.3 150.9 495.55 150.85 491.5 150.85 487.6 153.65 484.85 156.45 482 160.4 481.95 164.4 482.05 167.15 484.8 169.95 487.6 170 491.55 170 495.5 167.2 498.35 M162.85 496.55 Q164.65 494.75 164.65 492.35 164.65 489.8 162.9 488.05 161.15 486.3 158.6 486.3 156.15 486.25 154.35 488.05 L153.95 488.45 Q152.6 490.05 152.65 492.2 152.7 494.75 154.45 496.5 156.2 498.25 158.7 498.25 160.8 498.25 162.4 496.95 L162.85 496.55"/>
+ <path stroke="none" fill="#5B5B5B" d="M162.85 496.55 L162.4 496.95 Q160.8 498.25 158.7 498.25 156.2 498.25 154.45 496.5 152.7 494.75 152.65 492.2 152.6 490.05 153.95 488.45 L154.35 488.05 Q156.15 486.25 158.6 486.3 161.15 486.3 162.9 488.05 164.65 489.8 164.65 492.35 164.65 494.75 162.85 496.55"/>
+ <path stroke="none" fill="#C3DCE9" d="M169.45 480.85 Q176.55 488.15 178.8 496.05 180.95 504.05 176.95 508.05 172.85 512.15 164.9 509.95 156.9 507.8 149.7 500.55 L149.5 500.2 Q145.55 496.3 145.55 490.65 145.6 484.9 149.6 480.85 153.7 476.75 159.5 476.75 165.05 476.8 169.05 480.55 L169.45 480.85 M167.2 498.35 Q170 495.5 170 491.55 169.95 487.6 167.15 484.8 164.4 482.05 160.4 481.95 156.45 482 153.65 484.85 150.85 487.6 150.85 491.5 150.9 495.55 153.65 498.3 156.45 501.1 160.45 501.1 164.4 501.1 167.2 498.35"/>
+ <path stroke="none" fill="#C3DCE9" d="M84.65 480.85 L85.05 480.55 Q89.05 476.8 94.6 476.75 100.4 476.75 104.5 480.85 108.5 484.9 108.55 490.65 108.55 496.3 104.6 500.2 L104.4 500.55 Q97.2 507.8 89.2 509.95 81.25 512.15 77.15 508.05 73.15 504.05 75.3 496.05 77.55 488.15 84.65 480.85 M86.9 498.35 Q89.7 501.1 93.65 501.1 97.65 501.1 100.45 498.3 103.2 495.55 103.25 491.5 103.25 487.6 100.45 484.85 97.65 482 93.7 481.95 89.7 482.05 86.95 484.8 84.15 487.6 84.1 491.55 84.1 495.5 86.9 498.35"/>
+ <path stroke="none" fill="#FFFFFF" d="M86.9 498.35 Q84.1 495.5 84.1 491.55 84.15 487.6 86.95 484.8 89.7 482.05 93.7 481.95 97.65 482 100.45 484.85 103.25 487.6 103.25 491.5 103.2 495.55 100.45 498.3 97.65 501.1 93.65 501.1 89.7 501.1 86.9 498.35 M91.25 496.55 L91.7 496.95 Q93.3 498.25 95.4 498.25 97.9 498.25 99.65 496.5 101.4 494.75 101.45 492.2 101.5 490.05 100.15 488.45 L99.75 488.05 Q97.95 486.25 95.5 486.3 92.95 486.3 91.2 488.05 89.45 489.8 89.45 492.35 89.45 494.75 91.25 496.55"/>
+ <path stroke="none" fill="#5B5B5B" d="M91.25 496.55 Q89.45 494.75 89.45 492.35 89.45 489.8 91.2 488.05 92.95 486.3 95.5 486.3 97.95 486.25 99.75 488.05 L100.15 488.45 Q101.5 490.05 101.45 492.2 101.4 494.75 99.65 496.5 97.9 498.25 95.4 498.25 93.3 498.25 91.7 496.95 L91.25 496.55"/>
+ <path stroke="none" fill="#989898" d="M316 514.2 L315.95 512 Q315.95 483.85 335.9 463.95 346 453.8 358.25 448.85 359.2 446.95 360.65 445.3 L360.5 442.95 Q360.5 436.2 365.2 431.45 L365.25 431.4 Q370 426.7 376.75 426.7 380.7 426.7 383.95 428.35 387.2 426.7 391.2 426.7 397.9 426.7 402.65 431.4 L402.7 431.45 Q407.4 436.2 407.4 442.95 L407.25 445.25 Q408.7 446.95 409.75 448.9 421.9 453.85 432 463.95 451.95 483.85 451.95 512 L451.95 514 451.95 514.1 Q451.2 540.8 432 560 L432 560.05 Q427.85 564.2 423.35 567.5 406.15 580 383.95 580 360.15 580 342.25 565.7 L342.2 565.7 335.9 560.05 Q316.7 540.85 316 514.2"/>
+ <path stroke="none" fill="#FFFFFF" d="M320 514 L319.95 512 Q319.95 485.5 338.7 466.75 357.45 448 383.95 448 410.4 448 429.15 466.75 447.95 485.5 447.95 512 L447.95 514 Q447.25 488.8 429.15 470.75 410.4 452 383.95 452 357.45 452 338.7 470.75 320.65 488.8 320 514 M421 564.25 Q404.85 576 383.95 576 361.55 576 344.7 562.55 L345.95 560.25 Q361.05 533.9 382.4 533.9 403.75 533.9 418.8 560.25 L421 564.25"/>
+ <path stroke="none" fill="#F0F0F0" d="M421 564.25 L418.8 560.25 Q403.75 533.9 382.4 533.9 361.05 533.9 345.95 560.25 L344.7 562.55 338.7 557.2 Q320.65 539.15 320 514 320.65 488.8 338.7 470.75 357.45 452 383.95 452 410.4 452 429.15 470.75 447.25 488.8 447.95 514 447.25 539.15 429.15 557.2 425.25 561.15 421 564.25"/>
+ <path stroke="none" fill="#FFFFFF" d="M435.2 515 Q435.2 520.7 431.15 524.6 427.1 528.7 421.4 528.7 415.8 528.7 411.65 524.6 407.7 520.7 407.7 515 407.7 509.25 411.65 505.25 415.8 501.2 421.4 501.2 427.1 501.2 431.15 505.25 435.2 509.25 435.2 515 M427.65 514.9 Q427.65 511.25 425.2 508.8 422.65 506.25 419 506.25 415.5 506.25 412.9 508.8 410.35 511.25 410.35 514.9 L410.4 515.75 Q410.65 518.7 412.9 520.85 415.5 523.35 419 523.35 422.65 523.35 425.2 520.85 427.35 518.7 427.6 515.75 L427.65 514.9"/>
+ <path stroke="none" fill="#5B5B5B" d="M427.65 514.9 L427.6 515.75 Q427.35 518.7 425.2 520.85 422.65 523.35 419 523.35 415.5 523.35 412.9 520.85 410.65 518.7 410.4 515.75 L410.35 514.9 Q410.35 511.25 412.9 508.8 415.5 506.25 419 506.25 422.65 506.25 425.2 508.8 427.65 511.25 427.65 514.9"/>
+ <path stroke="none" fill="#5B5B5B" d="M340.25 514.9 Q340.25 511.25 342.7 508.8 345.25 506.25 348.9 506.25 352.4 506.25 355 508.8 357.55 511.25 357.55 514.9 L357.5 515.75 Q357.25 518.7 355 520.85 352.4 523.35 348.9 523.35 345.25 523.35 342.7 520.85 340.55 518.7 340.3 515.75 L340.25 514.9"/>
+ <path stroke="none" fill="#FFFFFF" d="M340.25 514.9 L340.3 515.75 Q340.55 518.7 342.7 520.85 345.25 523.35 348.9 523.35 352.4 523.35 355 520.85 357.25 518.7 357.5 515.75 L357.55 514.9 Q357.55 511.25 355 508.8 352.4 506.25 348.9 506.25 345.25 506.25 342.7 508.8 340.25 511.25 340.25 514.9 M332.7 515 Q332.7 509.25 336.75 505.25 340.8 501.2 346.5 501.2 352.1 501.2 356.25 505.25 360.2 509.25 360.2 515 360.2 520.7 356.25 524.6 352.1 528.7 346.5 528.7 340.8 528.7 336.75 524.6 332.7 520.7 332.7 515"/>
+ <path stroke="none" fill="#D23007" d="M366.3 553.15 Q366.3 549.3 369.75 546.2 L371.8 544.3 Q378.9 537.4 382.35 528.65 382.8 528.2 383.45 528.05 L383.8 528 384.1 528 384.4 528.05 Q385.05 528.2 385.55 528.65 389.05 537.4 396.15 544.35 L398.15 546.2 Q401.6 549.3 401.6 553.15 L401.55 553.3 Q399.6 559.55 391.15 558.55 387.75 558.15 384.95 555.95 L383.95 555.05 382.9 555.95 Q380.15 558.15 376.7 558.55 368.25 559.55 366.35 553.3 L366.3 553.15"/>
+ <path stroke="none" fill="#C62C05" d="M366.3 553.15 L366.35 553.3 Q368.25 559.55 376.7 558.55 380.15 558.15 382.9 555.95 L383.95 555.05 384.95 555.95 Q387.75 558.15 391.15 558.55 399.6 559.55 401.55 553.3 L401.6 553.15 401.3 555.4 Q399.4 563.25 391.05 562 387.7 561.45 384.95 558.7 L383.95 557.6 382.95 558.7 Q380.2 561.45 376.8 562 368.5 563.25 366.6 555.4 366.3 554.25 366.3 553.15"/>
+ <path stroke="none" fill="#FF9900" d="M361.7 524.05 Q362.8 517.1 368 511.8 L370.65 509.55 Q376.45 505.2 384.05 505.2 391.65 505.2 397.45 509.55 L400 511.8 Q405.25 517.1 406.3 524.05 405.8 525.4 404.35 526.65 403.05 521.6 398.85 517.65 L396.5 515.7 Q391.1 511.95 384.05 511.95 377 511.95 371.6 515.7 L369.15 517.65 Q365 521.6 363.7 526.65 362.2 525.45 361.7 524.05"/>
+ <path stroke="none" fill="#F39100" d="M363.7 526.65 Q365 521.6 369.15 517.65 L371.6 515.7 Q377 511.95 384.05 511.95 391.1 511.95 396.5 515.7 L398.85 517.65 Q403.05 521.6 404.35 526.65 402.75 527.95 400 529.05 393.4 531.75 384.05 531.75 374.65 531.75 368 529.05 365.25 527.95 363.7 526.65"/>
+ <path stroke="none" fill="#E08600" d="M363.7 526.65 Q365.25 527.95 368 529.05 374.65 531.75 384.05 531.75 393.4 531.75 400 529.05 402.75 527.95 404.35 526.65 405.8 525.4 406.3 524.05 L406.6 527.75 406.5 529.25 Q406.1 534.25 400 537.85 393.4 541.7 384.05 541.7 374.65 541.7 368 537.85 361.95 534.25 361.5 529.25 L361.45 527.75 Q361.45 525.8 361.7 524.05 362.2 525.45 363.7 526.65"/>
+ <path stroke="none" fill="#F53707" d="M403 450.45 L402.95 450.45 403 450.3 403 450.45 M359.85 460.95 L359.75 458.95 Q359.75 451.95 364.5 446.95 L364.95 446.45 Q365.45 449.55 363.2 452.45 360.35 456.2 359.85 460.95 M364.65 445 L364.5 442.95 Q364.5 437.85 368.05 434.25 371.65 430.7 376.75 430.7 380.85 430.7 383.95 433.05 387.05 430.7 391.2 430.7 396.25 430.7 399.85 434.25 403.4 437.85 403.4 442.95 L403.25 445 Q402.7 441.15 399.85 438.25 396.25 434.7 391.2 434.7 387.05 434.7 383.95 437.05 380.85 434.7 376.75 434.7 371.65 434.7 368.05 438.25 365.2 441.15 364.65 445 M402.95 446.45 L403 446.45 403.4 446.9 Q405.8 449.4 407 452.45 408.15 455.45 408.15 458.95 L408.05 460.95 Q407.55 456.2 404.75 452.45 402.45 449.55 402.95 446.45"/>
+ <path stroke="none" fill="#D23007" d="M408.05 460.95 Q407.6 465.4 405.1 468.95 L405.6 472.2 405.65 473.9 405.6 475.9 Q404.95 483.05 399.7 488.3 393.7 494.3 385.25 494.3 L383.95 494.25 382.65 494.3 Q374.2 494.3 368.25 488.3 363 483.1 362.35 475.95 L362.25 473.9 362.35 472.15 Q362.45 470.5 362.85 468.95 360.3 465.4 359.85 460.95 360.35 456.2 363.2 452.45 365.45 449.55 364.95 446.45 L364.65 445 Q365.2 441.15 368.05 438.25 371.65 434.7 376.75 434.7 380.85 434.7 383.95 437.05 387.05 434.7 391.2 434.7 396.25 434.7 399.85 438.25 402.7 441.15 403.25 445 L402.95 446.45 Q402.45 449.55 404.75 452.45 407.55 456.2 408.05 460.95 M403 450.45 L403 450.3 402.95 450.45 403 450.45"/>
+ <path stroke="none" fill="#987900" d="M705.85 512 L705.85 514 705.85 514.1 Q705.1 540.8 685.9 560 L685.9 560.05 Q681.75 564.2 677.25 567.5 660.05 580 637.85 580 614.05 580 596.15 565.7 L596.1 565.7 589.8 560.05 Q570.6 540.85 569.9 514.2 L569.85 512 Q569.85 483.85 589.8 463.95 609.7 444 637.85 444 665.95 444 685.9 463.95 705.85 483.85 705.85 512"/>
+ <path stroke="none" fill="#FFD738" d="M573.9 514 L573.85 512 Q573.85 485.5 592.6 466.75 611.35 448 637.85 448 664.3 448 683.05 466.75 701.85 485.5 701.85 512 L701.85 514 Q701.15 488.8 683.05 470.75 664.3 452 637.85 452 611.35 452 592.6 470.75 574.55 488.8 573.9 514"/>
+ <path stroke="none" fill="#FFCC00" d="M573.9 514 Q574.55 488.8 592.6 470.75 611.35 452 637.85 452 664.3 452 683.05 470.75 701.15 488.8 701.85 514 701.15 539.15 683.05 557.2 679.15 561.15 674.9 564.25 L672.7 560.25 Q657.65 533.9 636.3 533.9 614.95 533.9 599.85 560.25 L598.6 562.55 592.6 557.2 Q574.55 539.15 573.9 514"/>
+ <path stroke="none" fill="#EEBE00" d="M674.9 564.25 Q658.75 576 637.85 576 615.45 576 598.6 562.55 L599.85 560.25 Q614.95 533.9 636.3 533.9 657.65 533.9 672.7 560.25 L674.9 564.25"/>
+ <path stroke="none" fill="#FFFFFF" d="M681.55 514.9 Q681.55 511.25 679.1 508.8 676.55 506.25 672.9 506.25 669.4 506.25 666.8 508.8 664.25 511.25 664.25 514.9 L664.3 515.75 Q664.55 518.7 666.8 520.85 669.4 523.35 672.9 523.35 676.55 523.35 679.1 520.85 681.25 518.7 681.5 515.75 L681.55 514.9 M689.1 515 Q689.1 520.7 685.05 524.6 681 528.7 675.3 528.7 669.7 528.7 665.55 524.6 661.6 520.7 661.6 515 661.6 509.25 665.55 505.25 669.7 501.2 675.3 501.2 681 501.2 685.05 505.25 689.1 509.25 689.1 515"/>
+ <path stroke="none" fill="#5B5B5B" d="M681.55 514.9 L681.5 515.75 Q681.25 518.7 679.1 520.85 676.55 523.35 672.9 523.35 669.4 523.35 666.8 520.85 664.55 518.7 664.3 515.75 L664.25 514.9 Q664.25 511.25 666.8 508.8 669.4 506.25 672.9 506.25 676.55 506.25 679.1 508.8 681.55 511.25 681.55 514.9"/>
+ <path stroke="none" fill="#5B5B5B" d="M594.15 514.9 Q594.15 511.25 596.6 508.8 599.15 506.25 602.8 506.25 606.3 506.25 608.9 508.8 611.45 511.25 611.45 514.9 L611.4 515.75 Q611.15 518.7 608.9 520.85 606.3 523.35 602.8 523.35 599.15 523.35 596.6 520.85 594.45 518.7 594.2 515.75 L594.15 514.9"/>
+ <path stroke="none" fill="#FFFFFF" d="M586.6 515 Q586.6 509.25 590.65 505.25 594.7 501.2 600.4 501.2 606 501.2 610.15 505.25 614.1 509.25 614.1 515 614.1 520.7 610.15 524.6 606 528.7 600.4 528.7 594.7 528.7 590.65 524.6 586.6 520.7 586.6 515 M594.15 514.9 L594.2 515.75 Q594.45 518.7 596.6 520.85 599.15 523.35 602.8 523.35 606.3 523.35 608.9 520.85 611.15 518.7 611.4 515.75 L611.45 514.9 Q611.45 511.25 608.9 508.8 606.3 506.25 602.8 506.25 599.15 506.25 596.6 508.8 594.15 511.25 594.15 514.9"/>
+ <path stroke="none" fill="#FF9900" d="M658.25 526.65 Q656.95 521.6 652.75 517.65 L650.4 515.7 Q645 511.95 637.95 511.95 630.9 511.95 625.5 515.7 624.25 516.55 623.05 517.65 618.9 521.6 617.6 526.65 616.1 525.45 615.6 524.05 616.7 517.1 621.9 511.8 623.2 510.5 624.55 509.55 630.35 505.2 637.95 505.2 645.55 505.2 651.35 509.55 L653.9 511.8 Q659.15 517.1 660.2 524.05 659.7 525.4 658.25 526.65"/>
+ <path stroke="none" fill="#F39100" d="M658.25 526.65 Q656.65 527.95 653.9 529.05 647.3 531.75 637.95 531.75 628.55 531.75 621.9 529.05 619.15 527.95 617.6 526.65 618.9 521.6 623.05 517.65 624.25 516.55 625.5 515.7 630.9 511.95 637.95 511.95 645 511.95 650.4 515.7 L652.75 517.65 Q656.95 521.6 658.25 526.65"/>
+ <path stroke="none" fill="#E08600" d="M658.25 526.65 Q659.7 525.4 660.2 524.05 L660.5 527.75 660.4 529.25 Q660 534.25 653.9 537.85 647.3 541.7 637.95 541.7 628.55 541.7 621.9 537.85 615.85 534.25 615.4 529.25 L615.35 527.75 Q615.35 525.8 615.6 524.05 616.1 525.45 617.6 526.65 619.15 527.95 621.9 529.05 628.55 531.75 637.95 531.75 647.3 531.75 653.9 529.05 656.65 527.95 658.25 526.65"/>
+ <path stroke="none" fill="#EEBE00" d="M651.25 464.45 Q655.15 471.2 655.9 477.1 656.8 482.95 654.05 484.5 651.3 486.1 646.6 482.45 642 478.8 638.1 472.05 L637.2 470.5 Q635.6 467.3 636 464 636.4 460.35 639.15 458.75 641.9 457.2 645.3 458.65 648.3 459.95 650.3 462.95 L651.25 464.45 M631.55 472.15 Q629 476.65 625.85 479.05 622.8 481.5 621 480.4 619.2 479.4 619.75 475.5 620.3 471.6 622.85 467.15 L623.45 466.1 Q624.8 464.1 626.8 463.25 629.05 462.25 630.85 463.3 632.65 464.4 632.95 466.85 633.2 468.95 632.15 471.1 L631.55 472.15"/>
+ <path stroke="none" fill="#6D4526" d="M943.05 431.95 Q949.65 434.45 951.45 440.5 L951.5 440.75 952.1 443.6 952.1 443.5 Q955.1 458.45 952.4 470.65 L952.4 470.8 952.1 471.9 952.05 472 951.75 473.3 Q963.7 490.15 963.7 512 L963.7 514 963.7 514.1 Q963.25 529.95 956.4 543.1 951.65 552.25 943.8 560.05 923.85 580 895.7 580 867.55 580 847.65 560.05 828.45 540.95 827.75 514.2 L827.7 512 Q827.7 490.15 839.7 473.25 L839.35 471.95 839.4 472 839.1 470.8 839.05 470.65 Q836.4 458.45 839.4 443.6 L839.35 443.65 839.95 440.75 840.05 440.5 Q841.8 434.4 848.45 432 854.95 429.55 862.65 432.35 L862.6 432.35 Q870.15 434.95 874.65 441 L874.7 441.1 875.55 442.35 Q877.5 440.95 879.75 439.7 895 430.9 911.55 439.6 L911.7 439.7 915.9 442.35 916.75 441.05 916.8 440.95 Q921.3 434.95 928.85 432.3 L928.8 432.3 Q936.6 429.5 943.05 431.95"/>
+ <path stroke="none" fill="#B67340" d="M917 451.25 Q917.1 447.45 920 443.35 923.8 438.3 930.15 436.05 936.45 433.8 941.65 435.7 946.3 437.45 947.6 441.65 L948.15 444.3 Q951 458.35 948.5 469.8 L948.2 470.95 Q949.85 460.6 947.4 448.2 L946.8 445.5 Q945.55 441.35 940.85 439.55 935.65 437.65 929.4 439.9 923 442.15 919.2 447.25 917.7 449.25 917 451.25 M874.45 451.25 Q873.7 449.3 872.25 447.3 868.45 442.15 862.1 439.95 855.8 437.7 850.6 439.6 845.9 441.35 844.65 445.5 L844.05 448.25 Q841.6 460.6 843.25 471 L842.95 469.8 Q840.5 458.35 843.3 444.35 L843.85 441.65 Q845.15 437.45 849.8 435.75 855.05 433.85 861.3 436.1 867.65 438.3 871.45 443.4 874.35 447.45 874.45 451.25"/>
+ <path stroke="none" fill="#8E5A32" d="M874.45 451.25 L874.4 452.55 873.85 455.35 873.2 458.25 871.95 462.85 Q871.4 461.25 870.2 459.55 867.45 455.85 862.85 454.25 L854.6 454 Q851.2 455.3 850.3 458.35 L849.9 460.2 Q847.85 470.3 849.65 478.55 L850 479.95 Q850.45 481.85 851.15 483.35 L850.55 483.05 Q845.5 480.35 843.25 471 841.6 460.6 844.05 448.25 L844.65 445.5 Q845.9 441.35 850.6 439.6 855.8 437.7 862.1 439.95 868.45 442.15 872.25 447.3 873.7 449.3 874.45 451.25 M948.2 470.95 Q945.9 480.35 940.85 483.05 L940.3 483.3 941.4 479.9 941.8 478.55 Q943.6 470.3 941.55 460.2 L941.1 458.3 Q940.25 455.25 936.9 453.95 L928.6 454.2 Q924 455.85 921.25 459.5 920.05 461.25 919.5 462.8 L918.2 458.25 917.6 455.3 917.1 452.5 917 451.25 Q917.7 449.25 919.2 447.25 923 442.15 929.4 439.9 935.65 437.65 940.85 439.55 945.55 441.35 946.8 445.5 L947.4 448.2 Q949.85 460.6 948.2 470.95"/>
+ <path stroke="none" fill="#774B2A" d="M940.3 483.3 L939.7 483.6 Q936.3 484.75 932.95 483 929.9 481.45 926.9 477.5 922.65 472.05 919.95 464.2 L919.5 462.8 Q920.05 461.25 921.25 459.5 924 455.85 928.6 454.2 L936.9 453.95 Q940.25 455.25 941.1 458.3 L941.55 460.2 Q943.6 470.3 941.8 478.55 L941.4 479.9 940.3 483.3 M851.15 483.35 Q850.45 481.85 850 479.95 L849.65 478.55 Q847.85 470.3 849.9 460.2 L850.3 458.35 Q851.2 455.3 854.6 454 L862.85 454.25 Q867.45 455.85 870.2 459.55 871.4 461.25 871.95 462.85 L871.55 464.2 Q868.85 472.1 864.55 477.5 861.55 481.45 858.5 483 855.15 484.75 851.75 483.6 L851.15 483.35"/>
+ <path stroke="none" fill="#BD7841" d="M905.7 452.7 L895.7 452 885.7 452.7 Q865.55 455.65 850.45 470.7 832.4 488.8 831.75 514 L831.7 512 Q831.7 485.5 850.45 466.7 869.2 448 895.7 448 922.2 448 940.95 466.7 959.7 485.5 959.7 512 L959.7 514 Q959 488.8 940.95 470.7 925.85 455.65 905.7 452.7"/>
+ <path stroke="none" fill="#F3DBC8" d="M905.7 452.7 Q905 502.85 925.75 541.25 L865.65 541.25 Q886.4 502.85 885.7 452.7 L895.7 452 905.7 452.7"/>
+ <path stroke="none" fill="#A16639" d="M905.7 452.7 Q925.85 455.65 940.95 470.7 959 488.8 959.7 514 959.3 528.9 952.85 541.25 948.35 549.85 940.95 557.2 922.2 576 895.7 576 869.2 576 850.45 557.2 832.4 539.2 831.75 514 832.4 488.8 850.45 470.7 865.55 455.65 885.7 452.7 886.4 502.85 865.65 541.25 L925.75 541.25 Q905 502.85 905.7 452.7"/>
+ <path stroke="none" fill="#9C6236" d="M867.9 460.7 Q866.35 457.75 870.3 452.65 874.25 447.4 881.7 443.15 895.15 435.5 909.7 443.15 917.1 447.4 921.05 452.65 925.05 457.75 923.5 460.65 922.8 458.85 921.05 456.65 917.1 451.4 909.7 447.15 895.15 439.5 881.7 447.15 874.25 451.4 870.3 456.65 868.55 458.85 867.9 460.7"/>
+ <path stroke="none" fill="#8E5A32" d="M867.9 460.7 Q868.55 458.85 870.3 456.65 874.25 451.4 881.7 447.15 895.15 439.5 909.7 447.15 917.1 451.4 921.05 456.65 922.8 458.85 923.5 460.65 L923.4 460.8 Q921.65 463.9 915.05 463 910.6 462.35 905.7 460.1 906.5 462.3 906.75 464.35 L906.8 464.6 Q907 466.5 906.65 467.75 906.35 468.9 905.5 469.4 903.6 470.5 900.35 468 897.85 466 895.7 462.7 893.5 466 891 468 887.8 470.5 885.9 469.4 885.05 468.9 884.7 467.75 884.35 466.5 884.6 464.65 L884.6 464.35 Q884.9 462.3 885.75 460.1 880.8 462.35 876.3 463 869.75 463.9 867.95 460.8 L867.9 460.7"/>
+ <path stroke="none" fill="#B67340" d="M858.25 543.9 L858.2 542 858.2 541 Q858.6 528.4 869.15 519.35 880.15 510 895.7 510 911.2 510 922.2 519.35 932.75 528.4 933.2 541 L933.2 542 933.15 543.9 Q932.3 532 922.2 523.35 911.2 514 895.7 514 880.15 514 869.15 523.35 859.05 532 858.25 543.9"/>
+ <path stroke="none" fill="#8E5A32" d="M858.25 543.9 Q859.05 532 869.15 523.35 880.15 514 895.7 514 911.2 514 922.2 523.35 932.3 532 933.15 543.9 932.4 555.95 922.2 564.6 911.2 574 895.7 574 880.15 574 869.15 564.6 859 555.9 858.25 543.9 M880.1 534.4 Q881.6 535.8 883.65 535.8 885.8 535.8 887.3 534.3 888.8 532.8 888.8 530.65 888.8 529.55 888.45 528.65 L887.4 527.1 887.25 526.95 Q884.7 524.4 881.85 523.55 L881.65 523.5 Q879.45 522.85 878.1 523.55 877.6 523.75 877.2 524.15 L876.6 525 Q875.95 526.25 876.4 528.15 L876.5 528.65 876.95 529.95 Q877.9 532.2 879.95 534.25 L880.1 534.4 M914.2 524.15 L913.35 523.55 Q911.95 522.85 909.75 523.5 L909.5 523.6 Q906.65 524.45 904.15 526.95 L904 527.1 Q903.35 527.8 903 528.65 902.6 529.55 902.6 530.65 902.6 532.8 904.1 534.3 905.6 535.8 907.75 535.8 909.8 535.8 911.3 534.4 L911.45 534.25 Q913.5 532.2 914.45 529.95 L914.9 528.65 915.05 528.15 Q915.45 526.25 914.8 525 L914.2 524.15"/>
+ <path stroke="none" fill="#704627" d="M880.1 534.4 L879.95 534.25 Q877.9 532.2 876.95 529.95 L876.5 528.65 876.4 528.15 Q875.95 526.25 876.6 525 L877.2 524.15 Q877.6 523.75 878.1 523.55 879.45 522.85 881.65 523.5 L881.85 523.55 Q884.7 524.4 887.25 526.95 L887.4 527.1 888.45 528.65 Q888.8 529.55 888.8 530.65 888.8 532.8 887.3 534.3 885.8 535.8 883.65 535.8 881.6 535.8 880.1 534.4 M914.2 524.15 L914.8 525 Q915.45 526.25 915.05 528.15 L914.9 528.65 914.45 529.95 Q913.5 532.2 911.45 534.25 L911.3 534.4 Q909.8 535.8 907.75 535.8 905.6 535.8 904.1 534.3 902.6 532.8 902.6 530.65 902.6 529.55 903 528.65 903.35 527.8 904 527.1 L904.15 526.95 Q906.65 524.45 909.5 523.6 L909.75 523.5 Q911.95 522.85 913.35 523.55 L914.2 524.15"/>
+ <path stroke="none" fill="#FFFFFF" d="M944.2 494.55 Q944.2 499.7 940.55 503.3 936.9 507 931.7 507 926.6 507 922.9 503.3 919.25 499.7 919.25 494.55 919.25 489.35 922.9 485.7 926.6 482.05 931.7 482.05 936.9 482.05 940.55 485.7 944.2 489.35 944.2 494.55 M939.45 494.75 Q939.45 491.15 936.95 488.6 934.45 486.1 930.8 486.1 927.25 486.1 924.65 488.6 922.15 491.15 922.15 494.75 922.15 498.35 924.65 500.8 927.25 503.35 930.8 503.35 934.45 503.35 936.95 500.8 939.45 498.35 939.45 494.75 M851.9 494.75 Q851.9 498.35 854.45 500.8 856.95 503.35 860.6 503.35 864.15 503.35 866.7 500.8 869.25 498.35 869.25 494.75 869.25 491.15 866.7 488.6 864.15 486.1 860.6 486.1 856.95 486.1 854.45 488.6 851.9 491.15 851.9 494.75 M847.2 494.55 Q847.2 489.35 850.85 485.7 854.5 482.05 859.7 482.05 864.8 482.05 868.5 485.7 872.15 489.35 872.15 494.55 872.15 499.7 868.5 503.3 864.8 507 859.7 507 854.5 507 850.85 503.3 847.2 499.7 847.2 494.55"/>
+ <path stroke="none" fill="#5B5B5B" d="M939.45 494.75 Q939.45 498.35 936.95 500.8 934.45 503.35 930.8 503.35 927.25 503.35 924.65 500.8 922.15 498.35 922.15 494.75 922.15 491.15 924.65 488.6 927.25 486.1 930.8 486.1 934.45 486.1 936.95 488.6 939.45 491.15 939.45 494.75 M851.9 494.75 Q851.9 491.15 854.45 488.6 856.95 486.1 860.6 486.1 864.15 486.1 866.7 488.6 869.25 491.15 869.25 494.75 869.25 498.35 866.7 500.8 864.15 503.35 860.6 503.35 856.95 503.35 854.45 500.8 851.9 498.35 851.9 494.75"/>
+ <path stroke="none" fill="#6D4526" d="M1277.05 410.05 Q1281.9 410.5 1284.9 414.4 L1284.85 414.35 Q1287.35 417.5 1287.4 421.35 L1287.55 429.2 1287.55 429.25 Q1287.45 434.3 1286.85 439.15 L1286.85 439.2 Q1285.7 447.25 1283.2 454.6 1276.2 474.9 1258.2 490.25 L1258.2 490.3 Q1242.5 503.45 1217.3 506.35 L1217.5 512 1217.5 514 1217.5 514.1 Q1217.05 529.95 1210.2 543.1 1205.45 552.25 1197.6 560.05 1177.65 580 1149.5 580 1121.35 580 1101.45 560.05 1082.25 540.95 1081.55 514.2 L1081.5 512 1081.7 506.35 Q1056.5 503.45 1040.85 490.3 L1040.8 490.25 Q1022.8 474.9 1015.85 454.6 1013.3 447.25 1012.2 439.2 L1012.2 439.15 Q1011.55 434.3 1011.45 429.25 L1011.45 429.2 1011.6 421.35 Q1011.65 417.5 1014.15 414.35 L1014.15 414.4 Q1017.1 410.5 1022 410.05 L1021.9 410.05 Q1026.6 409.5 1030.35 412.4 1034.2 415.35 1034.8 420.15 1035.65 427.1 1037.2 433.85 1037.65 431 1039.75 428.55 1042.6 424.75 1047.35 424.25 1052.2 423.65 1055.95 426.65 L1055.9 426.6 Q1059.75 429.6 1060.3 434.35 1060.85 439.05 1061.75 443.7 L1063 441.75 1063.05 441.65 Q1066 437.9 1070.8 437.4 L1070.7 437.4 Q1075.5 436.7 1079.35 439.7 L1079.4 439.75 Q1082.95 442.55 1083.7 446.9 L1083.9 446.8 1083.95 446.75 Q1090.65 443.05 1095.55 445.35 L1095.95 445.55 1098.15 446.8 Q1105.4 451 1110.15 456.45 1116.9 451.5 1124.5 448.55 L1124.5 447.45 Q1124.5 443 1127.6 439.85 1130.7 436.65 1135.2 436.65 L1163.8 436.65 Q1168.25 436.65 1171.4 439.85 L1171.35 439.85 Q1174.5 443 1174.5 447.45 L1174.5 448.55 Q1182.1 451.5 1188.9 456.45 1193.65 451 1200.9 446.8 L1200.95 446.8 1203.15 445.55 1203.55 445.35 Q1208.4 443.05 1215.15 446.75 L1215.2 446.8 1215.35 446.85 Q1216.05 442.55 1219.6 439.75 L1219.65 439.7 Q1223.5 436.7 1228.35 437.4 L1228.2 437.4 Q1233 437.9 1236 441.65 L1236.05 441.75 1237.3 443.7 1238.75 434.35 Q1239.25 429.6 1243.1 426.6 L1243.05 426.65 Q1246.8 423.65 1251.65 424.25 1256.4 424.75 1259.3 428.55 1261.35 431 1261.8 433.85 1263.35 427.1 1264.25 420.15 1264.8 415.35 1268.65 412.4 L1268.7 412.4 Q1272.4 409.5 1277.1 410.05 L1277.05 410.05"/>
+ <path stroke="none" fill="#774B2A" d="M1194.5 472.95 Q1198.1 468.9 1203.5 465.75 1204.35 465.3 1205.25 464.8 1208.05 463.65 1212 465.75 1216.3 468.25 1219.3 473.5 1221.25 476.8 1221.9 480.05 L1220.6 480.8 Q1212.7 485.35 1205.1 486.4 1200.95 479.35 1194.8 473.2 L1194.5 472.95 M1104.55 472.95 L1104.25 473.2 Q1098.1 479.35 1093.95 486.4 1086.35 485.35 1078.45 480.8 L1077.15 480.05 Q1077.8 476.8 1079.75 473.5 1082.75 468.25 1087.05 465.75 1091 463.65 1093.8 464.8 L1095.55 465.75 Q1100.95 468.9 1104.55 472.95"/>
+ <path stroke="none" fill="#8E5A32" d="M1104.55 472.95 Q1100.95 468.9 1095.55 465.75 L1093.8 464.8 Q1091 463.65 1087.05 465.75 1082.75 468.25 1079.75 473.5 1077.8 476.8 1077.15 480.05 L1076.4 479.55 Q1073.95 477.7 1073.5 473.6 1074 468.65 1076.95 463.6 1080.6 457.25 1085.85 454.25 1090.6 451.65 1094 453.05 L1096.15 454.25 Q1105.75 459.8 1110.55 467.65 1107.45 470.05 1104.55 472.95 M1188.5 467.7 Q1193.25 459.85 1202.9 454.25 L1205.05 453.05 Q1208.45 451.65 1213.2 454.25 1218.45 457.25 1222.1 463.6 1225.05 468.65 1225.6 473.6 1225.1 477.7 1222.65 479.55 L1221.9 480.05 Q1221.25 476.8 1219.3 473.5 1216.3 468.25 1212 465.75 1208.05 463.65 1205.25 464.8 1204.35 465.3 1203.5 465.75 1198.1 468.9 1194.5 472.95 L1188.5 467.7"/>
+ <path stroke="none" fill="#B67340" d="M1188.5 467.7 L1187.9 467.2 1186.95 466.45 1187.7 465.05 Q1192.45 456.3 1202.9 450.25 L1205.05 449.05 Q1208.45 447.65 1213.2 450.25 1218.45 453.25 1222.1 459.6 1225.75 465.85 1225.7 471.85 L1225.6 473.6 Q1225.05 468.65 1222.1 463.6 1218.45 457.25 1213.2 454.25 1208.45 451.65 1205.05 453.05 L1202.9 454.25 Q1193.25 459.85 1188.5 467.7 M1073.5 473.6 L1073.35 471.85 Q1073.3 465.85 1076.95 459.6 1080.6 453.25 1085.85 450.25 1090.6 447.65 1094 449.05 L1096.15 450.25 Q1106.6 456.3 1111.35 465.05 L1112.1 466.45 1110.55 467.65 Q1105.75 459.8 1096.15 454.25 L1094 453.05 Q1090.6 451.65 1085.85 454.25 1080.6 457.25 1076.95 463.6 1074 468.65 1073.5 473.6"/>
+ <path stroke="none" fill="#D49562" d="M1257.5 444.75 Q1257.8 448.8 1259.65 448.6 1261.65 448.15 1264.3 440.45 1266.9 430.75 1268.2 420.65 1268.55 417.5 1271.1 415.55 1273.55 413.65 1276.65 414 1279.8 414.3 1281.7 416.8 1283.4 418.95 1283.4 421.55 L1283.55 429.15 1283.4 425.55 Q1283.4 422.95 1281.7 420.8 1279.8 418.3 1276.65 418 1273.55 417.65 1271.1 419.55 1268.55 421.5 1268.2 424.65 1266.9 434.75 1264.3 444.45 1261.65 452.15 1259.65 452.6 1257.05 452.9 1257.5 444.75 M1195.75 496.9 Q1195.15 494.95 1195.75 492.9 1196.55 489.85 1199.4 488.35 L1199.45 488.3 Q1213.9 477.9 1216.5 463.15 1218.3 455.65 1219.2 447.95 1219.6 444.85 1222.1 442.85 1224.6 440.9 1227.75 441.35 1230.9 441.7 1232.85 444.15 1234.75 446.65 1234.45 449.8 L1234.25 451 Q1233.85 449.45 1232.85 448.15 1230.9 445.7 1227.75 445.35 1224.6 444.9 1222.1 446.85 1219.6 448.85 1219.2 451.95 1218.3 459.65 1216.5 467.15 1213.9 481.9 1199.45 492.3 L1199.4 492.35 Q1196.55 493.85 1195.75 496.9 M1233.9 458.55 Q1234.1 460.8 1235.1 461 1236.7 461.4 1238.8 454.65 1241.5 444.95 1242.7 434.8 1243.05 431.7 1245.55 429.75 1248 427.8 1251.15 428.2 1254.3 428.55 1256.2 431.1 1258.3 433.6 1257.85 436.7 L1257.75 438.05 Q1257.35 436.45 1256.2 435.1 1254.3 432.55 1251.15 432.2 1248 431.8 1245.55 433.75 1243.05 435.7 1242.7 438.8 1241.5 448.95 1238.8 458.65 1236.7 465.4 1235.1 465 1233.45 464.7 1233.9 458.55 M1065.1 458.55 Q1065.55 464.7 1063.9 465 1062.3 465.4 1060.2 458.65 1057.5 448.95 1056.3 438.8 1055.95 435.7 1053.45 433.75 1051 431.8 1047.85 432.2 1044.7 432.55 1042.8 435.1 1041.65 436.45 1041.25 438.05 L1041.15 436.7 Q1040.7 433.6 1042.8 431.1 1044.7 428.55 1047.85 428.2 1051 427.8 1053.45 429.75 1055.95 431.7 1056.3 434.8 1057.5 444.95 1060.2 454.65 1062.3 461.4 1063.9 461 1064.9 460.8 1065.1 458.55 M1041.5 444.75 Q1041.95 452.9 1039.35 452.6 1037.35 452.15 1034.7 444.45 1032.1 434.75 1030.8 424.65 1030.45 421.5 1027.9 419.55 1025.45 417.65 1022.35 418 1019.2 418.3 1017.3 420.8 1015.6 422.95 1015.6 425.55 L1015.45 429.15 Q1015.4 425.4 1015.6 421.55 1015.6 418.95 1017.3 416.8 1019.2 414.3 1022.35 414 1025.45 413.65 1027.9 415.55 1030.45 417.5 1030.8 420.65 1032.1 430.75 1034.7 440.45 1037.35 448.15 1039.35 448.6 1041.2 448.8 1041.5 444.75 M1103.25 496.9 Q1102.45 493.85 1099.6 492.35 L1099.55 492.3 Q1085.1 481.9 1082.5 467.15 1080.7 459.65 1079.8 451.95 1079.4 448.85 1076.9 446.85 1074.4 444.9 1071.25 445.35 1068.1 445.7 1066.15 448.15 1065.15 449.45 1064.75 451 L1064.55 449.8 Q1064.25 446.65 1066.15 444.15 1068.1 441.7 1071.25 441.35 1074.4 440.9 1076.9 442.85 1079.4 444.85 1079.8 447.95 1080.7 455.65 1082.5 463.15 1085.1 477.9 1099.55 488.3 L1099.6 488.35 Q1102.45 489.85 1103.25 492.9 1103.85 494.95 1103.25 496.9"/>
+ <path stroke="none" fill="#BF8658" d="M1257.5 444.75 Q1257.05 452.9 1259.65 452.6 1261.65 452.15 1264.3 444.45 1266.9 434.75 1268.2 424.65 1268.55 421.5 1271.1 419.55 1273.55 417.65 1276.65 418 1279.8 418.3 1281.7 420.8 1283.4 422.95 1283.4 425.55 L1283.55 429.15 Q1283.45 434 1282.85 438.65 1243.95 493.15 1197.1 499.7 L1196.45 498.75 Q1195.95 497.9 1195.75 497 L1195.75 496.9 Q1196.55 493.85 1199.4 492.35 L1199.45 492.3 Q1213.9 481.9 1216.5 467.15 1218.3 459.65 1219.2 451.95 1219.6 448.85 1222.1 446.85 1224.6 444.9 1227.75 445.35 1230.9 445.7 1232.85 448.15 1233.85 449.45 1234.25 451 L1234.1 452 Q1233.65 456.3 1233.9 458.55 1233.45 464.7 1235.1 465 1236.7 465.4 1238.8 458.65 1241.5 448.95 1242.7 438.8 1243.05 435.7 1245.55 433.75 1248 431.8 1251.15 432.2 1254.3 432.55 1256.2 435.1 1257.35 436.45 1257.75 438.05 L1257.55 439.55 Q1257.3 442.7 1257.5 444.75 M1041.25 438.05 Q1041.65 436.45 1042.8 435.1 1044.7 432.55 1047.85 432.2 1051 431.8 1053.45 433.75 1055.95 435.7 1056.3 438.8 1057.5 448.95 1060.2 458.65 1062.3 465.4 1063.9 465 1065.55 464.7 1065.1 458.55 1065.35 456.3 1064.9 452 L1064.75 451 Q1065.15 449.45 1066.15 448.15 1068.1 445.7 1071.25 445.35 1074.4 444.9 1076.9 446.85 1079.4 448.85 1079.8 451.95 1080.7 459.65 1082.5 467.15 1085.1 481.9 1099.55 492.3 L1099.6 492.35 Q1102.45 493.85 1103.25 496.9 L1103.25 497 1102.55 498.75 1101.9 499.7 Q1055.05 493.15 1016.15 438.65 1015.55 434 1015.45 429.15 L1015.6 425.55 Q1015.6 422.95 1017.3 420.8 1019.2 418.3 1022.35 418 1025.45 417.65 1027.9 419.55 1030.45 421.5 1030.8 424.65 1032.1 434.75 1034.7 444.45 1037.35 452.15 1039.35 452.6 1041.95 452.9 1041.5 444.75 L1041.45 439.55 1041.25 438.05"/>
+ <path stroke="none" fill="#B47E52" d="M1282.85 438.65 Q1281.8 446.3 1279.4 453.3 1272.75 472.6 1255.6 487.2 1239.3 500.8 1212.15 502.8 L1201 502.35 Q1198.5 501.65 1197.1 499.7 1243.95 493.15 1282.85 438.65 M1016.15 438.65 Q1055.05 493.15 1101.9 499.7 1100.5 501.65 1098 502.35 L1086.85 502.8 Q1059.7 500.8 1043.4 487.2 1026.25 472.6 1019.6 453.3 1017.2 446.3 1016.15 438.65"/>
+ <path stroke="none" fill="#BD7841" d="M1159.5 452.7 L1149.5 452 1139.5 452.7 Q1119.35 455.65 1104.25 470.7 1086.2 488.8 1085.55 514 L1085.5 512 Q1085.5 485.5 1104.25 466.7 1123 448 1149.5 448 1176 448 1194.75 466.7 1213.5 485.5 1213.5 512 L1213.5 514 Q1212.8 488.8 1194.75 470.7 1179.65 455.65 1159.5 452.7"/>
+ <path stroke="none" fill="#AA6C3B" d="M1159.5 452.7 Q1158.8 502.85 1179.55 541.25 L1119.45 541.25 Q1140.2 502.85 1139.5 452.7 L1149.5 452 1159.5 452.7"/>
+ <path stroke="none" fill="#A16639" d="M1159.5 452.7 Q1179.65 455.65 1194.75 470.7 1212.8 488.8 1213.5 514 1213.1 528.9 1206.65 541.25 1202.15 549.85 1194.75 557.2 1176 576 1149.5 576 1123 576 1104.25 557.2 1086.2 539.2 1085.55 514 1086.2 488.8 1104.25 470.7 1119.35 455.65 1139.5 452.7 1140.2 502.85 1119.45 541.25 L1179.55 541.25 Q1158.8 502.85 1159.5 452.7"/>
+ <path stroke="none" fill="#BD7841" d="M1128.5 451.2 L1128.5 447.45 Q1128.5 444.65 1130.45 442.65 1132.4 440.65 1135.2 440.65 L1163.8 440.65 Q1166.55 440.65 1168.5 442.65 1170.5 444.65 1170.5 447.45 L1170.5 451.2 Q1170.45 449.95 1170 448.85 1169.5 447.65 1168.5 446.65 1166.55 444.65 1163.8 444.65 L1135.2 444.65 Q1132.4 444.65 1130.45 446.65 1129.5 447.65 1129 448.8 1128.55 449.9 1128.5 451.2"/>
+ <path stroke="none" fill="#AA6C3B" d="M1128.5 451.2 Q1128.55 449.9 1129 448.8 1129.5 447.65 1130.45 446.65 1132.4 444.65 1135.2 444.65 L1163.8 444.65 Q1166.55 444.65 1168.5 446.65 1169.5 447.65 1170 448.85 1170.45 449.95 1170.5 451.2 L1170.5 463.1 Q1170.4 465.8 1168.5 467.65 L1164.2 471.2 Q1149.5 481.2 1135.05 471.35 1132.4 469.65 1130.45 467.65 1128.6 465.8 1128.5 463.1 L1128.5 451.2"/>
+ <path stroke="none" fill="#B67340" d="M1112.05 543.9 L1112 542 1112 541 Q1112.4 528.4 1122.95 519.35 1133.95 510 1149.5 510 1165 510 1176 519.35 1186.55 528.4 1187 541 L1187 542 1186.95 543.9 Q1186.1 532 1176 523.35 1165 514 1149.5 514 1133.95 514 1122.95 523.35 1112.85 532 1112.05 543.9"/>
+ <path stroke="none" fill="#8E5A32" d="M1186.95 543.9 Q1186.2 555.95 1176 564.6 1165 574 1149.5 574 1133.95 574 1122.95 564.6 1112.8 555.9 1112.05 543.9 1112.85 532 1122.95 523.35 1133.95 514 1149.5 514 1165 514 1176 523.35 1186.1 532 1186.95 543.9 M1133.9 534.4 Q1135.4 535.8 1137.45 535.8 1139.6 535.8 1141.1 534.3 1142.6 532.8 1142.6 530.65 1142.6 529.55 1142.25 528.65 L1141.2 527.1 1141.05 526.95 Q1138.5 524.4 1135.65 523.55 L1135.45 523.5 Q1133.25 522.85 1131.9 523.55 1131.4 523.75 1131 524.15 L1130.4 525 Q1129.75 526.25 1130.2 528.15 L1130.3 528.65 1130.75 529.95 Q1131.7 532.2 1133.75 534.25 L1133.9 534.4 M1168 524.15 L1167.15 523.55 Q1165.75 522.85 1163.55 523.5 L1163.3 523.6 Q1160.45 524.45 1157.95 526.95 L1157.8 527.1 Q1157.15 527.8 1156.8 528.65 1156.4 529.55 1156.4 530.65 1156.4 532.8 1157.9 534.3 1159.4 535.8 1161.55 535.8 1163.6 535.8 1165.1 534.4 L1165.25 534.25 Q1167.3 532.2 1168.25 529.95 L1168.7 528.65 1168.85 528.15 Q1169.25 526.25 1168.6 525 L1168 524.15"/>
+ <path stroke="none" fill="#704627" d="M1168 524.15 L1168.6 525 Q1169.25 526.25 1168.85 528.15 L1168.7 528.65 1168.25 529.95 Q1167.3 532.2 1165.25 534.25 L1165.1 534.4 Q1163.6 535.8 1161.55 535.8 1159.4 535.8 1157.9 534.3 1156.4 532.8 1156.4 530.65 1156.4 529.55 1156.8 528.65 1157.15 527.8 1157.8 527.1 L1157.95 526.95 Q1160.45 524.45 1163.3 523.6 L1163.55 523.5 Q1165.75 522.85 1167.15 523.55 L1168 524.15 M1133.9 534.4 L1133.75 534.25 Q1131.7 532.2 1130.75 529.95 L1130.3 528.65 1130.2 528.15 Q1129.75 526.25 1130.4 525 L1131 524.15 Q1131.4 523.75 1131.9 523.55 1133.25 522.85 1135.45 523.5 L1135.65 523.55 Q1138.5 524.4 1141.05 526.95 L1141.2 527.1 1142.25 528.65 Q1142.6 529.55 1142.6 530.65 1142.6 532.8 1141.1 534.3 1139.6 535.8 1137.45 535.8 1135.4 535.8 1133.9 534.4"/>
+ <path stroke="none" fill="#FFFFFF" d="M1193.25 494.75 Q1193.25 491.15 1190.75 488.6 1188.25 486.1 1184.6 486.1 1181.05 486.1 1178.45 488.6 1175.95 491.15 1175.95 494.75 1175.95 498.35 1178.45 500.8 1181.05 503.35 1184.6 503.35 1188.25 503.35 1190.75 500.8 1193.25 498.35 1193.25 494.75 M1198 494.55 Q1198 499.7 1194.35 503.3 1190.7 507 1185.5 507 1180.4 507 1176.7 503.3 1173.05 499.7 1173.05 494.55 1173.05 489.35 1176.7 485.7 1180.4 482.05 1185.5 482.05 1190.7 482.05 1194.35 485.7 1198 489.35 1198 494.55 M1101 494.55 Q1101 489.35 1104.65 485.7 1108.3 482.05 1113.5 482.05 1118.6 482.05 1122.3 485.7 1125.95 489.35 1125.95 494.55 1125.95 499.7 1122.3 503.3 1118.6 507 1113.5 507 1108.3 507 1104.65 503.3 1101 499.7 1101 494.55 M1105.7 494.75 Q1105.7 498.35 1108.25 500.8 1110.75 503.35 1114.4 503.35 1117.95 503.35 1120.5 500.8 1123.05 498.35 1123.05 494.75 1123.05 491.15 1120.5 488.6 1117.95 486.1 1114.4 486.1 1110.75 486.1 1108.25 488.6 1105.7 491.15 1105.7 494.75"/>
+ <path stroke="none" fill="#5B5B5B" d="M1105.7 494.75 Q1105.7 491.15 1108.25 488.6 1110.75 486.1 1114.4 486.1 1117.95 486.1 1120.5 488.6 1123.05 491.15 1123.05 494.75 1123.05 498.35 1120.5 500.8 1117.95 503.35 1114.4 503.35 1110.75 503.35 1108.25 500.8 1105.7 498.35 1105.7 494.75 M1193.25 494.75 Q1193.25 498.35 1190.75 500.8 1188.25 503.35 1184.6 503.35 1181.05 503.35 1178.45 500.8 1175.95 498.35 1175.95 494.75 1175.95 491.15 1178.45 488.6 1181.05 486.1 1184.6 486.1 1188.25 486.1 1190.75 488.6 1193.25 491.15 1193.25 494.75"/>
+ <path stroke="none" fill="#624630" d="M79.95 655.95 Q87.75 648.05 96.9 643.35 110.95 636 128 636 145.05 636 159.15 643.3 168.3 648.05 176.15 655.95 196 675.8 196 704 L196 706 196 706.1 Q195.25 732.95 176.15 752.1 165.75 762.45 153.2 767.45 L153.15 767.45 Q149.3 768.95 145.25 769.95 143.25 779.15 139.85 780.7 137.55 782.3 134.9 782 131.4 781.75 129.35 779.1 L129.4 779.2 Q128.45 778 128 776.7 127.55 778 126.6 779.2 L126.7 779.1 Q124.65 781.75 121.2 782 118.5 782.35 116.15 780.7 112.75 779.15 110.8 769.95 106.75 768.95 102.95 767.45 90.3 762.45 79.95 752.1 60.75 733 60.05 706.2 L60 704 Q60 675.8 79.95 655.95"/>
+ <path stroke="none" fill="#B17E58" d="M64.05 706 L64 704 Q64 677.45 82.75 658.75 90.15 651.35 98.75 646.9 111.95 640 128 640 144.05 640 157.3 646.85 165.9 651.35 173.3 658.75 192 677.45 192 704 L192 706 Q191.3 680.75 173.3 662.75 164.9 654.35 154.95 649.7 L150.95 653.1 Q141.45 660 128 660 114.55 660 105 653.1 102.75 651.5 101.1 649.75 91.15 654.35 82.75 662.75 64.7 680.75 64.05 706"/>
+ <path stroke="none" fill="#986C4C" d="M64.05 706 Q64.7 680.75 82.75 662.75 91.15 654.35 101.1 649.75 102.75 651.5 105 653.1 114.55 660 128 660 141.45 660 150.95 653.1 L154.95 649.7 Q164.9 654.35 173.3 662.75 191.3 680.75 192 706 191.3 731.25 173.3 749.25 163.55 759 151.7 763.7 145.95 752.45 139.15 747.55 149.35 744.8 157.35 736.8 169.5 724.65 169.5 707.45 169.5 690.25 157.35 678.1 145.2 665.95 128 665.95 110.8 665.95 98.65 678.1 86.5 690.25 86.5 707.45 86.5 724.65 98.65 736.8 106.7 744.85 116.9 747.55 110.15 752.45 104.4 763.7 92.5 759 82.75 749.25 64.7 731.25 64.05 706"/>
+ <path stroke="none" fill="#916546" d="M116.9 747.55 Q106.7 744.85 98.65 736.8 86.5 724.65 86.5 707.45 86.5 690.25 98.65 678.1 110.8 665.95 128 665.95 145.2 665.95 157.35 678.1 169.5 690.25 169.5 707.45 169.5 724.65 157.35 736.8 149.35 744.8 139.15 747.55 133.85 748.95 128 748.95 122.15 748.95 116.9 747.55"/>
+ <path stroke="none" fill="#845C41" d="M151.7 763.7 Q140.75 768 128 768 115.3 768 104.4 763.7 110.15 752.45 116.9 747.55 122.15 748.95 128 748.95 133.85 748.95 139.15 747.55 145.95 752.45 151.7 763.7"/>
+ <path stroke="none" fill="#FFFFFF" d="M94.4 687 Q94.4 681.95 98 678.4 101.6 674.9 106.6 674.9 111.6 674.9 115.3 678.4 118.8 681.95 118.8 687 118.8 692.05 115.3 695.5 111.6 699.15 106.6 699.15 101.6 699.15 98 695.5 94.4 692.05 94.4 687 M100.35 687.25 Q100.35 690.4 102.6 692.55 104.75 694.85 107.95 694.85 111.1 694.85 113.35 692.55 115.6 690.4 115.6 687.25 115.6 683.95 113.35 681.8 111.1 679.65 107.95 679.65 104.75 679.65 102.6 681.8 100.35 683.95 100.35 687.25 M161.6 687 Q161.6 692.05 158.1 695.5 154.5 699.15 149.4 699.15 144.4 699.15 140.85 695.5 137.25 692.05 137.25 687 137.25 681.95 140.85 678.4 144.4 674.9 149.4 674.9 154.5 674.9 158.1 678.4 161.6 681.95 161.6 687 M155.75 687.25 Q155.75 683.95 153.5 681.8 151.25 679.65 148.1 679.65 145 679.65 142.65 681.8 140.4 683.95 140.4 687.25 140.4 690.4 142.65 692.55 145 694.85 148.1 694.85 151.25 694.85 153.5 692.55 155.75 690.4 155.75 687.25"/>
+ <path stroke="none" fill="#5B5B5B" d="M155.75 687.25 Q155.75 690.4 153.5 692.55 151.25 694.85 148.1 694.85 145 694.85 142.65 692.55 140.4 690.4 140.4 687.25 140.4 683.95 142.65 681.8 145 679.65 148.1 679.65 151.25 679.65 153.5 681.8 155.75 683.95 155.75 687.25 M100.35 687.25 Q100.35 683.95 102.6 681.8 104.75 679.65 107.95 679.65 111.1 679.65 113.35 681.8 115.6 683.95 115.6 687.25 115.6 690.4 113.35 692.55 111.1 694.85 107.95 694.85 104.75 694.85 102.6 692.55 100.35 690.4 100.35 687.25"/>
+ <path stroke="none" fill="#F0EDE7" d="M131.65 744 L131.65 733.05 Q131.65 731.8 132.55 730.95 133.4 730.05 134.65 730.05 L141.4 730.05 Q142.2 730.05 142.95 730.5 L144.05 731.6 144.4 733.15 144.15 740.8 144.05 742.6 142.95 741.5 Q142.2 741.05 141.4 741.05 L134.65 741.05 Q133.4 741.05 132.55 741.95 131.7 742.75 131.65 744 M111.95 742.6 L111.9 740.8 111.6 733.15 Q111.6 732.35 111.95 731.6 112.35 730.9 113.05 730.5 113.8 730.05 114.6 730.05 L121.35 730.05 Q122.6 730.05 123.45 730.95 124.35 731.8 124.35 733.05 L124.35 744 Q124.3 742.75 123.45 741.95 122.6 741.05 121.35 741.05 L114.6 741.05 Q113.8 741.05 113.05 741.5 112.35 741.9 111.95 742.6"/>
+ <path stroke="none" fill="#FFFCF5" d="M111.95 742.6 Q112.35 741.9 113.05 741.5 113.8 741.05 114.6 741.05 L121.35 741.05 Q122.6 741.05 123.45 741.95 124.3 742.75 124.35 744 L124.35 774.2 124.35 774.5 Q124.3 775.65 123.5 776.65 122.5 777.95 120.75 778 119.45 778.15 118.3 777.3 113.45 774.5 111.95 742.6 M131.65 744 Q131.7 742.75 132.55 741.95 133.4 741.05 134.65 741.05 L141.4 741.05 Q142.2 741.05 142.95 741.5 L144.05 742.6 Q142.55 774.5 137.7 777.3 136.55 778.15 135.25 778 133.5 777.95 132.5 776.65 131.7 775.65 131.65 774.5 L131.65 774.2 131.65 744"/>
+ <path stroke="none" fill="#3C6672" d="M121.15 736.15 Q117.85 737.7 113.95 737.7 107 737.7 102.05 732.75 97.15 727.85 97.15 720.9 97.15 713.9 102.05 709 107 704.05 113.95 704.05 L142.45 704.05 Q149.15 704.2 153.9 709 158.85 713.9 158.85 720.9 158.85 727.85 153.9 732.75 149 737.7 142 737.7 138.1 737.7 134.85 736.15 132.3 734.95 130.1 732.75 L128 730.25 125.85 732.75 Q123.7 734.95 121.15 736.15"/>
+ <path stroke="none" fill="#333333" d="M115.6 703.3 L115.5 701.7 115.5 700.8 Q115.75 698.55 119.1 696.9 122.8 695.15 128 695.15 133.15 695.15 136.8 696.9 140.15 698.55 140.45 700.8 L140.5 701.7 140.4 703.45 Q139.9 701.4 136.8 699.9 133.15 698.15 128 698.15 122.8 698.15 119.1 699.9 116.1 701.35 115.6 703.3"/>
+ <path stroke="none" fill="#252525" d="M115.6 703.3 Q116.1 701.35 119.1 699.9 122.8 698.15 128 698.15 133.15 698.15 136.8 699.9 139.9 701.4 140.4 703.45 139.85 707.5 136.8 710.45 133.15 714.15 128 714.15 122.8 714.15 119.1 710.45 116.1 707.45 115.6 703.3"/>
+ <path stroke="none" fill="#252525" d="M163.9 721.45 L162.85 725.05 162.65 725.45 162.2 725.6 161.75 725.5 Q156.15 720.55 148.9 718.55 L148.5 718.2 148.5 717.7 148.7 717.25 Q148.9 717.1 149.2 717.05 158.05 716.55 163.6 720.6 L163.9 721 163.9 721.45 M167.45 709.3 L168.15 713.95 168.15 714.55 167.7 715 167.2 715.1 Q157.5 713.6 148.8 714.05 L148.2 713.85 147.9 713.3 147.9 712.7 Q148.05 712.4 148.35 712.2 158.15 706.85 166.7 708.5 166.95 708.55 167.2 708.8 L167.45 709.3 M92.1 721.45 L92.1 721 92.4 720.6 Q97.95 716.55 106.8 717.05 L107.3 717.25 107.5 717.7 107.5 718.2 107.1 718.55 Q99.85 720.55 94.25 725.5 L93.8 725.6 93.35 725.45 93.15 725.05 92.1 721.45 M88.55 709.3 Q88.6 708.95 88.8 708.8 L89.3 708.5 Q97.85 706.85 107.65 712.2 L108.1 712.7 108.1 713.3 107.8 713.85 107.2 714.05 Q98.5 713.6 88.8 715.1 L88.3 715 87.85 714.55 87.85 713.95 88.55 709.3"/>
+ <path stroke="none" fill="#6D4526" d="M309.5 671.9 L308.55 671.25 308.45 671.2 Q304.65 668.55 304 662.5 L304 662.75 303.8 660.35 303.8 660.3 Q303.7 653.3 307.95 646.05 312.2 638.65 318.35 635.25 L318.4 635.2 Q325.1 631.5 330 633.8 L330.4 634 332.6 635.25 Q341.55 640.4 346.7 647.45 363.05 636.45 383.95 636.45 404.9 636.45 421.25 647.45 426.35 640.4 435.35 635.25 L435.4 635.25 Q436.45 634.6 437.6 634 L438 633.8 Q442.85 631.5 449.6 635.2 L449.65 635.25 Q455.75 638.65 460.05 646.05 L460 646.05 Q464.25 653.3 464.15 660.3 L464.15 660.35 464.05 662.55 Q463.3 668.55 459.5 671.2 L459.45 671.25 458.5 671.9 458.25 672.05 457.15 672.65 457.05 672.7 Q451.75 675.8 446.55 677.4 451.95 689.85 451.95 704.45 L451.95 706.45 451.95 706.55 Q451.5 722.4 444.65 735.55 439.9 744.7 432.05 752.5 L429.65 754.75 425.55 758.3 Q407.65 772.45 383.95 772.45 360.25 772.45 342.4 758.3 L342.35 758.3 338.25 754.75 335.9 752.5 Q316.7 733.4 316 706.65 L315.95 704.45 Q315.95 689.8 321.4 677.35 316.2 675.75 310.95 672.75 L310.8 672.65 309.7 672.05 309.5 671.9"/>
+ <path stroke="none" fill="#8E5A32" d="M337.8 660.1 Q334.5 656.85 330 654.2 L328.25 653.25 Q325.45 652.1 321.5 654.2 317.2 656.7 314.2 661.95 312.25 665.25 311.6 668.5 L310.85 668 Q308.4 666.15 307.95 662.05 308.45 657.1 311.4 652.05 315.05 645.7 320.3 642.7 325.05 640.1 328.45 641.5 L330.6 642.7 Q339.15 647.65 343.9 654.45 341.25 656.6 338.7 659.15 L337.8 660.1 M424.05 654.5 Q428.75 647.7 437.35 642.7 L439.5 641.5 Q442.9 640.1 447.65 642.7 452.9 645.7 456.55 652.05 459.5 657.1 460.05 662.05 459.55 666.15 457.1 668 L456.35 668.5 Q455.7 665.25 453.75 661.95 450.75 656.7 446.45 654.2 442.5 652.1 439.7 653.25 L437.95 654.2 Q433.4 656.85 430.15 660.15 L429.2 659.15 Q426.7 656.65 424.05 654.5"/>
+ <path stroke="none" fill="#B67340" d="M424.05 654.5 L422.35 653.15 Q427.1 644.6 437.35 638.7 L439.5 637.5 Q442.9 636.1 447.65 638.7 452.9 641.7 456.55 648.05 460.2 654.3 460.15 660.3 L460.05 662.05 Q459.5 657.1 456.55 652.05 452.9 645.7 447.65 642.7 442.9 640.1 439.5 641.5 L437.35 642.7 Q428.75 647.7 424.05 654.5 M343.9 654.45 Q339.15 647.65 330.6 642.7 L328.45 641.5 Q325.05 640.1 320.3 642.7 315.05 645.7 311.4 652.05 308.45 657.1 307.95 662.05 L307.8 660.3 Q307.75 654.3 311.4 648.05 315.05 641.7 320.3 638.7 325.05 636.1 328.45 637.5 L330.6 638.7 Q340.8 644.6 345.6 653.1 L343.9 654.45"/>
+ <path stroke="none" fill="#774B2A" d="M311.6 668.5 Q312.25 665.25 314.2 661.95 317.2 656.7 321.5 654.2 325.45 652.1 328.25 653.25 L330 654.2 Q334.5 656.85 337.8 660.1 331.25 666.9 327.1 674.65 320.15 673.4 312.9 669.25 L311.6 668.5 M430.15 660.15 Q433.4 656.85 437.95 654.2 L439.7 653.25 Q442.5 652.1 446.45 654.2 450.75 656.7 453.75 661.95 455.7 665.25 456.35 668.5 L455.05 669.25 Q447.8 673.45 440.8 674.65 436.65 666.9 430.15 660.15"/>
+ <path stroke="none" fill="#BD7841" d="M430.15 660.15 Q436.65 666.9 440.8 674.65 447.95 688.1 447.95 704.45 L447.95 706.45 Q447.25 681.25 429.2 663.15 414.1 648.1 393.95 645.15 L383.95 644.45 373.95 645.15 Q353.8 648.1 338.7 663.15 320.65 681.25 320 706.45 L319.95 704.45 Q319.95 688.1 327.1 674.65 331.25 666.9 337.8 660.1 L338.7 659.15 Q341.25 656.6 343.9 654.45 L345.6 653.1 Q362.15 640.45 383.95 640.45 405.8 640.45 422.35 653.15 L424.05 654.5 Q426.7 656.65 429.2 659.15 L430.15 660.15"/>
+ <path stroke="none" fill="#A16639" d="M401.45 663.9 Q401.45 658.7 396.3 655.05 391.2 651.4 383.95 651.4 376.7 651.4 371.55 655.05 366.45 658.7 366.45 663.9 L366.5 664.75 Q366.85 675.35 371.55 683 376.7 691.4 383.95 691.4 391.2 691.4 396.3 683 401.05 675.35 401.45 664.75 L401.45 663.9 M320 706.45 Q320.65 681.25 338.7 663.15 353.8 648.1 373.95 645.15 L383.95 644.45 393.95 645.15 Q414.1 648.1 429.2 663.15 447.25 681.25 447.95 706.45 447.55 721.35 441.1 733.7 436.6 742.3 429.2 749.65 L426.95 751.8 423.05 755.15 Q406.85 741.4 383.95 741.4 361.1 741.4 344.85 755.15 L340.95 751.8 338.7 749.65 Q320.65 731.65 320 706.45"/>
+ <path stroke="none" fill="#AA6C3C" d="M401.45 663.9 L401.45 664.75 Q401.05 675.35 396.3 683 391.2 691.4 383.95 691.4 376.7 691.4 371.55 683 366.85 675.35 366.5 664.75 L366.45 663.9 Q366.45 658.7 371.55 655.05 376.7 651.4 383.95 651.4 391.2 651.4 396.3 655.05 401.45 658.7 401.45 663.9"/>
+ <path stroke="none" fill="#955E34" d="M344.85 755.15 Q361.1 741.4 383.95 741.4 406.85 741.4 423.05 755.15 406.25 768.45 383.95 768.45 361.65 768.45 344.85 755.15"/>
+ <path stroke="none" fill="#545454" d="M371.1 707.65 L370.9 705.3 370.9 704.4 Q371.2 702 374.7 700.3 378.55 698.45 383.95 698.45 389.35 698.45 393.2 700.3 396.65 702 397 704.4 L397 705.3 396.8 707.65 Q396.1 705.75 393.2 704.3 389.35 702.45 383.95 702.45 378.55 702.45 374.7 704.3 371.8 705.7 371.1 707.65"/>
+ <path stroke="none" fill="#464646" d="M371.1 707.65 Q371.8 705.7 374.7 704.3 378.55 702.45 383.95 702.45 389.35 702.45 393.2 704.3 396.1 705.75 396.8 707.65 396.15 711.6 393.2 714.55 391.05 716.7 388.4 717.65 384.15 719.4 379.5 717.65 376.85 716.7 374.7 714.55 371.75 711.6 371.1 707.65"/>
+ <path stroke="none" fill="#383838" d="M388.4 717.65 L389.25 718.65 Q390.2 719.6 391.3 720.15 392.7 720.8 394.35 720.8 397.35 720.8 399.5 718.65 L400.75 717 401.25 716.55 401.95 716.6 406.65 719.05 407.1 719.55 407.05 720.2 405.55 722.5 404.5 723.65 Q400.25 727.85 394.35 727.85 388.45 727.85 384.25 723.65 L383.95 723.35 383.65 723.65 Q379.4 727.85 373.5 727.85 367.55 727.85 363.4 723.65 L362.35 722.5 Q361.45 721.4 360.85 720.3 360.65 719.95 360.8 719.65 360.85 719.3 361.2 719.1 L365.8 716.55 366.45 716.45 367 716.9 Q367.55 717.85 368.35 718.65 370.5 720.8 373.5 720.8 375.15 720.8 376.6 720.15 L378.65 718.65 379.5 717.65 Q384.15 719.4 388.4 717.65"/>
+ <path stroke="none" fill="#8E5A32" d="M427.15 692.1 Q427.15 688.25 424.45 685.55 421.7 682.85 417.85 682.85 414.05 682.85 411.3 685.55 408.6 688.25 408.6 692.1 408.6 695.95 411.3 698.55 414.05 701.35 417.85 701.35 421.7 701.35 424.45 698.55 427.15 695.95 427.15 692.1 M432.8 688.65 Q434.7 695.85 431.85 702 428.95 708.3 422.95 709.9 417 711.45 411.35 707.45 405.8 703.6 403.85 696.4 L403.85 696.35 Q402.25 690.35 405.35 685 408.5 679.6 414.45 678.05 420.45 676.45 425.85 679.55 431.15 682.6 432.8 688.6 L432.8 688.65 M340.75 692.1 Q340.75 695.95 343.45 698.55 346.2 701.35 350.05 701.35 353.85 701.35 356.6 698.55 359.3 695.95 359.3 692.1 359.3 688.25 356.6 685.55 353.85 682.85 350.05 682.85 346.2 682.85 343.45 685.55 340.75 688.25 340.75 692.1 M335.1 688.65 L335.1 688.6 Q336.75 682.6 342.05 679.55 347.45 676.45 353.45 678.05 359.4 679.6 362.55 685 365.65 690.35 364.05 696.35 L364.05 696.4 Q362.1 703.6 356.55 707.45 350.9 711.45 344.95 709.9 338.95 708.3 336.05 702 333.2 695.85 335.1 688.65"/>
+ <path stroke="none" fill="#FFFFFF" d="M427.15 692.1 Q427.15 695.95 424.45 698.55 421.7 701.35 417.85 701.35 414.05 701.35 411.3 698.55 408.6 695.95 408.6 692.1 408.6 688.25 411.3 685.55 414.05 682.85 417.85 682.85 421.7 682.85 424.45 685.55 427.15 688.25 427.15 692.1 M422.65 692.25 Q422.65 689.8 420.95 688.15 419.25 686.45 416.85 686.45 414.45 686.45 412.7 688.15 411 689.8 411 692.25 411 694.65 412.7 696.3 414.45 698.05 416.85 698.05 419.25 698.05 420.95 696.3 422.65 694.65 422.65 692.25 M340.75 692.1 Q340.75 688.25 343.45 685.55 346.2 682.85 350.05 682.85 353.85 682.85 356.6 685.55 359.3 688.25 359.3 692.1 359.3 695.95 356.6 698.55 353.85 701.35 350.05 701.35 346.2 701.35 343.45 698.55 340.75 695.95 340.75 692.1 M345.25 692.25 Q345.25 694.65 346.95 696.3 348.65 698.05 351.05 698.05 353.45 698.05 355.2 696.3 356.9 694.65 356.9 692.25 356.9 689.8 355.2 688.15 353.45 686.45 351.05 686.45 348.65 686.45 346.95 688.15 345.25 689.8 345.25 692.25"/>
+ <path stroke="none" fill="#5B5B5B" d="M345.25 692.25 Q345.25 689.8 346.95 688.15 348.65 686.45 351.05 686.45 353.45 686.45 355.2 688.15 356.9 689.8 356.9 692.25 356.9 694.65 355.2 696.3 353.45 698.05 351.05 698.05 348.65 698.05 346.95 696.3 345.25 694.65 345.25 692.25 M422.65 692.25 Q422.65 694.65 420.95 696.3 419.25 698.05 416.85 698.05 414.45 698.05 412.7 696.3 411 694.65 411 692.25 411 689.8 412.7 688.15 414.45 686.45 416.85 686.45 419.25 686.45 420.95 688.15 422.65 689.8 422.65 692.25"/>
+ <path stroke="none" fill="#2D4D7B" d="M652.6 635.15 L652.7 635.15 653.6 635.35 653.8 635.35 Q661.05 637.1 667.75 640.45 677.65 645.35 686.1 653.8 703.7 671.4 706.1 695.3 L706.1 695.35 706.45 700.85 706.45 701 706.45 702.95 706.45 704.25 706.45 704.65 706.45 704.85 706.45 705.3 706.35 707.1 706.35 707.3 706.3 707.7 706.3 708 706.2 709.3 706.2 709.35 Q705.2 721.5 700.3 732.05 707.1 740.1 709.45 749 L709.5 749.05 Q710.9 754.35 710.35 758.55 709.65 764.15 705.9 767.9 L703.05 770.15 702.85 770.25 701.95 770.75 Q696.15 773.85 687.1 771.45 679.3 769.4 672.15 763.85 L672.2 763.9 671.6 763.45 Q656.1 772.45 636.95 772.45 618.4 772.45 603.45 764 L602.7 764.6 602.65 764.6 Q595.9 769.5 588.65 771.45 580.85 773.5 575.6 771.5 L575.5 771.5 Q574.1 771 572.9 770.25 L572.85 770.25 Q571.25 769.3 569.85 767.9 566.05 764.15 565.4 758.55 564.8 754.35 566.25 749.05 L566.25 749 Q568.4 740.95 574.35 733.5 568.85 722.35 567.75 709.45 L567.6 707.45 567.5 705.45 567.5 705.35 567.45 704.25 567.45 702.95 567.5 700.9 Q568.2 673.4 587.8 653.8 602.7 638.9 622.15 634.95 L622.2 634.95 623.1 634.75 624.8 634.45 624.7 634.45 629.95 633.8 631.85 616 631.85 615.95 Q632.1 613.55 633.8 612.05 L634.1 611.8 634.95 611.25 635.1 611.2 Q636.35 610.5 637.9 610.5 639.4 610.5 640.75 611.2 L641.2 611.45 642.05 612.05 Q643.8 613.7 644 616.2 L645.9 634 651.3 634.85 651.4 634.85 652.6 635.15"/>
+ <path stroke="none" fill="#5A9BF3" d="M702.45 701 L702.25 701.15 702.1 699.7 Q699.85 677.2 683.25 660.6 675.3 652.65 665.95 648 659.7 644.9 652.85 643.25 L650.5 642.75 Q644 641.45 636.95 641.45 L625.35 642.4 622.95 642.85 Q604.65 646.6 590.6 660.6 573.55 677.7 571.7 701.15 L571.5 701 Q572.15 675.1 590.6 656.6 604.65 642.6 622.95 638.85 L624 638.65 625.35 638.4 636.95 637.45 Q644 637.45 650.5 638.75 L651.8 639.05 652.85 639.25 Q659.7 640.9 665.95 644 675.3 648.65 683.25 656.6 699.85 673.2 702.1 695.7 L702.45 701"/>
+ <path stroke="none" fill="#528CDB" d="M702.45 701 L702.45 702.95 702.45 704.25 702.45 704.65 702.45 705.05 702.35 706.85 702.3 707.7 702.2 709 Q701.15 721.8 695.5 732.75 L692.55 737.9 691.75 739.1 Q688.1 744.4 683.25 749.25 L681.25 751.2 Q676.8 755.35 671.95 758.5 656.5 768.45 636.95 768.45 618.05 768.45 603.05 759.15 597.6 755.8 592.65 751.25 L590.6 749.25 Q586.6 745.25 583.5 740.95 L582.2 739.1 579.1 734 Q572.85 722.6 571.7 709.1 L571.7 709 571.6 707.25 571.5 705.25 571.5 705.15 571.45 704.25 571.45 702.95 571.5 701 571.7 701.15 Q573.55 677.7 590.6 660.6 604.65 646.6 622.95 642.85 L625.35 642.4 636.95 641.45 Q644 641.45 650.5 642.75 L652.85 643.25 Q659.7 644.9 665.95 648 675.3 652.65 683.25 660.6 699.85 677.2 702.1 699.7 L702.25 701.15 702.45 701 M624.35 669.7 Q624.35 667.75 622.95 666.35 621.55 664.95 619.6 664.95 617.65 664.95 616.25 666.35 614.85 667.75 614.85 669.7 614.85 671.65 616.25 673.05 617.65 674.45 619.6 674.45 621.55 674.45 622.95 673.05 624.35 671.65 624.35 669.7 M613.2 657.75 Q613.2 656.3 612.15 655.25 611.1 654.2 609.65 654.2 608.2 654.2 607.15 655.25 606.1 656.3 606.1 657.75 606.1 659.2 607.15 660.25 608.2 661.3 609.65 661.3 611.1 661.3 612.15 660.25 613.2 659.2 613.2 657.75 M610.5 672.35 Q610.5 670 608.8 668.3 607.15 666.65 604.8 666.65 602.45 666.65 600.75 668.3 599.1 670 599.1 672.35 599.1 674.7 600.75 676.35 602.45 678.05 604.8 678.05 607.15 678.05 608.8 676.35 610.5 674.7 610.5 672.35 M658.15 753.2 Q657.55 750.9 655.45 749.75 653.45 748.6 651.2 749.2 648.9 749.8 647.65 751.85 646.55 753.85 647.15 756.15 647.75 758.4 649.75 759.6 651.85 760.8 654.15 760.2 656.4 759.6 657.55 757.5 658.75 755.45 658.15 753.2 M670.8 747.1 Q670.3 745.2 668.6 744.2 666.9 743.2 665.05 743.7 663.15 744.2 662.15 745.95 661.15 747.65 661.65 749.55 662.2 751.4 663.9 752.4 665.6 753.35 667.5 752.85 669.35 752.35 670.35 750.65 671.35 748.95 670.8 747.1 M657 738.4 Q656.6 737 655.35 736.25 654 735.5 652.6 735.9 651.2 736.25 650.5 737.55 649.75 738.85 650.15 740.25 650.5 741.65 651.8 742.4 653.05 743.1 654.45 742.75 655.85 742.35 656.65 741.1 657.35 739.8 657 738.4"/>
+ <path stroke="none" fill="#406EAF" d="M582.2 739.1 L583.5 740.95 Q586.6 745.25 590.6 749.25 L592.65 751.25 Q597.6 755.8 603.05 759.15 L602.2 759.85 600.3 761.35 Q594.2 765.8 587.6 767.55 581.2 769.25 576.85 767.7 575.8 767.35 574.9 766.8 572.8 763.2 573.35 758.05 573.55 756.15 574.1 754.05 575.95 747.2 580.75 740.85 L582.2 739.1 M671.95 758.5 Q676.8 755.35 681.25 751.2 L683.25 749.25 Q688.1 744.4 691.75 739.1 L692.55 737.9 693.95 739.6 Q699.55 746.5 701.6 754.05 L702.35 758.05 Q702.9 763.25 700.8 766.8 L700.15 767.15 Q695.45 769.5 688.1 767.55 681.05 765.7 674.6 760.7 L672.7 759.15 671.95 758.5"/>
+ <path stroke="none" fill="#4475BB" d="M579.1 734 L582.2 739.1 580.75 740.85 Q575.95 747.2 574.1 754.05 573.55 756.15 573.35 758.05 572.8 763.2 574.9 766.8 573.7 766.1 572.65 765.05 569.85 762.25 569.35 758.05 568.9 754.55 570.1 750.05 572.15 742.5 577.8 735.55 L579.1 734 M692.55 737.9 L695.5 732.75 696.8 734.15 Q703.35 741.7 705.6 750.05 706.8 754.55 706.35 758.05 705.85 762.25 703.05 765.05 L700.8 766.8 Q702.9 763.25 702.35 758.05 L701.6 754.05 Q699.55 746.5 693.95 739.6 L692.55 737.9"/>
+ <path stroke="none" fill="#4A7FC6" d="M657 738.4 Q657.35 739.8 656.65 741.1 655.85 742.35 654.45 742.75 653.05 743.1 651.8 742.4 650.5 741.65 650.15 740.25 649.75 738.85 650.5 737.55 651.2 736.25 652.6 735.9 654 735.5 655.35 736.25 656.6 737 657 738.4 M670.8 747.1 Q671.35 748.95 670.35 750.65 669.35 752.35 667.5 752.85 665.6 753.35 663.9 752.4 662.2 751.4 661.65 749.55 661.15 747.65 662.15 745.95 663.15 744.2 665.05 743.7 666.9 743.2 668.6 744.2 670.3 745.2 670.8 747.1 M658.15 753.2 Q658.75 755.45 657.55 757.5 656.4 759.6 654.15 760.2 651.85 760.8 649.75 759.6 647.75 758.4 647.15 756.15 646.55 753.85 647.65 751.85 648.9 749.8 651.2 749.2 653.45 748.6 655.45 749.75 657.55 750.9 658.15 753.2 M610.5 672.35 Q610.5 674.7 608.8 676.35 607.15 678.05 604.8 678.05 602.45 678.05 600.75 676.35 599.1 674.7 599.1 672.35 599.1 670 600.75 668.3 602.45 666.65 604.8 666.65 607.15 666.65 608.8 668.3 610.5 670 610.5 672.35 M613.2 657.75 Q613.2 659.2 612.15 660.25 611.1 661.3 609.65 661.3 608.2 661.3 607.15 660.25 606.1 659.2 606.1 657.75 606.1 656.3 607.15 655.25 608.2 654.2 609.65 654.2 611.1 654.2 612.15 655.25 613.2 656.3 613.2 657.75 M624.35 669.7 Q624.35 671.65 622.95 673.05 621.55 674.45 619.6 674.45 617.65 674.45 616.25 673.05 614.85 671.65 614.85 669.7 614.85 667.75 616.25 666.35 617.65 664.95 619.6 664.95 621.55 664.95 622.95 666.35 624.35 667.75 624.35 669.7"/>
+ <path stroke="none" fill="#5A9BF3" d="M680.2 688.6 Q676.4 687.65 673 689.6 669.5 691.6 668.5 695.4 667.45 699.2 669.45 702.7 671.4 706.05 675.2 707.05 679.05 708.1 682.5 706.2 685.9 704.15 686.95 700.35 687.95 696.5 686 693.1 684.05 689.7 680.2 688.6 M690.9 702.6 L690.7 703.05 Q689.1 708.3 684.3 711.15 679.3 714.05 673.7 712.55 668.2 711.05 665.3 706.1 662.5 701.2 663.95 695.85 L663.9 695.45 Q666.55 685.6 672.4 679.7 678.15 673.8 683.75 675.3 689.25 676.75 691.35 684.8 693.35 692.75 690.9 702.6 M595.5 688.6 Q591.65 689.7 589.7 693.1 587.75 696.5 588.75 700.35 589.8 704.15 593.2 706.2 596.65 708.1 600.5 707.05 604.3 706.05 606.25 702.7 608.25 699.2 607.2 695.4 606.2 691.6 602.7 689.6 599.3 687.65 595.5 688.6 M584.8 702.6 Q582.35 692.75 584.35 684.8 586.45 676.75 591.95 675.3 597.55 673.8 603.3 679.7 609.15 685.6 611.8 695.45 L611.75 695.85 Q613.2 701.2 610.4 706.1 607.5 711.05 602 712.55 596.4 714.05 591.4 711.15 586.6 708.3 585 703.05 L584.8 702.6"/>
+ <path stroke="none" fill="#FFFFFF" d="M677.3 692.3 L676.7 692.2 Q674.7 691.9 672.85 692.95 670.7 694.2 670.1 696.55 669.4 699 670.7 701.2 671.7 703.1 673.65 703.8 L674.2 703.95 Q676.65 704.6 678.8 703.35 681 702.05 681.6 699.7 682.25 697.25 680.95 695.05 679.75 693 677.3 692.3 M680.2 688.6 Q684.05 689.7 686 693.1 687.95 696.5 686.95 700.35 685.9 704.15 682.5 706.2 679.05 708.1 675.2 707.05 671.4 706.05 669.45 702.7 667.45 699.2 668.5 695.4 669.5 691.6 673 689.6 676.4 687.65 680.2 688.6 M595.5 688.6 Q599.3 687.65 602.7 689.6 606.2 691.6 607.2 695.4 608.25 699.2 606.25 702.7 604.3 706.05 600.5 707.05 596.65 708.1 593.2 706.2 589.8 704.15 588.75 700.35 587.75 696.5 589.7 693.1 591.65 689.7 595.5 688.6 M598.4 692.3 Q595.95 693 594.75 695.05 593.45 697.25 594.1 699.7 594.7 702.05 596.9 703.35 599.05 704.6 601.5 703.95 L602.05 703.8 Q604 703.1 605 701.2 606.3 699 605.6 696.55 605 694.2 602.85 692.95 601 691.9 599 692.2 L598.4 692.3"/>
+ <path stroke="none" fill="#5B5B5B" d="M598.4 692.3 L599 692.2 Q601 691.9 602.85 692.95 605 694.2 605.6 696.55 606.3 699 605 701.2 604 703.1 602.05 703.8 L601.5 703.95 Q599.05 704.6 596.9 703.35 594.7 702.05 594.1 699.7 593.45 697.25 594.75 695.05 595.95 693 598.4 692.3 M677.3 692.3 Q679.75 693 680.95 695.05 682.25 697.25 681.6 699.7 681 702.05 678.8 703.35 676.65 704.6 674.2 703.95 L673.65 703.8 Q671.7 703.1 670.7 701.2 669.4 699 670.1 696.55 670.7 694.2 672.85 692.95 674.7 691.9 676.7 692.2 L677.3 692.3"/>
+ <path stroke="none" fill="#FFFCF5" d="M632.25 650.2 L635.8 616.4 Q635.9 615.55 636.5 615 L636.9 614.75 637.9 614.5 638.95 614.75 639.3 615 639.35 615 Q639.95 615.55 640 616.4 L643.6 650 637.55 650.75 632.25 650.2 M644.05 653.9 L645.75 670.1 Q643.55 672.25 637.55 672.3 632.1 672.35 630.05 670.45 L631.8 654.15 Q633.9 654.85 637.55 654.8 641.65 654.75 644.05 653.9 M646.2 674.35 L646.95 681.4 Q646.05 686.7 637.55 686.85 629.6 686.95 628.85 681.8 L629.6 674.75 Q631.45 677.15 637.55 677.05 644.2 676.95 646.2 674.35"/>
+ <path stroke="none" fill="#F0EDE7" d="M646.2 674.35 Q644.2 676.95 637.55 677.05 631.45 677.15 629.6 674.75 L630.05 670.45 Q632.1 672.35 637.55 672.3 643.55 672.25 645.75 670.1 L646.2 674.35 M643.6 650 L644.05 653.9 Q641.65 654.75 637.55 654.8 633.9 654.85 631.8 654.15 L632.25 650.2 637.55 650.75 643.6 650 M646.95 681.4 L647.05 682.25 Q647.3 690.95 637.55 691.15 628.2 691.35 628.75 682.25 L628.85 681.8 Q629.6 686.95 637.55 686.85 646.05 686.7 646.95 681.4"/>
+ <path stroke="none" fill="#E7E7E7" d="M621.15 710.9 Q617.9 718.15 621.15 727.25 L618.55 726.4 Q615.4 725.3 614 722.35 612.55 719.35 613.65 716.3 614.7 713.15 617.7 711.7 619.4 710.9 621.15 710.9 M655.15 727.25 Q658.05 718.6 655.15 710.95 L657.55 711.55 Q660.6 712.75 661.85 715.8 663.1 718.85 661.9 721.9 660.65 724.9 657.65 726.25 L655.15 727.25"/>
+ <path stroke="none" fill="#FFFFFF" d="M655.15 727.25 Q639.55 732.9 621.15 727.25 617.9 718.15 621.15 710.9 622.45 710.9 623.75 711.35 638.9 716.65 651.5 711.55 653.3 710.8 655.15 710.95 658.05 718.6 655.15 727.25"/>
+ <path stroke="none" fill="#1B8045" d="M940.6 628.4 Q943.85 631.7 945.6 635.75 L945.7 636 Q947.4 640.2 947.5 645.25 L947.5 645.35 947.4 647.8 Q946.95 652.25 945.1 656.05 L949.7 656.75 Q957.5 658.8 961.5 665.85 L961.5 665.8 Q965.5 672.8 963.45 680.6 L962.7 682.85 962.7 682.95 961.4 685.55 Q963.9 694.45 963.9 704.45 L963.9 706.45 963.9 706.55 Q963.25 730.05 948.3 747.75 L943.95 752.45 943.95 752.5 Q939.8 756.65 935.3 759.95 918.1 772.45 895.9 772.45 872.1 772.45 854.2 758.15 L854.15 758.15 847.85 752.5 843.5 747.75 843.5 747.7 Q828.6 730.1 827.95 706.65 L827.9 704.45 Q827.9 694.45 830.4 685.5 L829.15 682.85 829.25 683 828.4 680.6 Q826.3 672.8 830.3 665.85 L830.3 665.8 Q834.4 658.8 842.15 656.75 L846.75 656.05 Q844.85 652.25 844.45 647.85 L844.3 645.35 844.3 645.25 Q844.35 640.5 846.05 636.45 L846.2 635.95 Q847.95 631.65 851.6 628.15 L852.05 627.75 Q858.95 621.25 868.5 621.25 L870.1 621.35 Q876.1 621.6 881.25 624.8 L881.15 624.8 881.95 625.3 884.75 627.4 885.7 628.3 885.75 628.35 Q889.4 632.05 891.15 636.6 L895.9 636.45 900.75 636.6 Q902.5 632 906.3 628.25 L906.3 628.3 906.35 628.25 906.4 628.2 Q908 626.6 909.75 625.45 L909.85 625.4 910.55 624.9 Q915.45 621.75 921.6 621.35 L923.3 621.25 Q933.3 621.25 940.4 628.2 L940.45 628.25 940.6 628.4"/>
+ <path stroke="none" fill="#31DE7A" d="M836.15 681 Q840.85 669 850.65 659.2 858.75 651.1 868.35 646.5 876.65 642.5 886 641.15 L895.9 640.45 905.8 641.15 Q915.15 642.5 923.45 646.5 933 651.1 941.1 659.2 950.95 669.05 955.65 681 L954.15 681.45 Q949.45 671.55 941.1 663.2 932.8 654.9 923 650.3 910.65 644.45 895.9 644.45 881.15 644.45 868.8 650.25 858.95 654.9 850.65 663.2 842.3 671.55 837.7 681.4 L836.15 681"/>
+ <path stroke="none" fill="#23A35A" d="M907.1 656.9 L907.45 657.4 Q907.85 658.15 907.6 659.3 L907.5 659.6 907.25 660.4 Q906.65 661.75 905.4 663 L905.35 663.1 Q904.45 663.95 903.2 663.95 901.9 663.95 901 663 900.1 662.1 900.1 660.85 900.1 660.15 900.35 659.6 L900.95 658.7 901.05 658.6 Q902.55 657.1 904.25 656.55 L904.4 656.55 Q905.75 656.15 906.55 656.55 L907.1 656.9 M886.55 663.1 L886.45 663 Q885.2 661.75 884.65 660.4 884.45 660 884.4 659.6 L884.3 659.3 Q884 658.15 884.4 657.4 L884.8 656.9 Q885 656.65 885.35 656.55 886.15 656.15 887.5 656.55 L887.6 656.55 Q889.3 657.05 890.85 658.6 L890.95 658.7 891.55 659.6 891.8 660.85 Q891.8 662.1 890.85 663 889.95 663.95 888.7 663.95 887.45 663.95 886.55 663.1"/>
+ <path stroke="none" fill="#2ECC71" d="M886.55 663.1 Q887.45 663.95 888.7 663.95 889.95 663.95 890.85 663 891.8 662.1 891.8 660.85 L891.55 659.6 890.95 658.7 890.85 658.6 Q889.3 657.05 887.6 656.55 L887.5 656.55 Q886.15 656.15 885.35 656.55 885 656.65 884.8 656.9 L884.4 657.4 Q884 658.15 884.3 659.3 L884.4 659.6 Q884.45 660 884.65 660.4 885.2 661.75 886.45 663 L886.55 663.1 M837.7 681.4 Q842.3 671.55 850.65 663.2 858.95 654.9 868.8 650.25 881.15 644.45 895.9 644.45 910.65 644.45 923 650.3 932.8 654.9 941.1 663.2 949.45 671.55 954.15 681.45 929.7 688 895.95 688 862.2 688 837.7 681.4 M907.1 656.9 L906.55 656.55 Q905.75 656.15 904.4 656.55 L904.25 656.55 Q902.55 657.1 901.05 658.6 L900.95 658.7 900.35 659.6 Q900.1 660.15 900.1 660.85 900.1 662.1 901 663 901.9 663.95 903.2 663.95 904.45 663.95 905.35 663.1 L905.4 663 Q906.65 661.75 907.25 660.4 L907.5 659.6 907.6 659.3 Q907.85 658.15 907.45 657.4 L907.1 656.9"/>
+ <path stroke="none" fill="#E5E5E5" d="M956.95 684.65 Q959.9 693.9 959.9 704.45 L959.9 706.45 Q959.3 728.55 945.25 745.15 L941.1 749.65 Q937.2 753.6 932.95 756.7 916.8 768.45 895.9 768.45 873.5 768.45 856.65 755 L850.65 749.65 846.55 745.15 Q832.5 728.55 831.95 706.45 L831.9 704.45 Q831.9 693.9 834.85 684.6 L836.15 685 837.7 685.4 Q862.2 692 895.95 692 929.7 692 954.15 685.45 L955.65 685 956.95 684.65 M923 746.25 Q922.4 743.95 920.3 742.8 918.3 741.65 916.05 742.25 913.75 742.85 912.5 744.9 911.4 746.9 912 749.2 912.6 751.45 914.6 752.65 916.7 753.85 919 753.25 921.25 752.65 922.4 750.55 923.6 748.5 923 746.25 M921.85 731.45 Q921.45 730.05 920.2 729.3 918.85 728.55 917.45 728.95 916.05 729.3 915.35 730.6 914.6 731.9 915 733.3 915.35 734.7 916.65 735.45 917.9 736.15 919.3 735.8 920.7 735.4 921.5 734.15 922.2 732.85 921.85 731.45 M935.65 740.15 Q935.15 738.25 933.45 737.25 931.75 736.25 929.9 736.75 928 737.25 927 739 926 740.7 926.5 742.6 927.05 744.45 928.75 745.45 930.45 746.4 932.35 745.9 934.2 745.4 935.2 743.7 936.2 742 935.65 740.15"/>
+ <path stroke="none" fill="#FFFFFF" d="M955.65 681 L956.95 684.65 955.65 685 954.15 685.45 Q929.7 692 895.95 692 862.2 692 837.7 685.4 L836.15 685 834.85 684.6 836.15 681 837.7 681.4 Q862.2 688 895.95 688 929.7 688 954.15 681.45 L955.65 681"/>
+ <path stroke="none" fill="#D7D7D7" d="M935.65 740.15 Q936.2 742 935.2 743.7 934.2 745.4 932.35 745.9 930.45 746.4 928.75 745.45 927.05 744.45 926.5 742.6 926 740.7 927 739 928 737.25 929.9 736.75 931.75 736.25 933.45 737.25 935.15 738.25 935.65 740.15 M921.85 731.45 Q922.2 732.85 921.5 734.15 920.7 735.4 919.3 735.8 917.9 736.15 916.65 735.45 915.35 734.7 915 733.3 914.6 731.9 915.35 730.6 916.05 729.3 917.45 728.95 918.85 728.55 920.2 729.3 921.45 730.05 921.85 731.45 M923 746.25 Q923.6 748.5 922.4 750.55 921.25 752.65 919 753.25 916.7 753.85 914.6 752.65 912.6 751.45 912 749.2 911.4 746.9 912.5 744.9 913.75 742.85 916.05 742.25 918.3 741.65 920.3 742.8 922.4 743.95 923 746.25"/>
+ <path stroke="none" fill="#31DE7A" d="M903.25 647.35 L903.15 645.35 Q903.15 637 909.1 631.1 L909.15 631.05 Q910.55 629.7 912.05 628.7 L912.7 628.25 Q916.75 625.65 921.85 625.35 L923.3 625.25 Q931.65 625.25 937.6 631.05 L937.75 631.2 Q940.5 634 941.95 637.45 L942 637.5 Q943.45 641.05 943.5 645.3 L943.5 645.35 943.4 647.4 Q943.1 644.25 942 641.5 L941.95 641.45 Q940.5 638 937.75 635.2 L937.6 635.05 Q931.65 629.25 923.3 629.25 L921.85 629.35 Q916.75 629.65 912.7 632.25 L912.05 632.7 Q910.55 633.7 909.15 635.05 L909.1 635.1 Q903.85 640.3 903.25 647.35 M848.4 647.45 L848.3 645.35 848.3 645.3 Q848.35 640.9 850.05 637.2 L849.9 637.45 Q851.35 633.9 854.35 631 L854.35 631.05 Q860.25 625.25 868.5 625.25 L869.85 625.35 Q874.85 625.55 879.1 628.2 L879.6 628.55 Q880.9 629.35 882.1 630.4 L882.85 631.1 882.9 631.15 Q888.7 637 888.7 645.35 L888.6 647.3 Q887.95 640.25 882.9 635.15 L882.85 635.1 882.1 634.4 Q880.9 633.35 879.6 632.55 L879.1 632.2 Q874.85 629.55 869.85 629.35 L868.5 629.25 Q860.25 629.25 854.35 635.05 L854.35 635 Q851.35 637.9 849.9 641.45 L850.05 641.2 Q848.7 644.1 848.4 647.45"/>
+ <path stroke="none" fill="#2ECC71" d="M848.4 647.45 Q848.7 644.1 850.05 641.2 L849.9 641.45 Q851.35 637.9 854.35 635 L854.35 635.05 Q860.25 629.25 868.5 629.25 L869.85 629.35 Q874.85 629.55 879.1 632.2 L879.6 632.55 Q880.9 633.35 882.1 634.4 L882.85 635.1 882.9 635.15 Q887.95 640.25 888.6 647.3 887.95 654.5 882.85 659.55 L882.85 659.5 882.5 659.85 882.25 660.15 880.5 661.55 880.45 661.6 Q875.1 665.5 868.5 665.5 860.2 665.55 854.2 659.5 L854.4 659.65 Q849.05 654.6 848.4 647.45 M935.5 645.35 L935.5 645.3 Q935.5 642.75 934.6 640.6 933.7 638.5 932 636.75 928.4 633.25 923.3 633.25 L922.65 633.3 Q919.5 633.4 917 635 L916.85 635.1 Q915.75 635.75 914.75 636.75 911.15 640.3 911.15 645.35 911.15 650.4 914.75 653.85 L916.1 655.1 Q919.2 657.5 923.3 657.5 928.4 657.5 932 653.85 935.5 650.4 935.5 645.35 M943.4 647.4 Q942.75 654.45 937.7 659.5 L937.65 659.55 Q931.7 665.5 923.3 665.5 916.4 665.45 911.2 661.45 L910.9 661.2 909.25 659.65 909.1 659.5 Q903.85 654.45 903.25 647.35 903.85 640.3 909.1 635.1 L909.15 635.05 Q910.55 633.7 912.05 632.7 L912.7 632.25 Q916.75 629.65 921.85 629.35 L923.3 629.25 Q931.65 629.25 937.6 635.05 L937.75 635.2 Q940.5 638 941.95 641.45 L942 641.5 Q943.1 644.25 943.4 647.4 M856.3 645.35 Q856.3 650.4 859.9 653.85 863.5 657.5 868.5 657.5 872.5 657.5 875.7 655.15 L876.85 654.2 877.2 653.85 Q880.7 650.4 880.7 645.35 880.7 640.3 877.2 636.75 L876.85 636.45 874.95 635.05 874.9 635 Q872.3 633.4 869.2 633.3 L868.5 633.25 Q863.5 633.25 859.9 636.75 858.15 638.45 857.3 640.5 856.3 642.7 856.3 645.3 L856.3 645.35"/>
+ <path stroke="none" fill="#D23007" d="M856.3 645.35 L856.3 645.3 Q856.3 642.7 857.3 640.5 858.15 638.45 859.9 636.75 863.5 633.25 868.5 633.25 L869.2 633.3 Q872.3 633.4 874.9 635 L874.95 635.05 876.85 636.45 877.2 636.75 Q880.7 640.3 880.7 645.35 880.7 650.4 877.2 653.85 L876.85 654.2 875.7 655.15 Q872.5 657.5 868.5 657.5 863.5 657.5 859.9 653.85 856.3 650.4 856.3 645.35 M935.5 645.35 Q935.5 650.4 932 653.85 928.4 657.5 923.3 657.5 919.2 657.5 916.1 655.1 L914.75 653.85 Q911.15 650.4 911.15 645.35 911.15 640.3 914.75 636.75 915.75 635.75 916.85 635.1 L917 635 Q919.5 633.4 922.65 633.3 L923.3 633.25 Q928.4 633.25 932 636.75 933.7 638.5 934.6 640.6 935.5 642.75 935.5 645.3 L935.5 645.35 M929.65 645.6 Q929.65 642.3 927.4 640.15 925.15 638 922 638 919.15 638 916.9 639.85 L916.55 640.15 Q914.3 642.3 914.3 645.6 914.3 648.7 916.5 650.85 L916.55 650.9 Q918.9 653.2 922 653.2 925.15 653.2 927.4 650.9 929.65 648.75 929.65 645.6 M862.25 645.6 Q862.25 648.75 864.5 650.9 866.65 653.2 869.85 653.2 873 653.2 875.25 650.9 L875.35 650.85 Q876.3 649.85 876.85 648.7 877.5 647.3 877.5 645.6 877.5 643.85 876.85 642.4 876.3 641.15 875.25 640.15 L874.9 639.85 Q872.75 638 869.85 638 866.65 638 864.5 640.15 862.25 642.3 862.25 645.6"/>
+ <path stroke="none" fill="#3F3F3F" d="M862.25 645.6 Q862.25 642.3 864.5 640.15 866.65 638 869.85 638 872.75 638 874.9 639.85 L875.25 640.15 Q876.3 641.15 876.85 642.4 877.5 643.85 877.5 645.6 877.5 647.3 876.85 648.7 876.3 649.85 875.35 650.85 L875.25 650.9 Q873 653.2 869.85 653.2 866.65 653.2 864.5 650.9 862.25 648.75 862.25 645.6 M929.65 645.6 Q929.65 648.75 927.4 650.9 925.15 653.2 922 653.2 918.9 653.2 916.55 650.9 L916.5 650.85 Q914.3 648.7 914.3 645.6 914.3 642.3 916.55 640.15 L916.9 639.85 Q919.15 638 922 638 925.15 638 927.4 640.15 929.65 642.3 929.65 645.6"/>
+ <path stroke="none" fill="#2ECC71" d="M862.5 673.5 Q863.15 678.6 860.5 683.25 857.35 688.8 851.15 690.45 845 692.1 839.4 688.9 834.7 686.25 832.9 681.45 832.05 676.35 834.8 671.65 838 666.1 844.15 664.45 850.35 662.8 855.9 666 860.5 668.7 862.5 673.5 M958.95 681.45 Q957.05 686.2 952.35 688.9 946.85 692.1 940.65 690.45 934.45 688.8 931.25 683.25 928.6 678.6 929.35 673.5 931.25 668.7 935.85 666 941.45 662.8 947.65 664.45 953.85 666.1 956.95 671.65 959.7 676.3 958.95 681.45"/>
+ <path stroke="none" fill="#31DE7A" d="M929.35 673.5 Q929.45 672.5 929.7 671.55 931.35 665.35 936.9 662.15 942.45 658.95 948.65 660.6 954.85 662.25 958 667.8 961.2 673.35 959.55 679.55 L958.95 681.45 Q959.7 676.3 956.95 671.65 953.85 666.1 947.65 664.45 941.45 662.8 935.85 666 931.25 668.7 929.35 673.5 M862.5 673.5 Q860.5 668.7 855.9 666 850.35 662.8 844.15 664.45 838 666.1 834.8 671.65 832.05 676.35 832.9 681.45 L832.25 679.55 Q830.6 673.35 833.75 667.8 837 662.25 843.15 660.6 849.35 658.95 854.85 662.15 860.45 665.35 862.1 671.55 L862.5 673.5"/>
+ <path stroke="none" fill="#6D4526" d="M1101.35 636.7 Q1107.9 638.65 1115.7 634.6 L1115.75 634.6 Q1128.95 627.85 1141.05 633.85 L1141.4 634.1 Q1143.05 635.15 1144.4 636.35 L1149.5 636.15 1156.05 636.45 Q1157.4 635.15 1159.1 634.1 L1159.5 633.85 Q1171.55 627.85 1184.8 634.6 1192.6 638.65 1199.2 636.7 L1199.3 636.65 Q1202 635.65 1201.05 632.3 1200.7 631 1201.2 629.75 1201.65 628.5 1202.8 627.8 1203.95 627.1 1205.25 627.25 1212.7 627.9 1216.3 632.25 1221.45 637.65 1219.35 649.8 1218.2 658.2 1209.2 663.35 1219.8 661.9 1232.3 664.45 L1232.25 664.45 1235 665 1235.3 665.1 Q1241.3 666.85 1243.8 673.45 L1243.8 673.5 Q1246.25 679.9 1243.5 687.7 L1243.45 687.7 Q1240.75 695.2 1234.9 699.7 L1234.75 699.8 Q1229.65 703.4 1224.8 703.45 L1222.95 703.45 1222.5 703.4 1219.85 702.8 1217.5 702.35 1217.5 704.15 1217.5 706.15 1217.5 706.25 Q1217.05 722.1 1210.2 735.25 1205.45 744.4 1197.6 752.2 1189.4 760.35 1179.85 765.2 1183.45 771.05 1180.9 774.85 L1180.6 775.35 Q1178.15 780.7 1168.3 779.4 L1168.3 779.35 1164.7 778.65 1164.35 781.15 1164.3 781.25 Q1163.55 784.05 1161.35 785.25 L1161.3 785.25 Q1157.65 788.15 1151.7 783.6 L1151.65 783.55 1149.5 781.55 1147.3 783.55 Q1141.4 788.15 1137.7 785.25 1135.5 784.1 1134.7 781.35 L1134.65 781.25 Q1134.3 780.1 1134.3 778.65 L1130.7 779.35 1130.65 779.4 Q1121 780.7 1118.45 775.45 L1117.9 774.55 Q1115.75 770.8 1119.15 765.2 1109.6 760.35 1101.45 752.2 1082.25 733.1 1081.55 706.35 L1081.5 704.15 1081.55 702.4 1079.3 702.85 1079.25 702.85 1076.5 703.4 1076.45 703.4 1074.2 703.5 Q1069.35 703.4 1064.25 699.8 L1064.15 699.7 Q1058.25 695.2 1055.55 687.7 1052.75 679.9 1055.2 673.5 L1055.2 673.45 Q1057.7 666.85 1063.75 665.15 L1063.85 665.1 1066.9 664.45 1066.7 664.5 Q1080.55 661.65 1092.05 663.75 1082.35 658.5 1081.15 649.8 1079.05 637.65 1084.25 632.25 1087.8 627.9 1095.25 627.25 1096.55 627.1 1097.7 627.8 1098.85 628.5 1099.35 629.75 1099.8 631 1099.45 632.3 1098.5 635.65 1101.25 636.65 L1101.35 636.7"/>
+ <path stroke="none" fill="#704E35" d="M1074.5 699.5 Q1070.65 699.4 1066.55 696.5 1061.6 692.7 1059.3 686.35 1057.05 680.05 1058.95 674.85 1060.7 670.2 1064.9 668.95 L1067.5 668.4 Q1081.55 665.55 1093 668 L1094.2 668.3 Q1083.85 666.65 1071.5 669.1 L1068.7 669.75 Q1064.55 671 1062.75 675.65 1060.9 680.9 1063.1 687.1 1065.4 693.55 1070.5 697.3 1072.45 698.85 1074.5 699.5 M1204.8 668.3 L1206 667.95 Q1217.45 665.5 1231.5 668.35 L1234.1 668.9 Q1238.3 670.2 1240.05 674.85 1241.95 680.05 1239.7 686.35 1237.4 692.7 1232.45 696.5 1228.35 699.4 1224.5 699.45 1226.55 698.85 1228.5 697.3 1233.65 693.5 1235.9 687.1 1238.1 680.9 1236.25 675.6 1234.45 670.95 1230.3 669.75 L1227.5 669.1 Q1215.15 666.65 1204.8 668.3"/>
+ <path stroke="none" fill="#5F422D" d="M1204.8 668.3 Q1215.15 666.65 1227.5 669.1 L1230.3 669.75 Q1234.45 670.95 1236.25 675.6 1238.1 680.9 1235.9 687.1 1233.65 693.5 1228.5 697.3 1226.55 698.85 1224.5 699.45 L1223.3 699.45 1220.5 698.85 1217.5 698.25 1213 696.95 1216.25 695.3 Q1219.9 692.45 1221.55 687.9 1223.2 683.4 1221.85 679.6 1220.5 676.3 1217.45 675.45 1216.6 675.05 1215.55 675 1205.5 672.9 1197.2 674.7 L1195.85 675.1 1194.15 675.6 1192.5 676.15 1192.75 675.65 Q1194.65 672.1 1199.8 669.9 L1204.8 668.3 M1094.2 668.3 Q1103.5 670.65 1106.25 675.65 L1106.5 676.2 Q1105.05 675.6 1103.15 675.15 L1101.8 674.7 Q1093.5 672.95 1083.45 675 L1081.55 675.45 Q1078.5 676.3 1077.15 679.6 1075.8 683.45 1077.45 687.95 1079.1 692.5 1082.75 695.3 1084.45 696.5 1086 697 L1081.5 698.3 1078.5 698.9 1075.7 699.45 1074.5 699.5 Q1072.45 698.85 1070.5 697.3 1065.4 693.55 1063.1 687.1 1060.9 680.9 1062.75 675.65 1064.55 671 1068.7 669.75 L1071.5 669.1 Q1083.85 666.65 1094.2 668.3"/>
+ <path stroke="none" fill="#4F3725" d="M1106.5 676.2 L1106.8 676.8 Q1108 680.2 1106.25 683.55 1104.7 686.6 1100.75 689.65 1095.25 693.9 1087.45 696.55 L1086 697 Q1084.45 696.5 1082.75 695.3 1079.1 692.5 1077.45 687.95 1075.8 683.45 1077.15 679.6 1078.5 676.3 1081.55 675.45 L1083.45 675 Q1093.5 672.95 1101.8 674.7 L1103.15 675.15 Q1105.05 675.6 1106.5 676.2 M1213 696.95 L1211.55 696.55 Q1203.75 693.9 1198.25 689.6 1194.3 686.6 1192.75 683.55 1191.3 680.7 1191.85 677.9 L1192.2 676.75 1192.5 676.15 1194.15 675.6 1195.85 675.1 1197.2 674.7 Q1205.5 672.9 1215.55 675 1216.6 675.05 1217.45 675.45 1220.5 676.3 1221.85 679.6 1223.2 683.4 1221.55 687.9 1219.9 692.45 1216.25 695.3 L1213 696.95"/>
+ <path stroke="none" fill="#704E35" d="M1121.7 773.1 Q1120.15 770.15 1124.1 765.05 1128.05 759.8 1135.5 755.55 1148.95 747.9 1163.5 755.55 1170.9 759.8 1174.85 765.05 1178.85 770.15 1177.3 773.05 1176.6 771.25 1174.85 769.05 1170.9 763.8 1163.5 759.55 1148.95 751.9 1135.5 759.55 1128.05 763.8 1124.1 769.05 1122.35 771.25 1121.7 773.1"/>
+ <path stroke="none" fill="#5F422D" d="M1121.7 773.1 Q1122.35 771.25 1124.1 769.05 1128.05 763.8 1135.5 759.55 1148.95 751.9 1163.5 759.55 1170.9 763.8 1174.85 769.05 1176.6 771.25 1177.3 773.05 L1177.2 773.2 Q1175.45 776.3 1168.85 775.4 1164.4 774.75 1159.5 772.5 1160.3 774.7 1160.55 776.75 L1160.6 777 Q1160.8 778.9 1160.45 780.15 1160.15 781.3 1159.3 781.8 1157.4 782.9 1154.15 780.4 1151.65 778.4 1149.5 775.1 1147.3 778.4 1144.8 780.4 1141.6 782.9 1139.7 781.8 1138.85 781.3 1138.5 780.15 1138.15 778.9 1138.4 777.05 L1138.4 776.75 Q1138.7 774.7 1139.55 772.5 1134.6 774.75 1130.1 775.4 1123.55 776.3 1121.75 773.2 L1121.7 773.1"/>
+ <path stroke="none" fill="#704E35" d="M1186.95 736.05 Q1186.1 724.15 1176 715.5 1173 712.95 1169.65 711.1 1160.75 706.15 1149.5 706.15 1138.25 706.15 1129.4 711.05 1126 712.9 1122.95 715.5 1112.85 724.15 1112.05 736.05 L1112 734.15 1112 733.15 Q1112.4 720.55 1122.95 711.5 1126.7 708.3 1131 706.2 1139.25 702.15 1149.5 702.15 1159.75 702.15 1168 706.25 1172.25 708.3 1176 711.5 1186.55 720.55 1187 733.15 L1187 734.15 1186.95 736.05"/>
+ <path stroke="none" fill="#5F422D" d="M1112.05 736.05 Q1112.85 724.15 1122.95 715.5 1126 712.9 1129.4 711.05 1138.25 706.15 1149.5 706.15 1160.75 706.15 1169.65 711.1 1173 712.95 1176 715.5 1186.1 724.15 1186.95 736.05 1186.2 748.1 1176 756.75 1165 766.15 1149.5 766.15 1133.95 766.15 1122.95 756.75 1112.8 748.05 1112.05 736.05 M1168 706.25 Q1159.75 702.15 1149.5 702.15 1139.25 702.15 1131 706.2 1139.95 678.1 1139.5 644.85 L1149.5 644.15 1159.5 644.85 Q1159.05 678.1 1168 706.25 M1133.9 726.55 Q1135.4 727.95 1137.45 727.95 1139.6 727.95 1141.1 726.45 1142.6 724.95 1142.6 722.8 1142.6 721.7 1142.25 720.8 L1141.2 719.25 1141.05 719.1 Q1138.5 716.55 1135.65 715.7 L1135.45 715.65 Q1133.25 715 1131.9 715.7 1131.4 715.9 1131 716.3 L1130.4 717.15 Q1129.75 718.4 1130.2 720.3 L1130.3 720.8 1130.75 722.1 Q1131.7 724.35 1133.75 726.4 L1133.9 726.55 M1168 716.3 L1167.15 715.7 Q1165.75 715 1163.55 715.65 L1163.3 715.75 Q1160.45 716.6 1157.95 719.1 L1157.8 719.25 Q1157.15 719.95 1156.8 720.8 1156.4 721.7 1156.4 722.8 1156.4 724.95 1157.9 726.45 1159.4 727.95 1161.55 727.95 1163.6 727.95 1165.1 726.55 L1165.25 726.4 Q1167.3 724.35 1168.25 722.1 L1168.7 720.8 1168.85 720.3 Q1169.25 718.4 1168.6 717.15 L1168 716.3"/>
+ <path stroke="none" fill="#A16639" d="M1186.95 736.05 L1187 734.15 1187 733.15 Q1186.55 720.55 1176 711.5 1172.25 708.3 1168 706.25 1159.05 678.1 1159.5 644.85 1179.65 647.8 1194.75 662.85 1212.8 680.95 1213.5 706.15 1213.1 721.05 1206.65 733.4 1202.15 742 1194.75 749.35 1176 768.15 1149.5 768.15 1123 768.15 1104.25 749.35 1086.2 731.35 1085.55 706.15 1086.2 680.95 1104.25 662.85 1119.35 647.8 1139.5 644.85 1139.95 678.1 1131 706.2 1126.7 708.3 1122.95 711.5 1112.4 720.55 1112 733.15 L1112 734.15 1112.05 736.05 Q1112.8 748.05 1122.95 756.75 1133.95 766.15 1149.5 766.15 1165 766.15 1176 756.75 1186.2 748.1 1186.95 736.05"/>
+ <path stroke="none" fill="#4F3725" d="M1133.9 726.55 L1133.75 726.4 Q1131.7 724.35 1130.75 722.1 L1130.3 720.8 1130.2 720.3 Q1129.75 718.4 1130.4 717.15 L1131 716.3 Q1131.4 715.9 1131.9 715.7 1133.25 715 1135.45 715.65 L1135.65 715.7 Q1138.5 716.55 1141.05 719.1 L1141.2 719.25 1142.25 720.8 Q1142.6 721.7 1142.6 722.8 1142.6 724.95 1141.1 726.45 1139.6 727.95 1137.45 727.95 1135.4 727.95 1133.9 726.55 M1168 716.3 L1168.6 717.15 Q1169.25 718.4 1168.85 720.3 L1168.7 720.8 1168.25 722.1 Q1167.3 724.35 1165.25 726.4 L1165.1 726.55 Q1163.6 727.95 1161.55 727.95 1159.4 727.95 1157.9 726.45 1156.4 724.95 1156.4 722.8 1156.4 721.7 1156.8 720.8 1157.15 719.95 1157.8 719.25 L1157.95 719.1 Q1160.45 716.6 1163.3 715.75 L1163.55 715.65 Q1165.75 715 1167.15 715.7 L1168 716.3"/>
+ <path stroke="none" fill="#BD7841" d="M1085.55 706.15 L1085.5 704.15 Q1085.5 677.65 1104.25 658.85 1123 640.15 1149.5 640.15 1176 640.15 1194.75 658.85 1213.5 677.65 1213.5 704.15 L1213.5 706.15 Q1212.8 680.95 1194.75 662.85 1179.65 647.8 1159.5 644.85 L1149.5 644.15 1139.5 644.85 Q1119.35 647.8 1104.25 662.85 1086.2 680.95 1085.55 706.15"/>
+ <path stroke="none" fill="#5B5B5B" d="M1107.45 693.7 Q1107.45 691.05 1109.25 689.25 1111.1 687.4 1113.75 687.4 1116.3 687.4 1118.2 689.25 1120.05 691.05 1120.05 693.7 1120.05 696.25 1118.2 698.05 1116.3 699.85 1113.75 699.85 1111.1 699.85 1109.25 698.05 1107.45 696.25 1107.45 693.7 M1189.55 693.7 Q1189.55 696.25 1187.75 698.05 1185.9 699.85 1183.25 699.85 1180.7 699.85 1178.8 698.05 1176.95 696.25 1176.95 693.7 1176.95 691.05 1178.8 689.25 1180.7 687.4 1183.25 687.4 1185.9 687.4 1187.75 689.25 1189.55 691.05 1189.55 693.7"/>
+ <path stroke="none" fill="#FFFFFF" d="M1189.55 693.7 Q1189.55 691.05 1187.75 689.25 1185.9 687.4 1183.25 687.4 1180.7 687.4 1178.8 689.25 1176.95 691.05 1176.95 693.7 1176.95 696.25 1178.8 698.05 1180.7 699.85 1183.25 699.85 1185.9 699.85 1187.75 698.05 1189.55 696.25 1189.55 693.7 M1101.95 692.5 Q1101.95 688.3 1104.9 685.4 1107.85 682.45 1112 682.45 1116.1 682.45 1119.1 685.4 1122 688.3 1122 692.5 1122 696.65 1119.1 699.5 1116.1 702.5 1112 702.5 1107.85 702.5 1104.9 699.5 1101.95 696.65 1101.95 692.5 M1107.45 693.7 Q1107.45 696.25 1109.25 698.05 1111.1 699.85 1113.75 699.85 1116.3 699.85 1118.2 698.05 1120.05 696.25 1120.05 693.7 1120.05 691.05 1118.2 689.25 1116.3 687.4 1113.75 687.4 1111.1 687.4 1109.25 689.25 1107.45 691.05 1107.45 693.7 M1195.05 692.5 Q1195.05 696.65 1192.1 699.5 1189.15 702.5 1185 702.5 1180.9 702.5 1177.9 699.5 1175 696.65 1175 692.5 1175 688.3 1177.9 685.4 1180.9 682.45 1185 682.45 1189.15 682.45 1192.1 685.4 1195.05 688.3 1195.05 692.5"/>
+ <path stroke="none" fill="#FFDFC6" d="M1087.25 634.85 Q1090 631.7 1095.6 631.2 1093.55 638.6 1100.1 640.5 1108.1 643.05 1117.55 638.15 1128.9 632.35 1139.25 637.45 1144.65 640.9 1145.65 646.2 1142.6 643.25 1137.85 641.05 1124.35 635.95 1114.3 641.75 1105.95 646.65 1096.1 644.1 1088.15 642.2 1087.25 634.85 M1154.85 646.2 Q1155.85 640.9 1161.25 637.45 1171.6 632.35 1182.95 638.15 1192.4 643.05 1200.4 640.5 1206.95 638.6 1204.9 631.2 1210.5 631.7 1213.25 634.85 1212.35 642.2 1204.4 644.1 1194.55 646.65 1186.2 641.75 1176.15 635.95 1162.65 641.05 1157.9 643.25 1154.85 646.2"/>
+ <path stroke="none" fill="#EBCEB7" d="M1154.85 646.2 Q1157.9 643.25 1162.65 641.05 1176.15 635.95 1186.2 641.75 1194.55 646.65 1204.4 644.1 1212.35 642.2 1213.25 634.85 1217.1 639.3 1215.4 649.1 1213.45 660.25 1194.3 664.55 1163.3 670.45 1156.5 656.35 1155.3 653.6 1154.75 650.3 1154.5 648.1 1154.85 646.2 M1145.65 646.2 Q1146 648.1 1145.75 650.3 1145.2 653.6 1144 656.35 1137.2 670.45 1106.2 664.55 1087.05 660.25 1085.1 649.1 1083.4 639.3 1087.25 634.85 1088.15 642.2 1096.1 644.1 1105.95 646.65 1114.3 641.75 1124.35 635.95 1137.85 641.05 1142.6 643.25 1145.65 646.2"/>
+ <path stroke="none" fill="#857E7E" d="M179.45 833.6 L181.65 832.35 182.05 832.15 Q186.9 829.85 193.65 833.55 L193.7 833.6 Q199.8 837 204.1 844.4 L204.05 844.4 Q208.3 851.65 208.2 858.65 L208.2 858.7 208.1 860.9 Q207.35 866.9 203.55 869.55 L203.5 869.6 202.55 870.25 202.3 870.4 201.2 871 201.1 871.1 Q196.95 873.45 192.9 874.95 196 884.85 196 896 L196 898 196 898.15 Q195.5 914.3 188.4 927.75 186.3 931.65 183.65 935.35 L183.25 935.85 Q180.05 940.1 176.1 944.1 L171.2 948.6 171.15 948.65 Q169 950.45 166.7 952.05 149.8 964 128 964 106.15 964 89.3 952.1 L89.3 952.05 84.95 948.75 79.9 944.1 Q71.8 936 67.05 926.65 L66.8 926.05 61.25 909.35 61.05 908.2 61.05 908.1 61 907.9 60.8 906.9 60.8 906.7 60.75 906.5 60.75 906.3 60.7 906.1 60.55 904.6 60.45 904.1 60.45 903.8 60.4 903.45 60.4 903.4 60.35 903.15 60.3 902.6 60.25 902.05 60.2 901.5 60.05 898.2 60 896 Q60 884.8 63.15 874.95 59.1 873.45 54.95 871.1 L54.85 871 Q54.3 870.65 53.75 870.4 L53.55 870.25 52.6 869.6 52.5 869.55 Q48.7 866.9 48.05 860.85 L48.05 861.1 47.85 858.7 47.85 858.65 Q47.75 851.65 52 844.4 56.25 837 62.4 833.6 L62.45 833.55 Q69.15 829.85 74.05 832.15 L74.45 832.35 76.65 833.6 Q82.8 837.15 87.15 841.6 L89.3 840 Q106.2 828 128 828 149.85 828 166.7 839.95 L166.75 839.95 168.9 841.6 Q173.25 837.15 179.4 833.6 L179.45 833.6"/>
+ <path stroke="none" fill="#CDC6C6" d="M204.1 860.4 Q203.55 855.45 200.6 850.4 196.95 844.05 191.7 841.05 186.95 838.45 183.55 839.85 L181.4 841.05 Q171.75 846.65 167 854.5 L166.4 854 165.45 853.25 166.2 851.85 Q170.95 843.1 181.4 837.05 L183.55 835.85 Q186.95 834.45 191.7 837.05 196.95 840.05 200.6 846.4 204.25 852.65 204.2 858.65 L204.1 860.4 M89.05 854.45 Q84.25 846.6 74.65 841.05 L72.5 839.85 Q69.1 838.45 64.35 841.05 59.1 844.05 55.45 850.4 52.5 855.45 52 860.4 L51.85 858.65 Q51.8 852.65 55.45 846.4 59.1 840.05 64.35 837.05 69.1 834.45 72.5 835.85 L74.65 837.05 Q85.1 843.1 89.85 851.85 L90.6 853.25 89.05 854.45"/>
+ <path stroke="none" fill="#BDB6B6" d="M89.05 854.45 Q85.95 856.85 83.05 859.75 79.45 855.7 74.05 852.55 L72.3 851.6 Q69.5 850.45 65.55 852.55 61.25 855.05 58.25 860.3 56.3 863.6 55.65 866.85 L54.9 866.35 Q52.45 864.5 52 860.4 52.5 855.45 55.45 850.4 59.1 844.05 64.35 841.05 69.1 838.45 72.5 839.85 L74.65 841.05 Q84.25 846.6 89.05 854.45 M167 854.5 Q171.75 846.65 181.4 841.05 L183.55 839.85 Q186.95 838.45 191.7 841.05 196.95 844.05 200.6 850.4 203.55 855.45 204.1 860.4 203.6 864.5 201.15 866.35 L200.4 866.85 Q199.75 863.6 197.8 860.3 194.8 855.05 190.5 852.55 186.55 850.45 183.75 851.6 L182 852.55 Q176.6 855.7 173 859.75 L167 854.5"/>
+ <path stroke="none" fill="#A8A1A1" d="M173 859.75 Q176.6 855.7 182 852.55 L183.75 851.6 Q186.55 850.45 190.5 852.55 194.8 855.05 197.8 860.3 199.75 863.6 200.4 866.85 L199.1 867.6 Q191.2 872.15 183.6 873.2 179.45 866.15 173.3 860 L173 859.75 M55.65 866.85 Q56.3 863.6 58.25 860.3 61.25 855.05 65.55 852.55 69.5 850.45 72.3 851.6 L74.05 852.55 Q79.45 855.7 83.05 859.75 L82.75 860 Q76.6 866.15 72.45 873.2 64.85 872.15 56.95 867.6 L55.65 866.85"/>
+ <path stroke="none" fill="#DBD9D9" d="M64.05 898 L64 896 Q64 869.45 82.75 850.75 L86.4 847.35 Q88.95 845.15 91.6 843.25 107.5 832 128 832 148.55 832 164.4 843.2 L169.6 847.3 173.3 850.75 Q192 869.45 192 896 L192 898 Q191.3 872.75 173.3 854.75 170.25 851.7 167 849.15 L166.55 849.45 Q150.6 860 128 860 105.4 860 89.4 849.45 L89 849.2 Q85.75 851.75 82.75 854.75 64.7 872.75 64.05 898"/>
+ <path stroke="none" fill="#D2D0D0" d="M64.05 898 Q64.7 872.75 82.75 854.75 85.75 851.75 89 849.2 L89.4 849.45 Q105.4 860 128 860 150.6 860 166.55 849.45 L167 849.15 Q170.25 851.7 173.3 854.75 191.3 872.75 192 898 191.55 913.2 184.85 925.85 182.9 929.55 180.4 933 L180.35 933 Q177.2 937.3 173.25 941.25 L168.6 945.55 Q164.2 943.95 164.25 939.25 163.15 928 153.8 919.75 143.3 910.5 128.45 910.5 113.6 910.5 103.05 919.75 93.75 928 92.7 939.25 91.35 944.05 87.5 945.65 L82.7 941.25 Q75.1 933.65 70.6 924.8 L65.05 908.1 65.05 907.9 64.85 906.8 64.8 906.55 64.75 906.05 64.65 905.5 64.5 904.25 64.5 904.05 64.4 903.45 64.4 903.2 64.35 903 64.35 902.75 64.3 902.45 64.25 901.8 64.25 901.55 64.2 901.25 64.05 898"/>
+ <path stroke="none" fill="#BDB6B6" d="M168.6 945.55 L164.4 948.75 Q148.5 960 128 960 107.45 960 91.6 948.8 L87.5 945.65 Q91.35 944.05 92.7 939.25 93.75 928 103.05 919.75 113.6 910.5 128.45 910.5 143.3 910.5 153.8 919.75 163.15 928 164.25 939.25 164.2 943.95 168.6 945.55 M145.6 923.35 Q144.5 922.25 142.3 922.85 140.05 923.45 138.1 925.45 L137.95 925.55 Q136.9 926.65 136.9 928.25 136.9 929.85 138.05 930.95 139.15 932.1 140.8 932.1 142.3 932.1 143.45 931.05 L143.55 930.95 Q145.55 928.95 146.15 926.75 146.8 924.5 145.6 923.35 M113.45 931.05 Q114.55 932.1 116.1 932.1 117.7 932.1 118.85 930.95 119.95 929.85 119.95 928.25 119.95 926.65 118.9 925.55 L118.8 925.45 Q116.8 923.45 114.6 922.85 112.4 922.25 111.25 923.35 110.1 924.5 110.75 926.75 111.35 928.95 113.35 930.95 L113.45 931.05"/>
+ <path stroke="none" fill="#9A9494" d="M113.45 931.05 L113.35 930.95 Q111.35 928.95 110.75 926.75 110.1 924.5 111.25 923.35 112.4 922.25 114.6 922.85 116.8 923.45 118.8 925.45 L118.9 925.55 Q119.95 926.65 119.95 928.25 119.95 929.85 118.85 930.95 117.7 932.1 116.1 932.1 114.55 932.1 113.45 931.05 M145.6 923.35 Q146.8 924.5 146.15 926.75 145.55 928.95 143.55 930.95 L143.45 931.05 Q142.3 932.1 140.8 932.1 139.15 932.1 138.05 930.95 136.9 929.85 136.9 928.25 136.9 926.65 137.95 925.55 L138.1 925.45 Q140.05 923.45 142.3 922.85 144.5 922.25 145.6 923.35"/>
+ <path stroke="none" fill="#FFFFFF" d="M171.7 903.1 Q171.7 899.45 169.25 897 166.7 894.45 163.05 894.45 159.55 894.45 156.95 897 154.4 899.45 154.4 903.1 L154.45 903.95 Q154.7 906.9 156.95 909.05 159.55 911.55 163.05 911.55 166.7 911.55 169.25 909.05 171.4 906.9 171.65 903.95 L171.7 903.1 M179.25 903.2 Q179.25 908.9 175.2 912.8 171.15 916.9 165.45 916.9 159.85 916.9 155.7 912.8 151.75 908.9 151.75 903.2 151.75 897.45 155.7 893.45 159.85 889.4 165.45 889.4 171.15 889.4 175.2 893.45 179.25 897.45 179.25 903.2"/>
+ <path stroke="none" fill="#5B5B5B" d="M171.7 903.1 L171.65 903.95 Q171.4 906.9 169.25 909.05 166.7 911.55 163.05 911.55 159.55 911.55 156.95 909.05 154.7 906.9 154.45 903.95 L154.4 903.1 Q154.4 899.45 156.95 897 159.55 894.45 163.05 894.45 166.7 894.45 169.25 897 171.7 899.45 171.7 903.1"/>
+ <path stroke="none" fill="#FFFFFF" d="M76.75 903.2 Q76.75 897.45 80.8 893.45 84.85 889.4 90.55 889.4 96.15 889.4 100.3 893.45 104.25 897.45 104.25 903.2 104.25 908.9 100.3 912.8 96.15 916.9 90.55 916.9 84.85 916.9 80.8 912.8 76.75 908.9 76.75 903.2 M84.3 903.1 L84.35 903.95 Q84.6 906.9 86.75 909.05 89.3 911.55 92.95 911.55 96.45 911.55 99.05 909.05 101.3 906.9 101.55 903.95 L101.6 903.1 Q101.6 899.45 99.05 897 96.45 894.45 92.95 894.45 89.3 894.45 86.75 897 84.3 899.45 84.3 903.1"/>
+ <path stroke="none" fill="#5B5B5B" d="M84.3 903.1 Q84.3 899.45 86.75 897 89.3 894.45 92.95 894.45 96.45 894.45 99.05 897 101.6 899.45 101.6 903.1 L101.55 903.95 Q101.3 906.9 99.05 909.05 96.45 911.55 92.95 911.55 89.3 911.55 86.75 909.05 84.6 906.9 84.35 903.95 L84.3 903.1"/>
+ <path stroke="none" fill="#FFFCF5" d="M117.95 893.15 L126.6 863.8 Q126.75 863.35 127.15 863.05 127.55 862.75 128 862.75 128.5 862.75 128.9 863.05 L129.4 863.8 138.1 893.2 139.25 897.15 140 900.6 Q139.65 902.4 138.35 903.65 135.6 906.5 128 906.5 120.4 906.5 117.7 903.65 116.35 902.35 116.05 900.55 116.2 898.95 116.75 897.15 L117.95 893.15"/>
+ <path stroke="none" fill="#BDB6B6" d="M117.95 893.15 L116.75 897.15 Q116.2 898.95 116.05 900.55 115.5 905 117.7 907.6 120.4 911.15 128 911.15 135.6 911.15 138.35 907.6 140.5 905 140 900.6 L139.25 897.15 138.1 893.2 Q139.55 893.95 140.9 895 146.3 899.2 146.3 905.15 146.3 911.1 140.9 915.25 135.6 919.45 128 919.45 120.4 919.45 115 915.25 109.7 911.1 109.7 905.15 109.7 899.2 115 895 116.4 893.95 117.95 893.15"/>
+ <path stroke="none" fill="#F0EDE7" d="M116.05 900.55 Q116.35 902.35 117.7 903.65 120.4 906.5 128 906.5 135.6 906.5 138.35 903.65 139.65 902.4 140 900.6 140.5 905 138.35 907.6 135.6 911.15 128 911.15 120.4 911.15 117.7 907.6 115.5 905 116.05 900.55"/>
+ <path stroke="none" fill="#857E7E" d="M414.05 816.3 Q421.85 813.5 428.3 815.95 434.9 818.45 436.7 824.5 L436.75 824.75 437.35 827.6 437.35 827.5 Q440.3 842.2 437.75 854.25 451.95 872.25 451.95 896 L451.95 898 451.95 898.1 Q451.85 902.25 451.35 906.3 L451.3 906.35 Q449.7 917.4 444.65 927.1 442.75 930.75 440.3 934.3 436.7 939.35 432.05 944.05 412.1 964 383.95 964 355.8 964 335.9 944.05 331.15 939.35 327.6 934.25 L327.65 934.25 Q318.85 921.6 316.7 906.3 316.1 902.35 316 898.2 L315.95 896 Q315.95 872.15 330.25 854.25 327.7 842.2 330.65 827.6 L330.6 827.65 331.2 824.75 331.3 824.5 Q333.05 818.4 339.7 816 346.2 813.55 353.9 816.35 L353.85 816.35 Q360.35 818.55 364.6 823.4 366.75 821.85 369.65 821.9 L398.25 821.9 Q401.1 821.95 403.25 823.5 407.5 818.6 414.1 816.3 L414.05 816.3"/>
+ <path stroke="none" fill="#FFFFFF" d="M409.25 841 L409 840.9 Q406.1 839.65 403.05 838.75 L403.05 838.7 403.65 834.9 Q407.7 836.2 411.55 838.05 L409.6 840.45 409.25 841 M364.85 838.75 Q361.8 839.65 358.9 840.9 L358.7 841 358.35 840.45 356.35 838.05 Q360.2 836.2 364.3 834.9 L364.85 838.15 364.85 838.3 364.85 838.75 M345.6 848.7 Q342.75 850.85 340.1 853.4 L338.7 854.7 335.45 858.25 Q320.6 875.2 320 898 L319.95 896 Q319.95 872.6 334.55 855.25 L338.7 850.7 Q339.55 849.85 340.4 849.1 L342.4 847.25 345.6 848.7 M447.95 898 Q447.3 875.2 432.5 858.25 L429.2 854.7 428.4 853.9 427.9 853.45 Q425.2 850.85 422.35 848.7 423.85 847.95 425.5 847.25 L427.6 849.15 429.2 850.7 432.25 853.9 433.4 855.25 Q447.95 872.65 447.95 896 L447.95 898 M432.45 878.55 Q432.45 883.7 428.8 887.3 425.15 891 419.95 891 414.85 891 411.15 887.3 407.5 883.7 407.5 878.55 407.5 873.35 411.15 869.7 414.85 866.05 419.95 866.05 425.15 866.05 428.8 869.7 432.45 873.35 432.45 878.55 M427.7 878.75 Q427.7 875.15 425.2 872.6 422.7 870.1 419.05 870.1 415.5 870.1 412.9 872.6 410.4 875.15 410.4 878.75 410.4 882.35 412.9 884.8 415.5 887.35 419.05 887.35 422.7 887.35 425.2 884.8 427.7 882.35 427.7 878.75 M335.45 878.55 Q335.45 873.35 339.1 869.7 342.75 866.05 347.95 866.05 353.05 866.05 356.75 869.7 360.4 873.35 360.4 878.55 360.4 883.7 356.75 887.3 353.05 891 347.95 891 342.75 891 339.1 887.3 335.45 883.7 335.45 878.55 M340.15 878.75 Q340.15 882.35 342.7 884.8 345.2 887.35 348.85 887.35 352.4 887.35 354.95 884.8 357.5 882.35 357.5 878.75 357.5 875.15 354.95 872.6 352.4 870.1 348.85 870.1 345.2 870.1 342.7 872.6 340.15 875.15 340.15 878.75"/>
+ <path stroke="none" fill="#E9E9E9" d="M403.05 838.75 Q406.1 839.65 409 840.9 L409.25 841 Q406.65 844.8 405.65 849.45 405.15 851.55 405.05 853.9 L405 854.95 Q405.3 858.7 408.95 856.7 L410.65 855.55 413 853.9 Q417.15 851.15 422.35 848.7 425.2 850.85 427.9 853.45 L428.4 853.9 429.2 854.7 432.5 858.25 Q447.3 875.2 447.95 898 447.85 901.95 447.35 905.75 438.35 900.55 427.15 900.75 421.15 901.05 426.3 906 437.15 916.4 437 932 433.6 936.8 429.2 941.2 410.45 960 383.95 960 357.45 960 338.7 941.2 334.25 936.8 330.9 931.95 330.8 916.4 341.6 906 346.75 901.05 340.75 900.75 329.55 900.55 320.65 905.7 320.1 901.95 320 898 320.6 875.2 335.45 858.25 L338.7 854.7 340.1 853.4 Q342.75 850.85 345.6 848.7 352.3 851.85 357.25 855.55 L359.05 856.7 Q362.6 858.65 362.9 854.95 362.85 852.15 362.3 849.6 361.3 844.85 358.7 841 L358.9 840.9 Q361.8 839.65 364.85 838.75 L366.6 850.65 Q367.05 853.05 368.75 854.65 L372.75 857.7 Q378.45 861.45 383.9 861.5 389.4 861.45 395.4 857.6 L399.15 854.65 Q400.35 853.5 400.95 851.95 L401.3 850.65 403.05 838.75 M432.45 878.55 Q432.45 873.35 428.8 869.7 425.15 866.05 419.95 866.05 414.85 866.05 411.15 869.7 407.5 873.35 407.5 878.55 407.5 883.7 411.15 887.3 414.85 891 419.95 891 425.15 891 428.8 887.3 432.45 883.7 432.45 878.55 M335.45 878.55 Q335.45 883.7 339.1 887.3 342.75 891 347.95 891 353.05 891 356.75 887.3 360.4 883.7 360.4 878.55 360.4 873.35 356.75 869.7 353.05 866.05 347.95 866.05 342.75 866.05 339.1 869.7 335.45 873.35 335.45 878.55 M402.5 898.1 L400.1 889.95 Q397.95 880.8 383.95 880.4 371.05 880.05 367.8 889.95 L365.45 898.05 Q361.15 900.15 357.4 903.35 346.85 912.4 346.45 925 L346.45 926 346.5 927.9 Q347.25 939.9 357.4 948.6 368.4 958 383.95 958 399.45 958 410.45 948.6 420.65 939.95 421.4 927.9 L421.45 926 421.45 925 Q421 912.4 410.45 903.35 406.7 900.2 402.5 898.1"/>
+ <path stroke="none" fill="#414040" d="M402.5 898.1 Q394.2 894 383.95 894 373.7 894 365.45 898.05 L367.8 889.95 Q371.05 880.05 383.95 880.4 397.95 880.8 400.1 889.95 L402.5 898.1 M411.55 838.05 Q407.7 836.2 403.65 834.9 L403.7 834.45 403.8 832.2 404.45 831.25 Q408.25 826.15 414.65 823.9 420.9 821.65 426.1 823.55 430.8 825.35 432.05 829.5 L432.65 832.2 Q435 843.95 433.6 853.9 L433.45 854.95 433.4 855.25 432.25 853.9 429.2 850.7 427.6 849.15 426.8 844.2 426.35 842.3 Q425.5 839.25 422.15 837.95 L413.85 838.2 412.8 838.65 411.55 838.05 M403.05 838.7 L403.05 838.75 401.3 850.65 400.95 851.95 Q400.35 853.5 399.15 854.65 L395.4 857.6 Q389.4 861.45 383.9 861.5 378.45 861.45 372.75 857.7 L368.75 854.65 Q367.05 853.05 366.6 850.65 L364.85 838.75 364.85 838.3 364.85 838.15 Q364.65 837.05 364.9 836 L365.4 834.55 365.6 834.1 365.95 833.5 Q367.5 831.05 370.2 831.05 L397.75 831.05 Q399.65 831.05 400.95 832.3 L401.95 833.5 402.35 834.15 402.55 834.55 403 836.05 Q403.2 837.3 403.05 838.7 M358.7 841 Q361.3 844.85 362.3 849.6 362.85 852.15 362.9 854.95 362.6 858.65 359.05 856.7 L357.25 855.55 Q352.3 851.85 345.6 848.7 351.75 843.95 358.7 841 M320.65 905.7 Q329.55 900.55 340.75 900.75 346.75 901.05 341.6 906 330.8 916.4 330.9 931.95 322.65 920.1 320.65 905.7 M437 932 Q437.15 916.4 426.3 906 421.15 901.05 427.15 900.75 438.35 900.55 447.35 905.75 445.85 916.15 441.1 925.25 439.3 928.7 437 932 M422.35 848.7 Q417.15 851.15 413 853.9 L410.65 855.55 408.95 856.7 Q405.3 858.7 405 854.95 L405.05 853.9 Q405.15 851.55 405.65 849.45 406.65 844.8 409.25 841 416.15 843.95 422.35 848.7 M334.5 855 Q332.85 844.6 335.3 832.25 L335.9 829.5 Q337.15 825.35 341.85 823.6 347.05 821.7 353.35 823.95 359.7 826.15 363.5 831.3 L364.1 832.2 Q364 833.25 364.2 834.45 L364.3 834.9 Q360.2 836.2 356.35 838.05 L355.15 838.65 354.1 838.25 345.85 838 Q342.45 839.3 341.55 842.35 L341.15 844.2 340.4 849.1 Q339.55 849.85 338.7 850.7 L334.55 855.25 334.5 855 M421.4 927.9 Q420.65 939.95 410.45 948.6 399.45 958 383.95 958 368.4 958 357.4 948.6 347.25 939.9 346.5 927.9 347.3 916 357.4 907.35 360.45 904.75 363.8 902.9 372.7 898 383.95 898 395.2 898 404.1 902.95 407.45 904.8 410.45 907.35 420.55 916 421.4 927.9 M402.45 908.15 L401.6 907.55 Q400.2 906.85 398 907.5 L397.75 907.6 Q394.9 908.45 392.4 910.95 L392.25 911.1 Q391.6 911.8 391.25 912.65 390.85 913.55 390.85 914.65 390.85 916.8 392.35 918.3 393.85 919.8 396 919.8 398.05 919.8 399.55 918.4 L399.7 918.25 Q401.75 916.2 402.7 913.95 L403.15 912.65 403.3 912.15 Q403.7 910.25 403.05 909 L402.45 908.15 M368.35 918.4 Q369.85 919.8 371.9 919.8 374.05 919.8 375.55 918.3 377.05 916.8 377.05 914.65 377.05 913.55 376.7 912.65 L375.65 911.1 375.5 910.95 Q372.95 908.4 370.1 907.55 L369.9 907.5 Q367.7 906.85 366.35 907.55 365.85 907.75 365.45 908.15 L364.85 909 Q364.2 910.25 364.65 912.15 L364.75 912.65 365.2 913.95 Q366.15 916.2 368.2 918.25 L368.35 918.4"/>
+ <path stroke="none" fill="#2E2D2D" d="M368.35 918.4 L368.2 918.25 Q366.15 916.2 365.2 913.95 L364.75 912.65 364.65 912.15 Q364.2 910.25 364.85 909 L365.45 908.15 Q365.85 907.75 366.35 907.55 367.7 906.85 369.9 907.5 L370.1 907.55 Q372.95 908.4 375.5 910.95 L375.65 911.1 376.7 912.65 Q377.05 913.55 377.05 914.65 377.05 916.8 375.55 918.3 374.05 919.8 371.9 919.8 369.85 919.8 368.35 918.4 M425.5 847.25 Q419.5 842.05 412.8 838.65 L413.85 838.2 422.15 837.95 Q425.5 839.25 426.35 842.3 L426.8 844.2 427.6 849.15 425.5 847.25 M340.4 849.1 L341.15 844.2 341.55 842.35 Q342.45 839.3 345.85 838 L354.1 838.25 355.15 838.65 Q348.4 842.05 342.4 847.25 L340.4 849.1 M402.45 908.15 L403.05 909 Q403.7 910.25 403.3 912.15 L403.15 912.65 402.7 913.95 Q401.75 916.2 399.7 918.25 L399.55 918.4 Q398.05 919.8 396 919.8 393.85 919.8 392.35 918.3 390.85 916.8 390.85 914.65 390.85 913.55 391.25 912.65 391.6 911.8 392.25 911.1 L392.4 910.95 Q394.9 908.45 397.75 907.6 L398 907.5 Q400.2 906.85 401.6 907.55 L402.45 908.15"/>
+ <path stroke="none" fill="#545353" d="M403.65 834.9 L403.05 838.7 Q403.2 837.3 403 836.05 L402.55 834.55 402.35 834.15 401.95 833.5 400.95 832.3 Q399.65 831.05 397.75 831.05 L370.2 831.05 Q367.5 831.05 365.95 833.5 L365.6 834.1 365.4 834.55 364.9 836 Q364.65 837.05 364.85 838.15 L364.3 834.9 364.2 834.45 Q364 833.25 364.1 832.2 L363.5 831.3 Q359.7 826.15 353.35 823.95 347.05 821.7 341.85 823.6 337.15 825.35 335.9 829.5 L335.3 832.25 Q332.85 844.6 334.5 855 L334.2 853.8 Q331.75 842.35 334.55 828.35 L335.1 825.65 Q336.4 821.45 341.05 819.75 346.3 817.85 352.55 820.1 358.9 822.3 362.7 827.4 363.75 828.9 364.45 830.35 L365.25 828.55 Q366.85 825.9 369.65 825.9 L398.25 825.9 Q399.8 825.9 400.95 826.75 401.9 827.35 402.6 828.55 403.15 829.4 403.5 830.4 404.15 828.9 405.25 827.35 409.05 822.3 415.4 820.05 421.7 817.8 426.9 819.7 431.55 821.45 432.85 825.65 L433.4 828.3 Q436.25 842.35 433.75 853.8 L433.75 853.9 433.45 854.95 433.6 853.9 Q435 843.95 432.65 832.2 L432.05 829.5 Q430.8 825.35 426.1 823.55 420.9 821.65 414.65 823.9 408.25 826.15 404.45 831.25 L403.8 832.2 403.7 834.45 403.65 834.9 M402.5 898.1 Q406.7 900.2 410.45 903.35 421 912.4 421.45 925 L421.45 926 421.4 927.9 Q420.55 916 410.45 907.35 407.45 904.8 404.1 902.95 395.2 898 383.95 898 372.7 898 363.8 902.9 360.45 904.75 357.4 907.35 347.3 916 346.5 927.9 L346.45 926 346.45 925 Q346.85 912.4 357.4 903.35 361.15 900.15 365.45 898.05 373.7 894 383.95 894 394.2 894 402.5 898.1"/>
+ <path stroke="none" fill="#4F4E4E" d="M409.25 841 L409.6 840.45 411.55 838.05 412.8 838.65 Q419.5 842.05 425.5 847.25 423.85 847.95 422.35 848.7 416.15 843.95 409.25 841 M342.4 847.25 Q348.4 842.05 355.15 838.65 L356.35 838.05 358.35 840.45 358.7 841 Q351.75 843.95 345.6 848.7 L342.4 847.25"/>
+ <path stroke="none" fill="#5B5B5B" d="M427.7 878.75 Q427.7 882.35 425.2 884.8 422.7 887.35 419.05 887.35 415.5 887.35 412.9 884.8 410.4 882.35 410.4 878.75 410.4 875.15 412.9 872.6 415.5 870.1 419.05 870.1 422.7 870.1 425.2 872.6 427.7 875.15 427.7 878.75 M340.15 878.75 Q340.15 875.15 342.7 872.6 345.2 870.1 348.85 870.1 352.4 870.1 354.95 872.6 357.5 875.15 357.5 878.75 357.5 882.35 354.95 884.8 352.4 887.35 348.85 887.35 345.2 887.35 342.7 884.8 340.15 882.35 340.15 878.75"/>
+ <path stroke="none" fill="#2C2B2B" d="M576.05 867.3 Q580.9 856.75 589.8 847.9 L590.9 846.85 590.95 846.75 Q610.5 828 637.85 828 665.3 828 684.9 846.85 L684.95 846.9 685.95 847.9 Q689.85 851.8 693.05 856.1 696.95 861.4 699.75 867.25 L699.75 867.3 700.65 869.3 700.7 869.4 Q705.85 881.6 705.85 896 L705.85 896.5 705.85 897 705.85 898 705.85 898.5 705.85 898.65 Q705.1 919.6 693.05 935.9 L690.75 938.75 690.8 938.7 689.3 940.45 685.95 944.05 Q676.15 953.85 664.35 958.85 652.15 964 637.85 964 628.8 964 620.65 961.95 615.85 960.75 611.4 958.85 599.55 953.85 589.8 944.05 L586.4 940.45 Q570.8 922.75 569.9 898.9 L569.85 898 569.85 897 569.85 896.5 569.85 896 Q569.85 881.6 575.1 869.4 L575.05 869.5 576.1 867.15 576.05 867.3"/>
+ <path stroke="none" fill="#545353" d="M701.85 898.5 Q701.55 883.45 695.1 870.95 L694.05 868.95 Q692.15 865.6 689.8 862.45 686.8 858.4 683.1 854.7 L682.1 853.7 Q663.7 836 637.85 836 612.05 836 593.65 853.7 L592.6 854.7 Q585.95 861.35 581.7 868.95 L580.6 870.95 Q574.2 883.45 573.9 898.5 L573.85 898 573.85 897 573.85 896.5 573.85 896 Q573.85 882.45 578.75 870.95 L579.65 868.95 Q584.25 859.05 592.6 850.7 L593.65 849.7 Q612.05 832 637.85 832 663.7 832 682.1 849.7 L683.1 850.7 Q686.8 854.4 689.8 858.45 693.5 863.45 696.1 868.95 L697 870.95 Q701.85 882.45 701.85 896 L701.85 896.5 701.85 897 701.85 898 701.85 898.5"/>
+ <path stroke="none" fill="#414040" d="M701.85 898.5 Q701.15 918.2 689.8 933.5 L687.7 936.15 686.3 937.8 683.1 941.2 Q673.9 950.45 662.8 955.15 651.3 960 637.85 960 629.3 960 621.6 958.05 617.15 956.95 612.95 955.15 601.8 950.45 592.6 941.2 L589.4 937.8 Q574.65 921.1 573.9 898.5 574.2 883.45 580.6 870.95 L581.7 868.95 Q585.95 861.35 592.6 854.7 L593.65 853.7 Q612.05 836 637.85 836 663.7 836 682.1 853.7 L683.1 854.7 Q686.8 858.4 689.8 862.45 692.15 865.6 694.05 868.95 L695.1 870.95 Q701.55 883.45 701.85 898.5 M681.4 872.85 L679.35 870.95 676.6 868.95 Q670.15 864.8 662 864.8 653.8 864.8 647.35 868.95 637.85 873.8 628.35 868.95 621.9 864.8 613.75 864.8 605.6 864.8 599.15 868.95 597.75 869.85 596.4 870.95 L594.3 872.85 Q586.25 880.9 586.25 892.25 586.25 903.65 594.3 911.75 L594.4 911.75 598.95 915.45 Q599 931.4 610.35 942.65 614.85 947.2 620.15 949.9 628.15 954.05 637.85 954.05 653.95 954.05 665.4 942.65 L669.05 938.55 Q676.65 928.55 676.75 915.45 L681.4 911.75 Q689.45 903.65 689.45 892.25 689.45 880.9 681.4 872.85 M655.85 859.75 L655.8 859.2 Q655.35 852 650.7 846.75 645.55 841 638.35 841 631.1 841 625.95 846.75 621.35 852 620.9 859.2 L620.85 859.75 Q620.85 860.45 621.15 861.1 622.05 863.25 625.95 864.9 631.1 867 638.35 867 645.55 867 650.7 864.9 654.65 863.25 655.6 861.1 L655.85 859.75"/>
+ <path stroke="none" fill="#FFFFFF" d="M596.2 896.1 Q596.2 891.5 599.45 888.3 602.75 885.1 607.35 885.1 611.9 885.1 615.25 888.3 618.45 891.5 618.45 896.1 618.45 900.7 615.25 903.85 611.9 907.2 607.35 907.2 602.75 907.2 599.45 903.85 596.2 900.7 596.2 896.1 M601.65 896.35 Q601.65 899.2 603.7 901.15 605.6 903.25 608.55 903.25 611.45 903.25 613.5 901.15 615.55 899.2 615.55 896.35 615.55 893.35 613.5 891.4 611.45 889.4 608.55 889.4 605.6 889.4 603.7 891.4 601.65 893.35 601.65 896.35 M620.15 918.4 Q640.15 912.25 657.15 918.4 660.3 927.8 657.15 936.15 655.15 936.3 653.2 935.5 639.45 929.95 622.95 935.7 L620.15 936.2 Q616.6 928.3 620.15 918.4 M680.25 896.1 Q680.25 900.7 677 903.85 673.75 907.2 669.1 907.2 664.55 907.2 661.35 903.85 658 900.7 658 896.1 658 891.5 661.35 888.3 664.55 885.1 669.1 885.1 673.75 885.1 677 888.3 680.25 891.5 680.25 896.1 M674.9 896.35 Q674.9 893.35 672.85 891.4 670.8 889.4 667.95 889.4 665.1 889.4 662.95 891.4 660.9 893.35 660.9 896.35 660.9 899.2 662.95 901.15 665.1 903.25 667.95 903.25 670.8 903.25 672.85 901.15 674.9 899.2 674.9 896.35"/>
+ <path stroke="none" fill="#BDB6B6" d="M596.2 896.1 Q596.2 900.7 599.45 903.85 602.75 907.2 607.35 907.2 611.9 907.2 615.25 903.85 618.45 900.7 618.45 896.1 618.45 891.5 615.25 888.3 611.9 885.1 607.35 885.1 602.75 885.1 599.45 888.3 596.2 891.5 596.2 896.1 M681.4 872.85 Q689.45 880.9 689.45 892.25 689.45 903.65 681.4 911.75 L676.75 915.45 Q676.65 928.55 669.05 938.55 L665.4 942.65 Q653.95 954.05 637.85 954.05 628.15 954.05 620.15 949.9 614.85 947.2 610.35 942.65 599 931.4 598.95 915.45 L594.4 911.75 594.3 911.75 Q586.25 903.65 586.25 892.25 586.25 880.9 594.3 872.85 L596.4 870.95 Q597.75 869.85 599.15 868.95 605.6 864.8 613.75 864.8 621.9 864.8 628.35 868.95 637.85 873.8 647.35 868.95 653.8 864.8 662 864.8 670.15 864.8 676.6 868.95 L679.35 870.95 681.4 872.85 M616.1 875.75 Q614.8 875.9 613.8 876.85 612.85 877.8 612.85 879.15 612.85 880.5 613.8 881.45 614.8 882.4 616.4 882.6 637.8 885.2 659 882.4 660.85 882.4 661.8 881.45 662.75 880.5 662.75 879.15 662.75 877.8 661.8 876.85 660.85 875.9 659 875.7 637 873.65 616.1 875.75 M641.6 899.2 L641.45 899.3 Q640.3 900.45 640.3 902.15 640.3 903.9 641.55 905.15 L641.95 905.45 642.35 905.75 Q643.25 906.35 644.5 906.35 646.15 906.35 647.3 905.2 L647.45 905 649.1 903 Q649.95 901.8 650.25 900.55 L650.35 900.2 Q650.8 898 649.7 896.9 648.5 895.7 646.05 896.35 643.75 897.05 641.6 899.2 M635.1 905.15 Q636.3 903.9 636.3 902.15 636.3 900.45 635.15 899.3 L635 899.2 Q632.9 897.05 630.5 896.35 628.1 895.7 626.85 896.9 625.75 898 626.25 900.2 L626.35 900.55 Q626.65 901.8 627.45 903.05 L629.1 905 629.2 905.2 Q630.4 906.35 632.1 906.35 633.3 906.35 634.3 905.75 L634.7 905.45 635.1 905.15 M620.15 918.4 L617.3 919.3 Q613.85 920.5 612.35 923.7 610.75 927 611.95 930.3 613.1 933.75 616.4 935.3 618.25 936.2 620.15 936.2 L622.95 935.7 Q639.45 929.95 653.2 935.5 655.15 936.3 657.15 936.15 L659.8 935.5 Q663.1 934.2 664.45 930.85 665.8 927.55 664.5 924.2 663.15 920.95 659.9 919.5 L657.15 918.4 Q640.15 912.25 620.15 918.4 M680.25 896.1 Q680.25 891.5 677 888.3 673.75 885.1 669.1 885.1 664.55 885.1 661.35 888.3 658 891.5 658 896.1 658 900.7 661.35 903.85 664.55 907.2 669.1 907.2 673.75 907.2 677 903.85 680.25 900.7 680.25 896.1"/>
+ <path stroke="none" fill="#464545" d="M655.85 859.75 L655.6 861.1 Q654.65 863.25 650.7 864.9 645.55 867 638.35 867 631.1 867 625.95 864.9 622.05 863.25 621.15 861.1 620.85 860.45 620.85 859.75 L620.9 859.2 Q621.35 852 625.95 846.75 631.1 841 638.35 841 645.55 841 650.7 846.75 655.35 852 655.8 859.2 L655.85 859.75"/>
+ <path stroke="none" fill="#A8A1A1" d="M616.1 875.75 Q637 873.65 659 875.7 660.85 875.9 661.8 876.85 662.75 877.8 662.75 879.15 662.75 880.5 661.8 881.45 660.85 882.4 659 882.4 637.8 885.2 616.4 882.6 614.8 882.4 613.8 881.45 612.85 880.5 612.85 879.15 612.85 877.8 613.8 876.85 614.8 875.9 616.1 875.75"/>
+ <path stroke="none" fill="#989292" d="M641.6 899.2 Q643.75 897.05 646.05 896.35 648.5 895.7 649.7 896.9 650.8 898 650.35 900.2 L650.25 900.55 Q649.95 901.8 649.1 903 L647.45 905 647.3 905.2 Q646.15 906.35 644.5 906.35 643.25 906.35 642.35 905.75 L641.95 905.45 641.55 905.15 Q640.3 903.9 640.3 902.15 640.3 900.45 641.45 899.3 L641.6 899.2 M635.1 905.15 L634.7 905.45 634.3 905.75 Q633.3 906.35 632.1 906.35 630.4 906.35 629.2 905.2 L629.1 905 627.45 903.05 Q626.65 901.8 626.35 900.55 L626.25 900.2 Q625.75 898 626.85 896.9 628.1 895.7 630.5 896.35 632.9 897.05 635 899.2 L635.15 899.3 Q636.3 900.45 636.3 902.15 636.3 903.9 635.1 905.15"/>
+ <path stroke="none" fill="#5B5B5B" d="M601.65 896.35 Q601.65 893.35 603.7 891.4 605.6 889.4 608.55 889.4 611.45 889.4 613.5 891.4 615.55 893.35 615.55 896.35 615.55 899.2 613.5 901.15 611.45 903.25 608.55 903.25 605.6 903.25 603.7 901.15 601.65 899.2 601.65 896.35 M674.9 896.35 Q674.9 899.2 672.85 901.15 670.8 903.25 667.95 903.25 665.1 903.25 662.95 901.15 660.9 899.2 660.9 896.35 660.9 893.35 662.95 891.4 665.1 889.4 667.95 889.4 670.8 889.4 672.85 891.4 674.9 893.35 674.9 896.35"/>
+ <path stroke="none" fill="#E7E7E7" d="M620.15 936.2 Q618.25 936.2 616.4 935.3 613.1 933.75 611.95 930.3 610.75 927 612.35 923.7 613.85 920.5 617.3 919.3 L620.15 918.4 Q616.6 928.3 620.15 936.2 M657.15 918.4 L659.9 919.5 Q663.15 920.95 664.5 924.2 665.8 927.55 664.45 930.85 663.1 934.2 659.8 935.5 L657.15 936.15 Q660.3 927.8 657.15 918.4"/>
+ <path stroke="none" fill="#1B8045" d="M895.7 828 Q911.65 828 925 834.45 935.1 839.35 943.75 847.95 963.7 867.85 963.7 896 L963.7 898 963.7 898.1 Q963.05 921.6 948.1 939.3 L943.75 944 943.75 944.05 Q939.6 948.2 935.1 951.5 917.9 964 895.7 964 871.9 964 854 949.7 L853.95 949.7 847.65 944.05 843.3 939.3 843.3 939.25 Q828.4 921.65 827.75 898.2 L827.7 896 Q827.7 867.85 847.65 847.95 856.25 839.35 866.45 834.45 879.75 828 895.7 828"/>
+ <path stroke="none" fill="#31DE7A" d="M831.75 898 L831.7 896 Q831.7 869.5 850.45 850.75 858.55 842.65 868.15 838.05 880.7 832 895.7 832 910.7 832 923.25 838.05 932.8 842.65 940.9 850.75 959.7 869.5 959.7 896 L959.7 898 Q959 872.8 940.9 854.75 932.6 846.45 922.8 841.85 910.45 836 895.7 836 880.95 836 868.6 841.8 858.75 846.45 850.45 854.75 832.4 872.8 831.75 898"/>
+ <path stroke="none" fill="#2ECC71" d="M831.75 898 Q832.4 872.8 850.45 854.75 858.75 846.45 868.6 841.8 870.4 854.7 875.9 864.75 884.1 879.8 895.7 879.8 907.3 879.8 915.5 864.75 921 854.7 922.8 841.85 932.6 846.45 940.9 854.75 959 872.8 959.7 898 959.1 920.1 945.05 936.7 932.9 943.7 925.75 936.7 912.2 917.9 894.15 917.9 876.1 917.9 862.55 936.7 857.2 943.6 846.35 936.7 832.3 920.1 831.75 898"/>
+ <path stroke="none" fill="#2FD274" d="M868.6 841.8 Q880.95 836 895.7 836 910.45 836 922.8 841.85 921 854.7 915.5 864.75 907.3 879.8 895.7 879.8 884.1 879.8 875.9 864.75 870.4 854.7 868.6 841.8"/>
+ <path stroke="none" fill="#F3F3F3" d="M945.05 936.7 L940.9 941.2 Q937 945.15 932.75 948.25 916.6 960 895.7 960 873.3 960 856.45 946.55 L850.45 941.2 846.35 936.7 Q857.2 943.6 862.55 936.7 876.1 917.9 894.15 917.9 912.2 917.9 925.75 936.7 932.9 943.7 945.05 936.7"/>
+ <path stroke="none" fill="#FFFFFF" d="M935.3 889.75 Q935.3 894.8 931.8 898.25 928.2 901.9 923.1 901.9 918.1 901.9 914.55 898.25 910.95 894.8 910.95 889.75 910.95 884.7 914.55 881.15 918.1 877.65 923.1 877.65 928.2 877.65 931.8 881.15 935.3 884.7 935.3 889.75 M929.45 890 Q929.45 886.7 927.2 884.55 924.95 882.4 921.8 882.4 918.7 882.4 916.35 884.55 914.1 886.7 914.1 890 914.1 893.15 916.35 895.3 918.7 897.6 921.8 897.6 924.95 897.6 927.2 895.3 929.45 893.15 929.45 890 M862.05 890 Q862.05 893.15 864.3 895.3 866.45 897.6 869.65 897.6 872.8 897.6 875.05 895.3 876.1 894.3 876.65 893.1 877.3 891.7 877.3 890 877.3 888.25 876.65 886.8 876.1 885.55 875.05 884.55 872.8 882.4 869.65 882.4 866.45 882.4 864.3 884.55 862.05 886.7 862.05 890 M856.1 889.75 Q856.1 884.7 859.7 881.15 863.3 877.65 868.3 877.65 873.05 877.65 876.65 880.85 L877 881.15 Q880.5 884.7 880.5 889.75 880.5 894.8 877 898.25 L876.65 898.6 Q873.05 901.9 868.3 901.9 863.3 901.9 859.7 898.25 856.1 894.8 856.1 889.75"/>
+ <path stroke="none" fill="#5B5B5B" d="M929.45 890 Q929.45 893.15 927.2 895.3 924.95 897.6 921.8 897.6 918.7 897.6 916.35 895.3 914.1 893.15 914.1 890 914.1 886.7 916.35 884.55 918.7 882.4 921.8 882.4 924.95 882.4 927.2 884.55 929.45 886.7 929.45 890 M862.05 890 Q862.05 886.7 864.3 884.55 866.45 882.4 869.65 882.4 872.8 882.4 875.05 884.55 876.1 885.55 876.65 886.8 877.3 888.25 877.3 890 877.3 891.7 876.65 893.1 876.1 894.3 875.05 895.3 872.8 897.6 869.65 897.6 866.45 897.6 864.3 895.3 862.05 893.15 862.05 890"/>
+ <path stroke="none" fill="#FFD738" d="M875.65 907.5 L875.75 907.05 Q877.05 901.3 881.1 896.8 882.3 895.5 883.55 894.55 888.8 890.2 895.75 890.2 902.65 890.2 907.95 894.55 L910.3 896.8 Q914.4 901.3 915.65 907.05 L915.75 907.5 916 909.05 916.3 912.75 916.2 914.25 916.2 914.45 916 913.05 915.65 911.05 Q915.25 909.1 914.5 907.3 913 903.75 910.3 900.8 L907.95 898.55 Q902.65 894.2 895.75 894.2 888.8 894.2 883.55 898.55 882.3 899.5 881.1 900.8 878.45 903.75 876.95 907.3 876.2 909.1 875.75 911.05 L875.35 913.05 875.25 914.55 875.2 914.25 875.15 912.75 875.35 909.05 875.65 907.5"/>
+ <path stroke="none" fill="#FFCC00" d="M909.7 923.25 L909.3 923.5 Q903.55 926.7 895.75 926.7 887.9 926.7 882.15 923.5 L881.75 923.25 881.1 922.85 Q877.05 920.2 875.8 916.8 L875.4 915.3 875.25 914.55 875.35 913.05 875.75 911.05 Q876.2 909.1 876.95 907.3 878.45 903.75 881.1 900.8 882.3 899.5 883.55 898.55 888.8 894.2 895.75 894.2 902.65 894.2 907.95 898.55 L910.3 900.8 Q913 903.75 914.5 907.3 915.25 909.1 915.65 911.05 L916 913.05 916.2 914.45 916.1 915.3 915.65 916.85 Q914.35 920.2 910.3 922.85 L909.7 923.25"/>
+ <path stroke="none" fill="#EEBE00" d="M915.75 907.5 L920.65 908.55 Q930.8 911.15 931.05 914.8 L915.65 916.85 916.1 915.3 916.2 914.45 916.2 914.25 916.3 912.75 916 909.05 915.75 907.5 M860.35 914.75 Q860.65 911.1 870.65 908.55 L875.65 907.5 875.35 909.05 875.15 912.75 875.2 914.25 875.25 914.55 875.4 915.3 875.8 916.8 860.35 914.75"/>
+ <path stroke="none" fill="#DEB100" d="M860.35 914.75 L875.8 916.8 Q877.05 920.2 881.1 922.85 L881.75 923.25 879.5 923 Q874.75 922.35 870.65 921.3 860.85 918.8 860.4 915.3 L860.35 914.95 860.35 914.75 M931.05 914.8 L931.05 914.95 931.05 915.3 Q930.55 918.8 920.65 921.3 916.6 922.35 911.9 923 L909.7 923.25 910.3 922.85 Q914.35 920.2 915.65 916.85 L931.05 914.8"/>
+ <path stroke="none" fill="#29BB67" d="M906.1 848.05 Q909.15 853.3 909.7 857.85 910.4 862.4 908.3 863.6 906.15 864.85 902.5 862 898.95 859.15 895.9 853.95 L895.2 852.75 Q894 850.25 894.3 847.7 894.6 844.85 896.75 843.6 898.85 842.4 901.5 843.55 903.85 844.55 905.4 846.9 L906.1 848.05 M890.85 854 Q888.85 857.5 886.4 859.35 884.05 861.25 882.65 860.4 881.25 859.65 881.7 856.6 882.1 853.6 884.1 850.15 L884.55 849.3 Q885.6 847.75 887.15 847.1 L890.3 847.15 Q891.7 848 891.95 849.9 892.1 851.55 891.3 853.2 L890.85 854"/>
+ <path stroke="none" fill="#2C2B2B" d="M1225.65 848.05 Q1225.35 850.85 1224.3 853.9 L1224.3 853.95 Q1221.6 861.45 1215.6 865.95 L1215.5 866.05 1211.8 868.2 Q1217.5 880.95 1217.5 896 L1217.5 898 1217.5 898.1 Q1217.05 913.95 1210.2 927.1 1208.6 930.2 1206.65 933.15 1202.75 938.9 1197.6 944.05 1177.65 964 1149.5 964 1121.35 964 1101.45 944.05 1096.25 938.85 1092.45 933.15 1082.05 917.65 1081.55 898.2 L1081.5 896 Q1081.5 880.95 1087.25 868.25 1085.35 867.35 1083.45 866.05 L1083.35 865.95 Q1077.35 861.45 1074.7 853.95 L1074.7 853.9 Q1073.6 850.85 1073.35 848.05 L1073.35 847.95 Q1072.95 843.6 1074.35 839.75 L1074.35 839.7 Q1076.85 833.1 1082.9 831.35 L1083.15 831.25 1086 830.7 1085.9 830.7 Q1100.85 827.65 1113.05 830.35 L1113.2 830.4 1114.3 830.7 1114.4 830.7 Q1118.95 831.8 1122.15 833.55 1127.15 831.35 1132.55 830.05 1140.6 828 1149.5 828 1158.2 828 1166.1 829.9 L1166.45 830 Q1171.8 831.3 1176.85 833.5 1180 831.8 1184.55 830.7 L1184.65 830.7 1185.8 830.4 1185.9 830.35 Q1198.1 827.65 1213.05 830.7 L1213 830.7 1215.8 831.25 1216.1 831.35 Q1222.1 833.1 1224.6 839.7 L1224.65 839.75 Q1226 843.6 1225.65 847.95 L1225.65 848.05"/>
+ <path stroke="none" fill="#414040" d="M1122.25 841.35 L1120.95 840.95 Q1112.7 839.15 1102.6 841.2 L1100.7 841.65 Q1097.65 842.5 1096.35 845.85 1095.45 848.3 1095.8 851 1096 852.55 1096.6 854.15 1098.25 858.75 1101.9 861.5 1103.65 862.7 1105.2 863.25 L1101.6 864.3 1100.65 864.55 1097.7 865.15 1094.9 865.65 1093.65 865.75 Q1089.85 865.65 1085.75 862.75 1080.7 858.95 1078.45 852.6 1077.55 850 1077.3 847.6 1077.5 845.8 1078.1 844.1 1079.85 839.45 1084.05 838.15 L1086.7 837.6 Q1100.75 834.75 1112.2 837.25 L1113.35 837.55 Q1119.05 838.95 1122.25 841.35 M1176.7 841.35 Q1179.9 838.95 1185.6 837.55 L1186.75 837.25 Q1198.2 834.75 1212.25 837.6 L1214.9 838.15 Q1219.1 839.45 1220.85 844.1 1221.45 845.8 1221.65 847.6 1221.4 850 1220.5 852.6 1218.25 858.95 1213.2 862.75 1209.1 865.65 1205.3 865.75 L1204.05 865.65 1201.25 865.15 1198.3 864.55 1197.35 864.3 1193.75 863.25 Q1195.3 862.7 1197.05 861.5 1200.7 858.75 1202.35 854.15 1202.95 852.55 1203.15 851 1203.5 848.3 1202.6 845.85 1201.3 842.5 1198.25 841.65 L1196.35 841.2 Q1186.25 839.15 1178 840.95 L1176.7 841.35"/>
+ <path stroke="none" fill="#545353" d="M1176.7 841.35 L1176.65 841.35 Q1174.7 841.8 1173.25 842.45 L1173.5 841.9 Q1176.2 836.85 1185.6 834.55 L1186.75 834.25 Q1198.2 831.75 1212.25 834.6 L1214.9 835.15 Q1219.1 836.45 1220.85 841.1 1221.95 844.15 1221.65 847.6 1221.45 845.8 1220.85 844.1 1219.1 839.45 1214.9 838.15 L1212.25 837.6 Q1198.2 834.75 1186.75 837.25 L1185.6 837.55 Q1179.9 838.95 1176.7 841.35 M1122.25 841.35 Q1119.05 838.95 1113.35 837.55 L1112.2 837.25 Q1100.75 834.75 1086.7 837.6 L1084.05 838.15 Q1079.85 839.45 1078.1 844.1 1077.5 845.8 1077.3 847.6 1077 844.15 1078.1 841.1 1079.85 836.45 1084.05 835.15 L1086.7 834.6 Q1100.75 831.75 1112.2 834.25 L1113.35 834.55 Q1122.75 836.85 1125.45 841.9 L1125.7 842.45 1122.3 841.35 1122.25 841.35"/>
+ <path stroke="none" fill="#FFAAFF" d="M1176.7 841.35 L1178 840.95 Q1186.25 839.15 1196.35 841.2 L1198.25 841.65 Q1201.3 842.5 1202.6 845.85 1203.5 848.3 1203.15 851 1202.95 852.55 1202.35 854.15 1200.7 858.75 1197.05 861.5 1195.3 862.7 1193.75 863.25 L1192.35 862.8 Q1184.5 860.1 1179.05 855.85 1175.1 852.85 1173.55 849.8 1171.8 846.45 1172.95 843.05 L1173.25 842.45 Q1174.7 841.8 1176.65 841.35 L1176.7 841.35 M1122.25 841.35 L1122.3 841.35 1125.7 842.45 1126 843.05 Q1127.15 846.45 1125.4 849.8 1123.85 852.85 1119.9 855.85 1114.45 860.1 1106.6 862.8 L1105.2 863.25 Q1103.65 862.7 1101.9 861.5 1098.25 858.75 1096.6 854.15 1096 852.55 1095.8 851 1095.45 848.3 1096.35 845.85 1097.65 842.5 1100.7 841.65 L1102.6 841.2 Q1112.7 839.15 1120.95 840.95 L1122.25 841.35"/>
+ <path stroke="none" fill="#4F4E4E" d="M1165.05 837.75 L1165.5 833.85 Q1181.9 837.9 1194.75 850.7 L1196 852 Q1213.5 870.4 1213.5 896 L1213.5 898 Q1212.8 873.7 1196 856 L1194.75 854.7 Q1181.75 841.75 1165.05 837.75 M1133.5 833.9 L1133.95 837.75 1133.95 837.8 Q1123.8 840.2 1115 845.95 1109.35 849.65 1104.25 854.7 1086.2 872.8 1085.55 898 L1085.5 896 Q1085.5 869.5 1104.25 850.7 1109.35 845.6 1115 841.95 1123.6 836.3 1133.5 833.9"/>
+ <path stroke="none" fill="#FFFFFF" d="M1133.5 833.9 Q1141.1 832 1149.5 832 1157.85 832 1165.45 833.85 L1165.5 833.85 1165.05 837.75 1165 837.75 1159.5 836.7 1149.5 836 1139.5 836.7 1133.95 837.8 1133.95 837.75 1133.5 833.9"/>
+ <path stroke="none" fill="#F0F0F0" d="M1133.95 837.8 L1139.5 836.7 1149.5 836 1159.5 836.7 1165 837.75 1165.05 837.75 Q1161.8 853.2 1160.85 868.95 1160.1 881.1 1160.75 893.45 1161.95 915.65 1203.3 930.9 1199.65 936.35 1194.75 941.2 1176 960 1149.5 960 1123 960 1104.25 941.2 1099.35 936.3 1095.75 930.9 1137.05 915.65 1138.25 893.45 1138.9 881.1 1138.2 868.95 1137.2 853.25 1133.95 837.8"/>
+ <path stroke="none" fill="#414040" d="M1133.95 837.8 Q1137.2 853.25 1138.2 868.95 1138.9 881.1 1138.25 893.45 1137.05 915.65 1095.75 930.9 1086 916.35 1085.55 898 1086.2 872.8 1104.25 854.7 1109.35 849.65 1115 845.95 1123.8 840.2 1133.95 837.8 M1203.3 930.9 Q1161.95 915.65 1160.75 893.45 1160.1 881.1 1160.85 868.95 1161.8 853.2 1165.05 837.75 1181.75 841.75 1194.75 854.7 L1196 856 Q1212.8 873.7 1213.5 898 1213.1 912.9 1206.65 925.25 L1203.3 930.9"/>
+ <path stroke="none" fill="#FFC4FF" d="M1112.05 927.9 L1112 926 1112 925 Q1112.4 912.4 1122.95 903.35 1133.95 894 1149.5 894 1165 894 1176 903.35 1186.55 912.4 1187 925 L1187 926 1186.95 927.9 Q1186.1 916 1176 907.35 1165 898 1149.5 898 1133.95 898 1122.95 907.35 1112.85 916 1112.05 927.9"/>
+ <path stroke="none" fill="#FFAAFF" d="M1112.05 927.9 Q1112.85 916 1122.95 907.35 1133.95 898 1149.5 898 1165 898 1176 907.35 1186.1 916 1186.95 927.9 1186.3 938.1 1178.9 945.9 L1176 948.6 Q1173.9 950.4 1171.6 951.9 1161.75 949.9 1149.5 949.9 1137.2 949.9 1127.4 951.9 L1122.95 948.6 1120.1 945.9 Q1112.7 938.1 1112.05 927.9 M1168 908.15 L1167.15 907.55 Q1165.75 906.85 1163.55 907.5 L1163.3 907.6 Q1160.45 908.45 1157.95 910.95 L1157.8 911.1 Q1157.15 911.8 1156.8 912.65 1156.4 913.55 1156.4 914.65 1156.4 916.8 1157.9 918.3 1159.4 919.8 1161.55 919.8 1163.6 919.8 1165.1 918.4 L1165.25 918.25 Q1167.3 916.2 1168.25 913.95 L1168.7 912.65 1168.85 912.15 Q1169.25 910.25 1168.6 909 L1168 908.15 M1133.9 918.4 Q1135.4 919.8 1137.45 919.8 1139.6 919.8 1141.1 918.3 1142.6 916.8 1142.6 914.65 1142.6 913.55 1142.25 912.65 L1141.2 911.1 1141.05 910.95 Q1138.5 908.4 1135.65 907.55 L1135.45 907.5 Q1133.25 906.85 1131.9 907.55 1131.4 907.75 1131 908.15 L1130.4 909 Q1129.75 910.25 1130.2 912.15 L1130.3 912.65 1130.75 913.95 Q1131.7 916.2 1133.75 918.25 L1133.9 918.4"/>
+ <path stroke="none" fill="#A66EA6" d="M1133.9 918.4 L1133.75 918.25 Q1131.7 916.2 1130.75 913.95 L1130.3 912.65 1130.2 912.15 Q1129.75 910.25 1130.4 909 L1131 908.15 Q1131.4 907.75 1131.9 907.55 1133.25 906.85 1135.45 907.5 L1135.65 907.55 Q1138.5 908.4 1141.05 910.95 L1141.2 911.1 1142.25 912.65 Q1142.6 913.55 1142.6 914.65 1142.6 916.8 1141.1 918.3 1139.6 919.8 1137.45 919.8 1135.4 919.8 1133.9 918.4 M1168 908.15 L1168.6 909 Q1169.25 910.25 1168.85 912.15 L1168.7 912.65 1168.25 913.95 Q1167.3 916.2 1165.25 918.25 L1165.1 918.4 Q1163.6 919.8 1161.55 919.8 1159.4 919.8 1157.9 918.3 1156.4 916.8 1156.4 914.65 1156.4 913.55 1156.8 912.65 1157.15 911.8 1157.8 911.1 L1157.95 910.95 Q1160.45 908.45 1163.3 907.6 L1163.55 907.5 Q1165.75 906.85 1167.15 907.55 L1168 908.15"/>
+ <path stroke="none" fill="#F0A0F0" d="M1171.6 951.9 Q1162 958 1149.5 958 1136.95 958 1127.4 951.9 1137.2 949.9 1149.5 949.9 1161.75 949.9 1171.6 951.9"/>
+ <path stroke="none" fill="#FFFFFF" d="M1190.5 872.05 Q1190.5 876.15 1187.55 879.05 1184.65 882 1180.5 882 1176.4 882 1173.45 879.05 1170.55 876.15 1170.55 872.05 1170.55 867.85 1173.45 864.95 1176.4 862.05 1180.5 862.05 1184.65 862.05 1187.55 864.95 1190.5 867.85 1190.5 872.05 M1186.7 872.2 Q1186.7 869.3 1184.7 867.25 1182.7 865.25 1179.75 865.25 1176.95 865.25 1174.85 867.25 1172.85 869.3 1172.85 872.2 1172.85 875.05 1174.85 877.05 1176.95 879.05 1179.75 879.05 1182.7 879.05 1184.7 877.05 1186.7 875.05 1186.7 872.2 M1108.5 872.05 Q1108.5 867.85 1111.4 864.95 1114.35 862.05 1118.5 862.05 1122.55 862.05 1125.55 864.95 1128.45 867.85 1128.45 872.05 1128.45 876.15 1125.55 879.05 1122.55 882 1118.5 882 1114.35 882 1111.4 879.05 1108.5 876.15 1108.5 872.05 M1112.25 872.2 Q1112.25 875.05 1114.3 877.05 1116.3 879.05 1119.2 879.05 1122.05 879.05 1124.1 877.05 1126.15 875.05 1126.15 872.2 1126.15 869.3 1124.1 867.25 1122.05 865.25 1119.2 865.25 1116.3 865.25 1114.3 867.25 1112.25 869.3 1112.25 872.2"/>
+ <path stroke="none" fill="#5B5B5B" d="M1112.25 872.2 Q1112.25 869.3 1114.3 867.25 1116.3 865.25 1119.2 865.25 1122.05 865.25 1124.1 867.25 1126.15 869.3 1126.15 872.2 1126.15 875.05 1124.1 877.05 1122.05 879.05 1119.2 879.05 1116.3 879.05 1114.3 877.05 1112.25 875.05 1112.25 872.2 M1186.7 872.2 Q1186.7 875.05 1184.7 877.05 1182.7 879.05 1179.75 879.05 1176.95 879.05 1174.85 877.05 1172.85 875.05 1172.85 872.2 1172.85 869.3 1174.85 867.25 1176.95 865.25 1179.75 865.25 1182.7 865.25 1184.7 867.25 1186.7 869.3 1186.7 872.2"/>
+ <path stroke="none" fill="#747070" d="M1089.8 1031.6 Q1089.35 1013.65 1096.15 995.75 L1096.2 995.7 Q1097.05 993.4 1099.25 992.3 L1099.3 992.25 Q1101.65 991.05 1104 991.75 L1103.95 991.75 Q1106.35 992.35 1107.75 994.55 L1107.75 994.5 1126.85 1023.7 Q1137.4 1020 1149.5 1020 1161.6 1020 1172.2 1023.7 L1191.25 994.5 1191.25 994.55 Q1192.65 992.35 1195.1 991.75 L1195.05 991.75 Q1197.35 991.05 1199.7 992.25 L1199.8 992.3 Q1201.95 993.4 1202.85 995.7 L1202.85 995.75 Q1209.65 1013.65 1209.2 1031.6 1208.95 1041.25 1206.7 1050.9 1217.5 1067.15 1217.5 1088 L1217.5 1090 1217.5 1090.15 Q1217 1106.3 1209.9 1119.75 1207.8 1123.65 1205.15 1127.35 L1204.85 1127.7 1204.8 1127.85 1204.65 1128.05 Q1201.45 1132.2 1197.6 1136.1 L1192.7 1140.6 1192.65 1140.65 1188.2 1144.05 Q1171.3 1156 1149.5 1156 1127.65 1156 1110.8 1144.1 L1110.8 1144.05 Q1108.55 1142.45 1106.45 1140.75 L1101.4 1136.1 Q1097.45 1132.15 1094.4 1128 1090.95 1123.45 1088.55 1118.6 L1088.3 1118.05 1082.75 1101.35 1082.55 1100.2 1082.55 1100.1 1082.5 1099.9 1082.3 1098.85 1082.3 1098.7 1082.25 1098.5 1082.25 1098.3 1082.2 1098.1 1082.05 1096.6 1081.95 1096.1 1081.95 1095.8 1081.9 1095.45 1081.9 1095.4 1081.85 1095.15 1081.85 1095.05 1081.85 1095 1081.8 1094.6 1081.75 1094.05 1081.7 1093.5 1081.55 1090.2 1081.5 1088 Q1081.5 1067.2 1092.35 1050.95 1090.05 1041.25 1089.8 1031.6"/>
+ <path stroke="none" fill="#958F8F" d="M1093.8 1031.5 Q1094.2 1016.35 1099.9 1001.15 1100.25 1000.25 1101.1 999.8 L1102.9 999.6 Q1103.85 999.85 1104.4 1000.7 L1124.35 1031.3 1123.2 1033.15 1111.05 1019.7 Q1110.65 1019.3 1110 1019.45 1109.35 1019.55 1108.75 1020.1 1108.15 1020.65 1107.95 1021.4 1100.75 1043.45 1105.7 1060.3 L1104.4 1062.35 Q1103.9 1063.15 1102.95 1063.45 L1101.1 1063.25 Q1100.25 1062.8 1099.9 1061.9 1094.2 1046.7 1093.8 1031.5 M1174.65 1031.3 L1194.6 1000.7 Q1195.15 999.85 1196.1 999.6 L1197.9 999.8 Q1198.75 1000.25 1199.1 1001.15 1204.8 1016.35 1205.2 1031.5 1204.8 1046.7 1199.1 1061.9 1198.75 1062.8 1197.9 1063.25 L1196.05 1063.45 Q1195.1 1063.15 1194.6 1062.35 L1193.3 1060.3 Q1198.25 1043.45 1191.05 1021.4 1190.85 1020.65 1190.25 1020.1 1189.65 1019.55 1189 1019.45 1188.35 1019.3 1187.95 1019.7 L1175.8 1033.15 1174.65 1031.3"/>
+ <path stroke="none" fill="#B1A9A9" d="M1174.65 1031.3 L1174.2 1030.6 Q1173.8 1030 1173.8 1029.25 1173.8 1028.5 1174.2 1027.9 L1194.6 996.7 Q1195.15 995.85 1196.1 995.6 L1197.9 995.8 Q1198.75 996.25 1199.1 997.15 1205.6 1014.3 1205.2 1031.5 1204.8 1016.35 1199.1 1001.15 1198.75 1000.25 1197.9 999.8 L1196.1 999.6 Q1195.15 999.85 1194.6 1000.7 L1174.65 1031.3 M1124.35 1031.3 L1104.4 1000.7 Q1103.85 999.85 1102.9 999.6 L1101.1 999.8 Q1100.25 1000.25 1099.9 1001.15 1094.2 1016.35 1093.8 1031.5 1093.4 1014.3 1099.9 997.15 1100.25 996.25 1101.1 995.8 L1102.9 995.6 Q1103.85 995.85 1104.4 996.7 L1124.8 1027.9 Q1125.2 1028.5 1125.2 1029.25 1125.2 1030 1124.8 1030.6 L1124.35 1031.3"/>
+ <path stroke="none" fill="#D2D0D0" d="M1105.7 1060.3 Q1100.75 1043.45 1107.95 1021.4 1108.15 1020.65 1108.75 1020.1 1109.35 1019.55 1110 1019.45 1110.65 1019.3 1111.05 1019.7 L1123.2 1033.15 1105.7 1060.3 M1175.8 1033.15 L1187.95 1019.7 Q1188.35 1019.3 1189 1019.45 1189.65 1019.55 1190.25 1020.1 1190.85 1020.65 1191.05 1021.4 1198.25 1043.45 1193.3 1060.3 L1175.8 1033.15"/>
+ <path stroke="none" fill="#B1A9A9" d="M1085.55 1090 L1085.5 1088 Q1085.5 1061.45 1104.25 1042.75 1108.5 1038.5 1113.1 1035.25 L1116.65 1032.95 Q1131.25 1024 1149.5 1024 1167.8 1024 1182.4 1032.9 L1185.9 1035.2 Q1190.55 1038.5 1194.8 1042.75 1213.5 1061.45 1213.5 1088 L1213.5 1090 Q1212.8 1064.75 1194.8 1046.75 1190.4 1042.35 1185.6 1039 1182.8 1037.05 1179.85 1035.45 L1176.7 1037.95 Q1165.45 1046 1149.5 1046 1133.55 1046 1122.25 1037.95 L1119.15 1035.5 Q1116.2 1037.1 1113.4 1039.05 1108.6 1042.4 1104.25 1046.75 1086.2 1064.75 1085.55 1090"/>
+ <path stroke="none" fill="#9F9898" d="M1213.5 1090 Q1213.05 1105.2 1206.35 1117.85 1204.4 1121.55 1201.9 1125 L1201.85 1125 1201.45 1125.6 Q1199.8 1113 1186.15 1108.4 1199.15 1105.35 1205 1092.55 1210.85 1079.65 1200.9 1063.8 1190.9 1047.95 1175.3 1055.85 1159.65 1063.7 1158.65 1091.9 L1140.35 1091.9 Q1139.35 1063.7 1123.7 1055.85 1108.1 1047.95 1098.1 1063.8 1088.15 1079.65 1094 1092.55 1099.85 1105.35 1112.85 1108.4 1099.2 1113 1097.6 1125.6 1094.4 1121.35 1092.1 1116.8 L1086.55 1100.1 1086.55 1099.9 1086.35 1098.8 1086.3 1098.55 1086.25 1098.05 1086.15 1097.5 1086 1096.25 1086 1096.05 1085.9 1095.45 1085.9 1095.2 1085.85 1095 1085.85 1094.75 1085.8 1094.45 1085.75 1093.8 1085.75 1093.55 1085.7 1093.25 1085.55 1090 Q1086.2 1064.75 1104.25 1046.75 1108.6 1042.4 1113.4 1039.05 1116.2 1037.1 1119.15 1035.5 L1122.25 1037.95 Q1133.55 1046 1149.5 1046 1165.45 1046 1176.7 1037.95 L1179.85 1035.45 Q1182.8 1037.05 1185.6 1039 1190.4 1042.35 1194.8 1046.75 1212.8 1064.75 1213.5 1090"/>
+ <path stroke="none" fill="#D2D0D0" d="M1201.45 1125.6 Q1198.45 1129.55 1194.75 1133.25 L1190.1 1137.55 1185.9 1140.75 Q1170 1152 1149.5 1152 1128.95 1152 1113.1 1140.8 1111 1139.3 1109 1137.65 L1104.2 1133.25 Q1100.5 1129.55 1097.6 1125.6 1099.2 1113 1112.85 1108.4 1099.85 1105.35 1094 1092.55 1088.15 1079.65 1098.1 1063.8 1108.1 1047.95 1123.7 1055.85 1139.35 1063.7 1140.35 1091.9 L1158.65 1091.9 Q1159.65 1063.7 1175.3 1055.85 1190.9 1047.95 1200.9 1063.8 1210.85 1079.65 1205 1092.55 1199.15 1105.35 1186.15 1108.4 1199.8 1113 1201.45 1125.6"/>
+ <path stroke="none" fill="#383838" d="M1153.95 1106.95 L1154.8 1107.95 1156.85 1109.45 Q1158.25 1110.1 1159.9 1110.1 1162.9 1110.1 1165.05 1107.95 L1166.3 1106.3 1166.8 1105.85 1167.5 1105.9 1172.2 1108.35 1172.65 1108.85 1172.6 1109.5 1171.1 1111.8 1170.05 1112.95 Q1165.8 1117.15 1159.9 1117.15 1154 1117.15 1149.8 1112.95 L1149.5 1112.65 1149.2 1112.95 Q1144.95 1117.15 1139.05 1117.15 1133.1 1117.15 1128.95 1112.95 L1127.9 1111.8 1126.4 1109.6 Q1126.2 1109.25 1126.35 1108.95 1126.4 1108.6 1126.75 1108.4 L1131.35 1105.85 1132 1105.75 1132.55 1106.2 1133.9 1107.95 Q1136.05 1110.1 1139.05 1110.1 1140.7 1110.1 1142.15 1109.45 1143.25 1108.9 1144.2 1107.95 L1145.05 1106.95 Q1149.7 1108.7 1153.95 1106.95"/>
+ <path stroke="none" fill="#545454" d="M1136.65 1096.95 L1136.45 1094.6 1136.45 1093.7 Q1136.75 1091.3 1140.25 1089.6 1144.1 1087.75 1149.5 1087.75 1154.9 1087.75 1158.75 1089.6 1162.2 1091.3 1162.55 1093.7 L1162.55 1094.6 1162.35 1096.95 Q1161.65 1095.05 1158.75 1093.6 1154.9 1091.75 1149.5 1091.75 1144.1 1091.75 1140.25 1093.6 1137.35 1095 1136.65 1096.95"/>
+ <path stroke="none" fill="#464646" d="M1136.65 1096.95 Q1137.35 1095 1140.25 1093.6 1144.1 1091.75 1149.5 1091.75 1154.9 1091.75 1158.75 1093.6 1161.65 1095.05 1162.35 1096.95 1161.7 1100.9 1158.75 1103.85 1156.6 1106 1153.95 1106.95 1149.7 1108.7 1145.05 1106.95 1142.4 1106 1140.25 1103.85 1137.3 1100.9 1136.65 1096.95"/>
+ <path stroke="none" fill="#5B5B5B" d="M1107.7 1084 Q1107.8 1081.65 1110.25 1079.95 1112.75 1078.25 1116.4 1078.25 1119.95 1078.25 1122.5 1079.95 1124.95 1081.65 1125.05 1084 L1125.05 1084.3 Q1124.95 1086.65 1122.5 1088.25 1119.95 1090 1116.4 1090 1112.75 1090 1110.25 1088.25 1107.8 1086.65 1107.7 1084.3 L1107.7 1084 M1191.25 1084 L1191.25 1084.3 Q1191.15 1086.65 1188.75 1088.25 1186.25 1090 1182.6 1090 1179.05 1090 1176.45 1088.25 1174.05 1086.65 1173.95 1084.3 L1173.95 1084 Q1174.05 1081.65 1176.45 1079.95 1179.05 1078.25 1182.6 1078.25 1186.25 1078.25 1188.75 1079.95 1191.15 1081.65 1191.25 1084"/>
+ <path stroke="none" fill="#FFFFFF" d="M1191.25 1084 Q1191.15 1081.65 1188.75 1079.95 1186.25 1078.25 1182.6 1078.25 1179.05 1078.25 1176.45 1079.95 1174.05 1081.65 1173.95 1084 L1173.95 1084.3 Q1174.05 1086.65 1176.45 1088.25 1179.05 1090 1182.6 1090 1186.25 1090 1188.75 1088.25 1191.15 1086.65 1191.25 1084.3 L1191.25 1084 M1107.7 1084 L1107.7 1084.3 Q1107.8 1086.65 1110.25 1088.25 1112.75 1090 1116.4 1090 1119.95 1090 1122.5 1088.25 1124.95 1086.65 1125.05 1084.3 L1125.05 1084 Q1124.95 1081.65 1122.5 1079.95 1119.95 1078.25 1116.4 1078.25 1112.75 1078.25 1110.25 1079.95 1107.8 1081.65 1107.7 1084 M1103 1083.95 Q1103 1078.75 1106.65 1075.1 1110.3 1071.45 1115.5 1071.45 1120.6 1071.45 1124.3 1075.1 1127.95 1078.75 1127.95 1083.95 1127.95 1089.1 1124.3 1092.7 1120.6 1096.4 1115.5 1096.4 1110.3 1096.4 1106.65 1092.7 1103 1089.1 1103 1083.95 M1196 1083.95 Q1196 1089.1 1192.35 1092.7 1188.7 1096.4 1183.5 1096.4 1178.4 1096.4 1174.7 1092.7 1171.05 1089.1 1171.05 1083.95 1171.05 1078.75 1174.7 1075.1 1178.4 1071.45 1183.5 1071.45 1188.7 1071.45 1192.35 1075.1 1196 1078.75 1196 1083.95"/>
+ <path stroke="none" fill="#6D4526" d="M936.55 1033.55 L938.35 1034.95 Q941.15 1037.25 943.8 1039.9 L944.9 1041.05 Q951.7 1048.15 956.1 1056.3 L956.1 1056.35 Q958.75 1061.4 960.5 1066.85 L960.5 1066.8 961.8 1071.4 Q963.7 1079.3 963.7 1088 L963.7 1090 963.7 1090.1 Q963.6 1094.85 962.85 1099.45 961.2 1109.95 956.4 1119.1 951.65 1128.25 943.8 1136.05 L941.4 1138.3 937.3 1141.85 Q919.4 1156 895.7 1156 872 1156 854.15 1141.85 L854.1 1141.85 850 1138.3 847.65 1136.05 Q828.45 1116.95 827.75 1090.2 L827.7 1088 Q827.7 1070.6 835.35 1056.35 L835.35 1056.3 Q839.7 1048.15 846.6 1041 L847.65 1039.9 Q850.3 1037.2 853.15 1034.9 L853.1 1034.9 854.95 1033.5 Q872.5 1020 895.7 1020 918.95 1020 936.55 1033.55"/>
+ <path stroke="none" fill="#BD7841" d="M831.75 1090 L831.7 1088 Q831.7 1071.65 838.85 1058.2 843 1050.45 849.55 1043.65 L850.45 1042.7 855.65 1038 857.35 1036.65 Q873.9 1024 895.7 1024 917.55 1024 934.1 1036.7 L935.8 1038.05 940.95 1042.7 941.9 1043.7 Q948.4 1050.45 952.55 1058.2 955.05 1062.95 956.7 1068.05 L957.9 1072.3 Q959.7 1079.8 959.7 1088 L959.7 1090 Q959.45 1080.65 956.8 1072.3 L955.3 1068.05 Q950.6 1056.35 940.95 1046.7 925.85 1031.65 905.7 1028.7 L895.7 1028 885.7 1028.7 Q865.55 1031.65 850.45 1046.7 832.4 1064.8 831.75 1090"/>
+ <path stroke="none" fill="#A16639" d="M831.75 1090 Q832.4 1064.8 850.45 1046.7 865.55 1031.65 885.7 1028.7 L895.7 1028 905.7 1028.7 Q925.85 1031.65 940.95 1046.7 950.6 1056.35 955.3 1068.05 L956.8 1072.3 Q959.45 1080.65 959.7 1090 959.6 1094.5 958.9 1098.8 957.35 1108.65 952.85 1117.25 948.35 1125.85 940.95 1133.2 L938.7 1135.35 934.8 1138.7 Q928.5 1133.35 921.25 1130.1 926.35 1127.95 930.9 1124.8 L931.7 1124.2 935.4 1121.3 936.45 1120.35 Q946.35 1111 946 1100.45 945.7 1090 938.85 1098.2 936.55 1100.9 932.65 1101.95 L932.6 1101.95 Q926.6 1103.55 921.25 1100.45 L918.9 1098.8 Q915.5 1095.9 914.3 1091.35 912.7 1085.35 915.8 1079.95 918.85 1074.65 924.85 1073 L924.9 1073 928.95 1072.3 932 1072.3 Q938.05 1072.35 933.4 1068.1 L933.4 1068.05 931.7 1066.45 930.95 1065.85 Q925.55 1061.15 919.4 1058.2 916 1056.6 912.35 1055.5 913.05 1052.1 913.2 1048.3 L913.2 1047.45 Q913.2 1042.25 908.05 1038.6 902.95 1034.95 895.7 1034.95 888.45 1034.95 883.3 1038.6 878.2 1042.25 878.2 1047.45 L878.25 1048.3 Q878.4 1052.1 879.05 1055.55 868.4 1058.75 859.8 1066.45 L858.1 1068.05 Q854.1 1072.65 860.45 1072.3 L861.4 1072.3 866.45 1073.05 866.5 1073.05 Q872.5 1074.7 875.55 1080 878.65 1085.4 877.05 1091.4 875.9 1095.9 872.5 1098.8 871.4 1099.75 870.1 1100.5 864.75 1103.6 858.75 1102 L858.7 1102 Q854.75 1100.95 852.75 1098.75 845.45 1090.8 844.85 1098.8 845.05 1111.25 855.4 1120.75 L858.1 1122.95 859.8 1124.2 Q864.65 1127.75 870.2 1130.15 862.9 1133.4 856.6 1138.7 L852.7 1135.35 850.45 1133.2 Q832.4 1115.2 831.75 1090 M928.35 1078.65 Q924.5 1078.65 921.8 1081.35 919.1 1084.1 919.1 1087.95 919.1 1091.75 921.8 1094.5 924.5 1097.2 928.35 1097.2 932.2 1097.2 934.8 1094.5 937.6 1091.75 937.6 1087.95 937.6 1084.1 934.8 1081.35 932.2 1078.65 928.35 1078.65 M863 1078.7 Q859.15 1078.7 856.55 1081.4 853.75 1084.15 853.75 1088 853.75 1091.8 856.55 1094.55 859.15 1097.25 863 1097.25 866.85 1097.25 869.55 1094.55 872.25 1091.8 872.25 1088 872.25 1084.15 869.55 1081.4 866.85 1078.7 863 1078.7"/>
+ <path stroke="none" fill="#AA6C3C" d="M879.05 1055.55 Q878.4 1052.1 878.25 1048.3 L878.2 1047.45 Q878.2 1042.25 883.3 1038.6 888.45 1034.95 895.7 1034.95 902.95 1034.95 908.05 1038.6 913.2 1042.25 913.2 1047.45 L913.2 1048.3 Q913.05 1052.1 912.35 1055.5 904.55 1053.15 895.7 1053.15 L894.1 1053.2 Q886.15 1053.4 879.05 1055.55"/>
+ <path stroke="none" fill="#EBCEB7" d="M879.05 1055.55 Q886.15 1053.4 894.1 1053.2 L895.7 1053.15 Q904.55 1053.15 912.35 1055.5 916 1056.6 919.4 1058.2 925.55 1061.15 930.95 1065.85 L931.7 1066.45 933.4 1068.05 933.4 1068.1 Q938.05 1072.35 932 1072.3 L928.95 1072.3 924.9 1073 924.85 1073 Q918.85 1074.65 915.8 1079.95 912.7 1085.35 914.3 1091.35 915.5 1095.9 918.9 1098.8 L921.25 1100.45 Q926.6 1103.55 932.6 1101.95 L932.65 1101.95 Q936.55 1100.9 938.85 1098.2 945.7 1090 946 1100.45 946.35 1111 936.45 1120.35 L935.4 1121.3 931.7 1124.2 930.9 1124.8 Q926.35 1127.95 921.25 1130.1 L919.4 1130.85 Q908.7 1134.95 895.7 1134.95 L894.1 1134.95 Q882.3 1134.7 872.45 1131.05 L870.2 1130.15 Q864.65 1127.75 859.8 1124.2 L858.1 1122.95 855.4 1120.75 Q845.05 1111.25 844.85 1098.8 845.45 1090.8 852.75 1098.75 854.75 1100.95 858.7 1102 L858.75 1102 Q864.75 1103.6 870.1 1100.5 871.4 1099.75 872.5 1098.8 875.9 1095.9 877.05 1091.4 878.65 1085.4 875.55 1080 872.5 1074.7 866.5 1073.05 L866.45 1073.05 861.4 1072.3 860.45 1072.3 Q854.1 1072.65 858.1 1068.05 L859.8 1066.45 Q868.4 1058.75 879.05 1055.55 M882.85 1098.1 L883 1098.8 Q883.75 1102.3 886.45 1105 888.6 1107.15 891.25 1108.1 L890.4 1109.1 888.35 1110.6 Q886.9 1111.25 885.25 1111.25 882.25 1111.25 880.1 1109.1 L878.75 1107.35 Q878.55 1107 878.2 1106.9 L877.55 1107 872.95 1109.55 Q872.6 1109.75 872.55 1110.1 872.4 1110.4 872.6 1110.75 L874.1 1112.95 875.15 1114.1 Q879.3 1118.3 885.25 1118.3 891.15 1118.3 895.4 1114.1 L895.7 1113.8 896 1114.1 Q900.2 1118.3 906.1 1118.3 912 1118.3 916.25 1114.1 L917.3 1112.95 918.8 1110.65 918.85 1110 918.4 1109.5 913.7 1107.05 913 1107 912.5 1107.45 911.25 1109.1 Q909.1 1111.25 906.1 1111.25 904.45 1111.25 903.05 1110.6 901.95 1110.05 901 1109.1 L900.15 1108.1 Q902.8 1107.15 904.95 1105 907.65 1102.3 908.45 1098.8 L908.55 1098.1 908.75 1095.75 908.75 1094.85 Q908.4 1092.45 904.95 1090.75 901.1 1088.9 895.7 1088.9 890.3 1088.9 886.45 1090.75 882.95 1092.45 882.65 1094.85 L882.65 1095.75 882.85 1098.1"/>
+ <path stroke="none" fill="#FFFFFF" d="M928.35 1078.65 Q932.2 1078.65 934.8 1081.35 937.6 1084.1 937.6 1087.95 937.6 1091.75 934.8 1094.5 932.2 1097.2 928.35 1097.2 924.5 1097.2 921.8 1094.5 919.1 1091.75 919.1 1087.95 919.1 1084.1 921.8 1081.35 924.5 1078.65 928.35 1078.65 M928.5 1083.15 Q926.05 1083.15 924.4 1084.85 922.7 1086.55 922.7 1088.95 922.7 1091.35 924.4 1093.1 926.05 1094.8 928.5 1094.8 930.9 1094.8 932.55 1093.1 934.3 1091.35 934.3 1088.95 934.3 1086.55 932.55 1084.85 930.9 1083.15 928.5 1083.15 M863 1078.7 Q866.85 1078.7 869.55 1081.4 872.25 1084.15 872.25 1088 872.25 1091.8 869.55 1094.55 866.85 1097.25 863 1097.25 859.15 1097.25 856.55 1094.55 853.75 1091.8 853.75 1088 853.75 1084.15 856.55 1081.4 859.15 1078.7 863 1078.7 M862.85 1083.2 Q860.45 1083.2 858.8 1084.9 857.05 1086.6 857.05 1089 857.05 1091.4 858.8 1093.15 860.45 1094.85 862.85 1094.85 865.3 1094.85 866.95 1093.15 868.65 1091.4 868.65 1089 868.65 1086.6 866.95 1084.9 865.3 1083.2 862.85 1083.2"/>
+ <path stroke="none" fill="#5B5B5B" d="M862.85 1083.2 Q865.3 1083.2 866.95 1084.9 868.65 1086.6 868.65 1089 868.65 1091.4 866.95 1093.15 865.3 1094.85 862.85 1094.85 860.45 1094.85 858.8 1093.15 857.05 1091.4 857.05 1089 857.05 1086.6 858.8 1084.9 860.45 1083.2 862.85 1083.2 M928.5 1083.15 Q930.9 1083.15 932.55 1084.85 934.3 1086.55 934.3 1088.95 934.3 1091.35 932.55 1093.1 930.9 1094.8 928.5 1094.8 926.05 1094.8 924.4 1093.1 922.7 1091.35 922.7 1088.95 922.7 1086.55 924.4 1084.85 926.05 1083.15 928.5 1083.15"/>
+ <path stroke="none" fill="#545454" d="M882.85 1098.1 L882.65 1095.75 882.65 1094.85 Q882.95 1092.45 886.45 1090.75 890.3 1088.9 895.7 1088.9 901.1 1088.9 904.95 1090.75 908.4 1092.45 908.75 1094.85 L908.75 1095.75 908.55 1098.1 Q907.85 1096.2 904.95 1094.75 901.1 1092.9 895.7 1092.9 890.3 1092.9 886.45 1094.75 883.55 1096.15 882.85 1098.1"/>
+ <path stroke="none" fill="#464646" d="M882.85 1098.1 Q883.55 1096.15 886.45 1094.75 890.3 1092.9 895.7 1092.9 901.1 1092.9 904.95 1094.75 907.85 1096.2 908.55 1098.1 L908.45 1098.8 Q907.65 1102.3 904.95 1105 902.8 1107.15 900.15 1108.1 895.9 1109.85 891.25 1108.1 888.6 1107.15 886.45 1105 883.75 1102.3 883 1098.8 L882.85 1098.1"/>
+ <path stroke="none" fill="#383838" d="M900.15 1108.1 L901 1109.1 Q901.95 1110.05 903.05 1110.6 904.45 1111.25 906.1 1111.25 909.1 1111.25 911.25 1109.1 L912.5 1107.45 913 1107 913.7 1107.05 918.4 1109.5 918.85 1110 918.8 1110.65 917.3 1112.95 916.25 1114.1 Q912 1118.3 906.1 1118.3 900.2 1118.3 896 1114.1 L895.7 1113.8 895.4 1114.1 Q891.15 1118.3 885.25 1118.3 879.3 1118.3 875.15 1114.1 L874.1 1112.95 872.6 1110.75 Q872.4 1110.4 872.55 1110.1 872.6 1109.75 872.95 1109.55 L877.55 1107 878.2 1106.9 Q878.55 1107 878.75 1107.35 L880.1 1109.1 Q882.25 1111.25 885.25 1111.25 886.9 1111.25 888.35 1110.6 L890.4 1109.1 891.25 1108.1 Q895.9 1109.85 900.15 1108.1"/>
+ <path stroke="none" fill="#955E34" d="M934.8 1138.7 Q918 1152 895.7 1152 873.4 1152 856.6 1138.7 862.9 1133.4 870.2 1130.15 L872.45 1131.05 Q882.3 1134.7 894.1 1134.95 L895.7 1134.95 Q908.7 1134.95 919.4 1130.85 L921.25 1130.1 Q928.5 1133.35 934.8 1138.7"/>
+ <path stroke="none" fill="#1B8045" d="M610.45 1020.65 Q615.15 1020.65 619.2 1022.5 628 1020 637.85 1020 647.65 1020 656.55 1022.5 660.5 1020.65 665.25 1020.65 673.85 1020.65 680 1026.55 L680.8 1027.3 Q686 1032.9 686.45 1040.5 694.45 1048.7 699.25 1058.3 705.85 1071.8 705.85 1088 L705.85 1090 705.85 1090.1 Q705.7 1096.3 704.55 1102.1 701.3 1118.3 690.25 1131.3 L685.9 1136.05 684.7 1137.25 684.65 1137.3 Q681.05 1140.75 677.25 1143.5 660.05 1156 637.85 1156 614.05 1156 596.1 1141.7 L591.15 1137.35 591.1 1137.3 589.8 1136.05 585.45 1131.25 585.45 1131.3 Q574.4 1118.3 571.25 1102.1 570.05 1096.35 569.9 1090.2 L569.85 1088 Q569.85 1071.8 576.5 1058.3 581.2 1048.65 589.3 1040.45 589.7 1032.6 595.3 1027 L595.35 1027 595.55 1026.8 595.55 1026.75 Q601.75 1020.65 610.45 1020.65"/>
+ <path stroke="none" fill="#B19A89" d="M624.65 1114.9 L624.5 1114.8 Q622.75 1113.05 621.95 1111.15 L621.6 1110.05 621.5 1109.6 Q621.1 1108 621.65 1106.95 L622.2 1106.25 Q622.5 1105.9 622.95 1105.7 624.1 1105.15 625.95 1105.7 L626.1 1105.7 Q628.5 1106.45 630.7 1108.6 L630.8 1108.75 631.7 1110.05 632 1111.75 Q632 1113.55 630.7 1114.8 629.45 1116.1 627.65 1116.1 625.9 1116.1 624.65 1114.9 M653.5 1106.25 L654 1106.95 Q654.55 1108 654.2 1109.6 L654.1 1110.05 653.7 1111.15 Q652.9 1113.05 651.15 1114.8 L651.05 1114.9 Q649.75 1116.1 648.05 1116.1 646.2 1116.1 644.95 1114.8 643.65 1113.55 643.65 1111.75 643.65 1110.8 644 1110.05 644.3 1109.3 644.85 1108.75 L645 1108.6 Q647.1 1106.5 649.5 1105.75 L649.7 1105.7 Q651.6 1105.15 652.75 1105.7 L653.5 1106.25"/>
+ <path stroke="none" fill="#EBCEB7" d="M624.65 1114.9 Q625.9 1116.1 627.65 1116.1 629.45 1116.1 630.7 1114.8 632 1113.55 632 1111.75 L631.7 1110.05 630.8 1108.75 630.7 1108.6 Q628.5 1106.45 626.1 1105.7 L625.95 1105.7 Q624.1 1105.15 622.95 1105.7 622.5 1105.9 622.2 1106.25 L621.65 1106.95 Q621.1 1108 621.5 1109.6 L621.6 1110.05 621.95 1111.15 Q622.75 1113.05 624.5 1114.8 L624.65 1114.9 M653.5 1106.25 L652.75 1105.7 Q651.6 1105.15 649.7 1105.7 L649.5 1105.75 Q647.1 1106.5 645 1108.6 L644.85 1108.75 Q644.3 1109.3 644 1110.05 643.65 1110.8 643.65 1111.75 643.65 1113.55 644.95 1114.8 646.2 1116.1 648.05 1116.1 649.75 1116.1 651.05 1114.9 L651.15 1114.8 Q652.9 1113.05 653.7 1111.15 L654.1 1110.05 654.2 1109.6 Q654.55 1108 654 1106.95 L653.5 1106.25 M687.2 1128.7 L683.05 1133.2 681.85 1134.4 674.9 1140.25 Q658.75 1152 637.85 1152 615.45 1152 598.6 1138.55 L593.85 1134.4 592.6 1133.2 588.5 1128.7 Q578.15 1116.5 575.15 1101.3 L580.35 1103.45 Q595.1 1109 613.6 1111.15 614.1 1106.7 617.35 1103.35 621.3 1099.45 626.85 1099.45 632.35 1099.45 636.25 1103.35 L637.85 1105.2 639.4 1103.35 Q643.35 1099.45 648.9 1099.45 654.4 1099.45 658.3 1103.35 661.65 1106.7 662.15 1111.15 680.65 1109 695.35 1103.45 L700.6 1101.3 Q697.55 1116.5 687.2 1128.7"/>
+ <path stroke="none" fill="#F0EDE7" d="M592.05 1111.1 L591.05 1106.45 Q590.95 1106.1 591.1 1105.8 591.25 1105.4 591.55 1105.25 L592.25 1105.2 606 1107.7 Q606.4 1107.75 606.7 1108.05 L607.15 1108.65 607.25 1109.45 606.3 1113.7 592.05 1111.1 M669.4 1113.7 Q668.85 1111.7 668.45 1109.45 L668.55 1108.65 669 1108.05 Q669.3 1107.75 669.7 1107.7 L683.45 1105.2 684.15 1105.25 684.6 1105.8 684.65 1106.45 683.65 1111.1 669.4 1113.7"/>
+ <path stroke="none" fill="#FFFCF5" d="M669.4 1113.7 L683.65 1111.1 Q681.65 1118.35 677.6 1124.5 L677.05 1125.05 676.35 1125.25 675.7 1125 Q671.5 1121.8 669.4 1113.7 M606.3 1113.7 Q604.2 1121.8 600 1125 L599.35 1125.25 598.65 1125.05 598.1 1124.5 Q594.05 1118.35 592.05 1111.1 L606.3 1113.7"/>
+ <path stroke="none" fill="#FFFFFF" d="M604.2 1042 Q604.2 1045.15 606.45 1047.3 608.6 1049.6 611.8 1049.6 614.95 1049.6 617.2 1047.3 L617.3 1047.25 Q618.25 1046.25 618.8 1045.1 619.45 1043.7 619.45 1042 619.45 1040.25 618.8 1038.8 618.25 1037.55 617.2 1036.55 L616.85 1036.25 Q614.7 1034.4 611.8 1034.4 608.6 1034.4 606.45 1036.55 604.2 1038.7 604.2 1042 M598.25 1041.75 L598.25 1041.7 Q598.25 1039.1 599.25 1036.9 600.1 1034.85 601.85 1033.15 605.45 1029.65 610.45 1029.65 L611.15 1029.7 Q614.25 1029.8 616.85 1031.4 L616.9 1031.45 618.8 1032.85 619.15 1033.15 Q622.65 1036.7 622.65 1041.75 622.65 1046.8 619.15 1050.25 L618.8 1050.6 617.65 1051.55 Q614.45 1053.9 610.45 1053.9 605.45 1053.9 601.85 1050.25 598.25 1046.8 598.25 1041.75 M671.6 1042 Q671.6 1038.7 669.35 1036.55 667.1 1034.4 663.95 1034.4 661.1 1034.4 658.85 1036.25 L658.5 1036.55 Q656.25 1038.7 656.25 1042 656.25 1045.1 658.45 1047.25 L658.5 1047.3 Q660.85 1049.6 663.95 1049.6 667.1 1049.6 669.35 1047.3 671.6 1045.15 671.6 1042 M677.45 1041.75 Q677.45 1046.8 673.95 1050.25 670.35 1053.9 665.25 1053.9 661.15 1053.9 658.05 1051.5 L656.7 1050.25 Q653.1 1046.8 653.1 1041.75 653.1 1036.7 656.7 1033.15 657.7 1032.15 658.8 1031.5 L658.95 1031.4 Q661.45 1029.8 664.6 1029.7 L665.25 1029.65 Q670.35 1029.65 673.95 1033.15 675.65 1034.9 676.55 1037 677.45 1039.15 677.45 1041.7 L677.45 1041.75"/>
+ <path stroke="none" fill="#2ECC71" d="M598.25 1041.75 Q598.25 1046.8 601.85 1050.25 605.45 1053.9 610.45 1053.9 614.45 1053.9 617.65 1051.55 L618.8 1050.6 619.15 1050.25 Q622.65 1046.8 622.65 1041.75 622.65 1036.7 619.15 1033.15 L618.8 1032.85 616.9 1031.45 616.85 1031.4 Q614.25 1029.8 611.15 1029.7 L610.45 1029.65 Q605.45 1029.65 601.85 1033.15 600.1 1034.85 599.25 1036.9 598.25 1039.1 598.25 1041.7 L598.25 1041.75 M618.8 1026.75 Q620.55 1027.7 622.15 1029.1 L622.05 1029.05 622.7 1029.6 622.75 1029.65 622.95 1029.95 Q627.65 1034.85 627.65 1041.75 627.6 1048.7 622.95 1053.5 L622.7 1053.8 622.35 1054.15 622.1 1054.35 Q620.3 1055.95 618.35 1057 L619.65 1064.05 618.35 1065.3 Q617.7 1066.1 617.6 1067.2 L617.6 1067.6 617.6 1067.95 Q617.7 1068.65 618.05 1069.25 618.6 1070.1 619.4 1070.25 620.25 1070.4 620.9 1069.6 L621 1069.5 623 1075.7 Q624.3 1079.2 625.7 1081.95 624.5 1082.75 623.8 1083.7 L623.85 1083.6 Q622.9 1084.6 622.8 1086.1 L622.8 1086.2 622.8 1086.45 622.8 1086.65 622.8 1086.9 Q622.9 1087.75 623.4 1088.55 L623.45 1088.6 Q624.3 1089.95 625.55 1090.1 L625.6 1090.15 Q627.15 1090.5 628.45 1089.1 L628.55 1088.95 629.2 1088.4 629.55 1088.25 629.7 1088.2 Q633.45 1092.5 637.85 1092.5 642.25 1092.5 646.05 1088.15 L646.2 1088.2 646.6 1088.4 647.25 1089 647.3 1089.05 Q648.45 1090.5 650.1 1090.15 L650.15 1090.1 Q651.4 1089.95 652.3 1088.6 L652.3 1088.55 652.9 1087 652.9 1086.9 652.95 1086.45 652.9 1085.95 Q652.75 1084.6 652 1083.7 L651.95 1083.65 Q651.2 1082.75 650.05 1081.95 L652.7 1075.7 654.75 1069.4 654.9 1069.6 Q655.5 1070.4 656.35 1070.25 657.15 1070.1 657.7 1069.25 L658.15 1067.95 658.2 1067.65 658.15 1067.2 Q658.05 1066.1 657.45 1065.3 L656.1 1064 657.35 1057 Q655.15 1055.8 653.25 1053.9 L653.1 1053.75 Q648.1 1048.85 648.1 1041.75 648.1 1034.65 653.1 1029.7 L653.2 1029.6 Q654.95 1027.85 656.95 1026.75 660.65 1024.65 665.25 1024.65 672.4 1024.65 677.45 1029.6 L677.7 1029.85 Q682.45 1034.8 682.45 1041.75 L682.45 1042.15 682 1045.75 683.05 1046.75 Q688.85 1052.55 692.85 1059.05 701.35 1072.85 701.85 1090 701.7 1095.85 700.6 1101.3 L695.35 1103.45 Q680.65 1109 662.15 1111.15 661.65 1106.7 658.3 1103.35 654.4 1099.45 648.9 1099.45 643.35 1099.45 639.4 1103.35 L637.85 1105.2 636.25 1103.35 Q632.35 1099.45 626.85 1099.45 621.3 1099.45 617.35 1103.35 614.1 1106.7 613.6 1111.15 595.1 1109 580.35 1103.45 L575.15 1101.3 Q574.05 1095.85 573.9 1090 574.35 1072.85 582.85 1059.05 586.8 1052.55 592.6 1046.75 L593.7 1045.7 Q593.3 1044 593.25 1042.1 L593.25 1041.75 Q593.25 1034.75 598.15 1029.8 L598.35 1029.6 Q603.4 1024.65 610.45 1024.65 615 1024.65 618.8 1026.75 M677.45 1041.75 L677.45 1041.7 Q677.45 1039.15 676.55 1037 675.65 1034.9 673.95 1033.15 670.35 1029.65 665.25 1029.65 L664.6 1029.7 Q661.45 1029.8 658.95 1031.4 L658.8 1031.5 Q657.7 1032.15 656.7 1033.15 653.1 1036.7 653.1 1041.75 653.1 1046.8 656.7 1050.25 L658.05 1051.5 Q661.15 1053.9 665.25 1053.9 670.35 1053.9 673.95 1050.25 677.45 1046.8 677.45 1041.75"/>
+ <path stroke="none" fill="#5B5B5B" d="M604.2 1042 Q604.2 1038.7 606.45 1036.55 608.6 1034.4 611.8 1034.4 614.7 1034.4 616.85 1036.25 L617.2 1036.55 Q618.25 1037.55 618.8 1038.8 619.45 1040.25 619.45 1042 619.45 1043.7 618.8 1045.1 618.25 1046.25 617.3 1047.25 L617.2 1047.3 Q614.95 1049.6 611.8 1049.6 608.6 1049.6 606.45 1047.3 604.2 1045.15 604.2 1042 M671.6 1042 Q671.6 1045.15 669.35 1047.3 667.1 1049.6 663.95 1049.6 660.85 1049.6 658.5 1047.3 L658.45 1047.25 Q656.25 1045.1 656.25 1042 656.25 1038.7 658.5 1036.55 L658.85 1036.25 Q661.1 1034.4 663.95 1034.4 667.1 1034.4 669.35 1036.55 671.6 1038.7 671.6 1042"/>
+ <path stroke="none" fill="#30D776" d="M622.75 1029.65 L629.85 1028.45 637.85 1028 645.85 1028.45 653.1 1029.7 Q648.1 1034.65 648.1 1041.75 648.1 1048.85 653.1 1053.75 L653.25 1053.9 Q655.15 1055.8 657.35 1057 L656.1 1064 652.95 1061.85 Q646.65 1058.45 637.9 1058.45 629.05 1058.45 622.9 1061.85 621 1062.9 619.65 1064.05 L618.35 1057 Q620.3 1055.95 622.1 1054.35 L622.35 1054.15 622.7 1053.8 622.95 1053.5 Q627.6 1048.7 627.65 1041.75 627.65 1034.85 622.95 1029.95 L622.75 1029.65 M625.7 1081.95 Q624.3 1079.2 623 1075.7 L621 1069.5 Q621.7 1068.65 622.8 1067.95 L624.35 1067.25 624.35 1067.3 Q629.95 1065.1 637.9 1065.1 645.85 1065.1 651.5 1067.3 L651.45 1067.25 653 1067.95 654.75 1069.4 652.7 1075.7 650.05 1081.95 648.5 1081 Q644.05 1078.55 637.9 1078.55 631.65 1078.55 627.3 1081 L627.25 1081 Q626.35 1081.45 625.7 1081.95 M629.7 1088.2 L629.9 1088.15 Q633.2 1086.85 637.9 1086.85 642.6 1086.85 645.95 1088.15 L646.05 1088.15 Q642.25 1092.5 637.85 1092.5 633.45 1092.5 629.7 1088.2"/>
+ <path stroke="none" fill="#31DE7A" d="M622.75 1029.65 L622.7 1029.6 622.05 1029.05 622.15 1029.1 Q620.55 1027.7 618.8 1026.75 627.75 1024 637.85 1024 647.9 1024 656.95 1026.75 654.95 1027.85 653.2 1029.6 L653.1 1029.7 645.85 1028.45 637.85 1028 629.85 1028.45 622.75 1029.65 M593.25 1042.1 Q593.3 1044 593.7 1045.7 L592.6 1046.75 Q586.8 1052.55 582.85 1059.05 574.35 1072.85 573.9 1090 L573.85 1088 Q573.85 1072.75 580.1 1060.05 584.65 1050.7 592.6 1042.75 L593.25 1042.1 M701.85 1090 Q701.35 1072.85 692.85 1059.05 688.85 1052.55 683.05 1046.75 L682 1045.75 682.45 1042.15 683.05 1042.75 Q691 1050.7 695.65 1060.05 701.85 1072.75 701.85 1088 L701.85 1090"/>
+ <path stroke="none" fill="#28B463" d="M619.65 1064.05 Q621 1062.9 622.9 1061.85 629.05 1058.45 637.9 1058.45 646.65 1058.45 652.95 1061.85 L656.1 1064 657.45 1065.3 Q658.05 1066.1 658.15 1067.2 L658.2 1067.65 658.15 1067.95 657.7 1069.25 Q657.15 1070.1 656.35 1070.25 655.5 1070.4 654.9 1069.6 L654.75 1069.4 653 1067.95 651.45 1067.25 651.5 1067.3 Q645.85 1065.1 637.9 1065.1 629.95 1065.1 624.35 1067.3 L624.35 1067.25 622.8 1067.95 Q621.7 1068.65 621 1069.5 L620.9 1069.6 Q620.25 1070.4 619.4 1070.25 618.6 1070.1 618.05 1069.25 617.7 1068.65 617.6 1067.95 L617.6 1067.6 617.6 1067.2 Q617.7 1066.1 618.35 1065.3 L619.65 1064.05 M625.7 1081.95 Q626.35 1081.45 627.25 1081 L627.3 1081 Q631.65 1078.55 637.9 1078.55 644.05 1078.55 648.5 1081 L650.05 1081.95 Q651.2 1082.75 651.95 1083.65 L652 1083.7 Q652.75 1084.6 652.9 1085.95 L652.95 1086.45 652.9 1086.9 652.9 1087 652.3 1088.55 652.3 1088.6 Q651.4 1089.95 650.15 1090.1 L650.1 1090.15 Q648.45 1090.5 647.3 1089.05 L647.25 1089 646.6 1088.4 646.2 1088.2 646.05 1088.15 645.95 1088.15 Q642.6 1086.85 637.9 1086.85 633.2 1086.85 629.9 1088.15 L629.7 1088.2 629.55 1088.25 629.2 1088.4 628.55 1088.95 628.45 1089.1 Q627.15 1090.5 625.6 1090.15 L625.55 1090.1 Q624.3 1089.95 623.45 1088.6 L623.4 1088.55 Q622.9 1087.75 622.8 1086.9 L622.8 1086.65 622.8 1086.45 622.8 1086.2 622.8 1086.1 Q622.9 1084.6 623.85 1083.6 L623.8 1083.7 Q624.5 1082.75 625.7 1081.95"/>
+ <path stroke="none" fill="#6D4526" d="M432.05 1039.9 Q451.95 1059.8 451.95 1088 L451.95 1090 451.95 1090.1 Q451.55 1104.65 445.75 1117 446.3 1121.05 445.9 1127.05 L445.9 1127.1 Q445.05 1137.2 436.35 1144.15 430.5 1148.75 427.1 1147.1 424.35 1146.7 423.05 1143.75 L417.25 1147.55 Q402.35 1156 383.95 1156 365.6 1156 350.75 1147.5 347.7 1145.8 344.9 1143.8 343.65 1146.55 341 1147 337.6 1148.75 331.7 1144.25 L331.65 1144.15 Q322.95 1137.15 322.15 1127.05 L322.1 1127 Q321.7 1121.15 322.3 1117.1 316.4 1104.75 316 1090.2 L315.95 1088 Q315.95 1059.8 335.85 1039.9 355.8 1020 383.95 1020 412.15 1020 432.05 1039.9"/>
+ <path stroke="none" fill="#BD7841" d="M320 1090 L319.95 1088 Q319.95 1061.45 338.65 1042.7 357.45 1024 383.95 1024 410.5 1024 429.2 1042.7 447.95 1061.45 447.95 1088 L447.95 1090 Q447.25 1064.75 429.2 1046.7 410.5 1028 383.95 1028 357.45 1028 338.65 1046.7 320.65 1064.75 320 1090"/>
+ <path stroke="none" fill="#8E5A32" d="M441.55 1116.4 Q442.35 1120.4 441.9 1126.75 441.15 1135.2 433.85 1141 426.6 1146.75 426 1138.55 L425.8 1136.45 429.2 1133.2 Q436.95 1125.45 441.55 1116.4 M342.2 1136.5 L342 1138.45 Q341.4 1146.65 334.15 1141.05 326.85 1135.15 326.1 1126.7 325.65 1120.5 326.45 1116.5 330.95 1125.5 338.65 1133.2 L342.2 1136.5 M377.65 1047.75 L378.25 1048.8 Q379.3 1050.95 379.05 1053.05 378.75 1055.5 376.95 1056.6 375.15 1057.65 372.9 1056.65 370.9 1055.8 369.55 1053.8 L368.95 1052.75 Q366.4 1048.3 365.85 1044.4 365.3 1040.5 367.1 1039.5 368.9 1038.4 371.95 1040.85 375.1 1043.25 377.65 1047.75 M397.35 1055.45 L396.4 1056.95 Q394.4 1059.95 391.4 1061.25 388 1062.7 385.25 1061.15 382.5 1059.55 382.1 1055.9 381.7 1052.6 383.3 1049.4 L384.2 1047.85 Q388.1 1041.1 392.7 1037.45 397.4 1033.8 400.15 1035.4 402.9 1036.95 402 1042.8 401.25 1048.7 397.35 1055.45"/>
+ <path stroke="none" fill="#A16639" d="M447.95 1090 Q447.55 1104.35 441.55 1116.4 436.95 1125.45 429.2 1133.2 L425.8 1136.45 422.55 1139.15 Q420.8 1130.1 411.5 1123.35 400.1 1115 383.95 1115 367.8 1115 356.35 1123.35 347.15 1130.1 345.4 1139.15 L342.2 1136.5 338.65 1133.2 Q330.95 1125.5 326.45 1116.5 320.35 1104.4 320 1090 320.65 1064.75 338.65 1046.7 357.45 1028 383.95 1028 410.5 1028 429.2 1046.7 447.25 1064.75 447.95 1090 M397.35 1055.45 Q401.25 1048.7 402 1042.8 402.9 1036.95 400.15 1035.4 397.4 1033.8 392.7 1037.45 388.1 1041.1 384.2 1047.85 L383.3 1049.4 Q381.7 1052.6 382.1 1055.9 382.5 1059.55 385.25 1061.15 388 1062.7 391.4 1061.25 394.4 1059.95 396.4 1056.95 L397.35 1055.45 M377.65 1047.75 Q375.1 1043.25 371.95 1040.85 368.9 1038.4 367.1 1039.5 365.3 1040.5 365.85 1044.4 366.4 1048.3 368.95 1052.75 L369.55 1053.8 Q370.9 1055.8 372.9 1056.65 375.15 1057.65 376.95 1056.6 378.75 1055.5 379.05 1053.05 379.3 1050.95 378.25 1048.8 L377.65 1047.75"/>
+ <path stroke="none" fill="#EBCEB7" d="M422.55 1139.15 Q419 1141.9 415.25 1144.05 401.25 1152 383.95 1152 366.7 1152 352.7 1144 348.9 1141.85 345.4 1139.15 347.15 1130.1 356.35 1123.35 367.8 1115 383.95 1115 400.1 1115 411.5 1123.35 420.8 1130.1 422.55 1139.15 M377.05 1133.65 Q379.9 1136.5 383.95 1136.5 387.95 1136.5 390.8 1133.65 393.65 1130.8 393.65 1126.8 393.65 1125.3 393.25 1123.95 L393 1123.6 392.6 1123.5 392 1123.5 391.55 1123.65 391.35 1124.1 Q391.2 1126.85 389.2 1128.8 387 1131 383.95 1131 380.85 1131 378.7 1128.8 376.7 1126.85 376.5 1124.1 L376.3 1123.65 375.85 1123.5 375.25 1123.5 374.85 1123.6 374.65 1123.95 Q374.25 1125.3 374.25 1126.8 374.25 1130.85 377.05 1133.65 M364.7 1142.75 Q368.45 1142.75 371.15 1140.05 L372.05 1139 372.25 1138.4 372 1137.75 Q371.8 1137.5 371.45 1137.45 L370.8 1137.55 Q368.95 1138.5 366.7 1138.5 363.1 1138.5 360.5 1135.85 358.4 1133.8 357.95 1131.05 L357.65 1130.5 357.05 1130.2 356.4 1130.4 356 1130.9 Q355.6 1132.2 355.6 1133.65 355.6 1137.4 358.25 1140.05 L358.3 1140.1 Q360.95 1142.75 364.7 1142.75 M403.2 1142.75 Q406.95 1142.75 409.6 1140.1 L409.65 1140.05 Q412.3 1137.4 412.3 1133.65 412.3 1132.2 411.9 1130.9 L411.5 1130.4 410.85 1130.2 410.25 1130.5 409.95 1131.05 Q409.5 1133.8 407.4 1135.85 404.8 1138.5 401.2 1138.5 398.95 1138.5 397.1 1137.55 L396.45 1137.45 395.9 1137.75 Q395.65 1138 395.65 1138.4 395.6 1138.7 395.85 1139 L396.75 1140.05 Q399.45 1142.75 403.2 1142.75"/>
+ <path stroke="none" fill="#C6AD99" d="M403.2 1142.75 Q399.45 1142.75 396.75 1140.05 L395.85 1139 Q395.6 1138.7 395.65 1138.4 395.65 1138 395.9 1137.75 L396.45 1137.45 397.1 1137.55 Q398.95 1138.5 401.2 1138.5 404.8 1138.5 407.4 1135.85 409.5 1133.8 409.95 1131.05 L410.25 1130.5 410.85 1130.2 411.5 1130.4 411.9 1130.9 Q412.3 1132.2 412.3 1133.65 412.3 1137.4 409.65 1140.05 L409.6 1140.1 Q406.95 1142.75 403.2 1142.75 M377.05 1133.65 Q374.25 1130.85 374.25 1126.8 374.25 1125.3 374.65 1123.95 L374.85 1123.6 375.25 1123.5 375.85 1123.5 376.3 1123.65 376.5 1124.1 Q376.7 1126.85 378.7 1128.8 380.85 1131 383.95 1131 387 1131 389.2 1128.8 391.2 1126.85 391.35 1124.1 L391.55 1123.65 392 1123.5 392.6 1123.5 393 1123.6 393.25 1123.95 Q393.65 1125.3 393.65 1126.8 393.65 1130.8 390.8 1133.65 387.95 1136.5 383.95 1136.5 379.9 1136.5 377.05 1133.65 M364.7 1142.75 Q360.95 1142.75 358.3 1140.1 L358.25 1140.05 Q355.6 1137.4 355.6 1133.65 355.6 1132.2 356 1130.9 L356.4 1130.4 357.05 1130.2 357.65 1130.5 357.95 1131.05 Q358.4 1133.8 360.5 1135.85 363.1 1138.5 366.7 1138.5 368.95 1138.5 370.8 1137.55 L371.45 1137.45 Q371.8 1137.5 372 1137.75 L372.25 1138.4 372.05 1139 371.15 1140.05 Q368.45 1142.75 364.7 1142.75"/>
+ <path stroke="none" fill="#EBCEB7" d="M423.2 1088.7 Q423.2 1084.2 420.05 1081 416.8 1077.85 412.35 1077.85 407.85 1077.85 404.65 1081 401.45 1084.2 401.45 1088.7 401.45 1093.25 404.65 1096.4 407.85 1099.6 412.35 1099.6 416.8 1099.6 420.05 1096.4 423.2 1093.25 423.2 1088.7 M438.1 1069.3 Q437.65 1071 435.65 1072.6 431.95 1075.45 434.05 1082.35 434.9 1085.35 434.9 1088.7 434.9 1098.05 428.3 1104.65 421.7 1111.3 412.35 1111.3 403 1111.3 396.4 1104.65 389.75 1098.05 389.75 1088.7 389.75 1085.45 390.55 1082.55 402.75 1067.1 438.1 1069.3 M329.8 1069.3 Q365.15 1067.1 377.35 1082.55 378.15 1085.45 378.15 1088.7 378.15 1098.05 371.5 1104.65 364.9 1111.3 355.55 1111.3 346.2 1111.3 339.6 1104.65 333 1098.05 333 1088.7 333 1085.35 333.85 1082.35 335.95 1075.45 332.25 1072.6 330.25 1071 329.8 1069.3 M344.7 1088.7 Q344.7 1093.25 347.85 1096.4 351.1 1099.6 355.55 1099.6 360.05 1099.6 363.25 1096.4 366.45 1093.25 366.45 1088.7 366.45 1084.2 363.25 1081 360.05 1077.85 355.55 1077.85 351.1 1077.85 347.85 1081 344.7 1084.2 344.7 1088.7"/>
+ <path stroke="none" fill="#FFFFFF" d="M344.7 1088.7 Q344.7 1084.2 347.85 1081 351.1 1077.85 355.55 1077.85 360.05 1077.85 363.25 1081 366.45 1084.2 366.45 1088.7 366.45 1093.25 363.25 1096.4 360.05 1099.6 355.55 1099.6 351.1 1099.6 347.85 1096.4 344.7 1093.25 344.7 1088.7 M423.2 1088.7 Q423.2 1093.25 420.05 1096.4 416.8 1099.6 412.35 1099.6 407.85 1099.6 404.65 1096.4 401.45 1093.25 401.45 1088.7 401.45 1084.2 404.65 1081 407.85 1077.85 412.35 1077.85 416.8 1077.85 420.05 1081 423.2 1084.2 423.2 1088.7 M416.9 1088.7 Q416.9 1086.15 415.05 1084.35 413.25 1082.55 410.7 1082.55 408.15 1082.55 406.25 1084.35 404.45 1086.15 404.45 1088.7 404.45 1091.3 406.25 1093.15 408.15 1094.95 410.7 1094.95 413.25 1094.95 415.05 1093.15 416.9 1091.3 416.9 1088.7 M351 1088.7 Q351 1091.3 352.85 1093.15 354.65 1094.95 357.2 1094.95 359.75 1094.95 361.65 1093.15 363.45 1091.3 363.45 1088.7 363.45 1086.15 361.65 1084.35 359.75 1082.55 357.2 1082.55 354.65 1082.55 352.85 1084.35 351 1086.15 351 1088.7"/>
+ <path stroke="none" fill="#5B5B5B" d="M351 1088.7 Q351 1086.15 352.85 1084.35 354.65 1082.55 357.2 1082.55 359.75 1082.55 361.65 1084.35 363.45 1086.15 363.45 1088.7 363.45 1091.3 361.65 1093.15 359.75 1094.95 357.2 1094.95 354.65 1094.95 352.85 1093.15 351 1091.3 351 1088.7 M416.9 1088.7 Q416.9 1091.3 415.05 1093.15 413.25 1094.95 410.7 1094.95 408.15 1094.95 406.25 1093.15 404.45 1091.3 404.45 1088.7 404.45 1086.15 406.25 1084.35 408.15 1082.55 410.7 1082.55 413.25 1082.55 415.05 1084.35 416.9 1086.15 416.9 1088.7"/>
+ <path stroke="none" fill="#DEC2AD" d="M390.55 1082.55 Q392.05 1077.05 396.4 1072.75 401.9 1067.2 415.05 1064.3 424.25 1062.5 430.7 1063.35 437.15 1064.1 438.05 1067.45 438.3 1068.4 438.1 1069.3 402.75 1067.1 390.55 1082.55 M329.8 1069.3 Q329.6 1068.4 329.85 1067.45 330.75 1064.1 337.2 1063.35 343.65 1062.5 352.85 1064.3 366 1067.2 371.5 1072.75 375.85 1077.05 377.35 1082.55 365.15 1067.1 329.8 1069.3"/>
+ <path stroke="none" fill="#FF9900" d="M371.65 1103.4 Q370.75 1102.7 370.45 1101.85 371.1 1097.65 374.25 1094.4 L375.85 1093.05 Q379.35 1090.45 383.95 1090.45 388.55 1090.45 392.05 1093.05 L393.6 1094.4 Q396.8 1097.65 397.4 1101.85 L396.25 1103.4 Q395.45 1100.35 392.9 1097.95 L391.5 1096.8 Q388.2 1094.5 383.95 1094.5 379.7 1094.5 376.45 1096.8 L374.95 1097.95 Q372.45 1100.35 371.65 1103.4"/>
+ <path stroke="none" fill="#F39100" d="M371.65 1103.4 Q372.45 1100.35 374.95 1097.95 L376.45 1096.8 Q379.7 1094.5 383.95 1094.5 388.2 1094.5 391.5 1096.8 L392.9 1097.95 Q395.45 1100.35 396.25 1103.4 395.25 1104.2 393.6 1104.85 389.6 1106.5 383.95 1106.5 378.25 1106.5 374.25 1104.85 L371.65 1103.4"/>
+ <path stroke="none" fill="#E08600" d="M371.65 1103.4 L374.25 1104.85 Q378.25 1106.5 383.95 1106.5 389.6 1106.5 393.6 1104.85 395.25 1104.2 396.25 1103.4 L397.4 1101.85 397.6 1104.05 397.55 1104.95 Q397.3 1108 393.6 1110.15 389.6 1112.5 383.95 1112.5 378.25 1112.5 374.25 1110.15 370.6 1108 370.3 1104.95 L370.3 1104.05 Q370.3 1102.9 370.45 1101.85 370.75 1102.7 371.65 1103.4"/>
+ <path stroke="none" fill="#6D4526" d="M128 1020.55 Q142.4 1020.55 154.65 1025.75 168.15 1017.7 178.55 1000.35 L178.55 1000.3 Q179.4 998.9 180.8 998.25 L181.2 998.05 184.5 997.95 Q185.6 998.2 186.5 998.95 L186.85 999.25 187 999.4 187.4 999.9 Q188.25 1001 188.45 1002.65 L188.45 1002.95 Q189.15 1024.25 177.6 1042 180.5 1045.05 182.95 1048.35 L183.35 1048.25 183.7 1048.15 Q195.85 1045.5 210.8 1048.55 L210.75 1048.55 213.5 1049.1 213.8 1049.2 Q219.8 1050.95 222.3 1057.55 L222.3 1057.6 Q224.75 1064 222 1071.8 L221.95 1071.8 Q219.25 1079.3 213.4 1083.8 L213.25 1083.9 Q208.15 1087.5 203.3 1087.55 L201.45 1087.55 201 1087.5 198.35 1086.9 196 1086.45 196 1088.55 196 1090.55 196 1090.65 Q195.55 1106.5 188.7 1119.65 183.95 1128.8 176.1 1136.6 L173.7 1138.85 169.6 1142.4 Q160.1 1149.9 149 1153.45 152.55 1160.25 150.7 1164.25 L150.55 1164.7 Q148.6 1170.8 140.45 1169.2 L140.4 1169.15 139.6 1169 139.4 1170.7 Q138.9 1173.45 137.3 1174.65 133.7 1179.1 128.2 1172.95 L128.1 1172.85 128 1172.7 127.85 1172.85 127.8 1172.9 Q122.4 1179.05 118.75 1174.7 L118.6 1174.6 Q117.15 1173.5 116.6 1170.85 L116.6 1170.8 116.4 1169 115.65 1169.15 115.6 1169.2 Q107.6 1170.75 105.55 1164.95 105.15 1164.35 105.05 1163.75 103.7 1159.8 107 1153.4 95.9 1149.85 86.45 1142.4 L86.4 1142.4 82.3 1138.85 79.95 1136.6 Q60.75 1117.5 60.05 1090.75 L60 1088.55 60.05 1086.5 57.8 1086.95 57.75 1086.95 55 1087.5 54.95 1087.5 52.7 1087.6 Q47.85 1087.5 42.75 1083.9 L42.65 1083.8 Q36.75 1079.3 34.05 1071.8 31.25 1064 33.7 1057.6 L33.7 1057.55 Q36.2 1050.95 42.25 1049.25 L42.35 1049.2 45.4 1048.55 45.2 1048.6 Q60.15 1045.55 72.35 1048.2 L72.4 1048.2 73.05 1048.35 Q75.5 1045.1 78.45 1042 66.85 1024.25 67.55 1002.95 L67.6 1002.65 Q67.75 1001 68.6 999.9 L69.05 999.4 69.2 999.25 69.5 998.95 Q70.4 998.2 71.5 997.95 L74.8 998.05 75.2 998.25 Q76.6 998.9 77.45 1000.3 L77.5 1000.35 Q87.85 1017.7 101.4 1025.75 113.6 1020.55 128 1020.55"/>
+ <path stroke="none" fill="#704E35" d="M146.95 1162.9 Q146.45 1161.1 145.25 1158.9 142.6 1153.65 137.55 1149.4 127.6 1141.75 118.45 1149.4 113.4 1153.65 110.7 1158.9 109.5 1161.1 109.05 1162.95 108 1160 110.7 1154.9 113.4 1149.65 118.45 1145.4 127.6 1137.75 137.55 1145.4 142.6 1149.65 145.25 1154.9 148 1160 146.95 1162.9"/>
+ <path stroke="none" fill="#5F422D" d="M146.95 1162.9 L146.85 1163.05 Q145.7 1166.15 141.2 1165.25 138.15 1164.6 134.8 1162.35 135.35 1164.55 135.5 1166.6 L135.55 1166.85 Q135.7 1168.75 135.45 1170 135.25 1171.15 134.65 1171.65 133.4 1172.75 131.15 1170.25 129.45 1168.25 128 1164.95 126.5 1168.25 124.8 1170.25 122.6 1172.75 121.3 1171.65 120.75 1171.15 120.5 1170 120.25 1168.75 120.45 1166.9 L120.45 1166.6 Q120.65 1164.55 121.2 1162.35 117.85 1164.6 114.8 1165.25 110.3 1166.15 109.1 1163.05 L109.05 1162.95 Q109.5 1161.1 110.7 1158.9 113.4 1153.65 118.45 1149.4 127.6 1141.75 137.55 1149.4 142.6 1153.65 145.25 1158.9 146.45 1161.1 146.95 1162.9"/>
+ <path stroke="none" fill="#4F3725" d="M64.5 1081.1 Q62.95 1080.6 61.25 1079.4 57.6 1076.6 55.95 1072.05 54.3 1067.55 55.65 1063.7 57 1060.4 60.05 1059.55 L61.95 1059.1 Q72 1057.05 80.3 1058.8 L81.65 1059.25 85 1060.3 85.3 1060.9 Q86.5 1064.3 84.75 1067.65 83.2 1070.7 79.25 1073.75 73.75 1078 65.95 1080.65 L64.5 1081.1 M191.5 1081.05 L190.05 1080.65 Q182.25 1078 176.75 1073.7 172.8 1070.7 171.25 1067.65 169.8 1064.8 170.35 1062 L170.7 1060.85 171 1060.25 172.65 1059.7 174.35 1059.2 175.7 1058.8 Q184 1057 194.05 1059.1 195.1 1059.15 195.95 1059.55 199 1060.4 200.35 1063.7 201.7 1067.5 200.05 1072 198.4 1076.55 194.75 1079.4 193.05 1080.55 191.5 1081.05"/>
+ <path stroke="none" fill="#5F422D" d="M191.5 1081.05 Q193.05 1080.55 194.75 1079.4 198.4 1076.55 200.05 1072 201.7 1067.5 200.35 1063.7 199 1060.4 195.95 1059.55 195.1 1059.15 194.05 1059.1 184 1057 175.7 1058.8 L174.35 1059.2 172.65 1059.7 171 1060.25 171.25 1059.75 Q173.15 1056.2 178.3 1054 180.55 1053.1 183.3 1052.4 193.65 1050.75 206 1053.2 L208.8 1053.85 Q212.95 1055.05 214.75 1059.7 216.6 1065 214.4 1071.2 212.15 1077.6 207 1081.4 205.05 1082.95 203 1083.55 L201.8 1083.55 199 1082.95 196 1082.35 191.5 1081.05 M85 1060.3 L81.65 1059.25 80.3 1058.8 Q72 1057.05 61.95 1059.1 L60.05 1059.55 Q57 1060.4 55.65 1063.7 54.3 1067.55 55.95 1072.05 57.6 1076.6 61.25 1079.4 62.95 1080.6 64.5 1081.1 L60 1082.4 57 1083 54.2 1083.55 53 1083.6 Q50.95 1082.95 49 1081.4 43.9 1077.65 41.6 1071.2 39.4 1065 41.25 1059.75 43.05 1055.1 47.2 1053.85 L50 1053.2 Q62.35 1050.75 72.7 1052.4 82 1054.75 84.75 1059.75 L85 1060.3"/>
+ <path stroke="none" fill="#704E35" d="M72.7 1052.4 Q62.35 1050.75 50 1053.2 L47.2 1053.85 Q43.05 1055.1 41.25 1059.75 39.4 1065 41.6 1071.2 43.9 1077.65 49 1081.4 50.95 1082.95 53 1083.6 49.15 1083.5 45.05 1080.6 40.1 1076.8 37.8 1070.45 35.55 1064.15 37.45 1058.95 39.2 1054.3 43.4 1053.05 L46 1052.5 Q60.05 1049.65 71.5 1052.1 L72.7 1052.4 M183.3 1052.4 L184.5 1052.05 Q195.95 1049.6 210 1052.45 L212.6 1053 Q216.8 1054.3 218.55 1058.95 220.45 1064.15 218.2 1070.45 215.9 1076.8 210.95 1080.6 206.85 1083.5 203 1083.55 205.05 1082.95 207 1081.4 212.15 1077.6 214.4 1071.2 216.6 1065 214.75 1059.7 212.95 1055.05 208.8 1053.85 L206 1053.2 Q193.65 1050.75 183.3 1052.4"/>
+ <path stroke="none" fill="#BD7841" d="M192 1090.55 Q191.3 1065.35 173.25 1047.25 158.15 1032.2 138 1029.25 L128 1028.55 118 1029.25 Q97.85 1032.2 82.75 1047.25 64.7 1065.35 64.05 1090.55 L64 1088.55 Q64 1072.2 71.15 1058.75 75.3 1051 81.85 1044.2 L82.75 1043.25 Q85.3 1040.7 87.95 1038.55 L89.65 1037.2 Q106.2 1024.55 128 1024.55 149.85 1024.55 166.4 1037.25 L168.1 1038.6 173.25 1043.25 174.2 1044.25 Q180.7 1051 184.85 1058.75 192 1072.2 192 1088.55 L192 1090.55"/>
+ <path stroke="none" fill="#A16639" d="M192 1090.55 Q191.6 1105.45 185.15 1117.8 180.65 1126.4 173.25 1133.75 L171 1135.9 167.1 1139.25 Q150.9 1125.5 128 1125.5 105.15 1125.5 88.9 1139.25 L85 1135.9 82.75 1133.75 Q64.7 1115.75 64.05 1090.55 64.7 1065.35 82.75 1047.25 97.85 1032.2 118 1029.25 L128 1028.55 138 1029.25 Q158.15 1032.2 173.25 1047.25 191.3 1065.35 192 1090.55 M145.5 1060.35 Q145.5 1050 140.35 1042.75 135.25 1035.5 128 1035.5 120.75 1035.5 115.6 1042.75 110.5 1050 110.5 1060.35 L110.55 1062.05 Q110.9 1083.1 115.6 1098.3 120.75 1115 128 1115 135.25 1115 140.35 1098.3 145.1 1083.1 145.5 1062.05 L145.5 1060.35"/>
+ <path stroke="none" fill="#B6733F" d="M145.5 1060.35 L145.5 1062.05 Q145.1 1083.1 140.35 1098.3 135.25 1115 128 1115 120.75 1115 115.6 1098.3 110.9 1083.1 110.55 1062.05 L110.5 1060.35 Q110.5 1050 115.6 1042.75 120.75 1035.5 128 1035.5 135.25 1035.5 140.35 1042.75 145.5 1050 145.5 1060.35"/>
+ <path stroke="none" fill="#955E34" d="M88.9 1139.25 Q105.15 1125.5 128 1125.5 150.9 1125.5 167.1 1139.25 150.3 1152.55 128 1152.55 105.7 1152.55 88.9 1139.25"/>
+ <path stroke="none" fill="#464646" d="M123.5 1131.8 L123.2 1131.7 123.25 1131.7 Q120.35 1130.65 118.05 1128.35 115.7 1126.05 114.75 1123.15 114.6 1122.75 114.8 1122.4 L115.3 1121.9 116.05 1121.85 119.85 1122.95 Q128.4 1124.85 136.2 1122.95 L136.25 1122.95 140.05 1121.9 140.75 1121.95 141.3 1122.45 141.3 1123.2 Q140.25 1126.05 137.95 1128.35 135.65 1130.65 132.8 1131.7 L132.85 1131.7 132.5 1131.85 129.8 1132.5 128.85 1132.6 126.7 1132.55 125.95 1132.45 123.5 1131.8"/>
+ <path stroke="none" fill="#383838" d="M123.5 1131.8 L125.95 1132.45 126.7 1132.55 128.85 1132.6 129.8 1132.5 132.5 1131.85 133.3 1132.75 Q134.25 1133.7 135.35 1134.25 136.75 1134.9 138.4 1134.9 141.4 1134.9 143.55 1132.75 L144.8 1131.1 145.3 1130.65 146 1130.7 150.7 1133.15 151.15 1133.65 151.1 1134.3 149.6 1136.6 148.55 1137.75 Q144.3 1141.95 138.4 1141.95 132.5 1141.95 128.3 1137.75 L128 1137.45 127.7 1137.75 Q123.45 1141.95 117.55 1141.95 111.6 1141.95 107.45 1137.75 L106.4 1136.6 104.9 1134.4 Q104.7 1134.05 104.85 1133.75 104.9 1133.4 105.25 1133.2 L109.85 1130.65 110.5 1130.55 111.05 1131 112.4 1132.75 Q114.55 1134.9 117.55 1134.9 119.2 1134.9 120.65 1134.25 L122.7 1132.75 123.5 1131.8"/>
+ <path stroke="none" fill="#5B5B5B" d="M89.3 1080.35 Q89.3 1077.9 91 1076.25 92.7 1074.55 95.1 1074.55 97.5 1074.55 99.25 1076.25 100.95 1077.9 100.95 1080.35 100.95 1082.75 99.25 1084.4 97.5 1086.15 95.1 1086.15 92.7 1086.15 91 1084.4 89.3 1082.75 89.3 1080.35 M166.7 1080.35 Q166.7 1082.75 165 1084.4 163.3 1086.15 160.9 1086.15 158.5 1086.15 156.75 1084.4 155.05 1082.75 155.05 1080.35 155.05 1077.9 156.75 1076.25 158.5 1074.55 160.9 1074.55 163.3 1074.55 165 1076.25 166.7 1077.9 166.7 1080.35"/>
+ <path stroke="none" fill="#FFFFFF" d="M166.7 1080.35 Q166.7 1077.9 165 1076.25 163.3 1074.55 160.9 1074.55 158.5 1074.55 156.75 1076.25 155.05 1077.9 155.05 1080.35 155.05 1082.75 156.75 1084.4 158.5 1086.15 160.9 1086.15 163.3 1086.15 165 1084.4 166.7 1082.75 166.7 1080.35 M84.8 1080.2 Q84.8 1076.35 87.5 1073.65 90.25 1070.95 94.1 1070.95 97.9 1070.95 100.65 1073.65 103.35 1076.35 103.35 1080.2 103.35 1084.05 100.65 1086.65 97.9 1089.45 94.1 1089.45 90.25 1089.45 87.5 1086.65 84.8 1084.05 84.8 1080.2 M89.3 1080.35 Q89.3 1082.75 91 1084.4 92.7 1086.15 95.1 1086.15 97.5 1086.15 99.25 1084.4 100.95 1082.75 100.95 1080.35 100.95 1077.9 99.25 1076.25 97.5 1074.55 95.1 1074.55 92.7 1074.55 91 1076.25 89.3 1077.9 89.3 1080.35 M171.2 1080.2 Q171.2 1084.05 168.5 1086.65 165.75 1089.45 161.9 1089.45 158.1 1089.45 155.35 1086.65 152.65 1084.05 152.65 1080.2 152.65 1076.35 155.35 1073.65 158.1 1070.95 161.9 1070.95 165.75 1070.95 168.5 1073.65 171.2 1076.35 171.2 1080.2"/>
+ <path stroke="none" fill="#8E5A32" d="M84.8 1080.2 Q84.8 1084.05 87.5 1086.65 90.25 1089.45 94.1 1089.45 97.9 1089.45 100.65 1086.65 103.35 1084.05 103.35 1080.2 103.35 1076.35 100.65 1073.65 97.9 1070.95 94.1 1070.95 90.25 1070.95 87.5 1073.65 84.8 1076.35 84.8 1080.2 M79.15 1076.75 L79.15 1076.7 Q80.8 1070.7 86.1 1067.65 91.5 1064.55 97.5 1066.15 103.45 1067.7 106.6 1073.1 109.7 1078.45 108.1 1084.45 L108.1 1084.5 Q106.15 1091.7 100.6 1095.55 94.95 1099.55 89 1098 83 1096.4 80.1 1090.1 77.25 1083.95 79.15 1076.75 M171.2 1080.2 Q171.2 1076.35 168.5 1073.65 165.75 1070.95 161.9 1070.95 158.1 1070.95 155.35 1073.65 152.65 1076.35 152.65 1080.2 152.65 1084.05 155.35 1086.65 158.1 1089.45 161.9 1089.45 165.75 1089.45 168.5 1086.65 171.2 1084.05 171.2 1080.2 M176.85 1076.75 Q178.75 1083.95 175.9 1090.1 173 1096.4 167 1098 161.05 1099.55 155.4 1095.55 149.85 1091.7 147.9 1084.5 L147.9 1084.45 Q146.3 1078.45 149.4 1073.1 152.55 1067.7 158.5 1066.15 164.5 1064.55 169.9 1067.65 175.2 1070.7 176.85 1076.7 L176.85 1076.75"/>
+ <path stroke="none" fill="#FFDFC6" d="M108.05 1045.1 Q106.65 1041.45 100.8 1037.3 84.3 1025.35 72.05 1002.05 L72 1002.05 Q72.25 1001.85 72.55 1001.8 73 1001.65 73.4 1001.8 L74.05 1002.4 Q86.3 1022.9 102.8 1031.1 112.95 1036 109.75 1042.3 L109.75 1042.35 108.05 1045.1 M147.95 1045.1 L146.25 1042.35 146.25 1042.3 Q143.05 1036 153.2 1031.1 169.7 1022.9 181.95 1002.4 L182.6 1001.8 Q183 1001.65 183.45 1001.8 L184 1002.05 183.95 1002.05 Q171.7 1025.35 155.2 1037.3 149.35 1041.45 147.95 1045.1"/>
+ <path stroke="none" fill="#EBCEB7" d="M147.95 1045.1 Q149.35 1041.45 155.2 1037.3 171.7 1025.35 183.95 1002.05 L184 1002.05 184.15 1002.2 184.45 1003.05 Q185.25 1027.5 168.9 1046.95 L168.95 1046.95 Q163.05 1054.55 154.25 1050.25 150.4 1048.35 147.95 1045.1 M108.05 1045.1 Q105.6 1048.35 101.75 1050.25 92.95 1054.55 87.05 1046.95 L87.1 1046.95 Q70.75 1027.5 71.55 1003.05 L71.85 1002.2 72 1002.05 72.05 1002.05 Q84.3 1025.35 100.8 1037.3 106.65 1041.45 108.05 1045.1"/>
+ </g>
+</svg>
\ No newline at end of file
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cqbacy5yg5c67"
+path="res://.godot/imported/roundOutline.svg-623ac2a58261e917bc81bf2852cf79e7.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/Vector/roundOutline.svg"
+dest_files=["res://.godot/imported/roundOutline.svg-623ac2a58261e917bc81bf2852cf79e7.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
+svg/scale=1.0
+editor/scale_with_editor_scale=false
+editor/convert_colors_with_editor_theme=false
--- /dev/null
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <defs/>
+ <g>
+ <path stroke="none" fill="#31DE7A" d="M192 130 Q191.3 104.75 173.3 86.75 168.9 82.35 164.1 79 148.35 68 128 68 107.7 68 91.9 79.05 87.1 82.4 82.75 86.75 64.7 104.75 64.05 130 L64 128 Q64 101.45 82.75 82.75 87 78.5 91.6 75.25 107.5 64 128 64 148.55 64 164.4 75.2 169.05 78.5 173.3 82.75 192 101.45 192 128 L192 130"/>
+ <path stroke="none" fill="#2ECC71" d="M192 130 Q191.55 145.2 184.85 157.85 L182.85 159.35 182.4 159.7 181.55 160.3 162.1 170.45 160.7 170.95 Q155.25 172.8 149.5 174 L141.25 175.3 136.7 175.75 136.55 175.75 135.55 175.85 128.3 176.05 128 176.05 126.65 176.05 121.45 175.9 119.75 175.8 114.75 175.3 112.7 175.05 106.6 174 Q100.75 172.8 95.35 170.95 84.9 167.35 75.9 161.25 L73.2 159.35 71.15 157.8 Q64.45 145.2 64.05 130 64.7 104.75 82.75 86.75 87.1 82.4 91.9 79.05 93.6 95.05 102.2 107.05 112.9 122 128 122 143.1 122 153.8 107.05 162.4 95.05 164.1 79 168.9 82.35 173.3 86.75 191.3 104.75 192 130 M120.55 153.4 Q118.95 151.8 116.7 151.8 114.55 151.8 112.95 153.3 L112.8 153.45 Q110.05 156.2 109.15 159.35 108.85 160.4 108.85 161.25 108.85 163 109.9 164.05 110.55 164.7 111.5 164.95 L114.6 164.75 Q116.95 164.1 119.15 162.35 L120.4 161.25 120.5 161.15 120.65 161 Q122.15 159.45 122.15 157.25 122.15 155 120.55 153.4 M146.1 164.05 Q147.15 163 147.15 161.25 L146.85 159.35 Q146 156.2 143.2 153.45 L143.05 153.3 Q141.5 151.8 139.3 151.8 137.05 151.8 135.45 153.4 133.85 155 133.85 157.25 133.85 159.45 135.35 161 L135.5 161.15 135.6 161.25 136.9 162.35 Q139.05 164.1 141.4 164.75 L144.55 164.95 Q145.45 164.7 146.1 164.05"/>
+ <path stroke="none" fill="#2ABD68" d="M160.7 170.95 L162.1 170.45 181.55 160.3 182.4 159.7 182.85 159.35 184.85 157.85 182.9 161.25 Q178.95 167.6 173.3 173.25 167.15 179.4 160.15 183.55 L157.9 184.85 157.4 185.1 148.4 188.9 145.25 189.85 141.25 190.75 Q134.85 192 128 192 121.15 192 114.8 190.75 L128 184.1 141.25 190.75 141.25 175.3 149.5 174 153.15 177.1 Q155.5 179.05 157.85 175.35 L160.7 170.95 M114.75 190.75 L113.55 190.5 111.9 190.1 110.75 189.8 109.45 189.45 100.4 185.95 98.7 185.1 98 184.75 95.85 183.5 Q88.9 179.4 82.75 173.25 77.1 167.6 73.15 161.25 L71.15 157.8 73.2 159.35 75.9 161.25 Q84.9 167.35 95.35 170.95 L98.15 175.35 Q100.5 179.05 102.85 177.1 L106.6 174 112.7 175.05 114.75 175.3 114.75 190.75 M119.75 175.8 L121.45 175.9 126.65 176.05 128 176.05 128.3 176.05 135.55 175.85 136.55 175.75 128 176.25 119.75 175.8"/>
+ <path stroke="none" fill="#28BD68" d="M91.9 79.05 Q107.7 68 128 68 148.35 68 164.1 79 162.4 95.05 153.8 107.05 143.1 122 128 122 112.9 122 102.2 107.05 93.6 95.05 91.9 79.05 M152 93.5 L152.05 93.45 Q152.35 92.45 152.05 91.55 L152.05 91.5 Q151.6 90.35 150.6 89.95 L150.65 90 Q129.05 78.95 105.45 89.95 L105.5 89.95 Q104.35 90.4 104 91.55 103.65 92.45 104 93.45 104.35 94.45 105.45 95 L105.45 95.05 Q129.05 105.95 150.65 95 151.6 94.5 152 93.5 M113.45 112.55 L113.4 112.55 Q128.65 119.6 142.65 112.55 L142.7 112.5 Q143.55 112.1 143.85 111.2 L143.8 111.3 Q144.1 110.45 143.85 109.75 143.55 108.8 142.7 108.4 L142.65 108.4 Q128.7 101.25 113.5 108.35 112.45 108.75 112.2 109.75 111.9 110.45 112.25 111.3 112.5 112.1 113.45 112.55"/>
+ <path stroke="none" fill="#31DB79" d="M113.45 112.55 Q112.5 112.1 112.25 111.3 111.9 110.45 112.2 109.75 112.45 108.75 113.5 108.35 128.7 101.25 142.65 108.4 L142.7 108.4 Q143.55 108.8 143.85 109.75 144.1 110.45 143.8 111.3 L143.85 111.2 Q143.55 112.1 142.7 112.5 L142.65 112.55 Q128.65 119.6 113.4 112.55 L113.45 112.55 M152 93.5 Q151.6 94.5 150.65 95 129.05 105.95 105.45 95.05 L105.45 95 Q104.35 94.45 104 93.45 103.65 92.45 104 91.55 104.35 90.4 105.5 89.95 L105.45 89.95 Q129.05 78.95 150.65 90 L150.6 89.95 Q151.6 90.35 152.05 91.5 L152.05 91.55 Q152.35 92.45 152.05 93.45 L152 93.5"/>
+ <path stroke="none" fill="#24A35A" d="M120.55 153.4 Q122.15 155 122.15 157.25 122.15 159.45 120.65 161 L120.5 161.15 120.4 161.25 119.15 162.35 Q116.95 164.1 114.6 164.75 L111.5 164.95 Q110.55 164.7 109.9 164.05 108.85 163 108.85 161.25 108.85 160.4 109.15 159.35 110.05 156.2 112.8 153.45 L112.95 153.3 Q114.55 151.8 116.7 151.8 118.95 151.8 120.55 153.4 M146.1 164.05 Q145.45 164.7 144.55 164.95 L141.4 164.75 Q139.05 164.1 136.9 162.35 L135.6 161.25 135.5 161.15 135.35 161 Q133.85 159.45 133.85 157.25 133.85 155 135.45 153.4 137.05 151.8 139.3 151.8 141.5 151.8 143.05 153.3 L143.2 153.45 Q146 156.2 146.85 159.35 L147.15 161.25 Q147.15 163 146.1 164.05"/>
+ <path stroke="none" fill="#E74C3C" d="M114.8 190.75 L114.75 190.75 114.75 175.3 119.75 175.8 128 176.25 128 184.1 114.8 190.75"/>
+ <path stroke="none" fill="#FFFFFF" d="M95.35 170.95 Q100.75 172.8 106.6 174 L102.85 177.1 Q100.5 179.05 98.15 175.35 L95.35 170.95 M149.5 174 Q155.25 172.8 160.7 170.95 L157.85 175.35 Q155.5 179.05 153.15 177.1 L149.5 174"/>
+ <path stroke="none" fill="#D24436" d="M136.55 175.75 L136.7 175.75 141.25 175.3 141.25 190.75 128 184.1 128 176.25 136.55 175.75"/>
+ <path stroke="none" fill="#FFFFFF" d="M166.85 143.7 Q166.85 140.05 165.9 137.6 164.9 135.1 163.5 135.05 L163.4 135.05 Q162.05 135.1 161.05 137.6 160.05 140.05 160.05 143.7 L160.05 144.55 Q160.15 147.5 161.05 149.65 162.05 152.1 163.4 152.15 L163.5 152.15 Q164.9 152.1 165.9 149.65 166.75 147.5 166.85 144.55 L166.85 143.7 M179.65 143.8 Q179.65 149.5 175.6 153.4 171.55 157.5 165.85 157.5 160.25 157.5 156.1 153.4 152.15 149.5 152.15 143.8 152.15 138.05 156.1 134.05 160.25 130 165.85 130 171.55 130 175.6 134.05 179.65 138.05 179.65 143.8 M89.95 143.7 L89.95 144.55 Q90.05 147.5 90.9 149.65 91.9 152.1 93.3 152.15 L93.4 152.15 Q94.7 152.1 95.75 149.65 96.6 147.5 96.7 144.55 L96.75 143.7 Q96.75 140.05 95.75 137.6 94.7 135.1 93.4 135.05 L93.3 135.05 Q91.9 135.1 90.9 137.6 89.95 140.05 89.95 143.7 M77.15 143.8 Q77.15 138.05 81.2 134.05 85.25 130 90.95 130 96.55 130 100.7 134.05 104.65 138.05 104.65 143.8 104.65 149.5 100.7 153.4 96.55 157.5 90.95 157.5 85.25 157.5 81.2 153.4 77.15 149.5 77.15 143.8"/>
+ <path stroke="none" fill="#5B5B5B" d="M166.85 143.7 L166.85 144.55 Q166.75 147.5 165.9 149.65 164.9 152.1 163.5 152.15 L163.4 152.15 Q162.05 152.1 161.05 149.65 160.15 147.5 160.05 144.55 L160.05 143.7 Q160.05 140.05 161.05 137.6 162.05 135.1 163.4 135.05 L163.5 135.05 Q164.9 135.1 165.9 137.6 166.85 140.05 166.85 143.7 M89.95 143.7 Q89.95 140.05 90.9 137.6 91.9 135.1 93.3 135.05 L93.4 135.05 Q94.7 135.1 95.75 137.6 96.75 140.05 96.75 143.7 L96.7 144.55 Q96.6 147.5 95.75 149.65 94.7 152.1 93.4 152.15 L93.3 152.15 Q91.9 152.1 90.9 149.65 90.05 147.5 89.95 144.55 L89.95 143.7"/>
+ <path stroke="none" fill="#EEBE00" d="M347.85 79.55 Q363.65 68.5 383.95 68.5 404.3 68.5 420.05 79.5 418.35 95.55 409.75 107.55 399.05 122.5 383.95 122.5 368.85 122.5 358.15 107.55 349.55 95.55 347.85 79.55 M371.4 110.8 Q371.6 111.6 372.2 112.25 372.85 112.75 373.7 112.9 L379.9 113.55 Q380.75 113.65 381.5 113.2 382.25 112.75 382.6 111.95 L385.15 106.25 Q385.5 105.45 385.35 104.65 385.15 103.75 384.55 103.2 L379.9 99 Q379.25 98.4 378.4 98.35 377.55 98.25 376.8 98.65 L371.35 101.8 Q370.6 102.2 370.25 103.05 369.9 103.8 370.1 104.7 L371.4 110.8 M380 87.15 Q380.45 86.45 380.45 85.6 380.45 84.75 380 84.05 L375.05 77.25 373.75 76.3 Q372.9 76 372.1 76.3 L364.15 78.85 Q363.3 79.15 362.8 79.85 362.3 80.5 362.3 81.35 L362.3 89.75 Q362.3 90.65 362.8 91.35 363.3 92 364.15 92.25 L372.1 94.85 Q372.9 95.1 373.75 94.85 L375.05 93.95 380 87.15 M392.65 103.1 Q393.35 103.6 394.2 103.6 395.1 103.6 395.8 103.1 L405.5 96.05 Q406.15 95.5 406.4 94.7 406.65 93.9 406.4 93.1 L402.7 81.65 Q402.45 80.8 401.8 80.3 401.1 79.8 400.2 79.8 L388.15 79.8 Q387.25 79.8 386.6 80.3 385.9 80.8 385.65 81.65 L381.95 93.1 Q381.7 93.9 381.95 94.7 382.2 95.5 382.9 96.05 L392.65 103.1"/>
+ <path stroke="none" fill="#FFCC00" d="M392.65 103.1 L382.9 96.05 Q382.2 95.5 381.95 94.7 381.7 93.9 381.95 93.1 L385.65 81.65 Q385.9 80.8 386.6 80.3 387.25 79.8 388.15 79.8 L400.2 79.8 Q401.1 79.8 401.8 80.3 402.45 80.8 402.7 81.65 L406.4 93.1 Q406.65 93.9 406.4 94.7 406.15 95.5 405.5 96.05 L395.8 103.1 Q395.1 103.6 394.2 103.6 393.35 103.6 392.65 103.1 M447.95 130.5 Q447.5 145.7 440.8 158.35 438.85 162.05 436.35 165.5 L436.3 165.5 Q433.15 169.8 429.2 173.75 L424.55 178.05 Q420.15 176.45 420.2 171.75 419.1 160.5 409.75 152.25 399.25 143 384.4 143 369.55 143 359 152.25 349.7 160.5 348.65 171.75 347.3 176.55 343.45 178.15 L338.65 173.75 Q331.05 166.15 326.55 157.3 L321 140.6 321 140.4 320.8 139.3 320.75 139.05 320.7 138.55 320.6 138 320.45 136.75 320.45 136.55 320.35 135.95 320.35 135.7 320.3 135.5 320.3 135.25 320.25 134.95 320.2 134.3 320.2 134.05 320.15 133.75 320 130.5 Q320.65 105.25 338.7 87.25 343.05 82.9 347.85 79.55 349.55 95.55 358.15 107.55 368.85 122.5 383.95 122.5 399.05 122.5 409.75 107.55 418.35 95.55 420.05 79.5 424.85 82.85 429.25 87.25 447.25 105.25 447.95 130.5 M380 87.15 L375.05 93.95 373.75 94.85 Q372.9 95.1 372.1 94.85 L364.15 92.25 Q363.3 92 362.8 91.35 362.3 90.65 362.3 89.75 L362.3 81.35 Q362.3 80.5 362.8 79.85 363.3 79.15 364.15 78.85 L372.1 76.3 Q372.9 76 373.75 76.3 L375.05 77.25 380 84.05 Q380.45 84.75 380.45 85.6 380.45 86.45 380 87.15 M371.4 110.8 L370.1 104.7 Q369.9 103.8 370.25 103.05 370.6 102.2 371.35 101.8 L376.8 98.65 Q377.55 98.25 378.4 98.35 379.25 98.4 379.9 99 L384.55 103.2 Q385.15 103.75 385.35 104.65 385.5 105.45 385.15 106.25 L382.6 111.95 Q382.25 112.75 381.5 113.2 380.75 113.65 379.9 113.55 L373.7 112.9 Q372.85 112.75 372.2 112.25 371.6 111.6 371.4 110.8"/>
+ <path stroke="none" fill="#FFD738" d="M320 130.5 L319.95 128.5 Q319.95 101.95 338.7 83.25 342.95 79 347.55 75.75 363.45 64.5 383.95 64.5 404.5 64.5 420.35 75.7 425 79 429.25 83.25 447.95 101.95 447.95 128.5 L447.95 130.5 Q447.25 105.25 429.25 87.25 424.85 82.85 420.05 79.5 404.3 68.5 383.95 68.5 363.65 68.5 347.85 79.55 343.05 82.9 338.7 87.25 320.65 105.25 320 130.5"/>
+ <path stroke="none" fill="#D2A800" d="M424.55 178.05 L420.35 181.25 Q404.45 192.5 383.95 192.5 363.4 192.5 347.55 181.3 L343.45 178.15 Q347.3 176.55 348.65 171.75 349.7 160.5 359 152.25 369.55 143 384.4 143 399.25 143 409.75 152.25 419.1 160.5 420.2 171.75 420.15 176.45 424.55 178.05 M402.9 156.5 Q401.4 155 398.45 155.85 395.5 156.65 392.85 159.3 L392.7 159.45 Q391.3 160.9 391.3 163 391.3 165.15 392.8 166.65 394.3 168.15 396.45 168.15 398.5 168.15 400 166.75 L400.15 166.6 Q402.8 163.95 403.6 161 404.45 158.05 402.9 156.5 M368.8 166.75 Q370.3 168.15 372.35 168.15 374.5 168.15 376 166.65 377.5 165.15 377.5 163 377.5 160.9 376.1 159.45 L375.95 159.3 Q373.3 156.65 370.35 155.85 367.4 155 365.9 156.5 364.35 158.05 365.2 161 366 163.95 368.65 166.6 L368.8 166.75"/>
+ <path stroke="none" fill="#A38200" d="M402.9 156.5 Q404.45 158.05 403.6 161 402.8 163.95 400.15 166.6 L400 166.75 Q398.5 168.15 396.45 168.15 394.3 168.15 392.8 166.65 391.3 165.15 391.3 163 391.3 160.9 392.7 159.45 L392.85 159.3 Q395.5 156.65 398.45 155.85 401.4 155 402.9 156.5 M368.8 166.75 L368.65 166.6 Q366 163.95 365.2 161 364.35 158.05 365.9 156.5 367.4 155 370.35 155.85 373.3 156.65 375.95 159.3 L376.1 159.45 Q377.5 160.9 377.5 163 377.5 165.15 376 166.65 374.5 168.15 372.35 168.15 370.3 168.15 368.8 166.75"/>
+ <path stroke="none" fill="#5B5B5B" d="M339.6 135.25 Q339.6 131.65 342.15 129.1 344.65 126.6 348.3 126.6 351.85 126.6 354.4 129.1 356.95 131.65 356.95 135.25 356.95 138.85 354.4 141.3 351.85 143.85 348.3 143.85 344.65 143.85 342.15 141.3 339.6 138.85 339.6 135.25 M427.15 135.25 Q427.15 138.85 424.65 141.3 422.15 143.85 418.5 143.85 414.95 143.85 412.35 141.3 409.85 138.85 409.85 135.25 409.85 131.65 412.35 129.1 414.95 126.6 418.5 126.6 422.15 126.6 424.65 129.1 427.15 131.65 427.15 135.25"/>
+ <path stroke="none" fill="#FFFFFF" d="M427.15 135.25 Q427.15 131.65 424.65 129.1 422.15 126.6 418.5 126.6 414.95 126.6 412.35 129.1 409.85 131.65 409.85 135.25 409.85 138.85 412.35 141.3 414.95 143.85 418.5 143.85 422.15 143.85 424.65 141.3 427.15 138.85 427.15 135.25 M339.6 135.25 Q339.6 138.85 342.15 141.3 344.65 143.85 348.3 143.85 351.85 143.85 354.4 141.3 356.95 138.85 356.95 135.25 356.95 131.65 354.4 129.1 351.85 126.6 348.3 126.6 344.65 126.6 342.15 129.1 339.6 131.65 339.6 135.25 M334.9 135.05 Q334.9 129.85 338.55 126.2 342.2 122.55 347.4 122.55 352.5 122.55 356.2 126.2 359.85 129.85 359.85 135.05 359.85 140.2 356.2 143.8 352.5 147.5 347.4 147.5 342.2 147.5 338.55 143.8 334.9 140.2 334.9 135.05 M431.9 135.05 Q431.9 140.2 428.25 143.8 424.6 147.5 419.4 147.5 414.3 147.5 410.6 143.8 406.95 140.2 406.95 135.05 406.95 129.85 410.6 126.2 414.3 122.55 419.4 122.55 424.6 122.55 428.25 126.2 431.9 129.85 431.9 135.05"/>
+ <path stroke="none" fill="#B4723F" d="M85 274.6 L82.75 276.7 Q64.55 294.9 64 320.5 L64 320 Q64 293.45 82.75 274.7 L83.8 273.7 Q102.2 256 128 256 153.85 256 172.25 273.7 L173.25 274.7 Q176.95 278.4 179.95 282.45 192 298.7 192 320 L192 320.5 Q191.55 300.15 179.95 284.45 176.95 280.4 173.25 276.7 L171.05 274.6 Q153 258 128 258 103.05 258 85 274.6"/>
+ <path stroke="none" fill="#A16639" d="M85 274.6 Q87.75 276.5 91.4 278.25 106.55 285.5 128 285.5 149.45 285.5 164.6 278.25 168.25 276.5 171.05 274.6 L173.25 276.7 Q176.95 280.4 179.95 284.45 191.55 300.15 192 320.5 L192 321 192 322 Q191.45 342 179.95 357.5 L177.85 360.15 176.45 361.8 173.25 365.2 Q164.05 374.45 152.95 379.15 141.45 384 128 384 119.45 384 111.75 382.05 107.3 380.95 103.1 379.15 91.95 374.45 82.75 365.2 L79.55 361.8 Q64.65 344.9 64 322 L64 321 64 320.5 Q64.55 294.9 82.75 276.7 L85 274.6 M168 299.85 Q160.6 292.45 150.2 292.45 139.7 292.45 132.35 299.85 130.8 301.35 128 301.35 125.2 301.35 123.7 299.85 116.3 292.45 105.9 292.45 95.45 292.45 88.05 299.85 80.65 307.25 80.65 317.65 80.65 328.1 88.05 335.55 L88.1 335.55 92.3 338.95 Q92.35 353.6 102.75 363.95 106.9 368.1 111.75 370.6 119.1 374.4 128 374.4 142.8 374.4 153.3 363.95 L156.65 360.15 Q163.65 351 163.75 338.95 L168 335.55 Q175.4 328.1 175.4 317.65 175.4 307.25 168 299.85 M133.3 333.7 Q135.25 331.75 137.4 331.1 139.65 330.5 140.75 331.6 141.85 332.7 141.25 334.95 140.65 337.1 138.65 339.05 L138.55 339.2 Q137.45 340.25 135.95 340.25 134.35 340.25 133.25 339.15 132.1 338 132.1 336.4 132.1 334.85 133.15 333.8 L133.3 333.7 M123.65 339.15 Q122.45 340.25 120.9 340.25 119.35 340.25 118.25 339.2 L118.15 339.05 Q116.15 337.1 115.6 334.95 115 332.7 116.1 331.6 117.25 330.5 119.45 331.1 121.65 331.75 123.55 333.7 L123.7 333.8 Q124.75 334.85 124.75 336.4 124.75 338 123.65 339.15"/>
+ <path stroke="none" fill="#AA6C3B" d="M171.05 274.6 Q168.25 276.5 164.6 278.25 149.45 285.5 128 285.5 106.55 285.5 91.4 278.25 87.75 276.5 85 274.6 103.05 258 128 258 153 258 171.05 274.6"/>
+ <path stroke="none" fill="#BF8559" d="M168.95 318.9 Q168.95 313.85 165.45 310.3 161.85 306.8 156.75 306.8 151.75 306.8 148.2 310.3 144.6 313.85 144.6 318.9 144.6 323.95 148.2 327.4 151.75 331.05 156.75 331.05 161.85 331.05 165.45 327.4 168.95 323.95 168.95 318.9 M168 299.85 Q175.4 307.25 175.4 317.65 175.4 328.1 168 335.55 L163.75 338.95 Q163.65 351 156.65 360.15 L153.3 363.95 Q142.8 374.4 128 374.4 119.1 374.4 111.75 370.6 106.9 368.1 102.75 363.95 92.35 353.6 92.3 338.95 L88.1 335.55 88.05 335.55 Q80.65 328.1 80.65 317.65 80.65 307.25 88.05 299.85 95.45 292.45 105.9 292.45 116.3 292.45 123.7 299.85 125.2 301.35 128 301.35 130.8 301.35 132.35 299.85 139.7 292.45 150.2 292.45 160.6 292.45 168 299.85 M133.3 333.7 L133.15 333.8 Q132.1 334.85 132.1 336.4 132.1 338 133.25 339.15 134.35 340.25 135.95 340.25 137.45 340.25 138.55 339.2 L138.65 339.05 Q140.65 337.1 141.25 334.95 141.85 332.7 140.75 331.6 139.65 330.5 137.4 331.1 135.25 331.75 133.3 333.7 M123.65 339.15 Q124.75 338 124.75 336.4 124.75 334.85 123.7 333.8 L123.55 333.7 Q121.65 331.75 119.45 331.1 117.25 330.5 116.1 331.6 115 332.7 115.6 334.95 116.15 337.1 118.15 339.05 L118.25 339.2 Q119.35 340.25 120.9 340.25 122.45 340.25 123.65 339.15 M145.75 343.85 Q143.9 343.7 142.1 344.45 129.5 349.55 114.35 344.25 L111.75 343.8 Q110 343.8 108.3 344.6 105.3 346.05 104.25 349.2 103.15 352.25 104.6 355.25 106 358.2 109.15 359.3 L111.75 360.15 Q130.15 365.8 145.75 360.15 L148.25 359.15 Q151.25 357.8 152.5 354.8 153.7 351.75 152.45 348.7 151.2 345.65 148.15 344.45 L145.75 343.85 M87.75 318.9 Q87.75 323.95 91.35 327.4 94.95 331.05 99.95 331.05 104.95 331.05 108.65 327.4 112.15 323.95 112.15 318.9 112.15 313.85 108.65 310.3 104.95 306.8 99.95 306.8 94.95 306.8 91.35 310.3 87.75 313.85 87.75 318.9"/>
+ <path stroke="none" fill="#FFFFFF" d="M87.75 318.9 Q87.75 313.85 91.35 310.3 94.95 306.8 99.95 306.8 104.95 306.8 108.65 310.3 112.15 313.85 112.15 318.9 112.15 323.95 108.65 327.4 104.95 331.05 99.95 331.05 94.95 331.05 91.35 327.4 87.75 323.95 87.75 318.9 M168.95 318.9 Q168.95 323.95 165.45 327.4 161.85 331.05 156.75 331.05 151.75 331.05 148.2 327.4 144.6 323.95 144.6 318.9 144.6 313.85 148.2 310.3 151.75 306.8 156.75 306.8 161.85 306.8 165.45 310.3 168.95 313.85 168.95 318.9 M163.1 319.15 Q163.1 315.85 160.85 313.7 158.6 311.55 155.45 311.55 152.35 311.55 150 313.7 147.75 315.85 147.75 319.15 147.75 322.3 150 324.45 152.35 326.75 155.45 326.75 158.6 326.75 160.85 324.45 163.1 322.3 163.1 319.15 M111.75 343.8 L114.35 344.25 Q129.5 349.55 142.1 344.45 143.9 343.7 145.75 343.85 148.65 351.5 145.75 360.15 130.15 365.8 111.75 360.15 108.5 351.05 111.75 343.8 M93.7 319.15 Q93.7 322.3 95.95 324.45 98.1 326.75 101.3 326.75 104.45 326.75 106.7 324.45 108.95 322.3 108.95 319.15 108.95 315.85 106.7 313.7 104.45 311.55 101.3 311.55 98.1 311.55 95.95 313.7 93.7 315.85 93.7 319.15"/>
+ <path stroke="none" fill="#5B5B5B" d="M93.7 319.15 Q93.7 315.85 95.95 313.7 98.1 311.55 101.3 311.55 104.45 311.55 106.7 313.7 108.95 315.85 108.95 319.15 108.95 322.3 106.7 324.45 104.45 326.75 101.3 326.75 98.1 326.75 95.95 324.45 93.7 322.3 93.7 319.15 M163.1 319.15 Q163.1 322.3 160.85 324.45 158.6 326.75 155.45 326.75 152.35 326.75 150 324.45 147.75 322.3 147.75 319.15 147.75 315.85 150 313.7 152.35 311.55 155.45 311.55 158.6 311.55 160.85 313.7 163.1 315.85 163.1 319.15"/>
+ <path stroke="none" fill="#E7E7E7" d="M111.75 343.8 Q108.5 351.05 111.75 360.15 L109.15 359.3 Q106 358.2 104.6 355.25 103.15 352.25 104.25 349.2 105.3 346.05 108.3 344.6 110 343.8 111.75 343.8 M145.75 360.15 Q148.65 351.5 145.75 343.85 L148.15 344.45 Q151.2 345.65 152.45 348.7 153.7 351.75 152.5 354.8 151.25 357.8 148.25 359.15 L145.75 360.15"/>
+ <path stroke="none" fill="#447180" d="M702.35 130 Q701.65 104.75 683.65 86.75 679.25 82.35 674.45 79 658.7 68 638.35 68 618.05 68 602.25 79.05 597.45 82.4 593.1 86.75 575.05 104.75 574.4 130 L574.35 128 Q574.35 101.45 593.1 82.75 597.35 78.5 601.95 75.25 617.85 64 638.35 64 658.9 64 674.75 75.2 679.4 78.5 683.65 82.75 702.35 101.45 702.35 128 L702.35 130"/>
+ <path stroke="none" fill="#365A66" d="M702.35 130 Q701.9 145.2 695.2 157.85 693.25 161.55 690.75 165 L690.7 165 Q687.55 169.3 683.6 173.25 L678.95 177.55 676.35 179.65 673.35 177.5 Q658.85 168 638.35 168 617.85 168 603.35 177.5 L600.35 179.65 597.85 177.65 593.05 173.25 Q585.45 165.65 580.95 156.8 L575.4 140.1 575.4 139.9 575.2 138.8 575.15 138.55 575.1 138.05 575 137.5 574.85 136.25 574.85 136.05 574.75 135.45 574.75 135.2 574.7 135 574.7 134.75 574.65 134.45 574.6 133.8 574.6 133.55 574.55 133.25 574.4 130 Q575.05 104.75 593.1 86.75 597.45 82.4 602.25 79.05 618.05 68 638.35 68 658.7 68 674.45 79 679.25 82.35 683.65 86.75 701.65 104.75 702.35 130 M685.3 118.75 Q683.45 112.2 677.5 108.75 671.3 105.15 664.45 107 657.65 108.8 654.05 115.05 650.6 120.95 652.2 127.65 L652.35 128.2 Q655.6 140.3 662.8 147.5 669.95 154.7 676.8 152.9 683.65 151.05 686.2 141.2 688.7 131.4 685.45 119.3 L685.3 118.75 M622.95 145.4 L622.75 148 622.8 149.05 Q623.1 152.55 627.35 155.05 632 157.75 638.55 157.75 645.1 157.75 649.7 155.05 653.95 152.55 654.25 149.05 L654.3 148 654.1 145.4 Q653.35 140.55 649.7 136.85 L647.9 135.3 Q643.85 132.25 638.55 132.25 633.25 132.25 629.2 135.3 L627.35 136.85 Q623.7 140.55 622.95 145.4 M624.95 127.7 Q626.6 121 623.1 115.05 619.6 108.85 612.7 107.05 605.85 105.15 599.65 108.75 593.7 112.2 591.8 118.75 L591.6 119.3 Q588.4 131.4 591 141.25 593.6 151.05 600.4 152.95 607.3 154.75 614.45 147.5 621.55 140.35 624.75 128.25 L624.95 127.7"/>
+ <path stroke="none" fill="#D5EEF7" d="M624.95 127.7 L624.75 128.25 Q621.55 140.35 614.45 147.5 607.3 154.75 600.4 152.95 593.6 151.05 591 141.25 588.4 131.4 591.6 119.3 L591.8 118.75 Q593.7 112.2 599.65 108.75 605.85 105.15 612.7 107.05 619.6 108.85 623.1 115.05 626.6 121 624.95 127.7 M685.3 118.75 L685.45 119.3 Q688.7 131.4 686.2 141.2 683.65 151.05 676.8 152.9 669.95 154.7 662.8 147.5 655.6 140.3 652.35 128.2 L652.2 127.65 Q650.6 120.95 654.05 115.05 657.65 108.8 664.45 107 671.3 105.15 677.5 108.75 683.45 112.2 685.3 118.75"/>
+ <path stroke="none" fill="#E08600" d="M654.1 145.4 L654.3 148 654.25 149.05 Q653.95 152.55 649.7 155.05 645.1 157.75 638.55 157.75 632 157.75 627.35 155.05 623.1 152.55 622.8 149.05 L622.75 148 622.95 145.4 Q623.65 147.4 627.35 148.9 632 150.8 638.55 150.8 645.1 150.8 649.7 148.9 653.4 147.4 654.1 145.4"/>
+ <path stroke="none" fill="#FF9900" d="M654.1 145.4 Q653.4 147.4 649.7 148.9 645.1 150.8 638.55 150.8 632 150.8 627.35 148.9 623.65 147.4 622.95 145.4 623.7 140.55 627.35 136.85 L629.2 135.3 Q633.25 132.25 638.55 132.25 643.85 132.25 647.9 135.3 L649.7 136.85 Q653.35 140.55 654.1 145.4"/>
+ <path stroke="none" fill="#F2F9FB" d="M600.35 179.65 L603.35 177.5 Q617.85 168 638.35 168 658.85 168 673.35 177.5 L676.35 179.65 674.75 180.75 Q658.85 192 638.35 192 617.8 192 601.95 180.8 L600.35 179.65"/>
+ <path stroke="none" fill="#FFFFFF" d="M677.6 130.6 Q677.6 134.95 674.5 137.95 671.4 141.1 667.05 141.1 662.8 141.1 659.6 137.95 656.6 134.95 656.6 130.6 656.6 126.2 659.6 123.15 662.8 120.1 667.05 120.1 671.4 120.1 674.5 123.15 677.6 126.2 677.6 130.6 M672.85 132.55 Q672.85 129.75 670.95 127.9 669 125.95 666.25 125.95 663.55 125.95 661.55 127.9 659.65 129.75 659.65 132.55 L659.65 133.2 Q659.85 135.45 661.55 137.1 663.55 139 666.25 139 669 139 670.95 137.1 672.6 135.45 672.8 133.2 L672.85 132.55 M599.35 130.6 Q599.35 126.2 602.4 123.15 605.5 120.1 609.85 120.1 614.15 120.1 617.3 123.15 620.35 126.2 620.35 130.6 620.35 134.95 617.3 137.95 614.15 141.1 609.85 141.1 605.5 141.1 602.4 137.95 599.35 134.95 599.35 130.6 M604.1 132.55 L604.15 133.2 Q604.3 135.45 605.95 137.1 607.9 139 610.7 139 613.35 139 615.35 137.1 617.1 135.45 617.25 133.2 L617.3 132.55 Q617.3 129.75 615.35 127.9 613.35 125.95 610.7 125.95 607.9 125.95 605.95 127.9 604.1 129.75 604.1 132.55"/>
+ <path stroke="none" fill="#5B5B5B" d="M604.1 132.55 Q604.1 129.75 605.95 127.9 607.9 125.95 610.7 125.95 613.35 125.95 615.35 127.9 617.3 129.75 617.3 132.55 L617.25 133.2 Q617.1 135.45 615.35 137.1 613.35 139 610.7 139 607.9 139 605.95 137.1 604.3 135.45 604.15 133.2 L604.1 132.55 M672.85 132.55 L672.8 133.2 Q672.6 135.45 670.95 137.1 669 139 666.25 139 663.55 139 661.55 137.1 659.85 135.45 659.65 133.2 L659.65 132.55 Q659.65 129.75 661.55 127.9 663.55 125.95 666.25 125.95 669 125.95 670.95 127.9 672.85 129.75 672.85 132.55"/>
+ <path stroke="none" fill="#FFFFFF" d="M959.7 130 Q959 104.75 941 86.75 936.6 82.35 931.8 79 928.45 76.7 924.95 74.85 922.6 83.85 918.3 91.45 908.95 108 895.7 108 882.45 108 873.05 91.45 868.75 83.9 866.45 74.9 862.95 76.7 859.6 79.05 854.8 82.4 850.45 86.75 832.4 104.75 831.75 130 L831.7 128 Q831.7 101.45 850.45 82.75 854.7 78.5 859.3 75.25 862.4 73.05 865.65 71.35 879.15 64 895.7 64 912.25 64 925.8 71.3 929.05 73.05 932.1 75.2 936.75 78.5 941 82.75 959.7 101.45 959.7 128 L959.7 130"/>
+ <path stroke="none" fill="#F5F5F5" d="M959.7 130 Q959.25 145.2 952.55 157.85 950.6 161.55 948.1 165 L948.05 165 Q944.9 169.3 940.95 173.25 L936.3 177.55 Q934.25 179.25 932.1 180.75 L927.3 183.85 924.85 181.75 Q912.8 172 895.7 172 878.6 172 866.5 181.75 L864.1 183.85 859.3 180.8 855.2 177.65 850.4 173.25 Q842.8 165.65 838.3 156.8 L832.75 140.1 832.75 139.9 832.55 138.8 832.5 138.55 832.45 138.05 832.35 137.5 832.2 136.25 832.2 136.05 832.1 135.45 832.1 135.2 832.05 135 832.05 134.75 832 134.45 831.95 133.8 831.95 133.55 831.9 133.25 831.75 130 Q832.4 104.75 850.45 86.75 854.8 82.4 859.6 79.05 862.95 76.7 866.45 74.9 868.75 83.9 873.05 91.45 882.45 108 895.7 108 908.95 108 918.3 91.45 922.6 83.85 924.95 74.85 928.45 76.7 931.8 79 936.6 82.35 941 86.75 959 104.75 959.7 130"/>
+ <path stroke="none" fill="#E5E5E5" d="M864.1 183.85 L866.5 181.75 Q878.6 172 895.7 172 912.8 172 924.85 181.75 L927.3 183.85 Q913.15 192 895.7 192 878.2 192 864.1 183.85"/>
+ <path stroke="none" fill="#5B5B5B" d="M854.5 125.55 Q854.5 123.1 856.2 121.45 857.9 119.75 860.3 119.75 862.7 119.75 864.45 121.45 866.15 123.1 866.15 125.55 866.15 127.95 864.45 129.6 862.7 131.35 860.3 131.35 857.9 131.35 856.2 129.6 854.5 127.95 854.5 125.55 M850 125.4 Q850 129.25 852.7 131.85 855.45 134.65 859.3 134.65 863.1 134.65 865.85 131.85 868.55 129.25 868.55 125.4 868.55 121.55 865.85 118.85 863.1 116.15 859.3 116.15 855.45 116.15 852.7 118.85 850 121.55 850 125.4 M844.35 121.95 L844.35 121.9 Q846 115.9 851.3 112.85 856.7 109.75 862.7 111.35 868.65 112.9 871.8 118.3 874.9 123.65 873.3 129.65 L873.3 129.7 Q871.35 136.9 865.8 140.75 860.15 144.75 854.2 143.2 848.2 141.6 845.3 135.3 842.45 129.15 844.35 121.95 M946.05 121.95 Q947.95 129.15 945.1 135.3 942.2 141.6 936.2 143.2 930.25 144.75 924.6 140.75 919.05 136.9 917.1 129.7 L917.1 129.65 Q915.5 123.65 918.6 118.3 921.75 112.9 927.7 111.35 933.7 109.75 939.1 112.85 944.4 115.9 946.05 121.9 L946.05 121.95 M935.9 125.55 Q935.9 127.95 934.2 129.6 932.5 131.35 930.1 131.35 927.7 131.35 925.95 129.6 924.25 127.95 924.25 125.55 924.25 123.1 925.95 121.45 927.7 119.75 930.1 119.75 932.5 119.75 934.2 121.45 935.9 123.1 935.9 125.55 M940.4 125.4 Q940.4 121.55 937.7 118.85 934.95 116.15 931.1 116.15 927.3 116.15 924.55 118.85 921.85 121.55 921.85 125.4 921.85 129.25 924.55 131.85 927.3 134.65 931.1 134.65 934.95 134.65 937.7 131.85 940.4 129.25 940.4 125.4"/>
+ <path stroke="none" fill="#FFFFFF" d="M940.4 125.4 Q940.4 129.25 937.7 131.85 934.95 134.65 931.1 134.65 927.3 134.65 924.55 131.85 921.85 129.25 921.85 125.4 921.85 121.55 924.55 118.85 927.3 116.15 931.1 116.15 934.95 116.15 937.7 118.85 940.4 121.55 940.4 125.4 M854.5 125.55 Q854.5 127.95 856.2 129.6 857.9 131.35 860.3 131.35 862.7 131.35 864.45 129.6 866.15 127.95 866.15 125.55 866.15 123.1 864.45 121.45 862.7 119.75 860.3 119.75 857.9 119.75 856.2 121.45 854.5 123.1 854.5 125.55 M850 125.4 Q850 121.55 852.7 118.85 855.45 116.15 859.3 116.15 863.1 116.15 865.85 118.85 868.55 121.55 868.55 125.4 868.55 129.25 865.85 131.85 863.1 134.65 859.3 134.65 855.45 134.65 852.7 131.85 850 129.25 850 125.4 M935.9 125.55 Q935.9 123.1 934.2 121.45 932.5 119.75 930.1 119.75 927.7 119.75 925.95 121.45 924.25 123.1 924.25 125.55 924.25 127.95 925.95 129.6 927.7 131.35 930.1 131.35 932.5 131.35 934.2 129.6 935.9 127.95 935.9 125.55"/>
+ <path stroke="none" fill="#666666" d="M882.85 136.25 L882.65 133.9 882.65 133 Q882.95 130.6 886.45 128.9 890.3 127.05 895.7 127.05 901.1 127.05 904.95 128.9 908.4 130.6 908.75 133 L908.75 133.9 908.55 136.25 Q907.85 134.35 904.95 132.9 901.1 131.05 895.7 131.05 890.3 131.05 886.45 132.9 883.55 134.3 882.85 136.25"/>
+ <path stroke="none" fill="#464646" d="M900.15 146.25 L901 147.25 Q901.95 148.2 903.05 148.75 904.45 149.4 906.1 149.4 909.1 149.4 911.25 147.25 L912.5 145.6 913 145.15 913.7 145.2 918.4 147.65 918.85 148.15 918.8 148.8 917.3 151.1 916.25 152.25 Q912 156.45 906.1 156.45 900.2 156.45 896 152.25 L895.7 151.95 895.4 152.25 Q891.15 156.45 885.25 156.45 879.3 156.45 875.15 152.25 L874.1 151.1 872.6 148.9 Q872.4 148.55 872.55 148.25 872.6 147.9 872.95 147.7 L877.55 145.15 878.2 145.05 Q878.55 145.15 878.75 145.5 L880.1 147.25 Q882.25 149.4 885.25 149.4 886.9 149.4 888.35 148.75 L890.4 147.25 891.25 146.25 Q895.9 148 900.15 146.25"/>
+ <path stroke="none" fill="#5B5B5B" d="M900.15 146.25 Q895.9 148 891.25 146.25 888.6 145.3 886.45 143.15 883.5 140.2 882.85 136.25 883.55 134.3 886.45 132.9 890.3 131.05 895.7 131.05 901.1 131.05 904.95 132.9 907.85 134.35 908.55 136.25 907.9 140.2 904.95 143.15 902.8 145.3 900.15 146.25"/>
+ <path stroke="none" fill="#DBD9D9" d="M831.75 322 L831.7 320 Q831.7 293.45 850.45 274.75 854.7 270.5 859.3 267.25 861.05 266.05 862.85 264.95 877.45 256 895.7 256 914 256 928.6 264.9 L932.1 267.2 Q936.75 270.5 941 274.75 959.7 293.45 959.7 320 L959.7 322 Q959 296.75 941 278.75 936.6 274.35 931.8 271 929 269.05 926.05 267.45 L922.9 269.95 Q911.65 278 895.7 278 879.75 278 868.45 269.95 L865.35 267.5 Q862.4 269.1 859.6 271.05 854.8 274.4 850.45 278.75 832.4 296.75 831.75 322"/>
+ <path stroke="none" fill="#D2D0D0" d="M831.75 322 Q832.4 296.75 850.45 278.75 854.8 274.4 859.6 271.05 862.4 269.1 865.35 267.5 L868.45 269.95 Q879.75 278 895.7 278 911.65 278 922.9 269.95 L926.05 267.45 Q929 269.05 931.8 271 936.6 274.35 941 278.75 959 296.75 959.7 322 959.25 337.2 952.55 349.85 950.6 353.55 948.1 357 L948.05 357 Q944.9 361.3 940.95 365.25 L936.3 369.55 Q934.25 371.25 932.1 372.75 916.2 384 895.7 384 875.15 384 859.3 372.8 L855.2 369.65 850.4 365.25 Q842.8 357.65 838.3 348.8 L832.75 332.1 832.75 331.9 832.55 330.8 832.5 330.55 832.45 330.05 832.35 329.5 832.2 328.25 832.2 328.05 832.1 327.45 832.1 327.2 832.05 327 832.05 326.75 832 326.45 831.95 325.8 831.95 325.55 831.9 325.25 831.75 322"/>
+ <path stroke="none" fill="#000000" fill-opacity="0.050980392156862744" d="M880.9 331.6 L881.2 332 882.9 333.85 882.95 333.85 883.3 334.65 883.3 334.7 883.25 334.85 883.2 334.85 882.85 335.9 882.8 335.9 881.75 336.6 876.4 338.8 Q874.65 339.45 873.1 340.25 872.15 340.6 871.25 341.1 868.15 342.75 865.65 344.9 L864.45 344.45 Q867.4 340.45 871.25 337.45 L873.1 336.2 Q874.65 335.1 876.4 334.15 L880.9 331.6 M910.55 331.6 L915 334.15 918.3 336.2 920.15 337.45 Q923.85 340.3 926.7 344.15 L925.6 344.8 Q923.15 342.7 920.15 341.1 919.25 340.6 918.3 340.25 916.75 339.45 915 338.8 L909.65 336.6 908.6 335.9 908.55 335.9 Q908.15 335.4 908.2 334.85 L908.15 334.85 908.1 334.7 908.1 334.65 Q908.2 334.15 908.45 333.85 L908.5 333.85 910.2 332 910.55 331.6"/>
+ <path stroke="none" fill="#F0EDE7" d="M873.1 336.2 L871.25 337.45 Q867.4 340.45 864.45 344.45 862.75 346.8 861.35 349.5 860.45 351.15 859.7 352.95 L858.55 356.05 Q856.6 361.85 853.35 362.2 L853.75 358.3 Q855.85 343.75 869.2 329.95 L872.1 327.05 Q873.65 331.3 873.1 336.2 M881.2 324.35 L882.9 327 882.95 327 883.3 328.15 881.2 324.35 M910.2 324.35 L908.1 328.15 Q908.2 327.45 908.45 327 L908.5 327 Q909.3 325.55 910.2 324.35 M918.3 336.2 Q917.75 331.3 919.3 327.05 L922.2 329.95 Q935.55 343.75 937.7 358.3 L938.05 362.2 Q934.8 361.85 932.85 356.05 L931.7 352.95 930.1 349.5 Q928.55 346.6 926.7 344.15 923.85 340.3 920.15 337.45 L918.3 336.2"/>
+ <path stroke="none" fill="#CDCBCB" d="M918.3 336.2 L915 334.15 910.55 331.6 909.65 331 908.6 330 908.55 329.95 Q908.15 329.25 908.2 328.5 L908.15 328.45 908.1 328.25 908.1 328.15 910.2 324.35 917.65 310.5 Q919.85 317.05 925.15 318.85 921.7 322 920 325.55 L919.3 327.05 Q917.75 331.3 918.3 336.2 M880.9 331.6 L876.4 334.15 Q874.65 335.1 873.1 336.2 873.65 331.3 872.1 327.05 L871.45 325.55 Q869.7 322 866.25 318.85 871.55 317.05 873.75 310.5 L881.2 324.35 883.3 328.15 883.3 328.25 883.25 328.45 883.2 328.5 882.85 329.95 882.8 330 881.75 331 880.9 331.6"/>
+ <path stroke="none" fill="#FFFCF5" d="M853.35 362.2 Q852.55 362.05 851.9 361.5 L851.75 361.45 Q851.05 360.7 850.9 359.8 849.65 354.35 849.1 349.5 L848.65 344.15 Q848.05 324.55 866.25 318.85 869.7 322 871.45 325.55 L872.1 327.05 869.2 329.95 Q855.85 343.75 853.75 358.3 L853.35 362.2 M919.3 327.05 L920 325.55 Q921.7 322 925.15 318.85 943.35 324.55 942.75 344.15 L942.35 349.45 Q941.8 354.3 940.5 359.8 940.35 360.7 939.65 361.45 L939.5 361.5 Q938.85 362.05 938.05 362.2 L937.7 358.3 Q935.55 343.75 922.2 329.95 L919.3 327.05"/>
+ <path stroke="none" fill="#E7E5E5" d="M871.6 320.85 L871.2 319.5 Q869 310.6 875.4 303.3 883 295 895.7 295 908.45 295 915.85 303.3 922.45 310.6 920.15 319.5 L919.85 320.85 Q918.6 318.5 915.85 316.35 908.45 310.55 895.7 310.55 883 310.55 875.4 316.35 872.7 318.5 871.6 320.85"/>
+ <path stroke="none" fill="#DBD9D9" d="M871.6 320.85 Q872.7 318.5 875.4 316.35 883 310.55 895.7 310.55 908.45 310.55 915.85 316.35 918.6 318.5 919.85 320.85 914.3 335.35 910.7 351 908 362.5 906.4 374.65 906.05 376.2 902.8 377.2 899.8 378.1 895.7 378.1 891.6 378.1 888.55 377.2 885.4 376.2 885.05 374.65 883.6 362.1 881.2 351 877.5 334.25 871.6 320.85 M883.55 327 L883.5 327 Q896.2 332.85 907.9 327 L907.95 326.95 Q908.65 326.65 908.9 325.85 L908.9 325.95 Q909.15 325.25 908.9 324.65 908.65 323.85 907.95 323.55 L907.9 323.55 Q896.25 317.6 883.55 323.5 882.7 323.8 882.5 324.65 882.25 325.25 882.5 325.95 882.75 326.65 883.55 327"/>
+ <path stroke="none" fill="#CDCBCB" d="M883.55 327 Q882.75 326.65 882.5 325.95 882.25 325.25 882.5 324.65 882.7 323.8 883.55 323.5 896.25 317.6 907.9 323.55 L907.95 323.55 Q908.65 323.85 908.9 324.65 909.15 325.25 908.9 325.95 L908.9 325.85 Q908.65 326.65 907.95 326.95 L907.9 327 Q896.2 332.85 883.5 327 L883.55 327"/>
+ <path stroke="none" fill="#FFFFFF" d="M854.65 298.5 Q854.65 301.05 856.45 302.85 858.3 304.65 860.95 304.65 863.5 304.65 865.4 302.85 867.25 301.05 867.25 298.5 867.25 295.85 865.4 294.05 863.5 292.2 860.95 292.2 858.3 292.2 856.45 294.05 854.65 295.85 854.65 298.5 M936.75 298.5 Q936.75 295.85 934.95 294.05 933.1 292.2 930.45 292.2 927.9 292.2 926 294.05 924.15 295.85 924.15 298.5 924.15 301.05 926 302.85 927.9 304.65 930.45 304.65 933.1 304.65 934.95 302.85 936.75 301.05 936.75 298.5 M942.25 297.3 Q942.25 301.45 939.3 304.3 936.35 307.3 932.2 307.3 928.1 307.3 925.1 304.3 922.2 301.45 922.2 297.3 922.2 293.1 925.1 290.2 928.1 287.25 932.2 287.25 936.35 287.25 939.3 290.2 942.25 293.1 942.25 297.3 M849.15 297.3 Q849.15 293.1 852.1 290.2 855.05 287.25 859.2 287.25 863.3 287.25 866.3 290.2 869.2 293.1 869.2 297.3 869.2 301.45 866.3 304.3 863.3 307.3 859.2 307.3 855.05 307.3 852.1 304.3 849.15 301.45 849.15 297.3"/>
+ <path stroke="none" fill="#5B5B5B" d="M936.75 298.5 Q936.75 301.05 934.95 302.85 933.1 304.65 930.45 304.65 927.9 304.65 926 302.85 924.15 301.05 924.15 298.5 924.15 295.85 926 294.05 927.9 292.2 930.45 292.2 933.1 292.2 934.95 294.05 936.75 295.85 936.75 298.5 M854.65 298.5 Q854.65 295.85 856.45 294.05 858.3 292.2 860.95 292.2 863.5 292.2 865.4 294.05 867.25 295.85 867.25 298.5 867.25 301.05 865.4 302.85 863.5 304.65 860.95 304.65 858.3 304.65 856.45 302.85 854.65 301.05 854.65 298.5"/>
+ <path stroke="none" fill="#F53707" d="M1085.55 130 L1085.5 128 Q1085.5 101.45 1104.2 82.7 1123 64 1149.5 64 1176.05 64 1194.75 82.7 1213.5 101.45 1213.5 128 L1213.5 130 Q1212.8 104.75 1194.75 86.7 1176.05 68 1149.5 68 1123 68 1104.2 86.7 1086.2 104.75 1085.55 130"/>
+ <path stroke="none" fill="#D23007" d="M1085.55 130 Q1086.2 104.75 1104.2 86.7 1123 68 1149.5 68 1176.05 68 1194.75 86.7 1212.8 104.75 1213.5 130 1213.1 144.35 1207.1 156.4 1202.5 165.45 1194.75 173.2 L1191.35 176.45 Q1186.35 180.85 1180.8 184.05 1179.85 182.2 1178.7 180.5 1179.8 179.95 1180.25 179.15 1181.45 177 1177.6 174.2 1174.05 171.5 1167.8 169.85 L1167.65 169.8 1167.3 169.75 Q1159.4 164.95 1149.5 164.95 1139.6 164.95 1131.7 169.75 L1131.35 169.8 1131.2 169.85 Q1124.95 171.5 1121.4 174.2 1117.55 177 1118.75 179.15 1119.2 179.95 1120.35 180.5 1119.15 182.2 1118.25 184 1112.75 180.9 1107.75 176.5 L1104.2 173.2 Q1096.5 165.5 1092 156.5 1085.9 144.4 1085.55 130"/>
+ <path stroke="none" fill="#FFCC00" d="M1180.8 184.05 Q1166.8 192 1149.5 192 1132.25 192 1118.25 184 1119.15 182.2 1120.35 180.5 1119.2 179.95 1118.75 179.15 1117.55 177 1121.4 174.2 1124.95 171.5 1131.2 169.85 L1131.35 169.8 1131.7 169.75 Q1139.6 164.95 1149.5 164.95 1159.4 164.95 1167.3 169.75 L1167.65 169.8 1167.8 169.85 Q1174.05 171.5 1177.6 174.2 1181.45 177 1180.25 179.15 1179.8 179.95 1178.7 180.5 1179.85 182.2 1180.8 184.05"/>
+ <path stroke="none" fill="#D5EEF7" d="M1193.25 121.4 L1193.4 121.95 Q1196.65 134.05 1194.15 143.85 1191.6 153.7 1184.75 155.55 1177.9 157.35 1170.75 150.15 1163.55 142.95 1160.3 130.85 L1160.15 130.3 Q1158.55 123.6 1162 117.7 1165.6 111.45 1172.4 109.65 1179.25 107.8 1185.45 111.4 1191.4 114.85 1193.25 121.4 M1185.55 133.25 Q1185.55 128.85 1182.45 125.8 1179.35 122.75 1175 122.75 1170.75 122.75 1167.55 125.8 1164.55 128.85 1164.55 133.25 1164.55 137.6 1167.55 140.6 1170.75 143.75 1175 143.75 1179.35 143.75 1182.45 140.6 1185.55 137.6 1185.55 133.25 M1138.9 130.35 L1138.7 130.9 Q1135.5 143 1128.4 150.15 1121.25 157.4 1114.35 155.6 1107.55 153.7 1104.95 143.9 1102.35 134.05 1105.55 121.95 L1105.75 121.4 Q1107.65 114.85 1113.6 111.4 1119.8 107.8 1126.65 109.7 1133.55 111.5 1137.05 117.7 1140.55 123.65 1138.9 130.35 M1113.3 133.25 Q1113.3 137.6 1116.35 140.6 1119.45 143.75 1123.8 143.75 1128.1 143.75 1131.25 140.6 1134.3 137.6 1134.3 133.25 1134.3 128.85 1131.25 125.8 1128.1 122.75 1123.8 122.75 1119.45 122.75 1116.35 125.8 1113.3 128.85 1113.3 133.25"/>
+ <path stroke="none" fill="#FFFFFF" d="M1113.3 133.25 Q1113.3 128.85 1116.35 125.8 1119.45 122.75 1123.8 122.75 1128.1 122.75 1131.25 125.8 1134.3 128.85 1134.3 133.25 1134.3 137.6 1131.25 140.6 1128.1 143.75 1123.8 143.75 1119.45 143.75 1116.35 140.6 1113.3 137.6 1113.3 133.25 M1185.55 133.25 Q1185.55 137.6 1182.45 140.6 1179.35 143.75 1175 143.75 1170.75 143.75 1167.55 140.6 1164.55 137.6 1164.55 133.25 1164.55 128.85 1167.55 125.8 1170.75 122.75 1175 122.75 1179.35 122.75 1182.45 125.8 1185.55 128.85 1185.55 133.25 M1179.8 133.2 Q1179.8 130.4 1177.9 128.55 1175.95 126.6 1173.2 126.6 1170.5 126.6 1168.5 128.55 1166.6 130.4 1166.6 133.2 L1166.6 133.85 Q1166.8 136.1 1168.5 137.75 1170.5 139.65 1173.2 139.65 1175.95 139.65 1177.9 137.75 1179.55 136.1 1179.75 133.85 L1179.8 133.2 M1119.05 133.2 L1119.1 133.85 Q1119.25 136.1 1120.9 137.75 1122.85 139.65 1125.65 139.65 1128.3 139.65 1130.3 137.75 1132.05 136.1 1132.2 133.85 L1132.25 133.2 Q1132.25 130.4 1130.3 128.55 1128.3 126.6 1125.65 126.6 1122.85 126.6 1120.9 128.55 1119.05 130.4 1119.05 133.2"/>
+ <path stroke="none" fill="#5B5B5B" d="M1119.05 133.2 Q1119.05 130.4 1120.9 128.55 1122.85 126.6 1125.65 126.6 1128.3 126.6 1130.3 128.55 1132.25 130.4 1132.25 133.2 L1132.2 133.85 Q1132.05 136.1 1130.3 137.75 1128.3 139.65 1125.65 139.65 1122.85 139.65 1120.9 137.75 1119.25 136.1 1119.1 133.85 L1119.05 133.2 M1179.8 133.2 L1179.75 133.85 Q1179.55 136.1 1177.9 137.75 1175.95 139.65 1173.2 139.65 1170.5 139.65 1168.5 137.75 1166.8 136.1 1166.6 133.85 L1166.6 133.2 Q1166.6 130.4 1168.5 128.55 1170.5 126.6 1173.2 126.6 1175.95 126.6 1177.9 128.55 1179.8 130.4 1179.8 133.2"/>
+ <path stroke="none" fill="#61A3FF" d="M1131.5 149.5 L1131.5 146 Q1131.5 143.65 1132.05 141.5 L1132.3 140.65 1132.35 140.5 Q1133.6 136.45 1136.7 133.3 1142.05 128 1149.5 128 1157 128 1162.2 133.3 1165.4 136.45 1166.65 140.5 L1166.7 140.65 1166.9 141.5 Q1167.5 143.65 1167.5 146 L1167.5 149.5 Q1167.45 147.55 1166.9 145.7 L1166.7 144.95 1166.65 144.8 Q1165.4 141 1162.2 138.1 1157 133.15 1149.5 133.15 1142.05 133.15 1136.7 138.1 1133.6 141 1132.35 144.8 L1132.3 144.95 1132.05 145.7 Q1131.55 147.55 1131.5 149.5"/>
+ <path stroke="none" fill="#5D9CF3" d="M1131.5 149.5 Q1131.55 147.55 1132.05 145.7 L1132.3 144.95 1132.35 144.8 Q1133.6 141 1136.7 138.1 1142.05 133.15 1149.5 133.15 1157 133.15 1162.2 138.1 1165.4 141 1166.65 144.8 L1166.7 144.95 1166.9 145.7 Q1167.45 147.55 1167.5 149.5 L1167.5 149.9 1167.5 155.9 1167.5 156.4 1167.4 157.85 1167.3 158.7 Q1149.5 163.25 1131.7 158.7 L1131.6 157.85 1131.5 156.2 1131.5 155.9 1131.5 149.9 1131.5 149.5"/>
+ <path stroke="none" fill="#397EDE" d="M1166.5 161.95 Q1165.2 165.65 1162.2 168.65 1157 174 1149.5 174 1142.05 174 1136.7 168.65 1133.75 165.65 1132.5 161.95 1149.5 165.8 1166.5 161.95"/>
+ <path stroke="none" fill="#3473CB" d="M1166.5 161.95 Q1149.5 165.8 1132.5 161.95 1131.95 160.4 1131.7 158.7 1149.5 163.25 1167.3 158.7 L1166.5 161.95"/>
+ <path stroke="none" fill="#BB2905" d="M1162.9 82.45 Q1166.8 89.2 1167.55 95.1 1168.45 100.95 1165.7 102.5 1162.95 104.1 1158.25 100.45 1153.65 96.8 1149.75 90.05 L1148.85 88.5 Q1147.25 85.3 1147.65 82 1148.05 78.35 1150.8 76.75 1153.55 75.2 1156.95 76.65 1159.95 77.95 1161.95 80.95 L1162.9 82.45"/>
+ <path stroke="none" fill="#BB2905" d="M1143.2 90.15 Q1140.65 94.65 1137.5 97.05 1134.45 99.5 1132.65 98.4 1130.85 97.4 1131.4 93.5 1131.95 89.6 1134.5 85.15 L1135.1 84.1 Q1136.45 82.1 1138.45 81.25 1140.7 80.25 1142.5 81.3 1144.3 82.4 1144.6 84.85 1144.85 86.95 1143.8 89.1 L1143.2 90.15"/>
+ <path stroke="none" fill="#DBD9D9" d="M1213.5 322 Q1212.8 296.75 1194.8 278.75 1186.4 270.35 1176.45 265.7 L1172.45 269.1 Q1162.95 276 1149.5 276 1136.05 276 1126.5 269.1 1124.25 267.5 1122.6 265.75 1112.65 270.35 1104.25 278.75 1086.2 296.75 1085.55 322 L1085.5 320 Q1085.5 293.45 1104.25 274.75 1111.65 267.35 1120.25 262.9 1133.45 256 1149.5 256 1165.55 256 1178.8 262.85 1187.4 267.35 1194.8 274.75 1213.5 293.45 1213.5 320 L1213.5 322"/>
+ <path stroke="none" fill="#D2D0D0" d="M1213.5 322 Q1212.8 347.25 1194.8 365.25 1185.05 375 1173.2 379.7 1163 359.75 1149.5 359.75 1136.1 359.75 1125.9 379.7 1114 375 1104.25 365.25 1086.2 347.25 1085.55 322 1086.2 296.75 1104.25 278.75 1112.65 270.35 1122.6 265.75 1124.25 267.5 1126.5 269.1 1136.05 276 1149.5 276 1162.95 276 1172.45 269.1 L1176.45 265.7 Q1186.4 270.35 1194.8 278.75 1212.8 296.75 1213.5 322"/>
+ <path stroke="none" fill="#E5E3E3" d="M1125.9 379.7 Q1136.1 359.75 1149.5 359.75 1163 359.75 1173.2 379.7 1162.25 384 1149.5 384 1136.8 384 1125.9 379.7"/>
+ <path stroke="none" fill="#FFFFFF" d="M1108.9 305 Q1108.9 299.95 1112.5 296.4 1116.1 292.9 1121.1 292.9 1126.1 292.9 1129.8 296.4 1133.3 299.95 1133.3 305 1133.3 310.05 1129.8 313.5 1126.1 317.15 1121.1 317.15 1116.1 317.15 1112.5 313.5 1108.9 310.05 1108.9 305 M1114.85 305.25 Q1114.85 308.4 1117.1 310.55 1119.25 312.85 1122.45 312.85 1125.6 312.85 1127.85 310.55 1130.1 308.4 1130.1 305.25 1130.1 301.95 1127.85 299.8 1125.6 297.65 1122.45 297.65 1119.25 297.65 1117.1 299.8 1114.85 301.95 1114.85 305.25 M1190.1 305 Q1190.1 310.05 1186.6 313.5 1183 317.15 1177.9 317.15 1172.9 317.15 1169.35 313.5 1165.75 310.05 1165.75 305 1165.75 299.95 1169.35 296.4 1172.9 292.9 1177.9 292.9 1183 292.9 1186.6 296.4 1190.1 299.95 1190.1 305 M1184.25 305.25 Q1184.25 301.95 1182 299.8 1179.75 297.65 1176.6 297.65 1173.5 297.65 1171.15 299.8 1168.9 301.95 1168.9 305.25 1168.9 308.4 1171.15 310.55 1173.5 312.85 1176.6 312.85 1179.75 312.85 1182 310.55 1184.25 308.4 1184.25 305.25"/>
+ <path stroke="none" fill="#5B5B5B" d="M1184.25 305.25 Q1184.25 308.4 1182 310.55 1179.75 312.85 1176.6 312.85 1173.5 312.85 1171.15 310.55 1168.9 308.4 1168.9 305.25 1168.9 301.95 1171.15 299.8 1173.5 297.65 1176.6 297.65 1179.75 297.65 1182 299.8 1184.25 301.95 1184.25 305.25 M1114.85 305.25 Q1114.85 301.95 1117.1 299.8 1119.25 297.65 1122.45 297.65 1125.6 297.65 1127.85 299.8 1130.1 301.95 1130.1 305.25 1130.1 308.4 1127.85 310.55 1125.6 312.85 1122.45 312.85 1119.25 312.85 1117.1 310.55 1114.85 308.4 1114.85 305.25"/>
+ <path stroke="none" fill="#FFFFFF" d="M1142.65 349.15 Q1139.35 350.7 1135.45 350.7 1128.5 350.7 1123.55 345.75 1118.65 340.85 1118.65 333.9 1118.65 326.9 1123.55 322 1128.5 317.05 1135.45 317.05 L1163.95 317.05 Q1170.65 317.2 1175.4 322 1180.35 326.9 1180.35 333.9 1180.35 340.85 1175.4 345.75 1170.5 350.7 1163.5 350.7 1159.6 350.7 1156.35 349.15 1153.8 347.95 1151.6 345.75 L1149.5 343.25 1147.35 345.75 Q1145.2 347.95 1142.65 349.15"/>
+ <path stroke="none" fill="#A8A1A1" d="M1142.65 349.15 Q1145.2 347.95 1147.35 345.75 L1149.5 343.25 1151.6 345.75 Q1153.8 347.95 1156.35 349.15 1153.25 350.7 1149.5 350.7 1145.75 350.7 1142.65 349.15"/>
+ <path stroke="none" fill="#FFC4FF" d="M1137.6 316.3 L1137.5 314.7 1137.5 313.8 Q1137.75 311.55 1141.1 309.9 1144.8 308.15 1150 308.15 1155.15 308.15 1158.8 309.9 1162.15 311.55 1162.45 313.8 L1162.5 314.7 1162.4 316.45 Q1161.9 314.4 1158.8 312.9 1155.15 311.15 1150 311.15 1144.8 311.15 1141.1 312.9 1138.1 314.35 1137.6 316.3"/>
+ <path stroke="none" fill="#FFAAFF" d="M1137.6 316.3 Q1138.1 314.35 1141.1 312.9 1144.8 311.15 1150 311.15 1155.15 311.15 1158.8 312.9 1161.9 314.4 1162.4 316.45 1161.85 320.5 1158.8 323.45 1155.15 327.15 1150 327.15 1144.8 327.15 1141.1 323.45 1138.1 320.45 1137.6 316.3"/>
+ <path stroke="none" fill="#A8A1A1" d="M1113.6 334.45 L1113.6 334 1113.9 333.6 Q1119.45 329.55 1128.3 330.05 L1128.8 330.25 1129 330.7 1129 331.2 1128.6 331.55 Q1121.35 333.55 1115.75 338.5 L1115.3 338.6 1114.85 338.45 1114.65 338.05 1113.6 334.45 M1110.05 322.3 Q1110.1 321.95 1110.3 321.8 L1110.8 321.5 Q1119.35 319.85 1129.15 325.2 L1129.6 325.7 1129.6 326.3 1129.3 326.85 1128.7 327.05 Q1120 326.6 1110.3 328.1 L1109.8 328 1109.35 327.55 1109.35 326.95 1110.05 322.3 M1188.95 322.3 L1189.65 326.95 1189.65 327.55 1189.2 328 1188.7 328.1 Q1179 326.6 1170.3 327.05 L1169.7 326.85 Q1169.4 326.6 1169.4 326.3 L1169.4 325.7 Q1169.55 325.4 1169.85 325.2 1179.65 319.85 1188.2 321.5 L1188.7 321.8 1188.95 322.3 M1185.4 334.45 L1184.35 338.05 1184.15 338.45 1183.7 338.6 1183.25 338.5 Q1177.65 333.55 1170.4 331.55 L1170 331.2 1170 330.7 1170.2 330.25 1170.7 330.05 Q1179.55 329.55 1185.1 333.6 L1185.4 334 1185.4 334.45"/>
+ <path stroke="none" fill="#D5F0FF" d="M192.6 512.6 L192.4 512.7 192 512.9 190.75 513.6 Q164.4 528.65 127.1 528.65 89.8 528.65 63.45 513.6 L62.85 513.25 62.25 512.9 61.85 512.7 61.65 512.55 61.65 512.7 61.6 511.8 61.6 510.5 61.65 508.55 61.85 508.7 62.25 508.9 62.85 509.25 63.45 509.6 Q89.8 524.65 127.1 524.65 164.4 524.65 190.75 509.6 L192 508.9 192.4 508.7 192.6 508.55 192.6 510.5 192.6 511.8 192.6 512.2 192.6 512.6"/>
+ <path stroke="none" fill="#365A66" d="M192.4 508.7 L192 508.9 190.75 509.6 Q164.4 524.65 127.1 524.65 89.8 524.65 63.45 509.6 L62.85 509.25 62.25 508.9 61.85 508.7 Q63.7 485.25 80.75 468.15 94.8 454.15 113.1 450.4 L115.5 449.95 127.1 449 Q134.15 449 140.65 450.3 L143 450.8 Q149.85 452.45 156.1 455.55 165.45 460.2 173.4 468.15 190 484.75 192.25 507.25 L192.4 508.7"/>
+ <path stroke="none" fill="#C3DCE9" d="M61.65 512.7 L61.65 512.55 61.85 512.7 62.25 512.9 62.85 513.25 63.45 513.6 Q89.8 528.65 127.1 528.65 164.4 528.65 190.75 513.6 L192 512.9 192.4 512.7 192.6 512.6 192.5 514.4 192.45 515.25 192.35 516.55 Q191.3 529.35 185.65 540.3 L182.7 545.45 181.9 546.65 Q178.25 551.95 173.4 556.8 L171.4 558.75 Q166.95 562.9 162.1 566.05 146.65 576 127.1 576 108.2 576 93.2 566.7 87.75 563.35 82.8 558.8 L80.75 556.8 Q76.75 552.8 73.65 548.5 L72.35 546.65 69.25 541.55 Q63 530.15 61.85 516.65 L61.85 516.55 61.75 514.8 61.65 512.8 61.65 512.7"/>
+ <path stroke="none" fill="#48798A" d="M192.6 508.55 L192.4 508.7 192.25 507.25 Q190 484.75 173.4 468.15 165.45 460.2 156.1 455.55 149.85 452.45 143 450.8 L140.65 450.3 Q134.15 449 127.1 449 L115.5 449.95 113.1 450.4 Q94.8 454.15 80.75 468.15 63.7 485.25 61.85 508.7 L61.65 508.55 Q62.3 482.65 80.75 464.15 94.8 450.15 113.1 446.4 L114.15 446.2 115.5 445.95 127.1 445 Q134.15 445 140.65 446.3 L141.95 446.6 143 446.8 Q149.85 448.45 156.1 451.55 165.45 456.2 173.4 464.15 190 480.75 192.25 503.25 L192.6 508.55"/>
+ <path stroke="none" fill="#C3DCE9" d="M167.2 498.35 Q170 495.5 170 491.55 169.95 487.6 167.15 484.8 164.4 482.05 160.4 481.95 156.45 482 153.65 484.85 150.85 487.6 150.85 491.5 150.9 495.55 153.65 498.3 156.45 501.1 160.45 501.1 164.4 501.1 167.2 498.35 M169.45 480.85 Q176.55 488.15 178.8 496.05 180.95 504.05 176.95 508.05 172.85 512.15 164.9 509.95 156.9 507.8 149.7 500.55 L149.5 500.2 Q145.55 496.3 145.55 490.65 145.6 484.9 149.6 480.85 153.7 476.75 159.5 476.75 165.05 476.8 169.05 480.55 L169.45 480.85"/>
+ <path stroke="none" fill="#FFFFFF" d="M162.85 496.55 Q164.65 494.75 164.65 492.35 164.65 489.8 162.9 488.05 161.15 486.3 158.6 486.3 156.15 486.25 154.35 488.05 L153.95 488.45 Q152.6 490.05 152.65 492.2 152.7 494.75 154.45 496.5 156.2 498.25 158.7 498.25 160.8 498.25 162.4 496.95 L162.85 496.55 M167.2 498.35 Q164.4 501.1 160.45 501.1 156.45 501.1 153.65 498.3 150.9 495.55 150.85 491.5 150.85 487.6 153.65 484.85 156.45 482 160.4 481.95 164.4 482.05 167.15 484.8 169.95 487.6 170 491.55 170 495.5 167.2 498.35"/>
+ <path stroke="none" fill="#5B5B5B" d="M162.85 496.55 L162.4 496.95 Q160.8 498.25 158.7 498.25 156.2 498.25 154.45 496.5 152.7 494.75 152.65 492.2 152.6 490.05 153.95 488.45 L154.35 488.05 Q156.15 486.25 158.6 486.3 161.15 486.3 162.9 488.05 164.65 489.8 164.65 492.35 164.65 494.75 162.85 496.55"/>
+ <path stroke="none" fill="#C3DCE9" d="M84.65 480.85 L85.05 480.55 Q89.05 476.8 94.6 476.75 100.4 476.75 104.5 480.85 108.5 484.9 108.55 490.65 108.55 496.3 104.6 500.2 L104.4 500.55 Q97.2 507.8 89.2 509.95 81.25 512.15 77.15 508.05 73.15 504.05 75.3 496.05 77.55 488.15 84.65 480.85 M86.9 498.35 Q89.7 501.1 93.65 501.1 97.65 501.1 100.45 498.3 103.2 495.55 103.25 491.5 103.25 487.6 100.45 484.85 97.65 482 93.7 481.95 89.7 482.05 86.95 484.8 84.15 487.6 84.1 491.55 84.1 495.5 86.9 498.35"/>
+ <path stroke="none" fill="#FFFFFF" d="M86.9 498.35 Q84.1 495.5 84.1 491.55 84.15 487.6 86.95 484.8 89.7 482.05 93.7 481.95 97.65 482 100.45 484.85 103.25 487.6 103.25 491.5 103.2 495.55 100.45 498.3 97.65 501.1 93.65 501.1 89.7 501.1 86.9 498.35 M91.25 496.55 L91.7 496.95 Q93.3 498.25 95.4 498.25 97.9 498.25 99.65 496.5 101.4 494.75 101.45 492.2 101.5 490.05 100.15 488.45 L99.75 488.05 Q97.95 486.25 95.5 486.3 92.95 486.3 91.2 488.05 89.45 489.8 89.45 492.35 89.45 494.75 91.25 496.55"/>
+ <path stroke="none" fill="#5B5B5B" d="M91.25 496.55 Q89.45 494.75 89.45 492.35 89.45 489.8 91.2 488.05 92.95 486.3 95.5 486.3 97.95 486.25 99.75 488.05 L100.15 488.45 Q101.5 490.05 101.45 492.2 101.4 494.75 99.65 496.5 97.9 498.25 95.4 498.25 93.3 498.25 91.7 496.95 L91.25 496.55"/>
+ <path stroke="none" fill="#FFFFFF" d="M320 514 L319.95 512 Q319.95 485.5 338.7 466.75 357.45 448 383.95 448 410.4 448 429.15 466.75 447.95 485.5 447.95 512 L447.95 514 Q447.25 488.8 429.15 470.75 410.4 452 383.95 452 357.45 452 338.7 470.75 320.65 488.8 320 514 M421 564.25 Q404.85 576 383.95 576 361.55 576 344.7 562.55 L345.95 560.25 Q361.05 533.9 382.4 533.9 403.75 533.9 418.8 560.25 L421 564.25"/>
+ <path stroke="none" fill="#F0F0F0" d="M421 564.25 L418.8 560.25 Q403.75 533.9 382.4 533.9 361.05 533.9 345.95 560.25 L344.7 562.55 338.7 557.2 Q320.65 539.15 320 514 320.65 488.8 338.7 470.75 357.45 452 383.95 452 410.4 452 429.15 470.75 447.25 488.8 447.95 514 447.25 539.15 429.15 557.2 425.25 561.15 421 564.25"/>
+ <path stroke="none" fill="#FFFFFF" d="M427.65 514.9 Q427.65 511.25 425.2 508.8 422.65 506.25 419 506.25 415.5 506.25 412.9 508.8 410.35 511.25 410.35 514.9 L410.4 515.75 Q410.65 518.7 412.9 520.85 415.5 523.35 419 523.35 422.65 523.35 425.2 520.85 427.35 518.7 427.6 515.75 L427.65 514.9 M435.2 515 Q435.2 520.7 431.15 524.6 427.1 528.7 421.4 528.7 415.8 528.7 411.65 524.6 407.7 520.7 407.7 515 407.7 509.25 411.65 505.25 415.8 501.2 421.4 501.2 427.1 501.2 431.15 505.25 435.2 509.25 435.2 515"/>
+ <path stroke="none" fill="#5B5B5B" d="M427.65 514.9 L427.6 515.75 Q427.35 518.7 425.2 520.85 422.65 523.35 419 523.35 415.5 523.35 412.9 520.85 410.65 518.7 410.4 515.75 L410.35 514.9 Q410.35 511.25 412.9 508.8 415.5 506.25 419 506.25 422.65 506.25 425.2 508.8 427.65 511.25 427.65 514.9"/>
+ <path stroke="none" fill="#5B5B5B" d="M340.25 514.9 Q340.25 511.25 342.7 508.8 345.25 506.25 348.9 506.25 352.4 506.25 355 508.8 357.55 511.25 357.55 514.9 L357.5 515.75 Q357.25 518.7 355 520.85 352.4 523.35 348.9 523.35 345.25 523.35 342.7 520.85 340.55 518.7 340.3 515.75 L340.25 514.9"/>
+ <path stroke="none" fill="#FFFFFF" d="M340.25 514.9 L340.3 515.75 Q340.55 518.7 342.7 520.85 345.25 523.35 348.9 523.35 352.4 523.35 355 520.85 357.25 518.7 357.5 515.75 L357.55 514.9 Q357.55 511.25 355 508.8 352.4 506.25 348.9 506.25 345.25 506.25 342.7 508.8 340.25 511.25 340.25 514.9 M332.7 515 Q332.7 509.25 336.75 505.25 340.8 501.2 346.5 501.2 352.1 501.2 356.25 505.25 360.2 509.25 360.2 515 360.2 520.7 356.25 524.6 352.1 528.7 346.5 528.7 340.8 528.7 336.75 524.6 332.7 520.7 332.7 515"/>
+ <path stroke="none" fill="#D23007" d="M366.3 553.15 Q366.3 549.3 369.75 546.2 L371.8 544.3 Q378.9 537.4 382.35 528.65 382.8 528.2 383.45 528.05 L383.8 528 384.1 528 384.4 528.05 Q385.05 528.2 385.55 528.65 389.05 537.4 396.15 544.35 L398.15 546.2 Q401.6 549.3 401.6 553.15 L401.55 553.3 Q399.6 559.55 391.15 558.55 387.75 558.15 384.95 555.95 L383.95 555.05 382.9 555.95 Q380.15 558.15 376.7 558.55 368.25 559.55 366.35 553.3 L366.3 553.15"/>
+ <path stroke="none" fill="#C62C05" d="M366.3 553.15 L366.35 553.3 Q368.25 559.55 376.7 558.55 380.15 558.15 382.9 555.95 L383.95 555.05 384.95 555.95 Q387.75 558.15 391.15 558.55 399.6 559.55 401.55 553.3 L401.6 553.15 401.3 555.4 Q399.4 563.25 391.05 562 387.7 561.45 384.95 558.7 L383.95 557.6 382.95 558.7 Q380.2 561.45 376.8 562 368.5 563.25 366.6 555.4 366.3 554.25 366.3 553.15"/>
+ <path stroke="none" fill="#FF9900" d="M361.7 524.05 Q362.8 517.1 368 511.8 L370.65 509.55 Q376.45 505.2 384.05 505.2 391.65 505.2 397.45 509.55 L400 511.8 Q405.25 517.1 406.3 524.05 405.8 525.4 404.35 526.65 403.05 521.6 398.85 517.65 L396.5 515.7 Q391.1 511.95 384.05 511.95 377 511.95 371.6 515.7 L369.15 517.65 Q365 521.6 363.7 526.65 362.2 525.45 361.7 524.05"/>
+ <path stroke="none" fill="#F39100" d="M363.7 526.65 Q365 521.6 369.15 517.65 L371.6 515.7 Q377 511.95 384.05 511.95 391.1 511.95 396.5 515.7 L398.85 517.65 Q403.05 521.6 404.35 526.65 402.75 527.95 400 529.05 393.4 531.75 384.05 531.75 374.65 531.75 368 529.05 365.25 527.95 363.7 526.65"/>
+ <path stroke="none" fill="#E08600" d="M363.7 526.65 Q365.25 527.95 368 529.05 374.65 531.75 384.05 531.75 393.4 531.75 400 529.05 402.75 527.95 404.35 526.65 405.8 525.4 406.3 524.05 L406.6 527.75 406.5 529.25 Q406.1 534.25 400 537.85 393.4 541.7 384.05 541.7 374.65 541.7 368 537.85 361.95 534.25 361.5 529.25 L361.45 527.75 Q361.45 525.8 361.7 524.05 362.2 525.45 363.7 526.65"/>
+ <path stroke="none" fill="#F53707" d="M395.25 460.2 Q394.95 457.95 393.25 456.25 391.15 454.15 388.2 454.15 385.75 454.15 383.95 455.55 382.1 454.15 379.7 454.15 376.75 454.15 374.6 456.25 372.95 457.95 372.6 460.2 L372.55 459 Q372.55 456 374.6 453.9 376.75 451.8 379.7 451.8 382.1 451.8 383.95 453.2 385.75 451.8 388.2 451.8 391.15 451.8 393.25 453.9 395.35 456 395.35 459 L395.25 460.2 M372.8 461.05 Q373.1 462.9 371.75 464.6 370.1 466.8 369.8 469.55 L369.75 468.4 Q369.75 464.3 372.55 461.35 L372.8 461.05 M398.1 469.55 Q397.8 466.8 396.15 464.6 394.8 462.9 395.1 461.05 L395.35 461.35 Q396.75 462.8 397.45 464.6 398.15 466.35 398.15 468.4 L398.1 469.55"/>
+ <path stroke="none" fill="#D23007" d="M398.1 469.55 Q397.8 472.2 396.35 474.25 L396.65 476.2 396.7 477.15 396.65 478.35 Q396.25 482.55 393.2 485.6 389.65 489.15 384.7 489.15 L383.95 489.1 383.2 489.15 Q378.2 489.15 374.75 485.6 371.65 482.55 371.25 478.4 L371.2 477.15 371.25 476.15 371.55 474.25 Q370.05 472.2 369.8 469.55 370.1 466.8 371.75 464.6 373.1 462.9 372.8 461.05 L372.6 460.2 Q372.95 457.95 374.6 456.25 376.75 454.15 379.7 454.15 382.1 454.15 383.95 455.55 385.75 454.15 388.2 454.15 391.15 454.15 393.25 456.25 394.95 457.95 395.25 460.2 L395.1 461.05 Q394.8 462.9 396.15 464.6 397.8 466.8 398.1 469.55"/>
+ <path stroke="none" fill="#FFD738" d="M573.9 514 L573.85 512 Q573.85 485.5 592.6 466.75 611.35 448 637.85 448 664.3 448 683.05 466.75 701.85 485.5 701.85 512 L701.85 514 Q701.15 488.8 683.05 470.75 664.3 452 637.85 452 611.35 452 592.6 470.75 574.55 488.8 573.9 514"/>
+ <path stroke="none" fill="#FFCC00" d="M573.9 514 Q574.55 488.8 592.6 470.75 611.35 452 637.85 452 664.3 452 683.05 470.75 701.15 488.8 701.85 514 701.15 539.15 683.05 557.2 679.15 561.15 674.9 564.25 L672.7 560.25 Q657.65 533.9 636.3 533.9 614.95 533.9 599.85 560.25 L598.6 562.55 592.6 557.2 Q574.55 539.15 573.9 514"/>
+ <path stroke="none" fill="#EEBE00" d="M674.9 564.25 Q658.75 576 637.85 576 615.45 576 598.6 562.55 L599.85 560.25 Q614.95 533.9 636.3 533.9 657.65 533.9 672.7 560.25 L674.9 564.25"/>
+ <path stroke="none" fill="#FFFFFF" d="M689.1 515 Q689.1 520.7 685.05 524.6 681 528.7 675.3 528.7 669.7 528.7 665.55 524.6 661.6 520.7 661.6 515 661.6 509.25 665.55 505.25 669.7 501.2 675.3 501.2 681 501.2 685.05 505.25 689.1 509.25 689.1 515 M681.55 514.9 Q681.55 511.25 679.1 508.8 676.55 506.25 672.9 506.25 669.4 506.25 666.8 508.8 664.25 511.25 664.25 514.9 L664.3 515.75 Q664.55 518.7 666.8 520.85 669.4 523.35 672.9 523.35 676.55 523.35 679.1 520.85 681.25 518.7 681.5 515.75 L681.55 514.9"/>
+ <path stroke="none" fill="#5B5B5B" d="M681.55 514.9 L681.5 515.75 Q681.25 518.7 679.1 520.85 676.55 523.35 672.9 523.35 669.4 523.35 666.8 520.85 664.55 518.7 664.3 515.75 L664.25 514.9 Q664.25 511.25 666.8 508.8 669.4 506.25 672.9 506.25 676.55 506.25 679.1 508.8 681.55 511.25 681.55 514.9"/>
+ <path stroke="none" fill="#5B5B5B" d="M594.15 514.9 Q594.15 511.25 596.6 508.8 599.15 506.25 602.8 506.25 606.3 506.25 608.9 508.8 611.45 511.25 611.45 514.9 L611.4 515.75 Q611.15 518.7 608.9 520.85 606.3 523.35 602.8 523.35 599.15 523.35 596.6 520.85 594.45 518.7 594.2 515.75 L594.15 514.9"/>
+ <path stroke="none" fill="#FFFFFF" d="M586.6 515 Q586.6 509.25 590.65 505.25 594.7 501.2 600.4 501.2 606 501.2 610.15 505.25 614.1 509.25 614.1 515 614.1 520.7 610.15 524.6 606 528.7 600.4 528.7 594.7 528.7 590.65 524.6 586.6 520.7 586.6 515 M594.15 514.9 L594.2 515.75 Q594.45 518.7 596.6 520.85 599.15 523.35 602.8 523.35 606.3 523.35 608.9 520.85 611.15 518.7 611.4 515.75 L611.45 514.9 Q611.45 511.25 608.9 508.8 606.3 506.25 602.8 506.25 599.15 506.25 596.6 508.8 594.15 511.25 594.15 514.9"/>
+ <path stroke="none" fill="#FF9900" d="M615.6 524.05 Q616.7 517.1 621.9 511.8 623.2 510.5 624.55 509.55 630.35 505.2 637.95 505.2 645.55 505.2 651.35 509.55 L653.9 511.8 Q659.15 517.1 660.2 524.05 659.7 525.4 658.25 526.65 656.95 521.6 652.75 517.65 L650.4 515.7 Q645 511.95 637.95 511.95 630.9 511.95 625.5 515.7 624.25 516.55 623.05 517.65 618.9 521.6 617.6 526.65 616.1 525.45 615.6 524.05"/>
+ <path stroke="none" fill="#F39100" d="M617.6 526.65 Q618.9 521.6 623.05 517.65 624.25 516.55 625.5 515.7 630.9 511.95 637.95 511.95 645 511.95 650.4 515.7 L652.75 517.65 Q656.95 521.6 658.25 526.65 656.65 527.95 653.9 529.05 647.3 531.75 637.95 531.75 628.55 531.75 621.9 529.05 619.15 527.95 617.6 526.65"/>
+ <path stroke="none" fill="#E08600" d="M617.6 526.65 Q619.15 527.95 621.9 529.05 628.55 531.75 637.95 531.75 647.3 531.75 653.9 529.05 656.65 527.95 658.25 526.65 659.7 525.4 660.2 524.05 L660.5 527.75 660.4 529.25 Q660 534.25 653.9 537.85 647.3 541.7 637.95 541.7 628.55 541.7 621.9 537.85 615.85 534.25 615.4 529.25 L615.35 527.75 Q615.35 525.8 615.6 524.05 616.1 525.45 617.6 526.65"/>
+ <path stroke="none" fill="#EEBE00" d="M651.25 464.45 Q655.15 471.2 655.9 477.1 656.8 482.95 654.05 484.5 651.3 486.1 646.6 482.45 642 478.8 638.1 472.05 L637.2 470.5 Q635.6 467.3 636 464 636.4 460.35 639.15 458.75 641.9 457.2 645.3 458.65 648.3 459.95 650.3 462.95 L651.25 464.45 M631.55 472.15 Q629 476.65 625.85 479.05 622.8 481.5 621 480.4 619.2 479.4 619.75 475.5 620.3 471.6 622.85 467.15 L623.45 466.1 Q624.8 464.1 626.8 463.25 629.05 462.25 630.85 463.3 632.65 464.4 632.95 466.85 633.2 468.95 632.15 471.1 L631.55 472.15"/>
+ <path stroke="none" fill="#BD7841" d="M905.7 452.7 L895.7 452 885.7 452.7 Q865.55 455.65 850.45 470.7 832.4 488.8 831.75 514 L831.7 512 Q831.7 485.5 850.45 466.7 869.2 448 895.7 448 922.2 448 940.95 466.7 959.7 485.5 959.7 512 L959.7 514 Q959 488.8 940.95 470.7 925.85 455.65 905.7 452.7"/>
+ <path stroke="none" fill="#F3DBC8" d="M905.7 452.7 Q905 502.85 925.75 541.25 L865.65 541.25 Q886.4 502.85 885.7 452.7 L895.7 452 905.7 452.7"/>
+ <path stroke="none" fill="#A16639" d="M905.7 452.7 Q925.85 455.65 940.95 470.7 959 488.8 959.7 514 959.3 528.9 952.85 541.25 948.35 549.85 940.95 557.2 922.2 576 895.7 576 869.2 576 850.45 557.2 832.4 539.2 831.75 514 832.4 488.8 850.45 470.7 865.55 455.65 885.7 452.7 886.4 502.85 865.65 541.25 L925.75 541.25 Q905 502.85 905.7 452.7"/>
+ <path stroke="none" fill="#9C6236" d="M871.95 467.8 Q870.6 465.25 874 460.9 877.35 456.4 883.75 452.8 895.25 446.25 907.7 452.8 914 456.4 917.4 460.9 920.8 465.25 919.5 467.75 918.9 466.2 917.4 464.35 914 459.85 907.7 456.2 895.25 449.65 883.75 456.2 877.35 459.85 874 464.35 872.5 466.2 871.95 467.8"/>
+ <path stroke="none" fill="#8E5A32" d="M871.95 467.8 Q872.5 466.2 874 464.35 877.35 459.85 883.75 456.2 895.25 449.65 907.7 456.2 914 459.85 917.4 464.35 918.9 466.2 919.5 467.75 L919.4 467.9 Q917.9 470.55 912.25 469.75 908.45 469.2 904.25 467.3 904.95 469.15 905.15 470.9 L905.2 471.1 Q905.35 472.75 905.05 473.8 904.8 474.8 904.1 475.25 902.45 476.15 899.7 474.05 897.55 472.3 895.7 469.5 893.85 472.3 891.7 474.05 888.95 476.15 887.35 475.25 886.6 474.8 886.3 473.8 886 472.75 886.2 471.15 L886.2 470.9 Q886.5 469.15 887.2 467.3 882.95 469.2 879.15 469.75 873.55 470.55 872 467.9 L871.95 467.8"/>
+ <path stroke="none" fill="#B67340" d="M858.25 543.9 L858.2 542 858.2 541 Q858.6 528.4 869.15 519.35 880.15 510 895.7 510 911.2 510 922.2 519.35 932.75 528.4 933.2 541 L933.2 542 933.15 543.9 Q932.3 532 922.2 523.35 911.2 514 895.7 514 880.15 514 869.15 523.35 859.05 532 858.25 543.9"/>
+ <path stroke="none" fill="#8E5A32" d="M858.25 543.9 Q859.05 532 869.15 523.35 880.15 514 895.7 514 911.2 514 922.2 523.35 932.3 532 933.15 543.9 932.4 555.95 922.2 564.6 911.2 574 895.7 574 880.15 574 869.15 564.6 859 555.9 858.25 543.9 M880.1 534.4 Q881.6 535.8 883.65 535.8 885.8 535.8 887.3 534.3 888.8 532.8 888.8 530.65 888.8 529.55 888.45 528.65 L887.4 527.1 887.25 526.95 Q884.7 524.4 881.85 523.55 L881.65 523.5 Q879.45 522.85 878.1 523.55 877.6 523.75 877.2 524.15 L876.6 525 Q875.95 526.25 876.4 528.15 L876.5 528.65 876.95 529.95 Q877.9 532.2 879.95 534.25 L880.1 534.4 M914.2 524.15 L913.35 523.55 Q911.95 522.85 909.75 523.5 L909.5 523.6 Q906.65 524.45 904.15 526.95 L904 527.1 Q903.35 527.8 903 528.65 902.6 529.55 902.6 530.65 902.6 532.8 904.1 534.3 905.6 535.8 907.75 535.8 909.8 535.8 911.3 534.4 L911.45 534.25 Q913.5 532.2 914.45 529.95 L914.9 528.65 915.05 528.15 Q915.45 526.25 914.8 525 L914.2 524.15"/>
+ <path stroke="none" fill="#704627" d="M914.2 524.15 L914.8 525 Q915.45 526.25 915.05 528.15 L914.9 528.65 914.45 529.95 Q913.5 532.2 911.45 534.25 L911.3 534.4 Q909.8 535.8 907.75 535.8 905.6 535.8 904.1 534.3 902.6 532.8 902.6 530.65 902.6 529.55 903 528.65 903.35 527.8 904 527.1 L904.15 526.95 Q906.65 524.45 909.5 523.6 L909.75 523.5 Q911.95 522.85 913.35 523.55 L914.2 524.15 M880.1 534.4 L879.95 534.25 Q877.9 532.2 876.95 529.95 L876.5 528.65 876.4 528.15 Q875.95 526.25 876.6 525 L877.2 524.15 Q877.6 523.75 878.1 523.55 879.45 522.85 881.65 523.5 L881.85 523.55 Q884.7 524.4 887.25 526.95 L887.4 527.1 888.45 528.65 Q888.8 529.55 888.8 530.65 888.8 532.8 887.3 534.3 885.8 535.8 883.65 535.8 881.6 535.8 880.1 534.4"/>
+ <path stroke="none" fill="#FFFFFF" d="M944.2 494.55 Q944.2 499.7 940.55 503.3 936.9 507 931.7 507 926.6 507 922.9 503.3 919.25 499.7 919.25 494.55 919.25 489.35 922.9 485.7 926.6 482.05 931.7 482.05 936.9 482.05 940.55 485.7 944.2 489.35 944.2 494.55 M939.45 494.75 Q939.45 491.15 936.95 488.6 934.45 486.1 930.8 486.1 927.25 486.1 924.65 488.6 922.15 491.15 922.15 494.75 922.15 498.35 924.65 500.8 927.25 503.35 930.8 503.35 934.45 503.35 936.95 500.8 939.45 498.35 939.45 494.75 M847.2 494.55 Q847.2 489.35 850.85 485.7 854.5 482.05 859.7 482.05 864.8 482.05 868.5 485.7 872.15 489.35 872.15 494.55 872.15 499.7 868.5 503.3 864.8 507 859.7 507 854.5 507 850.85 503.3 847.2 499.7 847.2 494.55 M851.9 494.75 Q851.9 498.35 854.45 500.8 856.95 503.35 860.6 503.35 864.15 503.35 866.7 500.8 869.25 498.35 869.25 494.75 869.25 491.15 866.7 488.6 864.15 486.1 860.6 486.1 856.95 486.1 854.45 488.6 851.9 491.15 851.9 494.75"/>
+ <path stroke="none" fill="#5B5B5B" d="M851.9 494.75 Q851.9 491.15 854.45 488.6 856.95 486.1 860.6 486.1 864.15 486.1 866.7 488.6 869.25 491.15 869.25 494.75 869.25 498.35 866.7 500.8 864.15 503.35 860.6 503.35 856.95 503.35 854.45 500.8 851.9 498.35 851.9 494.75 M939.45 494.75 Q939.45 498.35 936.95 500.8 934.45 503.35 930.8 503.35 927.25 503.35 924.65 500.8 922.15 498.35 922.15 494.75 922.15 491.15 924.65 488.6 927.25 486.1 930.8 486.1 934.45 486.1 936.95 488.6 939.45 491.15 939.45 494.75"/>
+ <path stroke="none" fill="#BD7841" d="M1139.5 452.7 Q1119.35 455.65 1104.25 470.7 1086.2 488.8 1085.55 514 L1085.5 512 Q1085.5 485.5 1104.25 466.7 1123 448 1149.5 448 1176 448 1194.75 466.7 1213.5 485.5 1213.5 512 L1213.5 514 Q1212.8 488.8 1194.75 470.7 1179.65 455.65 1159.5 452.7 L1149.5 452 1139.5 452.7"/>
+ <path stroke="none" fill="#AA6C3B" d="M1139.5 452.7 L1149.5 452 1159.5 452.7 Q1158.8 502.85 1179.55 541.25 L1119.45 541.25 Q1140.2 502.85 1139.5 452.7"/>
+ <path stroke="none" fill="#A16639" d="M1139.5 452.7 Q1140.2 502.85 1119.45 541.25 L1179.55 541.25 Q1158.8 502.85 1159.5 452.7 1179.65 455.65 1194.75 470.7 1212.8 488.8 1213.5 514 1213.1 528.9 1206.65 541.25 1202.15 549.85 1194.75 557.2 1176 576 1149.5 576 1123 576 1104.25 557.2 1086.2 539.2 1085.55 514 1086.2 488.8 1104.25 470.7 1119.35 455.65 1139.5 452.7"/>
+ <path stroke="none" fill="#BD7841" d="M1128.5 467.2 L1128.5 463.45 Q1128.5 460.65 1130.45 458.65 1132.4 456.65 1135.2 456.65 L1163.8 456.65 Q1166.55 456.65 1168.5 458.65 1170.5 460.65 1170.5 463.45 L1170.5 467.2 Q1170.45 465.95 1170 464.85 1169.5 463.65 1168.5 462.65 1166.55 460.65 1163.8 460.65 L1135.2 460.65 Q1132.4 460.65 1130.45 462.65 1129.5 463.65 1129 464.8 1128.55 465.9 1128.5 467.2"/>
+ <path stroke="none" fill="#AA6C3B" d="M1128.5 467.2 Q1128.55 465.9 1129 464.8 1129.5 463.65 1130.45 462.65 1132.4 460.65 1135.2 460.65 L1163.8 460.65 Q1166.55 460.65 1168.5 462.65 1169.5 463.65 1170 464.85 1170.45 465.95 1170.5 467.2 L1170.5 479.1 Q1170.4 481.8 1168.5 483.65 L1164.2 487.2 Q1149.5 497.2 1135.05 487.35 1132.4 485.65 1130.45 483.65 1128.6 481.8 1128.5 479.1 L1128.5 467.2"/>
+ <path stroke="none" fill="#B67340" d="M1112.05 543.9 L1112 542 1112 541 Q1112.4 528.4 1122.95 519.35 1133.95 510 1149.5 510 1165 510 1176 519.35 1186.55 528.4 1187 541 L1187 542 1186.95 543.9 Q1186.1 532 1176 523.35 1165 514 1149.5 514 1133.95 514 1122.95 523.35 1112.85 532 1112.05 543.9"/>
+ <path stroke="none" fill="#8E5A32" d="M1112.05 543.9 Q1112.85 532 1122.95 523.35 1133.95 514 1149.5 514 1165 514 1176 523.35 1186.1 532 1186.95 543.9 1186.2 555.95 1176 564.6 1165 574 1149.5 574 1133.95 574 1122.95 564.6 1112.8 555.9 1112.05 543.9 M1133.9 534.4 Q1135.4 535.8 1137.45 535.8 1139.6 535.8 1141.1 534.3 1142.6 532.8 1142.6 530.65 1142.6 529.55 1142.25 528.65 L1141.2 527.1 1141.05 526.95 Q1138.5 524.4 1135.65 523.55 L1135.45 523.5 Q1133.25 522.85 1131.9 523.55 1131.4 523.75 1131 524.15 L1130.4 525 Q1129.75 526.25 1130.2 528.15 L1130.3 528.65 1130.75 529.95 Q1131.7 532.2 1133.75 534.25 L1133.9 534.4 M1168 524.15 L1167.15 523.55 Q1165.75 522.85 1163.55 523.5 L1163.3 523.6 Q1160.45 524.45 1157.95 526.95 L1157.8 527.1 Q1157.15 527.8 1156.8 528.65 1156.4 529.55 1156.4 530.65 1156.4 532.8 1157.9 534.3 1159.4 535.8 1161.55 535.8 1163.6 535.8 1165.1 534.4 L1165.25 534.25 Q1167.3 532.2 1168.25 529.95 L1168.7 528.65 1168.85 528.15 Q1169.25 526.25 1168.6 525 L1168 524.15"/>
+ <path stroke="none" fill="#704627" d="M1168 524.15 L1168.6 525 Q1169.25 526.25 1168.85 528.15 L1168.7 528.65 1168.25 529.95 Q1167.3 532.2 1165.25 534.25 L1165.1 534.4 Q1163.6 535.8 1161.55 535.8 1159.4 535.8 1157.9 534.3 1156.4 532.8 1156.4 530.65 1156.4 529.55 1156.8 528.65 1157.15 527.8 1157.8 527.1 L1157.95 526.95 Q1160.45 524.45 1163.3 523.6 L1163.55 523.5 Q1165.75 522.85 1167.15 523.55 L1168 524.15 M1133.9 534.4 L1133.75 534.25 Q1131.7 532.2 1130.75 529.95 L1130.3 528.65 1130.2 528.15 Q1129.75 526.25 1130.4 525 L1131 524.15 Q1131.4 523.75 1131.9 523.55 1133.25 522.85 1135.45 523.5 L1135.65 523.55 Q1138.5 524.4 1141.05 526.95 L1141.2 527.1 1142.25 528.65 Q1142.6 529.55 1142.6 530.65 1142.6 532.8 1141.1 534.3 1139.6 535.8 1137.45 535.8 1135.4 535.8 1133.9 534.4"/>
+ <path stroke="none" fill="#FFFFFF" d="M1105.7 494.75 Q1105.7 498.35 1108.25 500.8 1110.75 503.35 1114.4 503.35 1117.95 503.35 1120.5 500.8 1123.05 498.35 1123.05 494.75 1123.05 491.15 1120.5 488.6 1117.95 486.1 1114.4 486.1 1110.75 486.1 1108.25 488.6 1105.7 491.15 1105.7 494.75 M1198 494.55 Q1198 499.7 1194.35 503.3 1190.7 507 1185.5 507 1180.4 507 1176.7 503.3 1173.05 499.7 1173.05 494.55 1173.05 489.35 1176.7 485.7 1180.4 482.05 1185.5 482.05 1190.7 482.05 1194.35 485.7 1198 489.35 1198 494.55 M1193.25 494.75 Q1193.25 491.15 1190.75 488.6 1188.25 486.1 1184.6 486.1 1181.05 486.1 1178.45 488.6 1175.95 491.15 1175.95 494.75 1175.95 498.35 1178.45 500.8 1181.05 503.35 1184.6 503.35 1188.25 503.35 1190.75 500.8 1193.25 498.35 1193.25 494.75 M1101 494.55 Q1101 489.35 1104.65 485.7 1108.3 482.05 1113.5 482.05 1118.6 482.05 1122.3 485.7 1125.95 489.35 1125.95 494.55 1125.95 499.7 1122.3 503.3 1118.6 507 1113.5 507 1108.3 507 1104.65 503.3 1101 499.7 1101 494.55"/>
+ <path stroke="none" fill="#5B5B5B" d="M1193.25 494.75 Q1193.25 498.35 1190.75 500.8 1188.25 503.35 1184.6 503.35 1181.05 503.35 1178.45 500.8 1175.95 498.35 1175.95 494.75 1175.95 491.15 1178.45 488.6 1181.05 486.1 1184.6 486.1 1188.25 486.1 1190.75 488.6 1193.25 491.15 1193.25 494.75 M1105.7 494.75 Q1105.7 491.15 1108.25 488.6 1110.75 486.1 1114.4 486.1 1117.95 486.1 1120.5 488.6 1123.05 491.15 1123.05 494.75 1123.05 498.35 1120.5 500.8 1117.95 503.35 1114.4 503.35 1110.75 503.35 1108.25 500.8 1105.7 498.35 1105.7 494.75"/>
+ <path stroke="none" fill="#B17E58" d="M192 706 Q191.3 680.75 173.3 662.75 164.9 654.35 154.95 649.7 L150.95 653.1 Q141.45 660 128 660 114.55 660 105 653.1 102.75 651.5 101.1 649.75 91.15 654.35 82.75 662.75 64.7 680.75 64.05 706 L64 704 Q64 677.45 82.75 658.75 90.15 651.35 98.75 646.9 111.95 640 128 640 144.05 640 157.3 646.85 165.9 651.35 173.3 658.75 192 677.45 192 704 L192 706"/>
+ <path stroke="none" fill="#986C4C" d="M192 706 Q191.3 731.25 173.3 749.25 163.55 759 151.7 763.7 145.95 752.45 139.15 747.55 149.35 744.8 157.35 736.8 169.5 724.65 169.5 707.45 169.5 690.25 157.35 678.1 145.2 665.95 128 665.95 110.8 665.95 98.65 678.1 86.5 690.25 86.5 707.45 86.5 724.65 98.65 736.8 106.7 744.85 116.9 747.55 110.15 752.45 104.4 763.7 92.5 759 82.75 749.25 64.7 731.25 64.05 706 64.7 680.75 82.75 662.75 91.15 654.35 101.1 649.75 102.75 651.5 105 653.1 114.55 660 128 660 141.45 660 150.95 653.1 L154.95 649.7 Q164.9 654.35 173.3 662.75 191.3 680.75 192 706"/>
+ <path stroke="none" fill="#916546" d="M116.9 747.55 Q106.7 744.85 98.65 736.8 86.5 724.65 86.5 707.45 86.5 690.25 98.65 678.1 110.8 665.95 128 665.95 145.2 665.95 157.35 678.1 169.5 690.25 169.5 707.45 169.5 724.65 157.35 736.8 149.35 744.8 139.15 747.55 133.85 748.95 128 748.95 122.15 748.95 116.9 747.55"/>
+ <path stroke="none" fill="#845C41" d="M116.9 747.55 Q122.15 748.95 128 748.95 133.85 748.95 139.15 747.55 145.95 752.45 151.7 763.7 140.75 768 128 768 115.3 768 104.4 763.7 110.15 752.45 116.9 747.55"/>
+ <path stroke="none" fill="#FFFFFF" d="M94.4 687 Q94.4 681.95 98 678.4 101.6 674.9 106.6 674.9 111.6 674.9 115.3 678.4 118.8 681.95 118.8 687 118.8 692.05 115.3 695.5 111.6 699.15 106.6 699.15 101.6 699.15 98 695.5 94.4 692.05 94.4 687 M100.35 687.25 Q100.35 690.4 102.6 692.55 104.75 694.85 107.95 694.85 111.1 694.85 113.35 692.55 115.6 690.4 115.6 687.25 115.6 683.95 113.35 681.8 111.1 679.65 107.95 679.65 104.75 679.65 102.6 681.8 100.35 683.95 100.35 687.25 M161.6 687 Q161.6 692.05 158.1 695.5 154.5 699.15 149.4 699.15 144.4 699.15 140.85 695.5 137.25 692.05 137.25 687 137.25 681.95 140.85 678.4 144.4 674.9 149.4 674.9 154.5 674.9 158.1 678.4 161.6 681.95 161.6 687 M155.75 687.25 Q155.75 683.95 153.5 681.8 151.25 679.65 148.1 679.65 145 679.65 142.65 681.8 140.4 683.95 140.4 687.25 140.4 690.4 142.65 692.55 145 694.85 148.1 694.85 151.25 694.85 153.5 692.55 155.75 690.4 155.75 687.25"/>
+ <path stroke="none" fill="#5B5B5B" d="M155.75 687.25 Q155.75 690.4 153.5 692.55 151.25 694.85 148.1 694.85 145 694.85 142.65 692.55 140.4 690.4 140.4 687.25 140.4 683.95 142.65 681.8 145 679.65 148.1 679.65 151.25 679.65 153.5 681.8 155.75 683.95 155.75 687.25 M100.35 687.25 Q100.35 683.95 102.6 681.8 104.75 679.65 107.95 679.65 111.1 679.65 113.35 681.8 115.6 683.95 115.6 687.25 115.6 690.4 113.35 692.55 111.1 694.85 107.95 694.85 104.75 694.85 102.6 692.55 100.35 690.4 100.35 687.25"/>
+ <path stroke="none" fill="#F0EDE7" d="M111.95 729.6 L111.9 727.8 111.6 720.15 Q111.6 719.35 111.95 718.6 112.35 717.9 113.05 717.5 113.8 717.05 114.6 717.05 L121.35 717.05 Q122.6 717.05 123.45 717.95 124.35 718.8 124.35 720.05 L124.35 731 Q124.3 729.75 123.45 728.95 122.6 728.05 121.35 728.05 L114.6 728.05 Q113.8 728.05 113.05 728.5 112.35 728.9 111.95 729.6 M131.65 731 L131.65 720.05 Q131.65 718.8 132.55 717.95 133.4 717.05 134.65 717.05 L141.4 717.05 Q142.2 717.05 142.95 717.5 L144.05 718.6 144.4 720.15 144.15 727.8 144.05 729.6 142.95 728.5 Q142.2 728.05 141.4 728.05 L134.65 728.05 Q133.4 728.05 132.55 728.95 131.7 729.75 131.65 731"/>
+ <path stroke="none" fill="#FFFCF5" d="M144.05 729.6 Q142.55 761.5 137.7 764.3 136.55 765.15 135.25 765 133.5 764.95 132.5 763.65 131.7 762.65 131.65 761.5 L131.65 761.2 131.65 731 Q131.7 729.75 132.55 728.95 133.4 728.05 134.65 728.05 L141.4 728.05 Q142.2 728.05 142.95 728.5 L144.05 729.6 M111.95 729.6 Q112.35 728.9 113.05 728.5 113.8 728.05 114.6 728.05 L121.35 728.05 Q122.6 728.05 123.45 728.95 124.3 729.75 124.35 731 L124.35 761.2 124.35 761.5 Q124.3 762.65 123.5 763.65 122.5 764.95 120.75 765 119.45 765.15 118.3 764.3 113.45 761.5 111.95 729.6"/>
+ <path stroke="none" fill="#3C6672" d="M121.15 736.15 Q117.85 737.7 113.95 737.7 107 737.7 102.05 732.75 97.15 727.85 97.15 720.9 97.15 713.9 102.05 709 107 704.05 113.95 704.05 L142.45 704.05 Q149.15 704.2 153.9 709 158.85 713.9 158.85 720.9 158.85 727.85 153.9 732.75 149 737.7 142 737.7 138.1 737.7 134.85 736.15 132.3 734.95 130.1 732.75 L128 730.25 125.85 732.75 Q123.7 734.95 121.15 736.15"/>
+ <path stroke="none" fill="#252525" d="M140.4 703.45 Q139.85 707.5 136.8 710.45 133.15 714.15 128 714.15 122.8 714.15 119.1 710.45 116.1 707.45 115.6 703.3 116.1 701.35 119.1 699.9 122.8 698.15 128 698.15 133.15 698.15 136.8 699.9 139.9 701.4 140.4 703.45"/>
+ <path stroke="none" fill="#333333" d="M140.4 703.45 Q139.9 701.4 136.8 699.9 133.15 698.15 128 698.15 122.8 698.15 119.1 699.9 116.1 701.35 115.6 703.3 L115.5 701.7 115.5 700.8 Q115.75 698.55 119.1 696.9 122.8 695.15 128 695.15 133.15 695.15 136.8 696.9 140.15 698.55 140.45 700.8 L140.5 701.7 140.4 703.45"/>
+ <path stroke="none" fill="#252525" d="M163.9 721.45 L162.85 725.05 162.65 725.45 162.2 725.6 161.75 725.5 Q156.15 720.55 148.9 718.55 L148.5 718.2 148.5 717.7 148.7 717.25 Q148.9 717.1 149.2 717.05 158.05 716.55 163.6 720.6 L163.9 721 163.9 721.45 M167.45 709.3 L168.15 713.95 168.15 714.55 167.7 715 167.2 715.1 Q157.5 713.6 148.8 714.05 L148.2 713.85 147.9 713.3 147.9 712.7 Q148.05 712.4 148.35 712.2 158.15 706.85 166.7 708.5 166.95 708.55 167.2 708.8 L167.45 709.3 M88.55 709.3 Q88.6 708.95 88.8 708.8 L89.3 708.5 Q97.85 706.85 107.65 712.2 L108.1 712.7 108.1 713.3 107.8 713.85 107.2 714.05 Q98.5 713.6 88.8 715.1 L88.3 715 87.85 714.55 87.85 713.95 88.55 709.3 M92.1 721.45 L92.1 721 92.4 720.6 Q97.95 716.55 106.8 717.05 L107.3 717.25 107.5 717.7 107.5 718.2 107.1 718.55 Q99.85 720.55 94.25 725.5 L93.8 725.6 93.35 725.45 93.15 725.05 92.1 721.45"/>
+ <path stroke="none" fill="#BD7841" d="M320 706.45 L319.95 704.45 Q319.95 688.1 327.1 674.65 331.25 666.9 337.8 660.1 L338.7 659.15 Q341.25 656.6 343.9 654.45 L345.6 653.1 Q362.15 640.45 383.95 640.45 405.8 640.45 422.35 653.15 L424.05 654.5 Q426.7 656.65 429.2 659.15 L430.15 660.15 Q436.65 666.9 440.8 674.65 447.95 688.1 447.95 704.45 L447.95 706.45 Q447.25 681.25 429.2 663.15 414.1 648.1 393.95 645.15 L383.95 644.45 373.95 645.15 Q353.8 648.1 338.7 663.15 320.65 681.25 320 706.45"/>
+ <path stroke="none" fill="#A16639" d="M320 706.45 Q320.65 681.25 338.7 663.15 353.8 648.1 373.95 645.15 L383.95 644.45 393.95 645.15 Q414.1 648.1 429.2 663.15 447.25 681.25 447.95 706.45 447.55 721.35 441.1 733.7 436.6 742.3 429.2 749.65 L426.95 751.8 423.05 755.15 Q406.85 741.4 383.95 741.4 361.1 741.4 344.85 755.15 L340.95 751.8 338.7 749.65 Q320.65 731.65 320 706.45 M401.45 663.9 Q401.45 658.7 396.3 655.05 391.2 651.4 383.95 651.4 376.7 651.4 371.55 655.05 366.45 658.7 366.45 663.9 L366.5 664.75 Q366.85 675.35 371.55 683 376.7 691.4 383.95 691.4 391.2 691.4 396.3 683 401.05 675.35 401.45 664.75 L401.45 663.9"/>
+ <path stroke="none" fill="#AA6C3C" d="M401.45 663.9 L401.45 664.75 Q401.05 675.35 396.3 683 391.2 691.4 383.95 691.4 376.7 691.4 371.55 683 366.85 675.35 366.5 664.75 L366.45 663.9 Q366.45 658.7 371.55 655.05 376.7 651.4 383.95 651.4 391.2 651.4 396.3 655.05 401.45 658.7 401.45 663.9"/>
+ <path stroke="none" fill="#955E34" d="M423.05 755.15 Q406.25 768.45 383.95 768.45 361.65 768.45 344.85 755.15 361.1 741.4 383.95 741.4 406.85 741.4 423.05 755.15"/>
+ <path stroke="none" fill="#383838" d="M388.4 717.65 L389.25 718.65 Q390.2 719.6 391.3 720.15 392.7 720.8 394.35 720.8 397.35 720.8 399.5 718.65 L400.75 717 401.25 716.55 401.95 716.6 406.65 719.05 407.1 719.55 407.05 720.2 405.55 722.5 404.5 723.65 Q400.25 727.85 394.35 727.85 388.45 727.85 384.25 723.65 L383.95 723.35 383.65 723.65 Q379.4 727.85 373.5 727.85 367.55 727.85 363.4 723.65 L362.35 722.5 Q361.45 721.4 360.85 720.3 360.65 719.95 360.8 719.65 360.85 719.3 361.2 719.1 L365.8 716.55 366.45 716.45 367 716.9 Q367.55 717.85 368.35 718.65 370.5 720.8 373.5 720.8 375.15 720.8 376.6 720.15 L378.65 718.65 379.5 717.65 Q384.15 719.4 388.4 717.65"/>
+ <path stroke="none" fill="#464646" d="M388.4 717.65 Q384.15 719.4 379.5 717.65 376.85 716.7 374.7 714.55 371.75 711.6 371.1 707.65 371.8 705.7 374.7 704.3 378.55 702.45 383.95 702.45 389.35 702.45 393.2 704.3 396.1 705.75 396.8 707.65 396.15 711.6 393.2 714.55 391.05 716.7 388.4 717.65"/>
+ <path stroke="none" fill="#545454" d="M371.1 707.65 L370.9 705.3 370.9 704.4 Q371.2 702 374.7 700.3 378.55 698.45 383.95 698.45 389.35 698.45 393.2 700.3 396.65 702 397 704.4 L397 705.3 396.8 707.65 Q396.1 705.75 393.2 704.3 389.35 702.45 383.95 702.45 378.55 702.45 374.7 704.3 371.8 705.7 371.1 707.65"/>
+ <path stroke="none" fill="#FFFFFF" d="M422.65 692.25 Q422.65 689.8 420.95 688.15 419.25 686.45 416.85 686.45 414.45 686.45 412.7 688.15 411 689.8 411 692.25 411 694.65 412.7 696.3 414.45 698.05 416.85 698.05 419.25 698.05 420.95 696.3 422.65 694.65 422.65 692.25 M427.15 692.1 Q427.15 695.95 424.45 698.55 421.7 701.35 417.85 701.35 414.05 701.35 411.3 698.55 408.6 695.95 408.6 692.1 408.6 688.25 411.3 685.55 414.05 682.85 417.85 682.85 421.7 682.85 424.45 685.55 427.15 688.25 427.15 692.1 M340.75 692.1 Q340.75 688.25 343.45 685.55 346.2 682.85 350.05 682.85 353.85 682.85 356.6 685.55 359.3 688.25 359.3 692.1 359.3 695.95 356.6 698.55 353.85 701.35 350.05 701.35 346.2 701.35 343.45 698.55 340.75 695.95 340.75 692.1 M345.25 692.25 Q345.25 694.65 346.95 696.3 348.65 698.05 351.05 698.05 353.45 698.05 355.2 696.3 356.9 694.65 356.9 692.25 356.9 689.8 355.2 688.15 353.45 686.45 351.05 686.45 348.65 686.45 346.95 688.15 345.25 689.8 345.25 692.25"/>
+ <path stroke="none" fill="#5B5B5B" d="M345.25 692.25 Q345.25 689.8 346.95 688.15 348.65 686.45 351.05 686.45 353.45 686.45 355.2 688.15 356.9 689.8 356.9 692.25 356.9 694.65 355.2 696.3 353.45 698.05 351.05 698.05 348.65 698.05 346.95 696.3 345.25 694.65 345.25 692.25 M422.65 692.25 Q422.65 694.65 420.95 696.3 419.25 698.05 416.85 698.05 414.45 698.05 412.7 696.3 411 694.65 411 692.25 411 689.8 412.7 688.15 414.45 686.45 416.85 686.45 419.25 686.45 420.95 688.15 422.65 689.8 422.65 692.25"/>
+ <path stroke="none" fill="#8E5A32" d="M427.15 692.1 Q427.15 688.25 424.45 685.55 421.7 682.85 417.85 682.85 414.05 682.85 411.3 685.55 408.6 688.25 408.6 692.1 408.6 695.95 411.3 698.55 414.05 701.35 417.85 701.35 421.7 701.35 424.45 698.55 427.15 695.95 427.15 692.1 M432.8 688.65 Q434.7 695.85 431.85 702 428.95 708.3 422.95 709.9 417 711.45 411.35 707.45 405.8 703.6 403.85 696.4 L403.85 696.35 Q402.25 690.35 405.35 685 408.5 679.6 414.45 678.05 420.45 676.45 425.85 679.55 431.15 682.6 432.8 688.6 L432.8 688.65 M335.1 688.65 L335.1 688.6 Q336.75 682.6 342.05 679.55 347.45 676.45 353.45 678.05 359.4 679.6 362.55 685 365.65 690.35 364.05 696.35 L364.05 696.4 Q362.1 703.6 356.55 707.45 350.9 711.45 344.95 709.9 338.95 708.3 336.05 702 333.2 695.85 335.1 688.65 M340.75 692.1 Q340.75 695.95 343.45 698.55 346.2 701.35 350.05 701.35 353.85 701.35 356.6 698.55 359.3 695.95 359.3 692.1 359.3 688.25 356.6 685.55 353.85 682.85 350.05 682.85 346.2 682.85 343.45 685.55 340.75 688.25 340.75 692.1"/>
+ <path stroke="none" fill="#5A9BF3" d="M702.45 701 L702.25 701.15 702.1 699.7 Q699.85 677.2 683.25 660.6 675.3 652.65 665.95 648 659.7 644.9 652.85 643.25 L650.5 642.75 Q644 641.45 636.95 641.45 L625.35 642.4 622.95 642.85 Q604.65 646.6 590.6 660.6 573.55 677.7 571.7 701.15 L571.5 701 Q572.15 675.1 590.6 656.6 604.65 642.6 622.95 638.85 L624 638.65 625.35 638.4 636.95 637.45 Q644 637.45 650.5 638.75 L651.8 639.05 652.85 639.25 Q659.7 640.9 665.95 644 675.3 648.65 683.25 656.6 699.85 673.2 702.1 695.7 L702.45 701"/>
+ <path stroke="none" fill="#528CDB" d="M571.5 701 L571.7 701.15 Q573.55 677.7 590.6 660.6 604.65 646.6 622.95 642.85 L625.35 642.4 636.95 641.45 Q644 641.45 650.5 642.75 L652.85 643.25 Q659.7 644.9 665.95 648 675.3 652.65 683.25 660.6 699.85 677.2 702.1 699.7 L702.25 701.15 702.45 701 702.45 702.95 702.45 704.25 702.45 704.65 702.45 705.05 702.35 706.85 702.3 707.7 702.2 709 Q701.15 721.8 695.5 732.75 L692.55 737.9 691.75 739.1 Q688.1 744.4 683.25 749.25 L681.25 751.2 Q676.8 755.35 671.95 758.5 656.5 768.45 636.95 768.45 618.05 768.45 603.05 759.15 597.6 755.8 592.65 751.25 L590.6 749.25 Q586.6 745.25 583.5 740.95 L582.2 739.1 579.1 734 Q572.85 722.6 571.7 709.1 L571.7 709 571.6 707.25 571.5 705.25 571.5 705.15 571.45 704.25 571.45 702.95 571.5 701 M624.35 669.7 Q624.35 667.75 622.95 666.35 621.55 664.95 619.6 664.95 617.65 664.95 616.25 666.35 614.85 667.75 614.85 669.7 614.85 671.65 616.25 673.05 617.65 674.45 619.6 674.45 621.55 674.45 622.95 673.05 624.35 671.65 624.35 669.7 M613.2 657.75 Q613.2 656.3 612.15 655.25 611.1 654.2 609.65 654.2 608.2 654.2 607.15 655.25 606.1 656.3 606.1 657.75 606.1 659.2 607.15 660.25 608.2 661.3 609.65 661.3 611.1 661.3 612.15 660.25 613.2 659.2 613.2 657.75 M610.5 672.35 Q610.5 670 608.8 668.3 607.15 666.65 604.8 666.65 602.45 666.65 600.75 668.3 599.1 670 599.1 672.35 599.1 674.7 600.75 676.35 602.45 678.05 604.8 678.05 607.15 678.05 608.8 676.35 610.5 674.7 610.5 672.35 M658.15 753.2 Q657.55 750.9 655.45 749.75 653.45 748.6 651.2 749.2 648.9 749.8 647.65 751.85 646.55 753.85 647.15 756.15 647.75 758.4 649.75 759.6 651.85 760.8 654.15 760.2 656.4 759.6 657.55 757.5 658.75 755.45 658.15 753.2 M670.8 747.1 Q670.3 745.2 668.6 744.2 666.9 743.2 665.05 743.7 663.15 744.2 662.15 745.95 661.15 747.65 661.65 749.55 662.2 751.4 663.9 752.4 665.6 753.35 667.5 752.85 669.35 752.35 670.35 750.65 671.35 748.95 670.8 747.1 M657 738.4 Q656.6 737 655.35 736.25 654 735.5 652.6 735.9 651.2 736.25 650.5 737.55 649.75 738.85 650.15 740.25 650.5 741.65 651.8 742.4 653.05 743.1 654.45 742.75 655.85 742.35 656.65 741.1 657.35 739.8 657 738.4"/>
+ <path stroke="none" fill="#4A7FC6" d="M657 738.4 Q657.35 739.8 656.65 741.1 655.85 742.35 654.45 742.75 653.05 743.1 651.8 742.4 650.5 741.65 650.15 740.25 649.75 738.85 650.5 737.55 651.2 736.25 652.6 735.9 654 735.5 655.35 736.25 656.6 737 657 738.4 M670.8 747.1 Q671.35 748.95 670.35 750.65 669.35 752.35 667.5 752.85 665.6 753.35 663.9 752.4 662.2 751.4 661.65 749.55 661.15 747.65 662.15 745.95 663.15 744.2 665.05 743.7 666.9 743.2 668.6 744.2 670.3 745.2 670.8 747.1 M658.15 753.2 Q658.75 755.45 657.55 757.5 656.4 759.6 654.15 760.2 651.85 760.8 649.75 759.6 647.75 758.4 647.15 756.15 646.55 753.85 647.65 751.85 648.9 749.8 651.2 749.2 653.45 748.6 655.45 749.75 657.55 750.9 658.15 753.2 M610.5 672.35 Q610.5 674.7 608.8 676.35 607.15 678.05 604.8 678.05 602.45 678.05 600.75 676.35 599.1 674.7 599.1 672.35 599.1 670 600.75 668.3 602.45 666.65 604.8 666.65 607.15 666.65 608.8 668.3 610.5 670 610.5 672.35 M613.2 657.75 Q613.2 659.2 612.15 660.25 611.1 661.3 609.65 661.3 608.2 661.3 607.15 660.25 606.1 659.2 606.1 657.75 606.1 656.3 607.15 655.25 608.2 654.2 609.65 654.2 611.1 654.2 612.15 655.25 613.2 656.3 613.2 657.75 M624.35 669.7 Q624.35 671.65 622.95 673.05 621.55 674.45 619.6 674.45 617.65 674.45 616.25 673.05 614.85 671.65 614.85 669.7 614.85 667.75 616.25 666.35 617.65 664.95 619.6 664.95 621.55 664.95 622.95 666.35 624.35 667.75 624.35 669.7"/>
+ <path stroke="none" fill="#5A9BF3" d="M690.9 722.6 L690.7 723.05 Q689.1 728.3 684.3 731.15 679.3 734.05 673.7 732.55 668.2 731.05 665.3 726.1 662.5 721.2 663.95 715.85 L663.9 715.45 Q666.55 705.6 672.4 699.7 678.15 693.8 683.75 695.3 689.25 696.75 691.35 704.8 693.35 712.75 690.9 722.6 M680.2 708.6 Q676.4 707.65 673 709.6 669.5 711.6 668.5 715.4 667.45 719.2 669.45 722.7 671.4 726.05 675.2 727.05 679.05 728.1 682.5 726.2 685.9 724.15 686.95 720.35 687.95 716.5 686 713.1 684.05 709.7 680.2 708.6 M584.8 722.6 Q582.35 712.75 584.35 704.8 586.45 696.75 591.95 695.3 597.55 693.8 603.3 699.7 609.15 705.6 611.8 715.45 L611.75 715.85 Q613.2 721.2 610.4 726.1 607.5 731.05 602 732.55 596.4 734.05 591.4 731.15 586.6 728.3 585 723.05 L584.8 722.6 M595.5 708.6 Q591.65 709.7 589.7 713.1 587.75 716.5 588.75 720.35 589.8 724.15 593.2 726.2 596.65 728.1 600.5 727.05 604.3 726.05 606.25 722.7 608.25 719.2 607.2 715.4 606.2 711.6 602.7 709.6 599.3 707.65 595.5 708.6"/>
+ <path stroke="none" fill="#FFFFFF" d="M595.5 708.6 Q599.3 707.65 602.7 709.6 606.2 711.6 607.2 715.4 608.25 719.2 606.25 722.7 604.3 726.05 600.5 727.05 596.65 728.1 593.2 726.2 589.8 724.15 588.75 720.35 587.75 716.5 589.7 713.1 591.65 709.7 595.5 708.6 M680.2 708.6 Q684.05 709.7 686 713.1 687.95 716.5 686.95 720.35 685.9 724.15 682.5 726.2 679.05 728.1 675.2 727.05 671.4 726.05 669.45 722.7 667.45 719.2 668.5 715.4 669.5 711.6 673 709.6 676.4 707.65 680.2 708.6 M677.3 712.3 L676.7 712.2 Q674.7 711.9 672.85 712.95 670.7 714.2 670.1 716.55 669.4 719 670.7 721.2 671.7 723.1 673.65 723.8 L674.2 723.95 Q676.65 724.6 678.8 723.35 681 722.05 681.6 719.7 682.25 717.25 680.95 715.05 679.75 713 677.3 712.3 M598.4 712.3 Q595.95 713 594.75 715.05 593.45 717.25 594.1 719.7 594.7 722.05 596.9 723.35 599.05 724.6 601.5 723.95 L602.05 723.8 Q604 723.1 605 721.2 606.3 719 605.6 716.55 605 714.2 602.85 712.95 601 711.9 599 712.2 L598.4 712.3"/>
+ <path stroke="none" fill="#5B5B5B" d="M598.4 712.3 L599 712.2 Q601 711.9 602.85 712.95 605 714.2 605.6 716.55 606.3 719 605 721.2 604 723.1 602.05 723.8 L601.5 723.95 Q599.05 724.6 596.9 723.35 594.7 722.05 594.1 719.7 593.45 717.25 594.75 715.05 595.95 713 598.4 712.3 M677.3 712.3 Q679.75 713 680.95 715.05 682.25 717.25 681.6 719.7 681 722.05 678.8 723.35 676.65 724.6 674.2 723.95 L673.65 723.8 Q671.7 723.1 670.7 721.2 669.4 719 670.1 716.55 670.7 714.2 672.85 712.95 674.7 711.9 676.7 712.2 L677.3 712.3"/>
+ <path stroke="none" fill="#FFFCF5" d="M632.25 680.2 L635.8 646.4 Q635.9 645.55 636.5 645 L636.9 644.75 637.9 644.5 638.95 644.75 639.3 645 639.35 645 Q639.95 645.55 640 646.4 L643.6 680 637.55 680.75 632.25 680.2 M644.05 683.9 L645.75 700.1 Q643.55 702.25 637.55 702.3 632.1 702.35 630.05 700.45 L631.8 684.15 Q633.9 684.85 637.55 684.8 641.65 684.75 644.05 683.9 M646.2 704.35 L646.95 711.4 Q646.05 716.7 637.55 716.85 629.6 716.95 628.85 711.8 L629.6 704.75 Q631.45 707.15 637.55 707.05 644.2 706.95 646.2 704.35"/>
+ <path stroke="none" fill="#F0EDE7" d="M646.2 704.35 Q644.2 706.95 637.55 707.05 631.45 707.15 629.6 704.75 L630.05 700.45 Q632.1 702.35 637.55 702.3 643.55 702.25 645.75 700.1 L646.2 704.35 M643.6 680 L644.05 683.9 Q641.65 684.75 637.55 684.8 633.9 684.85 631.8 684.15 L632.25 680.2 637.55 680.75 643.6 680 M646.95 711.4 L647.05 712.25 Q647.3 720.95 637.55 721.15 628.2 721.35 628.75 712.25 L628.85 711.8 Q629.6 716.95 637.55 716.85 646.05 716.7 646.95 711.4"/>
+ <path stroke="none" fill="#E7E7E7" d="M621.15 730.9 Q617.9 738.15 621.15 747.25 L618.55 746.4 Q615.4 745.3 614 742.35 612.55 739.35 613.65 736.3 614.7 733.15 617.7 731.7 619.4 730.9 621.15 730.9 M655.15 747.25 Q658.05 738.6 655.15 730.95 L657.55 731.55 Q660.6 732.75 661.85 735.8 663.1 738.85 661.9 741.9 660.65 744.9 657.65 746.25 L655.15 747.25"/>
+ <path stroke="none" fill="#FFFFFF" d="M621.15 730.9 Q622.45 730.9 623.75 731.35 638.9 736.65 651.5 731.55 653.3 730.8 655.15 730.95 658.05 738.6 655.15 747.25 639.55 752.9 621.15 747.25 617.9 738.15 621.15 730.9"/>
+ <path stroke="none" fill="#BD7841" d="M831.75 1090 L831.7 1088 Q831.7 1071.65 838.85 1058.2 843 1050.45 849.55 1043.65 L850.45 1042.7 855.65 1038 857.35 1036.65 Q873.9 1024 895.7 1024 917.55 1024 934.1 1036.7 L935.8 1038.05 940.95 1042.7 941.9 1043.7 Q948.4 1050.45 952.55 1058.2 955.05 1062.95 956.7 1068.05 L957.9 1072.3 Q959.7 1079.8 959.7 1088 L959.7 1090 Q959.45 1080.65 956.8 1072.3 L955.3 1068.05 Q950.6 1056.35 940.95 1046.7 925.85 1031.65 905.7 1028.7 L895.7 1028 885.7 1028.7 Q865.55 1031.65 850.45 1046.7 832.4 1064.8 831.75 1090"/>
+ <path stroke="none" fill="#A16639" d="M831.75 1090 Q832.4 1064.8 850.45 1046.7 865.55 1031.65 885.7 1028.7 L895.7 1028 905.7 1028.7 Q925.85 1031.65 940.95 1046.7 950.6 1056.35 955.3 1068.05 L956.8 1072.3 Q959.45 1080.65 959.7 1090 959.6 1094.5 958.9 1098.8 957.35 1108.65 952.85 1117.25 948.35 1125.85 940.95 1133.2 L938.7 1135.35 934.8 1138.7 Q928.5 1133.35 921.25 1130.1 926.35 1127.95 930.9 1124.8 L931.7 1124.2 935.4 1121.3 936.45 1120.35 Q946.35 1111 946 1100.45 945.7 1090 938.85 1098.2 936.55 1100.9 932.65 1101.95 L932.6 1101.95 Q926.6 1103.55 921.25 1100.45 L918.9 1098.8 Q915.5 1095.9 914.3 1091.35 912.7 1085.35 915.8 1079.95 918.85 1074.65 924.85 1073 L924.9 1073 928.95 1072.3 932 1072.3 Q938.05 1072.35 933.4 1068.1 L933.4 1068.05 931.7 1066.45 930.95 1065.85 Q925.55 1061.15 919.4 1058.2 916 1056.6 912.35 1055.5 913.05 1052.1 913.2 1048.3 L913.2 1047.45 Q913.2 1042.25 908.05 1038.6 902.95 1034.95 895.7 1034.95 888.45 1034.95 883.3 1038.6 878.2 1042.25 878.2 1047.45 L878.25 1048.3 Q878.4 1052.1 879.05 1055.55 868.4 1058.75 859.8 1066.45 L858.1 1068.05 Q854.1 1072.65 860.45 1072.3 L861.4 1072.3 866.45 1073.05 866.5 1073.05 Q872.5 1074.7 875.55 1080 878.65 1085.4 877.05 1091.4 875.9 1095.9 872.5 1098.8 871.4 1099.75 870.1 1100.5 864.75 1103.6 858.75 1102 L858.7 1102 Q854.75 1100.95 852.75 1098.75 845.45 1090.8 844.85 1098.8 845.05 1111.25 855.4 1120.75 L858.1 1122.95 859.8 1124.2 Q864.65 1127.75 870.2 1130.15 862.9 1133.4 856.6 1138.7 L852.7 1135.35 850.45 1133.2 Q832.4 1115.2 831.75 1090 M928.35 1078.65 Q924.5 1078.65 921.8 1081.35 919.1 1084.1 919.1 1087.95 919.1 1091.75 921.8 1094.5 924.5 1097.2 928.35 1097.2 932.2 1097.2 934.8 1094.5 937.6 1091.75 937.6 1087.95 937.6 1084.1 934.8 1081.35 932.2 1078.65 928.35 1078.65 M863 1078.7 Q859.15 1078.7 856.55 1081.4 853.75 1084.15 853.75 1088 853.75 1091.8 856.55 1094.55 859.15 1097.25 863 1097.25 866.85 1097.25 869.55 1094.55 872.25 1091.8 872.25 1088 872.25 1084.15 869.55 1081.4 866.85 1078.7 863 1078.7"/>
+ <path stroke="none" fill="#AA6C3C" d="M879.05 1055.55 Q878.4 1052.1 878.25 1048.3 L878.2 1047.45 Q878.2 1042.25 883.3 1038.6 888.45 1034.95 895.7 1034.95 902.95 1034.95 908.05 1038.6 913.2 1042.25 913.2 1047.45 L913.2 1048.3 Q913.05 1052.1 912.35 1055.5 904.55 1053.15 895.7 1053.15 L894.1 1053.2 Q886.15 1053.4 879.05 1055.55"/>
+ <path stroke="none" fill="#EBCEB7" d="M879.05 1055.55 Q886.15 1053.4 894.1 1053.2 L895.7 1053.15 Q904.55 1053.15 912.35 1055.5 916 1056.6 919.4 1058.2 925.55 1061.15 930.95 1065.85 L931.7 1066.45 933.4 1068.05 933.4 1068.1 Q938.05 1072.35 932 1072.3 L928.95 1072.3 924.9 1073 924.85 1073 Q918.85 1074.65 915.8 1079.95 912.7 1085.35 914.3 1091.35 915.5 1095.9 918.9 1098.8 L921.25 1100.45 Q926.6 1103.55 932.6 1101.95 L932.65 1101.95 Q936.55 1100.9 938.85 1098.2 945.7 1090 946 1100.45 946.35 1111 936.45 1120.35 L935.4 1121.3 931.7 1124.2 930.9 1124.8 Q926.35 1127.95 921.25 1130.1 L919.4 1130.85 Q908.7 1134.95 895.7 1134.95 L894.1 1134.95 Q882.3 1134.7 872.45 1131.05 L870.2 1130.15 Q864.65 1127.75 859.8 1124.2 L858.1 1122.95 855.4 1120.75 Q845.05 1111.25 844.85 1098.8 845.45 1090.8 852.75 1098.75 854.75 1100.95 858.7 1102 L858.75 1102 Q864.75 1103.6 870.1 1100.5 871.4 1099.75 872.5 1098.8 875.9 1095.9 877.05 1091.4 878.65 1085.4 875.55 1080 872.5 1074.7 866.5 1073.05 L866.45 1073.05 861.4 1072.3 860.45 1072.3 Q854.1 1072.65 858.1 1068.05 L859.8 1066.45 Q868.4 1058.75 879.05 1055.55 M908.55 1098.1 L908.75 1095.75 908.75 1094.85 Q908.4 1092.45 904.95 1090.75 901.1 1088.9 895.7 1088.9 890.3 1088.9 886.45 1090.75 882.95 1092.45 882.65 1094.85 L882.65 1095.75 882.85 1098.1 883 1098.8 Q883.75 1102.3 886.45 1105 888.6 1107.15 891.25 1108.1 L890.4 1109.1 888.35 1110.6 Q886.9 1111.25 885.25 1111.25 882.25 1111.25 880.1 1109.1 L878.75 1107.35 Q878.55 1107 878.2 1106.9 L877.55 1107 872.95 1109.55 Q872.6 1109.75 872.55 1110.1 872.4 1110.4 872.6 1110.75 L874.1 1112.95 875.15 1114.1 Q879.3 1118.3 885.25 1118.3 891.15 1118.3 895.4 1114.1 L895.7 1113.8 896 1114.1 Q900.2 1118.3 906.1 1118.3 912 1118.3 916.25 1114.1 L917.3 1112.95 918.8 1110.65 918.85 1110 918.4 1109.5 913.7 1107.05 913 1107 912.5 1107.45 911.25 1109.1 Q909.1 1111.25 906.1 1111.25 904.45 1111.25 903.05 1110.6 901.95 1110.05 901 1109.1 L900.15 1108.1 Q902.8 1107.15 904.95 1105 907.65 1102.3 908.45 1098.8 L908.55 1098.1"/>
+ <path stroke="none" fill="#FFFFFF" d="M928.35 1078.65 Q932.2 1078.65 934.8 1081.35 937.6 1084.1 937.6 1087.95 937.6 1091.75 934.8 1094.5 932.2 1097.2 928.35 1097.2 924.5 1097.2 921.8 1094.5 919.1 1091.75 919.1 1087.95 919.1 1084.1 921.8 1081.35 924.5 1078.65 928.35 1078.65 M928.5 1083.15 Q926.05 1083.15 924.4 1084.85 922.7 1086.55 922.7 1088.95 922.7 1091.35 924.4 1093.1 926.05 1094.8 928.5 1094.8 930.9 1094.8 932.55 1093.1 934.3 1091.35 934.3 1088.95 934.3 1086.55 932.55 1084.85 930.9 1083.15 928.5 1083.15 M863 1078.7 Q866.85 1078.7 869.55 1081.4 872.25 1084.15 872.25 1088 872.25 1091.8 869.55 1094.55 866.85 1097.25 863 1097.25 859.15 1097.25 856.55 1094.55 853.75 1091.8 853.75 1088 853.75 1084.15 856.55 1081.4 859.15 1078.7 863 1078.7 M862.85 1083.2 Q860.45 1083.2 858.8 1084.9 857.05 1086.6 857.05 1089 857.05 1091.4 858.8 1093.15 860.45 1094.85 862.85 1094.85 865.3 1094.85 866.95 1093.15 868.65 1091.4 868.65 1089 868.65 1086.6 866.95 1084.9 865.3 1083.2 862.85 1083.2"/>
+ <path stroke="none" fill="#5B5B5B" d="M862.85 1083.2 Q865.3 1083.2 866.95 1084.9 868.65 1086.6 868.65 1089 868.65 1091.4 866.95 1093.15 865.3 1094.85 862.85 1094.85 860.45 1094.85 858.8 1093.15 857.05 1091.4 857.05 1089 857.05 1086.6 858.8 1084.9 860.45 1083.2 862.85 1083.2 M928.5 1083.15 Q930.9 1083.15 932.55 1084.85 934.3 1086.55 934.3 1088.95 934.3 1091.35 932.55 1093.1 930.9 1094.8 928.5 1094.8 926.05 1094.8 924.4 1093.1 922.7 1091.35 922.7 1088.95 922.7 1086.55 924.4 1084.85 926.05 1083.15 928.5 1083.15"/>
+ <path stroke="none" fill="#464646" d="M908.55 1098.1 L908.45 1098.8 Q907.65 1102.3 904.95 1105 902.8 1107.15 900.15 1108.1 895.9 1109.85 891.25 1108.1 888.6 1107.15 886.45 1105 883.75 1102.3 883 1098.8 L882.85 1098.1 Q883.55 1096.15 886.45 1094.75 890.3 1092.9 895.7 1092.9 901.1 1092.9 904.95 1094.75 907.85 1096.2 908.55 1098.1"/>
+ <path stroke="none" fill="#545454" d="M908.55 1098.1 Q907.85 1096.2 904.95 1094.75 901.1 1092.9 895.7 1092.9 890.3 1092.9 886.45 1094.75 883.55 1096.15 882.85 1098.1 L882.65 1095.75 882.65 1094.85 Q882.95 1092.45 886.45 1090.75 890.3 1088.9 895.7 1088.9 901.1 1088.9 904.95 1090.75 908.4 1092.45 908.75 1094.85 L908.75 1095.75 908.55 1098.1"/>
+ <path stroke="none" fill="#383838" d="M900.15 1108.1 L901 1109.1 Q901.95 1110.05 903.05 1110.6 904.45 1111.25 906.1 1111.25 909.1 1111.25 911.25 1109.1 L912.5 1107.45 913 1107 913.7 1107.05 918.4 1109.5 918.85 1110 918.8 1110.65 917.3 1112.95 916.25 1114.1 Q912 1118.3 906.1 1118.3 900.2 1118.3 896 1114.1 L895.7 1113.8 895.4 1114.1 Q891.15 1118.3 885.25 1118.3 879.3 1118.3 875.15 1114.1 L874.1 1112.95 872.6 1110.75 Q872.4 1110.4 872.55 1110.1 872.6 1109.75 872.95 1109.55 L877.55 1107 878.2 1106.9 Q878.55 1107 878.75 1107.35 L880.1 1109.1 Q882.25 1111.25 885.25 1111.25 886.9 1111.25 888.35 1110.6 L890.4 1109.1 891.25 1108.1 Q895.9 1109.85 900.15 1108.1"/>
+ <path stroke="none" fill="#955E34" d="M934.8 1138.7 Q918 1152 895.7 1152 873.4 1152 856.6 1138.7 862.9 1133.4 870.2 1130.15 L872.45 1131.05 Q882.3 1134.7 894.1 1134.95 L895.7 1134.95 Q908.7 1134.95 919.4 1130.85 L921.25 1130.1 Q928.5 1133.35 934.8 1138.7"/>
+ <path stroke="none" fill="#704E35" d="M1186.95 736.05 Q1186.1 724.15 1176 715.5 1173 712.95 1169.65 711.1 1160.75 706.15 1149.5 706.15 1138.25 706.15 1129.4 711.05 1126 712.9 1122.95 715.5 1112.85 724.15 1112.05 736.05 L1112 734.15 1112 733.15 Q1112.4 720.55 1122.95 711.5 1126.7 708.3 1131 706.2 1139.25 702.15 1149.5 702.15 1159.75 702.15 1168 706.25 1172.25 708.3 1176 711.5 1186.55 720.55 1187 733.15 L1187 734.15 1186.95 736.05"/>
+ <path stroke="none" fill="#5F422D" d="M1186.95 736.05 Q1186.2 748.1 1176 756.75 1165 766.15 1149.5 766.15 1133.95 766.15 1122.95 756.75 1112.8 748.05 1112.05 736.05 1112.85 724.15 1122.95 715.5 1126 712.9 1129.4 711.05 1138.25 706.15 1149.5 706.15 1160.75 706.15 1169.65 711.1 1173 712.95 1176 715.5 1186.1 724.15 1186.95 736.05 M1168 706.25 Q1159.75 702.15 1149.5 702.15 1139.25 702.15 1131 706.2 1139.95 678.1 1139.5 644.85 L1149.5 644.15 1159.5 644.85 Q1159.05 678.1 1168 706.25 M1133.9 726.55 Q1135.4 727.95 1137.45 727.95 1139.6 727.95 1141.1 726.45 1142.6 724.95 1142.6 722.8 1142.6 721.7 1142.25 720.8 L1141.2 719.25 1141.05 719.1 Q1138.5 716.55 1135.65 715.7 L1135.45 715.65 Q1133.25 715 1131.9 715.7 1131.4 715.9 1131 716.3 L1130.4 717.15 Q1129.75 718.4 1130.2 720.3 L1130.3 720.8 1130.75 722.1 Q1131.7 724.35 1133.75 726.4 L1133.9 726.55 M1168 716.3 L1167.15 715.7 Q1165.75 715 1163.55 715.65 L1163.3 715.75 Q1160.45 716.6 1157.95 719.1 L1157.8 719.25 Q1157.15 719.95 1156.8 720.8 1156.4 721.7 1156.4 722.8 1156.4 724.95 1157.9 726.45 1159.4 727.95 1161.55 727.95 1163.6 727.95 1165.1 726.55 L1165.25 726.4 Q1167.3 724.35 1168.25 722.1 L1168.7 720.8 1168.85 720.3 Q1169.25 718.4 1168.6 717.15 L1168 716.3"/>
+ <path stroke="none" fill="#A16639" d="M1186.95 736.05 L1187 734.15 1187 733.15 Q1186.55 720.55 1176 711.5 1172.25 708.3 1168 706.25 1159.05 678.1 1159.5 644.85 1179.65 647.8 1194.75 662.85 1212.8 680.95 1213.5 706.15 1213.1 721.05 1206.65 733.4 1202.15 742 1194.75 749.35 1176 768.15 1149.5 768.15 1123 768.15 1104.25 749.35 1086.2 731.35 1085.55 706.15 1086.2 680.95 1104.25 662.85 1119.35 647.8 1139.5 644.85 1139.95 678.1 1131 706.2 1126.7 708.3 1122.95 711.5 1112.4 720.55 1112 733.15 L1112 734.15 1112.05 736.05 Q1112.8 748.05 1122.95 756.75 1133.95 766.15 1149.5 766.15 1165 766.15 1176 756.75 1186.2 748.1 1186.95 736.05"/>
+ <path stroke="none" fill="#4F3725" d="M1133.9 726.55 L1133.75 726.4 Q1131.7 724.35 1130.75 722.1 L1130.3 720.8 1130.2 720.3 Q1129.75 718.4 1130.4 717.15 L1131 716.3 Q1131.4 715.9 1131.9 715.7 1133.25 715 1135.45 715.65 L1135.65 715.7 Q1138.5 716.55 1141.05 719.1 L1141.2 719.25 1142.25 720.8 Q1142.6 721.7 1142.6 722.8 1142.6 724.95 1141.1 726.45 1139.6 727.95 1137.45 727.95 1135.4 727.95 1133.9 726.55 M1168 716.3 L1168.6 717.15 Q1169.25 718.4 1168.85 720.3 L1168.7 720.8 1168.25 722.1 Q1167.3 724.35 1165.25 726.4 L1165.1 726.55 Q1163.6 727.95 1161.55 727.95 1159.4 727.95 1157.9 726.45 1156.4 724.95 1156.4 722.8 1156.4 721.7 1156.8 720.8 1157.15 719.95 1157.8 719.25 L1157.95 719.1 Q1160.45 716.6 1163.3 715.75 L1163.55 715.65 Q1165.75 715 1167.15 715.7 L1168 716.3"/>
+ <path stroke="none" fill="#BD7841" d="M1085.55 706.15 L1085.5 704.15 Q1085.5 677.65 1104.25 658.85 1123 640.15 1149.5 640.15 1176 640.15 1194.75 658.85 1213.5 677.65 1213.5 704.15 L1213.5 706.15 Q1212.8 680.95 1194.75 662.85 1179.65 647.8 1159.5 644.85 L1149.5 644.15 1139.5 644.85 Q1119.35 647.8 1104.25 662.85 1086.2 680.95 1085.55 706.15"/>
+ <path stroke="none" fill="#5B5B5B" d="M1107.45 693.7 Q1107.45 691.05 1109.25 689.25 1111.1 687.4 1113.75 687.4 1116.3 687.4 1118.2 689.25 1120.05 691.05 1120.05 693.7 1120.05 696.25 1118.2 698.05 1116.3 699.85 1113.75 699.85 1111.1 699.85 1109.25 698.05 1107.45 696.25 1107.45 693.7 M1189.55 693.7 Q1189.55 696.25 1187.75 698.05 1185.9 699.85 1183.25 699.85 1180.7 699.85 1178.8 698.05 1176.95 696.25 1176.95 693.7 1176.95 691.05 1178.8 689.25 1180.7 687.4 1183.25 687.4 1185.9 687.4 1187.75 689.25 1189.55 691.05 1189.55 693.7"/>
+ <path stroke="none" fill="#FFFFFF" d="M1189.55 693.7 Q1189.55 691.05 1187.75 689.25 1185.9 687.4 1183.25 687.4 1180.7 687.4 1178.8 689.25 1176.95 691.05 1176.95 693.7 1176.95 696.25 1178.8 698.05 1180.7 699.85 1183.25 699.85 1185.9 699.85 1187.75 698.05 1189.55 696.25 1189.55 693.7 M1101.95 692.5 Q1101.95 688.3 1104.9 685.4 1107.85 682.45 1112 682.45 1116.1 682.45 1119.1 685.4 1122 688.3 1122 692.5 1122 696.65 1119.1 699.5 1116.1 702.5 1112 702.5 1107.85 702.5 1104.9 699.5 1101.95 696.65 1101.95 692.5 M1107.45 693.7 Q1107.45 696.25 1109.25 698.05 1111.1 699.85 1113.75 699.85 1116.3 699.85 1118.2 698.05 1120.05 696.25 1120.05 693.7 1120.05 691.05 1118.2 689.25 1116.3 687.4 1113.75 687.4 1111.1 687.4 1109.25 689.25 1107.45 691.05 1107.45 693.7 M1195.05 692.5 Q1195.05 696.65 1192.1 699.5 1189.15 702.5 1185 702.5 1180.9 702.5 1177.9 699.5 1175 696.65 1175 692.5 1175 688.3 1177.9 685.4 1180.9 682.45 1185 682.45 1189.15 682.45 1192.1 685.4 1195.05 688.3 1195.05 692.5"/>
+ <path stroke="none" fill="#FFDFC6" d="M1111 657.55 Q1112.75 655.6 1116.25 655.3 1114.95 659.9 1119.05 661.1 1124 662.7 1129.9 659.65 1136.95 656 1143.4 659.2 1146.8 661.35 1147.4 664.65 1145.5 662.8 1142.55 661.45 1134.15 658.25 1127.9 661.85 1122.65 664.9 1116.55 663.35 1111.6 662.15 1111 657.55 M1153.15 664.65 Q1153.75 661.35 1157.15 659.2 1163.6 656 1170.65 659.65 1176.55 662.7 1181.5 661.1 1185.6 659.9 1184.3 655.3 1187.8 655.6 1189.5 657.55 1188.95 662.15 1184 663.35 1177.85 664.9 1172.65 661.85 1166.4 658.25 1158 661.45 1155.05 662.8 1153.15 664.65"/>
+ <path stroke="none" fill="#EBCEB7" d="M1153.15 664.65 Q1155.05 662.8 1158 661.45 1166.4 658.25 1172.65 661.85 1177.85 664.9 1184 663.35 1188.95 662.15 1189.5 657.55 1191.9 660.35 1190.85 666.45 1189.65 673.4 1177.7 676.1 1158.4 679.75 1154.15 670.95 1153.4 669.25 1153.1 667.2 1152.9 665.85 1153.15 664.65 M1147.4 664.65 Q1147.65 665.85 1147.45 667.2 1147.15 669.25 1146.4 670.95 1142.15 679.75 1122.85 676.1 1110.9 673.4 1109.7 666.45 1108.65 660.35 1111 657.55 1111.6 662.15 1116.55 663.35 1122.65 664.9 1127.9 661.85 1134.15 658.25 1142.55 661.45 1145.5 662.8 1147.4 664.65"/>
+ <path stroke="none" fill="#4F4E4E" d="M411.55 838.05 L412.8 838.65 Q419.5 842.05 425.5 847.25 423.85 847.95 422.35 848.7 416.15 843.95 409.25 841 L409.6 840.45 411.55 838.05 M342.4 847.25 Q348.4 842.05 355.15 838.65 L356.35 838.05 358.35 840.45 358.7 841 Q351.75 843.95 345.6 848.7 L342.4 847.25"/>
+ <path stroke="none" fill="#FFFFFF" d="M342.4 847.25 L345.6 848.7 Q342.75 850.85 340.1 853.4 L338.7 854.7 335.45 858.25 Q320.6 875.2 320 898 L319.95 896 Q319.95 872.6 334.55 855.25 L338.7 850.7 Q339.55 849.85 340.4 849.1 L342.4 847.25 M356.35 838.05 Q359.1 836.7 362 835.7 L364.3 834.9 365.4 834.6 Q374.15 832 383.95 832 393.8 832 402.55 834.6 L403.65 834.9 405.1 835.4 406.5 835.9 Q409.05 836.85 411.55 838.05 L409.6 840.45 409.25 841 409 840.9 406.5 839.9 404.35 839.15 403.05 838.75 Q398.65 837.4 393.95 836.7 L383.95 836 373.95 836.7 Q369.25 837.4 364.85 838.75 L363.45 839.2 362 839.7 358.9 840.9 358.7 841 358.35 840.45 356.35 838.05 M425.5 847.25 L427.6 849.15 429.2 850.7 432.25 853.9 433.4 855.25 Q447.95 872.65 447.95 896 L447.95 898 Q447.3 875.2 432.5 858.25 L429.2 854.7 428.4 853.9 427.9 853.45 Q425.2 850.85 422.35 848.7 423.85 847.95 425.5 847.25 M432.45 878.55 Q432.45 883.7 428.8 887.3 425.15 891 419.95 891 414.85 891 411.15 887.3 407.5 883.7 407.5 878.55 407.5 873.35 411.15 869.7 414.85 866.05 419.95 866.05 425.15 866.05 428.8 869.7 432.45 873.35 432.45 878.55 M427.7 878.75 Q427.7 875.15 425.2 872.6 422.7 870.1 419.05 870.1 415.5 870.1 412.9 872.6 410.4 875.15 410.4 878.75 410.4 882.35 412.9 884.8 415.5 887.35 419.05 887.35 422.7 887.35 425.2 884.8 427.7 882.35 427.7 878.75 M340.15 878.75 Q340.15 882.35 342.7 884.8 345.2 887.35 348.85 887.35 352.4 887.35 354.95 884.8 357.5 882.35 357.5 878.75 357.5 875.15 354.95 872.6 352.4 870.1 348.85 870.1 345.2 870.1 342.7 872.6 340.15 875.15 340.15 878.75 M335.45 878.55 Q335.45 873.35 339.1 869.7 342.75 866.05 347.95 866.05 353.05 866.05 356.75 869.7 360.4 873.35 360.4 878.55 360.4 883.7 356.75 887.3 353.05 891 347.95 891 342.75 891 339.1 887.3 335.45 883.7 335.45 878.55"/>
+ <path stroke="none" fill="#E9E9E9" d="M335.45 878.55 Q335.45 883.7 339.1 887.3 342.75 891 347.95 891 353.05 891 356.75 887.3 360.4 883.7 360.4 878.55 360.4 873.35 356.75 869.7 353.05 866.05 347.95 866.05 342.75 866.05 339.1 869.7 335.45 873.35 335.45 878.55 M447.95 898 Q447.85 901.95 447.35 905.75 438.35 900.55 427.15 900.75 421.15 901.05 426.3 906 437.15 916.4 437 932 433.6 936.8 429.2 941.2 410.45 960 383.95 960 357.45 960 338.7 941.2 334.25 936.8 330.9 931.95 330.8 916.4 341.6 906 346.75 901.05 340.75 900.75 329.55 900.55 320.65 905.7 320.1 901.95 320 898 320.6 875.2 335.45 858.25 L338.7 854.7 340.1 853.4 Q342.75 850.85 345.6 848.7 352.3 851.85 357.25 855.55 L359.05 856.7 Q362.6 858.65 362.9 854.95 362.85 852.15 362.3 849.6 361.3 844.85 358.7 841 L358.9 840.9 362 839.7 363.45 839.2 364.85 838.75 366.6 850.65 Q367.05 853.05 368.75 854.65 L372.75 857.7 Q378.45 861.45 383.9 861.5 389.4 861.45 395.4 857.6 L399.15 854.65 Q400.35 853.5 400.95 851.95 L401.3 850.65 403.05 838.75 404.35 839.15 406.5 839.9 409 840.9 409.25 841 Q406.65 844.8 405.65 849.45 405.15 851.55 405.05 853.9 L405 854.95 Q405.3 858.7 408.95 856.7 L410.65 855.55 413 853.9 Q417.15 851.15 422.35 848.7 425.2 850.85 427.9 853.45 L428.4 853.9 429.2 854.7 432.5 858.25 Q447.3 875.2 447.95 898 M432.45 878.55 Q432.45 873.35 428.8 869.7 425.15 866.05 419.95 866.05 414.85 866.05 411.15 869.7 407.5 873.35 407.5 878.55 407.5 883.7 411.15 887.3 414.85 891 419.95 891 425.15 891 428.8 887.3 432.45 883.7 432.45 878.55 M402.5 898.1 L400.1 889.95 Q397.95 880.8 383.95 880.4 371.05 880.05 367.8 889.95 L365.45 898.05 Q361.15 900.15 357.4 903.35 346.85 912.4 346.45 925 L346.45 926 346.5 927.9 Q347.25 939.9 357.4 948.6 368.4 958 383.95 958 399.45 958 410.45 948.6 420.65 939.95 421.4 927.9 L421.45 926 421.45 925 Q421 912.4 410.45 903.35 406.7 900.2 402.5 898.1"/>
+ <path stroke="none" fill="#414040" d="M402.5 898.1 Q394.2 894 383.95 894 373.7 894 365.45 898.05 L367.8 889.95 Q371.05 880.05 383.95 880.4 397.95 880.8 400.1 889.95 L402.5 898.1 M447.35 905.75 Q445.85 916.15 441.1 925.25 439.3 928.7 437 932 437.15 916.4 426.3 906 421.15 901.05 427.15 900.75 438.35 900.55 447.35 905.75 M330.9 931.95 Q322.65 920.1 320.65 905.7 329.55 900.55 340.75 900.75 346.75 901.05 341.6 906 330.8 916.4 330.9 931.95 M364.85 838.75 Q369.25 837.4 373.95 836.7 L383.95 836 393.95 836.7 Q398.65 837.4 403.05 838.75 L401.3 850.65 400.95 851.95 Q400.35 853.5 399.15 854.65 L395.4 857.6 Q389.4 861.45 383.9 861.5 378.45 861.45 372.75 857.7 L368.75 854.65 Q367.05 853.05 366.6 850.65 L364.85 838.75 M422.35 848.7 Q417.15 851.15 413 853.9 L410.65 855.55 408.95 856.7 Q405.3 858.7 405 854.95 L405.05 853.9 Q405.15 851.55 405.65 849.45 406.65 844.8 409.25 841 416.15 843.95 422.35 848.7 M358.7 841 Q361.3 844.85 362.3 849.6 362.85 852.15 362.9 854.95 362.6 858.65 359.05 856.7 L357.25 855.55 Q352.3 851.85 345.6 848.7 351.75 843.95 358.7 841 M421.4 927.9 Q420.65 939.95 410.45 948.6 399.45 958 383.95 958 368.4 958 357.4 948.6 347.25 939.9 346.5 927.9 347.3 916 357.4 907.35 360.45 904.75 363.8 902.9 372.7 898 383.95 898 395.2 898 404.1 902.95 407.45 904.8 410.45 907.35 420.55 916 421.4 927.9 M402.45 908.15 L401.6 907.55 Q400.2 906.85 398 907.5 L397.75 907.6 Q394.9 908.45 392.4 910.95 L392.25 911.1 Q391.6 911.8 391.25 912.65 390.85 913.55 390.85 914.65 390.85 916.8 392.35 918.3 393.85 919.8 396 919.8 398.05 919.8 399.55 918.4 L399.7 918.25 Q401.75 916.2 402.7 913.95 L403.15 912.65 403.3 912.15 Q403.7 910.25 403.05 909 L402.45 908.15 M368.35 918.4 Q369.85 919.8 371.9 919.8 374.05 919.8 375.55 918.3 377.05 916.8 377.05 914.65 377.05 913.55 376.7 912.65 L375.65 911.1 375.5 910.95 Q372.95 908.4 370.1 907.55 L369.9 907.5 Q367.7 906.85 366.35 907.55 365.85 907.75 365.45 908.15 L364.85 909 Q364.2 910.25 364.65 912.15 L364.75 912.65 365.2 913.95 Q366.15 916.2 368.2 918.25 L368.35 918.4"/>
+ <path stroke="none" fill="#5B5B5B" d="M427.7 878.75 Q427.7 882.35 425.2 884.8 422.7 887.35 419.05 887.35 415.5 887.35 412.9 884.8 410.4 882.35 410.4 878.75 410.4 875.15 412.9 872.6 415.5 870.1 419.05 870.1 422.7 870.1 425.2 872.6 427.7 875.15 427.7 878.75 M340.15 878.75 Q340.15 875.15 342.7 872.6 345.2 870.1 348.85 870.1 352.4 870.1 354.95 872.6 357.5 875.15 357.5 878.75 357.5 882.35 354.95 884.8 352.4 887.35 348.85 887.35 345.2 887.35 342.7 884.8 340.15 882.35 340.15 878.75"/>
+ <path stroke="none" fill="#2E2D2D" d="M402.45 908.15 L403.05 909 Q403.7 910.25 403.3 912.15 L403.15 912.65 402.7 913.95 Q401.75 916.2 399.7 918.25 L399.55 918.4 Q398.05 919.8 396 919.8 393.85 919.8 392.35 918.3 390.85 916.8 390.85 914.65 390.85 913.55 391.25 912.65 391.6 911.8 392.25 911.1 L392.4 910.95 Q394.9 908.45 397.75 907.6 L398 907.5 Q400.2 906.85 401.6 907.55 L402.45 908.15 M368.35 918.4 L368.2 918.25 Q366.15 916.2 365.2 913.95 L364.75 912.65 364.65 912.15 Q364.2 910.25 364.85 909 L365.45 908.15 Q365.85 907.75 366.35 907.55 367.7 906.85 369.9 907.5 L370.1 907.55 Q372.95 908.4 375.5 910.95 L375.65 911.1 376.7 912.65 Q377.05 913.55 377.05 914.65 377.05 916.8 375.55 918.3 374.05 919.8 371.9 919.8 369.85 919.8 368.35 918.4"/>
+ <path stroke="none" fill="#545353" d="M402.5 898.1 Q406.7 900.2 410.45 903.35 421 912.4 421.45 925 L421.45 926 421.4 927.9 Q420.55 916 410.45 907.35 407.45 904.8 404.1 902.95 395.2 898 383.95 898 372.7 898 363.8 902.9 360.45 904.75 357.4 907.35 347.3 916 346.5 927.9 L346.45 926 346.45 925 Q346.85 912.4 357.4 903.35 361.15 900.15 365.45 898.05 373.7 894 383.95 894 394.2 894 402.5 898.1"/>
+ <path stroke="none" fill="#FFAAFF" d="M699.9 322 Q699.2 296.75 681.2 278.75 676.8 274.35 672 271 669.2 269.05 666.25 267.45 L663.1 269.95 Q651.85 278 635.9 278 619.95 278 608.65 269.95 L605.55 267.5 Q602.6 269.1 599.8 271.05 595 274.4 590.65 278.75 579 290.35 574.65 304.95 572.2 313 571.95 322 L571.9 320 Q571.9 312.15 573.55 304.95 577.45 287.9 590.65 274.75 594.9 270.5 599.5 267.25 L603.05 264.95 Q617.65 256 635.9 256 654.2 256 668.8 264.9 L672.3 267.2 Q676.95 270.5 681.2 274.75 699.9 293.45 699.9 320 L699.9 322"/>
+ <path stroke="none" fill="#EE9FEE" d="M699.9 322 Q699.45 337.2 692.75 349.85 690.8 353.55 688.3 357 L688.25 357 Q685.1 361.3 681.15 365.25 L676.5 369.55 672.3 372.75 Q656.4 384 635.9 384 615.35 384 599.5 372.8 L595.4 369.65 590.6 365.25 Q583 357.65 578.5 348.8 L572.95 332.1 572.95 331.9 572.75 330.8 572.7 330.55 572.65 330.05 572.55 329.5 572.4 328.25 572.4 328.05 572.3 327.45 572.3 327.2 572.25 327 572.25 326.75 572.2 326.45 572.15 325.8 572.15 325.55 572.1 325.25 571.95 322 Q572.2 313 574.65 304.95 579 290.35 590.65 278.75 595 274.4 599.8 271.05 602.6 269.1 605.55 267.5 L608.65 269.95 Q619.95 278 635.9 278 651.85 278 663.1 269.95 L666.25 267.45 Q669.2 269.05 672 271 676.8 274.35 681.2 278.75 699.2 296.75 699.9 322 M684.4 322.5 Q684.4 317.3 680.75 313.65 677.1 310 671.9 310 666.8 310 663.1 313.65 659.45 317.3 659.45 322.5 659.45 327.65 663.1 331.25 666.8 334.95 671.9 334.95 677.1 334.95 680.75 331.25 684.4 327.65 684.4 322.5 M587.4 322.5 Q587.4 327.65 591.05 331.25 594.7 334.95 599.9 334.95 605 334.95 608.7 331.25 612.35 327.65 612.35 322.5 612.35 317.3 608.7 313.65 605 310 599.9 310 594.7 310 591.05 313.65 587.4 317.3 587.4 322.5"/>
+ <path stroke="none" fill="#FFFFFF" d="M587.4 322.5 Q587.4 317.3 591.05 313.65 594.7 310 599.9 310 605 310 608.7 313.65 612.35 317.3 612.35 322.5 612.35 327.65 608.7 331.25 605 334.95 599.9 334.95 594.7 334.95 591.05 331.25 587.4 327.65 587.4 322.5 M679.65 322.7 Q679.65 319.1 677.15 316.55 674.65 314.05 671 314.05 667.45 314.05 664.85 316.55 662.35 319.1 662.35 322.7 662.35 326.3 664.85 328.75 667.45 331.3 671 331.3 674.65 331.3 677.15 328.75 679.65 326.3 679.65 322.7 M684.4 322.5 Q684.4 327.65 680.75 331.25 677.1 334.95 671.9 334.95 666.8 334.95 663.1 331.25 659.45 327.65 659.45 322.5 659.45 317.3 663.1 313.65 666.8 310 671.9 310 677.1 310 680.75 313.65 684.4 317.3 684.4 322.5 M592.1 322.7 Q592.1 326.3 594.65 328.75 597.15 331.3 600.8 331.3 604.35 331.3 606.9 328.75 609.45 326.3 609.45 322.7 609.45 319.1 606.9 316.55 604.35 314.05 600.8 314.05 597.15 314.05 594.65 316.55 592.1 319.1 592.1 322.7"/>
+ <path stroke="none" fill="#5B5B5B" d="M592.1 322.7 Q592.1 319.1 594.65 316.55 597.15 314.05 600.8 314.05 604.35 314.05 606.9 316.55 609.45 319.1 609.45 322.7 609.45 326.3 606.9 328.75 604.35 331.3 600.8 331.3 597.15 331.3 594.65 328.75 592.1 326.3 592.1 322.7 M679.65 322.7 Q679.65 326.3 677.15 328.75 674.65 331.3 671 331.3 667.45 331.3 664.85 328.75 662.35 326.3 662.35 322.7 662.35 319.1 664.85 316.55 667.45 314.05 671 314.05 674.65 314.05 677.15 316.55 679.65 319.1 679.65 322.7"/>
+ <path stroke="none" fill="#FFC4FF" d="M610 348.55 L609.9 347.45 609.9 346.6 Q609.9 335.8 617.45 328.2 L619.3 326.5 Q626.4 320.6 635.9 320.6 645.4 320.6 652.45 326.55 L654.25 328.2 Q661.9 335.8 661.9 346.6 L661.9 347.45 661.85 348.5 Q661.15 339.05 654.25 332.2 L652.45 330.55 Q645.4 324.6 635.9 324.6 626.4 324.6 619.3 330.5 L617.45 332.2 Q610.65 339.05 610 348.55"/>
+ <path stroke="none" fill="#FFAAFF" d="M654.4 340 Q652.9 338.5 649.95 339.35 L649.7 339.45 Q646.85 340.3 644.35 342.8 L644.2 342.95 Q643.55 343.65 643.2 344.5 642.8 345.4 642.8 346.5 642.8 348.65 644.3 350.15 645.8 351.65 647.95 351.65 650 351.65 651.5 350.25 L651.65 350.1 Q653.7 348.05 654.65 345.8 L655.1 344.5 Q655.75 342.25 655 340.85 L654.4 340 M661.85 348.5 Q661.55 351.4 660.35 354 658.85 357.2 655.95 359.9 L654.25 361.35 Q646.65 367.4 635.9 367.4 625.1 367.4 617.45 361.35 L615.85 360 Q612.95 357.25 611.45 354.05 610.25 351.45 610 348.55 610.65 339.05 617.45 332.2 L619.3 330.5 Q626.4 324.6 635.9 324.6 645.4 324.6 652.45 330.55 L654.25 332.2 Q661.15 339.05 661.85 348.5 M620.3 350.25 Q621.8 351.65 623.85 351.65 626 351.65 627.5 350.15 629 348.65 629 346.5 629 345.4 628.65 344.5 L627.6 342.95 627.45 342.8 Q624.9 340.25 622.05 339.4 L621.85 339.35 Q618.9 338.5 617.4 340 L616.8 340.85 Q616.05 342.25 616.7 344.5 616.85 345.15 617.15 345.8 618.1 348.05 620.15 350.1 L620.3 350.25"/>
+ <path stroke="none" fill="#AF74AF" d="M620.3 350.25 L620.15 350.1 Q618.1 348.05 617.15 345.8 616.85 345.15 616.7 344.5 616.05 342.25 616.8 340.85 L617.4 340 Q618.9 338.5 621.85 339.35 L622.05 339.4 Q624.9 340.25 627.45 342.8 L627.6 342.95 628.65 344.5 Q629 345.4 629 346.5 629 348.65 627.5 350.15 626 351.65 623.85 351.65 621.8 351.65 620.3 350.25 M654.4 340 L655 340.85 Q655.75 342.25 655.1 344.5 L654.65 345.8 Q653.7 348.05 651.65 350.1 L651.5 350.25 Q650 351.65 647.95 351.65 645.8 351.65 644.3 350.15 642.8 348.65 642.8 346.5 642.8 345.4 643.2 344.5 643.55 343.65 644.2 342.95 L644.35 342.8 Q646.85 340.3 649.7 339.45 L649.95 339.35 Q652.9 338.5 654.4 340"/>
+ <path stroke="none" fill="#000000" fill-opacity="0.10196078431372549" d="M655.95 359.9 L655.5 361 Q653.95 364.25 650.6 366.9 644.5 371.75 635.9 371.75 627.25 371.75 621.1 366.9 617.8 364.3 616.3 361.05 L615.85 360 617.45 361.35 Q625.1 367.4 635.9 367.4 646.65 367.4 654.25 361.35 L655.95 359.9"/>
+ <path stroke="none" fill="#5A9BF3" d="M320 322 L319.95 320 Q319.95 293.45 338.7 274.75 L342.35 271.35 Q344.9 269.15 347.55 267.25 363.45 256 383.95 256 404.5 256 420.35 267.2 423 269.1 425.55 271.3 L429.25 274.75 Q447.95 293.45 447.95 320 L447.95 322 Q447.25 296.75 429.25 278.75 426.2 275.7 422.95 273.15 L422.5 273.45 Q406.55 284 383.95 284 361.35 284 345.35 273.45 L344.95 273.2 Q341.7 275.75 338.7 278.75 320.65 296.75 320 322"/>
+ <path stroke="none" fill="#528CDB" d="M320 322 Q320.65 296.75 338.7 278.75 341.7 275.75 344.95 273.2 L345.35 273.45 Q361.35 284 383.95 284 406.55 284 422.5 273.45 L422.95 273.15 Q426.2 275.7 429.25 278.75 447.25 296.75 447.95 322 447.5 337.2 440.8 349.85 438.85 353.55 436.35 357 L436.3 357 Q433.15 361.3 429.2 365.25 L424.55 369.55 Q420.15 367.95 420.2 363.25 419.1 352 409.75 343.75 399.25 334.5 384.4 334.5 369.55 334.5 359 343.75 349.7 352 348.65 363.25 347.3 368.05 343.45 369.65 L338.65 365.25 Q331.05 357.65 326.55 348.8 L321 332.1 321 331.9 320.8 330.8 320.75 330.55 320.7 330.05 320.6 329.5 320.45 328.25 320.45 328.05 320.35 327.45 320.35 327.2 320.3 327 320.3 326.75 320.25 326.45 320.2 325.8 320.2 325.55 320.15 325.25 320 322"/>
+ <path stroke="none" fill="#4178C2" d="M424.55 369.55 L420.35 372.75 Q404.45 384 383.95 384 363.4 384 347.55 372.8 L343.45 369.65 Q347.3 368.05 348.65 363.25 349.7 352 359 343.75 369.55 334.5 384.4 334.5 399.25 334.5 409.75 343.75 419.1 352 420.2 363.25 420.15 367.95 424.55 369.55 M401.55 347.35 Q400.45 346.25 398.25 346.85 396 347.45 394.05 349.45 L393.9 349.55 Q392.85 350.65 392.85 352.25 392.85 353.85 394 354.95 395.1 356.1 396.75 356.1 398.25 356.1 399.4 355.05 L399.5 354.95 Q401.5 352.95 402.1 350.75 402.75 348.5 401.55 347.35 M369.4 355.05 Q370.5 356.1 372.05 356.1 373.65 356.1 374.8 354.95 375.9 353.85 375.9 352.25 375.9 350.65 374.85 349.55 L374.75 349.45 Q372.75 347.45 370.55 346.85 368.35 346.25 367.2 347.35 366.05 348.5 366.7 350.75 367.3 352.95 369.3 354.95 L369.4 355.05"/>
+ <path stroke="none" fill="#2D5D9C" d="M369.4 355.05 L369.3 354.95 Q367.3 352.95 366.7 350.75 366.05 348.5 367.2 347.35 368.35 346.25 370.55 346.85 372.75 347.45 374.75 349.45 L374.85 349.55 Q375.9 350.65 375.9 352.25 375.9 353.85 374.8 354.95 373.65 356.1 372.05 356.1 370.5 356.1 369.4 355.05 M401.55 347.35 Q402.75 348.5 402.1 350.75 401.5 352.95 399.5 354.95 L399.4 355.05 Q398.25 356.1 396.75 356.1 395.1 356.1 394 354.95 392.85 353.85 392.85 352.25 392.85 350.65 393.9 349.55 L394.05 349.45 Q396 347.45 398.25 346.85 400.45 346.25 401.55 347.35"/>
+ <path stroke="none" fill="#FFFFFF" d="M427.65 327.1 Q427.65 323.45 425.2 321 422.65 318.45 419 318.45 415.5 318.45 412.9 321 410.35 323.45 410.35 327.1 L410.4 327.95 Q410.65 330.9 412.9 333.05 415.5 335.55 419 335.55 422.65 335.55 425.2 333.05 427.35 330.9 427.6 327.95 L427.65 327.1 M435.2 327.2 Q435.2 332.9 431.15 336.8 427.1 340.9 421.4 340.9 415.8 340.9 411.65 336.8 407.7 332.9 407.7 327.2 407.7 321.45 411.65 317.45 415.8 313.4 421.4 313.4 427.1 313.4 431.15 317.45 435.2 321.45 435.2 327.2"/>
+ <path stroke="none" fill="#5B5B5B" d="M427.65 327.1 L427.6 327.95 Q427.35 330.9 425.2 333.05 422.65 335.55 419 335.55 415.5 335.55 412.9 333.05 410.65 330.9 410.4 327.95 L410.35 327.1 Q410.35 323.45 412.9 321 415.5 318.45 419 318.45 422.65 318.45 425.2 321 427.65 323.45 427.65 327.1"/>
+ <path stroke="none" fill="#5B5B5B" d="M340.25 327.1 Q340.25 323.45 342.7 321 345.25 318.45 348.9 318.45 352.4 318.45 355 321 357.55 323.45 357.55 327.1 L357.5 327.95 Q357.25 330.9 355 333.05 352.4 335.55 348.9 335.55 345.25 335.55 342.7 333.05 340.55 330.9 340.3 327.95 L340.25 327.1"/>
+ <path stroke="none" fill="#FFFFFF" d="M340.25 327.1 L340.3 327.95 Q340.55 330.9 342.7 333.05 345.25 335.55 348.9 335.55 352.4 335.55 355 333.05 357.25 330.9 357.5 327.95 L357.55 327.1 Q357.55 323.45 355 321 352.4 318.45 348.9 318.45 345.25 318.45 342.7 321 340.25 323.45 340.25 327.1 M332.7 327.2 Q332.7 321.45 336.75 317.45 340.8 313.4 346.5 313.4 352.1 313.4 356.25 317.45 360.2 321.45 360.2 327.2 360.2 332.9 356.25 336.8 352.1 340.9 346.5 340.9 340.8 340.9 336.75 336.8 332.7 332.9 332.7 327.2"/>
+ <path stroke="none" fill="#DBD9D9" d="M192 898 Q191.3 872.75 173.3 854.75 170.25 851.7 167 849.15 L166.55 849.45 Q150.6 860 128 860 105.4 860 89.4 849.45 L89 849.2 Q85.75 851.75 82.75 854.75 64.7 872.75 64.05 898 L64 896 Q64 869.45 82.75 850.75 L86.4 847.35 Q88.95 845.15 91.6 843.25 107.5 832 128 832 148.55 832 164.4 843.2 L169.6 847.3 173.3 850.75 Q192 869.45 192 896 L192 898"/>
+ <path stroke="none" fill="#D2D0D0" d="M192 898 Q191.55 913.2 184.85 925.85 182.9 929.55 180.4 933 L180.35 933 Q177.2 937.3 173.25 941.25 L168.6 945.55 Q164.2 943.95 164.25 939.25 163.15 928 153.8 919.75 143.3 910.5 128.45 910.5 113.6 910.5 103.05 919.75 93.75 928 92.7 939.25 91.35 944.05 87.5 945.65 L82.7 941.25 Q75.1 933.65 70.6 924.8 L65.05 908.1 65.05 907.9 64.85 906.8 64.8 906.55 64.75 906.05 64.65 905.5 64.5 904.25 64.5 904.05 64.4 903.45 64.4 903.2 64.35 903 64.35 902.75 64.3 902.45 64.25 901.8 64.25 901.55 64.2 901.25 64.05 898 Q64.7 872.75 82.75 854.75 85.75 851.75 89 849.2 L89.4 849.45 Q105.4 860 128 860 150.6 860 166.55 849.45 L167 849.15 Q170.25 851.7 173.3 854.75 191.3 872.75 192 898"/>
+ <path stroke="none" fill="#BDB6B6" d="M87.5 945.65 Q91.35 944.05 92.7 939.25 93.75 928 103.05 919.75 113.6 910.5 128.45 910.5 143.3 910.5 153.8 919.75 163.15 928 164.25 939.25 164.2 943.95 168.6 945.55 L164.4 948.75 Q148.5 960 128 960 107.45 960 91.6 948.8 L87.5 945.65 M145.6 923.35 Q144.5 922.25 142.3 922.85 140.05 923.45 138.1 925.45 L137.95 925.55 Q136.9 926.65 136.9 928.25 136.9 929.85 138.05 930.95 139.15 932.1 140.8 932.1 142.3 932.1 143.45 931.05 L143.55 930.95 Q145.55 928.95 146.15 926.75 146.8 924.5 145.6 923.35 M113.45 931.05 Q114.55 932.1 116.1 932.1 117.7 932.1 118.85 930.95 119.95 929.85 119.95 928.25 119.95 926.65 118.9 925.55 L118.8 925.45 Q116.8 923.45 114.6 922.85 112.4 922.25 111.25 923.35 110.1 924.5 110.75 926.75 111.35 928.95 113.35 930.95 L113.45 931.05"/>
+ <path stroke="none" fill="#9A9494" d="M113.45 931.05 L113.35 930.95 Q111.35 928.95 110.75 926.75 110.1 924.5 111.25 923.35 112.4 922.25 114.6 922.85 116.8 923.45 118.8 925.45 L118.9 925.55 Q119.95 926.65 119.95 928.25 119.95 929.85 118.85 930.95 117.7 932.1 116.1 932.1 114.55 932.1 113.45 931.05 M145.6 923.35 Q146.8 924.5 146.15 926.75 145.55 928.95 143.55 930.95 L143.45 931.05 Q142.3 932.1 140.8 932.1 139.15 932.1 138.05 930.95 136.9 929.85 136.9 928.25 136.9 926.65 137.95 925.55 L138.1 925.45 Q140.05 923.45 142.3 922.85 144.5 922.25 145.6 923.35"/>
+ <path stroke="none" fill="#FFFFFF" d="M171.7 903.1 Q171.7 899.45 169.25 897 166.7 894.45 163.05 894.45 159.55 894.45 156.95 897 154.4 899.45 154.4 903.1 L154.45 903.95 Q154.7 906.9 156.95 909.05 159.55 911.55 163.05 911.55 166.7 911.55 169.25 909.05 171.4 906.9 171.65 903.95 L171.7 903.1 M179.25 903.2 Q179.25 908.9 175.2 912.8 171.15 916.9 165.45 916.9 159.85 916.9 155.7 912.8 151.75 908.9 151.75 903.2 151.75 897.45 155.7 893.45 159.85 889.4 165.45 889.4 171.15 889.4 175.2 893.45 179.25 897.45 179.25 903.2"/>
+ <path stroke="none" fill="#5B5B5B" d="M171.7 903.1 L171.65 903.95 Q171.4 906.9 169.25 909.05 166.7 911.55 163.05 911.55 159.55 911.55 156.95 909.05 154.7 906.9 154.45 903.95 L154.4 903.1 Q154.4 899.45 156.95 897 159.55 894.45 163.05 894.45 166.7 894.45 169.25 897 171.7 899.45 171.7 903.1"/>
+ <path stroke="none" fill="#FFFFFF" d="M76.75 903.2 Q76.75 897.45 80.8 893.45 84.85 889.4 90.55 889.4 96.15 889.4 100.3 893.45 104.25 897.45 104.25 903.2 104.25 908.9 100.3 912.8 96.15 916.9 90.55 916.9 84.85 916.9 80.8 912.8 76.75 908.9 76.75 903.2 M84.3 903.1 L84.35 903.95 Q84.6 906.9 86.75 909.05 89.3 911.55 92.95 911.55 96.45 911.55 99.05 909.05 101.3 906.9 101.55 903.95 L101.6 903.1 Q101.6 899.45 99.05 897 96.45 894.45 92.95 894.45 89.3 894.45 86.75 897 84.3 899.45 84.3 903.1"/>
+ <path stroke="none" fill="#5B5B5B" d="M84.3 903.1 Q84.3 899.45 86.75 897 89.3 894.45 92.95 894.45 96.45 894.45 99.05 897 101.6 899.45 101.6 903.1 L101.55 903.95 Q101.3 906.9 99.05 909.05 96.45 911.55 92.95 911.55 89.3 911.55 86.75 909.05 84.6 906.9 84.35 903.95 L84.3 903.1"/>
+ <path stroke="none" fill="#FFFCF5" d="M117.95 893.15 L126.6 863.8 Q126.75 863.35 127.15 863.05 127.55 862.75 128 862.75 128.5 862.75 128.9 863.05 L129.4 863.8 138.1 893.2 139.25 897.15 140 900.6 Q139.65 902.4 138.35 903.65 135.6 906.5 128 906.5 120.4 906.5 117.7 903.65 116.35 902.35 116.05 900.55 116.2 898.95 116.75 897.15 L117.95 893.15"/>
+ <path stroke="none" fill="#BDB6B6" d="M117.95 893.15 L116.75 897.15 Q116.2 898.95 116.05 900.55 115.5 905 117.7 907.6 120.4 911.15 128 911.15 135.6 911.15 138.35 907.6 140.5 905 140 900.6 L139.25 897.15 138.1 893.2 Q139.55 893.95 140.9 895 146.3 899.2 146.3 905.15 146.3 911.1 140.9 915.25 135.6 919.45 128 919.45 120.4 919.45 115 915.25 109.7 911.1 109.7 905.15 109.7 899.2 115 895 116.4 893.95 117.95 893.15"/>
+ <path stroke="none" fill="#F0EDE7" d="M116.05 900.55 Q116.35 902.35 117.7 903.65 120.4 906.5 128 906.5 135.6 906.5 138.35 903.65 139.65 902.4 140 900.6 140.5 905 138.35 907.6 135.6 911.15 128 911.15 120.4 911.15 117.7 907.6 115.5 905 116.05 900.55"/>
+ <path stroke="none" fill="#545353" d="M573.9 898.5 L573.85 898 573.85 897 573.85 896.5 573.85 896 Q573.85 882.45 578.75 870.95 L579.65 868.95 Q584.25 859.05 592.6 850.7 L593.65 849.7 Q612.05 832 637.85 832 663.7 832 682.1 849.7 L683.1 850.7 Q686.8 854.4 689.8 858.45 693.5 863.45 696.1 868.95 L697 870.95 Q701.85 882.45 701.85 896 L701.85 896.5 701.85 897 701.85 898 701.85 898.5 Q701.55 883.45 695.1 870.95 L694.05 868.95 Q692.15 865.6 689.8 862.45 686.8 858.4 683.1 854.7 L682.1 853.7 Q663.7 836 637.85 836 612.05 836 593.65 853.7 L592.6 854.7 Q585.95 861.35 581.7 868.95 L580.6 870.95 Q574.2 883.45 573.9 898.5"/>
+ <path stroke="none" fill="#414040" d="M573.9 898.5 Q574.2 883.45 580.6 870.95 L581.7 868.95 Q585.95 861.35 592.6 854.7 L593.65 853.7 Q612.05 836 637.85 836 663.7 836 682.1 853.7 L683.1 854.7 Q686.8 858.4 689.8 862.45 692.15 865.6 694.05 868.95 L695.1 870.95 Q701.55 883.45 701.85 898.5 701.15 918.2 689.8 933.5 L687.7 936.15 686.3 937.8 683.1 941.2 Q673.9 950.45 662.8 955.15 651.3 960 637.85 960 629.3 960 621.6 958.05 617.15 956.95 612.95 955.15 601.8 950.45 592.6 941.2 L589.4 937.8 Q574.65 921.1 573.9 898.5 M681.4 872.85 L679.35 870.95 676.6 868.95 Q670.15 864.8 662 864.8 653.8 864.8 647.35 868.95 637.85 873.8 628.35 868.95 621.9 864.8 613.75 864.8 605.6 864.8 599.15 868.95 597.75 869.85 596.4 870.95 L594.3 872.85 Q586.25 880.9 586.25 892.25 586.25 903.65 594.3 911.75 L594.4 911.75 598.95 915.45 Q599 931.4 610.35 942.65 614.85 947.2 620.15 949.9 628.15 954.05 637.85 954.05 653.95 954.05 665.4 942.65 L669.05 938.55 Q676.65 928.55 676.75 915.45 L681.4 911.75 Q689.45 903.65 689.45 892.25 689.45 880.9 681.4 872.85 M655.85 859.75 L655.8 859.2 Q655.35 852 650.7 846.75 645.55 841 638.35 841 631.1 841 625.95 846.75 621.35 852 620.9 859.2 L620.85 859.75 Q620.85 860.45 621.15 861.1 622.05 863.25 625.95 864.9 631.1 867 638.35 867 645.55 867 650.7 864.9 654.65 863.25 655.6 861.1 L655.85 859.75"/>
+ <path stroke="none" fill="#FFFFFF" d="M596.2 896.1 Q596.2 891.5 599.45 888.3 602.75 885.1 607.35 885.1 611.9 885.1 615.25 888.3 618.45 891.5 618.45 896.1 618.45 900.7 615.25 903.85 611.9 907.2 607.35 907.2 602.75 907.2 599.45 903.85 596.2 900.7 596.2 896.1 M601.65 896.35 Q601.65 899.2 603.7 901.15 605.6 903.25 608.55 903.25 611.45 903.25 613.5 901.15 615.55 899.2 615.55 896.35 615.55 893.35 613.5 891.4 611.45 889.4 608.55 889.4 605.6 889.4 603.7 891.4 601.65 893.35 601.65 896.35 M620.15 918.4 Q640.15 912.25 657.15 918.4 660.3 927.8 657.15 936.15 655.15 936.3 653.2 935.5 639.45 929.95 622.95 935.7 L620.15 936.2 Q616.6 928.3 620.15 918.4 M680.25 896.1 Q680.25 900.7 677 903.85 673.75 907.2 669.1 907.2 664.55 907.2 661.35 903.85 658 900.7 658 896.1 658 891.5 661.35 888.3 664.55 885.1 669.1 885.1 673.75 885.1 677 888.3 680.25 891.5 680.25 896.1 M674.9 896.35 Q674.9 893.35 672.85 891.4 670.8 889.4 667.95 889.4 665.1 889.4 662.95 891.4 660.9 893.35 660.9 896.35 660.9 899.2 662.95 901.15 665.1 903.25 667.95 903.25 670.8 903.25 672.85 901.15 674.9 899.2 674.9 896.35"/>
+ <path stroke="none" fill="#BDB6B6" d="M596.2 896.1 Q596.2 900.7 599.45 903.85 602.75 907.2 607.35 907.2 611.9 907.2 615.25 903.85 618.45 900.7 618.45 896.1 618.45 891.5 615.25 888.3 611.9 885.1 607.35 885.1 602.75 885.1 599.45 888.3 596.2 891.5 596.2 896.1 M681.4 872.85 Q689.45 880.9 689.45 892.25 689.45 903.65 681.4 911.75 L676.75 915.45 Q676.65 928.55 669.05 938.55 L665.4 942.65 Q653.95 954.05 637.85 954.05 628.15 954.05 620.15 949.9 614.85 947.2 610.35 942.65 599 931.4 598.95 915.45 L594.4 911.75 594.3 911.75 Q586.25 903.65 586.25 892.25 586.25 880.9 594.3 872.85 L596.4 870.95 Q597.75 869.85 599.15 868.95 605.6 864.8 613.75 864.8 621.9 864.8 628.35 868.95 637.85 873.8 647.35 868.95 653.8 864.8 662 864.8 670.15 864.8 676.6 868.95 L679.35 870.95 681.4 872.85 M616.1 875.75 Q614.8 875.9 613.8 876.85 612.85 877.8 612.85 879.15 612.85 880.5 613.8 881.45 614.8 882.4 616.4 882.6 637.8 885.2 659 882.4 660.85 882.4 661.8 881.45 662.75 880.5 662.75 879.15 662.75 877.8 661.8 876.85 660.85 875.9 659 875.7 637 873.65 616.1 875.75 M641.6 899.2 L641.45 899.3 Q640.3 900.45 640.3 902.15 640.3 903.9 641.55 905.15 L641.95 905.45 642.35 905.75 Q643.25 906.35 644.5 906.35 646.15 906.35 647.3 905.2 L647.45 905 649.1 903 Q649.95 901.8 650.25 900.55 L650.35 900.2 Q650.8 898 649.7 896.9 648.5 895.7 646.05 896.35 643.75 897.05 641.6 899.2 M635.1 905.15 Q636.3 903.9 636.3 902.15 636.3 900.45 635.15 899.3 L635 899.2 Q632.9 897.05 630.5 896.35 628.1 895.7 626.85 896.9 625.75 898 626.25 900.2 L626.35 900.55 Q626.65 901.8 627.45 903.05 L629.1 905 629.2 905.2 Q630.4 906.35 632.1 906.35 633.3 906.35 634.3 905.75 L634.7 905.45 635.1 905.15 M620.15 918.4 L617.3 919.3 Q613.85 920.5 612.35 923.7 610.75 927 611.95 930.3 613.1 933.75 616.4 935.3 618.25 936.2 620.15 936.2 L622.95 935.7 Q639.45 929.95 653.2 935.5 655.15 936.3 657.15 936.15 L659.8 935.5 Q663.1 934.2 664.45 930.85 665.8 927.55 664.5 924.2 663.15 920.95 659.9 919.5 L657.15 918.4 Q640.15 912.25 620.15 918.4 M680.25 896.1 Q680.25 891.5 677 888.3 673.75 885.1 669.1 885.1 664.55 885.1 661.35 888.3 658 891.5 658 896.1 658 900.7 661.35 903.85 664.55 907.2 669.1 907.2 673.75 907.2 677 903.85 680.25 900.7 680.25 896.1"/>
+ <path stroke="none" fill="#464545" d="M655.85 859.75 L655.6 861.1 Q654.65 863.25 650.7 864.9 645.55 867 638.35 867 631.1 867 625.95 864.9 622.05 863.25 621.15 861.1 620.85 860.45 620.85 859.75 L620.9 859.2 Q621.35 852 625.95 846.75 631.1 841 638.35 841 645.55 841 650.7 846.75 655.35 852 655.8 859.2 L655.85 859.75"/>
+ <path stroke="none" fill="#A8A1A1" d="M616.1 875.75 Q637 873.65 659 875.7 660.85 875.9 661.8 876.85 662.75 877.8 662.75 879.15 662.75 880.5 661.8 881.45 660.85 882.4 659 882.4 637.8 885.2 616.4 882.6 614.8 882.4 613.8 881.45 612.85 880.5 612.85 879.15 612.85 877.8 613.8 876.85 614.8 875.9 616.1 875.75"/>
+ <path stroke="none" fill="#989292" d="M641.6 899.2 Q643.75 897.05 646.05 896.35 648.5 895.7 649.7 896.9 650.8 898 650.35 900.2 L650.25 900.55 Q649.95 901.8 649.1 903 L647.45 905 647.3 905.2 Q646.15 906.35 644.5 906.35 643.25 906.35 642.35 905.75 L641.95 905.45 641.55 905.15 Q640.3 903.9 640.3 902.15 640.3 900.45 641.45 899.3 L641.6 899.2 M635.1 905.15 L634.7 905.45 634.3 905.75 Q633.3 906.35 632.1 906.35 630.4 906.35 629.2 905.2 L629.1 905 627.45 903.05 Q626.65 901.8 626.35 900.55 L626.25 900.2 Q625.75 898 626.85 896.9 628.1 895.7 630.5 896.35 632.9 897.05 635 899.2 L635.15 899.3 Q636.3 900.45 636.3 902.15 636.3 903.9 635.1 905.15"/>
+ <path stroke="none" fill="#5B5B5B" d="M601.65 896.35 Q601.65 893.35 603.7 891.4 605.6 889.4 608.55 889.4 611.45 889.4 613.5 891.4 615.55 893.35 615.55 896.35 615.55 899.2 613.5 901.15 611.45 903.25 608.55 903.25 605.6 903.25 603.7 901.15 601.65 899.2 601.65 896.35 M674.9 896.35 Q674.9 899.2 672.85 901.15 670.8 903.25 667.95 903.25 665.1 903.25 662.95 901.15 660.9 899.2 660.9 896.35 660.9 893.35 662.95 891.4 665.1 889.4 667.95 889.4 670.8 889.4 672.85 891.4 674.9 893.35 674.9 896.35"/>
+ <path stroke="none" fill="#E7E7E7" d="M620.15 936.2 Q618.25 936.2 616.4 935.3 613.1 933.75 611.95 930.3 610.75 927 612.35 923.7 613.85 920.5 617.3 919.3 L620.15 918.4 Q616.6 928.3 620.15 936.2 M657.15 918.4 L659.9 919.5 Q663.15 920.95 664.5 924.2 665.8 927.55 664.45 930.85 663.1 934.2 659.8 935.5 L657.15 936.15 Q660.3 927.8 657.15 918.4"/>
+ <path stroke="none" fill="#31DE7A" d="M831.75 898 L831.7 896 Q831.7 869.5 850.45 850.75 858.55 842.65 868.15 838.05 880.7 832 895.7 832 910.7 832 923.25 838.05 932.8 842.65 940.9 850.75 959.7 869.5 959.7 896 L959.7 898 Q959 872.8 940.9 854.75 932.6 846.45 922.8 841.85 910.45 836 895.7 836 880.95 836 868.6 841.8 858.75 846.45 850.45 854.75 832.4 872.8 831.75 898"/>
+ <path stroke="none" fill="#2ECC71" d="M959.7 898 Q959.1 920.1 945.05 936.7 932.9 943.7 925.75 936.7 912.2 917.9 894.15 917.9 876.1 917.9 862.55 936.7 857.2 943.6 846.35 936.7 832.3 920.1 831.75 898 832.4 872.8 850.45 854.75 858.75 846.45 868.6 841.8 870.4 854.7 875.9 864.75 884.1 879.8 895.7 879.8 907.3 879.8 915.5 864.75 921 854.7 922.8 841.85 932.6 846.45 940.9 854.75 959 872.8 959.7 898"/>
+ <path stroke="none" fill="#2FD274" d="M868.6 841.8 Q880.95 836 895.7 836 910.45 836 922.8 841.85 921 854.7 915.5 864.75 907.3 879.8 895.7 879.8 884.1 879.8 875.9 864.75 870.4 854.7 868.6 841.8"/>
+ <path stroke="none" fill="#F3F3F3" d="M945.05 936.7 L940.9 941.2 Q937 945.15 932.75 948.25 916.6 960 895.7 960 873.3 960 856.45 946.55 L850.45 941.2 846.35 936.7 Q857.2 943.6 862.55 936.7 876.1 917.9 894.15 917.9 912.2 917.9 925.75 936.7 932.9 943.7 945.05 936.7"/>
+ <path stroke="none" fill="#FFFFFF" d="M862.05 890 Q862.05 893.15 864.3 895.3 866.45 897.6 869.65 897.6 872.8 897.6 875.05 895.3 876.1 894.3 876.65 893.1 877.3 891.7 877.3 890 877.3 888.25 876.65 886.8 876.1 885.55 875.05 884.55 872.8 882.4 869.65 882.4 866.45 882.4 864.3 884.55 862.05 886.7 862.05 890 M929.45 890 Q929.45 886.7 927.2 884.55 924.95 882.4 921.8 882.4 918.7 882.4 916.35 884.55 914.1 886.7 914.1 890 914.1 893.15 916.35 895.3 918.7 897.6 921.8 897.6 924.95 897.6 927.2 895.3 929.45 893.15 929.45 890 M935.3 889.75 Q935.3 894.8 931.8 898.25 928.2 901.9 923.1 901.9 918.1 901.9 914.55 898.25 910.95 894.8 910.95 889.75 910.95 884.7 914.55 881.15 918.1 877.65 923.1 877.65 928.2 877.65 931.8 881.15 935.3 884.7 935.3 889.75 M856.1 889.75 Q856.1 884.7 859.7 881.15 863.3 877.65 868.3 877.65 873.05 877.65 876.65 880.85 L877 881.15 Q880.5 884.7 880.5 889.75 880.5 894.8 877 898.25 L876.65 898.6 Q873.05 901.9 868.3 901.9 863.3 901.9 859.7 898.25 856.1 894.8 856.1 889.75"/>
+ <path stroke="none" fill="#5B5B5B" d="M929.45 890 Q929.45 893.15 927.2 895.3 924.95 897.6 921.8 897.6 918.7 897.6 916.35 895.3 914.1 893.15 914.1 890 914.1 886.7 916.35 884.55 918.7 882.4 921.8 882.4 924.95 882.4 927.2 884.55 929.45 886.7 929.45 890 M862.05 890 Q862.05 886.7 864.3 884.55 866.45 882.4 869.65 882.4 872.8 882.4 875.05 884.55 876.1 885.55 876.65 886.8 877.3 888.25 877.3 890 877.3 891.7 876.65 893.1 876.1 894.3 875.05 895.3 872.8 897.6 869.65 897.6 866.45 897.6 864.3 895.3 862.05 893.15 862.05 890"/>
+ <path stroke="none" fill="#FFD738" d="M916.2 914.45 L916 913.05 915.65 911.05 Q915.25 909.1 914.5 907.3 913 903.75 910.3 900.8 L907.95 898.55 Q902.65 894.2 895.75 894.2 888.8 894.2 883.55 898.55 882.3 899.5 881.1 900.8 878.45 903.75 876.95 907.3 876.2 909.1 875.75 911.05 L875.35 913.05 875.25 914.55 875.2 914.25 875.15 912.75 875.35 909.05 875.65 907.5 875.75 907.05 Q877.05 901.3 881.1 896.8 882.3 895.5 883.55 894.55 888.8 890.2 895.75 890.2 902.65 890.2 907.95 894.55 L910.3 896.8 Q914.4 901.3 915.65 907.05 L915.75 907.5 916 909.05 916.3 912.75 916.2 914.25 916.2 914.45"/>
+ <path stroke="none" fill="#FFCC00" d="M916.2 914.45 L916.1 915.3 915.65 916.85 Q914.35 920.2 910.3 922.85 L909.7 923.25 909.3 923.5 Q903.55 926.7 895.75 926.7 887.9 926.7 882.15 923.5 L881.75 923.25 881.1 922.85 Q877.05 920.2 875.8 916.8 L875.4 915.3 875.25 914.55 875.35 913.05 875.75 911.05 Q876.2 909.1 876.95 907.3 878.45 903.75 881.1 900.8 882.3 899.5 883.55 898.55 888.8 894.2 895.75 894.2 902.65 894.2 907.95 898.55 L910.3 900.8 Q913 903.75 914.5 907.3 915.25 909.1 915.65 911.05 L916 913.05 916.2 914.45"/>
+ <path stroke="none" fill="#EEBE00" d="M916.2 914.45 L916.2 914.25 916.3 912.75 916 909.05 915.75 907.5 920.65 908.55 Q930.8 911.15 931.05 914.8 L915.65 916.85 916.1 915.3 916.2 914.45 M875.65 907.5 L875.35 909.05 875.15 912.75 875.2 914.25 875.25 914.55 875.4 915.3 875.8 916.8 860.35 914.75 Q860.65 911.1 870.65 908.55 L875.65 907.5"/>
+ <path stroke="none" fill="#DEB100" d="M875.8 916.8 Q877.05 920.2 881.1 922.85 L881.75 923.25 879.5 923 Q874.75 922.35 870.65 921.3 860.85 918.8 860.4 915.3 L860.35 914.95 860.35 914.75 875.8 916.8 M909.7 923.25 L910.3 922.85 Q914.35 920.2 915.65 916.85 L931.05 914.8 931.05 914.95 931.05 915.3 Q930.55 918.8 920.65 921.3 916.6 922.35 911.9 923 L909.7 923.25"/>
+ <path stroke="none" fill="#29BB67" d="M906.1 848.05 Q909.15 853.3 909.7 857.85 910.4 862.4 908.3 863.6 906.15 864.85 902.5 862 898.95 859.15 895.9 853.95 L895.2 852.75 Q894 850.25 894.3 847.7 894.6 844.85 896.75 843.6 898.85 842.4 901.5 843.55 903.85 844.55 905.4 846.9 L906.1 848.05 M890.85 854 Q888.85 857.5 886.4 859.35 884.05 861.25 882.65 860.4 881.25 859.65 881.7 856.6 882.1 853.6 884.1 850.15 L884.55 849.3 Q885.6 847.75 887.15 847.1 L890.3 847.15 Q891.7 848 891.95 849.9 892.1 851.55 891.3 853.2 L890.85 854"/>
+ <path stroke="none" fill="#4F4E4E" d="M1165.05 837.75 L1165.5 833.85 Q1181.9 837.9 1194.75 850.7 L1196 852 Q1213.5 870.4 1213.5 896 L1213.5 898 Q1212.8 873.7 1196 856 L1194.75 854.7 Q1181.75 841.75 1165.05 837.75 M1133.5 833.9 L1133.95 837.75 1133.95 837.8 Q1123.8 840.2 1115 845.95 1109.35 849.65 1104.25 854.7 1086.2 872.8 1085.55 898 L1085.5 896 Q1085.5 869.5 1104.25 850.7 1109.35 845.6 1115 841.95 1123.6 836.3 1133.5 833.9"/>
+ <path stroke="none" fill="#FFFFFF" d="M1133.5 833.9 Q1141.1 832 1149.5 832 1157.85 832 1165.45 833.85 L1165.5 833.85 1165.05 837.75 1165 837.75 1159.5 836.7 1149.5 836 1139.5 836.7 1133.95 837.8 1133.95 837.75 1133.5 833.9"/>
+ <path stroke="none" fill="#F0F0F0" d="M1133.95 837.8 L1139.5 836.7 1149.5 836 1159.5 836.7 1165 837.75 1165.05 837.75 Q1161.8 853.2 1160.85 868.95 1160.1 881.1 1160.75 893.45 1161.95 915.65 1203.3 930.9 1199.65 936.35 1194.75 941.2 1176 960 1149.5 960 1123 960 1104.25 941.2 1099.35 936.3 1095.75 930.9 1137.05 915.65 1138.25 893.45 1138.9 881.1 1138.2 868.95 1137.2 853.25 1133.95 837.8"/>
+ <path stroke="none" fill="#414040" d="M1133.95 837.8 Q1137.2 853.25 1138.2 868.95 1138.9 881.1 1138.25 893.45 1137.05 915.65 1095.75 930.9 1086 916.35 1085.55 898 1086.2 872.8 1104.25 854.7 1109.35 849.65 1115 845.95 1123.8 840.2 1133.95 837.8 M1203.3 930.9 Q1161.95 915.65 1160.75 893.45 1160.1 881.1 1160.85 868.95 1161.8 853.2 1165.05 837.75 1181.75 841.75 1194.75 854.7 L1196 856 Q1212.8 873.7 1213.5 898 1213.1 912.9 1206.65 925.25 L1203.3 930.9"/>
+ <path stroke="none" fill="#FFC4FF" d="M1112.05 927.9 L1112 926 1112 925 Q1112.4 912.4 1122.95 903.35 1133.95 894 1149.5 894 1165 894 1176 903.35 1186.55 912.4 1187 925 L1187 926 1186.95 927.9 Q1186.1 916 1176 907.35 1165 898 1149.5 898 1133.95 898 1122.95 907.35 1112.85 916 1112.05 927.9"/>
+ <path stroke="none" fill="#FFAAFF" d="M1112.05 927.9 Q1112.85 916 1122.95 907.35 1133.95 898 1149.5 898 1165 898 1176 907.35 1186.1 916 1186.95 927.9 1186.3 938.1 1178.9 945.9 L1176 948.6 Q1173.9 950.4 1171.6 951.9 1161.75 949.9 1149.5 949.9 1137.2 949.9 1127.4 951.9 L1122.95 948.6 1120.1 945.9 Q1112.7 938.1 1112.05 927.9 M1168 908.15 L1167.15 907.55 Q1165.75 906.85 1163.55 907.5 L1163.3 907.6 Q1160.45 908.45 1157.95 910.95 L1157.8 911.1 Q1157.15 911.8 1156.8 912.65 1156.4 913.55 1156.4 914.65 1156.4 916.8 1157.9 918.3 1159.4 919.8 1161.55 919.8 1163.6 919.8 1165.1 918.4 L1165.25 918.25 Q1167.3 916.2 1168.25 913.95 L1168.7 912.65 1168.85 912.15 Q1169.25 910.25 1168.6 909 L1168 908.15 M1133.9 918.4 Q1135.4 919.8 1137.45 919.8 1139.6 919.8 1141.1 918.3 1142.6 916.8 1142.6 914.65 1142.6 913.55 1142.25 912.65 L1141.2 911.1 1141.05 910.95 Q1138.5 908.4 1135.65 907.55 L1135.45 907.5 Q1133.25 906.85 1131.9 907.55 1131.4 907.75 1131 908.15 L1130.4 909 Q1129.75 910.25 1130.2 912.15 L1130.3 912.65 1130.75 913.95 Q1131.7 916.2 1133.75 918.25 L1133.9 918.4"/>
+ <path stroke="none" fill="#A66EA6" d="M1168 908.15 L1168.6 909 Q1169.25 910.25 1168.85 912.15 L1168.7 912.65 1168.25 913.95 Q1167.3 916.2 1165.25 918.25 L1165.1 918.4 Q1163.6 919.8 1161.55 919.8 1159.4 919.8 1157.9 918.3 1156.4 916.8 1156.4 914.65 1156.4 913.55 1156.8 912.65 1157.15 911.8 1157.8 911.1 L1157.95 910.95 Q1160.45 908.45 1163.3 907.6 L1163.55 907.5 Q1165.75 906.85 1167.15 907.55 L1168 908.15 M1133.9 918.4 L1133.75 918.25 Q1131.7 916.2 1130.75 913.95 L1130.3 912.65 1130.2 912.15 Q1129.75 910.25 1130.4 909 L1131 908.15 Q1131.4 907.75 1131.9 907.55 1133.25 906.85 1135.45 907.5 L1135.65 907.55 Q1138.5 908.4 1141.05 910.95 L1141.2 911.1 1142.25 912.65 Q1142.6 913.55 1142.6 914.65 1142.6 916.8 1141.1 918.3 1139.6 919.8 1137.45 919.8 1135.4 919.8 1133.9 918.4"/>
+ <path stroke="none" fill="#F0A0F0" d="M1171.6 951.9 Q1162 958 1149.5 958 1136.95 958 1127.4 951.9 1137.2 949.9 1149.5 949.9 1161.75 949.9 1171.6 951.9"/>
+ <path stroke="none" fill="#FFFFFF" d="M1190.5 872.05 Q1190.5 876.15 1187.55 879.05 1184.65 882 1180.5 882 1176.4 882 1173.45 879.05 1170.55 876.15 1170.55 872.05 1170.55 867.85 1173.45 864.95 1176.4 862.05 1180.5 862.05 1184.65 862.05 1187.55 864.95 1190.5 867.85 1190.5 872.05 M1186.7 872.2 Q1186.7 869.3 1184.7 867.25 1182.7 865.25 1179.75 865.25 1176.95 865.25 1174.85 867.25 1172.85 869.3 1172.85 872.2 1172.85 875.05 1174.85 877.05 1176.95 879.05 1179.75 879.05 1182.7 879.05 1184.7 877.05 1186.7 875.05 1186.7 872.2 M1108.5 872.05 Q1108.5 867.85 1111.4 864.95 1114.35 862.05 1118.5 862.05 1122.55 862.05 1125.55 864.95 1128.45 867.85 1128.45 872.05 1128.45 876.15 1125.55 879.05 1122.55 882 1118.5 882 1114.35 882 1111.4 879.05 1108.5 876.15 1108.5 872.05 M1112.25 872.2 Q1112.25 875.05 1114.3 877.05 1116.3 879.05 1119.2 879.05 1122.05 879.05 1124.1 877.05 1126.15 875.05 1126.15 872.2 1126.15 869.3 1124.1 867.25 1122.05 865.25 1119.2 865.25 1116.3 865.25 1114.3 867.25 1112.25 869.3 1112.25 872.2"/>
+ <path stroke="none" fill="#5B5B5B" d="M1112.25 872.2 Q1112.25 869.3 1114.3 867.25 1116.3 865.25 1119.2 865.25 1122.05 865.25 1124.1 867.25 1126.15 869.3 1126.15 872.2 1126.15 875.05 1124.1 877.05 1122.05 879.05 1119.2 879.05 1116.3 879.05 1114.3 877.05 1112.25 875.05 1112.25 872.2 M1186.7 872.2 Q1186.7 875.05 1184.7 877.05 1182.7 879.05 1179.75 879.05 1176.95 879.05 1174.85 877.05 1172.85 875.05 1172.85 872.2 1172.85 869.3 1174.85 867.25 1176.95 865.25 1179.75 865.25 1182.7 865.25 1184.7 867.25 1186.7 869.3 1186.7 872.2"/>
+ <path stroke="none" fill="#BD7841" d="M192 1090.55 Q191.3 1065.35 173.25 1047.25 158.15 1032.2 138 1029.25 L128 1028.55 118 1029.25 Q97.85 1032.2 82.75 1047.25 64.7 1065.35 64.05 1090.55 L64 1088.55 Q64 1072.2 71.15 1058.75 75.3 1051 81.85 1044.2 L82.75 1043.25 Q85.3 1040.7 87.95 1038.55 L89.65 1037.2 Q106.2 1024.55 128 1024.55 149.85 1024.55 166.4 1037.25 L168.1 1038.6 173.25 1043.25 174.2 1044.25 Q180.7 1051 184.85 1058.75 192 1072.2 192 1088.55 L192 1090.55"/>
+ <path stroke="none" fill="#A16639" d="M192 1090.55 Q191.6 1105.45 185.15 1117.8 180.65 1126.4 173.25 1133.75 L171 1135.9 167.1 1139.25 Q150.9 1125.5 128 1125.5 105.15 1125.5 88.9 1139.25 L85 1135.9 82.75 1133.75 Q64.7 1115.75 64.05 1090.55 64.7 1065.35 82.75 1047.25 97.85 1032.2 118 1029.25 L128 1028.55 138 1029.25 Q158.15 1032.2 173.25 1047.25 191.3 1065.35 192 1090.55 M145.5 1060.35 Q145.5 1050 140.35 1042.75 135.25 1035.5 128 1035.5 120.75 1035.5 115.6 1042.75 110.5 1050 110.5 1060.35 L110.55 1062.05 Q110.9 1083.1 115.6 1098.3 120.75 1115 128 1115 135.25 1115 140.35 1098.3 145.1 1083.1 145.5 1062.05 L145.5 1060.35"/>
+ <path stroke="none" fill="#B6733F" d="M145.5 1060.35 L145.5 1062.05 Q145.1 1083.1 140.35 1098.3 135.25 1115 128 1115 120.75 1115 115.6 1098.3 110.9 1083.1 110.55 1062.05 L110.5 1060.35 Q110.5 1050 115.6 1042.75 120.75 1035.5 128 1035.5 135.25 1035.5 140.35 1042.75 145.5 1050 145.5 1060.35"/>
+ <path stroke="none" fill="#955E34" d="M88.9 1139.25 Q105.15 1125.5 128 1125.5 150.9 1125.5 167.1 1139.25 150.3 1152.55 128 1152.55 105.7 1152.55 88.9 1139.25"/>
+ <path stroke="none" fill="#464646" d="M123.5 1121.8 L123.2 1121.7 123.25 1121.7 Q120.35 1120.65 118.05 1118.35 115.7 1116.05 114.75 1113.15 114.6 1112.75 114.8 1112.4 L115.3 1111.9 116.05 1111.85 119.85 1112.95 Q128.4 1114.85 136.2 1112.95 L136.25 1112.95 140.05 1111.9 140.75 1111.95 141.3 1112.45 141.3 1113.2 Q140.25 1116.05 137.95 1118.35 135.65 1120.65 132.8 1121.7 L132.85 1121.7 132.5 1121.85 129.8 1122.5 128.85 1122.6 126.7 1122.55 125.95 1122.45 123.5 1121.8"/>
+ <path stroke="none" fill="#383838" d="M123.5 1121.8 L125.95 1122.45 126.7 1122.55 128.85 1122.6 129.8 1122.5 132.5 1121.85 133.3 1122.75 Q134.25 1123.7 135.35 1124.25 136.75 1124.9 138.4 1124.9 141.4 1124.9 143.55 1122.75 L144.8 1121.1 145.3 1120.65 146 1120.7 150.7 1123.15 151.15 1123.65 151.1 1124.3 149.6 1126.6 148.55 1127.75 Q144.3 1131.95 138.4 1131.95 132.5 1131.95 128.3 1127.75 L128 1127.45 127.7 1127.75 Q123.45 1131.95 117.55 1131.95 111.6 1131.95 107.45 1127.75 L106.4 1126.6 104.9 1124.4 Q104.7 1124.05 104.85 1123.75 104.9 1123.4 105.25 1123.2 L109.85 1120.65 110.5 1120.55 111.05 1121 112.4 1122.75 Q114.55 1124.9 117.55 1124.9 119.2 1124.9 120.65 1124.25 L122.7 1122.75 123.5 1121.8"/>
+ <path stroke="none" fill="#5B5B5B" d="M89.3 1080.35 Q89.3 1077.9 91 1076.25 92.7 1074.55 95.1 1074.55 97.5 1074.55 99.25 1076.25 100.95 1077.9 100.95 1080.35 100.95 1082.75 99.25 1084.4 97.5 1086.15 95.1 1086.15 92.7 1086.15 91 1084.4 89.3 1082.75 89.3 1080.35 M166.7 1080.35 Q166.7 1082.75 165 1084.4 163.3 1086.15 160.9 1086.15 158.5 1086.15 156.75 1084.4 155.05 1082.75 155.05 1080.35 155.05 1077.9 156.75 1076.25 158.5 1074.55 160.9 1074.55 163.3 1074.55 165 1076.25 166.7 1077.9 166.7 1080.35"/>
+ <path stroke="none" fill="#FFFFFF" d="M166.7 1080.35 Q166.7 1077.9 165 1076.25 163.3 1074.55 160.9 1074.55 158.5 1074.55 156.75 1076.25 155.05 1077.9 155.05 1080.35 155.05 1082.75 156.75 1084.4 158.5 1086.15 160.9 1086.15 163.3 1086.15 165 1084.4 166.7 1082.75 166.7 1080.35 M84.8 1080.2 Q84.8 1076.35 87.5 1073.65 90.25 1070.95 94.1 1070.95 97.9 1070.95 100.65 1073.65 103.35 1076.35 103.35 1080.2 103.35 1084.05 100.65 1086.65 97.9 1089.45 94.1 1089.45 90.25 1089.45 87.5 1086.65 84.8 1084.05 84.8 1080.2 M89.3 1080.35 Q89.3 1082.75 91 1084.4 92.7 1086.15 95.1 1086.15 97.5 1086.15 99.25 1084.4 100.95 1082.75 100.95 1080.35 100.95 1077.9 99.25 1076.25 97.5 1074.55 95.1 1074.55 92.7 1074.55 91 1076.25 89.3 1077.9 89.3 1080.35 M171.2 1080.2 Q171.2 1084.05 168.5 1086.65 165.75 1089.45 161.9 1089.45 158.1 1089.45 155.35 1086.65 152.65 1084.05 152.65 1080.2 152.65 1076.35 155.35 1073.65 158.1 1070.95 161.9 1070.95 165.75 1070.95 168.5 1073.65 171.2 1076.35 171.2 1080.2"/>
+ <path stroke="none" fill="#8E5A32" d="M171.2 1080.2 Q171.2 1076.35 168.5 1073.65 165.75 1070.95 161.9 1070.95 158.1 1070.95 155.35 1073.65 152.65 1076.35 152.65 1080.2 152.65 1084.05 155.35 1086.65 158.1 1089.45 161.9 1089.45 165.75 1089.45 168.5 1086.65 171.2 1084.05 171.2 1080.2 M84.8 1080.2 Q84.8 1084.05 87.5 1086.65 90.25 1089.45 94.1 1089.45 97.9 1089.45 100.65 1086.65 103.35 1084.05 103.35 1080.2 103.35 1076.35 100.65 1073.65 97.9 1070.95 94.1 1070.95 90.25 1070.95 87.5 1073.65 84.8 1076.35 84.8 1080.2 M79.15 1076.75 L79.15 1076.7 Q80.8 1070.7 86.1 1067.65 91.5 1064.55 97.5 1066.15 103.45 1067.7 106.6 1073.1 109.7 1078.45 108.1 1084.45 L108.1 1084.5 Q106.15 1091.7 100.6 1095.55 94.95 1099.55 89 1098 83 1096.4 80.1 1090.1 77.25 1083.95 79.15 1076.75 M176.85 1076.75 Q178.75 1083.95 175.9 1090.1 173 1096.4 167 1098 161.05 1099.55 155.4 1095.55 149.85 1091.7 147.9 1084.5 L147.9 1084.45 Q146.3 1078.45 149.4 1073.1 152.55 1067.7 158.5 1066.15 164.5 1064.55 169.9 1067.65 175.2 1070.7 176.85 1076.7 L176.85 1076.75"/>
+ <path stroke="none" fill="#EBCEB7" d="M156.45 1032 L156.55 1032.05 156.75 1032.55 Q157.2 1047.2 147.45 1058.8 143.95 1063.35 138.7 1060.75 136.4 1059.65 134.95 1057.7 135.75 1055.5 139.25 1053.05 149.1 1045.9 156.45 1032 M121.1 1057.7 Q119.65 1059.65 117.35 1060.75 112.05 1063.35 108.55 1058.8 L108.6 1058.8 Q98.8 1047.2 99.3 1032.55 99.3 1032.25 99.45 1032.05 L99.55 1032 99.6 1032 Q106.9 1045.9 116.75 1053.05 120.25 1055.5 121.1 1057.7"/>
+ <path stroke="none" fill="#FFDFC6" d="M121.1 1057.7 Q120.25 1055.5 116.75 1053.05 106.9 1045.9 99.6 1032 L99.55 1032 Q99.7 1031.85 99.9 1031.85 L100.4 1031.85 100.8 1032.2 Q108.1 1044.45 117.95 1049.35 124 1052.25 122.1 1056 L122.1 1056.05 121.1 1057.7 M134.95 1057.7 L133.9 1056.05 133.9 1056 Q132 1052.25 138.05 1049.35 147.9 1044.45 155.25 1032.2 L155.65 1031.85 156.15 1031.85 156.45 1032 Q149.1 1045.9 139.25 1053.05 135.75 1055.5 134.95 1057.7"/>
+ <path stroke="none" fill="#724828" d="M137.1 1144.7 L137.05 1144.75 Q136.5 1146.25 134.35 1145.8 132.9 1145.5 131.25 1144.45 L131.6 1146.45 131.65 1146.6 131.6 1148.1 131.2 1148.9 Q130.6 1149.4 129.5 1148.2 128.7 1147.25 128 1145.7 127.3 1147.25 126.45 1148.2 125.4 1149.4 124.8 1148.9 L124.4 1148.1 124.4 1146.6 124.4 1146.45 124.75 1144.45 Q123.15 1145.5 121.65 1145.8 119.5 1146.25 118.9 1144.75 L118.9 1144.7 Q118.4 1143.3 119.7 1140.85 121 1138.3 123.4 1136.3 127.8 1132.6 132.6 1136.3 135 1138.3 136.3 1140.85 137.6 1143.3 137.1 1144.7"/>
+ <path stroke="none" fill="#BD7841" d="M320 1090 L319.95 1088 Q319.95 1061.45 338.65 1042.7 357.45 1024 383.95 1024 410.5 1024 429.2 1042.7 447.95 1061.45 447.95 1088 L447.95 1090 Q447.25 1064.75 429.2 1046.7 410.5 1028 383.95 1028 357.45 1028 338.65 1046.7 320.65 1064.75 320 1090"/>
+ <path stroke="none" fill="#8E5A32" d="M377.65 1047.75 L378.25 1048.8 Q379.3 1050.95 379.05 1053.05 378.75 1055.5 376.95 1056.6 375.15 1057.65 372.9 1056.65 370.9 1055.8 369.55 1053.8 L368.95 1052.75 Q366.4 1048.3 365.85 1044.4 365.3 1040.5 367.1 1039.5 368.9 1038.4 371.95 1040.85 375.1 1043.25 377.65 1047.75 M397.35 1055.45 L396.4 1056.95 Q394.4 1059.95 391.4 1061.25 388 1062.7 385.25 1061.15 382.5 1059.55 382.1 1055.9 381.7 1052.6 383.3 1049.4 L384.2 1047.85 Q388.1 1041.1 392.7 1037.45 397.4 1033.8 400.15 1035.4 402.9 1036.95 402 1042.8 401.25 1048.7 397.35 1055.45"/>
+ <path stroke="none" fill="#A16639" d="M397.35 1055.45 Q401.25 1048.7 402 1042.8 402.9 1036.95 400.15 1035.4 397.4 1033.8 392.7 1037.45 388.1 1041.1 384.2 1047.85 L383.3 1049.4 Q381.7 1052.6 382.1 1055.9 382.5 1059.55 385.25 1061.15 388 1062.7 391.4 1061.25 394.4 1059.95 396.4 1056.95 L397.35 1055.45 M447.95 1090 Q447.55 1104.35 441.55 1116.4 436.95 1125.45 429.2 1133.2 L425.8 1136.45 422.55 1139.15 Q420.8 1130.1 411.5 1123.35 400.1 1115 383.95 1115 367.8 1115 356.35 1123.35 347.15 1130.1 345.4 1139.15 L342.2 1136.5 338.65 1133.2 Q330.95 1125.5 326.45 1116.5 320.35 1104.4 320 1090 320.65 1064.75 338.65 1046.7 357.45 1028 383.95 1028 410.5 1028 429.2 1046.7 447.25 1064.75 447.95 1090 M377.65 1047.75 Q375.1 1043.25 371.95 1040.85 368.9 1038.4 367.1 1039.5 365.3 1040.5 365.85 1044.4 366.4 1048.3 368.95 1052.75 L369.55 1053.8 Q370.9 1055.8 372.9 1056.65 375.15 1057.65 376.95 1056.6 378.75 1055.5 379.05 1053.05 379.3 1050.95 378.25 1048.8 L377.65 1047.75"/>
+ <path stroke="none" fill="#EBCEB7" d="M422.55 1139.15 Q419 1141.9 415.25 1144.05 401.25 1152 383.95 1152 366.7 1152 352.7 1144 348.9 1141.85 345.4 1139.15 347.15 1130.1 356.35 1123.35 367.8 1115 383.95 1115 400.1 1115 411.5 1123.35 420.8 1130.1 422.55 1139.15 M377.05 1133.65 Q379.9 1136.5 383.95 1136.5 387.95 1136.5 390.8 1133.65 393.65 1130.8 393.65 1126.8 393.65 1125.3 393.25 1123.95 L393 1123.6 392.6 1123.5 392 1123.5 391.55 1123.65 391.35 1124.1 Q391.2 1126.85 389.2 1128.8 387 1131 383.95 1131 380.85 1131 378.7 1128.8 376.7 1126.85 376.5 1124.1 L376.3 1123.65 375.85 1123.5 375.25 1123.5 374.85 1123.6 374.65 1123.95 Q374.25 1125.3 374.25 1126.8 374.25 1130.85 377.05 1133.65 M364.7 1142.75 Q368.45 1142.75 371.15 1140.05 L372.05 1139 372.25 1138.4 372 1137.75 Q371.8 1137.5 371.45 1137.45 L370.8 1137.55 Q368.95 1138.5 366.7 1138.5 363.1 1138.5 360.5 1135.85 358.4 1133.8 357.95 1131.05 L357.65 1130.5 357.05 1130.2 356.4 1130.4 356 1130.9 Q355.6 1132.2 355.6 1133.65 355.6 1137.4 358.25 1140.05 L358.3 1140.1 Q360.95 1142.75 364.7 1142.75 M403.2 1142.75 Q406.95 1142.75 409.6 1140.1 L409.65 1140.05 Q412.3 1137.4 412.3 1133.65 412.3 1132.2 411.9 1130.9 L411.5 1130.4 410.85 1130.2 410.25 1130.5 409.95 1131.05 Q409.5 1133.8 407.4 1135.85 404.8 1138.5 401.2 1138.5 398.95 1138.5 397.1 1137.55 L396.45 1137.45 395.9 1137.75 Q395.65 1138 395.65 1138.4 395.6 1138.7 395.85 1139 L396.75 1140.05 Q399.45 1142.75 403.2 1142.75"/>
+ <path stroke="none" fill="#C6AD99" d="M403.2 1142.75 Q399.45 1142.75 396.75 1140.05 L395.85 1139 Q395.6 1138.7 395.65 1138.4 395.65 1138 395.9 1137.75 L396.45 1137.45 397.1 1137.55 Q398.95 1138.5 401.2 1138.5 404.8 1138.5 407.4 1135.85 409.5 1133.8 409.95 1131.05 L410.25 1130.5 410.85 1130.2 411.5 1130.4 411.9 1130.9 Q412.3 1132.2 412.3 1133.65 412.3 1137.4 409.65 1140.05 L409.6 1140.1 Q406.95 1142.75 403.2 1142.75 M377.05 1133.65 Q374.25 1130.85 374.25 1126.8 374.25 1125.3 374.65 1123.95 L374.85 1123.6 375.25 1123.5 375.85 1123.5 376.3 1123.65 376.5 1124.1 Q376.7 1126.85 378.7 1128.8 380.85 1131 383.95 1131 387 1131 389.2 1128.8 391.2 1126.85 391.35 1124.1 L391.55 1123.65 392 1123.5 392.6 1123.5 393 1123.6 393.25 1123.95 Q393.65 1125.3 393.65 1126.8 393.65 1130.8 390.8 1133.65 387.95 1136.5 383.95 1136.5 379.9 1136.5 377.05 1133.65 M364.7 1142.75 Q360.95 1142.75 358.3 1140.1 L358.25 1140.05 Q355.6 1137.4 355.6 1133.65 355.6 1132.2 356 1130.9 L356.4 1130.4 357.05 1130.2 357.65 1130.5 357.95 1131.05 Q358.4 1133.8 360.5 1135.85 363.1 1138.5 366.7 1138.5 368.95 1138.5 370.8 1137.55 L371.45 1137.45 Q371.8 1137.5 372 1137.75 L372.25 1138.4 372.05 1139 371.15 1140.05 Q368.45 1142.75 364.7 1142.75"/>
+ <path stroke="none" fill="#EBCEB7" d="M377.35 1082.55 Q378.15 1085.45 378.15 1088.7 378.15 1098.05 371.5 1104.65 364.9 1111.3 355.55 1111.3 346.2 1111.3 339.6 1104.65 333 1098.05 333 1088.7 333 1085.35 333.85 1082.35 335.95 1075.45 332.25 1072.6 330.25 1071 329.8 1069.3 365.15 1067.1 377.35 1082.55 M423.2 1088.7 Q423.2 1084.2 420.05 1081 416.8 1077.85 412.35 1077.85 407.85 1077.85 404.65 1081 401.45 1084.2 401.45 1088.7 401.45 1093.25 404.65 1096.4 407.85 1099.6 412.35 1099.6 416.8 1099.6 420.05 1096.4 423.2 1093.25 423.2 1088.7 M438.1 1069.3 Q437.65 1071 435.65 1072.6 431.95 1075.45 434.05 1082.35 434.9 1085.35 434.9 1088.7 434.9 1098.05 428.3 1104.65 421.7 1111.3 412.35 1111.3 403 1111.3 396.4 1104.65 389.75 1098.05 389.75 1088.7 389.75 1085.45 390.55 1082.55 402.75 1067.1 438.1 1069.3 M344.7 1088.7 Q344.7 1093.25 347.85 1096.4 351.1 1099.6 355.55 1099.6 360.05 1099.6 363.25 1096.4 366.45 1093.25 366.45 1088.7 366.45 1084.2 363.25 1081 360.05 1077.85 355.55 1077.85 351.1 1077.85 347.85 1081 344.7 1084.2 344.7 1088.7"/>
+ <path stroke="none" fill="#FFFFFF" d="M344.7 1088.7 Q344.7 1084.2 347.85 1081 351.1 1077.85 355.55 1077.85 360.05 1077.85 363.25 1081 366.45 1084.2 366.45 1088.7 366.45 1093.25 363.25 1096.4 360.05 1099.6 355.55 1099.6 351.1 1099.6 347.85 1096.4 344.7 1093.25 344.7 1088.7 M423.2 1088.7 Q423.2 1093.25 420.05 1096.4 416.8 1099.6 412.35 1099.6 407.85 1099.6 404.65 1096.4 401.45 1093.25 401.45 1088.7 401.45 1084.2 404.65 1081 407.85 1077.85 412.35 1077.85 416.8 1077.85 420.05 1081 423.2 1084.2 423.2 1088.7 M416.9 1088.7 Q416.9 1086.15 415.05 1084.35 413.25 1082.55 410.7 1082.55 408.15 1082.55 406.25 1084.35 404.45 1086.15 404.45 1088.7 404.45 1091.3 406.25 1093.15 408.15 1094.95 410.7 1094.95 413.25 1094.95 415.05 1093.15 416.9 1091.3 416.9 1088.7 M351 1088.7 Q351 1091.3 352.85 1093.15 354.65 1094.95 357.2 1094.95 359.75 1094.95 361.65 1093.15 363.45 1091.3 363.45 1088.7 363.45 1086.15 361.65 1084.35 359.75 1082.55 357.2 1082.55 354.65 1082.55 352.85 1084.35 351 1086.15 351 1088.7"/>
+ <path stroke="none" fill="#5B5B5B" d="M351 1088.7 Q351 1086.15 352.85 1084.35 354.65 1082.55 357.2 1082.55 359.75 1082.55 361.65 1084.35 363.45 1086.15 363.45 1088.7 363.45 1091.3 361.65 1093.15 359.75 1094.95 357.2 1094.95 354.65 1094.95 352.85 1093.15 351 1091.3 351 1088.7 M416.9 1088.7 Q416.9 1091.3 415.05 1093.15 413.25 1094.95 410.7 1094.95 408.15 1094.95 406.25 1093.15 404.45 1091.3 404.45 1088.7 404.45 1086.15 406.25 1084.35 408.15 1082.55 410.7 1082.55 413.25 1082.55 415.05 1084.35 416.9 1086.15 416.9 1088.7"/>
+ <path stroke="none" fill="#DEC2AD" d="M390.55 1082.55 Q392.05 1077.05 396.4 1072.75 401.9 1067.2 415.05 1064.3 424.25 1062.5 430.7 1063.35 437.15 1064.1 438.05 1067.45 438.3 1068.4 438.1 1069.3 402.75 1067.1 390.55 1082.55 M377.35 1082.55 Q365.15 1067.1 329.8 1069.3 329.6 1068.4 329.85 1067.45 330.75 1064.1 337.2 1063.35 343.65 1062.5 352.85 1064.3 366 1067.2 371.5 1072.75 375.85 1077.05 377.35 1082.55"/>
+ <path stroke="none" fill="#FF9900" d="M396.25 1103.4 Q395.45 1100.35 392.9 1097.95 L391.5 1096.8 Q388.2 1094.5 383.95 1094.5 379.7 1094.5 376.45 1096.8 L374.95 1097.95 Q372.45 1100.35 371.65 1103.4 370.75 1102.7 370.45 1101.85 371.1 1097.65 374.25 1094.4 L375.85 1093.05 Q379.35 1090.45 383.95 1090.45 388.55 1090.45 392.05 1093.05 L393.6 1094.4 Q396.8 1097.65 397.4 1101.85 L396.25 1103.4"/>
+ <path stroke="none" fill="#F39100" d="M396.25 1103.4 Q395.25 1104.2 393.6 1104.85 389.6 1106.5 383.95 1106.5 378.25 1106.5 374.25 1104.85 L371.65 1103.4 Q372.45 1100.35 374.95 1097.95 L376.45 1096.8 Q379.7 1094.5 383.95 1094.5 388.2 1094.5 391.5 1096.8 L392.9 1097.95 Q395.45 1100.35 396.25 1103.4"/>
+ <path stroke="none" fill="#E08600" d="M396.25 1103.4 L397.4 1101.85 397.6 1104.05 397.55 1104.95 Q397.3 1108 393.6 1110.15 389.6 1112.5 383.95 1112.5 378.25 1112.5 374.25 1110.15 370.6 1108 370.3 1104.95 L370.3 1104.05 Q370.3 1102.9 370.45 1101.85 370.75 1102.7 371.65 1103.4 L374.25 1104.85 Q378.25 1106.5 383.95 1106.5 389.6 1106.5 393.6 1104.85 395.25 1104.2 396.25 1103.4"/>
+ <path stroke="none" fill="#EBCEB7" d="M687.2 1128.7 L683.05 1133.2 681.85 1134.4 674.9 1140.25 Q658.75 1152 637.85 1152 615.45 1152 598.6 1138.55 L593.85 1134.4 592.6 1133.2 588.5 1128.7 Q578.15 1116.5 575.15 1101.3 L580.35 1103.45 Q595.1 1109 613.6 1111.15 614.1 1106.7 617.35 1103.35 621.3 1099.45 626.85 1099.45 632.35 1099.45 636.25 1103.35 L637.85 1105.2 639.4 1103.35 Q643.35 1099.45 648.9 1099.45 654.4 1099.45 658.3 1103.35 661.65 1106.7 662.15 1111.15 680.65 1109 695.35 1103.45 L700.6 1101.3 Q697.55 1116.5 687.2 1128.7 M653.5 1106.25 L652.75 1105.7 Q651.6 1105.15 649.7 1105.7 L649.5 1105.75 Q647.1 1106.5 645 1108.6 L644.85 1108.75 Q644.3 1109.3 644 1110.05 643.65 1110.8 643.65 1111.75 643.65 1113.55 644.95 1114.8 646.2 1116.1 648.05 1116.1 649.75 1116.1 651.05 1114.9 L651.15 1114.8 Q652.9 1113.05 653.7 1111.15 L654.1 1110.05 654.2 1109.6 Q654.55 1108 654 1106.95 L653.5 1106.25 M624.65 1114.9 Q625.9 1116.1 627.65 1116.1 629.45 1116.1 630.7 1114.8 632 1113.55 632 1111.75 L631.7 1110.05 630.8 1108.75 630.7 1108.6 Q628.5 1106.45 626.1 1105.7 L625.95 1105.7 Q624.1 1105.15 622.95 1105.7 622.5 1105.9 622.2 1106.25 L621.65 1106.95 Q621.1 1108 621.5 1109.6 L621.6 1110.05 621.95 1111.15 Q622.75 1113.05 624.5 1114.8 L624.65 1114.9"/>
+ <path stroke="none" fill="#B19A89" d="M624.65 1114.9 L624.5 1114.8 Q622.75 1113.05 621.95 1111.15 L621.6 1110.05 621.5 1109.6 Q621.1 1108 621.65 1106.95 L622.2 1106.25 Q622.5 1105.9 622.95 1105.7 624.1 1105.15 625.95 1105.7 L626.1 1105.7 Q628.5 1106.45 630.7 1108.6 L630.8 1108.75 631.7 1110.05 632 1111.75 Q632 1113.55 630.7 1114.8 629.45 1116.1 627.65 1116.1 625.9 1116.1 624.65 1114.9 M653.5 1106.25 L654 1106.95 Q654.55 1108 654.2 1109.6 L654.1 1110.05 653.7 1111.15 Q652.9 1113.05 651.15 1114.8 L651.05 1114.9 Q649.75 1116.1 648.05 1116.1 646.2 1116.1 644.95 1114.8 643.65 1113.55 643.65 1111.75 643.65 1110.8 644 1110.05 644.3 1109.3 644.85 1108.75 L645 1108.6 Q647.1 1106.5 649.5 1105.75 L649.7 1105.7 Q651.6 1105.15 652.75 1105.7 L653.5 1106.25"/>
+ <path stroke="none" fill="#F0EDE7" d="M592.05 1111.1 L591.05 1106.45 Q590.95 1106.1 591.1 1105.8 591.25 1105.4 591.55 1105.25 L592.25 1105.2 606 1107.7 Q606.4 1107.75 606.7 1108.05 L607.15 1108.65 607.25 1109.45 606.3 1113.7 592.05 1111.1 M669.4 1113.7 Q668.85 1111.7 668.45 1109.45 L668.55 1108.65 669 1108.05 Q669.3 1107.75 669.7 1107.7 L683.45 1105.2 684.15 1105.25 684.6 1105.8 684.65 1106.45 683.65 1111.1 669.4 1113.7"/>
+ <path stroke="none" fill="#FFFCF5" d="M669.4 1113.7 L683.65 1111.1 Q681.65 1118.35 677.6 1124.5 L677.05 1125.05 676.35 1125.25 675.7 1125 Q671.5 1121.8 669.4 1113.7 M606.3 1113.7 Q604.2 1121.8 600 1125 L599.35 1125.25 598.65 1125.05 598.1 1124.5 Q594.05 1118.35 592.05 1111.1 L606.3 1113.7"/>
+ <path stroke="none" fill="#31DE7A" d="M573.9 1090 L573.85 1088 Q573.85 1072.75 580.1 1060.05 584.15 1051.7 590.95 1044.45 L590.95 1044.35 592.55 1042.7 593.25 1042 Q596.2 1039.15 599.3 1036.8 604.85 1032.5 611 1029.7 614.75 1027.95 618.75 1026.75 L620.7 1026.2 626.45 1024.95 637.85 1024 Q645.15 1024 651.95 1025.45 L657 1026.75 Q661 1027.95 664.75 1029.7 670.9 1032.55 676.5 1036.85 L682.45 1042.05 683.1 1042.7 686.45 1046.3 686.45 1046.4 Q692.05 1052.8 695.65 1060.05 701.85 1072.75 701.85 1088 L701.85 1090 Q701.35 1072.85 692.85 1059.05 688.85 1052.55 683.05 1046.75 L682 1045.75 682.05 1045.65 677.45 1041.65 Q668.95 1034.8 659 1031.4 656.15 1030.4 653.15 1029.7 L653.1 1029.7 645.85 1028.45 637.85 1028 629.85 1028.45 626.45 1028.95 622.75 1029.65 Q619.7 1030.35 616.8 1031.35 606.8 1034.75 598.25 1041.6 595.9 1043.45 593.7 1045.6 L593.7 1045.7 592.6 1046.75 Q586.8 1052.55 582.85 1059.05 574.35 1072.85 573.9 1090"/>
+ <path stroke="none" fill="#FFFFFF" d="M604.3 1043.75 Q604.3 1041.8 605.05 1040.15 605.7 1038.6 607 1037.3 609.7 1034.7 613.45 1034.7 L613.95 1034.75 Q616.3 1034.8 618.25 1036 L618.3 1036.05 619.7 1037.1 619.95 1037.3 Q622.6 1040 622.6 1043.75 622.6 1047.55 619.95 1050.15 L619.7 1050.4 618.85 1051.1 Q616.45 1052.9 613.45 1052.9 609.7 1052.9 607 1050.15 604.3 1047.55 604.3 1043.75 M608.75 1043.95 Q608.75 1046.3 610.45 1047.95 612.05 1049.65 614.45 1049.65 616.8 1049.65 618.5 1047.95 L618.6 1047.9 619.7 1046.3 Q620.2 1045.25 620.2 1043.95 620.2 1042.65 619.7 1041.55 619.3 1040.6 618.5 1039.85 L618.25 1039.65 Q616.65 1038.25 614.45 1038.25 612.05 1038.25 610.45 1039.85 608.75 1041.5 608.75 1043.95 M671.4 1043.75 Q671.4 1047.55 668.75 1050.15 666.05 1052.9 662.25 1052.9 659.15 1052.9 656.85 1051.1 L655.85 1050.15 Q653.15 1047.55 653.15 1043.75 653.15 1040 655.85 1037.3 656.6 1036.55 657.4 1036.1 L657.5 1036 Q659.4 1034.8 661.75 1034.75 L662.25 1034.7 Q666.05 1034.7 668.75 1037.3 670.05 1038.65 670.7 1040.2 671.4 1041.8 671.4 1043.75 M667 1043.95 Q667 1041.5 665.3 1039.85 663.65 1038.25 661.25 1038.25 659.15 1038.25 657.45 1039.65 L657.2 1039.85 Q655.5 1041.5 655.5 1043.95 655.5 1046.3 657.15 1047.9 L657.2 1047.95 Q658.95 1049.65 661.25 1049.65 663.65 1049.65 665.3 1047.95 667 1046.3 667 1043.95"/>
+ <path stroke="none" fill="#2ECC71" d="M701.85 1090 Q701.7 1095.85 700.6 1101.3 L695.35 1103.45 Q680.65 1109 662.15 1111.15 661.65 1106.7 658.3 1103.35 654.4 1099.45 648.9 1099.45 643.35 1099.45 639.4 1103.35 L637.85 1105.2 636.25 1103.35 Q632.35 1099.45 626.85 1099.45 621.3 1099.45 617.35 1103.35 614.1 1106.7 613.6 1111.15 595.1 1109 580.35 1103.45 L575.15 1101.3 Q574.05 1095.85 573.9 1090 574.35 1072.85 582.85 1059.05 586.8 1052.55 592.6 1046.75 L593.7 1045.7 593.7 1045.6 Q595.9 1043.45 598.25 1041.6 606.8 1034.75 616.8 1031.35 619.7 1030.35 622.75 1029.65 L622.95 1029.95 Q627.65 1034.85 627.65 1041.75 627.6 1048.7 622.95 1053.5 L622.7 1053.8 622.35 1054.15 622.1 1054.35 Q620.3 1055.95 618.35 1057 L619.65 1064.05 618.35 1065.3 Q617.7 1066.1 617.6 1067.2 L617.6 1067.6 617.6 1067.95 Q617.7 1068.65 618.05 1069.25 618.6 1070.1 619.4 1070.25 620.25 1070.4 620.9 1069.6 L621 1069.5 623 1075.7 Q624.3 1079.2 625.7 1081.95 624.5 1082.75 623.8 1083.7 L623.85 1083.6 Q622.9 1084.6 622.8 1086.1 L622.8 1086.2 622.8 1086.45 622.8 1086.65 622.8 1086.9 Q622.9 1087.75 623.4 1088.55 L623.45 1088.6 Q624.3 1089.95 625.55 1090.1 L625.6 1090.15 Q627.15 1090.5 628.45 1089.1 L628.55 1088.95 629.2 1088.4 629.55 1088.25 629.7 1088.2 Q633.45 1092.5 637.85 1092.5 642.25 1092.5 646.05 1088.15 L646.2 1088.2 646.6 1088.4 647.25 1089 647.3 1089.05 Q648.45 1090.5 650.1 1090.15 L650.15 1090.1 Q651.4 1089.95 652.3 1088.6 L652.3 1088.55 652.9 1087 652.9 1086.9 652.95 1086.45 652.9 1085.95 Q652.75 1084.6 652 1083.7 L651.95 1083.65 Q651.2 1082.75 650.05 1081.95 L652.7 1075.7 654.75 1069.4 654.9 1069.6 Q655.5 1070.4 656.35 1070.25 657.15 1070.1 657.7 1069.25 L658.15 1067.95 658.2 1067.65 658.15 1067.2 Q658.05 1066.1 657.45 1065.3 L656.1 1064 657.35 1057 Q655.15 1055.8 653.25 1053.9 L653.1 1053.75 Q648.1 1048.85 648.1 1041.75 648.1 1034.65 653.1 1029.7 L653.15 1029.7 Q656.15 1030.4 659 1031.4 668.95 1034.8 677.45 1041.65 L682.05 1045.65 682 1045.75 683.05 1046.75 Q688.85 1052.55 692.85 1059.05 701.35 1072.85 701.85 1090 M604.3 1043.75 Q604.3 1047.55 607 1050.15 609.7 1052.9 613.45 1052.9 616.45 1052.9 618.85 1051.1 L619.7 1050.4 619.95 1050.15 Q622.6 1047.55 622.6 1043.75 622.6 1040 619.95 1037.3 L619.7 1037.1 618.3 1036.05 618.25 1036 Q616.3 1034.8 613.95 1034.75 L613.45 1034.7 Q609.7 1034.7 607 1037.3 605.7 1038.6 605.05 1040.15 604.3 1041.8 604.3 1043.75 M671.4 1043.75 Q671.4 1041.8 670.7 1040.2 670.05 1038.65 668.75 1037.3 666.05 1034.7 662.25 1034.7 L661.75 1034.75 Q659.4 1034.8 657.5 1036 L657.4 1036.1 Q656.6 1036.55 655.85 1037.3 653.15 1040 653.15 1043.75 653.15 1047.55 655.85 1050.15 L656.85 1051.1 Q659.15 1052.9 662.25 1052.9 666.05 1052.9 668.75 1050.15 671.4 1047.55 671.4 1043.75"/>
+ <path stroke="none" fill="#30D776" d="M622.75 1029.65 L626.45 1028.95 629.85 1028.45 637.85 1028 645.85 1028.45 653.1 1029.7 Q648.1 1034.65 648.1 1041.75 648.1 1048.85 653.1 1053.75 L653.25 1053.9 Q655.15 1055.8 657.35 1057 L656.1 1064 652.95 1061.85 Q646.65 1058.45 637.9 1058.45 629.05 1058.45 622.9 1061.85 621 1062.9 619.65 1064.05 L618.35 1057 Q620.3 1055.95 622.1 1054.35 L622.35 1054.15 622.7 1053.8 622.95 1053.5 Q627.6 1048.7 627.65 1041.75 627.65 1034.85 622.95 1029.95 L622.75 1029.65 M621 1069.5 Q621.7 1068.65 622.8 1067.95 L624.35 1067.25 624.35 1067.3 Q629.95 1065.1 637.9 1065.1 645.85 1065.1 651.5 1067.3 L651.45 1067.25 653 1067.95 654.75 1069.4 652.7 1075.7 650.05 1081.95 648.5 1081 Q644.05 1078.55 637.9 1078.55 631.65 1078.55 627.3 1081 L627.25 1081 Q626.35 1081.45 625.7 1081.95 624.3 1079.2 623 1075.7 L621 1069.5 M629.7 1088.2 L629.9 1088.15 Q633.2 1086.85 637.9 1086.85 642.6 1086.85 645.95 1088.15 L646.05 1088.15 Q642.25 1092.5 637.85 1092.5 633.45 1092.5 629.7 1088.2"/>
+ <path stroke="none" fill="#5B5B5B" d="M608.75 1043.95 Q608.75 1041.5 610.45 1039.85 612.05 1038.25 614.45 1038.25 616.65 1038.25 618.25 1039.65 L618.5 1039.85 Q619.3 1040.6 619.7 1041.55 620.2 1042.65 620.2 1043.95 620.2 1045.25 619.7 1046.3 L618.6 1047.9 618.5 1047.95 Q616.8 1049.65 614.45 1049.65 612.05 1049.65 610.45 1047.95 608.75 1046.3 608.75 1043.95 M667 1043.95 Q667 1046.3 665.3 1047.95 663.65 1049.65 661.25 1049.65 658.95 1049.65 657.2 1047.95 L657.15 1047.9 Q655.5 1046.3 655.5 1043.95 655.5 1041.5 657.2 1039.85 L657.45 1039.65 Q659.15 1038.25 661.25 1038.25 663.65 1038.25 665.3 1039.85 667 1041.5 667 1043.95"/>
+ <path stroke="none" fill="#28B463" d="M619.65 1064.05 Q621 1062.9 622.9 1061.85 629.05 1058.45 637.9 1058.45 646.65 1058.45 652.95 1061.85 L656.1 1064 657.45 1065.3 Q658.05 1066.1 658.15 1067.2 L658.2 1067.65 658.15 1067.95 657.7 1069.25 Q657.15 1070.1 656.35 1070.25 655.5 1070.4 654.9 1069.6 L654.75 1069.4 653 1067.95 651.45 1067.25 651.5 1067.3 Q645.85 1065.1 637.9 1065.1 629.95 1065.1 624.35 1067.3 L624.35 1067.25 622.8 1067.95 Q621.7 1068.65 621 1069.5 L620.9 1069.6 Q620.25 1070.4 619.4 1070.25 618.6 1070.1 618.05 1069.25 617.7 1068.65 617.6 1067.95 L617.6 1067.6 617.6 1067.2 Q617.7 1066.1 618.35 1065.3 L619.65 1064.05 M625.7 1081.95 Q626.35 1081.45 627.25 1081 L627.3 1081 Q631.65 1078.55 637.9 1078.55 644.05 1078.55 648.5 1081 L650.05 1081.95 Q651.2 1082.75 651.95 1083.65 L652 1083.7 Q652.75 1084.6 652.9 1085.95 L652.95 1086.45 652.9 1086.9 652.9 1087 652.3 1088.55 652.3 1088.6 Q651.4 1089.95 650.15 1090.1 L650.1 1090.15 Q648.45 1090.5 647.3 1089.05 L647.25 1089 646.6 1088.4 646.2 1088.2 646.05 1088.15 645.95 1088.15 Q642.6 1086.85 637.9 1086.85 633.2 1086.85 629.9 1088.15 L629.7 1088.2 629.55 1088.25 629.2 1088.4 628.55 1088.95 628.45 1089.1 Q627.15 1090.5 625.6 1090.15 L625.55 1090.1 Q624.3 1089.95 623.45 1088.6 L623.4 1088.55 Q622.9 1087.75 622.8 1086.9 L622.8 1086.65 622.8 1086.45 622.8 1086.2 622.8 1086.1 Q622.9 1084.6 623.85 1083.6 L623.8 1083.7 Q624.5 1082.75 625.7 1081.95"/>
+ <path stroke="none" fill="#31DE7A" d="M836.15 681 Q840.85 669 850.65 659.2 858.75 651.1 868.35 646.5 876.65 642.5 886 641.15 L895.9 640.45 905.8 641.15 Q915.15 642.5 923.45 646.5 933 651.1 941.1 659.2 950.95 669.05 955.65 681 L954.15 681.45 Q949.45 671.55 941.1 663.2 932.8 654.9 923 650.3 910.65 644.45 895.9 644.45 881.15 644.45 868.8 650.25 858.95 654.9 850.65 663.2 842.3 671.55 837.7 681.4 L836.15 681"/>
+ <path stroke="none" fill="#2ECC71" d="M837.7 681.4 Q842.3 671.55 850.65 663.2 858.95 654.9 868.8 650.25 881.15 644.45 895.9 644.45 910.65 644.45 923 650.3 932.8 654.9 941.1 663.2 949.45 671.55 954.15 681.45 929.7 688 895.95 688 862.2 688 837.7 681.4"/>
+ <path stroke="none" fill="#FFFFFF" d="M955.65 681 L956.95 684.65 955.65 685 954.15 685.45 Q929.7 692 895.95 692 862.2 692 837.7 685.4 L836.15 685 834.85 684.6 836.15 681 837.7 681.4 Q862.2 688 895.95 688 929.7 688 954.15 681.45 L955.65 681"/>
+ <path stroke="none" fill="#E5E5E5" d="M956.95 684.65 Q959.9 693.9 959.9 704.45 L959.9 706.45 Q959.3 728.55 945.25 745.15 L941.1 749.65 Q937.2 753.6 932.95 756.7 916.8 768.45 895.9 768.45 873.5 768.45 856.65 755 L850.65 749.65 846.55 745.15 Q832.5 728.55 831.95 706.45 L831.9 704.45 Q831.9 693.9 834.85 684.6 L836.15 685 837.7 685.4 Q862.2 692 895.95 692 929.7 692 954.15 685.45 L955.65 685 956.95 684.65 M923 746.25 Q922.4 743.95 920.3 742.8 918.3 741.65 916.05 742.25 913.75 742.85 912.5 744.9 911.4 746.9 912 749.2 912.6 751.45 914.6 752.65 916.7 753.85 919 753.25 921.25 752.65 922.4 750.55 923.6 748.5 923 746.25 M921.85 731.45 Q921.45 730.05 920.2 729.3 918.85 728.55 917.45 728.95 916.05 729.3 915.35 730.6 914.6 731.9 915 733.3 915.35 734.7 916.65 735.45 917.9 736.15 919.3 735.8 920.7 735.4 921.5 734.15 922.2 732.85 921.85 731.45 M935.65 740.15 Q935.15 738.25 933.45 737.25 931.75 736.25 929.9 736.75 928 737.25 927 739 926 740.7 926.5 742.6 927.05 744.45 928.75 745.45 930.45 746.4 932.35 745.9 934.2 745.4 935.2 743.7 936.2 742 935.65 740.15"/>
+ <path stroke="none" fill="#D7D7D7" d="M935.65 740.15 Q936.2 742 935.2 743.7 934.2 745.4 932.35 745.9 930.45 746.4 928.75 745.45 927.05 744.45 926.5 742.6 926 740.7 927 739 928 737.25 929.9 736.75 931.75 736.25 933.45 737.25 935.15 738.25 935.65 740.15 M921.85 731.45 Q922.2 732.85 921.5 734.15 920.7 735.4 919.3 735.8 917.9 736.15 916.65 735.45 915.35 734.7 915 733.3 914.6 731.9 915.35 730.6 916.05 729.3 917.45 728.95 918.85 728.55 920.2 729.3 921.45 730.05 921.85 731.45 M923 746.25 Q923.6 748.5 922.4 750.55 921.25 752.65 919 753.25 916.7 753.85 914.6 752.65 912.6 751.45 912 749.2 911.4 746.9 912.5 744.9 913.75 742.85 916.05 742.25 918.3 741.65 920.3 742.8 922.4 743.95 923 746.25"/>
+ <path stroke="none" fill="#23A35A" d="M907.1 676.9 L907.45 677.4 Q907.85 678.15 907.6 679.3 L907.5 679.6 907.25 680.4 Q906.65 681.75 905.4 683 L905.35 683.1 Q904.45 683.95 903.2 683.95 901.9 683.95 901 683 900.1 682.1 900.1 680.85 900.1 680.15 900.35 679.6 L900.95 678.7 901.05 678.6 Q902.55 677.1 904.25 676.55 L904.4 676.55 Q905.75 676.15 906.55 676.55 L907.1 676.9 M886.55 683.1 L886.45 683 Q885.2 681.75 884.65 680.4 884.45 680 884.4 679.6 L884.3 679.3 Q884 678.15 884.4 677.4 L884.8 676.9 Q885 676.65 885.35 676.55 886.15 676.15 887.5 676.55 L887.6 676.55 Q889.3 677.05 890.85 678.6 L890.95 678.7 891.55 679.6 891.8 680.85 Q891.8 682.1 890.85 683 889.95 683.95 888.7 683.95 887.45 683.95 886.55 683.1"/>
+ <path stroke="none" fill="#31DE7A" d="M901.7 663.4 L901.65 661.85 Q901.65 655.25 906.35 650.6 L906.35 650.55 908.65 648.7 909.15 648.35 Q912.35 646.3 916.4 646.1 L917.55 646 Q924.1 646 928.8 650.55 L928.9 650.7 Q931.1 652.9 932.25 655.6 L932.25 655.65 Q933.4 658.45 933.45 661.8 L933.45 661.85 933.4 663.45 Q933.15 661 932.25 658.8 L932.25 658.75 Q931.1 656.05 928.9 653.85 L928.8 653.7 Q924.1 649.15 917.55 649.15 L916.4 649.25 Q912.35 649.45 909.15 651.5 L908.65 651.85 906.35 653.7 906.35 653.75 Q902.2 657.85 901.7 663.4 M858.45 663.5 L858.4 661.85 858.4 661.8 Q858.4 658.35 859.75 655.4 L859.65 655.6 Q860.8 652.8 863.15 650.55 867.8 646 874.3 646 L875.4 646.1 Q879.3 646.25 882.65 648.3 L883.05 648.6 885.05 650.05 885.65 650.6 885.65 650.65 Q890.25 655.25 890.25 661.85 L890.15 663.4 Q889.65 657.8 885.65 653.8 L885.65 653.75 885.05 653.2 883.05 651.75 882.65 651.5 Q879.3 649.4 875.4 649.25 L874.3 649.15 Q867.8 649.15 863.15 653.7 860.8 655.95 859.65 658.75 L859.75 658.55 Q858.7 660.85 858.45 663.5"/>
+ <path stroke="none" fill="#2ECC71" d="M858.45 663.5 Q858.7 660.85 859.75 658.55 L859.65 658.75 Q860.8 655.95 863.15 653.7 867.8 649.15 874.3 649.15 L875.4 649.25 Q879.3 649.4 882.65 651.5 L883.05 651.75 885.05 653.2 885.65 653.75 885.65 653.8 Q889.65 657.8 890.15 663.4 889.65 669.05 885.65 673.05 L885.65 673 885.35 673.3 885.15 673.5 883.8 674.6 883.75 674.65 Q879.5 677.75 874.3 677.75 867.75 677.8 863.05 673 L863.2 673.1 Q859 669.15 858.45 663.5 M933.4 663.45 Q932.85 669 928.9 673 L928.85 673.05 Q924.15 677.75 917.55 677.75 912.1 677.7 908 674.55 L907.75 674.35 906.45 673.1 906.35 673 Q902.2 669 901.7 663.4 902.2 657.85 906.35 653.75 L906.35 653.7 908.65 651.85 909.15 651.5 Q912.35 649.45 916.4 649.25 L917.55 649.15 Q924.1 649.15 928.8 653.7 L928.9 653.85 Q931.1 656.05 932.25 658.75 L932.25 658.8 Q933.15 661 933.4 663.45 M927.15 661.85 L927.15 661.8 Q927.15 659.8 926.45 658.1 925.75 656.45 924.4 655.05 921.55 652.3 917.55 652.3 L917 652.35 Q914.55 652.4 912.55 653.7 L912.45 653.75 Q911.55 654.3 910.8 655.05 907.95 657.85 907.95 661.85 907.95 665.85 910.8 668.55 L911.85 669.55 Q914.3 671.45 917.55 671.45 921.55 671.45 924.4 668.55 927.15 665.85 927.15 661.85 M864.7 661.85 Q864.7 665.85 867.55 668.55 870.35 671.45 874.3 671.45 877.45 671.45 880 669.55 L880.9 668.85 881.15 668.55 Q883.95 665.85 883.95 661.85 883.95 657.85 881.15 655.05 L880.9 654.85 Q880.2 654.2 879.4 653.7 L879.35 653.7 Q877.3 652.4 874.85 652.35 L874.3 652.3 Q870.35 652.3 867.55 655.05 866.15 656.4 865.5 658 864.7 659.75 864.7 661.8 L864.7 661.85"/>
+ <path stroke="none" fill="#D23007" d="M864.7 661.85 L864.7 661.8 Q864.7 659.75 865.5 658 866.15 656.4 867.55 655.05 870.35 652.3 874.3 652.3 L874.85 652.35 Q877.3 652.4 879.35 653.7 L879.4 653.7 Q880.2 654.2 880.9 654.85 L881.15 655.05 Q883.95 657.85 883.95 661.85 883.95 665.85 881.15 668.55 L880.9 668.85 880 669.55 Q877.45 671.45 874.3 671.45 870.35 671.45 867.55 668.55 864.7 665.85 864.7 661.85 M927.15 661.85 Q927.15 665.85 924.4 668.55 921.55 671.45 917.55 671.45 914.3 671.45 911.85 669.55 L910.8 668.55 Q907.95 665.85 907.95 661.85 907.95 657.85 910.8 655.05 911.55 654.3 912.45 653.75 L912.55 653.7 Q914.55 652.4 917 652.35 L917.55 652.3 Q921.55 652.3 924.4 655.05 925.75 656.45 926.45 658.1 927.15 659.8 927.15 661.8 L927.15 661.85 M922.55 662.05 Q922.55 659.45 920.75 657.75 919 656.05 916.5 656.05 914.25 656.05 912.5 657.5 L912.2 657.75 Q910.45 659.45 910.45 662.05 910.45 664.5 912.15 666.2 L912.2 666.2 Q914.05 668.05 916.5 668.05 919 668.05 920.75 666.2 922.55 664.55 922.55 662.05 M869.4 662.05 Q869.4 664.55 871.15 666.2 872.85 668.05 875.4 668.05 877.85 668.05 879.65 666.2 L879.7 666.2 880.9 664.5 Q881.4 663.4 881.4 662.05 881.4 660.65 880.9 659.5 880.45 658.55 879.65 657.75 L879.35 657.5 Q877.65 656.05 875.4 656.05 872.85 656.05 871.15 657.75 869.4 659.45 869.4 662.05"/>
+ <path stroke="none" fill="#3F3F3F" d="M869.4 662.05 Q869.4 659.45 871.15 657.75 872.85 656.05 875.4 656.05 877.65 656.05 879.35 657.5 L879.65 657.75 Q880.45 658.55 880.9 659.5 881.4 660.65 881.4 662.05 881.4 663.4 880.9 664.5 L879.7 666.2 879.65 666.2 Q877.85 668.05 875.4 668.05 872.85 668.05 871.15 666.2 869.4 664.55 869.4 662.05 M922.55 662.05 Q922.55 664.55 920.75 666.2 919 668.05 916.5 668.05 914.05 668.05 912.2 666.2 L912.15 666.2 Q910.45 664.5 910.45 662.05 910.45 659.45 912.2 657.75 L912.5 657.5 Q914.25 656.05 916.5 656.05 919 656.05 920.75 657.75 922.55 659.45 922.55 662.05"/>
+ <path stroke="none" fill="#31DE7A" d="M929.15 683.8 L929.45 682.15 Q930.85 676.9 935.5 674.2 940.2 671.5 945.45 672.9 950.65 674.3 953.35 679 956.05 683.65 954.65 688.9 L954.15 690.5 Q954.75 686.15 952.45 682.25 949.85 677.55 944.6 676.15 939.35 674.75 934.65 677.45 930.75 679.75 929.15 683.8 M837.7 690.5 L837.15 688.9 Q835.75 683.65 838.45 679 841.2 674.3 846.35 672.9 851.6 671.5 856.25 674.2 860.95 676.9 862.35 682.15 L862.7 683.8 Q861 679.75 857.15 677.45 852.45 674.75 847.2 676.15 842 677.55 839.3 682.25 837 686.2 837.7 690.5"/>
+ <path stroke="none" fill="#2ECC71" d="M837.7 690.5 Q837 686.2 839.3 682.25 842 677.55 847.2 676.15 852.45 674.75 857.15 677.45 861 679.75 862.7 683.8 863.25 688.1 861 692.05 858.35 696.7 853.1 698.1 847.95 699.5 843.2 696.8 839.25 694.55 837.7 690.5 M954.15 690.5 Q952.55 694.5 948.55 696.8 943.9 699.5 938.7 698.1 933.45 696.7 930.75 692.05 928.5 688.1 929.15 683.8 930.75 679.75 934.65 677.45 939.35 674.75 944.6 676.15 949.85 677.55 952.45 682.25 954.75 686.15 954.15 690.5"/>
+ <path stroke="none" fill="#B1A9A9" d="M1085.55 1090 L1085.5 1088 Q1085.5 1061.45 1104.25 1042.75 1108.5 1038.5 1113.1 1035.25 L1116.65 1032.95 Q1131.25 1024 1149.5 1024 1167.8 1024 1182.4 1032.9 L1185.9 1035.2 Q1190.55 1038.5 1194.8 1042.75 1213.5 1061.45 1213.5 1088 L1213.5 1090 Q1212.8 1064.75 1194.8 1046.75 1190.4 1042.35 1185.6 1039 1182.8 1037.05 1179.85 1035.45 L1176.7 1037.95 Q1165.45 1046 1149.5 1046 1133.55 1046 1122.25 1037.95 L1119.15 1035.5 Q1116.2 1037.1 1113.4 1039.05 1108.6 1042.4 1104.25 1046.75 1086.2 1064.75 1085.55 1090"/>
+ <path stroke="none" fill="#9F9898" d="M1085.55 1090 Q1086.2 1064.75 1104.25 1046.75 1108.6 1042.4 1113.4 1039.05 1116.2 1037.1 1119.15 1035.5 L1122.25 1037.95 Q1133.55 1046 1149.5 1046 1165.45 1046 1176.7 1037.95 L1179.85 1035.45 Q1182.8 1037.05 1185.6 1039 1190.4 1042.35 1194.8 1046.75 1212.8 1064.75 1213.5 1090 1213.05 1105.2 1206.35 1117.85 1204.4 1121.55 1201.9 1125 L1201.85 1125 1201.45 1125.6 Q1199.8 1113 1186.15 1108.4 1199.15 1105.35 1205 1092.55 1210.85 1079.65 1200.9 1063.8 1190.9 1047.95 1175.3 1055.85 1159.65 1063.7 1158.65 1091.9 L1140.35 1091.9 Q1139.35 1063.7 1123.7 1055.85 1108.1 1047.95 1098.1 1063.8 1088.15 1079.65 1094 1092.55 1099.85 1105.35 1112.85 1108.4 1099.2 1113 1097.6 1125.6 1094.4 1121.35 1092.1 1116.8 L1086.55 1100.1 1086.55 1099.9 1086.35 1098.8 1086.3 1098.55 1086.25 1098.05 1086.15 1097.5 1086 1096.25 1086 1096.05 1085.9 1095.45 1085.9 1095.2 1085.85 1095 1085.85 1094.75 1085.8 1094.45 1085.75 1093.8 1085.75 1093.55 1085.7 1093.25 1085.55 1090"/>
+ <path stroke="none" fill="#D2D0D0" d="M1201.45 1125.6 Q1198.45 1129.55 1194.75 1133.25 L1190.1 1137.55 1185.9 1140.75 Q1170 1152 1149.5 1152 1128.95 1152 1113.1 1140.8 1111 1139.3 1109 1137.65 L1104.2 1133.25 Q1100.5 1129.55 1097.6 1125.6 1099.2 1113 1112.85 1108.4 1099.85 1105.35 1094 1092.55 1088.15 1079.65 1098.1 1063.8 1108.1 1047.95 1123.7 1055.85 1139.35 1063.7 1140.35 1091.9 L1158.65 1091.9 Q1159.65 1063.7 1175.3 1055.85 1190.9 1047.95 1200.9 1063.8 1210.85 1079.65 1205 1092.55 1199.15 1105.35 1186.15 1108.4 1199.8 1113 1201.45 1125.6"/>
+ <path stroke="none" fill="#383838" d="M1153.95 1106.95 L1154.8 1107.95 1156.85 1109.45 Q1158.25 1110.1 1159.9 1110.1 1162.9 1110.1 1165.05 1107.95 L1166.3 1106.3 1166.8 1105.85 1167.5 1105.9 1172.2 1108.35 1172.65 1108.85 1172.6 1109.5 1171.1 1111.8 1170.05 1112.95 Q1165.8 1117.15 1159.9 1117.15 1154 1117.15 1149.8 1112.95 L1149.5 1112.65 1149.2 1112.95 Q1144.95 1117.15 1139.05 1117.15 1133.1 1117.15 1128.95 1112.95 L1127.9 1111.8 1126.4 1109.6 Q1126.2 1109.25 1126.35 1108.95 1126.4 1108.6 1126.75 1108.4 L1131.35 1105.85 1132 1105.75 1132.55 1106.2 1133.9 1107.95 Q1136.05 1110.1 1139.05 1110.1 1140.7 1110.1 1142.15 1109.45 1143.25 1108.9 1144.2 1107.95 L1145.05 1106.95 Q1149.7 1108.7 1153.95 1106.95"/>
+ <path stroke="none" fill="#545454" d="M1136.65 1096.95 L1136.45 1094.6 1136.45 1093.7 Q1136.75 1091.3 1140.25 1089.6 1144.1 1087.75 1149.5 1087.75 1154.9 1087.75 1158.75 1089.6 1162.2 1091.3 1162.55 1093.7 L1162.55 1094.6 1162.35 1096.95 Q1161.65 1095.05 1158.75 1093.6 1154.9 1091.75 1149.5 1091.75 1144.1 1091.75 1140.25 1093.6 1137.35 1095 1136.65 1096.95"/>
+ <path stroke="none" fill="#464646" d="M1136.65 1096.95 Q1137.35 1095 1140.25 1093.6 1144.1 1091.75 1149.5 1091.75 1154.9 1091.75 1158.75 1093.6 1161.65 1095.05 1162.35 1096.95 1161.7 1100.9 1158.75 1103.85 1156.6 1106 1153.95 1106.95 1149.7 1108.7 1145.05 1106.95 1142.4 1106 1140.25 1103.85 1137.3 1100.9 1136.65 1096.95"/>
+ <path stroke="none" fill="#5B5B5B" d="M1107.7 1084 Q1107.8 1081.65 1110.25 1079.95 1112.75 1078.25 1116.4 1078.25 1119.95 1078.25 1122.5 1079.95 1124.95 1081.65 1125.05 1084 L1125.05 1084.3 Q1124.95 1086.65 1122.5 1088.25 1119.95 1090 1116.4 1090 1112.75 1090 1110.25 1088.25 1107.8 1086.65 1107.7 1084.3 L1107.7 1084 M1191.25 1084 L1191.25 1084.3 Q1191.15 1086.65 1188.75 1088.25 1186.25 1090 1182.6 1090 1179.05 1090 1176.45 1088.25 1174.05 1086.65 1173.95 1084.3 L1173.95 1084 Q1174.05 1081.65 1176.45 1079.95 1179.05 1078.25 1182.6 1078.25 1186.25 1078.25 1188.75 1079.95 1191.15 1081.65 1191.25 1084"/>
+ <path stroke="none" fill="#FFFFFF" d="M1191.25 1084 Q1191.15 1081.65 1188.75 1079.95 1186.25 1078.25 1182.6 1078.25 1179.05 1078.25 1176.45 1079.95 1174.05 1081.65 1173.95 1084 L1173.95 1084.3 Q1174.05 1086.65 1176.45 1088.25 1179.05 1090 1182.6 1090 1186.25 1090 1188.75 1088.25 1191.15 1086.65 1191.25 1084.3 L1191.25 1084 M1107.7 1084 L1107.7 1084.3 Q1107.8 1086.65 1110.25 1088.25 1112.75 1090 1116.4 1090 1119.95 1090 1122.5 1088.25 1124.95 1086.65 1125.05 1084.3 L1125.05 1084 Q1124.95 1081.65 1122.5 1079.95 1119.95 1078.25 1116.4 1078.25 1112.75 1078.25 1110.25 1079.95 1107.8 1081.65 1107.7 1084 M1103 1083.95 Q1103 1078.75 1106.65 1075.1 1110.3 1071.45 1115.5 1071.45 1120.6 1071.45 1124.3 1075.1 1127.95 1078.75 1127.95 1083.95 1127.95 1089.1 1124.3 1092.7 1120.6 1096.4 1115.5 1096.4 1110.3 1096.4 1106.65 1092.7 1103 1089.1 1103 1083.95 M1196 1083.95 Q1196 1089.1 1192.35 1092.7 1188.7 1096.4 1183.5 1096.4 1178.4 1096.4 1174.7 1092.7 1171.05 1089.1 1171.05 1083.95 1171.05 1078.75 1174.7 1075.1 1178.4 1071.45 1183.5 1071.45 1188.7 1071.45 1192.35 1075.1 1196 1078.75 1196 1083.95"/>
+ </g>
+</svg>
\ No newline at end of file
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://k2xbjxlbg1nv"
+path="res://.godot/imported/round_nodetails.svg-9b9d0f2f34e94c0db9bab77321f1a242.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/Vector/round_nodetails.svg"
+dest_files=["res://.godot/imported/round_nodetails.svg-9b9d0f2f34e94c0db9bab77321f1a242.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
+svg/scale=1.0
+editor/scale_with_editor_scale=false
+editor/convert_colors_with_editor_theme=false
--- /dev/null
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <defs/>
+ <g>
+ <path stroke="none" fill="#1B8045" d="M166.75 71.95 Q171.65 75.45 176.15 79.95 196 99.8 196 128 L196 130 196 130.15 Q195.5 146.3 188.4 159.75 L186.3 163.35 Q182.1 170.1 176.15 176.1 169.6 182.6 162.15 187 L162.15 187.05 159.9 188.3 159.75 188.4 159.25 188.65 158.95 188.8 149.95 192.6 149.7 192.65 146.3 193.7 146.25 193.75 142.05 194.7 141.55 194.75 Q135 196 128 196 L114.45 194.75 113.9 194.65 112.65 194.4 112.6 194.35 110.95 193.95 111.05 194 109.75 193.7 108.3 193.25 108 193.15 99 189.7 98.7 189.55 96.85 188.65 96.15 188.3 96 188.2 93.85 187 93.85 186.95 Q86.45 182.6 79.95 176.1 73.95 170.1 69.75 163.4 L67.65 159.7 Q60.5 146.3 60.05 130.2 L60 128 Q60 99.8 79.95 79.95 84.45 75.4 89.3 72 106.2 60 128 60 149.85 60 166.7 71.95 L166.75 71.95"/>
+ <path stroke="none" fill="#31DE7A" d="M64.05 130 L64 128 Q64 101.45 82.75 82.75 87 78.5 91.6 75.25 107.5 64 128 64 148.55 64 164.4 75.2 169.05 78.5 173.3 82.75 192 101.45 192 128 L192 130 Q191.3 104.75 173.3 86.75 168.9 82.35 164.1 79 148.35 68 128 68 107.7 68 91.9 79.05 87.1 82.4 82.75 86.75 64.7 104.75 64.05 130"/>
+ <path stroke="none" fill="#2ECC71" d="M64.05 130 Q64.7 104.75 82.75 86.75 87.1 82.4 91.9 79.05 93.6 95.05 102.2 107.05 112.9 122 128 122 143.1 122 153.8 107.05 162.4 95.05 164.1 79 168.9 82.35 173.3 86.75 191.3 104.75 192 130 191.55 145.2 184.85 157.85 L182.85 159.35 182.4 159.7 181.55 160.3 162.1 170.45 160.7 170.95 Q155.25 172.8 149.5 174 L141.25 175.3 136.7 175.75 136.55 175.75 135.55 175.85 128.3 176.05 128 176.05 126.65 176.05 121.45 175.9 119.75 175.8 114.75 175.3 112.7 175.05 106.6 174 Q100.75 172.8 95.35 170.95 84.9 167.35 75.9 161.25 L73.2 159.35 71.15 157.8 Q64.45 145.2 64.05 130 M120.55 153.4 Q118.95 151.8 116.7 151.8 114.55 151.8 112.95 153.3 L112.8 153.45 Q110.05 156.2 109.15 159.35 108.85 160.4 108.85 161.25 108.85 163 109.9 164.05 110.55 164.7 111.5 164.95 L114.6 164.75 Q116.95 164.1 119.15 162.35 L120.4 161.25 120.5 161.15 120.65 161 Q122.15 159.45 122.15 157.25 122.15 155 120.55 153.4 M146.1 164.05 Q147.15 163 147.15 161.25 L146.85 159.35 Q146 156.2 143.2 153.45 L143.05 153.3 Q141.5 151.8 139.3 151.8 137.05 151.8 135.45 153.4 133.85 155 133.85 157.25 133.85 159.45 135.35 161 L135.5 161.15 135.6 161.25 136.9 162.35 Q139.05 164.1 141.4 164.75 L144.55 164.95 Q145.45 164.7 146.1 164.05"/>
+ <path stroke="none" fill="#2ABD68" d="M184.85 157.85 L182.9 161.25 Q178.95 167.6 173.3 173.25 167.15 179.4 160.15 183.55 L157.9 184.85 157.4 185.1 148.4 188.9 145.25 189.85 141.25 190.75 Q134.85 192 128 192 121.15 192 114.8 190.75 L128 184.1 141.25 190.75 141.25 175.3 149.5 174 153.15 177.1 Q155.5 179.05 157.85 175.35 L160.7 170.95 162.1 170.45 181.55 160.3 182.4 159.7 182.85 159.35 184.85 157.85 M114.75 190.75 L113.55 190.5 111.9 190.1 110.75 189.8 109.45 189.45 100.4 185.95 98.7 185.1 98 184.75 95.85 183.5 Q88.9 179.4 82.75 173.25 77.1 167.6 73.15 161.25 L71.15 157.8 73.2 159.35 75.9 161.25 Q84.9 167.35 95.35 170.95 L98.15 175.35 Q100.5 179.05 102.85 177.1 L106.6 174 112.7 175.05 114.75 175.3 114.75 190.75 M119.75 175.8 L121.45 175.9 126.65 176.05 128 176.05 128.3 176.05 135.55 175.85 136.55 175.75 128 176.25 119.75 175.8"/>
+ <path stroke="none" fill="#28BD68" d="M91.9 79.05 Q107.7 68 128 68 148.35 68 164.1 79 162.4 95.05 153.8 107.05 143.1 122 128 122 112.9 122 102.2 107.05 93.6 95.05 91.9 79.05 M152 93.5 L152.05 93.45 Q152.35 92.45 152.05 91.55 L152.05 91.5 Q151.6 90.35 150.6 89.95 L150.65 90 Q129.05 78.95 105.45 89.95 L105.5 89.95 Q104.35 90.4 104 91.55 103.65 92.45 104 93.45 104.35 94.45 105.45 95 L105.45 95.05 Q129.05 105.95 150.65 95 151.6 94.5 152 93.5 M113.45 112.55 L113.4 112.55 Q128.65 119.6 142.65 112.55 L142.7 112.5 Q143.55 112.1 143.85 111.2 L143.8 111.3 Q144.1 110.45 143.85 109.75 143.55 108.8 142.7 108.4 L142.65 108.4 Q128.7 101.25 113.5 108.35 112.45 108.75 112.2 109.75 111.9 110.45 112.25 111.3 112.5 112.1 113.45 112.55"/>
+ <path stroke="none" fill="#31DB79" d="M113.45 112.55 Q112.5 112.1 112.25 111.3 111.9 110.45 112.2 109.75 112.45 108.75 113.5 108.35 128.7 101.25 142.65 108.4 L142.7 108.4 Q143.55 108.8 143.85 109.75 144.1 110.45 143.8 111.3 L143.85 111.2 Q143.55 112.1 142.7 112.5 L142.65 112.55 Q128.65 119.6 113.4 112.55 L113.45 112.55 M152 93.5 Q151.6 94.5 150.65 95 129.05 105.95 105.45 95.05 L105.45 95 Q104.35 94.45 104 93.45 103.65 92.45 104 91.55 104.35 90.4 105.5 89.95 L105.45 89.95 Q129.05 78.95 150.65 90 L150.6 89.95 Q151.6 90.35 152.05 91.5 L152.05 91.55 Q152.35 92.45 152.05 93.45 L152 93.5"/>
+ <path stroke="none" fill="#24A35A" d="M120.55 153.4 Q122.15 155 122.15 157.25 122.15 159.45 120.65 161 L120.5 161.15 120.4 161.25 119.15 162.35 Q116.95 164.1 114.6 164.75 L111.5 164.95 Q110.55 164.7 109.9 164.05 108.85 163 108.85 161.25 108.85 160.4 109.15 159.35 110.05 156.2 112.8 153.45 L112.95 153.3 Q114.55 151.8 116.7 151.8 118.95 151.8 120.55 153.4 M146.1 164.05 Q145.45 164.7 144.55 164.95 L141.4 164.75 Q139.05 164.1 136.9 162.35 L135.6 161.25 135.5 161.15 135.35 161 Q133.85 159.45 133.85 157.25 133.85 155 135.45 153.4 137.05 151.8 139.3 151.8 141.5 151.8 143.05 153.3 L143.2 153.45 Q146 156.2 146.85 159.35 L147.15 161.25 Q147.15 163 146.1 164.05"/>
+ <path stroke="none" fill="#E74C3C" d="M114.8 190.75 L114.75 190.75 114.75 175.3 119.75 175.8 128 176.25 128 184.1 114.8 190.75"/>
+ <path stroke="none" fill="#FFFFFF" d="M95.35 170.95 Q100.75 172.8 106.6 174 L102.85 177.1 Q100.5 179.05 98.15 175.35 L95.35 170.95 M149.5 174 Q155.25 172.8 160.7 170.95 L157.85 175.35 Q155.5 179.05 153.15 177.1 L149.5 174"/>
+ <path stroke="none" fill="#D24436" d="M136.55 175.75 L136.7 175.75 141.25 175.3 141.25 190.75 128 184.1 128 176.25 136.55 175.75"/>
+ <path stroke="none" fill="#FFFFFF" d="M89.95 143.7 L89.95 144.55 Q90.05 147.5 90.9 149.65 91.9 152.1 93.3 152.15 L93.4 152.15 Q94.7 152.1 95.75 149.65 96.6 147.5 96.7 144.55 L96.75 143.7 Q96.75 140.05 95.75 137.6 94.7 135.1 93.4 135.05 L93.3 135.05 Q91.9 135.1 90.9 137.6 89.95 140.05 89.95 143.7 M179.65 143.8 Q179.65 149.5 175.6 153.4 171.55 157.5 165.85 157.5 160.25 157.5 156.1 153.4 152.15 149.5 152.15 143.8 152.15 138.05 156.1 134.05 160.25 130 165.85 130 171.55 130 175.6 134.05 179.65 138.05 179.65 143.8 M166.85 143.7 Q166.85 140.05 165.9 137.6 164.9 135.1 163.5 135.05 L163.4 135.05 Q162.05 135.1 161.05 137.6 160.05 140.05 160.05 143.7 L160.05 144.55 Q160.15 147.5 161.05 149.65 162.05 152.1 163.4 152.15 L163.5 152.15 Q164.9 152.1 165.9 149.65 166.75 147.5 166.85 144.55 L166.85 143.7 M77.15 143.8 Q77.15 138.05 81.2 134.05 85.25 130 90.95 130 96.55 130 100.7 134.05 104.65 138.05 104.65 143.8 104.65 149.5 100.7 153.4 96.55 157.5 90.95 157.5 85.25 157.5 81.2 153.4 77.15 149.5 77.15 143.8"/>
+ <path stroke="none" fill="#5B5B5B" d="M166.85 143.7 L166.85 144.55 Q166.75 147.5 165.9 149.65 164.9 152.1 163.5 152.15 L163.4 152.15 Q162.05 152.1 161.05 149.65 160.15 147.5 160.05 144.55 L160.05 143.7 Q160.05 140.05 161.05 137.6 162.05 135.1 163.4 135.05 L163.5 135.05 Q164.9 135.1 165.9 137.6 166.85 140.05 166.85 143.7 M89.95 143.7 Q89.95 140.05 90.9 137.6 91.9 135.1 93.3 135.05 L93.4 135.05 Q94.7 135.1 95.75 137.6 96.75 140.05 96.75 143.7 L96.7 144.55 Q96.6 147.5 95.75 149.65 94.7 152.1 93.4 152.15 L93.3 152.15 Q91.9 152.1 90.9 149.65 90.05 147.5 89.95 144.55 L89.95 143.7"/>
+ <path stroke="none" fill="#987900" d="M422.7 72.45 Q427.6 75.95 432.1 80.45 451.95 100.3 451.95 128.5 L451.95 130.5 451.95 130.65 Q451.45 146.8 444.35 160.25 442.25 164.15 439.6 167.85 L439.2 168.35 Q436 172.6 432.05 176.6 L427.15 181.1 427.1 181.15 422.65 184.55 Q405.75 196.5 383.95 196.5 362.1 196.5 345.25 184.6 L345.25 184.55 340.9 181.25 335.85 176.6 Q327.75 168.5 323 159.15 L322.75 158.55 317.2 141.85 317 140.7 317 140.6 316.95 140.4 316.75 139.4 316.75 139.2 316.7 139 316.7 138.8 316.65 138.6 316.5 137.1 316.4 136.6 316.4 136.3 316.35 135.95 316.35 135.9 316.3 135.65 316.25 135.1 316.2 134.55 316.15 134 316 130.7 315.95 128.5 Q315.95 100.3 335.9 80.45 340.4 75.9 345.25 72.5 362.15 60.5 383.95 60.5 405.8 60.5 422.65 72.45 L422.7 72.45"/>
+ <path stroke="none" fill="#FFD738" d="M447.95 130.5 Q447.25 105.25 429.25 87.25 424.85 82.85 420.05 79.5 404.3 68.5 383.95 68.5 363.65 68.5 347.85 79.55 343.05 82.9 338.7 87.25 320.65 105.25 320 130.5 L319.95 128.5 Q319.95 101.95 338.7 83.25 342.95 79 347.55 75.75 363.45 64.5 383.95 64.5 404.5 64.5 420.35 75.7 425 79 429.25 83.25 447.95 101.95 447.95 128.5 L447.95 130.5"/>
+ <path stroke="none" fill="#FFCC00" d="M447.95 130.5 Q447.5 145.7 440.8 158.35 438.85 162.05 436.35 165.5 L436.3 165.5 Q433.15 169.8 429.2 173.75 L424.55 178.05 Q420.15 176.45 420.2 171.75 419.1 160.5 409.75 152.25 399.25 143 384.4 143 369.55 143 359 152.25 349.7 160.5 348.65 171.75 347.3 176.55 343.45 178.15 L338.65 173.75 Q331.05 166.15 326.55 157.3 L321 140.6 321 140.4 320.8 139.3 320.75 139.05 320.7 138.55 320.6 138 320.45 136.75 320.45 136.55 320.35 135.95 320.35 135.7 320.3 135.5 320.3 135.25 320.25 134.95 320.2 134.3 320.2 134.05 320.15 133.75 320 130.5 Q320.65 105.25 338.7 87.25 343.05 82.9 347.85 79.55 349.55 95.55 358.15 107.55 368.85 122.5 383.95 122.5 399.05 122.5 409.75 107.55 418.35 95.55 420.05 79.5 424.85 82.85 429.25 87.25 447.25 105.25 447.95 130.5 M392.65 103.1 L382.9 96.05 Q382.2 95.5 381.95 94.7 381.7 93.9 381.95 93.1 L385.65 81.65 Q385.9 80.8 386.6 80.3 387.25 79.8 388.15 79.8 L400.2 79.8 Q401.1 79.8 401.8 80.3 402.45 80.8 402.7 81.65 L406.4 93.1 Q406.65 93.9 406.4 94.7 406.15 95.5 405.5 96.05 L395.8 103.1 Q395.1 103.6 394.2 103.6 393.35 103.6 392.65 103.1 M380 87.15 L375.05 93.95 373.75 94.85 Q372.9 95.1 372.1 94.85 L364.15 92.25 Q363.3 92 362.8 91.35 362.3 90.65 362.3 89.75 L362.3 81.35 Q362.3 80.5 362.8 79.85 363.3 79.15 364.15 78.85 L372.1 76.3 Q372.9 76 373.75 76.3 L375.05 77.25 380 84.05 Q380.45 84.75 380.45 85.6 380.45 86.45 380 87.15 M371.4 110.8 L370.1 104.7 Q369.9 103.8 370.25 103.05 370.6 102.2 371.35 101.8 L376.8 98.65 Q377.55 98.25 378.4 98.35 379.25 98.4 379.9 99 L384.55 103.2 Q385.15 103.75 385.35 104.65 385.5 105.45 385.15 106.25 L382.6 111.95 Q382.25 112.75 381.5 113.2 380.75 113.65 379.9 113.55 L373.7 112.9 Q372.85 112.75 372.2 112.25 371.6 111.6 371.4 110.8"/>
+ <path stroke="none" fill="#EEBE00" d="M392.65 103.1 Q393.35 103.6 394.2 103.6 395.1 103.6 395.8 103.1 L405.5 96.05 Q406.15 95.5 406.4 94.7 406.65 93.9 406.4 93.1 L402.7 81.65 Q402.45 80.8 401.8 80.3 401.1 79.8 400.2 79.8 L388.15 79.8 Q387.25 79.8 386.6 80.3 385.9 80.8 385.65 81.65 L381.95 93.1 Q381.7 93.9 381.95 94.7 382.2 95.5 382.9 96.05 L392.65 103.1 M347.85 79.55 Q363.65 68.5 383.95 68.5 404.3 68.5 420.05 79.5 418.35 95.55 409.75 107.55 399.05 122.5 383.95 122.5 368.85 122.5 358.15 107.55 349.55 95.55 347.85 79.55 M371.4 110.8 Q371.6 111.6 372.2 112.25 372.85 112.75 373.7 112.9 L379.9 113.55 Q380.75 113.65 381.5 113.2 382.25 112.75 382.6 111.95 L385.15 106.25 Q385.5 105.45 385.35 104.65 385.15 103.75 384.55 103.2 L379.9 99 Q379.25 98.4 378.4 98.35 377.55 98.25 376.8 98.65 L371.35 101.8 Q370.6 102.2 370.25 103.05 369.9 103.8 370.1 104.7 L371.4 110.8 M380 87.15 Q380.45 86.45 380.45 85.6 380.45 84.75 380 84.05 L375.05 77.25 373.75 76.3 Q372.9 76 372.1 76.3 L364.15 78.85 Q363.3 79.15 362.8 79.85 362.3 80.5 362.3 81.35 L362.3 89.75 Q362.3 90.65 362.8 91.35 363.3 92 364.15 92.25 L372.1 94.85 Q372.9 95.1 373.75 94.85 L375.05 93.95 380 87.15"/>
+ <path stroke="none" fill="#D2A800" d="M343.45 178.15 Q347.3 176.55 348.65 171.75 349.7 160.5 359 152.25 369.55 143 384.4 143 399.25 143 409.75 152.25 419.1 160.5 420.2 171.75 420.15 176.45 424.55 178.05 L420.35 181.25 Q404.45 192.5 383.95 192.5 363.4 192.5 347.55 181.3 L343.45 178.15 M402.9 156.5 Q401.4 155 398.45 155.85 395.5 156.65 392.85 159.3 L392.7 159.45 Q391.3 160.9 391.3 163 391.3 165.15 392.8 166.65 394.3 168.15 396.45 168.15 398.5 168.15 400 166.75 L400.15 166.6 Q402.8 163.95 403.6 161 404.45 158.05 402.9 156.5 M368.8 166.75 Q370.3 168.15 372.35 168.15 374.5 168.15 376 166.65 377.5 165.15 377.5 163 377.5 160.9 376.1 159.45 L375.95 159.3 Q373.3 156.65 370.35 155.85 367.4 155 365.9 156.5 364.35 158.05 365.2 161 366 163.95 368.65 166.6 L368.8 166.75"/>
+ <path stroke="none" fill="#A38200" d="M368.8 166.75 L368.65 166.6 Q366 163.95 365.2 161 364.35 158.05 365.9 156.5 367.4 155 370.35 155.85 373.3 156.65 375.95 159.3 L376.1 159.45 Q377.5 160.9 377.5 163 377.5 165.15 376 166.65 374.5 168.15 372.35 168.15 370.3 168.15 368.8 166.75 M402.9 156.5 Q404.45 158.05 403.6 161 402.8 163.95 400.15 166.6 L400 166.75 Q398.5 168.15 396.45 168.15 394.3 168.15 392.8 166.65 391.3 165.15 391.3 163 391.3 160.9 392.7 159.45 L392.85 159.3 Q395.5 156.65 398.45 155.85 401.4 155 402.9 156.5"/>
+ <path stroke="none" fill="#5B5B5B" d="M339.6 135.25 Q339.6 131.65 342.15 129.1 344.65 126.6 348.3 126.6 351.85 126.6 354.4 129.1 356.95 131.65 356.95 135.25 356.95 138.85 354.4 141.3 351.85 143.85 348.3 143.85 344.65 143.85 342.15 141.3 339.6 138.85 339.6 135.25 M427.15 135.25 Q427.15 138.85 424.65 141.3 422.15 143.85 418.5 143.85 414.95 143.85 412.35 141.3 409.85 138.85 409.85 135.25 409.85 131.65 412.35 129.1 414.95 126.6 418.5 126.6 422.15 126.6 424.65 129.1 427.15 131.65 427.15 135.25"/>
+ <path stroke="none" fill="#FFFFFF" d="M339.6 135.25 Q339.6 138.85 342.15 141.3 344.65 143.85 348.3 143.85 351.85 143.85 354.4 141.3 356.95 138.85 356.95 135.25 356.95 131.65 354.4 129.1 351.85 126.6 348.3 126.6 344.65 126.6 342.15 129.1 339.6 131.65 339.6 135.25 M334.9 135.05 Q334.9 129.85 338.55 126.2 342.2 122.55 347.4 122.55 352.5 122.55 356.2 126.2 359.85 129.85 359.85 135.05 359.85 140.2 356.2 143.8 352.5 147.5 347.4 147.5 342.2 147.5 338.55 143.8 334.9 140.2 334.9 135.05 M427.15 135.25 Q427.15 131.65 424.65 129.1 422.15 126.6 418.5 126.6 414.95 126.6 412.35 129.1 409.85 131.65 409.85 135.25 409.85 138.85 412.35 141.3 414.95 143.85 418.5 143.85 422.15 143.85 424.65 141.3 427.15 138.85 427.15 135.25 M431.9 135.05 Q431.9 140.2 428.25 143.8 424.6 147.5 419.4 147.5 414.3 147.5 410.6 143.8 406.95 140.2 406.95 135.05 406.95 129.85 410.6 126.2 414.3 122.55 419.4 122.55 424.6 122.55 428.25 126.2 431.9 129.85 431.9 135.05"/>
+ <path stroke="none" fill="#1D3138" d="M677.1 71.95 Q682 75.45 686.5 79.95 706.35 99.8 706.35 128 L706.35 130 706.35 130.15 Q705.85 146.3 698.75 159.75 696.65 163.65 694 167.35 L693.6 167.85 Q690.4 172.1 686.45 176.1 L681.55 180.6 681.5 180.65 678.9 182.75 678.65 182.95 677.05 184.05 Q660.15 196 638.35 196 616.5 196 599.65 184.1 L599.7 184.1 597.95 182.85 597.85 182.8 595.35 180.8 595.3 180.75 590.25 176.1 Q582.15 168 577.4 158.65 L577.15 158.05 571.6 141.35 571.4 140.2 571.35 139.9 571.15 138.9 571.15 138.7 571.1 138.5 571.1 138.3 571.05 138.1 570.9 136.6 570.8 136.1 570.8 135.8 570.75 135.45 570.75 135.4 570.7 135.15 570.65 134.6 570.6 134.05 570.55 133.5 570.4 130.2 570.35 128 Q570.35 99.8 590.3 79.95 594.8 75.4 599.65 72 616.55 60 638.35 60 660.2 60 677.05 71.95 L677.1 71.95"/>
+ <path stroke="none" fill="#447180" d="M574.4 130 L574.35 128 Q574.35 101.45 593.1 82.75 597.35 78.5 601.95 75.25 617.85 64 638.35 64 658.9 64 674.75 75.2 679.4 78.5 683.65 82.75 702.35 101.45 702.35 128 L702.35 130 Q701.65 104.75 683.65 86.75 679.25 82.35 674.45 79 658.7 68 638.35 68 618.05 68 602.25 79.05 597.45 82.4 593.1 86.75 575.05 104.75 574.4 130"/>
+ <path stroke="none" fill="#365A66" d="M574.4 130 Q575.05 104.75 593.1 86.75 597.45 82.4 602.25 79.05 618.05 68 638.35 68 658.7 68 674.45 79 679.25 82.35 683.65 86.75 701.65 104.75 702.35 130 701.9 145.2 695.2 157.85 693.25 161.55 690.75 165 L690.7 165 Q687.55 169.3 683.6 173.25 L678.95 177.55 676.35 179.65 673.35 177.5 Q658.85 168 638.35 168 617.85 168 603.35 177.5 L600.35 179.65 597.85 177.65 593.05 173.25 Q585.45 165.65 580.95 156.8 L575.4 140.1 575.4 139.9 575.2 138.8 575.15 138.55 575.1 138.05 575 137.5 574.85 136.25 574.85 136.05 574.75 135.45 574.75 135.2 574.7 135 574.7 134.75 574.65 134.45 574.6 133.8 574.6 133.55 574.55 133.25 574.4 130 M685.3 118.75 Q683.45 112.2 677.5 108.75 671.3 105.15 664.45 107 657.65 108.8 654.05 115.05 650.6 120.95 652.2 127.65 L652.35 128.2 Q655.6 140.3 662.8 147.5 669.95 154.7 676.8 152.9 683.65 151.05 686.2 141.2 688.7 131.4 685.45 119.3 L685.3 118.75 M622.95 145.4 L622.75 148 622.8 149.05 Q623.1 152.55 627.35 155.05 632 157.75 638.55 157.75 645.1 157.75 649.7 155.05 653.95 152.55 654.25 149.05 L654.3 148 654.1 145.4 Q653.35 140.55 649.7 136.85 L647.9 135.3 Q643.85 132.25 638.55 132.25 633.25 132.25 629.2 135.3 L627.35 136.85 Q623.7 140.55 622.95 145.4 M624.95 127.7 Q626.6 121 623.1 115.05 619.6 108.85 612.7 107.05 605.85 105.15 599.65 108.75 593.7 112.2 591.8 118.75 L591.6 119.3 Q588.4 131.4 591 141.25 593.6 151.05 600.4 152.95 607.3 154.75 614.45 147.5 621.55 140.35 624.75 128.25 L624.95 127.7"/>
+ <path stroke="none" fill="#D5EEF7" d="M624.95 127.7 L624.75 128.25 Q621.55 140.35 614.45 147.5 607.3 154.75 600.4 152.95 593.6 151.05 591 141.25 588.4 131.4 591.6 119.3 L591.8 118.75 Q593.7 112.2 599.65 108.75 605.85 105.15 612.7 107.05 619.6 108.85 623.1 115.05 626.6 121 624.95 127.7 M685.3 118.75 L685.45 119.3 Q688.7 131.4 686.2 141.2 683.65 151.05 676.8 152.9 669.95 154.7 662.8 147.5 655.6 140.3 652.35 128.2 L652.2 127.65 Q650.6 120.95 654.05 115.05 657.65 108.8 664.45 107 671.3 105.15 677.5 108.75 683.45 112.2 685.3 118.75"/>
+ <path stroke="none" fill="#E08600" d="M654.1 145.4 L654.3 148 654.25 149.05 Q653.95 152.55 649.7 155.05 645.1 157.75 638.55 157.75 632 157.75 627.35 155.05 623.1 152.55 622.8 149.05 L622.75 148 622.95 145.4 Q623.65 147.4 627.35 148.9 632 150.8 638.55 150.8 645.1 150.8 649.7 148.9 653.4 147.4 654.1 145.4"/>
+ <path stroke="none" fill="#FF9900" d="M654.1 145.4 Q653.4 147.4 649.7 148.9 645.1 150.8 638.55 150.8 632 150.8 627.35 148.9 623.65 147.4 622.95 145.4 623.7 140.55 627.35 136.85 L629.2 135.3 Q633.25 132.25 638.55 132.25 643.85 132.25 647.9 135.3 L649.7 136.85 Q653.35 140.55 654.1 145.4"/>
+ <path stroke="none" fill="#F2F9FB" d="M676.35 179.65 L674.75 180.75 Q658.85 192 638.35 192 617.8 192 601.95 180.8 L600.35 179.65 603.35 177.5 Q617.85 168 638.35 168 658.85 168 673.35 177.5 L676.35 179.65"/>
+ <path stroke="none" fill="#FFFFFF" d="M677.6 130.6 Q677.6 134.95 674.5 137.95 671.4 141.1 667.05 141.1 662.8 141.1 659.6 137.95 656.6 134.95 656.6 130.6 656.6 126.2 659.6 123.15 662.8 120.1 667.05 120.1 671.4 120.1 674.5 123.15 677.6 126.2 677.6 130.6 M672.85 132.55 Q672.85 129.75 670.95 127.9 669 125.95 666.25 125.95 663.55 125.95 661.55 127.9 659.65 129.75 659.65 132.55 L659.65 133.2 Q659.85 135.45 661.55 137.1 663.55 139 666.25 139 669 139 670.95 137.1 672.6 135.45 672.8 133.2 L672.85 132.55 M599.35 130.6 Q599.35 126.2 602.4 123.15 605.5 120.1 609.85 120.1 614.15 120.1 617.3 123.15 620.35 126.2 620.35 130.6 620.35 134.95 617.3 137.95 614.15 141.1 609.85 141.1 605.5 141.1 602.4 137.95 599.35 134.95 599.35 130.6 M604.1 132.55 L604.15 133.2 Q604.3 135.45 605.95 137.1 607.9 139 610.7 139 613.35 139 615.35 137.1 617.1 135.45 617.25 133.2 L617.3 132.55 Q617.3 129.75 615.35 127.9 613.35 125.95 610.7 125.95 607.9 125.95 605.95 127.9 604.1 129.75 604.1 132.55"/>
+ <path stroke="none" fill="#5B5B5B" d="M604.1 132.55 Q604.1 129.75 605.95 127.9 607.9 125.95 610.7 125.95 613.35 125.95 615.35 127.9 617.3 129.75 617.3 132.55 L617.25 133.2 Q617.1 135.45 615.35 137.1 613.35 139 610.7 139 607.9 139 605.95 137.1 604.3 135.45 604.15 133.2 L604.1 132.55 M672.85 132.55 L672.8 133.2 Q672.6 135.45 670.95 137.1 669 139 666.25 139 663.55 139 661.55 137.1 659.85 135.45 659.65 133.2 L659.65 132.55 Q659.65 129.75 661.55 127.9 663.55 125.95 666.25 125.95 669 125.95 670.95 127.9 672.85 129.75 672.85 132.55"/>
+ <path stroke="none" fill="#807F7F" d="M895.7 60 Q913.3 60 927.7 67.8 931.15 69.65 934.4 71.95 L934.45 71.95 Q939.35 75.45 943.85 79.95 963.7 99.8 963.7 128 L963.7 130 963.7 130.15 Q963.2 146.3 956.1 159.75 954 163.65 951.35 167.35 L950.95 167.85 Q947.75 172.1 943.8 176.1 L938.9 180.6 938.85 180.65 934.4 184.05 929.35 187.3 929.3 187.35 Q914.25 196 895.7 196 877.1 196 862.1 187.35 L862.15 187.35 Q859.5 185.85 857 184.1 L857 184.05 Q854.75 182.45 852.65 180.75 L847.6 176.1 Q839.5 168 834.75 158.65 L834.5 158.05 828.95 141.35 828.75 140.2 828.7 139.9 828.5 138.9 828.5 138.7 828.45 138.5 828.45 138.3 828.4 138.1 828.25 136.6 828.15 136.1 828.15 135.8 828.1 135.45 828.1 135.4 828.05 135.15 828 134.6 827.95 134.05 827.9 133.5 827.75 130.2 827.7 128 Q827.7 99.8 847.65 79.95 852.1 75.45 857 72 860.3 69.65 863.8 67.8 L863.75 67.85 Q878.1 60 895.7 60"/>
+ <path stroke="none" fill="#FFFFFF" d="M831.75 130 L831.7 128 Q831.7 101.45 850.45 82.75 854.7 78.5 859.3 75.25 862.4 73.05 865.65 71.35 879.15 64 895.7 64 912.25 64 925.8 71.3 929.05 73.05 932.1 75.2 936.75 78.5 941 82.75 959.7 101.45 959.7 128 L959.7 130 Q959 104.75 941 86.75 936.6 82.35 931.8 79 928.45 76.7 924.95 74.85 922.6 83.85 918.3 91.45 908.95 108 895.7 108 882.45 108 873.05 91.45 868.75 83.9 866.45 74.9 862.95 76.7 859.6 79.05 854.8 82.4 850.45 86.75 832.4 104.75 831.75 130"/>
+ <path stroke="none" fill="#F5F5F5" d="M959.7 130 Q959.25 145.2 952.55 157.85 950.6 161.55 948.1 165 L948.05 165 Q944.9 169.3 940.95 173.25 L936.3 177.55 Q934.25 179.25 932.1 180.75 L927.3 183.85 924.85 181.75 Q912.8 172 895.7 172 878.6 172 866.5 181.75 L864.1 183.85 859.3 180.8 855.2 177.65 850.4 173.25 Q842.8 165.65 838.3 156.8 L832.75 140.1 832.75 139.9 832.55 138.8 832.5 138.55 832.45 138.05 832.35 137.5 832.2 136.25 832.2 136.05 832.1 135.45 832.1 135.2 832.05 135 832.05 134.75 832 134.45 831.95 133.8 831.95 133.55 831.9 133.25 831.75 130 Q832.4 104.75 850.45 86.75 854.8 82.4 859.6 79.05 862.95 76.7 866.45 74.9 868.75 83.9 873.05 91.45 882.45 108 895.7 108 908.95 108 918.3 91.45 922.6 83.85 924.95 74.85 928.45 76.7 931.8 79 936.6 82.35 941 86.75 959 104.75 959.7 130"/>
+ <path stroke="none" fill="#E5E5E5" d="M927.3 183.85 Q913.15 192 895.7 192 878.2 192 864.1 183.85 L866.5 181.75 Q878.6 172 895.7 172 912.8 172 924.85 181.75 L927.3 183.85"/>
+ <path stroke="none" fill="#5B5B5B" d="M854.5 125.55 Q854.5 123.1 856.2 121.45 857.9 119.75 860.3 119.75 862.7 119.75 864.45 121.45 866.15 123.1 866.15 125.55 866.15 127.95 864.45 129.6 862.7 131.35 860.3 131.35 857.9 131.35 856.2 129.6 854.5 127.95 854.5 125.55 M850 125.4 Q850 129.25 852.7 131.85 855.45 134.65 859.3 134.65 863.1 134.65 865.85 131.85 868.55 129.25 868.55 125.4 868.55 121.55 865.85 118.85 863.1 116.15 859.3 116.15 855.45 116.15 852.7 118.85 850 121.55 850 125.4 M844.35 121.95 L844.35 121.9 Q846 115.9 851.3 112.85 856.7 109.75 862.7 111.35 868.65 112.9 871.8 118.3 874.9 123.65 873.3 129.65 L873.3 129.7 Q871.35 136.9 865.8 140.75 860.15 144.75 854.2 143.2 848.2 141.6 845.3 135.3 842.45 129.15 844.35 121.95 M946.05 121.95 Q947.95 129.15 945.1 135.3 942.2 141.6 936.2 143.2 930.25 144.75 924.6 140.75 919.05 136.9 917.1 129.7 L917.1 129.65 Q915.5 123.65 918.6 118.3 921.75 112.9 927.7 111.35 933.7 109.75 939.1 112.85 944.4 115.9 946.05 121.9 L946.05 121.95 M935.9 125.55 Q935.9 127.95 934.2 129.6 932.5 131.35 930.1 131.35 927.7 131.35 925.95 129.6 924.25 127.95 924.25 125.55 924.25 123.1 925.95 121.45 927.7 119.75 930.1 119.75 932.5 119.75 934.2 121.45 935.9 123.1 935.9 125.55 M940.4 125.4 Q940.4 121.55 937.7 118.85 934.95 116.15 931.1 116.15 927.3 116.15 924.55 118.85 921.85 121.55 921.85 125.4 921.85 129.25 924.55 131.85 927.3 134.65 931.1 134.65 934.95 134.65 937.7 131.85 940.4 129.25 940.4 125.4"/>
+ <path stroke="none" fill="#FFFFFF" d="M940.4 125.4 Q940.4 129.25 937.7 131.85 934.95 134.65 931.1 134.65 927.3 134.65 924.55 131.85 921.85 129.25 921.85 125.4 921.85 121.55 924.55 118.85 927.3 116.15 931.1 116.15 934.95 116.15 937.7 118.85 940.4 121.55 940.4 125.4 M854.5 125.55 Q854.5 127.95 856.2 129.6 857.9 131.35 860.3 131.35 862.7 131.35 864.45 129.6 866.15 127.95 866.15 125.55 866.15 123.1 864.45 121.45 862.7 119.75 860.3 119.75 857.9 119.75 856.2 121.45 854.5 123.1 854.5 125.55 M850 125.4 Q850 121.55 852.7 118.85 855.45 116.15 859.3 116.15 863.1 116.15 865.85 118.85 868.55 121.55 868.55 125.4 868.55 129.25 865.85 131.85 863.1 134.65 859.3 134.65 855.45 134.65 852.7 131.85 850 129.25 850 125.4 M935.9 125.55 Q935.9 123.1 934.2 121.45 932.5 119.75 930.1 119.75 927.7 119.75 925.95 121.45 924.25 123.1 924.25 125.55 924.25 127.95 925.95 129.6 927.7 131.35 930.1 131.35 932.5 131.35 934.2 129.6 935.9 127.95 935.9 125.55"/>
+ <path stroke="none" fill="#666666" d="M882.85 136.25 L882.65 133.9 882.65 133 Q882.95 130.6 886.45 128.9 890.3 127.05 895.7 127.05 901.1 127.05 904.95 128.9 908.4 130.6 908.75 133 L908.75 133.9 908.55 136.25 Q907.85 134.35 904.95 132.9 901.1 131.05 895.7 131.05 890.3 131.05 886.45 132.9 883.55 134.3 882.85 136.25"/>
+ <path stroke="none" fill="#464646" d="M900.15 146.25 L901 147.25 Q901.95 148.2 903.05 148.75 904.45 149.4 906.1 149.4 909.1 149.4 911.25 147.25 L912.5 145.6 913 145.15 913.7 145.2 918.4 147.65 918.85 148.15 918.8 148.8 917.3 151.1 916.25 152.25 Q912 156.45 906.1 156.45 900.2 156.45 896 152.25 L895.7 151.95 895.4 152.25 Q891.15 156.45 885.25 156.45 879.3 156.45 875.15 152.25 L874.1 151.1 872.6 148.9 Q872.4 148.55 872.55 148.25 872.6 147.9 872.95 147.7 L877.55 145.15 878.2 145.05 Q878.55 145.15 878.75 145.5 L880.1 147.25 Q882.25 149.4 885.25 149.4 886.9 149.4 888.35 148.75 L890.4 147.25 891.25 146.25 Q895.9 148 900.15 146.25"/>
+ <path stroke="none" fill="#5B5B5B" d="M900.15 146.25 Q895.9 148 891.25 146.25 888.6 145.3 886.45 143.15 883.5 140.2 882.85 136.25 883.55 134.3 886.45 132.9 890.3 131.05 895.7 131.05 901.1 131.05 904.95 132.9 907.85 134.35 908.55 136.25 907.9 140.2 904.95 143.15 902.8 145.3 900.15 146.25"/>
+ <path stroke="none" fill="#8A1D03" d="M1149.5 60 Q1177.7 60 1197.6 79.9 1217.5 99.8 1217.5 128 L1217.5 130 1217.5 130.1 Q1217.05 145.35 1210.7 158.2 L1210.7 158.25 Q1205.8 167.8 1197.65 176 L1197.6 176.05 1194 179.45 Q1188.7 184.1 1182.8 187.55 1167.9 196 1149.5 196 1131.15 196 1116.3 187.5 1110.4 184.2 1105.1 179.5 L1105.15 179.55 1101.4 176.05 Q1093.2 167.85 1088.45 158.3 1081.95 145.45 1081.55 130.2 L1081.5 128 Q1081.5 99.8 1101.4 79.9 1121.35 60 1149.5 60"/>
+ <path stroke="none" fill="#F53707" d="M1213.5 130 Q1212.8 104.75 1194.75 86.7 1176.05 68 1149.5 68 1123 68 1104.2 86.7 1086.2 104.75 1085.55 130 L1085.5 128 Q1085.5 101.45 1104.2 82.7 1123 64 1149.5 64 1176.05 64 1194.75 82.7 1213.5 101.45 1213.5 128 L1213.5 130"/>
+ <path stroke="none" fill="#D23007" d="M1213.5 130 Q1213.1 144.35 1207.1 156.4 1202.5 165.45 1194.75 173.2 L1191.35 176.45 Q1186.35 180.85 1180.8 184.05 1179.85 182.2 1178.7 180.5 1179.8 179.95 1180.25 179.15 1181.45 177 1177.6 174.2 1174.05 171.5 1167.8 169.85 L1167.65 169.8 1167.3 169.75 Q1159.4 164.95 1149.5 164.95 1139.6 164.95 1131.7 169.75 L1131.35 169.8 1131.2 169.85 Q1124.95 171.5 1121.4 174.2 1117.55 177 1118.75 179.15 1119.2 179.95 1120.35 180.5 1119.15 182.2 1118.25 184 1112.75 180.9 1107.75 176.5 L1104.2 173.2 Q1096.5 165.5 1092 156.5 1085.9 144.4 1085.55 130 1086.2 104.75 1104.2 86.7 1123 68 1149.5 68 1176.05 68 1194.75 86.7 1212.8 104.75 1213.5 130"/>
+ <path stroke="none" fill="#FFCC00" d="M1118.25 184 Q1119.15 182.2 1120.35 180.5 1119.2 179.95 1118.75 179.15 1117.55 177 1121.4 174.2 1124.95 171.5 1131.2 169.85 L1131.35 169.8 1131.7 169.75 Q1139.6 164.95 1149.5 164.95 1159.4 164.95 1167.3 169.75 L1167.65 169.8 1167.8 169.85 Q1174.05 171.5 1177.6 174.2 1181.45 177 1180.25 179.15 1179.8 179.95 1178.7 180.5 1179.85 182.2 1180.8 184.05 1166.8 192 1149.5 192 1132.25 192 1118.25 184"/>
+ <path stroke="none" fill="#D5EEF7" d="M1193.25 121.4 L1193.4 121.95 Q1196.65 134.05 1194.15 143.85 1191.6 153.7 1184.75 155.55 1177.9 157.35 1170.75 150.15 1163.55 142.95 1160.3 130.85 L1160.15 130.3 Q1158.55 123.6 1162 117.7 1165.6 111.45 1172.4 109.65 1179.25 107.8 1185.45 111.4 1191.4 114.85 1193.25 121.4 M1185.55 133.25 Q1185.55 128.85 1182.45 125.8 1179.35 122.75 1175 122.75 1170.75 122.75 1167.55 125.8 1164.55 128.85 1164.55 133.25 1164.55 137.6 1167.55 140.6 1170.75 143.75 1175 143.75 1179.35 143.75 1182.45 140.6 1185.55 137.6 1185.55 133.25 M1138.9 130.35 L1138.7 130.9 Q1135.5 143 1128.4 150.15 1121.25 157.4 1114.35 155.6 1107.55 153.7 1104.95 143.9 1102.35 134.05 1105.55 121.95 L1105.75 121.4 Q1107.65 114.85 1113.6 111.4 1119.8 107.8 1126.65 109.7 1133.55 111.5 1137.05 117.7 1140.55 123.65 1138.9 130.35 M1113.3 133.25 Q1113.3 137.6 1116.35 140.6 1119.45 143.75 1123.8 143.75 1128.1 143.75 1131.25 140.6 1134.3 137.6 1134.3 133.25 1134.3 128.85 1131.25 125.8 1128.1 122.75 1123.8 122.75 1119.45 122.75 1116.35 125.8 1113.3 128.85 1113.3 133.25"/>
+ <path stroke="none" fill="#FFFFFF" d="M1113.3 133.25 Q1113.3 128.85 1116.35 125.8 1119.45 122.75 1123.8 122.75 1128.1 122.75 1131.25 125.8 1134.3 128.85 1134.3 133.25 1134.3 137.6 1131.25 140.6 1128.1 143.75 1123.8 143.75 1119.45 143.75 1116.35 140.6 1113.3 137.6 1113.3 133.25 M1185.55 133.25 Q1185.55 137.6 1182.45 140.6 1179.35 143.75 1175 143.75 1170.75 143.75 1167.55 140.6 1164.55 137.6 1164.55 133.25 1164.55 128.85 1167.55 125.8 1170.75 122.75 1175 122.75 1179.35 122.75 1182.45 125.8 1185.55 128.85 1185.55 133.25 M1179.8 133.2 Q1179.8 130.4 1177.9 128.55 1175.95 126.6 1173.2 126.6 1170.5 126.6 1168.5 128.55 1166.6 130.4 1166.6 133.2 L1166.6 133.85 Q1166.8 136.1 1168.5 137.75 1170.5 139.65 1173.2 139.65 1175.95 139.65 1177.9 137.75 1179.55 136.1 1179.75 133.85 L1179.8 133.2 M1119.05 133.2 L1119.1 133.85 Q1119.25 136.1 1120.9 137.75 1122.85 139.65 1125.65 139.65 1128.3 139.65 1130.3 137.75 1132.05 136.1 1132.2 133.85 L1132.25 133.2 Q1132.25 130.4 1130.3 128.55 1128.3 126.6 1125.65 126.6 1122.85 126.6 1120.9 128.55 1119.05 130.4 1119.05 133.2"/>
+ <path stroke="none" fill="#5B5B5B" d="M1119.05 133.2 Q1119.05 130.4 1120.9 128.55 1122.85 126.6 1125.65 126.6 1128.3 126.6 1130.3 128.55 1132.25 130.4 1132.25 133.2 L1132.2 133.85 Q1132.05 136.1 1130.3 137.75 1128.3 139.65 1125.65 139.65 1122.85 139.65 1120.9 137.75 1119.25 136.1 1119.1 133.85 L1119.05 133.2 M1179.8 133.2 L1179.75 133.85 Q1179.55 136.1 1177.9 137.75 1175.95 139.65 1173.2 139.65 1170.5 139.65 1168.5 137.75 1166.8 136.1 1166.6 133.85 L1166.6 133.2 Q1166.6 130.4 1168.5 128.55 1170.5 126.6 1173.2 126.6 1175.95 126.6 1177.9 128.55 1179.8 130.4 1179.8 133.2"/>
+ <path stroke="none" fill="#61A3FF" d="M1131.5 149.5 L1131.5 146 Q1131.5 143.65 1132.05 141.5 L1132.3 140.65 1132.35 140.5 Q1133.6 136.45 1136.7 133.3 1142.05 128 1149.5 128 1157 128 1162.2 133.3 1165.4 136.45 1166.65 140.5 L1166.7 140.65 1166.9 141.5 Q1167.5 143.65 1167.5 146 L1167.5 149.5 Q1167.45 147.55 1166.9 145.7 L1166.7 144.95 1166.65 144.8 Q1165.4 141 1162.2 138.1 1157 133.15 1149.5 133.15 1142.05 133.15 1136.7 138.1 1133.6 141 1132.35 144.8 L1132.3 144.95 1132.05 145.7 Q1131.55 147.55 1131.5 149.5"/>
+ <path stroke="none" fill="#5D9CF3" d="M1131.5 149.5 Q1131.55 147.55 1132.05 145.7 L1132.3 144.95 1132.35 144.8 Q1133.6 141 1136.7 138.1 1142.05 133.15 1149.5 133.15 1157 133.15 1162.2 138.1 1165.4 141 1166.65 144.8 L1166.7 144.95 1166.9 145.7 Q1167.45 147.55 1167.5 149.5 L1167.5 149.9 1167.5 155.9 1167.5 156.4 1167.4 157.85 1167.3 158.7 Q1149.5 163.25 1131.7 158.7 L1131.6 157.85 1131.5 156.2 1131.5 155.9 1131.5 149.9 1131.5 149.5"/>
+ <path stroke="none" fill="#397EDE" d="M1166.5 161.95 Q1165.2 165.65 1162.2 168.65 1157 174 1149.5 174 1142.05 174 1136.7 168.65 1133.75 165.65 1132.5 161.95 1149.5 165.8 1166.5 161.95"/>
+ <path stroke="none" fill="#3473CB" d="M1166.5 161.95 Q1149.5 165.8 1132.5 161.95 1131.95 160.4 1131.7 158.7 1149.5 163.25 1167.3 158.7 L1166.5 161.95"/>
+ <path stroke="none" fill="#BB2905" d="M1162.9 82.45 Q1166.8 89.2 1167.55 95.1 1168.45 100.95 1165.7 102.5 1162.95 104.1 1158.25 100.45 1153.65 96.8 1149.75 90.05 L1148.85 88.5 Q1147.25 85.3 1147.65 82 1148.05 78.35 1150.8 76.75 1153.55 75.2 1156.95 76.65 1159.95 77.95 1161.95 80.95 L1162.9 82.45"/>
+ <path stroke="none" fill="#BB2905" d="M1143.2 90.15 Q1140.65 94.65 1137.5 97.05 1134.45 99.5 1132.65 98.4 1130.85 97.4 1131.4 93.5 1131.95 89.6 1134.5 85.15 L1135.1 84.1 Q1136.45 82.1 1138.45 81.25 1140.7 80.25 1142.5 81.3 1144.3 82.4 1144.6 84.85 1144.85 86.95 1143.8 89.1 L1143.2 90.15"/>
+ <path stroke="none" fill="#857E7E" d="M1101.45 271.95 Q1109.25 264.05 1118.4 259.35 1132.45 252 1149.5 252 1166.55 252 1180.65 259.3 1189.8 264.05 1197.65 271.95 1217.5 291.8 1217.5 320 L1217.5 322 1217.5 322.1 Q1216.75 348.95 1197.65 368.1 1187.25 378.45 1174.7 383.45 L1174.65 383.45 Q1163.05 388 1149.5 388 1136 388 1124.45 383.45 1111.8 378.45 1101.45 368.1 1082.25 349 1081.55 322.2 L1081.5 320 Q1081.5 291.8 1101.45 271.95"/>
+ <path stroke="none" fill="#DBD9D9" d="M1085.55 322 L1085.5 320 Q1085.5 293.45 1104.25 274.75 1111.65 267.35 1120.25 262.9 1133.45 256 1149.5 256 1165.55 256 1178.8 262.85 1187.4 267.35 1194.8 274.75 1213.5 293.45 1213.5 320 L1213.5 322 Q1212.8 296.75 1194.8 278.75 1186.4 270.35 1176.45 265.7 L1172.45 269.1 Q1162.95 276 1149.5 276 1136.05 276 1126.5 269.1 1124.25 267.5 1122.6 265.75 1112.65 270.35 1104.25 278.75 1086.2 296.75 1085.55 322"/>
+ <path stroke="none" fill="#D2D0D0" d="M1085.55 322 Q1086.2 296.75 1104.25 278.75 1112.65 270.35 1122.6 265.75 1124.25 267.5 1126.5 269.1 1136.05 276 1149.5 276 1162.95 276 1172.45 269.1 L1176.45 265.7 Q1186.4 270.35 1194.8 278.75 1212.8 296.75 1213.5 322 1212.8 347.25 1194.8 365.25 1185.05 375 1173.2 379.7 1163 359.75 1149.5 359.75 1136.1 359.75 1125.9 379.7 1114 375 1104.25 365.25 1086.2 347.25 1085.55 322"/>
+ <path stroke="none" fill="#E5E3E3" d="M1173.2 379.7 Q1162.25 384 1149.5 384 1136.8 384 1125.9 379.7 1136.1 359.75 1149.5 359.75 1163 359.75 1173.2 379.7"/>
+ <path stroke="none" fill="#FFFFFF" d="M1108.9 305 Q1108.9 299.95 1112.5 296.4 1116.1 292.9 1121.1 292.9 1126.1 292.9 1129.8 296.4 1133.3 299.95 1133.3 305 1133.3 310.05 1129.8 313.5 1126.1 317.15 1121.1 317.15 1116.1 317.15 1112.5 313.5 1108.9 310.05 1108.9 305 M1114.85 305.25 Q1114.85 308.4 1117.1 310.55 1119.25 312.85 1122.45 312.85 1125.6 312.85 1127.85 310.55 1130.1 308.4 1130.1 305.25 1130.1 301.95 1127.85 299.8 1125.6 297.65 1122.45 297.65 1119.25 297.65 1117.1 299.8 1114.85 301.95 1114.85 305.25 M1190.1 305 Q1190.1 310.05 1186.6 313.5 1183 317.15 1177.9 317.15 1172.9 317.15 1169.35 313.5 1165.75 310.05 1165.75 305 1165.75 299.95 1169.35 296.4 1172.9 292.9 1177.9 292.9 1183 292.9 1186.6 296.4 1190.1 299.95 1190.1 305 M1184.25 305.25 Q1184.25 301.95 1182 299.8 1179.75 297.65 1176.6 297.65 1173.5 297.65 1171.15 299.8 1168.9 301.95 1168.9 305.25 1168.9 308.4 1171.15 310.55 1173.5 312.85 1176.6 312.85 1179.75 312.85 1182 310.55 1184.25 308.4 1184.25 305.25"/>
+ <path stroke="none" fill="#5B5B5B" d="M1184.25 305.25 Q1184.25 308.4 1182 310.55 1179.75 312.85 1176.6 312.85 1173.5 312.85 1171.15 310.55 1168.9 308.4 1168.9 305.25 1168.9 301.95 1171.15 299.8 1173.5 297.65 1176.6 297.65 1179.75 297.65 1182 299.8 1184.25 301.95 1184.25 305.25 M1114.85 305.25 Q1114.85 301.95 1117.1 299.8 1119.25 297.65 1122.45 297.65 1125.6 297.65 1127.85 299.8 1130.1 301.95 1130.1 305.25 1130.1 308.4 1127.85 310.55 1125.6 312.85 1122.45 312.85 1119.25 312.85 1117.1 310.55 1114.85 308.4 1114.85 305.25"/>
+ <path stroke="none" fill="#FFFFFF" d="M1142.65 349.15 Q1139.35 350.7 1135.45 350.7 1128.5 350.7 1123.55 345.75 1118.65 340.85 1118.65 333.9 1118.65 326.9 1123.55 322 1128.5 317.05 1135.45 317.05 L1163.95 317.05 Q1170.65 317.2 1175.4 322 1180.35 326.9 1180.35 333.9 1180.35 340.85 1175.4 345.75 1170.5 350.7 1163.5 350.7 1159.6 350.7 1156.35 349.15 1153.8 347.95 1151.6 345.75 L1149.5 343.25 1147.35 345.75 Q1145.2 347.95 1142.65 349.15"/>
+ <path stroke="none" fill="#A8A1A1" d="M1142.65 349.15 Q1145.2 347.95 1147.35 345.75 L1149.5 343.25 1151.6 345.75 Q1153.8 347.95 1156.35 349.15 1153.25 350.7 1149.5 350.7 1145.75 350.7 1142.65 349.15"/>
+ <path stroke="none" fill="#FFC4FF" d="M1137.6 316.3 L1137.5 314.7 1137.5 313.8 Q1137.75 311.55 1141.1 309.9 1144.8 308.15 1150 308.15 1155.15 308.15 1158.8 309.9 1162.15 311.55 1162.45 313.8 L1162.5 314.7 1162.4 316.45 Q1161.9 314.4 1158.8 312.9 1155.15 311.15 1150 311.15 1144.8 311.15 1141.1 312.9 1138.1 314.35 1137.6 316.3"/>
+ <path stroke="none" fill="#FFAAFF" d="M1137.6 316.3 Q1138.1 314.35 1141.1 312.9 1144.8 311.15 1150 311.15 1155.15 311.15 1158.8 312.9 1161.9 314.4 1162.4 316.45 1161.85 320.5 1158.8 323.45 1155.15 327.15 1150 327.15 1144.8 327.15 1141.1 323.45 1138.1 320.45 1137.6 316.3"/>
+ <path stroke="none" fill="#A8A1A1" d="M1113.6 334.45 L1113.6 334 1113.9 333.6 Q1119.45 329.55 1128.3 330.05 L1128.8 330.25 1129 330.7 1129 331.2 1128.6 331.55 Q1121.35 333.55 1115.75 338.5 L1115.3 338.6 1114.85 338.45 1114.65 338.05 1113.6 334.45 M1110.05 322.3 Q1110.1 321.95 1110.3 321.8 L1110.8 321.5 Q1119.35 319.85 1129.15 325.2 L1129.6 325.7 1129.6 326.3 1129.3 326.85 1128.7 327.05 Q1120 326.6 1110.3 328.1 L1109.8 328 1109.35 327.55 1109.35 326.95 1110.05 322.3 M1185.4 334.45 L1184.35 338.05 1184.15 338.45 1183.7 338.6 1183.25 338.5 Q1177.65 333.55 1170.4 331.55 L1170 331.2 1170 330.7 1170.2 330.25 1170.7 330.05 Q1179.55 329.55 1185.1 333.6 L1185.4 334 1185.4 334.45 M1188.95 322.3 L1189.65 326.95 1189.65 327.55 1189.2 328 1188.7 328.1 Q1179 326.6 1170.3 327.05 L1169.7 326.85 Q1169.4 326.6 1169.4 326.3 L1169.4 325.7 Q1169.55 325.4 1169.85 325.2 1179.65 319.85 1188.2 321.5 L1188.7 321.8 1188.95 322.3"/>
+ <path stroke="none" fill="#857E7E" d="M895.7 252 Q915.15 252 930.7 261.5 932.6 262.65 934.4 263.95 L934.45 263.95 Q939.35 267.45 943.85 271.95 963.7 291.8 963.7 320 L963.7 322 963.7 322.15 Q963.2 338.3 956.1 351.75 954 355.65 951.35 359.35 L950.95 359.85 Q947.75 364.1 943.8 368.1 L938.9 372.6 938.85 372.65 934.4 376.05 Q917.5 388 895.7 388 873.85 388 857 376.1 L857 376.05 Q854.75 374.45 852.65 372.75 L847.6 368.1 Q839.5 360 834.75 350.65 L834.5 350.05 828.95 333.35 828.75 332.2 828.7 331.9 828.5 330.9 828.5 330.7 828.45 330.5 828.45 330.3 828.4 330.1 828.25 328.6 828.15 328.1 828.15 327.8 828.1 327.45 828.1 327.4 828.05 327.15 828 326.6 827.95 326.05 827.9 325.5 827.75 322.2 827.7 320 Q827.7 291.8 847.65 271.95 852.15 267.4 857 264 L857.05 263.95 860.8 261.55 860.75 261.55 Q876.3 252 895.7 252"/>
+ <path stroke="none" fill="#DBD9D9" d="M959.7 322 Q959 296.75 941 278.75 936.6 274.35 931.8 271 929 269.05 926.05 267.45 L922.9 269.95 Q911.65 278 895.7 278 879.75 278 868.45 269.95 L865.35 267.5 Q862.4 269.1 859.6 271.05 854.8 274.4 850.45 278.75 832.4 296.75 831.75 322 L831.7 320 Q831.7 293.45 850.45 274.75 854.7 270.5 859.3 267.25 861.05 266.05 862.85 264.95 877.45 256 895.7 256 914 256 928.6 264.9 L932.1 267.2 Q936.75 270.5 941 274.75 959.7 293.45 959.7 320 L959.7 322"/>
+ <path stroke="none" fill="#D2D0D0" d="M959.7 322 Q959.25 337.2 952.55 349.85 950.6 353.55 948.1 357 L948.05 357 Q944.9 361.3 940.95 365.25 L936.3 369.55 Q934.25 371.25 932.1 372.75 916.2 384 895.7 384 875.15 384 859.3 372.8 L855.2 369.65 850.4 365.25 Q842.8 357.65 838.3 348.8 L832.75 332.1 832.75 331.9 832.55 330.8 832.5 330.55 832.45 330.05 832.35 329.5 832.2 328.25 832.2 328.05 832.1 327.45 832.1 327.2 832.05 327 832.05 326.75 832 326.45 831.95 325.8 831.95 325.55 831.9 325.25 831.75 322 Q832.4 296.75 850.45 278.75 854.8 274.4 859.6 271.05 862.4 269.1 865.35 267.5 L868.45 269.95 Q879.75 278 895.7 278 911.65 278 922.9 269.95 L926.05 267.45 Q929 269.05 931.8 271 936.6 274.35 941 278.75 959 296.75 959.7 322"/>
+ <path stroke="none" fill="#000000" fill-opacity="0.050980392156862744" d="M880.9 331.6 L881.2 332 882.9 333.85 882.95 333.85 883.3 334.65 883.3 334.7 883.25 334.85 883.2 334.85 882.85 335.9 882.8 335.9 881.75 336.6 876.4 338.8 Q874.65 339.45 873.1 340.25 872.15 340.6 871.25 341.1 868.15 342.75 865.65 344.9 L864.45 344.45 Q867.4 340.45 871.25 337.45 L873.1 336.2 Q874.65 335.1 876.4 334.15 L880.9 331.6 M910.55 331.6 L915 334.15 918.3 336.2 920.15 337.45 Q923.85 340.3 926.7 344.15 L925.6 344.8 Q923.15 342.7 920.15 341.1 919.25 340.6 918.3 340.25 916.75 339.45 915 338.8 L909.65 336.6 908.6 335.9 908.55 335.9 Q908.15 335.4 908.2 334.85 L908.15 334.85 908.1 334.7 908.1 334.65 Q908.2 334.15 908.45 333.85 L908.5 333.85 910.2 332 910.55 331.6"/>
+ <path stroke="none" fill="#F0EDE7" d="M873.1 336.2 L871.25 337.45 Q867.4 340.45 864.45 344.45 862.75 346.8 861.35 349.5 860.45 351.15 859.7 352.95 L858.55 356.05 Q856.6 361.85 853.35 362.2 L853.75 358.3 Q855.85 343.75 869.2 329.95 L872.1 327.05 Q873.65 331.3 873.1 336.2 M881.2 324.35 L882.9 327 882.95 327 883.3 328.15 881.2 324.35 M910.2 324.35 L908.1 328.15 Q908.2 327.45 908.45 327 L908.5 327 Q909.3 325.55 910.2 324.35 M918.3 336.2 Q917.75 331.3 919.3 327.05 L922.2 329.95 Q935.55 343.75 937.7 358.3 L938.05 362.2 Q934.8 361.85 932.85 356.05 L931.7 352.95 930.1 349.5 Q928.55 346.6 926.7 344.15 923.85 340.3 920.15 337.45 L918.3 336.2"/>
+ <path stroke="none" fill="#CDCBCB" d="M918.3 336.2 L915 334.15 910.55 331.6 909.65 331 908.6 330 908.55 329.95 Q908.15 329.25 908.2 328.5 L908.15 328.45 908.1 328.25 908.1 328.15 910.2 324.35 917.65 310.5 Q919.85 317.05 925.15 318.85 921.7 322 920 325.55 L919.3 327.05 Q917.75 331.3 918.3 336.2 M880.9 331.6 L876.4 334.15 Q874.65 335.1 873.1 336.2 873.65 331.3 872.1 327.05 L871.45 325.55 Q869.7 322 866.25 318.85 871.55 317.05 873.75 310.5 L881.2 324.35 883.3 328.15 883.3 328.25 883.25 328.45 883.2 328.5 882.85 329.95 882.8 330 881.75 331 880.9 331.6"/>
+ <path stroke="none" fill="#FFFCF5" d="M853.35 362.2 Q852.55 362.05 851.9 361.5 L851.75 361.45 Q851.05 360.7 850.9 359.8 849.65 354.35 849.1 349.5 L848.65 344.15 Q848.05 324.55 866.25 318.85 869.7 322 871.45 325.55 L872.1 327.05 869.2 329.95 Q855.85 343.75 853.75 358.3 L853.35 362.2 M919.3 327.05 L920 325.55 Q921.7 322 925.15 318.85 943.35 324.55 942.75 344.15 L942.35 349.45 Q941.8 354.3 940.5 359.8 940.35 360.7 939.65 361.45 L939.5 361.5 Q938.85 362.05 938.05 362.2 L937.7 358.3 Q935.55 343.75 922.2 329.95 L919.3 327.05"/>
+ <path stroke="none" fill="#DBD9D9" d="M871.6 320.85 Q872.7 318.5 875.4 316.35 883 310.55 895.7 310.55 908.45 310.55 915.85 316.35 918.6 318.5 919.85 320.85 914.3 335.35 910.7 351 908 362.5 906.4 374.65 906.05 376.2 902.8 377.2 899.8 378.1 895.7 378.1 891.6 378.1 888.55 377.2 885.4 376.2 885.05 374.65 883.6 362.1 881.2 351 877.5 334.25 871.6 320.85 M883.55 327 L883.5 327 Q896.2 332.85 907.9 327 L907.95 326.95 Q908.65 326.65 908.9 325.85 L908.9 325.95 Q909.15 325.25 908.9 324.65 908.65 323.85 907.95 323.55 L907.9 323.55 Q896.25 317.6 883.55 323.5 882.7 323.8 882.5 324.65 882.25 325.25 882.5 325.95 882.75 326.65 883.55 327"/>
+ <path stroke="none" fill="#CDCBCB" d="M883.55 327 Q882.75 326.65 882.5 325.95 882.25 325.25 882.5 324.65 882.7 323.8 883.55 323.5 896.25 317.6 907.9 323.55 L907.95 323.55 Q908.65 323.85 908.9 324.65 909.15 325.25 908.9 325.95 L908.9 325.85 Q908.65 326.65 907.95 326.95 L907.9 327 Q896.2 332.85 883.5 327 L883.55 327"/>
+ <path stroke="none" fill="#E7E5E5" d="M871.6 320.85 L871.2 319.5 Q869 310.6 875.4 303.3 883 295 895.7 295 908.45 295 915.85 303.3 922.45 310.6 920.15 319.5 L919.85 320.85 Q918.6 318.5 915.85 316.35 908.45 310.55 895.7 310.55 883 310.55 875.4 316.35 872.7 318.5 871.6 320.85"/>
+ <path stroke="none" fill="#FFFFFF" d="M936.75 298.5 Q936.75 295.85 934.95 294.05 933.1 292.2 930.45 292.2 927.9 292.2 926 294.05 924.15 295.85 924.15 298.5 924.15 301.05 926 302.85 927.9 304.65 930.45 304.65 933.1 304.65 934.95 302.85 936.75 301.05 936.75 298.5 M942.25 297.3 Q942.25 301.45 939.3 304.3 936.35 307.3 932.2 307.3 928.1 307.3 925.1 304.3 922.2 301.45 922.2 297.3 922.2 293.1 925.1 290.2 928.1 287.25 932.2 287.25 936.35 287.25 939.3 290.2 942.25 293.1 942.25 297.3 M849.15 297.3 Q849.15 293.1 852.1 290.2 855.05 287.25 859.2 287.25 863.3 287.25 866.3 290.2 869.2 293.1 869.2 297.3 869.2 301.45 866.3 304.3 863.3 307.3 859.2 307.3 855.05 307.3 852.1 304.3 849.15 301.45 849.15 297.3 M854.65 298.5 Q854.65 301.05 856.45 302.85 858.3 304.65 860.95 304.65 863.5 304.65 865.4 302.85 867.25 301.05 867.25 298.5 867.25 295.85 865.4 294.05 863.5 292.2 860.95 292.2 858.3 292.2 856.45 294.05 854.65 295.85 854.65 298.5"/>
+ <path stroke="none" fill="#5B5B5B" d="M854.65 298.5 Q854.65 295.85 856.45 294.05 858.3 292.2 860.95 292.2 863.5 292.2 865.4 294.05 867.25 295.85 867.25 298.5 867.25 301.05 865.4 302.85 863.5 304.65 860.95 304.65 858.3 304.65 856.45 302.85 854.65 301.05 854.65 298.5 M936.75 298.5 Q936.75 301.05 934.95 302.85 933.1 304.65 930.45 304.65 927.9 304.65 926 302.85 924.15 301.05 924.15 298.5 924.15 295.85 926 294.05 927.9 292.2 930.45 292.2 933.1 292.2 934.95 294.05 936.75 295.85 936.75 298.5"/>
+ <path stroke="none" fill="#9C619C" d="M670.9 261.5 Q672.8 262.65 674.6 263.95 L674.65 263.95 Q679.55 267.45 684.05 271.95 703.9 291.8 703.9 320 L703.9 322 703.9 322.15 Q703.4 338.3 696.3 351.75 694.2 355.65 691.55 359.35 L691.15 359.85 Q687.95 364.1 684 368.1 L679.1 372.6 679.05 372.65 Q676.9 374.45 674.6 376.05 657.7 388 635.9 388 614.05 388 597.2 376.1 L597.2 376.05 592.85 372.75 587.8 368.1 Q579.7 360 574.95 350.65 L574.7 350.05 569.15 333.35 568.95 332.2 568.9 331.9 568.7 330.9 568.7 330.7 568.65 330.5 568.65 330.3 568.6 330.1 568.45 328.6 568.35 328.1 568.35 327.8 568.3 327.45 568.3 327.4 568.25 327.15 568.25 327.05 568.25 327 568.2 326.6 568.15 326.05 568.1 325.5 567.95 322.2 567.9 320 Q567.9 311.7 569.65 304.05 573.8 285.9 587.85 271.95 592.35 267.4 597.2 264 L597.25 263.95 601 261.55 600.95 261.55 Q616.5 252 635.9 252 655.35 252 670.9 261.5"/>
+ <path stroke="none" fill="#FFAAFF" d="M571.95 322 L571.9 320 Q571.9 312.15 573.55 304.95 577.45 287.9 590.65 274.75 594.9 270.5 599.5 267.25 L603.05 264.95 Q617.65 256 635.9 256 654.2 256 668.8 264.9 L672.3 267.2 Q676.95 270.5 681.2 274.75 699.9 293.45 699.9 320 L699.9 322 Q699.2 296.75 681.2 278.75 676.8 274.35 672 271 669.2 269.05 666.25 267.45 L663.1 269.95 Q651.85 278 635.9 278 619.95 278 608.65 269.95 L605.55 267.5 Q602.6 269.1 599.8 271.05 595 274.4 590.65 278.75 579 290.35 574.65 304.95 572.2 313 571.95 322"/>
+ <path stroke="none" fill="#EE9FEE" d="M571.95 322 Q572.2 313 574.65 304.95 579 290.35 590.65 278.75 595 274.4 599.8 271.05 602.6 269.1 605.55 267.5 L608.65 269.95 Q619.95 278 635.9 278 651.85 278 663.1 269.95 L666.25 267.45 Q669.2 269.05 672 271 676.8 274.35 681.2 278.75 699.2 296.75 699.9 322 699.45 337.2 692.75 349.85 690.8 353.55 688.3 357 L688.25 357 Q685.1 361.3 681.15 365.25 L676.5 369.55 672.3 372.75 Q656.4 384 635.9 384 615.35 384 599.5 372.8 L595.4 369.65 590.6 365.25 Q583 357.65 578.5 348.8 L572.95 332.1 572.95 331.9 572.75 330.8 572.7 330.55 572.65 330.05 572.55 329.5 572.4 328.25 572.4 328.05 572.3 327.45 572.3 327.2 572.25 327 572.25 326.75 572.2 326.45 572.15 325.8 572.15 325.55 572.1 325.25 571.95 322 M684.4 322.5 Q684.4 317.3 680.75 313.65 677.1 310 671.9 310 666.8 310 663.1 313.65 659.45 317.3 659.45 322.5 659.45 327.65 663.1 331.25 666.8 334.95 671.9 334.95 677.1 334.95 680.75 331.25 684.4 327.65 684.4 322.5 M587.4 322.5 Q587.4 327.65 591.05 331.25 594.7 334.95 599.9 334.95 605 334.95 608.7 331.25 612.35 327.65 612.35 322.5 612.35 317.3 608.7 313.65 605 310 599.9 310 594.7 310 591.05 313.65 587.4 317.3 587.4 322.5"/>
+ <path stroke="none" fill="#FFFFFF" d="M587.4 322.5 Q587.4 317.3 591.05 313.65 594.7 310 599.9 310 605 310 608.7 313.65 612.35 317.3 612.35 322.5 612.35 327.65 608.7 331.25 605 334.95 599.9 334.95 594.7 334.95 591.05 331.25 587.4 327.65 587.4 322.5 M679.65 322.7 Q679.65 319.1 677.15 316.55 674.65 314.05 671 314.05 667.45 314.05 664.85 316.55 662.35 319.1 662.35 322.7 662.35 326.3 664.85 328.75 667.45 331.3 671 331.3 674.65 331.3 677.15 328.75 679.65 326.3 679.65 322.7 M684.4 322.5 Q684.4 327.65 680.75 331.25 677.1 334.95 671.9 334.95 666.8 334.95 663.1 331.25 659.45 327.65 659.45 322.5 659.45 317.3 663.1 313.65 666.8 310 671.9 310 677.1 310 680.75 313.65 684.4 317.3 684.4 322.5 M592.1 322.7 Q592.1 326.3 594.65 328.75 597.15 331.3 600.8 331.3 604.35 331.3 606.9 328.75 609.45 326.3 609.45 322.7 609.45 319.1 606.9 316.55 604.35 314.05 600.8 314.05 597.15 314.05 594.65 316.55 592.1 319.1 592.1 322.7"/>
+ <path stroke="none" fill="#5B5B5B" d="M592.1 322.7 Q592.1 319.1 594.65 316.55 597.15 314.05 600.8 314.05 604.35 314.05 606.9 316.55 609.45 319.1 609.45 322.7 609.45 326.3 606.9 328.75 604.35 331.3 600.8 331.3 597.15 331.3 594.65 328.75 592.1 326.3 592.1 322.7 M679.65 322.7 Q679.65 326.3 677.15 328.75 674.65 331.3 671 331.3 667.45 331.3 664.85 328.75 662.35 326.3 662.35 322.7 662.35 319.1 664.85 316.55 667.45 314.05 671 314.05 674.65 314.05 677.15 316.55 679.65 319.1 679.65 322.7"/>
+ <path stroke="none" fill="#FFC4FF" d="M661.85 348.5 Q661.15 339.05 654.25 332.2 L652.45 330.55 Q645.4 324.6 635.9 324.6 626.4 324.6 619.3 330.5 L617.45 332.2 Q610.65 339.05 610 348.55 L609.9 347.45 609.9 346.6 Q609.9 335.8 617.45 328.2 L619.3 326.5 Q626.4 320.6 635.9 320.6 645.4 320.6 652.45 326.55 L654.25 328.2 Q661.9 335.8 661.9 346.6 L661.9 347.45 661.85 348.5"/>
+ <path stroke="none" fill="#FFAAFF" d="M661.85 348.5 Q661.55 351.4 660.35 354 658.85 357.2 655.95 359.9 L654.25 361.35 Q646.65 367.4 635.9 367.4 625.1 367.4 617.45 361.35 L615.85 360 Q612.95 357.25 611.45 354.05 610.25 351.45 610 348.55 610.65 339.05 617.45 332.2 L619.3 330.5 Q626.4 324.6 635.9 324.6 645.4 324.6 652.45 330.55 L654.25 332.2 Q661.15 339.05 661.85 348.5 M654.4 340 Q652.9 338.5 649.95 339.35 L649.7 339.45 Q646.85 340.3 644.35 342.8 L644.2 342.95 Q643.55 343.65 643.2 344.5 642.8 345.4 642.8 346.5 642.8 348.65 644.3 350.15 645.8 351.65 647.95 351.65 650 351.65 651.5 350.25 L651.65 350.1 Q653.7 348.05 654.65 345.8 L655.1 344.5 Q655.75 342.25 655 340.85 L654.4 340 M620.3 350.25 Q621.8 351.65 623.85 351.65 626 351.65 627.5 350.15 629 348.65 629 346.5 629 345.4 628.65 344.5 L627.6 342.95 627.45 342.8 Q624.9 340.25 622.05 339.4 L621.85 339.35 Q618.9 338.5 617.4 340 L616.8 340.85 Q616.05 342.25 616.7 344.5 616.85 345.15 617.15 345.8 618.1 348.05 620.15 350.1 L620.3 350.25"/>
+ <path stroke="none" fill="#AF74AF" d="M620.3 350.25 L620.15 350.1 Q618.1 348.05 617.15 345.8 616.85 345.15 616.7 344.5 616.05 342.25 616.8 340.85 L617.4 340 Q618.9 338.5 621.85 339.35 L622.05 339.4 Q624.9 340.25 627.45 342.8 L627.6 342.95 628.65 344.5 Q629 345.4 629 346.5 629 348.65 627.5 350.15 626 351.65 623.85 351.65 621.8 351.65 620.3 350.25 M654.4 340 L655 340.85 Q655.75 342.25 655.1 344.5 L654.65 345.8 Q653.7 348.05 651.65 350.1 L651.5 350.25 Q650 351.65 647.95 351.65 645.8 351.65 644.3 350.15 642.8 348.65 642.8 346.5 642.8 345.4 643.2 344.5 643.55 343.65 644.2 342.95 L644.35 342.8 Q646.85 340.3 649.7 339.45 L649.95 339.35 Q652.9 338.5 654.4 340"/>
+ <path stroke="none" fill="#000000" fill-opacity="0.10196078431372549" d="M615.85 360 L617.45 361.35 Q625.1 367.4 635.9 367.4 646.65 367.4 654.25 361.35 L655.95 359.9 655.5 361 Q653.95 364.25 650.6 366.9 644.5 371.75 635.9 371.75 627.25 371.75 621.1 366.9 617.8 364.3 616.3 361.05 L615.85 360"/>
+ <path stroke="none" fill="#2D548C" d="M422.7 263.95 Q425.5 265.95 428.2 268.3 L432.1 271.95 Q451.95 291.8 451.95 320 L451.95 322 451.95 322.15 Q451.45 338.3 444.35 351.75 442.25 355.65 439.6 359.35 L439.2 359.85 Q436 364.1 432.05 368.1 L427.15 372.6 427.1 372.65 422.65 376.05 Q405.75 388 383.95 388 362.1 388 345.25 376.1 L345.25 376.05 340.9 372.75 335.85 368.1 Q327.75 360 323 350.65 L322.75 350.05 317.2 333.35 317 332.2 316.95 331.9 316.75 330.9 316.75 330.7 316.7 330.5 316.7 330.3 316.65 330.1 316.5 328.6 316.4 328.1 316.4 327.8 316.35 327.45 316.35 327.4 316.3 327.15 316.25 326.6 316.2 326.05 316.15 325.5 316 322.2 315.95 320 Q315.95 291.8 335.9 271.95 337.75 270 339.75 268.35 342.4 266 345.25 264 362.15 252 383.95 252 405.8 252 422.65 263.95 L422.7 263.95"/>
+ <path stroke="none" fill="#5A9BF3" d="M447.95 322 Q447.25 296.75 429.25 278.75 426.2 275.7 422.95 273.15 L422.5 273.45 Q406.55 284 383.95 284 361.35 284 345.35 273.45 L344.95 273.2 Q341.7 275.75 338.7 278.75 320.65 296.75 320 322 L319.95 320 Q319.95 293.45 338.7 274.75 L342.35 271.35 Q344.9 269.15 347.55 267.25 363.45 256 383.95 256 404.5 256 420.35 267.2 423 269.1 425.55 271.3 L429.25 274.75 Q447.95 293.45 447.95 320 L447.95 322"/>
+ <path stroke="none" fill="#528CDB" d="M447.95 322 Q447.5 337.2 440.8 349.85 438.85 353.55 436.35 357 L436.3 357 Q433.15 361.3 429.2 365.25 L424.55 369.55 Q420.15 367.95 420.2 363.25 419.1 352 409.75 343.75 399.25 334.5 384.4 334.5 369.55 334.5 359 343.75 349.7 352 348.65 363.25 347.3 368.05 343.45 369.65 L338.65 365.25 Q331.05 357.65 326.55 348.8 L321 332.1 321 331.9 320.8 330.8 320.75 330.55 320.7 330.05 320.6 329.5 320.45 328.25 320.45 328.05 320.35 327.45 320.35 327.2 320.3 327 320.3 326.75 320.25 326.45 320.2 325.8 320.2 325.55 320.15 325.25 320 322 Q320.65 296.75 338.7 278.75 341.7 275.75 344.95 273.2 L345.35 273.45 Q361.35 284 383.95 284 406.55 284 422.5 273.45 L422.95 273.15 Q426.2 275.7 429.25 278.75 447.25 296.75 447.95 322"/>
+ <path stroke="none" fill="#4178C2" d="M343.45 369.65 Q347.3 368.05 348.65 363.25 349.7 352 359 343.75 369.55 334.5 384.4 334.5 399.25 334.5 409.75 343.75 419.1 352 420.2 363.25 420.15 367.95 424.55 369.55 L420.35 372.75 Q404.45 384 383.95 384 363.4 384 347.55 372.8 L343.45 369.65 M401.55 347.35 Q400.45 346.25 398.25 346.85 396 347.45 394.05 349.45 L393.9 349.55 Q392.85 350.65 392.85 352.25 392.85 353.85 394 354.95 395.1 356.1 396.75 356.1 398.25 356.1 399.4 355.05 L399.5 354.95 Q401.5 352.95 402.1 350.75 402.75 348.5 401.55 347.35 M369.4 355.05 Q370.5 356.1 372.05 356.1 373.65 356.1 374.8 354.95 375.9 353.85 375.9 352.25 375.9 350.65 374.85 349.55 L374.75 349.45 Q372.75 347.45 370.55 346.85 368.35 346.25 367.2 347.35 366.05 348.5 366.7 350.75 367.3 352.95 369.3 354.95 L369.4 355.05"/>
+ <path stroke="none" fill="#2D5D9C" d="M401.55 347.35 Q402.75 348.5 402.1 350.75 401.5 352.95 399.5 354.95 L399.4 355.05 Q398.25 356.1 396.75 356.1 395.1 356.1 394 354.95 392.85 353.85 392.85 352.25 392.85 350.65 393.9 349.55 L394.05 349.45 Q396 347.45 398.25 346.85 400.45 346.25 401.55 347.35 M369.4 355.05 L369.3 354.95 Q367.3 352.95 366.7 350.75 366.05 348.5 367.2 347.35 368.35 346.25 370.55 346.85 372.75 347.45 374.75 349.45 L374.85 349.55 Q375.9 350.65 375.9 352.25 375.9 353.85 374.8 354.95 373.65 356.1 372.05 356.1 370.5 356.1 369.4 355.05"/>
+ <path stroke="none" fill="#FFFFFF" d="M427.65 327.1 Q427.65 323.45 425.2 321 422.65 318.45 419 318.45 415.5 318.45 412.9 321 410.35 323.45 410.35 327.1 L410.4 327.95 Q410.65 330.9 412.9 333.05 415.5 335.55 419 335.55 422.65 335.55 425.2 333.05 427.35 330.9 427.6 327.95 L427.65 327.1 M435.2 327.2 Q435.2 332.9 431.15 336.8 427.1 340.9 421.4 340.9 415.8 340.9 411.65 336.8 407.7 332.9 407.7 327.2 407.7 321.45 411.65 317.45 415.8 313.4 421.4 313.4 427.1 313.4 431.15 317.45 435.2 321.45 435.2 327.2"/>
+ <path stroke="none" fill="#5B5B5B" d="M427.65 327.1 L427.6 327.95 Q427.35 330.9 425.2 333.05 422.65 335.55 419 335.55 415.5 335.55 412.9 333.05 410.65 330.9 410.4 327.95 L410.35 327.1 Q410.35 323.45 412.9 321 415.5 318.45 419 318.45 422.65 318.45 425.2 321 427.65 323.45 427.65 327.1"/>
+ <path stroke="none" fill="#5B5B5B" d="M340.25 327.1 Q340.25 323.45 342.7 321 345.25 318.45 348.9 318.45 352.4 318.45 355 321 357.55 323.45 357.55 327.1 L357.5 327.95 Q357.25 330.9 355 333.05 352.4 335.55 348.9 335.55 345.25 335.55 342.7 333.05 340.55 330.9 340.3 327.95 L340.25 327.1"/>
+ <path stroke="none" fill="#FFFFFF" d="M340.25 327.1 L340.3 327.95 Q340.55 330.9 342.7 333.05 345.25 335.55 348.9 335.55 352.4 335.55 355 333.05 357.25 330.9 357.5 327.95 L357.55 327.1 Q357.55 323.45 355 321 352.4 318.45 348.9 318.45 345.25 318.45 342.7 321 340.25 323.45 340.25 327.1 M332.7 327.2 Q332.7 321.45 336.75 317.45 340.8 313.4 346.5 313.4 352.1 313.4 356.25 317.45 360.2 321.45 360.2 327.2 360.2 332.9 356.25 336.8 352.1 340.9 346.5 340.9 340.8 340.9 336.75 336.8 332.7 332.9 332.7 327.2"/>
+ <path stroke="none" fill="#6D4526" d="M79.95 271.9 L81.05 270.85 81.1 270.75 Q100.65 252 128 252 155.45 252 175.05 270.85 L175.1 270.9 176.1 271.9 Q180 275.8 183.2 280.1 196 297.35 196 320 L196 320.5 196 321 196 322 196 322.1 Q195.4 343.4 183.15 359.9 L180.95 362.75 180.95 362.7 179.45 364.45 176.1 368.05 Q166.3 377.85 154.5 382.85 142.3 388 128 388 118.95 388 110.8 385.95 106 384.7 101.55 382.85 89.7 377.85 79.95 368.05 L76.55 364.45 Q60.7 346.5 60 322.15 L60 322 60 321 60 320.5 60 320 Q60 291.8 79.95 271.9"/>
+ <path stroke="none" fill="#A16639" d="M192 320.5 L192 321 192 322 Q191.45 342 179.95 357.5 L177.85 360.15 176.45 361.8 173.25 365.2 Q164.05 374.45 152.95 379.15 141.45 384 128 384 119.45 384 111.75 382.05 107.3 380.95 103.1 379.15 91.95 374.45 82.75 365.2 L79.55 361.8 Q64.65 344.9 64 322 L64 321 64 320.5 Q64.55 294.9 82.75 276.7 L85 274.6 Q87.75 276.5 91.4 278.25 106.55 285.5 128 285.5 149.45 285.5 164.6 278.25 168.25 276.5 171.05 274.6 L173.25 276.7 Q176.95 280.4 179.95 284.45 191.55 300.15 192 320.5 M168 299.85 Q160.6 292.45 150.2 292.45 139.7 292.45 132.35 299.85 130.8 301.35 128 301.35 125.2 301.35 123.7 299.85 116.3 292.45 105.9 292.45 95.45 292.45 88.05 299.85 80.65 307.25 80.65 317.65 80.65 328.1 88.05 335.55 L88.1 335.55 92.3 338.95 Q92.35 353.6 102.75 363.95 106.9 368.1 111.75 370.6 119.1 374.4 128 374.4 142.8 374.4 153.3 363.95 L156.65 360.15 Q163.65 351 163.75 338.95 L168 335.55 Q175.4 328.1 175.4 317.65 175.4 307.25 168 299.85 M133.3 333.7 Q135.25 331.75 137.4 331.1 139.65 330.5 140.75 331.6 141.85 332.7 141.25 334.95 140.65 337.1 138.65 339.05 L138.55 339.2 Q137.45 340.25 135.95 340.25 134.35 340.25 133.25 339.15 132.1 338 132.1 336.4 132.1 334.85 133.15 333.8 L133.3 333.7 M123.65 339.15 Q122.45 340.25 120.9 340.25 119.35 340.25 118.25 339.2 L118.15 339.05 Q116.15 337.1 115.6 334.95 115 332.7 116.1 331.6 117.25 330.5 119.45 331.1 121.65 331.75 123.55 333.7 L123.7 333.8 Q124.75 334.85 124.75 336.4 124.75 338 123.65 339.15"/>
+ <path stroke="none" fill="#AA6C3B" d="M85 274.6 Q103.05 258 128 258 153 258 171.05 274.6 168.25 276.5 164.6 278.25 149.45 285.5 128 285.5 106.55 285.5 91.4 278.25 87.75 276.5 85 274.6"/>
+ <path stroke="none" fill="#B4723F" d="M64 320.5 L64 320 Q64 293.45 82.75 274.7 L83.8 273.7 Q102.2 256 128 256 153.85 256 172.25 273.7 L173.25 274.7 Q176.95 278.4 179.95 282.45 192 298.7 192 320 L192 320.5 Q191.55 300.15 179.95 284.45 176.95 280.4 173.25 276.7 L171.05 274.6 Q153 258 128 258 103.05 258 85 274.6 L82.75 276.7 Q64.55 294.9 64 320.5"/>
+ <path stroke="none" fill="#BF8559" d="M168.95 318.9 Q168.95 313.85 165.45 310.3 161.85 306.8 156.75 306.8 151.75 306.8 148.2 310.3 144.6 313.85 144.6 318.9 144.6 323.95 148.2 327.4 151.75 331.05 156.75 331.05 161.85 331.05 165.45 327.4 168.95 323.95 168.95 318.9 M168 299.85 Q175.4 307.25 175.4 317.65 175.4 328.1 168 335.55 L163.75 338.95 Q163.65 351 156.65 360.15 L153.3 363.95 Q142.8 374.4 128 374.4 119.1 374.4 111.75 370.6 106.9 368.1 102.75 363.95 92.35 353.6 92.3 338.95 L88.1 335.55 88.05 335.55 Q80.65 328.1 80.65 317.65 80.65 307.25 88.05 299.85 95.45 292.45 105.9 292.45 116.3 292.45 123.7 299.85 125.2 301.35 128 301.35 130.8 301.35 132.35 299.85 139.7 292.45 150.2 292.45 160.6 292.45 168 299.85 M133.3 333.7 L133.15 333.8 Q132.1 334.85 132.1 336.4 132.1 338 133.25 339.15 134.35 340.25 135.95 340.25 137.45 340.25 138.55 339.2 L138.65 339.05 Q140.65 337.1 141.25 334.95 141.85 332.7 140.75 331.6 139.65 330.5 137.4 331.1 135.25 331.75 133.3 333.7 M123.65 339.15 Q124.75 338 124.75 336.4 124.75 334.85 123.7 333.8 L123.55 333.7 Q121.65 331.75 119.45 331.1 117.25 330.5 116.1 331.6 115 332.7 115.6 334.95 116.15 337.1 118.15 339.05 L118.25 339.2 Q119.35 340.25 120.9 340.25 122.45 340.25 123.65 339.15 M145.75 360.15 L148.25 359.15 Q151.25 357.8 152.5 354.8 153.7 351.75 152.45 348.7 151.2 345.65 148.15 344.45 L145.75 343.85 Q143.9 343.7 142.1 344.45 129.5 349.55 114.35 344.25 L111.75 343.8 Q110 343.8 108.3 344.6 105.3 346.05 104.25 349.2 103.15 352.25 104.6 355.25 106 358.2 109.15 359.3 L111.75 360.15 Q130.15 365.8 145.75 360.15 M87.75 318.9 Q87.75 323.95 91.35 327.4 94.95 331.05 99.95 331.05 104.95 331.05 108.65 327.4 112.15 323.95 112.15 318.9 112.15 313.85 108.65 310.3 104.95 306.8 99.95 306.8 94.95 306.8 91.35 310.3 87.75 313.85 87.75 318.9"/>
+ <path stroke="none" fill="#FFFFFF" d="M87.75 318.9 Q87.75 313.85 91.35 310.3 94.95 306.8 99.95 306.8 104.95 306.8 108.65 310.3 112.15 313.85 112.15 318.9 112.15 323.95 108.65 327.4 104.95 331.05 99.95 331.05 94.95 331.05 91.35 327.4 87.75 323.95 87.75 318.9 M168.95 318.9 Q168.95 323.95 165.45 327.4 161.85 331.05 156.75 331.05 151.75 331.05 148.2 327.4 144.6 323.95 144.6 318.9 144.6 313.85 148.2 310.3 151.75 306.8 156.75 306.8 161.85 306.8 165.45 310.3 168.95 313.85 168.95 318.9 M163.1 319.15 Q163.1 315.85 160.85 313.7 158.6 311.55 155.45 311.55 152.35 311.55 150 313.7 147.75 315.85 147.75 319.15 147.75 322.3 150 324.45 152.35 326.75 155.45 326.75 158.6 326.75 160.85 324.45 163.1 322.3 163.1 319.15 M145.75 343.85 Q148.65 351.5 145.75 360.15 130.15 365.8 111.75 360.15 108.5 351.05 111.75 343.8 L114.35 344.25 Q129.5 349.55 142.1 344.45 143.9 343.7 145.75 343.85 M93.7 319.15 Q93.7 322.3 95.95 324.45 98.1 326.75 101.3 326.75 104.45 326.75 106.7 324.45 108.95 322.3 108.95 319.15 108.95 315.85 106.7 313.7 104.45 311.55 101.3 311.55 98.1 311.55 95.95 313.7 93.7 315.85 93.7 319.15"/>
+ <path stroke="none" fill="#5B5B5B" d="M93.7 319.15 Q93.7 315.85 95.95 313.7 98.1 311.55 101.3 311.55 104.45 311.55 106.7 313.7 108.95 315.85 108.95 319.15 108.95 322.3 106.7 324.45 104.45 326.75 101.3 326.75 98.1 326.75 95.95 324.45 93.7 322.3 93.7 319.15 M163.1 319.15 Q163.1 322.3 160.85 324.45 158.6 326.75 155.45 326.75 152.35 326.75 150 324.45 147.75 322.3 147.75 319.15 147.75 315.85 150 313.7 152.35 311.55 155.45 311.55 158.6 311.55 160.85 313.7 163.1 315.85 163.1 319.15"/>
+ <path stroke="none" fill="#E7E7E7" d="M145.75 343.85 L148.15 344.45 Q151.2 345.65 152.45 348.7 153.7 351.75 152.5 354.8 151.25 357.8 148.25 359.15 L145.75 360.15 Q148.65 351.5 145.75 343.85 M111.75 360.15 L109.15 359.3 Q106 358.2 104.6 355.25 103.15 352.25 104.25 349.2 105.3 346.05 108.3 344.6 110 343.8 111.75 343.8 108.5 351.05 111.75 360.15"/>
+ <path stroke="none" fill="#233B43" d="M196.6 511.8 L196.6 512.2 196.6 512.4 196.6 512.85 196.5 514.65 196.5 514.85 196.45 515.25 196.45 515.55 196.35 516.85 196.35 516.9 Q195.2 530.5 189.2 542.15 L186.1 547.6 186.05 547.7 185.25 548.9 185.2 548.95 Q181.35 554.5 176.25 559.65 L174.15 561.65 174.15 561.7 Q169.4 566.05 164.3 569.4 L164.3 569.45 Q147.85 580 127.1 580 107.05 580 91.1 570.1 85.35 566.55 80.1 561.75 L80.05 561.7 77.95 559.65 Q73.7 555.4 70.4 550.85 L70.5 550.95 69.05 548.9 Q67.25 546.25 65.75 543.45 L65.75 543.5 Q59.1 531.35 57.9 517 L57.75 515 57.65 513 57.65 512.9 57.6 511.8 57.6 510.5 57.65 508.45 Q58.35 480.95 77.95 461.35 92.85 446.45 112.3 442.5 L112.35 442.5 113.25 442.3 114.95 442 114.85 442 127.1 441 Q134.55 441 141.45 442.4 L141.55 442.4 142.75 442.7 142.85 442.7 143.75 442.9 143.95 442.9 Q151.2 444.65 157.9 448 167.8 452.9 176.25 461.35 193.85 478.95 196.25 502.85 L196.25 502.9 196.6 508.4 196.6 508.55 196.6 510.5 196.6 511.8"/>
+ <path stroke="none" fill="#C3DCE9" d="M61.65 512.7 L61.65 512.55 61.85 512.7 62.25 512.9 62.85 513.25 63.45 513.6 Q89.8 528.65 127.1 528.65 164.4 528.65 190.75 513.6 L192 512.9 192.4 512.7 192.6 512.6 192.5 514.4 192.45 515.25 192.35 516.55 Q191.3 529.35 185.65 540.3 L182.7 545.45 181.9 546.65 Q178.25 551.95 173.4 556.8 L171.4 558.75 Q166.95 562.9 162.1 566.05 146.65 576 127.1 576 108.2 576 93.2 566.7 87.75 563.35 82.8 558.8 L80.75 556.8 Q76.75 552.8 73.65 548.5 L72.35 546.65 69.25 541.55 Q63 530.15 61.85 516.65 L61.85 516.55 61.75 514.8 61.65 512.8 61.65 512.7"/>
+ <path stroke="none" fill="#D5F0FF" d="M61.65 512.7 L61.6 511.8 61.6 510.5 61.65 508.55 61.85 508.7 62.25 508.9 62.85 509.25 63.45 509.6 Q89.8 524.65 127.1 524.65 164.4 524.65 190.75 509.6 L192 508.9 192.4 508.7 192.6 508.55 192.6 510.5 192.6 511.8 192.6 512.2 192.6 512.6 192.4 512.7 192 512.9 190.75 513.6 Q164.4 528.65 127.1 528.65 89.8 528.65 63.45 513.6 L62.85 513.25 62.25 512.9 61.85 512.7 61.65 512.55 61.65 512.7"/>
+ <path stroke="none" fill="#365A66" d="M192.4 508.7 L192 508.9 190.75 509.6 Q164.4 524.65 127.1 524.65 89.8 524.65 63.45 509.6 L62.85 509.25 62.25 508.9 61.85 508.7 Q63.7 485.25 80.75 468.15 94.8 454.15 113.1 450.4 L115.5 449.95 127.1 449 Q134.15 449 140.65 450.3 L143 450.8 Q149.85 452.45 156.1 455.55 165.45 460.2 173.4 468.15 190 484.75 192.25 507.25 L192.4 508.7"/>
+ <path stroke="none" fill="#48798A" d="M192.4 508.7 L192.25 507.25 Q190 484.75 173.4 468.15 165.45 460.2 156.1 455.55 149.85 452.45 143 450.8 L140.65 450.3 Q134.15 449 127.1 449 L115.5 449.95 113.1 450.4 Q94.8 454.15 80.75 468.15 63.7 485.25 61.85 508.7 L61.65 508.55 Q62.3 482.65 80.75 464.15 94.8 450.15 113.1 446.4 L114.15 446.2 115.5 445.95 127.1 445 Q134.15 445 140.65 446.3 L141.95 446.6 143 446.8 Q149.85 448.45 156.1 451.55 165.45 456.2 173.4 464.15 190 480.75 192.25 503.25 L192.6 508.55 192.4 508.7"/>
+ <path stroke="none" fill="#FFFFFF" d="M167.2 498.35 Q164.4 501.1 160.45 501.1 156.45 501.1 153.65 498.3 150.9 495.55 150.85 491.5 150.85 487.6 153.65 484.85 156.45 482 160.4 481.95 164.4 482.05 167.15 484.8 169.95 487.6 170 491.55 170 495.5 167.2 498.35 M162.85 496.55 Q164.65 494.75 164.65 492.35 164.65 489.8 162.9 488.05 161.15 486.3 158.6 486.3 156.15 486.25 154.35 488.05 L153.95 488.45 Q152.6 490.05 152.65 492.2 152.7 494.75 154.45 496.5 156.2 498.25 158.7 498.25 160.8 498.25 162.4 496.95 L162.85 496.55"/>
+ <path stroke="none" fill="#5B5B5B" d="M162.85 496.55 L162.4 496.95 Q160.8 498.25 158.7 498.25 156.2 498.25 154.45 496.5 152.7 494.75 152.65 492.2 152.6 490.05 153.95 488.45 L154.35 488.05 Q156.15 486.25 158.6 486.3 161.15 486.3 162.9 488.05 164.65 489.8 164.65 492.35 164.65 494.75 162.85 496.55"/>
+ <path stroke="none" fill="#C3DCE9" d="M169.45 480.85 Q176.55 488.15 178.8 496.05 180.95 504.05 176.95 508.05 172.85 512.15 164.9 509.95 156.9 507.8 149.7 500.55 L149.5 500.2 Q145.55 496.3 145.55 490.65 145.6 484.9 149.6 480.85 153.7 476.75 159.5 476.75 165.05 476.8 169.05 480.55 L169.45 480.85 M167.2 498.35 Q170 495.5 170 491.55 169.95 487.6 167.15 484.8 164.4 482.05 160.4 481.95 156.45 482 153.65 484.85 150.85 487.6 150.85 491.5 150.9 495.55 153.65 498.3 156.45 501.1 160.45 501.1 164.4 501.1 167.2 498.35"/>
+ <path stroke="none" fill="#C3DCE9" d="M84.65 480.85 L85.05 480.55 Q89.05 476.8 94.6 476.75 100.4 476.75 104.5 480.85 108.5 484.9 108.55 490.65 108.55 496.3 104.6 500.2 L104.4 500.55 Q97.2 507.8 89.2 509.95 81.25 512.15 77.15 508.05 73.15 504.05 75.3 496.05 77.55 488.15 84.65 480.85 M86.9 498.35 Q89.7 501.1 93.65 501.1 97.65 501.1 100.45 498.3 103.2 495.55 103.25 491.5 103.25 487.6 100.45 484.85 97.65 482 93.7 481.95 89.7 482.05 86.95 484.8 84.15 487.6 84.1 491.55 84.1 495.5 86.9 498.35"/>
+ <path stroke="none" fill="#FFFFFF" d="M86.9 498.35 Q84.1 495.5 84.1 491.55 84.15 487.6 86.95 484.8 89.7 482.05 93.7 481.95 97.65 482 100.45 484.85 103.25 487.6 103.25 491.5 103.2 495.55 100.45 498.3 97.65 501.1 93.65 501.1 89.7 501.1 86.9 498.35 M91.25 496.55 L91.7 496.95 Q93.3 498.25 95.4 498.25 97.9 498.25 99.65 496.5 101.4 494.75 101.45 492.2 101.5 490.05 100.15 488.45 L99.75 488.05 Q97.95 486.25 95.5 486.3 92.95 486.3 91.2 488.05 89.45 489.8 89.45 492.35 89.45 494.75 91.25 496.55"/>
+ <path stroke="none" fill="#5B5B5B" d="M91.25 496.55 Q89.45 494.75 89.45 492.35 89.45 489.8 91.2 488.05 92.95 486.3 95.5 486.3 97.95 486.25 99.75 488.05 L100.15 488.45 Q101.5 490.05 101.45 492.2 101.4 494.75 99.65 496.5 97.9 498.25 95.4 498.25 93.3 498.25 91.7 496.95 L91.25 496.55"/>
+ <path stroke="none" fill="#989898" d="M316 514.2 L315.95 512 Q315.95 483.85 335.9 463.95 355.8 444 383.95 444 412.05 444 432 463.95 451.95 483.85 451.95 512 L451.95 514 451.95 514.1 Q451.2 540.8 432 560 L432 560.05 Q427.85 564.2 423.35 567.5 406.15 580 383.95 580 360.15 580 342.25 565.7 L342.2 565.7 335.9 560.05 Q316.7 540.85 316 514.2"/>
+ <path stroke="none" fill="#FFFFFF" d="M320 514 L319.95 512 Q319.95 485.5 338.7 466.75 357.45 448 383.95 448 410.4 448 429.15 466.75 447.95 485.5 447.95 512 L447.95 514 Q447.25 488.8 429.15 470.75 410.4 452 383.95 452 357.45 452 338.7 470.75 320.65 488.8 320 514 M421 564.25 Q404.85 576 383.95 576 361.55 576 344.7 562.55 L345.95 560.25 Q361.05 533.9 382.4 533.9 403.75 533.9 418.8 560.25 L421 564.25"/>
+ <path stroke="none" fill="#F0F0F0" d="M421 564.25 L418.8 560.25 Q403.75 533.9 382.4 533.9 361.05 533.9 345.95 560.25 L344.7 562.55 338.7 557.2 Q320.65 539.15 320 514 320.65 488.8 338.7 470.75 357.45 452 383.95 452 410.4 452 429.15 470.75 447.25 488.8 447.95 514 447.25 539.15 429.15 557.2 425.25 561.15 421 564.25"/>
+ <path stroke="none" fill="#FFFFFF" d="M427.65 514.9 Q427.65 511.25 425.2 508.8 422.65 506.25 419 506.25 415.5 506.25 412.9 508.8 410.35 511.25 410.35 514.9 L410.4 515.75 Q410.65 518.7 412.9 520.85 415.5 523.35 419 523.35 422.65 523.35 425.2 520.85 427.35 518.7 427.6 515.75 L427.65 514.9 M435.2 515 Q435.2 520.7 431.15 524.6 427.1 528.7 421.4 528.7 415.8 528.7 411.65 524.6 407.7 520.7 407.7 515 407.7 509.25 411.65 505.25 415.8 501.2 421.4 501.2 427.1 501.2 431.15 505.25 435.2 509.25 435.2 515"/>
+ <path stroke="none" fill="#5B5B5B" d="M427.65 514.9 L427.6 515.75 Q427.35 518.7 425.2 520.85 422.65 523.35 419 523.35 415.5 523.35 412.9 520.85 410.65 518.7 410.4 515.75 L410.35 514.9 Q410.35 511.25 412.9 508.8 415.5 506.25 419 506.25 422.65 506.25 425.2 508.8 427.65 511.25 427.65 514.9"/>
+ <path stroke="none" fill="#5B5B5B" d="M340.25 514.9 Q340.25 511.25 342.7 508.8 345.25 506.25 348.9 506.25 352.4 506.25 355 508.8 357.55 511.25 357.55 514.9 L357.5 515.75 Q357.25 518.7 355 520.85 352.4 523.35 348.9 523.35 345.25 523.35 342.7 520.85 340.55 518.7 340.3 515.75 L340.25 514.9"/>
+ <path stroke="none" fill="#FFFFFF" d="M340.25 514.9 L340.3 515.75 Q340.55 518.7 342.7 520.85 345.25 523.35 348.9 523.35 352.4 523.35 355 520.85 357.25 518.7 357.5 515.75 L357.55 514.9 Q357.55 511.25 355 508.8 352.4 506.25 348.9 506.25 345.25 506.25 342.7 508.8 340.25 511.25 340.25 514.9 M332.7 515 Q332.7 509.25 336.75 505.25 340.8 501.2 346.5 501.2 352.1 501.2 356.25 505.25 360.2 509.25 360.2 515 360.2 520.7 356.25 524.6 352.1 528.7 346.5 528.7 340.8 528.7 336.75 524.6 332.7 520.7 332.7 515"/>
+ <path stroke="none" fill="#D23007" d="M366.3 553.15 Q366.3 549.3 369.75 546.2 L371.8 544.3 Q378.9 537.4 382.35 528.65 382.8 528.2 383.45 528.05 L383.8 528 384.1 528 384.4 528.05 Q385.05 528.2 385.55 528.65 389.05 537.4 396.15 544.35 L398.15 546.2 Q401.6 549.3 401.6 553.15 L401.55 553.3 Q399.6 559.55 391.15 558.55 387.75 558.15 384.95 555.95 L383.95 555.05 382.9 555.95 Q380.15 558.15 376.7 558.55 368.25 559.55 366.35 553.3 L366.3 553.15"/>
+ <path stroke="none" fill="#C62C05" d="M366.3 553.15 L366.35 553.3 Q368.25 559.55 376.7 558.55 380.15 558.15 382.9 555.95 L383.95 555.05 384.95 555.95 Q387.75 558.15 391.15 558.55 399.6 559.55 401.55 553.3 L401.6 553.15 401.3 555.4 Q399.4 563.25 391.05 562 387.7 561.45 384.95 558.7 L383.95 557.6 382.95 558.7 Q380.2 561.45 376.8 562 368.5 563.25 366.6 555.4 366.3 554.25 366.3 553.15"/>
+ <path stroke="none" fill="#FF9900" d="M361.7 524.05 Q362.8 517.1 368 511.8 L370.65 509.55 Q376.45 505.2 384.05 505.2 391.65 505.2 397.45 509.55 L400 511.8 Q405.25 517.1 406.3 524.05 405.8 525.4 404.35 526.65 403.05 521.6 398.85 517.65 L396.5 515.7 Q391.1 511.95 384.05 511.95 377 511.95 371.6 515.7 L369.15 517.65 Q365 521.6 363.7 526.65 362.2 525.45 361.7 524.05"/>
+ <path stroke="none" fill="#F39100" d="M363.7 526.65 Q365 521.6 369.15 517.65 L371.6 515.7 Q377 511.95 384.05 511.95 391.1 511.95 396.5 515.7 L398.85 517.65 Q403.05 521.6 404.35 526.65 402.75 527.95 400 529.05 393.4 531.75 384.05 531.75 374.65 531.75 368 529.05 365.25 527.95 363.7 526.65"/>
+ <path stroke="none" fill="#E08600" d="M363.7 526.65 Q365.25 527.95 368 529.05 374.65 531.75 384.05 531.75 393.4 531.75 400 529.05 402.75 527.95 404.35 526.65 405.8 525.4 406.3 524.05 L406.6 527.75 406.5 529.25 Q406.1 534.25 400 537.85 393.4 541.7 384.05 541.7 374.65 541.7 368 537.85 361.95 534.25 361.5 529.25 L361.45 527.75 Q361.45 525.8 361.7 524.05 362.2 525.45 363.7 526.65"/>
+ <path stroke="none" fill="#F53707" d="M395.25 460.2 Q394.95 457.95 393.25 456.25 391.15 454.15 388.2 454.15 385.75 454.15 383.95 455.55 382.1 454.15 379.7 454.15 376.75 454.15 374.6 456.25 372.95 457.95 372.6 460.2 L372.55 459 Q372.55 456 374.6 453.9 376.75 451.8 379.7 451.8 382.1 451.8 383.95 453.2 385.75 451.8 388.2 451.8 391.15 451.8 393.25 453.9 395.35 456 395.35 459 L395.25 460.2 M372.8 461.05 Q373.1 462.9 371.75 464.6 370.1 466.8 369.8 469.55 L369.75 468.4 Q369.75 464.3 372.55 461.35 L372.8 461.05 M398.1 469.55 Q397.8 466.8 396.15 464.6 394.8 462.9 395.1 461.05 L395.35 461.35 Q396.75 462.8 397.45 464.6 398.15 466.35 398.15 468.4 L398.1 469.55"/>
+ <path stroke="none" fill="#D23007" d="M398.1 469.55 Q397.8 472.2 396.35 474.25 L396.65 476.2 396.7 477.15 396.65 478.35 Q396.25 482.55 393.2 485.6 389.65 489.15 384.7 489.15 L383.95 489.1 383.2 489.15 Q378.2 489.15 374.75 485.6 371.65 482.55 371.25 478.4 L371.2 477.15 371.25 476.15 371.55 474.25 Q370.05 472.2 369.8 469.55 370.1 466.8 371.75 464.6 373.1 462.9 372.8 461.05 L372.6 460.2 Q372.95 457.95 374.6 456.25 376.75 454.15 379.7 454.15 382.1 454.15 383.95 455.55 385.75 454.15 388.2 454.15 391.15 454.15 393.25 456.25 394.95 457.95 395.25 460.2 L395.1 461.05 Q394.8 462.9 396.15 464.6 397.8 466.8 398.1 469.55"/>
+ <path stroke="none" fill="#987900" d="M705.85 512 L705.85 514 705.85 514.1 Q705.1 540.8 685.9 560 L685.9 560.05 Q681.75 564.2 677.25 567.5 660.05 580 637.85 580 614.05 580 596.15 565.7 L596.1 565.7 589.8 560.05 Q570.6 540.85 569.9 514.2 L569.85 512 Q569.85 483.85 589.8 463.95 609.7 444 637.85 444 665.95 444 685.9 463.95 705.85 483.85 705.85 512"/>
+ <path stroke="none" fill="#FFD738" d="M573.9 514 L573.85 512 Q573.85 485.5 592.6 466.75 611.35 448 637.85 448 664.3 448 683.05 466.75 701.85 485.5 701.85 512 L701.85 514 Q701.15 488.8 683.05 470.75 664.3 452 637.85 452 611.35 452 592.6 470.75 574.55 488.8 573.9 514"/>
+ <path stroke="none" fill="#FFCC00" d="M701.85 514 Q701.15 539.15 683.05 557.2 679.15 561.15 674.9 564.25 L672.7 560.25 Q657.65 533.9 636.3 533.9 614.95 533.9 599.85 560.25 L598.6 562.55 592.6 557.2 Q574.55 539.15 573.9 514 574.55 488.8 592.6 470.75 611.35 452 637.85 452 664.3 452 683.05 470.75 701.15 488.8 701.85 514"/>
+ <path stroke="none" fill="#EEBE00" d="M674.9 564.25 Q658.75 576 637.85 576 615.45 576 598.6 562.55 L599.85 560.25 Q614.95 533.9 636.3 533.9 657.65 533.9 672.7 560.25 L674.9 564.25"/>
+ <path stroke="none" fill="#FFFFFF" d="M689.1 515 Q689.1 520.7 685.05 524.6 681 528.7 675.3 528.7 669.7 528.7 665.55 524.6 661.6 520.7 661.6 515 661.6 509.25 665.55 505.25 669.7 501.2 675.3 501.2 681 501.2 685.05 505.25 689.1 509.25 689.1 515 M681.55 514.9 Q681.55 511.25 679.1 508.8 676.55 506.25 672.9 506.25 669.4 506.25 666.8 508.8 664.25 511.25 664.25 514.9 L664.3 515.75 Q664.55 518.7 666.8 520.85 669.4 523.35 672.9 523.35 676.55 523.35 679.1 520.85 681.25 518.7 681.5 515.75 L681.55 514.9"/>
+ <path stroke="none" fill="#5B5B5B" d="M681.55 514.9 L681.5 515.75 Q681.25 518.7 679.1 520.85 676.55 523.35 672.9 523.35 669.4 523.35 666.8 520.85 664.55 518.7 664.3 515.75 L664.25 514.9 Q664.25 511.25 666.8 508.8 669.4 506.25 672.9 506.25 676.55 506.25 679.1 508.8 681.55 511.25 681.55 514.9"/>
+ <path stroke="none" fill="#FFFFFF" d="M594.15 514.9 L594.2 515.75 Q594.45 518.7 596.6 520.85 599.15 523.35 602.8 523.35 606.3 523.35 608.9 520.85 611.15 518.7 611.4 515.75 L611.45 514.9 Q611.45 511.25 608.9 508.8 606.3 506.25 602.8 506.25 599.15 506.25 596.6 508.8 594.15 511.25 594.15 514.9 M586.6 515 Q586.6 509.25 590.65 505.25 594.7 501.2 600.4 501.2 606 501.2 610.15 505.25 614.1 509.25 614.1 515 614.1 520.7 610.15 524.6 606 528.7 600.4 528.7 594.7 528.7 590.65 524.6 586.6 520.7 586.6 515"/>
+ <path stroke="none" fill="#5B5B5B" d="M594.15 514.9 Q594.15 511.25 596.6 508.8 599.15 506.25 602.8 506.25 606.3 506.25 608.9 508.8 611.45 511.25 611.45 514.9 L611.4 515.75 Q611.15 518.7 608.9 520.85 606.3 523.35 602.8 523.35 599.15 523.35 596.6 520.85 594.45 518.7 594.2 515.75 L594.15 514.9"/>
+ <path stroke="none" fill="#FF9900" d="M660.2 524.05 Q659.7 525.4 658.25 526.65 656.95 521.6 652.75 517.65 L650.4 515.7 Q645 511.95 637.95 511.95 630.9 511.95 625.5 515.7 624.25 516.55 623.05 517.65 618.9 521.6 617.6 526.65 616.1 525.45 615.6 524.05 616.7 517.1 621.9 511.8 623.2 510.5 624.55 509.55 630.35 505.2 637.95 505.2 645.55 505.2 651.35 509.55 L653.9 511.8 Q659.15 517.1 660.2 524.05"/>
+ <path stroke="none" fill="#F39100" d="M617.6 526.65 Q618.9 521.6 623.05 517.65 624.25 516.55 625.5 515.7 630.9 511.95 637.95 511.95 645 511.95 650.4 515.7 L652.75 517.65 Q656.95 521.6 658.25 526.65 656.65 527.95 653.9 529.05 647.3 531.75 637.95 531.75 628.55 531.75 621.9 529.05 619.15 527.95 617.6 526.65"/>
+ <path stroke="none" fill="#E08600" d="M660.2 524.05 L660.5 527.75 660.4 529.25 Q660 534.25 653.9 537.85 647.3 541.7 637.95 541.7 628.55 541.7 621.9 537.85 615.85 534.25 615.4 529.25 L615.35 527.75 Q615.35 525.8 615.6 524.05 616.1 525.45 617.6 526.65 619.15 527.95 621.9 529.05 628.55 531.75 637.95 531.75 647.3 531.75 653.9 529.05 656.65 527.95 658.25 526.65 659.7 525.4 660.2 524.05"/>
+ <path stroke="none" fill="#EEBE00" d="M651.25 464.45 Q655.15 471.2 655.9 477.1 656.8 482.95 654.05 484.5 651.3 486.1 646.6 482.45 642 478.8 638.1 472.05 L637.2 470.5 Q635.6 467.3 636 464 636.4 460.35 639.15 458.75 641.9 457.2 645.3 458.65 648.3 459.95 650.3 462.95 L651.25 464.45 M631.55 472.15 Q629 476.65 625.85 479.05 622.8 481.5 621 480.4 619.2 479.4 619.75 475.5 620.3 471.6 622.85 467.15 L623.45 466.1 Q624.8 464.1 626.8 463.25 629.05 462.25 630.85 463.3 632.65 464.4 632.95 466.85 633.2 468.95 632.15 471.1 L631.55 472.15"/>
+ <path stroke="none" fill="#6D4526" d="M895.7 444 Q923.85 444 943.8 463.9 963.7 483.85 963.7 512 L963.7 514 963.7 514.1 Q963.25 529.95 956.4 543.1 951.65 552.25 943.8 560.05 923.85 580 895.7 580 867.55 580 847.65 560.05 828.45 540.95 827.75 514.2 L827.7 512 Q827.7 483.85 847.65 463.9 867.55 444 895.7 444"/>
+ <path stroke="none" fill="#BD7841" d="M905.7 452.7 L895.7 452 885.7 452.7 Q865.55 455.65 850.45 470.7 832.4 488.8 831.75 514 L831.7 512 Q831.7 485.5 850.45 466.7 869.2 448 895.7 448 922.2 448 940.95 466.7 959.7 485.5 959.7 512 L959.7 514 Q959 488.8 940.95 470.7 925.85 455.65 905.7 452.7"/>
+ <path stroke="none" fill="#F3DBC8" d="M905.7 452.7 Q905 502.85 925.75 541.25 L865.65 541.25 Q886.4 502.85 885.7 452.7 L895.7 452 905.7 452.7"/>
+ <path stroke="none" fill="#A16639" d="M905.7 452.7 Q925.85 455.65 940.95 470.7 959 488.8 959.7 514 959.3 528.9 952.85 541.25 948.35 549.85 940.95 557.2 922.2 576 895.7 576 869.2 576 850.45 557.2 832.4 539.2 831.75 514 832.4 488.8 850.45 470.7 865.55 455.65 885.7 452.7 886.4 502.85 865.65 541.25 L925.75 541.25 Q905 502.85 905.7 452.7"/>
+ <path stroke="none" fill="#9C6236" d="M871.95 467.8 Q870.6 465.25 874 460.9 877.35 456.4 883.75 452.8 895.25 446.25 907.7 452.8 914 456.4 917.4 460.9 920.8 465.25 919.5 467.75 918.9 466.2 917.4 464.35 914 459.85 907.7 456.2 895.25 449.65 883.75 456.2 877.35 459.85 874 464.35 872.5 466.2 871.95 467.8"/>
+ <path stroke="none" fill="#8E5A32" d="M871.95 467.8 Q872.5 466.2 874 464.35 877.35 459.85 883.75 456.2 895.25 449.65 907.7 456.2 914 459.85 917.4 464.35 918.9 466.2 919.5 467.75 L919.4 467.9 Q917.9 470.55 912.25 469.75 908.45 469.2 904.25 467.3 904.95 469.15 905.15 470.9 L905.2 471.1 Q905.35 472.75 905.05 473.8 904.8 474.8 904.1 475.25 902.45 476.15 899.7 474.05 897.55 472.3 895.7 469.5 893.85 472.3 891.7 474.05 888.95 476.15 887.35 475.25 886.6 474.8 886.3 473.8 886 472.75 886.2 471.15 L886.2 470.9 Q886.5 469.15 887.2 467.3 882.95 469.2 879.15 469.75 873.55 470.55 872 467.9 L871.95 467.8"/>
+ <path stroke="none" fill="#B67340" d="M858.25 543.9 L858.2 542 858.2 541 Q858.6 528.4 869.15 519.35 880.15 510 895.7 510 911.2 510 922.2 519.35 932.75 528.4 933.2 541 L933.2 542 933.15 543.9 Q932.3 532 922.2 523.35 911.2 514 895.7 514 880.15 514 869.15 523.35 859.05 532 858.25 543.9"/>
+ <path stroke="none" fill="#8E5A32" d="M858.25 543.9 Q859.05 532 869.15 523.35 880.15 514 895.7 514 911.2 514 922.2 523.35 932.3 532 933.15 543.9 932.4 555.95 922.2 564.6 911.2 574 895.7 574 880.15 574 869.15 564.6 859 555.9 858.25 543.9 M880.1 534.4 Q881.6 535.8 883.65 535.8 885.8 535.8 887.3 534.3 888.8 532.8 888.8 530.65 888.8 529.55 888.45 528.65 L887.4 527.1 887.25 526.95 Q884.7 524.4 881.85 523.55 L881.65 523.5 Q879.45 522.85 878.1 523.55 877.6 523.75 877.2 524.15 L876.6 525 Q875.95 526.25 876.4 528.15 L876.5 528.65 876.95 529.95 Q877.9 532.2 879.95 534.25 L880.1 534.4 M914.2 524.15 L913.35 523.55 Q911.95 522.85 909.75 523.5 L909.5 523.6 Q906.65 524.45 904.15 526.95 L904 527.1 Q903.35 527.8 903 528.65 902.6 529.55 902.6 530.65 902.6 532.8 904.1 534.3 905.6 535.8 907.75 535.8 909.8 535.8 911.3 534.4 L911.45 534.25 Q913.5 532.2 914.45 529.95 L914.9 528.65 915.05 528.15 Q915.45 526.25 914.8 525 L914.2 524.15"/>
+ <path stroke="none" fill="#704627" d="M914.2 524.15 L914.8 525 Q915.45 526.25 915.05 528.15 L914.9 528.65 914.45 529.95 Q913.5 532.2 911.45 534.25 L911.3 534.4 Q909.8 535.8 907.75 535.8 905.6 535.8 904.1 534.3 902.6 532.8 902.6 530.65 902.6 529.55 903 528.65 903.35 527.8 904 527.1 L904.15 526.95 Q906.65 524.45 909.5 523.6 L909.75 523.5 Q911.95 522.85 913.35 523.55 L914.2 524.15 M880.1 534.4 L879.95 534.25 Q877.9 532.2 876.95 529.95 L876.5 528.65 876.4 528.15 Q875.95 526.25 876.6 525 L877.2 524.15 Q877.6 523.75 878.1 523.55 879.45 522.85 881.65 523.5 L881.85 523.55 Q884.7 524.4 887.25 526.95 L887.4 527.1 888.45 528.65 Q888.8 529.55 888.8 530.65 888.8 532.8 887.3 534.3 885.8 535.8 883.65 535.8 881.6 535.8 880.1 534.4"/>
+ <path stroke="none" fill="#FFFFFF" d="M851.9 494.75 Q851.9 498.35 854.45 500.8 856.95 503.35 860.6 503.35 864.15 503.35 866.7 500.8 869.25 498.35 869.25 494.75 869.25 491.15 866.7 488.6 864.15 486.1 860.6 486.1 856.95 486.1 854.45 488.6 851.9 491.15 851.9 494.75 M939.45 494.75 Q939.45 491.15 936.95 488.6 934.45 486.1 930.8 486.1 927.25 486.1 924.65 488.6 922.15 491.15 922.15 494.75 922.15 498.35 924.65 500.8 927.25 503.35 930.8 503.35 934.45 503.35 936.95 500.8 939.45 498.35 939.45 494.75 M944.2 494.55 Q944.2 499.7 940.55 503.3 936.9 507 931.7 507 926.6 507 922.9 503.3 919.25 499.7 919.25 494.55 919.25 489.35 922.9 485.7 926.6 482.05 931.7 482.05 936.9 482.05 940.55 485.7 944.2 489.35 944.2 494.55 M847.2 494.55 Q847.2 489.35 850.85 485.7 854.5 482.05 859.7 482.05 864.8 482.05 868.5 485.7 872.15 489.35 872.15 494.55 872.15 499.7 868.5 503.3 864.8 507 859.7 507 854.5 507 850.85 503.3 847.2 499.7 847.2 494.55"/>
+ <path stroke="none" fill="#5B5B5B" d="M939.45 494.75 Q939.45 498.35 936.95 500.8 934.45 503.35 930.8 503.35 927.25 503.35 924.65 500.8 922.15 498.35 922.15 494.75 922.15 491.15 924.65 488.6 927.25 486.1 930.8 486.1 934.45 486.1 936.95 488.6 939.45 491.15 939.45 494.75 M851.9 494.75 Q851.9 491.15 854.45 488.6 856.95 486.1 860.6 486.1 864.15 486.1 866.7 488.6 869.25 491.15 869.25 494.75 869.25 498.35 866.7 500.8 864.15 503.35 860.6 503.35 856.95 503.35 854.45 500.8 851.9 498.35 851.9 494.75"/>
+ <path stroke="none" fill="#6D4526" d="M1149.5 444 Q1177.65 444 1197.6 463.9 1217.5 483.85 1217.5 512 L1217.5 514 1217.5 514.1 Q1217.05 529.95 1210.2 543.1 1205.45 552.25 1197.6 560.05 1177.65 580 1149.5 580 1121.35 580 1101.45 560.05 1082.25 540.95 1081.55 514.2 L1081.5 512 Q1081.5 483.85 1101.45 463.9 1121.35 444 1149.5 444"/>
+ <path stroke="none" fill="#BD7841" d="M1159.5 452.7 L1149.5 452 1139.5 452.7 Q1119.35 455.65 1104.25 470.7 1086.2 488.8 1085.55 514 L1085.5 512 Q1085.5 485.5 1104.25 466.7 1123 448 1149.5 448 1176 448 1194.75 466.7 1213.5 485.5 1213.5 512 L1213.5 514 Q1212.8 488.8 1194.75 470.7 1179.65 455.65 1159.5 452.7"/>
+ <path stroke="none" fill="#AA6C3B" d="M1159.5 452.7 Q1158.8 502.85 1179.55 541.25 L1119.45 541.25 Q1140.2 502.85 1139.5 452.7 L1149.5 452 1159.5 452.7"/>
+ <path stroke="none" fill="#A16639" d="M1159.5 452.7 Q1179.65 455.65 1194.75 470.7 1212.8 488.8 1213.5 514 1213.1 528.9 1206.65 541.25 1202.15 549.85 1194.75 557.2 1176 576 1149.5 576 1123 576 1104.25 557.2 1086.2 539.2 1085.55 514 1086.2 488.8 1104.25 470.7 1119.35 455.65 1139.5 452.7 1140.2 502.85 1119.45 541.25 L1179.55 541.25 Q1158.8 502.85 1159.5 452.7"/>
+ <path stroke="none" fill="#BD7841" d="M1128.5 467.2 L1128.5 463.45 Q1128.5 460.65 1130.45 458.65 1132.4 456.65 1135.2 456.65 L1163.8 456.65 Q1166.55 456.65 1168.5 458.65 1170.5 460.65 1170.5 463.45 L1170.5 467.2 Q1170.45 465.95 1170 464.85 1169.5 463.65 1168.5 462.65 1166.55 460.65 1163.8 460.65 L1135.2 460.65 Q1132.4 460.65 1130.45 462.65 1129.5 463.65 1129 464.8 1128.55 465.9 1128.5 467.2"/>
+ <path stroke="none" fill="#AA6C3B" d="M1128.5 467.2 Q1128.55 465.9 1129 464.8 1129.5 463.65 1130.45 462.65 1132.4 460.65 1135.2 460.65 L1163.8 460.65 Q1166.55 460.65 1168.5 462.65 1169.5 463.65 1170 464.85 1170.45 465.95 1170.5 467.2 L1170.5 479.1 Q1170.4 481.8 1168.5 483.65 L1164.2 487.2 Q1149.5 497.2 1135.05 487.35 1132.4 485.65 1130.45 483.65 1128.6 481.8 1128.5 479.1 L1128.5 467.2"/>
+ <path stroke="none" fill="#B67340" d="M1112.05 543.9 L1112 542 1112 541 Q1112.4 528.4 1122.95 519.35 1133.95 510 1149.5 510 1165 510 1176 519.35 1186.55 528.4 1187 541 L1187 542 1186.95 543.9 Q1186.1 532 1176 523.35 1165 514 1149.5 514 1133.95 514 1122.95 523.35 1112.85 532 1112.05 543.9"/>
+ <path stroke="none" fill="#8E5A32" d="M1112.05 543.9 Q1112.85 532 1122.95 523.35 1133.95 514 1149.5 514 1165 514 1176 523.35 1186.1 532 1186.95 543.9 1186.2 555.95 1176 564.6 1165 574 1149.5 574 1133.95 574 1122.95 564.6 1112.8 555.9 1112.05 543.9 M1133.9 534.4 Q1135.4 535.8 1137.45 535.8 1139.6 535.8 1141.1 534.3 1142.6 532.8 1142.6 530.65 1142.6 529.55 1142.25 528.65 L1141.2 527.1 1141.05 526.95 Q1138.5 524.4 1135.65 523.55 L1135.45 523.5 Q1133.25 522.85 1131.9 523.55 1131.4 523.75 1131 524.15 L1130.4 525 Q1129.75 526.25 1130.2 528.15 L1130.3 528.65 1130.75 529.95 Q1131.7 532.2 1133.75 534.25 L1133.9 534.4 M1168 524.15 L1167.15 523.55 Q1165.75 522.85 1163.55 523.5 L1163.3 523.6 Q1160.45 524.45 1157.95 526.95 L1157.8 527.1 Q1157.15 527.8 1156.8 528.65 1156.4 529.55 1156.4 530.65 1156.4 532.8 1157.9 534.3 1159.4 535.8 1161.55 535.8 1163.6 535.8 1165.1 534.4 L1165.25 534.25 Q1167.3 532.2 1168.25 529.95 L1168.7 528.65 1168.85 528.15 Q1169.25 526.25 1168.6 525 L1168 524.15"/>
+ <path stroke="none" fill="#704627" d="M1168 524.15 L1168.6 525 Q1169.25 526.25 1168.85 528.15 L1168.7 528.65 1168.25 529.95 Q1167.3 532.2 1165.25 534.25 L1165.1 534.4 Q1163.6 535.8 1161.55 535.8 1159.4 535.8 1157.9 534.3 1156.4 532.8 1156.4 530.65 1156.4 529.55 1156.8 528.65 1157.15 527.8 1157.8 527.1 L1157.95 526.95 Q1160.45 524.45 1163.3 523.6 L1163.55 523.5 Q1165.75 522.85 1167.15 523.55 L1168 524.15 M1133.9 534.4 L1133.75 534.25 Q1131.7 532.2 1130.75 529.95 L1130.3 528.65 1130.2 528.15 Q1129.75 526.25 1130.4 525 L1131 524.15 Q1131.4 523.75 1131.9 523.55 1133.25 522.85 1135.45 523.5 L1135.65 523.55 Q1138.5 524.4 1141.05 526.95 L1141.2 527.1 1142.25 528.65 Q1142.6 529.55 1142.6 530.65 1142.6 532.8 1141.1 534.3 1139.6 535.8 1137.45 535.8 1135.4 535.8 1133.9 534.4"/>
+ <path stroke="none" fill="#FFFFFF" d="M1193.25 494.75 Q1193.25 491.15 1190.75 488.6 1188.25 486.1 1184.6 486.1 1181.05 486.1 1178.45 488.6 1175.95 491.15 1175.95 494.75 1175.95 498.35 1178.45 500.8 1181.05 503.35 1184.6 503.35 1188.25 503.35 1190.75 500.8 1193.25 498.35 1193.25 494.75 M1198 494.55 Q1198 499.7 1194.35 503.3 1190.7 507 1185.5 507 1180.4 507 1176.7 503.3 1173.05 499.7 1173.05 494.55 1173.05 489.35 1176.7 485.7 1180.4 482.05 1185.5 482.05 1190.7 482.05 1194.35 485.7 1198 489.35 1198 494.55 M1105.7 494.75 Q1105.7 498.35 1108.25 500.8 1110.75 503.35 1114.4 503.35 1117.95 503.35 1120.5 500.8 1123.05 498.35 1123.05 494.75 1123.05 491.15 1120.5 488.6 1117.95 486.1 1114.4 486.1 1110.75 486.1 1108.25 488.6 1105.7 491.15 1105.7 494.75 M1101 494.55 Q1101 489.35 1104.65 485.7 1108.3 482.05 1113.5 482.05 1118.6 482.05 1122.3 485.7 1125.95 489.35 1125.95 494.55 1125.95 499.7 1122.3 503.3 1118.6 507 1113.5 507 1108.3 507 1104.65 503.3 1101 499.7 1101 494.55"/>
+ <path stroke="none" fill="#5B5B5B" d="M1193.25 494.75 Q1193.25 498.35 1190.75 500.8 1188.25 503.35 1184.6 503.35 1181.05 503.35 1178.45 500.8 1175.95 498.35 1175.95 494.75 1175.95 491.15 1178.45 488.6 1181.05 486.1 1184.6 486.1 1188.25 486.1 1190.75 488.6 1193.25 491.15 1193.25 494.75 M1105.7 494.75 Q1105.7 491.15 1108.25 488.6 1110.75 486.1 1114.4 486.1 1117.95 486.1 1120.5 488.6 1123.05 491.15 1123.05 494.75 1123.05 498.35 1120.5 500.8 1117.95 503.35 1114.4 503.35 1110.75 503.35 1108.25 500.8 1105.7 498.35 1105.7 494.75"/>
+ <path stroke="none" fill="#6D4526" d="M1081.55 706.35 L1081.5 704.15 Q1081.5 676 1101.45 656.05 1121.35 636.15 1149.5 636.15 1177.65 636.15 1197.6 656.05 1217.5 676 1217.5 704.15 L1217.5 706.15 1217.5 706.25 Q1217.05 722.1 1210.2 735.25 1205.45 744.4 1197.6 752.2 1177.65 772.15 1149.5 772.15 1121.35 772.15 1101.45 752.2 1082.25 733.1 1081.55 706.35"/>
+ <path stroke="none" fill="#704E35" d="M1186.95 736.05 Q1186.1 724.15 1176 715.5 1173 712.95 1169.65 711.1 1160.75 706.15 1149.5 706.15 1138.25 706.15 1129.4 711.05 1126 712.9 1122.95 715.5 1112.85 724.15 1112.05 736.05 L1112 734.15 1112 733.15 Q1112.4 720.55 1122.95 711.5 1126.7 708.3 1131 706.2 1139.25 702.15 1149.5 702.15 1159.75 702.15 1168 706.25 1172.25 708.3 1176 711.5 1186.55 720.55 1187 733.15 L1187 734.15 1186.95 736.05"/>
+ <path stroke="none" fill="#5F422D" d="M1186.95 736.05 Q1186.2 748.1 1176 756.75 1165 766.15 1149.5 766.15 1133.95 766.15 1122.95 756.75 1112.8 748.05 1112.05 736.05 1112.85 724.15 1122.95 715.5 1126 712.9 1129.4 711.05 1138.25 706.15 1149.5 706.15 1160.75 706.15 1169.65 711.1 1173 712.95 1176 715.5 1186.1 724.15 1186.95 736.05 M1168 706.25 Q1159.75 702.15 1149.5 702.15 1139.25 702.15 1131 706.2 1139.95 678.1 1139.5 644.85 L1149.5 644.15 1159.5 644.85 Q1159.05 678.1 1168 706.25 M1133.9 726.55 Q1135.4 727.95 1137.45 727.95 1139.6 727.95 1141.1 726.45 1142.6 724.95 1142.6 722.8 1142.6 721.7 1142.25 720.8 L1141.2 719.25 1141.05 719.1 Q1138.5 716.55 1135.65 715.7 L1135.45 715.65 Q1133.25 715 1131.9 715.7 1131.4 715.9 1131 716.3 L1130.4 717.15 Q1129.75 718.4 1130.2 720.3 L1130.3 720.8 1130.75 722.1 Q1131.7 724.35 1133.75 726.4 L1133.9 726.55 M1168 716.3 L1167.15 715.7 Q1165.75 715 1163.55 715.65 L1163.3 715.75 Q1160.45 716.6 1157.95 719.1 L1157.8 719.25 Q1157.15 719.95 1156.8 720.8 1156.4 721.7 1156.4 722.8 1156.4 724.95 1157.9 726.45 1159.4 727.95 1161.55 727.95 1163.6 727.95 1165.1 726.55 L1165.25 726.4 Q1167.3 724.35 1168.25 722.1 L1168.7 720.8 1168.85 720.3 Q1169.25 718.4 1168.6 717.15 L1168 716.3"/>
+ <path stroke="none" fill="#A16639" d="M1186.95 736.05 L1187 734.15 1187 733.15 Q1186.55 720.55 1176 711.5 1172.25 708.3 1168 706.25 1159.05 678.1 1159.5 644.85 1179.65 647.8 1194.75 662.85 1212.8 680.95 1213.5 706.15 1213.1 721.05 1206.65 733.4 1202.15 742 1194.75 749.35 1176 768.15 1149.5 768.15 1123 768.15 1104.25 749.35 1086.2 731.35 1085.55 706.15 1086.2 680.95 1104.25 662.85 1119.35 647.8 1139.5 644.85 1139.95 678.1 1131 706.2 1126.7 708.3 1122.95 711.5 1112.4 720.55 1112 733.15 L1112 734.15 1112.05 736.05 Q1112.8 748.05 1122.95 756.75 1133.95 766.15 1149.5 766.15 1165 766.15 1176 756.75 1186.2 748.1 1186.95 736.05"/>
+ <path stroke="none" fill="#4F3725" d="M1133.9 726.55 L1133.75 726.4 Q1131.7 724.35 1130.75 722.1 L1130.3 720.8 1130.2 720.3 Q1129.75 718.4 1130.4 717.15 L1131 716.3 Q1131.4 715.9 1131.9 715.7 1133.25 715 1135.45 715.65 L1135.65 715.7 Q1138.5 716.55 1141.05 719.1 L1141.2 719.25 1142.25 720.8 Q1142.6 721.7 1142.6 722.8 1142.6 724.95 1141.1 726.45 1139.6 727.95 1137.45 727.95 1135.4 727.95 1133.9 726.55 M1168 716.3 L1168.6 717.15 Q1169.25 718.4 1168.85 720.3 L1168.7 720.8 1168.25 722.1 Q1167.3 724.35 1165.25 726.4 L1165.1 726.55 Q1163.6 727.95 1161.55 727.95 1159.4 727.95 1157.9 726.45 1156.4 724.95 1156.4 722.8 1156.4 721.7 1156.8 720.8 1157.15 719.95 1157.8 719.25 L1157.95 719.1 Q1160.45 716.6 1163.3 715.75 L1163.55 715.65 Q1165.75 715 1167.15 715.7 L1168 716.3"/>
+ <path stroke="none" fill="#BD7841" d="M1085.55 706.15 L1085.5 704.15 Q1085.5 677.65 1104.25 658.85 1123 640.15 1149.5 640.15 1176 640.15 1194.75 658.85 1213.5 677.65 1213.5 704.15 L1213.5 706.15 Q1212.8 680.95 1194.75 662.85 1179.65 647.8 1159.5 644.85 L1149.5 644.15 1139.5 644.85 Q1119.35 647.8 1104.25 662.85 1086.2 680.95 1085.55 706.15"/>
+ <path stroke="none" fill="#5B5B5B" d="M1107.45 693.7 Q1107.45 691.05 1109.25 689.25 1111.1 687.4 1113.75 687.4 1116.3 687.4 1118.2 689.25 1120.05 691.05 1120.05 693.7 1120.05 696.25 1118.2 698.05 1116.3 699.85 1113.75 699.85 1111.1 699.85 1109.25 698.05 1107.45 696.25 1107.45 693.7 M1189.55 693.7 Q1189.55 696.25 1187.75 698.05 1185.9 699.85 1183.25 699.85 1180.7 699.85 1178.8 698.05 1176.95 696.25 1176.95 693.7 1176.95 691.05 1178.8 689.25 1180.7 687.4 1183.25 687.4 1185.9 687.4 1187.75 689.25 1189.55 691.05 1189.55 693.7"/>
+ <path stroke="none" fill="#FFFFFF" d="M1189.55 693.7 Q1189.55 691.05 1187.75 689.25 1185.9 687.4 1183.25 687.4 1180.7 687.4 1178.8 689.25 1176.95 691.05 1176.95 693.7 1176.95 696.25 1178.8 698.05 1180.7 699.85 1183.25 699.85 1185.9 699.85 1187.75 698.05 1189.55 696.25 1189.55 693.7 M1101.95 692.5 Q1101.95 688.3 1104.9 685.4 1107.85 682.45 1112 682.45 1116.1 682.45 1119.1 685.4 1122 688.3 1122 692.5 1122 696.65 1119.1 699.5 1116.1 702.5 1112 702.5 1107.85 702.5 1104.9 699.5 1101.95 696.65 1101.95 692.5 M1107.45 693.7 Q1107.45 696.25 1109.25 698.05 1111.1 699.85 1113.75 699.85 1116.3 699.85 1118.2 698.05 1120.05 696.25 1120.05 693.7 1120.05 691.05 1118.2 689.25 1116.3 687.4 1113.75 687.4 1111.1 687.4 1109.25 689.25 1107.45 691.05 1107.45 693.7 M1195.05 692.5 Q1195.05 696.65 1192.1 699.5 1189.15 702.5 1185 702.5 1180.9 702.5 1177.9 699.5 1175 696.65 1175 692.5 1175 688.3 1177.9 685.4 1180.9 682.45 1185 682.45 1189.15 682.45 1192.1 685.4 1195.05 688.3 1195.05 692.5"/>
+ <path stroke="none" fill="#EBCEB7" d="M1147.4 664.65 Q1147.65 665.85 1147.45 667.2 1147.15 669.25 1146.4 670.95 1142.15 679.75 1122.85 676.1 1110.9 673.4 1109.7 666.45 1108.65 660.35 1111 657.55 1111.6 662.15 1116.55 663.35 1122.65 664.9 1127.9 661.85 1134.15 658.25 1142.55 661.45 1145.5 662.8 1147.4 664.65 M1153.15 664.65 Q1155.05 662.8 1158 661.45 1166.4 658.25 1172.65 661.85 1177.85 664.9 1184 663.35 1188.95 662.15 1189.5 657.55 1191.9 660.35 1190.85 666.45 1189.65 673.4 1177.7 676.1 1158.4 679.75 1154.15 670.95 1153.4 669.25 1153.1 667.2 1152.9 665.85 1153.15 664.65"/>
+ <path stroke="none" fill="#FFDFC6" d="M1153.15 664.65 Q1153.75 661.35 1157.15 659.2 1163.6 656 1170.65 659.65 1176.55 662.7 1181.5 661.1 1185.6 659.9 1184.3 655.3 1187.8 655.6 1189.5 657.55 1188.95 662.15 1184 663.35 1177.85 664.9 1172.65 661.85 1166.4 658.25 1158 661.45 1155.05 662.8 1153.15 664.65 M1111 657.55 Q1112.75 655.6 1116.25 655.3 1114.95 659.9 1119.05 661.1 1124 662.7 1129.9 659.65 1136.95 656 1143.4 659.2 1146.8 661.35 1147.4 664.65 1145.5 662.8 1142.55 661.45 1134.15 658.25 1127.9 661.85 1122.65 664.9 1116.55 663.35 1111.6 662.15 1111 657.55"/>
+ <path stroke="none" fill="#1B8045" d="M895.9 636.45 L906.4 637.2 Q916.35 638.65 925.2 642.9 935.3 647.8 943.95 656.4 954.4 666.85 959.4 679.55 L960.75 683.45 Q963.9 693.25 963.9 704.45 L963.9 706.45 963.9 706.55 Q963.25 730.05 948.3 747.75 L943.95 752.45 943.95 752.5 Q939.8 756.65 935.3 759.95 918.1 772.45 895.9 772.45 872.1 772.45 854.2 758.15 L854.15 758.15 847.85 752.5 843.5 747.75 843.5 747.7 Q828.6 730.1 827.95 706.65 L827.9 704.45 Q827.9 693.25 831.05 683.4 831.7 681.4 832.45 679.55 837.4 666.8 847.85 656.4 856.45 647.8 866.65 642.9 875.45 638.65 885.45 637.2 L895.9 636.45"/>
+ <path stroke="none" fill="#31DE7A" d="M836.15 681 Q840.85 669 850.65 659.2 858.75 651.1 868.35 646.5 876.65 642.5 886 641.15 L895.9 640.45 905.8 641.15 Q915.15 642.5 923.45 646.5 933 651.1 941.1 659.2 950.95 669.05 955.65 681 L954.15 681.45 Q949.45 671.55 941.1 663.2 932.8 654.9 923 650.3 910.65 644.45 895.9 644.45 881.15 644.45 868.8 650.25 858.95 654.9 850.65 663.2 842.3 671.55 837.7 681.4 L836.15 681"/>
+ <path stroke="none" fill="#2ECC71" d="M837.7 681.4 Q842.3 671.55 850.65 663.2 858.95 654.9 868.8 650.25 881.15 644.45 895.9 644.45 910.65 644.45 923 650.3 932.8 654.9 941.1 663.2 949.45 671.55 954.15 681.45 929.7 688 895.95 688 862.2 688 837.7 681.4"/>
+ <path stroke="none" fill="#E5E5E5" d="M956.95 684.65 Q959.9 693.9 959.9 704.45 L959.9 706.45 Q959.3 728.55 945.25 745.15 L941.1 749.65 Q937.2 753.6 932.95 756.7 916.8 768.45 895.9 768.45 873.5 768.45 856.65 755 L850.65 749.65 846.55 745.15 Q832.5 728.55 831.95 706.45 L831.9 704.45 Q831.9 693.9 834.85 684.6 L836.15 685 837.7 685.4 Q862.2 692 895.95 692 929.7 692 954.15 685.45 L955.65 685 956.95 684.65 M923 746.25 Q922.4 743.95 920.3 742.8 918.3 741.65 916.05 742.25 913.75 742.85 912.5 744.9 911.4 746.9 912 749.2 912.6 751.45 914.6 752.65 916.7 753.85 919 753.25 921.25 752.65 922.4 750.55 923.6 748.5 923 746.25 M921.85 731.45 Q921.45 730.05 920.2 729.3 918.85 728.55 917.45 728.95 916.05 729.3 915.35 730.6 914.6 731.9 915 733.3 915.35 734.7 916.65 735.45 917.9 736.15 919.3 735.8 920.7 735.4 921.5 734.15 922.2 732.85 921.85 731.45 M935.65 740.15 Q935.15 738.25 933.45 737.25 931.75 736.25 929.9 736.75 928 737.25 927 739 926 740.7 926.5 742.6 927.05 744.45 928.75 745.45 930.45 746.4 932.35 745.9 934.2 745.4 935.2 743.7 936.2 742 935.65 740.15"/>
+ <path stroke="none" fill="#FFFFFF" d="M955.65 681 L956.95 684.65 955.65 685 954.15 685.45 Q929.7 692 895.95 692 862.2 692 837.7 685.4 L836.15 685 834.85 684.6 836.15 681 837.7 681.4 Q862.2 688 895.95 688 929.7 688 954.15 681.45 L955.65 681"/>
+ <path stroke="none" fill="#D7D7D7" d="M935.65 740.15 Q936.2 742 935.2 743.7 934.2 745.4 932.35 745.9 930.45 746.4 928.75 745.45 927.05 744.45 926.5 742.6 926 740.7 927 739 928 737.25 929.9 736.75 931.75 736.25 933.45 737.25 935.15 738.25 935.65 740.15 M921.85 731.45 Q922.2 732.85 921.5 734.15 920.7 735.4 919.3 735.8 917.9 736.15 916.65 735.45 915.35 734.7 915 733.3 914.6 731.9 915.35 730.6 916.05 729.3 917.45 728.95 918.85 728.55 920.2 729.3 921.45 730.05 921.85 731.45 M923 746.25 Q923.6 748.5 922.4 750.55 921.25 752.65 919 753.25 916.7 753.85 914.6 752.65 912.6 751.45 912 749.2 911.4 746.9 912.5 744.9 913.75 742.85 916.05 742.25 918.3 741.65 920.3 742.8 922.4 743.95 923 746.25"/>
+ <path stroke="none" fill="#23A35A" d="M907.1 676.9 L907.45 677.4 Q907.85 678.15 907.6 679.3 L907.5 679.6 907.25 680.4 Q906.65 681.75 905.4 683 L905.35 683.1 Q904.45 683.95 903.2 683.95 901.9 683.95 901 683 900.1 682.1 900.1 680.85 900.1 680.15 900.35 679.6 L900.95 678.7 901.05 678.6 Q902.55 677.1 904.25 676.55 L904.4 676.55 Q905.75 676.15 906.55 676.55 L907.1 676.9 M886.55 683.1 L886.45 683 Q885.2 681.75 884.65 680.4 884.45 680 884.4 679.6 L884.3 679.3 Q884 678.15 884.4 677.4 L884.8 676.9 Q885 676.65 885.35 676.55 886.15 676.15 887.5 676.55 L887.6 676.55 Q889.3 677.05 890.85 678.6 L890.95 678.7 891.55 679.6 891.8 680.85 Q891.8 682.1 890.85 683 889.95 683.95 888.7 683.95 887.45 683.95 886.55 683.1"/>
+ <path stroke="none" fill="#31DE7A" d="M933.4 663.45 Q933.15 661 932.25 658.8 L932.25 658.75 Q931.1 656.05 928.9 653.85 L928.8 653.7 Q924.1 649.15 917.55 649.15 L916.4 649.25 Q912.35 649.45 909.15 651.5 L908.65 651.85 906.35 653.7 906.35 653.75 Q902.2 657.85 901.7 663.4 L901.65 661.85 Q901.65 655.25 906.35 650.6 L906.35 650.55 908.65 648.7 909.15 648.35 Q912.35 646.3 916.4 646.1 L917.55 646 Q924.1 646 928.8 650.55 L928.9 650.7 Q931.1 652.9 932.25 655.6 L932.25 655.65 Q933.4 658.45 933.45 661.8 L933.45 661.85 933.4 663.45 M858.45 663.5 L858.4 661.85 858.4 661.8 Q858.4 658.35 859.75 655.4 L859.65 655.6 Q860.8 652.8 863.15 650.55 867.8 646 874.3 646 L875.4 646.1 Q879.3 646.25 882.65 648.3 L883.05 648.6 885.05 650.05 885.65 650.6 885.65 650.65 Q890.25 655.25 890.25 661.85 L890.15 663.4 Q889.65 657.8 885.65 653.8 L885.65 653.75 885.05 653.2 883.05 651.75 882.65 651.5 Q879.3 649.4 875.4 649.25 L874.3 649.15 Q867.8 649.15 863.15 653.7 860.8 655.95 859.65 658.75 L859.75 658.55 Q858.7 660.85 858.45 663.5"/>
+ <path stroke="none" fill="#2ECC71" d="M858.45 663.5 Q858.7 660.85 859.75 658.55 L859.65 658.75 Q860.8 655.95 863.15 653.7 867.8 649.15 874.3 649.15 L875.4 649.25 Q879.3 649.4 882.65 651.5 L883.05 651.75 885.05 653.2 885.65 653.75 885.65 653.8 Q889.65 657.8 890.15 663.4 889.65 669.05 885.65 673.05 L885.65 673 885.35 673.3 885.15 673.5 883.8 674.6 883.75 674.65 Q879.5 677.75 874.3 677.75 867.75 677.8 863.05 673 L863.2 673.1 Q859 669.15 858.45 663.5 M901.7 663.4 Q902.2 657.85 906.35 653.75 L906.35 653.7 908.65 651.85 909.15 651.5 Q912.35 649.45 916.4 649.25 L917.55 649.15 Q924.1 649.15 928.8 653.7 L928.9 653.85 Q931.1 656.05 932.25 658.75 L932.25 658.8 Q933.15 661 933.4 663.45 932.85 669 928.9 673 L928.85 673.05 Q924.15 677.75 917.55 677.75 912.1 677.7 908 674.55 L907.75 674.35 906.45 673.1 906.35 673 Q902.2 669 901.7 663.4 M927.15 661.85 L927.15 661.8 Q927.15 659.8 926.45 658.1 925.75 656.45 924.4 655.05 921.55 652.3 917.55 652.3 L917 652.35 Q914.55 652.4 912.55 653.7 L912.45 653.75 Q911.55 654.3 910.8 655.05 907.95 657.85 907.95 661.85 907.95 665.85 910.8 668.55 L911.85 669.55 Q914.3 671.45 917.55 671.45 921.55 671.45 924.4 668.55 927.15 665.85 927.15 661.85 M864.7 661.85 Q864.7 665.85 867.55 668.55 870.35 671.45 874.3 671.45 877.45 671.45 880 669.55 L880.9 668.85 881.15 668.55 Q883.95 665.85 883.95 661.85 883.95 657.85 881.15 655.05 L880.9 654.85 Q880.2 654.2 879.4 653.7 L879.35 653.7 Q877.3 652.4 874.85 652.35 L874.3 652.3 Q870.35 652.3 867.55 655.05 866.15 656.4 865.5 658 864.7 659.75 864.7 661.8 L864.7 661.85"/>
+ <path stroke="none" fill="#D23007" d="M864.7 661.85 L864.7 661.8 Q864.7 659.75 865.5 658 866.15 656.4 867.55 655.05 870.35 652.3 874.3 652.3 L874.85 652.35 Q877.3 652.4 879.35 653.7 L879.4 653.7 Q880.2 654.2 880.9 654.85 L881.15 655.05 Q883.95 657.85 883.95 661.85 883.95 665.85 881.15 668.55 L880.9 668.85 880 669.55 Q877.45 671.45 874.3 671.45 870.35 671.45 867.55 668.55 864.7 665.85 864.7 661.85 M927.15 661.85 Q927.15 665.85 924.4 668.55 921.55 671.45 917.55 671.45 914.3 671.45 911.85 669.55 L910.8 668.55 Q907.95 665.85 907.95 661.85 907.95 657.85 910.8 655.05 911.55 654.3 912.45 653.75 L912.55 653.7 Q914.55 652.4 917 652.35 L917.55 652.3 Q921.55 652.3 924.4 655.05 925.75 656.45 926.45 658.1 927.15 659.8 927.15 661.8 L927.15 661.85 M922.55 662.05 Q922.55 659.45 920.75 657.75 919 656.05 916.5 656.05 914.25 656.05 912.5 657.5 L912.2 657.75 Q910.45 659.45 910.45 662.05 910.45 664.5 912.15 666.2 L912.2 666.2 Q914.05 668.05 916.5 668.05 919 668.05 920.75 666.2 922.55 664.55 922.55 662.05 M869.4 662.05 Q869.4 664.55 871.15 666.2 872.85 668.05 875.4 668.05 877.85 668.05 879.65 666.2 L879.7 666.2 880.9 664.5 Q881.4 663.4 881.4 662.05 881.4 660.65 880.9 659.5 880.45 658.55 879.65 657.75 L879.35 657.5 Q877.65 656.05 875.4 656.05 872.85 656.05 871.15 657.75 869.4 659.45 869.4 662.05"/>
+ <path stroke="none" fill="#3F3F3F" d="M869.4 662.05 Q869.4 659.45 871.15 657.75 872.85 656.05 875.4 656.05 877.65 656.05 879.35 657.5 L879.65 657.75 Q880.45 658.55 880.9 659.5 881.4 660.65 881.4 662.05 881.4 663.4 880.9 664.5 L879.7 666.2 879.65 666.2 Q877.85 668.05 875.4 668.05 872.85 668.05 871.15 666.2 869.4 664.55 869.4 662.05 M922.55 662.05 Q922.55 664.55 920.75 666.2 919 668.05 916.5 668.05 914.05 668.05 912.2 666.2 L912.15 666.2 Q910.45 664.5 910.45 662.05 910.45 659.45 912.2 657.75 L912.5 657.5 Q914.25 656.05 916.5 656.05 919 656.05 920.75 657.75 922.55 659.45 922.55 662.05"/>
+ <path stroke="none" fill="#2ECC71" d="M954.15 690.5 Q952.55 694.5 948.55 696.8 943.9 699.5 938.7 698.1 933.45 696.7 930.75 692.05 928.5 688.1 929.15 683.8 930.75 679.75 934.65 677.45 939.35 674.75 944.6 676.15 949.85 677.55 952.45 682.25 954.75 686.15 954.15 690.5 M862.7 683.8 Q863.25 688.1 861 692.05 858.35 696.7 853.1 698.1 847.95 699.5 843.2 696.8 839.25 694.55 837.7 690.5 837 686.2 839.3 682.25 842 677.55 847.2 676.15 852.45 674.75 857.15 677.45 861 679.75 862.7 683.8"/>
+ <path stroke="none" fill="#31DE7A" d="M862.7 683.8 Q861 679.75 857.15 677.45 852.45 674.75 847.2 676.15 842 677.55 839.3 682.25 837 686.2 837.7 690.5 L837.15 688.9 Q835.75 683.65 838.45 679 841.2 674.3 846.35 672.9 851.6 671.5 856.25 674.2 860.95 676.9 862.35 682.15 L862.7 683.8 M929.15 683.8 L929.45 682.15 Q930.85 676.9 935.5 674.2 940.2 671.5 945.45 672.9 950.65 674.3 953.35 679 956.05 683.65 954.65 688.9 L954.15 690.5 Q954.75 686.15 952.45 682.25 949.85 677.55 944.6 676.15 939.35 674.75 934.65 677.45 930.75 679.75 929.15 683.8"/>
+ <path stroke="none" fill="#2D4D7B" d="M651.4 634.85 L652.6 635.15 652.7 635.15 653.6 635.35 653.8 635.35 Q661.05 637.1 667.75 640.45 677.65 645.35 686.1 653.8 703.7 671.4 706.1 695.3 L706.1 695.35 706.45 700.85 706.45 701 706.45 702.95 706.45 704.25 706.45 704.65 706.45 704.85 706.45 705.3 706.35 707.1 706.35 707.3 706.3 707.7 706.3 708 706.2 709.3 706.2 709.35 Q705.05 722.95 699.05 734.6 L695.95 740.05 695.9 740.15 695.1 741.35 695.05 741.4 Q691.2 746.95 686.1 752.1 L684 754.1 684 754.15 Q679.25 758.5 674.15 761.85 L674.15 761.9 Q657.7 772.45 636.95 772.45 616.9 772.45 600.95 762.55 595.2 759 589.95 754.2 L589.9 754.15 587.8 752.1 Q583.55 747.85 580.25 743.3 L580.35 743.4 578.9 741.35 575.6 735.9 575.6 735.95 Q568.95 723.8 567.75 709.45 L567.6 707.45 567.5 705.45 567.5 705.35 567.45 704.25 567.45 702.95 567.5 700.9 Q568.2 673.4 587.8 653.8 602.7 638.9 622.15 634.95 L622.2 634.95 623.1 634.75 624.8 634.45 624.7 634.45 636.95 633.45 Q644.4 633.45 651.3 634.85 L651.4 634.85"/>
+ <path stroke="none" fill="#528CDB" d="M702.45 701 L702.45 702.95 702.45 704.25 702.45 704.65 702.45 705.05 702.35 706.85 702.3 707.7 702.2 709 Q701.15 721.8 695.5 732.75 L692.55 737.9 691.75 739.1 Q688.1 744.4 683.25 749.25 L681.25 751.2 Q676.8 755.35 671.95 758.5 656.5 768.45 636.95 768.45 618.05 768.45 603.05 759.15 597.6 755.8 592.65 751.25 L590.6 749.25 Q586.6 745.25 583.5 740.95 L582.2 739.1 579.1 734 Q572.85 722.6 571.7 709.1 L571.7 709 571.6 707.25 571.5 705.25 571.5 705.15 571.45 704.25 571.45 702.95 571.5 701 571.7 701.15 Q573.55 677.7 590.6 660.6 604.65 646.6 622.95 642.85 L625.35 642.4 636.95 641.45 Q644 641.45 650.5 642.75 L652.85 643.25 Q659.7 644.9 665.95 648 675.3 652.65 683.25 660.6 699.85 677.2 702.1 699.7 L702.25 701.15 702.45 701 M624.35 669.7 Q624.35 667.75 622.95 666.35 621.55 664.95 619.6 664.95 617.65 664.95 616.25 666.35 614.85 667.75 614.85 669.7 614.85 671.65 616.25 673.05 617.65 674.45 619.6 674.45 621.55 674.45 622.95 673.05 624.35 671.65 624.35 669.7 M610.5 672.35 Q610.5 670 608.8 668.3 607.15 666.65 604.8 666.65 602.45 666.65 600.75 668.3 599.1 670 599.1 672.35 599.1 674.7 600.75 676.35 602.45 678.05 604.8 678.05 607.15 678.05 608.8 676.35 610.5 674.7 610.5 672.35 M613.2 657.75 Q613.2 656.3 612.15 655.25 611.1 654.2 609.65 654.2 608.2 654.2 607.15 655.25 606.1 656.3 606.1 657.75 606.1 659.2 607.15 660.25 608.2 661.3 609.65 661.3 611.1 661.3 612.15 660.25 613.2 659.2 613.2 657.75 M658.15 753.2 Q657.55 750.9 655.45 749.75 653.45 748.6 651.2 749.2 648.9 749.8 647.65 751.85 646.55 753.85 647.15 756.15 647.75 758.4 649.75 759.6 651.85 760.8 654.15 760.2 656.4 759.6 657.55 757.5 658.75 755.45 658.15 753.2 M670.8 747.1 Q670.3 745.2 668.6 744.2 666.9 743.2 665.05 743.7 663.15 744.2 662.15 745.95 661.15 747.65 661.65 749.55 662.2 751.4 663.9 752.4 665.6 753.35 667.5 752.85 669.35 752.35 670.35 750.65 671.35 748.95 670.8 747.1 M657 738.4 Q656.6 737 655.35 736.25 654 735.5 652.6 735.9 651.2 736.25 650.5 737.55 649.75 738.85 650.15 740.25 650.5 741.65 651.8 742.4 653.05 743.1 654.45 742.75 655.85 742.35 656.65 741.1 657.35 739.8 657 738.4"/>
+ <path stroke="none" fill="#5A9BF3" d="M571.5 701 Q572.15 675.1 590.6 656.6 604.65 642.6 622.95 638.85 L624 638.65 625.35 638.4 636.95 637.45 Q644 637.45 650.5 638.75 L651.8 639.05 652.85 639.25 Q659.7 640.9 665.95 644 675.3 648.65 683.25 656.6 699.85 673.2 702.1 695.7 L702.45 701 702.25 701.15 702.1 699.7 Q699.85 677.2 683.25 660.6 675.3 652.65 665.95 648 659.7 644.9 652.85 643.25 L650.5 642.75 Q644 641.45 636.95 641.45 L625.35 642.4 622.95 642.85 Q604.65 646.6 590.6 660.6 573.55 677.7 571.7 701.15 L571.5 701"/>
+ <path stroke="none" fill="#4A7FC6" d="M657 738.4 Q657.35 739.8 656.65 741.1 655.85 742.35 654.45 742.75 653.05 743.1 651.8 742.4 650.5 741.65 650.15 740.25 649.75 738.85 650.5 737.55 651.2 736.25 652.6 735.9 654 735.5 655.35 736.25 656.6 737 657 738.4 M670.8 747.1 Q671.35 748.95 670.35 750.65 669.35 752.35 667.5 752.85 665.6 753.35 663.9 752.4 662.2 751.4 661.65 749.55 661.15 747.65 662.15 745.95 663.15 744.2 665.05 743.7 666.9 743.2 668.6 744.2 670.3 745.2 670.8 747.1 M658.15 753.2 Q658.75 755.45 657.55 757.5 656.4 759.6 654.15 760.2 651.85 760.8 649.75 759.6 647.75 758.4 647.15 756.15 646.55 753.85 647.65 751.85 648.9 749.8 651.2 749.2 653.45 748.6 655.45 749.75 657.55 750.9 658.15 753.2 M613.2 657.75 Q613.2 659.2 612.15 660.25 611.1 661.3 609.65 661.3 608.2 661.3 607.15 660.25 606.1 659.2 606.1 657.75 606.1 656.3 607.15 655.25 608.2 654.2 609.65 654.2 611.1 654.2 612.15 655.25 613.2 656.3 613.2 657.75 M610.5 672.35 Q610.5 674.7 608.8 676.35 607.15 678.05 604.8 678.05 602.45 678.05 600.75 676.35 599.1 674.7 599.1 672.35 599.1 670 600.75 668.3 602.45 666.65 604.8 666.65 607.15 666.65 608.8 668.3 610.5 670 610.5 672.35 M624.35 669.7 Q624.35 671.65 622.95 673.05 621.55 674.45 619.6 674.45 617.65 674.45 616.25 673.05 614.85 671.65 614.85 669.7 614.85 667.75 616.25 666.35 617.65 664.95 619.6 664.95 621.55 664.95 622.95 666.35 624.35 667.75 624.35 669.7"/>
+ <path stroke="none" fill="#5A9BF3" d="M690.9 722.6 L690.7 723.05 Q689.1 728.3 684.3 731.15 679.3 734.05 673.7 732.55 668.2 731.05 665.3 726.1 662.5 721.2 663.95 715.85 L663.9 715.45 Q666.55 705.6 672.4 699.7 678.15 693.8 683.75 695.3 689.25 696.75 691.35 704.8 693.35 712.75 690.9 722.6 M680.2 708.6 Q676.4 707.65 673 709.6 669.5 711.6 668.5 715.4 667.45 719.2 669.45 722.7 671.4 726.05 675.2 727.05 679.05 728.1 682.5 726.2 685.9 724.15 686.95 720.35 687.95 716.5 686 713.1 684.05 709.7 680.2 708.6 M584.8 722.6 Q582.35 712.75 584.35 704.8 586.45 696.75 591.95 695.3 597.55 693.8 603.3 699.7 609.15 705.6 611.8 715.45 L611.75 715.85 Q613.2 721.2 610.4 726.1 607.5 731.05 602 732.55 596.4 734.05 591.4 731.15 586.6 728.3 585 723.05 L584.8 722.6 M595.5 708.6 Q591.65 709.7 589.7 713.1 587.75 716.5 588.75 720.35 589.8 724.15 593.2 726.2 596.65 728.1 600.5 727.05 604.3 726.05 606.25 722.7 608.25 719.2 607.2 715.4 606.2 711.6 602.7 709.6 599.3 707.65 595.5 708.6"/>
+ <path stroke="none" fill="#FFFFFF" d="M595.5 708.6 Q599.3 707.65 602.7 709.6 606.2 711.6 607.2 715.4 608.25 719.2 606.25 722.7 604.3 726.05 600.5 727.05 596.65 728.1 593.2 726.2 589.8 724.15 588.75 720.35 587.75 716.5 589.7 713.1 591.65 709.7 595.5 708.6 M680.2 708.6 Q684.05 709.7 686 713.1 687.95 716.5 686.95 720.35 685.9 724.15 682.5 726.2 679.05 728.1 675.2 727.05 671.4 726.05 669.45 722.7 667.45 719.2 668.5 715.4 669.5 711.6 673 709.6 676.4 707.65 680.2 708.6 M677.3 712.3 L676.7 712.2 Q674.7 711.9 672.85 712.95 670.7 714.2 670.1 716.55 669.4 719 670.7 721.2 671.7 723.1 673.65 723.8 L674.2 723.95 Q676.65 724.6 678.8 723.35 681 722.05 681.6 719.7 682.25 717.25 680.95 715.05 679.75 713 677.3 712.3 M598.4 712.3 Q595.95 713 594.75 715.05 593.45 717.25 594.1 719.7 594.7 722.05 596.9 723.35 599.05 724.6 601.5 723.95 L602.05 723.8 Q604 723.1 605 721.2 606.3 719 605.6 716.55 605 714.2 602.85 712.95 601 711.9 599 712.2 L598.4 712.3"/>
+ <path stroke="none" fill="#5B5B5B" d="M598.4 712.3 L599 712.2 Q601 711.9 602.85 712.95 605 714.2 605.6 716.55 606.3 719 605 721.2 604 723.1 602.05 723.8 L601.5 723.95 Q599.05 724.6 596.9 723.35 594.7 722.05 594.1 719.7 593.45 717.25 594.75 715.05 595.95 713 598.4 712.3 M677.3 712.3 Q679.75 713 680.95 715.05 682.25 717.25 681.6 719.7 681 722.05 678.8 723.35 676.65 724.6 674.2 723.95 L673.65 723.8 Q671.7 723.1 670.7 721.2 669.4 719 670.1 716.55 670.7 714.2 672.85 712.95 674.7 711.9 676.7 712.2 L677.3 712.3"/>
+ <path stroke="none" fill="#FFFCF5" d="M632.25 680.2 L635.8 646.4 Q635.9 645.55 636.5 645 L636.9 644.75 637.9 644.5 638.95 644.75 639.3 645 639.35 645 Q639.95 645.55 640 646.4 L643.6 680 637.55 680.75 632.25 680.2 M644.05 683.9 L645.75 700.1 Q643.55 702.25 637.55 702.3 632.1 702.35 630.05 700.45 L631.8 684.15 Q633.9 684.85 637.55 684.8 641.65 684.75 644.05 683.9 M646.2 704.35 L646.95 711.4 Q646.05 716.7 637.55 716.85 629.6 716.95 628.85 711.8 L629.6 704.75 Q631.45 707.15 637.55 707.05 644.2 706.95 646.2 704.35"/>
+ <path stroke="none" fill="#F0EDE7" d="M646.2 704.35 Q644.2 706.95 637.55 707.05 631.45 707.15 629.6 704.75 L630.05 700.45 Q632.1 702.35 637.55 702.3 643.55 702.25 645.75 700.1 L646.2 704.35 M643.6 680 L644.05 683.9 Q641.65 684.75 637.55 684.8 633.9 684.85 631.8 684.15 L632.25 680.2 637.55 680.75 643.6 680 M646.95 711.4 L647.05 712.25 Q647.3 720.95 637.55 721.15 628.2 721.35 628.75 712.25 L628.85 711.8 Q629.6 716.95 637.55 716.85 646.05 716.7 646.95 711.4"/>
+ <path stroke="none" fill="#FFFFFF" d="M655.15 730.95 Q658.05 738.6 655.15 747.25 639.55 752.9 621.15 747.25 617.9 738.15 621.15 730.9 622.45 730.9 623.75 731.35 638.9 736.65 651.5 731.55 653.3 730.8 655.15 730.95"/>
+ <path stroke="none" fill="#E7E7E7" d="M655.15 730.95 L657.55 731.55 Q660.6 732.75 661.85 735.8 663.1 738.85 661.9 741.9 660.65 744.9 657.65 746.25 L655.15 747.25 Q658.05 738.6 655.15 730.95 M621.15 747.25 L618.55 746.4 Q615.4 745.3 614 742.35 612.55 739.35 613.65 736.3 614.7 733.15 617.7 731.7 619.4 730.9 621.15 730.9 617.9 738.15 621.15 747.25"/>
+ <path stroke="none" fill="#6D4526" d="M316 706.65 L315.95 704.45 Q315.95 687.05 323.6 672.8 L323.6 672.75 Q327.95 664.6 334.85 657.45 L335.9 656.35 341.4 651.35 341.35 651.35 343.2 649.95 Q360.75 636.45 383.95 636.45 407.2 636.45 424.8 650 L426.6 651.4 Q429.4 653.7 432.05 656.35 L433.15 657.5 Q439.95 664.6 444.35 672.75 L444.35 672.8 Q451.95 687.05 451.95 704.45 L451.95 706.45 451.95 706.55 Q451.5 722.4 444.65 735.55 439.9 744.7 432.05 752.5 L429.65 754.75 425.55 758.3 Q407.65 772.45 383.95 772.45 360.25 772.45 342.4 758.3 L342.35 758.3 338.25 754.75 335.9 752.5 Q316.7 733.4 316 706.65"/>
+ <path stroke="none" fill="#BD7841" d="M320 706.45 L319.95 704.45 Q319.95 688.1 327.1 674.65 331.25 666.9 337.8 660.1 L338.7 659.15 Q341.25 656.6 343.9 654.45 L345.6 653.1 Q362.15 640.45 383.95 640.45 405.8 640.45 422.35 653.15 L424.05 654.5 Q426.7 656.65 429.2 659.15 L430.15 660.15 Q436.65 666.9 440.8 674.65 447.95 688.1 447.95 704.45 L447.95 706.45 Q447.25 681.25 429.2 663.15 414.1 648.1 393.95 645.15 L383.95 644.45 373.95 645.15 Q353.8 648.1 338.7 663.15 320.65 681.25 320 706.45"/>
+ <path stroke="none" fill="#A16639" d="M320 706.45 Q320.65 681.25 338.7 663.15 353.8 648.1 373.95 645.15 L383.95 644.45 393.95 645.15 Q414.1 648.1 429.2 663.15 447.25 681.25 447.95 706.45 447.55 721.35 441.1 733.7 436.6 742.3 429.2 749.65 L426.95 751.8 423.05 755.15 Q406.85 741.4 383.95 741.4 361.1 741.4 344.85 755.15 L340.95 751.8 338.7 749.65 Q320.65 731.65 320 706.45 M401.45 663.9 Q401.45 658.7 396.3 655.05 391.2 651.4 383.95 651.4 376.7 651.4 371.55 655.05 366.45 658.7 366.45 663.9 L366.5 664.75 Q366.85 675.35 371.55 683 376.7 691.4 383.95 691.4 391.2 691.4 396.3 683 401.05 675.35 401.45 664.75 L401.45 663.9"/>
+ <path stroke="none" fill="#AA6C3C" d="M401.45 663.9 L401.45 664.75 Q401.05 675.35 396.3 683 391.2 691.4 383.95 691.4 376.7 691.4 371.55 683 366.85 675.35 366.5 664.75 L366.45 663.9 Q366.45 658.7 371.55 655.05 376.7 651.4 383.95 651.4 391.2 651.4 396.3 655.05 401.45 658.7 401.45 663.9"/>
+ <path stroke="none" fill="#955E34" d="M423.05 755.15 Q406.25 768.45 383.95 768.45 361.65 768.45 344.85 755.15 361.1 741.4 383.95 741.4 406.85 741.4 423.05 755.15"/>
+ <path stroke="none" fill="#383838" d="M388.4 717.65 L389.25 718.65 Q390.2 719.6 391.3 720.15 392.7 720.8 394.35 720.8 397.35 720.8 399.5 718.65 L400.75 717 401.25 716.55 401.95 716.6 406.65 719.05 407.1 719.55 407.05 720.2 405.55 722.5 404.5 723.65 Q400.25 727.85 394.35 727.85 388.45 727.85 384.25 723.65 L383.95 723.35 383.65 723.65 Q379.4 727.85 373.5 727.85 367.55 727.85 363.4 723.65 L362.35 722.5 Q361.45 721.4 360.85 720.3 360.65 719.95 360.8 719.65 360.85 719.3 361.2 719.1 L365.8 716.55 366.45 716.45 367 716.9 Q367.55 717.85 368.35 718.65 370.5 720.8 373.5 720.8 375.15 720.8 376.6 720.15 L378.65 718.65 379.5 717.65 Q384.15 719.4 388.4 717.65"/>
+ <path stroke="none" fill="#464646" d="M379.5 717.65 Q376.85 716.7 374.7 714.55 371.75 711.6 371.1 707.65 371.8 705.7 374.7 704.3 378.55 702.45 383.95 702.45 389.35 702.45 393.2 704.3 396.1 705.75 396.8 707.65 396.15 711.6 393.2 714.55 391.05 716.7 388.4 717.65 384.15 719.4 379.5 717.65"/>
+ <path stroke="none" fill="#545454" d="M371.1 707.65 L370.9 705.3 370.9 704.4 Q371.2 702 374.7 700.3 378.55 698.45 383.95 698.45 389.35 698.45 393.2 700.3 396.65 702 397 704.4 L397 705.3 396.8 707.65 Q396.1 705.75 393.2 704.3 389.35 702.45 383.95 702.45 378.55 702.45 374.7 704.3 371.8 705.7 371.1 707.65"/>
+ <path stroke="none" fill="#FFFFFF" d="M422.65 692.25 Q422.65 689.8 420.95 688.15 419.25 686.45 416.85 686.45 414.45 686.45 412.7 688.15 411 689.8 411 692.25 411 694.65 412.7 696.3 414.45 698.05 416.85 698.05 419.25 698.05 420.95 696.3 422.65 694.65 422.65 692.25 M427.15 692.1 Q427.15 695.95 424.45 698.55 421.7 701.35 417.85 701.35 414.05 701.35 411.3 698.55 408.6 695.95 408.6 692.1 408.6 688.25 411.3 685.55 414.05 682.85 417.85 682.85 421.7 682.85 424.45 685.55 427.15 688.25 427.15 692.1 M340.75 692.1 Q340.75 688.25 343.45 685.55 346.2 682.85 350.05 682.85 353.85 682.85 356.6 685.55 359.3 688.25 359.3 692.1 359.3 695.95 356.6 698.55 353.85 701.35 350.05 701.35 346.2 701.35 343.45 698.55 340.75 695.95 340.75 692.1 M345.25 692.25 Q345.25 694.65 346.95 696.3 348.65 698.05 351.05 698.05 353.45 698.05 355.2 696.3 356.9 694.65 356.9 692.25 356.9 689.8 355.2 688.15 353.45 686.45 351.05 686.45 348.65 686.45 346.95 688.15 345.25 689.8 345.25 692.25"/>
+ <path stroke="none" fill="#5B5B5B" d="M345.25 692.25 Q345.25 689.8 346.95 688.15 348.65 686.45 351.05 686.45 353.45 686.45 355.2 688.15 356.9 689.8 356.9 692.25 356.9 694.65 355.2 696.3 353.45 698.05 351.05 698.05 348.65 698.05 346.95 696.3 345.25 694.65 345.25 692.25 M422.65 692.25 Q422.65 694.65 420.95 696.3 419.25 698.05 416.85 698.05 414.45 698.05 412.7 696.3 411 694.65 411 692.25 411 689.8 412.7 688.15 414.45 686.45 416.85 686.45 419.25 686.45 420.95 688.15 422.65 689.8 422.65 692.25"/>
+ <path stroke="none" fill="#8E5A32" d="M427.15 692.1 Q427.15 688.25 424.45 685.55 421.7 682.85 417.85 682.85 414.05 682.85 411.3 685.55 408.6 688.25 408.6 692.1 408.6 695.95 411.3 698.55 414.05 701.35 417.85 701.35 421.7 701.35 424.45 698.55 427.15 695.95 427.15 692.1 M432.8 688.65 Q434.7 695.85 431.85 702 428.95 708.3 422.95 709.9 417 711.45 411.35 707.45 405.8 703.6 403.85 696.4 L403.85 696.35 Q402.25 690.35 405.35 685 408.5 679.6 414.45 678.05 420.45 676.45 425.85 679.55 431.15 682.6 432.8 688.6 L432.8 688.65 M335.1 688.65 L335.1 688.6 Q336.75 682.6 342.05 679.55 347.45 676.45 353.45 678.05 359.4 679.6 362.55 685 365.65 690.35 364.05 696.35 L364.05 696.4 Q362.1 703.6 356.55 707.45 350.9 711.45 344.95 709.9 338.95 708.3 336.05 702 333.2 695.85 335.1 688.65 M340.75 692.1 Q340.75 695.95 343.45 698.55 346.2 701.35 350.05 701.35 353.85 701.35 356.6 698.55 359.3 695.95 359.3 692.1 359.3 688.25 356.6 685.55 353.85 682.85 350.05 682.85 346.2 682.85 343.45 685.55 340.75 688.25 340.75 692.1"/>
+ <path stroke="none" fill="#624630" d="M79.95 655.95 Q87.75 648.05 96.9 643.35 110.95 636 128 636 145.05 636 159.15 643.3 168.3 648.05 176.15 655.95 196 675.8 196 704 L196 706 196 706.1 Q195.25 732.95 176.15 752.1 165.75 762.45 153.2 767.45 L153.15 767.45 148.8 768.95 Q139.05 772 128 772 117 772 107.25 768.95 L102.95 767.45 Q90.3 762.45 79.95 752.1 60.75 733 60.05 706.2 L60 704 Q60 675.8 79.95 655.95"/>
+ <path stroke="none" fill="#B17E58" d="M64.05 706 L64 704 Q64 677.45 82.75 658.75 90.15 651.35 98.75 646.9 111.95 640 128 640 144.05 640 157.3 646.85 165.9 651.35 173.3 658.75 192 677.45 192 704 L192 706 Q191.3 680.75 173.3 662.75 164.9 654.35 154.95 649.7 L150.95 653.1 Q141.45 660 128 660 114.55 660 105 653.1 102.75 651.5 101.1 649.75 91.15 654.35 82.75 662.75 64.7 680.75 64.05 706"/>
+ <path stroke="none" fill="#986C4C" d="M64.05 706 Q64.7 680.75 82.75 662.75 91.15 654.35 101.1 649.75 102.75 651.5 105 653.1 114.55 660 128 660 141.45 660 150.95 653.1 L154.95 649.7 Q164.9 654.35 173.3 662.75 191.3 680.75 192 706 191.3 731.25 173.3 749.25 163.55 759 151.7 763.7 145.95 752.45 139.15 747.55 149.35 744.8 157.35 736.8 169.5 724.65 169.5 707.45 169.5 690.25 157.35 678.1 145.2 665.95 128 665.95 110.8 665.95 98.65 678.1 86.5 690.25 86.5 707.45 86.5 724.65 98.65 736.8 106.7 744.85 116.9 747.55 110.15 752.45 104.4 763.7 92.5 759 82.75 749.25 64.7 731.25 64.05 706"/>
+ <path stroke="none" fill="#916546" d="M116.9 747.55 Q106.7 744.85 98.65 736.8 86.5 724.65 86.5 707.45 86.5 690.25 98.65 678.1 110.8 665.95 128 665.95 145.2 665.95 157.35 678.1 169.5 690.25 169.5 707.45 169.5 724.65 157.35 736.8 149.35 744.8 139.15 747.55 133.85 748.95 128 748.95 122.15 748.95 116.9 747.55"/>
+ <path stroke="none" fill="#845C41" d="M116.9 747.55 Q122.15 748.95 128 748.95 133.85 748.95 139.15 747.55 145.95 752.45 151.7 763.7 140.75 768 128 768 115.3 768 104.4 763.7 110.15 752.45 116.9 747.55"/>
+ <path stroke="none" fill="#FFFFFF" d="M94.4 687 Q94.4 681.95 98 678.4 101.6 674.9 106.6 674.9 111.6 674.9 115.3 678.4 118.8 681.95 118.8 687 118.8 692.05 115.3 695.5 111.6 699.15 106.6 699.15 101.6 699.15 98 695.5 94.4 692.05 94.4 687 M100.35 687.25 Q100.35 690.4 102.6 692.55 104.75 694.85 107.95 694.85 111.1 694.85 113.35 692.55 115.6 690.4 115.6 687.25 115.6 683.95 113.35 681.8 111.1 679.65 107.95 679.65 104.75 679.65 102.6 681.8 100.35 683.95 100.35 687.25 M161.6 687 Q161.6 692.05 158.1 695.5 154.5 699.15 149.4 699.15 144.4 699.15 140.85 695.5 137.25 692.05 137.25 687 137.25 681.95 140.85 678.4 144.4 674.9 149.4 674.9 154.5 674.9 158.1 678.4 161.6 681.95 161.6 687 M155.75 687.25 Q155.75 683.95 153.5 681.8 151.25 679.65 148.1 679.65 145 679.65 142.65 681.8 140.4 683.95 140.4 687.25 140.4 690.4 142.65 692.55 145 694.85 148.1 694.85 151.25 694.85 153.5 692.55 155.75 690.4 155.75 687.25"/>
+ <path stroke="none" fill="#5B5B5B" d="M155.75 687.25 Q155.75 690.4 153.5 692.55 151.25 694.85 148.1 694.85 145 694.85 142.65 692.55 140.4 690.4 140.4 687.25 140.4 683.95 142.65 681.8 145 679.65 148.1 679.65 151.25 679.65 153.5 681.8 155.75 683.95 155.75 687.25 M100.35 687.25 Q100.35 683.95 102.6 681.8 104.75 679.65 107.95 679.65 111.1 679.65 113.35 681.8 115.6 683.95 115.6 687.25 115.6 690.4 113.35 692.55 111.1 694.85 107.95 694.85 104.75 694.85 102.6 692.55 100.35 690.4 100.35 687.25"/>
+ <path stroke="none" fill="#F0EDE7" d="M131.65 731 L131.65 720.05 Q131.65 718.8 132.55 717.95 133.4 717.05 134.65 717.05 L141.4 717.05 Q142.2 717.05 142.95 717.5 L144.05 718.6 144.4 720.15 144.15 727.8 144.05 729.6 142.95 728.5 Q142.2 728.05 141.4 728.05 L134.65 728.05 Q133.4 728.05 132.55 728.95 131.7 729.75 131.65 731 M124.35 731 Q124.3 729.75 123.45 728.95 122.6 728.05 121.35 728.05 L114.6 728.05 Q113.8 728.05 113.05 728.5 112.35 728.9 111.95 729.6 L111.9 727.8 111.6 720.15 Q111.6 719.35 111.95 718.6 112.35 717.9 113.05 717.5 113.8 717.05 114.6 717.05 L121.35 717.05 Q122.6 717.05 123.45 717.95 124.35 718.8 124.35 720.05 L124.35 731"/>
+ <path stroke="none" fill="#FFFCF5" d="M124.35 731 L124.35 761.2 124.35 761.5 Q124.3 762.65 123.5 763.65 122.5 764.95 120.75 765 119.45 765.15 118.3 764.3 113.45 761.5 111.95 729.6 112.35 728.9 113.05 728.5 113.8 728.05 114.6 728.05 L121.35 728.05 Q122.6 728.05 123.45 728.95 124.3 729.75 124.35 731 M144.05 729.6 Q142.55 761.5 137.7 764.3 136.55 765.15 135.25 765 133.5 764.95 132.5 763.65 131.7 762.65 131.65 761.5 L131.65 761.2 131.65 731 Q131.7 729.75 132.55 728.95 133.4 728.05 134.65 728.05 L141.4 728.05 Q142.2 728.05 142.95 728.5 L144.05 729.6"/>
+ <path stroke="none" fill="#3C6672" d="M121.15 736.15 Q117.85 737.7 113.95 737.7 107 737.7 102.05 732.75 97.15 727.85 97.15 720.9 97.15 713.9 102.05 709 107 704.05 113.95 704.05 L142.45 704.05 Q149.15 704.2 153.9 709 158.85 713.9 158.85 720.9 158.85 727.85 153.9 732.75 149 737.7 142 737.7 138.1 737.7 134.85 736.15 132.3 734.95 130.1 732.75 L128 730.25 125.85 732.75 Q123.7 734.95 121.15 736.15"/>
+ <path stroke="none" fill="#333333" d="M140.4 703.45 Q139.9 701.4 136.8 699.9 133.15 698.15 128 698.15 122.8 698.15 119.1 699.9 116.1 701.35 115.6 703.3 L115.5 701.7 115.5 700.8 Q115.75 698.55 119.1 696.9 122.8 695.15 128 695.15 133.15 695.15 136.8 696.9 140.15 698.55 140.45 700.8 L140.5 701.7 140.4 703.45"/>
+ <path stroke="none" fill="#252525" d="M140.4 703.45 Q139.85 707.5 136.8 710.45 133.15 714.15 128 714.15 122.8 714.15 119.1 710.45 116.1 707.45 115.6 703.3 116.1 701.35 119.1 699.9 122.8 698.15 128 698.15 133.15 698.15 136.8 699.9 139.9 701.4 140.4 703.45"/>
+ <path stroke="none" fill="#252525" d="M163.9 721.45 L162.85 725.05 162.65 725.45 162.2 725.6 161.75 725.5 Q156.15 720.55 148.9 718.55 L148.5 718.2 148.5 717.7 148.7 717.25 Q148.9 717.1 149.2 717.05 158.05 716.55 163.6 720.6 L163.9 721 163.9 721.45 M167.45 709.3 L168.15 713.95 168.15 714.55 167.7 715 167.2 715.1 Q157.5 713.6 148.8 714.05 L148.2 713.85 147.9 713.3 147.9 712.7 Q148.05 712.4 148.35 712.2 158.15 706.85 166.7 708.5 166.95 708.55 167.2 708.8 L167.45 709.3 M88.55 709.3 Q88.6 708.95 88.8 708.8 L89.3 708.5 Q97.85 706.85 107.65 712.2 L108.1 712.7 108.1 713.3 107.8 713.85 107.2 714.05 Q98.5 713.6 88.8 715.1 L88.3 715 87.85 714.55 87.85 713.95 88.55 709.3 M92.1 721.45 L92.1 721 92.4 720.6 Q97.95 716.55 106.8 717.05 L107.3 717.25 107.5 717.7 107.5 718.2 107.1 718.55 Q99.85 720.55 94.25 725.5 L93.8 725.6 93.35 725.45 93.15 725.05 92.1 721.45"/>
+ <path stroke="none" fill="#857E7E" d="M166.75 839.95 L172.25 844.3 176.15 847.95 Q196 867.8 196 896 L196 898 196 898.15 Q195.5 914.3 188.4 927.75 186.3 931.65 183.65 935.35 L183.25 935.85 Q180.05 940.1 176.1 944.1 L171.2 948.6 171.15 948.65 Q169 950.45 166.7 952.05 149.8 964 128 964 106.15 964 89.3 952.1 L89.3 952.05 84.95 948.75 79.9 944.1 Q71.8 936 67.05 926.65 L66.8 926.05 61.25 909.35 61.05 908.2 61.05 908.1 61 907.9 60.8 906.9 60.8 906.7 60.75 906.5 60.75 906.3 60.7 906.1 60.55 904.6 60.45 904.1 60.45 903.8 60.4 903.45 60.4 903.4 60.35 903.15 60.3 902.6 60.25 902.05 60.2 901.5 60.05 898.2 60 896 Q60 867.8 79.95 847.95 81.8 846 83.8 844.35 86.45 842 89.3 840 106.2 828 128 828 149.85 828 166.7 839.95 L166.75 839.95"/>
+ <path stroke="none" fill="#DBD9D9" d="M64.05 898 L64 896 Q64 869.45 82.75 850.75 L86.4 847.35 Q88.95 845.15 91.6 843.25 107.5 832 128 832 148.55 832 164.4 843.2 L169.6 847.3 173.3 850.75 Q192 869.45 192 896 L192 898 Q191.3 872.75 173.3 854.75 170.25 851.7 167 849.15 L166.55 849.45 Q150.6 860 128 860 105.4 860 89.4 849.45 L89 849.2 Q85.75 851.75 82.75 854.75 64.7 872.75 64.05 898"/>
+ <path stroke="none" fill="#D2D0D0" d="M64.05 898 Q64.7 872.75 82.75 854.75 85.75 851.75 89 849.2 L89.4 849.45 Q105.4 860 128 860 150.6 860 166.55 849.45 L167 849.15 Q170.25 851.7 173.3 854.75 191.3 872.75 192 898 191.55 913.2 184.85 925.85 182.9 929.55 180.4 933 L180.35 933 Q177.2 937.3 173.25 941.25 L168.6 945.55 Q164.2 943.95 164.25 939.25 163.15 928 153.8 919.75 143.3 910.5 128.45 910.5 113.6 910.5 103.05 919.75 93.75 928 92.7 939.25 91.35 944.05 87.5 945.65 L82.7 941.25 Q75.1 933.65 70.6 924.8 L65.05 908.1 65.05 907.9 64.85 906.8 64.8 906.55 64.75 906.05 64.65 905.5 64.5 904.25 64.5 904.05 64.4 903.45 64.4 903.2 64.35 903 64.35 902.75 64.3 902.45 64.25 901.8 64.25 901.55 64.2 901.25 64.05 898"/>
+ <path stroke="none" fill="#BDB6B6" d="M168.6 945.55 L164.4 948.75 Q148.5 960 128 960 107.45 960 91.6 948.8 L87.5 945.65 Q91.35 944.05 92.7 939.25 93.75 928 103.05 919.75 113.6 910.5 128.45 910.5 143.3 910.5 153.8 919.75 163.15 928 164.25 939.25 164.2 943.95 168.6 945.55 M145.6 923.35 Q144.5 922.25 142.3 922.85 140.05 923.45 138.1 925.45 L137.95 925.55 Q136.9 926.65 136.9 928.25 136.9 929.85 138.05 930.95 139.15 932.1 140.8 932.1 142.3 932.1 143.45 931.05 L143.55 930.95 Q145.55 928.95 146.15 926.75 146.8 924.5 145.6 923.35 M113.45 931.05 Q114.55 932.1 116.1 932.1 117.7 932.1 118.85 930.95 119.95 929.85 119.95 928.25 119.95 926.65 118.9 925.55 L118.8 925.45 Q116.8 923.45 114.6 922.85 112.4 922.25 111.25 923.35 110.1 924.5 110.75 926.75 111.35 928.95 113.35 930.95 L113.45 931.05"/>
+ <path stroke="none" fill="#9A9494" d="M113.45 931.05 L113.35 930.95 Q111.35 928.95 110.75 926.75 110.1 924.5 111.25 923.35 112.4 922.25 114.6 922.85 116.8 923.45 118.8 925.45 L118.9 925.55 Q119.95 926.65 119.95 928.25 119.95 929.85 118.85 930.95 117.7 932.1 116.1 932.1 114.55 932.1 113.45 931.05 M145.6 923.35 Q146.8 924.5 146.15 926.75 145.55 928.95 143.55 930.95 L143.45 931.05 Q142.3 932.1 140.8 932.1 139.15 932.1 138.05 930.95 136.9 929.85 136.9 928.25 136.9 926.65 137.95 925.55 L138.1 925.45 Q140.05 923.45 142.3 922.85 144.5 922.25 145.6 923.35"/>
+ <path stroke="none" fill="#FFFFFF" d="M171.7 903.1 Q171.7 899.45 169.25 897 166.7 894.45 163.05 894.45 159.55 894.45 156.95 897 154.4 899.45 154.4 903.1 L154.45 903.95 Q154.7 906.9 156.95 909.05 159.55 911.55 163.05 911.55 166.7 911.55 169.25 909.05 171.4 906.9 171.65 903.95 L171.7 903.1 M179.25 903.2 Q179.25 908.9 175.2 912.8 171.15 916.9 165.45 916.9 159.85 916.9 155.7 912.8 151.75 908.9 151.75 903.2 151.75 897.45 155.7 893.45 159.85 889.4 165.45 889.4 171.15 889.4 175.2 893.45 179.25 897.45 179.25 903.2"/>
+ <path stroke="none" fill="#5B5B5B" d="M171.7 903.1 L171.65 903.95 Q171.4 906.9 169.25 909.05 166.7 911.55 163.05 911.55 159.55 911.55 156.95 909.05 154.7 906.9 154.45 903.95 L154.4 903.1 Q154.4 899.45 156.95 897 159.55 894.45 163.05 894.45 166.7 894.45 169.25 897 171.7 899.45 171.7 903.1"/>
+ <path stroke="none" fill="#FFFFFF" d="M76.75 903.2 Q76.75 897.45 80.8 893.45 84.85 889.4 90.55 889.4 96.15 889.4 100.3 893.45 104.25 897.45 104.25 903.2 104.25 908.9 100.3 912.8 96.15 916.9 90.55 916.9 84.85 916.9 80.8 912.8 76.75 908.9 76.75 903.2 M84.3 903.1 L84.35 903.95 Q84.6 906.9 86.75 909.05 89.3 911.55 92.95 911.55 96.45 911.55 99.05 909.05 101.3 906.9 101.55 903.95 L101.6 903.1 Q101.6 899.45 99.05 897 96.45 894.45 92.95 894.45 89.3 894.45 86.75 897 84.3 899.45 84.3 903.1"/>
+ <path stroke="none" fill="#5B5B5B" d="M84.3 903.1 Q84.3 899.45 86.75 897 89.3 894.45 92.95 894.45 96.45 894.45 99.05 897 101.6 899.45 101.6 903.1 L101.55 903.95 Q101.3 906.9 99.05 909.05 96.45 911.55 92.95 911.55 89.3 911.55 86.75 909.05 84.6 906.9 84.35 903.95 L84.3 903.1"/>
+ <path stroke="none" fill="#FFFCF5" d="M117.95 893.15 L126.6 863.8 Q126.75 863.35 127.15 863.05 127.55 862.75 128 862.75 128.5 862.75 128.9 863.05 L129.4 863.8 138.1 893.2 139.25 897.15 140 900.6 Q139.65 902.4 138.35 903.65 135.6 906.5 128 906.5 120.4 906.5 117.7 903.65 116.35 902.35 116.05 900.55 116.2 898.95 116.75 897.15 L117.95 893.15"/>
+ <path stroke="none" fill="#BDB6B6" d="M117.95 893.15 L116.75 897.15 Q116.2 898.95 116.05 900.55 115.5 905 117.7 907.6 120.4 911.15 128 911.15 135.6 911.15 138.35 907.6 140.5 905 140 900.6 L139.25 897.15 138.1 893.2 Q139.55 893.95 140.9 895 146.3 899.2 146.3 905.15 146.3 911.1 140.9 915.25 135.6 919.45 128 919.45 120.4 919.45 115 915.25 109.7 911.1 109.7 905.15 109.7 899.2 115 895 116.4 893.95 117.95 893.15"/>
+ <path stroke="none" fill="#F0EDE7" d="M116.05 900.55 Q116.35 902.35 117.7 903.65 120.4 906.5 128 906.5 135.6 906.5 138.35 903.65 139.65 902.4 140 900.6 140.5 905 138.35 907.6 135.6 911.15 128 911.15 120.4 911.15 117.7 907.6 115.5 905 116.05 900.55"/>
+ <path stroke="none" fill="#857E7E" d="M406.35 831.6 L407.9 832.15 408.3 832.3 Q410.85 833.25 413.3 834.45 L413.1 834.35 414.6 835.1 414.7 835.15 Q421.8 838.75 428.15 844.25 L428.1 844.25 430.35 846.25 432.05 847.9 435.2 851.2 435.3 851.35 436.45 852.65 436.5 852.7 Q451.95 871.2 451.95 896 L451.95 898 451.95 898.1 Q451.85 902.25 451.35 906.3 L451.3 906.35 Q449.7 917.4 444.65 927.1 442.75 930.75 440.3 934.3 436.7 939.35 432.05 944.05 412.1 964 383.95 964 355.8 964 335.9 944.05 331.15 939.35 327.6 934.25 L327.65 934.25 Q318.85 921.6 316.7 906.3 316.1 902.35 316 898.2 L315.95 896 Q315.95 871.15 331.5 852.7 333.55 850.2 335.9 847.9 L337.75 846.1 339.75 844.3 339.8 844.25 Q346.05 838.8 353.15 835.2 L353.2 835.2 353.2 835.15 353.3 835.15 353.35 835.1 Q354.05 834.65 354.8 834.35 L354.65 834.45 Q357.55 833.05 360.65 831.95 L360.65 831.9 363.1 831.1 363.15 831.1 364.3 830.75 Q373.55 828 383.95 828 394.4 828 403.7 830.75 L403.65 830.75 404.85 831.1 404.95 831.1 406.35 831.6"/>
+ <path stroke="none" fill="#FFFFFF" d="M411.55 838.05 Q410.5 839.2 409.6 840.45 L409.25 841 409 840.9 406.5 839.9 404.35 839.15 403.05 838.75 Q398.65 837.4 393.95 836.7 L383.95 836 373.95 836.7 Q369.25 837.4 364.85 838.75 L363.45 839.2 362 839.7 358.9 840.9 358.7 841 358.35 840.45 356.35 838.05 Q359.1 836.7 362 835.7 L364.3 834.9 365.4 834.6 Q374.15 832 383.95 832 393.8 832 402.55 834.6 L403.65 834.9 405.1 835.4 406.5 835.9 Q409.05 836.85 411.55 838.05 M422.35 848.7 Q423.85 847.95 425.5 847.25 L427.6 849.15 429.2 850.7 432.25 853.9 433.4 855.25 Q447.95 872.65 447.95 896 L447.95 898 Q447.3 875.2 432.5 858.25 L429.2 854.7 428.4 853.9 427.9 853.45 Q425.2 850.85 422.35 848.7 M427.7 878.75 Q427.7 875.15 425.2 872.6 422.7 870.1 419.05 870.1 415.5 870.1 412.9 872.6 410.4 875.15 410.4 878.75 410.4 882.35 412.9 884.8 415.5 887.35 419.05 887.35 422.7 887.35 425.2 884.8 427.7 882.35 427.7 878.75 M432.45 878.55 Q432.45 883.7 428.8 887.3 425.15 891 419.95 891 414.85 891 411.15 887.3 407.5 883.7 407.5 878.55 407.5 873.35 411.15 869.7 414.85 866.05 419.95 866.05 425.15 866.05 428.8 869.7 432.45 873.35 432.45 878.55 M345.6 848.7 Q342.75 850.85 340.1 853.4 L338.7 854.7 335.45 858.25 Q320.6 875.2 320 898 L319.95 896 Q319.95 872.6 334.55 855.25 L338.7 850.7 Q339.55 849.85 340.4 849.1 L342.4 847.25 345.6 848.7 M335.45 878.55 Q335.45 873.35 339.1 869.7 342.75 866.05 347.95 866.05 353.05 866.05 356.75 869.7 360.4 873.35 360.4 878.55 360.4 883.7 356.75 887.3 353.05 891 347.95 891 342.75 891 339.1 887.3 335.45 883.7 335.45 878.55 M340.15 878.75 Q340.15 882.35 342.7 884.8 345.2 887.35 348.85 887.35 352.4 887.35 354.95 884.8 357.5 882.35 357.5 878.75 357.5 875.15 354.95 872.6 352.4 870.1 348.85 870.1 345.2 870.1 342.7 872.6 340.15 875.15 340.15 878.75"/>
+ <path stroke="none" fill="#E9E9E9" d="M358.7 841 L358.9 840.9 362 839.7 363.45 839.2 364.85 838.75 366.6 850.65 Q367.05 853.05 368.75 854.65 L372.75 857.7 Q378.45 861.45 383.9 861.5 389.4 861.45 395.4 857.6 L399.15 854.65 Q400.35 853.5 400.95 851.95 L401.3 850.65 403.05 838.75 404.35 839.15 406.5 839.9 409 840.9 409.25 841 Q406.65 844.8 405.65 849.45 405.15 851.55 405.05 853.9 L405 854.95 Q405.3 858.7 408.95 856.7 L410.65 855.55 413 853.9 Q417.15 851.15 422.35 848.7 425.2 850.85 427.9 853.45 L428.4 853.9 429.2 854.7 432.5 858.25 Q447.3 875.2 447.95 898 447.85 901.95 447.35 905.75 438.35 900.55 427.15 900.75 421.15 901.05 426.3 906 437.15 916.4 437 932 433.6 936.8 429.2 941.2 410.45 960 383.95 960 357.45 960 338.7 941.2 334.25 936.8 330.9 931.95 330.8 916.4 341.6 906 346.75 901.05 340.75 900.75 329.55 900.55 320.65 905.7 320.1 901.95 320 898 320.6 875.2 335.45 858.25 L338.7 854.7 340.1 853.4 Q342.75 850.85 345.6 848.7 352.3 851.85 357.25 855.55 L359.05 856.7 Q362.6 858.65 362.9 854.95 362.85 852.15 362.3 849.6 361.3 844.85 358.7 841 M432.45 878.55 Q432.45 873.35 428.8 869.7 425.15 866.05 419.95 866.05 414.85 866.05 411.15 869.7 407.5 873.35 407.5 878.55 407.5 883.7 411.15 887.3 414.85 891 419.95 891 425.15 891 428.8 887.3 432.45 883.7 432.45 878.55 M335.45 878.55 Q335.45 883.7 339.1 887.3 342.75 891 347.95 891 353.05 891 356.75 887.3 360.4 883.7 360.4 878.55 360.4 873.35 356.75 869.7 353.05 866.05 347.95 866.05 342.75 866.05 339.1 869.7 335.45 873.35 335.45 878.55 M402.5 898.1 L400.1 889.95 Q397.95 880.8 383.95 880.4 371.05 880.05 367.8 889.95 L365.45 898.05 Q361.15 900.15 357.4 903.35 346.85 912.4 346.45 925 L346.45 926 346.5 927.9 Q347.25 939.9 357.4 948.6 368.4 958 383.95 958 399.45 958 410.45 948.6 420.65 939.95 421.4 927.9 L421.45 926 421.45 925 Q421 912.4 410.45 903.35 406.7 900.2 402.5 898.1"/>
+ <path stroke="none" fill="#4F4E4E" d="M409.25 841 L409.6 840.45 Q410.5 839.2 411.55 838.05 L412.8 838.65 Q419.5 842.05 425.5 847.25 423.85 847.95 422.35 848.7 416.15 843.95 409.25 841 M356.35 838.05 L358.35 840.45 358.7 841 Q351.75 843.95 345.6 848.7 L342.4 847.25 Q348.4 842.05 355.15 838.65 L356.35 838.05"/>
+ <path stroke="none" fill="#414040" d="M409.25 841 Q416.15 843.95 422.35 848.7 417.15 851.15 413 853.9 L410.65 855.55 408.95 856.7 Q405.3 858.7 405 854.95 L405.05 853.9 Q405.15 851.55 405.65 849.45 406.65 844.8 409.25 841 M364.85 838.75 Q369.25 837.4 373.95 836.7 L383.95 836 393.95 836.7 Q398.65 837.4 403.05 838.75 L401.3 850.65 400.95 851.95 Q400.35 853.5 399.15 854.65 L395.4 857.6 Q389.4 861.45 383.9 861.5 378.45 861.45 372.75 857.7 L368.75 854.65 Q367.05 853.05 366.6 850.65 L364.85 838.75 M358.7 841 Q361.3 844.85 362.3 849.6 362.85 852.15 362.9 854.95 362.6 858.65 359.05 856.7 L357.25 855.55 Q352.3 851.85 345.6 848.7 351.75 843.95 358.7 841 M320.65 905.7 Q329.55 900.55 340.75 900.75 346.75 901.05 341.6 906 330.8 916.4 330.9 931.95 322.65 920.1 320.65 905.7 M437 932 Q437.15 916.4 426.3 906 421.15 901.05 427.15 900.75 438.35 900.55 447.35 905.75 445.85 916.15 441.1 925.25 439.3 928.7 437 932 M365.45 898.05 L367.8 889.95 Q371.05 880.05 383.95 880.4 397.95 880.8 400.1 889.95 L402.5 898.1 Q394.2 894 383.95 894 373.7 894 365.45 898.05 M421.4 927.9 Q420.65 939.95 410.45 948.6 399.45 958 383.95 958 368.4 958 357.4 948.6 347.25 939.9 346.5 927.9 347.3 916 357.4 907.35 360.45 904.75 363.8 902.9 372.7 898 383.95 898 395.2 898 404.1 902.95 407.45 904.8 410.45 907.35 420.55 916 421.4 927.9 M402.45 908.15 L401.6 907.55 Q400.2 906.85 398 907.5 L397.75 907.6 Q394.9 908.45 392.4 910.95 L392.25 911.1 Q391.6 911.8 391.25 912.65 390.85 913.55 390.85 914.65 390.85 916.8 392.35 918.3 393.85 919.8 396 919.8 398.05 919.8 399.55 918.4 L399.7 918.25 Q401.75 916.2 402.7 913.95 L403.15 912.65 403.3 912.15 Q403.7 910.25 403.05 909 L402.45 908.15 M368.35 918.4 Q369.85 919.8 371.9 919.8 374.05 919.8 375.55 918.3 377.05 916.8 377.05 914.65 377.05 913.55 376.7 912.65 L375.65 911.1 375.5 910.95 Q372.95 908.4 370.1 907.55 L369.9 907.5 Q367.7 906.85 366.35 907.55 365.85 907.75 365.45 908.15 L364.85 909 Q364.2 910.25 364.65 912.15 L364.75 912.65 365.2 913.95 Q366.15 916.2 368.2 918.25 L368.35 918.4"/>
+ <path stroke="none" fill="#5B5B5B" d="M427.7 878.75 Q427.7 882.35 425.2 884.8 422.7 887.35 419.05 887.35 415.5 887.35 412.9 884.8 410.4 882.35 410.4 878.75 410.4 875.15 412.9 872.6 415.5 870.1 419.05 870.1 422.7 870.1 425.2 872.6 427.7 875.15 427.7 878.75 M340.15 878.75 Q340.15 875.15 342.7 872.6 345.2 870.1 348.85 870.1 352.4 870.1 354.95 872.6 357.5 875.15 357.5 878.75 357.5 882.35 354.95 884.8 352.4 887.35 348.85 887.35 345.2 887.35 342.7 884.8 340.15 882.35 340.15 878.75"/>
+ <path stroke="none" fill="#2E2D2D" d="M402.45 908.15 L403.05 909 Q403.7 910.25 403.3 912.15 L403.15 912.65 402.7 913.95 Q401.75 916.2 399.7 918.25 L399.55 918.4 Q398.05 919.8 396 919.8 393.85 919.8 392.35 918.3 390.85 916.8 390.85 914.65 390.85 913.55 391.25 912.65 391.6 911.8 392.25 911.1 L392.4 910.95 Q394.9 908.45 397.75 907.6 L398 907.5 Q400.2 906.85 401.6 907.55 L402.45 908.15 M368.35 918.4 L368.2 918.25 Q366.15 916.2 365.2 913.95 L364.75 912.65 364.65 912.15 Q364.2 910.25 364.85 909 L365.45 908.15 Q365.85 907.75 366.35 907.55 367.7 906.85 369.9 907.5 L370.1 907.55 Q372.95 908.4 375.5 910.95 L375.65 911.1 376.7 912.65 Q377.05 913.55 377.05 914.65 377.05 916.8 375.55 918.3 374.05 919.8 371.9 919.8 369.85 919.8 368.35 918.4"/>
+ <path stroke="none" fill="#545353" d="M402.5 898.1 Q406.7 900.2 410.45 903.35 421 912.4 421.45 925 L421.45 926 421.4 927.9 Q420.55 916 410.45 907.35 407.45 904.8 404.1 902.95 395.2 898 383.95 898 372.7 898 363.8 902.9 360.45 904.75 357.4 907.35 347.3 916 346.5 927.9 L346.45 926 346.45 925 Q346.85 912.4 357.4 903.35 361.15 900.15 365.45 898.05 373.7 894 383.95 894 394.2 894 402.5 898.1"/>
+ <path stroke="none" fill="#2C2B2B" d="M576.05 867.3 Q580.9 856.75 589.8 847.9 L590.9 846.85 590.95 846.75 Q610.5 828 637.85 828 665.3 828 684.9 846.85 L684.95 846.9 685.95 847.9 Q689.85 851.8 693.05 856.1 696.95 861.4 699.75 867.25 L699.75 867.3 700.65 869.3 700.7 869.4 Q705.85 881.6 705.85 896 L705.85 896.5 705.85 897 705.85 898 705.85 898.5 705.85 898.65 Q705.1 919.6 693.05 935.9 L690.75 938.75 690.8 938.7 689.3 940.45 685.95 944.05 Q676.15 953.85 664.35 958.85 652.15 964 637.85 964 628.8 964 620.65 961.95 615.85 960.75 611.4 958.85 599.55 953.85 589.8 944.05 L586.4 940.45 Q570.8 922.75 569.9 898.9 L569.85 898 569.85 897 569.85 896.5 569.85 896 Q569.85 881.6 575.1 869.4 L575.05 869.5 576.1 867.15 576.05 867.3"/>
+ <path stroke="none" fill="#545353" d="M573.9 898.5 L573.85 898 573.85 897 573.85 896.5 573.85 896 Q573.85 882.45 578.75 870.95 L579.65 868.95 Q584.25 859.05 592.6 850.7 L593.65 849.7 Q612.05 832 637.85 832 663.7 832 682.1 849.7 L683.1 850.7 Q686.8 854.4 689.8 858.45 693.5 863.45 696.1 868.95 L697 870.95 Q701.85 882.45 701.85 896 L701.85 896.5 701.85 897 701.85 898 701.85 898.5 Q701.55 883.45 695.1 870.95 L694.05 868.95 Q692.15 865.6 689.8 862.45 686.8 858.4 683.1 854.7 L682.1 853.7 Q663.7 836 637.85 836 612.05 836 593.65 853.7 L592.6 854.7 Q585.95 861.35 581.7 868.95 L580.6 870.95 Q574.2 883.45 573.9 898.5"/>
+ <path stroke="none" fill="#414040" d="M701.85 898.5 Q701.15 918.2 689.8 933.5 L687.7 936.15 686.3 937.8 683.1 941.2 Q673.9 950.45 662.8 955.15 651.3 960 637.85 960 629.3 960 621.6 958.05 617.15 956.95 612.95 955.15 601.8 950.45 592.6 941.2 L589.4 937.8 Q574.65 921.1 573.9 898.5 574.2 883.45 580.6 870.95 L581.7 868.95 Q585.95 861.35 592.6 854.7 L593.65 853.7 Q612.05 836 637.85 836 663.7 836 682.1 853.7 L683.1 854.7 Q686.8 858.4 689.8 862.45 692.15 865.6 694.05 868.95 L695.1 870.95 Q701.55 883.45 701.85 898.5 M681.4 872.85 L679.35 870.95 676.6 868.95 Q670.15 864.8 662 864.8 653.8 864.8 647.35 868.95 637.85 873.8 628.35 868.95 621.9 864.8 613.75 864.8 605.6 864.8 599.15 868.95 597.75 869.85 596.4 870.95 L594.3 872.85 Q586.25 880.9 586.25 892.25 586.25 903.65 594.3 911.75 L594.4 911.75 598.95 915.45 Q599 931.4 610.35 942.65 614.85 947.2 620.15 949.9 628.15 954.05 637.85 954.05 653.95 954.05 665.4 942.65 L669.05 938.55 Q676.65 928.55 676.75 915.45 L681.4 911.75 Q689.45 903.65 689.45 892.25 689.45 880.9 681.4 872.85 M655.85 859.75 L655.8 859.2 Q655.35 852 650.7 846.75 645.55 841 638.35 841 631.1 841 625.95 846.75 621.35 852 620.9 859.2 L620.85 859.75 Q620.85 860.45 621.15 861.1 622.05 863.25 625.95 864.9 631.1 867 638.35 867 645.55 867 650.7 864.9 654.65 863.25 655.6 861.1 L655.85 859.75"/>
+ <path stroke="none" fill="#FFFFFF" d="M596.2 896.1 Q596.2 891.5 599.45 888.3 602.75 885.1 607.35 885.1 611.9 885.1 615.25 888.3 618.45 891.5 618.45 896.1 618.45 900.7 615.25 903.85 611.9 907.2 607.35 907.2 602.75 907.2 599.45 903.85 596.2 900.7 596.2 896.1 M601.65 896.35 Q601.65 899.2 603.7 901.15 605.6 903.25 608.55 903.25 611.45 903.25 613.5 901.15 615.55 899.2 615.55 896.35 615.55 893.35 613.5 891.4 611.45 889.4 608.55 889.4 605.6 889.4 603.7 891.4 601.65 893.35 601.65 896.35 M620.15 918.4 Q640.15 912.25 657.15 918.4 660.3 927.8 657.15 936.15 655.15 936.3 653.2 935.5 639.45 929.95 622.95 935.7 L620.15 936.2 Q616.6 928.3 620.15 918.4 M680.25 896.1 Q680.25 900.7 677 903.85 673.75 907.2 669.1 907.2 664.55 907.2 661.35 903.85 658 900.7 658 896.1 658 891.5 661.35 888.3 664.55 885.1 669.1 885.1 673.75 885.1 677 888.3 680.25 891.5 680.25 896.1 M674.9 896.35 Q674.9 893.35 672.85 891.4 670.8 889.4 667.95 889.4 665.1 889.4 662.95 891.4 660.9 893.35 660.9 896.35 660.9 899.2 662.95 901.15 665.1 903.25 667.95 903.25 670.8 903.25 672.85 901.15 674.9 899.2 674.9 896.35"/>
+ <path stroke="none" fill="#BDB6B6" d="M596.2 896.1 Q596.2 900.7 599.45 903.85 602.75 907.2 607.35 907.2 611.9 907.2 615.25 903.85 618.45 900.7 618.45 896.1 618.45 891.5 615.25 888.3 611.9 885.1 607.35 885.1 602.75 885.1 599.45 888.3 596.2 891.5 596.2 896.1 M681.4 872.85 Q689.45 880.9 689.45 892.25 689.45 903.65 681.4 911.75 L676.75 915.45 Q676.65 928.55 669.05 938.55 L665.4 942.65 Q653.95 954.05 637.85 954.05 628.15 954.05 620.15 949.9 614.85 947.2 610.35 942.65 599 931.4 598.95 915.45 L594.4 911.75 594.3 911.75 Q586.25 903.65 586.25 892.25 586.25 880.9 594.3 872.85 L596.4 870.95 Q597.75 869.85 599.15 868.95 605.6 864.8 613.75 864.8 621.9 864.8 628.35 868.95 637.85 873.8 647.35 868.95 653.8 864.8 662 864.8 670.15 864.8 676.6 868.95 L679.35 870.95 681.4 872.85 M616.1 875.75 Q614.8 875.9 613.8 876.85 612.85 877.8 612.85 879.15 612.85 880.5 613.8 881.45 614.8 882.4 616.4 882.6 637.8 885.2 659 882.4 660.85 882.4 661.8 881.45 662.75 880.5 662.75 879.15 662.75 877.8 661.8 876.85 660.85 875.9 659 875.7 637 873.65 616.1 875.75 M641.6 899.2 L641.45 899.3 Q640.3 900.45 640.3 902.15 640.3 903.9 641.55 905.15 L641.95 905.45 642.35 905.75 Q643.25 906.35 644.5 906.35 646.15 906.35 647.3 905.2 L647.45 905 649.1 903 Q649.95 901.8 650.25 900.55 L650.35 900.2 Q650.8 898 649.7 896.9 648.5 895.7 646.05 896.35 643.75 897.05 641.6 899.2 M635.1 905.15 Q636.3 903.9 636.3 902.15 636.3 900.45 635.15 899.3 L635 899.2 Q632.9 897.05 630.5 896.35 628.1 895.7 626.85 896.9 625.75 898 626.25 900.2 L626.35 900.55 Q626.65 901.8 627.45 903.05 L629.1 905 629.2 905.2 Q630.4 906.35 632.1 906.35 633.3 906.35 634.3 905.75 L634.7 905.45 635.1 905.15 M620.15 918.4 L617.3 919.3 Q613.85 920.5 612.35 923.7 610.75 927 611.95 930.3 613.1 933.75 616.4 935.3 618.25 936.2 620.15 936.2 L622.95 935.7 Q639.45 929.95 653.2 935.5 655.15 936.3 657.15 936.15 L659.8 935.5 Q663.1 934.2 664.45 930.85 665.8 927.55 664.5 924.2 663.15 920.95 659.9 919.5 L657.15 918.4 Q640.15 912.25 620.15 918.4 M680.25 896.1 Q680.25 891.5 677 888.3 673.75 885.1 669.1 885.1 664.55 885.1 661.35 888.3 658 891.5 658 896.1 658 900.7 661.35 903.85 664.55 907.2 669.1 907.2 673.75 907.2 677 903.85 680.25 900.7 680.25 896.1"/>
+ <path stroke="none" fill="#464545" d="M655.85 859.75 L655.6 861.1 Q654.65 863.25 650.7 864.9 645.55 867 638.35 867 631.1 867 625.95 864.9 622.05 863.25 621.15 861.1 620.85 860.45 620.85 859.75 L620.9 859.2 Q621.35 852 625.95 846.75 631.1 841 638.35 841 645.55 841 650.7 846.75 655.35 852 655.8 859.2 L655.85 859.75"/>
+ <path stroke="none" fill="#A8A1A1" d="M616.1 875.75 Q637 873.65 659 875.7 660.85 875.9 661.8 876.85 662.75 877.8 662.75 879.15 662.75 880.5 661.8 881.45 660.85 882.4 659 882.4 637.8 885.2 616.4 882.6 614.8 882.4 613.8 881.45 612.85 880.5 612.85 879.15 612.85 877.8 613.8 876.85 614.8 875.9 616.1 875.75"/>
+ <path stroke="none" fill="#989292" d="M641.6 899.2 Q643.75 897.05 646.05 896.35 648.5 895.7 649.7 896.9 650.8 898 650.35 900.2 L650.25 900.55 Q649.95 901.8 649.1 903 L647.45 905 647.3 905.2 Q646.15 906.35 644.5 906.35 643.25 906.35 642.35 905.75 L641.95 905.45 641.55 905.15 Q640.3 903.9 640.3 902.15 640.3 900.45 641.45 899.3 L641.6 899.2 M635.1 905.15 L634.7 905.45 634.3 905.75 Q633.3 906.35 632.1 906.35 630.4 906.35 629.2 905.2 L629.1 905 627.45 903.05 Q626.65 901.8 626.35 900.55 L626.25 900.2 Q625.75 898 626.85 896.9 628.1 895.7 630.5 896.35 632.9 897.05 635 899.2 L635.15 899.3 Q636.3 900.45 636.3 902.15 636.3 903.9 635.1 905.15"/>
+ <path stroke="none" fill="#5B5B5B" d="M601.65 896.35 Q601.65 893.35 603.7 891.4 605.6 889.4 608.55 889.4 611.45 889.4 613.5 891.4 615.55 893.35 615.55 896.35 615.55 899.2 613.5 901.15 611.45 903.25 608.55 903.25 605.6 903.25 603.7 901.15 601.65 899.2 601.65 896.35 M674.9 896.35 Q674.9 899.2 672.85 901.15 670.8 903.25 667.95 903.25 665.1 903.25 662.95 901.15 660.9 899.2 660.9 896.35 660.9 893.35 662.95 891.4 665.1 889.4 667.95 889.4 670.8 889.4 672.85 891.4 674.9 893.35 674.9 896.35"/>
+ <path stroke="none" fill="#E7E7E7" d="M620.15 936.2 Q618.25 936.2 616.4 935.3 613.1 933.75 611.95 930.3 610.75 927 612.35 923.7 613.85 920.5 617.3 919.3 L620.15 918.4 Q616.6 928.3 620.15 936.2 M657.15 918.4 L659.9 919.5 Q663.15 920.95 664.5 924.2 665.8 927.55 664.45 930.85 663.1 934.2 659.8 935.5 L657.15 936.15 Q660.3 927.8 657.15 918.4"/>
+ <path stroke="none" fill="#1B8045" d="M895.7 828 Q911.65 828 925 834.45 935.1 839.35 943.75 847.95 963.7 867.85 963.7 896 L963.7 898 963.7 898.1 Q963.05 921.6 948.1 939.3 L943.75 944 943.75 944.05 Q939.6 948.2 935.1 951.5 917.9 964 895.7 964 871.9 964 854 949.7 L853.95 949.7 847.65 944.05 843.3 939.3 843.3 939.25 Q828.4 921.65 827.75 898.2 L827.7 896 Q827.7 867.85 847.65 847.95 856.25 839.35 866.45 834.45 879.75 828 895.7 828"/>
+ <path stroke="none" fill="#31DE7A" d="M831.75 898 L831.7 896 Q831.7 869.5 850.45 850.75 858.55 842.65 868.15 838.05 880.7 832 895.7 832 910.7 832 923.25 838.05 932.8 842.65 940.9 850.75 959.7 869.5 959.7 896 L959.7 898 Q959 872.8 940.9 854.75 932.6 846.45 922.8 841.85 910.45 836 895.7 836 880.95 836 868.6 841.8 858.75 846.45 850.45 854.75 832.4 872.8 831.75 898"/>
+ <path stroke="none" fill="#2ECC71" d="M831.75 898 Q832.4 872.8 850.45 854.75 858.75 846.45 868.6 841.8 870.4 854.7 875.9 864.75 884.1 879.8 895.7 879.8 907.3 879.8 915.5 864.75 921 854.7 922.8 841.85 932.6 846.45 940.9 854.75 959 872.8 959.7 898 959.1 920.1 945.05 936.7 932.9 943.7 925.75 936.7 912.2 917.9 894.15 917.9 876.1 917.9 862.55 936.7 857.2 943.6 846.35 936.7 832.3 920.1 831.75 898"/>
+ <path stroke="none" fill="#2FD274" d="M868.6 841.8 Q880.95 836 895.7 836 910.45 836 922.8 841.85 921 854.7 915.5 864.75 907.3 879.8 895.7 879.8 884.1 879.8 875.9 864.75 870.4 854.7 868.6 841.8"/>
+ <path stroke="none" fill="#F3F3F3" d="M945.05 936.7 L940.9 941.2 Q937 945.15 932.75 948.25 916.6 960 895.7 960 873.3 960 856.45 946.55 L850.45 941.2 846.35 936.7 Q857.2 943.6 862.55 936.7 876.1 917.9 894.15 917.9 912.2 917.9 925.75 936.7 932.9 943.7 945.05 936.7"/>
+ <path stroke="none" fill="#FFFFFF" d="M929.45 890 Q929.45 886.7 927.2 884.55 924.95 882.4 921.8 882.4 918.7 882.4 916.35 884.55 914.1 886.7 914.1 890 914.1 893.15 916.35 895.3 918.7 897.6 921.8 897.6 924.95 897.6 927.2 895.3 929.45 893.15 929.45 890 M935.3 889.75 Q935.3 894.8 931.8 898.25 928.2 901.9 923.1 901.9 918.1 901.9 914.55 898.25 910.95 894.8 910.95 889.75 910.95 884.7 914.55 881.15 918.1 877.65 923.1 877.65 928.2 877.65 931.8 881.15 935.3 884.7 935.3 889.75 M856.1 889.75 Q856.1 884.7 859.7 881.15 863.3 877.65 868.3 877.65 873.05 877.65 876.65 880.85 L877 881.15 Q880.5 884.7 880.5 889.75 880.5 894.8 877 898.25 L876.65 898.6 Q873.05 901.9 868.3 901.9 863.3 901.9 859.7 898.25 856.1 894.8 856.1 889.75 M862.05 890 Q862.05 893.15 864.3 895.3 866.45 897.6 869.65 897.6 872.8 897.6 875.05 895.3 876.1 894.3 876.65 893.1 877.3 891.7 877.3 890 877.3 888.25 876.65 886.8 876.1 885.55 875.05 884.55 872.8 882.4 869.65 882.4 866.45 882.4 864.3 884.55 862.05 886.7 862.05 890"/>
+ <path stroke="none" fill="#5B5B5B" d="M862.05 890 Q862.05 886.7 864.3 884.55 866.45 882.4 869.65 882.4 872.8 882.4 875.05 884.55 876.1 885.55 876.65 886.8 877.3 888.25 877.3 890 877.3 891.7 876.65 893.1 876.1 894.3 875.05 895.3 872.8 897.6 869.65 897.6 866.45 897.6 864.3 895.3 862.05 893.15 862.05 890 M929.45 890 Q929.45 893.15 927.2 895.3 924.95 897.6 921.8 897.6 918.7 897.6 916.35 895.3 914.1 893.15 914.1 890 914.1 886.7 916.35 884.55 918.7 882.4 921.8 882.4 924.95 882.4 927.2 884.55 929.45 886.7 929.45 890"/>
+ <path stroke="none" fill="#FFD738" d="M875.65 907.5 L875.75 907.05 Q877.05 901.3 881.1 896.8 882.3 895.5 883.55 894.55 888.8 890.2 895.75 890.2 902.65 890.2 907.95 894.55 L910.3 896.8 Q914.4 901.3 915.65 907.05 L915.75 907.5 916 909.05 916.3 912.75 916.2 914.25 916.2 914.45 916 913.05 915.65 911.05 Q915.25 909.1 914.5 907.3 913 903.75 910.3 900.8 L907.95 898.55 Q902.65 894.2 895.75 894.2 888.8 894.2 883.55 898.55 882.3 899.5 881.1 900.8 878.45 903.75 876.95 907.3 876.2 909.1 875.75 911.05 L875.35 913.05 875.25 914.55 875.2 914.25 875.15 912.75 875.35 909.05 875.65 907.5"/>
+ <path stroke="none" fill="#FFCC00" d="M909.7 923.25 L909.3 923.5 Q903.55 926.7 895.75 926.7 887.9 926.7 882.15 923.5 L881.75 923.25 881.1 922.85 Q877.05 920.2 875.8 916.8 L875.4 915.3 875.25 914.55 875.35 913.05 875.75 911.05 Q876.2 909.1 876.95 907.3 878.45 903.75 881.1 900.8 882.3 899.5 883.55 898.55 888.8 894.2 895.75 894.2 902.65 894.2 907.95 898.55 L910.3 900.8 Q913 903.75 914.5 907.3 915.25 909.1 915.65 911.05 L916 913.05 916.2 914.45 916.1 915.3 915.65 916.85 Q914.35 920.2 910.3 922.85 L909.7 923.25"/>
+ <path stroke="none" fill="#EEBE00" d="M915.75 907.5 L920.65 908.55 Q930.8 911.15 931.05 914.8 L915.65 916.85 916.1 915.3 916.2 914.45 916.2 914.25 916.3 912.75 916 909.05 915.75 907.5 M860.35 914.75 Q860.65 911.1 870.65 908.55 L875.65 907.5 875.35 909.05 875.15 912.75 875.2 914.25 875.25 914.55 875.4 915.3 875.8 916.8 860.35 914.75"/>
+ <path stroke="none" fill="#DEB100" d="M860.35 914.75 L875.8 916.8 Q877.05 920.2 881.1 922.85 L881.75 923.25 879.5 923 Q874.75 922.35 870.65 921.3 860.85 918.8 860.4 915.3 L860.35 914.95 860.35 914.75 M931.05 914.8 L931.05 914.95 931.05 915.3 Q930.55 918.8 920.65 921.3 916.6 922.35 911.9 923 L909.7 923.25 910.3 922.85 Q914.35 920.2 915.65 916.85 L931.05 914.8"/>
+ <path stroke="none" fill="#29BB67" d="M906.1 848.05 Q909.15 853.3 909.7 857.85 910.4 862.4 908.3 863.6 906.15 864.85 902.5 862 898.95 859.15 895.9 853.95 L895.2 852.75 Q894 850.25 894.3 847.7 894.6 844.85 896.75 843.6 898.85 842.4 901.5 843.55 903.85 844.55 905.4 846.9 L906.1 848.05 M890.85 854 Q888.85 857.5 886.4 859.35 884.05 861.25 882.65 860.4 881.25 859.65 881.7 856.6 882.1 853.6 884.1 850.15 L884.55 849.3 Q885.6 847.75 887.15 847.1 L890.3 847.15 Q891.7 848 891.95 849.9 892.1 851.55 891.3 853.2 L890.85 854"/>
+ <path stroke="none" fill="#2C2B2B" d="M1149.5 828 Q1158.2 828 1166.1 829.9 L1166.45 830 Q1183.9 834.25 1197.6 847.9 L1198.95 849.3 1198.9 849.25 Q1217.5 868.8 1217.5 896 L1217.5 898 1217.5 898.1 Q1217.05 913.95 1210.2 927.1 1208.6 930.2 1206.65 933.15 1202.75 938.9 1197.6 944.05 1177.65 964 1149.5 964 1121.35 964 1101.45 944.05 1096.25 938.85 1092.45 933.15 1082.05 917.65 1081.55 898.2 L1081.5 896 Q1081.5 867.85 1101.45 847.9 1106.85 842.45 1112.85 838.6 L1112.8 838.6 Q1121.95 832.6 1132.55 830.05 1140.6 828 1149.5 828"/>
+ <path stroke="none" fill="#FFFFFF" d="M1165.5 833.85 L1165.05 837.75 1165 837.75 1159.5 836.7 1149.5 836 1139.5 836.7 1133.95 837.8 1133.95 837.75 1133.5 833.9 Q1141.1 832 1149.5 832 1157.85 832 1165.45 833.85 L1165.5 833.85"/>
+ <path stroke="none" fill="#F0F0F0" d="M1133.95 837.8 L1139.5 836.7 1149.5 836 1159.5 836.7 1165 837.75 1165.05 837.75 Q1161.8 853.2 1160.85 868.95 1160.1 881.1 1160.75 893.45 1161.95 915.65 1203.3 930.9 1199.65 936.35 1194.75 941.2 1176 960 1149.5 960 1123 960 1104.25 941.2 1099.35 936.3 1095.75 930.9 1137.05 915.65 1138.25 893.45 1138.9 881.1 1138.2 868.95 1137.2 853.25 1133.95 837.8"/>
+ <path stroke="none" fill="#4F4E4E" d="M1133.95 837.8 Q1123.8 840.2 1115 845.95 1109.35 849.65 1104.25 854.7 1086.2 872.8 1085.55 898 L1085.5 896 Q1085.5 869.5 1104.25 850.7 1109.35 845.6 1115 841.95 1123.6 836.3 1133.5 833.9 L1133.95 837.75 1133.95 837.8 M1165.05 837.75 L1165.5 833.85 Q1181.9 837.9 1194.75 850.7 L1196 852 Q1213.5 870.4 1213.5 896 L1213.5 898 Q1212.8 873.7 1196 856 L1194.75 854.7 Q1181.75 841.75 1165.05 837.75"/>
+ <path stroke="none" fill="#414040" d="M1165.05 837.75 Q1181.75 841.75 1194.75 854.7 L1196 856 Q1212.8 873.7 1213.5 898 1213.1 912.9 1206.65 925.25 L1203.3 930.9 Q1161.95 915.65 1160.75 893.45 1160.1 881.1 1160.85 868.95 1161.8 853.2 1165.05 837.75 M1095.75 930.9 Q1086 916.35 1085.55 898 1086.2 872.8 1104.25 854.7 1109.35 849.65 1115 845.95 1123.8 840.2 1133.95 837.8 1137.2 853.25 1138.2 868.95 1138.9 881.1 1138.25 893.45 1137.05 915.65 1095.75 930.9"/>
+ <path stroke="none" fill="#FFC4FF" d="M1112.05 927.9 L1112 926 1112 925 Q1112.4 912.4 1122.95 903.35 1133.95 894 1149.5 894 1165 894 1176 903.35 1186.55 912.4 1187 925 L1187 926 1186.95 927.9 Q1186.1 916 1176 907.35 1165 898 1149.5 898 1133.95 898 1122.95 907.35 1112.85 916 1112.05 927.9"/>
+ <path stroke="none" fill="#FFAAFF" d="M1112.05 927.9 Q1112.85 916 1122.95 907.35 1133.95 898 1149.5 898 1165 898 1176 907.35 1186.1 916 1186.95 927.9 1186.3 938.1 1178.9 945.9 L1176 948.6 Q1173.9 950.4 1171.6 951.9 1161.75 949.9 1149.5 949.9 1137.2 949.9 1127.4 951.9 L1122.95 948.6 1120.1 945.9 Q1112.7 938.1 1112.05 927.9 M1168 908.15 L1167.15 907.55 Q1165.75 906.85 1163.55 907.5 L1163.3 907.6 Q1160.45 908.45 1157.95 910.95 L1157.8 911.1 Q1157.15 911.8 1156.8 912.65 1156.4 913.55 1156.4 914.65 1156.4 916.8 1157.9 918.3 1159.4 919.8 1161.55 919.8 1163.6 919.8 1165.1 918.4 L1165.25 918.25 Q1167.3 916.2 1168.25 913.95 L1168.7 912.65 1168.85 912.15 Q1169.25 910.25 1168.6 909 L1168 908.15 M1133.9 918.4 Q1135.4 919.8 1137.45 919.8 1139.6 919.8 1141.1 918.3 1142.6 916.8 1142.6 914.65 1142.6 913.55 1142.25 912.65 L1141.2 911.1 1141.05 910.95 Q1138.5 908.4 1135.65 907.55 L1135.45 907.5 Q1133.25 906.85 1131.9 907.55 1131.4 907.75 1131 908.15 L1130.4 909 Q1129.75 910.25 1130.2 912.15 L1130.3 912.65 1130.75 913.95 Q1131.7 916.2 1133.75 918.25 L1133.9 918.4"/>
+ <path stroke="none" fill="#A66EA6" d="M1133.9 918.4 L1133.75 918.25 Q1131.7 916.2 1130.75 913.95 L1130.3 912.65 1130.2 912.15 Q1129.75 910.25 1130.4 909 L1131 908.15 Q1131.4 907.75 1131.9 907.55 1133.25 906.85 1135.45 907.5 L1135.65 907.55 Q1138.5 908.4 1141.05 910.95 L1141.2 911.1 1142.25 912.65 Q1142.6 913.55 1142.6 914.65 1142.6 916.8 1141.1 918.3 1139.6 919.8 1137.45 919.8 1135.4 919.8 1133.9 918.4 M1168 908.15 L1168.6 909 Q1169.25 910.25 1168.85 912.15 L1168.7 912.65 1168.25 913.95 Q1167.3 916.2 1165.25 918.25 L1165.1 918.4 Q1163.6 919.8 1161.55 919.8 1159.4 919.8 1157.9 918.3 1156.4 916.8 1156.4 914.65 1156.4 913.55 1156.8 912.65 1157.15 911.8 1157.8 911.1 L1157.95 910.95 Q1160.45 908.45 1163.3 907.6 L1163.55 907.5 Q1165.75 906.85 1167.15 907.55 L1168 908.15"/>
+ <path stroke="none" fill="#F0A0F0" d="M1171.6 951.9 Q1162 958 1149.5 958 1136.95 958 1127.4 951.9 1137.2 949.9 1149.5 949.9 1161.75 949.9 1171.6 951.9"/>
+ <path stroke="none" fill="#FFFFFF" d="M1190.5 872.05 Q1190.5 876.15 1187.55 879.05 1184.65 882 1180.5 882 1176.4 882 1173.45 879.05 1170.55 876.15 1170.55 872.05 1170.55 867.85 1173.45 864.95 1176.4 862.05 1180.5 862.05 1184.65 862.05 1187.55 864.95 1190.5 867.85 1190.5 872.05 M1186.7 872.2 Q1186.7 869.3 1184.7 867.25 1182.7 865.25 1179.75 865.25 1176.95 865.25 1174.85 867.25 1172.85 869.3 1172.85 872.2 1172.85 875.05 1174.85 877.05 1176.95 879.05 1179.75 879.05 1182.7 879.05 1184.7 877.05 1186.7 875.05 1186.7 872.2 M1108.5 872.05 Q1108.5 867.85 1111.4 864.95 1114.35 862.05 1118.5 862.05 1122.55 862.05 1125.55 864.95 1128.45 867.85 1128.45 872.05 1128.45 876.15 1125.55 879.05 1122.55 882 1118.5 882 1114.35 882 1111.4 879.05 1108.5 876.15 1108.5 872.05 M1112.25 872.2 Q1112.25 875.05 1114.3 877.05 1116.3 879.05 1119.2 879.05 1122.05 879.05 1124.1 877.05 1126.15 875.05 1126.15 872.2 1126.15 869.3 1124.1 867.25 1122.05 865.25 1119.2 865.25 1116.3 865.25 1114.3 867.25 1112.25 869.3 1112.25 872.2"/>
+ <path stroke="none" fill="#5B5B5B" d="M1112.25 872.2 Q1112.25 869.3 1114.3 867.25 1116.3 865.25 1119.2 865.25 1122.05 865.25 1124.1 867.25 1126.15 869.3 1126.15 872.2 1126.15 875.05 1124.1 877.05 1122.05 879.05 1119.2 879.05 1116.3 879.05 1114.3 877.05 1112.25 875.05 1112.25 872.2 M1186.7 872.2 Q1186.7 875.05 1184.7 877.05 1182.7 879.05 1179.75 879.05 1176.95 879.05 1174.85 877.05 1172.85 875.05 1172.85 872.2 1172.85 869.3 1174.85 867.25 1176.95 865.25 1179.75 865.25 1182.7 865.25 1184.7 867.25 1186.7 869.3 1186.7 872.2"/>
+ <path stroke="none" fill="#747070" d="M1110.85 1031.95 L1114.6 1029.55 1114.55 1029.55 Q1130.1 1020 1149.5 1020 1168.95 1020 1184.5 1029.5 1186.4 1030.65 1188.2 1031.95 L1188.25 1031.95 Q1193.15 1035.45 1197.65 1039.95 L1198.65 1040.95 Q1217.5 1060.5 1217.5 1088 L1217.5 1090 1217.5 1090.15 Q1217 1106.3 1209.9 1119.75 1207.8 1123.65 1205.15 1127.35 L1204.85 1127.7 1204.8 1127.85 1204.65 1128.05 Q1201.45 1132.2 1197.6 1136.1 L1192.7 1140.6 1192.65 1140.65 1188.2 1144.05 Q1171.3 1156 1149.5 1156 1127.65 1156 1110.8 1144.1 L1110.8 1144.05 Q1108.55 1142.45 1106.45 1140.75 L1101.4 1136.1 Q1097.45 1132.15 1094.4 1128 1090.95 1123.45 1088.55 1118.6 L1088.3 1118.05 1082.75 1101.35 1082.55 1100.2 1082.55 1100.1 1082.5 1099.9 1082.3 1098.85 1082.3 1098.7 1082.25 1098.5 1082.25 1098.3 1082.2 1098.1 1082.05 1096.6 1081.95 1096.1 1081.95 1095.8 1081.9 1095.45 1081.9 1095.4 1081.85 1095.15 1081.85 1095.05 1081.85 1095 1081.8 1094.6 1081.75 1094.05 1081.7 1093.5 1081.55 1090.2 1081.5 1088 Q1081.5 1060.5 1100.45 1040.95 L1101.45 1039.95 Q1105.95 1035.4 1110.8 1032 L1110.85 1031.95"/>
+ <path stroke="none" fill="#B1A9A9" d="M1213.5 1090 Q1212.8 1064.75 1194.8 1046.75 1190.4 1042.35 1185.6 1039 1182.8 1037.05 1179.85 1035.45 L1176.7 1037.95 Q1165.45 1046 1149.5 1046 1133.55 1046 1122.25 1037.95 L1119.15 1035.5 Q1116.2 1037.1 1113.4 1039.05 1108.6 1042.4 1104.25 1046.75 1086.2 1064.75 1085.55 1090 L1085.5 1088 Q1085.5 1061.45 1104.25 1042.75 1108.5 1038.5 1113.1 1035.25 L1116.65 1032.95 Q1131.25 1024 1149.5 1024 1167.8 1024 1182.4 1032.9 L1185.9 1035.2 Q1190.55 1038.5 1194.8 1042.75 1213.5 1061.45 1213.5 1088 L1213.5 1090"/>
+ <path stroke="none" fill="#9F9898" d="M1213.5 1090 Q1213.05 1105.2 1206.35 1117.85 1204.4 1121.55 1201.9 1125 L1201.85 1125 1201.45 1125.6 Q1199.8 1113 1186.15 1108.4 1199.15 1105.35 1205 1092.55 1210.85 1079.65 1200.9 1063.8 1190.9 1047.95 1175.3 1055.85 1159.65 1063.7 1158.65 1091.9 L1140.35 1091.9 Q1139.35 1063.7 1123.7 1055.85 1108.1 1047.95 1098.1 1063.8 1088.15 1079.65 1094 1092.55 1099.85 1105.35 1112.85 1108.4 1099.2 1113 1097.6 1125.6 1094.4 1121.35 1092.1 1116.8 L1086.55 1100.1 1086.55 1099.9 1086.35 1098.8 1086.3 1098.55 1086.25 1098.05 1086.15 1097.5 1086 1096.25 1086 1096.05 1085.9 1095.45 1085.9 1095.2 1085.85 1095 1085.85 1094.75 1085.8 1094.45 1085.75 1093.8 1085.75 1093.55 1085.7 1093.25 1085.55 1090 Q1086.2 1064.75 1104.25 1046.75 1108.6 1042.4 1113.4 1039.05 1116.2 1037.1 1119.15 1035.5 L1122.25 1037.95 Q1133.55 1046 1149.5 1046 1165.45 1046 1176.7 1037.95 L1179.85 1035.45 Q1182.8 1037.05 1185.6 1039 1190.4 1042.35 1194.8 1046.75 1212.8 1064.75 1213.5 1090"/>
+ <path stroke="none" fill="#D2D0D0" d="M1097.6 1125.6 Q1099.2 1113 1112.85 1108.4 1099.85 1105.35 1094 1092.55 1088.15 1079.65 1098.1 1063.8 1108.1 1047.95 1123.7 1055.85 1139.35 1063.7 1140.35 1091.9 L1158.65 1091.9 Q1159.65 1063.7 1175.3 1055.85 1190.9 1047.95 1200.9 1063.8 1210.85 1079.65 1205 1092.55 1199.15 1105.35 1186.15 1108.4 1199.8 1113 1201.45 1125.6 1198.45 1129.55 1194.75 1133.25 L1190.1 1137.55 1185.9 1140.75 Q1170 1152 1149.5 1152 1128.95 1152 1113.1 1140.8 1111 1139.3 1109 1137.65 L1104.2 1133.25 Q1100.5 1129.55 1097.6 1125.6"/>
+ <path stroke="none" fill="#383838" d="M1153.95 1106.95 L1154.8 1107.95 1156.85 1109.45 Q1158.25 1110.1 1159.9 1110.1 1162.9 1110.1 1165.05 1107.95 L1166.3 1106.3 1166.8 1105.85 1167.5 1105.9 1172.2 1108.35 1172.65 1108.85 1172.6 1109.5 1171.1 1111.8 1170.05 1112.95 Q1165.8 1117.15 1159.9 1117.15 1154 1117.15 1149.8 1112.95 L1149.5 1112.65 1149.2 1112.95 Q1144.95 1117.15 1139.05 1117.15 1133.1 1117.15 1128.95 1112.95 L1127.9 1111.8 1126.4 1109.6 Q1126.2 1109.25 1126.35 1108.95 1126.4 1108.6 1126.75 1108.4 L1131.35 1105.85 1132 1105.75 1132.55 1106.2 1133.9 1107.95 Q1136.05 1110.1 1139.05 1110.1 1140.7 1110.1 1142.15 1109.45 1143.25 1108.9 1144.2 1107.95 L1145.05 1106.95 Q1149.7 1108.7 1153.95 1106.95"/>
+ <path stroke="none" fill="#545454" d="M1136.65 1096.95 L1136.45 1094.6 1136.45 1093.7 Q1136.75 1091.3 1140.25 1089.6 1144.1 1087.75 1149.5 1087.75 1154.9 1087.75 1158.75 1089.6 1162.2 1091.3 1162.55 1093.7 L1162.55 1094.6 1162.35 1096.95 Q1161.65 1095.05 1158.75 1093.6 1154.9 1091.75 1149.5 1091.75 1144.1 1091.75 1140.25 1093.6 1137.35 1095 1136.65 1096.95"/>
+ <path stroke="none" fill="#464646" d="M1136.65 1096.95 Q1137.35 1095 1140.25 1093.6 1144.1 1091.75 1149.5 1091.75 1154.9 1091.75 1158.75 1093.6 1161.65 1095.05 1162.35 1096.95 1161.7 1100.9 1158.75 1103.85 1156.6 1106 1153.95 1106.95 1149.7 1108.7 1145.05 1106.95 1142.4 1106 1140.25 1103.85 1137.3 1100.9 1136.65 1096.95"/>
+ <path stroke="none" fill="#5B5B5B" d="M1107.7 1084 Q1107.8 1081.65 1110.25 1079.95 1112.75 1078.25 1116.4 1078.25 1119.95 1078.25 1122.5 1079.95 1124.95 1081.65 1125.05 1084 L1125.05 1084.3 Q1124.95 1086.65 1122.5 1088.25 1119.95 1090 1116.4 1090 1112.75 1090 1110.25 1088.25 1107.8 1086.65 1107.7 1084.3 L1107.7 1084 M1191.25 1084 L1191.25 1084.3 Q1191.15 1086.65 1188.75 1088.25 1186.25 1090 1182.6 1090 1179.05 1090 1176.45 1088.25 1174.05 1086.65 1173.95 1084.3 L1173.95 1084 Q1174.05 1081.65 1176.45 1079.95 1179.05 1078.25 1182.6 1078.25 1186.25 1078.25 1188.75 1079.95 1191.15 1081.65 1191.25 1084"/>
+ <path stroke="none" fill="#FFFFFF" d="M1191.25 1084 Q1191.15 1081.65 1188.75 1079.95 1186.25 1078.25 1182.6 1078.25 1179.05 1078.25 1176.45 1079.95 1174.05 1081.65 1173.95 1084 L1173.95 1084.3 Q1174.05 1086.65 1176.45 1088.25 1179.05 1090 1182.6 1090 1186.25 1090 1188.75 1088.25 1191.15 1086.65 1191.25 1084.3 L1191.25 1084 M1107.7 1084 L1107.7 1084.3 Q1107.8 1086.65 1110.25 1088.25 1112.75 1090 1116.4 1090 1119.95 1090 1122.5 1088.25 1124.95 1086.65 1125.05 1084.3 L1125.05 1084 Q1124.95 1081.65 1122.5 1079.95 1119.95 1078.25 1116.4 1078.25 1112.75 1078.25 1110.25 1079.95 1107.8 1081.65 1107.7 1084 M1103 1083.95 Q1103 1078.75 1106.65 1075.1 1110.3 1071.45 1115.5 1071.45 1120.6 1071.45 1124.3 1075.1 1127.95 1078.75 1127.95 1083.95 1127.95 1089.1 1124.3 1092.7 1120.6 1096.4 1115.5 1096.4 1110.3 1096.4 1106.65 1092.7 1103 1089.1 1103 1083.95 M1196 1083.95 Q1196 1089.1 1192.35 1092.7 1188.7 1096.4 1183.5 1096.4 1178.4 1096.4 1174.7 1092.7 1171.05 1089.1 1171.05 1083.95 1171.05 1078.75 1174.7 1075.1 1178.4 1071.45 1183.5 1071.45 1188.7 1071.45 1192.35 1075.1 1196 1078.75 1196 1083.95"/>
+ <path stroke="none" fill="#6D4526" d="M936.55 1033.55 L938.35 1034.95 Q941.15 1037.25 943.8 1039.9 L944.9 1041.05 947.95 1044.45 Q952.75 1050.05 956.1 1056.3 L956.1 1056.35 Q958.75 1061.4 960.5 1066.85 L960.5 1066.8 961.8 1071.4 Q963.7 1079.3 963.7 1088 L963.7 1090 963.7 1090.1 Q963.6 1094.85 962.85 1099.45 961.2 1109.95 956.4 1119.1 952.95 1125.65 947.95 1131.55 L943.8 1136.05 941.4 1138.3 937.3 1141.85 Q919.4 1156 895.7 1156 872 1156 854.15 1141.85 L854.1 1141.85 850 1138.3 847.65 1136.05 Q828.45 1116.95 827.75 1090.2 L827.7 1088 Q827.7 1070.6 835.35 1056.35 L835.35 1056.3 Q839.7 1048.15 846.6 1041 L847.65 1039.9 Q850.3 1037.2 853.15 1034.9 L853.1 1034.9 854.95 1033.5 Q872.5 1020 895.7 1020 918.95 1020 936.55 1033.55"/>
+ <path stroke="none" fill="#BD7841" d="M831.75 1090 L831.7 1088 Q831.7 1071.65 838.85 1058.2 843 1050.45 849.55 1043.65 L850.45 1042.7 855.65 1038 857.35 1036.65 Q873.9 1024 895.7 1024 917.55 1024 934.1 1036.7 L935.8 1038.05 940.95 1042.7 941.9 1043.7 Q948.4 1050.45 952.55 1058.2 955.05 1062.95 956.7 1068.05 L957.9 1072.3 Q959.7 1079.8 959.7 1088 L959.7 1090 Q959.45 1080.65 956.8 1072.3 L955.3 1068.05 Q950.6 1056.35 940.95 1046.7 925.85 1031.65 905.7 1028.7 L895.7 1028 885.7 1028.7 Q865.55 1031.65 850.45 1046.7 832.4 1064.8 831.75 1090"/>
+ <path stroke="none" fill="#A16639" d="M831.75 1090 Q832.4 1064.8 850.45 1046.7 865.55 1031.65 885.7 1028.7 L895.7 1028 905.7 1028.7 Q925.85 1031.65 940.95 1046.7 950.6 1056.35 955.3 1068.05 L956.8 1072.3 Q959.45 1080.65 959.7 1090 959.6 1094.5 958.9 1098.8 957.35 1108.65 952.85 1117.25 948.35 1125.85 940.95 1133.2 L938.7 1135.35 934.8 1138.7 Q928.5 1133.35 921.25 1130.1 926.35 1127.95 930.9 1124.8 L931.7 1124.2 935.4 1121.3 936.45 1120.35 Q946.35 1111 946 1100.45 945.7 1090 938.85 1098.2 936.55 1100.9 932.65 1101.95 L932.6 1101.95 Q926.6 1103.55 921.25 1100.45 L918.9 1098.8 Q915.5 1095.9 914.3 1091.35 912.7 1085.35 915.8 1079.95 918.85 1074.65 924.85 1073 L924.9 1073 928.95 1072.3 932 1072.3 Q938.05 1072.35 933.4 1068.1 L933.4 1068.05 931.7 1066.45 930.95 1065.85 Q925.55 1061.15 919.4 1058.2 916 1056.6 912.35 1055.5 913.05 1052.1 913.2 1048.3 L913.2 1047.45 Q913.2 1042.25 908.05 1038.6 902.95 1034.95 895.7 1034.95 888.45 1034.95 883.3 1038.6 878.2 1042.25 878.2 1047.45 L878.25 1048.3 Q878.4 1052.1 879.05 1055.55 868.4 1058.75 859.8 1066.45 L858.1 1068.05 Q854.1 1072.65 860.45 1072.3 L861.4 1072.3 866.45 1073.05 866.5 1073.05 Q872.5 1074.7 875.55 1080 878.65 1085.4 877.05 1091.4 875.9 1095.9 872.5 1098.8 871.4 1099.75 870.1 1100.5 864.75 1103.6 858.75 1102 L858.7 1102 Q854.75 1100.95 852.75 1098.75 845.45 1090.8 844.85 1098.8 845.05 1111.25 855.4 1120.75 L858.1 1122.95 859.8 1124.2 Q864.65 1127.75 870.2 1130.15 862.9 1133.4 856.6 1138.7 L852.7 1135.35 850.45 1133.2 Q832.4 1115.2 831.75 1090 M928.35 1078.65 Q924.5 1078.65 921.8 1081.35 919.1 1084.1 919.1 1087.95 919.1 1091.75 921.8 1094.5 924.5 1097.2 928.35 1097.2 932.2 1097.2 934.8 1094.5 937.6 1091.75 937.6 1087.95 937.6 1084.1 934.8 1081.35 932.2 1078.65 928.35 1078.65 M863 1078.7 Q859.15 1078.7 856.55 1081.4 853.75 1084.15 853.75 1088 853.75 1091.8 856.55 1094.55 859.15 1097.25 863 1097.25 866.85 1097.25 869.55 1094.55 872.25 1091.8 872.25 1088 872.25 1084.15 869.55 1081.4 866.85 1078.7 863 1078.7"/>
+ <path stroke="none" fill="#AA6C3C" d="M879.05 1055.55 Q878.4 1052.1 878.25 1048.3 L878.2 1047.45 Q878.2 1042.25 883.3 1038.6 888.45 1034.95 895.7 1034.95 902.95 1034.95 908.05 1038.6 913.2 1042.25 913.2 1047.45 L913.2 1048.3 Q913.05 1052.1 912.35 1055.5 904.55 1053.15 895.7 1053.15 L894.1 1053.2 Q886.15 1053.4 879.05 1055.55"/>
+ <path stroke="none" fill="#EBCEB7" d="M879.05 1055.55 Q886.15 1053.4 894.1 1053.2 L895.7 1053.15 Q904.55 1053.15 912.35 1055.5 916 1056.6 919.4 1058.2 925.55 1061.15 930.95 1065.85 L931.7 1066.45 933.4 1068.05 933.4 1068.1 Q938.05 1072.35 932 1072.3 L928.95 1072.3 924.9 1073 924.85 1073 Q918.85 1074.65 915.8 1079.95 912.7 1085.35 914.3 1091.35 915.5 1095.9 918.9 1098.8 L921.25 1100.45 Q926.6 1103.55 932.6 1101.95 L932.65 1101.95 Q936.55 1100.9 938.85 1098.2 945.7 1090 946 1100.45 946.35 1111 936.45 1120.35 L935.4 1121.3 931.7 1124.2 930.9 1124.8 Q926.35 1127.95 921.25 1130.1 L919.4 1130.85 Q908.7 1134.95 895.7 1134.95 L894.1 1134.95 Q882.3 1134.7 872.45 1131.05 L870.2 1130.15 Q864.65 1127.75 859.8 1124.2 L858.1 1122.95 855.4 1120.75 Q845.05 1111.25 844.85 1098.8 845.45 1090.8 852.75 1098.75 854.75 1100.95 858.7 1102 L858.75 1102 Q864.75 1103.6 870.1 1100.5 871.4 1099.75 872.5 1098.8 875.9 1095.9 877.05 1091.4 878.65 1085.4 875.55 1080 872.5 1074.7 866.5 1073.05 L866.45 1073.05 861.4 1072.3 860.45 1072.3 Q854.1 1072.65 858.1 1068.05 L859.8 1066.45 Q868.4 1058.75 879.05 1055.55 M882.85 1098.1 L883 1098.8 Q883.75 1102.3 886.45 1105 888.6 1107.15 891.25 1108.1 L890.4 1109.1 888.35 1110.6 Q886.9 1111.25 885.25 1111.25 882.25 1111.25 880.1 1109.1 L878.75 1107.35 Q878.55 1107 878.2 1106.9 L877.55 1107 872.95 1109.55 Q872.6 1109.75 872.55 1110.1 872.4 1110.4 872.6 1110.75 L874.1 1112.95 875.15 1114.1 Q879.3 1118.3 885.25 1118.3 891.15 1118.3 895.4 1114.1 L895.7 1113.8 896 1114.1 Q900.2 1118.3 906.1 1118.3 912 1118.3 916.25 1114.1 L917.3 1112.95 918.8 1110.65 918.85 1110 918.4 1109.5 913.7 1107.05 913 1107 912.5 1107.45 911.25 1109.1 Q909.1 1111.25 906.1 1111.25 904.45 1111.25 903.05 1110.6 901.95 1110.05 901 1109.1 L900.15 1108.1 Q902.8 1107.15 904.95 1105 907.65 1102.3 908.45 1098.8 L908.55 1098.1 908.75 1095.75 908.75 1094.85 Q908.4 1092.45 904.95 1090.75 901.1 1088.9 895.7 1088.9 890.3 1088.9 886.45 1090.75 882.95 1092.45 882.65 1094.85 L882.65 1095.75 882.85 1098.1"/>
+ <path stroke="none" fill="#FFFFFF" d="M928.5 1083.15 Q926.05 1083.15 924.4 1084.85 922.7 1086.55 922.7 1088.95 922.7 1091.35 924.4 1093.1 926.05 1094.8 928.5 1094.8 930.9 1094.8 932.55 1093.1 934.3 1091.35 934.3 1088.95 934.3 1086.55 932.55 1084.85 930.9 1083.15 928.5 1083.15 M928.35 1078.65 Q932.2 1078.65 934.8 1081.35 937.6 1084.1 937.6 1087.95 937.6 1091.75 934.8 1094.5 932.2 1097.2 928.35 1097.2 924.5 1097.2 921.8 1094.5 919.1 1091.75 919.1 1087.95 919.1 1084.1 921.8 1081.35 924.5 1078.65 928.35 1078.65 M863 1078.7 Q866.85 1078.7 869.55 1081.4 872.25 1084.15 872.25 1088 872.25 1091.8 869.55 1094.55 866.85 1097.25 863 1097.25 859.15 1097.25 856.55 1094.55 853.75 1091.8 853.75 1088 853.75 1084.15 856.55 1081.4 859.15 1078.7 863 1078.7 M862.85 1083.2 Q860.45 1083.2 858.8 1084.9 857.05 1086.6 857.05 1089 857.05 1091.4 858.8 1093.15 860.45 1094.85 862.85 1094.85 865.3 1094.85 866.95 1093.15 868.65 1091.4 868.65 1089 868.65 1086.6 866.95 1084.9 865.3 1083.2 862.85 1083.2"/>
+ <path stroke="none" fill="#5B5B5B" d="M862.85 1083.2 Q865.3 1083.2 866.95 1084.9 868.65 1086.6 868.65 1089 868.65 1091.4 866.95 1093.15 865.3 1094.85 862.85 1094.85 860.45 1094.85 858.8 1093.15 857.05 1091.4 857.05 1089 857.05 1086.6 858.8 1084.9 860.45 1083.2 862.85 1083.2 M928.5 1083.15 Q930.9 1083.15 932.55 1084.85 934.3 1086.55 934.3 1088.95 934.3 1091.35 932.55 1093.1 930.9 1094.8 928.5 1094.8 926.05 1094.8 924.4 1093.1 922.7 1091.35 922.7 1088.95 922.7 1086.55 924.4 1084.85 926.05 1083.15 928.5 1083.15"/>
+ <path stroke="none" fill="#545454" d="M882.85 1098.1 L882.65 1095.75 882.65 1094.85 Q882.95 1092.45 886.45 1090.75 890.3 1088.9 895.7 1088.9 901.1 1088.9 904.95 1090.75 908.4 1092.45 908.75 1094.85 L908.75 1095.75 908.55 1098.1 Q907.85 1096.2 904.95 1094.75 901.1 1092.9 895.7 1092.9 890.3 1092.9 886.45 1094.75 883.55 1096.15 882.85 1098.1"/>
+ <path stroke="none" fill="#464646" d="M891.25 1108.1 Q888.6 1107.15 886.45 1105 883.75 1102.3 883 1098.8 L882.85 1098.1 Q883.55 1096.15 886.45 1094.75 890.3 1092.9 895.7 1092.9 901.1 1092.9 904.95 1094.75 907.85 1096.2 908.55 1098.1 L908.45 1098.8 Q907.65 1102.3 904.95 1105 902.8 1107.15 900.15 1108.1 895.9 1109.85 891.25 1108.1"/>
+ <path stroke="none" fill="#383838" d="M891.25 1108.1 Q895.9 1109.85 900.15 1108.1 L901 1109.1 Q901.95 1110.05 903.05 1110.6 904.45 1111.25 906.1 1111.25 909.1 1111.25 911.25 1109.1 L912.5 1107.45 913 1107 913.7 1107.05 918.4 1109.5 918.85 1110 918.8 1110.65 917.3 1112.95 916.25 1114.1 Q912 1118.3 906.1 1118.3 900.2 1118.3 896 1114.1 L895.7 1113.8 895.4 1114.1 Q891.15 1118.3 885.25 1118.3 879.3 1118.3 875.15 1114.1 L874.1 1112.95 872.6 1110.75 Q872.4 1110.4 872.55 1110.1 872.6 1109.75 872.95 1109.55 L877.55 1107 878.2 1106.9 Q878.55 1107 878.75 1107.35 L880.1 1109.1 Q882.25 1111.25 885.25 1111.25 886.9 1111.25 888.35 1110.6 L890.4 1109.1 891.25 1108.1"/>
+ <path stroke="none" fill="#955E34" d="M934.8 1138.7 Q918 1152 895.7 1152 873.4 1152 856.6 1138.7 862.9 1133.4 870.2 1130.15 L872.45 1131.05 Q882.3 1134.7 894.1 1134.95 L895.7 1134.95 Q908.7 1134.95 919.4 1130.85 L921.25 1130.1 Q928.5 1133.35 934.8 1138.7"/>
+ <path stroke="none" fill="#1B8045" d="M625.8 1021 L637.85 1020 Q645.35 1020 652.3 1021.45 L652.8 1021.55 658.15 1022.9 Q662.4 1024.2 666.45 1026.05 673 1029.1 678.95 1033.7 682.2 1036.2 685.25 1039.2 L685.3 1039.25 685.95 1039.9 689.45 1043.65 689.85 1044.2 Q695.55 1050.8 699.25 1058.3 705.85 1071.8 705.85 1088 L705.85 1090 705.85 1090.1 Q705.7 1096.3 704.55 1102.1 701.3 1118.3 690.25 1131.3 L685.9 1136.05 684.7 1137.25 684.65 1137.3 Q681.05 1140.75 677.25 1143.5 660.05 1156 637.85 1156 614.05 1156 596.1 1141.7 L591.15 1137.35 591.1 1137.3 589.8 1136.05 585.45 1131.25 585.45 1131.3 Q574.4 1118.3 571.25 1102.1 570.05 1096.35 569.9 1090.2 L569.85 1088 Q569.85 1071.8 576.5 1058.3 580.7 1049.7 587.55 1042.25 L588.05 1041.6 589.75 1039.9 590.45 1039.2 590.5 1039.15 Q593.6 1036.15 596.9 1033.6 602.8 1029.05 609.3 1026.05 613.35 1024.2 617.6 1022.9 L619.75 1022.35 619.85 1022.3 625.6 1021.05 625.8 1021"/>
+ <path stroke="none" fill="#EBCEB7" d="M687.2 1128.7 L683.05 1133.2 681.85 1134.4 674.9 1140.25 Q658.75 1152 637.85 1152 615.45 1152 598.6 1138.55 L593.85 1134.4 592.6 1133.2 588.5 1128.7 Q578.15 1116.5 575.15 1101.3 L580.35 1103.45 Q595.1 1109 613.6 1111.15 614.1 1106.7 617.35 1103.35 621.3 1099.45 626.85 1099.45 632.35 1099.45 636.25 1103.35 L637.85 1105.2 639.4 1103.35 Q643.35 1099.45 648.9 1099.45 654.4 1099.45 658.3 1103.35 661.65 1106.7 662.15 1111.15 680.65 1109 695.35 1103.45 L700.6 1101.3 Q697.55 1116.5 687.2 1128.7 M653.5 1106.25 L652.75 1105.7 Q651.6 1105.15 649.7 1105.7 L649.5 1105.75 Q647.1 1106.5 645 1108.6 L644.85 1108.75 Q644.3 1109.3 644 1110.05 643.65 1110.8 643.65 1111.75 643.65 1113.55 644.95 1114.8 646.2 1116.1 648.05 1116.1 649.75 1116.1 651.05 1114.9 L651.15 1114.8 Q652.9 1113.05 653.7 1111.15 L654.1 1110.05 654.2 1109.6 Q654.55 1108 654 1106.95 L653.5 1106.25 M624.65 1114.9 Q625.9 1116.1 627.65 1116.1 629.45 1116.1 630.7 1114.8 632 1113.55 632 1111.75 L631.7 1110.05 630.8 1108.75 630.7 1108.6 Q628.5 1106.45 626.1 1105.7 L625.95 1105.7 Q624.1 1105.15 622.95 1105.7 622.5 1105.9 622.2 1106.25 L621.65 1106.95 Q621.1 1108 621.5 1109.6 L621.6 1110.05 621.95 1111.15 Q622.75 1113.05 624.5 1114.8 L624.65 1114.9"/>
+ <path stroke="none" fill="#B19A89" d="M624.65 1114.9 L624.5 1114.8 Q622.75 1113.05 621.95 1111.15 L621.6 1110.05 621.5 1109.6 Q621.1 1108 621.65 1106.95 L622.2 1106.25 Q622.5 1105.9 622.95 1105.7 624.1 1105.15 625.95 1105.7 L626.1 1105.7 Q628.5 1106.45 630.7 1108.6 L630.8 1108.75 631.7 1110.05 632 1111.75 Q632 1113.55 630.7 1114.8 629.45 1116.1 627.65 1116.1 625.9 1116.1 624.65 1114.9 M653.5 1106.25 L654 1106.95 Q654.55 1108 654.2 1109.6 L654.1 1110.05 653.7 1111.15 Q652.9 1113.05 651.15 1114.8 L651.05 1114.9 Q649.75 1116.1 648.05 1116.1 646.2 1116.1 644.95 1114.8 643.65 1113.55 643.65 1111.75 643.65 1110.8 644 1110.05 644.3 1109.3 644.85 1108.75 L645 1108.6 Q647.1 1106.5 649.5 1105.75 L649.7 1105.7 Q651.6 1105.15 652.75 1105.7 L653.5 1106.25"/>
+ <path stroke="none" fill="#F0EDE7" d="M592.05 1111.1 L591.05 1106.45 Q590.95 1106.1 591.1 1105.8 591.25 1105.4 591.55 1105.25 L592.25 1105.2 606 1107.7 Q606.4 1107.75 606.7 1108.05 L607.15 1108.65 607.25 1109.45 606.3 1113.7 592.05 1111.1 M669.4 1113.7 Q668.85 1111.7 668.45 1109.45 L668.55 1108.65 669 1108.05 Q669.3 1107.75 669.7 1107.7 L683.45 1105.2 684.15 1105.25 684.6 1105.8 684.65 1106.45 683.65 1111.1 669.4 1113.7"/>
+ <path stroke="none" fill="#FFFCF5" d="M669.4 1113.7 L683.65 1111.1 Q681.65 1118.35 677.6 1124.5 L677.05 1125.05 676.35 1125.25 675.7 1125 Q671.5 1121.8 669.4 1113.7 M606.3 1113.7 Q604.2 1121.8 600 1125 L599.35 1125.25 598.65 1125.05 598.1 1124.5 Q594.05 1118.35 592.05 1111.1 L606.3 1113.7"/>
+ <path stroke="none" fill="#31DE7A" d="M573.9 1090 L573.85 1088 Q573.85 1072.75 580.1 1060.05 584.15 1051.7 590.95 1044.45 L590.95 1044.35 592.55 1042.7 593.25 1042 Q596.2 1039.15 599.3 1036.8 604.85 1032.5 611 1029.7 614.75 1027.95 618.75 1026.75 L620.7 1026.2 626.45 1024.95 637.85 1024 Q645.15 1024 651.95 1025.45 L657 1026.75 Q661 1027.95 664.75 1029.7 670.9 1032.55 676.5 1036.85 L682.45 1042.05 683.1 1042.7 686.45 1046.3 686.45 1046.4 Q692.05 1052.8 695.65 1060.05 701.85 1072.75 701.85 1088 L701.85 1090 Q701.35 1072.85 692.85 1059.05 688.85 1052.55 683.05 1046.75 L682 1045.75 682.05 1045.65 677.45 1041.65 Q668.95 1034.8 659 1031.4 656.15 1030.4 653.15 1029.7 L653.1 1029.7 645.85 1028.45 637.85 1028 629.85 1028.45 626.45 1028.95 622.75 1029.65 Q619.7 1030.35 616.8 1031.35 606.8 1034.75 598.25 1041.6 595.9 1043.45 593.7 1045.6 L593.7 1045.7 592.6 1046.75 Q586.8 1052.55 582.85 1059.05 574.35 1072.85 573.9 1090"/>
+ <path stroke="none" fill="#FFFFFF" d="M604.3 1043.75 Q604.3 1041.8 605.05 1040.15 605.7 1038.6 607 1037.3 609.7 1034.7 613.45 1034.7 L613.95 1034.75 Q616.3 1034.8 618.25 1036 L618.3 1036.05 619.7 1037.1 619.95 1037.3 Q622.6 1040 622.6 1043.75 622.6 1047.55 619.95 1050.15 L619.7 1050.4 618.85 1051.1 Q616.45 1052.9 613.45 1052.9 609.7 1052.9 607 1050.15 604.3 1047.55 604.3 1043.75 M608.75 1043.95 Q608.75 1046.3 610.45 1047.95 612.05 1049.65 614.45 1049.65 616.8 1049.65 618.5 1047.95 L618.6 1047.9 619.7 1046.3 Q620.2 1045.25 620.2 1043.95 620.2 1042.65 619.7 1041.55 619.3 1040.6 618.5 1039.85 L618.25 1039.65 Q616.65 1038.25 614.45 1038.25 612.05 1038.25 610.45 1039.85 608.75 1041.5 608.75 1043.95 M671.4 1043.75 Q671.4 1047.55 668.75 1050.15 666.05 1052.9 662.25 1052.9 659.15 1052.9 656.85 1051.1 L655.85 1050.15 Q653.15 1047.55 653.15 1043.75 653.15 1040 655.85 1037.3 656.6 1036.55 657.4 1036.1 L657.5 1036 Q659.4 1034.8 661.75 1034.75 L662.25 1034.7 Q666.05 1034.7 668.75 1037.3 670.05 1038.65 670.7 1040.2 671.4 1041.8 671.4 1043.75 M667 1043.95 Q667 1041.5 665.3 1039.85 663.65 1038.25 661.25 1038.25 659.15 1038.25 657.45 1039.65 L657.2 1039.85 Q655.5 1041.5 655.5 1043.95 655.5 1046.3 657.15 1047.9 L657.2 1047.95 Q658.95 1049.65 661.25 1049.65 663.65 1049.65 665.3 1047.95 667 1046.3 667 1043.95"/>
+ <path stroke="none" fill="#2ECC71" d="M701.85 1090 Q701.7 1095.85 700.6 1101.3 L695.35 1103.45 Q680.65 1109 662.15 1111.15 661.65 1106.7 658.3 1103.35 654.4 1099.45 648.9 1099.45 643.35 1099.45 639.4 1103.35 L637.85 1105.2 636.25 1103.35 Q632.35 1099.45 626.85 1099.45 621.3 1099.45 617.35 1103.35 614.1 1106.7 613.6 1111.15 595.1 1109 580.35 1103.45 L575.15 1101.3 Q574.05 1095.85 573.9 1090 574.35 1072.85 582.85 1059.05 586.8 1052.55 592.6 1046.75 L593.7 1045.7 593.7 1045.6 Q595.9 1043.45 598.25 1041.6 606.8 1034.75 616.8 1031.35 619.7 1030.35 622.75 1029.65 L622.95 1029.95 Q627.65 1034.85 627.65 1041.75 627.6 1048.7 622.95 1053.5 L622.7 1053.8 622.35 1054.15 622.1 1054.35 Q620.3 1055.95 618.35 1057 L619.65 1064.05 618.35 1065.3 Q617.7 1066.1 617.6 1067.2 L617.6 1067.6 617.6 1067.95 Q617.7 1068.65 618.05 1069.25 618.6 1070.1 619.4 1070.25 620.25 1070.4 620.9 1069.6 L621 1069.5 623 1075.7 Q624.3 1079.2 625.7 1081.95 624.5 1082.75 623.8 1083.7 L623.85 1083.6 Q622.9 1084.6 622.8 1086.1 L622.8 1086.2 622.8 1086.45 622.8 1086.65 622.8 1086.9 Q622.9 1087.75 623.4 1088.55 L623.45 1088.6 Q624.3 1089.95 625.55 1090.1 L625.6 1090.15 Q627.15 1090.5 628.45 1089.1 L628.55 1088.95 629.2 1088.4 629.55 1088.25 629.7 1088.2 Q633.45 1092.5 637.85 1092.5 642.25 1092.5 646.05 1088.15 L646.2 1088.2 646.6 1088.4 647.25 1089 647.3 1089.05 Q648.45 1090.5 650.1 1090.15 L650.15 1090.1 Q651.4 1089.95 652.3 1088.6 L652.3 1088.55 652.9 1087 652.9 1086.9 652.95 1086.45 652.9 1085.95 Q652.75 1084.6 652 1083.7 L651.95 1083.65 Q651.2 1082.75 650.05 1081.95 L652.7 1075.7 654.75 1069.4 654.9 1069.6 Q655.5 1070.4 656.35 1070.25 657.15 1070.1 657.7 1069.25 L658.15 1067.95 658.2 1067.65 658.15 1067.2 Q658.05 1066.1 657.45 1065.3 L656.1 1064 657.35 1057 Q655.15 1055.8 653.25 1053.9 L653.1 1053.75 Q648.1 1048.85 648.1 1041.75 648.1 1034.65 653.1 1029.7 L653.15 1029.7 Q656.15 1030.4 659 1031.4 668.95 1034.8 677.45 1041.65 L682.05 1045.65 682 1045.75 683.05 1046.75 Q688.85 1052.55 692.85 1059.05 701.35 1072.85 701.85 1090 M604.3 1043.75 Q604.3 1047.55 607 1050.15 609.7 1052.9 613.45 1052.9 616.45 1052.9 618.85 1051.1 L619.7 1050.4 619.95 1050.15 Q622.6 1047.55 622.6 1043.75 622.6 1040 619.95 1037.3 L619.7 1037.1 618.3 1036.05 618.25 1036 Q616.3 1034.8 613.95 1034.75 L613.45 1034.7 Q609.7 1034.7 607 1037.3 605.7 1038.6 605.05 1040.15 604.3 1041.8 604.3 1043.75 M671.4 1043.75 Q671.4 1041.8 670.7 1040.2 670.05 1038.65 668.75 1037.3 666.05 1034.7 662.25 1034.7 L661.75 1034.75 Q659.4 1034.8 657.5 1036 L657.4 1036.1 Q656.6 1036.55 655.85 1037.3 653.15 1040 653.15 1043.75 653.15 1047.55 655.85 1050.15 L656.85 1051.1 Q659.15 1052.9 662.25 1052.9 666.05 1052.9 668.75 1050.15 671.4 1047.55 671.4 1043.75"/>
+ <path stroke="none" fill="#30D776" d="M622.75 1029.65 L626.45 1028.95 629.85 1028.45 637.85 1028 645.85 1028.45 653.1 1029.7 Q648.1 1034.65 648.1 1041.75 648.1 1048.85 653.1 1053.75 L653.25 1053.9 Q655.15 1055.8 657.35 1057 L656.1 1064 652.95 1061.85 Q646.65 1058.45 637.9 1058.45 629.05 1058.45 622.9 1061.85 621 1062.9 619.65 1064.05 L618.35 1057 Q620.3 1055.95 622.1 1054.35 L622.35 1054.15 622.7 1053.8 622.95 1053.5 Q627.6 1048.7 627.65 1041.75 627.65 1034.85 622.95 1029.95 L622.75 1029.65 M621 1069.5 Q621.7 1068.65 622.8 1067.95 L624.35 1067.25 624.35 1067.3 Q629.95 1065.1 637.9 1065.1 645.85 1065.1 651.5 1067.3 L651.45 1067.25 653 1067.95 654.75 1069.4 652.7 1075.7 650.05 1081.95 648.5 1081 Q644.05 1078.55 637.9 1078.55 631.65 1078.55 627.3 1081 L627.25 1081 Q626.35 1081.45 625.7 1081.95 624.3 1079.2 623 1075.7 L621 1069.5 M629.7 1088.2 L629.9 1088.15 Q633.2 1086.85 637.9 1086.85 642.6 1086.85 645.95 1088.15 L646.05 1088.15 Q642.25 1092.5 637.85 1092.5 633.45 1092.5 629.7 1088.2"/>
+ <path stroke="none" fill="#5B5B5B" d="M608.75 1043.95 Q608.75 1041.5 610.45 1039.85 612.05 1038.25 614.45 1038.25 616.65 1038.25 618.25 1039.65 L618.5 1039.85 Q619.3 1040.6 619.7 1041.55 620.2 1042.65 620.2 1043.95 620.2 1045.25 619.7 1046.3 L618.6 1047.9 618.5 1047.95 Q616.8 1049.65 614.45 1049.65 612.05 1049.65 610.45 1047.95 608.75 1046.3 608.75 1043.95 M667 1043.95 Q667 1046.3 665.3 1047.95 663.65 1049.65 661.25 1049.65 658.95 1049.65 657.2 1047.95 L657.15 1047.9 Q655.5 1046.3 655.5 1043.95 655.5 1041.5 657.2 1039.85 L657.45 1039.65 Q659.15 1038.25 661.25 1038.25 663.65 1038.25 665.3 1039.85 667 1041.5 667 1043.95"/>
+ <path stroke="none" fill="#28B463" d="M619.65 1064.05 Q621 1062.9 622.9 1061.85 629.05 1058.45 637.9 1058.45 646.65 1058.45 652.95 1061.85 L656.1 1064 657.45 1065.3 Q658.05 1066.1 658.15 1067.2 L658.2 1067.65 658.15 1067.95 657.7 1069.25 Q657.15 1070.1 656.35 1070.25 655.5 1070.4 654.9 1069.6 L654.75 1069.4 653 1067.95 651.45 1067.25 651.5 1067.3 Q645.85 1065.1 637.9 1065.1 629.95 1065.1 624.35 1067.3 L624.35 1067.25 622.8 1067.95 Q621.7 1068.65 621 1069.5 L620.9 1069.6 Q620.25 1070.4 619.4 1070.25 618.6 1070.1 618.05 1069.25 617.7 1068.65 617.6 1067.95 L617.6 1067.6 617.6 1067.2 Q617.7 1066.1 618.35 1065.3 L619.65 1064.05 M625.7 1081.95 Q626.35 1081.45 627.25 1081 L627.3 1081 Q631.65 1078.55 637.9 1078.55 644.05 1078.55 648.5 1081 L650.05 1081.95 Q651.2 1082.75 651.95 1083.65 L652 1083.7 Q652.75 1084.6 652.9 1085.95 L652.95 1086.45 652.9 1086.9 652.9 1087 652.3 1088.55 652.3 1088.6 Q651.4 1089.95 650.15 1090.1 L650.1 1090.15 Q648.45 1090.5 647.3 1089.05 L647.25 1089 646.6 1088.4 646.2 1088.2 646.05 1088.15 645.95 1088.15 Q642.6 1086.85 637.9 1086.85 633.2 1086.85 629.9 1088.15 L629.7 1088.2 629.55 1088.25 629.2 1088.4 628.55 1088.95 628.45 1089.1 Q627.15 1090.5 625.6 1090.15 L625.55 1090.1 Q624.3 1089.95 623.45 1088.6 L623.4 1088.55 Q622.9 1087.75 622.8 1086.9 L622.8 1086.65 622.8 1086.45 622.8 1086.2 622.8 1086.1 Q622.9 1084.6 623.85 1083.6 L623.8 1083.7 Q624.5 1082.75 625.7 1081.95"/>
+ <path stroke="none" fill="#6D4526" d="M432.05 1039.9 Q451.95 1059.8 451.95 1088 L451.95 1090 451.95 1090.1 Q451.5 1105.35 445.15 1118.2 L445.15 1118.25 Q440.25 1127.8 432.1 1136 L432.05 1136.05 428.45 1139.45 425.05 1142.3 425 1142.3 417.25 1147.55 Q402.35 1156 383.95 1156 365.6 1156 350.75 1147.5 346.7 1145.2 342.95 1142.35 L342.95 1142.3 339.6 1139.55 335.85 1136.05 Q327.65 1127.85 322.9 1118.3 316.4 1105.45 316 1090.2 L315.95 1088 Q315.95 1059.8 335.85 1039.9 355.8 1020 383.95 1020 412.15 1020 432.05 1039.9"/>
+ <path stroke="none" fill="#BD7841" d="M320 1090 L319.95 1088 Q319.95 1061.45 338.65 1042.7 357.45 1024 383.95 1024 410.5 1024 429.2 1042.7 447.95 1061.45 447.95 1088 L447.95 1090 Q447.25 1064.75 429.2 1046.7 410.5 1028 383.95 1028 357.45 1028 338.65 1046.7 320.65 1064.75 320 1090"/>
+ <path stroke="none" fill="#8E5A32" d="M377.65 1047.75 L378.25 1048.8 Q379.3 1050.95 379.05 1053.05 378.75 1055.5 376.95 1056.6 375.15 1057.65 372.9 1056.65 370.9 1055.8 369.55 1053.8 L368.95 1052.75 Q366.4 1048.3 365.85 1044.4 365.3 1040.5 367.1 1039.5 368.9 1038.4 371.95 1040.85 375.1 1043.25 377.65 1047.75 M397.35 1055.45 L396.4 1056.95 Q394.4 1059.95 391.4 1061.25 388 1062.7 385.25 1061.15 382.5 1059.55 382.1 1055.9 381.7 1052.6 383.3 1049.4 L384.2 1047.85 Q388.1 1041.1 392.7 1037.45 397.4 1033.8 400.15 1035.4 402.9 1036.95 402 1042.8 401.25 1048.7 397.35 1055.45"/>
+ <path stroke="none" fill="#A16639" d="M397.35 1055.45 Q401.25 1048.7 402 1042.8 402.9 1036.95 400.15 1035.4 397.4 1033.8 392.7 1037.45 388.1 1041.1 384.2 1047.85 L383.3 1049.4 Q381.7 1052.6 382.1 1055.9 382.5 1059.55 385.25 1061.15 388 1062.7 391.4 1061.25 394.4 1059.95 396.4 1056.95 L397.35 1055.45 M447.95 1090 Q447.55 1104.35 441.55 1116.4 436.95 1125.45 429.2 1133.2 L425.8 1136.45 422.55 1139.15 Q420.8 1130.1 411.5 1123.35 400.1 1115 383.95 1115 367.8 1115 356.35 1123.35 347.15 1130.1 345.4 1139.15 L342.2 1136.5 338.65 1133.2 Q330.95 1125.5 326.45 1116.5 320.35 1104.4 320 1090 320.65 1064.75 338.65 1046.7 357.45 1028 383.95 1028 410.5 1028 429.2 1046.7 447.25 1064.75 447.95 1090 M377.65 1047.75 Q375.1 1043.25 371.95 1040.85 368.9 1038.4 367.1 1039.5 365.3 1040.5 365.85 1044.4 366.4 1048.3 368.95 1052.75 L369.55 1053.8 Q370.9 1055.8 372.9 1056.65 375.15 1057.65 376.95 1056.6 378.75 1055.5 379.05 1053.05 379.3 1050.95 378.25 1048.8 L377.65 1047.75"/>
+ <path stroke="none" fill="#EBCEB7" d="M422.55 1139.15 Q419 1141.9 415.25 1144.05 401.25 1152 383.95 1152 366.7 1152 352.7 1144 348.9 1141.85 345.4 1139.15 347.15 1130.1 356.35 1123.35 367.8 1115 383.95 1115 400.1 1115 411.5 1123.35 420.8 1130.1 422.55 1139.15 M377.05 1133.65 Q379.9 1136.5 383.95 1136.5 387.95 1136.5 390.8 1133.65 393.65 1130.8 393.65 1126.8 393.65 1125.3 393.25 1123.95 L393 1123.6 392.6 1123.5 392 1123.5 391.55 1123.65 391.35 1124.1 Q391.2 1126.85 389.2 1128.8 387 1131 383.95 1131 380.85 1131 378.7 1128.8 376.7 1126.85 376.5 1124.1 L376.3 1123.65 375.85 1123.5 375.25 1123.5 374.85 1123.6 374.65 1123.95 Q374.25 1125.3 374.25 1126.8 374.25 1130.85 377.05 1133.65 M364.7 1142.75 Q368.45 1142.75 371.15 1140.05 L372.05 1139 372.25 1138.4 372 1137.75 Q371.8 1137.5 371.45 1137.45 L370.8 1137.55 Q368.95 1138.5 366.7 1138.5 363.1 1138.5 360.5 1135.85 358.4 1133.8 357.95 1131.05 L357.65 1130.5 357.05 1130.2 356.4 1130.4 356 1130.9 Q355.6 1132.2 355.6 1133.65 355.6 1137.4 358.25 1140.05 L358.3 1140.1 Q360.95 1142.75 364.7 1142.75 M403.2 1142.75 Q406.95 1142.75 409.6 1140.1 L409.65 1140.05 Q412.3 1137.4 412.3 1133.65 412.3 1132.2 411.9 1130.9 L411.5 1130.4 410.85 1130.2 410.25 1130.5 409.95 1131.05 Q409.5 1133.8 407.4 1135.85 404.8 1138.5 401.2 1138.5 398.95 1138.5 397.1 1137.55 L396.45 1137.45 395.9 1137.75 Q395.65 1138 395.65 1138.4 395.6 1138.7 395.85 1139 L396.75 1140.05 Q399.45 1142.75 403.2 1142.75"/>
+ <path stroke="none" fill="#C6AD99" d="M403.2 1142.75 Q399.45 1142.75 396.75 1140.05 L395.85 1139 Q395.6 1138.7 395.65 1138.4 395.65 1138 395.9 1137.75 L396.45 1137.45 397.1 1137.55 Q398.95 1138.5 401.2 1138.5 404.8 1138.5 407.4 1135.85 409.5 1133.8 409.95 1131.05 L410.25 1130.5 410.85 1130.2 411.5 1130.4 411.9 1130.9 Q412.3 1132.2 412.3 1133.65 412.3 1137.4 409.65 1140.05 L409.6 1140.1 Q406.95 1142.75 403.2 1142.75 M377.05 1133.65 Q374.25 1130.85 374.25 1126.8 374.25 1125.3 374.65 1123.95 L374.85 1123.6 375.25 1123.5 375.85 1123.5 376.3 1123.65 376.5 1124.1 Q376.7 1126.85 378.7 1128.8 380.85 1131 383.95 1131 387 1131 389.2 1128.8 391.2 1126.85 391.35 1124.1 L391.55 1123.65 392 1123.5 392.6 1123.5 393 1123.6 393.25 1123.95 Q393.65 1125.3 393.65 1126.8 393.65 1130.8 390.8 1133.65 387.95 1136.5 383.95 1136.5 379.9 1136.5 377.05 1133.65 M364.7 1142.75 Q360.95 1142.75 358.3 1140.1 L358.25 1140.05 Q355.6 1137.4 355.6 1133.65 355.6 1132.2 356 1130.9 L356.4 1130.4 357.05 1130.2 357.65 1130.5 357.95 1131.05 Q358.4 1133.8 360.5 1135.85 363.1 1138.5 366.7 1138.5 368.95 1138.5 370.8 1137.55 L371.45 1137.45 Q371.8 1137.5 372 1137.75 L372.25 1138.4 372.05 1139 371.15 1140.05 Q368.45 1142.75 364.7 1142.75"/>
+ <path stroke="none" fill="#EBCEB7" d="M423.2 1088.7 Q423.2 1084.2 420.05 1081 416.8 1077.85 412.35 1077.85 407.85 1077.85 404.65 1081 401.45 1084.2 401.45 1088.7 401.45 1093.25 404.65 1096.4 407.85 1099.6 412.35 1099.6 416.8 1099.6 420.05 1096.4 423.2 1093.25 423.2 1088.7 M438.1 1069.3 Q437.65 1071 435.65 1072.6 431.95 1075.45 434.05 1082.35 434.9 1085.35 434.9 1088.7 434.9 1098.05 428.3 1104.65 421.7 1111.3 412.35 1111.3 403 1111.3 396.4 1104.65 389.75 1098.05 389.75 1088.7 389.75 1085.45 390.55 1082.55 402.75 1067.1 438.1 1069.3 M377.35 1082.55 Q378.15 1085.45 378.15 1088.7 378.15 1098.05 371.5 1104.65 364.9 1111.3 355.55 1111.3 346.2 1111.3 339.6 1104.65 333 1098.05 333 1088.7 333 1085.35 333.85 1082.35 335.95 1075.45 332.25 1072.6 330.25 1071 329.8 1069.3 365.15 1067.1 377.35 1082.55 M344.7 1088.7 Q344.7 1093.25 347.85 1096.4 351.1 1099.6 355.55 1099.6 360.05 1099.6 363.25 1096.4 366.45 1093.25 366.45 1088.7 366.45 1084.2 363.25 1081 360.05 1077.85 355.55 1077.85 351.1 1077.85 347.85 1081 344.7 1084.2 344.7 1088.7"/>
+ <path stroke="none" fill="#FFFFFF" d="M344.7 1088.7 Q344.7 1084.2 347.85 1081 351.1 1077.85 355.55 1077.85 360.05 1077.85 363.25 1081 366.45 1084.2 366.45 1088.7 366.45 1093.25 363.25 1096.4 360.05 1099.6 355.55 1099.6 351.1 1099.6 347.85 1096.4 344.7 1093.25 344.7 1088.7 M423.2 1088.7 Q423.2 1093.25 420.05 1096.4 416.8 1099.6 412.35 1099.6 407.85 1099.6 404.65 1096.4 401.45 1093.25 401.45 1088.7 401.45 1084.2 404.65 1081 407.85 1077.85 412.35 1077.85 416.8 1077.85 420.05 1081 423.2 1084.2 423.2 1088.7 M416.9 1088.7 Q416.9 1086.15 415.05 1084.35 413.25 1082.55 410.7 1082.55 408.15 1082.55 406.25 1084.35 404.45 1086.15 404.45 1088.7 404.45 1091.3 406.25 1093.15 408.15 1094.95 410.7 1094.95 413.25 1094.95 415.05 1093.15 416.9 1091.3 416.9 1088.7 M351 1088.7 Q351 1091.3 352.85 1093.15 354.65 1094.95 357.2 1094.95 359.75 1094.95 361.65 1093.15 363.45 1091.3 363.45 1088.7 363.45 1086.15 361.65 1084.35 359.75 1082.55 357.2 1082.55 354.65 1082.55 352.85 1084.35 351 1086.15 351 1088.7"/>
+ <path stroke="none" fill="#5B5B5B" d="M351 1088.7 Q351 1086.15 352.85 1084.35 354.65 1082.55 357.2 1082.55 359.75 1082.55 361.65 1084.35 363.45 1086.15 363.45 1088.7 363.45 1091.3 361.65 1093.15 359.75 1094.95 357.2 1094.95 354.65 1094.95 352.85 1093.15 351 1091.3 351 1088.7 M416.9 1088.7 Q416.9 1091.3 415.05 1093.15 413.25 1094.95 410.7 1094.95 408.15 1094.95 406.25 1093.15 404.45 1091.3 404.45 1088.7 404.45 1086.15 406.25 1084.35 408.15 1082.55 410.7 1082.55 413.25 1082.55 415.05 1084.35 416.9 1086.15 416.9 1088.7"/>
+ <path stroke="none" fill="#DEC2AD" d="M390.55 1082.55 Q392.05 1077.05 396.4 1072.75 401.9 1067.2 415.05 1064.3 424.25 1062.5 430.7 1063.35 437.15 1064.1 438.05 1067.45 438.3 1068.4 438.1 1069.3 402.75 1067.1 390.55 1082.55 M377.35 1082.55 Q365.15 1067.1 329.8 1069.3 329.6 1068.4 329.85 1067.45 330.75 1064.1 337.2 1063.35 343.65 1062.5 352.85 1064.3 366 1067.2 371.5 1072.75 375.85 1077.05 377.35 1082.55"/>
+ <path stroke="none" fill="#FF9900" d="M370.45 1101.85 Q371.1 1097.65 374.25 1094.4 L375.85 1093.05 Q379.35 1090.45 383.95 1090.45 388.55 1090.45 392.05 1093.05 L393.6 1094.4 Q396.8 1097.65 397.4 1101.85 L396.25 1103.4 Q395.45 1100.35 392.9 1097.95 L391.5 1096.8 Q388.2 1094.5 383.95 1094.5 379.7 1094.5 376.45 1096.8 L374.95 1097.95 Q372.45 1100.35 371.65 1103.4 370.75 1102.7 370.45 1101.85"/>
+ <path stroke="none" fill="#F39100" d="M371.65 1103.4 Q372.45 1100.35 374.95 1097.95 L376.45 1096.8 Q379.7 1094.5 383.95 1094.5 388.2 1094.5 391.5 1096.8 L392.9 1097.95 Q395.45 1100.35 396.25 1103.4 395.25 1104.2 393.6 1104.85 389.6 1106.5 383.95 1106.5 378.25 1106.5 374.25 1104.85 L371.65 1103.4"/>
+ <path stroke="none" fill="#E08600" d="M371.65 1103.4 L374.25 1104.85 Q378.25 1106.5 383.95 1106.5 389.6 1106.5 393.6 1104.85 395.25 1104.2 396.25 1103.4 L397.4 1101.85 397.6 1104.05 397.55 1104.95 Q397.3 1108 393.6 1110.15 389.6 1112.5 383.95 1112.5 378.25 1112.5 374.25 1110.15 370.6 1108 370.3 1104.95 L370.3 1104.05 Q370.3 1102.9 370.45 1101.85 370.75 1102.7 371.65 1103.4"/>
+ <path stroke="none" fill="#6D4526" d="M85.4 1035.45 L87.25 1034.05 Q104.8 1020.55 128 1020.55 151.25 1020.55 168.85 1034.1 L170.65 1035.5 Q173.45 1037.8 176.1 1040.45 L177.2 1041.6 Q184 1048.7 188.4 1056.85 L188.4 1056.9 Q196 1071.15 196 1088.55 L196 1090.55 196 1090.65 Q195.55 1106.5 188.7 1119.65 183.95 1128.8 176.1 1136.6 L173.7 1138.85 169.6 1142.4 Q151.7 1156.55 128 1156.55 104.3 1156.55 86.45 1142.4 L86.4 1142.4 82.3 1138.85 79.95 1136.6 Q60.75 1117.5 60.05 1090.75 L60 1088.55 Q60 1071.15 67.65 1056.9 L67.65 1056.85 Q72 1048.7 78.9 1041.55 L79.95 1040.45 85.45 1035.45 85.4 1035.45"/>
+ <path stroke="none" fill="#BD7841" d="M192 1090.55 Q191.3 1065.35 173.25 1047.25 158.15 1032.2 138 1029.25 L128 1028.55 118 1029.25 Q97.85 1032.2 82.75 1047.25 64.7 1065.35 64.05 1090.55 L64 1088.55 Q64 1072.2 71.15 1058.75 75.3 1051 81.85 1044.2 L82.75 1043.25 Q85.3 1040.7 87.95 1038.55 L89.65 1037.2 Q106.2 1024.55 128 1024.55 149.85 1024.55 166.4 1037.25 L168.1 1038.6 173.25 1043.25 174.2 1044.25 Q180.7 1051 184.85 1058.75 192 1072.2 192 1088.55 L192 1090.55"/>
+ <path stroke="none" fill="#A16639" d="M192 1090.55 Q191.6 1105.45 185.15 1117.8 180.65 1126.4 173.25 1133.75 L171 1135.9 167.1 1139.25 Q150.9 1125.5 128 1125.5 105.15 1125.5 88.9 1139.25 L85 1135.9 82.75 1133.75 Q64.7 1115.75 64.05 1090.55 64.7 1065.35 82.75 1047.25 97.85 1032.2 118 1029.25 L128 1028.55 138 1029.25 Q158.15 1032.2 173.25 1047.25 191.3 1065.35 192 1090.55 M145.5 1060.35 Q145.5 1050 140.35 1042.75 135.25 1035.5 128 1035.5 120.75 1035.5 115.6 1042.75 110.5 1050 110.5 1060.35 L110.55 1062.05 Q110.9 1083.1 115.6 1098.3 120.75 1115 128 1115 135.25 1115 140.35 1098.3 145.1 1083.1 145.5 1062.05 L145.5 1060.35"/>
+ <path stroke="none" fill="#B6733F" d="M145.5 1060.35 L145.5 1062.05 Q145.1 1083.1 140.35 1098.3 135.25 1115 128 1115 120.75 1115 115.6 1098.3 110.9 1083.1 110.55 1062.05 L110.5 1060.35 Q110.5 1050 115.6 1042.75 120.75 1035.5 128 1035.5 135.25 1035.5 140.35 1042.75 145.5 1050 145.5 1060.35"/>
+ <path stroke="none" fill="#955E34" d="M88.9 1139.25 Q105.15 1125.5 128 1125.5 150.9 1125.5 167.1 1139.25 150.3 1152.55 128 1152.55 105.7 1152.55 88.9 1139.25"/>
+ <path stroke="none" fill="#464646" d="M123.5 1121.8 L123.2 1121.7 123.25 1121.7 Q120.35 1120.65 118.05 1118.35 115.7 1116.05 114.75 1113.15 114.6 1112.75 114.8 1112.4 L115.3 1111.9 116.05 1111.85 119.85 1112.95 Q128.4 1114.85 136.2 1112.95 L136.25 1112.95 140.05 1111.9 140.75 1111.95 141.3 1112.45 141.3 1113.2 Q140.25 1116.05 137.95 1118.35 135.65 1120.65 132.8 1121.7 L132.85 1121.7 132.5 1121.85 129.8 1122.5 128.85 1122.6 126.7 1122.55 125.95 1122.45 123.5 1121.8"/>
+ <path stroke="none" fill="#383838" d="M123.5 1121.8 L125.95 1122.45 126.7 1122.55 128.85 1122.6 129.8 1122.5 132.5 1121.85 133.3 1122.75 Q134.25 1123.7 135.35 1124.25 136.75 1124.9 138.4 1124.9 141.4 1124.9 143.55 1122.75 L144.8 1121.1 145.3 1120.65 146 1120.7 150.7 1123.15 151.15 1123.65 151.1 1124.3 149.6 1126.6 148.55 1127.75 Q144.3 1131.95 138.4 1131.95 132.5 1131.95 128.3 1127.75 L128 1127.45 127.7 1127.75 Q123.45 1131.95 117.55 1131.95 111.6 1131.95 107.45 1127.75 L106.4 1126.6 104.9 1124.4 Q104.7 1124.05 104.85 1123.75 104.9 1123.4 105.25 1123.2 L109.85 1120.65 110.5 1120.55 111.05 1121 112.4 1122.75 Q114.55 1124.9 117.55 1124.9 119.2 1124.9 120.65 1124.25 L122.7 1122.75 123.5 1121.8"/>
+ <path stroke="none" fill="#FFFFFF" d="M89.3 1080.35 Q89.3 1082.75 91 1084.4 92.7 1086.15 95.1 1086.15 97.5 1086.15 99.25 1084.4 100.95 1082.75 100.95 1080.35 100.95 1077.9 99.25 1076.25 97.5 1074.55 95.1 1074.55 92.7 1074.55 91 1076.25 89.3 1077.9 89.3 1080.35 M84.8 1080.2 Q84.8 1076.35 87.5 1073.65 90.25 1070.95 94.1 1070.95 97.9 1070.95 100.65 1073.65 103.35 1076.35 103.35 1080.2 103.35 1084.05 100.65 1086.65 97.9 1089.45 94.1 1089.45 90.25 1089.45 87.5 1086.65 84.8 1084.05 84.8 1080.2 M171.2 1080.2 Q171.2 1084.05 168.5 1086.65 165.75 1089.45 161.9 1089.45 158.1 1089.45 155.35 1086.65 152.65 1084.05 152.65 1080.2 152.65 1076.35 155.35 1073.65 158.1 1070.95 161.9 1070.95 165.75 1070.95 168.5 1073.65 171.2 1076.35 171.2 1080.2 M166.7 1080.35 Q166.7 1077.9 165 1076.25 163.3 1074.55 160.9 1074.55 158.5 1074.55 156.75 1076.25 155.05 1077.9 155.05 1080.35 155.05 1082.75 156.75 1084.4 158.5 1086.15 160.9 1086.15 163.3 1086.15 165 1084.4 166.7 1082.75 166.7 1080.35"/>
+ <path stroke="none" fill="#8E5A32" d="M84.8 1080.2 Q84.8 1084.05 87.5 1086.65 90.25 1089.45 94.1 1089.45 97.9 1089.45 100.65 1086.65 103.35 1084.05 103.35 1080.2 103.35 1076.35 100.65 1073.65 97.9 1070.95 94.1 1070.95 90.25 1070.95 87.5 1073.65 84.8 1076.35 84.8 1080.2 M79.15 1076.75 L79.15 1076.7 Q80.8 1070.7 86.1 1067.65 91.5 1064.55 97.5 1066.15 103.45 1067.7 106.6 1073.1 109.7 1078.45 108.1 1084.45 L108.1 1084.5 Q106.15 1091.7 100.6 1095.55 94.95 1099.55 89 1098 83 1096.4 80.1 1090.1 77.25 1083.95 79.15 1076.75 M171.2 1080.2 Q171.2 1076.35 168.5 1073.65 165.75 1070.95 161.9 1070.95 158.1 1070.95 155.35 1073.65 152.65 1076.35 152.65 1080.2 152.65 1084.05 155.35 1086.65 158.1 1089.45 161.9 1089.45 165.75 1089.45 168.5 1086.65 171.2 1084.05 171.2 1080.2 M176.85 1076.75 Q178.75 1083.95 175.9 1090.1 173 1096.4 167 1098 161.05 1099.55 155.4 1095.55 149.85 1091.7 147.9 1084.5 L147.9 1084.45 Q146.3 1078.45 149.4 1073.1 152.55 1067.7 158.5 1066.15 164.5 1064.55 169.9 1067.65 175.2 1070.7 176.85 1076.7 L176.85 1076.75"/>
+ <path stroke="none" fill="#5B5B5B" d="M89.3 1080.35 Q89.3 1077.9 91 1076.25 92.7 1074.55 95.1 1074.55 97.5 1074.55 99.25 1076.25 100.95 1077.9 100.95 1080.35 100.95 1082.75 99.25 1084.4 97.5 1086.15 95.1 1086.15 92.7 1086.15 91 1084.4 89.3 1082.75 89.3 1080.35 M166.7 1080.35 Q166.7 1082.75 165 1084.4 163.3 1086.15 160.9 1086.15 158.5 1086.15 156.75 1084.4 155.05 1082.75 155.05 1080.35 155.05 1077.9 156.75 1076.25 158.5 1074.55 160.9 1074.55 163.3 1074.55 165 1076.25 166.7 1077.9 166.7 1080.35"/>
+ <path stroke="none" fill="#FFDFC6" d="M134.95 1057.7 L133.9 1056.05 133.9 1056 Q132 1052.25 138.05 1049.35 147.9 1044.45 155.25 1032.2 L155.65 1031.85 156.15 1031.85 156.45 1032 Q149.1 1045.9 139.25 1053.05 135.75 1055.5 134.95 1057.7 M121.1 1057.7 Q120.25 1055.5 116.75 1053.05 106.9 1045.9 99.6 1032 L99.55 1032 Q99.7 1031.85 99.9 1031.85 L100.4 1031.85 100.8 1032.2 Q108.1 1044.45 117.95 1049.35 124 1052.25 122.1 1056 L122.1 1056.05 121.1 1057.7"/>
+ <path stroke="none" fill="#EBCEB7" d="M121.1 1057.7 Q119.65 1059.65 117.35 1060.75 112.05 1063.35 108.55 1058.8 L108.6 1058.8 Q98.8 1047.2 99.3 1032.55 99.3 1032.25 99.45 1032.05 L99.55 1032 99.6 1032 Q106.9 1045.9 116.75 1053.05 120.25 1055.5 121.1 1057.7 M156.45 1032 L156.55 1032.05 156.75 1032.55 Q157.2 1047.2 147.45 1058.8 143.95 1063.35 138.7 1060.75 136.4 1059.65 134.95 1057.7 135.75 1055.5 139.25 1053.05 149.1 1045.9 156.45 1032"/>
+ <path stroke="none" fill="#724828" d="M137.1 1144.7 L137.05 1144.75 Q136.5 1146.25 134.35 1145.8 132.9 1145.5 131.25 1144.45 L131.6 1146.45 131.65 1146.6 131.6 1148.1 131.2 1148.9 Q130.6 1149.4 129.5 1148.2 128.7 1147.25 128 1145.7 127.3 1147.25 126.45 1148.2 125.4 1149.4 124.8 1148.9 L124.4 1148.1 124.4 1146.6 124.4 1146.45 124.75 1144.45 Q123.15 1145.5 121.65 1145.8 119.5 1146.25 118.9 1144.75 L118.9 1144.7 Q118.4 1143.3 119.7 1140.85 121 1138.3 123.4 1136.3 127.8 1132.6 132.6 1136.3 135 1138.3 136.3 1140.85 137.6 1143.3 137.1 1144.7"/>
+ </g>
+</svg>
\ No newline at end of file
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bopacgks48iok"
+path="res://.godot/imported/round_nodetailsOutline.svg-e1416b3eca261def322fe817fe61bf3b.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/Vector/round_nodetailsOutline.svg"
+dest_files=["res://.godot/imported/round_nodetailsOutline.svg-e1416b3eca261def322fe817fe61bf3b.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
+svg/scale=1.0
+editor/scale_with_editor_scale=false
+editor/convert_colors_with_editor_theme=false
--- /dev/null
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <defs/>
+ <g>
+ <path stroke="none" fill="#E9BB00" d="M426.95 96.5 Q431.7 88.65 441.35 83.05 L443.5 81.85 Q446.9 80.45 451.65 83.05 456.9 86.05 460.55 92.4 463.5 97.45 464.05 102.4 463.55 106.5 461.1 108.35 L460.35 108.85 Q459.7 105.6 457.75 102.3 454.75 97.05 450.45 94.55 446.5 92.45 443.7 93.6 L441.95 94.55 Q436.55 97.7 432.95 101.75 L426.95 96.5 M303.95 102.4 Q304.45 97.45 307.4 92.4 311.05 86.05 316.3 83.05 321.05 80.45 324.45 81.85 L326.6 83.05 Q336.2 88.6 341 96.45 337.9 98.85 335 101.75 331.4 97.7 326 94.55 L324.25 93.6 Q321.45 92.45 317.5 94.55 313.2 97.05 310.2 102.3 308.25 105.6 307.6 108.85 L306.85 108.35 Q304.4 106.5 303.95 102.4"/>
+ <path stroke="none" fill="#CBA200" d="M432.95 101.75 Q436.55 97.7 441.95 94.55 L443.7 93.6 Q446.5 92.45 450.45 94.55 454.75 97.05 457.75 102.3 459.7 105.6 460.35 108.85 L459.05 109.6 Q451.15 114.15 443.55 115.2 439.4 108.15 433.25 102 L432.95 101.75 M307.6 108.85 Q308.25 105.6 310.2 102.3 313.2 97.05 317.5 94.55 321.45 92.45 324.25 93.6 L326 94.55 Q331.4 97.7 335 101.75 L334.7 102 Q328.55 108.15 324.4 115.2 316.8 114.15 308.9 109.6 L307.6 108.85"/>
+ <path stroke="none" fill="#FFCC00" d="M464.05 102.4 Q463.5 97.45 460.55 92.4 456.9 86.05 451.65 83.05 446.9 80.45 443.5 81.85 L441.35 83.05 Q431.7 88.65 426.95 96.5 L426.35 96 425.4 95.25 426.15 93.85 Q430.9 85.1 441.35 79.05 L443.5 77.85 Q446.9 76.45 451.65 79.05 456.9 82.05 460.55 88.4 464.2 94.65 464.15 100.65 L464.05 102.4 M341 96.45 Q336.2 88.6 326.6 83.05 L324.45 81.85 Q321.05 80.45 316.3 83.05 311.05 86.05 307.4 92.4 304.45 97.45 303.95 102.4 L303.8 100.65 Q303.75 94.65 307.4 88.4 311.05 82.05 316.3 79.05 321.05 76.45 324.45 77.85 L326.6 79.05 Q337.05 85.1 341.8 93.85 L342.55 95.25 341 96.45"/>
+ <path stroke="none" fill="#CBA200" d="M417.15 43.95 L416.95 44.8 Q415.8 49 412 51.25 L411.5 51.55 Q410.2 52.2 408.85 52.5 L402.3 71.15 402.3 71.2 Q401.8 72.45 400.65 73.05 L400.65 73.1 398.25 73.35 398.3 73.35 Q397.1 73.1 396.35 71.9 L396.3 71.8 Q395.65 70.7 395.95 69.45 L399.6 50.05 Q398.4 48.9 397.45 47.4 L397.45 47.35 Q396.55 45.8 396.25 44.25 L396.45 43.3 Q397.25 40.15 399.5 38.15 400.35 37.4 401.35 36.8 405.15 34.6 409.45 35.75 413.65 36.9 415.9 40.7 416.8 42.3 417.15 43.95 M350.8 43.95 Q351.15 42.3 352.05 40.7 354.25 36.9 358.5 35.75 362.8 34.6 366.55 36.85 L366.6 36.85 367.95 37.8 Q370.55 39.85 371.5 43.3 L371.7 44.2 Q371.4 45.85 370.5 47.4 L370.5 47.45 368.35 50.05 372.05 69.5 372 69.45 Q372.2 70.65 371.7 71.7 L371.55 71.95 371.6 71.95 Q370.9 73 369.7 73.4 L367.3 73.15 367.2 73.1 Q366.15 72.5 365.7 71.2 L365.65 71.2 359.15 52.5 Q357.5 52.15 355.95 51.3 L355.7 51.15 Q352.1 48.9 351 44.8 L350.8 43.95"/>
+ <path stroke="none" fill="#DBAF00" d="M350.8 43.95 Q350.05 40.1 352.05 36.7 354.25 32.9 358.5 31.75 362.8 30.6 366.55 32.85 L366.6 32.85 367.95 33.8 Q370.55 35.85 371.5 39.3 372.2 41.85 371.7 44.2 L371.5 43.3 Q370.55 39.85 367.95 37.8 L366.6 36.85 366.55 36.85 Q362.8 34.6 358.5 35.75 354.25 36.9 352.05 40.7 351.15 42.3 350.8 43.95 M396.25 44.25 Q395.75 41.85 396.45 39.3 397.25 36.15 399.5 34.15 400.35 33.4 401.35 32.8 405.15 30.6 409.45 31.75 413.65 32.9 415.9 36.7 417.9 40.1 417.15 43.95 416.8 42.3 415.9 40.7 413.65 36.9 409.45 35.75 405.15 34.6 401.35 36.8 400.35 37.4 399.5 38.15 397.25 40.15 396.45 43.3 L396.25 44.25"/>
+ <path stroke="none" fill="#EEBE00" d="M344.55 68 L424.6 68 Q422.7 88.6 413.2 104.05 401.35 123.35 384.55 123.35 367.8 123.35 355.95 104.05 346.4 88.6 344.55 68 M372 110.3 Q372.2 111.1 372.8 111.75 373.45 112.25 374.3 112.4 L380.5 113.05 382.1 112.7 Q382.85 112.25 383.2 111.45 L385.75 105.75 Q386.1 104.95 385.95 104.15 385.75 103.25 385.15 102.7 L380.5 98.5 Q379.85 97.9 379 97.85 378.15 97.75 377.4 98.15 L371.95 101.3 Q371.2 101.7 370.85 102.55 370.5 103.3 370.7 104.2 L372 110.3 M380.6 86.65 L381.05 85.1 Q381.05 84.25 380.6 83.55 L375.65 76.75 Q375.15 76.05 374.35 75.8 373.5 75.5 372.7 75.8 L364.75 78.35 Q363.9 78.65 363.4 79.35 362.9 80 362.9 80.85 L362.9 89.25 Q362.9 90.15 363.4 90.85 363.9 91.5 364.75 91.75 L372.7 94.35 Q373.5 94.6 374.35 94.35 375.15 94.1 375.65 93.45 L380.6 86.65 M393.25 102.6 Q393.95 103.1 394.8 103.1 395.7 103.1 396.4 102.6 L406.1 95.55 Q406.75 95 407 94.2 407.25 93.4 407 92.6 L403.3 81.15 Q403.05 80.3 402.4 79.8 401.7 79.3 400.8 79.3 L388.75 79.3 Q387.85 79.3 387.2 79.8 386.5 80.3 386.25 81.15 L382.55 92.6 Q382.3 93.4 382.55 94.2 382.8 95 383.5 95.55 L393.25 102.6"/>
+ <path stroke="none" fill="#FFCC00" d="M393.25 102.6 L383.5 95.55 Q382.8 95 382.55 94.2 382.3 93.4 382.55 92.6 L386.25 81.15 Q386.5 80.3 387.2 79.8 387.85 79.3 388.75 79.3 L400.8 79.3 Q401.7 79.3 402.4 79.8 403.05 80.3 403.3 81.15 L407 92.6 Q407.25 93.4 407 94.2 406.75 95 406.1 95.55 L396.4 102.6 Q395.7 103.1 394.8 103.1 393.95 103.1 393.25 102.6 M424.6 68 L439.35 68 Q447.75 68 448 76.2 L448 183.85 Q447.75 192 439.35 192 L430 192 430.1 191.9 Q425.15 190 425.2 184.45 424.9 181.35 424.1 178.4 L423.65 176.85 Q422.5 173.45 420.7 170.35 417.9 165.6 413.5 161.5 401.7 150.6 385.05 150.6 368.4 150.6 356.55 161.5 352.1 165.6 349.35 170.4 347.85 173 346.85 175.75 L345.85 179.1 Q345.2 181.7 344.95 184.45 343.4 190.15 339.1 192 L328.65 192 Q320.25 192 320 183.85 L320 76.2 Q320.25 68 328.65 68 L344.55 68 Q346.4 88.6 355.95 104.05 367.8 123.35 384.55 123.35 401.35 123.35 413.2 104.05 422.7 88.6 424.6 68 M380.6 86.65 L375.65 93.45 Q375.15 94.1 374.35 94.35 373.5 94.6 372.7 94.35 L364.75 91.75 Q363.9 91.5 363.4 90.85 362.9 90.15 362.9 89.25 L362.9 80.85 Q362.9 80 363.4 79.35 363.9 78.65 364.75 78.35 L372.7 75.8 Q373.5 75.5 374.35 75.8 375.15 76.05 375.65 76.75 L380.6 83.55 Q381.05 84.25 381.05 85.1 L380.6 86.65 M372 110.3 L370.7 104.2 Q370.5 103.3 370.85 102.55 371.2 101.7 371.95 101.3 L377.4 98.15 Q378.15 97.75 379 97.85 379.85 97.9 380.5 98.5 L385.15 102.7 Q385.75 103.25 385.95 104.15 386.1 104.95 385.75 105.75 L383.2 111.45 Q382.85 112.25 382.1 112.7 L380.5 113.05 374.3 112.4 Q373.45 112.25 372.8 111.75 372.2 111.1 372 110.3 M335.5 134.55 Q335.5 139.7 339.15 143.3 342.8 147 348 147 353.1 147 356.8 143.3 360.45 139.7 360.45 134.55 360.45 129.35 356.8 125.7 353.1 122.05 348 122.05 342.8 122.05 339.15 125.7 335.5 129.35 335.5 134.55 M432.5 134.55 Q432.5 129.35 428.85 125.7 425.2 122.05 420 122.05 414.9 122.05 411.2 125.7 407.55 129.35 407.55 134.55 407.55 139.7 411.2 143.3 414.9 147 420 147 425.2 147 428.85 143.3 432.5 139.7 432.5 134.55"/>
+ <path stroke="none" fill="#FFD738" d="M448 76.2 Q447.75 68 439.35 68 L424.6 68 344.55 68 328.65 68 Q320.25 68 320 76.2 L320 72.7 Q320 64 328.65 64 L439.35 64 Q448 64 448 72.7 L448 76.2"/>
+ <path stroke="none" fill="#FFFFFF" d="M335.5 134.55 Q335.5 129.35 339.15 125.7 342.8 122.05 348 122.05 353.1 122.05 356.8 125.7 360.45 129.35 360.45 134.55 360.45 139.7 356.8 143.3 353.1 147 348 147 342.8 147 339.15 143.3 335.5 139.7 335.5 134.55 M340.2 134.75 Q340.2 138.35 342.75 140.8 345.25 143.35 348.9 143.35 352.45 143.35 355 140.8 357.55 138.35 357.55 134.75 357.55 131.15 355 128.6 352.45 126.1 348.9 126.1 345.25 126.1 342.75 128.6 340.2 131.15 340.2 134.75 M432.5 134.55 Q432.5 139.7 428.85 143.3 425.2 147 420 147 414.9 147 411.2 143.3 407.55 139.7 407.55 134.55 407.55 129.35 411.2 125.7 414.9 122.05 420 122.05 425.2 122.05 428.85 125.7 432.5 129.35 432.5 134.55 M427.75 134.75 Q427.75 131.15 425.25 128.6 422.75 126.1 419.1 126.1 415.55 126.1 412.95 128.6 410.45 131.15 410.45 134.75 410.45 138.35 412.95 140.8 415.55 143.35 419.1 143.35 422.75 143.35 425.25 140.8 427.75 138.35 427.75 134.75"/>
+ <path stroke="none" fill="#5B5B5B" d="M427.75 134.75 Q427.75 138.35 425.25 140.8 422.75 143.35 419.1 143.35 415.55 143.35 412.95 140.8 410.45 138.35 410.45 134.75 410.45 131.15 412.95 128.6 415.55 126.1 419.1 126.1 422.75 126.1 425.25 128.6 427.75 131.15 427.75 134.75 M340.2 134.75 Q340.2 131.15 342.75 128.6 345.25 126.1 348.9 126.1 352.45 126.1 355 128.6 357.55 131.15 357.55 134.75 357.55 138.35 355 140.8 352.45 143.35 348.9 143.35 345.25 143.35 342.75 140.8 340.2 138.35 340.2 134.75"/>
+ <path stroke="none" fill="#D2A800" d="M339.1 192 Q343.4 190.15 344.95 184.45 345.2 181.7 345.85 179.1 L346.85 175.75 Q347.85 173 349.35 170.4 352.1 165.6 356.55 161.5 368.4 150.6 385.05 150.6 401.7 150.6 413.5 161.5 417.9 165.6 420.7 170.35 422.5 173.45 423.65 176.85 L424.1 178.4 Q424.9 181.35 425.2 184.45 425.15 190 430.1 191.9 L430 192 339.1 192 M403.5 161 Q402 159.5 399.05 160.35 396.1 161.15 393.45 163.8 L393.3 163.95 392.55 165 Q391.9 166.1 391.9 167.5 391.9 169.65 393.4 171.15 394.9 172.65 397.05 172.65 399.1 172.65 400.6 171.25 L400.75 171.1 Q403.4 168.45 404.2 165.5 404.95 162.95 403.9 161.45 L403.5 161 M369.4 171.25 Q370.9 172.65 372.95 172.65 375.1 172.65 376.6 171.15 378.1 169.65 378.1 167.5 378.1 166.1 377.5 165 L376.7 163.95 376.55 163.8 Q373.9 161.15 370.95 160.35 368 159.5 366.5 161 L366.15 161.45 Q365.05 162.95 365.8 165.5 366.6 168.45 369.25 171.1 L369.4 171.25"/>
+ <path stroke="none" fill="#A38200" d="M369.4 171.25 L369.25 171.1 Q366.6 168.45 365.8 165.5 365.05 162.95 366.15 161.45 L366.5 161 Q368 159.5 370.95 160.35 373.9 161.15 376.55 163.8 L376.7 163.95 377.5 165 Q378.1 166.1 378.1 167.5 378.1 169.65 376.6 171.15 375.1 172.65 372.95 172.65 370.9 172.65 369.4 171.25 M403.5 161 L403.9 161.45 Q404.95 162.95 404.2 165.5 403.4 168.45 400.75 171.1 L400.6 171.25 Q399.1 172.65 397.05 172.65 394.9 172.65 393.4 171.15 391.9 169.65 391.9 167.5 391.9 166.1 392.55 165 L393.3 163.95 393.45 163.8 Q396.1 161.15 399.05 160.35 402 159.5 403.5 161"/>
+ <path stroke="none" fill="#F53707" d="M1088 76.2 L1088 72.7 Q1088 64 1096.65 64 L1207.35 64 Q1216 64 1216 72.7 L1216 76.2 Q1215.75 68 1207.35 68 L1096.65 68 Q1088.25 68 1088 76.2"/>
+ <path stroke="none" fill="#D23007" d="M1088 76.2 Q1088.25 68 1096.65 68 L1207.35 68 Q1215.75 68 1216 76.2 L1216 183.85 Q1215.75 192 1207.35 192 L1192.2 192 1192.35 189.5 Q1192.35 178.3 1180.5 170.35 1174.2 166.1 1166.45 164.15 1168.1 161.95 1169 159.45 L1169.8 156.2 1169.9 155.35 1170 153.9 1170 153.4 1170 147.4 1170 147 1170 143.9 1173.25 147.65 Q1180.4 154.85 1187.25 153.05 1194.1 151.2 1196.65 141.35 1199.15 131.55 1195.9 119.45 L1195.75 118.9 Q1193.9 112.35 1187.95 108.9 1181.75 105.3 1174.9 107.15 1168.1 108.95 1164.5 115.2 1161.05 121.1 1162.65 127.8 L1162.8 128.35 1163.1 129.35 Q1158.35 125.5 1152 125.5 1145.75 125.5 1141 129.25 L1141.2 128.4 1141.4 127.85 Q1143.05 121.15 1139.55 115.2 1136.05 109 1129.15 107.2 1122.3 105.3 1116.1 108.9 1110.15 112.35 1108.25 118.9 L1108.05 119.45 Q1104.85 131.55 1107.45 141.4 1110.05 151.2 1116.85 153.1 1123.75 154.9 1130.9 147.65 L1134 144.1 1134 147 1134 147.4 1134 153.4 1134 153.7 1134.1 155.35 1134.2 156.2 Q1134.45 157.9 1135 159.45 1135.85 161.95 1137.5 164.2 1129.8 166.15 1123.45 170.35 1111.65 178.3 1111.65 189.5 L1111.8 192 1096.65 192 Q1088.25 192 1088 183.85 L1088 76.2 M1165.4 79.95 L1164.45 78.45 Q1162.45 75.45 1159.45 74.15 1156.05 72.7 1153.3 74.25 1150.55 75.85 1150.15 79.5 1149.75 82.8 1151.35 86 L1152.25 87.55 Q1156.15 94.3 1160.75 97.95 1165.45 101.6 1168.2 100 1170.95 98.45 1170.05 92.6 1169.3 86.7 1165.4 79.95 M1145.7 87.65 L1146.3 86.6 Q1147.35 84.45 1147.1 82.35 1146.8 79.9 1145 78.8 1143.2 77.75 1140.95 78.75 1138.95 79.6 1137.6 81.6 L1137 82.65 Q1134.45 87.1 1133.9 91 1133.35 94.9 1135.15 95.9 1136.95 97 1140 94.55 1143.15 92.15 1145.7 87.65"/>
+ <path stroke="none" fill="#BB2905" d="M1145.7 87.65 Q1143.15 92.15 1140 94.55 1136.95 97 1135.15 95.9 1133.35 94.9 1133.9 91 1134.45 87.1 1137 82.65 L1137.6 81.6 Q1138.95 79.6 1140.95 78.75 1143.2 77.75 1145 78.8 1146.8 79.9 1147.1 82.35 1147.35 84.45 1146.3 86.6 L1145.7 87.65 M1165.4 79.95 Q1169.3 86.7 1170.05 92.6 1170.95 98.45 1168.2 100 1165.45 101.6 1160.75 97.95 1156.15 94.3 1152.25 87.55 L1151.35 86 Q1149.75 82.8 1150.15 79.5 1150.55 75.85 1153.3 74.25 1156.05 72.7 1159.45 74.15 1162.45 75.45 1164.45 78.45 L1165.4 79.95"/>
+ <path stroke="none" fill="#D5EEF7" d="M1163.1 129.35 L1162.8 128.35 1162.65 127.8 Q1161.05 121.1 1164.5 115.2 1168.1 108.95 1174.9 107.15 1181.75 105.3 1187.95 108.9 1193.9 112.35 1195.75 118.9 L1195.9 119.45 Q1199.15 131.55 1196.65 141.35 1194.1 151.2 1187.25 153.05 1180.4 154.85 1173.25 147.65 L1170 143.9 1170 143.5 Q1170 141.15 1169.4 139 L1169.2 138.15 1169.15 138 1168.3 135.8 Q1168.95 137 1170.05 138.1 1173.25 141.25 1177.5 141.25 1181.85 141.25 1184.95 138.1 1188.05 135.1 1188.05 130.75 1188.05 126.35 1184.95 123.3 1181.85 120.25 1177.5 120.25 1173.25 120.25 1170.05 123.3 1167.05 126.35 1167.05 130.75 1167.05 133.15 1167.95 135.15 1166.7 132.8 1164.7 130.8 L1163.1 129.35 M1134 144.1 L1130.9 147.65 Q1123.75 154.9 1116.85 153.1 1110.05 151.2 1107.45 141.4 1104.85 131.55 1108.05 119.45 L1108.25 118.9 Q1110.15 112.35 1116.1 108.9 1122.3 105.3 1129.15 107.2 1136.05 109 1139.55 115.2 1143.05 121.15 1141.4 127.85 L1141.2 128.4 1141 129.25 Q1140.05 129.95 1139.2 130.8 1136.1 133.95 1134.85 138 L1134.8 138.15 1134.55 139 Q1134 141.15 1134 143.5 L1134 144.1 M1115.8 130.75 Q1115.8 135.1 1118.85 138.1 1121.95 141.25 1126.3 141.25 1130.6 141.25 1133.75 138.1 1136.8 135.1 1136.8 130.75 1136.8 126.35 1133.75 123.3 1130.6 120.25 1126.3 120.25 1121.95 120.25 1118.85 123.3 1115.8 126.35 1115.8 130.75"/>
+ <path stroke="none" fill="#FFFFFF" d="M1115.8 130.75 Q1115.8 126.35 1118.85 123.3 1121.95 120.25 1126.3 120.25 1130.6 120.25 1133.75 123.3 1136.8 126.35 1136.8 130.75 1136.8 135.1 1133.75 138.1 1130.6 141.25 1126.3 141.25 1121.95 141.25 1118.85 138.1 1115.8 135.1 1115.8 130.75 M1167.95 135.15 Q1167.05 133.15 1167.05 130.75 1167.05 126.35 1170.05 123.3 1173.25 120.25 1177.5 120.25 1181.85 120.25 1184.95 123.3 1188.05 126.35 1188.05 130.75 1188.05 135.1 1184.95 138.1 1181.85 141.25 1177.5 141.25 1173.25 141.25 1170.05 138.1 1168.95 137 1168.3 135.8 L1167.95 135.15 M1182.3 130.7 Q1182.3 127.9 1180.4 126.05 1178.45 124.1 1175.7 124.1 1173 124.1 1171 126.05 1169.1 127.9 1169.1 130.7 L1169.1 131.35 Q1169.3 133.6 1171 135.25 1173 137.15 1175.7 137.15 1178.45 137.15 1180.4 135.25 1182.05 133.6 1182.25 131.35 L1182.3 130.7 M1121.55 130.7 L1121.6 131.35 Q1121.75 133.6 1123.4 135.25 1125.35 137.15 1128.15 137.15 1130.8 137.15 1132.8 135.25 1134.55 133.6 1134.7 131.35 L1134.75 130.7 Q1134.75 127.9 1132.8 126.05 1130.8 124.1 1128.15 124.1 1125.35 124.1 1123.4 126.05 1121.55 127.9 1121.55 130.7"/>
+ <path stroke="none" fill="#5B5B5B" d="M1121.55 130.7 Q1121.55 127.9 1123.4 126.05 1125.35 124.1 1128.15 124.1 1130.8 124.1 1132.8 126.05 1134.75 127.9 1134.75 130.7 L1134.7 131.35 Q1134.55 133.6 1132.8 135.25 1130.8 137.15 1128.15 137.15 1125.35 137.15 1123.4 135.25 1121.75 133.6 1121.6 131.35 L1121.55 130.7 M1182.3 130.7 L1182.25 131.35 Q1182.05 133.6 1180.4 135.25 1178.45 137.15 1175.7 137.15 1173 137.15 1171 135.25 1169.3 133.6 1169.1 131.35 L1169.1 130.7 Q1169.1 127.9 1171 126.05 1173 124.1 1175.7 124.1 1178.45 124.1 1180.4 126.05 1182.3 127.9 1182.3 130.7"/>
+ <path stroke="none" fill="#61A3FF" d="M1163.1 129.35 L1164.7 130.8 Q1166.7 132.8 1167.95 135.15 L1168.3 135.8 1169.15 138 1169.2 138.15 1169.4 139 Q1170 141.15 1170 143.5 L1170 143.9 1170 147 Q1169.95 145.05 1169.4 143.2 L1169.4 143 1169.2 142.45 1169.15 142.3 Q1168.1 139.15 1165.75 136.65 L1164.7 135.6 Q1159.5 130.65 1152 130.65 1144.55 130.65 1139.2 135.6 L1138.45 136.35 Q1135.95 139 1134.85 142.3 L1134.8 142.45 1134.55 143.2 1134.55 143.35 Q1134.05 145.1 1134 147 L1134 144.1 1134 143.5 Q1134 141.15 1134.55 139 L1134.8 138.15 1134.85 138 Q1136.1 133.95 1139.2 130.8 1140.05 129.95 1141 129.25 1145.75 125.5 1152 125.5 1158.35 125.5 1163.1 129.35"/>
+ <path stroke="none" fill="#5D9CF3" d="M1170 147 L1170 147.4 1170 153.4 1170 153.9 1169.9 155.35 1169.8 156.2 Q1152 160.75 1134.2 156.2 L1134.1 155.35 1134 153.7 1134 153.4 1134 147.4 1134 147 Q1134.05 145.1 1134.55 143.35 L1134.55 143.2 1134.8 142.45 1134.85 142.3 Q1135.95 139 1138.45 136.35 L1139.2 135.6 Q1144.55 130.65 1152 130.65 1159.5 130.65 1164.7 135.6 L1165.75 136.65 Q1168.1 139.15 1169.15 142.3 L1169.2 142.45 1169.4 143 1169.4 143.2 Q1169.95 145.05 1170 147"/>
+ <path stroke="none" fill="#3473CB" d="M1169.8 156.2 L1169 159.45 Q1152 163.3 1135 159.45 1134.45 157.9 1134.2 156.2 1152 160.75 1169.8 156.2"/>
+ <path stroke="none" fill="#397EDE" d="M1169 159.45 Q1168.1 161.95 1166.45 164.15 L1164.7 166.15 Q1159.5 171.5 1152 171.5 1144.55 171.5 1139.2 166.15 L1137.5 164.2 Q1135.85 161.95 1135 159.45 1152 163.3 1169 159.45"/>
+ <path stroke="none" fill="#FFCC00" d="M1192.2 192 L1111.8 192 1111.65 189.5 Q1111.65 178.3 1123.45 170.35 1129.8 166.15 1137.5 164.2 L1139.2 166.15 Q1144.55 171.5 1152 171.5 1159.5 171.5 1164.7 166.15 L1166.45 164.15 Q1174.2 166.1 1180.5 170.35 1192.35 178.3 1192.35 189.5 L1192.2 192"/>
+ <path stroke="none" fill="#8E5A32" d="M60.05 307.15 Q60.05 314.2 65.05 319.1 70 324.15 76.9 324.15 83.95 324.15 88.9 319.1 93.9 314.2 93.9 307.15 93.9 300.2 88.9 295.25 83.95 290.3 76.9 290.3 70 290.3 65.05 295.25 60.05 300.2 60.05 307.15 M41.55 309.15 Q42.2 298.05 50.35 289.9 59.1 281.15 71.5 281.15 83.85 281.15 92.75 289.9 100.8 298.05 101.45 309.15 100.8 320.25 92.75 328.35 83.85 337.15 71.5 337.15 59.1 337.15 50.35 328.35 42.2 320.25 41.55 309.15 M214.45 309.15 Q213.8 320.25 205.65 328.35 196.9 337.15 184.5 337.15 172.15 337.15 163.25 328.35 155.2 320.25 154.55 309.15 155.2 298.05 163.25 289.9 172.15 281.15 184.5 281.15 196.9 281.15 205.65 289.9 213.8 298.05 214.45 309.15 M195.95 307.15 Q195.95 300.2 190.95 295.25 186 290.3 179.1 290.3 172.05 290.3 167.1 295.25 162.1 300.2 162.1 307.15 162.1 314.2 167.1 319.1 172.05 324.15 179.1 324.15 186 324.15 190.95 319.1 195.95 314.2 195.95 307.15"/>
+ <path stroke="none" fill="#B67340" d="M41.55 309.15 L41.5 307.15 Q41.5 294.8 50.35 285.9 59.1 277.15 71.5 277.15 83.85 277.15 92.75 285.9 101.5 294.8 101.5 307.15 L101.45 309.15 Q100.8 298.05 92.75 289.9 83.85 281.15 71.5 281.15 59.1 281.15 50.35 289.9 42.2 298.05 41.55 309.15 M154.55 309.15 L154.5 307.15 Q154.5 294.8 163.25 285.9 172.15 277.15 184.5 277.15 196.9 277.15 205.65 285.9 214.5 294.8 214.5 307.15 L214.45 309.15 Q213.8 298.05 205.65 289.9 196.9 281.15 184.5 281.15 172.15 281.15 163.25 289.9 155.2 298.05 154.55 309.15"/>
+ <path stroke="none" fill="#774B2A" d="M60.05 307.15 Q60.05 300.2 65.05 295.25 70 290.3 76.9 290.3 83.95 290.3 88.9 295.25 93.9 300.2 93.9 307.15 93.9 314.2 88.9 319.1 83.95 324.15 76.9 324.15 70 324.15 65.05 319.1 60.05 314.2 60.05 307.15 M195.95 307.15 Q195.95 314.2 190.95 319.1 186 324.15 179.1 324.15 172.05 324.15 167.1 319.1 162.1 314.2 162.1 307.15 162.1 300.2 167.1 295.25 172.05 290.3 179.1 290.3 186 290.3 190.95 295.25 195.95 300.2 195.95 307.15"/>
+ <path stroke="none" fill="#A16639" d="M87.85 260 L90.8 262.35 Q106.65 274.25 128 274.25 149.35 274.25 165.25 262.35 L168.15 260 183.35 260 Q191.75 260 192 268.2 L192 375.85 Q191.75 384 183.35 384 L72.65 384 Q64.25 384 64 375.85 L64 268.2 Q64.25 260 72.65 260 L87.85 260 M168 292.35 Q160.6 284.95 150.2 284.95 139.7 284.95 132.35 292.35 130.8 293.85 128 293.85 125.2 293.85 123.7 292.35 116.3 284.95 105.9 284.95 95.45 284.95 88.05 292.35 80.65 299.75 80.65 310.15 80.65 320.6 88.05 328.05 L88.1 328.05 92.3 331.45 Q92.35 346.1 102.75 356.45 106.9 360.6 111.75 363.1 119.1 366.9 128 366.9 142.8 366.9 153.3 356.45 L156.65 352.65 Q163.65 343.5 163.75 331.45 L168 328.05 Q175.4 320.6 175.4 310.15 175.4 299.75 168 292.35 M133.3 326.2 Q135.25 324.25 137.4 323.6 139.65 323 140.75 324.1 141.85 325.2 141.25 327.45 140.65 329.6 138.65 331.55 L138.55 331.7 Q137.45 332.75 135.95 332.75 134.35 332.75 133.25 331.65 132.1 330.5 132.1 328.9 132.1 327.35 133.15 326.3 L133.3 326.2 M123.65 331.65 Q122.45 332.75 120.9 332.75 119.35 332.75 118.25 331.7 L118.15 331.55 Q116.15 329.6 115.6 327.45 115 325.2 116.1 324.1 117.25 323 119.45 323.6 121.65 324.25 123.55 326.2 L123.7 326.3 Q124.75 327.35 124.75 328.9 124.75 330.5 123.65 331.65"/>
+ <path stroke="none" fill="#BF8559" d="M123.65 331.65 Q124.75 330.5 124.75 328.9 124.75 327.35 123.7 326.3 L123.55 326.2 Q121.65 324.25 119.45 323.6 117.25 323 116.1 324.1 115 325.2 115.6 327.45 116.15 329.6 118.15 331.55 L118.25 331.7 Q119.35 332.75 120.9 332.75 122.45 332.75 123.65 331.65 M168 292.35 Q175.4 299.75 175.4 310.15 175.4 320.6 168 328.05 L163.75 331.45 Q163.65 343.5 156.65 352.65 L153.3 356.45 Q142.8 366.9 128 366.9 119.1 366.9 111.75 363.1 106.9 360.6 102.75 356.45 92.35 346.1 92.3 331.45 L88.1 328.05 88.05 328.05 Q80.65 320.6 80.65 310.15 80.65 299.75 88.05 292.35 95.45 284.95 105.9 284.95 116.3 284.95 123.7 292.35 125.2 293.85 128 293.85 130.8 293.85 132.35 292.35 139.7 284.95 150.2 284.95 160.6 284.95 168 292.35 M168.95 311.4 Q168.95 306.35 165.45 302.8 161.85 299.3 156.75 299.3 151.75 299.3 148.2 302.8 144.6 306.35 144.6 311.4 144.6 316.45 148.2 319.9 151.75 323.55 156.75 323.55 161.85 323.55 165.45 319.9 168.95 316.45 168.95 311.4 M133.3 326.2 L133.15 326.3 Q132.1 327.35 132.1 328.9 132.1 330.5 133.25 331.65 134.35 332.75 135.95 332.75 137.45 332.75 138.55 331.7 L138.65 331.55 Q140.65 329.6 141.25 327.45 141.85 325.2 140.75 324.1 139.65 323 137.4 323.6 135.25 324.25 133.3 326.2 M145.75 352.65 L148.25 351.65 Q151.25 350.3 152.5 347.3 153.7 344.25 152.45 341.2 151.2 338.15 148.15 336.95 L145.75 336.35 Q143.9 336.2 142.1 336.95 129.5 342.05 114.35 336.75 L111.75 336.3 Q110 336.3 108.3 337.1 105.3 338.55 104.25 341.7 103.15 344.75 104.6 347.75 106 350.7 109.15 351.8 L111.75 352.65 Q130.15 358.3 145.75 352.65 M87.75 311.4 Q87.75 316.45 91.35 319.9 94.95 323.55 99.95 323.55 104.95 323.55 108.65 319.9 112.15 316.45 112.15 311.4 112.15 306.35 108.65 302.8 104.95 299.3 99.95 299.3 94.95 299.3 91.35 302.8 87.75 306.35 87.75 311.4"/>
+ <path stroke="none" fill="#AA6C3C" d="M168.15 260 L165.25 262.35 Q149.35 274.25 128 274.25 106.65 274.25 90.8 262.35 L87.85 260 168.15 260"/>
+ <path stroke="none" fill="#B4723F" d="M168.15 260 L87.85 260 72.65 260 Q64.25 260 64 268.2 L64 264.7 Q64 256 72.65 256 L183.35 256 Q192 256 192 264.7 L192 268.2 Q191.75 260 183.35 260 L168.15 260"/>
+ <path stroke="none" fill="#FFFFFF" d="M163.1 311.65 Q163.1 308.35 160.85 306.2 158.6 304.05 155.45 304.05 152.35 304.05 150 306.2 147.75 308.35 147.75 311.65 147.75 314.8 150 316.95 152.35 319.25 155.45 319.25 158.6 319.25 160.85 316.95 163.1 314.8 163.1 311.65 M168.95 311.4 Q168.95 316.45 165.45 319.9 161.85 323.55 156.75 323.55 151.75 323.55 148.2 319.9 144.6 316.45 144.6 311.4 144.6 306.35 148.2 302.8 151.75 299.3 156.75 299.3 161.85 299.3 165.45 302.8 168.95 306.35 168.95 311.4 M145.75 336.35 Q148.65 344 145.75 352.65 130.15 358.3 111.75 352.65 108.5 343.55 111.75 336.3 L114.35 336.75 Q129.5 342.05 142.1 336.95 143.9 336.2 145.75 336.35 M93.7 311.65 Q93.7 314.8 95.95 316.95 98.1 319.25 101.3 319.25 104.45 319.25 106.7 316.95 108.95 314.8 108.95 311.65 108.95 308.35 106.7 306.2 104.45 304.05 101.3 304.05 98.1 304.05 95.95 306.2 93.7 308.35 93.7 311.65 M87.75 311.4 Q87.75 306.35 91.35 302.8 94.95 299.3 99.95 299.3 104.95 299.3 108.65 302.8 112.15 306.35 112.15 311.4 112.15 316.45 108.65 319.9 104.95 323.55 99.95 323.55 94.95 323.55 91.35 319.9 87.75 316.45 87.75 311.4"/>
+ <path stroke="none" fill="#5B5B5B" d="M163.1 311.65 Q163.1 314.8 160.85 316.95 158.6 319.25 155.45 319.25 152.35 319.25 150 316.95 147.75 314.8 147.75 311.65 147.75 308.35 150 306.2 152.35 304.05 155.45 304.05 158.6 304.05 160.85 306.2 163.1 308.35 163.1 311.65 M93.7 311.65 Q93.7 308.35 95.95 306.2 98.1 304.05 101.3 304.05 104.45 304.05 106.7 306.2 108.95 308.35 108.95 311.65 108.95 314.8 106.7 316.95 104.45 319.25 101.3 319.25 98.1 319.25 95.95 316.95 93.7 314.8 93.7 311.65"/>
+ <path stroke="none" fill="#E7E7E7" d="M145.75 336.35 L148.15 336.95 Q151.2 338.15 152.45 341.2 153.7 344.25 152.5 347.3 151.25 350.3 148.25 351.65 L145.75 352.65 Q148.65 344 145.75 336.35 M111.75 352.65 L109.15 351.8 Q106 350.7 104.6 347.75 103.15 344.75 104.25 341.7 105.3 338.55 108.3 337.1 110 336.3 111.75 336.3 108.5 343.55 111.75 352.65"/>
+ <path stroke="none" fill="#D987D9" d="M716.55 313.2 Q711.2 321.45 703.95 322.3 L703.2 322.35 705.5 319.5 706.3 318.25 Q710.8 310.95 710.8 300.5 L710.7 298.5 Q710.4 295.25 706.35 292.8 701.85 290.15 695.6 290.2 689.35 290.25 684.8 292.75 682.8 294.05 681.75 295.4 681.4 293.1 681.2 290.5 L681.15 287.45 681.25 284.6 681.45 283.35 Q682.9 281.65 685.35 280.25 691.55 276.65 700.35 276.7 709 276.65 715.2 280.3 720.8 283.65 721.35 288.1 L721.4 290.9 Q721.35 303.75 716.55 313.2 M597.7 290.6 Q596.25 289.6 594.05 288.9 L582.95 289.2 Q576.85 290.85 573.2 294.55 569.95 297.9 570.45 301.15 L570.9 303 Q573.6 313.1 579.85 319.05 L580.9 320.05 583.95 322.2 583.1 322.35 Q575.95 323.4 568.65 316.8 561.5 308.9 558.2 296.55 L557.5 293.8 Q556.85 289.4 561.4 284.7 566.5 279.6 574.85 277.4 583.35 275.05 590.25 276.95 592.95 277.7 594.8 278.9 L595.35 280.1 596.15 282.85 596.9 285.75 597.7 290.6"/>
+ <path stroke="none" fill="#C97DC9" d="M597.7 290.6 L597.9 292.1 Q598.7 300.7 596.45 308.25 595 313.65 592.25 317 589.25 320.75 584.75 322.05 L583.95 322.2 580.9 320.05 579.85 319.05 Q573.6 313.1 570.9 303 L570.45 301.15 Q569.95 297.9 573.2 294.55 576.85 290.85 582.95 289.2 L594.05 288.9 Q596.25 289.6 597.7 290.6 M703.2 322.35 L702.3 322.45 Q697.65 322.4 693.75 319.5 690.25 316.95 687.45 312.15 683.35 305.4 681.85 296.85 L681.75 295.4 Q682.8 294.05 684.8 292.75 689.35 290.25 695.6 290.2 701.85 290.15 706.35 292.8 710.4 295.25 710.7 298.5 L710.8 300.5 Q710.8 310.95 706.3 318.25 L705.5 319.5 703.2 322.35"/>
+ <path stroke="none" fill="#F095F0" d="M681.45 283.35 Q682.55 279.75 687.35 276.75 693.55 273.2 702.35 273.2 711 273.2 717.2 276.85 722.75 280.1 723.35 284.65 L723.4 287.4 Q723.4 301.95 717.2 312.15 L716.55 313.2 Q721.35 303.75 721.4 290.9 L721.35 288.1 Q720.8 283.65 715.2 280.3 709 276.65 700.35 276.7 691.55 276.65 685.35 280.25 682.9 281.65 681.45 283.35 M594.8 278.9 Q592.95 277.7 590.25 276.95 583.35 275.05 574.85 277.4 566.5 279.6 561.4 284.7 556.85 289.4 557.5 293.8 L558.2 296.55 Q561.5 308.9 568.65 316.8 L567.7 316 Q559.1 307.7 555.35 293.7 L554.65 291 Q554.05 286.5 558.6 281.9 563.7 276.8 572 274.55 580.45 272.2 587.4 274.1 592.8 275.65 594.8 278.9"/>
+ <path stroke="none" fill="#EE9FEE" d="M600.3 260 Q600.3 267.95 611.95 273.55 623.65 279.15 640.2 279.15 656.75 279.15 668.4 273.55 680.1 267.95 680.1 260 L695.55 260 Q703.95 260 704.2 268.2 L704.2 375.85 Q703.95 384 695.55 384 L584.85 384 Q576.45 384 576.2 375.85 L576.2 268.2 Q576.45 260 584.85 260 L600.3 260 M688.7 309.75 Q688.7 304.55 685.05 300.9 681.4 297.25 676.2 297.25 671.1 297.25 667.4 300.9 663.75 304.55 663.75 309.75 663.75 314.9 667.4 318.5 671.1 322.2 676.2 322.2 681.4 322.2 685.05 318.5 688.7 314.9 688.7 309.75 M666.15 335.75 L666.2 334.7 666.2 333.85 Q666.2 323.05 658.55 315.45 L656.75 313.8 Q649.7 307.85 640.2 307.85 630.7 307.85 623.6 313.75 L621.75 315.45 Q614.2 323.05 614.2 333.85 L614.2 334.7 614.3 335.8 Q614.55 338.7 615.75 341.3 617.25 344.5 620.15 347.25 L620.6 348.3 Q622.1 351.55 625.4 354.15 631.55 359 640.2 359 648.8 359 654.9 354.15 658.25 351.5 659.8 348.25 L660.25 347.15 Q663.15 344.45 664.65 341.25 665.85 338.65 666.15 335.75 M591.7 309.75 Q591.7 314.9 595.35 318.5 599 322.2 604.2 322.2 609.3 322.2 613 318.5 616.65 314.9 616.65 309.75 616.65 304.55 613 300.9 609.3 297.25 604.2 297.25 599 297.25 595.35 300.9 591.7 304.55 591.7 309.75"/>
+ <path stroke="none" fill="#FAA6FA" d="M680.1 260 Q680.1 267.95 668.4 273.55 656.75 279.15 640.2 279.15 623.65 279.15 611.95 273.55 600.3 267.95 600.3 260 L680.1 260"/>
+ <path stroke="none" fill="#FFAAFF" d="M680.1 260 L600.3 260 584.85 260 Q576.45 260 576.2 268.2 L576.2 264.7 Q576.2 256 584.85 256 L695.55 256 Q704.2 256 704.2 264.7 L704.2 268.2 Q703.95 260 695.55 260 L680.1 260 M666.15 335.75 Q665.85 338.65 664.65 341.25 663.15 344.45 660.25 347.15 L658.55 348.6 Q650.95 354.65 640.2 354.65 629.4 354.65 621.75 348.6 L620.15 347.25 Q617.25 344.5 615.75 341.3 614.55 338.7 614.3 335.8 614.95 326.3 621.75 319.45 L623.6 317.75 Q630.7 311.85 640.2 311.85 649.7 311.85 656.75 317.8 L658.55 319.45 Q665.45 326.3 666.15 335.75 M658.7 327.25 Q657.2 325.75 654.25 326.6 L654 326.7 Q651.15 327.55 648.65 330.05 L648.5 330.2 Q647.85 330.9 647.5 331.75 647.1 332.65 647.1 333.75 647.1 335.9 648.6 337.4 650.1 338.9 652.25 338.9 654.3 338.9 655.8 337.5 L655.95 337.35 Q658 335.3 658.95 333.05 L659.4 331.75 Q660.05 329.5 659.3 328.1 L658.7 327.25 M624.6 337.5 Q626.1 338.9 628.15 338.9 630.3 338.9 631.8 337.4 633.3 335.9 633.3 333.75 633.3 332.65 632.95 331.75 L631.9 330.2 631.75 330.05 Q629.2 327.5 626.35 326.65 L626.15 326.6 Q623.2 325.75 621.7 327.25 L621.1 328.1 Q620.35 329.5 621 331.75 L621.45 333.05 Q622.4 335.3 624.45 337.35 L624.6 337.5"/>
+ <path stroke="none" fill="#FFFFFF" d="M683.95 309.95 Q683.95 306.35 681.45 303.8 678.95 301.3 675.3 301.3 671.75 301.3 669.15 303.8 666.65 306.35 666.65 309.95 666.65 313.55 669.15 316 671.75 318.55 675.3 318.55 678.95 318.55 681.45 316 683.95 313.55 683.95 309.95 M688.7 309.75 Q688.7 314.9 685.05 318.5 681.4 322.2 676.2 322.2 671.1 322.2 667.4 318.5 663.75 314.9 663.75 309.75 663.75 304.55 667.4 300.9 671.1 297.25 676.2 297.25 681.4 297.25 685.05 300.9 688.7 304.55 688.7 309.75 M596.4 309.95 Q596.4 313.55 598.95 316 601.45 318.55 605.1 318.55 608.65 318.55 611.2 316 613.75 313.55 613.75 309.95 613.75 306.35 611.2 303.8 608.65 301.3 605.1 301.3 601.45 301.3 598.95 303.8 596.4 306.35 596.4 309.95 M591.7 309.75 Q591.7 304.55 595.35 300.9 599 297.25 604.2 297.25 609.3 297.25 613 300.9 616.65 304.55 616.65 309.75 616.65 314.9 613 318.5 609.3 322.2 604.2 322.2 599 322.2 595.35 318.5 591.7 314.9 591.7 309.75"/>
+ <path stroke="none" fill="#5B5B5B" d="M683.95 309.95 Q683.95 313.55 681.45 316 678.95 318.55 675.3 318.55 671.75 318.55 669.15 316 666.65 313.55 666.65 309.95 666.65 306.35 669.15 303.8 671.75 301.3 675.3 301.3 678.95 301.3 681.45 303.8 683.95 306.35 683.95 309.95 M596.4 309.95 Q596.4 306.35 598.95 303.8 601.45 301.3 605.1 301.3 608.65 301.3 611.2 303.8 613.75 306.35 613.75 309.95 613.75 313.55 611.2 316 608.65 318.55 605.1 318.55 601.45 318.55 598.95 316 596.4 313.55 596.4 309.95"/>
+ <path stroke="none" fill="#FFC4FF" d="M614.3 335.8 L614.2 334.7 614.2 333.85 Q614.2 323.05 621.75 315.45 L623.6 313.75 Q630.7 307.85 640.2 307.85 649.7 307.85 656.75 313.8 L658.55 315.45 Q666.2 323.05 666.2 333.85 L666.2 334.7 666.15 335.75 Q665.45 326.3 658.55 319.45 L656.75 317.8 Q649.7 311.85 640.2 311.85 630.7 311.85 623.6 317.75 L621.75 319.45 Q614.95 326.3 614.3 335.8"/>
+ <path stroke="none" fill="#AF74AF" d="M658.7 327.25 L659.3 328.1 Q660.05 329.5 659.4 331.75 L658.95 333.05 Q658 335.3 655.95 337.35 L655.8 337.5 Q654.3 338.9 652.25 338.9 650.1 338.9 648.6 337.4 647.1 335.9 647.1 333.75 647.1 332.65 647.5 331.75 647.85 330.9 648.5 330.2 L648.65 330.05 Q651.15 327.55 654 326.7 L654.25 326.6 Q657.2 325.75 658.7 327.25 M624.6 337.5 L624.45 337.35 Q622.4 335.3 621.45 333.05 L621 331.75 Q620.35 329.5 621.1 328.1 L621.7 327.25 Q623.2 325.75 626.15 326.6 L626.35 326.65 Q629.2 327.5 631.75 330.05 L631.9 330.2 632.95 331.75 Q633.3 332.65 633.3 333.75 633.3 335.9 631.8 337.4 630.3 338.9 628.15 338.9 626.1 338.9 624.6 337.5"/>
+ <path stroke="none" fill="#E096E0" d="M660.25 347.15 L659.8 348.25 Q658.25 351.5 654.9 354.15 648.8 359 640.2 359 631.55 359 625.4 354.15 622.1 351.55 620.6 348.3 L620.15 347.25 621.75 348.6 Q629.4 354.65 640.2 354.65 650.95 354.65 658.55 348.6 L660.25 347.15"/>
+ <path stroke="none" fill="#2F4E58" d="M195.95 584.35 L195.3 584.7 Q190.6 587.05 183.25 585.1 176.2 583.25 169.75 578.25 L167.85 576.7 167.1 576.05 Q171.95 572.9 176.4 568.75 L178.4 566.8 Q183.25 561.95 186.9 556.65 L187.7 555.45 189.1 557.15 Q194.7 564.05 196.75 571.6 L197.5 575.6 Q198.05 580.8 195.95 584.35 M141.95 453.6 L140.65 453.3 Q134.15 452 127.1 452 L115.5 452.95 114.15 453.2 Q115.8 447.2 118.1 442.65 122.65 433.5 128.05 433.5 133.4 433.5 137.95 442.65 140.25 447.35 141.95 453.6 M60.05 584.35 Q57.95 580.75 58.5 575.6 58.7 573.7 59.25 571.6 61.1 564.75 65.9 558.4 L67.35 556.65 68.65 558.5 Q71.75 562.8 75.75 566.8 L77.8 568.8 Q82.75 573.35 88.2 576.7 L87.35 577.4 85.45 578.9 Q79.35 583.35 72.75 585.1 66.35 586.8 62 585.25 L60.05 584.35"/>
+ <path stroke="none" fill="#39606D" d="M60.05 584.35 Q58.85 583.65 57.8 582.6 55 579.8 54.5 575.6 54.05 572.1 55.25 567.6 57.3 560.05 62.95 553.1 L64.25 551.55 Q65.65 554.15 67.35 556.65 L65.9 558.4 Q61.1 564.75 59.25 571.6 58.7 573.7 58.5 575.6 57.95 580.75 60.05 584.35 M187.7 555.45 L190.65 550.3 191.95 551.7 Q198.5 559.25 200.75 567.6 201.95 572.1 201.5 575.6 201 579.8 198.2 582.6 L195.95 584.35 Q198.05 580.8 197.5 575.6 L196.75 571.6 Q194.7 564.05 189.1 557.15 L187.7 555.45 M114.15 453.2 L113.1 453.4 Q115.05 444.75 118.1 438.65 122.65 429.5 128.05 429.5 133.4 429.5 137.95 438.65 141 444.85 143 453.8 L141.95 453.6 Q140.25 447.35 137.95 442.65 133.4 433.5 128.05 433.5 122.65 433.5 118.1 442.65 115.8 447.2 114.15 453.2"/>
+ <path stroke="none" fill="#48798A" d="M192 460.2 Q191.75 452 183.35 452 L72.65 452 Q64.25 452 64 460.2 L64 456.7 Q64 448 72.65 448 L183.35 448 Q192 448 192 456.7 L192 460.2"/>
+ <path stroke="none" fill="#365A66" d="M170.35 480.85 L169.95 480.55 Q165.95 476.8 160.4 476.75 154.6 476.75 150.5 480.85 146.5 484.9 146.45 490.65 146.45 496.3 150.4 500.2 L150.6 500.55 Q157.8 507.8 165.8 509.95 173.75 512.15 177.85 508.05 181.85 504.05 179.7 496.05 177.45 488.15 170.35 480.85 M64 460.2 Q64.25 452 72.65 452 L183.35 452 Q191.75 452 192 460.2 L192 509.4 191.65 509.6 Q165.3 524.65 128 524.65 90.7 524.65 64.35 509.6 L64 509.4 64 460.2 M85.55 480.85 Q78.45 488.15 76.2 496.05 74.05 504.05 78.05 508.05 82.15 512.15 90.1 509.95 98.1 507.8 105.3 500.55 L105.5 500.2 Q109.45 496.3 109.45 490.65 109.4 484.9 105.4 480.85 101.3 476.75 95.5 476.75 89.95 476.8 85.95 480.55 L85.55 480.85"/>
+ <path stroke="none" fill="#FFFFFF" d="M168.1 498.35 Q165.3 501.1 161.35 501.1 157.35 501.1 154.55 498.3 151.8 495.55 151.75 491.5 151.75 487.6 154.55 484.85 157.35 482 161.3 481.95 165.3 482.05 168.05 484.8 170.85 487.6 170.9 491.55 170.9 495.5 168.1 498.35 M163.75 496.55 Q165.55 494.75 165.55 492.35 165.55 489.8 163.8 488.05 162.05 486.3 159.5 486.3 157.05 486.25 155.25 488.05 L154.85 488.45 Q153.5 490.05 153.55 492.2 153.6 494.75 155.35 496.5 157.1 498.25 159.6 498.25 161.7 498.25 163.3 496.95 L163.75 496.55 M92.15 496.55 L92.6 496.95 Q94.2 498.25 96.3 498.25 98.8 498.25 100.55 496.5 102.3 494.75 102.35 492.2 102.4 490.05 101.05 488.45 L100.65 488.05 Q98.85 486.25 96.4 486.3 93.85 486.3 92.1 488.05 90.35 489.8 90.35 492.35 90.35 494.75 92.15 496.55 M87.8 498.35 Q85 495.5 85 491.55 85.05 487.6 87.85 484.8 90.6 482.05 94.6 481.95 98.55 482 101.35 484.85 104.15 487.6 104.15 491.5 104.1 495.55 101.35 498.3 98.55 501.1 94.55 501.1 90.6 501.1 87.8 498.35"/>
+ <path stroke="none" fill="#5B5B5B" d="M163.75 496.55 L163.3 496.95 Q161.7 498.25 159.6 498.25 157.1 498.25 155.35 496.5 153.6 494.75 153.55 492.2 153.5 490.05 154.85 488.45 L155.25 488.05 Q157.05 486.25 159.5 486.3 162.05 486.3 163.8 488.05 165.55 489.8 165.55 492.35 165.55 494.75 163.75 496.55 M92.15 496.55 Q90.35 494.75 90.35 492.35 90.35 489.8 92.1 488.05 93.85 486.3 96.4 486.3 98.85 486.25 100.65 488.05 L101.05 488.45 Q102.4 490.05 102.35 492.2 102.3 494.75 100.55 496.5 98.8 498.25 96.3 498.25 94.2 498.25 92.6 496.95 L92.15 496.55"/>
+ <path stroke="none" fill="#C3DCE9" d="M170.35 480.85 Q177.45 488.15 179.7 496.05 181.85 504.05 177.85 508.05 173.75 512.15 165.8 509.95 157.8 507.8 150.6 500.55 L150.4 500.2 Q146.45 496.3 146.45 490.65 146.5 484.9 150.5 480.85 154.6 476.75 160.4 476.75 165.95 476.8 169.95 480.55 L170.35 480.85 M168.1 498.35 Q170.9 495.5 170.9 491.55 170.85 487.6 168.05 484.8 165.3 482.05 161.3 481.95 157.35 482 154.55 484.85 151.75 487.6 151.75 491.5 151.8 495.55 154.55 498.3 157.35 501.1 161.35 501.1 165.3 501.1 168.1 498.35 M192 513.4 L192 567.85 Q191.75 576 183.35 576 L72.65 576 Q64.25 576 64 567.85 L64 513.4 64.35 513.6 Q90.7 528.65 128 528.65 165.3 528.65 191.65 513.6 L192 513.4 M85.55 480.85 L85.95 480.55 Q89.95 476.8 95.5 476.75 101.3 476.75 105.4 480.85 109.4 484.9 109.45 490.65 109.45 496.3 105.5 500.2 L105.3 500.55 Q98.1 507.8 90.1 509.95 82.15 512.15 78.05 508.05 74.05 504.05 76.2 496.05 78.45 488.15 85.55 480.85 M87.8 498.35 Q90.6 501.1 94.55 501.1 98.55 501.1 101.35 498.3 104.1 495.55 104.15 491.5 104.15 487.6 101.35 484.85 98.55 482 94.6 481.95 90.6 482.05 87.85 484.8 85.05 487.6 85 491.55 85 495.5 87.8 498.35"/>
+ <path stroke="none" fill="#D5F0FF" d="M64 509.4 L64.35 509.6 Q90.7 524.65 128 524.65 165.3 524.65 191.65 509.6 L192 509.4 192 513.4 191.65 513.6 Q165.3 528.65 128 528.65 90.7 528.65 64.35 513.6 L64 513.4 64 509.4"/>
+ <path stroke="none" fill="#FFFFFF" d="M320 460.2 L320 456.7 Q320 448 328.65 448 L363.6 448 Q362.05 449.85 361.15 452 L328.65 452 Q320.25 452 320 460.2 M404.4 448 L439.35 448 Q448 448 448 456.7 L448 460.2 Q447.75 452 439.35 452 L406.85 452 Q405.9 449.85 404.4 448 M416.95 576 L351.05 576 Q353.15 560 360 547.55 363.4 541.4 367.3 537.4 L367.5 537.5 368.05 537.85 Q371.3 539.75 375.2 540.7 L371.85 544.3 369.8 546.2 Q366.35 549.3 366.35 553.15 366.35 554.25 366.65 555.4 368.55 563.25 376.85 562 380.25 561.45 383 558.7 L384 557.6 385 558.7 Q387.75 561.45 391.1 562 399.45 563.25 401.35 555.4 L401.65 553.15 Q401.65 549.3 398.2 546.2 L396.2 544.35 392.85 540.75 Q396.2 539.9 399.05 538.4 L400.05 537.85 400.75 537.45 Q404.6 541.45 407.95 547.55 414.85 560 416.95 576 M332.75 516.5 Q332.75 510.75 336.8 506.75 340.85 502.7 346.55 502.7 352.15 502.7 356.3 506.75 360.25 510.75 360.25 516.5 360.25 522.2 356.3 526.1 352.15 530.2 346.55 530.2 340.85 530.2 336.8 526.1 332.75 522.2 332.75 516.5 M340.3 516.4 L340.35 517.25 Q340.6 520.2 342.75 522.35 345.3 524.85 348.95 524.85 352.45 524.85 355.05 522.35 357.3 520.2 357.55 517.25 L357.6 516.4 Q357.6 512.75 355.05 510.3 352.45 507.75 348.95 507.75 345.3 507.75 342.75 510.3 340.3 512.75 340.3 516.4 M435.25 516.5 Q435.25 522.2 431.2 526.1 427.15 530.2 421.45 530.2 415.85 530.2 411.7 526.1 407.75 522.2 407.75 516.5 407.75 510.75 411.7 506.75 415.85 502.7 421.45 502.7 427.15 502.7 431.2 506.75 435.25 510.75 435.25 516.5 M427.7 516.4 Q427.7 512.75 425.25 510.3 422.7 507.75 419.05 507.75 415.55 507.75 412.95 510.3 410.4 512.75 410.4 516.4 L410.45 517.25 Q410.7 520.2 412.95 522.35 415.55 524.85 419.05 524.85 422.7 524.85 425.25 522.35 427.4 520.2 427.65 517.25 L427.7 516.4"/>
+ <path stroke="none" fill="#F0F0F0" d="M448 460.2 L448 567.85 Q447.75 576 439.35 576 L416.95 576 Q414.85 560 407.95 547.55 404.6 541.45 400.75 537.45 406.15 533.95 406.55 529.25 L406.65 527.75 406.35 524.05 Q405.3 517.1 400.05 511.8 L397.5 509.55 Q391.7 505.2 384.1 505.2 376.5 505.2 370.7 509.55 L368.05 511.8 Q362.85 517.1 361.75 524.05 361.5 525.8 361.5 527.75 L361.55 529.25 Q362 533.9 367.3 537.4 363.4 541.4 360 547.55 353.15 560 351.05 576 L328.65 576 Q320.25 576 320 567.85 L320 460.2 Q320.25 452 328.65 452 L361.15 452 Q359.75 455.2 359.75 458.95 L359.85 460.95 Q360.3 465.4 362.85 468.95 362.45 470.5 362.35 472.15 L362.25 473.9 362.35 475.95 Q363 483.1 368.25 488.3 374.2 494.3 382.65 494.3 L383.95 494.25 385.25 494.3 Q393.7 494.3 399.7 488.3 404.95 483.05 405.6 475.9 L405.65 473.9 405.6 472.2 405.1 468.95 Q407.6 465.4 408.05 460.95 L408.15 458.95 Q408.15 455.45 407 452.45 L406.85 452 439.35 452 Q447.75 452 448 460.2 M332.75 516.5 Q332.75 522.2 336.8 526.1 340.85 530.2 346.55 530.2 352.15 530.2 356.3 526.1 360.25 522.2 360.25 516.5 360.25 510.75 356.3 506.75 352.15 502.7 346.55 502.7 340.85 502.7 336.8 506.75 332.75 510.75 332.75 516.5 M435.25 516.5 Q435.25 510.75 431.2 506.75 427.15 502.7 421.45 502.7 415.85 502.7 411.7 506.75 407.75 510.75 407.75 516.5 407.75 522.2 411.7 526.1 415.85 530.2 421.45 530.2 427.15 530.2 431.2 526.1 435.25 522.2 435.25 516.5"/>
+ <path stroke="none" fill="#D23007" d="M364.95 446.45 L364.65 445 Q365.2 441.15 368.05 438.25 371.65 434.7 376.75 434.7 380.85 434.7 383.95 437.05 387.05 434.7 391.2 434.7 396.25 434.7 399.85 438.25 402.7 441.15 403.25 445 L402.95 446.45 Q402.8 447.25 402.9 448 403 450.05 404.4 452 L404.75 452.45 Q407.55 456.2 408.05 460.95 407.6 465.4 405.1 468.95 L405.6 472.2 405.65 473.9 405.6 475.9 Q404.95 483.05 399.7 488.3 393.7 494.3 385.25 494.3 L383.95 494.25 382.65 494.3 Q374.2 494.3 368.25 488.3 363 483.1 362.35 475.95 L362.25 473.9 362.35 472.15 Q362.45 470.5 362.85 468.95 360.3 465.4 359.85 460.95 360.35 456.2 363.2 452.45 L363.55 452 Q364.9 450.05 365.05 448 L364.95 446.45 M403 450.45 L403 450.3 402.95 450.45 403 450.45 M375.2 540.7 Q379.3 541.7 384.1 541.7 388.8 541.7 392.85 540.75 L396.2 544.35 398.2 546.2 Q401.65 549.3 401.65 553.15 L401.6 553.3 Q399.65 559.55 391.2 558.55 387.8 558.15 385 555.95 L384 555.05 382.95 555.95 Q380.2 558.15 376.75 558.55 368.3 559.55 366.4 553.3 L366.35 553.15 Q366.35 549.3 369.8 546.2 L371.85 544.3 375.2 540.7"/>
+ <path stroke="none" fill="#F53707" d="M363.6 448 L364.5 446.95 364.95 446.45 365.05 448 Q364.9 450.05 363.55 452 L363.2 452.45 Q360.35 456.2 359.85 460.95 L359.75 458.95 Q359.75 455.2 361.15 452 362.05 449.85 363.6 448 M364.65 445 L364.5 442.95 Q364.5 437.85 368.05 434.25 371.65 430.7 376.75 430.7 380.85 430.7 383.95 433.05 387.05 430.7 391.2 430.7 396.25 430.7 399.85 434.25 403.4 437.85 403.4 442.95 L403.25 445 Q402.7 441.15 399.85 438.25 396.25 434.7 391.2 434.7 387.05 434.7 383.95 437.05 380.85 434.7 376.75 434.7 371.65 434.7 368.05 438.25 365.2 441.15 364.65 445 M402.95 446.45 L403 446.45 403.4 446.9 404.4 448 Q405.9 449.85 406.85 452 L407 452.45 Q408.15 455.45 408.15 458.95 L408.05 460.95 Q407.55 456.2 404.75 452.45 L404.4 452 Q403 450.05 402.9 448 402.8 447.25 402.95 446.45 M403 450.45 L402.95 450.45 403 450.3 403 450.45"/>
+ <path stroke="none" fill="#FF9900" d="M361.75 524.05 Q362.85 517.1 368.05 511.8 L370.7 509.55 Q376.5 505.2 384.1 505.2 391.7 505.2 397.5 509.55 L400.05 511.8 Q405.3 517.1 406.35 524.05 405.85 525.4 404.4 526.65 403.1 521.6 398.9 517.65 L396.55 515.7 Q391.15 511.95 384.1 511.95 377.05 511.95 371.65 515.7 370.4 516.55 369.2 517.65 365.05 521.6 363.75 526.65 362.25 525.45 361.75 524.05"/>
+ <path stroke="none" fill="#F39100" d="M363.75 526.65 Q365.05 521.6 369.2 517.65 370.4 516.55 371.65 515.7 377.05 511.95 384.1 511.95 391.15 511.95 396.55 515.7 L398.9 517.65 Q403.1 521.6 404.4 526.65 402.8 527.95 400.05 529.05 396.45 530.55 392.05 531.2 L386.95 531.7 384.1 531.75 381.1 531.7 376.05 531.2 Q371.65 530.5 368.05 529.05 365.3 527.95 363.75 526.65"/>
+ <path stroke="none" fill="#E08600" d="M363.75 526.65 Q365.3 527.95 368.05 529.05 371.65 530.5 376.05 531.2 L381.1 531.7 384.1 531.75 386.95 531.7 392.05 531.2 Q396.45 530.55 400.05 529.05 402.8 527.95 404.4 526.65 405.85 525.4 406.35 524.05 L406.65 527.75 406.55 529.25 Q406.15 533.95 400.75 537.45 L400.05 537.85 399.05 538.4 Q396.2 539.9 392.85 540.75 388.8 541.7 384.1 541.7 379.3 541.7 375.2 540.7 371.3 539.75 368.05 537.85 L367.5 537.5 367.3 537.4 Q362 533.9 361.55 529.25 L361.5 527.75 Q361.5 525.8 361.75 524.05 362.25 525.45 363.75 526.65"/>
+ <path stroke="none" fill="#5B5B5B" d="M340.3 516.4 Q340.3 512.75 342.75 510.3 345.3 507.75 348.95 507.75 352.45 507.75 355.05 510.3 357.6 512.75 357.6 516.4 L357.55 517.25 Q357.3 520.2 355.05 522.35 352.45 524.85 348.95 524.85 345.3 524.85 342.75 522.35 340.6 520.2 340.35 517.25 L340.3 516.4 M427.7 516.4 L427.65 517.25 Q427.4 520.2 425.25 522.35 422.7 524.85 419.05 524.85 415.55 524.85 412.95 522.35 410.7 520.2 410.45 517.25 L410.4 516.4 Q410.4 512.75 412.95 510.3 415.55 507.75 419.05 507.75 422.7 507.75 425.25 510.3 427.7 512.75 427.7 516.4"/>
+ <path stroke="none" fill="#C62C05" d="M366.35 553.15 L366.4 553.3 Q368.3 559.55 376.75 558.55 380.2 558.15 382.95 555.95 L384 555.05 385 555.95 Q387.8 558.15 391.2 558.55 399.65 559.55 401.6 553.3 L401.65 553.15 401.35 555.4 Q399.45 563.25 391.1 562 387.75 561.45 385 558.7 L384 557.6 383 558.7 Q380.25 561.45 376.85 562 368.55 563.25 366.65 555.4 366.35 554.25 366.35 553.15"/>
+ <path stroke="none" fill="#FFCC00" d="M653.4 466.25 L652.45 464.75 Q650.45 461.75 647.45 460.45 644.05 459 641.3 460.55 638.55 462.15 638.15 465.8 637.75 469.1 639.35 472.3 L640.25 473.85 Q644.15 480.6 648.75 484.25 653.45 487.9 656.2 486.3 658.95 484.75 658.05 478.9 657.3 473 653.4 466.25 M576 460.2 Q576.25 452 584.65 452 L695.35 452 Q703.75 452 704 460.2 L704 567.85 Q703.75 576 695.35 576 L676.15 576 Q676.15 555.9 665.55 541.7 661.9 536.8 657.7 533.6 662.2 530.35 662.55 526.05 L662.65 524.55 662.35 520.85 Q661.3 513.9 656.05 508.6 L653.5 506.35 Q647.7 502 640.1 502 632.5 502 626.7 506.35 625.35 507.3 624.05 508.6 618.85 513.9 617.75 520.85 617.5 522.6 617.5 524.55 L617.55 526.05 Q617.95 530.3 622.4 533.55 618.15 536.75 614.45 541.7 603.85 555.9 603.85 576 L584.65 576 Q576.25 576 576 567.85 L576 460.2 M691.25 511.8 Q691.25 506.05 687.2 502.05 683.15 498 677.45 498 671.85 498 667.7 502.05 663.75 506.05 663.75 511.8 663.75 517.5 667.7 521.4 671.85 525.5 677.45 525.5 683.15 525.5 687.2 521.4 691.25 517.5 691.25 511.8 M633.7 473.95 L634.3 472.9 Q635.35 470.75 635.1 468.65 634.8 466.2 633 465.1 631.2 464.05 628.95 465.05 626.95 465.9 625.6 467.9 L625 468.95 Q622.45 473.4 621.9 477.3 621.35 481.2 623.15 482.2 624.95 483.3 628 480.85 631.15 478.45 633.7 473.95 M588.75 511.8 Q588.75 517.5 592.8 521.4 596.85 525.5 602.55 525.5 608.15 525.5 612.3 521.4 616.25 517.5 616.25 511.8 616.25 506.05 612.3 502.05 608.15 498 602.55 498 596.85 498 592.8 502.05 588.75 506.05 588.75 511.8"/>
+ <path stroke="none" fill="#EEBE00" d="M653.4 466.25 Q657.3 473 658.05 478.9 658.95 484.75 656.2 486.3 653.45 487.9 648.75 484.25 644.15 480.6 640.25 473.85 L639.35 472.3 Q637.75 469.1 638.15 465.8 638.55 462.15 641.3 460.55 644.05 459 647.45 460.45 650.45 461.75 652.45 464.75 L653.4 466.25 M603.85 576 Q603.85 555.9 614.45 541.7 618.15 536.75 622.4 533.55 L623.5 534.3 624.05 534.65 Q630.7 538.5 640.1 538.5 648.75 538.5 655.05 535.2 L656.05 534.65 657.7 533.6 Q661.9 536.8 665.55 541.7 676.15 555.9 676.15 576 L603.85 576 M633.7 473.95 Q631.15 478.45 628 480.85 624.95 483.3 623.15 482.2 621.35 481.2 621.9 477.3 622.45 473.4 625 468.95 L625.6 467.9 Q626.95 465.9 628.95 465.05 631.2 464.05 633 465.1 634.8 466.2 635.1 468.65 635.35 470.75 634.3 472.9 L633.7 473.95"/>
+ <path stroke="none" fill="#FFD738" d="M704 460.2 Q703.75 452 695.35 452 L584.65 452 Q576.25 452 576 460.2 L576 456.7 Q576 448 584.65 448 L695.35 448 Q704 448 704 456.7 L704 460.2"/>
+ <path stroke="none" fill="#FFFFFF" d="M691.25 511.8 Q691.25 517.5 687.2 521.4 683.15 525.5 677.45 525.5 671.85 525.5 667.7 521.4 663.75 517.5 663.75 511.8 663.75 506.05 667.7 502.05 671.85 498 677.45 498 683.15 498 687.2 502.05 691.25 506.05 691.25 511.8 M683.7 511.7 Q683.7 508.05 681.25 505.6 678.7 503.05 675.05 503.05 671.55 503.05 668.95 505.6 666.4 508.05 666.4 511.7 L666.45 512.55 Q666.7 515.5 668.95 517.65 671.55 520.15 675.05 520.15 678.7 520.15 681.25 517.65 683.4 515.5 683.65 512.55 L683.7 511.7 M596.3 511.7 L596.35 512.55 Q596.6 515.5 598.75 517.65 601.3 520.15 604.95 520.15 608.45 520.15 611.05 517.65 613.3 515.5 613.55 512.55 L613.6 511.7 Q613.6 508.05 611.05 505.6 608.45 503.05 604.95 503.05 601.3 503.05 598.75 505.6 596.3 508.05 596.3 511.7 M588.75 511.8 Q588.75 506.05 592.8 502.05 596.85 498 602.55 498 608.15 498 612.3 502.05 616.25 506.05 616.25 511.8 616.25 517.5 612.3 521.4 608.15 525.5 602.55 525.5 596.85 525.5 592.8 521.4 588.75 517.5 588.75 511.8"/>
+ <path stroke="none" fill="#5B5B5B" d="M683.7 511.7 L683.65 512.55 Q683.4 515.5 681.25 517.65 678.7 520.15 675.05 520.15 671.55 520.15 668.95 517.65 666.7 515.5 666.45 512.55 L666.4 511.7 Q666.4 508.05 668.95 505.6 671.55 503.05 675.05 503.05 678.7 503.05 681.25 505.6 683.7 508.05 683.7 511.7 M596.3 511.7 Q596.3 508.05 598.75 505.6 601.3 503.05 604.95 503.05 608.45 503.05 611.05 505.6 613.6 508.05 613.6 511.7 L613.55 512.55 Q613.3 515.5 611.05 517.65 608.45 520.15 604.95 520.15 601.3 520.15 598.75 517.65 596.6 515.5 596.35 512.55 L596.3 511.7"/>
+ <path stroke="none" fill="#FF9900" d="M617.75 520.85 Q618.85 513.9 624.05 508.6 625.35 507.3 626.7 506.35 632.5 502 640.1 502 647.7 502 653.5 506.35 L656.05 508.6 Q661.3 513.9 662.35 520.85 661.85 522.2 660.4 523.45 659.1 518.4 654.9 514.45 L652.55 512.5 Q647.15 508.75 640.1 508.75 633.05 508.75 627.65 512.5 626.4 513.35 625.2 514.45 621.05 518.4 619.75 523.45 618.25 522.25 617.75 520.85"/>
+ <path stroke="none" fill="#F39100" d="M619.75 523.45 Q621.05 518.4 625.2 514.45 626.4 513.35 627.65 512.5 633.05 508.75 640.1 508.75 647.15 508.75 652.55 512.5 L654.9 514.45 Q659.1 518.4 660.4 523.45 658.8 524.75 656.05 525.85 651.8 527.6 646.45 528.2 L640.1 528.55 633.65 528.2 Q628.3 527.55 624.05 525.85 621.3 524.75 619.75 523.45"/>
+ <path stroke="none" fill="#E08600" d="M619.75 523.45 Q621.3 524.75 624.05 525.85 628.3 527.55 633.65 528.2 L640.1 528.55 646.45 528.2 Q651.8 527.6 656.05 525.85 658.8 524.75 660.4 523.45 661.85 522.2 662.35 520.85 L662.65 524.55 662.55 526.05 Q662.2 530.35 657.7 533.6 L656.05 534.65 655.05 535.2 Q648.75 538.5 640.1 538.5 630.7 538.5 624.05 534.65 L623.5 534.3 622.4 533.55 Q617.95 530.3 617.55 526.05 L617.5 524.55 Q617.5 522.6 617.75 520.85 618.25 522.25 619.75 523.45"/>
+ <path stroke="none" fill="#B67340" d="M948.05 448 L947.7 446.2 947.1 443.5 Q945.85 439.35 941.15 437.55 935.95 435.65 929.7 437.9 923.3 440.15 919.5 445.25 918.45 446.65 917.85 448 L917.4 448 Q917.85 444.8 920.3 441.35 924.1 436.3 930.45 434.05 936.75 431.8 941.95 433.7 946.6 435.45 947.9 439.65 L948.45 442.3 949.4 448 948.05 448 M842.7 448 Q843 445.25 843.6 442.35 L844.15 439.65 Q845.45 435.45 850.1 433.75 855.35 431.85 861.6 434.1 867.95 436.3 871.75 441.4 874.2 444.8 874.65 448 L874.2 448 872.55 445.3 Q868.75 440.15 862.4 437.95 856.1 435.7 850.9 437.6 846.2 439.35 844.95 443.5 L844.35 446.25 844.05 448 842.7 448 M858.55 543.4 L858.5 541.5 858.5 540.5 Q858.9 527.9 869.45 518.85 873.2 515.65 877.5 513.55 885.75 509.5 896 509.5 906.25 509.5 914.5 513.6 918.75 515.65 922.5 518.85 933.05 527.9 933.5 540.5 L933.5 541.5 933.45 543.4 Q932.6 531.5 922.5 522.85 919.5 520.3 916.15 518.45 907.25 513.5 896 513.5 884.75 513.5 875.9 518.4 872.5 520.25 869.45 522.85 859.35 531.5 858.55 543.4"/>
+ <path stroke="none" fill="#8E5A32" d="M858.55 543.4 Q859.35 531.5 869.45 522.85 872.5 520.25 875.9 518.4 884.75 513.5 896 513.5 907.25 513.5 916.15 518.45 919.5 520.3 922.5 522.85 932.6 531.5 933.45 543.4 932.7 555.45 922.5 564.1 911.5 573.5 896 573.5 880.45 573.5 869.45 564.1 859.3 555.4 858.55 543.4 M917.85 448 Q918.45 446.65 919.5 445.25 923.3 440.15 929.7 437.9 935.95 435.65 941.15 437.55 945.85 439.35 947.1 443.5 L947.7 446.2 948.05 448 917.85 448 M872.25 467.3 Q872.8 465.7 874.3 463.85 877.65 459.35 884.05 455.7 L886.05 454.7 Q895.65 450.15 906 454.75 L908 455.7 Q914.3 459.35 917.7 463.85 919.2 465.7 919.8 467.25 L919.7 467.4 Q918.2 470.05 912.55 469.25 909.55 468.8 906.3 467.55 L904.55 466.8 Q905.25 468.65 905.45 470.4 L905.5 470.6 Q905.65 472.25 905.35 473.3 905.1 474.3 904.4 474.75 902.75 475.65 900 473.55 897.85 471.8 896 469 894.15 471.8 892 473.55 889.25 475.65 887.65 474.75 886.9 474.3 886.6 473.3 886.3 472.25 886.5 470.65 L886.5 470.4 Q886.8 468.65 887.5 466.8 L885.7 467.55 Q882.45 468.8 879.45 469.25 873.85 470.05 872.3 467.4 L872.25 467.3 M844.05 448 L844.35 446.25 844.95 443.5 Q846.2 439.35 850.9 437.6 856.1 435.7 862.4 437.95 868.75 440.15 872.55 445.3 L874.2 448 844.05 448 M880.4 533.9 Q881.9 535.3 883.95 535.3 886.1 535.3 887.6 533.8 889.1 532.3 889.1 530.15 889.1 529.05 888.75 528.15 L887.7 526.6 887.55 526.45 Q885 523.9 882.15 523.05 L881.95 523 Q879.75 522.35 878.4 523.05 877.9 523.25 877.5 523.65 L876.9 524.5 Q876.25 525.75 876.7 527.65 L876.8 528.15 877.25 529.45 Q878.2 531.7 880.25 533.75 L880.4 533.9 M914.5 523.65 L913.65 523.05 Q912.25 522.35 910.05 523 L909.8 523.1 Q906.95 523.95 904.45 526.45 L904.3 526.6 Q903.65 527.3 903.3 528.15 902.9 529.05 902.9 530.15 902.9 532.3 904.4 533.8 905.9 535.3 908.05 535.3 910.1 535.3 911.6 533.9 L911.75 533.75 Q913.8 531.7 914.75 529.45 L915.2 528.15 915.35 527.65 Q915.75 525.75 915.1 524.5 L914.5 523.65"/>
+ <path stroke="none" fill="#9C6236" d="M919.8 467.25 Q919.2 465.7 917.7 463.85 914.3 459.35 908 455.7 L906 454.75 Q895.65 450.15 886.05 454.7 L884.05 455.7 Q877.65 459.35 874.3 463.85 872.8 465.7 872.25 467.3 870.9 464.75 874.3 460.4 877.65 455.9 884.05 452.3 L884.6 452 Q895.55 446.05 907.45 452 L908 452.3 Q914.3 455.9 917.7 460.4 921.1 464.75 919.8 467.25"/>
+ <path stroke="none" fill="#B4723F" d="M948.05 448 L949.4 448 951.35 448 Q960 448 960 456.7 L960 460.2 Q959.75 452 951.35 452 L907.45 452 Q895.55 446.05 884.6 452 L840.65 452 Q832.25 452 832 460.2 L832 456.7 Q832 448 840.65 448 L842.7 448 844.05 448 874.2 448 874.65 448 917.4 448 917.85 448 948.05 448"/>
+ <path stroke="none" fill="#A16639" d="M919.8 467.25 Q921.1 464.75 917.7 460.4 914.3 455.9 908 452.3 L907.45 452 951.35 452 Q959.75 452 960 460.2 L960 567.85 Q959.75 576 951.35 576 L840.65 576 Q832.25 576 832 567.85 L832 460.2 Q832.25 452 840.65 452 L884.6 452 884.05 452.3 Q877.65 455.9 874.3 460.4 870.9 464.75 872.25 467.3 L872.3 467.4 Q873.85 470.05 879.45 469.25 882.45 468.8 885.7 467.55 884.35 492.05 877.5 513.55 873.2 515.65 869.45 518.85 858.9 527.9 858.5 540.5 L858.5 541.5 858.55 543.4 Q859.3 555.4 869.45 564.1 880.45 573.5 896 573.5 911.5 573.5 922.5 564.1 932.7 555.45 933.45 543.4 L933.5 541.5 933.5 540.5 Q933.05 527.9 922.5 518.85 918.75 515.65 914.5 513.6 907.65 492.05 906.3 467.55 909.55 468.8 912.55 469.25 918.2 470.05 919.7 467.4 L919.8 467.25 M944.5 494.05 Q944.5 488.85 940.85 485.2 937.2 481.55 932 481.55 926.9 481.55 923.2 485.2 919.55 488.85 919.55 494.05 919.55 499.2 923.2 502.8 926.9 506.5 932 506.5 937.2 506.5 940.85 502.8 944.5 499.2 944.5 494.05 M847.5 494.05 Q847.5 499.2 851.15 502.8 854.8 506.5 860 506.5 865.1 506.5 868.8 502.8 872.45 499.2 872.45 494.05 872.45 488.85 868.8 485.2 865.1 481.55 860 481.55 854.8 481.55 851.15 485.2 847.5 488.85 847.5 494.05"/>
+ <path stroke="none" fill="#F3DBC8" d="M885.7 467.55 L887.5 466.8 Q886.8 468.65 886.5 470.4 L886.5 470.65 Q886.3 472.25 886.6 473.3 886.9 474.3 887.65 474.75 889.25 475.65 892 473.55 894.15 471.8 896 469 897.85 471.8 900 473.55 902.75 475.65 904.4 474.75 905.1 474.3 905.35 473.3 905.65 472.25 905.5 470.6 L905.45 470.4 Q905.25 468.65 904.55 466.8 L906.3 467.55 Q907.65 492.05 914.5 513.6 906.25 509.5 896 509.5 885.75 509.5 877.5 513.55 884.35 492.05 885.7 467.55"/>
+ <path stroke="none" fill="#FFFFFF" d="M939.75 494.25 Q939.75 490.65 937.25 488.1 934.75 485.6 931.1 485.6 927.55 485.6 924.95 488.1 922.45 490.65 922.45 494.25 922.45 497.85 924.95 500.3 927.55 502.85 931.1 502.85 934.75 502.85 937.25 500.3 939.75 497.85 939.75 494.25 M944.5 494.05 Q944.5 499.2 940.85 502.8 937.2 506.5 932 506.5 926.9 506.5 923.2 502.8 919.55 499.2 919.55 494.05 919.55 488.85 923.2 485.2 926.9 481.55 932 481.55 937.2 481.55 940.85 485.2 944.5 488.85 944.5 494.05 M852.2 494.25 Q852.2 497.85 854.75 500.3 857.25 502.85 860.9 502.85 864.45 502.85 867 500.3 869.55 497.85 869.55 494.25 869.55 490.65 867 488.1 864.45 485.6 860.9 485.6 857.25 485.6 854.75 488.1 852.2 490.65 852.2 494.25 M847.5 494.05 Q847.5 488.85 851.15 485.2 854.8 481.55 860 481.55 865.1 481.55 868.8 485.2 872.45 488.85 872.45 494.05 872.45 499.2 868.8 502.8 865.1 506.5 860 506.5 854.8 506.5 851.15 502.8 847.5 499.2 847.5 494.05"/>
+ <path stroke="none" fill="#5B5B5B" d="M939.75 494.25 Q939.75 497.85 937.25 500.3 934.75 502.85 931.1 502.85 927.55 502.85 924.95 500.3 922.45 497.85 922.45 494.25 922.45 490.65 924.95 488.1 927.55 485.6 931.1 485.6 934.75 485.6 937.25 488.1 939.75 490.65 939.75 494.25 M852.2 494.25 Q852.2 490.65 854.75 488.1 857.25 485.6 860.9 485.6 864.45 485.6 867 488.1 869.55 490.65 869.55 494.25 869.55 497.85 867 500.3 864.45 502.85 860.9 502.85 857.25 502.85 854.75 500.3 852.2 497.85 852.2 494.25"/>
+ <path stroke="none" fill="#704627" d="M880.4 533.9 L880.25 533.75 Q878.2 531.7 877.25 529.45 L876.8 528.15 876.7 527.65 Q876.25 525.75 876.9 524.5 L877.5 523.65 Q877.9 523.25 878.4 523.05 879.75 522.35 881.95 523 L882.15 523.05 Q885 523.9 887.55 526.45 L887.7 526.6 888.75 528.15 Q889.1 529.05 889.1 530.15 889.1 532.3 887.6 533.8 886.1 535.3 883.95 535.3 881.9 535.3 880.4 533.9 M914.5 523.65 L915.1 524.5 Q915.75 525.75 915.35 527.65 L915.2 528.15 914.75 529.45 Q913.8 531.7 911.75 533.75 L911.6 533.9 Q910.1 535.3 908.05 535.3 905.9 535.3 904.4 533.8 902.9 532.3 902.9 530.15 902.9 529.05 903.3 528.15 903.65 527.3 904.3 526.6 L904.45 526.45 Q906.95 523.95 909.8 523.1 L910.05 523 Q912.25 522.35 913.65 523.05 L914.5 523.65"/>
+ <path stroke="none" fill="#FFFFFF" d="M95.9 676.1 Q96.75 674.65 98 673.4 98.95 672.45 100.05 671.8 102.95 669.9 106.6 669.9 111.6 669.9 115.3 673.4 118.8 676.95 118.8 682 118.8 687.05 115.3 690.5 111.6 694.15 106.6 694.15 101.6 694.15 98 690.5 94.4 687.05 94.4 682 94.4 678.75 95.9 676.1 M100.35 682.25 Q100.35 685.4 102.6 687.55 104.75 689.85 107.95 689.85 111.1 689.85 113.35 687.55 115.6 685.4 115.6 682.25 115.6 678.95 113.35 676.8 111.1 674.65 107.95 674.65 104.75 674.65 102.6 676.8 100.35 678.95 100.35 682.25 M160.2 676.25 Q161.6 678.8 161.6 682 161.6 687.05 158.1 690.5 154.5 694.15 149.4 694.15 144.4 694.15 140.85 690.5 137.25 687.05 137.25 682 137.25 676.95 140.85 673.4 144.4 669.9 149.4 669.9 152.95 669.9 155.8 671.6 L158.1 673.4 Q159.4 674.7 160.2 676.25 M155.75 682.25 Q155.75 678.95 153.5 676.8 151.25 674.65 148.1 674.65 145 674.65 142.65 676.8 140.4 678.95 140.4 682.25 140.4 685.4 142.65 687.55 145 689.85 148.1 689.85 151.25 689.85 153.5 687.55 155.75 685.4 155.75 682.25"/>
+ <path stroke="none" fill="#986C4C" d="M100.05 671.8 Q98.95 672.45 98 673.4 96.75 674.65 95.9 676.1 86.5 687.3 86.5 702.45 86.5 719.65 98.65 731.8 102.5 735.65 106.9 738.3 98.4 748.65 90.9 768 L72.65 768 Q64.25 768 64 759.85 L64 652.2 Q64.25 644 72.65 644 L93.45 644 Q99.6 658.35 106.45 666.9 103.1 668.95 100.05 671.8 M149.15 738.3 Q153.5 735.65 157.35 731.8 169.5 719.65 169.5 702.45 169.5 687.4 160.2 676.25 159.4 674.7 158.1 673.4 L155.8 671.6 Q152.8 668.9 149.55 666.9 156.4 658.35 162.65 644 L183.85 644 Q191.75 644.25 192 652.2 L192 759.85 Q191.75 767.75 183.9 768 L165.2 768 Q157.65 748.65 149.15 738.3"/>
+ <path stroke="none" fill="#916546" d="M149.15 738.3 Q146.6 739.8 143.95 740.95 L144.05 738.6 144.15 736.8 144.3 732.55 Q149.8 731.85 153.9 727.75 158.05 723.65 158.75 718.15 L161.75 720.5 162.2 720.6 162.65 720.45 162.85 720.05 163.9 716.45 163.9 716 163.6 715.6 Q161.4 714 158.65 713.1 158.3 710.95 157.45 709.1 L167.2 710.1 167.7 710 168.15 709.55 168.15 708.95 167.45 704.3 167.2 703.8 Q166.95 703.55 166.7 703.5 160.85 702.35 154.4 704.55 L153.9 704 Q149.15 699.2 142.45 699.05 L140.3 699.05 140.4 698.45 140.5 696.7 140.45 695.8 Q140.15 693.55 136.8 691.9 133.15 690.15 128 690.15 122.8 690.15 119.1 691.9 115.75 693.55 115.5 695.8 L115.5 696.7 115.6 698.3 115.7 699.05 113.95 699.05 Q107 699.05 102.05 704 L101.55 704.5 Q95.15 702.35 89.3 703.5 L88.8 703.8 Q88.6 703.95 88.55 704.3 L87.85 708.95 87.85 709.55 88.3 710 88.8 710.1 98.55 709.1 Q97.7 711 97.35 713.1 94.6 714 92.4 715.6 L92.1 716 92.1 716.45 93.15 720.05 93.35 720.45 93.8 720.6 94.25 720.5 97.3 718.15 Q97.95 723.65 102.05 727.75 106.2 731.9 111.7 732.6 L111.9 736.8 111.95 738.6 112.1 740.95 Q109.4 739.8 106.9 738.3 102.5 735.65 98.65 731.8 86.5 719.65 86.5 702.45 86.5 687.3 95.9 676.1 94.4 678.75 94.4 682 94.4 687.05 98 690.5 101.6 694.15 106.6 694.15 111.6 694.15 115.3 690.5 118.8 687.05 118.8 682 118.8 676.95 115.3 673.4 111.6 669.9 106.6 669.9 102.95 669.9 100.05 671.8 103.1 668.95 106.45 666.9 116 660.95 128 660.95 140 660.95 149.55 666.9 152.8 668.9 155.8 671.6 152.95 669.9 149.4 669.9 144.4 669.9 140.85 673.4 137.25 676.95 137.25 682 137.25 687.05 140.85 690.5 144.4 694.15 149.4 694.15 154.5 694.15 158.1 690.5 161.6 687.05 161.6 682 161.6 678.8 160.2 676.25 169.5 687.4 169.5 702.45 169.5 719.65 157.35 731.8 153.5 735.65 149.15 738.3 M124.35 729.15 L125.85 727.75 128 725.25 130.1 727.75 131.65 729.15 131.65 740 131.65 743.8 128 743.95 124.35 743.8 124.35 740 124.35 729.15"/>
+ <path stroke="none" fill="#5B5B5B" d="M100.35 682.25 Q100.35 678.95 102.6 676.8 104.75 674.65 107.95 674.65 111.1 674.65 113.35 676.8 115.6 678.95 115.6 682.25 115.6 685.4 113.35 687.55 111.1 689.85 107.95 689.85 104.75 689.85 102.6 687.55 100.35 685.4 100.35 682.25 M155.75 682.25 Q155.75 685.4 153.5 687.55 151.25 689.85 148.1 689.85 145 689.85 142.65 687.55 140.4 685.4 140.4 682.25 140.4 678.95 142.65 676.8 145 674.65 148.1 674.65 151.25 674.65 153.5 676.8 155.75 678.95 155.75 682.25"/>
+ <path stroke="none" fill="#A17250" d="M106.45 666.9 Q99.6 658.35 93.45 644 L162.65 644 Q156.4 658.35 149.55 666.9 140 660.95 128 660.95 116 660.95 106.45 666.9"/>
+ <path stroke="none" fill="#333333" d="M115.6 698.3 L115.5 696.7 115.5 695.8 Q115.75 693.55 119.1 691.9 122.8 690.15 128 690.15 133.15 690.15 136.8 691.9 140.15 693.55 140.45 695.8 L140.5 696.7 140.4 698.45 Q139.9 696.4 136.8 694.9 133.15 693.15 128 693.15 122.8 693.15 119.1 694.9 116.1 696.35 115.6 698.3"/>
+ <path stroke="none" fill="#B17E58" d="M93.45 644 L72.65 644 Q64.25 644 64 652.2 L64 648.7 Q64 640 72.65 640 L183.9 640 Q189.3 640.2 191.1 644 192 645.9 192 648.7 L192 652.2 Q191.75 644.25 183.85 644 L162.65 644 93.45 644"/>
+ <path stroke="none" fill="#3C6672" d="M140.3 699.05 L142.45 699.05 Q149.15 699.2 153.9 704 L154.4 704.55 Q151.45 705.5 148.35 707.2 148.05 707.4 147.9 707.7 L147.9 708.3 148.2 708.85 148.8 709.05 Q153 708.85 157.45 709.1 158.3 710.95 158.65 713.1 154.5 711.75 149.2 712.05 148.9 712.1 148.7 712.25 L148.5 712.7 148.5 713.2 148.9 713.55 Q154.25 715.05 158.75 718.15 158.05 723.65 153.9 727.75 149.8 731.85 144.3 732.55 L143.6 732.65 142 732.7 Q138.1 732.7 134.85 731.15 133.15 730.35 131.65 729.15 L130.1 727.75 128 725.25 125.85 727.75 124.35 729.15 Q122.85 730.35 121.15 731.15 117.85 732.7 113.95 732.7 L112.45 732.65 111.7 732.6 Q106.2 731.9 102.05 727.75 97.95 723.65 97.3 718.15 101.75 715.05 107.1 713.55 L107.5 713.2 107.5 712.7 107.3 712.25 106.8 712.05 Q101.5 711.75 97.35 713.1 97.7 711 98.55 709.1 103 708.85 107.2 709.05 L107.8 708.85 108.1 708.3 108.1 707.7 107.65 707.2 Q104.55 705.5 101.55 704.5 L102.05 704 Q107 699.05 113.95 699.05 L115.7 699.05 Q116.35 702.7 119.1 705.45 122.8 709.15 128 709.15 133.15 709.15 136.8 705.45 139.6 702.7 140.3 699.05"/>
+ <path stroke="none" fill="#252525" d="M140.3 699.05 Q139.6 702.7 136.8 705.45 133.15 709.15 128 709.15 122.8 709.15 119.1 705.45 116.35 702.7 115.7 699.05 L115.6 698.3 Q116.1 696.35 119.1 694.9 122.8 693.15 128 693.15 133.15 693.15 136.8 694.9 139.9 696.4 140.4 698.45 L140.3 699.05 M154.4 704.55 Q160.85 702.35 166.7 703.5 166.95 703.55 167.2 703.8 L167.45 704.3 168.15 708.95 168.15 709.55 167.7 710 167.2 710.1 157.45 709.1 Q153 708.85 148.8 709.05 L148.2 708.85 147.9 708.3 147.9 707.7 Q148.05 707.4 148.35 707.2 151.45 705.5 154.4 704.55 M158.65 713.1 Q161.4 714 163.6 715.6 L163.9 716 163.9 716.45 162.85 720.05 162.65 720.45 162.2 720.6 161.75 720.5 158.75 718.15 Q154.25 715.05 148.9 713.55 L148.5 713.2 148.5 712.7 148.7 712.25 Q148.9 712.1 149.2 712.05 154.5 711.75 158.65 713.1 M101.55 704.5 Q104.55 705.5 107.65 707.2 L108.1 707.7 108.1 708.3 107.8 708.85 107.2 709.05 Q103 708.85 98.55 709.1 L88.8 710.1 88.3 710 87.85 709.55 87.85 708.95 88.55 704.3 Q88.6 703.95 88.8 703.8 L89.3 703.5 Q95.15 702.35 101.55 704.5 M97.35 713.1 Q101.5 711.75 106.8 712.05 L107.3 712.25 107.5 712.7 107.5 713.2 107.1 713.55 Q101.75 715.05 97.3 718.15 L94.25 720.5 93.8 720.6 93.35 720.45 93.15 720.05 92.1 716.45 92.1 716 92.4 715.6 Q94.6 714 97.35 713.1"/>
+ <path stroke="none" fill="#FFFCF5" d="M144.05 738.6 L143.95 740.95 Q142.9 760.1 140.65 768 139.35 772.35 137.7 773.3 136.55 774.15 135.25 774 133.5 773.95 132.5 772.65 131.7 771.65 131.65 770.5 L131.65 770.2 131.65 768 131.65 756.5 131.65 756.2 131.65 743.8 131.65 740 Q131.7 738.75 132.55 737.95 133.4 737.05 134.65 737.05 L141.4 737.05 Q142.2 737.05 142.95 737.5 L143.2 737.65 144.05 738.6 M124.35 768 L124.35 770.2 124.35 770.5 Q124.3 771.65 123.5 772.65 122.5 773.95 120.75 774 119.45 774.15 118.3 773.3 116.65 772.35 115.4 768 113.1 760.1 112.1 740.95 L111.95 738.6 Q112.3 738 112.8 737.65 L113.05 737.5 Q113.8 737.05 114.6 737.05 L121.35 737.05 Q122.6 737.05 123.45 737.95 124.3 738.75 124.35 740 L124.35 743.8 124.35 756.2 124.35 756.5 124.35 768"/>
+ <path stroke="none" fill="#F0EDE7" d="M144.3 732.55 L144.15 736.8 144.05 738.6 143.2 737.65 142.95 737.5 Q142.2 737.05 141.4 737.05 L134.65 737.05 Q133.4 737.05 132.55 737.95 131.7 738.75 131.65 740 L131.65 729.15 Q133.15 730.35 134.85 731.15 138.1 732.7 142 732.7 L143.6 732.65 144.3 732.55 M111.7 732.6 L112.45 732.65 113.95 732.7 Q117.85 732.7 121.15 731.15 122.85 730.35 124.35 729.15 L124.35 740 Q124.3 738.75 123.45 737.95 122.6 737.05 121.35 737.05 L114.6 737.05 Q113.8 737.05 113.05 737.5 L112.8 737.65 Q112.3 738 111.95 738.6 L111.9 736.8 111.7 732.6"/>
+ <path stroke="none" fill="#845C41" d="M90.9 768 Q98.4 748.65 106.9 738.3 109.4 739.8 112.1 740.95 113.1 760.1 115.4 768 L90.9 768 M143.95 740.95 Q146.6 739.8 149.15 738.3 157.65 748.65 165.2 768 L140.65 768 Q142.9 760.1 143.95 740.95 M131.65 768 L124.35 768 124.35 756.5 124.35 756.2 124.35 743.8 128 743.95 131.65 743.8 131.65 756.2 131.65 756.5 131.65 768"/>
+ <path stroke="none" fill="#B67340" d="M303.95 675.05 L303.8 673.3 Q303.75 667.3 307.4 661.05 311.05 654.7 316.3 651.7 321.05 649.1 324.45 650.5 L326.6 651.7 Q336.8 657.6 341.6 666.1 L339.9 667.45 Q335.15 660.65 326.6 655.7 L324.45 654.5 Q321.05 653.1 316.3 655.7 311.05 658.7 307.4 665.05 304.45 670.1 303.95 675.05 M428.05 667.5 L426.35 666.15 Q431.1 657.6 441.35 651.7 L443.5 650.5 Q446.9 649.1 451.65 651.7 456.9 654.7 460.55 661.05 464.2 667.3 464.15 673.3 L464.05 675.05 Q463.5 670.1 460.55 665.05 456.9 658.7 451.65 655.7 446.9 653.1 443.5 654.5 L441.35 655.7 Q432.75 660.7 428.05 667.5"/>
+ <path stroke="none" fill="#8E5A32" d="M428.05 667.5 Q432.75 660.7 441.35 655.7 L443.5 654.5 Q446.9 653.1 451.65 655.7 456.9 658.7 460.55 665.05 463.5 670.1 464.05 675.05 463.55 679.15 461.1 681 L460.35 681.5 Q459.7 678.25 457.75 674.95 454.75 669.7 450.45 667.2 446.5 665.1 443.7 666.25 L441.95 667.2 Q437.4 669.85 434.15 673.15 L433.2 672.15 428.05 667.5 M303.95 675.05 Q304.45 670.1 307.4 665.05 311.05 658.7 316.3 655.7 321.05 653.1 324.45 654.5 L326.6 655.7 Q335.15 660.65 339.9 667.45 337.25 669.6 334.7 672.15 L333.8 673.1 Q330.5 669.85 326 667.2 L324.25 666.25 Q321.45 665.1 317.5 667.2 313.2 669.7 310.2 674.95 308.25 678.25 307.6 681.5 L306.85 681 Q304.4 679.15 303.95 675.05"/>
+ <path stroke="none" fill="#774B2A" d="M333.8 673.1 Q327.25 679.9 323.1 687.65 316.15 686.4 308.9 682.25 L307.6 681.5 Q308.25 678.25 310.2 674.95 313.2 669.7 317.5 667.2 321.45 665.1 324.25 666.25 L326 667.2 Q330.5 669.85 333.8 673.1 M460.35 681.5 L459.05 682.25 Q451.8 686.45 444.8 687.65 440.65 679.9 434.15 673.15 437.4 669.85 441.95 667.2 L443.7 666.25 Q446.5 665.1 450.45 667.2 454.75 669.7 457.75 674.95 459.7 678.25 460.35 681.5"/>
+ <path stroke="none" fill="#B4723F" d="M320 652.2 L320 648.7 Q320 640 328.65 640 L439.35 640 Q448 640 448 648.7 L448 652.2 Q447.75 644 439.35 644 L328.65 644 Q320.25 644 320 652.2"/>
+ <path stroke="none" fill="#A16639" d="M320 652.2 Q320.25 644 328.65 644 L439.35 644 Q447.75 644 448 652.2 L448 759.85 Q447.75 768 439.35 768 L429.35 768 Q424.85 760.6 419.9 755 412.25 746.3 403.6 741.8 394.4 737.05 384 737.05 373.7 737.05 364.55 741.75 355.75 746.25 348.05 755.05 343.1 760.65 338.6 768 L328.65 768 Q320.25 768 320 759.85 L320 652.2 M432.8 688.65 L432.8 688.6 Q431.15 682.6 425.85 679.55 420.45 676.45 414.45 678.05 408.5 679.6 405.35 685 402.25 690.35 403.85 696.35 L403.85 696.4 Q405.8 703.6 411.35 707.45 417 711.45 422.95 709.9 428.95 708.3 431.85 702 434.7 695.85 432.8 688.65 M335.1 688.65 Q333.2 695.85 336.05 702 338.95 708.3 344.95 709.9 350.9 711.45 356.55 707.45 362.1 703.6 364.05 696.4 L364.05 696.35 Q365.65 690.35 362.55 685 359.4 679.6 353.45 678.05 347.45 676.45 342.05 679.55 336.75 682.6 335.1 688.6 L335.1 688.65 M401.45 663.9 Q401.45 658.7 396.3 655.05 391.2 651.4 383.95 651.4 376.7 651.4 371.55 655.05 366.45 658.7 366.45 663.9 L366.5 664.75 Q366.85 675.35 371.55 683 376.7 691.4 383.95 691.4 391.2 691.4 396.3 683 401.05 675.35 401.45 664.75 L401.45 663.9 M396.8 707.65 L397 705.3 397 704.4 Q396.65 702 393.2 700.3 389.35 698.45 383.95 698.45 378.55 698.45 374.7 700.3 371.2 702 370.9 704.4 L370.9 705.3 371.1 707.65 Q371.75 711.6 374.7 714.55 376.85 716.7 379.5 717.65 L378.65 718.65 376.6 720.15 Q375.15 720.8 373.5 720.8 370.5 720.8 368.35 718.65 367.55 717.85 367 716.9 L366.45 716.45 365.8 716.55 361.2 719.1 Q360.85 719.3 360.8 719.65 360.65 719.95 360.85 720.3 361.45 721.4 362.35 722.5 L363.4 723.65 Q367.55 727.85 373.5 727.85 379.4 727.85 383.65 723.65 L383.95 723.35 384.25 723.65 Q388.45 727.85 394.35 727.85 400.25 727.85 404.5 723.65 L405.55 722.5 407.05 720.2 407.1 719.55 406.65 719.05 401.95 716.6 401.25 716.55 400.75 717 399.5 718.65 Q397.35 720.8 394.35 720.8 392.7 720.8 391.3 720.15 390.2 719.6 389.25 718.65 L388.4 717.65 Q391.05 716.7 393.2 714.55 396.15 711.6 396.8 707.65"/>
+ <path stroke="none" fill="#8E5A32" d="M427.15 692.1 Q427.15 688.25 424.45 685.55 421.7 682.85 417.85 682.85 414.05 682.85 411.3 685.55 408.6 688.25 408.6 692.1 408.6 695.95 411.3 698.55 414.05 701.35 417.85 701.35 421.7 701.35 424.45 698.55 427.15 695.95 427.15 692.1 M432.8 688.65 Q434.7 695.85 431.85 702 428.95 708.3 422.95 709.9 417 711.45 411.35 707.45 405.8 703.6 403.85 696.4 L403.85 696.35 Q402.25 690.35 405.35 685 408.5 679.6 414.45 678.05 420.45 676.45 425.85 679.55 431.15 682.6 432.8 688.6 L432.8 688.65 M335.1 688.65 L335.1 688.6 Q336.75 682.6 342.05 679.55 347.45 676.45 353.45 678.05 359.4 679.6 362.55 685 365.65 690.35 364.05 696.35 L364.05 696.4 Q362.1 703.6 356.55 707.45 350.9 711.45 344.95 709.9 338.95 708.3 336.05 702 333.2 695.85 335.1 688.65 M340.75 692.1 Q340.75 695.95 343.45 698.55 346.2 701.35 350.05 701.35 353.85 701.35 356.6 698.55 359.3 695.95 359.3 692.1 359.3 688.25 356.6 685.55 353.85 682.85 350.05 682.85 346.2 682.85 343.45 685.55 340.75 688.25 340.75 692.1"/>
+ <path stroke="none" fill="#FFFFFF" d="M340.75 692.1 Q340.75 688.25 343.45 685.55 346.2 682.85 350.05 682.85 353.85 682.85 356.6 685.55 359.3 688.25 359.3 692.1 359.3 695.95 356.6 698.55 353.85 701.35 350.05 701.35 346.2 701.35 343.45 698.55 340.75 695.95 340.75 692.1 M427.15 692.1 Q427.15 695.95 424.45 698.55 421.7 701.35 417.85 701.35 414.05 701.35 411.3 698.55 408.6 695.95 408.6 692.1 408.6 688.25 411.3 685.55 414.05 682.85 417.85 682.85 421.7 682.85 424.45 685.55 427.15 688.25 427.15 692.1 M422.65 692.25 Q422.65 689.8 420.95 688.15 419.25 686.45 416.85 686.45 414.45 686.45 412.7 688.15 411 689.8 411 692.25 411 694.65 412.7 696.3 414.45 698.05 416.85 698.05 419.25 698.05 420.95 696.3 422.65 694.65 422.65 692.25 M345.25 692.25 Q345.25 694.65 346.95 696.3 348.65 698.05 351.05 698.05 353.45 698.05 355.2 696.3 356.9 694.65 356.9 692.25 356.9 689.8 355.2 688.15 353.45 686.45 351.05 686.45 348.65 686.45 346.95 688.15 345.25 689.8 345.25 692.25"/>
+ <path stroke="none" fill="#5B5B5B" d="M345.25 692.25 Q345.25 689.8 346.95 688.15 348.65 686.45 351.05 686.45 353.45 686.45 355.2 688.15 356.9 689.8 356.9 692.25 356.9 694.65 355.2 696.3 353.45 698.05 351.05 698.05 348.65 698.05 346.95 696.3 345.25 694.65 345.25 692.25 M422.65 692.25 Q422.65 694.65 420.95 696.3 419.25 698.05 416.85 698.05 414.45 698.05 412.7 696.3 411 694.65 411 692.25 411 689.8 412.7 688.15 414.45 686.45 416.85 686.45 419.25 686.45 420.95 688.15 422.65 689.8 422.65 692.25"/>
+ <path stroke="none" fill="#AA6C3C" d="M401.45 663.9 L401.45 664.75 Q401.05 675.35 396.3 683 391.2 691.4 383.95 691.4 376.7 691.4 371.55 683 366.85 675.35 366.5 664.75 L366.45 663.9 Q366.45 658.7 371.55 655.05 376.7 651.4 383.95 651.4 391.2 651.4 396.3 655.05 401.45 658.7 401.45 663.9"/>
+ <path stroke="none" fill="#545454" d="M371.1 707.65 L370.9 705.3 370.9 704.4 Q371.2 702 374.7 700.3 378.55 698.45 383.95 698.45 389.35 698.45 393.2 700.3 396.65 702 397 704.4 L397 705.3 396.8 707.65 Q396.1 705.75 393.2 704.3 389.35 702.45 383.95 702.45 378.55 702.45 374.7 704.3 371.8 705.7 371.1 707.65"/>
+ <path stroke="none" fill="#464646" d="M371.1 707.65 Q371.8 705.7 374.7 704.3 378.55 702.45 383.95 702.45 389.35 702.45 393.2 704.3 396.1 705.75 396.8 707.65 396.15 711.6 393.2 714.55 391.05 716.7 388.4 717.65 384.15 719.4 379.5 717.65 376.85 716.7 374.7 714.55 371.75 711.6 371.1 707.65"/>
+ <path stroke="none" fill="#383838" d="M388.4 717.65 L389.25 718.65 Q390.2 719.6 391.3 720.15 392.7 720.8 394.35 720.8 397.35 720.8 399.5 718.65 L400.75 717 401.25 716.55 401.95 716.6 406.65 719.05 407.1 719.55 407.05 720.2 405.55 722.5 404.5 723.65 Q400.25 727.85 394.35 727.85 388.45 727.85 384.25 723.65 L383.95 723.35 383.65 723.65 Q379.4 727.85 373.5 727.85 367.55 727.85 363.4 723.65 L362.35 722.5 Q361.45 721.4 360.85 720.3 360.65 719.95 360.8 719.65 360.85 719.3 361.2 719.1 L365.8 716.55 366.45 716.45 367 716.9 Q367.55 717.85 368.35 718.65 370.5 720.8 373.5 720.8 375.15 720.8 376.6 720.15 L378.65 718.65 379.5 717.65 Q384.15 719.4 388.4 717.65"/>
+ <path stroke="none" fill="#955E34" d="M429.35 768 L338.6 768 Q343.1 760.65 348.05 755.05 355.75 746.25 364.55 741.75 373.7 737.05 384 737.05 394.4 737.05 403.6 741.8 412.25 746.3 419.9 755 424.85 760.6 429.35 768"/>
+ <path stroke="none" fill="#2ECC71" d="M901.7 663.4 Q902.05 659.6 904.15 656.45 905.05 655.05 906.35 653.75 L906.35 653.7 908.65 651.85 909.15 651.5 Q912.35 649.45 916.4 649.25 L917.55 649.15 Q924.1 649.15 928.8 653.7 L928.9 653.85 931.05 656.45 932.25 658.75 932.25 658.8 Q933.15 661 933.4 663.45 L933.45 661.85 933.45 661.8 Q933.4 658.9 932.55 656.45 L932.25 655.65 932.25 655.6 Q931.1 652.9 928.9 650.7 L928.8 650.55 Q924.1 646 917.55 646 L916.4 646.1 Q912.35 646.3 909.15 648.35 L908.65 648.7 906.35 650.55 906.35 650.6 Q903.7 653.2 902.55 656.45 901.65 658.95 901.65 661.85 L901.7 663.4 M927.15 661.85 L927.15 661.8 Q927.15 659.8 926.45 658.1 L925.55 656.45 924.4 655.05 Q921.55 652.3 917.55 652.3 L917 652.35 Q914.55 652.4 912.55 653.7 L912.45 653.75 Q911.55 654.3 910.8 655.05 L909.6 656.45 Q907.95 658.8 907.95 661.85 907.95 665.85 910.8 668.55 L911.85 669.55 Q914.3 671.45 917.55 671.45 921.55 671.45 924.4 668.55 927.15 665.85 927.15 661.85 M907.1 676.9 L906.55 676.55 Q905.75 676.15 904.4 676.55 L904.25 676.55 Q902.55 677.1 901.05 678.6 L900.95 678.7 900.35 679.6 Q900.1 680.15 900.1 680.85 900.1 682.1 901 683 901.9 683.95 903.2 683.95 904.45 683.95 905.35 683.1 L905.4 683 Q906.65 681.75 907.25 680.4 L907.5 679.6 907.6 679.3 Q907.85 678.15 907.45 677.4 L907.1 676.9 M886.55 683.1 Q887.45 683.95 888.7 683.95 889.95 683.95 890.85 683 891.8 682.1 891.8 680.85 L891.55 679.6 890.95 678.7 890.85 678.6 Q889.3 677.05 887.6 676.55 L887.5 676.55 Q886.15 676.15 885.35 676.55 885 676.65 884.8 676.9 L884.4 677.4 Q884 678.15 884.3 679.3 L884.4 679.6 Q884.45 680 884.65 680.4 885.2 681.75 886.45 683 L886.55 683.1 M960 652.2 L960 668 Q957.1 664.8 952.65 663.6 946.45 661.95 940.9 665.15 935.35 668.35 933.7 674.55 933.45 675.5 933.35 676.5 935.25 671.7 939.85 669 945.45 665.8 951.65 667.45 956.95 668.85 960 673.15 L960.95 674.65 Q963.7 679.3 962.95 684.45 961.9 687.05 960 689.1 958.45 690.7 956.35 691.9 950.85 695.1 944.65 693.45 940.5 692.35 937.7 689.5 936.3 688.1 935.25 686.25 L935.05 685.85 Q917.15 688 895.95 688 874.65 688 856.75 685.8 L856.5 686.25 854.1 689.5 Q851.3 692.35 847.15 693.45 841 695.1 835.4 691.9 833.45 690.8 832 689.35 829.95 687.25 828.9 684.45 828.05 679.35 830.8 674.65 L832 672.85 Q835.05 668.8 840.15 667.45 846.35 665.8 851.9 669 856.5 671.7 858.5 676.5 L858.1 674.55 Q856.45 668.35 850.85 665.15 845.35 661.95 839.15 663.6 834.85 664.75 832 667.8 L832 652.2 Q832.25 644 840.65 644 L951.35 644 Q959.75 644 960 652.2 M858.45 663.5 Q858.7 660.85 859.75 658.55 L859.65 658.75 860.85 656.45 Q861.8 655 863.15 653.7 867.8 649.15 874.3 649.15 L875.4 649.25 Q879.3 649.4 882.65 651.5 L883.05 651.75 885.05 653.2 885.65 653.75 885.65 653.8 Q886.9 655.05 887.8 656.45 889.8 659.55 890.15 663.4 L890.25 661.85 Q890.25 658.95 889.4 656.45 888.25 653.25 885.65 650.65 L885.65 650.6 885.05 650.05 883.05 648.6 882.65 648.3 Q879.3 646.25 875.4 646.1 L874.3 646 Q867.8 646 863.15 650.55 860.8 652.8 859.65 655.6 L859.75 655.4 859.35 656.45 Q858.4 658.95 858.4 661.8 L858.4 661.85 858.45 663.5 M864.7 661.85 Q864.7 665.85 867.55 668.55 870.35 671.45 874.3 671.45 877.45 671.45 880 669.55 L880.9 668.85 881.15 668.55 Q883.95 665.85 883.95 661.85 883.95 658.8 882.35 656.45 L881.15 655.05 880.9 654.85 Q880.2 654.2 879.4 653.7 L879.35 653.7 Q877.3 652.4 874.85 652.35 L874.3 652.3 Q870.35 652.3 867.55 655.05 L866.35 656.45 865.5 658 Q864.7 659.75 864.7 661.8 L864.7 661.85"/>
+ <path stroke="none" fill="#31DE7A" d="M901.7 663.4 L901.65 661.85 Q901.65 658.95 902.55 656.45 903.7 653.2 906.35 650.6 L906.35 650.55 908.65 648.7 909.15 648.35 Q912.35 646.3 916.4 646.1 L917.55 646 Q924.1 646 928.8 650.55 L928.9 650.7 Q931.1 652.9 932.25 655.6 L932.25 655.65 932.55 656.45 Q933.4 658.9 933.45 661.8 L933.45 661.85 933.4 663.45 Q933.15 661 932.25 658.8 L932.25 658.75 931.05 656.45 928.9 653.85 928.8 653.7 Q924.1 649.15 917.55 649.15 L916.4 649.25 Q912.35 649.45 909.15 651.5 L908.65 651.85 906.35 653.7 906.35 653.75 Q905.05 655.05 904.15 656.45 902.05 659.6 901.7 663.4 M832 652.2 L832 648.7 Q832 640 840.65 640 L951.35 640 Q960 640 960 648.7 L960 652.2 Q959.75 644 951.35 644 L840.65 644 Q832.25 644 832 652.2 M960 668 Q961.1 669.25 962 670.8 965.2 676.35 963.55 682.55 L962.95 684.45 Q963.7 679.3 960.95 674.65 L960 673.15 Q956.95 668.85 951.65 667.45 945.45 665.8 939.85 669 935.25 671.7 933.35 676.5 933.45 675.5 933.7 674.55 935.35 668.35 940.9 665.15 946.45 661.95 952.65 663.6 957.1 664.8 960 668 M828.9 684.45 Q828.5 683.5 828.25 682.55 826.6 676.35 829.75 670.8 830.75 669.1 832 667.8 834.85 664.75 839.15 663.6 845.35 661.95 850.85 665.15 856.45 668.35 858.1 674.55 L858.5 676.5 Q856.5 671.7 851.9 669 846.35 665.8 840.15 667.45 835.05 668.8 832 672.85 L830.8 674.65 Q828.05 679.35 828.9 684.45 M858.45 663.5 L858.4 661.85 858.4 661.8 Q858.4 658.95 859.35 656.45 L859.75 655.4 859.65 655.6 Q860.8 652.8 863.15 650.55 867.8 646 874.3 646 L875.4 646.1 Q879.3 646.25 882.65 648.3 L883.05 648.6 885.05 650.05 885.65 650.6 885.65 650.65 Q888.25 653.25 889.4 656.45 890.25 658.95 890.25 661.85 L890.15 663.4 Q889.8 659.55 887.8 656.45 886.9 655.05 885.65 653.8 L885.65 653.75 885.05 653.2 883.05 651.75 882.65 651.5 Q879.3 649.4 875.4 649.25 L874.3 649.15 Q867.8 649.15 863.15 653.7 861.8 655 860.85 656.45 L859.65 658.75 859.75 658.55 Q858.7 660.85 858.45 663.5"/>
+ <path stroke="none" fill="#D23007" d="M927.15 661.85 Q927.15 665.85 924.4 668.55 921.55 671.45 917.55 671.45 914.3 671.45 911.85 669.55 L910.8 668.55 Q907.95 665.85 907.95 661.85 907.95 658.8 909.6 656.45 L910.8 655.05 Q911.55 654.3 912.45 653.75 L912.55 653.7 Q914.55 652.4 917 652.35 L917.55 652.3 Q921.55 652.3 924.4 655.05 L925.55 656.45 926.45 658.1 Q927.15 659.8 927.15 661.8 L927.15 661.85 M922.55 662.05 Q922.55 659.45 920.75 657.75 919.85 656.85 918.75 656.45 L916.5 656.05 914.3 656.45 Q913.35 656.8 912.5 657.5 L912.2 657.75 Q910.45 659.45 910.45 662.05 910.45 664.5 912.15 666.2 L912.2 666.2 Q914.05 668.05 916.5 668.05 919 668.05 920.75 666.2 922.55 664.55 922.55 662.05 M864.7 661.85 L864.7 661.8 Q864.7 659.75 865.5 658 L866.35 656.45 867.55 655.05 Q870.35 652.3 874.3 652.3 L874.85 652.35 Q877.3 652.4 879.35 653.7 L879.4 653.7 Q880.2 654.2 880.9 654.85 L881.15 655.05 882.35 656.45 Q883.95 658.8 883.95 661.85 883.95 665.85 881.15 668.55 L880.9 668.85 880 669.55 Q877.45 671.45 874.3 671.45 870.35 671.45 867.55 668.55 864.7 665.85 864.7 661.85 M869.4 662.05 Q869.4 664.55 871.15 666.2 872.85 668.05 875.4 668.05 877.85 668.05 879.65 666.2 L879.7 666.2 880.9 664.5 Q881.4 663.4 881.4 662.05 881.4 660.65 880.9 659.5 880.45 658.55 879.65 657.75 L879.35 657.5 Q878.55 656.8 877.6 656.45 L875.4 656.05 873.15 656.45 Q872.05 656.85 871.15 657.75 869.4 659.45 869.4 662.05"/>
+ <path stroke="none" fill="#3F3F3F" d="M869.4 662.05 Q869.4 659.45 871.15 657.75 872.05 656.85 873.15 656.45 L875.4 656.05 877.6 656.45 Q878.55 656.8 879.35 657.5 L879.65 657.75 Q880.45 658.55 880.9 659.5 881.4 660.65 881.4 662.05 881.4 663.4 880.9 664.5 L879.7 666.2 879.65 666.2 Q877.85 668.05 875.4 668.05 872.85 668.05 871.15 666.2 869.4 664.55 869.4 662.05 M922.55 662.05 Q922.55 664.55 920.75 666.2 919 668.05 916.5 668.05 914.05 668.05 912.2 666.2 L912.15 666.2 Q910.45 664.5 910.45 662.05 910.45 659.45 912.2 657.75 L912.5 657.5 Q913.35 656.8 914.3 656.45 L916.5 656.05 918.75 656.45 Q919.85 656.85 920.75 657.75 922.55 659.45 922.55 662.05"/>
+ <path stroke="none" fill="#23A35A" d="M907.1 676.9 L907.45 677.4 Q907.85 678.15 907.6 679.3 L907.5 679.6 907.25 680.4 Q906.65 681.75 905.4 683 L905.35 683.1 Q904.45 683.95 903.2 683.95 901.9 683.95 901 683 900.1 682.1 900.1 680.85 900.1 680.15 900.35 679.6 L900.95 678.7 901.05 678.6 Q902.55 677.1 904.25 676.55 L904.4 676.55 Q905.75 676.15 906.55 676.55 L907.1 676.9 M886.55 683.1 L886.45 683 Q885.2 681.75 884.65 680.4 884.45 680 884.4 679.6 L884.3 679.3 Q884 678.15 884.4 677.4 L884.8 676.9 Q885 676.65 885.35 676.55 886.15 676.15 887.5 676.55 L887.6 676.55 Q889.3 677.05 890.85 678.6 L890.95 678.7 891.55 679.6 891.8 680.85 Q891.8 682.1 890.85 683 889.95 683.95 888.7 683.95 887.45 683.95 886.55 683.1"/>
+ <path stroke="none" fill="#FFFFFF" d="M854.1 689.5 L856.5 686.25 856.75 685.8 Q874.65 688 895.95 688 917.15 688 935.05 685.85 L935.25 686.25 Q936.3 688.1 937.7 689.5 918.75 692 895.95 692 873.1 692 854.1 689.5"/>
+ <path stroke="none" fill="#E5E5E5" d="M854.1 689.5 Q873.1 692 895.95 692 918.75 692 937.7 689.5 940.5 692.35 944.65 693.45 950.85 695.1 956.35 691.9 958.45 690.7 960 689.1 L960 759.85 Q959.75 768 951.35 768 L840.65 768 Q832.25 768 832 759.85 L832 689.35 Q833.45 690.8 835.4 691.9 841 695.1 847.15 693.45 851.3 692.35 854.1 689.5 M923 746.25 Q922.4 743.95 920.3 742.8 918.3 741.65 916.05 742.25 913.75 742.85 912.5 744.9 911.4 746.9 912 749.2 912.6 751.45 914.6 752.65 916.7 753.85 919 753.25 921.25 752.65 922.4 750.55 923.6 748.5 923 746.25 M921.85 731.45 Q921.45 730.05 920.2 729.3 918.85 728.55 917.45 728.95 916.05 729.3 915.35 730.6 914.6 731.9 915 733.3 915.35 734.7 916.65 735.45 917.9 736.15 919.3 735.8 920.7 735.4 921.5 734.15 922.2 732.85 921.85 731.45 M935.65 740.15 Q935.15 738.25 933.45 737.25 931.75 736.25 929.9 736.75 928 737.25 927 739 926 740.7 926.5 742.6 927.05 744.45 928.75 745.45 930.45 746.4 932.35 745.9 934.2 745.4 935.2 743.7 936.2 742 935.65 740.15"/>
+ <path stroke="none" fill="#D7D7D7" d="M935.65 740.15 Q936.2 742 935.2 743.7 934.2 745.4 932.35 745.9 930.45 746.4 928.75 745.45 927.05 744.45 926.5 742.6 926 740.7 927 739 928 737.25 929.9 736.75 931.75 736.25 933.45 737.25 935.15 738.25 935.65 740.15 M921.85 731.45 Q922.2 732.85 921.5 734.15 920.7 735.4 919.3 735.8 917.9 736.15 916.65 735.45 915.35 734.7 915 733.3 914.6 731.9 915.35 730.6 916.05 729.3 917.45 728.95 918.85 728.55 920.2 729.3 921.45 730.05 921.85 731.45 M923 746.25 Q923.6 748.5 922.4 750.55 921.25 752.65 919 753.25 916.7 753.85 914.6 752.65 912.6 751.45 912 749.2 911.4 746.9 912.5 744.9 913.75 742.85 916.05 742.25 918.3 741.65 920.3 742.8 922.4 743.95 923 746.25"/>
+ <path stroke="none" fill="#BDB6B6" d="M205.55 876.85 Q204.9 873.6 202.95 870.3 199.95 865.05 195.65 862.55 191.7 860.45 188.9 861.6 L187.15 862.55 Q181.75 865.7 178.15 869.75 L172.15 864.5 Q176.9 856.65 186.55 851.05 L188.7 849.85 Q192.1 848.45 196.85 851.05 202.1 854.05 205.75 860.4 208.7 865.45 209.25 870.4 208.75 874.5 206.3 876.35 L205.55 876.85 M47.15 870.4 Q47.65 865.45 50.6 860.4 54.25 854.05 59.5 851.05 64.25 848.45 67.65 849.85 L69.8 851.05 Q79.4 856.6 84.2 864.45 81.1 866.85 78.2 869.75 74.6 865.7 69.2 862.55 L67.45 861.6 Q64.65 860.45 60.7 862.55 56.4 865.05 53.4 870.3 51.45 873.6 50.8 876.85 L50.05 876.35 Q47.6 874.5 47.15 870.4"/>
+ <path stroke="none" fill="#A8A1A1" d="M178.15 869.75 Q181.75 865.7 187.15 862.55 L188.9 861.6 Q191.7 860.45 195.65 862.55 199.95 865.05 202.95 870.3 204.9 873.6 205.55 876.85 L204.25 877.6 Q196.35 882.15 188.75 883.2 184.6 876.15 178.45 870 L178.15 869.75 M78.2 869.75 L77.9 870 Q71.75 876.15 67.6 883.2 60 882.15 52.1 877.6 L50.8 876.85 Q51.45 873.6 53.4 870.3 56.4 865.05 60.7 862.55 64.65 860.45 67.45 861.6 L69.2 862.55 Q74.6 865.7 78.2 869.75"/>
+ <path stroke="none" fill="#CDC6C6" d="M209.25 870.4 Q208.7 865.45 205.75 860.4 202.1 854.05 196.85 851.05 192.1 848.45 188.7 849.85 L186.55 851.05 Q176.9 856.65 172.15 864.5 L171.55 864 171 863.55 170.6 863.25 171 862.5 171.35 861.85 Q176.1 853.1 186.55 847.05 L188.7 845.85 Q192.1 844.45 196.85 847.05 202.1 850.05 205.75 856.4 209.4 862.65 209.35 868.65 L209.25 870.4 M47.15 870.4 Q47 869.55 47 868.65 46.95 862.65 50.6 856.4 54.25 850.05 59.5 847.05 64.25 844.45 67.65 845.85 L69.8 847.05 Q80.25 853.1 85 861.85 L85.75 863.25 84.2 864.45 Q79.4 856.6 69.8 851.05 L67.65 849.85 Q64.25 848.45 59.5 851.05 54.25 854.05 50.6 860.4 47.65 865.45 47.15 870.4"/>
+ <path stroke="none" fill="#DBD9D9" d="M64 844.2 L64 840.7 Q64 832 72.65 832 L183.35 832 Q192 832 192 840.7 L192 844.2 Q191.75 836 183.35 836 L168.7 836 87.3 836 72.65 836 Q64.25 836 64 844.2"/>
+ <path stroke="none" fill="#D2D0D0" d="M64 844.2 Q64.25 836 72.65 836 L87.3 836 Q90.5 840.25 96.85 843.8 109.75 851 128 851 146.2 851 159.1 843.8 165.5 840.25 168.7 836 L183.35 836 Q191.75 836 192 844.2 L192 951.85 Q191.75 960 183.35 960 L173.45 960 Q170.65 957.15 170.7 951.65 169.4 933.7 158.35 920.55 152.45 913.5 145.4 909.8 146.3 907.6 146.3 905.15 146.3 899.2 140.9 895 139.55 893.95 138.1 893.2 L129.4 863.8 128.9 863.05 Q128.5 862.75 128 862.75 127.55 862.75 127.15 863.05 126.75 863.35 126.6 863.8 L117.95 893.15 Q116.4 893.95 115 895 109.7 899.2 109.7 905.15 109.7 907.85 110.8 910.2 104.15 913.85 98.5 920.55 87.55 933.7 86.3 951.65 85.15 957.15 82.5 960 L72.65 960 Q64.25 960 64 951.85 L64 844.2 M179.25 903.2 Q179.25 897.45 175.2 893.45 171.15 889.4 165.45 889.4 159.85 889.4 155.7 893.45 151.75 897.45 151.75 903.2 151.75 908.9 155.7 912.8 159.85 916.9 165.45 916.9 171.15 916.9 175.2 912.8 179.25 908.9 179.25 903.2 M76.75 903.2 Q76.75 908.9 80.8 912.8 84.85 916.9 90.55 916.9 96.15 916.9 100.3 912.8 104.25 908.9 104.25 903.2 104.25 897.45 100.3 893.45 96.15 889.4 90.55 889.4 84.85 889.4 80.8 893.45 76.75 897.45 76.75 903.2"/>
+ <path stroke="none" fill="#FFFFFF" d="M76.75 903.2 Q76.75 897.45 80.8 893.45 84.85 889.4 90.55 889.4 96.15 889.4 100.3 893.45 104.25 897.45 104.25 903.2 104.25 908.9 100.3 912.8 96.15 916.9 90.55 916.9 84.85 916.9 80.8 912.8 76.75 908.9 76.75 903.2 M179.25 903.2 Q179.25 908.9 175.2 912.8 171.15 916.9 165.45 916.9 159.85 916.9 155.7 912.8 151.75 908.9 151.75 903.2 151.75 897.45 155.7 893.45 159.85 889.4 165.45 889.4 171.15 889.4 175.2 893.45 179.25 897.45 179.25 903.2 M171.7 903.1 Q171.7 899.45 169.25 897 166.7 894.45 163.05 894.45 159.55 894.45 156.95 897 154.4 899.45 154.4 903.1 L154.45 903.95 Q154.7 906.9 156.95 909.05 159.55 911.55 163.05 911.55 166.7 911.55 169.25 909.05 171.4 906.9 171.65 903.95 L171.7 903.1 M84.3 903.1 L84.35 903.95 Q84.6 906.9 86.75 909.05 89.3 911.55 92.95 911.55 96.45 911.55 99.05 909.05 101.3 906.9 101.55 903.95 L101.6 903.1 Q101.6 899.45 99.05 897 96.45 894.45 92.95 894.45 89.3 894.45 86.75 897 84.3 899.45 84.3 903.1"/>
+ <path stroke="none" fill="#5B5B5B" d="M84.3 903.1 Q84.3 899.45 86.75 897 89.3 894.45 92.95 894.45 96.45 894.45 99.05 897 101.6 899.45 101.6 903.1 L101.55 903.95 Q101.3 906.9 99.05 909.05 96.45 911.55 92.95 911.55 89.3 911.55 86.75 909.05 84.6 906.9 84.35 903.95 L84.3 903.1 M171.7 903.1 L171.65 903.95 Q171.4 906.9 169.25 909.05 166.7 911.55 163.05 911.55 159.55 911.55 156.95 909.05 154.7 906.9 154.45 903.95 L154.4 903.1 Q154.4 899.45 156.95 897 159.55 894.45 163.05 894.45 166.7 894.45 169.25 897 171.7 899.45 171.7 903.1"/>
+ <path stroke="none" fill="#BDB6B6" d="M173.45 960 L82.5 960 Q85.15 957.15 86.3 951.65 87.55 933.7 98.5 920.55 104.15 913.85 110.8 910.2 109.7 907.85 109.7 905.15 109.7 899.2 115 895 116.4 893.95 117.95 893.15 L116.75 897.15 Q116.2 898.95 116.05 900.55 115.55 904.8 117.5 907.35 L117.7 907.6 Q120.4 911.15 128 911.15 135.6 911.15 138.35 907.6 L138.7 907.15 Q140.45 904.6 140 900.6 L139.25 897.15 138.1 893.2 Q139.55 893.95 140.9 895 146.3 899.2 146.3 905.15 146.3 907.6 145.4 909.8 152.45 913.5 158.35 920.55 169.4 933.7 170.7 951.65 170.65 957.15 173.45 960 M145.6 923.35 Q144.5 922.25 142.3 922.85 140.05 923.45 138.1 925.45 L137.95 925.55 Q136.9 926.65 136.9 928.25 136.9 929.85 138.05 930.95 139.15 932.1 140.8 932.1 142.3 932.1 143.45 931.05 L143.55 930.95 Q145.55 928.95 146.15 926.75 146.8 924.5 145.6 923.35 M113.45 931.05 Q114.55 932.1 116.1 932.1 117.7 932.1 118.85 930.95 119.95 929.85 119.95 928.25 119.95 926.65 118.9 925.55 L118.8 925.45 Q116.8 923.45 114.6 922.85 112.4 922.25 111.25 923.35 110.1 924.5 110.75 926.75 111.35 928.95 113.35 930.95 L113.45 931.05"/>
+ <path stroke="none" fill="#DEDCDC" d="M87.3 836 L168.7 836 Q165.5 840.25 159.1 843.8 146.2 851 128 851 109.75 851 96.85 843.8 90.5 840.25 87.3 836"/>
+ <path stroke="none" fill="#FFFCF5" d="M117.95 893.15 L126.6 863.8 Q126.75 863.35 127.15 863.05 127.55 862.75 128 862.75 128.5 862.75 128.9 863.05 L129.4 863.8 138.1 893.2 139.25 897.15 140 900.6 Q139.65 902.4 138.35 903.65 136.7 905.35 133.3 906.05 L128 906.5 123.1 906.15 Q119.4 905.45 117.7 903.65 116.35 902.35 116.05 900.55 116.2 898.95 116.75 897.15 L117.95 893.15"/>
+ <path stroke="none" fill="#F0EDE7" d="M140 900.6 Q140.45 904.6 138.7 907.15 L138.35 907.6 Q135.6 911.15 128 911.15 120.4 911.15 117.7 907.6 L117.5 907.35 Q115.55 904.8 116.05 900.55 116.35 902.35 117.7 903.65 119.4 905.45 123.1 906.15 L128 906.5 133.3 906.05 Q136.7 905.35 138.35 903.65 139.65 902.4 140 900.6"/>
+ <path stroke="none" fill="#9A9494" d="M145.6 923.35 Q146.8 924.5 146.15 926.75 145.55 928.95 143.55 930.95 L143.45 931.05 Q142.3 932.1 140.8 932.1 139.15 932.1 138.05 930.95 136.9 929.85 136.9 928.25 136.9 926.65 137.95 925.55 L138.1 925.45 Q140.05 923.45 142.3 922.85 144.5 922.25 145.6 923.35 M113.45 931.05 L113.35 930.95 Q111.35 928.95 110.75 926.75 110.1 924.5 111.25 923.35 112.4 922.25 114.6 922.85 116.8 923.45 118.8 925.45 L118.9 925.55 Q119.95 926.65 119.95 928.25 119.95 929.85 118.85 930.95 117.7 932.1 116.1 932.1 114.55 932.1 113.45 931.05"/>
+ <path stroke="none" fill="#545353" d="M576 844.2 L576 840.7 Q576 832 584.65 832 L695.35 832 Q704 832 704 840.7 L704 844.2 Q703.75 836 695.35 836 L584.65 836 Q576.25 836 576 844.2"/>
+ <path stroke="none" fill="#414040" d="M576 844.2 Q576.25 836 584.65 836 L695.35 836 Q703.75 836 704 844.2 L704 951.85 Q703.75 960 695.35 960 L584.65 960 Q576.25 960 576 951.85 L576 844.2 M683.55 873.8 L681.5 871.9 678.75 869.9 Q672.3 865.75 664.15 865.75 655.95 865.75 649.5 869.9 640 874.75 630.5 869.9 624.05 865.75 615.9 865.75 607.75 865.75 601.3 869.9 L598.55 871.9 596.45 873.8 Q588.4 881.85 588.4 893.2 588.4 904.6 596.45 912.7 L596.55 912.7 601.1 916.4 Q601.15 932.35 612.5 943.6 617 948.15 622.3 950.85 630.3 955 640 955 656.1 955 667.55 943.6 L671.2 939.5 Q678.8 929.5 678.9 916.4 L683.55 912.7 Q691.6 904.6 691.6 893.2 691.6 881.85 683.55 873.8 M658 860.7 L657.95 860.15 Q657.5 852.95 652.85 847.7 647.7 841.95 640.5 841.95 633.25 841.95 628.1 847.7 623.5 852.95 623.05 860.15 L623 860.7 Q623 861.4 623.3 862.05 624.2 864.2 628.1 865.85 633.25 867.95 640.5 867.95 647.7 867.95 652.85 865.85 656.8 864.2 657.75 862.05 L658 860.7"/>
+ <path stroke="none" fill="#BDB6B6" d="M683.55 873.8 Q691.6 881.85 691.6 893.2 691.6 904.6 683.55 912.7 L678.9 916.4 Q678.8 929.5 671.2 939.5 L667.55 943.6 Q656.1 955 640 955 630.3 955 622.3 950.85 617 948.15 612.5 943.6 601.15 932.35 601.1 916.4 L596.55 912.7 596.45 912.7 Q588.4 904.6 588.4 893.2 588.4 881.85 596.45 873.8 L598.55 871.9 601.3 869.9 Q607.75 865.75 615.9 865.75 624.05 865.75 630.5 869.9 640 874.75 649.5 869.9 655.95 865.75 664.15 865.75 672.3 865.75 678.75 869.9 L681.5 871.9 683.55 873.8 M618.25 876.7 Q616.95 876.85 615.95 877.8 615 878.75 615 880.1 615 881.45 615.95 882.4 616.95 883.35 618.55 883.55 639.95 886.15 661.15 883.35 663 883.35 663.95 882.4 664.9 881.45 664.9 880.1 664.9 878.75 663.95 877.8 663 876.85 661.15 876.65 639.15 874.6 618.25 876.7 M598.35 897.05 Q598.35 901.65 601.6 904.8 604.9 908.15 609.5 908.15 614.05 908.15 617.4 904.8 620.6 901.65 620.6 897.05 620.6 892.45 617.4 889.25 614.05 886.05 609.5 886.05 604.9 886.05 601.6 889.25 598.35 892.45 598.35 897.05 M643.75 900.15 L643.6 900.25 Q642.45 901.4 642.45 903.1 642.45 904.85 643.7 906.1 L644.1 906.4 644.5 906.7 Q645.4 907.3 646.65 907.3 648.3 907.3 649.45 906.15 L649.6 905.95 651.25 903.95 Q652.1 902.75 652.4 901.5 L652.5 901.15 Q652.95 898.95 651.85 897.85 650.65 896.65 648.2 897.3 645.9 898 643.75 900.15 M637.25 906.1 Q638.45 904.85 638.45 903.1 638.45 901.4 637.3 900.25 L637.15 900.15 Q635.05 898 632.65 897.3 630.25 896.65 629 897.85 627.9 898.95 628.4 901.15 L628.5 901.5 Q628.8 902.75 629.6 904 630.25 905 631.25 905.95 L631.35 906.15 Q632.55 907.3 634.25 907.3 635.45 907.3 636.45 906.7 L636.85 906.4 637.25 906.1 M622.3 919.35 L619.45 920.25 Q616 921.45 614.5 924.65 612.9 927.95 614.1 931.25 615.25 934.7 618.55 936.25 620.4 937.15 622.3 937.15 L625.1 936.65 Q641.6 930.9 655.35 936.45 657.3 937.25 659.3 937.1 L661.95 936.45 Q665.25 935.15 666.6 931.8 667.95 928.5 666.65 925.15 665.3 921.9 662.05 920.45 L659.3 919.35 Q642.3 913.2 622.3 919.35 M682.4 897.05 Q682.4 892.45 679.15 889.25 675.9 886.05 671.25 886.05 666.7 886.05 663.5 889.25 660.15 892.45 660.15 897.05 660.15 901.65 663.5 904.8 666.7 908.15 671.25 908.15 675.9 908.15 679.15 904.8 682.4 901.65 682.4 897.05"/>
+ <path stroke="none" fill="#464545" d="M658 860.7 L657.75 862.05 Q656.8 864.2 652.85 865.85 647.7 867.95 640.5 867.95 633.25 867.95 628.1 865.85 624.2 864.2 623.3 862.05 623 861.4 623 860.7 L623.05 860.15 Q623.5 852.95 628.1 847.7 633.25 841.95 640.5 841.95 647.7 841.95 652.85 847.7 657.5 852.95 657.95 860.15 L658 860.7"/>
+ <path stroke="none" fill="#A8A1A1" d="M618.25 876.7 Q639.15 874.6 661.15 876.65 663 876.85 663.95 877.8 664.9 878.75 664.9 880.1 664.9 881.45 663.95 882.4 663 883.35 661.15 883.35 639.95 886.15 618.55 883.55 616.95 883.35 615.95 882.4 615 881.45 615 880.1 615 878.75 615.95 877.8 616.95 876.85 618.25 876.7"/>
+ <path stroke="none" fill="#FFFFFF" d="M598.35 897.05 Q598.35 892.45 601.6 889.25 604.9 886.05 609.5 886.05 614.05 886.05 617.4 889.25 620.6 892.45 620.6 897.05 620.6 901.65 617.4 904.8 614.05 908.15 609.5 908.15 604.9 908.15 601.6 904.8 598.35 901.65 598.35 897.05 M603.8 897.3 Q603.8 900.15 605.85 902.1 607.75 904.2 610.7 904.2 613.6 904.2 615.65 902.1 617.7 900.15 617.7 897.3 617.7 894.3 615.65 892.35 613.6 890.35 610.7 890.35 607.75 890.35 605.85 892.35 603.8 894.3 603.8 897.3 M622.3 919.35 Q642.3 913.2 659.3 919.35 662.45 928.75 659.3 937.1 657.3 937.25 655.35 936.45 641.6 930.9 625.1 936.65 L622.3 937.15 Q618.75 929.25 622.3 919.35 M682.4 897.05 Q682.4 901.65 679.15 904.8 675.9 908.15 671.25 908.15 666.7 908.15 663.5 904.8 660.15 901.65 660.15 897.05 660.15 892.45 663.5 889.25 666.7 886.05 671.25 886.05 675.9 886.05 679.15 889.25 682.4 892.45 682.4 897.05 M677.05 897.3 Q677.05 894.3 675 892.35 672.95 890.35 670.1 890.35 667.25 890.35 665.1 892.35 663.05 894.3 663.05 897.3 663.05 900.15 665.1 902.1 667.25 904.2 670.1 904.2 672.95 904.2 675 902.1 677.05 900.15 677.05 897.3"/>
+ <path stroke="none" fill="#989292" d="M643.75 900.15 Q645.9 898 648.2 897.3 650.65 896.65 651.85 897.85 652.95 898.95 652.5 901.15 L652.4 901.5 Q652.1 902.75 651.25 903.95 L649.6 905.95 649.45 906.15 Q648.3 907.3 646.65 907.3 645.4 907.3 644.5 906.7 L644.1 906.4 643.7 906.1 Q642.45 904.85 642.45 903.1 642.45 901.4 643.6 900.25 L643.75 900.15 M637.25 906.1 L636.85 906.4 636.45 906.7 Q635.45 907.3 634.25 907.3 632.55 907.3 631.35 906.15 L631.25 905.95 Q630.25 905 629.6 904 628.8 902.75 628.5 901.5 L628.4 901.15 Q627.9 898.95 629 897.85 630.25 896.65 632.65 897.3 635.05 898 637.15 900.15 L637.3 900.25 Q638.45 901.4 638.45 903.1 638.45 904.85 637.25 906.1"/>
+ <path stroke="none" fill="#5B5B5B" d="M603.8 897.3 Q603.8 894.3 605.85 892.35 607.75 890.35 610.7 890.35 613.6 890.35 615.65 892.35 617.7 894.3 617.7 897.3 617.7 900.15 615.65 902.1 613.6 904.2 610.7 904.2 607.75 904.2 605.85 902.1 603.8 900.15 603.8 897.3 M677.05 897.3 Q677.05 900.15 675 902.1 672.95 904.2 670.1 904.2 667.25 904.2 665.1 902.1 663.05 900.15 663.05 897.3 663.05 894.3 665.1 892.35 667.25 890.35 670.1 890.35 672.95 890.35 675 892.35 677.05 894.3 677.05 897.3"/>
+ <path stroke="none" fill="#E7E7E7" d="M622.3 937.15 Q620.4 937.15 618.55 936.25 615.25 934.7 614.1 931.25 612.9 927.95 614.5 924.65 616 921.45 619.45 920.25 L622.3 919.35 Q618.75 929.25 622.3 937.15 M659.3 919.35 L662.05 920.45 Q665.3 921.9 666.65 925.15 667.95 928.5 666.6 931.8 665.25 935.15 661.95 936.45 L659.3 937.1 Q662.45 928.75 659.3 919.35"/>
+ <path stroke="none" fill="#31DE7A" d="M832 844.2 L832 840.7 Q832 832 840.65 832 L951.35 832 Q960 832 960 840.7 L960 844.2 Q959.75 836 951.35 836 L928 836 864 836 840.65 836 Q832.25 836 832 844.2"/>
+ <path stroke="none" fill="#2FD274" d="M864 836 L928 836 Q925.85 851 919.4 862.75 909.7 880.55 896 880.55 882.3 880.55 872.6 862.75 866.2 851 864 836 M891.15 854 L891.6 853.2 Q892.4 851.55 892.25 849.9 892 848 890.6 847.15 L887.45 847.1 Q885.9 847.75 884.85 849.3 L884.4 850.15 Q882.4 853.6 882 856.6 881.55 859.65 882.95 860.4 884.35 861.25 886.7 859.35 889.15 857.5 891.15 854 M906.4 848.05 L905.7 846.9 Q904.15 844.55 901.8 843.55 899.15 842.4 897.05 843.6 894.9 844.85 894.6 847.7 894.3 850.25 895.5 852.75 L896.2 853.95 Q899.25 859.15 902.8 862 906.45 864.85 908.6 863.6 910.7 862.4 910 857.85 909.45 853.3 906.4 848.05"/>
+ <path stroke="none" fill="#29BB67" d="M906.4 848.05 Q909.45 853.3 910 857.85 910.7 862.4 908.6 863.6 906.45 864.85 902.8 862 899.25 859.15 896.2 853.95 L895.5 852.75 Q894.3 850.25 894.6 847.7 894.9 844.85 897.05 843.6 899.15 842.4 901.8 843.55 904.15 844.55 905.7 846.9 L906.4 848.05 M891.15 854 Q889.15 857.5 886.7 859.35 884.35 861.25 882.95 860.4 881.55 859.65 882 856.6 882.4 853.6 884.4 850.15 L884.85 849.3 Q885.9 847.75 887.45 847.1 L890.6 847.15 Q892 848 892.25 849.9 892.4 851.55 891.6 853.2 L891.15 854"/>
+ <path stroke="none" fill="#2ECC71" d="M960 844.2 L960 945.8 Q946.85 951.5 938.45 943.85 L937.9 943.35 935.5 940.15 Q926.15 928.25 915.4 922.5 L920.95 921.3 Q930.85 918.8 931.35 915.3 L931.35 914.95 931.35 914.8 Q931.1 911.15 920.95 908.55 L916.05 907.5 915.95 907.05 Q914.7 901.3 910.6 896.8 L908.25 894.55 Q902.95 890.2 896.05 890.2 889.1 890.2 883.85 894.55 882.6 895.5 881.4 896.8 877.35 901.3 876.05 907.05 L875.95 907.5 870.95 908.55 Q860.95 911.1 860.65 914.75 L860.65 914.95 860.7 915.3 Q861.15 918.8 870.95 921.3 L873.45 921.9 Q862.25 927.5 852.6 939.6 L851.1 941.55 849.75 943.35 Q843.55 951.35 832 946.05 L832 844.2 Q832.25 836 840.65 836 L864 836 Q866.2 851 872.6 862.75 882.3 880.55 896 880.55 909.7 880.55 919.4 862.75 925.85 851 928 836 L951.35 836 Q959.75 836 960 844.2 M935.6 889.75 Q935.6 884.7 932.1 881.15 928.5 877.65 923.4 877.65 918.4 877.65 914.85 881.15 911.25 884.7 911.25 889.75 911.25 894.8 914.85 898.25 918.4 901.9 923.4 901.9 928.5 901.9 932.1 898.25 935.6 894.8 935.6 889.75 M856.4 889.75 Q856.4 894.8 860 898.25 863.6 901.9 868.6 901.9 873.35 901.9 876.95 898.6 L877.3 898.25 Q880.8 894.8 880.8 889.75 880.8 884.7 877.3 881.15 L876.95 880.85 Q873.35 877.65 868.6 877.65 863.6 877.65 860 881.15 856.4 884.7 856.4 889.75"/>
+ <path stroke="none" fill="#FFFFFF" d="M856.4 889.75 Q856.4 884.7 860 881.15 863.6 877.65 868.6 877.65 873.35 877.65 876.95 880.85 L877.3 881.15 Q880.8 884.7 880.8 889.75 880.8 894.8 877.3 898.25 L876.95 898.6 Q873.35 901.9 868.6 901.9 863.6 901.9 860 898.25 856.4 894.8 856.4 889.75 M929.75 890 Q929.75 886.7 927.5 884.55 925.25 882.4 922.1 882.4 919 882.4 916.65 884.55 914.4 886.7 914.4 890 914.4 893.15 916.65 895.3 919 897.6 922.1 897.6 925.25 897.6 927.5 895.3 929.75 893.15 929.75 890 M935.6 889.75 Q935.6 894.8 932.1 898.25 928.5 901.9 923.4 901.9 918.4 901.9 914.85 898.25 911.25 894.8 911.25 889.75 911.25 884.7 914.85 881.15 918.4 877.65 923.4 877.65 928.5 877.65 932.1 881.15 935.6 884.7 935.6 889.75 M862.35 890 Q862.35 893.15 864.6 895.3 866.75 897.6 869.95 897.6 873.1 897.6 875.35 895.3 876.4 894.3 876.95 893.1 877.6 891.7 877.6 890 877.6 888.25 876.95 886.8 876.4 885.55 875.35 884.55 873.1 882.4 869.95 882.4 866.75 882.4 864.6 884.55 862.35 886.7 862.35 890"/>
+ <path stroke="none" fill="#5B5B5B" d="M862.35 890 Q862.35 886.7 864.6 884.55 866.75 882.4 869.95 882.4 873.1 882.4 875.35 884.55 876.4 885.55 876.95 886.8 877.6 888.25 877.6 890 877.6 891.7 876.95 893.1 876.4 894.3 875.35 895.3 873.1 897.6 869.95 897.6 866.75 897.6 864.6 895.3 862.35 893.15 862.35 890 M929.75 890 Q929.75 893.15 927.5 895.3 925.25 897.6 922.1 897.6 919 897.6 916.65 895.3 914.4 893.15 914.4 890 914.4 886.7 916.65 884.55 919 882.4 922.1 882.4 925.25 882.4 927.5 884.55 929.75 886.7 929.75 890"/>
+ <path stroke="none" fill="#FFD738" d="M916.5 914.45 L916.3 913.05 915.95 911.05 Q915.55 909.1 914.8 907.3 913.3 903.75 910.6 900.8 L908.25 898.55 Q902.95 894.2 896.05 894.2 889.1 894.2 883.85 898.55 882.6 899.5 881.4 900.8 878.75 903.75 877.25 907.3 876.5 909.1 876.05 911.05 L875.65 913.05 875.55 914.55 875.5 914.25 875.45 912.75 875.65 909.05 875.95 907.5 876.05 907.05 Q877.35 901.3 881.4 896.8 882.6 895.5 883.85 894.55 889.1 890.2 896.05 890.2 902.95 890.2 908.25 894.55 L910.6 896.8 Q914.7 901.3 915.95 907.05 L916.05 907.5 916.3 909.05 916.6 912.75 916.5 914.25 916.5 914.45"/>
+ <path stroke="none" fill="#FFCC00" d="M916.5 914.45 L916.4 915.3 915.95 916.85 Q915.05 919.2 912.8 921.2 L911.15 922.5 910.6 922.85 910 923.25 909.6 923.5 Q903.85 926.7 896.05 926.7 888.2 926.7 882.45 923.5 L882.05 923.25 881.4 922.85 879.55 921.5 878 919.95 Q876.7 918.45 876.1 916.8 L875.7 915.3 875.55 914.55 875.65 913.05 876.05 911.05 Q876.5 909.1 877.25 907.3 878.75 903.75 881.4 900.8 882.6 899.5 883.85 898.55 889.1 894.2 896.05 894.2 902.95 894.2 908.25 898.55 L910.6 900.8 Q913.3 903.75 914.8 907.3 915.55 909.1 915.95 911.05 L916.3 913.05 916.5 914.45"/>
+ <path stroke="none" fill="#EEBE00" d="M916.5 914.45 L916.5 914.25 916.6 912.75 916.3 909.05 916.05 907.5 920.95 908.55 Q931.1 911.15 931.35 914.8 L915.95 916.85 916.4 915.3 916.5 914.45 M875.95 907.5 L875.65 909.05 875.45 912.75 875.5 914.25 875.55 914.55 875.7 915.3 876.1 916.8 860.65 914.75 Q860.95 911.1 870.95 908.55 L875.95 907.5"/>
+ <path stroke="none" fill="#DEB100" d="M876.1 916.8 Q876.7 918.45 878 919.95 L879.55 921.5 881.4 922.85 882.05 923.25 879.8 923 877.45 922.65 873.45 921.9 870.95 921.3 Q861.15 918.8 860.7 915.3 L860.65 914.95 860.65 914.75 876.1 916.8 M910 923.25 L910.6 922.85 911.15 922.5 912.8 921.2 Q915.05 919.2 915.95 916.85 L931.35 914.8 931.35 914.95 931.35 915.3 Q930.85 918.8 920.95 921.3 L915.4 922.5 912.2 923 912.05 923.05 910 923.25"/>
+ <path stroke="none" fill="#F3F3F3" d="M910 923.25 L912.05 923.05 912.2 923 915.4 922.5 Q926.15 928.25 935.5 940.15 L937.9 943.35 938.45 943.85 Q946.85 951.5 960 945.8 L960 951.85 Q959.75 960 951.35 960 L840.65 960 Q832.25 960 832 951.85 L832 946.05 Q843.55 951.35 849.75 943.35 L851.1 941.55 852.6 939.6 Q862.25 927.5 873.45 921.9 L877.45 922.65 879.8 923 882.05 923.25 882.45 923.5 Q888.2 926.7 896.05 926.7 903.85 926.7 909.6 923.5 L910 923.25"/>
+ <path stroke="none" fill="#B4723F" d="M320 1036.2 L320 1032.7 Q320 1024 328.65 1024 L439.35 1024 Q448 1024 448 1032.7 L448 1036.2 Q447.75 1028 439.35 1028 L328.65 1028 Q320.25 1028 320 1036.2"/>
+ <path stroke="none" fill="#EBCEB7" d="M432.6 1152 L335.5 1152 Q338.1 1137.65 349.05 1126.8 363.55 1112.4 384 1112.4 404.45 1112.4 418.9 1126.8 429.95 1137.65 432.6 1152 M423.25 1086.95 Q423.25 1082.45 420.1 1079.25 416.85 1076.1 412.4 1076.1 407.9 1076.1 404.7 1079.25 401.5 1082.45 401.5 1086.95 401.5 1091.5 404.7 1094.65 407.9 1097.85 412.4 1097.85 416.85 1097.85 420.1 1094.65 423.25 1091.5 423.25 1086.95 M438.15 1067.55 Q437.7 1069.25 435.7 1070.85 432 1073.7 434.1 1080.6 434.95 1083.6 434.95 1086.95 434.95 1096.3 428.35 1102.9 421.75 1109.55 412.4 1109.55 403.8 1109.55 397.5 1103.9 L397.6 1103.2 397.65 1102.3 397.45 1100.1 Q396.85 1095.9 393.65 1092.65 L392.1 1091.3 390 1090.05 389.8 1086.95 Q389.8 1083.7 390.6 1080.8 402.8 1065.35 438.15 1067.55 M370.5 1103.95 Q364.2 1109.55 355.6 1109.55 346.25 1109.55 339.65 1102.9 333.05 1096.3 333.05 1086.95 333.05 1083.6 333.9 1080.6 336 1073.7 332.3 1070.85 330.3 1069.25 329.85 1067.55 365.2 1065.35 377.4 1080.8 378.2 1083.7 378.2 1086.95 L378 1090.05 375.9 1091.3 374.3 1092.65 Q371.15 1095.9 370.5 1100.1 370.35 1101.15 370.35 1102.3 L370.35 1103.2 370.5 1103.95 M344.75 1086.95 Q344.75 1091.5 347.9 1094.65 351.15 1097.85 355.6 1097.85 360.1 1097.85 363.3 1094.65 366.5 1091.5 366.5 1086.95 366.5 1082.45 363.3 1079.25 360.1 1076.1 355.6 1076.1 351.15 1076.1 347.9 1079.25 344.75 1082.45 344.75 1086.95 M377.1 1131.9 Q379.95 1134.75 384 1134.75 388 1134.75 390.85 1131.9 393.7 1129.05 393.7 1125.05 393.7 1123.55 393.3 1122.2 L393.05 1121.85 392.65 1121.75 392.05 1121.75 Q391.8 1121.75 391.6 1121.9 L391.4 1122.35 Q391.25 1125.1 389.25 1127.05 387.05 1129.25 384 1129.25 380.9 1129.25 378.75 1127.05 376.75 1125.1 376.55 1122.35 L376.35 1121.9 375.9 1121.75 375.3 1121.75 374.9 1121.85 374.7 1122.2 Q374.3 1123.55 374.3 1125.05 374.3 1129.1 377.1 1131.9 M364.75 1141 Q368.5 1141 371.2 1138.3 L372.1 1137.25 372.3 1136.65 372.05 1136 371.5 1135.7 370.85 1135.8 Q369 1136.75 366.75 1136.75 363.15 1136.75 360.55 1134.1 358.45 1132.05 358 1129.3 L357.7 1128.75 357.1 1128.45 Q356.75 1128.45 356.45 1128.65 L356.05 1129.15 Q355.65 1130.45 355.65 1131.9 355.65 1135.65 358.3 1138.3 L358.35 1138.35 Q361 1141 364.75 1141 M403.25 1141 Q407 1141 409.65 1138.35 L409.7 1138.3 Q412.35 1135.65 412.35 1131.9 412.35 1130.45 411.95 1129.15 L411.55 1128.65 410.9 1128.45 Q410.55 1128.5 410.3 1128.75 L410 1129.3 Q409.55 1132.05 407.45 1134.1 404.85 1136.75 401.25 1136.75 399 1136.75 397.15 1135.8 L396.5 1135.7 395.95 1136 Q395.7 1136.25 395.7 1136.65 395.65 1136.95 395.9 1137.25 L396.8 1138.3 Q399.5 1141 403.25 1141"/>
+ <path stroke="none" fill="#FFFFFF" d="M423.25 1086.95 Q423.25 1091.5 420.1 1094.65 416.85 1097.85 412.4 1097.85 407.9 1097.85 404.7 1094.65 401.5 1091.5 401.5 1086.95 401.5 1082.45 404.7 1079.25 407.9 1076.1 412.4 1076.1 416.85 1076.1 420.1 1079.25 423.25 1082.45 423.25 1086.95 M416.95 1086.95 Q416.95 1084.4 415.1 1082.6 413.3 1080.8 410.75 1080.8 408.2 1080.8 406.3 1082.6 404.5 1084.4 404.5 1086.95 404.5 1089.55 406.3 1091.4 408.2 1093.2 410.75 1093.2 413.3 1093.2 415.1 1091.4 416.95 1089.55 416.95 1086.95 M344.75 1086.95 Q344.75 1082.45 347.9 1079.25 351.15 1076.1 355.6 1076.1 360.1 1076.1 363.3 1079.25 366.5 1082.45 366.5 1086.95 366.5 1091.5 363.3 1094.65 360.1 1097.85 355.6 1097.85 351.15 1097.85 347.9 1094.65 344.75 1091.5 344.75 1086.95 M351.05 1086.95 Q351.05 1089.55 352.9 1091.4 354.7 1093.2 357.25 1093.2 359.8 1093.2 361.7 1091.4 363.5 1089.55 363.5 1086.95 363.5 1084.4 361.7 1082.6 359.8 1080.8 357.25 1080.8 354.7 1080.8 352.9 1082.6 351.05 1084.4 351.05 1086.95"/>
+ <path stroke="none" fill="#5B5B5B" d="M351.05 1086.95 Q351.05 1084.4 352.9 1082.6 354.7 1080.8 357.25 1080.8 359.8 1080.8 361.7 1082.6 363.5 1084.4 363.5 1086.95 363.5 1089.55 361.7 1091.4 359.8 1093.2 357.25 1093.2 354.7 1093.2 352.9 1091.4 351.05 1089.55 351.05 1086.95 M416.95 1086.95 Q416.95 1089.55 415.1 1091.4 413.3 1093.2 410.75 1093.2 408.2 1093.2 406.3 1091.4 404.5 1089.55 404.5 1086.95 404.5 1084.4 406.3 1082.6 408.2 1080.8 410.75 1080.8 413.3 1080.8 415.1 1082.6 416.95 1084.4 416.95 1086.95"/>
+ <path stroke="none" fill="#A16639" d="M448 1036.2 L448 1143.85 Q447.75 1152 439.35 1152 L432.6 1152 Q429.95 1137.65 418.9 1126.8 404.45 1112.4 384 1112.4 363.55 1112.4 349.05 1126.8 338.1 1137.65 335.5 1152 L328.65 1152 Q320.25 1152 320 1143.85 L320 1036.2 Q320.25 1028 328.65 1028 L439.35 1028 Q447.75 1028 448 1036.2 M397.5 1103.9 Q403.8 1109.55 412.4 1109.55 421.75 1109.55 428.35 1102.9 434.95 1096.3 434.95 1086.95 434.95 1083.6 434.1 1080.6 432 1073.7 435.7 1070.85 437.7 1069.25 438.15 1067.55 438.35 1066.65 438.1 1065.7 437.2 1062.35 430.75 1061.6 424.3 1060.75 415.1 1062.55 401.95 1065.45 396.45 1071 392.1 1075.3 390.6 1080.8 389.8 1083.7 389.8 1086.95 L390 1090.05 Q387.25 1088.7 384 1088.7 380.75 1088.7 378 1090.05 L378.2 1086.95 Q378.2 1083.7 377.4 1080.8 375.9 1075.3 371.55 1071 366.05 1065.45 352.9 1062.55 343.7 1060.75 337.25 1061.6 330.8 1062.35 329.9 1065.7 329.65 1066.65 329.85 1067.55 330.3 1069.25 332.3 1070.85 336 1073.7 333.9 1080.6 333.05 1083.6 333.05 1086.95 333.05 1096.3 339.65 1102.9 346.25 1109.55 355.6 1109.55 364.2 1109.55 370.5 1103.95 371.1 1106.5 374.3 1108.4 378.3 1110.75 384 1110.75 389.65 1110.75 393.65 1108.4 396.9 1106.5 397.5 1103.9 M377.7 1046 Q375.15 1041.5 372 1039.1 368.95 1036.65 367.15 1037.75 365.35 1038.75 365.9 1042.65 366.45 1046.55 369 1051 L369.6 1052.05 Q370.95 1054.05 372.95 1054.9 375.2 1055.9 377 1054.85 378.8 1053.75 379.1 1051.3 379.35 1049.2 378.3 1047.05 L377.7 1046 M397.4 1053.7 Q401.3 1046.95 402.05 1041.05 402.95 1035.2 400.2 1033.65 397.45 1032.05 392.75 1035.7 388.15 1039.35 384.25 1046.1 L383.35 1047.65 Q381.75 1050.85 382.15 1054.15 382.55 1057.8 385.3 1059.4 388.05 1060.95 391.45 1059.5 394.45 1058.2 396.45 1055.2 L397.4 1053.7"/>
+ <path stroke="none" fill="#DEC2AD" d="M329.85 1067.55 Q329.65 1066.65 329.9 1065.7 330.8 1062.35 337.25 1061.6 343.7 1060.75 352.9 1062.55 366.05 1065.45 371.55 1071 375.9 1075.3 377.4 1080.8 365.2 1065.35 329.85 1067.55 M390.6 1080.8 Q392.1 1075.3 396.45 1071 401.95 1065.45 415.1 1062.55 424.3 1060.75 430.75 1061.6 437.2 1062.35 438.1 1065.7 438.35 1066.65 438.15 1067.55 402.8 1065.35 390.6 1080.8"/>
+ <path stroke="none" fill="#8E5A32" d="M397.4 1053.7 L396.45 1055.2 Q394.45 1058.2 391.45 1059.5 388.05 1060.95 385.3 1059.4 382.55 1057.8 382.15 1054.15 381.75 1050.85 383.35 1047.65 L384.25 1046.1 Q388.15 1039.35 392.75 1035.7 397.45 1032.05 400.2 1033.65 402.95 1035.2 402.05 1041.05 401.3 1046.95 397.4 1053.7 M377.7 1046 L378.3 1047.05 Q379.35 1049.2 379.1 1051.3 378.8 1053.75 377 1054.85 375.2 1055.9 372.95 1054.9 370.95 1054.05 369.6 1052.05 L369 1051 Q366.45 1046.55 365.9 1042.65 365.35 1038.75 367.15 1037.75 368.95 1036.65 372 1039.1 375.15 1041.5 377.7 1046"/>
+ <path stroke="none" fill="#FF9900" d="M378 1090.05 Q380.75 1088.7 384 1088.7 387.25 1088.7 390 1090.05 L392.1 1091.3 393.65 1092.65 Q396.85 1095.9 397.45 1100.1 L396.3 1101.65 Q395.5 1098.6 392.95 1096.2 L391.55 1095.05 391.15 1094.8 Q388 1092.75 384 1092.75 380 1092.75 376.85 1094.8 376.65 1094.95 376.5 1095.05 L375 1096.2 Q372.5 1098.6 371.7 1101.65 370.8 1100.95 370.5 1100.1 371.15 1095.9 374.3 1092.65 L375.9 1091.3 378 1090.05"/>
+ <path stroke="none" fill="#F39100" d="M371.7 1101.65 Q372.5 1098.6 375 1096.2 L376.5 1095.05 Q376.65 1094.95 376.85 1094.8 380 1092.75 384 1092.75 388 1092.75 391.15 1094.8 L391.55 1095.05 392.95 1096.2 Q395.5 1098.6 396.3 1101.65 L395.7 1102.1 393.65 1103.1 Q389.65 1104.75 384 1104.75 378.3 1104.75 374.3 1103.1 373.15 1102.65 372.35 1102.1 L371.7 1101.65"/>
+ <path stroke="none" fill="#E08600" d="M371.7 1101.65 L372.35 1102.1 Q373.15 1102.65 374.3 1103.1 378.3 1104.75 384 1104.75 389.65 1104.75 393.65 1103.1 L395.7 1102.1 396.3 1101.65 397.45 1100.1 397.65 1102.3 397.6 1103.2 397.5 1103.9 Q396.9 1106.5 393.65 1108.4 389.65 1110.75 384 1110.75 378.3 1110.75 374.3 1108.4 371.1 1106.5 370.5 1103.95 L370.35 1103.2 370.35 1102.3 Q370.35 1101.15 370.5 1100.1 370.8 1100.95 371.7 1101.65"/>
+ <path stroke="none" fill="#C6AD99" d="M377.1 1131.9 Q374.3 1129.1 374.3 1125.05 374.3 1123.55 374.7 1122.2 L374.9 1121.85 375.3 1121.75 375.9 1121.75 376.35 1121.9 376.55 1122.35 Q376.75 1125.1 378.75 1127.05 380.9 1129.25 384 1129.25 387.05 1129.25 389.25 1127.05 391.25 1125.1 391.4 1122.35 L391.6 1121.9 Q391.8 1121.75 392.05 1121.75 L392.65 1121.75 393.05 1121.85 393.3 1122.2 Q393.7 1123.55 393.7 1125.05 393.7 1129.05 390.85 1131.9 388 1134.75 384 1134.75 379.95 1134.75 377.1 1131.9 M364.75 1141 Q361 1141 358.35 1138.35 L358.3 1138.3 Q355.65 1135.65 355.65 1131.9 355.65 1130.45 356.05 1129.15 L356.45 1128.65 Q356.75 1128.45 357.1 1128.45 L357.7 1128.75 358 1129.3 Q358.45 1132.05 360.55 1134.1 363.15 1136.75 366.75 1136.75 369 1136.75 370.85 1135.8 L371.5 1135.7 372.05 1136 372.3 1136.65 372.1 1137.25 371.2 1138.3 Q368.5 1141 364.75 1141 M403.25 1141 Q399.5 1141 396.8 1138.3 L395.9 1137.25 Q395.65 1136.95 395.7 1136.65 395.7 1136.25 395.95 1136 L396.5 1135.7 397.15 1135.8 Q399 1136.75 401.25 1136.75 404.85 1136.75 407.45 1134.1 409.55 1132.05 410 1129.3 L410.3 1128.75 Q410.55 1128.5 410.9 1128.45 L411.55 1128.65 411.95 1129.15 Q412.35 1130.45 412.35 1131.9 412.35 1135.65 409.7 1138.3 L409.65 1138.35 Q407 1141 403.25 1141"/>
+ <path stroke="none" fill="#B4723F" d="M832 1036.2 L832 1032.7 Q832 1024 840.65 1024 L951.35 1024 Q960 1024 960 1032.7 L960 1036.2 Q959.75 1028 951.35 1028 L840.65 1028 Q832.25 1028 832 1036.2"/>
+ <path stroke="none" fill="#A16639" d="M832 1036.2 Q832.25 1028 840.65 1028 L951.35 1028 Q959.75 1028 960 1036.2 L960 1120.75 Q947.7 1129.8 933.8 1134.85 927.9 1130.1 921.25 1127.1 926.35 1124.95 930.9 1121.8 L931.7 1121.2 935.4 1118.3 936.45 1117.35 Q946.35 1108 946 1097.45 945.7 1087 938.85 1095.2 936.55 1097.9 932.65 1098.95 L932.6 1098.95 Q926.6 1100.55 921.25 1097.45 L918.9 1095.8 Q915.5 1092.9 914.3 1088.35 912.7 1082.35 915.8 1076.95 918.85 1071.65 924.85 1070 L924.9 1070 928.95 1069.3 932 1069.3 Q938.05 1069.35 933.4 1065.1 L933.4 1065.05 931.7 1063.45 930.95 1062.85 Q925.55 1058.15 919.4 1055.2 916 1053.6 912.35 1052.5 913.05 1049.1 913.2 1045.3 L913.2 1044.45 Q913.2 1039.25 908.05 1035.6 902.95 1031.95 895.7 1031.95 888.45 1031.95 883.3 1035.6 878.2 1039.25 878.2 1044.45 L878.25 1045.3 Q878.4 1049.1 879.05 1052.55 868.4 1055.75 859.8 1063.45 L858.1 1065.05 Q854.1 1069.65 860.45 1069.3 L861.4 1069.3 866.45 1070.05 866.5 1070.05 Q872.5 1071.7 875.55 1077 878.65 1082.4 877.05 1088.4 875.9 1092.9 872.5 1095.8 871.4 1096.75 870.1 1097.5 864.75 1100.6 858.75 1099 L858.7 1099 Q854.75 1097.95 852.75 1095.75 845.45 1087.8 844.85 1095.8 845.05 1108.25 855.4 1117.75 L858.1 1119.95 859.8 1121.2 Q864.65 1124.75 870.2 1127.15 863.5 1130.15 857.65 1134.85 844.05 1129.9 832 1121.2 L832 1036.2 M928.35 1075.65 Q924.5 1075.65 921.8 1078.35 919.1 1081.1 919.1 1084.95 919.1 1088.75 921.8 1091.5 924.5 1094.2 928.35 1094.2 932.2 1094.2 934.8 1091.5 937.6 1088.75 937.6 1084.95 937.6 1081.1 934.8 1078.35 932.2 1075.65 928.35 1075.65 M863 1075.7 Q859.15 1075.7 856.55 1078.4 853.75 1081.15 853.75 1085 853.75 1088.8 856.55 1091.55 859.15 1094.25 863 1094.25 866.85 1094.25 869.55 1091.55 872.25 1088.8 872.25 1085 872.25 1081.15 869.55 1078.4 866.85 1075.7 863 1075.7"/>
+ <path stroke="none" fill="#AA6C3C" d="M879.05 1052.55 Q878.4 1049.1 878.25 1045.3 L878.2 1044.45 Q878.2 1039.25 883.3 1035.6 888.45 1031.95 895.7 1031.95 902.95 1031.95 908.05 1035.6 913.2 1039.25 913.2 1044.45 L913.2 1045.3 Q913.05 1049.1 912.35 1052.5 904.55 1050.15 895.7 1050.15 L894.1 1050.2 Q886.15 1050.4 879.05 1052.55"/>
+ <path stroke="none" fill="#EBCEB7" d="M879.05 1052.55 Q886.15 1050.4 894.1 1050.2 L895.7 1050.15 Q904.55 1050.15 912.35 1052.5 916 1053.6 919.4 1055.2 925.55 1058.15 930.95 1062.85 L931.7 1063.45 933.4 1065.05 933.4 1065.1 Q938.05 1069.35 932 1069.3 L928.95 1069.3 924.9 1070 924.85 1070 Q918.85 1071.65 915.8 1076.95 912.7 1082.35 914.3 1088.35 915.5 1092.9 918.9 1095.8 L921.25 1097.45 Q926.6 1100.55 932.6 1098.95 L932.65 1098.95 Q936.55 1097.9 938.85 1095.2 945.7 1087 946 1097.45 946.35 1108 936.45 1117.35 L935.4 1118.3 931.7 1121.2 930.9 1121.8 Q926.35 1124.95 921.25 1127.1 L919.4 1127.85 Q908.7 1131.95 895.7 1131.95 L894.1 1131.95 Q882.3 1131.7 872.45 1128.05 L870.2 1127.15 Q864.65 1124.75 859.8 1121.2 L858.1 1119.95 855.4 1117.75 Q845.05 1108.25 844.85 1095.8 845.45 1087.8 852.75 1095.75 854.75 1097.95 858.7 1099 L858.75 1099 Q864.75 1100.6 870.1 1097.5 871.4 1096.75 872.5 1095.8 875.9 1092.9 877.05 1088.4 878.65 1082.4 875.55 1077 872.5 1071.7 866.5 1070.05 L866.45 1070.05 861.4 1069.3 860.45 1069.3 Q854.1 1069.65 858.1 1065.05 L859.8 1063.45 Q868.4 1055.75 879.05 1052.55 M908.55 1095.1 L908.75 1092.75 908.75 1091.85 Q908.4 1089.45 904.95 1087.75 901.1 1085.9 895.7 1085.9 890.3 1085.9 886.45 1087.75 882.95 1089.45 882.65 1091.85 L882.65 1092.75 882.85 1095.1 883 1095.8 Q883.75 1099.3 886.45 1102 888.6 1104.15 891.25 1105.1 L890.4 1106.1 888.35 1107.6 Q886.9 1108.25 885.25 1108.25 882.25 1108.25 880.1 1106.1 L878.75 1104.35 Q878.55 1104 878.2 1103.9 L877.55 1104 872.95 1106.55 Q872.6 1106.75 872.55 1107.1 872.4 1107.4 872.6 1107.75 L874.1 1109.95 875.15 1111.1 Q879.3 1115.3 885.25 1115.3 891.15 1115.3 895.4 1111.1 L895.7 1110.8 896 1111.1 Q900.2 1115.3 906.1 1115.3 912 1115.3 916.25 1111.1 L917.3 1109.95 918.8 1107.65 918.85 1107 918.4 1106.5 913.7 1104.05 913 1104 912.5 1104.45 911.25 1106.1 Q909.1 1108.25 906.1 1108.25 904.45 1108.25 903.05 1107.6 901.95 1107.05 901 1106.1 L900.15 1105.1 Q902.8 1104.15 904.95 1102 907.65 1099.3 908.45 1095.8 L908.55 1095.1"/>
+ <path stroke="none" fill="#545454" d="M908.55 1095.1 Q907.85 1093.2 904.95 1091.75 901.1 1089.9 895.7 1089.9 890.3 1089.9 886.45 1091.75 883.55 1093.15 882.85 1095.1 L882.65 1092.75 882.65 1091.85 Q882.95 1089.45 886.45 1087.75 890.3 1085.9 895.7 1085.9 901.1 1085.9 904.95 1087.75 908.4 1089.45 908.75 1091.85 L908.75 1092.75 908.55 1095.1"/>
+ <path stroke="none" fill="#FFFFFF" d="M928.35 1075.65 Q932.2 1075.65 934.8 1078.35 937.6 1081.1 937.6 1084.95 937.6 1088.75 934.8 1091.5 932.2 1094.2 928.35 1094.2 924.5 1094.2 921.8 1091.5 919.1 1088.75 919.1 1084.95 919.1 1081.1 921.8 1078.35 924.5 1075.65 928.35 1075.65 M928.5 1080.15 Q926.05 1080.15 924.4 1081.85 922.7 1083.55 922.7 1085.95 922.7 1088.35 924.4 1090.1 926.05 1091.8 928.5 1091.8 930.9 1091.8 932.55 1090.1 934.3 1088.35 934.3 1085.95 934.3 1083.55 932.55 1081.85 930.9 1080.15 928.5 1080.15 M862.85 1080.2 Q860.45 1080.2 858.8 1081.9 857.05 1083.6 857.05 1086 857.05 1088.4 858.8 1090.15 860.45 1091.85 862.85 1091.85 865.3 1091.85 866.95 1090.15 868.65 1088.4 868.65 1086 868.65 1083.6 866.95 1081.9 865.3 1080.2 862.85 1080.2 M863 1075.7 Q866.85 1075.7 869.55 1078.4 872.25 1081.15 872.25 1085 872.25 1088.8 869.55 1091.55 866.85 1094.25 863 1094.25 859.15 1094.25 856.55 1091.55 853.75 1088.8 853.75 1085 853.75 1081.15 856.55 1078.4 859.15 1075.7 863 1075.7"/>
+ <path stroke="none" fill="#5B5B5B" d="M928.5 1080.15 Q930.9 1080.15 932.55 1081.85 934.3 1083.55 934.3 1085.95 934.3 1088.35 932.55 1090.1 930.9 1091.8 928.5 1091.8 926.05 1091.8 924.4 1090.1 922.7 1088.35 922.7 1085.95 922.7 1083.55 924.4 1081.85 926.05 1080.15 928.5 1080.15 M862.85 1080.2 Q865.3 1080.2 866.95 1081.9 868.65 1083.6 868.65 1086 868.65 1088.4 866.95 1090.15 865.3 1091.85 862.85 1091.85 860.45 1091.85 858.8 1090.15 857.05 1088.4 857.05 1086 857.05 1083.6 858.8 1081.9 860.45 1080.2 862.85 1080.2"/>
+ <path stroke="none" fill="#464646" d="M908.55 1095.1 L908.45 1095.8 Q907.65 1099.3 904.95 1102 902.8 1104.15 900.15 1105.1 895.9 1106.85 891.25 1105.1 888.6 1104.15 886.45 1102 883.75 1099.3 883 1095.8 L882.85 1095.1 Q883.55 1093.15 886.45 1091.75 890.3 1089.9 895.7 1089.9 901.1 1089.9 904.95 1091.75 907.85 1093.2 908.55 1095.1"/>
+ <path stroke="none" fill="#383838" d="M900.15 1105.1 L901 1106.1 Q901.95 1107.05 903.05 1107.6 904.45 1108.25 906.1 1108.25 909.1 1108.25 911.25 1106.1 L912.5 1104.45 913 1104 913.7 1104.05 918.4 1106.5 918.85 1107 918.8 1107.65 917.3 1109.95 916.25 1111.1 Q912 1115.3 906.1 1115.3 900.2 1115.3 896 1111.1 L895.7 1110.8 895.4 1111.1 Q891.15 1115.3 885.25 1115.3 879.3 1115.3 875.15 1111.1 L874.1 1109.95 872.6 1107.75 Q872.4 1107.4 872.55 1107.1 872.6 1106.75 872.95 1106.55 L877.55 1104 878.2 1103.9 Q878.55 1104 878.75 1104.35 L880.1 1106.1 Q882.25 1108.25 885.25 1108.25 886.9 1108.25 888.35 1107.6 L890.4 1106.1 891.25 1105.1 Q895.9 1106.85 900.15 1105.1"/>
+ <path stroke="none" fill="#955E34" d="M960 1120.75 L960 1143.85 Q959.75 1152 951.35 1152 L840.65 1152 Q832.25 1152 832 1143.85 L832 1121.2 Q844.05 1129.9 857.65 1134.85 863.5 1130.15 870.2 1127.15 L872.45 1128.05 Q882.3 1131.7 894.1 1131.95 L895.7 1131.95 Q908.7 1131.95 919.4 1127.85 L921.25 1127.1 Q927.9 1130.1 933.8 1134.85 947.7 1129.8 960 1120.75"/>
+ <path stroke="none" fill="#B1A9A9" d="M1096.3 1027.5 Q1095.9 1010.3 1102.4 993.15 1102.75 992.25 1103.6 991.8 L1105.4 991.6 Q1106.35 991.85 1106.9 992.7 L1127.3 1023.9 Q1127.7 1024.5 1127.7 1025.25 1127.7 1026 1127.3 1026.6 L1126.85 1027.3 1106.9 996.7 Q1106.35 995.85 1105.4 995.6 L1103.6 995.8 Q1102.75 996.25 1102.4 997.15 1096.7 1012.35 1096.3 1027.5 M1177.15 1027.3 L1176.7 1026.6 Q1176.3 1026 1176.3 1025.25 1176.3 1024.5 1176.7 1023.9 L1197.1 992.7 Q1197.65 991.85 1198.6 991.6 L1200.4 991.8 Q1201.25 992.25 1201.6 993.15 1208.1 1010.3 1207.7 1027.5 1207.3 1012.35 1201.6 997.15 1201.25 996.25 1200.4 995.8 L1198.6 995.6 Q1197.65 995.85 1197.1 996.7 L1177.15 1027.3"/>
+ <path stroke="none" fill="#958F8F" d="M1177.15 1027.3 L1197.1 996.7 Q1197.65 995.85 1198.6 995.6 L1200.4 995.8 Q1201.25 996.25 1201.6 997.15 1207.3 1012.35 1207.7 1027.5 1207.3 1042.7 1201.6 1057.9 1201.25 1058.8 1200.4 1059.25 L1198.55 1059.45 Q1197.6 1059.15 1197.1 1058.35 L1195.8 1056.3 Q1200.75 1039.45 1193.55 1017.4 1193.35 1016.65 1192.75 1016.1 1192.15 1015.55 1191.5 1015.45 1190.85 1015.3 1190.45 1015.7 L1178.3 1029.15 1177.15 1027.3 M1096.3 1027.5 Q1096.7 1012.35 1102.4 997.15 1102.75 996.25 1103.6 995.8 L1105.4 995.6 Q1106.35 995.85 1106.9 996.7 L1126.85 1027.3 1125.7 1029.15 1113.55 1015.7 Q1113.15 1015.3 1112.5 1015.45 L1111.25 1016.1 Q1110.65 1016.65 1110.45 1017.4 1103.25 1039.45 1108.2 1056.3 L1106.9 1058.35 Q1106.4 1059.15 1105.45 1059.45 L1103.6 1059.25 Q1102.75 1058.8 1102.4 1057.9 1096.7 1042.7 1096.3 1027.5"/>
+ <path stroke="none" fill="#D2D0D0" d="M1125.7 1029.15 L1108.2 1056.3 Q1103.25 1039.45 1110.45 1017.4 1110.65 1016.65 1111.25 1016.1 L1112.5 1015.45 Q1113.15 1015.3 1113.55 1015.7 L1125.7 1029.15 M1195.8 1056.3 L1178.3 1029.15 1190.45 1015.7 Q1190.85 1015.3 1191.5 1015.45 1192.15 1015.55 1192.75 1016.1 1193.35 1016.65 1193.55 1017.4 1200.75 1039.45 1195.8 1056.3"/>
+ <path stroke="none" fill="#B1A9A9" d="M1088 1036.2 L1088 1032.7 Q1088 1024 1096.65 1024 L1207.35 1024 Q1216 1024 1216 1032.7 L1216 1036.2 Q1215.75 1028 1207.35 1028 L1096.65 1028 Q1088.25 1028 1088 1036.2"/>
+ <path stroke="none" fill="#FFFFFF" d="M1105.5 1076.95 Q1105.5 1071.75 1109.15 1068.1 1112.8 1064.45 1118 1064.45 1123.1 1064.45 1126.8 1068.1 1130.45 1071.75 1130.45 1076.95 1130.45 1082.1 1126.8 1085.7 1123.1 1089.4 1118 1089.4 1112.8 1089.4 1109.15 1085.7 1105.5 1082.1 1105.5 1076.95 M1110.2 1077 L1110.2 1077.3 Q1110.3 1079.65 1112.75 1081.25 1115.25 1083 1118.9 1083 1122.45 1083 1125 1081.25 1127.45 1079.65 1127.55 1077.3 L1127.55 1077 Q1127.45 1074.65 1125 1072.95 1122.45 1071.25 1118.9 1071.25 1115.25 1071.25 1112.75 1072.95 1110.3 1074.65 1110.2 1077 M1193.75 1077 Q1193.65 1074.65 1191.25 1072.95 1188.75 1071.25 1185.1 1071.25 1181.55 1071.25 1178.95 1072.95 1176.55 1074.65 1176.45 1077 L1176.45 1077.3 Q1176.55 1079.65 1178.95 1081.25 1181.55 1083 1185.1 1083 1188.75 1083 1191.25 1081.25 1193.65 1079.65 1193.75 1077.3 L1193.75 1077 M1198.5 1076.95 Q1198.5 1082.1 1194.85 1085.7 1191.2 1089.4 1186 1089.4 1180.9 1089.4 1177.2 1085.7 1173.55 1082.1 1173.55 1076.95 1173.55 1071.75 1177.2 1068.1 1180.9 1064.45 1186 1064.45 1191.2 1064.45 1194.85 1068.1 1198.5 1071.75 1198.5 1076.95"/>
+ <path stroke="none" fill="#D2D0D0" d="M1198.5 1076.95 Q1198.5 1071.75 1194.85 1068.1 1191.2 1064.45 1186 1064.45 1180.9 1064.45 1177.2 1068.1 1173.55 1071.75 1173.55 1076.95 1173.55 1082.1 1177.2 1085.7 1180.9 1089.4 1186 1089.4 1191.2 1089.4 1194.85 1085.7 1198.5 1082.1 1198.5 1076.95 M1216 1106.75 L1216 1143.85 Q1215.75 1152 1207.35 1152 L1096.65 1152 Q1088.25 1152 1088 1143.85 L1088 1106.8 1091.6 1110.6 1098 1116.5 1100.15 1118.2 Q1101.9 1105.95 1115.35 1101.4 1102.35 1098.35 1096.5 1085.55 1090.65 1072.65 1100.6 1056.8 1110.6 1040.95 1126.2 1048.85 1141.2 1056.4 1142.75 1082.6 1139.25 1084.3 1138.95 1086.7 L1138.95 1087.6 1139.15 1089.95 Q1139.8 1093.9 1142.75 1096.85 1144.9 1099 1147.55 1099.95 L1146.7 1100.95 Q1145.75 1101.9 1144.65 1102.45 1143.2 1103.1 1141.55 1103.1 1138.55 1103.1 1136.4 1100.95 L1135.05 1099.2 Q1134.85 1098.85 1134.5 1098.75 L1133.85 1098.85 1129.25 1101.4 Q1128.9 1101.6 1128.85 1101.95 1128.7 1102.25 1128.9 1102.6 L1130.4 1104.8 1131.45 1105.95 Q1135.6 1110.15 1141.55 1110.15 1147.45 1110.15 1151.7 1105.95 L1152 1105.65 1152.3 1105.95 Q1156.5 1110.15 1162.4 1110.15 1168.3 1110.15 1172.55 1105.95 L1173.6 1104.8 1175.1 1102.5 1175.15 1101.85 1174.7 1101.35 1170 1098.9 1169.3 1098.85 1168.8 1099.3 1167.55 1100.95 Q1165.4 1103.1 1162.4 1103.1 1160.75 1103.1 1159.35 1102.45 1158.25 1101.9 1157.3 1100.95 L1156.45 1099.95 Q1159.1 1099 1161.25 1096.85 1164.2 1093.9 1164.85 1089.95 L1165.05 1087.6 1165.05 1086.7 Q1164.7 1084.3 1161.25 1082.6 1162.8 1056.4 1177.8 1048.85 1193.4 1040.95 1203.4 1056.8 1213.35 1072.65 1207.5 1085.55 1201.65 1098.35 1188.65 1101.4 1202.05 1105.9 1203.9 1118.1 L1206.1 1116.35 1212.3 1110.6 1216 1106.75 M1105.5 1076.95 Q1105.5 1082.1 1109.15 1085.7 1112.8 1089.4 1118 1089.4 1123.1 1089.4 1126.8 1085.7 1130.45 1082.1 1130.45 1076.95 1130.45 1071.75 1126.8 1068.1 1123.1 1064.45 1118 1064.45 1112.8 1064.45 1109.15 1068.1 1105.5 1071.75 1105.5 1076.95"/>
+ <path stroke="none" fill="#5B5B5B" d="M1110.2 1077 Q1110.3 1074.65 1112.75 1072.95 1115.25 1071.25 1118.9 1071.25 1122.45 1071.25 1125 1072.95 1127.45 1074.65 1127.55 1077 L1127.55 1077.3 Q1127.45 1079.65 1125 1081.25 1122.45 1083 1118.9 1083 1115.25 1083 1112.75 1081.25 1110.3 1079.65 1110.2 1077.3 L1110.2 1077 M1193.75 1077 L1193.75 1077.3 Q1193.65 1079.65 1191.25 1081.25 1188.75 1083 1185.1 1083 1181.55 1083 1178.95 1081.25 1176.55 1079.65 1176.45 1077.3 L1176.45 1077 Q1176.55 1074.65 1178.95 1072.95 1181.55 1071.25 1185.1 1071.25 1188.75 1071.25 1191.25 1072.95 1193.65 1074.65 1193.75 1077"/>
+ <path stroke="none" fill="#9F9898" d="M1216 1036.2 L1216 1106.75 1212.3 1110.6 1206.1 1116.35 1203.9 1118.1 Q1202.05 1105.9 1188.65 1101.4 1201.65 1098.35 1207.5 1085.55 1213.35 1072.65 1203.4 1056.8 1193.4 1040.95 1177.8 1048.85 1162.8 1056.4 1161.25 1082.6 1157.4 1080.75 1152 1080.75 1146.6 1080.75 1142.75 1082.6 1141.2 1056.4 1126.2 1048.85 1110.6 1040.95 1100.6 1056.8 1090.65 1072.65 1096.5 1085.55 1102.35 1098.35 1115.35 1101.4 1101.9 1105.95 1100.15 1118.2 L1098 1116.5 1091.6 1110.6 1088 1106.8 1088 1036.2 Q1088.25 1028 1096.65 1028 L1207.35 1028 Q1215.75 1028 1216 1036.2"/>
+ <path stroke="none" fill="#383838" d="M1156.45 1099.95 L1157.3 1100.95 Q1158.25 1101.9 1159.35 1102.45 1160.75 1103.1 1162.4 1103.1 1165.4 1103.1 1167.55 1100.95 L1168.8 1099.3 1169.3 1098.85 1170 1098.9 1174.7 1101.35 1175.15 1101.85 1175.1 1102.5 1173.6 1104.8 1172.55 1105.95 Q1168.3 1110.15 1162.4 1110.15 1156.5 1110.15 1152.3 1105.95 L1152 1105.65 1151.7 1105.95 Q1147.45 1110.15 1141.55 1110.15 1135.6 1110.15 1131.45 1105.95 L1130.4 1104.8 1128.9 1102.6 Q1128.7 1102.25 1128.85 1101.95 1128.9 1101.6 1129.25 1101.4 L1133.85 1098.85 1134.5 1098.75 Q1134.85 1098.85 1135.05 1099.2 L1136.4 1100.95 Q1138.55 1103.1 1141.55 1103.1 1143.2 1103.1 1144.65 1102.45 1145.75 1101.9 1146.7 1100.95 L1147.55 1099.95 Q1152.2 1101.7 1156.45 1099.95"/>
+ <path stroke="none" fill="#545454" d="M1139.15 1089.95 L1138.95 1087.6 1138.95 1086.7 Q1139.25 1084.3 1142.75 1082.6 1146.6 1080.75 1152 1080.75 1157.4 1080.75 1161.25 1082.6 1164.7 1084.3 1165.05 1086.7 L1165.05 1087.6 1164.85 1089.95 Q1164.15 1088.05 1161.25 1086.6 1158.5 1085.3 1154.95 1084.9 L1152 1084.75 1149.05 1084.9 Q1145.5 1085.3 1142.75 1086.6 1139.85 1088 1139.15 1089.95"/>
+ <path stroke="none" fill="#464646" d="M1139.15 1089.95 Q1139.85 1088 1142.75 1086.6 1145.5 1085.3 1149.05 1084.9 L1152 1084.75 1154.95 1084.9 Q1158.5 1085.3 1161.25 1086.6 1164.15 1088.05 1164.85 1089.95 1164.2 1093.9 1161.25 1096.85 1159.1 1099 1156.45 1099.95 1152.2 1101.7 1147.55 1099.95 1144.9 1099 1142.75 1096.85 1139.8 1093.9 1139.15 1089.95"/>
+ <path stroke="none" fill="#5B5B5B" d="M610.9 1041.2 Q610.9 1038.75 612.6 1037.1 614.2 1035.5 616.6 1035.5 618.8 1035.5 620.4 1036.9 L620.65 1037.1 Q621.45 1037.85 621.85 1038.8 622.35 1039.9 622.35 1041.2 622.35 1042.5 621.85 1043.55 L620.75 1045.15 620.65 1045.2 Q618.95 1046.9 616.6 1046.9 614.2 1046.9 612.6 1045.2 610.9 1043.55 610.9 1041.2 M669.15 1041.2 Q669.15 1043.55 667.45 1045.2 665.8 1046.9 663.4 1046.9 661.1 1046.9 659.35 1045.2 L659.3 1045.15 Q657.65 1043.55 657.65 1041.2 657.65 1038.75 659.35 1037.1 L659.6 1036.9 Q661.3 1035.5 663.4 1035.5 665.8 1035.5 667.45 1037.1 669.15 1038.75 669.15 1041.2"/>
+ <path stroke="none" fill="#FFFFFF" d="M669.15 1041.2 Q669.15 1038.75 667.45 1037.1 665.8 1035.5 663.4 1035.5 661.3 1035.5 659.6 1036.9 L659.35 1037.1 Q657.65 1038.75 657.65 1041.2 657.65 1043.55 659.3 1045.15 L659.35 1045.2 Q661.1 1046.9 663.4 1046.9 665.8 1046.9 667.45 1045.2 669.15 1043.55 669.15 1041.2 M606.45 1041 Q606.45 1039.05 607.2 1037.4 607.85 1035.85 609.15 1034.55 611.85 1031.95 615.6 1031.95 L616.1 1032 Q618.45 1032.05 620.4 1033.25 L620.45 1033.3 621.85 1034.35 622.1 1034.55 Q624.75 1037.25 624.75 1041 624.75 1044.8 622.1 1047.4 L621.85 1047.65 621 1048.35 Q618.6 1050.15 615.6 1050.15 611.85 1050.15 609.15 1047.4 606.45 1044.8 606.45 1041 M610.9 1041.2 Q610.9 1043.55 612.6 1045.2 614.2 1046.9 616.6 1046.9 618.95 1046.9 620.65 1045.2 L620.75 1045.15 621.85 1043.55 Q622.35 1042.5 622.35 1041.2 622.35 1039.9 621.85 1038.8 621.45 1037.85 620.65 1037.1 L620.4 1036.9 Q618.8 1035.5 616.6 1035.5 614.2 1035.5 612.6 1037.1 610.9 1038.75 610.9 1041.2 M673.55 1041 Q673.55 1044.8 670.9 1047.4 668.2 1050.15 664.4 1050.15 661.3 1050.15 659 1048.35 L658 1047.4 Q655.3 1044.8 655.3 1041 655.3 1037.25 658 1034.55 L659.55 1033.35 659.65 1033.25 Q661.55 1032.05 663.9 1032 L664.4 1031.95 Q668.2 1031.95 670.9 1034.55 672.2 1035.9 672.85 1037.45 673.55 1039.05 673.55 1041"/>
+ <path stroke="none" fill="#2ECC71" d="M673.55 1041 Q673.55 1039.05 672.85 1037.45 672.2 1035.9 670.9 1034.55 668.2 1031.95 664.4 1031.95 L663.9 1032 Q661.55 1032.05 659.65 1033.25 L659.55 1033.35 658 1034.55 Q655.3 1037.25 655.3 1041 655.3 1044.8 658 1047.4 L659 1048.35 Q661.3 1050.15 664.4 1050.15 668.2 1050.15 670.9 1047.4 673.55 1044.8 673.55 1041 M606.45 1041 Q606.45 1044.8 609.15 1047.4 611.85 1050.15 615.6 1050.15 618.6 1050.15 621 1048.35 L621.85 1047.65 622.1 1047.4 Q624.75 1044.8 624.75 1041 624.75 1037.25 622.1 1034.55 L621.85 1034.35 620.45 1033.3 620.4 1033.25 Q618.45 1032.05 616.1 1032 L615.6 1031.95 Q611.85 1031.95 609.15 1034.55 607.85 1035.85 607.2 1037.4 606.45 1039.05 606.45 1041 M625.85 1028 Q629.8 1032.65 629.8 1039 629.75 1045.95 625.1 1050.75 L624.85 1051.05 624.5 1051.4 624.25 1051.6 620.5 1054.25 621.8 1061.3 620.5 1062.55 Q619.85 1063.35 619.75 1064.45 L619.75 1064.85 619.75 1065.2 Q619.85 1065.9 620.2 1066.5 620.75 1067.35 621.55 1067.5 622.4 1067.65 623.05 1066.85 L623.15 1066.75 625.15 1072.95 Q626.45 1076.45 627.85 1079.2 626.65 1080 625.95 1080.95 L626 1080.85 Q625.05 1081.85 624.95 1083.35 L624.95 1083.45 624.95 1083.7 624.95 1083.9 624.95 1084.15 625.55 1085.8 625.6 1085.85 Q626.45 1087.2 627.7 1087.35 L627.75 1087.4 Q629.3 1087.75 630.6 1086.35 L630.7 1086.2 631.35 1085.65 631.7 1085.5 631.85 1085.45 Q635.6 1089.75 640 1089.75 644.4 1089.75 648.2 1085.4 L648.35 1085.45 648.75 1085.65 649.4 1086.25 649.45 1086.3 Q650.6 1087.75 652.25 1087.4 L652.3 1087.35 Q653.55 1087.2 654.45 1085.85 L654.45 1085.8 655.05 1084.25 655.05 1084.15 655.1 1083.7 655.05 1083.2 Q654.9 1081.85 654.15 1080.95 L654.1 1080.9 652.2 1079.2 654.85 1072.95 656.9 1066.65 657.05 1066.85 Q657.65 1067.65 658.5 1067.5 659.3 1067.35 659.85 1066.5 L660.3 1065.2 660.35 1064.9 660.3 1064.45 Q660.2 1063.35 659.6 1062.55 L658.25 1061.25 659.5 1054.25 Q657.3 1053.05 655.4 1051.15 L655.25 1051 Q650.25 1046.1 650.25 1039 650.25 1032.65 654.3 1028 L695.35 1028 Q703.75 1028 704 1036.2 L704 1098.15 702.75 1098.55 697.5 1100.7 Q692.35 1102.65 686.75 1104.2 679.15 1106.25 670.75 1107.55 L664.3 1108.4 Q663.8 1103.95 660.45 1100.6 656.55 1096.7 651.05 1096.7 645.5 1096.7 641.55 1100.6 L640 1102.45 638.4 1100.6 Q634.5 1096.7 629 1096.7 623.45 1096.7 619.5 1100.6 616.25 1103.95 615.75 1108.4 L609.25 1107.55 Q600.85 1106.2 593.3 1104.2 587.65 1102.65 582.5 1100.7 L577.5 1098.65 577.3 1098.55 577.3 1098.6 576 1098.15 576 1036.2 Q576.25 1028 584.65 1028 L625.85 1028"/>
+ <path stroke="none" fill="#30D776" d="M625.85 1028 L654.3 1028 Q650.25 1032.65 650.25 1039 650.25 1046.1 655.25 1051 L655.4 1051.15 Q657.3 1053.05 659.5 1054.25 L658.25 1061.25 655.1 1059.1 Q648.8 1055.7 640.05 1055.7 631.2 1055.7 625.05 1059.1 623.15 1060.15 621.8 1061.3 L620.5 1054.25 624.25 1051.6 624.5 1051.4 624.85 1051.05 625.1 1050.75 Q629.75 1045.95 629.8 1039 629.8 1032.65 625.85 1028 M623.15 1066.75 Q623.85 1065.9 624.95 1065.2 L626.5 1064.5 626.5 1064.55 Q632.1 1062.35 640.05 1062.35 648 1062.35 653.65 1064.55 L653.6 1064.5 655.15 1065.2 Q656.15 1065.85 656.9 1066.65 L654.85 1072.95 652.2 1079.2 650.65 1078.25 Q646.2 1075.8 640.05 1075.8 633.8 1075.8 629.45 1078.25 L629.4 1078.25 627.85 1079.2 Q626.45 1076.45 625.15 1072.95 L623.15 1066.75 M631.85 1085.45 L632.05 1085.4 Q635.35 1084.1 640.05 1084.1 644.75 1084.1 648.1 1085.4 L648.2 1085.4 Q644.4 1089.75 640 1089.75 635.6 1089.75 631.85 1085.45"/>
+ <path stroke="none" fill="#32E07C" d="M654.3 1028 L625.85 1028 584.65 1028 Q576.25 1028 576 1036.2 L576 1032.7 Q576 1024 584.65 1024 L695.35 1024 Q704 1024 704 1032.7 L704 1036.2 Q703.75 1028 695.35 1028 L654.3 1028"/>
+ <path stroke="none" fill="#28B463" d="M621.8 1061.3 Q623.15 1060.15 625.05 1059.1 631.2 1055.7 640.05 1055.7 648.8 1055.7 655.1 1059.1 L658.25 1061.25 659.6 1062.55 Q660.2 1063.35 660.3 1064.45 L660.35 1064.9 660.3 1065.2 659.85 1066.5 Q659.3 1067.35 658.5 1067.5 657.65 1067.65 657.05 1066.85 L656.9 1066.65 Q656.15 1065.85 655.15 1065.2 L653.6 1064.5 653.65 1064.55 Q648 1062.35 640.05 1062.35 632.1 1062.35 626.5 1064.55 L626.5 1064.5 624.95 1065.2 Q623.85 1065.9 623.15 1066.75 L623.05 1066.85 Q622.4 1067.65 621.55 1067.5 620.75 1067.35 620.2 1066.5 619.85 1065.9 619.75 1065.2 L619.75 1064.85 619.75 1064.45 Q619.85 1063.35 620.5 1062.55 L621.8 1061.3 M631.85 1085.45 L631.7 1085.5 631.35 1085.65 630.7 1086.2 630.6 1086.35 Q629.3 1087.75 627.75 1087.4 L627.7 1087.35 Q626.45 1087.2 625.6 1085.85 L625.55 1085.8 624.95 1084.15 624.95 1083.9 624.95 1083.7 624.95 1083.45 624.95 1083.35 Q625.05 1081.85 626 1080.85 L625.95 1080.95 Q626.65 1080 627.85 1079.2 L629.4 1078.25 629.45 1078.25 Q633.8 1075.8 640.05 1075.8 646.2 1075.8 650.65 1078.25 L652.2 1079.2 654.1 1080.9 654.15 1080.95 Q654.9 1081.85 655.05 1083.2 L655.1 1083.7 655.05 1084.15 655.05 1084.25 654.45 1085.8 654.45 1085.85 Q653.55 1087.2 652.3 1087.35 L652.25 1087.4 Q650.6 1087.75 649.45 1086.3 L649.4 1086.25 648.75 1085.65 648.35 1085.45 648.2 1085.4 648.1 1085.4 Q644.75 1084.1 640.05 1084.1 635.35 1084.1 632.05 1085.4 L631.85 1085.45"/>
+ <path stroke="none" fill="#B19A89" d="M626.8 1112.15 L626.65 1112.05 Q624.9 1110.3 624.1 1108.4 L623.75 1107.3 623.65 1106.85 Q623.25 1105.25 623.8 1104.2 L624.35 1103.5 625.1 1102.95 Q626.25 1102.4 628.1 1102.95 L628.25 1102.95 Q630.65 1103.7 632.85 1105.85 L632.95 1106 633.85 1107.3 634.15 1109 Q634.15 1110.8 632.85 1112.05 631.6 1113.35 629.8 1113.35 628.05 1113.35 626.8 1112.15 M655.65 1103.5 L656.15 1104.2 Q656.7 1105.25 656.35 1106.85 L656.25 1107.3 655.85 1108.4 Q655.05 1110.3 653.3 1112.05 L653.2 1112.15 Q651.9 1113.35 650.2 1113.35 648.35 1113.35 647.1 1112.05 645.8 1110.8 645.8 1109 645.8 1108.05 646.15 1107.3 646.45 1106.55 647 1106 L647.15 1105.85 Q649.25 1103.75 651.65 1103 L651.85 1102.95 Q653.75 1102.4 654.9 1102.95 L655.65 1103.5"/>
+ <path stroke="none" fill="#EBCEB7" d="M655.65 1103.5 L654.9 1102.95 Q653.75 1102.4 651.85 1102.95 L651.65 1103 Q649.25 1103.75 647.15 1105.85 L647 1106 Q646.45 1106.55 646.15 1107.3 645.8 1108.05 645.8 1109 645.8 1110.8 647.1 1112.05 648.35 1113.35 650.2 1113.35 651.9 1113.35 653.2 1112.15 L653.3 1112.05 Q655.05 1110.3 655.85 1108.4 L656.25 1107.3 656.35 1106.85 Q656.7 1105.25 656.15 1104.2 L655.65 1103.5 M576 1098.15 L577.3 1098.6 577.3 1098.55 577.5 1098.65 582.5 1100.7 Q587.65 1102.65 593.3 1104.2 L594.2 1108.35 Q596.2 1115.6 600.25 1121.75 L600.8 1122.3 601.5 1122.5 602.15 1122.25 Q606.35 1119.05 608.45 1110.95 L609.25 1107.55 615.75 1108.4 Q616.25 1103.95 619.5 1100.6 623.45 1096.7 629 1096.7 634.5 1096.7 638.4 1100.6 L640 1102.45 641.55 1100.6 Q645.5 1096.7 651.05 1096.7 656.55 1096.7 660.45 1100.6 663.8 1103.95 664.3 1108.4 L670.75 1107.55 671.55 1110.95 Q673.65 1119.05 677.85 1122.25 L678.5 1122.5 679.2 1122.3 679.75 1121.75 Q683.8 1115.6 685.8 1108.35 L686.75 1104.2 Q692.35 1102.65 697.5 1100.7 L702.75 1098.55 704 1098.15 704 1143.85 Q703.75 1152 695.35 1152 L584.65 1152 Q576.25 1152 576 1143.85 L576 1098.15 M626.8 1112.15 Q628.05 1113.35 629.8 1113.35 631.6 1113.35 632.85 1112.05 634.15 1110.8 634.15 1109 L633.85 1107.3 632.95 1106 632.85 1105.85 Q630.65 1103.7 628.25 1102.95 L628.1 1102.95 Q626.25 1102.4 625.1 1102.95 L624.35 1103.5 623.8 1104.2 Q623.25 1105.25 623.65 1106.85 L623.75 1107.3 624.1 1108.4 Q624.9 1110.3 626.65 1112.05 L626.8 1112.15"/>
+ <path stroke="none" fill="#F0EDE7" d="M593.3 1104.2 Q600.85 1106.2 609.25 1107.55 L608.45 1110.95 594.2 1108.35 593.3 1104.2 M670.75 1107.55 Q679.15 1106.25 686.75 1104.2 L685.8 1108.35 671.55 1110.95 670.75 1107.55"/>
+ <path stroke="none" fill="#FFFCF5" d="M608.45 1110.95 Q606.35 1119.05 602.15 1122.25 L601.5 1122.5 600.8 1122.3 600.25 1121.75 Q596.2 1115.6 594.2 1108.35 L608.45 1110.95 M671.55 1110.95 L685.8 1108.35 Q683.8 1115.6 679.75 1121.75 L679.2 1122.3 678.5 1122.5 677.85 1122.25 Q673.65 1119.05 671.55 1110.95"/>
+ <path stroke="none" fill="#29454F" d="M709.75 174.55 Q705.45 178.85 697.8 177.3 690.35 175.75 683.95 169.55 L683.85 169.45 Q680.75 166.3 681.6 161.1 682.45 155.85 686.75 151.55 691 147.3 696.25 146.45 701.5 145.55 704.6 148.7 L704.7 148.8 Q710.9 155.2 712.45 162.65 714 170.3 709.75 174.55 M569.95 174.55 Q565.7 170.3 567.25 162.65 568.8 155.2 575 148.8 L575.1 148.7 Q578.2 145.55 583.45 146.45 588.7 147.3 592.95 151.55 597.25 155.85 598.1 161.1 598.95 166.3 595.85 169.45 L595.75 169.55 Q589.35 175.75 581.9 177.3 574.25 178.85 569.95 174.55"/>
+ <path stroke="none" fill="#447180" d="M576 76.2 L576 72.7 Q576 64 584.65 64 L695.35 64 Q704 64 704 72.7 L704 76.2 Q703.75 68 695.35 68 L584.65 68 Q576.25 68 576 76.2"/>
+ <path stroke="none" fill="#365A66" d="M576 76.2 Q576.25 68 584.65 68 L695.35 68 Q703.75 68 704 76.2 L704 183.85 Q703.75 192 695.35 192 L678.9 192 677.05 189.15 Q672.65 182.8 667.75 178.3 655.4 166.9 639.8 166.9 624.15 166.9 611.85 178.3 606.95 182.85 602.55 189.15 L600.65 192 584.65 192 Q576.25 192 576 183.85 L576 76.2 M686.75 111.25 Q684.9 104.7 678.95 101.25 672.75 97.65 665.9 99.5 659.1 101.3 655.5 107.55 652.05 113.45 653.65 120.15 L653.8 120.7 Q657.05 132.8 664.25 140 671.4 147.2 678.25 145.4 685.1 143.55 687.65 133.7 690.15 123.9 686.9 111.8 L686.75 111.25 M655.55 137.9 Q654.8 133.05 651.15 129.35 650.25 128.45 649.35 127.8 645.3 124.75 640 124.75 634.7 124.75 630.65 127.8 629.7 128.45 628.8 129.35 625.15 133.05 624.4 137.9 L624.2 140.5 624.25 141.55 Q624.55 145.05 628.8 147.55 633.45 150.25 640 150.25 646.55 150.25 651.15 147.55 655.4 145.05 655.7 141.55 L655.75 140.5 655.55 137.9 M626.4 120.2 Q628.05 113.5 624.55 107.55 621.05 101.35 614.15 99.55 607.3 97.65 601.1 101.25 595.15 104.7 593.25 111.25 L593.05 111.8 Q589.85 123.9 592.45 133.75 595.05 143.55 601.85 145.45 608.75 147.25 615.9 140 623 132.85 626.2 120.75 L626.4 120.2"/>
+ <path stroke="none" fill="#D5EEF7" d="M626.4 120.2 L626.2 120.75 Q623 132.85 615.9 140 608.75 147.25 601.85 145.45 595.05 143.55 592.45 133.75 589.85 123.9 593.05 111.8 L593.25 111.25 Q595.15 104.7 601.1 101.25 607.3 97.65 614.15 99.55 621.05 101.35 624.55 107.55 628.05 113.5 626.4 120.2 M686.75 111.25 L686.9 111.8 Q690.15 123.9 687.65 133.7 685.1 143.55 678.25 145.4 671.4 147.2 664.25 140 657.05 132.8 653.8 120.7 L653.65 120.15 Q652.05 113.45 655.5 107.55 659.1 101.3 665.9 99.5 672.75 97.65 678.95 101.25 684.9 104.7 686.75 111.25 M679.05 123.1 Q679.05 118.7 675.95 115.65 672.85 112.6 668.5 112.6 664.25 112.6 661.05 115.65 658.05 118.7 658.05 123.1 658.05 127.45 661.05 130.45 664.25 133.6 668.5 133.6 672.85 133.6 675.95 130.45 679.05 127.45 679.05 123.1 M600.8 123.1 Q600.8 127.45 603.85 130.45 606.95 133.6 611.3 133.6 615.6 133.6 618.75 130.45 621.8 127.45 621.8 123.1 621.8 118.7 618.75 115.65 615.6 112.6 611.3 112.6 606.95 112.6 603.85 115.65 600.8 118.7 600.8 123.1"/>
+ <path stroke="none" fill="#FFFFFF" d="M600.8 123.1 Q600.8 118.7 603.85 115.65 606.95 112.6 611.3 112.6 615.6 112.6 618.75 115.65 621.8 118.7 621.8 123.1 621.8 127.45 618.75 130.45 615.6 133.6 611.3 133.6 606.95 133.6 603.85 130.45 600.8 127.45 600.8 123.1 M679.05 123.1 Q679.05 127.45 675.95 130.45 672.85 133.6 668.5 133.6 664.25 133.6 661.05 130.45 658.05 127.45 658.05 123.1 658.05 118.7 661.05 115.65 664.25 112.6 668.5 112.6 672.85 112.6 675.95 115.65 679.05 118.7 679.05 123.1 M674.3 125.05 Q674.3 122.25 672.4 120.4 670.45 118.45 667.7 118.45 665 118.45 663 120.4 661.1 122.25 661.1 125.05 L661.1 125.7 Q661.3 127.95 663 129.6 665 131.5 667.7 131.5 670.45 131.5 672.4 129.6 674.05 127.95 674.25 125.7 L674.3 125.05 M605.55 125.05 L605.6 125.7 Q605.75 127.95 607.4 129.6 609.35 131.5 612.15 131.5 614.8 131.5 616.8 129.6 618.55 127.95 618.7 125.7 L618.75 125.05 Q618.75 122.25 616.8 120.4 614.8 118.45 612.15 118.45 609.35 118.45 607.4 120.4 605.55 122.25 605.55 125.05"/>
+ <path stroke="none" fill="#5B5B5B" d="M605.55 125.05 Q605.55 122.25 607.4 120.4 609.35 118.45 612.15 118.45 614.8 118.45 616.8 120.4 618.75 122.25 618.75 125.05 L618.7 125.7 Q618.55 127.95 616.8 129.6 614.8 131.5 612.15 131.5 609.35 131.5 607.4 129.6 605.75 127.95 605.6 125.7 L605.55 125.05 M674.3 125.05 L674.25 125.7 Q674.05 127.95 672.4 129.6 670.45 131.5 667.7 131.5 665 131.5 663 129.6 661.3 127.95 661.1 125.7 L661.1 125.05 Q661.1 122.25 663 120.4 665 118.45 667.7 118.45 670.45 118.45 672.4 120.4 674.3 122.25 674.3 125.05"/>
+ <path stroke="none" fill="#FF9900" d="M624.4 137.9 Q625.15 133.05 628.8 129.35 629.7 128.45 630.65 127.8 634.7 124.75 640 124.75 645.3 124.75 649.35 127.8 650.25 128.45 651.15 129.35 654.8 133.05 655.55 137.9 654.85 139.9 651.15 141.4 646.55 143.3 640 143.3 633.45 143.3 628.8 141.4 625.1 139.9 624.4 137.9"/>
+ <path stroke="none" fill="#E08600" d="M624.4 137.9 Q625.1 139.9 628.8 141.4 633.45 143.3 640 143.3 646.55 143.3 651.15 141.4 654.85 139.9 655.55 137.9 L655.75 140.5 655.7 141.55 Q655.4 145.05 651.15 147.55 646.55 150.25 640 150.25 633.45 150.25 628.8 147.55 624.55 145.05 624.25 141.55 L624.2 140.5 624.4 137.9"/>
+ <path stroke="none" fill="#F2F9FB" d="M678.9 192 L600.65 192 602.55 189.15 Q606.95 182.85 611.85 178.3 624.15 166.9 639.8 166.9 655.4 166.9 667.75 178.3 672.65 182.8 677.05 189.15 L678.9 192"/>
+ <path stroke="none" fill="#31DE7A" d="M192 76.2 Q191.75 68 183.35 68 L168.4 68 87.65 68 72.65 68 Q64.25 68 64 76.2 L64 72.7 Q64 64 72.65 64 L183.35 64 Q192 64 192 72.7 L192 76.2"/>
+ <path stroke="none" fill="#2ECC71" d="M192 76.2 L192 183.85 Q191.75 192 183.35 192 L141.25 192 141.25 187.5 145.25 186.6 148.4 185.65 157.4 181.85 157.9 181.6 160.15 180.3 Q167.15 176.15 173.3 170 178.95 164.35 182.9 158 L184.85 154.6 182.85 156.1 182.4 156.45 181.55 157.05 162.1 167.2 160.7 167.7 Q155.25 169.55 149.5 170.75 L141.25 172.05 136.7 172.5 136.55 172.5 128 173 119.75 172.55 114.75 172.05 112.7 171.8 106.6 170.75 Q100.75 169.55 95.35 167.7 84.9 164.1 75.9 158 L73.2 156.1 71.15 154.55 73.15 158 Q77.1 164.35 82.75 170 88.9 176.15 95.85 180.25 L98 181.5 98.7 181.85 100.4 182.7 109.45 186.2 110.75 186.55 111.9 186.85 113.55 187.25 114.75 187.5 114.75 192 72.65 192 Q64.25 192 64 183.85 L64 76.2 Q64.25 68 72.65 68 L87.65 68 Q89.8 88.65 99 104.3 111.05 124.8 128 124.8 145 124.8 157 104.3 166.2 88.65 168.4 68 L183.35 68 Q191.75 68 192 76.2 M179.65 140.55 Q179.65 134.8 175.6 130.8 171.55 126.75 165.85 126.75 160.25 126.75 156.1 130.8 152.15 134.8 152.15 140.55 152.15 146.25 156.1 150.15 160.25 154.25 165.85 154.25 171.55 154.25 175.6 150.15 179.65 146.25 179.65 140.55 M77.15 140.55 Q77.15 146.25 81.2 150.15 85.25 154.25 90.95 154.25 96.55 154.25 100.7 150.15 104.65 146.25 104.65 140.55 104.65 134.8 100.7 130.8 96.55 126.75 90.95 126.75 85.25 126.75 81.2 130.8 77.15 134.8 77.15 140.55 M120.55 150.15 Q118.95 148.55 116.7 148.55 114.55 148.55 112.95 150.05 L112.8 150.2 Q110.05 152.95 109.15 156.1 108.85 157.15 108.85 158 108.85 159.75 109.9 160.8 110.55 161.45 111.5 161.7 L114.6 161.5 Q116.95 160.85 119.15 159.1 L120.4 158 120.5 157.9 120.65 157.75 Q122.15 156.2 122.15 154 122.15 151.75 120.55 150.15 M146.1 160.8 Q147.15 159.75 147.15 158 L146.85 156.1 Q146 152.95 143.2 150.2 L143.05 150.05 Q141.5 148.55 139.3 148.55 137.05 148.55 135.45 150.15 133.85 151.75 133.85 154 133.85 156.2 135.35 157.75 L135.5 157.9 135.6 158 136.9 159.1 Q139.05 160.85 141.4 161.5 L144.55 161.7 Q145.45 161.45 146.1 160.8"/>
+ <path stroke="none" fill="#FFFFFF" d="M166.85 140.45 Q166.85 136.8 165.9 134.35 164.9 131.85 163.5 131.8 L163.4 131.8 Q162.05 131.85 161.05 134.35 160.05 136.8 160.05 140.45 L160.05 141.3 Q160.15 144.25 161.05 146.4 162.05 148.85 163.4 148.9 L163.5 148.9 Q164.9 148.85 165.9 146.4 166.75 144.25 166.85 141.3 L166.85 140.45 M179.65 140.55 Q179.65 146.25 175.6 150.15 171.55 154.25 165.85 154.25 160.25 154.25 156.1 150.15 152.15 146.25 152.15 140.55 152.15 134.8 156.1 130.8 160.25 126.75 165.85 126.75 171.55 126.75 175.6 130.8 179.65 134.8 179.65 140.55 M95.35 167.7 Q100.75 169.55 106.6 170.75 L102.85 173.85 Q100.5 175.8 98.15 172.1 L95.35 167.7 M149.5 170.75 Q155.25 169.55 160.7 167.7 L157.85 172.1 Q155.5 175.8 153.15 173.85 L149.5 170.75 M89.95 140.45 L89.95 141.3 Q90.05 144.25 90.9 146.4 91.9 148.85 93.3 148.9 L93.4 148.9 Q94.7 148.85 95.75 146.4 96.6 144.25 96.7 141.3 L96.75 140.45 Q96.75 136.8 95.75 134.35 94.7 131.85 93.4 131.8 L93.3 131.8 Q91.9 131.85 90.9 134.35 89.95 136.8 89.95 140.45 M77.15 140.55 Q77.15 134.8 81.2 130.8 85.25 126.75 90.95 126.75 96.55 126.75 100.7 130.8 104.65 134.8 104.65 140.55 104.65 146.25 100.7 150.15 96.55 154.25 90.95 154.25 85.25 154.25 81.2 150.15 77.15 146.25 77.15 140.55"/>
+ <path stroke="none" fill="#5B5B5B" d="M166.85 140.45 L166.85 141.3 Q166.75 144.25 165.9 146.4 164.9 148.85 163.5 148.9 L163.4 148.9 Q162.05 148.85 161.05 146.4 160.15 144.25 160.05 141.3 L160.05 140.45 Q160.05 136.8 161.05 134.35 162.05 131.85 163.4 131.8 L163.5 131.8 Q164.9 131.85 165.9 134.35 166.85 136.8 166.85 140.45 M89.95 140.45 Q89.95 136.8 90.9 134.35 91.9 131.85 93.3 131.8 L93.4 131.8 Q94.7 131.85 95.75 134.35 96.75 136.8 96.75 140.45 L96.7 141.3 Q96.6 144.25 95.75 146.4 94.7 148.85 93.4 148.9 L93.3 148.9 Q91.9 148.85 90.9 146.4 90.05 144.25 89.95 141.3 L89.95 140.45"/>
+ <path stroke="none" fill="#2ABD68" d="M160.7 167.7 L162.1 167.2 181.55 157.05 182.4 156.45 182.85 156.1 184.85 154.6 182.9 158 Q178.95 164.35 173.3 170 167.15 176.15 160.15 180.3 L157.9 181.6 157.4 181.85 148.4 185.65 145.25 186.6 141.25 187.5 141.25 172.05 149.5 170.75 153.15 173.85 Q155.5 175.8 157.85 172.1 L160.7 167.7 M114.75 187.5 L113.55 187.25 111.9 186.85 110.75 186.55 109.45 186.2 100.4 182.7 98.7 181.85 98 181.5 95.85 180.25 Q88.9 176.15 82.75 170 77.1 164.35 73.15 158 L71.15 154.55 73.2 156.1 75.9 158 Q84.9 164.1 95.35 167.7 L98.15 172.1 Q100.5 175.8 102.85 173.85 L106.6 170.75 112.7 171.8 114.75 172.05 114.75 187.5"/>
+ <path stroke="none" fill="#28BD68" d="M87.65 68 L168.4 68 Q166.2 88.65 157 104.3 145 124.8 128 124.8 111.05 124.8 99 104.3 89.8 88.65 87.65 68 M152 93.5 L152.05 93.45 Q152.35 92.45 152.05 91.55 L152.05 91.5 Q151.6 90.35 150.6 89.95 L150.65 90 Q129.05 78.95 105.45 89.95 L105.5 89.95 Q104.35 90.4 104 91.55 103.65 92.45 104 93.45 104.35 94.45 105.45 95 L105.45 95.05 Q129.05 105.95 150.65 95 151.6 94.5 152 93.5 M113.45 112.55 L113.4 112.55 Q128.65 119.6 142.65 112.55 L142.7 112.5 Q143.55 112.1 143.85 111.2 L143.8 111.3 Q144.1 110.45 143.85 109.75 143.55 108.8 142.7 108.4 L142.65 108.4 Q128.7 101.25 113.5 108.35 112.45 108.75 112.2 109.75 111.9 110.45 112.25 111.3 112.5 112.1 113.45 112.55"/>
+ <path stroke="none" fill="#31DB79" d="M113.45 112.55 Q112.5 112.1 112.25 111.3 111.9 110.45 112.2 109.75 112.45 108.75 113.5 108.35 128.7 101.25 142.65 108.4 L142.7 108.4 Q143.55 108.8 143.85 109.75 144.1 110.45 143.8 111.3 L143.85 111.2 Q143.55 112.1 142.7 112.5 L142.65 112.55 Q128.65 119.6 113.4 112.55 L113.45 112.55 M152 93.5 Q151.6 94.5 150.65 95 129.05 105.95 105.45 95.05 L105.45 95 Q104.35 94.45 104 93.45 103.65 92.45 104 91.55 104.35 90.4 105.5 89.95 L105.45 89.95 Q129.05 78.95 150.65 90 L150.6 89.95 Q151.6 90.35 152.05 91.5 L152.05 91.55 Q152.35 92.45 152.05 93.45 L152 93.5"/>
+ <path stroke="none" fill="#24A35A" d="M120.55 150.15 Q122.15 151.75 122.15 154 122.15 156.2 120.65 157.75 L120.5 157.9 120.4 158 119.15 159.1 Q116.95 160.85 114.6 161.5 L111.5 161.7 Q110.55 161.45 109.9 160.8 108.85 159.75 108.85 158 108.85 157.15 109.15 156.1 110.05 152.95 112.8 150.2 L112.95 150.05 Q114.55 148.55 116.7 148.55 118.95 148.55 120.55 150.15 M146.1 160.8 Q145.45 161.45 144.55 161.7 L141.4 161.5 Q139.05 160.85 136.9 159.1 L135.6 158 135.5 157.9 135.35 157.75 Q133.85 156.2 133.85 154 133.85 151.75 135.45 150.15 137.05 148.55 139.3 148.55 141.5 148.55 143.05 150.05 L143.2 150.2 Q146 152.95 146.85 156.1 L147.15 158 Q147.15 159.75 146.1 160.8"/>
+ <path stroke="none" fill="#E74C3C" d="M114.75 172.05 L119.75 172.55 128 173 128 193.5 120.25 201.3 Q119.3 202.2 117.95 202.2 116.65 202.2 115.7 201.3 114.75 200.3 114.75 199 L114.75 192 114.75 187.5 114.75 172.05"/>
+ <path stroke="none" fill="#D24436" d="M141.25 187.5 L141.25 192 141.25 199 Q141.25 200.3 140.3 201.3 139.35 202.2 138.05 202.2 136.7 202.2 135.8 201.3 L128 193.5 128 173 136.55 172.5 136.7 172.5 141.25 172.05 141.25 187.5"/>
+ <path stroke="none" fill="#414040" d="M412.8 834.65 L411.55 834.05 Q407.7 832.2 403.65 830.9 L403.7 830.45 403.8 829.45 403.8 828.2 404 827.95 404.45 827.25 Q408.25 822.15 414.65 819.9 420.9 817.65 426.1 819.55 430.8 821.35 432.05 825.5 L432.65 828.2 Q435 839.95 433.6 849.9 L433.45 850.95 433.4 851.25 432.25 849.9 429.2 846.7 427.6 845.15 426.8 840.2 426.35 838.3 Q425.5 835.25 422.15 833.95 L413.85 834.2 412.8 834.65 M355.15 834.65 L354.1 834.25 345.85 834 Q342.45 835.3 341.55 838.35 L341.15 840.2 340.4 845.1 Q339.55 845.85 338.7 846.7 L334.55 851.25 334.5 851 Q332.85 840.6 335.3 828.25 L335.9 825.5 Q337.15 821.35 341.85 819.6 347.05 817.7 353.35 819.95 359.7 822.15 363.5 827.3 L364 828.05 364.1 828.2 364.1 828.75 364.2 830.45 364.3 830.9 Q360.2 832.2 356.35 834.05 L355.15 834.65"/>
+ <path stroke="none" fill="#2E2D2D" d="M355.15 834.65 Q348.4 838.05 342.4 843.25 L340.4 845.1 341.15 840.2 341.55 838.35 Q342.45 835.3 345.85 834 L354.1 834.25 355.15 834.65 M412.8 834.65 L413.85 834.2 422.15 833.95 Q425.5 835.25 426.35 838.3 L426.8 840.2 427.6 845.15 425.5 843.25 Q419.5 838.05 412.8 834.65"/>
+ <path stroke="none" fill="#545353" d="M433.45 850.95 L433.6 849.9 Q435 839.95 432.65 828.2 L432.05 825.5 Q430.8 821.35 426.1 819.55 420.9 817.65 414.65 819.9 408.25 822.15 404.45 827.25 L404 827.95 Q404.4 824.5 405.25 823.35 409.05 818.3 415.4 816.05 421.7 813.8 426.9 815.7 431.55 817.45 432.85 821.65 L433.4 824.3 Q436.25 838.35 433.75 849.8 L433.75 849.9 433.45 850.95 M364.3 830.9 L364.2 830.45 364.1 828.75 364.3 830.9 M364 828.05 L363.5 827.3 Q359.7 822.15 353.35 819.95 347.05 817.7 341.85 819.6 337.15 821.35 335.9 825.5 L335.3 828.25 Q332.85 840.6 334.5 851 L334.2 849.8 Q331.75 838.35 334.55 824.35 L335.1 821.65 Q336.4 817.45 341.05 815.75 346.3 813.85 352.55 816.1 358.9 818.3 362.7 823.4 363.45 824.5 364 828.05"/>
+ <path stroke="none" fill="#FFFFFF" d="M446.1 834.45 Q448 836.6 448 840.7 L448 844.2 Q447.8 837 441.25 836.15 L446.1 834.45 M320 844.2 L320 840.7 320 840.6 320 840.45 320 840.35 321.1 835.65 321.9 834.5 326.7 836.15 Q320.2 837 320 844.2 M357.1 832 L365.2 832 365.6 836 358.45 836 357.1 832 M402.7 832 L410.85 832 409.45 836 402.35 836 402.7 832 M427.7 878.75 Q427.7 875.15 425.2 872.6 422.7 870.1 419.05 870.1 415.5 870.1 412.9 872.6 410.4 875.15 410.4 878.75 410.4 882.35 412.9 884.8 415.5 887.35 419.05 887.35 422.7 887.35 425.2 884.8 427.7 882.35 427.7 878.75 M432.45 878.55 Q432.45 883.7 428.8 887.3 425.15 891 419.95 891 414.85 891 411.15 887.3 407.5 883.7 407.5 878.55 407.5 873.35 411.15 869.7 414.85 866.05 419.95 866.05 425.15 866.05 428.8 869.7 432.45 873.35 432.45 878.55 M335.45 878.55 Q335.45 873.35 339.1 869.7 342.75 866.05 347.95 866.05 353.05 866.05 356.75 869.7 360.4 873.35 360.4 878.55 360.4 883.7 356.75 887.3 353.05 891 347.95 891 342.75 891 339.1 887.3 335.45 883.7 335.45 878.55 M340.15 878.75 Q340.15 882.35 342.7 884.8 345.2 887.35 348.85 887.35 352.4 887.35 354.95 884.8 357.5 882.35 357.5 878.75 357.5 875.15 354.95 872.6 352.4 870.1 348.85 870.1 345.2 870.1 342.7 872.6 340.15 875.15 340.15 878.75"/>
+ <path stroke="none" fill="#4A4949" d="M321.9 834.5 Q324.05 832 328.65 832 L357.1 832 358.45 836 328.65 836 326.7 836.15 321.9 834.5 M365.2 832 L402.7 832 402.35 836 365.6 836 365.2 832 M410.85 832 L439.35 832 Q443.95 832 446.1 834.45 L441.25 836.15 439.35 836 409.45 836 410.85 832"/>
+ <path stroke="none" fill="#414040" d="M448 905.7 L448 951.85 Q447.9 955.3 446.35 957.3 440.65 917.7 426.5 906.2 L426.3 906 Q421.15 901.05 427.15 900.75 435.75 900.6 448 905.7 M321.6 957.2 Q320.1 955.2 320 951.85 L320 905.65 Q332.2 900.6 340.75 900.75 346.75 901.05 341.6 906 L341.4 906.2 Q327.25 917.65 321.6 957.2 M409.45 836 L439.35 836 441.25 836.15 Q431.45 839.6 427.65 842.3 421.75 846.4 418.75 848.8 415.75 851.15 414.45 851.9 408 855.45 407.5 848.85 L407.6 847 Q407.75 842.85 408.65 839.15 L409.45 836 M402.35 836 L401.3 846.7 400.95 848.7 Q400.35 851.1 399.15 852.9 L395.4 857.45 Q389.4 863.4 383.9 863.5 378.45 863.4 372.75 857.6 370.5 855.45 368.75 852.9 367.05 850.4 366.6 846.7 L365.6 836 402.35 836 M358.45 836 L359.25 839.15 Q360.15 842.85 360.3 847 L360.4 848.85 Q359.9 855.45 353.45 851.9 L349.15 848.8 Q346.15 846.4 340.25 842.3 336.45 839.65 326.7 836.15 L328.65 836 358.45 836 M365.45 898.05 L367.8 889.95 Q371.05 880.05 383.95 880.4 397.95 880.8 400.1 889.95 L402.5 898.1 Q394.2 894 383.95 894 373.7 894 365.45 898.05 M421.4 927.9 Q420.65 939.95 410.45 948.6 399.45 958 383.95 958 368.4 958 357.4 948.6 347.25 939.9 346.5 927.9 347.3 916 357.4 907.35 360.45 904.75 363.8 902.9 372.7 898 383.95 898 395.2 898 404.1 902.95 407.45 904.8 410.45 907.35 420.55 916 421.4 927.9 M402.45 908.15 L401.6 907.55 Q400.2 906.85 398 907.5 L397.75 907.6 Q394.9 908.45 392.4 910.95 L392.25 911.1 Q391.6 911.8 391.25 912.65 390.85 913.55 390.85 914.65 390.85 916.8 392.35 918.3 393.85 919.8 396 919.8 398.05 919.8 399.55 918.4 L399.7 918.25 Q401.75 916.2 402.7 913.95 L403.15 912.65 403.3 912.15 Q403.7 910.25 403.05 909 L402.45 908.15 M368.35 918.4 Q369.85 919.8 371.9 919.8 374.05 919.8 375.55 918.3 377.05 916.8 377.05 914.65 L377.05 914.6 377.05 914.5 377.05 914 376.7 912.65 376.1 911.65 375.65 911.1 375.5 910.95 372.25 908.45 370.1 907.55 370.05 907.55 369.9 907.5 369.8 907.45 368 907.2 367.1 907.3 Q366.65 907.35 366.3 907.55 L365.65 908 365.45 908.15 364.85 909 364.8 909.1 364.5 910.45 Q364.4 911.25 364.6 912.15 L364.75 912.6 364.75 912.65 365.2 913.95 Q366.15 916.2 368.2 918.25 L368.35 918.4"/>
+ <path stroke="none" fill="#E9E9E9" d="M448 844.2 L448 905.7 Q435.75 900.6 427.15 900.75 421.15 901.05 426.3 906 L426.5 906.2 Q440.65 917.7 446.35 957.3 L445.6 958.1 445.35 958.3 441.05 959.95 440.9 959.95 440.65 960 440.5 960 440.4 960 439.8 960 439.65 960 439.35 960 328.65 960 328.5 960 327.85 960 327.7 960 Q324.05 959.75 322.15 957.8 L321.6 957.2 Q327.25 917.65 341.4 906.2 L341.6 906 Q346.75 901.05 340.75 900.75 332.2 900.6 320 905.65 L320 844.2 Q320.2 837 326.7 836.15 336.45 839.65 340.25 842.3 346.15 846.4 349.15 848.8 L353.45 851.9 Q359.9 855.45 360.4 848.85 L360.3 847 Q360.15 842.85 359.25 839.15 L358.45 836 365.6 836 366.6 846.7 Q367.05 850.4 368.75 852.9 370.5 855.45 372.75 857.6 378.45 863.4 383.9 863.5 389.4 863.4 395.4 857.45 L399.15 852.9 Q400.35 851.1 400.95 848.7 L401.3 846.7 402.35 836 409.45 836 408.65 839.15 Q407.75 842.85 407.6 847 L407.5 848.85 Q408 855.45 414.45 851.9 415.75 851.15 418.75 848.8 421.75 846.4 427.65 842.3 431.45 839.6 441.25 836.15 447.8 837 448 844.2 M432.45 878.55 Q432.45 873.35 428.8 869.7 425.15 866.05 419.95 866.05 414.85 866.05 411.15 869.7 407.5 873.35 407.5 878.55 407.5 883.7 411.15 887.3 414.85 891 419.95 891 425.15 891 428.8 887.3 432.45 883.7 432.45 878.55 M335.45 878.55 Q335.45 883.7 339.1 887.3 342.75 891 347.95 891 353.05 891 356.75 887.3 360.4 883.7 360.4 878.55 360.4 873.35 356.75 869.7 353.05 866.05 347.95 866.05 342.75 866.05 339.1 869.7 335.45 873.35 335.45 878.55 M402.5 898.1 L400.1 889.95 Q397.95 880.8 383.95 880.4 371.05 880.05 367.8 889.95 L365.45 898.05 Q361.15 900.15 357.4 903.35 346.85 912.4 346.45 925 L346.45 926 346.5 927.9 Q347.25 939.9 357.4 948.6 368.4 958 383.95 958 399.45 958 410.45 948.6 420.65 939.95 421.4 927.9 L421.45 926 421.45 925 Q421 912.4 410.45 903.35 406.7 900.2 402.5 898.1"/>
+ <path stroke="none" fill="#5B5B5B" d="M427.7 878.75 Q427.7 882.35 425.2 884.8 422.7 887.35 419.05 887.35 415.5 887.35 412.9 884.8 410.4 882.35 410.4 878.75 410.4 875.15 412.9 872.6 415.5 870.1 419.05 870.1 422.7 870.1 425.2 872.6 427.7 875.15 427.7 878.75 M340.15 878.75 Q340.15 875.15 342.7 872.6 345.2 870.1 348.85 870.1 352.4 870.1 354.95 872.6 357.5 875.15 357.5 878.75 357.5 882.35 354.95 884.8 352.4 887.35 348.85 887.35 345.2 887.35 342.7 884.8 340.15 882.35 340.15 878.75"/>
+ <path stroke="none" fill="#2E2D2D" d="M402.45 908.15 L403.05 909 Q403.7 910.25 403.3 912.15 L403.15 912.65 402.7 913.95 Q401.75 916.2 399.7 918.25 L399.55 918.4 Q398.05 919.8 396 919.8 393.85 919.8 392.35 918.3 390.85 916.8 390.85 914.65 390.85 913.55 391.25 912.65 391.6 911.8 392.25 911.1 L392.4 910.95 Q394.9 908.45 397.75 907.6 L398 907.5 Q400.2 906.85 401.6 907.55 L402.45 908.15 M368.35 918.4 L368.2 918.25 Q366.15 916.2 365.2 913.95 L364.75 912.65 364.75 912.6 364.6 912.15 Q364.4 911.25 364.5 910.45 L364.8 909.1 364.85 909 365.45 908.15 365.65 908 366.3 907.55 Q366.65 907.35 367.1 907.3 L368 907.2 369.8 907.45 369.9 907.5 370.05 907.55 370.1 907.55 372.25 908.45 375.5 910.95 375.65 911.1 376.1 911.65 376.7 912.65 377.05 914 377.05 914.5 377.05 914.6 377.05 914.65 Q377.05 916.8 375.55 918.3 374.05 919.8 371.9 919.8 369.85 919.8 368.35 918.4"/>
+ <path stroke="none" fill="#545353" d="M402.5 898.1 Q406.7 900.2 410.45 903.35 421 912.4 421.45 925 L421.45 926 421.4 927.9 Q420.55 916 410.45 907.35 407.45 904.8 404.1 902.95 395.2 898 383.95 898 372.7 898 363.8 902.9 360.45 904.75 357.4 907.35 347.3 916 346.5 927.9 L346.45 926 346.45 925 Q346.85 912.4 357.4 903.35 361.15 900.15 365.45 898.05 373.7 894 383.95 894 394.2 894 402.5 898.1"/>
+ <path stroke="none" fill="#CBC3C3" d="M1145.2 265.4 Q1144.55 247.95 1131.05 225.3 1119.35 210.7 1111.9 212.75 1106.25 214.3 1105.75 224.85 1105.25 210.6 1111.9 208.75 1119.35 206.7 1131.05 221.3 1146.15 246.6 1145.2 265.4 M1158.8 265.4 Q1157.85 246.6 1172.95 221.3 1184.65 206.7 1192.1 208.75 1198.75 210.6 1198.25 224.85 1197.75 214.3 1192.1 212.75 1184.65 210.7 1172.95 225.3 1159.45 247.95 1158.8 265.4"/>
+ <path stroke="none" fill="#BDB6B6" d="M1144.05 270.45 Q1141.75 258.05 1132.75 242.9 1122.75 230.45 1116.4 232.2 1110.1 233.95 1111.35 248.85 1112.65 263.75 1112.65 273.9 L1112.65 278.1 Q1108.85 274.85 1107.45 269.8 L1107.45 261.7 1107.4 258.55 1107.45 257.7 Q1107.45 245.8 1105.95 228.3 L1105.75 224.85 Q1106.25 214.3 1111.9 212.75 1119.35 210.7 1131.05 225.3 1144.55 247.95 1145.2 265.4 L1145.1 266.55 Q1144.85 268.5 1144.05 270.45 M1198.25 224.85 L1198.05 228.3 Q1196.55 245.8 1196.55 257.7 L1196.6 258.55 1196.55 261.7 1196.55 269.8 Q1195.15 274.85 1191.35 278.1 L1191.35 273.9 Q1191.35 263.75 1192.65 248.85 1193.9 233.95 1187.6 232.2 1181.25 230.45 1171.25 242.9 1162.25 258.05 1159.95 270.45 1159.15 268.5 1158.9 266.55 L1158.8 265.4 Q1159.45 247.95 1172.95 225.3 1184.65 210.7 1192.1 212.75 1197.75 214.3 1198.25 224.85"/>
+ <path stroke="none" fill="#A8A1A1" d="M1112.65 278.1 L1112.65 273.9 Q1112.65 263.75 1111.35 248.85 1110.1 233.95 1116.4 232.2 1122.75 230.45 1132.75 242.9 1141.75 258.05 1144.05 270.45 L1142.5 273.4 Q1138.4 279.9 1130.7 282 1123 284.05 1116.15 280.45 L1112.65 278.1 M1191.35 278.1 Q1189.8 279.4 1187.85 280.45 1181 284.05 1173.3 282 1165.6 279.9 1161.5 273.4 1160.55 271.95 1159.95 270.45 1162.25 258.05 1171.25 242.9 1181.25 230.45 1187.6 232.2 1193.9 233.95 1192.65 248.85 1191.35 263.75 1191.35 273.9 L1191.35 278.1"/>
+ <path stroke="none" fill="#DBD9D9" d="M1088 268.2 L1088 264.7 Q1088 256 1096.65 256 L1207.35 256 Q1216 256 1216 264.7 L1216 268.2 Q1215.75 260 1207.35 260 L1182.3 260 Q1182.3 265.75 1173.35 269.8 1164.45 273.9 1151.8 273.9 1139.15 273.9 1130.2 269.8 1121.3 265.75 1121.3 260 L1096.65 260 Q1088.25 260 1088 268.2"/>
+ <path stroke="none" fill="#5B5B5B" d="M1117.35 300.25 Q1117.35 296.95 1119.6 294.8 1121.75 292.65 1124.95 292.65 1128.1 292.65 1130.35 294.8 1132.6 296.95 1132.6 300.25 1132.6 303.4 1130.35 305.55 1128.1 307.85 1124.95 307.85 1121.75 307.85 1119.6 305.55 1117.35 303.4 1117.35 300.25 M1186.75 300.25 Q1186.75 303.4 1184.5 305.55 1182.25 307.85 1179.1 307.85 1176 307.85 1173.65 305.55 1171.4 303.4 1171.4 300.25 1171.4 296.95 1173.65 294.8 1176 292.65 1179.1 292.65 1182.25 292.65 1184.5 294.8 1186.75 296.95 1186.75 300.25"/>
+ <path stroke="none" fill="#FFFFFF" d="M1186.75 300.25 Q1186.75 296.95 1184.5 294.8 1182.25 292.65 1179.1 292.65 1176 292.65 1173.65 294.8 1171.4 296.95 1171.4 300.25 1171.4 303.4 1173.65 305.55 1176 307.85 1179.1 307.85 1182.25 307.85 1184.5 305.55 1186.75 303.4 1186.75 300.25 M1111.4 300 Q1111.4 294.95 1115 291.4 1118.6 287.9 1123.6 287.9 1128.6 287.9 1132.3 291.4 1135.8 294.95 1135.8 300 1135.8 305.05 1132.3 308.5 1128.6 312.15 1123.6 312.15 1118.6 312.15 1115 308.5 1111.4 305.05 1111.4 300 M1117.35 300.25 Q1117.35 303.4 1119.6 305.55 1121.75 307.85 1124.95 307.85 1128.1 307.85 1130.35 305.55 1132.6 303.4 1132.6 300.25 1132.6 296.95 1130.35 294.8 1128.1 292.65 1124.95 292.65 1121.75 292.65 1119.6 294.8 1117.35 296.95 1117.35 300.25 M1122.55 322.1 Q1127 321.85 1131.2 322.05 L1131.8 321.85 1132.1 321.3 1132.1 320.7 1131.65 320.2 Q1128.55 318.5 1125.55 317.5 L1126.05 317 Q1131 312.05 1137.95 312.05 L1140.25 312.05 Q1140.85 315.7 1143.6 318.45 1147.3 322.15 1152.5 322.15 1157.65 322.15 1161.3 318.45 1164.1 315.7 1164.8 312.05 L1166.45 312.05 Q1173.15 312.2 1177.9 317 L1178.4 317.55 Q1175.45 318.5 1172.35 320.2 L1171.9 320.7 1171.9 321.3 Q1171.9 321.6 1172.2 321.85 1172.45 322.05 1172.8 322.05 1177 321.85 1181.5 322.1 1182.3 324 1182.65 326.1 1178.5 324.75 1173.2 325.05 L1172.7 325.25 1172.5 325.7 1172.5 326.2 1172.9 326.55 Q1178.25 328.05 1182.75 331.15 1182.05 336.65 1177.9 340.75 1173 345.7 1166 345.7 1162.1 345.7 1158.85 344.15 1156.3 342.95 1154.1 340.75 L1152 338.25 1149.85 340.75 Q1147.7 342.95 1145.15 344.15 1141.85 345.7 1137.95 345.7 1131 345.7 1126.05 340.75 1121.95 336.65 1121.3 331.15 1125.75 328.05 1131.1 326.55 L1131.5 326.2 1131.5 325.7 1131.3 325.25 1130.8 325.05 Q1125.5 324.75 1121.35 326.1 1121.7 324 1122.55 322.1 M1192.6 300 Q1192.6 305.05 1189.1 308.5 1185.5 312.15 1180.4 312.15 1175.4 312.15 1171.85 308.5 1168.25 305.05 1168.25 300 1168.25 294.95 1171.85 291.4 1175.4 287.9 1180.4 287.9 1185.5 287.9 1189.1 291.4 1192.6 294.95 1192.6 300"/>
+ <path stroke="none" fill="#D2D0D0" d="M1192.6 300 Q1192.6 294.95 1189.1 291.4 1185.5 287.9 1180.4 287.9 1175.4 287.9 1171.85 291.4 1168.25 294.95 1168.25 300 1168.25 305.05 1171.85 308.5 1175.4 312.15 1180.4 312.15 1185.5 312.15 1189.1 308.5 1192.6 305.05 1192.6 300 M1216 268.2 L1216 375.85 Q1215.75 384 1207.35 384 L1178.7 384 1175.05 374.95 1175.7 374.7 Q1173.2 369.8 1170.5 366.1 1162 351.95 1152 351.95 1142.05 351.95 1133.6 366.15 1130.9 369.85 1128.4 374.7 L1129.05 374.95 Q1127.2 379.1 1125.45 384 L1096.65 384 Q1088.25 384 1088 375.85 L1088 268.2 Q1088.25 260 1096.65 260 L1121.3 260 Q1121.3 265.75 1130.2 269.8 1139.15 273.9 1151.8 273.9 1164.45 273.9 1173.35 269.8 1182.3 265.75 1182.3 260 L1207.35 260 Q1215.75 260 1216 268.2 M1111.4 300 Q1111.4 305.05 1115 308.5 1118.6 312.15 1123.6 312.15 1128.6 312.15 1132.3 308.5 1135.8 305.05 1135.8 300 1135.8 294.95 1132.3 291.4 1128.6 287.9 1123.6 287.9 1118.6 287.9 1115 291.4 1111.4 294.95 1111.4 300 M1125.55 317.5 Q1119.15 315.35 1113.3 316.5 L1112.8 316.8 Q1112.6 316.95 1112.55 317.3 L1111.85 321.95 1111.85 322.55 1112.3 323 1112.8 323.1 1122.55 322.1 Q1121.7 324 1121.35 326.1 1118.6 327 1116.4 328.6 L1116.1 329 1116.1 329.45 1117.15 333.05 1117.35 333.45 1117.8 333.6 1118.25 333.5 Q1119.7 332.2 1121.3 331.15 1121.95 336.65 1126.05 340.75 1131 345.7 1137.95 345.7 1141.85 345.7 1145.15 344.15 1148.25 345.7 1152 345.7 1155.75 345.7 1158.85 344.15 1162.1 345.7 1166 345.7 1173 345.7 1177.9 340.75 1182.05 336.65 1182.75 331.15 L1185.75 333.5 1186.2 333.6 1186.65 333.45 1186.85 333.05 1187.9 329.45 1187.9 329 1187.6 328.6 Q1185.4 327 1182.65 326.1 1182.3 324 1181.5 322.1 L1191.2 323.1 1191.7 323 1192.15 322.55 1192.15 321.95 1191.45 317.3 1191.2 316.8 1190.7 316.5 Q1184.85 315.35 1178.4 317.55 L1177.9 317 Q1173.15 312.2 1166.45 312.05 L1164.8 312.05 1164.9 311.45 1165 309.7 1164.95 308.8 Q1164.65 306.55 1161.3 304.9 1157.65 303.15 1152.5 303.15 1147.3 303.15 1143.6 304.9 1140.25 306.55 1140 308.8 L1140 309.7 1140.1 311.3 1140.25 312.05 1137.95 312.05 Q1131 312.05 1126.05 317 L1125.55 317.5"/>
+ <path stroke="none" fill="#A8A1A1" d="M1125.55 317.5 Q1128.55 318.5 1131.65 320.2 L1132.1 320.7 1132.1 321.3 1131.8 321.85 1131.2 322.05 Q1127 321.85 1122.55 322.1 L1112.8 323.1 1112.3 323 1111.85 322.55 1111.85 321.95 1112.55 317.3 Q1112.6 316.95 1112.8 316.8 L1113.3 316.5 Q1119.15 315.35 1125.55 317.5 M1121.35 326.1 Q1125.5 324.75 1130.8 325.05 L1131.3 325.25 1131.5 325.7 1131.5 326.2 1131.1 326.55 Q1125.75 328.05 1121.3 331.15 1119.7 332.2 1118.25 333.5 L1117.8 333.6 1117.35 333.45 1117.15 333.05 1116.1 329.45 1116.1 329 1116.4 328.6 Q1118.6 327 1121.35 326.1 M1145.15 344.15 Q1147.7 342.95 1149.85 340.75 L1152 338.25 1154.1 340.75 Q1156.3 342.95 1158.85 344.15 1155.75 345.7 1152 345.7 1148.25 345.7 1145.15 344.15 M1182.75 331.15 Q1178.25 328.05 1172.9 326.55 L1172.5 326.2 1172.5 325.7 1172.7 325.25 1173.2 325.05 Q1178.5 324.75 1182.65 326.1 1185.4 327 1187.6 328.6 L1187.9 329 1187.9 329.45 1186.85 333.05 1186.65 333.45 1186.2 333.6 1185.75 333.5 1182.75 331.15 M1181.5 322.1 Q1177 321.85 1172.8 322.05 1172.45 322.05 1172.2 321.85 1171.9 321.6 1171.9 321.3 L1171.9 320.7 1172.35 320.2 Q1175.45 318.5 1178.4 317.55 1184.85 315.35 1190.7 316.5 L1191.2 316.8 1191.45 317.3 1192.15 321.95 1192.15 322.55 1191.7 323 1191.2 323.1 1181.5 322.1"/>
+ <path stroke="none" fill="#E5E3E3" d="M1178.7 384 L1125.45 384 Q1127.2 379.1 1129.05 374.95 L1128.4 374.7 Q1130.9 369.85 1133.6 366.15 1142.05 351.95 1152 351.95 1162 351.95 1170.5 366.1 1173.2 369.8 1175.7 374.7 L1175.05 374.95 1178.7 384"/>
+ <path stroke="none" fill="#FFAAFF" d="M1164.8 312.05 Q1164.1 315.7 1161.3 318.45 1157.65 322.15 1152.5 322.15 1147.3 322.15 1143.6 318.45 1140.85 315.7 1140.25 312.05 L1140.1 311.3 Q1140.6 309.35 1143.6 307.9 1147.3 306.15 1152.5 306.15 1157.65 306.15 1161.3 307.9 1164.4 309.4 1164.9 311.45 L1164.8 312.05"/>
+ <path stroke="none" fill="#FFC4FF" d="M1140.1 311.3 L1140 309.7 1140 308.8 Q1140.25 306.55 1143.6 304.9 1147.3 303.15 1152.5 303.15 1157.65 303.15 1161.3 304.9 1164.65 306.55 1164.95 308.8 L1165 309.7 1164.9 311.45 Q1164.4 309.4 1161.3 307.9 1157.65 306.15 1152.5 306.15 1147.3 306.15 1143.6 307.9 1140.6 309.35 1140.1 311.3"/>
+ <path stroke="none" fill="#528CDB" d="M428.95 298.5 L428.35 298 427.4 297.25 428.15 295.85 Q432.9 287.1 443.35 281.05 L445.5 279.85 Q448.9 278.45 453.65 281.05 458.9 284.05 462.55 290.4 466.2 296.65 466.15 302.65 L466.05 304.4 Q465.5 299.45 462.55 294.4 458.9 288.05 453.65 285.05 448.9 282.45 445.5 283.85 L443.35 285.05 Q433.7 290.65 428.95 298.5 M301.95 304.4 L301.8 302.65 Q301.75 296.65 305.4 290.4 309.05 284.05 314.3 281.05 319.05 278.45 322.45 279.85 L324.6 281.05 Q335.05 287.1 339.8 295.85 L340.55 297.25 339 298.45 Q334.2 290.6 324.6 285.05 L322.45 283.85 Q319.05 282.45 314.3 285.05 309.05 288.05 305.4 294.4 302.45 299.45 301.95 304.4"/>
+ <path stroke="none" fill="#4B80C9" d="M301.95 304.4 Q302.45 299.45 305.4 294.4 309.05 288.05 314.3 285.05 319.05 282.45 322.45 283.85 L324.6 285.05 Q334.2 290.6 339 298.45 335.9 300.85 333 303.75 329.4 299.7 324 296.55 L322.25 295.6 Q319.45 294.45 315.5 296.55 311.2 299.05 308.2 304.3 306.25 307.6 305.6 310.85 L304.85 310.35 Q302.4 308.5 301.95 304.4 M466.05 304.4 Q465.55 308.5 463.1 310.35 L462.35 310.85 Q461.7 307.6 459.75 304.3 456.75 299.05 452.45 296.55 448.5 294.45 445.7 295.6 L443.95 296.55 Q438.55 299.7 434.95 303.75 L428.95 298.5 Q433.7 290.65 443.35 285.05 L445.5 283.85 Q448.9 282.45 453.65 285.05 458.9 288.05 462.55 294.4 465.5 299.45 466.05 304.4"/>
+ <path stroke="none" fill="#3B6EB4" d="M462.35 310.85 L461.05 311.6 Q453.15 316.15 445.55 317.2 441.4 310.15 435.25 304 L434.95 303.75 Q438.55 299.7 443.95 296.55 L445.7 295.6 Q448.5 294.45 452.45 296.55 456.75 299.05 459.75 304.3 461.7 307.6 462.35 310.85 M333 303.75 L332.7 304 Q326.55 310.15 322.4 317.2 314.8 316.15 306.9 311.6 L305.6 310.85 Q306.25 307.6 308.2 304.3 311.2 299.05 315.5 296.55 319.45 294.45 322.25 295.6 L324 296.55 Q329.4 299.7 333 303.75"/>
+ <path stroke="none" fill="#5A9BF3" d="M320 268.2 L320 264.7 Q320 256 328.65 256 L439.35 256 Q448 256 448 264.7 L448 268.2 Q447.75 260 439.35 260 L328.65 260 Q320.25 260 320 268.2"/>
+ <path stroke="none" fill="#528CDB" d="M320 268.2 Q320.25 260 328.65 260 L439.35 260 Q447.75 260 448 268.2 L448 375.85 Q447.75 384 439.35 384 L434.4 384 Q430.3 381.75 430.4 376.6 429 362.2 417 351.65 L415.85 350.7 Q402.75 339.8 384.55 339.8 366.1 339.8 352.85 351 L352.05 351.65 Q340.15 362.2 338.8 376.6 337.35 381.7 333.7 384 L328.65 384 Q320.25 384 320 375.85 L320 268.2 M332.75 327.2 Q332.75 332.9 336.8 336.8 340.85 340.9 346.55 340.9 352.15 340.9 356.3 336.8 360.25 332.9 360.25 327.2 360.25 321.45 356.3 317.45 352.15 313.4 346.55 313.4 340.85 313.4 336.8 317.45 332.75 321.45 332.75 327.2 M435.25 327.2 Q435.25 321.45 431.2 317.45 427.15 313.4 421.45 313.4 415.85 313.4 411.7 317.45 407.75 321.45 407.75 327.2 407.75 332.9 411.7 336.8 415.85 340.9 421.45 340.9 427.15 340.9 431.2 336.8 435.25 332.9 435.25 327.2"/>
+ <path stroke="none" fill="#FFFFFF" d="M435.25 327.2 Q435.25 332.9 431.2 336.8 427.15 340.9 421.45 340.9 415.85 340.9 411.7 336.8 407.75 332.9 407.75 327.2 407.75 321.45 411.7 317.45 415.85 313.4 421.45 313.4 427.15 313.4 431.2 317.45 435.25 321.45 435.25 327.2 M332.75 327.2 Q332.75 321.45 336.8 317.45 340.85 313.4 346.55 313.4 352.15 313.4 356.3 317.45 360.25 321.45 360.25 327.2 360.25 332.9 356.3 336.8 352.15 340.9 346.55 340.9 340.85 340.9 336.8 336.8 332.75 332.9 332.75 327.2 M340.3 327.1 L340.35 327.95 Q340.6 330.9 342.75 333.05 345.3 335.55 348.95 335.55 352.45 335.55 355.05 333.05 357.3 330.9 357.55 327.95 L357.6 327.1 Q357.6 323.45 355.05 321 352.45 318.45 348.95 318.45 345.3 318.45 342.75 321 340.3 323.45 340.3 327.1 M427.7 327.1 Q427.7 323.45 425.25 321 422.7 318.45 419.05 318.45 415.55 318.45 412.95 321 410.4 323.45 410.4 327.1 L410.45 327.95 Q410.7 330.9 412.95 333.05 415.55 335.55 419.05 335.55 422.7 335.55 425.25 333.05 427.4 330.9 427.65 327.95 L427.7 327.1"/>
+ <path stroke="none" fill="#5B5B5B" d="M427.7 327.1 L427.65 327.95 Q427.4 330.9 425.25 333.05 422.7 335.55 419.05 335.55 415.55 335.55 412.95 333.05 410.7 330.9 410.45 327.95 L410.4 327.1 Q410.4 323.45 412.95 321 415.55 318.45 419.05 318.45 422.7 318.45 425.25 321 427.7 323.45 427.7 327.1 M340.3 327.1 Q340.3 323.45 342.75 321 345.3 318.45 348.95 318.45 352.45 318.45 355.05 321 357.6 323.45 357.6 327.1 L357.55 327.95 Q357.3 330.9 355.05 333.05 352.45 335.55 348.95 335.55 345.3 335.55 342.75 333.05 340.6 330.9 340.35 327.95 L340.3 327.1"/>
+ <path stroke="none" fill="#4178C2" d="M434.4 384 L333.7 384 Q337.35 381.7 338.8 376.6 340.15 362.2 352.05 351.65 L352.85 351 Q366.1 339.8 384.55 339.8 402.75 339.8 415.85 350.7 L417 351.65 Q429 362.2 430.4 376.6 430.3 381.75 434.4 384 M401.6 352.35 Q400.5 351.25 398.3 351.85 396.05 352.45 394.1 354.45 L393.95 354.55 Q392.9 355.65 392.9 357.25 392.9 358.85 394.05 359.95 395.15 361.1 396.8 361.1 398.3 361.1 399.45 360.05 L399.55 359.95 Q401.55 357.95 402.15 355.75 402.8 353.5 401.6 352.35 M369.45 360.05 Q370.55 361.1 372.1 361.1 373.7 361.1 374.85 359.95 375.95 358.85 375.95 357.25 375.95 355.65 374.9 354.55 L374.8 354.45 Q372.8 352.45 370.6 351.85 368.4 351.25 367.25 352.35 366.1 353.5 366.75 355.75 367.35 357.95 369.35 359.95 L369.45 360.05"/>
+ <path stroke="none" fill="#2D5D9C" d="M369.45 360.05 L369.35 359.95 Q367.35 357.95 366.75 355.75 366.1 353.5 367.25 352.35 368.4 351.25 370.6 351.85 372.8 352.45 374.8 354.45 L374.9 354.55 Q375.95 355.65 375.95 357.25 375.95 358.85 374.85 359.95 373.7 361.1 372.1 361.1 370.55 361.1 369.45 360.05 M401.6 352.35 Q402.8 353.5 402.15 355.75 401.55 357.95 399.55 359.95 L399.45 360.05 Q398.3 361.1 396.8 361.1 395.15 361.1 394.05 359.95 392.9 358.85 392.9 357.25 392.9 355.65 393.95 354.55 L394.1 354.45 Q396.05 352.45 398.3 351.85 400.5 351.25 401.6 352.35"/>
+ <path stroke="none" fill="#545353" d="M924.55 111 L924.5 109 Q924.5 96.65 933.25 87.75 942.15 79 954.5 79 966.9 79 975.65 87.75 984.5 96.65 984.5 109 L984.45 111 Q983.8 99.9 975.65 91.75 966.9 83 954.5 83 942.15 83 933.25 91.75 925.2 99.9 924.55 111 M867.45 111 Q866.8 99.9 858.75 91.75 849.85 83 837.5 83 825.1 83 816.35 91.75 808.2 99.9 807.55 111 L807.5 109 Q807.5 96.65 816.35 87.75 825.1 79 837.5 79 849.85 79 858.75 87.75 867.5 96.65 867.5 109 L867.45 111"/>
+ <path stroke="none" fill="#414040" d="M867.45 111 Q866.8 122.1 858.75 130.2 849.85 139 837.5 139 825.1 139 816.35 130.2 808.2 122.1 807.55 111 808.2 99.9 816.35 91.75 825.1 83 837.5 83 849.85 83 858.75 91.75 866.8 99.9 867.45 111 M984.45 111 Q983.8 122.1 975.65 130.2 966.9 139 954.5 139 942.15 139 933.25 130.2 925.2 122.1 924.55 111 925.2 99.9 933.25 91.75 942.15 83 954.5 83 966.9 83 975.65 91.75 983.8 99.9 984.45 111 M965.95 109 Q965.95 102.05 960.95 97.1 956 92.15 949.1 92.15 942.05 92.15 937.1 97.1 932.1 102.05 932.1 109 932.1 116.05 937.1 120.95 942.05 126 949.1 126 956 126 960.95 120.95 965.95 116.05 965.95 109 M826.05 109 Q826.05 116.05 831.05 120.95 836 126 842.9 126 849.95 126 854.9 120.95 859.9 116.05 859.9 109 859.9 102.05 854.9 97.1 849.95 92.15 842.9 92.15 836 92.15 831.05 97.1 826.05 102.05 826.05 109"/>
+ <path stroke="none" fill="#353434" d="M826.05 109 Q826.05 102.05 831.05 97.1 836 92.15 842.9 92.15 849.95 92.15 854.9 97.1 859.9 102.05 859.9 109 859.9 116.05 854.9 120.95 849.95 126 842.9 126 836 126 831.05 120.95 826.05 116.05 826.05 109 M965.95 109 Q965.95 116.05 960.95 120.95 956 126 949.1 126 942.05 126 937.1 120.95 932.1 116.05 932.1 109 932.1 102.05 937.1 97.1 942.05 92.15 949.1 92.15 956 92.15 960.95 97.1 965.95 102.05 965.95 109"/>
+ <path stroke="none" fill="#FFFFFF" d="M960 76.2 Q959.75 68 951.35 68 L922.65 68 Q922.65 83.3 915 94.1 907.4 104.9 896.65 104.9 885.9 104.9 878.25 94.1 870.65 83.3 870.65 68 L840.65 68 Q832.25 68 832 76.2 L832 72.7 Q832 64 840.65 64 L951.35 64 Q960 64 960 72.7 L960 76.2 M855.3 120.55 Q855.3 122.95 857 124.6 858.7 126.35 861.1 126.35 863.5 126.35 865.25 124.6 866.95 122.95 866.95 120.55 866.95 118.1 865.25 116.45 863.5 114.75 861.1 114.75 858.7 114.75 857 116.45 855.3 118.1 855.3 120.55 M850.8 120.4 Q850.8 116.55 853.5 113.85 856.25 111.15 860.1 111.15 863.9 111.15 866.65 113.85 869.35 116.55 869.35 120.4 869.35 124.25 866.65 126.85 863.9 129.65 860.1 129.65 856.25 129.65 853.5 126.85 850.8 124.25 850.8 120.4 M941.2 120.4 Q941.2 124.25 938.5 126.85 935.75 129.65 931.9 129.65 928.1 129.65 925.35 126.85 922.65 124.25 922.65 120.4 922.65 116.55 925.35 113.85 928.1 111.15 931.9 111.15 935.75 111.15 938.5 113.85 941.2 116.55 941.2 120.4 M936.7 120.55 Q936.7 118.1 935 116.45 933.3 114.75 930.9 114.75 928.5 114.75 926.75 116.45 925.05 118.1 925.05 120.55 925.05 122.95 926.75 124.6 928.5 126.35 930.9 126.35 933.3 126.35 935 124.6 936.7 122.95 936.7 120.55"/>
+ <path stroke="none" fill="#F5F5F5" d="M832 76.2 Q832.25 68 840.65 68 L870.65 68 Q870.65 83.3 878.25 94.1 885.9 104.9 896.65 104.9 907.4 104.9 915 94.1 922.65 83.3 922.65 68 L951.35 68 Q959.75 68 960 76.2 L960 183.85 Q959.75 192 951.35 192 L927.1 192 925.65 189.4 Q923.4 185.5 921 182.35 910.4 168.5 896.5 168.5 882.6 168.5 872 182.35 869.55 185.5 867.3 189.4 L865.9 192 840.65 192 Q832.25 192 832 183.85 L832 76.2 M845.15 116.95 Q843.25 124.15 846.1 130.3 849 136.6 855 138.2 860.95 139.75 866.6 135.75 872.15 131.9 874.1 124.7 L874.1 124.65 Q875.7 118.65 872.6 113.3 869.45 107.9 863.5 106.35 857.5 104.75 852.1 107.85 846.8 110.9 845.15 116.9 L845.15 116.95 M909.35 131.25 L909.55 128.9 909.55 128 Q909.2 125.6 905.75 123.9 901.9 122.05 896.5 122.05 891.1 122.05 887.25 123.9 883.75 125.6 883.45 128 L883.45 128.9 883.65 131.25 Q884.3 135.2 887.25 138.15 889.4 140.3 892.05 141.25 L891.2 142.25 889.15 143.75 886.05 144.4 Q883.05 144.4 880.9 142.25 L879.55 140.5 879 140.05 878.35 140.15 873.75 142.7 Q873.4 142.9 873.35 143.25 873.2 143.55 873.4 143.9 874 145 874.9 146.1 L875.95 147.25 Q880.1 151.45 886.05 151.45 891.95 151.45 896.2 147.25 L896.5 146.95 896.8 147.25 Q901 151.45 906.9 151.45 912.8 151.45 917.05 147.25 L918.1 146.1 919.6 143.8 919.65 143.15 919.2 142.65 914.5 140.2 913.8 140.15 913.3 140.6 912.05 142.25 Q909.9 144.4 906.9 144.4 905.25 144.4 903.85 143.75 902.75 143.2 901.8 142.25 L900.95 141.25 Q903.6 140.3 905.75 138.15 908.7 135.2 909.35 131.25 M946.85 116.95 L946.85 116.9 Q945.2 110.9 939.9 107.85 934.5 104.75 928.5 106.35 922.55 107.9 919.4 113.3 916.3 118.65 917.9 124.65 L917.9 124.7 Q919.85 131.9 925.4 135.75 931.05 139.75 937 138.2 943 136.6 945.9 130.3 948.75 124.15 946.85 116.95"/>
+ <path stroke="none" fill="#5B5B5B" d="M855.3 120.55 Q855.3 118.1 857 116.45 858.7 114.75 861.1 114.75 863.5 114.75 865.25 116.45 866.95 118.1 866.95 120.55 866.95 122.95 865.25 124.6 863.5 126.35 861.1 126.35 858.7 126.35 857 124.6 855.3 122.95 855.3 120.55 M850.8 120.4 Q850.8 124.25 853.5 126.85 856.25 129.65 860.1 129.65 863.9 129.65 866.65 126.85 869.35 124.25 869.35 120.4 869.35 116.55 866.65 113.85 863.9 111.15 860.1 111.15 856.25 111.15 853.5 113.85 850.8 116.55 850.8 120.4 M845.15 116.95 L845.15 116.9 Q846.8 110.9 852.1 107.85 857.5 104.75 863.5 106.35 869.45 107.9 872.6 113.3 875.7 118.65 874.1 124.65 L874.1 124.7 Q872.15 131.9 866.6 135.75 860.95 139.75 855 138.2 849 136.6 846.1 130.3 843.25 124.15 845.15 116.95 M909.35 131.25 Q908.7 135.2 905.75 138.15 903.6 140.3 900.95 141.25 896.7 143 892.05 141.25 889.4 140.3 887.25 138.15 884.3 135.2 883.65 131.25 884.35 129.3 887.25 127.9 891.1 126.05 896.5 126.05 901.9 126.05 905.75 127.9 908.65 129.35 909.35 131.25 M946.85 116.95 Q948.75 124.15 945.9 130.3 943 136.6 937 138.2 931.05 139.75 925.4 135.75 919.85 131.9 917.9 124.7 L917.9 124.65 Q916.3 118.65 919.4 113.3 922.55 107.9 928.5 106.35 934.5 104.75 939.9 107.85 945.2 110.9 946.85 116.9 L946.85 116.95 M941.2 120.4 Q941.2 116.55 938.5 113.85 935.75 111.15 931.9 111.15 928.1 111.15 925.35 113.85 922.65 116.55 922.65 120.4 922.65 124.25 925.35 126.85 928.1 129.65 931.9 129.65 935.75 129.65 938.5 126.85 941.2 124.25 941.2 120.4 M936.7 120.55 Q936.7 122.95 935 124.6 933.3 126.35 930.9 126.35 928.5 126.35 926.75 124.6 925.05 122.95 925.05 120.55 925.05 118.1 926.75 116.45 928.5 114.75 930.9 114.75 933.3 114.75 935 116.45 936.7 118.1 936.7 120.55"/>
+ <path stroke="none" fill="#666666" d="M883.65 131.25 L883.45 128.9 883.45 128 Q883.75 125.6 887.25 123.9 891.1 122.05 896.5 122.05 901.9 122.05 905.75 123.9 909.2 125.6 909.55 128 L909.55 128.9 909.35 131.25 Q908.65 129.35 905.75 127.9 901.9 126.05 896.5 126.05 891.1 126.05 887.25 127.9 884.35 129.3 883.65 131.25"/>
+ <path stroke="none" fill="#464646" d="M900.95 141.25 L901.8 142.25 Q902.75 143.2 903.85 143.75 905.25 144.4 906.9 144.4 909.9 144.4 912.05 142.25 L913.3 140.6 913.8 140.15 914.5 140.2 919.2 142.65 919.65 143.15 919.6 143.8 918.1 146.1 917.05 147.25 Q912.8 151.45 906.9 151.45 901 151.45 896.8 147.25 L896.5 146.95 896.2 147.25 Q891.95 151.45 886.05 151.45 880.1 151.45 875.95 147.25 L874.9 146.1 Q874 145 873.4 143.9 873.2 143.55 873.35 143.25 873.4 142.9 873.75 142.7 L878.35 140.15 879 140.05 879.55 140.5 880.9 142.25 Q883.05 144.4 886.05 144.4 L889.15 143.75 891.2 142.25 892.05 141.25 Q896.7 143 900.95 141.25"/>
+ <path stroke="none" fill="#E5E5E5" d="M865.9 192 L867.3 189.4 Q869.55 185.5 872 182.35 882.6 168.5 896.5 168.5 910.4 168.5 921 182.35 923.4 185.5 925.65 189.4 L927.1 192 865.9 192"/>
+ <path stroke="none" fill="#528CDB" d="M648.55 689.2 L648.1 684.95 646.4 668.75 645.95 664.85 643.7 644 695.35 644 Q703.75 644 704 652.2 L704 740.25 704 749.75 704 759.85 Q703.75 768 695.35 768 L683.8 768 597.5 768 584.65 768 Q576.25 768 576 759.85 L576 751.8 576 741.8 576 652.2 Q576.25 644 584.65 644 L636.8 644 634.6 665.05 634.15 669 632.4 685.3 631.95 689.6 631.2 696.65 631.1 697.1 Q630.85 700.85 632.35 703.05 634.4 706.1 639.9 706 645.95 705.9 648.15 702.5 649.5 700.4 649.4 697.1 L649.3 696.25 648.55 689.2 M693.25 724.45 Q695.7 714.6 693.7 706.65 691.6 698.6 686.1 697.15 680.5 695.65 674.75 701.55 668.9 707.45 666.25 717.3 L666.3 717.7 Q664.85 723.05 667.65 727.95 670.55 732.9 676.05 734.4 681.65 735.9 686.65 733 691.45 730.15 693.05 724.9 L693.25 724.45 M657.5 730.3 Q655.65 730.15 653.85 730.9 641.25 736 626.1 730.7 L623.5 730.25 Q621.75 730.25 620.05 731.05 617.05 732.5 616 735.65 614.9 738.7 616.35 741.7 617.75 744.65 620.9 745.75 L623.5 746.6 Q641.9 752.25 657.5 746.6 L660 745.6 Q663 744.25 664.25 741.25 665.45 738.2 664.2 735.15 662.95 732.1 659.9 730.9 L657.5 730.3 M660.5 755.05 Q659.9 752.75 657.8 751.6 655.8 750.45 653.55 751.05 651.25 751.65 650 753.7 648.9 755.7 649.5 758 650.1 760.25 652.1 761.45 654.2 762.65 656.5 762.05 658.75 761.45 659.9 759.35 661.1 757.3 660.5 755.05 M673.15 748.95 Q672.65 747.05 670.95 746.05 669.25 745.05 667.4 745.55 665.5 746.05 664.5 747.8 663.5 749.5 664 751.4 664.55 753.25 666.25 754.25 667.95 755.2 669.85 754.7 671.7 754.2 672.7 752.5 673.7 750.8 673.15 748.95 M612.85 674.2 Q612.85 671.85 611.15 670.15 609.5 668.5 607.15 668.5 604.8 668.5 603.1 670.15 601.45 671.85 601.45 674.2 601.45 676.55 603.1 678.2 604.8 679.9 607.15 679.9 609.5 679.9 611.15 678.2 612.85 676.55 612.85 674.2 M626.7 671.55 Q626.7 669.6 625.3 668.2 623.9 666.8 621.95 666.8 620 666.8 618.6 668.2 617.2 669.6 617.2 671.55 617.2 673.5 618.6 674.9 620 676.3 621.95 676.3 623.9 676.3 625.3 674.9 626.7 673.5 626.7 671.55 M615.55 659.6 Q615.55 658.15 614.5 657.1 613.45 656.05 612 656.05 610.55 656.05 609.5 657.1 608.45 658.15 608.45 659.6 608.45 661.05 609.5 662.1 610.55 663.15 612 663.15 613.45 663.15 614.5 662.1 615.55 661.05 615.55 659.6 M587.15 724.45 L587.35 724.9 Q588.95 730.15 593.75 733 598.75 735.9 604.35 734.4 609.85 732.9 612.75 727.95 615.55 723.05 614.1 717.7 L614.15 717.3 Q611.5 707.45 605.65 701.55 599.9 695.65 594.3 697.15 588.8 698.6 586.7 706.65 584.7 714.6 587.15 724.45"/>
+ <path stroke="none" fill="#F0EDE7" d="M648.1 684.95 L648.55 689.2 Q647.95 690 646.9 690.6 644.5 691.85 639.9 691.9 635.8 691.95 633.65 690.9 632.55 690.4 631.95 689.6 L632.4 685.3 Q633.05 685.9 634.1 686.35 636.25 687.2 639.9 687.15 644.05 687.1 646.4 686.1 L648.1 684.95 M649.3 696.25 L649.4 697.1 Q649.5 700.4 648.15 702.5 645.95 705.9 639.9 706 634.4 706.1 632.35 703.05 630.85 700.85 631.1 697.1 L631.2 696.65 Q631.45 698.5 632.7 699.7 634.8 701.75 639.9 701.7 645.5 701.6 647.8 699.25 649 698.05 649.3 696.25 M634.15 669 L634.6 665.05 636.35 665.45 639.9 665.6 644.2 665.25 645.95 664.85 646.4 668.75 644.6 669.25 639.9 669.65 635.9 669.45 634.15 669"/>
+ <path stroke="none" fill="#5A9BF3" d="M636.8 644 L584.65 644 Q576.25 644 576 652.2 L576 648.7 Q576 640 584.65 640 L637.25 640 636.8 644 M704 652.2 Q703.75 644 695.35 644 L643.7 644 643.3 640 695.35 640 Q704 640 704 648.7 L704 652.2 M693.25 724.45 L693.05 724.9 Q691.45 730.15 686.65 733 681.65 735.9 676.05 734.4 670.55 732.9 667.65 727.95 664.85 723.05 666.3 717.7 L666.25 717.3 Q668.9 707.45 674.75 701.55 680.5 695.65 686.1 697.15 691.6 698.6 693.7 706.65 695.7 714.6 693.25 724.45 M682.55 710.45 Q678.75 709.5 675.35 711.45 671.85 713.45 670.85 717.25 669.8 721.05 671.8 724.55 673.75 727.9 677.55 728.9 681.4 729.95 684.85 728.05 688.25 726 689.3 722.2 690.3 718.35 688.35 714.95 686.4 711.55 682.55 710.45 M587.15 724.45 Q584.7 714.6 586.7 706.65 588.8 698.6 594.3 697.15 599.9 695.65 605.65 701.55 611.5 707.45 614.15 717.3 L614.1 717.7 Q615.55 723.05 612.75 727.95 609.85 732.9 604.35 734.4 598.75 735.9 593.75 733 588.95 730.15 587.35 724.9 L587.15 724.45 M597.85 710.45 Q594 711.55 592.05 714.95 590.1 718.35 591.1 722.2 592.15 726 595.55 728.05 599 729.95 602.85 728.9 606.65 727.9 608.6 724.55 610.6 721.05 609.55 717.25 608.55 713.45 605.05 711.45 601.65 709.5 597.85 710.45"/>
+ <path stroke="none" fill="#5B5B5B" d="M679.65 714.15 Q682.1 714.85 683.3 716.9 684.6 719.1 683.95 721.55 683.35 723.9 681.15 725.2 679 726.45 676.55 725.8 L676 725.65 Q674.05 724.95 673.05 723.05 671.75 720.85 672.45 718.4 673.05 716.05 675.2 714.8 677.05 713.75 679.05 714.05 L679.65 714.15 M600.75 714.15 L601.35 714.05 Q603.35 713.75 605.2 714.8 607.35 716.05 607.95 718.4 608.65 720.85 607.35 723.05 606.35 724.95 604.4 725.65 L603.85 725.8 Q601.4 726.45 599.25 725.2 597.05 723.9 596.45 721.55 595.8 719.1 597.1 716.9 598.3 714.85 600.75 714.15"/>
+ <path stroke="none" fill="#FFFFFF" d="M600.75 714.15 Q598.3 714.85 597.1 716.9 595.8 719.1 596.45 721.55 597.05 723.9 599.25 725.2 601.4 726.45 603.85 725.8 L604.4 725.65 Q606.35 724.95 607.35 723.05 608.65 720.85 607.95 718.4 607.35 716.05 605.2 714.8 603.35 713.75 601.35 714.05 L600.75 714.15 M679.65 714.15 L679.05 714.05 Q677.05 713.75 675.2 714.8 673.05 716.05 672.45 718.4 671.75 720.85 673.05 723.05 674.05 724.95 676 725.65 L676.55 725.8 Q679 726.45 681.15 725.2 683.35 723.9 683.95 721.55 684.6 719.1 683.3 716.9 682.1 714.85 679.65 714.15 M682.55 710.45 Q686.4 711.55 688.35 714.95 690.3 718.35 689.3 722.2 688.25 726 684.85 728.05 681.4 729.95 677.55 728.9 673.75 727.9 671.8 724.55 669.8 721.05 670.85 717.25 671.85 713.45 675.35 711.45 678.75 709.5 682.55 710.45 M657.5 730.3 Q658.7 733.45 658.9 736.75 659.05 738.7 658.8 740.75 658.5 743.6 657.5 746.6 641.9 752.25 623.5 746.6 620.25 737.5 623.5 730.25 L626.1 730.7 Q641.25 736 653.85 730.9 655.65 730.15 657.5 730.3 M597.85 710.45 Q601.65 709.5 605.05 711.45 608.55 713.45 609.55 717.25 610.6 721.05 608.6 724.55 606.65 727.9 602.85 728.9 599 729.95 595.55 728.05 592.15 726 591.1 722.2 590.1 718.35 592.05 714.95 594 711.55 597.85 710.45"/>
+ <path stroke="none" fill="#E7E7E7" d="M657.5 746.6 Q658.5 743.6 658.8 740.75 659.05 738.7 658.9 736.75 658.7 733.45 657.5 730.3 L659.9 730.9 Q662.95 732.1 664.2 735.15 665.45 738.2 664.25 741.25 663 744.25 660 745.6 L657.5 746.6 M623.5 730.25 Q620.25 737.5 623.5 746.6 L620.9 745.75 Q617.75 744.65 616.35 741.7 614.9 738.7 616 735.65 617.05 732.5 620.05 731.05 621.75 730.25 623.5 730.25"/>
+ <path stroke="none" fill="#4A7FC6" d="M673.15 748.95 Q673.7 750.8 672.7 752.5 671.7 754.2 669.85 754.7 667.95 755.2 666.25 754.25 664.55 753.25 664 751.4 663.5 749.5 664.5 747.8 665.5 746.05 667.4 745.55 669.25 745.05 670.95 746.05 672.65 747.05 673.15 748.95 M660.5 755.05 Q661.1 757.3 659.9 759.35 658.75 761.45 656.5 762.05 654.2 762.65 652.1 761.45 650.1 760.25 649.5 758 648.9 755.7 650 753.7 651.25 751.65 653.55 751.05 655.8 750.45 657.8 751.6 659.9 752.75 660.5 755.05 M612.85 674.2 Q612.85 676.55 611.15 678.2 609.5 679.9 607.15 679.9 604.8 679.9 603.1 678.2 601.45 676.55 601.45 674.2 601.45 671.85 603.1 670.15 604.8 668.5 607.15 668.5 609.5 668.5 611.15 670.15 612.85 671.85 612.85 674.2 M615.55 659.6 Q615.55 661.05 614.5 662.1 613.45 663.15 612 663.15 610.55 663.15 609.5 662.1 608.45 661.05 608.45 659.6 608.45 658.15 609.5 657.1 610.55 656.05 612 656.05 613.45 656.05 614.5 657.1 615.55 658.15 615.55 659.6 M626.7 671.55 Q626.7 673.5 625.3 674.9 623.9 676.3 621.95 676.3 620 676.3 618.6 674.9 617.2 673.5 617.2 671.55 617.2 669.6 618.6 668.2 620 666.8 621.95 666.8 623.9 666.8 625.3 668.2 626.7 669.6 626.7 671.55"/>
+ <path stroke="none" fill="#4475BB" d="M576 741.8 L576 751.8 Q573.95 755.6 572.85 759.6 572.3 761.7 572.1 763.6 571.55 768.75 573.65 772.35 572.45 771.65 571.4 770.6 568.6 767.8 568.1 763.6 567.65 760.1 568.85 755.6 570.8 748.4 576 741.8 M704 749.75 L704 740.25 Q710.2 747.55 712.35 755.6 713.55 760.1 713.1 763.6 712.6 767.8 709.8 770.6 L707.55 772.35 Q709.65 768.8 709.1 763.6 L708.35 759.6 Q706.95 754.55 704 749.75"/>
+ <path stroke="none" fill="#406EAF" d="M704 749.75 Q706.95 754.55 708.35 759.6 L709.1 763.6 Q709.65 768.8 707.55 772.35 L706.9 772.7 Q702.2 775.05 694.85 773.1 689.1 771.6 683.8 768 L695.35 768 Q703.75 768 704 759.85 L704 749.75 M576 751.8 L576 759.85 Q576.25 768 584.65 768 L597.5 768 Q592.1 771.6 586.35 773.1 579.95 774.8 575.6 773.25 L573.65 772.35 Q571.55 768.75 572.1 763.6 572.3 761.7 572.85 759.6 573.95 755.6 576 751.8"/>
+ <path stroke="none" fill="#FFFCF5" d="M648.55 689.2 L649.3 696.25 Q649 698.05 647.8 699.25 645.5 701.6 639.9 701.7 634.8 701.75 632.7 699.7 631.45 698.5 631.2 696.65 L631.95 689.6 Q632.55 690.4 633.65 690.9 635.8 691.95 639.9 691.9 644.5 691.85 646.9 690.6 647.95 690 648.55 689.2 M632.4 685.3 L634.15 669 635.9 669.45 639.9 669.65 644.6 669.25 646.4 668.75 648.1 684.95 646.4 686.1 Q644.05 687.1 639.9 687.15 636.25 687.2 634.1 686.35 633.05 685.9 632.4 685.3 M634.6 665.05 L636.8 644 637.25 640 638.15 631.25 Q638.25 630.4 638.85 629.85 L639.25 629.6 640.25 629.35 641.3 629.6 641.65 629.85 641.7 629.85 Q642.3 630.4 642.35 631.25 L643.3 640 643.7 644 645.95 664.85 644.2 665.25 639.9 665.6 636.35 665.45 634.6 665.05"/>
+ <path stroke="none" fill="#5F422D" d="M183.3 1055.4 Q193.65 1053.75 206 1056.2 L208.8 1056.85 Q212.95 1058.05 214.75 1062.7 216.6 1068 214.4 1074.2 212.15 1080.6 207 1084.4 205.05 1085.95 203 1086.55 L201.8 1086.55 199 1085.95 196 1085.35 191.5 1084.05 Q193.05 1083.55 194.75 1082.4 198.4 1079.55 200.05 1075 201.7 1070.5 200.35 1066.7 199 1063.4 195.95 1062.55 195.1 1062.15 194.05 1062.1 184 1060 175.7 1061.8 L174.35 1062.2 172.65 1062.7 171 1063.25 171.25 1062.75 Q173.15 1059.2 178.3 1057 180.55 1056.1 183.3 1055.4 M72.7 1055.4 Q82 1057.75 84.75 1062.75 L85 1063.3 81.65 1062.25 80.3 1061.8 Q72 1060.05 61.95 1062.1 L60.05 1062.55 Q57 1063.4 55.65 1066.7 54.3 1070.55 55.95 1075.05 57.6 1079.6 61.25 1082.4 62.95 1083.6 64.5 1084.1 L60 1085.4 57 1086 54.2 1086.55 53 1086.6 Q50.95 1085.95 49 1084.4 43.9 1080.65 41.6 1074.2 39.4 1068 41.25 1062.75 43.05 1058.1 47.2 1056.85 L50 1056.2 Q62.35 1053.75 72.7 1055.4 M109.05 1162.95 Q109.5 1161.1 110.7 1158.9 113.4 1153.65 118.45 1149.4 127.6 1141.75 137.55 1149.4 142.6 1153.65 145.25 1158.9 146.45 1161.1 146.95 1162.9 L146.85 1163.05 Q145.7 1166.15 141.2 1165.25 138.15 1164.6 134.8 1162.35 135.35 1164.55 135.5 1166.6 L135.55 1166.85 Q135.7 1168.75 135.45 1170 135.25 1171.15 134.65 1171.65 133.4 1172.75 131.15 1170.25 129.45 1168.25 128 1164.95 126.5 1168.25 124.8 1170.25 122.6 1172.75 121.3 1171.65 120.75 1171.15 120.5 1170 120.25 1168.75 120.45 1166.9 L120.45 1166.6 Q120.65 1164.55 121.2 1162.35 117.85 1164.6 114.8 1165.25 110.3 1166.15 109.1 1163.05 L109.05 1162.95"/>
+ <path stroke="none" fill="#4F3725" d="M85 1063.3 L85.3 1063.9 Q86.5 1067.3 84.75 1070.65 83.2 1073.7 79.25 1076.75 73.75 1081 65.95 1083.65 L64.5 1084.1 Q62.95 1083.6 61.25 1082.4 57.6 1079.6 55.95 1075.05 54.3 1070.55 55.65 1066.7 57 1063.4 60.05 1062.55 L61.95 1062.1 Q72 1060.05 80.3 1061.8 L81.65 1062.25 85 1063.3 M191.5 1084.05 L190.05 1083.65 Q182.25 1081 176.75 1076.7 172.8 1073.7 171.25 1070.65 169.8 1067.8 170.35 1065 L170.7 1063.85 171 1063.25 172.65 1062.7 174.35 1062.2 175.7 1061.8 Q184 1060 194.05 1062.1 195.1 1062.15 195.95 1062.55 199 1063.4 200.35 1066.7 201.7 1070.5 200.05 1075 198.4 1079.55 194.75 1082.4 193.05 1083.55 191.5 1084.05"/>
+ <path stroke="none" fill="#704E35" d="M53 1086.6 Q49.15 1086.5 45.05 1083.6 40.1 1079.8 37.8 1073.45 35.55 1067.15 37.45 1061.95 39.2 1057.3 43.4 1056.05 L46 1055.5 Q60.05 1052.65 71.5 1055.1 L72.7 1055.4 Q62.35 1053.75 50 1056.2 L47.2 1056.85 Q43.05 1058.1 41.25 1062.75 39.4 1068 41.6 1074.2 43.9 1080.65 49 1084.4 50.95 1085.95 53 1086.6 M146.95 1162.9 Q146.45 1161.1 145.25 1158.9 142.6 1153.65 137.55 1149.4 127.6 1141.75 118.45 1149.4 113.4 1153.65 110.7 1158.9 109.5 1161.1 109.05 1162.95 108 1160 110.7 1154.9 113.4 1149.65 118.45 1145.4 127.6 1137.75 137.55 1145.4 142.6 1149.65 145.25 1154.9 148 1160 146.95 1162.9 M183.3 1055.4 L184.5 1055.05 Q195.95 1052.6 210 1055.45 L212.6 1056 Q216.8 1057.3 218.55 1061.95 220.45 1067.15 218.2 1073.45 215.9 1079.8 210.95 1083.6 206.85 1086.5 203 1086.55 205.05 1085.95 207 1084.4 212.15 1080.6 214.4 1074.2 216.6 1068 214.75 1062.7 212.95 1058.05 208.8 1056.85 L206 1056.2 Q193.65 1053.75 183.3 1055.4"/>
+ <path stroke="none" fill="#A16639" d="M131.9 1112.15 Q136.65 1108.8 140.35 1096.75 143.2 1087.65 144.5 1076.45 145.35 1068.95 145.5 1060.5 L145.5 1059.15 Q145.9 1051.2 142.65 1045.05 L140.35 1041.2 Q135.25 1033.95 128 1033.95 120.75 1033.95 115.6 1041.2 114.3 1043 113.2 1045.15 110.8 1049.85 110.5 1059.15 L110.55 1060.5 Q110.7 1068.95 111.55 1076.45 112.8 1087.65 115.6 1096.75 119.3 1108.7 124.05 1112.1 L119.85 1111.4 116.05 1110.3 115.3 1110.35 114.8 1110.85 Q114.6 1111.2 114.75 1111.6 115.7 1114.5 118.05 1116.8 120.35 1119.1 123.25 1120.15 L123.2 1120.15 123.5 1120.25 122.7 1121.2 120.65 1122.7 Q119.2 1123.35 117.55 1123.35 114.55 1123.35 112.4 1121.2 L111.05 1119.45 110.5 1119 109.85 1119.1 105.25 1121.65 Q104.9 1121.85 104.85 1122.2 104.7 1122.5 104.9 1122.85 L105.95 1124.45 Q102.35 1127.15 99 1130.85 95.35 1134.85 91.9 1139.95 88.3 1145.35 84.9 1152 L72.65 1152 Q64.25 1152 64 1143.85 L64 1036.2 Q64.25 1028 72.65 1028 L183.35 1028 Q191.75 1028 192 1036.2 L192 1143.85 Q191.75 1152 183.35 1152 L171.1 1152 Q167.75 1145.3 164.15 1139.9 160.8 1134.85 157.25 1130.95 153.8 1127.1 150.15 1124.35 L151.1 1122.75 151.15 1122.1 150.7 1121.6 146 1119.15 145.3 1119.1 144.8 1119.55 143.55 1121.2 Q141.4 1123.35 138.4 1123.35 136.75 1123.35 135.35 1122.7 134.25 1122.15 133.3 1121.2 L132.5 1120.3 132.85 1120.15 132.8 1120.15 Q135.65 1119.1 137.95 1116.8 140.25 1114.5 141.3 1111.65 L141.3 1110.9 140.75 1110.4 140.05 1110.35 136.25 1111.4 136.2 1111.4 131.9 1112.15 M79.15 1075.2 L78.85 1076.45 Q77.5 1082.95 80.1 1088.55 83 1094.85 89 1096.45 94.95 1098 100.6 1094 106.15 1090.15 108.1 1082.95 L108.1 1082.9 Q109 1079.6 108.45 1076.45 108 1073.95 106.6 1071.55 103.45 1066.15 97.5 1064.6 91.5 1063 86.1 1066.1 80.8 1069.15 79.15 1075.15 L79.15 1075.2 M176.85 1075.2 L176.85 1075.15 Q175.2 1069.15 169.9 1066.1 164.5 1063 158.5 1064.6 152.55 1066.15 149.4 1071.55 148 1073.95 147.6 1076.45 147 1079.6 147.9 1082.9 L147.9 1082.95 Q149.85 1090.15 155.4 1094 161.05 1098 167 1096.45 173 1094.85 175.9 1088.55 178.5 1082.95 177.15 1076.45 L176.85 1075.2"/>
+ <path stroke="none" fill="#B6733F" d="M124.05 1112.1 Q119.3 1108.7 115.6 1096.75 112.8 1087.65 111.55 1076.45 110.7 1068.95 110.55 1060.5 L110.5 1059.15 Q110.8 1049.85 113.2 1045.15 114.3 1043 115.6 1041.2 120.75 1033.95 128 1033.95 135.25 1033.95 140.35 1041.2 L142.65 1045.05 Q145.9 1051.2 145.5 1059.15 L145.5 1060.5 Q145.35 1068.95 144.5 1076.45 143.2 1087.65 140.35 1096.75 136.65 1108.8 131.9 1112.15 128.05 1112.55 124.05 1112.1"/>
+ <path stroke="none" fill="#FFFFFF" d="M89.3 1078.8 Q89.3 1081.2 91 1082.85 92.7 1084.6 95.1 1084.6 97.5 1084.6 99.25 1082.85 100.95 1081.2 100.95 1078.8 100.95 1077.5 100.5 1076.45 100.05 1075.5 99.25 1074.7 97.5 1073 95.1 1073 92.7 1073 91 1074.7 90.2 1075.5 89.8 1076.45 89.3 1077.5 89.3 1078.8 M84.8 1078.65 Q84.8 1077.5 85.05 1076.45 85.6 1074 87.5 1072.1 90.25 1069.4 94.1 1069.4 97.9 1069.4 100.65 1072.1 102.55 1074 103.1 1076.45 L103.35 1078.65 Q103.35 1082.5 100.65 1085.1 97.9 1087.9 94.1 1087.9 90.25 1087.9 87.5 1085.1 84.8 1082.5 84.8 1078.65 M171.2 1078.65 Q171.2 1082.5 168.5 1085.1 165.75 1087.9 161.9 1087.9 158.1 1087.9 155.35 1085.1 152.65 1082.5 152.65 1078.65 152.65 1077.5 152.9 1076.45 153.45 1074 155.35 1072.1 158.1 1069.4 161.9 1069.4 165.75 1069.4 168.5 1072.1 170.4 1074 170.95 1076.45 L171.2 1078.65 M166.7 1078.8 Q166.7 1077.5 166.25 1076.45 165.8 1075.5 165 1074.7 163.3 1073 160.9 1073 158.5 1073 156.75 1074.7 155.95 1075.5 155.55 1076.45 155.05 1077.5 155.05 1078.8 155.05 1081.2 156.75 1082.85 158.5 1084.6 160.9 1084.6 163.3 1084.6 165 1082.85 166.7 1081.2 166.7 1078.8"/>
+ <path stroke="none" fill="#8E5A32" d="M84.8 1078.65 Q84.8 1082.5 87.5 1085.1 90.25 1087.9 94.1 1087.9 97.9 1087.9 100.65 1085.1 103.35 1082.5 103.35 1078.65 L103.1 1076.45 Q102.55 1074 100.65 1072.1 97.9 1069.4 94.1 1069.4 90.25 1069.4 87.5 1072.1 85.6 1074 85.05 1076.45 84.8 1077.5 84.8 1078.65 M79.15 1075.2 L79.15 1075.15 Q80.8 1069.15 86.1 1066.1 91.5 1063 97.5 1064.6 103.45 1066.15 106.6 1071.55 108 1073.95 108.45 1076.45 109 1079.6 108.1 1082.9 L108.1 1082.95 Q106.15 1090.15 100.6 1094 94.95 1098 89 1096.45 83 1094.85 80.1 1088.55 77.5 1082.95 78.85 1076.45 L79.15 1075.2 M171.2 1078.65 L170.95 1076.45 Q170.4 1074 168.5 1072.1 165.75 1069.4 161.9 1069.4 158.1 1069.4 155.35 1072.1 153.45 1074 152.9 1076.45 152.65 1077.5 152.65 1078.65 152.65 1082.5 155.35 1085.1 158.1 1087.9 161.9 1087.9 165.75 1087.9 168.5 1085.1 171.2 1082.5 171.2 1078.65 M176.85 1075.2 L177.15 1076.45 Q178.5 1082.95 175.9 1088.55 173 1094.85 167 1096.45 161.05 1098 155.4 1094 149.85 1090.15 147.9 1082.95 L147.9 1082.9 Q147 1079.6 147.6 1076.45 148 1073.95 149.4 1071.55 152.55 1066.15 158.5 1064.6 164.5 1063 169.9 1066.1 175.2 1069.15 176.85 1075.15 L176.85 1075.2"/>
+ <path stroke="none" fill="#5B5B5B" d="M89.3 1078.8 Q89.3 1077.5 89.8 1076.45 90.2 1075.5 91 1074.7 92.7 1073 95.1 1073 97.5 1073 99.25 1074.7 100.05 1075.5 100.5 1076.45 100.95 1077.5 100.95 1078.8 100.95 1081.2 99.25 1082.85 97.5 1084.6 95.1 1084.6 92.7 1084.6 91 1082.85 89.3 1081.2 89.3 1078.8 M166.7 1078.8 Q166.7 1081.2 165 1082.85 163.3 1084.6 160.9 1084.6 158.5 1084.6 156.75 1082.85 155.05 1081.2 155.05 1078.8 155.05 1077.5 155.55 1076.45 155.95 1075.5 156.75 1074.7 158.5 1073 160.9 1073 163.3 1073 165 1074.7 165.8 1075.5 166.25 1076.45 166.7 1077.5 166.7 1078.8"/>
+ <path stroke="none" fill="#B4723F" d="M192 1036.2 Q191.75 1028 183.35 1028 L72.65 1028 Q64.25 1028 64 1036.2 L64 1032.7 Q64 1024 72.65 1024 L183.35 1024 Q192 1024 192 1032.7 L192 1036.2"/>
+ <path stroke="none" fill="#464646" d="M131.9 1112.15 L136.2 1111.4 136.25 1111.4 140.05 1110.35 140.75 1110.4 141.3 1110.9 141.3 1111.65 Q140.25 1114.5 137.95 1116.8 135.65 1119.1 132.8 1120.15 L132.85 1120.15 132.5 1120.3 129.8 1120.95 128.85 1121.05 126.7 1121 125.95 1120.9 123.5 1120.25 123.2 1120.15 123.25 1120.15 Q120.35 1119.1 118.05 1116.8 115.7 1114.5 114.75 1111.6 114.6 1111.2 114.8 1110.85 L115.3 1110.35 116.05 1110.3 119.85 1111.4 124.05 1112.1 Q128.05 1112.55 131.9 1112.15"/>
+ <path stroke="none" fill="#383838" d="M132.5 1120.3 L133.3 1121.2 Q134.25 1122.15 135.35 1122.7 136.75 1123.35 138.4 1123.35 141.4 1123.35 143.55 1121.2 L144.8 1119.55 145.3 1119.1 146 1119.15 150.7 1121.6 151.15 1122.1 151.1 1122.75 150.15 1124.35 149.6 1125.05 148.55 1126.2 147.8 1126.9 Q143.8 1130.4 138.4 1130.4 132.5 1130.4 128.3 1126.2 L128 1125.9 127.7 1126.2 Q123.45 1130.4 117.55 1130.4 112.15 1130.4 108.2 1126.95 L107.45 1126.2 106.4 1125.05 105.95 1124.45 104.9 1122.85 Q104.7 1122.5 104.85 1122.2 104.9 1121.85 105.25 1121.65 L109.85 1119.1 110.5 1119 111.05 1119.45 112.4 1121.2 Q114.55 1123.35 117.55 1123.35 119.2 1123.35 120.65 1122.7 L122.7 1121.2 123.5 1120.25 125.95 1120.9 126.7 1121 128.85 1121.05 129.8 1120.95 132.5 1120.3"/>
+ <path stroke="none" fill="#955E34" d="M150.15 1124.35 Q153.8 1127.1 157.25 1130.95 160.8 1134.85 164.15 1139.9 167.75 1145.3 171.1 1152 L84.9 1152 Q88.3 1145.35 91.9 1139.95 95.35 1134.85 99 1130.85 102.35 1127.15 105.95 1124.45 L106.4 1125.05 107.45 1126.2 108.2 1126.95 Q112.15 1130.4 117.55 1130.4 123.45 1130.4 127.7 1126.2 L128 1125.9 128.3 1126.2 Q132.5 1130.4 138.4 1130.4 143.8 1130.4 147.8 1126.9 L148.55 1126.2 149.6 1125.05 150.15 1124.35"/>
+ <path stroke="none" fill="#FFDFC6" d="M108.05 1045.1 Q106.65 1041.45 100.8 1037.3 84.3 1025.35 72.05 1002.05 L72 1002.05 Q72.25 1001.85 72.55 1001.8 73 1001.65 73.4 1001.8 L74.05 1002.4 Q86.3 1022.9 102.8 1031.1 112.95 1036 109.75 1042.3 L109.75 1042.35 108.05 1045.1 M147.95 1045.1 L146.25 1042.35 146.25 1042.3 Q143.05 1036 153.2 1031.1 169.7 1022.9 181.95 1002.4 L182.6 1001.8 Q183 1001.65 183.45 1001.8 L184 1002.05 183.95 1002.05 Q171.7 1025.35 155.2 1037.3 149.35 1041.45 147.95 1045.1"/>
+ <path stroke="none" fill="#EBCEB7" d="M147.95 1045.1 Q149.35 1041.45 155.2 1037.3 171.7 1025.35 183.95 1002.05 L184 1002.05 184.15 1002.2 184.45 1003.05 Q185.25 1027.5 168.9 1046.95 L168.95 1046.95 Q163.05 1054.55 154.25 1050.25 150.4 1048.35 147.95 1045.1 M108.05 1045.1 Q105.6 1048.35 101.75 1050.25 92.95 1054.55 87.05 1046.95 L87.1 1046.95 Q70.75 1027.5 71.55 1003.05 L71.85 1002.2 72 1002.05 72.05 1002.05 Q84.3 1025.35 100.8 1037.3 106.65 1041.45 108.05 1045.1"/>
+ <path stroke="none" fill="#BDB6B6" d="M987.2 287.05 Q987.05 291.85 985.7 296.85 L985.35 298.1 Q978.3 322.95 962.5 337.9 946.2 353.35 930.05 349.05 913.9 344.7 907.5 323.2 904.6 313.4 904.5 302.6 904.6 291.4 907.65 279.25 L907.9 278 Q912.2 261.9 926.65 253.6 941.1 245.2 957.3 249.45 973.35 253.85 981.65 268.25 986.9 277.3 987.2 287.05 M924.25 288.4 L924.05 289.25 Q919.75 306.55 923.95 320.85 928.35 335.65 939.45 338.6 950.55 341.55 961.8 330.95 972.65 320.65 977.5 303.6 L977.75 302.75 Q980.7 291.65 974.95 281.7 969.25 271.8 958.2 268.75 947.05 265.85 937.15 271.6 927.2 277.35 924.25 288.4 M887.2 302.6 Q887.1 313.4 884.2 323.2 877.8 344.7 861.65 349.05 845.5 353.35 829.2 337.9 813.4 322.95 806.35 298.1 L806 296.85 Q804.65 291.85 804.5 287.05 804.8 277.3 810.05 268.25 818.35 253.85 834.4 249.45 850.6 245.2 865.05 253.6 879.5 261.9 883.8 278 L884.05 279.25 Q887.1 291.4 887.2 302.6 M867.45 288.4 Q864.5 277.35 854.55 271.6 844.65 265.85 833.5 268.75 822.45 271.8 816.75 281.7 811 291.65 813.95 302.75 L814.2 303.6 Q819.05 320.65 829.9 330.95 841.15 341.55 852.25 338.6 863.35 335.65 867.75 320.85 871.95 306.55 867.65 289.25 L867.45 288.4"/>
+ <path stroke="none" fill="#DBD9D9" d="M904.5 302.6 Q904.35 290.5 907.65 277.25 L907.9 276 Q912.2 259.9 926.65 251.6 941.1 243.2 957.3 247.45 973.35 251.85 981.65 266.25 987.45 276.25 987.2 287.05 986.9 277.3 981.65 268.25 973.35 253.85 957.3 249.45 941.1 245.2 926.65 253.6 912.2 261.9 907.9 278 L907.65 279.25 Q904.6 291.4 904.5 302.6 M887.2 302.6 Q887.1 291.4 884.05 279.25 L883.8 278 Q879.5 261.9 865.05 253.6 850.6 245.2 834.4 249.45 818.35 253.85 810.05 268.25 804.8 277.3 804.5 287.05 804.25 276.25 810.05 266.25 818.35 251.85 834.4 247.45 850.6 243.2 865.05 251.6 879.5 259.9 883.8 276 L884.05 277.25 Q887.35 290.5 887.2 302.6"/>
+ <path stroke="none" fill="#AFA8A8" d="M924.25 288.4 Q927.2 277.35 937.15 271.6 947.05 265.85 958.2 268.75 969.25 271.8 974.95 281.7 980.7 291.65 977.75 302.75 L977.5 303.6 Q972.65 320.65 961.8 330.95 950.55 341.55 939.45 338.6 928.35 335.65 923.95 320.85 919.75 306.55 924.05 289.25 L924.25 288.4 M867.45 288.4 L867.65 289.25 Q871.95 306.55 867.75 320.85 863.35 335.65 852.25 338.6 841.15 341.55 829.9 330.95 819.05 320.65 814.2 303.6 L813.95 302.75 Q811 291.65 816.75 281.7 822.45 271.8 833.5 268.75 844.65 265.85 854.55 271.6 864.5 277.35 867.45 288.4"/>
+ <path stroke="none" fill="#FFFFFF" d="M942.55 295.7 Q942.55 299.85 939.6 302.7 936.65 305.7 932.5 305.7 928.4 305.7 925.4 302.7 922.5 299.85 922.5 295.7 922.5 291.5 925.4 288.6 928.4 285.65 932.5 285.65 936.65 285.65 939.6 288.6 942.55 291.5 942.55 295.7 M937.05 296.9 Q937.05 294.25 935.25 292.45 933.4 290.6 930.75 290.6 928.2 290.6 926.3 292.45 924.45 294.25 924.45 296.9 924.45 299.45 926.3 301.25 928.2 303.05 930.75 303.05 933.4 303.05 935.25 301.25 937.05 299.45 937.05 296.9 M849.45 295.7 Q849.45 291.5 852.4 288.6 855.35 285.65 859.5 285.65 863.6 285.65 866.6 288.6 869.5 291.5 869.5 295.7 869.5 299.85 866.6 302.7 863.6 305.7 859.5 305.7 855.35 305.7 852.4 302.7 849.45 299.85 849.45 295.7 M854.95 296.9 Q854.95 299.45 856.75 301.25 858.6 303.05 861.25 303.05 863.8 303.05 865.7 301.25 867.55 299.45 867.55 296.9 867.55 294.25 865.7 292.45 863.8 290.6 861.25 290.6 858.6 290.6 856.75 292.45 854.95 294.25 854.95 296.9"/>
+ <path stroke="none" fill="#5B5B5B" d="M937.05 296.9 Q937.05 299.45 935.25 301.25 933.4 303.05 930.75 303.05 928.2 303.05 926.3 301.25 924.45 299.45 924.45 296.9 924.45 294.25 926.3 292.45 928.2 290.6 930.75 290.6 933.4 290.6 935.25 292.45 937.05 294.25 937.05 296.9 M854.95 296.9 Q854.95 294.25 856.75 292.45 858.6 290.6 861.25 290.6 863.8 290.6 865.7 292.45 867.55 294.25 867.55 296.9 867.55 299.45 865.7 301.25 863.8 303.05 861.25 303.05 858.6 303.05 856.75 301.25 854.95 299.45 854.95 296.9"/>
+ <path stroke="none" fill="#D2D0D0" d="M832 268.2 Q832.25 260 840.65 260 L853.45 260 Q853.45 266.4 865.9 270.9 878.4 275.4 896 275.4 913.65 275.4 926.1 270.9 938.6 266.4 938.6 260 L951.35 260 Q959.75 260 960 268.2 L960 375.85 Q959.75 384 951.35 384 L840.65 384 Q832.25 384 832 375.85 L832 268.2 M942.55 295.7 Q942.55 291.5 939.6 288.6 936.65 285.65 932.5 285.65 928.4 285.65 925.4 288.6 922.5 291.5 922.5 295.7 922.5 299.85 925.4 302.7 928.4 305.7 932.5 305.7 936.65 305.7 939.6 302.7 942.55 299.85 942.55 295.7 M849.45 295.7 Q849.45 299.85 852.4 302.7 855.35 305.7 859.5 305.7 863.6 305.7 866.6 302.7 869.5 299.85 869.5 295.7 869.5 291.5 866.6 288.6 863.6 285.65 859.5 285.65 855.35 285.65 852.4 288.6 849.45 291.5 849.45 295.7 M921.05 314.4 Q921.4 307.5 916.15 301.7 908.75 293.4 896 293.4 883.3 293.4 875.7 301.7 870.6 307.55 871 314.4 869.1 316.4 866.55 317.25 848.35 322.95 848.95 342.55 L849.4 347.9 Q849.95 352.75 851.2 358.2 851.35 359.1 852.05 359.85 L852.2 359.9 Q852.85 360.45 853.65 360.6 856.9 360.25 858.85 354.45 L860 351.35 Q860.75 349.55 861.65 347.9 863.05 345.2 864.75 342.85 L865.95 343.3 Q868.45 341.15 871.55 339.5 872.45 339 873.4 338.65 874.95 337.85 876.7 337.2 L878.2 336.6 Q880.05 342.75 881.5 349.4 883.9 360.5 885.35 373.05 885.7 374.6 888.85 375.6 891.9 376.5 896 376.5 900.1 376.5 903.1 375.6 906.35 374.6 906.7 373.05 908.3 360.9 911 349.4 912.45 343 914.3 336.8 L915.3 337.2 Q917.05 337.85 918.6 338.65 919.55 339 920.45 339.5 923.45 341.1 925.9 343.2 L927 342.55 Q928.85 345 930.4 347.9 L932 351.35 933.15 354.45 Q935.1 360.25 938.35 360.6 939.15 360.45 939.8 359.9 L939.95 359.85 Q940.65 359.1 940.8 358.2 942.1 352.7 942.65 347.85 L943.05 342.55 Q943.65 322.95 925.45 317.25 922.85 316.35 921.05 314.4"/>
+ <path stroke="none" fill="#DBD9D9" d="M960 268.2 Q959.75 260 951.35 260 L938.6 260 Q938.6 266.4 926.1 270.9 913.65 275.4 896 275.4 878.4 275.4 865.9 270.9 853.45 266.4 853.45 260 L840.65 260 Q832.25 260 832 268.2 L832 264.7 Q832 256 840.65 256 L951.35 256 Q960 256 960 264.7 L960 268.2 M914.3 336.8 Q912.45 343 911 349.4 908.3 360.9 906.7 373.05 906.35 374.6 903.1 375.6 900.1 376.5 896 376.5 891.9 376.5 888.85 375.6 885.7 374.6 885.35 373.05 883.9 360.5 881.5 349.4 880.05 342.75 878.2 336.6 L876.9 332.45 Q874.65 325.5 871.9 319.25 873 316.9 875.7 314.75 L876.8 314 Q884.2 308.95 896 308.95 907.95 308.95 915.2 314.05 L916.15 314.75 Q918.9 316.9 920.15 319.25 917.65 325.85 915.5 332.7 L914.3 336.8 M883.85 325.4 L883.8 325.4 Q896.5 331.25 908.2 325.4 L908.25 325.35 Q908.95 325.05 909.2 324.25 L909.2 324.35 Q909.45 323.65 909.2 323.05 908.95 322.25 908.25 321.95 L908.2 321.95 Q896.55 316 883.85 321.9 883 322.2 882.8 323.05 882.55 323.65 882.8 324.35 883.05 325.05 883.85 325.4"/>
+ <path stroke="none" fill="#E7E5E5" d="M871 314.4 Q870.6 307.55 875.7 301.7 883.3 293.4 896 293.4 908.75 293.4 916.15 301.7 921.4 307.5 921.05 314.4 L920.45 317.9 920.15 319.25 Q918.9 316.9 916.15 314.75 L915.2 314.05 Q907.95 308.95 896 308.95 884.2 308.95 876.8 314 L875.7 314.75 Q873 316.9 871.9 319.25 L871.5 317.9 Q871.05 316.1 871 314.4"/>
+ <path stroke="none" fill="#C2C0C0" d="M871 314.4 Q871.05 316.1 871.5 317.9 L871.9 319.25 Q874.65 325.5 876.9 332.45 L878.2 336.6 876.7 337.2 Q874.95 337.85 873.4 338.65 872.45 339 871.55 339.5 868.45 341.15 865.95 343.3 L864.75 342.85 Q867.7 338.85 871.55 335.85 872.45 335.15 873.4 334.6 873.95 329.7 872.4 325.45 L871.75 323.95 Q870 320.4 866.55 317.25 869.1 316.4 871 314.4 M921.05 314.4 Q922.85 316.35 925.45 317.25 922 320.4 920.3 323.95 L919.6 325.45 Q918.05 329.7 918.6 334.6 L920.45 335.85 Q924.15 338.7 927 342.55 L925.9 343.2 Q923.45 341.1 920.45 339.5 919.55 339 918.6 338.65 917.05 337.85 915.3 337.2 L914.3 336.8 915.5 332.7 Q917.65 325.85 920.15 319.25 L920.45 317.9 921.05 314.4"/>
+ <path stroke="none" fill="#CDCBCB" d="M883.85 325.4 Q883.05 325.05 882.8 324.35 882.55 323.65 882.8 323.05 883 322.2 883.85 321.9 896.55 316 908.2 321.95 L908.25 321.95 Q908.95 322.25 909.2 323.05 909.45 323.65 909.2 324.35 L909.2 324.25 Q908.95 325.05 908.25 325.35 L908.2 325.4 Q896.5 331.25 883.8 325.4 L883.85 325.4"/>
+ <path stroke="none" fill="#FFFCF5" d="M925.45 317.25 Q943.65 322.95 943.05 342.55 L942.65 347.85 Q942.1 352.7 940.8 358.2 940.65 359.1 939.95 359.85 L939.8 359.9 Q939.15 360.45 938.35 360.6 L938 356.7 Q935.85 342.15 922.5 328.35 L919.6 325.45 920.3 323.95 Q922 320.4 925.45 317.25 M853.65 360.6 Q852.85 360.45 852.2 359.9 L852.05 359.85 Q851.35 359.1 851.2 358.2 849.95 352.75 849.4 347.9 L848.95 342.55 Q848.35 322.95 866.55 317.25 870 320.4 871.75 323.95 L872.4 325.45 869.5 328.35 Q856.15 342.15 854.05 356.7 L853.65 360.6"/>
+ <path stroke="none" fill="#F0EDE7" d="M853.65 360.6 L854.05 356.7 Q856.15 342.15 869.5 328.35 L872.4 325.45 Q873.95 329.7 873.4 334.6 872.45 335.15 871.55 335.85 867.7 338.85 864.75 342.85 863.05 345.2 861.65 347.9 860.75 349.55 860 351.35 L858.85 354.45 Q856.9 360.25 853.65 360.6 M938.35 360.6 Q935.1 360.25 933.15 354.45 L932 351.35 930.4 347.9 Q928.85 345 927 342.55 924.15 338.7 920.45 335.85 L918.6 334.6 Q918.05 329.7 919.6 325.45 L922.5 328.35 Q935.85 342.15 938 356.7 L938.35 360.6"/>
+ <path stroke="none" fill="#545353" d="M1195.8 863.45 L1196.05 862.9 Q1198.75 857.85 1208.15 855.55 L1209.3 855.25 Q1220.75 852.75 1234.8 855.6 L1237.45 856.15 Q1241.65 857.45 1243.4 862.1 1244.5 865.15 1244.2 868.6 1244 866.8 1243.4 865.1 1241.65 860.45 1237.45 859.15 L1234.8 858.6 Q1220.75 855.75 1209.3 858.25 L1208.15 858.55 Q1202.45 859.95 1199.25 862.35 L1199.2 862.35 Q1197.25 862.8 1195.8 863.45 M1104.8 862.35 Q1101.6 859.95 1095.9 858.55 L1094.75 858.25 Q1083.3 855.75 1069.25 858.6 L1066.6 859.15 Q1062.4 860.45 1060.65 865.1 1060.05 866.8 1059.85 868.6 1059.55 865.15 1060.65 862.1 1062.4 857.45 1066.6 856.15 L1069.25 855.6 Q1083.3 852.75 1094.75 855.25 L1095.9 855.55 Q1105.3 857.85 1108 862.9 L1108.25 863.45 Q1106.8 862.8 1104.85 862.35 L1104.8 862.35"/>
+ <path stroke="none" fill="#414040" d="M1104.8 862.35 L1103.5 861.95 Q1095.25 860.15 1085.15 862.2 L1083.25 862.65 Q1080.2 863.5 1078.9 866.85 1078 869.3 1078.35 872 1078.55 873.55 1079.15 875.15 1080.8 879.75 1084.45 882.5 1086.2 883.7 1087.75 884.25 L1084.15 885.3 1083.2 885.55 1080.25 886.15 1077.45 886.65 1076.2 886.75 Q1072.4 886.65 1068.3 883.75 1063.25 879.95 1061 873.6 1060.1 871 1059.85 868.6 1060.05 866.8 1060.65 865.1 1062.4 860.45 1066.6 859.15 L1069.25 858.6 Q1083.3 855.75 1094.75 858.25 L1095.9 858.55 Q1101.6 859.95 1104.8 862.35 M1199.25 862.35 Q1202.45 859.95 1208.15 858.55 L1209.3 858.25 Q1220.75 855.75 1234.8 858.6 L1237.45 859.15 Q1241.65 860.45 1243.4 865.1 1244 866.8 1244.2 868.6 1243.95 871 1243.05 873.6 1240.8 879.95 1235.75 883.75 1231.65 886.65 1227.85 886.75 L1226.6 886.65 1223.8 886.15 1220.85 885.55 1219.9 885.3 1216.3 884.25 Q1217.85 883.7 1219.6 882.5 1223.25 879.75 1224.9 875.15 1225.5 873.55 1225.7 872 1226.05 869.3 1225.15 866.85 1223.85 863.5 1220.8 862.65 L1218.9 862.2 Q1208.8 860.15 1200.55 861.95 L1199.25 862.35"/>
+ <path stroke="none" fill="#FFAAFF" d="M1199.25 862.35 L1200.55 861.95 Q1208.8 860.15 1218.9 862.2 L1220.8 862.65 Q1223.85 863.5 1225.15 866.85 1226.05 869.3 1225.7 872 1225.5 873.55 1224.9 875.15 1223.25 879.75 1219.6 882.5 1217.85 883.7 1216.3 884.25 L1214.9 883.8 Q1207.05 881.1 1201.6 876.85 1197.65 873.85 1196.1 870.8 1194.35 867.45 1195.5 864.05 L1195.8 863.45 Q1197.25 862.8 1199.2 862.35 L1199.25 862.35 M1087.75 884.25 Q1086.2 883.7 1084.45 882.5 1080.8 879.75 1079.15 875.15 1078.55 873.55 1078.35 872 1078 869.3 1078.9 866.85 1080.2 863.5 1083.25 862.65 L1085.15 862.2 Q1095.25 860.15 1103.5 861.95 L1104.8 862.35 1104.85 862.35 Q1106.8 862.8 1108.25 863.45 L1108.55 864.05 Q1109.7 867.45 1107.95 870.8 1106.4 873.85 1102.45 876.85 1097 881.1 1089.15 883.8 L1087.75 884.25"/>
+ <path stroke="none" fill="#4F4E4E" d="M1167.5 832 L1207.35 832 Q1216 832 1216 840.7 L1216 844.2 Q1215.75 836 1207.35 836 L1167.5 836 1167.5 832 M1088 844.2 L1088 840.7 Q1088 832 1096.65 832 L1136.5 832 1136.5 836 1096.65 836 Q1088.25 836 1088 844.2"/>
+ <path stroke="none" fill="#F0F0F0" d="M1216 940.45 L1216 951.85 Q1215.75 960 1207.35 960 L1096.65 960 Q1088.25 960 1088 951.85 L1088 940.45 1114.55 921.85 1114.5 923.05 1114.5 924.05 1114.55 925.95 Q1115.05 933.95 1119.7 940.45 L1122.6 943.95 1125.45 946.65 1129.9 949.95 Q1139.45 956.05 1152 956.05 1164.5 956.05 1174.1 949.95 L1178.5 946.65 1181.4 943.95 1184.3 940.45 Q1188.95 933.95 1189.45 925.95 L1189.5 924.05 1189.5 923.05 1189.45 921.85 1216 940.45 M1136.5 836 L1167.5 836 Q1164.3 851.35 1163.35 867 1162.6 879.15 1163.25 891.5 L1163.45 893.5 Q1158.05 892.05 1152 892.05 1145.95 892.05 1140.55 893.5 L1140.75 891.5 Q1141.4 879.15 1140.7 867 1139.7 851.4 1136.5 836"/>
+ <path stroke="none" fill="#FFFFFF" d="M1136.5 836 L1136.5 832 1167.5 832 1167.5 836 1136.5 836 M1189.2 870.25 Q1189.2 867.35 1187.2 865.3 1185.2 863.3 1182.25 863.3 1179.45 863.3 1177.35 865.3 1175.35 867.35 1175.35 870.25 1175.35 873.1 1177.35 875.1 1179.45 877.1 1182.25 877.1 1185.2 877.1 1187.2 875.1 1189.2 873.1 1189.2 870.25 M1193 870.1 Q1193 874.2 1190.05 877.1 1187.15 880.05 1183 880.05 1178.9 880.05 1175.95 877.1 1173.05 874.2 1173.05 870.1 1173.05 865.9 1175.95 863 1178.9 860.1 1183 860.1 1187.15 860.1 1190.05 863 1193 865.9 1193 870.1 M1114.75 870.25 Q1114.75 873.1 1116.8 875.1 1118.8 877.1 1121.7 877.1 1124.55 877.1 1126.6 875.1 1128.65 873.1 1128.65 870.25 1128.65 867.35 1126.6 865.3 1124.55 863.3 1121.7 863.3 1118.8 863.3 1116.8 865.3 1114.75 867.35 1114.75 870.25 M1111 870.1 Q1111 865.9 1113.9 863 1116.85 860.1 1121 860.1 1125.05 860.1 1128.05 863 1130.95 865.9 1130.95 870.1 1130.95 874.2 1128.05 877.1 1125.05 880.05 1121 880.05 1116.85 880.05 1113.9 877.1 1111 874.2 1111 870.1"/>
+ <path stroke="none" fill="#5B5B5B" d="M1189.2 870.25 Q1189.2 873.1 1187.2 875.1 1185.2 877.1 1182.25 877.1 1179.45 877.1 1177.35 875.1 1175.35 873.1 1175.35 870.25 1175.35 867.35 1177.35 865.3 1179.45 863.3 1182.25 863.3 1185.2 863.3 1187.2 865.3 1189.2 867.35 1189.2 870.25 M1114.75 870.25 Q1114.75 867.35 1116.8 865.3 1118.8 863.3 1121.7 863.3 1124.55 863.3 1126.6 865.3 1128.65 867.35 1128.65 870.25 1128.65 873.1 1126.6 875.1 1124.55 877.1 1121.7 877.1 1118.8 877.1 1116.8 875.1 1114.75 873.1 1114.75 870.25"/>
+ <path stroke="none" fill="#414040" d="M1216 844.2 L1216 940.45 1189.45 921.85 Q1188.55 910 1178.5 901.4 1171.8 895.7 1163.45 893.5 L1163.25 891.5 Q1162.6 879.15 1163.35 867 1164.3 851.35 1167.5 836 L1207.35 836 Q1215.75 836 1216 844.2 M1088 940.45 L1088 844.2 Q1088.25 836 1096.65 836 L1136.5 836 Q1139.7 851.4 1140.7 867 1141.4 879.15 1140.75 891.5 L1140.55 893.5 Q1132.15 895.7 1125.45 901.4 1115.4 910 1114.55 921.85 L1088 940.45 M1193 870.1 Q1193 865.9 1190.05 863 1187.15 860.1 1183 860.1 1178.9 860.1 1175.95 863 1173.05 865.9 1173.05 870.1 1173.05 874.2 1175.95 877.1 1178.9 880.05 1183 880.05 1187.15 880.05 1190.05 877.1 1193 874.2 1193 870.1 M1111 870.1 Q1111 874.2 1113.9 877.1 1116.85 880.05 1121 880.05 1125.05 880.05 1128.05 877.1 1130.95 874.2 1130.95 870.1 1130.95 865.9 1128.05 863 1125.05 860.1 1121 860.1 1116.85 860.1 1113.9 863 1111 865.9 1111 870.1"/>
+ <path stroke="none" fill="#FFC4FF" d="M1140.55 893.5 Q1145.95 892.05 1152 892.05 1158.05 892.05 1163.45 893.5 1171.8 895.7 1178.5 901.4 1188.55 910 1189.45 921.85 L1189.5 923.05 1189.5 924.05 1189.45 925.95 Q1189.3 923.65 1188.8 921.55 1186.65 912.4 1178.5 905.4 1172.2 900.05 1164.45 897.75 1158.65 896.05 1152 896.05 1145.35 896.05 1139.6 897.75 1131.75 900.05 1125.45 905.4 1117.25 912.4 1115.2 921.55 1114.7 923.7 1114.55 925.95 L1114.5 924.05 1114.5 923.05 1114.55 921.85 Q1115.4 910 1125.45 901.4 1132.15 895.7 1140.55 893.5"/>
+ <path stroke="none" fill="#FFAAFF" d="M1189.45 925.95 Q1188.95 933.95 1184.3 940.45 L1181.4 943.95 1178.5 946.65 1174.1 949.95 Q1164.25 947.95 1152 947.95 1139.7 947.95 1129.9 949.95 L1125.45 946.65 1122.6 943.95 1119.7 940.45 Q1115.05 933.95 1114.55 925.95 1114.7 923.7 1115.2 921.55 1117.25 912.4 1125.45 905.4 1131.75 900.05 1139.6 897.75 1145.35 896.05 1152 896.05 1158.65 896.05 1164.45 897.75 1172.2 900.05 1178.5 905.4 1186.65 912.4 1188.8 921.55 1189.3 923.65 1189.45 925.95 M1170.5 906.2 L1169.65 905.6 1168.3 905.25 1166.05 905.55 1165.8 905.65 Q1162.95 906.5 1160.45 909 L1160.3 909.15 Q1159.65 909.85 1159.3 910.7 1158.9 911.6 1158.9 912.7 1158.9 914.85 1160.4 916.35 1161.9 917.85 1164.05 917.85 1166.1 917.85 1167.6 916.45 L1167.75 916.3 Q1169.8 914.25 1170.75 912 L1171.2 910.7 1171.35 910.2 1171.5 909.1 Q1171.55 907.9 1171.1 907.05 L1170.5 906.2 M1136.4 916.45 Q1137.9 917.85 1139.95 917.85 1142.1 917.85 1143.6 916.35 1145.1 914.85 1145.1 912.7 1145.1 911.6 1144.75 910.7 L1143.7 909.15 1143.55 909 Q1141 906.45 1138.15 905.6 L1137.95 905.55 1135.7 905.25 1134.4 905.6 Q1133.9 905.8 1133.5 906.2 1133.15 906.55 1132.9 907.05 1132.45 907.9 1132.55 909.1 L1132.7 910.2 1132.8 910.7 Q1132.95 911.35 1133.25 912 1134.2 914.25 1136.25 916.3 L1136.4 916.45"/>
+ <path stroke="none" fill="#A66EA6" d="M1136.4 916.45 L1136.25 916.3 Q1134.2 914.25 1133.25 912 1132.95 911.35 1132.8 910.7 L1132.7 910.2 1132.55 909.1 Q1132.45 907.9 1132.9 907.05 1133.15 906.55 1133.5 906.2 1133.9 905.8 1134.4 905.6 L1135.7 905.25 1137.95 905.55 1138.15 905.6 Q1141 906.45 1143.55 909 L1143.7 909.15 1144.75 910.7 Q1145.1 911.6 1145.1 912.7 1145.1 914.85 1143.6 916.35 1142.1 917.85 1139.95 917.85 1137.9 917.85 1136.4 916.45 M1170.5 906.2 L1171.1 907.05 Q1171.55 907.9 1171.5 909.1 L1171.35 910.2 1171.2 910.7 1170.75 912 Q1169.8 914.25 1167.75 916.3 L1167.6 916.45 Q1166.1 917.85 1164.05 917.85 1161.9 917.85 1160.4 916.35 1158.9 914.85 1158.9 912.7 1158.9 911.6 1159.3 910.7 1159.65 909.85 1160.3 909.15 L1160.45 909 Q1162.95 906.5 1165.8 905.65 L1166.05 905.55 1168.3 905.25 1169.65 905.6 1170.5 906.2"/>
+ <path stroke="none" fill="#F0A0F0" d="M1174.1 949.95 Q1164.5 956.05 1152 956.05 1139.45 956.05 1129.9 949.95 1139.7 947.95 1152 947.95 1164.25 947.95 1174.1 949.95"/>
+ <path stroke="none" fill="#704E35" d="M1096.7 668.3 Q1086.35 666.65 1074 669.1 L1071.2 669.75 Q1067.05 671 1065.25 675.65 1063.4 680.9 1065.6 687.1 1067.9 693.55 1073 697.3 1074.95 698.85 1077 699.5 1073.15 699.4 1069.05 696.5 1064.1 692.7 1061.8 686.35 1059.55 680.05 1061.45 674.85 1063.2 670.2 1067.4 668.95 L1070 668.4 Q1084.05 665.55 1095.5 668 L1096.7 668.3 M1179.8 773.05 Q1179.1 771.25 1177.35 769.05 1173.4 763.8 1166 759.55 1151.45 751.9 1138 759.55 1130.55 763.8 1126.6 769.05 1124.85 771.25 1124.2 773.1 1122.65 770.15 1126.6 765.05 1130.55 759.8 1138 755.55 1151.45 747.9 1166 755.55 1173.4 759.8 1177.35 765.05 1181.35 770.15 1179.8 773.05 M1227 699.45 Q1229.05 698.85 1231 697.3 1236.15 693.5 1238.4 687.1 1240.6 680.9 1238.75 675.6 1236.95 670.95 1232.8 669.75 L1230 669.1 Q1217.65 666.65 1207.3 668.3 L1208.5 667.95 Q1219.95 665.5 1234 668.35 L1236.6 668.9 Q1240.8 670.2 1242.55 674.85 1244.45 680.05 1242.2 686.35 1239.9 692.7 1234.95 696.5 1230.85 699.4 1227 699.45"/>
+ <path stroke="none" fill="#5F422D" d="M1227 699.45 L1225.8 699.45 1223 698.85 1220 698.25 1215.5 696.95 Q1217.05 696.45 1218.75 695.3 1222.4 692.45 1224.05 687.9 1225.7 683.4 1224.35 679.6 1223 676.3 1219.95 675.45 1219.1 675.05 1218.05 675 1208 672.9 1199.7 674.7 L1198.35 675.1 1196.65 675.6 1195 676.15 1195.25 675.65 Q1197.15 672.1 1202.3 669.9 1204.55 669 1207.3 668.3 1217.65 666.65 1230 669.1 L1232.8 669.75 Q1236.95 670.95 1238.75 675.6 1240.6 680.9 1238.4 687.1 1236.15 693.5 1231 697.3 1229.05 698.85 1227 699.45 M1077 699.5 Q1074.95 698.85 1073 697.3 1067.9 693.55 1065.6 687.1 1063.4 680.9 1065.25 675.65 1067.05 671 1071.2 669.75 L1074 669.1 Q1086.35 666.65 1096.7 668.3 1106 670.65 1108.75 675.65 L1109 676.2 1105.65 675.15 1104.3 674.7 Q1096 672.95 1085.95 675 L1084.05 675.45 Q1081 676.3 1079.65 679.6 1078.3 683.45 1079.95 687.95 1081.6 692.5 1085.25 695.3 1086.95 696.5 1088.5 697 L1084 698.3 1081 698.9 1078.2 699.45 1077 699.5 M1124.2 773.1 Q1124.85 771.25 1126.6 769.05 1130.55 763.8 1138 759.55 1151.45 751.9 1166 759.55 1173.4 763.8 1177.35 769.05 1179.1 771.25 1179.8 773.05 L1179.7 773.2 Q1177.95 776.3 1171.35 775.4 1166.9 774.75 1162 772.5 1162.8 774.7 1163.05 776.75 L1163.1 777 Q1163.3 778.9 1162.95 780.15 1162.65 781.3 1161.8 781.8 1159.9 782.9 1156.65 780.4 1154.15 778.4 1152 775.1 1149.8 778.4 1147.3 780.4 1144.1 782.9 1142.2 781.8 1141.35 781.3 1141 780.15 1140.65 778.9 1140.9 777.05 L1140.9 776.75 Q1141.2 774.7 1142.05 772.5 1137.1 774.75 1132.6 775.4 1126.05 776.3 1124.25 773.2 L1124.2 773.1"/>
+ <path stroke="none" fill="#4F3725" d="M1088.5 697 Q1086.95 696.5 1085.25 695.3 1081.6 692.5 1079.95 687.95 1078.3 683.45 1079.65 679.6 1081 676.3 1084.05 675.45 L1085.95 675 Q1096 672.95 1104.3 674.7 L1105.65 675.15 1109 676.2 1109.3 676.8 Q1110.5 680.2 1108.75 683.55 1107.2 686.6 1103.25 689.65 1097.75 693.9 1089.95 696.55 L1088.5 697 M1195 676.15 L1196.65 675.6 1198.35 675.1 1199.7 674.7 Q1208 672.9 1218.05 675 1219.1 675.05 1219.95 675.45 1223 676.3 1224.35 679.6 1225.7 683.4 1224.05 687.9 1222.4 692.45 1218.75 695.3 1217.05 696.45 1215.5 696.95 L1214.05 696.55 Q1206.25 693.9 1200.75 689.6 1196.8 686.6 1195.25 683.55 1193.8 680.7 1194.35 677.9 L1194.7 676.75 1195 676.15"/>
+ <path stroke="none" fill="#B4723F" d="M1088 652.2 L1088 648.7 Q1088 640 1096.65 640 L1207.35 640 Q1216 640 1216 648.7 L1216 652.2 Q1215.75 644 1207.35 644 L1163 644 1143.05 644 1096.65 644 Q1088.25 644 1088 652.2"/>
+ <path stroke="none" fill="#5B5B5B" d="M1110.95 690.55 Q1110.95 687.9 1112.75 686.1 1114.6 684.25 1117.25 684.25 1119.8 684.25 1121.7 686.1 1123.55 687.9 1123.55 690.55 1123.55 693.1 1121.7 694.9 1119.8 696.7 1117.25 696.7 1114.6 696.7 1112.75 694.9 1110.95 693.1 1110.95 690.55 M1193.05 690.55 Q1193.05 693.1 1191.25 694.9 1189.4 696.7 1186.75 696.7 1184.2 696.7 1182.3 694.9 1180.45 693.1 1180.45 690.55 1180.45 687.9 1182.3 686.1 1184.2 684.25 1186.75 684.25 1189.4 684.25 1191.25 686.1 1193.05 687.9 1193.05 690.55"/>
+ <path stroke="none" fill="#FFFFFF" d="M1193.05 690.55 Q1193.05 687.9 1191.25 686.1 1189.4 684.25 1186.75 684.25 1184.2 684.25 1182.3 686.1 1180.45 687.9 1180.45 690.55 1180.45 693.1 1182.3 694.9 1184.2 696.7 1186.75 696.7 1189.4 696.7 1191.25 694.9 1193.05 693.1 1193.05 690.55 M1105.45 689.35 Q1105.45 685.15 1108.4 682.25 1111.35 679.3 1115.5 679.3 1119.6 679.3 1122.6 682.25 1125.5 685.15 1125.5 689.35 1125.5 693.5 1122.6 696.35 1119.6 699.35 1115.5 699.35 1111.35 699.35 1108.4 696.35 1105.45 693.5 1105.45 689.35 M1110.95 690.55 Q1110.95 693.1 1112.75 694.9 1114.6 696.7 1117.25 696.7 1119.8 696.7 1121.7 694.9 1123.55 693.1 1123.55 690.55 1123.55 687.9 1121.7 686.1 1119.8 684.25 1117.25 684.25 1114.6 684.25 1112.75 686.1 1110.95 687.9 1110.95 690.55 M1198.55 689.35 Q1198.55 693.5 1195.6 696.35 1192.65 699.35 1188.5 699.35 1184.4 699.35 1181.4 696.35 1178.5 693.5 1178.5 689.35 1178.5 685.15 1181.4 682.25 1184.4 679.3 1188.5 679.3 1192.65 679.3 1195.6 682.25 1198.55 685.15 1198.55 689.35"/>
+ <path stroke="none" fill="#A16639" d="M1198.55 689.35 Q1198.55 685.15 1195.6 682.25 1192.65 679.3 1188.5 679.3 1184.4 679.3 1181.4 682.25 1178.5 685.15 1178.5 689.35 1178.5 693.5 1181.4 696.35 1184.4 699.35 1188.5 699.35 1192.65 699.35 1195.6 696.35 1198.55 693.5 1198.55 689.35 M1216 652.2 L1216 759.85 Q1215.75 768 1207.35 768 L1096.65 768 Q1088.25 768 1088 759.85 L1088 652.2 Q1088.25 644 1096.65 644 L1143.05 644 1142.8 655.35 Q1142.4 664.4 1141.2 673 1139.05 688.7 1134.5 703.05 1130.2 705.15 1126.45 708.35 1115.9 717.4 1115.5 730 L1115.5 731 1115.55 732.9 Q1116.3 744.9 1126.45 753.6 1137.45 763 1153 763 1168.5 763 1179.5 753.6 1189.7 744.95 1190.45 732.9 L1190.5 731 1190.5 730 Q1190.05 717.4 1179.5 708.35 1175.75 705.15 1171.5 703.1 1166.85 688.4 1164.75 672.35 1163.55 663.95 1163.25 656 1162.95 650.1 1163 644 L1207.35 644 Q1215.75 644 1216 652.2 M1105.45 689.35 Q1105.45 693.5 1108.4 696.35 1111.35 699.35 1115.5 699.35 1119.6 699.35 1122.6 696.35 1125.5 693.5 1125.5 689.35 1125.5 685.15 1122.6 682.25 1119.6 679.3 1115.5 679.3 1111.35 679.3 1108.4 682.25 1105.45 685.15 1105.45 689.35"/>
+ <path stroke="none" fill="#704E35" d="M1190.45 732.9 Q1189.6 721 1179.5 712.35 1176.5 709.8 1173.15 707.95 1164.25 703 1153 703 1141.75 703 1132.9 707.9 1129.5 709.75 1126.45 712.35 1116.35 721 1115.55 732.9 L1115.5 731 1115.5 730 Q1115.9 717.4 1126.45 708.35 1130.2 705.15 1134.5 703.05 1142.75 699 1153 699 1163.25 699 1171.5 703.1 1175.75 705.15 1179.5 708.35 1190.05 717.4 1190.5 730 L1190.5 731 1190.45 732.9"/>
+ <path stroke="none" fill="#5F422D" d="M1190.45 732.9 Q1189.7 744.95 1179.5 753.6 1168.5 763 1153 763 1137.45 763 1126.45 753.6 1116.3 744.9 1115.55 732.9 1116.35 721 1126.45 712.35 1129.5 709.75 1132.9 707.9 1141.75 703 1153 703 1164.25 703 1173.15 707.95 1176.5 709.8 1179.5 712.35 1189.6 721 1190.45 732.9 M1143.05 644 L1163 644 Q1162.95 650.1 1163.25 656 1163.55 663.95 1164.75 672.35 1166.85 688.4 1171.5 703.1 1163.25 699 1153 699 1142.75 699 1134.5 703.05 1139.05 688.7 1141.2 673 1142.4 664.4 1142.8 655.35 L1143.05 644 M1137.4 723.4 Q1138.9 724.8 1140.95 724.8 1143.1 724.8 1144.6 723.3 1146.1 721.8 1146.1 719.65 1146.1 718.55 1145.75 717.65 L1144.7 716.1 1144.55 715.95 Q1142 713.4 1139.15 712.55 L1138.95 712.5 Q1136.75 711.85 1135.4 712.55 1134.9 712.75 1134.5 713.15 L1133.9 714 Q1133.25 715.25 1133.7 717.15 L1133.8 717.65 1134.25 718.95 Q1135.2 721.2 1137.25 723.25 L1137.4 723.4 M1171.5 713.15 L1170.65 712.55 Q1169.25 711.85 1167.05 712.5 L1166.8 712.6 Q1163.95 713.45 1161.45 715.95 L1161.3 716.1 Q1160.65 716.8 1160.3 717.65 1159.9 718.55 1159.9 719.65 1159.9 721.8 1161.4 723.3 1162.9 724.8 1165.05 724.8 1167.1 724.8 1168.6 723.4 L1168.75 723.25 Q1170.8 721.2 1171.75 718.95 L1172.2 717.65 1172.35 717.15 Q1172.75 715.25 1172.1 714 L1171.5 713.15"/>
+ <path stroke="none" fill="#4F3725" d="M1171.5 713.15 L1172.1 714 Q1172.75 715.25 1172.35 717.15 L1172.2 717.65 1171.75 718.95 Q1170.8 721.2 1168.75 723.25 L1168.6 723.4 Q1167.1 724.8 1165.05 724.8 1162.9 724.8 1161.4 723.3 1159.9 721.8 1159.9 719.65 1159.9 718.55 1160.3 717.65 1160.65 716.8 1161.3 716.1 L1161.45 715.95 Q1163.95 713.45 1166.8 712.6 L1167.05 712.5 Q1169.25 711.85 1170.65 712.55 L1171.5 713.15 M1137.4 723.4 L1137.25 723.25 Q1135.2 721.2 1134.25 718.95 L1133.8 717.65 1133.7 717.15 Q1133.25 715.25 1133.9 714 L1134.5 713.15 Q1134.9 712.75 1135.4 712.55 1136.75 711.85 1138.95 712.5 L1139.15 712.55 Q1142 713.4 1144.55 715.95 L1144.7 716.1 1145.75 717.65 Q1146.1 718.55 1146.1 719.65 1146.1 721.8 1144.6 723.3 1143.1 724.8 1140.95 724.8 1138.9 724.8 1137.4 723.4"/>
+ <path stroke="none" fill="#FFDFC6" d="M1147.4 644.2 Q1144.35 641.25 1139.6 639.05 1126.1 633.95 1116.05 639.75 1107.7 644.65 1097.85 642.1 1089.9 640.2 1089 632.85 1091.75 629.7 1097.35 629.2 1095.3 636.6 1101.85 638.5 1109.85 641.05 1119.3 636.15 1130.65 630.35 1141 635.45 1146.4 638.9 1147.4 644.2 M1215 632.85 Q1214.1 640.2 1206.15 642.1 1196.3 644.65 1187.95 639.75 1177.9 633.95 1164.4 639.05 1159.65 641.25 1156.6 644.2 1157.6 638.9 1163 635.45 1173.35 630.35 1184.7 636.15 1194.15 641.05 1202.15 638.5 1208.7 636.6 1206.65 629.2 1212.25 629.7 1215 632.85"/>
+ <path stroke="none" fill="#EBCEB7" d="M1215 632.85 Q1218.85 637.3 1217.15 647.1 1215.2 658.25 1196.05 662.55 1165.05 668.45 1158.25 654.35 1157.05 651.6 1156.5 648.3 1156.25 646.1 1156.6 644.2 1159.65 641.25 1164.4 639.05 1177.9 633.95 1187.95 639.75 1196.3 644.65 1206.15 642.1 1214.1 640.2 1215 632.85 M1089 632.85 Q1089.9 640.2 1097.85 642.1 1107.7 644.65 1116.05 639.75 1126.1 633.95 1139.6 639.05 1144.35 641.25 1147.4 644.2 1147.75 646.1 1147.5 648.3 1146.95 651.6 1145.75 654.35 1138.95 668.45 1107.95 662.55 1088.8 658.25 1086.85 647.1 1085.15 637.3 1089 632.85"/>
+ <path stroke="none" fill="#D49562" d="M1260 444.75 Q1260.3 448.8 1262.15 448.6 1264.15 448.15 1266.8 440.45 1269.4 430.75 1270.7 420.65 1271.05 417.5 1273.6 415.55 1276.05 413.65 1279.15 414 1282.3 414.3 1284.2 416.8 1285.9 418.95 1285.9 421.55 L1286.05 429.15 1285.9 425.55 Q1285.9 422.95 1284.2 420.8 1282.3 418.3 1279.15 418 1276.05 417.65 1273.6 419.55 1271.05 421.5 1270.7 424.65 1269.4 434.75 1266.8 444.45 1264.15 452.15 1262.15 452.6 1259.55 452.9 1260 444.75 M1198.25 496.9 Q1197.65 494.95 1198.25 492.9 1199.05 489.85 1201.9 488.35 L1201.95 488.3 1206.1 485.05 1208.05 487.25 Q1205.3 489.9 1201.95 492.3 L1201.9 492.35 Q1199.05 493.85 1198.25 496.9 M1219.95 459.05 L1221.7 447.95 Q1222.1 444.85 1224.6 442.85 1227.1 440.9 1230.25 441.35 1233.4 441.7 1235.35 444.15 1237.25 446.65 1236.95 449.8 L1236.75 451 Q1236.35 449.45 1235.35 448.15 1233.4 445.7 1230.25 445.35 1227.1 444.9 1224.6 446.85 1222.1 448.85 1221.7 451.95 L1220.65 459.3 1219.95 459.05 M1236.4 458.55 Q1236.6 460.8 1237.6 461 1239.2 461.4 1241.3 454.65 1244 444.95 1245.2 434.8 1245.55 431.7 1248.05 429.75 1250.5 427.8 1253.65 428.2 1256.8 428.55 1258.7 431.1 1260.8 433.6 1260.35 436.7 L1260.25 438.05 Q1259.85 436.45 1258.7 435.1 1256.8 432.55 1253.65 432.2 1250.5 431.8 1248.05 433.75 1245.55 435.7 1245.2 438.8 1244 448.95 1241.3 458.65 1239.2 465.4 1237.6 465 1235.95 464.7 1236.4 458.55 M1067.6 458.55 Q1068.05 464.7 1066.4 465 1064.8 465.4 1062.7 458.65 1060 448.95 1058.8 438.8 1058.45 435.7 1055.95 433.75 1053.5 431.8 1050.35 432.2 1047.2 432.55 1045.3 435.1 1044.15 436.45 1043.75 438.05 L1043.65 436.7 Q1043.2 433.6 1045.3 431.1 1047.2 428.55 1050.35 428.2 1053.5 427.8 1055.95 429.75 1058.45 431.7 1058.8 434.8 1060 444.95 1062.7 454.65 1064.8 461.4 1066.4 461 1067.4 460.8 1067.6 458.55 M1044 444.75 Q1044.45 452.9 1041.85 452.6 1039.85 452.15 1037.2 444.45 1034.6 434.75 1033.3 424.65 1032.95 421.5 1030.4 419.55 1027.95 417.65 1024.85 418 1021.7 418.3 1019.8 420.8 1018.1 422.95 1018.1 425.55 L1017.95 429.15 Q1017.9 425.4 1018.1 421.55 1018.1 418.95 1019.8 416.8 1021.7 414.3 1024.85 414 1027.95 413.65 1030.4 415.55 1032.95 417.5 1033.3 420.65 1034.6 430.75 1037.2 440.45 1039.85 448.15 1041.85 448.6 1043.7 448.8 1044 444.75 M1083.4 459.3 L1082.3 451.95 Q1081.9 448.85 1079.4 446.85 1076.9 444.9 1073.75 445.35 1070.6 445.7 1068.65 448.15 1067.65 449.45 1067.25 451 L1067.05 449.8 Q1066.75 446.65 1068.65 444.15 1070.6 441.7 1073.75 441.35 1076.9 440.9 1079.4 442.85 1081.9 444.85 1082.3 447.95 1082.95 453.55 1084.1 459.05 L1083.4 459.3 M1097.95 485.05 Q1099.85 486.75 1102.05 488.3 L1102.1 488.35 Q1104.95 489.85 1105.75 492.9 1106.35 494.95 1105.75 496.9 1104.95 493.85 1102.1 492.35 L1102.05 492.3 Q1098.7 489.9 1096 487.25 L1097.95 485.05"/>
+ <path stroke="none" fill="#BF8658" d="M1260 444.75 Q1259.55 452.9 1262.15 452.6 1264.15 452.15 1266.8 444.45 1269.4 434.75 1270.7 424.65 1271.05 421.5 1273.6 419.55 1276.05 417.65 1279.15 418 1282.3 418.3 1284.2 420.8 1285.9 422.95 1285.9 425.55 L1286.05 429.15 Q1285.95 434 1285.35 438.65 1261 472.75 1233.6 488.1 1234.75 486.35 1235.1 483.6 L1235.2 481.85 Q1235.25 475.85 1231.6 469.6 1227.95 463.25 1222.7 460.25 1221.65 459.65 1220.65 459.3 L1221.7 451.95 Q1222.1 448.85 1224.6 446.85 1227.1 444.9 1230.25 445.35 1233.4 445.7 1235.35 448.15 1236.35 449.45 1236.75 451 L1236.6 452 Q1236.15 456.3 1236.4 458.55 1235.95 464.7 1237.6 465 1239.2 465.4 1241.3 458.65 1244 448.95 1245.2 438.8 1245.55 435.7 1248.05 433.75 1250.5 431.8 1253.65 432.2 1256.8 432.55 1258.7 435.1 1259.85 436.45 1260.25 438.05 L1260.05 439.55 Q1259.8 442.7 1260 444.75 M1199.6 499.7 L1198.95 498.75 Q1198.45 497.9 1198.25 497 L1198.25 496.9 Q1199.05 493.85 1201.9 492.35 L1201.95 492.3 Q1205.3 489.9 1208.05 487.25 1211.75 491.55 1214.55 496.35 1207.2 498.65 1199.6 499.7 M1043.75 438.05 Q1044.15 436.45 1045.3 435.1 1047.2 432.55 1050.35 432.2 1053.5 431.8 1055.95 433.75 1058.45 435.7 1058.8 438.8 1060 448.95 1062.7 458.65 1064.8 465.4 1066.4 465 1068.05 464.7 1067.6 458.55 1067.85 456.3 1067.4 452 L1067.25 451 Q1067.65 449.45 1068.65 448.15 1070.6 445.7 1073.75 445.35 1076.9 444.9 1079.4 446.85 1081.9 448.85 1082.3 451.95 L1083.4 459.3 Q1082.4 459.7 1081.35 460.25 1076.1 463.25 1072.45 469.6 1068.8 475.85 1068.85 481.85 L1069 483.6 Q1069.3 486.4 1070.55 488.15 1043.05 472.8 1018.65 438.65 1018.05 434 1017.95 429.15 L1018.1 425.55 Q1018.1 422.95 1019.8 420.8 1021.7 418.3 1024.85 418 1027.95 417.65 1030.4 419.55 1032.95 421.5 1033.3 424.65 1034.6 434.75 1037.2 444.45 1039.85 452.15 1041.85 452.6 1044.45 452.9 1044 444.75 L1043.95 439.55 1043.75 438.05 M1105.75 496.9 L1105.75 497 1105.05 498.75 1104.4 499.7 Q1096.85 498.65 1089.5 496.35 1092.3 491.6 1096 487.25 1098.7 489.9 1102.05 492.3 L1102.1 492.35 Q1104.95 493.85 1105.75 496.9"/>
+ <path stroke="none" fill="#B67340" d="M1198 477.7 L1197.4 477.2 1196.45 476.45 1197.2 475.05 Q1201.95 466.3 1212.4 460.25 L1214.55 459.05 Q1216.9 458.1 1219.95 459.05 L1220.65 459.3 Q1221.65 459.65 1222.7 460.25 1227.95 463.25 1231.6 469.6 1235.25 475.85 1235.2 481.85 L1235.1 483.6 Q1234.55 478.65 1231.6 473.6 1227.95 467.25 1222.7 464.25 1221.25 463.45 1219.95 463.05 L1219.1 462.8 1214.55 463.05 1212.4 464.25 Q1202.75 469.85 1198 477.7 M1069 483.6 L1068.85 481.85 Q1068.8 475.85 1072.45 469.6 1076.1 463.25 1081.35 460.25 1082.4 459.7 1083.4 459.3 L1084.1 459.05 Q1087.1 458.05 1089.5 459.05 L1091.65 460.25 Q1102.1 466.3 1106.85 475.05 L1107.6 476.45 1106.05 477.65 Q1101.25 469.8 1091.65 464.25 L1089.5 463.05 1084.95 462.85 1084.1 463.05 1081.35 464.25 Q1076.1 467.25 1072.45 473.6 1069.5 478.65 1069 483.6"/>
+ <path stroke="none" fill="#8E5A32" d="M1069 483.6 Q1069.5 478.65 1072.45 473.6 1076.1 467.25 1081.35 464.25 L1084.1 463.05 1084.95 462.85 1089.5 463.05 1091.65 464.25 Q1101.25 469.8 1106.05 477.65 1102.95 480.05 1100.05 482.95 1096.45 478.9 1091.05 475.75 L1089.3 474.8 1087.1 474.4 Q1085.05 474.4 1082.55 475.75 1078.25 478.25 1075.25 483.5 1073.5 486.45 1072.8 489.35 L1072.65 490.05 1071.9 489.55 1070.55 488.15 Q1069.3 486.4 1069 483.6 M1204 482.95 L1198 477.7 Q1202.75 469.85 1212.4 464.25 L1214.55 463.05 1219.1 462.8 1219.95 463.05 Q1221.25 463.45 1222.7 464.25 1227.95 467.25 1231.6 473.6 1234.55 478.65 1235.1 483.6 1234.75 486.35 1233.6 488.1 L1232.15 489.55 1231.4 490.05 1231.25 489.35 Q1230.55 486.45 1228.8 483.5 1225.8 478.25 1221.5 475.75 1218.95 474.4 1216.9 474.4 L1214.75 474.8 1214.7 474.85 1213 475.75 Q1207.6 478.9 1204 482.95"/>
+ <path stroke="none" fill="#774B2A" d="M1204 482.95 Q1207.6 478.9 1213 475.75 L1214.7 474.85 1214.75 474.8 1216.9 474.4 Q1218.95 474.4 1221.5 475.75 1225.8 478.25 1228.8 483.5 1230.55 486.45 1231.25 489.35 L1231.4 490.05 1230.1 490.8 Q1222.2 495.35 1214.6 496.4 L1214.55 496.35 Q1211.75 491.55 1208.05 487.25 L1206.1 485.05 1204.3 483.2 1204 482.95 M1100.05 482.95 L1099.75 483.2 1097.95 485.05 1096 487.25 Q1092.3 491.6 1089.5 496.35 L1089.45 496.4 Q1081.85 495.35 1073.95 490.8 L1072.65 490.05 1072.8 489.35 Q1073.5 486.45 1075.25 483.5 1078.25 478.25 1082.55 475.75 1085.05 474.4 1087.1 474.4 L1089.3 474.8 1091.05 475.75 Q1096.45 478.9 1100.05 482.95"/>
+ <path stroke="none" fill="#B47E52" d="M1285.35 438.65 Q1284.3 446.3 1281.9 453.3 1275.25 472.6 1258.1 487.2 1241.8 500.8 1214.65 502.8 L1203.5 502.35 Q1201 501.65 1199.6 499.7 1207.2 498.65 1214.55 496.35 L1214.6 496.4 Q1222.2 495.35 1230.1 490.8 L1231.4 490.05 1232.15 489.55 1233.6 488.1 Q1261 472.75 1285.35 438.65 M1018.65 438.65 Q1043.05 472.8 1070.55 488.15 L1071.9 489.55 1072.65 490.05 1073.95 490.8 Q1081.85 495.35 1089.45 496.4 L1089.5 496.35 Q1096.85 498.65 1104.4 499.7 1103 501.65 1100.5 502.35 L1089.35 502.8 Q1062.2 500.8 1045.9 487.2 1028.75 472.6 1022.1 453.3 1019.7 446.3 1018.65 438.65"/>
+ <path stroke="none" fill="#B4723F" d="M1173 448 L1207.35 448 Q1216 448 1216 456.7 L1216 460.2 Q1215.75 452 1207.35 452 L1173 452 1173 451.2 1173 448 M1088 460.2 L1088 456.7 Q1088 448 1096.65 448 L1131 448 1131 451.2 1131 452 1096.65 452 Q1088.25 452 1088 460.2"/>
+ <path stroke="none" fill="#BD7841" d="M1131 448 L1131 447.45 Q1131 444.65 1132.95 442.65 1134.9 440.65 1137.7 440.65 L1166.3 440.65 Q1169.05 440.65 1171 442.65 1173 444.65 1173 447.45 L1173 448 1173 451.2 Q1172.95 449.95 1172.5 448.85 L1172.1 448 1171 446.65 Q1169.05 444.65 1166.3 444.65 L1137.7 444.65 Q1134.9 444.65 1132.95 446.65 L1131.95 448 1131.5 448.8 Q1131.05 449.9 1131 451.2 L1131 448 M1173 466.45 L1172.75 464.8 1173 463.1 1173 466.45 M1131 466.45 L1131 463.1 1131.25 464.8 Q1131.05 465.55 1131 466.45"/>
+ <path stroke="none" fill="#AA6C3B" d="M1131 466.45 Q1131.05 465.55 1131.25 464.8 L1131 463.1 1131 452 1131 451.2 Q1131.05 449.9 1131.5 448.8 L1131.95 448 1132.95 446.65 Q1134.9 444.65 1137.7 444.65 L1166.3 444.65 Q1169.05 444.65 1171 446.65 L1172.1 448 1172.5 448.85 Q1172.95 449.95 1173 451.2 L1173 452 1173 463.1 1172.75 464.8 1173 466.45 1173 478.35 Q1172.9 481.05 1171 482.9 1169.05 484.9 1166.7 486.45 L1164.5 487.85 Q1166.6 501.1 1170.55 513.35 1162.25 509.25 1152 509.25 1141.75 509.25 1133.5 513.3 1137.4 501.05 1139.55 487.85 L1137.55 486.6 Q1134.9 484.9 1132.95 482.9 1131.1 481.05 1131 478.35 L1131 466.45"/>
+ <path stroke="none" fill="#A16639" d="M1131 466.45 L1131 478.35 Q1131.1 481.05 1132.95 482.9 1134.9 484.9 1137.55 486.6 L1139.55 487.85 Q1137.4 501.05 1133.5 513.3 1129.2 515.4 1125.45 518.6 1114.9 527.65 1114.5 540.25 L1114.5 541.25 1114.55 543.15 Q1115.3 555.15 1125.45 563.85 1136.45 573.25 1152 573.25 1167.5 573.25 1178.5 563.85 1188.7 555.2 1189.45 543.15 L1189.5 541.25 1189.5 540.25 Q1189.05 527.65 1178.5 518.6 1174.75 515.45 1170.55 513.35 1166.6 501.1 1164.5 487.85 L1166.7 486.45 Q1169.05 484.9 1171 482.9 1172.9 481.05 1173 478.35 L1173 466.45 1173 463.1 1173 452 1207.35 452 Q1215.75 452 1216 460.2 L1216 567.85 Q1215.75 576 1207.35 576 L1096.65 576 Q1088.25 576 1088 567.85 L1088 460.2 Q1088.25 452 1096.65 452 L1131 452 1131 463.1 1131 466.45 M1200.5 493.8 Q1200.5 488.6 1196.85 484.95 1193.2 481.3 1188 481.3 1182.9 481.3 1179.2 484.95 1175.55 488.6 1175.55 493.8 1175.55 498.95 1179.2 502.55 1182.9 506.25 1188 506.25 1193.2 506.25 1196.85 502.55 1200.5 498.95 1200.5 493.8 M1103.5 493.8 Q1103.5 498.95 1107.15 502.55 1110.8 506.25 1116 506.25 1121.1 506.25 1124.8 502.55 1128.45 498.95 1128.45 493.8 1128.45 488.6 1124.8 484.95 1121.1 481.3 1116 481.3 1110.8 481.3 1107.15 484.95 1103.5 488.6 1103.5 493.8"/>
+ <path stroke="none" fill="#FFFFFF" d="M1103.5 493.8 Q1103.5 488.6 1107.15 484.95 1110.8 481.3 1116 481.3 1121.1 481.3 1124.8 484.95 1128.45 488.6 1128.45 493.8 1128.45 498.95 1124.8 502.55 1121.1 506.25 1116 506.25 1110.8 506.25 1107.15 502.55 1103.5 498.95 1103.5 493.8 M1200.5 493.8 Q1200.5 498.95 1196.85 502.55 1193.2 506.25 1188 506.25 1182.9 506.25 1179.2 502.55 1175.55 498.95 1175.55 493.8 1175.55 488.6 1179.2 484.95 1182.9 481.3 1188 481.3 1193.2 481.3 1196.85 484.95 1200.5 488.6 1200.5 493.8 M1195.75 494 Q1195.75 490.4 1193.25 487.85 1190.75 485.35 1187.1 485.35 1183.55 485.35 1180.95 487.85 1178.45 490.4 1178.45 494 1178.45 497.6 1180.95 500.05 1183.55 502.6 1187.1 502.6 1190.75 502.6 1193.25 500.05 1195.75 497.6 1195.75 494 M1108.2 494 Q1108.2 497.6 1110.75 500.05 1113.25 502.6 1116.9 502.6 1120.45 502.6 1123 500.05 1125.55 497.6 1125.55 494 1125.55 490.4 1123 487.85 1120.45 485.35 1116.9 485.35 1113.25 485.35 1110.75 487.85 1108.2 490.4 1108.2 494"/>
+ <path stroke="none" fill="#5B5B5B" d="M1108.2 494 Q1108.2 490.4 1110.75 487.85 1113.25 485.35 1116.9 485.35 1120.45 485.35 1123 487.85 1125.55 490.4 1125.55 494 1125.55 497.6 1123 500.05 1120.45 502.6 1116.9 502.6 1113.25 502.6 1110.75 500.05 1108.2 497.6 1108.2 494 M1195.75 494 Q1195.75 497.6 1193.25 500.05 1190.75 502.6 1187.1 502.6 1183.55 502.6 1180.95 500.05 1178.45 497.6 1178.45 494 1178.45 490.4 1180.95 487.85 1183.55 485.35 1187.1 485.35 1190.75 485.35 1193.25 487.85 1195.75 490.4 1195.75 494"/>
+ <path stroke="none" fill="#B67340" d="M1170.55 513.35 Q1174.75 515.45 1178.5 518.6 1189.05 527.65 1189.5 540.25 L1189.5 541.25 1189.45 543.15 Q1188.6 531.25 1178.5 522.6 1175.5 520.05 1172.15 518.2 1163.25 513.25 1152 513.25 1140.75 513.25 1131.9 518.15 1128.5 520 1125.45 522.6 1115.35 531.25 1114.55 543.15 L1114.5 541.25 1114.5 540.25 Q1114.9 527.65 1125.45 518.6 1129.2 515.4 1133.5 513.3 1141.75 509.25 1152 509.25 1162.25 509.25 1170.55 513.35"/>
+ <path stroke="none" fill="#8E5A32" d="M1189.45 543.15 Q1188.7 555.2 1178.5 563.85 1167.5 573.25 1152 573.25 1136.45 573.25 1125.45 563.85 1115.3 555.15 1114.55 543.15 1115.35 531.25 1125.45 522.6 1128.5 520 1131.9 518.15 1140.75 513.25 1152 513.25 1163.25 513.25 1172.15 518.2 1175.5 520.05 1178.5 522.6 1188.6 531.25 1189.45 543.15 M1136.4 533.65 Q1137.9 535.05 1139.95 535.05 1142.1 535.05 1143.6 533.55 1145.1 532.05 1145.1 529.9 1145.1 528.8 1144.75 527.9 L1143.7 526.35 1143.55 526.2 Q1141 523.65 1138.15 522.8 L1137.95 522.75 Q1135.75 522.1 1134.4 522.8 1133.9 523 1133.5 523.4 1133.15 523.75 1132.9 524.25 1132.25 525.5 1132.7 527.4 L1132.8 527.9 Q1132.95 528.55 1133.25 529.2 1134.2 531.45 1136.25 533.5 L1136.4 533.65 M1170.5 523.4 L1169.65 522.8 Q1168.25 522.1 1166.05 522.75 L1165.8 522.85 Q1162.95 523.7 1160.45 526.2 L1160.3 526.35 Q1159.65 527.05 1159.3 527.9 1158.9 528.8 1158.9 529.9 1158.9 532.05 1160.4 533.55 1161.9 535.05 1164.05 535.05 1166.1 535.05 1167.6 533.65 L1167.75 533.5 Q1169.8 531.45 1170.75 529.2 L1171.2 527.9 1171.35 527.4 Q1171.75 525.5 1171.1 524.25 L1170.5 523.4"/>
+ <path stroke="none" fill="#704627" d="M1170.5 523.4 L1171.1 524.25 Q1171.75 525.5 1171.35 527.4 L1171.2 527.9 1170.75 529.2 Q1169.8 531.45 1167.75 533.5 L1167.6 533.65 Q1166.1 535.05 1164.05 535.05 1161.9 535.05 1160.4 533.55 1158.9 532.05 1158.9 529.9 1158.9 528.8 1159.3 527.9 1159.65 527.05 1160.3 526.35 L1160.45 526.2 Q1162.95 523.7 1165.8 522.85 L1166.05 522.75 Q1168.25 522.1 1169.65 522.8 L1170.5 523.4 M1136.4 533.65 L1136.25 533.5 Q1134.2 531.45 1133.25 529.2 1132.95 528.55 1132.8 527.9 L1132.7 527.4 Q1132.25 525.5 1132.9 524.25 1133.15 523.75 1133.5 523.4 1133.9 523 1134.4 522.8 1135.75 522.1 1137.95 522.75 L1138.15 522.8 Q1141 523.65 1143.55 526.2 L1143.7 526.35 1144.75 527.9 Q1145.1 528.8 1145.1 529.9 1145.1 532.05 1143.6 533.55 1142.1 535.05 1139.95 535.05 1137.9 535.05 1136.4 533.65"/>
+ </g>
+</svg>
\ No newline at end of file
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://brnw131hmi2ww"
+path="res://.godot/imported/square.svg-2e79ed6254dae08b09e1666544fe0d96.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/Vector/square.svg"
+dest_files=["res://.godot/imported/square.svg-2e79ed6254dae08b09e1666544fe0d96.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
+svg/scale=1.0
+editor/scale_with_editor_scale=false
+editor/convert_colors_with_editor_theme=false
--- /dev/null
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <defs/>
+ <g>
+ <path stroke="none" fill="#A16639" d="M158.65 1028 L153.2 1031.1 Q143.05 1036 146.25 1042.3 L146.25 1042.35 147.95 1045.1 Q150.4 1048.35 154.25 1050.25 163.05 1054.55 168.95 1046.95 L168.9 1046.95 Q176.4 1038 180.3 1028 L183.35 1028 Q191.75 1028 192 1036.2 L192 1054.05 192 1054.75 192 1061.7 192 1083.9 192 1084.25 192 1143.85 Q191.75 1152 183.35 1152 L171.1 1152 Q167.75 1145.3 164.15 1139.9 160.8 1134.85 157.25 1130.95 153.8 1127.1 150.15 1124.35 L151.1 1122.75 151.15 1122.1 150.7 1121.6 146 1119.15 145.3 1119.1 144.8 1119.55 143.55 1121.2 Q141.4 1123.35 138.4 1123.35 136.75 1123.35 135.35 1122.7 134.25 1122.15 133.3 1121.2 L132.5 1120.3 132.85 1120.15 132.8 1120.15 Q135.65 1119.1 137.95 1116.8 140.25 1114.5 141.3 1111.65 L141.3 1110.9 140.75 1110.4 140.05 1110.35 136.25 1111.4 136.2 1111.4 131.9 1112.15 Q136.65 1108.8 140.35 1096.75 143.2 1087.65 144.5 1076.45 145.35 1068.95 145.5 1060.5 L145.5 1059.15 Q145.9 1051.2 142.65 1045.05 L140.35 1041.2 Q135.25 1033.95 128 1033.95 120.75 1033.95 115.6 1041.2 114.3 1043 113.2 1045.15 110.8 1049.85 110.5 1059.15 L110.55 1060.5 Q110.7 1068.95 111.55 1076.45 112.8 1087.65 115.6 1096.75 119.3 1108.7 124.05 1112.1 L119.85 1111.4 116.05 1110.3 115.3 1110.35 114.8 1110.85 Q114.6 1111.2 114.75 1111.6 115.7 1114.5 118.05 1116.8 120.35 1119.1 123.25 1120.15 L123.2 1120.15 123.5 1120.25 122.7 1121.2 120.65 1122.7 Q119.2 1123.35 117.55 1123.35 114.55 1123.35 112.4 1121.2 L111.05 1119.45 110.5 1119 109.85 1119.1 105.25 1121.65 Q104.9 1121.85 104.85 1122.2 104.7 1122.5 104.9 1122.85 L105.95 1124.45 Q102.35 1127.15 99 1130.85 95.35 1134.85 91.9 1139.95 88.3 1145.35 84.9 1152 L72.65 1152 Q64.25 1152 64 1143.85 L64 1084.25 64 1083.95 64 1061.75 64 1054.75 64 1054.1 64 1036.2 Q64.25 1028 72.65 1028 L75.7 1028 Q79.6 1038 87.1 1046.95 L87.05 1046.95 Q92.95 1054.55 101.75 1050.25 105.6 1048.35 108.05 1045.1 L109.75 1042.35 109.75 1042.3 Q112.95 1036 102.8 1031.1 L97.4 1028 158.65 1028 M79.15 1075.2 L78.85 1076.45 78.75 1077.15 Q77.65 1083.25 80.1 1088.55 83 1094.85 89 1096.45 94.95 1098 100.6 1094 106.15 1090.15 108.1 1082.95 L108.1 1082.9 Q109 1079.6 108.45 1076.45 108 1073.95 106.6 1071.55 103.45 1066.15 97.5 1064.6 91.5 1063 86.1 1066.1 L85.8 1066.3 Q80.75 1069.35 79.15 1075.15 L79.15 1075.2 M176.85 1075.2 L176.85 1075.15 Q175.25 1069.3 170.2 1066.3 L169.9 1066.1 Q164.5 1063 158.5 1064.6 152.55 1066.15 149.4 1071.55 148 1073.95 147.6 1076.45 147 1079.6 147.9 1082.9 L147.9 1082.95 Q149.85 1090.15 155.4 1094 161.05 1098 167 1096.45 173 1094.85 175.9 1088.55 178.35 1083.2 177.3 1077.1 L177.15 1076.45 176.85 1075.2"/>
+ <path stroke="none" fill="#FFDFC6" d="M147.95 1045.1 L146.25 1042.35 146.25 1042.3 Q143.05 1036 153.2 1031.1 L158.65 1028 164.05 1024 Q173.9 1015.85 181.95 1002.4 L182.6 1001.8 Q183 1001.65 183.45 1001.8 L184 1002.05 183.95 1002.05 Q177.3 1014.7 169.4 1024 L165.8 1028 Q160.75 1033.3 155.2 1037.3 149.35 1041.45 147.95 1045.1 M97.4 1028 L102.8 1031.1 Q112.95 1036 109.75 1042.3 L109.75 1042.35 108.05 1045.1 Q106.65 1041.45 100.8 1037.3 95.25 1033.3 90.2 1028 L86.6 1024 Q78.7 1014.7 72.05 1002.05 L72 1002.05 Q72.25 1001.85 72.55 1001.8 73 1001.65 73.4 1001.8 L74.05 1002.4 Q82.1 1015.85 91.95 1024 94.6 1026.2 97.4 1028"/>
+ <path stroke="none" fill="#B4723F" d="M97.4 1028 Q94.6 1026.2 91.95 1024 L164.05 1024 158.65 1028 97.4 1028 M75.7 1028 L72.65 1028 Q64.25 1028 64 1036.2 L64 1032.7 Q64 1024 72.65 1024 L74.3 1024 75.7 1028 M192 1036.2 Q191.75 1028 183.35 1028 L180.3 1028 181.7 1024 183.35 1024 Q192 1024 192 1032.7 L192 1036.2"/>
+ <path stroke="none" fill="#EBCEB7" d="M108.05 1045.1 Q105.6 1048.35 101.75 1050.25 92.95 1054.55 87.05 1046.95 L87.1 1046.95 Q79.6 1038 75.7 1028 L74.3 1024 Q71.2 1014.05 71.55 1003.05 L71.85 1002.2 72 1002.05 72.05 1002.05 Q78.7 1014.7 86.6 1024 L90.2 1028 Q95.25 1033.3 100.8 1037.3 106.65 1041.45 108.05 1045.1 M180.3 1028 Q176.4 1038 168.9 1046.95 L168.95 1046.95 Q163.05 1054.55 154.25 1050.25 150.4 1048.35 147.95 1045.1 149.35 1041.45 155.2 1037.3 160.75 1033.3 165.8 1028 L169.4 1024 Q177.3 1014.7 183.95 1002.05 L184 1002.05 184.15 1002.2 184.45 1003.05 Q184.8 1014.05 181.7 1024 L180.3 1028"/>
+ <path stroke="none" fill="#B6733F" d="M124.05 1112.1 Q119.3 1108.7 115.6 1096.75 112.8 1087.65 111.55 1076.45 110.7 1068.95 110.55 1060.5 L110.5 1059.15 Q110.8 1049.85 113.2 1045.15 114.3 1043 115.6 1041.2 120.75 1033.95 128 1033.95 135.25 1033.95 140.35 1041.2 L142.65 1045.05 Q145.9 1051.2 145.5 1059.15 L145.5 1060.5 Q145.35 1068.95 144.5 1076.45 143.2 1087.65 140.35 1096.75 136.65 1108.8 131.9 1112.15 128.05 1112.55 124.05 1112.1"/>
+ <path stroke="none" fill="#5B5B5B" d="M89.3 1078.8 Q89.3 1077.5 89.8 1076.45 90.2 1075.5 91 1074.7 92.7 1073 95.1 1073 97.5 1073 99.25 1074.7 100.05 1075.5 100.5 1076.45 100.95 1077.5 100.95 1078.8 100.95 1081.2 99.25 1082.85 97.5 1084.6 95.1 1084.6 92.7 1084.6 91 1082.85 89.3 1081.2 89.3 1078.8 M166.7 1078.8 Q166.7 1081.2 165 1082.85 163.3 1084.6 160.9 1084.6 158.5 1084.6 156.75 1082.85 155.05 1081.2 155.05 1078.8 155.05 1077.5 155.55 1076.45 155.95 1075.5 156.75 1074.7 158.5 1073 160.9 1073 163.3 1073 165 1074.7 165.8 1075.5 166.25 1076.45 166.7 1077.5 166.7 1078.8"/>
+ <path stroke="none" fill="#FFFFFF" d="M166.7 1078.8 Q166.7 1077.5 166.25 1076.45 165.8 1075.5 165 1074.7 163.3 1073 160.9 1073 158.5 1073 156.75 1074.7 155.95 1075.5 155.55 1076.45 155.05 1077.5 155.05 1078.8 155.05 1081.2 156.75 1082.85 158.5 1084.6 160.9 1084.6 163.3 1084.6 165 1082.85 166.7 1081.2 166.7 1078.8 M89.3 1078.8 Q89.3 1081.2 91 1082.85 92.7 1084.6 95.1 1084.6 97.5 1084.6 99.25 1082.85 100.95 1081.2 100.95 1078.8 100.95 1077.5 100.5 1076.45 100.05 1075.5 99.25 1074.7 97.5 1073 95.1 1073 92.7 1073 91 1074.7 90.2 1075.5 89.8 1076.45 89.3 1077.5 89.3 1078.8 M84.8 1078.65 Q84.8 1077.5 85.05 1076.45 85.6 1074 87.5 1072.1 90.25 1069.4 94.1 1069.4 97.9 1069.4 100.65 1072.1 102.55 1074 103.1 1076.45 L103.35 1078.65 Q103.35 1082.5 100.65 1085.1 97.9 1087.9 94.1 1087.9 90.25 1087.9 87.5 1085.1 84.8 1082.5 84.8 1078.65 M171.2 1078.65 Q171.2 1082.5 168.5 1085.1 165.75 1087.9 161.9 1087.9 158.1 1087.9 155.35 1085.1 152.65 1082.5 152.65 1078.65 152.65 1077.5 152.9 1076.45 153.45 1074 155.35 1072.1 158.1 1069.4 161.9 1069.4 165.75 1069.4 168.5 1072.1 170.4 1074 170.95 1076.45 L171.2 1078.65"/>
+ <path stroke="none" fill="#8E5A32" d="M171.2 1078.65 L170.95 1076.45 Q170.4 1074 168.5 1072.1 165.75 1069.4 161.9 1069.4 158.1 1069.4 155.35 1072.1 153.45 1074 152.9 1076.45 152.65 1077.5 152.65 1078.65 152.65 1082.5 155.35 1085.1 158.1 1087.9 161.9 1087.9 165.75 1087.9 168.5 1085.1 171.2 1082.5 171.2 1078.65 M84.8 1078.65 Q84.8 1082.5 87.5 1085.1 90.25 1087.9 94.1 1087.9 97.9 1087.9 100.65 1085.1 103.35 1082.5 103.35 1078.65 L103.1 1076.45 Q102.55 1074 100.65 1072.1 97.9 1069.4 94.1 1069.4 90.25 1069.4 87.5 1072.1 85.6 1074 85.05 1076.45 84.8 1077.5 84.8 1078.65 M79.15 1075.2 L79.15 1075.15 Q80.75 1069.35 85.8 1066.3 L86.1 1066.1 Q91.5 1063 97.5 1064.6 103.45 1066.15 106.6 1071.55 108 1073.95 108.45 1076.45 109 1079.6 108.1 1082.9 L108.1 1082.95 Q106.15 1090.15 100.6 1094 94.95 1098 89 1096.45 83 1094.85 80.1 1088.55 77.65 1083.25 78.75 1077.15 L78.85 1076.45 79.15 1075.2 M176.85 1075.2 L177.15 1076.45 177.3 1077.1 Q178.35 1083.2 175.9 1088.55 173 1094.85 167 1096.45 161.05 1098 155.4 1094 149.85 1090.15 147.9 1082.95 L147.9 1082.9 Q147 1079.6 147.6 1076.45 148 1073.95 149.4 1071.55 152.55 1066.15 158.5 1064.6 164.5 1063 169.9 1066.1 L170.2 1066.3 Q175.25 1069.3 176.85 1075.15 L176.85 1075.2"/>
+ <path stroke="none" fill="#6D4526" d="M64 1036.2 L64 1054.1 Q55.6 1053.55 46 1055.5 L43.4 1056.05 Q39.2 1057.3 37.45 1061.95 35.55 1067.15 37.8 1073.45 40.1 1079.8 45.05 1083.6 49.15 1086.5 53 1086.6 L54.2 1086.55 57 1086 60 1085.4 64 1084.25 64 1143.85 Q64.25 1152 72.65 1152 L84.9 1152 112.45 1152 Q111.45 1153.4 110.7 1154.9 108 1160 109.05 1162.95 L109.1 1163.05 Q110.3 1166.15 114.8 1165.25 117.85 1164.6 121.2 1162.35 120.65 1164.55 120.45 1166.6 L120.45 1166.9 Q120.25 1168.75 120.5 1170 120.75 1171.15 121.3 1171.65 122.6 1172.75 124.8 1170.25 126.5 1168.25 128 1164.95 129.45 1168.25 131.15 1170.25 133.4 1172.75 134.65 1171.65 135.25 1171.15 135.45 1170 135.7 1168.75 135.55 1166.85 L135.5 1166.6 Q135.35 1164.55 134.8 1162.35 138.15 1164.6 141.2 1165.25 145.7 1166.15 146.85 1163.05 L146.95 1162.9 Q148 1160 145.25 1154.9 L143.55 1152 171.1 1152 183.35 1152 Q191.75 1152 192 1143.85 L192 1084.25 196 1085.35 199 1085.95 201.8 1086.55 203 1086.55 Q206.85 1086.5 210.95 1083.6 215.9 1079.8 218.2 1073.45 220.45 1067.15 218.55 1061.95 216.8 1057.3 212.6 1056 L210 1055.45 Q200.4 1053.5 192 1054.05 L192 1036.2 192 1032.7 Q192 1024 183.35 1024 L181.7 1024 Q184.8 1014.05 184.45 1003.05 L184.15 1002.2 184 1002.05 183.45 1001.8 Q183 1001.65 182.6 1001.8 L181.95 1002.4 Q173.9 1015.85 164.05 1024 L91.95 1024 Q82.1 1015.85 74.05 1002.4 L73.4 1001.8 Q73 1001.65 72.55 1001.8 72.25 1001.85 72 1002.05 L71.85 1002.2 71.55 1003.05 Q71.2 1014.05 74.3 1024 L72.65 1024 Q64 1024 64 1032.7 L64 1036.2 M60 1032.7 Q60 1021.9 69.15 1020.3 67.25 1011.9 67.55 1002.95 L67.6 1002.65 Q67.75 1001 68.6 999.9 L69.05 999.4 69.2 999.25 69.5 998.95 Q70.4 998.2 71.5 997.95 L74.8 998.05 75.2 998.25 Q76.6 998.9 77.45 1000.3 L77.5 1000.35 Q84.7 1012.4 93.4 1020 L162.6 1020 Q171.3 1012.4 178.55 1000.35 L178.55 1000.3 Q179.4 998.9 180.8 998.25 L181.2 998.05 184.5 997.95 Q185.6 998.2 186.5 998.95 L186.85 999.25 187 999.4 187.4 999.9 Q188.25 1001 188.45 1002.65 L188.45 1002.95 Q188.75 1011.9 186.85 1020.3 196 1021.9 196 1032.7 L196 1049.9 Q203 1049.95 210.8 1051.55 L210.75 1051.55 213.5 1052.1 213.8 1052.2 Q219.8 1053.95 222.3 1060.55 L222.3 1060.6 Q224.75 1067 222 1074.8 L221.95 1074.8 Q219.25 1082.3 213.4 1086.8 L213.25 1086.9 211.6 1087.95 Q209.25 1089.35 207 1090 L203.3 1090.55 201.45 1090.55 201 1090.5 198.35 1089.9 196 1089.45 196 1143.85 196 1144 Q195.7 1156 183.35 1156 L150.2 1156 Q152.2 1161.05 150.7 1164.25 L150.55 1164.7 Q148.6 1170.8 140.45 1169.2 L140.4 1169.15 139.6 1169 139.4 1170.7 Q138.9 1173.45 137.3 1174.65 133.7 1179.1 128.2 1172.95 L128.1 1172.85 128 1172.7 127.85 1172.85 127.8 1172.9 Q122.4 1179.05 118.75 1174.7 L118.6 1174.6 Q117.15 1173.5 116.6 1170.85 L116.6 1170.8 116.4 1169 115.65 1169.15 115.6 1169.2 Q107.6 1170.75 105.55 1164.95 105.15 1164.35 105.1 1163.75 104 1160.65 105.8 1156 L72.65 1156 Q60.3 1156 60 1144 L60 1143.85 60 1089.5 57.8 1089.95 57.75 1089.95 55 1090.5 54.95 1090.5 52.7 1090.6 Q47.85 1090.5 42.75 1086.9 L42.65 1086.8 Q36.75 1082.3 34.05 1074.8 31.25 1067 33.7 1060.6 L33.7 1060.55 Q36.2 1053.95 42.25 1052.25 L42.35 1052.2 45.4 1051.55 45.2 1051.6 Q53 1050 60 1049.95 L60 1032.7"/>
+ <path stroke="none" fill="#704E35" d="M64 1054.1 L64 1054.75 Q57.35 1054.75 50 1056.2 L47.2 1056.85 Q43.05 1058.1 41.25 1062.75 39.4 1068 41.6 1074.2 43.9 1080.65 49 1084.4 50.95 1085.95 53 1086.6 49.15 1086.5 45.05 1083.6 40.1 1079.8 37.8 1073.45 35.55 1067.15 37.45 1061.95 39.2 1057.3 43.4 1056.05 L46 1055.5 Q55.6 1053.55 64 1054.1 M192 1054.75 L192 1054.05 Q200.4 1053.5 210 1055.45 L212.6 1056 Q216.8 1057.3 218.55 1061.95 220.45 1067.15 218.2 1073.45 215.9 1079.8 210.95 1083.6 206.85 1086.5 203 1086.55 205.05 1085.95 207 1084.4 212.15 1080.6 214.4 1074.2 216.6 1068 214.75 1062.7 212.95 1058.05 208.8 1056.85 L206 1056.2 Q198.65 1054.75 192 1054.75 M109.05 1162.95 Q108 1160 110.7 1154.9 111.45 1153.4 112.45 1152 L115.7 1152 Q112.6 1155.2 110.7 1158.9 109.5 1161.1 109.05 1162.95 M146.95 1162.9 Q146.45 1161.1 145.25 1158.9 143.4 1155.2 140.35 1152 L143.55 1152 145.25 1154.9 Q148 1160 146.95 1162.9"/>
+ <path stroke="none" fill="#5F422D" d="M146.95 1162.9 L146.85 1163.05 Q145.7 1166.15 141.2 1165.25 138.15 1164.6 134.8 1162.35 135.35 1164.55 135.5 1166.6 L135.55 1166.85 Q135.7 1168.75 135.45 1170 135.25 1171.15 134.65 1171.65 133.4 1172.75 131.15 1170.25 129.45 1168.25 128 1164.95 126.5 1168.25 124.8 1170.25 122.6 1172.75 121.3 1171.65 120.75 1171.15 120.5 1170 120.25 1168.75 120.45 1166.9 L120.45 1166.6 Q120.65 1164.55 121.2 1162.35 117.85 1164.6 114.8 1165.25 110.3 1166.15 109.1 1163.05 L109.05 1162.95 Q109.5 1161.1 110.7 1158.9 112.6 1155.2 115.7 1152 L140.35 1152 Q143.4 1155.2 145.25 1158.9 146.45 1161.1 146.95 1162.9 M64 1054.75 L64 1061.75 61.95 1062.1 60.05 1062.55 Q57 1063.4 55.65 1066.7 54.3 1070.55 55.95 1075.05 57.6 1079.6 61.25 1082.4 L64 1083.95 64 1084.25 60 1085.4 57 1086 54.2 1086.55 53 1086.6 Q50.95 1085.95 49 1084.4 43.9 1080.65 41.6 1074.2 39.4 1068 41.25 1062.75 43.05 1058.1 47.2 1056.85 L50 1056.2 Q57.35 1054.75 64 1054.75 M192 1084.25 L192 1083.9 194.75 1082.4 Q198.4 1079.55 200.05 1075 201.7 1070.5 200.35 1066.7 199 1063.4 195.95 1062.55 195.1 1062.15 194.05 1062.1 L192 1061.7 192 1054.75 Q198.65 1054.75 206 1056.2 L208.8 1056.85 Q212.95 1058.05 214.75 1062.7 216.6 1068 214.4 1074.2 212.15 1080.6 207 1084.4 205.05 1085.95 203 1086.55 L201.8 1086.55 199 1085.95 196 1085.35 192 1084.25"/>
+ <path stroke="none" fill="#4F3725" d="M64 1061.75 L64 1083.95 61.25 1082.4 Q57.6 1079.6 55.95 1075.05 54.3 1070.55 55.65 1066.7 57 1063.4 60.05 1062.55 L61.95 1062.1 64 1061.75 M192 1083.9 L192 1061.7 194.05 1062.1 Q195.1 1062.15 195.95 1062.55 199 1063.4 200.35 1066.7 201.7 1070.5 200.05 1075 198.4 1079.55 194.75 1082.4 L192 1083.9"/>
+ <path stroke="none" fill="#464646" d="M123.5 1120.25 L123.2 1120.15 123.25 1120.15 Q120.35 1119.1 118.05 1116.8 115.7 1114.5 114.75 1111.6 114.6 1111.2 114.8 1110.85 L115.3 1110.35 116.05 1110.3 119.85 1111.4 124.05 1112.1 Q128.05 1112.55 131.9 1112.15 L136.2 1111.4 136.25 1111.4 140.05 1110.35 140.75 1110.4 141.3 1110.9 141.3 1111.65 Q140.25 1114.5 137.95 1116.8 135.65 1119.1 132.8 1120.15 L132.85 1120.15 132.5 1120.3 129.8 1120.95 128.85 1121.05 126.7 1121 125.95 1120.9 123.5 1120.25"/>
+ <path stroke="none" fill="#383838" d="M123.5 1120.25 L125.95 1120.9 126.7 1121 128.85 1121.05 129.8 1120.95 132.5 1120.3 133.3 1121.2 Q134.25 1122.15 135.35 1122.7 136.75 1123.35 138.4 1123.35 141.4 1123.35 143.55 1121.2 L144.8 1119.55 145.3 1119.1 146 1119.15 150.7 1121.6 151.15 1122.1 151.1 1122.75 150.15 1124.35 149.6 1125.05 148.55 1126.2 147.8 1126.9 Q143.8 1130.4 138.4 1130.4 132.5 1130.4 128.3 1126.2 L128 1125.9 127.7 1126.2 Q123.45 1130.4 117.55 1130.4 112.15 1130.4 108.2 1126.95 L107.45 1126.2 106.4 1125.05 105.95 1124.45 104.9 1122.85 Q104.7 1122.5 104.85 1122.2 104.9 1121.85 105.25 1121.65 L109.85 1119.1 110.5 1119 111.05 1119.45 112.4 1121.2 Q114.55 1123.35 117.55 1123.35 119.2 1123.35 120.65 1122.7 L122.7 1121.2 123.5 1120.25"/>
+ <path stroke="none" fill="#955E34" d="M84.9 1152 Q88.3 1145.35 91.9 1139.95 95.35 1134.85 99 1130.85 102.35 1127.15 105.95 1124.45 L106.4 1125.05 107.45 1126.2 108.2 1126.95 Q112.15 1130.4 117.55 1130.4 123.45 1130.4 127.7 1126.2 L128 1125.9 128.3 1126.2 Q132.5 1130.4 138.4 1130.4 143.8 1130.4 147.8 1126.9 L148.55 1126.2 149.6 1125.05 150.15 1124.35 Q153.8 1127.1 157.25 1130.95 160.8 1134.85 164.15 1139.9 167.75 1145.3 171.1 1152 L143.55 1152 140.35 1152 115.7 1152 112.45 1152 84.9 1152"/>
+ <path stroke="none" fill="#6D4526" d="M448 1036.2 L448 1032.7 Q448 1024 439.35 1024 L328.65 1024 Q320 1024 320 1032.7 L320 1036.2 320 1143.85 Q320.25 1152 328.65 1152 L335.5 1152 432.6 1152 439.35 1152 Q447.75 1152 448 1143.85 L448 1036.2 M439.35 1020 Q452 1020 452 1032.7 L452 1143.85 452 1144 Q451.7 1156 439.35 1156 L328.65 1156 Q316.3 1156 316 1144 L316 1143.85 316 1032.7 Q316 1020 328.65 1020 L439.35 1020"/>
+ <path stroke="none" fill="#B4723F" d="M320 1036.2 L320 1032.7 Q320 1024 328.65 1024 L439.35 1024 Q448 1024 448 1032.7 L448 1036.2 Q447.75 1028 439.35 1028 L328.65 1028 Q320.25 1028 320 1036.2"/>
+ <path stroke="none" fill="#EBCEB7" d="M432.6 1152 L335.5 1152 Q338.1 1137.65 349.05 1126.8 363.55 1112.4 384 1112.4 404.45 1112.4 418.9 1126.8 429.95 1137.65 432.6 1152 M423.25 1086.95 Q423.25 1082.45 420.1 1079.25 416.85 1076.1 412.4 1076.1 407.9 1076.1 404.7 1079.25 401.5 1082.45 401.5 1086.95 L401.55 1087.95 Q401.85 1091.85 404.7 1094.65 407.9 1097.85 412.4 1097.85 416.85 1097.85 420.1 1094.65 422.9 1091.85 423.2 1087.95 L423.25 1086.95 M438.15 1067.55 Q437.7 1069.25 435.7 1070.85 432 1073.7 434.1 1080.6 434.95 1083.6 434.95 1086.95 L434.95 1087.95 Q434.6 1096.65 428.35 1102.9 421.75 1109.55 412.4 1109.55 403.8 1109.55 397.5 1103.9 L397.6 1103.2 397.65 1102.3 397.45 1100.1 Q396.85 1095.9 393.65 1092.65 L392.1 1091.3 390 1090.05 389.85 1087.95 389.8 1086.95 Q389.8 1083.7 390.6 1080.8 402.8 1065.35 438.15 1067.55 M370.5 1103.95 Q364.2 1109.55 355.6 1109.55 346.25 1109.55 339.65 1102.9 333.4 1096.65 333.1 1087.95 L333.05 1086.95 Q333.05 1083.6 333.9 1080.6 336 1073.7 332.3 1070.85 330.3 1069.25 329.85 1067.55 365.2 1065.35 377.4 1080.8 378.2 1083.7 378.2 1086.95 L378.2 1087.95 378 1090.05 375.9 1091.3 374.3 1092.65 Q371.15 1095.9 370.5 1100.1 370.35 1101.15 370.35 1102.3 L370.35 1103.2 370.5 1103.95 M344.75 1086.95 L344.8 1087.95 Q345.1 1091.85 347.9 1094.65 351.15 1097.85 355.6 1097.85 360.1 1097.85 363.3 1094.65 366.15 1091.85 366.45 1087.95 L366.5 1086.95 Q366.5 1082.45 363.3 1079.25 360.1 1076.1 355.6 1076.1 351.15 1076.1 347.9 1079.25 344.75 1082.45 344.75 1086.95 M377.1 1131.9 Q379.95 1134.75 384 1134.75 388 1134.75 390.85 1131.9 393.7 1129.05 393.7 1125.05 393.7 1123.55 393.3 1122.2 L393.05 1121.85 392.65 1121.75 392.05 1121.75 Q391.8 1121.75 391.6 1121.9 L391.4 1122.35 Q391.25 1125.1 389.25 1127.05 387.05 1129.25 384 1129.25 380.9 1129.25 378.75 1127.05 376.75 1125.1 376.55 1122.35 L376.35 1121.9 375.9 1121.75 375.3 1121.75 374.9 1121.85 374.7 1122.2 Q374.3 1123.55 374.3 1125.05 374.3 1129.1 377.1 1131.9 M364.75 1141 Q368.5 1141 371.2 1138.3 L372.1 1137.25 372.3 1136.65 372.05 1136 371.5 1135.7 370.85 1135.8 Q369 1136.75 366.75 1136.75 363.15 1136.75 360.55 1134.1 358.45 1132.05 358 1129.3 L357.7 1128.75 357.1 1128.45 Q356.75 1128.45 356.45 1128.65 L356.05 1129.15 Q355.65 1130.45 355.65 1131.9 355.65 1135.65 358.3 1138.3 L358.35 1138.35 Q361 1141 364.75 1141 M403.25 1141 Q407 1141 409.65 1138.35 L409.7 1138.3 Q412.35 1135.65 412.35 1131.9 412.35 1130.45 411.95 1129.15 L411.55 1128.65 410.9 1128.45 Q410.55 1128.5 410.3 1128.75 L410 1129.3 Q409.55 1132.05 407.45 1134.1 404.85 1136.75 401.25 1136.75 399 1136.75 397.15 1135.8 L396.5 1135.7 395.95 1136 Q395.7 1136.25 395.7 1136.65 395.65 1136.95 395.9 1137.25 L396.8 1138.3 Q399.5 1141 403.25 1141"/>
+ <path stroke="none" fill="#FFFFFF" d="M423.25 1086.95 L423.2 1087.95 Q422.9 1091.85 420.1 1094.65 416.85 1097.85 412.4 1097.85 407.9 1097.85 404.7 1094.65 401.85 1091.85 401.55 1087.95 L401.5 1086.95 Q401.5 1082.45 404.7 1079.25 407.9 1076.1 412.4 1076.1 416.85 1076.1 420.1 1079.25 423.25 1082.45 423.25 1086.95 M416.95 1086.95 Q416.95 1084.4 415.1 1082.6 413.3 1080.8 410.75 1080.8 408.2 1080.8 406.3 1082.6 404.5 1084.4 404.5 1086.95 L404.6 1087.95 Q404.85 1089.9 406.3 1091.4 408.2 1093.2 410.75 1093.2 413.3 1093.2 415.1 1091.4 416.6 1089.9 416.9 1087.95 L416.95 1086.95 M351.05 1086.95 L351.15 1087.95 Q351.4 1089.9 352.9 1091.4 354.7 1093.2 357.25 1093.2 359.8 1093.2 361.7 1091.4 363.15 1089.9 363.45 1087.95 L363.5 1086.95 Q363.5 1084.4 361.7 1082.6 359.8 1080.8 357.25 1080.8 354.7 1080.8 352.9 1082.6 351.05 1084.4 351.05 1086.95 M344.75 1086.95 Q344.75 1082.45 347.9 1079.25 351.15 1076.1 355.6 1076.1 360.1 1076.1 363.3 1079.25 366.5 1082.45 366.5 1086.95 L366.45 1087.95 Q366.15 1091.85 363.3 1094.65 360.1 1097.85 355.6 1097.85 351.15 1097.85 347.9 1094.65 345.1 1091.85 344.8 1087.95 L344.75 1086.95"/>
+ <path stroke="none" fill="#5B5B5B" d="M416.95 1086.95 L416.9 1087.95 Q416.6 1089.9 415.1 1091.4 413.3 1093.2 410.75 1093.2 408.2 1093.2 406.3 1091.4 404.85 1089.9 404.6 1087.95 L404.5 1086.95 Q404.5 1084.4 406.3 1082.6 408.2 1080.8 410.75 1080.8 413.3 1080.8 415.1 1082.6 416.95 1084.4 416.95 1086.95 M351.05 1086.95 Q351.05 1084.4 352.9 1082.6 354.7 1080.8 357.25 1080.8 359.8 1080.8 361.7 1082.6 363.5 1084.4 363.5 1086.95 L363.45 1087.95 Q363.15 1089.9 361.7 1091.4 359.8 1093.2 357.25 1093.2 354.7 1093.2 352.9 1091.4 351.4 1089.9 351.15 1087.95 L351.05 1086.95"/>
+ <path stroke="none" fill="#A16639" d="M448 1036.2 L448 1143.85 Q447.75 1152 439.35 1152 L432.6 1152 Q429.95 1137.65 418.9 1126.8 404.45 1112.4 384 1112.4 363.55 1112.4 349.05 1126.8 338.1 1137.65 335.5 1152 L328.65 1152 Q320.25 1152 320 1143.85 L320 1036.2 Q320.25 1028 328.65 1028 L439.35 1028 Q447.75 1028 448 1036.2 M438.15 1067.55 Q438.35 1066.65 438.1 1065.7 437.2 1062.35 430.75 1061.6 424.3 1060.75 415.1 1062.55 401.95 1065.45 396.45 1071 392.1 1075.3 390.6 1080.8 389.8 1083.7 389.8 1086.95 L389.85 1087.95 390 1090.05 Q387.25 1088.7 384 1088.7 380.75 1088.7 378 1090.05 L378.2 1087.95 378.2 1086.95 Q378.2 1083.7 377.4 1080.8 375.9 1075.3 371.55 1071 366.05 1065.45 352.9 1062.55 343.7 1060.75 337.25 1061.6 330.8 1062.35 329.9 1065.7 329.65 1066.65 329.85 1067.55 330.3 1069.25 332.3 1070.85 336 1073.7 333.9 1080.6 333.05 1083.6 333.05 1086.95 L333.1 1087.95 Q333.4 1096.65 339.65 1102.9 346.25 1109.55 355.6 1109.55 364.2 1109.55 370.5 1103.95 371.1 1106.5 374.3 1108.4 378.3 1110.75 384 1110.75 389.65 1110.75 393.65 1108.4 396.9 1106.5 397.5 1103.9 403.8 1109.55 412.4 1109.55 421.75 1109.55 428.35 1102.9 434.6 1096.65 434.95 1087.95 L434.95 1086.95 Q434.95 1083.6 434.1 1080.6 432 1073.7 435.7 1070.85 437.7 1069.25 438.15 1067.55 M397.4 1053.7 Q401.3 1046.95 402.05 1041.05 402.95 1035.2 400.2 1033.65 397.45 1032.05 392.75 1035.7 388.15 1039.35 384.25 1046.1 L383.35 1047.65 Q381.75 1050.85 382.15 1054.15 382.55 1057.8 385.3 1059.4 388.05 1060.95 391.45 1059.5 394.45 1058.2 396.45 1055.2 L397.4 1053.7 M377.7 1046 Q375.15 1041.5 372 1039.1 368.95 1036.65 367.15 1037.75 365.35 1038.75 365.9 1042.65 366.45 1046.55 369 1051 L369.6 1052.05 Q370.95 1054.05 372.95 1054.9 375.2 1055.9 377 1054.85 378.8 1053.75 379.1 1051.3 379.35 1049.2 378.3 1047.05 L377.7 1046"/>
+ <path stroke="none" fill="#DEC2AD" d="M390.6 1080.8 Q392.1 1075.3 396.45 1071 401.95 1065.45 415.1 1062.55 424.3 1060.75 430.75 1061.6 437.2 1062.35 438.1 1065.7 438.35 1066.65 438.15 1067.55 402.8 1065.35 390.6 1080.8 M329.85 1067.55 Q329.65 1066.65 329.9 1065.7 330.8 1062.35 337.25 1061.6 343.7 1060.75 352.9 1062.55 366.05 1065.45 371.55 1071 375.9 1075.3 377.4 1080.8 365.2 1065.35 329.85 1067.55"/>
+ <path stroke="none" fill="#8E5A32" d="M377.7 1046 L378.3 1047.05 Q379.35 1049.2 379.1 1051.3 378.8 1053.75 377 1054.85 375.2 1055.9 372.95 1054.9 370.95 1054.05 369.6 1052.05 L369 1051 Q366.45 1046.55 365.9 1042.65 365.35 1038.75 367.15 1037.75 368.95 1036.65 372 1039.1 375.15 1041.5 377.7 1046 M397.4 1053.7 L396.45 1055.2 Q394.45 1058.2 391.45 1059.5 388.05 1060.95 385.3 1059.4 382.55 1057.8 382.15 1054.15 381.75 1050.85 383.35 1047.65 L384.25 1046.1 Q388.15 1039.35 392.75 1035.7 397.45 1032.05 400.2 1033.65 402.95 1035.2 402.05 1041.05 401.3 1046.95 397.4 1053.7"/>
+ <path stroke="none" fill="#FF9900" d="M378 1090.05 Q380.75 1088.7 384 1088.7 387.25 1088.7 390 1090.05 L392.1 1091.3 393.65 1092.65 Q396.85 1095.9 397.45 1100.1 L396.3 1101.65 Q395.5 1098.6 392.95 1096.2 L391.55 1095.05 391.15 1094.8 Q388 1092.75 384 1092.75 380 1092.75 376.85 1094.8 376.65 1094.95 376.5 1095.05 L375 1096.2 Q372.5 1098.6 371.7 1101.65 370.8 1100.95 370.5 1100.1 371.15 1095.9 374.3 1092.65 L375.9 1091.3 378 1090.05"/>
+ <path stroke="none" fill="#F39100" d="M371.7 1101.65 Q372.5 1098.6 375 1096.2 L376.5 1095.05 Q376.65 1094.95 376.85 1094.8 380 1092.75 384 1092.75 388 1092.75 391.15 1094.8 L391.55 1095.05 392.95 1096.2 Q395.5 1098.6 396.3 1101.65 L395.7 1102.1 393.65 1103.1 Q389.65 1104.75 384 1104.75 378.3 1104.75 374.3 1103.1 373.15 1102.65 372.35 1102.1 L371.7 1101.65"/>
+ <path stroke="none" fill="#E08600" d="M371.7 1101.65 L372.35 1102.1 Q373.15 1102.65 374.3 1103.1 378.3 1104.75 384 1104.75 389.65 1104.75 393.65 1103.1 L395.7 1102.1 396.3 1101.65 397.45 1100.1 397.65 1102.3 397.6 1103.2 397.5 1103.9 Q396.9 1106.5 393.65 1108.4 389.65 1110.75 384 1110.75 378.3 1110.75 374.3 1108.4 371.1 1106.5 370.5 1103.95 L370.35 1103.2 370.35 1102.3 Q370.35 1101.15 370.5 1100.1 370.8 1100.95 371.7 1101.65"/>
+ <path stroke="none" fill="#C6AD99" d="M377.1 1131.9 Q374.3 1129.1 374.3 1125.05 374.3 1123.55 374.7 1122.2 L374.9 1121.85 375.3 1121.75 375.9 1121.75 376.35 1121.9 376.55 1122.35 Q376.75 1125.1 378.75 1127.05 380.9 1129.25 384 1129.25 387.05 1129.25 389.25 1127.05 391.25 1125.1 391.4 1122.35 L391.6 1121.9 Q391.8 1121.75 392.05 1121.75 L392.65 1121.75 393.05 1121.85 393.3 1122.2 Q393.7 1123.55 393.7 1125.05 393.7 1129.05 390.85 1131.9 388 1134.75 384 1134.75 379.95 1134.75 377.1 1131.9 M364.75 1141 Q361 1141 358.35 1138.35 L358.3 1138.3 Q355.65 1135.65 355.65 1131.9 355.65 1130.45 356.05 1129.15 L356.45 1128.65 Q356.75 1128.45 357.1 1128.45 L357.7 1128.75 358 1129.3 Q358.45 1132.05 360.55 1134.1 363.15 1136.75 366.75 1136.75 369 1136.75 370.85 1135.8 L371.5 1135.7 372.05 1136 372.3 1136.65 372.1 1137.25 371.2 1138.3 Q368.5 1141 364.75 1141 M403.25 1141 Q399.5 1141 396.8 1138.3 L395.9 1137.25 Q395.65 1136.95 395.7 1136.65 395.7 1136.25 395.95 1136 L396.5 1135.7 397.15 1135.8 Q399 1136.75 401.25 1136.75 404.85 1136.75 407.45 1134.1 409.55 1132.05 410 1129.3 L410.3 1128.75 Q410.55 1128.5 410.9 1128.45 L411.55 1128.65 411.95 1129.15 Q412.35 1130.45 412.35 1131.9 412.35 1135.65 409.7 1138.3 L409.65 1138.35 Q407 1141 403.25 1141"/>
+ <path stroke="none" fill="#FFFFFF" d="M610.9 1041.2 Q610.9 1043.55 612.6 1045.2 614.2 1046.9 616.6 1046.9 618.95 1046.9 620.65 1045.2 L620.75 1045.15 621.85 1043.55 Q622.35 1042.5 622.35 1041.2 622.35 1039.9 621.85 1038.8 621.45 1037.85 620.65 1037.1 L620.4 1036.9 Q618.8 1035.5 616.6 1035.5 614.2 1035.5 612.6 1037.1 610.9 1038.75 610.9 1041.2 M606.45 1041 Q606.45 1039.05 607.2 1037.4 607.85 1035.85 609.15 1034.55 611.85 1031.95 615.6 1031.95 L616.1 1032 Q618.45 1032.05 620.4 1033.25 L620.45 1033.3 621.85 1034.35 622.1 1034.55 Q624.75 1037.25 624.75 1041 624.75 1044.8 622.1 1047.4 L621.85 1047.65 621 1048.35 Q618.6 1050.15 615.6 1050.15 611.85 1050.15 609.15 1047.4 606.45 1044.8 606.45 1041 M669.15 1041.2 Q669.15 1038.75 667.45 1037.1 665.8 1035.5 663.4 1035.5 661.3 1035.5 659.6 1036.9 L659.35 1037.1 Q657.65 1038.75 657.65 1041.2 657.65 1043.55 659.3 1045.15 L659.35 1045.2 Q661.1 1046.9 663.4 1046.9 665.8 1046.9 667.45 1045.2 669.15 1043.55 669.15 1041.2 M673.55 1041 Q673.55 1044.8 670.9 1047.4 668.2 1050.15 664.4 1050.15 661.3 1050.15 659 1048.35 L658 1047.4 Q655.3 1044.8 655.3 1041 655.3 1037.25 658 1034.55 L659.55 1033.35 659.65 1033.25 Q661.55 1032.05 663.9 1032 L664.4 1031.95 Q668.2 1031.95 670.9 1034.55 672.2 1035.9 672.85 1037.45 673.55 1039.05 673.55 1041"/>
+ <path stroke="none" fill="#2ECC71" d="M673.55 1041 Q673.55 1039.05 672.85 1037.45 672.2 1035.9 670.9 1034.55 668.2 1031.95 664.4 1031.95 L663.9 1032 Q661.55 1032.05 659.65 1033.25 L659.55 1033.35 658 1034.55 Q655.3 1037.25 655.3 1041 655.3 1044.8 658 1047.4 L659 1048.35 Q661.3 1050.15 664.4 1050.15 668.2 1050.15 670.9 1047.4 673.55 1044.8 673.55 1041 M606.45 1041 Q606.45 1044.8 609.15 1047.4 611.85 1050.15 615.6 1050.15 618.6 1050.15 621 1048.35 L621.85 1047.65 622.1 1047.4 Q624.75 1044.8 624.75 1041 624.75 1037.25 622.1 1034.55 L621.85 1034.35 620.45 1033.3 620.4 1033.25 Q618.45 1032.05 616.1 1032 L615.6 1031.95 Q611.85 1031.95 609.15 1034.55 607.85 1035.85 607.2 1037.4 606.45 1039.05 606.45 1041 M625.85 1028 Q629.8 1032.65 629.8 1039 629.75 1045.95 625.1 1050.75 L624.85 1051.05 624.5 1051.4 624.25 1051.6 620.5 1054.25 621.8 1061.3 620.5 1062.55 Q619.85 1063.35 619.75 1064.45 L619.75 1064.85 619.75 1065.2 Q619.85 1065.9 620.2 1066.5 620.75 1067.35 621.55 1067.5 622.4 1067.65 623.05 1066.85 L623.15 1066.75 625.15 1072.95 Q626.45 1076.45 627.85 1079.2 626.65 1080 625.95 1080.95 L626 1080.85 Q625.05 1081.85 624.95 1083.35 L624.95 1083.45 624.95 1083.7 624.95 1083.9 624.95 1084.15 625.55 1085.8 625.6 1085.85 Q626.45 1087.2 627.7 1087.35 L627.75 1087.4 Q629.3 1087.75 630.6 1086.35 L630.7 1086.2 631.35 1085.65 631.7 1085.5 631.85 1085.45 634.6 1087.95 Q637.15 1089.75 640 1089.75 642.85 1089.75 645.4 1087.95 L648.2 1085.4 648.35 1085.45 648.75 1085.65 649.4 1086.25 649.45 1086.3 Q650.6 1087.75 652.25 1087.4 L652.3 1087.35 Q653.55 1087.2 654.45 1085.85 L654.45 1085.8 655.05 1084.25 655.05 1084.15 655.1 1083.7 655.05 1083.2 Q654.9 1081.85 654.15 1080.95 L654.1 1080.9 652.2 1079.2 654.85 1072.95 656.9 1066.65 657.05 1066.85 Q657.65 1067.65 658.5 1067.5 659.3 1067.35 659.85 1066.5 L660.3 1065.2 660.35 1064.9 660.3 1064.45 Q660.2 1063.35 659.6 1062.55 L658.25 1061.25 659.5 1054.25 Q657.3 1053.05 655.4 1051.15 L655.25 1051 Q650.25 1046.1 650.25 1039 650.25 1032.65 654.3 1028 L695.35 1028 Q703.75 1028 704 1036.2 L704 1098.15 702.75 1098.55 697.5 1100.7 Q692.35 1102.65 686.75 1104.2 679.15 1106.25 670.75 1107.55 L664.3 1108.4 Q663.8 1103.95 660.45 1100.6 656.55 1096.7 651.05 1096.7 645.5 1096.7 641.55 1100.6 L640 1102.45 638.4 1100.6 Q634.5 1096.7 629 1096.7 623.45 1096.7 619.5 1100.6 616.25 1103.95 615.75 1108.4 L609.25 1107.55 Q600.85 1106.2 593.3 1104.2 587.65 1102.65 582.5 1100.7 L577.5 1098.65 577.3 1098.55 577.3 1098.6 576 1098.15 576 1036.2 Q576.25 1028 584.65 1028 L625.85 1028"/>
+ <path stroke="none" fill="#5B5B5B" d="M610.9 1041.2 Q610.9 1038.75 612.6 1037.1 614.2 1035.5 616.6 1035.5 618.8 1035.5 620.4 1036.9 L620.65 1037.1 Q621.45 1037.85 621.85 1038.8 622.35 1039.9 622.35 1041.2 622.35 1042.5 621.85 1043.55 L620.75 1045.15 620.65 1045.2 Q618.95 1046.9 616.6 1046.9 614.2 1046.9 612.6 1045.2 610.9 1043.55 610.9 1041.2 M669.15 1041.2 Q669.15 1043.55 667.45 1045.2 665.8 1046.9 663.4 1046.9 661.1 1046.9 659.35 1045.2 L659.3 1045.15 Q657.65 1043.55 657.65 1041.2 657.65 1038.75 659.35 1037.1 L659.6 1036.9 Q661.3 1035.5 663.4 1035.5 665.8 1035.5 667.45 1037.1 669.15 1038.75 669.15 1041.2"/>
+ <path stroke="none" fill="#30D776" d="M621.8 1061.3 L620.5 1054.25 624.25 1051.6 624.5 1051.4 624.85 1051.05 625.1 1050.75 Q629.75 1045.95 629.8 1039 629.8 1032.65 625.85 1028 L654.3 1028 Q650.25 1032.65 650.25 1039 650.25 1046.1 655.25 1051 L655.4 1051.15 Q657.3 1053.05 659.5 1054.25 L658.25 1061.25 655.1 1059.1 Q648.8 1055.7 640.05 1055.7 631.2 1055.7 625.05 1059.1 623.15 1060.15 621.8 1061.3 M623.15 1066.75 Q623.85 1065.9 624.95 1065.2 L626.5 1064.5 626.5 1064.55 Q632.1 1062.35 640.05 1062.35 648 1062.35 653.65 1064.55 L653.6 1064.5 655.15 1065.2 Q656.15 1065.85 656.9 1066.65 L654.85 1072.95 652.2 1079.2 650.65 1078.25 Q646.2 1075.8 640.05 1075.8 633.8 1075.8 629.45 1078.25 L629.4 1078.25 627.85 1079.2 Q626.45 1076.45 625.15 1072.95 L623.15 1066.75 M631.85 1085.45 L632.05 1085.4 Q635.35 1084.1 640.05 1084.1 644.75 1084.1 648.1 1085.4 L648.2 1085.4 645.4 1087.95 Q642.85 1089.75 640 1089.75 637.15 1089.75 634.6 1087.95 L631.85 1085.45"/>
+ <path stroke="none" fill="#1B8045" d="M576 1036.2 L576 1098.15 576 1143.85 Q576.25 1152 584.65 1152 L695.35 1152 Q703.75 1152 704 1143.85 L704 1098.15 704 1036.2 704 1032.7 Q704 1024 695.35 1024 L584.65 1024 Q576 1024 576 1032.7 L576 1036.2 M572 1032.7 Q572 1020 584.65 1020 L695.35 1020 Q708 1020 708 1032.7 L708 1143.85 708 1144 Q707.7 1156 695.35 1156 L584.65 1156 Q572.3 1156 572 1144 L572 1143.85 572 1032.7"/>
+ <path stroke="none" fill="#32E07C" d="M654.3 1028 L625.85 1028 584.65 1028 Q576.25 1028 576 1036.2 L576 1032.7 Q576 1024 584.65 1024 L695.35 1024 Q704 1024 704 1032.7 L704 1036.2 Q703.75 1028 695.35 1028 L654.3 1028"/>
+ <path stroke="none" fill="#28B463" d="M621.8 1061.3 Q623.15 1060.15 625.05 1059.1 631.2 1055.7 640.05 1055.7 648.8 1055.7 655.1 1059.1 L658.25 1061.25 659.6 1062.55 Q660.2 1063.35 660.3 1064.45 L660.35 1064.9 660.3 1065.2 659.85 1066.5 Q659.3 1067.35 658.5 1067.5 657.65 1067.65 657.05 1066.85 L656.9 1066.65 Q656.15 1065.85 655.15 1065.2 L653.6 1064.5 653.65 1064.55 Q648 1062.35 640.05 1062.35 632.1 1062.35 626.5 1064.55 L626.5 1064.5 624.95 1065.2 Q623.85 1065.9 623.15 1066.75 L623.05 1066.85 Q622.4 1067.65 621.55 1067.5 620.75 1067.35 620.2 1066.5 619.85 1065.9 619.75 1065.2 L619.75 1064.85 619.75 1064.45 Q619.85 1063.35 620.5 1062.55 L621.8 1061.3 M631.85 1085.45 L631.7 1085.5 631.35 1085.65 630.7 1086.2 630.6 1086.35 Q629.3 1087.75 627.75 1087.4 L627.7 1087.35 Q626.45 1087.2 625.6 1085.85 L625.55 1085.8 624.95 1084.15 624.95 1083.9 624.95 1083.7 624.95 1083.45 624.95 1083.35 Q625.05 1081.85 626 1080.85 L625.95 1080.95 Q626.65 1080 627.85 1079.2 L629.4 1078.25 629.45 1078.25 Q633.8 1075.8 640.05 1075.8 646.2 1075.8 650.65 1078.25 L652.2 1079.2 654.1 1080.9 654.15 1080.95 Q654.9 1081.85 655.05 1083.2 L655.1 1083.7 655.05 1084.15 655.05 1084.25 654.45 1085.8 654.45 1085.85 Q653.55 1087.2 652.3 1087.35 L652.25 1087.4 Q650.6 1087.75 649.45 1086.3 L649.4 1086.25 648.75 1085.65 648.35 1085.45 648.2 1085.4 648.1 1085.4 Q644.75 1084.1 640.05 1084.1 635.35 1084.1 632.05 1085.4 L631.85 1085.45"/>
+ <path stroke="none" fill="#B19A89" d="M626.8 1112.15 L626.65 1112.05 Q624.9 1110.3 624.1 1108.4 L623.75 1107.3 623.65 1106.85 Q623.25 1105.25 623.8 1104.2 L624.35 1103.5 625.1 1102.95 Q626.25 1102.4 628.1 1102.95 L628.25 1102.95 Q630.65 1103.7 632.85 1105.85 L632.95 1106 633.85 1107.3 634.15 1109 Q634.15 1110.8 632.85 1112.05 631.6 1113.35 629.8 1113.35 628.05 1113.35 626.8 1112.15 M655.65 1103.5 L656.15 1104.2 Q656.7 1105.25 656.35 1106.85 L656.25 1107.3 655.85 1108.4 Q655.05 1110.3 653.3 1112.05 L653.2 1112.15 Q651.9 1113.35 650.2 1113.35 648.35 1113.35 647.1 1112.05 645.8 1110.8 645.8 1109 645.8 1108.05 646.15 1107.3 646.45 1106.55 647 1106 L647.15 1105.85 Q649.25 1103.75 651.65 1103 L651.85 1102.95 Q653.75 1102.4 654.9 1102.95 L655.65 1103.5"/>
+ <path stroke="none" fill="#EBCEB7" d="M655.65 1103.5 L654.9 1102.95 Q653.75 1102.4 651.85 1102.95 L651.65 1103 Q649.25 1103.75 647.15 1105.85 L647 1106 Q646.45 1106.55 646.15 1107.3 645.8 1108.05 645.8 1109 645.8 1110.8 647.1 1112.05 648.35 1113.35 650.2 1113.35 651.9 1113.35 653.2 1112.15 L653.3 1112.05 Q655.05 1110.3 655.85 1108.4 L656.25 1107.3 656.35 1106.85 Q656.7 1105.25 656.15 1104.2 L655.65 1103.5 M576 1098.15 L577.3 1098.6 577.3 1098.55 577.5 1098.65 582.5 1100.7 Q587.65 1102.65 593.3 1104.2 L594.2 1108.35 Q596.2 1115.6 600.25 1121.75 L600.8 1122.3 601.5 1122.5 602.15 1122.25 Q606.35 1119.05 608.45 1110.95 L609.25 1107.55 615.75 1108.4 Q616.25 1103.95 619.5 1100.6 623.45 1096.7 629 1096.7 634.5 1096.7 638.4 1100.6 L640 1102.45 641.55 1100.6 Q645.5 1096.7 651.05 1096.7 656.55 1096.7 660.45 1100.6 663.8 1103.95 664.3 1108.4 L670.75 1107.55 671.55 1110.95 Q673.65 1119.05 677.85 1122.25 L678.5 1122.5 679.2 1122.3 679.75 1121.75 Q683.8 1115.6 685.8 1108.35 L686.75 1104.2 Q692.35 1102.65 697.5 1100.7 L702.75 1098.55 704 1098.15 704 1143.85 Q703.75 1152 695.35 1152 L584.65 1152 Q576.25 1152 576 1143.85 L576 1098.15 M626.8 1112.15 Q628.05 1113.35 629.8 1113.35 631.6 1113.35 632.85 1112.05 634.15 1110.8 634.15 1109 L633.85 1107.3 632.95 1106 632.85 1105.85 Q630.65 1103.7 628.25 1102.95 L628.1 1102.95 Q626.25 1102.4 625.1 1102.95 L624.35 1103.5 623.8 1104.2 Q623.25 1105.25 623.65 1106.85 L623.75 1107.3 624.1 1108.4 Q624.9 1110.3 626.65 1112.05 L626.8 1112.15"/>
+ <path stroke="none" fill="#F0EDE7" d="M593.3 1104.2 Q600.85 1106.2 609.25 1107.55 L608.45 1110.95 594.2 1108.35 593.3 1104.2 M670.75 1107.55 Q679.15 1106.25 686.75 1104.2 L685.8 1108.35 671.55 1110.95 670.75 1107.55"/>
+ <path stroke="none" fill="#FFFCF5" d="M608.45 1110.95 Q606.35 1119.05 602.15 1122.25 L601.5 1122.5 600.8 1122.3 600.25 1121.75 Q596.2 1115.6 594.2 1108.35 L608.45 1110.95 M671.55 1110.95 L685.8 1108.35 Q683.8 1115.6 679.75 1121.75 L679.2 1122.3 678.5 1122.5 677.85 1122.25 Q673.65 1119.05 671.55 1110.95"/>
+ <path stroke="none" fill="#6D4526" d="M832 1121.2 L832 1143.85 Q832.25 1152 840.65 1152 L951.35 1152 Q959.75 1152 960 1143.85 L960 1120.75 960 1036.2 960 1032.7 Q960 1024 951.35 1024 L840.65 1024 Q832 1024 832 1032.7 L832 1036.2 832 1121.2 M951.35 1020 Q964 1020 964 1032.7 L964 1143.85 964 1144 Q963.7 1156 951.35 1156 L840.65 1156 Q828.3 1156 828 1144 L828 1143.85 828 1032.7 Q828 1020 840.65 1020 L951.35 1020"/>
+ <path stroke="none" fill="#B4723F" d="M960 1036.2 Q959.75 1028 951.35 1028 L840.65 1028 Q832.25 1028 832 1036.2 L832 1032.7 Q832 1024 840.65 1024 L951.35 1024 Q960 1024 960 1032.7 L960 1036.2"/>
+ <path stroke="none" fill="#A16639" d="M960 1036.2 L960 1120.75 Q947.7 1129.8 933.8 1134.85 927.9 1130.1 921.25 1127.1 926.35 1124.95 930.9 1121.8 L931.7 1121.2 935.4 1118.3 936.45 1117.35 Q946.35 1108 946 1097.45 945.7 1087 938.85 1095.2 936.55 1097.9 932.65 1098.95 L932.6 1098.95 Q926.6 1100.55 921.25 1097.45 L918.9 1095.8 Q915.5 1092.9 914.3 1088.35 L914.2 1087.95 Q912.8 1082.15 915.8 1076.95 918.85 1071.65 924.85 1070 L924.9 1070 928.95 1069.3 932 1069.3 Q938.05 1069.35 933.4 1065.1 L933.4 1065.05 931.7 1063.45 930.95 1062.85 Q925.55 1058.15 919.4 1055.2 916 1053.6 912.35 1052.5 913.05 1049.1 913.2 1045.3 L913.2 1044.45 Q913.2 1039.25 908.05 1035.6 902.95 1031.95 895.7 1031.95 888.45 1031.95 883.3 1035.6 878.2 1039.25 878.2 1044.45 L878.25 1045.3 Q878.4 1049.1 879.05 1052.55 868.4 1055.75 859.8 1063.45 L858.1 1065.05 Q854.1 1069.65 860.45 1069.3 L861.4 1069.3 866.45 1070.05 866.5 1070.05 Q872.5 1071.7 875.55 1077 878.55 1082.2 877.2 1087.95 L877.05 1088.4 Q875.9 1092.9 872.5 1095.8 871.4 1096.75 870.1 1097.5 864.75 1100.6 858.75 1099 L858.7 1099 Q854.75 1097.95 852.75 1095.75 845.45 1087.8 844.85 1095.8 845.05 1108.25 855.4 1117.75 L858.1 1119.95 859.8 1121.2 Q864.65 1124.75 870.2 1127.15 863.5 1130.15 857.65 1134.85 844.05 1129.9 832 1121.2 L832 1036.2 Q832.25 1028 840.65 1028 L951.35 1028 Q959.75 1028 960 1036.2 M928.35 1075.65 Q924.5 1075.65 921.8 1078.35 919.1 1081.1 919.1 1084.95 919.1 1086.55 919.6 1087.95 920.25 1089.9 921.8 1091.5 924.5 1094.2 928.35 1094.2 932.2 1094.2 934.8 1091.5 936.45 1089.9 937.1 1087.95 937.6 1086.55 937.6 1084.95 937.6 1081.1 934.8 1078.35 932.2 1075.65 928.35 1075.65 M863 1075.7 Q859.15 1075.7 856.55 1078.4 853.75 1081.15 853.75 1085 853.75 1086.55 854.25 1087.95 854.9 1089.95 856.55 1091.55 859.15 1094.25 863 1094.25 866.85 1094.25 869.55 1091.55 871.15 1089.95 871.8 1087.95 L872.25 1085 Q872.25 1081.15 869.55 1078.4 866.85 1075.7 863 1075.7"/>
+ <path stroke="none" fill="#AA6C3C" d="M879.05 1052.55 Q878.4 1049.1 878.25 1045.3 L878.2 1044.45 Q878.2 1039.25 883.3 1035.6 888.45 1031.95 895.7 1031.95 902.95 1031.95 908.05 1035.6 913.2 1039.25 913.2 1044.45 L913.2 1045.3 Q913.05 1049.1 912.35 1052.5 904.55 1050.15 895.7 1050.15 L894.1 1050.2 Q886.15 1050.4 879.05 1052.55"/>
+ <path stroke="none" fill="#EBCEB7" d="M879.05 1052.55 Q886.15 1050.4 894.1 1050.2 L895.7 1050.15 Q904.55 1050.15 912.35 1052.5 916 1053.6 919.4 1055.2 925.55 1058.15 930.95 1062.85 L931.7 1063.45 933.4 1065.05 933.4 1065.1 Q938.05 1069.35 932 1069.3 L928.95 1069.3 924.9 1070 924.85 1070 Q918.85 1071.65 915.8 1076.95 912.8 1082.15 914.2 1087.95 L914.3 1088.35 Q915.5 1092.9 918.9 1095.8 L921.25 1097.45 Q926.6 1100.55 932.6 1098.95 L932.65 1098.95 Q936.55 1097.9 938.85 1095.2 945.7 1087 946 1097.45 946.35 1108 936.45 1117.35 L935.4 1118.3 931.7 1121.2 930.9 1121.8 Q926.35 1124.95 921.25 1127.1 L919.4 1127.85 Q908.7 1131.95 895.7 1131.95 L894.1 1131.95 Q882.3 1131.7 872.45 1128.05 L870.2 1127.15 Q864.65 1124.75 859.8 1121.2 L858.1 1119.95 855.4 1117.75 Q845.05 1108.25 844.85 1095.8 845.45 1087.8 852.75 1095.75 854.75 1097.95 858.7 1099 L858.75 1099 Q864.75 1100.6 870.1 1097.5 871.4 1096.75 872.5 1095.8 875.9 1092.9 877.05 1088.4 L877.2 1087.95 Q878.55 1082.2 875.55 1077 872.5 1071.7 866.5 1070.05 L866.45 1070.05 861.4 1069.3 860.45 1069.3 Q854.1 1069.65 858.1 1065.05 L859.8 1063.45 Q868.4 1055.75 879.05 1052.55 M908.55 1095.1 L908.75 1092.75 908.75 1091.85 Q908.4 1089.6 905.35 1087.95 L904.95 1087.75 Q901.1 1085.9 895.7 1085.9 890.3 1085.9 886.45 1087.75 L886.05 1087.95 Q882.95 1089.6 882.65 1091.85 L882.65 1092.75 882.85 1095.1 883 1095.8 Q883.75 1099.3 886.45 1102 888.6 1104.15 891.25 1105.1 L890.4 1106.1 888.35 1107.6 Q886.9 1108.25 885.25 1108.25 882.25 1108.25 880.1 1106.1 L878.75 1104.35 Q878.55 1104 878.2 1103.9 L877.55 1104 872.95 1106.55 Q872.6 1106.75 872.55 1107.1 872.4 1107.4 872.6 1107.75 L874.1 1109.95 875.15 1111.1 Q879.3 1115.3 885.25 1115.3 891.15 1115.3 895.4 1111.1 L895.7 1110.8 896 1111.1 Q900.2 1115.3 906.1 1115.3 912 1115.3 916.25 1111.1 L917.3 1109.95 918.8 1107.65 918.85 1107 918.4 1106.5 913.7 1104.05 913 1104 912.5 1104.45 911.25 1106.1 Q909.1 1108.25 906.1 1108.25 904.45 1108.25 903.05 1107.6 901.95 1107.05 901 1106.1 L900.15 1105.1 Q902.8 1104.15 904.95 1102 907.65 1099.3 908.45 1095.8 L908.55 1095.1"/>
+ <path stroke="none" fill="#545454" d="M908.55 1095.1 Q907.85 1093.2 904.95 1091.75 901.1 1089.9 895.7 1089.9 890.3 1089.9 886.45 1091.75 883.55 1093.15 882.85 1095.1 L882.65 1092.75 882.65 1091.85 Q882.95 1089.6 886.05 1087.95 L886.45 1087.75 Q890.3 1085.9 895.7 1085.9 901.1 1085.9 904.95 1087.75 L905.35 1087.95 Q908.4 1089.6 908.75 1091.85 L908.75 1092.75 908.55 1095.1"/>
+ <path stroke="none" fill="#FFFFFF" d="M928.35 1075.65 Q932.2 1075.65 934.8 1078.35 937.6 1081.1 937.6 1084.95 937.6 1086.55 937.1 1087.95 936.45 1089.9 934.8 1091.5 932.2 1094.2 928.35 1094.2 924.5 1094.2 921.8 1091.5 920.25 1089.9 919.6 1087.95 919.1 1086.55 919.1 1084.95 919.1 1081.1 921.8 1078.35 924.5 1075.65 928.35 1075.65 M928.5 1080.15 Q926.05 1080.15 924.4 1081.85 922.7 1083.55 922.7 1085.95 922.7 1087 923.05 1087.95 923.45 1089.15 924.4 1090.1 926.05 1091.8 928.5 1091.8 930.9 1091.8 932.55 1090.1 933.5 1089.15 933.95 1087.95 L934.3 1085.95 Q934.3 1083.55 932.55 1081.85 930.9 1080.15 928.5 1080.15 M862.85 1080.2 Q860.45 1080.2 858.8 1081.9 857.05 1083.6 857.05 1086 857.05 1087.05 857.4 1087.95 857.8 1089.15 858.8 1090.15 860.45 1091.85 862.85 1091.85 865.3 1091.85 866.95 1090.15 867.9 1089.15 868.35 1087.95 L868.65 1086 Q868.65 1083.6 866.95 1081.9 865.3 1080.2 862.85 1080.2 M863 1075.7 Q866.85 1075.7 869.55 1078.4 872.25 1081.15 872.25 1085 L871.8 1087.95 Q871.15 1089.95 869.55 1091.55 866.85 1094.25 863 1094.25 859.15 1094.25 856.55 1091.55 854.9 1089.95 854.25 1087.95 853.75 1086.55 853.75 1085 853.75 1081.15 856.55 1078.4 859.15 1075.7 863 1075.7"/>
+ <path stroke="none" fill="#5B5B5B" d="M928.5 1080.15 Q930.9 1080.15 932.55 1081.85 934.3 1083.55 934.3 1085.95 L933.95 1087.95 Q933.5 1089.15 932.55 1090.1 930.9 1091.8 928.5 1091.8 926.05 1091.8 924.4 1090.1 923.45 1089.15 923.05 1087.95 922.7 1087 922.7 1085.95 922.7 1083.55 924.4 1081.85 926.05 1080.15 928.5 1080.15 M862.85 1080.2 Q865.3 1080.2 866.95 1081.9 868.65 1083.6 868.65 1086 L868.35 1087.95 Q867.9 1089.15 866.95 1090.15 865.3 1091.85 862.85 1091.85 860.45 1091.85 858.8 1090.15 857.8 1089.15 857.4 1087.95 857.05 1087.05 857.05 1086 857.05 1083.6 858.8 1081.9 860.45 1080.2 862.85 1080.2"/>
+ <path stroke="none" fill="#464646" d="M908.55 1095.1 L908.45 1095.8 Q907.65 1099.3 904.95 1102 902.8 1104.15 900.15 1105.1 895.9 1106.85 891.25 1105.1 888.6 1104.15 886.45 1102 883.75 1099.3 883 1095.8 L882.85 1095.1 Q883.55 1093.15 886.45 1091.75 890.3 1089.9 895.7 1089.9 901.1 1089.9 904.95 1091.75 907.85 1093.2 908.55 1095.1"/>
+ <path stroke="none" fill="#383838" d="M900.15 1105.1 L901 1106.1 Q901.95 1107.05 903.05 1107.6 904.45 1108.25 906.1 1108.25 909.1 1108.25 911.25 1106.1 L912.5 1104.45 913 1104 913.7 1104.05 918.4 1106.5 918.85 1107 918.8 1107.65 917.3 1109.95 916.25 1111.1 Q912 1115.3 906.1 1115.3 900.2 1115.3 896 1111.1 L895.7 1110.8 895.4 1111.1 Q891.15 1115.3 885.25 1115.3 879.3 1115.3 875.15 1111.1 L874.1 1109.95 872.6 1107.75 Q872.4 1107.4 872.55 1107.1 872.6 1106.75 872.95 1106.55 L877.55 1104 878.2 1103.9 Q878.55 1104 878.75 1104.35 L880.1 1106.1 Q882.25 1108.25 885.25 1108.25 886.9 1108.25 888.35 1107.6 L890.4 1106.1 891.25 1105.1 Q895.9 1106.85 900.15 1105.1"/>
+ <path stroke="none" fill="#955E34" d="M832 1121.2 Q844.05 1129.9 857.65 1134.85 863.5 1130.15 870.2 1127.15 L872.45 1128.05 Q882.3 1131.7 894.1 1131.95 L895.7 1131.95 Q908.7 1131.95 919.4 1127.85 L921.25 1127.1 Q927.9 1130.1 933.8 1134.85 947.7 1129.8 960 1120.75 L960 1143.85 Q959.75 1152 951.35 1152 L840.65 1152 Q832.25 1152 832 1143.85 L832 1121.2"/>
+ <path stroke="none" fill="#1B8045" d="M951.35 828 Q964 828 964 840.7 L964 951.85 964 952 Q963.85 957.9 960.8 960.9 957.6 964 951.35 964 L840.65 964 Q834.4 964 831.25 960.9 828.15 957.9 828 952 L828 951.85 828 840.7 Q828 828 840.65 828 L951.35 828 M960 844.2 L960 840.7 Q960 832 951.35 832 L840.65 832 Q832 832 832 840.7 L832 844.2 832 946.05 832 951.85 Q832.25 960 840.65 960 L951.35 960 Q959.75 960 960 951.85 L960 945.8 960 844.2"/>
+ <path stroke="none" fill="#31DE7A" d="M960 844.2 Q959.75 836 951.35 836 L928 836 864 836 840.65 836 Q832.25 836 832 844.2 L832 840.7 Q832 832 840.65 832 L951.35 832 Q960 832 960 840.7 L960 844.2"/>
+ <path stroke="none" fill="#2FD274" d="M864 836 L928 836 Q925.85 851 919.4 862.75 909.7 880.55 896 880.55 882.3 880.55 872.6 862.75 866.2 851 864 836 M891.15 854 L891.6 853.2 Q892.4 851.55 892.25 849.9 892 848 890.6 847.15 L887.45 847.1 Q885.9 847.75 884.85 849.3 L884.4 850.15 Q882.4 853.6 882 856.6 881.55 859.65 882.95 860.4 884.35 861.25 886.7 859.35 889.15 857.5 891.15 854 M906.4 848.05 L905.7 846.9 Q904.15 844.55 901.8 843.55 899.15 842.4 897.05 843.6 894.9 844.85 894.6 847.7 894.3 850.25 895.5 852.75 L896.2 853.95 Q899.25 859.15 902.8 862 906.45 864.85 908.6 863.6 910.7 862.4 910 857.85 909.45 853.3 906.4 848.05"/>
+ <path stroke="none" fill="#29BB67" d="M906.4 848.05 Q909.45 853.3 910 857.85 910.7 862.4 908.6 863.6 906.45 864.85 902.8 862 899.25 859.15 896.2 853.95 L895.5 852.75 Q894.3 850.25 894.6 847.7 894.9 844.85 897.05 843.6 899.15 842.4 901.8 843.55 904.15 844.55 905.7 846.9 L906.4 848.05 M891.15 854 Q889.15 857.5 886.7 859.35 884.35 861.25 882.95 860.4 881.55 859.65 882 856.6 882.4 853.6 884.4 850.15 L884.85 849.3 Q885.9 847.75 887.45 847.1 L890.6 847.15 Q892 848 892.25 849.9 892.4 851.55 891.6 853.2 L891.15 854"/>
+ <path stroke="none" fill="#FFFFFF" d="M935.6 889.75 Q935.6 894.8 932.1 898.25 928.5 901.9 923.4 901.9 918.4 901.9 914.85 898.25 911.25 894.8 911.25 889.75 911.25 884.7 914.85 881.15 918.4 877.65 923.4 877.65 928.5 877.65 932.1 881.15 935.6 884.7 935.6 889.75 M929.75 890 Q929.75 886.7 927.5 884.55 925.25 882.4 922.1 882.4 919 882.4 916.65 884.55 914.4 886.7 914.4 890 914.4 893.15 916.65 895.3 919 897.6 922.1 897.6 925.25 897.6 927.5 895.3 929.75 893.15 929.75 890 M856.4 889.75 Q856.4 884.7 860 881.15 863.6 877.65 868.6 877.65 873.35 877.65 876.95 880.85 L877.3 881.15 Q880.8 884.7 880.8 889.75 880.8 894.8 877.3 898.25 L876.95 898.6 Q873.35 901.9 868.6 901.9 863.6 901.9 860 898.25 856.4 894.8 856.4 889.75 M862.35 890 Q862.35 893.15 864.6 895.3 866.75 897.6 869.95 897.6 873.1 897.6 875.35 895.3 876.4 894.3 876.95 893.1 877.6 891.7 877.6 890 877.6 888.25 876.95 886.8 876.4 885.55 875.35 884.55 873.1 882.4 869.95 882.4 866.75 882.4 864.6 884.55 862.35 886.7 862.35 890"/>
+ <path stroke="none" fill="#5B5B5B" d="M862.35 890 Q862.35 886.7 864.6 884.55 866.75 882.4 869.95 882.4 873.1 882.4 875.35 884.55 876.4 885.55 876.95 886.8 877.6 888.25 877.6 890 877.6 891.7 876.95 893.1 876.4 894.3 875.35 895.3 873.1 897.6 869.95 897.6 866.75 897.6 864.6 895.3 862.35 893.15 862.35 890 M929.75 890 Q929.75 893.15 927.5 895.3 925.25 897.6 922.1 897.6 919 897.6 916.65 895.3 914.4 893.15 914.4 890 914.4 886.7 916.65 884.55 919 882.4 922.1 882.4 925.25 882.4 927.5 884.55 929.75 886.7 929.75 890"/>
+ <path stroke="none" fill="#2ECC71" d="M960 844.2 L960 945.8 Q946.85 951.5 938.45 943.85 L937.9 943.35 935.5 940.15 Q926.15 928.25 915.4 922.5 L920.95 921.3 Q930.85 918.8 931.35 915.3 L931.35 914.95 931.35 914.8 Q931.1 911.15 920.95 908.55 L916.05 907.5 915.95 907.05 Q914.7 901.3 910.6 896.8 L908.25 894.55 Q902.95 890.2 896.05 890.2 889.1 890.2 883.85 894.55 882.6 895.5 881.4 896.8 877.35 901.3 876.05 907.05 L875.95 907.5 870.95 908.55 Q860.95 911.1 860.65 914.75 L860.65 914.95 860.7 915.3 Q861.15 918.8 870.95 921.3 L873.45 921.9 Q862.25 927.5 852.6 939.6 L851.1 941.55 849.75 943.35 Q843.55 951.35 832 946.05 L832 844.2 Q832.25 836 840.65 836 L864 836 Q866.2 851 872.6 862.75 882.3 880.55 896 880.55 909.7 880.55 919.4 862.75 925.85 851 928 836 L951.35 836 Q959.75 836 960 844.2 M935.6 889.75 Q935.6 884.7 932.1 881.15 928.5 877.65 923.4 877.65 918.4 877.65 914.85 881.15 911.25 884.7 911.25 889.75 911.25 894.8 914.85 898.25 918.4 901.9 923.4 901.9 928.5 901.9 932.1 898.25 935.6 894.8 935.6 889.75 M856.4 889.75 Q856.4 894.8 860 898.25 863.6 901.9 868.6 901.9 873.35 901.9 876.95 898.6 L877.3 898.25 Q880.8 894.8 880.8 889.75 880.8 884.7 877.3 881.15 L876.95 880.85 Q873.35 877.65 868.6 877.65 863.6 877.65 860 881.15 856.4 884.7 856.4 889.75"/>
+ <path stroke="none" fill="#FFD738" d="M875.95 907.5 L876.05 907.05 Q877.35 901.3 881.4 896.8 882.6 895.5 883.85 894.55 889.1 890.2 896.05 890.2 902.95 890.2 908.25 894.55 L910.6 896.8 Q914.7 901.3 915.95 907.05 L916.05 907.5 916.3 909.05 916.6 912.75 916.5 914.25 916.5 914.45 916.3 913.05 915.95 911.05 Q915.55 909.1 914.8 907.3 913.3 903.75 910.6 900.8 L908.25 898.55 Q902.95 894.2 896.05 894.2 889.1 894.2 883.85 898.55 882.6 899.5 881.4 900.8 878.75 903.75 877.25 907.3 876.5 909.1 876.05 911.05 L875.65 913.05 875.55 914.55 875.5 914.25 875.45 912.75 875.65 909.05 875.95 907.5"/>
+ <path stroke="none" fill="#FFCC00" d="M875.55 914.55 L875.65 913.05 876.05 911.05 Q876.5 909.1 877.25 907.3 878.75 903.75 881.4 900.8 882.6 899.5 883.85 898.55 889.1 894.2 896.05 894.2 902.95 894.2 908.25 898.55 L910.6 900.8 Q913.3 903.75 914.8 907.3 915.55 909.1 915.95 911.05 L916.3 913.05 916.5 914.45 916.4 915.3 915.95 916.85 Q915.05 919.2 912.8 921.2 L911.15 922.5 910.6 922.85 910 923.25 909.6 923.5 Q903.85 926.7 896.05 926.7 888.2 926.7 882.45 923.5 L882.05 923.25 881.4 922.85 879.55 921.5 878 919.95 Q876.7 918.45 876.1 916.8 L875.7 915.3 875.55 914.55"/>
+ <path stroke="none" fill="#EEBE00" d="M875.55 914.55 L875.7 915.3 876.1 916.8 860.65 914.75 Q860.95 911.1 870.95 908.55 L875.95 907.5 875.65 909.05 875.45 912.75 875.5 914.25 875.55 914.55 M916.05 907.5 L920.95 908.55 Q931.1 911.15 931.35 914.8 L915.95 916.85 916.4 915.3 916.5 914.45 916.5 914.25 916.6 912.75 916.3 909.05 916.05 907.5"/>
+ <path stroke="none" fill="#DEB100" d="M931.35 914.8 L931.35 914.95 931.35 915.3 Q930.85 918.8 920.95 921.3 L915.4 922.5 912.2 923 912.05 923.05 910 923.25 910.6 922.85 911.15 922.5 912.8 921.2 Q915.05 919.2 915.95 916.85 L931.35 914.8 M860.65 914.75 L876.1 916.8 Q876.7 918.45 878 919.95 L879.55 921.5 881.4 922.85 882.05 923.25 879.8 923 877.45 922.65 873.45 921.9 870.95 921.3 Q861.15 918.8 860.7 915.3 L860.65 914.95 860.65 914.75"/>
+ <path stroke="none" fill="#F3F3F3" d="M960 945.8 L960 951.85 Q959.75 960 951.35 960 L840.65 960 Q832.25 960 832 951.85 L832 946.05 Q843.55 951.35 849.75 943.35 L851.1 941.55 852.6 939.6 Q862.25 927.5 873.45 921.9 L877.45 922.65 879.8 923 882.05 923.25 882.45 923.5 Q888.2 926.7 896.05 926.7 903.85 926.7 909.6 923.5 L910 923.25 912.05 923.05 912.2 923 915.4 922.5 Q926.15 928.25 935.5 940.15 L937.9 943.35 938.45 943.85 Q946.85 951.5 960 945.8"/>
+ <path stroke="none" fill="#2C2B2B" d="M572 840.7 Q572 828 584.65 828 L695.35 828 Q708 828 708 840.7 L708 951.85 708 952 Q707.8 960.45 701.6 962.95 699 964 695.35 964 L584.65 964 Q581 964 578.4 962.95 572.2 960.45 572 952 L572 951.85 572 840.7 M704 844.2 L704 840.7 Q704 832 695.35 832 L584.65 832 Q576 832 576 840.7 L576 844.2 576 951.85 Q576.25 960 584.65 960 L695.35 960 Q703.75 960 704 951.85 L704 844.2"/>
+ <path stroke="none" fill="#545353" d="M704 844.2 Q703.75 836 695.35 836 L584.65 836 Q576.25 836 576 844.2 L576 840.7 Q576 832 584.65 832 L695.35 832 Q704 832 704 840.7 L704 844.2"/>
+ <path stroke="none" fill="#414040" d="M704 844.2 L704 951.85 Q703.75 960 695.35 960 L584.65 960 Q576.25 960 576 951.85 L576 844.2 Q576.25 836 584.65 836 L695.35 836 Q703.75 836 704 844.2 M683.55 873.8 L681.5 871.9 678.75 869.9 Q672.3 865.75 664.15 865.75 655.95 865.75 649.5 869.9 640 874.75 630.5 869.9 624.05 865.75 615.9 865.75 607.75 865.75 601.3 869.9 L598.55 871.9 596.45 873.8 Q588.4 881.85 588.4 893.2 588.4 904.6 596.45 912.7 L596.55 912.7 601.1 916.4 Q601.15 932.35 612.5 943.6 617 948.15 622.3 950.85 630.3 955 640 955 656.1 955 667.55 943.6 L671.2 939.5 Q678.8 929.5 678.9 916.4 L683.55 912.7 Q691.6 904.6 691.6 893.2 691.6 881.85 683.55 873.8 M658 860.7 L657.95 860.15 Q657.5 852.95 652.85 847.7 647.7 841.95 640.5 841.95 633.25 841.95 628.1 847.7 623.5 852.95 623.05 860.15 L623 860.7 Q623 861.4 623.3 862.05 624.2 864.2 628.1 865.85 633.25 867.95 640.5 867.95 647.7 867.95 652.85 865.85 656.8 864.2 657.75 862.05 L658 860.7"/>
+ <path stroke="none" fill="#BDB6B6" d="M683.55 873.8 Q691.6 881.85 691.6 893.2 691.6 904.6 683.55 912.7 L678.9 916.4 Q678.8 929.5 671.2 939.5 L667.55 943.6 Q656.1 955 640 955 630.3 955 622.3 950.85 617 948.15 612.5 943.6 601.15 932.35 601.1 916.4 L596.55 912.7 596.45 912.7 Q588.4 904.6 588.4 893.2 588.4 881.85 596.45 873.8 L598.55 871.9 601.3 869.9 Q607.75 865.75 615.9 865.75 624.05 865.75 630.5 869.9 640 874.75 649.5 869.9 655.95 865.75 664.15 865.75 672.3 865.75 678.75 869.9 L681.5 871.9 683.55 873.8 M618.25 876.7 Q616.95 876.85 615.95 877.8 615 878.75 615 880.1 615 881.45 615.95 882.4 616.95 883.35 618.55 883.55 639.95 886.15 661.15 883.35 663 883.35 663.95 882.4 664.9 881.45 664.9 880.1 664.9 878.75 663.95 877.8 663 876.85 661.15 876.65 639.15 874.6 618.25 876.7 M598.35 897.05 Q598.35 901.65 601.6 904.8 604.9 908.15 609.5 908.15 614.05 908.15 617.4 904.8 620.6 901.65 620.6 897.05 620.6 892.45 617.4 889.25 614.05 886.05 609.5 886.05 604.9 886.05 601.6 889.25 598.35 892.45 598.35 897.05 M643.75 900.15 L643.6 900.25 Q642.45 901.4 642.45 903.1 642.45 904.85 643.7 906.1 L644.1 906.4 644.5 906.7 Q645.4 907.3 646.65 907.3 648.3 907.3 649.45 906.15 L649.6 905.95 651.25 903.95 Q652.1 902.75 652.4 901.5 L652.5 901.15 Q652.95 898.95 651.85 897.85 650.65 896.65 648.2 897.3 645.9 898 643.75 900.15 M637.25 906.1 Q638.45 904.85 638.45 903.1 638.45 901.4 637.3 900.25 L637.15 900.15 Q635.05 898 632.65 897.3 630.25 896.65 629 897.85 627.9 898.95 628.4 901.15 L628.5 901.5 Q628.8 902.75 629.6 904 630.25 905 631.25 905.95 L631.35 906.15 Q632.55 907.3 634.25 907.3 635.45 907.3 636.45 906.7 L636.85 906.4 637.25 906.1 M622.3 919.35 L619.45 920.25 Q616 921.45 614.5 924.65 612.9 927.95 614.1 931.25 615.25 934.7 618.55 936.25 620.4 937.15 622.3 937.15 L625.1 936.65 Q641.6 930.9 655.35 936.45 657.3 937.25 659.3 937.1 L661.95 936.45 Q665.25 935.15 666.6 931.8 667.95 928.5 666.65 925.15 665.3 921.9 662.05 920.45 L659.3 919.35 Q642.3 913.2 622.3 919.35 M682.4 897.05 Q682.4 892.45 679.15 889.25 675.9 886.05 671.25 886.05 666.7 886.05 663.5 889.25 660.15 892.45 660.15 897.05 660.15 901.65 663.5 904.8 666.7 908.15 671.25 908.15 675.9 908.15 679.15 904.8 682.4 901.65 682.4 897.05"/>
+ <path stroke="none" fill="#464545" d="M658 860.7 L657.75 862.05 Q656.8 864.2 652.85 865.85 647.7 867.95 640.5 867.95 633.25 867.95 628.1 865.85 624.2 864.2 623.3 862.05 623 861.4 623 860.7 L623.05 860.15 Q623.5 852.95 628.1 847.7 633.25 841.95 640.5 841.95 647.7 841.95 652.85 847.7 657.5 852.95 657.95 860.15 L658 860.7"/>
+ <path stroke="none" fill="#A8A1A1" d="M618.25 876.7 Q639.15 874.6 661.15 876.65 663 876.85 663.95 877.8 664.9 878.75 664.9 880.1 664.9 881.45 663.95 882.4 663 883.35 661.15 883.35 639.95 886.15 618.55 883.55 616.95 883.35 615.95 882.4 615 881.45 615 880.1 615 878.75 615.95 877.8 616.95 876.85 618.25 876.7"/>
+ <path stroke="none" fill="#FFFFFF" d="M598.35 897.05 Q598.35 892.45 601.6 889.25 604.9 886.05 609.5 886.05 614.05 886.05 617.4 889.25 620.6 892.45 620.6 897.05 620.6 901.65 617.4 904.8 614.05 908.15 609.5 908.15 604.9 908.15 601.6 904.8 598.35 901.65 598.35 897.05 M603.8 897.3 Q603.8 900.15 605.85 902.1 607.75 904.2 610.7 904.2 613.6 904.2 615.65 902.1 617.7 900.15 617.7 897.3 617.7 894.3 615.65 892.35 613.6 890.35 610.7 890.35 607.75 890.35 605.85 892.35 603.8 894.3 603.8 897.3 M622.3 937.15 Q618.75 929.25 622.3 919.35 642.3 913.2 659.3 919.35 662.45 928.75 659.3 937.1 657.3 937.25 655.35 936.45 641.6 930.9 625.1 936.65 L622.3 937.15 M682.4 897.05 Q682.4 901.65 679.15 904.8 675.9 908.15 671.25 908.15 666.7 908.15 663.5 904.8 660.15 901.65 660.15 897.05 660.15 892.45 663.5 889.25 666.7 886.05 671.25 886.05 675.9 886.05 679.15 889.25 682.4 892.45 682.4 897.05 M677.05 897.3 Q677.05 894.3 675 892.35 672.95 890.35 670.1 890.35 667.25 890.35 665.1 892.35 663.05 894.3 663.05 897.3 663.05 900.15 665.1 902.1 667.25 904.2 670.1 904.2 672.95 904.2 675 902.1 677.05 900.15 677.05 897.3"/>
+ <path stroke="none" fill="#989292" d="M643.75 900.15 Q645.9 898 648.2 897.3 650.65 896.65 651.85 897.85 652.95 898.95 652.5 901.15 L652.4 901.5 Q652.1 902.75 651.25 903.95 L649.6 905.95 649.45 906.15 Q648.3 907.3 646.65 907.3 645.4 907.3 644.5 906.7 L644.1 906.4 643.7 906.1 Q642.45 904.85 642.45 903.1 642.45 901.4 643.6 900.25 L643.75 900.15 M637.25 906.1 L636.85 906.4 636.45 906.7 Q635.45 907.3 634.25 907.3 632.55 907.3 631.35 906.15 L631.25 905.95 Q630.25 905 629.6 904 628.8 902.75 628.5 901.5 L628.4 901.15 Q627.9 898.95 629 897.85 630.25 896.65 632.65 897.3 635.05 898 637.15 900.15 L637.3 900.25 Q638.45 901.4 638.45 903.1 638.45 904.85 637.25 906.1"/>
+ <path stroke="none" fill="#5B5B5B" d="M603.8 897.3 Q603.8 894.3 605.85 892.35 607.75 890.35 610.7 890.35 613.6 890.35 615.65 892.35 617.7 894.3 617.7 897.3 617.7 900.15 615.65 902.1 613.6 904.2 610.7 904.2 607.75 904.2 605.85 902.1 603.8 900.15 603.8 897.3 M677.05 897.3 Q677.05 900.15 675 902.1 672.95 904.2 670.1 904.2 667.25 904.2 665.1 902.1 663.05 900.15 663.05 897.3 663.05 894.3 665.1 892.35 667.25 890.35 670.1 890.35 672.95 890.35 675 892.35 677.05 894.3 677.05 897.3"/>
+ <path stroke="none" fill="#E7E7E7" d="M622.3 919.35 Q618.75 929.25 622.3 937.15 620.4 937.15 618.55 936.25 615.25 934.7 614.1 931.25 612.9 927.95 614.5 924.65 616 921.45 619.45 920.25 L622.3 919.35 M659.3 937.1 Q662.45 928.75 659.3 919.35 L662.05 920.45 Q665.3 921.9 666.65 925.15 667.95 928.5 666.6 931.8 665.25 935.15 661.95 936.45 L659.3 937.1"/>
+ <path stroke="none" fill="#857E7E" d="M368.1 828 L399.8 828 Q399.85 827.25 400.15 826.6 400.75 822.4 402.05 821 L402.05 820.95 Q406.55 814.95 414.1 812.3 L414.05 812.3 Q421.85 809.5 428.3 811.95 434.9 814.45 436.7 820.5 L436.75 820.75 437.35 823.6 437.35 823.5 438.1 828 439.35 828 Q446.05 828 449.1 831.8 452 834.85 452 840.7 L452 951.85 452 952 Q451.85 956.95 449.5 959.8 L449.1 960.2 448.35 961 448.15 961.2 447.85 961.4 446.75 962.05 442.5 963.7 441.45 963.95 441.35 963.95 441.3 963.95 441 963.95 440.65 964 440.6 964 440.5 964 440.4 964 440.35 964 439.9 964 439.75 964 439.65 964 439.35 964 328.65 964 328.5 964 328.45 964 327.7 964 327.6 964 327.45 964 Q322.05 963.65 319.3 960.6 L319.25 960.55 318.7 959.95 318.4 959.6 Q316.15 956.8 316 952 L316 951.85 316 840.7 316 840.6 316 840.55 316 840.5 316 840.4 316.1 839.45 317.2 834.75 317.6 833.75 Q318.1 832.8 318.75 832.05 L318.9 831.85 Q321.95 828 328.65 828 L329.85 828 330.65 823.6 330.6 823.65 331.2 820.75 331.3 820.5 Q333.05 814.4 339.7 812 346.2 809.55 353.9 812.35 L353.85 812.35 Q361.4 814.95 365.9 821 L366 821.15 Q367.1 822.5 367.85 826.8 L368.1 828 368.05 828 368.05 828.1 368.1 828.35 368.1 828.5 368.1 828 M448 844.2 L448 840.7 Q448 836.6 446.1 834.45 443.95 832 439.35 832 L434.6 832 Q434.2 828.25 433.4 824.3 L432.85 821.65 Q431.55 817.45 426.9 815.7 421.7 813.8 415.4 816.05 409.05 818.3 405.25 823.35 404.4 824.5 404 827.95 L403.8 828.2 403.8 829.45 403.7 830.45 403.65 830.9 406.8 832 402.7 832 365.2 832 361.15 832 364.3 830.9 364.1 828.75 364.1 828.2 364 828.05 Q363.45 824.5 362.7 823.4 358.9 818.3 352.55 816.1 346.3 813.85 341.05 815.75 336.4 817.45 335.1 821.65 L334.55 824.35 Q333.75 828.3 333.4 832 L328.65 832 Q324.05 832 321.9 834.5 L321.1 835.65 320 840.35 320 840.45 320 840.6 320 840.7 320 844.2 320 905.65 320 951.85 Q320.1 955.2 321.6 957.2 L322.15 957.8 Q324.05 959.75 327.7 960 L327.85 960 328.5 960 328.65 960 439.35 960 439.65 960 439.8 960 440.4 960 440.5 960 440.65 960 440.9 959.95 441.05 959.95 445.35 958.3 445.6 958.1 446.35 957.3 Q447.9 955.3 448 951.85 L448 905.7 448 844.2"/>
+ <path stroke="none" fill="#FFFFFF" d="M448 844.2 Q447.8 837 441.25 836.15 L446.1 834.45 Q448 836.6 448 840.7 L448 844.2 M320 844.2 L320 840.7 320 840.6 320 840.45 320 840.35 321.1 835.65 321.9 834.5 326.7 836.15 Q320.2 837 320 844.2 M361.15 832 L365.2 832 365.6 836 358.45 836 357.65 833.45 357.1 832 361.15 832 M402.7 832 L406.8 832 410.85 832 410.3 833.45 409.45 836 402.35 836 402.7 832 M427.7 878.75 Q427.7 875.15 425.2 872.6 422.7 870.1 419.05 870.1 415.5 870.1 412.9 872.6 410.4 875.15 410.4 878.75 410.4 882.35 412.9 884.8 415.5 887.35 419.05 887.35 422.7 887.35 425.2 884.8 427.7 882.35 427.7 878.75 M432.45 878.55 Q432.45 883.7 428.8 887.3 425.15 891 419.95 891 414.85 891 411.15 887.3 407.5 883.7 407.5 878.55 407.5 873.35 411.15 869.7 414.85 866.05 419.95 866.05 425.15 866.05 428.8 869.7 432.45 873.35 432.45 878.55 M340.15 878.75 Q340.15 882.35 342.7 884.8 345.2 887.35 348.85 887.35 352.4 887.35 354.95 884.8 357.5 882.35 357.5 878.75 357.5 875.15 354.95 872.6 352.4 870.1 348.85 870.1 345.2 870.1 342.7 872.6 340.15 875.15 340.15 878.75 M335.45 878.55 Q335.45 873.35 339.1 869.7 342.75 866.05 347.95 866.05 353.05 866.05 356.75 869.7 360.4 873.35 360.4 878.55 360.4 883.7 356.75 887.3 353.05 891 347.95 891 342.75 891 339.1 887.3 335.45 883.7 335.45 878.55"/>
+ <path stroke="none" fill="#414040" d="M448 905.7 L448 951.85 Q447.9 955.3 446.35 957.3 440.65 917.7 426.5 906.2 L426.3 906 Q421.15 901.05 427.15 900.75 435.75 900.6 448 905.7 M321.6 957.2 Q320.1 955.2 320 951.85 L320 905.65 Q332.2 900.6 340.75 900.75 346.75 901.05 341.6 906 L341.4 906.2 Q327.25 917.65 321.6 957.2 M364 828.05 L364.1 828.2 364.1 828.75 364.2 830.45 364.3 830.9 361.15 832 357.1 832 334.65 832 335.3 828.25 335.9 825.5 Q337.15 821.35 341.85 819.6 347.05 817.7 353.35 819.95 359.7 822.15 363.5 827.3 L364 828.05 M406.8 832 L403.65 830.9 403.7 830.45 403.8 829.45 403.8 828.2 404 827.95 404.45 827.25 Q408.25 822.15 414.65 819.9 420.9 817.65 426.1 819.55 430.8 821.35 432.05 825.5 L432.65 828.2 433.35 832 410.85 832 406.8 832 M441.25 836.15 Q437.7 837.4 434.95 838.55 L434.05 838.95 Q429.85 840.75 427.65 842.3 L427.25 842.6 425.85 843.55 Q421.25 846.75 418.75 848.8 415.75 851.15 414.45 851.9 408 855.45 407.5 848.85 L407.6 847 Q407.75 842.85 408.65 839.15 L409.45 836 439.35 836 441.25 836.15 M365.6 836 L402.35 836 401.3 846.7 400.95 848.7 Q400.35 851.1 399.15 852.9 L395.4 857.45 Q389.4 863.4 383.9 863.5 378.45 863.4 372.75 857.6 370.5 855.45 368.75 852.9 367.05 850.4 366.6 846.7 L365.6 836 M358.45 836 L359.25 839.15 Q360.15 842.85 360.3 847 L360.4 848.85 Q359.9 855.45 353.45 851.9 L349.15 848.8 342.05 843.55 340.75 842.65 340.25 842.3 Q338.05 840.75 333.95 838.95 L333.05 838.6 Q330.3 837.4 326.7 836.15 L328.65 836 358.45 836 M365.45 898.05 L367.8 889.95 Q371.05 880.05 383.95 880.4 397.95 880.8 400.1 889.95 L402.5 898.1 Q394.2 894 383.95 894 373.7 894 365.45 898.05 M421.4 927.9 Q420.65 939.95 410.45 948.6 399.45 958 383.95 958 368.4 958 357.4 948.6 347.25 939.9 346.5 927.9 347.3 916 357.4 907.35 360.45 904.75 363.8 902.9 372.7 898 383.95 898 395.2 898 404.1 902.95 407.45 904.8 410.45 907.35 420.55 916 421.4 927.9 M402.45 908.15 L401.6 907.55 Q400.2 906.85 398 907.5 L397.75 907.6 Q394.9 908.45 392.4 910.95 L392.25 911.1 Q391.6 911.8 391.25 912.65 390.85 913.55 390.85 914.65 390.85 916.8 392.35 918.3 393.85 919.8 396 919.8 398.05 919.8 399.55 918.4 L399.7 918.25 Q401.75 916.2 402.7 913.95 L403.15 912.65 403.3 912.15 Q403.7 910.25 403.05 909 L402.45 908.15 M368.35 918.4 Q369.85 919.8 371.9 919.8 374.05 919.8 375.55 918.3 377.05 916.8 377.05 914.65 L377.05 914.6 377.05 914.5 377.05 914 376.7 912.65 376.1 911.65 375.65 911.1 375.5 910.95 372.25 908.45 370.1 907.55 370.05 907.55 369.9 907.5 369.8 907.45 368 907.2 367.1 907.3 Q366.65 907.35 366.3 907.55 L365.65 908 365.45 908.15 364.85 909 364.8 909.1 364.5 910.45 Q364.4 911.25 364.6 912.15 L364.75 912.6 364.75 912.65 365.2 913.95 Q366.15 916.2 368.2 918.25 L368.35 918.4"/>
+ <path stroke="none" fill="#E9E9E9" d="M448 844.2 L448 905.7 Q435.75 900.6 427.15 900.75 421.15 901.05 426.3 906 L426.5 906.2 Q440.65 917.7 446.35 957.3 L445.6 958.1 445.35 958.3 441.05 959.95 440.9 959.95 440.65 960 440.5 960 440.4 960 439.8 960 439.65 960 439.35 960 328.65 960 328.5 960 327.85 960 327.7 960 Q324.05 959.75 322.15 957.8 L321.6 957.2 Q327.25 917.65 341.4 906.2 L341.6 906 Q346.75 901.05 340.75 900.75 332.2 900.6 320 905.65 L320 844.2 Q320.2 837 326.7 836.15 330.3 837.4 333.05 838.6 L333.95 838.95 Q338.05 840.75 340.25 842.3 L340.75 842.65 342.05 843.55 349.15 848.8 353.45 851.9 Q359.9 855.45 360.4 848.85 L360.3 847 Q360.15 842.85 359.25 839.15 L358.45 836 365.6 836 366.6 846.7 Q367.05 850.4 368.75 852.9 370.5 855.45 372.75 857.6 378.45 863.4 383.9 863.5 389.4 863.4 395.4 857.45 L399.15 852.9 Q400.35 851.1 400.95 848.7 L401.3 846.7 402.35 836 409.45 836 408.65 839.15 Q407.75 842.85 407.6 847 L407.5 848.85 Q408 855.45 414.45 851.9 415.75 851.15 418.75 848.8 421.25 846.75 425.85 843.55 L427.25 842.6 427.65 842.3 Q429.85 840.75 434.05 838.95 L434.95 838.55 Q437.7 837.4 441.25 836.15 447.8 837 448 844.2 M432.45 878.55 Q432.45 873.35 428.8 869.7 425.15 866.05 419.95 866.05 414.85 866.05 411.15 869.7 407.5 873.35 407.5 878.55 407.5 883.7 411.15 887.3 414.85 891 419.95 891 425.15 891 428.8 887.3 432.45 883.7 432.45 878.55 M335.45 878.55 Q335.45 883.7 339.1 887.3 342.75 891 347.95 891 353.05 891 356.75 887.3 360.4 883.7 360.4 878.55 360.4 873.35 356.75 869.7 353.05 866.05 347.95 866.05 342.75 866.05 339.1 869.7 335.45 873.35 335.45 878.55 M402.5 898.1 L400.1 889.95 Q397.95 880.8 383.95 880.4 371.05 880.05 367.8 889.95 L365.45 898.05 Q361.15 900.15 357.4 903.35 346.85 912.4 346.45 925 L346.45 926 346.5 927.9 Q347.25 939.9 357.4 948.6 368.4 958 383.95 958 399.45 958 410.45 948.6 420.65 939.95 421.4 927.9 L421.45 926 421.45 925 Q421 912.4 410.45 903.35 406.7 900.2 402.5 898.1"/>
+ <path stroke="none" fill="#4A4949" d="M321.9 834.5 Q324.05 832 328.65 832 L333.4 832 334.65 832 357.1 832 357.65 833.45 358.45 836 328.65 836 326.7 836.15 321.9 834.5 M365.2 832 L402.7 832 402.35 836 365.6 836 365.2 832 M434.6 832 L439.35 832 Q443.95 832 446.1 834.45 L441.25 836.15 439.35 836 409.45 836 410.3 833.45 410.85 832 433.35 832 434.6 832"/>
+ <path stroke="none" fill="#545353" d="M434.6 832 L433.35 832 432.65 828.2 432.05 825.5 Q430.8 821.35 426.1 819.55 420.9 817.65 414.65 819.9 408.25 822.15 404.45 827.25 L404 827.95 Q404.4 824.5 405.25 823.35 409.05 818.3 415.4 816.05 421.7 813.8 426.9 815.7 431.55 817.45 432.85 821.65 L433.4 824.3 Q434.2 828.25 434.6 832 M333.4 832 Q333.75 828.3 334.55 824.35 L335.1 821.65 Q336.4 817.45 341.05 815.75 346.3 813.85 352.55 816.1 358.9 818.3 362.7 823.4 363.45 824.5 364 828.05 L363.5 827.3 Q359.7 822.15 353.35 819.95 347.05 817.7 341.85 819.6 337.15 821.35 335.9 825.5 L335.3 828.25 334.65 832 333.4 832 M364.1 828.75 L364.3 830.9 364.2 830.45 364.1 828.75 M402.5 898.1 Q406.7 900.2 410.45 903.35 421 912.4 421.45 925 L421.45 926 421.4 927.9 Q420.55 916 410.45 907.35 407.45 904.8 404.1 902.95 395.2 898 383.95 898 372.7 898 363.8 902.9 360.45 904.75 357.4 907.35 347.3 916 346.5 927.9 L346.45 926 346.45 925 Q346.85 912.4 357.4 903.35 361.15 900.15 365.45 898.05 373.7 894 383.95 894 394.2 894 402.5 898.1"/>
+ <path stroke="none" fill="#5B5B5B" d="M427.7 878.75 Q427.7 882.35 425.2 884.8 422.7 887.35 419.05 887.35 415.5 887.35 412.9 884.8 410.4 882.35 410.4 878.75 410.4 875.15 412.9 872.6 415.5 870.1 419.05 870.1 422.7 870.1 425.2 872.6 427.7 875.15 427.7 878.75 M340.15 878.75 Q340.15 875.15 342.7 872.6 345.2 870.1 348.85 870.1 352.4 870.1 354.95 872.6 357.5 875.15 357.5 878.75 357.5 882.35 354.95 884.8 352.4 887.35 348.85 887.35 345.2 887.35 342.7 884.8 340.15 882.35 340.15 878.75"/>
+ <path stroke="none" fill="#2E2D2D" d="M402.45 908.15 L403.05 909 Q403.7 910.25 403.3 912.15 L403.15 912.65 402.7 913.95 Q401.75 916.2 399.7 918.25 L399.55 918.4 Q398.05 919.8 396 919.8 393.85 919.8 392.35 918.3 390.85 916.8 390.85 914.65 390.85 913.55 391.25 912.65 391.6 911.8 392.25 911.1 L392.4 910.95 Q394.9 908.45 397.75 907.6 L398 907.5 Q400.2 906.85 401.6 907.55 L402.45 908.15 M368.35 918.4 L368.2 918.25 Q366.15 916.2 365.2 913.95 L364.75 912.65 364.75 912.6 364.6 912.15 Q364.4 911.25 364.5 910.45 L364.8 909.1 364.85 909 365.45 908.15 365.65 908 366.3 907.55 Q366.65 907.35 367.1 907.3 L368 907.2 369.8 907.45 369.9 907.5 370.05 907.55 370.1 907.55 372.25 908.45 375.5 910.95 375.65 911.1 376.1 911.65 376.7 912.65 377.05 914 377.05 914.5 377.05 914.6 377.05 914.65 Q377.05 916.8 375.55 918.3 374.05 919.8 371.9 919.8 369.85 919.8 368.35 918.4"/>
+ <path stroke="none" fill="#857E7E" d="M183.35 828 Q196 828 196 840.7 L196 842.3 Q197.35 842.75 198.8 843.55 L198.85 843.6 Q204.95 847 209.25 854.4 L209.2 854.4 Q213.45 861.65 213.35 868.65 L213.35 868.7 213.25 870.9 Q212.5 876.9 208.7 879.55 L208.65 879.6 207.7 880.25 207.45 880.4 206.35 881 206.25 881.1 Q201.05 884.05 196 885.65 L196 951.85 196 952 Q195.7 964 183.35 964 L72.65 964 Q60.3 964 60 952 L60 951.85 60 885.55 Q55.1 883.95 50.1 881.1 L50 881 Q49.45 880.65 48.9 880.4 L48.7 880.25 47.75 879.6 47.65 879.55 Q43.85 876.9 43.2 870.85 L43.2 871.1 43 868.7 43 868.65 Q42.9 861.65 47.15 854.4 51.4 847 57.55 843.6 L57.6 843.55 60 842.4 60 840.7 Q60 828 72.65 828 L183.35 828 M192 844.2 L192 840.7 Q192 832 183.35 832 L72.65 832 Q64 832 64 840.7 L64 844.2 64 845.45 Q61.95 845.7 59.5 847.05 54.25 850.05 50.6 856.4 46.95 862.65 47 868.65 47 869.55 47.15 870.4 47.6 874.5 50.05 876.35 L50.8 876.85 52.1 877.6 Q58.15 881.1 64 882.5 L64 951.85 Q64.25 960 72.65 960 L82.5 960 173.45 960 183.35 960 Q191.75 960 192 951.85 L192 882.6 Q198.05 881.2 204.25 877.6 L205.55 876.85 206.3 876.35 Q208.75 874.5 209.25 870.4 L209.35 868.65 Q209.4 862.65 205.75 856.4 202.1 850.05 196.85 847.05 194.2 845.6 192 845.4 L192 844.2"/>
+ <path stroke="none" fill="#DBD9D9" d="M192 844.2 Q191.75 836 183.35 836 L168.7 836 87.3 836 72.65 836 Q64.25 836 64 844.2 L64 840.7 Q64 832 72.65 832 L183.35 832 Q192 832 192 840.7 L192 844.2"/>
+ <path stroke="none" fill="#D2D0D0" d="M192 844.2 L192 845.4 192 849.4 192 861.3 192 882.6 192 951.85 Q191.75 960 183.35 960 L173.45 960 Q170.65 957.15 170.7 951.65 169.4 933.7 158.35 920.55 152.45 913.5 145.4 909.8 146.3 907.6 146.3 905.15 146.3 899.2 140.9 895 139.55 893.95 138.1 893.2 L129.4 863.8 128.9 863.05 Q128.5 862.75 128 862.75 127.55 862.75 127.15 863.05 126.75 863.35 126.6 863.8 L117.95 893.15 Q116.4 893.95 115 895 109.7 899.2 109.7 905.15 109.7 907.85 110.8 910.2 104.15 913.85 98.5 920.55 87.55 933.7 86.3 951.65 85.15 957.15 82.5 960 L72.65 960 Q64.25 960 64 951.85 L64 882.5 64 861.35 64 849.45 64 845.45 64 844.2 Q64.25 836 72.65 836 L87.3 836 Q90.5 840.25 96.85 843.8 109.75 851 128 851 146.2 851 159.1 843.8 165.5 840.25 168.7 836 L183.35 836 Q191.75 836 192 844.2 M179.25 903.2 Q179.25 897.45 175.2 893.45 171.15 889.4 165.45 889.4 159.85 889.4 155.7 893.45 151.75 897.45 151.75 903.2 151.75 908.9 155.7 912.8 159.85 916.9 165.45 916.9 171.15 916.9 175.2 912.8 179.25 908.9 179.25 903.2 M76.75 903.2 Q76.75 908.9 80.8 912.8 84.85 916.9 90.55 916.9 96.15 916.9 100.3 912.8 104.25 908.9 104.25 903.2 104.25 897.45 100.3 893.45 96.15 889.4 90.55 889.4 84.85 889.4 80.8 893.45 76.75 897.45 76.75 903.2"/>
+ <path stroke="none" fill="#CDC6C6" d="M192 849.4 L192 845.4 Q194.2 845.6 196.85 847.05 202.1 850.05 205.75 856.4 209.4 862.65 209.35 868.65 L209.25 870.4 Q208.7 865.45 205.75 860.4 202.1 854.05 196.85 851.05 194.2 849.6 192 849.4 M64 849.45 Q61.95 849.7 59.5 851.05 54.25 854.05 50.6 860.4 47.65 865.45 47.15 870.4 47 869.55 47 868.65 46.95 862.65 50.6 856.4 54.25 850.05 59.5 847.05 61.95 845.7 64 845.45 L64 849.45"/>
+ <path stroke="none" fill="#BDB6B6" d="M64 849.45 L64 861.35 Q62.45 861.6 60.7 862.55 56.4 865.05 53.4 870.3 51.45 873.6 50.8 876.85 L50.05 876.35 Q47.6 874.5 47.15 870.4 47.65 865.45 50.6 860.4 54.25 854.05 59.5 851.05 61.95 849.7 64 849.45 M192 849.4 Q194.2 849.6 196.85 851.05 202.1 854.05 205.75 860.4 208.7 865.45 209.25 870.4 208.75 874.5 206.3 876.35 L205.55 876.85 Q204.9 873.6 202.95 870.3 199.95 865.05 195.65 862.55 193.7 861.5 192 861.3 L192 849.4 M138.1 893.2 Q139.55 893.95 140.9 895 146.3 899.2 146.3 905.15 146.3 907.6 145.4 909.8 152.45 913.5 158.35 920.55 169.4 933.7 170.7 951.65 170.65 957.15 173.45 960 L82.5 960 Q85.15 957.15 86.3 951.65 87.55 933.7 98.5 920.55 104.15 913.85 110.8 910.2 109.7 907.85 109.7 905.15 109.7 899.2 115 895 116.4 893.95 117.95 893.15 L116.75 897.15 Q116.2 898.95 116.05 900.55 115.55 904.8 117.5 907.35 L117.7 907.6 Q120.4 911.15 128 911.15 135.6 911.15 138.35 907.6 L138.7 907.15 Q140.45 904.6 140 900.6 L139.25 897.15 138.1 893.2 M145.6 923.35 Q144.5 922.25 142.3 922.85 140.05 923.45 138.1 925.45 L137.95 925.55 Q136.9 926.65 136.9 928.25 136.9 929.85 138.05 930.95 139.15 932.1 140.8 932.1 142.3 932.1 143.45 931.05 L143.55 930.95 Q145.55 928.95 146.15 926.75 146.8 924.5 145.6 923.35 M113.45 931.05 Q114.55 932.1 116.1 932.1 117.7 932.1 118.85 930.95 119.95 929.85 119.95 928.25 119.95 926.65 118.9 925.55 L118.8 925.45 Q116.8 923.45 114.6 922.85 112.4 922.25 111.25 923.35 110.1 924.5 110.75 926.75 111.35 928.95 113.35 930.95 L113.45 931.05"/>
+ <path stroke="none" fill="#A8A1A1" d="M192 861.3 Q193.7 861.5 195.65 862.55 199.95 865.05 202.95 870.3 204.9 873.6 205.55 876.85 L204.25 877.6 Q198.05 881.2 192 882.6 L192 861.3 M50.8 876.85 Q51.45 873.6 53.4 870.3 56.4 865.05 60.7 862.55 62.45 861.6 64 861.35 L64 882.5 Q58.15 881.1 52.1 877.6 L50.8 876.85"/>
+ <path stroke="none" fill="#FFFFFF" d="M179.25 903.2 Q179.25 908.9 175.2 912.8 171.15 916.9 165.45 916.9 159.85 916.9 155.7 912.8 151.75 908.9 151.75 903.2 151.75 897.45 155.7 893.45 159.85 889.4 165.45 889.4 171.15 889.4 175.2 893.45 179.25 897.45 179.25 903.2 M171.7 903.1 Q171.7 899.45 169.25 897 166.7 894.45 163.05 894.45 159.55 894.45 156.95 897 154.4 899.45 154.4 903.1 L154.45 903.95 Q154.7 906.9 156.95 909.05 159.55 911.55 163.05 911.55 166.7 911.55 169.25 909.05 171.4 906.9 171.65 903.95 L171.7 903.1 M76.75 903.2 Q76.75 897.45 80.8 893.45 84.85 889.4 90.55 889.4 96.15 889.4 100.3 893.45 104.25 897.45 104.25 903.2 104.25 908.9 100.3 912.8 96.15 916.9 90.55 916.9 84.85 916.9 80.8 912.8 76.75 908.9 76.75 903.2 M84.3 903.1 L84.35 903.95 Q84.6 906.9 86.75 909.05 89.3 911.55 92.95 911.55 96.45 911.55 99.05 909.05 101.3 906.9 101.55 903.95 L101.6 903.1 Q101.6 899.45 99.05 897 96.45 894.45 92.95 894.45 89.3 894.45 86.75 897 84.3 899.45 84.3 903.1"/>
+ <path stroke="none" fill="#5B5B5B" d="M84.3 903.1 Q84.3 899.45 86.75 897 89.3 894.45 92.95 894.45 96.45 894.45 99.05 897 101.6 899.45 101.6 903.1 L101.55 903.95 Q101.3 906.9 99.05 909.05 96.45 911.55 92.95 911.55 89.3 911.55 86.75 909.05 84.6 906.9 84.35 903.95 L84.3 903.1 M171.7 903.1 L171.65 903.95 Q171.4 906.9 169.25 909.05 166.7 911.55 163.05 911.55 159.55 911.55 156.95 909.05 154.7 906.9 154.45 903.95 L154.4 903.1 Q154.4 899.45 156.95 897 159.55 894.45 163.05 894.45 166.7 894.45 169.25 897 171.7 899.45 171.7 903.1"/>
+ <path stroke="none" fill="#FFFCF5" d="M117.95 893.15 L126.6 863.8 Q126.75 863.35 127.15 863.05 127.55 862.75 128 862.75 128.5 862.75 128.9 863.05 L129.4 863.8 138.1 893.2 139.25 897.15 140 900.6 Q139.65 902.4 138.35 903.65 136.7 905.35 133.3 906.05 L128 906.5 123.1 906.15 Q119.4 905.45 117.7 903.65 116.35 902.35 116.05 900.55 116.2 898.95 116.75 897.15 L117.95 893.15"/>
+ <path stroke="none" fill="#DEDCDC" d="M87.3 836 L168.7 836 Q165.5 840.25 159.1 843.8 146.2 851 128 851 109.75 851 96.85 843.8 90.5 840.25 87.3 836"/>
+ <path stroke="none" fill="#F0EDE7" d="M140 900.6 Q140.45 904.6 138.7 907.15 L138.35 907.6 Q135.6 911.15 128 911.15 120.4 911.15 117.7 907.6 L117.5 907.35 Q115.55 904.8 116.05 900.55 116.35 902.35 117.7 903.65 119.4 905.45 123.1 906.15 L128 906.5 133.3 906.05 Q136.7 905.35 138.35 903.65 139.65 902.4 140 900.6"/>
+ <path stroke="none" fill="#9A9494" d="M145.6 923.35 Q146.8 924.5 146.15 926.75 145.55 928.95 143.55 930.95 L143.45 931.05 Q142.3 932.1 140.8 932.1 139.15 932.1 138.05 930.95 136.9 929.85 136.9 928.25 136.9 926.65 137.95 925.55 L138.1 925.45 Q140.05 923.45 142.3 922.85 144.5 922.25 145.6 923.35 M113.45 931.05 L113.35 930.95 Q111.35 928.95 110.75 926.75 110.1 924.5 111.25 923.35 112.4 922.25 114.6 922.85 116.8 923.45 118.8 925.45 L118.9 925.55 Q119.95 926.65 119.95 928.25 119.95 929.85 118.85 930.95 117.7 932.1 116.1 932.1 114.55 932.1 113.45 931.05"/>
+ <path stroke="none" fill="#FFFFFF" d="M95.9 676.1 Q96.75 674.65 98 673.4 98.95 672.45 100.05 671.8 102.95 669.9 106.6 669.9 111.6 669.9 115.3 673.4 118.8 676.95 118.8 682 118.8 687.05 115.3 690.5 111.6 694.15 106.6 694.15 101.6 694.15 98 690.5 94.4 687.05 94.4 682 94.4 678.75 95.9 676.1 M100.35 682.25 Q100.35 685.4 102.6 687.55 104.75 689.85 107.95 689.85 111.1 689.85 113.35 687.55 115.6 685.4 115.6 682.25 115.6 678.95 113.35 676.8 111.1 674.65 107.95 674.65 104.75 674.65 102.6 676.8 100.35 678.95 100.35 682.25 M160.2 676.25 Q161.6 678.8 161.6 682 161.6 687.05 158.1 690.5 154.5 694.15 149.4 694.15 144.4 694.15 140.85 690.5 137.25 687.05 137.25 682 137.25 676.95 140.85 673.4 144.4 669.9 149.4 669.9 152.95 669.9 155.8 671.6 L158.1 673.4 Q159.4 674.7 160.2 676.25 M155.75 682.25 Q155.75 678.95 153.5 676.8 151.25 674.65 148.1 674.65 145 674.65 142.65 676.8 140.4 678.95 140.4 682.25 140.4 685.4 142.65 687.55 145 689.85 148.1 689.85 151.25 689.85 153.5 687.55 155.75 685.4 155.75 682.25"/>
+ <path stroke="none" fill="#986C4C" d="M100.05 671.8 Q98.95 672.45 98 673.4 96.75 674.65 95.9 676.1 86.5 687.3 86.5 702.45 86.5 719.65 98.65 731.8 102.5 735.65 106.9 738.3 98.4 748.65 90.9 768 L72.65 768 Q64.25 768 64 759.85 L64 652.2 Q64.25 644 72.65 644 L93.45 644 Q99.6 658.35 106.45 666.9 103.1 668.95 100.05 671.8 M149.15 738.3 Q153.5 735.65 157.35 731.8 169.5 719.65 169.5 702.45 169.5 687.4 160.2 676.25 159.4 674.7 158.1 673.4 L155.8 671.6 Q152.8 668.9 149.55 666.9 156.4 658.35 162.65 644 L183.85 644 Q191.75 644.25 192 652.2 L192 759.85 Q191.75 767.75 183.9 768 L165.2 768 Q157.65 748.65 149.15 738.3"/>
+ <path stroke="none" fill="#916546" d="M149.15 738.3 Q146.6 739.8 143.95 740.95 L144.05 738.6 144.15 736.8 144.3 732.55 Q149.8 731.85 153.9 727.75 158.05 723.65 158.75 718.15 L161.75 720.5 162.2 720.6 162.65 720.45 162.85 720.05 163.9 716.45 163.9 716 163.6 715.6 Q161.4 714 158.65 713.1 158.3 710.95 157.45 709.1 L167.2 710.1 167.7 710 168.15 709.55 168.15 708.95 167.45 704.3 167.2 703.8 Q166.95 703.55 166.7 703.5 160.85 702.35 154.4 704.55 L153.9 704 Q149.15 699.2 142.45 699.05 L140.3 699.05 140.4 698.45 140.5 696.7 140.45 695.8 Q140.15 693.55 136.8 691.9 133.15 690.15 128 690.15 122.8 690.15 119.1 691.9 115.75 693.55 115.5 695.8 L115.5 696.7 115.6 698.3 115.7 699.05 113.95 699.05 Q107 699.05 102.05 704 L101.55 704.5 Q95.15 702.35 89.3 703.5 L88.8 703.8 Q88.6 703.95 88.55 704.3 L87.85 708.95 87.85 709.55 88.3 710 88.8 710.1 98.55 709.1 Q97.7 711 97.35 713.1 94.6 714 92.4 715.6 L92.1 716 92.1 716.45 93.15 720.05 93.35 720.45 93.8 720.6 94.25 720.5 97.3 718.15 Q97.95 723.65 102.05 727.75 106.2 731.9 111.7 732.6 L111.9 736.8 111.95 738.6 112.1 740.95 Q109.4 739.8 106.9 738.3 102.5 735.65 98.65 731.8 86.5 719.65 86.5 702.45 86.5 687.3 95.9 676.1 94.4 678.75 94.4 682 94.4 687.05 98 690.5 101.6 694.15 106.6 694.15 111.6 694.15 115.3 690.5 118.8 687.05 118.8 682 118.8 676.95 115.3 673.4 111.6 669.9 106.6 669.9 102.95 669.9 100.05 671.8 103.1 668.95 106.45 666.9 116 660.95 128 660.95 140 660.95 149.55 666.9 152.8 668.9 155.8 671.6 152.95 669.9 149.4 669.9 144.4 669.9 140.85 673.4 137.25 676.95 137.25 682 137.25 687.05 140.85 690.5 144.4 694.15 149.4 694.15 154.5 694.15 158.1 690.5 161.6 687.05 161.6 682 161.6 678.8 160.2 676.25 169.5 687.4 169.5 702.45 169.5 719.65 157.35 731.8 153.5 735.65 149.15 738.3 M124.35 729.15 L125.85 727.75 128 725.25 130.1 727.75 131.65 729.15 131.65 740 131.65 743.8 128 743.95 124.35 743.8 124.35 740 124.35 729.15"/>
+ <path stroke="none" fill="#5B5B5B" d="M100.35 682.25 Q100.35 678.95 102.6 676.8 104.75 674.65 107.95 674.65 111.1 674.65 113.35 676.8 115.6 678.95 115.6 682.25 115.6 685.4 113.35 687.55 111.1 689.85 107.95 689.85 104.75 689.85 102.6 687.55 100.35 685.4 100.35 682.25 M155.75 682.25 Q155.75 685.4 153.5 687.55 151.25 689.85 148.1 689.85 145 689.85 142.65 687.55 140.4 685.4 140.4 682.25 140.4 678.95 142.65 676.8 145 674.65 148.1 674.65 151.25 674.65 153.5 676.8 155.75 678.95 155.75 682.25"/>
+ <path stroke="none" fill="#A17250" d="M106.45 666.9 Q99.6 658.35 93.45 644 L162.65 644 Q156.4 658.35 149.55 666.9 140 660.95 128 660.95 116 660.95 106.45 666.9"/>
+ <path stroke="none" fill="#333333" d="M115.6 698.3 L115.5 696.7 115.5 695.8 Q115.75 693.55 119.1 691.9 122.8 690.15 128 690.15 133.15 690.15 136.8 691.9 140.15 693.55 140.45 695.8 L140.5 696.7 140.4 698.45 Q139.9 696.4 136.8 694.9 133.15 693.15 128 693.15 122.8 693.15 119.1 694.9 116.1 696.35 115.6 698.3"/>
+ <path stroke="none" fill="#624630" d="M64 652.2 L64 759.85 Q64.25 768 72.65 768 L90.9 768 115.4 768 Q116.65 772.35 118.3 773.3 119.45 774.15 120.75 774 122.5 773.95 123.5 772.65 124.3 771.65 124.35 770.5 L124.35 770.2 124.35 768 131.65 768 131.65 770.2 131.65 770.5 Q131.7 771.65 132.5 772.65 133.5 773.95 135.25 774 136.55 774.15 137.7 773.3 139.35 772.35 140.65 768 L165.2 768 183.9 768 Q191.75 767.75 192 759.85 L192 652.2 192 648.7 Q192 645.9 191.1 644 189.3 640.2 183.9 640 L72.65 640 Q64 640 64 648.7 L64 652.2 M60 648.7 Q60 636 72.65 636 L183.9 636 184 636 Q192.15 636.3 194.75 642.3 196 644.9 196 648.7 L196 759.85 196 760 Q195.65 771.65 184 772 L183.9 772 143.5 772 Q141.9 775.85 139.75 776.75 137.45 778.3 134.9 778 131.4 777.75 129.35 775.1 L129.4 775.15 Q128.4 773.95 128 772.7 L126.65 775.15 126.7 775.1 Q124.65 777.75 121.2 778 118.6 778.35 116.25 776.75 114.1 775.85 112.55 772 L72.65 772 Q60.3 772 60 760 L60 759.85 60 648.7 M128.35 770.7 L128.2 772 131.65 772 128.35 768.7 128.35 770.2 128.35 770.5 128.35 770.7 M124.35 772 L127.85 772 127.65 770.7 127.65 770.5 127.65 770.2 127.65 768.7 124.35 772"/>
+ <path stroke="none" fill="#B17E58" d="M93.45 644 L72.65 644 Q64.25 644 64 652.2 L64 648.7 Q64 640 72.65 640 L183.9 640 Q189.3 640.2 191.1 644 192 645.9 192 648.7 L192 652.2 Q191.75 644.25 183.85 644 L162.65 644 93.45 644"/>
+ <path stroke="none" fill="#3C6672" d="M140.3 699.05 L142.45 699.05 Q149.15 699.2 153.9 704 L154.4 704.55 Q151.45 705.5 148.35 707.2 148.05 707.4 147.9 707.7 L147.9 708.3 148.2 708.85 148.8 709.05 Q153 708.85 157.45 709.1 158.3 710.95 158.65 713.1 154.5 711.75 149.2 712.05 148.9 712.1 148.7 712.25 L148.5 712.7 148.5 713.2 148.9 713.55 Q154.25 715.05 158.75 718.15 158.05 723.65 153.9 727.75 149.8 731.85 144.3 732.55 L143.6 732.65 142 732.7 Q138.1 732.7 134.85 731.15 133.15 730.35 131.65 729.15 L130.1 727.75 128 725.25 125.85 727.75 124.35 729.15 Q122.85 730.35 121.15 731.15 117.85 732.7 113.95 732.7 L112.45 732.65 111.7 732.6 Q106.2 731.9 102.05 727.75 97.95 723.65 97.3 718.15 101.75 715.05 107.1 713.55 L107.5 713.2 107.5 712.7 107.3 712.25 106.8 712.05 Q101.5 711.75 97.35 713.1 97.7 711 98.55 709.1 103 708.85 107.2 709.05 L107.8 708.85 108.1 708.3 108.1 707.7 107.65 707.2 Q104.55 705.5 101.55 704.5 L102.05 704 Q107 699.05 113.95 699.05 L115.7 699.05 Q116.35 702.7 119.1 705.45 122.8 709.15 128 709.15 133.15 709.15 136.8 705.45 139.6 702.7 140.3 699.05"/>
+ <path stroke="none" fill="#252525" d="M140.3 699.05 Q139.6 702.7 136.8 705.45 133.15 709.15 128 709.15 122.8 709.15 119.1 705.45 116.35 702.7 115.7 699.05 L115.6 698.3 Q116.1 696.35 119.1 694.9 122.8 693.15 128 693.15 133.15 693.15 136.8 694.9 139.9 696.4 140.4 698.45 L140.3 699.05 M154.4 704.55 Q160.85 702.35 166.7 703.5 166.95 703.55 167.2 703.8 L167.45 704.3 168.15 708.95 168.15 709.55 167.7 710 167.2 710.1 157.45 709.1 Q153 708.85 148.8 709.05 L148.2 708.85 147.9 708.3 147.9 707.7 Q148.05 707.4 148.35 707.2 151.45 705.5 154.4 704.55 M158.65 713.1 Q161.4 714 163.6 715.6 L163.9 716 163.9 716.45 162.85 720.05 162.65 720.45 162.2 720.6 161.75 720.5 158.75 718.15 Q154.25 715.05 148.9 713.55 L148.5 713.2 148.5 712.7 148.7 712.25 Q148.9 712.1 149.2 712.05 154.5 711.75 158.65 713.1 M101.55 704.5 Q104.55 705.5 107.65 707.2 L108.1 707.7 108.1 708.3 107.8 708.85 107.2 709.05 Q103 708.85 98.55 709.1 L88.8 710.1 88.3 710 87.85 709.55 87.85 708.95 88.55 704.3 Q88.6 703.95 88.8 703.8 L89.3 703.5 Q95.15 702.35 101.55 704.5 M97.35 713.1 Q101.5 711.75 106.8 712.05 L107.3 712.25 107.5 712.7 107.5 713.2 107.1 713.55 Q101.75 715.05 97.3 718.15 L94.25 720.5 93.8 720.6 93.35 720.45 93.15 720.05 92.1 716.45 92.1 716 92.4 715.6 Q94.6 714 97.35 713.1"/>
+ <path stroke="none" fill="#FFFCF5" d="M144.05 738.6 L143.95 740.95 Q142.9 760.1 140.65 768 139.35 772.35 137.7 773.3 136.55 774.15 135.25 774 133.5 773.95 132.5 772.65 131.7 771.65 131.65 770.5 L131.65 770.2 131.65 768 131.65 756.5 131.65 756.2 131.65 743.8 131.65 740 Q131.7 738.75 132.55 737.95 133.4 737.05 134.65 737.05 L141.4 737.05 Q142.2 737.05 142.95 737.5 L143.2 737.65 144.05 738.6 M124.35 768 L124.35 770.2 124.35 770.5 Q124.3 771.65 123.5 772.65 122.5 773.95 120.75 774 119.45 774.15 118.3 773.3 116.65 772.35 115.4 768 113.1 760.1 112.1 740.95 L111.95 738.6 Q112.3 738 112.8 737.65 L113.05 737.5 Q113.8 737.05 114.6 737.05 L121.35 737.05 Q122.6 737.05 123.45 737.95 124.3 738.75 124.35 740 L124.35 743.8 124.35 756.2 124.35 756.5 124.35 768"/>
+ <path stroke="none" fill="#F0EDE7" d="M144.3 732.55 L144.15 736.8 144.05 738.6 143.2 737.65 142.95 737.5 Q142.2 737.05 141.4 737.05 L134.65 737.05 Q133.4 737.05 132.55 737.95 131.7 738.75 131.65 740 L131.65 729.15 Q133.15 730.35 134.85 731.15 138.1 732.7 142 732.7 L143.6 732.65 144.3 732.55 M111.7 732.6 L112.45 732.65 113.95 732.7 Q117.85 732.7 121.15 731.15 122.85 730.35 124.35 729.15 L124.35 740 Q124.3 738.75 123.45 737.95 122.6 737.05 121.35 737.05 L114.6 737.05 Q113.8 737.05 113.05 737.5 L112.8 737.65 Q112.3 738 111.95 738.6 L111.9 736.8 111.7 732.6"/>
+ <path stroke="none" fill="#845C41" d="M90.9 768 Q98.4 748.65 106.9 738.3 109.4 739.8 112.1 740.95 113.1 760.1 115.4 768 L90.9 768 M143.95 740.95 Q146.6 739.8 149.15 738.3 157.65 748.65 165.2 768 L140.65 768 Q142.9 760.1 143.95 740.95 M131.65 768 L124.35 768 124.35 756.5 124.35 756.2 124.35 743.8 128 743.95 131.65 743.8 131.65 756.2 131.65 756.5 131.65 768"/>
+ <path stroke="none" fill="#6D4526" d="M314.4 648.2 Q315.2 647.75 316.05 647.4 316.7 636 328.65 636 L439.35 636 Q451.35 636 452 647.4 L453.6 648.2 453.65 648.25 Q459.75 651.65 464.05 659.05 L464 659.05 Q468.25 666.3 468.15 673.3 L468.15 673.35 468.05 675.55 Q467.3 681.55 463.5 684.2 L463.45 684.25 462.5 684.9 462.25 685.05 Q461.7 685.3 461.15 685.65 L461.05 685.7 Q456.5 688.35 452 689.9 L452 759.85 452 760 Q451.7 772 439.35 772 L328.65 772 Q316.3 772 316 760 L316 759.85 316 689.9 Q311.5 688.35 306.95 685.75 L306.8 685.65 305.7 685.05 305.5 684.9 304.55 684.25 304.45 684.2 Q300.65 681.55 300 675.5 L300 675.75 299.8 673.35 299.8 673.3 Q299.7 666.3 303.95 659.05 308.2 651.65 314.35 648.25 L314.4 648.2 M320 650.25 Q318.25 650.6 316.3 651.7 311.05 654.7 307.4 661.05 303.75 667.3 303.8 673.3 L303.95 675.05 Q304.4 679.15 306.85 681 L307.6 681.5 308.9 682.25 Q314.55 685.5 320 686.95 L320 759.85 Q320.25 768 328.65 768 L338.6 768 429.35 768 439.35 768 Q447.75 768 448 759.85 L448 686.95 Q453.45 685.5 459.05 682.25 L460.35 681.5 461.1 681 Q463.55 679.15 464.05 675.05 L464.15 673.3 Q464.2 667.3 460.55 661.05 456.9 654.7 451.65 651.7 449.7 650.65 448 650.25 L448 648.7 Q448 640 439.35 640 L328.65 640 Q320 640 320 648.7 L320 650.25"/>
+ <path stroke="none" fill="#B4723F" d="M320 650.25 L320 648.7 Q320 640 328.65 640 L439.35 640 Q448 640 448 648.7 L448 650.25 448 652.2 447.8 650.2 Q446.65 644 439.35 644 L328.65 644 Q321.35 644 320.2 650.2 L320 652.2 320 650.25"/>
+ <path stroke="none" fill="#A16639" d="M320 654.25 L320 652.2 320.2 650.2 Q321.35 644 328.65 644 L439.35 644 Q446.65 644 447.8 650.2 L448 652.2 448 654.25 448 666.2 448 686.95 448 759.85 Q447.75 768 439.35 768 L429.35 768 Q424.85 760.6 419.9 755 412.25 746.3 403.6 741.8 394.4 737.05 384 737.05 373.7 737.05 364.55 741.75 355.75 746.25 348.05 755.05 343.1 760.65 338.6 768 L328.65 768 Q320.25 768 320 759.85 L320 686.95 320 666.2 320 654.25 M432.8 688.65 L432.8 688.6 Q431.15 682.6 425.85 679.55 420.45 676.45 414.45 678.05 408.5 679.6 405.35 685 402.25 690.35 403.85 696.35 L403.85 696.4 Q405.8 703.6 411.35 707.45 417 711.45 422.95 709.9 428.95 708.3 431.85 702 434.7 695.85 432.8 688.65 M335.1 688.65 Q333.2 695.85 336.05 702 338.95 708.3 344.95 709.9 350.9 711.45 356.55 707.45 362.1 703.6 364.05 696.4 L364.05 696.35 Q365.65 690.35 362.55 685 359.4 679.6 353.45 678.05 347.45 676.45 342.05 679.55 336.75 682.6 335.1 688.6 L335.1 688.65 M401.45 663.9 Q401.45 658.7 396.3 655.05 391.2 651.4 383.95 651.4 376.7 651.4 371.55 655.05 366.45 658.7 366.45 663.9 L366.5 664.75 Q366.85 675.35 371.55 683 376.7 691.4 383.95 691.4 391.2 691.4 396.3 683 401.05 675.35 401.45 664.75 L401.45 663.9 M396.8 707.65 L397 705.3 397 704.4 Q396.65 702 393.2 700.3 389.35 698.45 383.95 698.45 378.55 698.45 374.7 700.3 371.2 702 370.9 704.4 L370.9 705.3 371.1 707.65 Q371.75 711.6 374.7 714.55 376.85 716.7 379.5 717.65 L378.65 718.65 376.6 720.15 Q375.15 720.8 373.5 720.8 370.5 720.8 368.35 718.65 367.55 717.85 367 716.9 L366.45 716.45 365.8 716.55 361.2 719.1 Q360.85 719.3 360.8 719.65 360.65 719.95 360.85 720.3 361.45 721.4 362.35 722.5 L363.4 723.65 Q367.55 727.85 373.5 727.85 379.4 727.85 383.65 723.65 L383.95 723.35 384.25 723.65 Q388.45 727.85 394.35 727.85 400.25 727.85 404.5 723.65 L405.55 722.5 407.05 720.2 407.1 719.55 406.65 719.05 401.95 716.6 401.25 716.55 400.75 717 399.5 718.65 Q397.35 720.8 394.35 720.8 392.7 720.8 391.3 720.15 390.2 719.6 389.25 718.65 L388.4 717.65 Q391.05 716.7 393.2 714.55 396.15 711.6 396.8 707.65"/>
+ <path stroke="none" fill="#B67340" d="M320 650.25 L320 652.2 320 654.25 Q318.25 654.6 316.3 655.7 311.05 658.7 307.4 665.05 304.45 670.1 303.95 675.05 L303.8 673.3 Q303.75 667.3 307.4 661.05 311.05 654.7 316.3 651.7 318.25 650.6 320 650.25 M448 652.2 L448 650.25 Q449.7 650.65 451.65 651.7 456.9 654.7 460.55 661.05 464.2 667.3 464.15 673.3 L464.05 675.05 Q463.5 670.1 460.55 665.05 456.9 658.7 451.65 655.7 449.7 654.65 448 654.25 L448 652.2"/>
+ <path stroke="none" fill="#8E5A32" d="M303.95 675.05 Q304.45 670.1 307.4 665.05 311.05 658.7 316.3 655.7 318.25 654.6 320 654.25 L320 666.2 Q318.8 666.5 317.5 667.2 313.2 669.7 310.2 674.95 308.25 678.25 307.6 681.5 L306.85 681 Q304.4 679.15 303.95 675.05 M427.15 692.1 Q427.15 688.25 424.45 685.55 421.7 682.85 417.85 682.85 414.05 682.85 411.3 685.55 408.6 688.25 408.6 692.1 408.6 695.95 411.3 698.55 414.05 701.35 417.85 701.35 421.7 701.35 424.45 698.55 427.15 695.95 427.15 692.1 M432.8 688.65 Q434.7 695.85 431.85 702 428.95 708.3 422.95 709.9 417 711.45 411.35 707.45 405.8 703.6 403.85 696.4 L403.85 696.35 Q402.25 690.35 405.35 685 408.5 679.6 414.45 678.05 420.45 676.45 425.85 679.55 431.15 682.6 432.8 688.6 L432.8 688.65 M464.05 675.05 Q463.55 679.15 461.1 681 L460.35 681.5 Q459.7 678.25 457.75 674.95 454.75 669.7 450.45 667.2 449.15 666.5 448 666.2 L448 654.25 Q449.7 654.65 451.65 655.7 456.9 658.7 460.55 665.05 463.5 670.1 464.05 675.05 M340.75 692.1 Q340.75 695.95 343.45 698.55 346.2 701.35 350.05 701.35 353.85 701.35 356.6 698.55 359.3 695.95 359.3 692.1 359.3 688.25 356.6 685.55 353.85 682.85 350.05 682.85 346.2 682.85 343.45 685.55 340.75 688.25 340.75 692.1 M335.1 688.65 L335.1 688.6 Q336.75 682.6 342.05 679.55 347.45 676.45 353.45 678.05 359.4 679.6 362.55 685 365.65 690.35 364.05 696.35 L364.05 696.4 Q362.1 703.6 356.55 707.45 350.9 711.45 344.95 709.9 338.95 708.3 336.05 702 333.2 695.85 335.1 688.65"/>
+ <path stroke="none" fill="#774B2A" d="M307.6 681.5 Q308.25 678.25 310.2 674.95 313.2 669.7 317.5 667.2 318.8 666.5 320 666.2 L320 686.95 Q314.55 685.5 308.9 682.25 L307.6 681.5 M460.35 681.5 L459.05 682.25 Q453.45 685.5 448 686.95 L448 666.2 Q449.15 666.5 450.45 667.2 454.75 669.7 457.75 674.95 459.7 678.25 460.35 681.5"/>
+ <path stroke="none" fill="#FFFFFF" d="M422.65 692.25 Q422.65 689.8 420.95 688.15 419.25 686.45 416.85 686.45 414.45 686.45 412.7 688.15 411 689.8 411 692.25 411 694.65 412.7 696.3 414.45 698.05 416.85 698.05 419.25 698.05 420.95 696.3 422.65 694.65 422.65 692.25 M427.15 692.1 Q427.15 695.95 424.45 698.55 421.7 701.35 417.85 701.35 414.05 701.35 411.3 698.55 408.6 695.95 408.6 692.1 408.6 688.25 411.3 685.55 414.05 682.85 417.85 682.85 421.7 682.85 424.45 685.55 427.15 688.25 427.15 692.1 M340.75 692.1 Q340.75 688.25 343.45 685.55 346.2 682.85 350.05 682.85 353.85 682.85 356.6 685.55 359.3 688.25 359.3 692.1 359.3 695.95 356.6 698.55 353.85 701.35 350.05 701.35 346.2 701.35 343.45 698.55 340.75 695.95 340.75 692.1 M345.25 692.25 Q345.25 694.65 346.95 696.3 348.65 698.05 351.05 698.05 353.45 698.05 355.2 696.3 356.9 694.65 356.9 692.25 356.9 689.8 355.2 688.15 353.45 686.45 351.05 686.45 348.65 686.45 346.95 688.15 345.25 689.8 345.25 692.25"/>
+ <path stroke="none" fill="#5B5B5B" d="M345.25 692.25 Q345.25 689.8 346.95 688.15 348.65 686.45 351.05 686.45 353.45 686.45 355.2 688.15 356.9 689.8 356.9 692.25 356.9 694.65 355.2 696.3 353.45 698.05 351.05 698.05 348.65 698.05 346.95 696.3 345.25 694.65 345.25 692.25 M422.65 692.25 Q422.65 694.65 420.95 696.3 419.25 698.05 416.85 698.05 414.45 698.05 412.7 696.3 411 694.65 411 692.25 411 689.8 412.7 688.15 414.45 686.45 416.85 686.45 419.25 686.45 420.95 688.15 422.65 689.8 422.65 692.25"/>
+ <path stroke="none" fill="#AA6C3C" d="M401.45 663.9 L401.45 664.75 Q401.05 675.35 396.3 683 391.2 691.4 383.95 691.4 376.7 691.4 371.55 683 366.85 675.35 366.5 664.75 L366.45 663.9 Q366.45 658.7 371.55 655.05 376.7 651.4 383.95 651.4 391.2 651.4 396.3 655.05 401.45 658.7 401.45 663.9"/>
+ <path stroke="none" fill="#545454" d="M371.1 707.65 L370.9 705.3 370.9 704.4 Q371.2 702 374.7 700.3 378.55 698.45 383.95 698.45 389.35 698.45 393.2 700.3 396.65 702 397 704.4 L397 705.3 396.8 707.65 Q396.1 705.75 393.2 704.3 389.35 702.45 383.95 702.45 378.55 702.45 374.7 704.3 371.8 705.7 371.1 707.65"/>
+ <path stroke="none" fill="#464646" d="M371.1 707.65 Q371.8 705.7 374.7 704.3 378.55 702.45 383.95 702.45 389.35 702.45 393.2 704.3 396.1 705.75 396.8 707.65 396.15 711.6 393.2 714.55 391.05 716.7 388.4 717.65 384.15 719.4 379.5 717.65 376.85 716.7 374.7 714.55 371.75 711.6 371.1 707.65"/>
+ <path stroke="none" fill="#383838" d="M388.4 717.65 L389.25 718.65 Q390.2 719.6 391.3 720.15 392.7 720.8 394.35 720.8 397.35 720.8 399.5 718.65 L400.75 717 401.25 716.55 401.95 716.6 406.65 719.05 407.1 719.55 407.05 720.2 405.55 722.5 404.5 723.65 Q400.25 727.85 394.35 727.85 388.45 727.85 384.25 723.65 L383.95 723.35 383.65 723.65 Q379.4 727.85 373.5 727.85 367.55 727.85 363.4 723.65 L362.35 722.5 Q361.45 721.4 360.85 720.3 360.65 719.95 360.8 719.65 360.85 719.3 361.2 719.1 L365.8 716.55 366.45 716.45 367 716.9 Q367.55 717.85 368.35 718.65 370.5 720.8 373.5 720.8 375.15 720.8 376.6 720.15 L378.65 718.65 379.5 717.65 Q384.15 719.4 388.4 717.65"/>
+ <path stroke="none" fill="#955E34" d="M429.35 768 L338.6 768 Q343.1 760.65 348.05 755.05 355.75 746.25 364.55 741.75 373.7 737.05 384 737.05 394.4 737.05 403.6 741.8 412.25 746.3 419.9 755 424.85 760.6 429.35 768"/>
+ <path stroke="none" fill="#528CDB" d="M634.6 665.05 L634.15 669 632.4 685.3 631.95 689.6 631.2 696.65 631.1 697.1 Q630.85 700.85 632.35 703.05 634.4 706.1 639.9 706 645.95 705.9 648.15 702.5 649.5 700.4 649.4 697.1 L649.3 696.25 648.55 689.2 648.1 684.95 646.4 668.75 645.95 664.85 643.7 644 695.35 644 Q703.75 644 704 652.2 L704 740.25 704 749.75 704 759.85 Q703.75 768 695.35 768 L683.8 768 597.5 768 584.65 768 Q576.25 768 576 759.85 L576 751.8 576 741.8 576 652.2 Q576.25 644 584.65 644 L636.8 644 634.6 665.05 M693.25 724.45 Q695.7 714.6 693.7 706.65 691.6 698.6 686.1 697.15 680.5 695.65 674.75 701.55 668.9 707.45 666.25 717.3 L666.3 717.7 Q664.85 723.05 667.65 727.95 670.55 732.9 676.05 734.4 681.65 735.9 686.65 733 691.45 730.15 693.05 724.9 L693.25 724.45 M657.5 730.3 Q655.65 730.15 653.85 730.9 641.25 736 626.1 730.7 L623.5 730.25 Q621.75 730.25 620.05 731.05 617.05 732.5 616 735.65 614.9 738.7 616.35 741.7 617.75 744.65 620.9 745.75 L623.5 746.6 Q641.9 752.25 657.5 746.6 L660 745.6 Q663 744.25 664.25 741.25 665.45 738.2 664.2 735.15 662.95 732.1 659.9 730.9 L657.5 730.3 M660.5 755.05 Q659.9 752.75 657.8 751.6 655.8 750.45 653.55 751.05 651.25 751.65 650 753.7 648.9 755.7 649.5 758 650.1 760.25 652.1 761.45 654.2 762.65 656.5 762.05 658.75 761.45 659.9 759.35 661.1 757.3 660.5 755.05 M673.15 748.95 Q672.65 747.05 670.95 746.05 669.25 745.05 667.4 745.55 665.5 746.05 664.5 747.8 663.5 749.5 664 751.4 664.55 753.25 666.25 754.25 667.95 755.2 669.85 754.7 671.7 754.2 672.7 752.5 673.7 750.8 673.15 748.95 M612.85 674.2 Q612.85 671.85 611.15 670.15 609.5 668.5 607.15 668.5 604.8 668.5 603.1 670.15 601.45 671.85 601.45 674.2 601.45 676.55 603.1 678.2 604.8 679.9 607.15 679.9 609.5 679.9 611.15 678.2 612.85 676.55 612.85 674.2 M626.7 671.55 Q626.7 669.6 625.3 668.2 623.9 666.8 621.95 666.8 620 666.8 618.6 668.2 617.2 669.6 617.2 671.55 617.2 673.5 618.6 674.9 620 676.3 621.95 676.3 623.9 676.3 625.3 674.9 626.7 673.5 626.7 671.55 M615.55 659.6 Q615.55 658.15 614.5 657.1 613.45 656.05 612 656.05 610.55 656.05 609.5 657.1 608.45 658.15 608.45 659.6 608.45 661.05 609.5 662.1 610.55 663.15 612 663.15 613.45 663.15 614.5 662.1 615.55 661.05 615.55 659.6 M587.15 724.45 L587.35 724.9 Q588.95 730.15 593.75 733 598.75 735.9 604.35 734.4 609.85 732.9 612.75 727.95 615.55 723.05 614.1 717.7 L614.15 717.3 Q611.5 707.45 605.65 701.55 599.9 695.65 594.3 697.15 588.8 698.6 586.7 706.65 584.7 714.6 587.15 724.45"/>
+ <path stroke="none" fill="#F0EDE7" d="M648.1 684.95 L648.55 689.2 Q647.95 690 646.9 690.6 644.5 691.85 639.9 691.9 635.8 691.95 633.65 690.9 632.55 690.4 631.95 689.6 L632.4 685.3 Q633.05 685.9 634.1 686.35 636.25 687.2 639.9 687.15 644.05 687.1 646.4 686.1 L648.1 684.95 M649.3 696.25 L649.4 697.1 Q649.5 700.4 648.15 702.5 645.95 705.9 639.9 706 634.4 706.1 632.35 703.05 630.85 700.85 631.1 697.1 L631.2 696.65 Q631.45 698.5 632.7 699.7 634.8 701.75 639.9 701.7 645.5 701.6 647.8 699.25 649 698.05 649.3 696.25 M634.15 669 L634.6 665.05 636.35 665.45 639.9 665.6 644.2 665.25 645.95 664.85 646.4 668.75 644.6 669.25 639.9 669.65 635.9 669.45 634.15 669"/>
+ <path stroke="none" fill="#5A9BF3" d="M636.8 644 L584.65 644 Q576.25 644 576 652.2 L576 648.7 Q576 640 584.65 640 L637.25 640 636.8 644 M704 652.2 Q703.75 644 695.35 644 L643.7 644 643.3 640 695.35 640 Q704 640 704 648.7 L704 652.2 M693.25 724.45 L693.05 724.9 Q691.45 730.15 686.65 733 681.65 735.9 676.05 734.4 670.55 732.9 667.65 727.95 664.85 723.05 666.3 717.7 L666.25 717.3 Q668.9 707.45 674.75 701.55 680.5 695.65 686.1 697.15 691.6 698.6 693.7 706.65 695.7 714.6 693.25 724.45 M682.55 710.45 Q678.75 709.5 675.35 711.45 671.85 713.45 670.85 717.25 669.8 721.05 671.8 724.55 673.75 727.9 677.55 728.9 681.4 729.95 684.85 728.05 688.25 726 689.3 722.2 690.3 718.35 688.35 714.95 686.4 711.55 682.55 710.45 M587.15 724.45 Q584.7 714.6 586.7 706.65 588.8 698.6 594.3 697.15 599.9 695.65 605.65 701.55 611.5 707.45 614.15 717.3 L614.1 717.7 Q615.55 723.05 612.75 727.95 609.85 732.9 604.35 734.4 598.75 735.9 593.75 733 588.95 730.15 587.35 724.9 L587.15 724.45 M597.85 710.45 Q594 711.55 592.05 714.95 590.1 718.35 591.1 722.2 592.15 726 595.55 728.05 599 729.95 602.85 728.9 606.65 727.9 608.6 724.55 610.6 721.05 609.55 717.25 608.55 713.45 605.05 711.45 601.65 709.5 597.85 710.45"/>
+ <path stroke="none" fill="#2D4D7B" d="M576 652.2 L576 741.8 Q570.8 748.4 568.85 755.6 567.65 760.1 568.1 763.6 568.6 767.8 571.4 770.6 572.45 771.65 573.65 772.35 L575.6 773.25 Q579.95 774.8 586.35 773.1 592.1 771.6 597.5 768 L683.8 768 Q689.1 771.6 694.85 773.1 702.2 775.05 706.9 772.7 L707.55 772.35 709.8 770.6 Q712.6 767.8 713.1 763.6 713.55 760.1 712.35 755.6 710.2 747.55 704 740.25 L704 652.2 704 648.7 Q704 640 695.35 640 L643.3 640 642.35 631.25 Q642.3 630.4 641.7 629.85 L641.65 629.85 641.3 629.6 640.25 629.35 639.25 629.6 638.85 629.85 Q638.25 630.4 638.15 631.25 L637.25 640 584.65 640 Q576 640 576 648.7 L576 652.2 M695.35 636 Q708 636 708 648.7 L708 738.8 Q714 746.3 716.2 754.55 L716.25 754.6 Q717.65 759.9 717.1 764.1 716.4 769.7 712.65 773.45 L709.8 775.7 709.6 775.8 708.7 776.3 Q702.9 779.4 693.85 777 688 775.45 682.6 772 L598.65 772 Q593.2 775.45 587.4 777 579.6 779.05 574.35 777.05 L574.25 777.05 Q572.85 776.55 571.65 775.8 L571.6 775.8 Q570 774.85 568.6 773.45 564.8 769.7 564.15 764.1 563.55 759.9 565 754.6 L565 754.55 Q566.95 747.25 572 740.45 L572 648.7 Q572 636 584.65 636 L633.65 636 634.2 630.85 634.2 630.8 Q634.45 628.4 636.15 626.9 L636.45 626.65 637.3 626.1 637.45 626.05 Q638.7 625.35 640.25 625.35 641.75 625.35 643.1 626.05 L643.55 626.3 644.4 626.9 Q646.15 628.55 646.35 631.05 L646.9 636 695.35 636"/>
+ <path stroke="none" fill="#5B5B5B" d="M679.65 714.15 Q682.1 714.85 683.3 716.9 684.6 719.1 683.95 721.55 683.35 723.9 681.15 725.2 679 726.45 676.55 725.8 L676 725.65 Q674.05 724.95 673.05 723.05 671.75 720.85 672.45 718.4 673.05 716.05 675.2 714.8 677.05 713.75 679.05 714.05 L679.65 714.15 M600.75 714.15 L601.35 714.05 Q603.35 713.75 605.2 714.8 607.35 716.05 607.95 718.4 608.65 720.85 607.35 723.05 606.35 724.95 604.4 725.65 L603.85 725.8 Q601.4 726.45 599.25 725.2 597.05 723.9 596.45 721.55 595.8 719.1 597.1 716.9 598.3 714.85 600.75 714.15"/>
+ <path stroke="none" fill="#FFFFFF" d="M600.75 714.15 Q598.3 714.85 597.1 716.9 595.8 719.1 596.45 721.55 597.05 723.9 599.25 725.2 601.4 726.45 603.85 725.8 L604.4 725.65 Q606.35 724.95 607.35 723.05 608.65 720.85 607.95 718.4 607.35 716.05 605.2 714.8 603.35 713.75 601.35 714.05 L600.75 714.15 M679.65 714.15 L679.05 714.05 Q677.05 713.75 675.2 714.8 673.05 716.05 672.45 718.4 671.75 720.85 673.05 723.05 674.05 724.95 676 725.65 L676.55 725.8 Q679 726.45 681.15 725.2 683.35 723.9 683.95 721.55 684.6 719.1 683.3 716.9 682.1 714.85 679.65 714.15 M682.55 710.45 Q686.4 711.55 688.35 714.95 690.3 718.35 689.3 722.2 688.25 726 684.85 728.05 681.4 729.95 677.55 728.9 673.75 727.9 671.8 724.55 669.8 721.05 670.85 717.25 671.85 713.45 675.35 711.45 678.75 709.5 682.55 710.45 M623.5 730.25 L626.1 730.7 Q641.25 736 653.85 730.9 655.65 730.15 657.5 730.3 658.7 733.45 658.9 736.75 659.05 738.7 658.8 740.75 658.5 743.6 657.5 746.6 641.9 752.25 623.5 746.6 620.25 737.5 623.5 730.25 M597.85 710.45 Q601.65 709.5 605.05 711.45 608.55 713.45 609.55 717.25 610.6 721.05 608.6 724.55 606.65 727.9 602.85 728.9 599 729.95 595.55 728.05 592.15 726 591.1 722.2 590.1 718.35 592.05 714.95 594 711.55 597.85 710.45"/>
+ <path stroke="none" fill="#E7E7E7" d="M623.5 730.25 Q620.25 737.5 623.5 746.6 L620.9 745.75 Q617.75 744.65 616.35 741.7 614.9 738.7 616 735.65 617.05 732.5 620.05 731.05 621.75 730.25 623.5 730.25 M657.5 746.6 Q658.5 743.6 658.8 740.75 659.05 738.7 658.9 736.75 658.7 733.45 657.5 730.3 L659.9 730.9 Q662.95 732.1 664.2 735.15 665.45 738.2 664.25 741.25 663 744.25 660 745.6 L657.5 746.6"/>
+ <path stroke="none" fill="#4A7FC6" d="M673.15 748.95 Q673.7 750.8 672.7 752.5 671.7 754.2 669.85 754.7 667.95 755.2 666.25 754.25 664.55 753.25 664 751.4 663.5 749.5 664.5 747.8 665.5 746.05 667.4 745.55 669.25 745.05 670.95 746.05 672.65 747.05 673.15 748.95 M660.5 755.05 Q661.1 757.3 659.9 759.35 658.75 761.45 656.5 762.05 654.2 762.65 652.1 761.45 650.1 760.25 649.5 758 648.9 755.7 650 753.7 651.25 751.65 653.55 751.05 655.8 750.45 657.8 751.6 659.9 752.75 660.5 755.05 M612.85 674.2 Q612.85 676.55 611.15 678.2 609.5 679.9 607.15 679.9 604.8 679.9 603.1 678.2 601.45 676.55 601.45 674.2 601.45 671.85 603.1 670.15 604.8 668.5 607.15 668.5 609.5 668.5 611.15 670.15 612.85 671.85 612.85 674.2 M615.55 659.6 Q615.55 661.05 614.5 662.1 613.45 663.15 612 663.15 610.55 663.15 609.5 662.1 608.45 661.05 608.45 659.6 608.45 658.15 609.5 657.1 610.55 656.05 612 656.05 613.45 656.05 614.5 657.1 615.55 658.15 615.55 659.6 M626.7 671.55 Q626.7 673.5 625.3 674.9 623.9 676.3 621.95 676.3 620 676.3 618.6 674.9 617.2 673.5 617.2 671.55 617.2 669.6 618.6 668.2 620 666.8 621.95 666.8 623.9 666.8 625.3 668.2 626.7 669.6 626.7 671.55"/>
+ <path stroke="none" fill="#4475BB" d="M576 741.8 L576 751.8 Q573.95 755.6 572.85 759.6 572.3 761.7 572.1 763.6 571.55 768.75 573.65 772.35 572.45 771.65 571.4 770.6 568.6 767.8 568.1 763.6 567.65 760.1 568.85 755.6 570.8 748.4 576 741.8 M704 749.75 L704 740.25 Q710.2 747.55 712.35 755.6 713.55 760.1 713.1 763.6 712.6 767.8 709.8 770.6 L707.55 772.35 Q709.65 768.8 709.1 763.6 L708.35 759.6 Q706.95 754.55 704 749.75"/>
+ <path stroke="none" fill="#406EAF" d="M704 749.75 Q706.95 754.55 708.35 759.6 L709.1 763.6 Q709.65 768.8 707.55 772.35 L706.9 772.7 Q702.2 775.05 694.85 773.1 689.1 771.6 683.8 768 L695.35 768 Q703.75 768 704 759.85 L704 749.75 M576 751.8 L576 759.85 Q576.25 768 584.65 768 L597.5 768 Q592.1 771.6 586.35 773.1 579.95 774.8 575.6 773.25 L573.65 772.35 Q571.55 768.75 572.1 763.6 572.3 761.7 572.85 759.6 573.95 755.6 576 751.8"/>
+ <path stroke="none" fill="#FFFCF5" d="M648.55 689.2 L649.3 696.25 Q649 698.05 647.8 699.25 645.5 701.6 639.9 701.7 634.8 701.75 632.7 699.7 631.45 698.5 631.2 696.65 L631.95 689.6 Q632.55 690.4 633.65 690.9 635.8 691.95 639.9 691.9 644.5 691.85 646.9 690.6 647.95 690 648.55 689.2 M632.4 685.3 L634.15 669 635.9 669.45 639.9 669.65 644.6 669.25 646.4 668.75 648.1 684.95 646.4 686.1 Q644.05 687.1 639.9 687.15 636.25 687.2 634.1 686.35 633.05 685.9 632.4 685.3 M634.6 665.05 L636.8 644 637.25 640 638.15 631.25 Q638.25 630.4 638.85 629.85 L639.25 629.6 640.25 629.35 641.3 629.6 641.65 629.85 641.7 629.85 Q642.3 630.4 642.35 631.25 L643.3 640 643.7 644 645.95 664.85 644.2 665.25 639.9 665.6 636.35 665.45 634.6 665.05"/>
+ <path stroke="none" fill="#2ECC71" d="M901.7 663.4 Q902.05 659.6 904.15 656.45 905.05 655.05 906.35 653.75 L906.35 653.7 908.65 651.85 909.15 651.5 Q912.35 649.45 916.4 649.25 L917.55 649.15 Q924.1 649.15 928.8 653.7 L928.9 653.85 931.05 656.45 932.25 658.75 932.25 658.8 Q933.15 661 933.4 663.45 L933.45 661.85 933.45 661.8 Q933.4 658.9 932.55 656.45 L932.25 655.65 932.25 655.6 Q931.1 652.9 928.9 650.7 L928.8 650.55 Q924.1 646 917.55 646 L916.4 646.1 Q912.35 646.3 909.15 648.35 L908.65 648.7 906.35 650.55 906.35 650.6 Q903.7 653.2 902.55 656.45 901.65 658.95 901.65 661.85 L901.7 663.4 M927.15 661.85 L927.15 661.8 Q927.15 659.8 926.45 658.1 L925.55 656.45 924.4 655.05 Q921.55 652.3 917.55 652.3 L917 652.35 Q914.55 652.4 912.55 653.7 L912.45 653.75 Q911.55 654.3 910.8 655.05 L909.6 656.45 Q907.95 658.8 907.95 661.85 907.95 665.85 910.8 668.55 L911.85 669.55 Q914.3 671.45 917.55 671.45 921.55 671.45 924.4 668.55 927.15 665.85 927.15 661.85 M907.1 676.9 L906.55 676.55 Q905.75 676.15 904.4 676.55 L904.25 676.55 Q902.55 677.1 901.05 678.6 L900.95 678.7 900.35 679.6 Q900.1 680.15 900.1 680.85 900.1 682.1 901 683 901.9 683.95 903.2 683.95 904.45 683.95 905.35 683.1 L905.4 683 Q906.65 681.75 907.25 680.4 L907.5 679.6 907.6 679.3 Q907.85 678.15 907.45 677.4 L907.1 676.9 M886.55 683.1 Q887.45 683.95 888.7 683.95 889.95 683.95 890.85 683 891.8 682.1 891.8 680.85 L891.55 679.6 890.95 678.7 890.85 678.6 Q889.3 677.05 887.6 676.55 L887.5 676.55 Q886.15 676.15 885.35 676.55 885 676.65 884.8 676.9 L884.4 677.4 Q884 678.15 884.3 679.3 L884.4 679.6 Q884.45 680 884.65 680.4 885.2 681.75 886.45 683 L886.55 683.1 M960 652.2 L960 668 Q957.1 664.8 952.65 663.6 946.45 661.95 940.9 665.15 935.35 668.35 933.7 674.55 933.45 675.5 933.35 676.5 935.25 671.7 939.85 669 945.45 665.8 951.65 667.45 956.95 668.85 960 673.15 L960.95 674.65 Q963.7 679.3 962.95 684.45 961.9 687.05 960 689.1 958.45 690.7 956.35 691.9 950.85 695.1 944.65 693.45 940.5 692.35 937.7 689.5 936.3 688.1 935.25 686.25 L935.05 685.85 Q917.15 688 895.95 688 874.65 688 856.75 685.8 L856.5 686.25 854.1 689.5 Q851.3 692.35 847.15 693.45 841 695.1 835.4 691.9 833.45 690.8 832 689.35 829.95 687.25 828.9 684.45 828.05 679.35 830.8 674.65 L832 672.85 Q835.05 668.8 840.15 667.45 846.35 665.8 851.9 669 856.5 671.7 858.5 676.5 L858.1 674.55 Q856.45 668.35 850.85 665.15 845.35 661.95 839.15 663.6 834.85 664.75 832 667.8 L832 652.2 Q832.25 644 840.65 644 L951.35 644 Q959.75 644 960 652.2 M858.45 663.5 Q858.7 660.85 859.75 658.55 L859.65 658.75 860.85 656.45 Q861.8 655 863.15 653.7 867.8 649.15 874.3 649.15 L875.4 649.25 Q879.3 649.4 882.65 651.5 L883.05 651.75 885.05 653.2 885.65 653.75 885.65 653.8 Q886.9 655.05 887.8 656.45 889.8 659.55 890.15 663.4 L890.25 661.85 Q890.25 658.95 889.4 656.45 888.25 653.25 885.65 650.65 L885.65 650.6 885.05 650.05 883.05 648.6 882.65 648.3 Q879.3 646.25 875.4 646.1 L874.3 646 Q867.8 646 863.15 650.55 860.8 652.8 859.65 655.6 L859.75 655.4 859.35 656.45 Q858.4 658.95 858.4 661.8 L858.4 661.85 858.45 663.5 M864.7 661.85 Q864.7 665.85 867.55 668.55 870.35 671.45 874.3 671.45 877.45 671.45 880 669.55 L880.9 668.85 881.15 668.55 Q883.95 665.85 883.95 661.85 883.95 658.8 882.35 656.45 L881.15 655.05 880.9 654.85 Q880.2 654.2 879.4 653.7 L879.35 653.7 Q877.3 652.4 874.85 652.35 L874.3 652.3 Q870.35 652.3 867.55 655.05 L866.35 656.45 865.5 658 Q864.7 659.75 864.7 661.8 L864.7 661.85"/>
+ <path stroke="none" fill="#31DE7A" d="M901.7 663.4 L901.65 661.85 Q901.65 658.95 902.55 656.45 903.7 653.2 906.35 650.6 L906.35 650.55 908.65 648.7 909.15 648.35 Q912.35 646.3 916.4 646.1 L917.55 646 Q924.1 646 928.8 650.55 L928.9 650.7 Q931.1 652.9 932.25 655.6 L932.25 655.65 932.55 656.45 Q933.4 658.9 933.45 661.8 L933.45 661.85 933.4 663.45 Q933.15 661 932.25 658.8 L932.25 658.75 931.05 656.45 928.9 653.85 928.8 653.7 Q924.1 649.15 917.55 649.15 L916.4 649.25 Q912.35 649.45 909.15 651.5 L908.65 651.85 906.35 653.7 906.35 653.75 Q905.05 655.05 904.15 656.45 902.05 659.6 901.7 663.4 M960 668 Q961.1 669.25 962 670.8 965.2 676.35 963.55 682.55 L962.95 684.45 Q963.7 679.3 960.95 674.65 L960 673.15 Q956.95 668.85 951.65 667.45 945.45 665.8 939.85 669 935.25 671.7 933.35 676.5 933.45 675.5 933.7 674.55 935.35 668.35 940.9 665.15 946.45 661.95 952.65 663.6 957.1 664.8 960 668 M828.9 684.45 Q828.5 683.5 828.25 682.55 826.6 676.35 829.75 670.8 830.75 669.1 832 667.8 834.85 664.75 839.15 663.6 845.35 661.95 850.85 665.15 856.45 668.35 858.1 674.55 L858.5 676.5 Q856.5 671.7 851.9 669 846.35 665.8 840.15 667.45 835.05 668.8 832 672.85 L830.8 674.65 Q828.05 679.35 828.9 684.45 M832 652.2 L832 648.7 Q832 640 840.65 640 L951.35 640 Q960 640 960 648.7 L960 652.2 Q959.75 644 951.35 644 L840.65 644 Q832.25 644 832 652.2 M858.45 663.5 L858.4 661.85 858.4 661.8 Q858.4 658.95 859.35 656.45 L859.75 655.4 859.65 655.6 Q860.8 652.8 863.15 650.55 867.8 646 874.3 646 L875.4 646.1 Q879.3 646.25 882.65 648.3 L883.05 648.6 885.05 650.05 885.65 650.6 885.65 650.65 Q888.25 653.25 889.4 656.45 890.25 658.95 890.25 661.85 L890.15 663.4 Q889.8 659.55 887.8 656.45 886.9 655.05 885.65 653.8 L885.65 653.75 885.05 653.2 883.05 651.75 882.65 651.5 Q879.3 649.4 875.4 649.25 L874.3 649.15 Q867.8 649.15 863.15 653.7 861.8 655 860.85 656.45 L859.65 658.75 859.75 658.55 Q858.7 660.85 858.45 663.5"/>
+ <path stroke="none" fill="#D23007" d="M927.15 661.85 Q927.15 665.85 924.4 668.55 921.55 671.45 917.55 671.45 914.3 671.45 911.85 669.55 L910.8 668.55 Q907.95 665.85 907.95 661.85 907.95 658.8 909.6 656.45 L910.8 655.05 Q911.55 654.3 912.45 653.75 L912.55 653.7 Q914.55 652.4 917 652.35 L917.55 652.3 Q921.55 652.3 924.4 655.05 L925.55 656.45 926.45 658.1 Q927.15 659.8 927.15 661.8 L927.15 661.85 M922.55 662.05 Q922.55 659.45 920.75 657.75 919.85 656.85 918.75 656.45 L916.5 656.05 914.3 656.45 Q913.35 656.8 912.5 657.5 L912.2 657.75 Q910.45 659.45 910.45 662.05 910.45 664.5 912.15 666.2 L912.2 666.2 Q914.05 668.05 916.5 668.05 919 668.05 920.75 666.2 922.55 664.55 922.55 662.05 M864.7 661.85 L864.7 661.8 Q864.7 659.75 865.5 658 L866.35 656.45 867.55 655.05 Q870.35 652.3 874.3 652.3 L874.85 652.35 Q877.3 652.4 879.35 653.7 L879.4 653.7 Q880.2 654.2 880.9 654.85 L881.15 655.05 882.35 656.45 Q883.95 658.8 883.95 661.85 883.95 665.85 881.15 668.55 L880.9 668.85 880 669.55 Q877.45 671.45 874.3 671.45 870.35 671.45 867.55 668.55 864.7 665.85 864.7 661.85 M869.4 662.05 Q869.4 664.55 871.15 666.2 872.85 668.05 875.4 668.05 877.85 668.05 879.65 666.2 L879.7 666.2 880.9 664.5 Q881.4 663.4 881.4 662.05 881.4 660.65 880.9 659.5 880.45 658.55 879.65 657.75 L879.35 657.5 Q878.55 656.8 877.6 656.45 L875.4 656.05 873.15 656.45 Q872.05 656.85 871.15 657.75 869.4 659.45 869.4 662.05"/>
+ <path stroke="none" fill="#3F3F3F" d="M869.4 662.05 Q869.4 659.45 871.15 657.75 872.05 656.85 873.15 656.45 L875.4 656.05 877.6 656.45 Q878.55 656.8 879.35 657.5 L879.65 657.75 Q880.45 658.55 880.9 659.5 881.4 660.65 881.4 662.05 881.4 663.4 880.9 664.5 L879.7 666.2 879.65 666.2 Q877.85 668.05 875.4 668.05 872.85 668.05 871.15 666.2 869.4 664.55 869.4 662.05 M922.55 662.05 Q922.55 664.55 920.75 666.2 919 668.05 916.5 668.05 914.05 668.05 912.2 666.2 L912.15 666.2 Q910.45 664.5 910.45 662.05 910.45 659.45 912.2 657.75 L912.5 657.5 Q913.35 656.8 914.3 656.45 L916.5 656.05 918.75 656.45 Q919.85 656.85 920.75 657.75 922.55 659.45 922.55 662.05"/>
+ <path stroke="none" fill="#23A35A" d="M907.1 676.9 L907.45 677.4 Q907.85 678.15 907.6 679.3 L907.5 679.6 907.25 680.4 Q906.65 681.75 905.4 683 L905.35 683.1 Q904.45 683.95 903.2 683.95 901.9 683.95 901 683 900.1 682.1 900.1 680.85 900.1 680.15 900.35 679.6 L900.95 678.7 901.05 678.6 Q902.55 677.1 904.25 676.55 L904.4 676.55 Q905.75 676.15 906.55 676.55 L907.1 676.9 M886.55 683.1 L886.45 683 Q885.2 681.75 884.65 680.4 884.45 680 884.4 679.6 L884.3 679.3 Q884 678.15 884.4 677.4 L884.8 676.9 Q885 676.65 885.35 676.55 886.15 676.15 887.5 676.55 L887.6 676.55 Q889.3 677.05 890.85 678.6 L890.95 678.7 891.55 679.6 891.8 680.85 Q891.8 682.1 890.85 683 889.95 683.95 888.7 683.95 887.45 683.95 886.55 683.1"/>
+ <path stroke="none" fill="#1B8045" d="M960 668 L960 652.2 960 648.7 Q960 640 951.35 640 L840.65 640 Q832 640 832 648.7 L832 652.2 832 667.8 Q830.75 669.1 829.75 670.8 826.6 676.35 828.25 682.55 828.5 683.5 828.9 684.45 829.95 687.25 832 689.35 L832 759.85 Q832.25 768 840.65 768 L951.35 768 Q959.75 768 960 759.85 L960 689.1 Q961.9 687.05 962.95 684.45 L963.55 682.55 Q965.2 676.35 962 670.8 961.1 669.25 960 668 M964 648.7 L964 666.6 965.5 668.85 965.5 668.8 Q969.5 675.8 967.45 683.6 L966.7 685.85 966.7 685.95 Q965.65 688.45 964 690.55 L964 759.85 964 760 Q963.7 772 951.35 772 L840.65 772 Q828.3 772 828 760 L828 759.85 828 690.9 Q826.2 688.65 825.15 685.85 L825.25 686 824.4 683.6 Q822.3 675.8 826.3 668.85 L826.3 668.8 828 666.3 828 648.7 Q828 636 840.65 636 L951.35 636 Q964 636 964 648.7"/>
+ <path stroke="none" fill="#FFFFFF" d="M854.1 689.5 L856.5 686.25 856.75 685.8 Q874.65 688 895.95 688 917.15 688 935.05 685.85 L935.25 686.25 Q936.3 688.1 937.7 689.5 918.75 692 895.95 692 873.1 692 854.1 689.5"/>
+ <path stroke="none" fill="#E5E5E5" d="M854.1 689.5 Q873.1 692 895.95 692 918.75 692 937.7 689.5 940.5 692.35 944.65 693.45 950.85 695.1 956.35 691.9 958.45 690.7 960 689.1 L960 759.85 Q959.75 768 951.35 768 L840.65 768 Q832.25 768 832 759.85 L832 689.35 Q833.45 690.8 835.4 691.9 841 695.1 847.15 693.45 851.3 692.35 854.1 689.5 M923 746.25 Q922.4 743.95 920.3 742.8 918.3 741.65 916.05 742.25 913.75 742.85 912.5 744.9 911.4 746.9 912 749.2 912.6 751.45 914.6 752.65 916.7 753.85 919 753.25 921.25 752.65 922.4 750.55 923.6 748.5 923 746.25 M921.85 731.45 Q921.45 730.05 920.2 729.3 918.85 728.55 917.45 728.95 916.05 729.3 915.35 730.6 914.6 731.9 915 733.3 915.35 734.7 916.65 735.45 917.9 736.15 919.3 735.8 920.7 735.4 921.5 734.15 922.2 732.85 921.85 731.45 M935.65 740.15 Q935.15 738.25 933.45 737.25 931.75 736.25 929.9 736.75 928 737.25 927 739 926 740.7 926.5 742.6 927.05 744.45 928.75 745.45 930.45 746.4 932.35 745.9 934.2 745.4 935.2 743.7 936.2 742 935.65 740.15"/>
+ <path stroke="none" fill="#D7D7D7" d="M935.65 740.15 Q936.2 742 935.2 743.7 934.2 745.4 932.35 745.9 930.45 746.4 928.75 745.45 927.05 744.45 926.5 742.6 926 740.7 927 739 928 737.25 929.9 736.75 931.75 736.25 933.45 737.25 935.15 738.25 935.65 740.15 M921.85 731.45 Q922.2 732.85 921.5 734.15 920.7 735.4 919.3 735.8 917.9 736.15 916.65 735.45 915.35 734.7 915 733.3 914.6 731.9 915.35 730.6 916.05 729.3 917.45 728.95 918.85 728.55 920.2 729.3 921.45 730.05 921.85 731.45 M923 746.25 Q923.6 748.5 922.4 750.55 921.25 752.65 919 753.25 916.7 753.85 914.6 752.65 912.6 751.45 912 749.2 911.4 746.9 912.5 744.9 913.75 742.85 916.05 742.25 918.3 741.65 920.3 742.8 922.4 743.95 923 746.25"/>
+ <path stroke="none" fill="#6D4526" d="M1145.75 640 Q1144.1 637.4 1141 635.45 1130.65 630.35 1119.3 636.15 1109.85 641.05 1101.85 638.5 1095.3 636.6 1097.35 629.2 1091.75 629.7 1089 632.85 1085.15 637.3 1086.85 647.1 1087.2 649 1088 650.7 L1088 652.2 1088 667 Q1079.6 666.45 1070 668.4 L1067.4 668.95 Q1063.2 670.2 1061.45 674.85 1059.55 680.05 1061.8 686.35 1064.1 692.7 1069.05 696.5 1073.15 699.4 1077 699.5 L1078.2 699.45 1081 698.9 1084 698.3 1088 697.15 1088 759.85 Q1088.25 768 1096.65 768 L1124.7 768 Q1123.15 771.05 1124.2 773.1 L1124.25 773.2 Q1126.05 776.3 1132.6 775.4 1137.1 774.75 1142.05 772.5 1141.2 774.7 1140.9 776.75 L1140.9 777.05 Q1140.65 778.9 1141 780.15 1141.35 781.3 1142.2 781.8 1144.1 782.9 1147.3 780.4 1149.8 778.4 1152 775.1 1154.15 778.4 1156.65 780.4 1159.9 782.9 1161.8 781.8 1162.65 781.3 1162.95 780.15 1163.3 778.9 1163.1 777 L1163.05 776.75 Q1162.8 774.7 1162 772.5 1166.9 774.75 1171.35 775.4 1177.95 776.3 1179.7 773.2 L1179.8 773.05 Q1180.85 771.05 1179.3 768 L1207.35 768 Q1215.75 768 1216 759.85 L1216 697.15 1220 698.25 1223 698.85 1225.8 699.45 1227 699.45 Q1230.85 699.4 1234.95 696.5 1239.9 692.7 1242.2 686.35 1244.45 680.05 1242.55 674.85 1240.8 670.2 1236.6 668.9 L1234 668.35 Q1224.4 666.4 1216 666.95 L1216 652.2 1216 650.7 Q1216.8 649 1217.15 647.1 1218.85 637.3 1215 632.85 1212.25 629.7 1206.65 629.2 1208.7 636.6 1202.15 638.5 1194.15 641.05 1184.7 636.15 1173.35 630.35 1163 635.45 1159.9 637.4 1158.3 640 L1145.75 640 M1101.2 630.3 Q1100.25 633.65 1103 634.65 L1103.1 634.7 Q1109.65 636.65 1117.45 632.6 L1117.5 632.6 Q1130.7 625.85 1142.8 631.85 L1143.15 632.1 Q1145.9 633.85 1147.75 636 L1156.25 636 Q1158.1 633.85 1160.85 632.1 L1161.25 631.85 Q1173.3 625.85 1186.55 632.6 1194.35 636.65 1200.95 634.7 L1201.05 634.65 Q1203.75 633.65 1202.8 630.3 1202.45 629 1202.95 627.75 1203.4 626.5 1204.55 625.8 1205.7 625.1 1207 625.25 1214.45 625.9 1218.05 630.25 1223.2 635.65 1221.1 647.8 1220.75 649.75 1220 651.55 L1220 662.8 Q1227 662.85 1234.8 664.45 L1234.75 664.45 1237.5 665 1237.8 665.1 Q1243.8 666.85 1246.3 673.45 L1246.3 673.5 Q1248.75 679.9 1246 687.7 L1245.95 687.7 Q1243.25 695.2 1237.4 699.7 1237.3 699.7 1237.25 699.8 1232.15 703.4 1227.3 703.45 L1225.45 703.45 1225 703.4 1222.35 702.8 1220 702.35 1220 759.85 1220 760 Q1219.7 772 1207.35 772 L1184.35 772 Q1184.2 773.55 1183.4 774.85 L1183.1 775.35 Q1180.65 780.7 1170.8 779.4 L1170.8 779.35 1167.2 778.65 1166.85 781.15 1166.8 781.25 Q1166.05 784.05 1163.85 785.25 L1163.8 785.25 Q1160.15 788.15 1154.2 783.6 L1154.15 783.55 1152 781.55 1149.8 783.55 Q1143.9 788.15 1140.2 785.25 1138 784.1 1137.2 781.35 L1137.15 781.25 Q1136.8 780.1 1136.8 778.65 L1133.2 779.35 1133.15 779.4 Q1123.5 780.7 1120.95 775.45 L1120.35 774.4 Q1119.8 773.25 1119.7 772 L1096.65 772 Q1084.3 772 1084 760 L1084 759.85 1084 702.4 1081.8 702.85 1081.75 702.85 1079 703.4 1078.95 703.4 1076.7 703.5 Q1071.85 703.4 1066.75 699.8 L1066.65 699.7 Q1060.75 695.2 1058.05 687.7 1055.25 679.9 1057.7 673.5 L1057.7 673.45 Q1060.2 666.85 1066.25 665.15 L1066.35 665.1 1069.4 664.45 1069.2 664.5 Q1077 662.9 1084 662.85 L1084 651.55 Q1083.25 649.75 1082.9 647.8 1080.8 635.65 1086 630.25 1089.55 625.9 1097 625.25 1098.3 625.1 1099.45 625.8 1100.6 626.5 1101.1 627.75 1101.55 629 1101.2 630.3"/>
+ <path stroke="none" fill="#FFDFC6" d="M1089 632.85 Q1091.75 629.7 1097.35 629.2 1095.3 636.6 1101.85 638.5 1109.85 641.05 1119.3 636.15 1130.65 630.35 1141 635.45 1144.1 637.4 1145.75 640 1146.9 641.85 1147.35 644 L1147.4 644.2 1147.2 644 Q1144.85 641.8 1141.5 640 L1139.6 639.05 Q1126.1 633.95 1116.05 639.75 L1115.65 640 Q1107.45 644.6 1097.85 642.1 1095.35 641.5 1093.55 640.35 1089.6 637.85 1089 632.85 M1158.3 640 Q1159.9 637.4 1163 635.45 1173.35 630.35 1184.7 636.15 1194.15 641.05 1202.15 638.5 1208.7 636.6 1206.65 629.2 1212.25 629.7 1215 632.85 1214.4 637.85 1210.5 640.35 1208.65 641.5 1206.15 642.1 1196.55 644.6 1188.4 640 L1187.95 639.75 Q1177.9 633.95 1164.4 639.05 L1162.5 640 Q1159.15 641.8 1156.8 644 L1156.6 644.2 1156.65 644 Q1157.1 641.85 1158.3 640"/>
+ <path stroke="none" fill="#EBCEB7" d="M1215 632.85 Q1218.85 637.3 1217.15 647.1 1216.8 649 1216 650.7 L1215.9 650.9 Q1211.75 659 1196.05 662.55 1173.15 666.9 1163.5 660.4 1160.05 658.05 1158.25 654.35 1157.05 651.6 1156.5 648.3 1156.25 646.1 1156.6 644.2 L1156.8 644 Q1159.15 641.8 1162.5 640 L1164.4 639.05 Q1177.9 633.95 1187.95 639.75 L1188.4 640 Q1196.55 644.6 1206.15 642.1 1208.65 641.5 1210.5 640.35 1214.4 637.85 1215 632.85 M1088 650.7 Q1087.2 649 1086.85 647.1 1085.15 637.3 1089 632.85 1089.6 637.85 1093.55 640.35 1095.35 641.5 1097.85 642.1 1107.45 644.6 1115.65 640 L1116.05 639.75 Q1126.1 633.95 1139.6 639.05 L1141.5 640 Q1144.85 641.8 1147.2 644 L1147.4 644.2 Q1147.75 646.1 1147.5 648.3 1146.95 651.6 1145.75 654.35 1144.55 656.8 1142.65 658.7 1133.5 667.4 1107.95 662.55 1092.25 659 1088.1 650.9 L1088 650.7"/>
+ <path stroke="none" fill="#B4723F" d="M1088 650.7 L1088.1 650.9 1088 652.2 1088 650.7 M1145.75 640 L1158.3 640 Q1157.1 641.85 1156.65 644 L1147.35 644 Q1146.9 641.85 1145.75 640 M1216 650.7 L1216 652.2 1215.9 650.9 1216 650.7"/>
+ <path stroke="none" fill="#A16639" d="M1216 652.2 L1216 666.95 1216 667.65 1216 674.6 1216 696.8 1216 697.15 1216 759.85 Q1215.75 768 1207.35 768 L1179.3 768 1176.55 768 1127.45 768 1124.7 768 1096.65 768 Q1088.25 768 1088 759.85 L1088 697.15 1088 696.85 1088 674.65 1088 667.65 1088 667 1088 652.2 1088.1 650.9 Q1092.25 659 1107.95 662.55 1133.5 667.4 1142.65 658.7 1142.15 666 1141.2 673 1139.05 688.7 1134.5 703.05 1130.2 705.15 1126.45 708.35 1115.9 717.4 1115.5 730 L1115.5 731 1115.55 732.9 Q1116.3 744.9 1126.45 753.6 1129.8 756.45 1133.55 758.45 L1137.1 760.1 Q1144.35 763 1153 763 1160.9 763 1167.7 760.55 L1171.25 759.05 Q1175.65 756.9 1179.5 753.6 1189.7 744.95 1190.45 732.9 L1190.5 731 1190.5 730 Q1190.05 717.4 1179.5 708.35 1175.75 705.15 1171.5 703.1 1166.85 688.4 1164.75 672.35 1163.85 666.25 1163.5 660.4 1173.15 666.9 1196.05 662.55 1211.75 659 1215.9 650.9 L1216 652.2 M1105.45 689.35 Q1105.45 693.5 1108.4 696.35 1111.35 699.35 1115.5 699.35 1119.6 699.35 1122.6 696.35 1125.5 693.5 1125.5 689.35 1125.5 685.15 1122.6 682.25 1119.6 679.3 1115.5 679.3 1112.15 679.3 1109.65 681.2 L1108.4 682.25 Q1106.05 684.55 1105.6 687.65 1105.45 688.45 1105.45 689.35 M1198.55 689.35 L1198.45 687.65 Q1197.9 684.55 1195.6 682.25 L1194.4 681.2 Q1191.85 679.3 1188.5 679.3 1184.4 679.3 1181.4 682.25 1178.5 685.15 1178.5 689.35 1178.5 693.5 1181.4 696.35 1184.4 699.35 1188.5 699.35 1192.65 699.35 1195.6 696.35 1198.55 693.5 1198.55 689.35"/>
+ <path stroke="none" fill="#704E35" d="M1216 666.95 Q1224.4 666.4 1234 668.35 L1236.6 668.9 Q1240.8 670.2 1242.55 674.85 1244.45 680.05 1242.2 686.35 1239.9 692.7 1234.95 696.5 1230.85 699.4 1227 699.45 1229.05 698.85 1231 697.3 1236.15 693.5 1238.4 687.1 1240.6 680.9 1238.75 675.6 1236.95 670.95 1232.8 669.75 L1230 669.1 Q1222.65 667.65 1216 667.65 L1216 666.95 M1179.3 768 Q1180.85 771.05 1179.8 773.05 1179.1 771.25 1177.35 769.05 L1176.55 768 1179.3 768 M1124.2 773.1 Q1123.15 771.05 1124.7 768 L1127.45 768 1126.6 769.05 Q1124.85 771.25 1124.2 773.1 M1077 699.5 Q1073.15 699.4 1069.05 696.5 1064.1 692.7 1061.8 686.35 1059.55 680.05 1061.45 674.85 1063.2 670.2 1067.4 668.95 L1070 668.4 Q1079.6 666.45 1088 667 L1088 667.65 Q1081.35 667.65 1074 669.1 L1071.2 669.75 Q1067.05 671 1065.25 675.65 1063.4 680.9 1065.6 687.1 1067.9 693.55 1073 697.3 1074.95 698.85 1077 699.5 M1190.45 732.9 Q1189.6 721 1179.5 712.35 1176.5 709.8 1173.15 707.95 1164.25 703 1153 703 1141.75 703 1132.9 707.9 1129.5 709.75 1126.45 712.35 1116.35 721 1115.55 732.9 L1115.5 731 1115.5 730 Q1115.9 717.4 1126.45 708.35 1130.2 705.15 1134.5 703.05 1142.75 699 1153 699 1163.25 699 1171.5 703.1 1175.75 705.15 1179.5 708.35 1190.05 717.4 1190.5 730 L1190.5 731 1190.45 732.9"/>
+ <path stroke="none" fill="#5F422D" d="M1227 699.45 L1225.8 699.45 1223 698.85 1220 698.25 1216 697.15 1216 696.8 Q1217.3 696.25 1218.75 695.3 1222.4 692.45 1224.05 687.9 1225.7 683.4 1224.35 679.6 1223 676.3 1219.95 675.45 1219.1 675.05 1218.05 675 L1216 674.6 1216 667.65 Q1222.65 667.65 1230 669.1 L1232.8 669.75 Q1236.95 670.95 1238.75 675.6 1240.6 680.9 1238.4 687.1 1236.15 693.5 1231 697.3 1229.05 698.85 1227 699.45 M1179.8 773.05 L1179.7 773.2 Q1177.95 776.3 1171.35 775.4 1166.9 774.75 1162 772.5 1162.8 774.7 1163.05 776.75 L1163.1 777 Q1163.3 778.9 1162.95 780.15 1162.65 781.3 1161.8 781.8 1159.9 782.9 1156.65 780.4 1154.15 778.4 1152 775.1 1149.8 778.4 1147.3 780.4 1144.1 782.9 1142.2 781.8 1141.35 781.3 1141 780.15 1140.65 778.9 1140.9 777.05 L1140.9 776.75 Q1141.2 774.7 1142.05 772.5 1137.1 774.75 1132.6 775.4 1126.05 776.3 1124.25 773.2 L1124.2 773.1 Q1124.85 771.25 1126.6 769.05 L1127.45 768 1176.55 768 1177.35 769.05 Q1179.1 771.25 1179.8 773.05 M1088 697.15 L1084 698.3 1081 698.9 1078.2 699.45 1077 699.5 Q1074.95 698.85 1073 697.3 1067.9 693.55 1065.6 687.1 1063.4 680.9 1065.25 675.65 1067.05 671 1071.2 669.75 L1074 669.1 Q1081.35 667.65 1088 667.65 L1088 674.65 1085.95 675 1084.05 675.45 Q1081 676.3 1079.65 679.6 1078.3 683.45 1079.95 687.95 1081.6 692.5 1085.25 695.3 L1088 696.85 1088 697.15 M1147.4 644.2 L1147.35 644 1156.65 644 1156.6 644.2 Q1156.25 646.1 1156.5 648.3 1157.05 651.6 1158.25 654.35 1160.05 658.05 1163.5 660.4 1163.85 666.25 1164.75 672.35 1166.85 688.4 1171.5 703.1 1163.25 699 1153 699 1142.75 699 1134.5 703.05 1139.05 688.7 1141.2 673 1142.15 666 1142.65 658.7 1144.55 656.8 1145.75 654.35 1146.95 651.6 1147.5 648.3 1147.75 646.1 1147.4 644.2 M1115.55 732.9 Q1116.35 721 1126.45 712.35 1129.5 709.75 1132.9 707.9 1141.75 703 1153 703 1164.25 703 1173.15 707.95 1176.5 709.8 1179.5 712.35 1189.6 721 1190.45 732.9 1189.7 744.95 1179.5 753.6 1175.65 756.9 1171.25 759.05 L1167.7 760.55 Q1160.9 763 1153 763 1144.35 763 1137.1 760.1 L1133.55 758.45 Q1129.8 756.45 1126.45 753.6 1116.3 744.9 1115.55 732.9 M1137.4 723.4 Q1138.9 724.8 1140.95 724.8 1143.1 724.8 1144.6 723.3 1146.1 721.8 1146.1 719.65 1146.1 718.55 1145.75 717.65 L1144.7 716.1 1144.55 715.95 Q1142 713.4 1139.15 712.55 L1138.95 712.5 Q1136.75 711.85 1135.4 712.55 1134.9 712.75 1134.5 713.15 L1133.9 714 Q1133.25 715.25 1133.7 717.15 L1133.8 717.65 1134.25 718.95 Q1135.2 721.2 1137.25 723.25 L1137.4 723.4 M1171.5 713.15 L1170.65 712.55 Q1169.25 711.85 1167.05 712.5 L1166.8 712.6 Q1163.95 713.45 1161.45 715.95 L1161.3 716.1 Q1160.65 716.8 1160.3 717.65 1159.9 718.55 1159.9 719.65 1159.9 721.8 1161.4 723.3 1162.9 724.8 1165.05 724.8 1167.1 724.8 1168.6 723.4 L1168.75 723.25 Q1170.8 721.2 1171.75 718.95 L1172.2 717.65 1172.35 717.15 Q1172.75 715.25 1172.1 714 L1171.5 713.15"/>
+ <path stroke="none" fill="#4F3725" d="M1171.5 713.15 L1172.1 714 Q1172.75 715.25 1172.35 717.15 L1172.2 717.65 1171.75 718.95 Q1170.8 721.2 1168.75 723.25 L1168.6 723.4 Q1167.1 724.8 1165.05 724.8 1162.9 724.8 1161.4 723.3 1159.9 721.8 1159.9 719.65 1159.9 718.55 1160.3 717.65 1160.65 716.8 1161.3 716.1 L1161.45 715.95 Q1163.95 713.45 1166.8 712.6 L1167.05 712.5 Q1169.25 711.85 1170.65 712.55 L1171.5 713.15 M1088 674.65 L1088 696.85 1085.25 695.3 Q1081.6 692.5 1079.95 687.95 1078.3 683.45 1079.65 679.6 1081 676.3 1084.05 675.45 L1085.95 675 1088 674.65 M1137.4 723.4 L1137.25 723.25 Q1135.2 721.2 1134.25 718.95 L1133.8 717.65 1133.7 717.15 Q1133.25 715.25 1133.9 714 L1134.5 713.15 Q1134.9 712.75 1135.4 712.55 1136.75 711.85 1138.95 712.5 L1139.15 712.55 Q1142 713.4 1144.55 715.95 L1144.7 716.1 1145.75 717.65 Q1146.1 718.55 1146.1 719.65 1146.1 721.8 1144.6 723.3 1143.1 724.8 1140.95 724.8 1138.9 724.8 1137.4 723.4 M1216 674.6 L1218.05 675 Q1219.1 675.05 1219.95 675.45 1223 676.3 1224.35 679.6 1225.7 683.4 1224.05 687.9 1222.4 692.45 1218.75 695.3 1217.3 696.25 1216 696.8 L1216 674.6"/>
+ <path stroke="none" fill="#5B5B5B" d="M1110.95 690.55 Q1110.95 687.9 1112.75 686.1 1114.6 684.25 1117.25 684.25 1119.8 684.25 1121.7 686.1 1123.55 687.9 1123.55 690.55 1123.55 693.1 1121.7 694.9 1119.8 696.7 1117.25 696.7 1114.6 696.7 1112.75 694.9 1110.95 693.1 1110.95 690.55 M1193.05 690.55 Q1193.05 693.1 1191.25 694.9 1189.4 696.7 1186.75 696.7 1184.2 696.7 1182.3 694.9 1180.45 693.1 1180.45 690.55 1180.45 687.9 1182.3 686.1 1184.2 684.25 1186.75 684.25 1189.4 684.25 1191.25 686.1 1193.05 687.9 1193.05 690.55"/>
+ <path stroke="none" fill="#FFFFFF" d="M1193.05 690.55 Q1193.05 687.9 1191.25 686.1 1189.4 684.25 1186.75 684.25 1184.2 684.25 1182.3 686.1 1180.45 687.9 1180.45 690.55 1180.45 693.1 1182.3 694.9 1184.2 696.7 1186.75 696.7 1189.4 696.7 1191.25 694.9 1193.05 693.1 1193.05 690.55 M1110.95 690.55 Q1110.95 693.1 1112.75 694.9 1114.6 696.7 1117.25 696.7 1119.8 696.7 1121.7 694.9 1123.55 693.1 1123.55 690.55 1123.55 687.9 1121.7 686.1 1119.8 684.25 1117.25 684.25 1114.6 684.25 1112.75 686.1 1110.95 687.9 1110.95 690.55 M1105.45 689.35 Q1105.45 688.45 1105.6 687.65 1106.05 684.55 1108.4 682.25 L1109.65 681.2 Q1112.15 679.3 1115.5 679.3 1119.6 679.3 1122.6 682.25 1125.5 685.15 1125.5 689.35 1125.5 693.5 1122.6 696.35 1119.6 699.35 1115.5 699.35 1111.35 699.35 1108.4 696.35 1105.45 693.5 1105.45 689.35 M1198.55 689.35 Q1198.55 693.5 1195.6 696.35 1192.65 699.35 1188.5 699.35 1184.4 699.35 1181.4 696.35 1178.5 693.5 1178.5 689.35 1178.5 685.15 1181.4 682.25 1184.4 679.3 1188.5 679.3 1191.85 679.3 1194.4 681.2 L1195.6 682.25 Q1197.9 684.55 1198.45 687.65 L1198.55 689.35"/>
+ <path stroke="none" fill="#6D4526" d="M1279.55 410.05 Q1284.4 410.5 1287.4 414.4 L1287.35 414.35 Q1289.85 417.5 1289.9 421.35 L1290.05 429.2 1290.05 429.25 Q1289.95 434.3 1289.35 439.15 L1289.35 439.2 Q1288.2 447.25 1285.7 454.6 1278.7 474.9 1260.7 490.25 L1260.7 490.3 Q1245.1 503.4 1220 506.3 L1220 567.85 1220 568 Q1219.7 580 1207.35 580 L1096.65 580 Q1084.3 580 1084 568 L1084 567.85 1084 506.3 Q1058.9 503.4 1043.35 490.3 L1043.3 490.25 Q1025.3 474.9 1018.35 454.6 1015.8 447.25 1014.7 439.2 L1014.7 439.15 Q1014.05 434.3 1013.95 429.25 L1013.95 429.2 1014.1 421.35 Q1014.15 417.5 1016.65 414.35 L1016.65 414.4 Q1019.6 410.5 1024.5 410.05 L1024.4 410.05 Q1029.1 409.5 1032.85 412.4 1036.7 415.35 1037.3 420.15 1038.15 427.1 1039.7 433.85 1040.15 431 1042.25 428.55 1045.1 424.75 1049.85 424.25 1054.7 423.65 1058.45 426.65 L1058.4 426.6 Q1062.25 429.6 1062.8 434.35 1063.35 439.05 1064.25 443.7 L1065.5 441.75 1065.55 441.65 Q1068.5 437.9 1073.3 437.4 L1073.2 437.4 Q1078 436.7 1081.85 439.7 L1081.9 439.75 Q1085.7 442.75 1086.3 447.45 L1086.3 447.5 1086.35 448.1 Q1089.45 444 1096.65 444 L1127.55 444 Q1128.25 441.7 1130.1 439.85 1133.2 436.65 1137.7 436.65 L1166.3 436.65 Q1170.75 436.65 1173.9 439.85 L1173.85 439.85 Q1175.7 441.7 1176.5 444 L1207.35 444 Q1214.55 444 1217.65 448.1 L1217.75 447.5 1217.75 447.45 Q1218.3 442.75 1222.1 439.75 L1222.15 439.7 Q1226 436.7 1230.85 437.4 L1230.7 437.4 Q1235.5 437.9 1238.5 441.65 L1238.55 441.75 1239.8 443.7 1241.25 434.35 Q1241.75 429.6 1245.6 426.6 L1245.55 426.65 Q1249.3 423.65 1254.15 424.25 1258.9 424.75 1261.8 428.55 1263.85 431 1264.3 433.85 1265.85 427.1 1266.75 420.15 1267.3 415.35 1271.15 412.4 L1271.2 412.4 Q1274.9 409.5 1279.6 410.05 L1279.55 410.05 M1286.05 429.15 L1285.9 421.55 Q1285.9 418.95 1284.2 416.8 1282.3 414.3 1279.15 414 1276.05 413.65 1273.6 415.55 1271.05 417.5 1270.7 420.65 1269.4 430.75 1266.8 440.45 1264.15 448.15 1262.15 448.6 1260.3 448.8 1260 444.75 1259.8 442.7 1260.05 439.55 L1260.25 438.05 1260.35 436.7 Q1260.8 433.6 1258.7 431.1 1256.8 428.55 1253.65 428.2 1250.5 427.8 1248.05 429.75 1245.55 431.7 1245.2 434.8 1244 444.95 1241.3 454.65 1239.2 461.4 1237.6 461 1236.6 460.8 1236.4 458.55 1236.15 456.3 1236.6 452 L1236.75 451 1236.95 449.8 Q1237.25 446.65 1235.35 444.15 1233.4 441.7 1230.25 441.35 1227.1 440.9 1224.6 442.85 1222.1 444.85 1221.7 447.95 L1219.95 459.05 Q1217.8 458.35 1216 458.65 L1216 456.7 Q1216 448 1207.35 448 L1173 448 1173 447.45 Q1173 444.65 1171 442.65 1169.05 440.65 1166.3 440.65 L1137.7 440.65 Q1134.9 440.65 1132.95 442.65 1131 444.65 1131 447.45 L1131 448 1096.65 448 Q1088 448 1088 456.7 L1088 458.65 1084.1 459.05 Q1082.95 453.55 1082.3 447.95 1081.9 444.85 1079.4 442.85 1076.9 440.9 1073.75 441.35 1070.6 441.7 1068.65 444.15 1066.75 446.65 1067.05 449.8 L1067.25 451 1067.4 452 Q1067.85 456.3 1067.6 458.55 1067.4 460.8 1066.4 461 1064.8 461.4 1062.7 454.65 1060 444.95 1058.8 434.8 1058.45 431.7 1055.95 429.75 1053.5 427.8 1050.35 428.2 1047.2 428.55 1045.3 431.1 1043.2 433.6 1043.65 436.7 L1043.75 438.05 1043.95 439.55 1044 444.75 Q1043.7 448.8 1041.85 448.6 1039.85 448.15 1037.2 440.45 1034.6 430.75 1033.3 420.65 1032.95 417.5 1030.4 415.55 1027.95 413.65 1024.85 414 1021.7 414.3 1019.8 416.8 1018.1 418.95 1018.1 421.55 1017.9 425.4 1017.95 429.15 1018.05 434 1018.65 438.65 1019.7 446.3 1022.1 453.3 1028.75 472.6 1045.9 487.2 1061.8 500.45 1088 502.7 L1088 567.85 Q1088.25 576 1096.65 576 L1207.35 576 Q1215.75 576 1216 567.85 L1216 502.7 Q1242.2 500.45 1258.1 487.2 1275.25 472.6 1281.9 453.3 1284.3 446.3 1285.35 438.65 1285.95 434 1286.05 429.15"/>
+ <path stroke="none" fill="#D49562" d="M1286.05 429.15 L1285.9 425.55 Q1285.9 422.95 1284.2 420.8 1282.3 418.3 1279.15 418 1276.05 417.65 1273.6 419.55 1271.05 421.5 1270.7 424.65 1269.4 434.75 1266.8 444.45 1264.15 452.15 1262.15 452.6 1259.55 452.9 1260 444.75 1260.3 448.8 1262.15 448.6 1264.15 448.15 1266.8 440.45 1269.4 430.75 1270.7 420.65 1271.05 417.5 1273.6 415.55 1276.05 413.65 1279.15 414 1282.3 414.3 1284.2 416.8 1285.9 418.95 1285.9 421.55 L1286.05 429.15 M1017.95 429.15 Q1017.9 425.4 1018.1 421.55 1018.1 418.95 1019.8 416.8 1021.7 414.3 1024.85 414 1027.95 413.65 1030.4 415.55 1032.95 417.5 1033.3 420.65 1034.6 430.75 1037.2 440.45 1039.85 448.15 1041.85 448.6 1043.7 448.8 1044 444.75 1044.45 452.9 1041.85 452.6 1039.85 452.15 1037.2 444.45 1034.6 434.75 1033.3 424.65 1032.95 421.5 1030.4 419.55 1027.95 417.65 1024.85 418 1021.7 418.3 1019.8 420.8 1018.1 422.95 1018.1 425.55 L1017.95 429.15 M1043.75 438.05 L1043.65 436.7 Q1043.2 433.6 1045.3 431.1 1047.2 428.55 1050.35 428.2 1053.5 427.8 1055.95 429.75 1058.45 431.7 1058.8 434.8 1060 444.95 1062.7 454.65 1064.8 461.4 1066.4 461 1067.4 460.8 1067.6 458.55 1068.05 464.7 1066.4 465 1064.8 465.4 1062.7 458.65 1060 448.95 1058.8 438.8 1058.45 435.7 1055.95 433.75 1053.5 431.8 1050.35 432.2 1047.2 432.55 1045.3 435.1 1044.15 436.45 1043.75 438.05 M1067.25 451 L1067.05 449.8 Q1066.75 446.65 1068.65 444.15 1070.6 441.7 1073.75 441.35 1076.9 440.9 1079.4 442.85 1081.9 444.85 1082.3 447.95 1082.95 453.55 1084.1 459.05 L1083.4 459.3 1082.3 451.95 Q1081.9 448.85 1079.4 446.85 1076.9 444.9 1073.75 445.35 1070.6 445.7 1068.65 448.15 1067.65 449.45 1067.25 451 M1219.95 459.05 L1221.7 447.95 Q1222.1 444.85 1224.6 442.85 1227.1 440.9 1230.25 441.35 1233.4 441.7 1235.35 444.15 1237.25 446.65 1236.95 449.8 L1236.75 451 Q1236.35 449.45 1235.35 448.15 1233.4 445.7 1230.25 445.35 1227.1 444.9 1224.6 446.85 1222.1 448.85 1221.7 451.95 L1220.65 459.3 1219.95 459.05 M1236.4 458.55 Q1236.6 460.8 1237.6 461 1239.2 461.4 1241.3 454.65 1244 444.95 1245.2 434.8 1245.55 431.7 1248.05 429.75 1250.5 427.8 1253.65 428.2 1256.8 428.55 1258.7 431.1 1260.8 433.6 1260.35 436.7 L1260.25 438.05 Q1259.85 436.45 1258.7 435.1 1256.8 432.55 1253.65 432.2 1250.5 431.8 1248.05 433.75 1245.55 435.7 1245.2 438.8 1244 448.95 1241.3 458.65 1239.2 465.4 1237.6 465 1235.95 464.7 1236.4 458.55"/>
+ <path stroke="none" fill="#BF8658" d="M1236.4 458.55 Q1235.95 464.7 1237.6 465 1239.2 465.4 1241.3 458.65 1244 448.95 1245.2 438.8 1245.55 435.7 1248.05 433.75 1250.5 431.8 1253.65 432.2 1256.8 432.55 1258.7 435.1 1259.85 436.45 1260.25 438.05 L1260.05 439.55 Q1259.8 442.7 1260 444.75 1259.55 452.9 1262.15 452.6 1264.15 452.15 1266.8 444.45 1269.4 434.75 1270.7 424.65 1271.05 421.5 1273.6 419.55 1276.05 417.65 1279.15 418 1282.3 418.3 1284.2 420.8 1285.9 422.95 1285.9 425.55 L1286.05 429.15 Q1285.95 434 1285.35 438.65 1261 472.75 1233.6 488.1 1234.75 486.35 1235.1 483.6 L1235.2 481.85 Q1235.25 475.85 1231.6 469.6 1227.95 463.25 1222.7 460.25 1221.65 459.65 1220.65 459.3 L1221.7 451.95 Q1222.1 448.85 1224.6 446.85 1227.1 444.9 1230.25 445.35 1233.4 445.7 1235.35 448.15 1236.35 449.45 1236.75 451 L1236.6 452 Q1236.15 456.3 1236.4 458.55 M1018.65 438.65 Q1018.05 434 1017.95 429.15 L1018.1 425.55 Q1018.1 422.95 1019.8 420.8 1021.7 418.3 1024.85 418 1027.95 417.65 1030.4 419.55 1032.95 421.5 1033.3 424.65 1034.6 434.75 1037.2 444.45 1039.85 452.15 1041.85 452.6 1044.45 452.9 1044 444.75 L1043.95 439.55 1043.75 438.05 Q1044.15 436.45 1045.3 435.1 1047.2 432.55 1050.35 432.2 1053.5 431.8 1055.95 433.75 1058.45 435.7 1058.8 438.8 1060 448.95 1062.7 458.65 1064.8 465.4 1066.4 465 1068.05 464.7 1067.6 458.55 1067.85 456.3 1067.4 452 L1067.25 451 Q1067.65 449.45 1068.65 448.15 1070.6 445.7 1073.75 445.35 1076.9 444.9 1079.4 446.85 1081.9 448.85 1082.3 451.95 L1083.4 459.3 Q1082.4 459.7 1081.35 460.25 1076.1 463.25 1072.45 469.6 1068.8 475.85 1068.85 481.85 L1069 483.6 Q1069.3 486.4 1070.55 488.15 1043.05 472.8 1018.65 438.65"/>
+ <path stroke="none" fill="#B67340" d="M1084.1 459.05 L1088 458.65 1088 460.2 1088 462.65 1084.95 462.85 1084.1 463.05 1081.35 464.25 Q1076.1 467.25 1072.45 473.6 1069.5 478.65 1069 483.6 L1068.85 481.85 Q1068.8 475.85 1072.45 469.6 1076.1 463.25 1081.35 460.25 1082.4 459.7 1083.4 459.3 L1084.1 459.05 M1216 458.65 Q1217.8 458.35 1219.95 459.05 L1220.65 459.3 Q1221.65 459.65 1222.7 460.25 1227.95 463.25 1231.6 469.6 1235.25 475.85 1235.2 481.85 L1235.1 483.6 Q1234.55 478.65 1231.6 473.6 1227.95 467.25 1222.7 464.25 1221.25 463.45 1219.95 463.05 L1219.1 462.8 1216 462.65 1216 460.2 1216 458.65 M1170.55 513.35 Q1174.75 515.45 1178.5 518.6 1189.05 527.65 1189.5 540.25 L1189.5 541.25 1189.45 543.15 Q1188.6 531.25 1178.5 522.6 1175.5 520.05 1172.15 518.2 1163.25 513.25 1152 513.25 1140.75 513.25 1131.9 518.15 1128.5 520 1125.45 522.6 1115.35 531.25 1114.55 543.15 L1114.5 541.25 1114.5 540.25 Q1114.9 527.65 1125.45 518.6 1129.2 515.4 1133.5 513.3 1141.75 509.25 1152 509.25 1162.25 509.25 1170.55 513.35"/>
+ <path stroke="none" fill="#8E5A32" d="M1235.1 483.6 Q1234.75 486.35 1233.6 488.1 L1232.15 489.55 1231.4 490.05 1231.25 489.35 Q1230.55 486.45 1228.8 483.5 1225.8 478.25 1221.5 475.75 1218.95 474.4 1216.9 474.4 L1216 474.45 1216 462.65 1219.1 462.8 1219.95 463.05 Q1221.25 463.45 1222.7 464.25 1227.95 467.25 1231.6 473.6 1234.55 478.65 1235.1 483.6 M1189.45 543.15 Q1188.7 555.2 1178.5 563.85 1167.5 573.25 1152 573.25 1136.45 573.25 1125.45 563.85 1115.3 555.15 1114.55 543.15 1115.35 531.25 1125.45 522.6 1128.5 520 1131.9 518.15 1140.75 513.25 1152 513.25 1163.25 513.25 1172.15 518.2 1175.5 520.05 1178.5 522.6 1188.6 531.25 1189.45 543.15 M1088 462.65 L1088 474.45 1087.1 474.4 Q1085.05 474.4 1082.55 475.75 1078.25 478.25 1075.25 483.5 1073.5 486.45 1072.8 489.35 L1072.65 490.05 1071.9 489.55 1070.55 488.15 Q1069.3 486.4 1069 483.6 1069.5 478.65 1072.45 473.6 1076.1 467.25 1081.35 464.25 L1084.1 463.05 1084.95 462.85 1088 462.65 M1136.4 533.65 Q1137.9 535.05 1139.95 535.05 1142.1 535.05 1143.6 533.55 1145.1 532.05 1145.1 529.9 1145.1 528.8 1144.75 527.9 L1143.7 526.35 1143.55 526.2 Q1141 523.65 1138.15 522.8 L1137.95 522.75 Q1135.75 522.1 1134.4 522.8 1133.9 523 1133.5 523.4 1133.15 523.75 1132.9 524.25 1132.25 525.5 1132.7 527.4 L1132.8 527.9 Q1132.95 528.55 1133.25 529.2 1134.2 531.45 1136.25 533.5 L1136.4 533.65 M1170.5 523.4 L1169.65 522.8 Q1168.25 522.1 1166.05 522.75 L1165.8 522.85 Q1162.95 523.7 1160.45 526.2 L1160.3 526.35 Q1159.65 527.05 1159.3 527.9 1158.9 528.8 1158.9 529.9 1158.9 532.05 1160.4 533.55 1161.9 535.05 1164.05 535.05 1166.1 535.05 1167.6 533.65 L1167.75 533.5 Q1169.8 531.45 1170.75 529.2 L1171.2 527.9 1171.35 527.4 Q1171.75 525.5 1171.1 524.25 L1170.5 523.4"/>
+ <path stroke="none" fill="#B4723F" d="M1088 458.65 L1088 456.7 Q1088 448 1096.65 448 L1131 448 1131 451.2 1131 452 1096.65 452 Q1089.1 452 1088.15 458.65 1088 459.4 1088 460.2 L1088 458.65 M1173 448 L1207.35 448 Q1216 448 1216 456.7 L1216 458.65 1216 460.2 1215.9 458.7 Q1214.95 452 1207.35 452 L1173 452 1173 451.2 1173 448"/>
+ <path stroke="none" fill="#A16639" d="M1216 502.7 L1216 567.85 Q1215.75 576 1207.35 576 L1096.65 576 Q1088.25 576 1088 567.85 L1088 502.7 1088 496.2 1088 474.45 1088 462.65 1088 460.2 Q1088 459.4 1088.15 458.65 1089.1 452 1096.65 452 L1131 452 1131 463.1 1131 466.45 1131 478.35 Q1131.1 481.05 1132.95 482.9 1134.9 484.9 1137.55 486.6 L1139.55 487.85 Q1137.4 501.05 1133.5 513.3 1129.2 515.4 1125.45 518.6 1114.9 527.65 1114.5 540.25 L1114.5 541.25 1114.55 543.15 Q1115.3 555.15 1125.45 563.85 1136.45 573.25 1152 573.25 1167.5 573.25 1178.5 563.85 1188.7 555.2 1189.45 543.15 L1189.5 541.25 1189.5 540.25 Q1189.05 527.65 1178.5 518.6 1174.75 515.45 1170.55 513.35 1166.6 501.1 1164.5 487.85 L1166.7 486.45 Q1169.05 484.9 1171 482.9 1172.9 481.05 1173 478.35 L1173 466.45 1173 463.1 1173 452 1207.35 452 Q1214.95 452 1215.9 458.7 L1216 460.2 1216 462.65 1216 474.45 1216 496.2 1216 502.7 M1200.5 493.8 L1200.5 493.3 Q1200.45 491.45 1199.9 489.85 1199 487.1 1196.85 484.95 1193.2 481.3 1188 481.3 1182.9 481.3 1179.2 484.95 1175.55 488.6 1175.55 493.8 1175.55 498.95 1179.2 502.55 1182.9 506.25 1188 506.25 1193.2 506.25 1196.85 502.55 1198.4 501.05 1199.3 499.25 1200.5 496.8 1200.5 493.8 M1103.5 493.8 Q1103.5 496.8 1104.75 499.25 1105.6 501.05 1107.15 502.55 1110.8 506.25 1116 506.25 1121.1 506.25 1124.8 502.55 1128.45 498.95 1128.45 493.8 1128.45 488.6 1124.8 484.95 1121.1 481.3 1116 481.3 1110.8 481.3 1107.15 484.95 1105 487.1 1104.1 489.85 1103.55 491.45 1103.5 493.3 L1103.5 493.8"/>
+ <path stroke="none" fill="#774B2A" d="M1216 474.45 L1216.9 474.4 Q1218.95 474.4 1221.5 475.75 1225.8 478.25 1228.8 483.5 1230.55 486.45 1231.25 489.35 L1231.4 490.05 1230.1 490.8 Q1222.95 494.95 1216 496.2 L1216 474.45 M1088 474.45 L1088 496.2 Q1081.1 494.9 1073.95 490.8 L1072.65 490.05 1072.8 489.35 Q1073.5 486.45 1075.25 483.5 1078.25 478.25 1082.55 475.75 1085.05 474.4 1087.1 474.4 L1088 474.45"/>
+ <path stroke="none" fill="#B47E52" d="M1285.35 438.65 Q1284.3 446.3 1281.9 453.3 1275.25 472.6 1258.1 487.2 1242.2 500.45 1216 502.7 L1216 496.2 Q1222.95 494.95 1230.1 490.8 L1231.4 490.05 1232.15 489.55 1233.6 488.1 Q1261 472.75 1285.35 438.65 M1088 502.7 Q1061.8 500.45 1045.9 487.2 1028.75 472.6 1022.1 453.3 1019.7 446.3 1018.65 438.65 1043.05 472.8 1070.55 488.15 L1071.9 489.55 1072.65 490.05 1073.95 490.8 Q1081.1 494.9 1088 496.2 L1088 502.7"/>
+ <path stroke="none" fill="#BD7841" d="M1131 448 L1131 447.45 Q1131 444.65 1132.95 442.65 1134.9 440.65 1137.7 440.65 L1166.3 440.65 Q1169.05 440.65 1171 442.65 1173 444.65 1173 447.45 L1173 448 1173 451.2 Q1172.95 449.95 1172.5 448.85 L1172.1 448 1171 446.65 Q1169.05 444.65 1166.3 444.65 L1137.7 444.65 Q1134.9 444.65 1132.95 446.65 L1131.95 448 1131.5 448.8 Q1131.05 449.9 1131 451.2 L1131 448 M1173 463.1 L1173 466.45 1172.75 464.8 1173 463.1 M1131 466.45 L1131 463.1 1131.25 464.8 Q1131.05 465.55 1131 466.45"/>
+ <path stroke="none" fill="#AA6C3B" d="M1131 466.45 Q1131.05 465.55 1131.25 464.8 L1131 463.1 1131 452 1131 451.2 Q1131.05 449.9 1131.5 448.8 L1131.95 448 1132.95 446.65 Q1134.9 444.65 1137.7 444.65 L1166.3 444.65 Q1169.05 444.65 1171 446.65 L1172.1 448 1172.5 448.85 Q1172.95 449.95 1173 451.2 L1173 452 1173 463.1 1172.75 464.8 1173 466.45 1173 478.35 Q1172.9 481.05 1171 482.9 1169.05 484.9 1166.7 486.45 L1164.5 487.85 Q1166.6 501.1 1170.55 513.35 1162.25 509.25 1152 509.25 1141.75 509.25 1133.5 513.3 1137.4 501.05 1139.55 487.85 L1137.55 486.6 Q1134.9 484.9 1132.95 482.9 1131.1 481.05 1131 478.35 L1131 466.45"/>
+ <path stroke="none" fill="#FFFFFF" d="M1200.5 493.8 Q1200.5 496.8 1199.3 499.25 1198.4 501.05 1196.85 502.55 1193.2 506.25 1188 506.25 1182.9 506.25 1179.2 502.55 1175.55 498.95 1175.55 493.8 1175.55 488.6 1179.2 484.95 1182.9 481.3 1188 481.3 1193.2 481.3 1196.85 484.95 1199 487.1 1199.9 489.85 1200.45 491.45 1200.5 493.3 L1200.5 493.8 M1195.75 494 Q1195.75 490.4 1193.25 487.85 1190.75 485.35 1187.1 485.35 1183.55 485.35 1180.95 487.85 1178.45 490.4 1178.45 494 1178.45 497.6 1180.95 500.05 1183.55 502.6 1187.1 502.6 1190.75 502.6 1193.25 500.05 1195.75 497.6 1195.75 494 M1103.5 493.8 L1103.5 493.3 Q1103.55 491.45 1104.1 489.85 1105 487.1 1107.15 484.95 1110.8 481.3 1116 481.3 1121.1 481.3 1124.8 484.95 1128.45 488.6 1128.45 493.8 1128.45 498.95 1124.8 502.55 1121.1 506.25 1116 506.25 1110.8 506.25 1107.15 502.55 1105.6 501.05 1104.75 499.25 1103.5 496.8 1103.5 493.8 M1108.2 494 Q1108.2 497.6 1110.75 500.05 1113.25 502.6 1116.9 502.6 1120.45 502.6 1123 500.05 1125.55 497.6 1125.55 494 1125.55 490.4 1123 487.85 1120.45 485.35 1116.9 485.35 1113.25 485.35 1110.75 487.85 1108.2 490.4 1108.2 494"/>
+ <path stroke="none" fill="#5B5B5B" d="M1195.75 494 Q1195.75 497.6 1193.25 500.05 1190.75 502.6 1187.1 502.6 1183.55 502.6 1180.95 500.05 1178.45 497.6 1178.45 494 1178.45 490.4 1180.95 487.85 1183.55 485.35 1187.1 485.35 1190.75 485.35 1193.25 487.85 1195.75 490.4 1195.75 494 M1108.2 494 Q1108.2 490.4 1110.75 487.85 1113.25 485.35 1116.9 485.35 1120.45 485.35 1123 487.85 1125.55 490.4 1125.55 494 1125.55 497.6 1123 500.05 1120.45 502.6 1116.9 502.6 1113.25 502.6 1110.75 500.05 1108.2 497.6 1108.2 494"/>
+ <path stroke="none" fill="#704627" d="M1136.4 533.65 L1136.25 533.5 Q1134.2 531.45 1133.25 529.2 1132.95 528.55 1132.8 527.9 L1132.7 527.4 Q1132.25 525.5 1132.9 524.25 1133.15 523.75 1133.5 523.4 1133.9 523 1134.4 522.8 1135.75 522.1 1137.95 522.75 L1138.15 522.8 Q1141 523.65 1143.55 526.2 L1143.7 526.35 1144.75 527.9 Q1145.1 528.8 1145.1 529.9 1145.1 532.05 1143.6 533.55 1142.1 535.05 1139.95 535.05 1137.9 535.05 1136.4 533.65 M1170.5 523.4 L1171.1 524.25 Q1171.75 525.5 1171.35 527.4 L1171.2 527.9 1170.75 529.2 Q1169.8 531.45 1167.75 533.5 L1167.6 533.65 Q1166.1 535.05 1164.05 535.05 1161.9 535.05 1160.4 533.55 1158.9 532.05 1158.9 529.9 1158.9 528.8 1159.3 527.9 1159.65 527.05 1160.3 526.35 L1160.45 526.2 Q1162.95 523.7 1165.8 522.85 L1166.05 522.75 Q1168.25 522.1 1169.65 522.8 L1170.5 523.4"/>
+ <path stroke="none" fill="#6D4526" d="M943.35 429.95 Q949.95 432.45 951.75 438.5 L951.8 438.75 952.4 441.6 952.4 441.5 952.85 444.05 Q964 444.75 964 456.7 L964 567.85 964 568 Q963.7 580 951.35 580 L840.65 580 Q828.3 580 828 568 L828 567.85 828 456.7 Q828 444.75 839.25 444.05 L839.7 441.6 839.65 441.65 840.25 438.75 840.35 438.5 Q842.1 432.4 848.75 430 855.25 427.55 862.95 430.35 L862.9 430.35 Q870.45 432.95 874.95 439 L875 439.1 Q876.8 441.55 877.75 444 L914.35 444 Q915.25 441.55 917.05 439.05 L917.1 438.95 Q921.6 432.95 929.15 430.3 L929.1 430.3 Q936.9 427.5 943.35 429.95 M949.4 448 L948.45 442.3 947.9 439.65 Q946.6 435.45 941.95 433.7 936.75 431.8 930.45 434.05 924.1 436.3 920.3 441.35 917.85 444.8 917.4 448 L874.65 448 Q874.2 444.8 871.75 441.4 867.95 436.3 861.6 434.1 855.35 431.85 850.1 433.75 845.45 435.45 844.15 439.65 L843.6 442.35 Q843 445.25 842.7 448 L840.65 448 Q832 448 832 456.7 L832 460.2 832 567.85 Q832.25 576 840.65 576 L951.35 576 Q959.75 576 960 567.85 L960 460.2 960 456.7 Q960 448 951.35 448 L949.4 448"/>
+ <path stroke="none" fill="#B67340" d="M949.4 448 L948.05 448 947.7 446.2 947.1 443.5 Q945.85 439.35 941.15 437.55 935.95 435.65 929.7 437.9 923.3 440.15 919.5 445.25 918.45 446.65 917.85 448 L917.4 448 Q917.85 444.8 920.3 441.35 924.1 436.3 930.45 434.05 936.75 431.8 941.95 433.7 946.6 435.45 947.9 439.65 L948.45 442.3 949.4 448 M842.7 448 Q843 445.25 843.6 442.35 L844.15 439.65 Q845.45 435.45 850.1 433.75 855.35 431.85 861.6 434.1 867.95 436.3 871.75 441.4 874.2 444.8 874.65 448 L874.2 448 872.55 445.3 Q868.75 440.15 862.4 437.95 856.1 435.7 850.9 437.6 846.2 439.35 844.95 443.5 L844.35 446.25 844.05 448 842.7 448 M858.55 543.4 L858.5 541.5 858.5 540.5 Q858.9 527.9 869.45 518.85 873.2 515.65 877.5 513.55 885.75 509.5 896 509.5 906.25 509.5 914.5 513.6 918.75 515.65 922.5 518.85 933.05 527.9 933.5 540.5 L933.5 541.5 933.45 543.4 Q932.6 531.5 922.5 522.85 919.5 520.3 916.15 518.45 907.25 513.5 896 513.5 884.75 513.5 875.9 518.4 872.5 520.25 869.45 522.85 859.35 531.5 858.55 543.4"/>
+ <path stroke="none" fill="#8E5A32" d="M858.55 543.4 Q859.35 531.5 869.45 522.85 872.5 520.25 875.9 518.4 884.75 513.5 896 513.5 907.25 513.5 916.15 518.45 919.5 520.3 922.5 522.85 932.6 531.5 933.45 543.4 932.7 555.45 922.5 564.1 911.5 573.5 896 573.5 880.45 573.5 869.45 564.1 859.3 555.4 858.55 543.4 M917.85 448 Q918.45 446.65 919.5 445.25 923.3 440.15 929.7 437.9 935.95 435.65 941.15 437.55 945.85 439.35 947.1 443.5 L947.7 446.2 948.05 448 917.85 448 M872.25 467.3 Q872.8 465.7 874.3 463.85 877.65 459.35 884.05 455.7 L886.05 454.7 Q895.65 450.15 906 454.75 L908 455.7 Q914.3 459.35 917.7 463.85 919.2 465.7 919.8 467.25 L919.7 467.4 Q918.2 470.05 912.55 469.25 909.55 468.8 906.3 467.55 L904.55 466.8 Q905.25 468.65 905.45 470.4 L905.5 470.6 Q905.65 472.25 905.35 473.3 905.1 474.3 904.4 474.75 902.75 475.65 900 473.55 897.85 471.8 896 469 894.15 471.8 892 473.55 889.25 475.65 887.65 474.75 886.9 474.3 886.6 473.3 886.3 472.25 886.5 470.65 L886.5 470.4 Q886.8 468.65 887.5 466.8 L885.7 467.55 Q882.45 468.8 879.45 469.25 873.85 470.05 872.3 467.4 L872.25 467.3 M844.05 448 L844.35 446.25 844.95 443.5 Q846.2 439.35 850.9 437.6 856.1 435.7 862.4 437.95 868.75 440.15 872.55 445.3 L874.2 448 844.05 448 M880.4 533.9 Q881.9 535.3 883.95 535.3 886.1 535.3 887.6 533.8 889.1 532.3 889.1 530.15 889.1 529.05 888.75 528.15 L887.7 526.6 887.55 526.45 Q885 523.9 882.15 523.05 L881.95 523 Q879.75 522.35 878.4 523.05 877.9 523.25 877.5 523.65 L876.9 524.5 Q876.25 525.75 876.7 527.65 L876.8 528.15 877.25 529.45 Q878.2 531.7 880.25 533.75 L880.4 533.9 M914.5 523.65 L913.65 523.05 Q912.25 522.35 910.05 523 L909.8 523.1 Q906.95 523.95 904.45 526.45 L904.3 526.6 Q903.65 527.3 903.3 528.15 902.9 529.05 902.9 530.15 902.9 532.3 904.4 533.8 905.9 535.3 908.05 535.3 910.1 535.3 911.6 533.9 L911.75 533.75 Q913.8 531.7 914.75 529.45 L915.2 528.15 915.35 527.65 Q915.75 525.75 915.1 524.5 L914.5 523.65"/>
+ <path stroke="none" fill="#9C6236" d="M919.8 467.25 Q919.2 465.7 917.7 463.85 914.3 459.35 908 455.7 L906 454.75 Q895.65 450.15 886.05 454.7 L884.05 455.7 Q877.65 459.35 874.3 463.85 872.8 465.7 872.25 467.3 870.9 464.75 874.3 460.4 877.65 455.9 884.05 452.3 L884.6 452 Q895.55 446.05 907.45 452 L908 452.3 Q914.3 455.9 917.7 460.4 921.1 464.75 919.8 467.25"/>
+ <path stroke="none" fill="#B4723F" d="M949.4 448 L951.35 448 Q960 448 960 456.7 L960 460.2 Q959.75 452 951.35 452 L907.45 452 Q895.55 446.05 884.6 452 L840.65 452 Q832.25 452 832 460.2 L832 456.7 Q832 448 840.65 448 L842.7 448 844.05 448 874.2 448 874.65 448 917.4 448 917.85 448 948.05 448 949.4 448"/>
+ <path stroke="none" fill="#A16639" d="M960 460.2 L960 567.85 Q959.75 576 951.35 576 L840.65 576 Q832.25 576 832 567.85 L832 460.2 Q832.25 452 840.65 452 L884.6 452 884.05 452.3 Q877.65 455.9 874.3 460.4 870.9 464.75 872.25 467.3 L872.3 467.4 Q873.85 470.05 879.45 469.25 882.45 468.8 885.7 467.55 884.35 492.05 877.5 513.55 873.2 515.65 869.45 518.85 858.9 527.9 858.5 540.5 L858.5 541.5 858.55 543.4 Q859.3 555.4 869.45 564.1 880.45 573.5 896 573.5 911.5 573.5 922.5 564.1 932.7 555.45 933.45 543.4 L933.5 541.5 933.5 540.5 Q933.05 527.9 922.5 518.85 918.75 515.65 914.5 513.6 907.65 492.05 906.3 467.55 909.55 468.8 912.55 469.25 918.2 470.05 919.7 467.4 L919.8 467.25 Q921.1 464.75 917.7 460.4 914.3 455.9 908 452.3 L907.45 452 951.35 452 Q959.75 452 960 460.2 M944.5 494.05 Q944.5 488.85 940.85 485.2 937.2 481.55 932 481.55 926.9 481.55 923.2 485.2 919.55 488.85 919.55 494.05 919.55 499.2 923.2 502.8 926.9 506.5 932 506.5 937.2 506.5 940.85 502.8 944.5 499.2 944.5 494.05 M847.5 494.05 Q847.5 499.2 851.15 502.8 854.8 506.5 860 506.5 865.1 506.5 868.8 502.8 872.45 499.2 872.45 494.05 872.45 488.85 868.8 485.2 865.1 481.55 860 481.55 854.8 481.55 851.15 485.2 847.5 488.85 847.5 494.05"/>
+ <path stroke="none" fill="#F3DBC8" d="M885.7 467.55 L887.5 466.8 Q886.8 468.65 886.5 470.4 L886.5 470.65 Q886.3 472.25 886.6 473.3 886.9 474.3 887.65 474.75 889.25 475.65 892 473.55 894.15 471.8 896 469 897.85 471.8 900 473.55 902.75 475.65 904.4 474.75 905.1 474.3 905.35 473.3 905.65 472.25 905.5 470.6 L905.45 470.4 Q905.25 468.65 904.55 466.8 L906.3 467.55 Q907.65 492.05 914.5 513.6 906.25 509.5 896 509.5 885.75 509.5 877.5 513.55 884.35 492.05 885.7 467.55"/>
+ <path stroke="none" fill="#FFFFFF" d="M944.5 494.05 Q944.5 499.2 940.85 502.8 937.2 506.5 932 506.5 926.9 506.5 923.2 502.8 919.55 499.2 919.55 494.05 919.55 488.85 923.2 485.2 926.9 481.55 932 481.55 937.2 481.55 940.85 485.2 944.5 488.85 944.5 494.05 M939.75 494.25 Q939.75 490.65 937.25 488.1 934.75 485.6 931.1 485.6 927.55 485.6 924.95 488.1 922.45 490.65 922.45 494.25 922.45 497.85 924.95 500.3 927.55 502.85 931.1 502.85 934.75 502.85 937.25 500.3 939.75 497.85 939.75 494.25 M852.2 494.25 Q852.2 497.85 854.75 500.3 857.25 502.85 860.9 502.85 864.45 502.85 867 500.3 869.55 497.85 869.55 494.25 869.55 490.65 867 488.1 864.45 485.6 860.9 485.6 857.25 485.6 854.75 488.1 852.2 490.65 852.2 494.25 M847.5 494.05 Q847.5 488.85 851.15 485.2 854.8 481.55 860 481.55 865.1 481.55 868.8 485.2 872.45 488.85 872.45 494.05 872.45 499.2 868.8 502.8 865.1 506.5 860 506.5 854.8 506.5 851.15 502.8 847.5 499.2 847.5 494.05"/>
+ <path stroke="none" fill="#5B5B5B" d="M939.75 494.25 Q939.75 497.85 937.25 500.3 934.75 502.85 931.1 502.85 927.55 502.85 924.95 500.3 922.45 497.85 922.45 494.25 922.45 490.65 924.95 488.1 927.55 485.6 931.1 485.6 934.75 485.6 937.25 488.1 939.75 490.65 939.75 494.25 M852.2 494.25 Q852.2 490.65 854.75 488.1 857.25 485.6 860.9 485.6 864.45 485.6 867 488.1 869.55 490.65 869.55 494.25 869.55 497.85 867 500.3 864.45 502.85 860.9 502.85 857.25 502.85 854.75 500.3 852.2 497.85 852.2 494.25"/>
+ <path stroke="none" fill="#704627" d="M880.4 533.9 L880.25 533.75 Q878.2 531.7 877.25 529.45 L876.8 528.15 876.7 527.65 Q876.25 525.75 876.9 524.5 L877.5 523.65 Q877.9 523.25 878.4 523.05 879.75 522.35 881.95 523 L882.15 523.05 Q885 523.9 887.55 526.45 L887.7 526.6 888.75 528.15 Q889.1 529.05 889.1 530.15 889.1 532.3 887.6 533.8 886.1 535.3 883.95 535.3 881.9 535.3 880.4 533.9 M914.5 523.65 L915.1 524.5 Q915.75 525.75 915.35 527.65 L915.2 528.15 914.75 529.45 Q913.8 531.7 911.75 533.75 L911.6 533.9 Q910.1 535.3 908.05 535.3 905.9 535.3 904.4 533.8 902.9 532.3 902.9 530.15 902.9 529.05 903.3 528.15 903.65 527.3 904.3 526.6 L904.45 526.45 Q906.95 523.95 909.8 523.1 L910.05 523 Q912.25 522.35 913.65 523.05 L914.5 523.65"/>
+ <path stroke="none" fill="#FFCC00" d="M653.4 466.25 L652.45 464.75 Q650.45 461.75 647.45 460.45 644.05 459 641.3 460.55 638.55 462.15 638.15 465.8 637.75 469.1 639.35 472.3 L640.25 473.85 Q644.15 480.6 648.75 484.25 653.45 487.9 656.2 486.3 658.95 484.75 658.05 478.9 657.3 473 653.4 466.25 M704 460.2 L704 567.85 Q703.75 576 695.35 576 L676.15 576 Q676.15 555.9 665.55 541.7 661.9 536.8 657.7 533.6 662.2 530.35 662.55 526.05 L662.65 524.55 662.35 520.85 Q661.3 513.9 656.05 508.6 L653.5 506.35 Q647.7 502 640.1 502 632.5 502 626.7 506.35 625.35 507.3 624.05 508.6 618.85 513.9 617.75 520.85 617.5 522.6 617.5 524.55 L617.55 526.05 Q617.95 530.3 622.4 533.55 618.15 536.75 614.45 541.7 603.85 555.9 603.85 576 L584.65 576 Q576.25 576 576 567.85 L576 460.2 Q576.25 452 584.65 452 L695.35 452 Q703.75 452 704 460.2 M691.25 511.8 Q691.25 506.05 687.2 502.05 683.15 498 677.45 498 671.85 498 667.7 502.05 663.75 506.05 663.75 511.8 663.75 517.5 667.7 521.4 671.85 525.5 677.45 525.5 683.15 525.5 687.2 521.4 691.25 517.5 691.25 511.8 M633.7 473.95 L634.3 472.9 Q635.35 470.75 635.1 468.65 634.8 466.2 633 465.1 631.2 464.05 628.95 465.05 626.95 465.9 625.6 467.9 L625 468.95 Q622.45 473.4 621.9 477.3 621.35 481.2 623.15 482.2 624.95 483.3 628 480.85 631.15 478.45 633.7 473.95 M588.75 511.8 Q588.75 517.5 592.8 521.4 596.85 525.5 602.55 525.5 608.15 525.5 612.3 521.4 616.25 517.5 616.25 511.8 616.25 506.05 612.3 502.05 608.15 498 602.55 498 596.85 498 592.8 502.05 588.75 506.05 588.75 511.8"/>
+ <path stroke="none" fill="#EEBE00" d="M653.4 466.25 Q657.3 473 658.05 478.9 658.95 484.75 656.2 486.3 653.45 487.9 648.75 484.25 644.15 480.6 640.25 473.85 L639.35 472.3 Q637.75 469.1 638.15 465.8 638.55 462.15 641.3 460.55 644.05 459 647.45 460.45 650.45 461.75 652.45 464.75 L653.4 466.25 M676.15 576 L603.85 576 Q603.85 555.9 614.45 541.7 618.15 536.75 622.4 533.55 L623.5 534.3 624.05 534.65 Q630.7 538.5 640.1 538.5 648.75 538.5 655.05 535.2 L656.05 534.65 657.7 533.6 Q661.9 536.8 665.55 541.7 676.15 555.9 676.15 576 M633.7 473.95 Q631.15 478.45 628 480.85 624.95 483.3 623.15 482.2 621.35 481.2 621.9 477.3 622.45 473.4 625 468.95 L625.6 467.9 Q626.95 465.9 628.95 465.05 631.2 464.05 633 465.1 634.8 466.2 635.1 468.65 635.35 470.75 634.3 472.9 L633.7 473.95"/>
+ <path stroke="none" fill="#FFD738" d="M576 460.2 L576 456.7 Q576 448 584.65 448 L695.35 448 Q704 448 704 456.7 L704 460.2 Q703.75 452 695.35 452 L584.65 452 Q576.25 452 576 460.2"/>
+ <path stroke="none" fill="#987900" d="M576 460.2 L576 567.85 Q576.25 576 584.65 576 L603.85 576 676.15 576 695.35 576 Q703.75 576 704 567.85 L704 460.2 704 456.7 Q704 448 695.35 448 L584.65 448 Q576 448 576 456.7 L576 460.2 M695.35 444 Q708 444 708 456.7 L708 567.85 708 568 Q707.7 580 695.35 580 L584.65 580 Q572.3 580 572 568 L572 567.85 572 456.7 Q572 444 584.65 444 L695.35 444"/>
+ <path stroke="none" fill="#FFFFFF" d="M691.25 511.8 Q691.25 517.5 687.2 521.4 683.15 525.5 677.45 525.5 671.85 525.5 667.7 521.4 663.75 517.5 663.75 511.8 663.75 506.05 667.7 502.05 671.85 498 677.45 498 683.15 498 687.2 502.05 691.25 506.05 691.25 511.8 M683.7 511.7 Q683.7 508.05 681.25 505.6 678.7 503.05 675.05 503.05 671.55 503.05 668.95 505.6 666.4 508.05 666.4 511.7 L666.45 512.55 Q666.7 515.5 668.95 517.65 671.55 520.15 675.05 520.15 678.7 520.15 681.25 517.65 683.4 515.5 683.65 512.55 L683.7 511.7 M596.3 511.7 L596.35 512.55 Q596.6 515.5 598.75 517.65 601.3 520.15 604.95 520.15 608.45 520.15 611.05 517.65 613.3 515.5 613.55 512.55 L613.6 511.7 Q613.6 508.05 611.05 505.6 608.45 503.05 604.95 503.05 601.3 503.05 598.75 505.6 596.3 508.05 596.3 511.7 M588.75 511.8 Q588.75 506.05 592.8 502.05 596.85 498 602.55 498 608.15 498 612.3 502.05 616.25 506.05 616.25 511.8 616.25 517.5 612.3 521.4 608.15 525.5 602.55 525.5 596.85 525.5 592.8 521.4 588.75 517.5 588.75 511.8"/>
+ <path stroke="none" fill="#5B5B5B" d="M683.7 511.7 L683.65 512.55 Q683.4 515.5 681.25 517.65 678.7 520.15 675.05 520.15 671.55 520.15 668.95 517.65 666.7 515.5 666.45 512.55 L666.4 511.7 Q666.4 508.05 668.95 505.6 671.55 503.05 675.05 503.05 678.7 503.05 681.25 505.6 683.7 508.05 683.7 511.7 M596.3 511.7 Q596.3 508.05 598.75 505.6 601.3 503.05 604.95 503.05 608.45 503.05 611.05 505.6 613.6 508.05 613.6 511.7 L613.55 512.55 Q613.3 515.5 611.05 517.65 608.45 520.15 604.95 520.15 601.3 520.15 598.75 517.65 596.6 515.5 596.35 512.55 L596.3 511.7"/>
+ <path stroke="none" fill="#FF9900" d="M617.75 520.85 Q618.85 513.9 624.05 508.6 625.35 507.3 626.7 506.35 632.5 502 640.1 502 647.7 502 653.5 506.35 L656.05 508.6 Q661.3 513.9 662.35 520.85 661.85 522.2 660.4 523.45 659.1 518.4 654.9 514.45 L652.55 512.5 Q647.15 508.75 640.1 508.75 633.05 508.75 627.65 512.5 626.4 513.35 625.2 514.45 621.05 518.4 619.75 523.45 618.25 522.25 617.75 520.85"/>
+ <path stroke="none" fill="#F39100" d="M619.75 523.45 Q621.05 518.4 625.2 514.45 626.4 513.35 627.65 512.5 633.05 508.75 640.1 508.75 647.15 508.75 652.55 512.5 L654.9 514.45 Q659.1 518.4 660.4 523.45 658.8 524.75 656.05 525.85 651.8 527.6 646.45 528.2 L640.1 528.55 633.65 528.2 Q628.3 527.55 624.05 525.85 621.3 524.75 619.75 523.45"/>
+ <path stroke="none" fill="#E08600" d="M619.75 523.45 Q621.3 524.75 624.05 525.85 628.3 527.55 633.65 528.2 L640.1 528.55 646.45 528.2 Q651.8 527.6 656.05 525.85 658.8 524.75 660.4 523.45 661.85 522.2 662.35 520.85 L662.65 524.55 662.55 526.05 Q662.2 530.35 657.7 533.6 L656.05 534.65 655.05 535.2 Q648.75 538.5 640.1 538.5 630.7 538.5 624.05 534.65 L623.5 534.3 622.4 533.55 Q617.95 530.3 617.55 526.05 L617.5 524.55 Q617.5 522.6 617.75 520.85 618.25 522.25 619.75 523.45"/>
+ <path stroke="none" fill="#989898" d="M363.6 448 L328.65 448 Q320 448 320 456.7 L320 460.2 320 567.85 Q320.25 576 328.65 576 L351.05 576 416.95 576 439.35 576 Q447.75 576 448 567.85 L448 460.2 448 456.7 Q448 448 439.35 448 L404.4 448 403.4 446.9 403 446.45 402.95 446.45 403.25 445 403.4 442.95 Q403.4 437.85 399.85 434.25 396.25 430.7 391.2 430.7 387.05 430.7 383.95 433.05 380.85 430.7 376.75 430.7 371.65 430.7 368.05 434.25 364.5 437.85 364.5 442.95 L364.65 445 364.95 446.45 364.5 446.95 363.6 448 M316 567.85 L316 456.7 Q316 444 328.65 444 L360.55 444 360.5 442.95 Q360.5 436.2 365.2 431.45 L365.25 431.4 Q370 426.7 376.75 426.7 380.7 426.7 383.95 428.35 387.2 426.7 391.2 426.7 397.9 426.7 402.65 431.4 L402.7 431.45 Q407.4 436.2 407.4 442.95 L407.4 444 439.35 444 Q452 444 452 456.7 L452 567.85 452 568 Q451.7 580 439.35 580 L328.65 580 Q316.3 580 316 568 L316 567.85 M360.7 445.6 L360.7 445.4 360.55 445.6 Q360.6 445.5 360.7 445.55 L360.7 445.6"/>
+ <path stroke="none" fill="#FFFFFF" d="M320 460.2 L320 456.7 Q320 448 328.65 448 L363.6 448 Q362.05 449.85 361.15 452 L328.65 452 Q320.25 452 320 460.2 M404.4 448 L439.35 448 Q448 448 448 456.7 L448 460.2 Q447.75 452 439.35 452 L406.85 452 Q405.9 449.85 404.4 448 M416.95 576 L351.05 576 Q353.15 560 360 547.55 363.4 541.4 367.3 537.4 L367.5 537.5 368.05 537.85 Q371.3 539.75 375.2 540.7 L371.85 544.3 369.8 546.2 Q366.35 549.3 366.35 553.15 366.35 554.25 366.65 555.4 368.55 563.25 376.85 562 380.25 561.45 383 558.7 L384 557.6 385 558.7 Q387.75 561.45 391.1 562 399.45 563.25 401.35 555.4 L401.65 553.15 Q401.65 549.3 398.2 546.2 L396.2 544.35 392.85 540.75 Q396.2 539.9 399.05 538.4 L400.05 537.85 400.75 537.45 Q404.6 541.45 407.95 547.55 414.85 560 416.95 576 M332.75 516.5 Q332.75 510.75 336.8 506.75 340.85 502.7 346.55 502.7 352.15 502.7 356.3 506.75 360.25 510.75 360.25 516.5 360.25 522.2 356.3 526.1 352.15 530.2 346.55 530.2 340.85 530.2 336.8 526.1 332.75 522.2 332.75 516.5 M340.3 516.4 L340.35 517.25 Q340.6 520.2 342.75 522.35 345.3 524.85 348.95 524.85 352.45 524.85 355.05 522.35 357.3 520.2 357.55 517.25 L357.6 516.4 Q357.6 512.75 355.05 510.3 352.45 507.75 348.95 507.75 345.3 507.75 342.75 510.3 340.3 512.75 340.3 516.4 M435.25 516.5 Q435.25 522.2 431.2 526.1 427.15 530.2 421.45 530.2 415.85 530.2 411.7 526.1 407.75 522.2 407.75 516.5 407.75 510.75 411.7 506.75 415.85 502.7 421.45 502.7 427.15 502.7 431.2 506.75 435.25 510.75 435.25 516.5 M427.7 516.4 Q427.7 512.75 425.25 510.3 422.7 507.75 419.05 507.75 415.55 507.75 412.95 510.3 410.4 512.75 410.4 516.4 L410.45 517.25 Q410.7 520.2 412.95 522.35 415.55 524.85 419.05 524.85 422.7 524.85 425.25 522.35 427.4 520.2 427.65 517.25 L427.7 516.4"/>
+ <path stroke="none" fill="#F0F0F0" d="M448 460.2 L448 567.85 Q447.75 576 439.35 576 L416.95 576 Q414.85 560 407.95 547.55 404.6 541.45 400.75 537.45 406.15 533.95 406.55 529.25 L406.65 527.75 406.35 524.05 Q405.3 517.1 400.05 511.8 L397.5 509.55 Q391.7 505.2 384.1 505.2 376.5 505.2 370.7 509.55 L368.05 511.8 Q362.85 517.1 361.75 524.05 361.5 525.8 361.5 527.75 L361.55 529.25 Q362 533.9 367.3 537.4 363.4 541.4 360 547.55 353.15 560 351.05 576 L328.65 576 Q320.25 576 320 567.85 L320 460.2 Q320.25 452 328.65 452 L361.15 452 Q359.75 455.2 359.75 458.95 L359.85 460.95 Q360.3 465.4 362.85 468.95 362.45 470.5 362.35 472.15 L362.25 473.9 362.35 475.95 Q363 483.1 368.25 488.3 374.2 494.3 382.65 494.3 L383.95 494.25 385.25 494.3 Q393.7 494.3 399.7 488.3 404.95 483.05 405.6 475.9 L405.65 473.9 405.6 472.2 405.1 468.95 Q407.6 465.4 408.05 460.95 L408.15 458.95 Q408.15 455.45 407 452.45 L406.85 452 439.35 452 Q447.75 452 448 460.2 M332.75 516.5 Q332.75 522.2 336.8 526.1 340.85 530.2 346.55 530.2 352.15 530.2 356.3 526.1 360.25 522.2 360.25 516.5 360.25 510.75 356.3 506.75 352.15 502.7 346.55 502.7 340.85 502.7 336.8 506.75 332.75 510.75 332.75 516.5 M435.25 516.5 Q435.25 510.75 431.2 506.75 427.15 502.7 421.45 502.7 415.85 502.7 411.7 506.75 407.75 510.75 407.75 516.5 407.75 522.2 411.7 526.1 415.85 530.2 421.45 530.2 427.15 530.2 431.2 526.1 435.25 522.2 435.25 516.5"/>
+ <path stroke="none" fill="#F53707" d="M363.6 448 L364.5 446.95 364.95 446.45 365.05 448 Q364.9 450.05 363.55 452 L363.2 452.45 Q360.35 456.2 359.85 460.95 L359.75 458.95 Q359.75 455.2 361.15 452 362.05 449.85 363.6 448 M364.65 445 L364.5 442.95 Q364.5 437.85 368.05 434.25 371.65 430.7 376.75 430.7 380.85 430.7 383.95 433.05 387.05 430.7 391.2 430.7 396.25 430.7 399.85 434.25 403.4 437.85 403.4 442.95 L403.25 445 Q402.7 441.15 399.85 438.25 396.25 434.7 391.2 434.7 387.05 434.7 383.95 437.05 380.85 434.7 376.75 434.7 371.65 434.7 368.05 438.25 365.2 441.15 364.65 445 M402.95 446.45 L403 446.45 403.4 446.9 404.4 448 Q405.9 449.85 406.85 452 L407 452.45 Q408.15 455.45 408.15 458.95 L408.05 460.95 Q407.55 456.2 404.75 452.45 L404.4 452 Q403 450.05 402.9 448 402.8 447.25 402.95 446.45 M403 450.45 L402.95 450.45 403 450.3 403 450.45"/>
+ <path stroke="none" fill="#D23007" d="M403 450.45 L403 450.3 402.95 450.45 403 450.45 M364.95 446.45 L364.65 445 Q365.2 441.15 368.05 438.25 371.65 434.7 376.75 434.7 380.85 434.7 383.95 437.05 387.05 434.7 391.2 434.7 396.25 434.7 399.85 438.25 402.7 441.15 403.25 445 L402.95 446.45 Q402.8 447.25 402.9 448 403 450.05 404.4 452 L404.75 452.45 Q407.55 456.2 408.05 460.95 407.6 465.4 405.1 468.95 L405.6 472.2 405.65 473.9 405.6 475.9 Q404.95 483.05 399.7 488.3 393.7 494.3 385.25 494.3 L383.95 494.25 382.65 494.3 Q374.2 494.3 368.25 488.3 363 483.1 362.35 475.95 L362.25 473.9 362.35 472.15 Q362.45 470.5 362.85 468.95 360.3 465.4 359.85 460.95 360.35 456.2 363.2 452.45 L363.55 452 Q364.9 450.05 365.05 448 L364.95 446.45 M366.35 553.15 Q366.35 549.3 369.8 546.2 L371.85 544.3 375.2 540.7 Q379.3 541.7 384.1 541.7 388.8 541.7 392.85 540.75 L396.2 544.35 398.2 546.2 Q401.65 549.3 401.65 553.15 L401.6 553.3 Q399.65 559.55 391.2 558.55 387.8 558.15 385 555.95 L384 555.05 382.95 555.95 Q380.2 558.15 376.75 558.55 368.3 559.55 366.4 553.3 L366.35 553.15"/>
+ <path stroke="none" fill="#FF9900" d="M361.75 524.05 Q362.85 517.1 368.05 511.8 L370.7 509.55 Q376.5 505.2 384.1 505.2 391.7 505.2 397.5 509.55 L400.05 511.8 Q405.3 517.1 406.35 524.05 405.85 525.4 404.4 526.65 403.1 521.6 398.9 517.65 L396.55 515.7 Q391.15 511.95 384.1 511.95 377.05 511.95 371.65 515.7 370.4 516.55 369.2 517.65 365.05 521.6 363.75 526.65 362.25 525.45 361.75 524.05"/>
+ <path stroke="none" fill="#F39100" d="M363.75 526.65 Q365.05 521.6 369.2 517.65 370.4 516.55 371.65 515.7 377.05 511.95 384.1 511.95 391.15 511.95 396.55 515.7 L398.9 517.65 Q403.1 521.6 404.4 526.65 402.8 527.95 400.05 529.05 396.45 530.55 392.05 531.2 L386.95 531.7 384.1 531.75 381.1 531.7 376.05 531.2 Q371.65 530.5 368.05 529.05 365.3 527.95 363.75 526.65"/>
+ <path stroke="none" fill="#E08600" d="M363.75 526.65 Q365.3 527.95 368.05 529.05 371.65 530.5 376.05 531.2 L381.1 531.7 384.1 531.75 386.95 531.7 392.05 531.2 Q396.45 530.55 400.05 529.05 402.8 527.95 404.4 526.65 405.85 525.4 406.35 524.05 L406.65 527.75 406.55 529.25 Q406.15 533.95 400.75 537.45 L400.05 537.85 399.05 538.4 Q396.2 539.9 392.85 540.75 388.8 541.7 384.1 541.7 379.3 541.7 375.2 540.7 371.3 539.75 368.05 537.85 L367.5 537.5 367.3 537.4 Q362 533.9 361.55 529.25 L361.5 527.75 Q361.5 525.8 361.75 524.05 362.25 525.45 363.75 526.65"/>
+ <path stroke="none" fill="#5B5B5B" d="M340.3 516.4 Q340.3 512.75 342.75 510.3 345.3 507.75 348.95 507.75 352.45 507.75 355.05 510.3 357.6 512.75 357.6 516.4 L357.55 517.25 Q357.3 520.2 355.05 522.35 352.45 524.85 348.95 524.85 345.3 524.85 342.75 522.35 340.6 520.2 340.35 517.25 L340.3 516.4 M427.7 516.4 L427.65 517.25 Q427.4 520.2 425.25 522.35 422.7 524.85 419.05 524.85 415.55 524.85 412.95 522.35 410.7 520.2 410.45 517.25 L410.4 516.4 Q410.4 512.75 412.95 510.3 415.55 507.75 419.05 507.75 422.7 507.75 425.25 510.3 427.7 512.75 427.7 516.4"/>
+ <path stroke="none" fill="#C62C05" d="M366.35 553.15 L366.4 553.3 Q368.3 559.55 376.75 558.55 380.2 558.15 382.95 555.95 L384 555.05 385 555.95 Q387.8 558.15 391.2 558.55 399.65 559.55 401.6 553.3 L401.65 553.15 401.35 555.4 Q399.45 563.25 391.1 562 387.75 561.45 385 558.7 L384 557.6 383 558.7 Q380.25 561.45 376.85 562 368.55 563.25 366.65 555.4 366.35 554.25 366.35 553.15"/>
+ <path stroke="none" fill="#365A66" d="M192 460.2 L192 509.4 191.65 509.6 Q165.3 524.65 128 524.65 90.7 524.65 64.35 509.6 L64 509.4 64 460.2 Q64.25 452 72.65 452 L183.35 452 Q191.75 452 192 460.2 M170.35 480.85 L169.95 480.55 Q165.95 476.8 160.4 476.75 154.6 476.75 150.5 480.85 146.5 484.9 146.45 490.65 146.45 496.3 150.4 500.2 L150.6 500.55 Q157.8 507.8 165.8 509.95 173.75 512.15 177.85 508.05 181.85 504.05 179.7 496.05 177.45 488.15 170.35 480.85 M85.55 480.85 Q78.45 488.15 76.2 496.05 74.05 504.05 78.05 508.05 82.15 512.15 90.1 509.95 98.1 507.8 105.3 500.55 L105.5 500.2 Q109.45 496.3 109.45 490.65 109.4 484.9 105.4 480.85 101.3 476.75 95.5 476.75 89.95 476.8 85.95 480.55 L85.55 480.85"/>
+ <path stroke="none" fill="#C3DCE9" d="M192 513.4 L192 551.75 192 561.15 192 567.85 Q191.75 576 183.35 576 L167.2 576 87.1 576 72.65 576 Q64.25 576 64 567.85 L64 561.1 64 551.85 64 513.4 64.35 513.6 Q90.7 528.65 128 528.65 165.3 528.65 191.65 513.6 L192 513.4 M168.1 498.35 Q170.9 495.5 170.9 491.55 170.85 487.6 168.05 484.8 165.3 482.05 161.3 481.95 157.35 482 154.55 484.85 151.75 487.6 151.75 491.5 151.8 495.55 154.55 498.3 157.35 501.1 161.35 501.1 165.3 501.1 168.1 498.35 M170.35 480.85 Q177.45 488.15 179.7 496.05 181.85 504.05 177.85 508.05 173.75 512.15 165.8 509.95 157.8 507.8 150.6 500.55 L150.4 500.2 Q146.45 496.3 146.45 490.65 146.5 484.9 150.5 480.85 154.6 476.75 160.4 476.75 165.95 476.8 169.95 480.55 L170.35 480.85 M87.8 498.35 Q90.6 501.1 94.55 501.1 98.55 501.1 101.35 498.3 104.1 495.55 104.15 491.5 104.15 487.6 101.35 484.85 98.55 482 94.6 481.95 90.6 482.05 87.85 484.8 85.05 487.6 85 491.55 85 495.5 87.8 498.35 M85.55 480.85 L85.95 480.55 Q89.95 476.8 95.5 476.75 101.3 476.75 105.4 480.85 109.4 484.9 109.45 490.65 109.45 496.3 105.5 500.2 L105.3 500.55 Q98.1 507.8 90.1 509.95 82.15 512.15 78.05 508.05 74.05 504.05 76.2 496.05 78.45 488.15 85.55 480.85"/>
+ <path stroke="none" fill="#FFFFFF" d="M163.75 496.55 Q165.55 494.75 165.55 492.35 165.55 489.8 163.8 488.05 162.05 486.3 159.5 486.3 157.05 486.25 155.25 488.05 L154.85 488.45 Q153.5 490.05 153.55 492.2 153.6 494.75 155.35 496.5 157.1 498.25 159.6 498.25 161.7 498.25 163.3 496.95 L163.75 496.55 M168.1 498.35 Q165.3 501.1 161.35 501.1 157.35 501.1 154.55 498.3 151.8 495.55 151.75 491.5 151.75 487.6 154.55 484.85 157.35 482 161.3 481.95 165.3 482.05 168.05 484.8 170.85 487.6 170.9 491.55 170.9 495.5 168.1 498.35 M92.15 496.55 L92.6 496.95 Q94.2 498.25 96.3 498.25 98.8 498.25 100.55 496.5 102.3 494.75 102.35 492.2 102.4 490.05 101.05 488.45 L100.65 488.05 Q98.85 486.25 96.4 486.3 93.85 486.3 92.1 488.05 90.35 489.8 90.35 492.35 90.35 494.75 92.15 496.55 M87.8 498.35 Q85 495.5 85 491.55 85.05 487.6 87.85 484.8 90.6 482.05 94.6 481.95 98.55 482 101.35 484.85 104.15 487.6 104.15 491.5 104.1 495.55 101.35 498.3 98.55 501.1 94.55 501.1 90.6 501.1 87.8 498.35"/>
+ <path stroke="none" fill="#5B5B5B" d="M163.75 496.55 L163.3 496.95 Q161.7 498.25 159.6 498.25 157.1 498.25 155.35 496.5 153.6 494.75 153.55 492.2 153.5 490.05 154.85 488.45 L155.25 488.05 Q157.05 486.25 159.5 486.3 162.05 486.3 163.8 488.05 165.55 489.8 165.55 492.35 165.55 494.75 163.75 496.55 M92.15 496.55 Q90.35 494.75 90.35 492.35 90.35 489.8 92.1 488.05 93.85 486.3 96.4 486.3 98.85 486.25 100.65 488.05 L101.05 488.45 Q102.4 490.05 102.35 492.2 102.3 494.75 100.55 496.5 98.8 498.25 96.3 498.25 94.2 498.25 92.6 496.95 L92.15 496.55"/>
+ <path stroke="none" fill="#48798A" d="M141.5 448 L183.35 448 Q192 448 192 456.7 L192 460.2 Q191.75 452 183.35 452 L72.65 452 Q64.25 452 64 460.2 L64 456.7 Q64 448 72.65 448 L114.5 448 115.8 448 140.2 448 141.5 448"/>
+ <path stroke="none" fill="#233B43" d="M141.5 448 Q139.95 442.75 137.95 438.65 133.4 429.5 128.05 429.5 122.65 429.5 118.1 438.65 116.05 442.75 114.5 448 L72.65 448 Q64 448 64 456.7 L64 460.2 64 509.4 64 513.4 64 551.85 62.95 553.1 Q57.3 560.05 55.25 567.6 54.05 572.1 54.5 575.6 55 579.8 57.8 582.6 58.85 583.65 60.05 584.35 L62 585.25 Q66.35 586.8 72.75 585.1 79.35 583.35 85.45 578.9 L87.35 577.4 88.2 576.7 87.1 576 167.2 576 167.1 576.05 167.85 576.7 169.75 578.25 Q176.2 583.25 183.25 585.1 190.6 587.05 195.3 584.7 L195.95 584.35 198.2 582.6 Q201 579.8 201.5 575.6 201.95 572.1 200.75 567.6 198.5 559.3 192 551.75 L192 513.4 192 509.4 192 460.2 192 456.7 Q192 448 183.35 448 L141.5 448 M183.35 444 Q196 444 196 456.7 L196 550.3 Q202.35 558.05 204.6 566.55 L204.65 566.6 Q206.05 571.9 205.5 576.1 204.8 581.7 201.05 585.45 L198.2 587.7 198 587.8 197.1 588.3 Q191.3 591.4 182.25 589 174.45 586.95 167.3 581.4 L167.35 581.45 165.55 580 90.5 580 89.95 580.45 89.8 580.55 87.85 582.15 87.8 582.15 Q81.05 587.05 73.8 589 66 591.05 60.75 589.05 L60.65 589.05 58.05 587.8 58 587.8 Q56.4 586.85 55 585.45 51.2 581.7 50.55 576.1 49.95 571.9 51.4 566.6 L51.4 566.55 Q53.65 558.25 59.85 550.6 L60 550.4 60 456.7 Q60 444 72.65 444 L111.6 444 Q112.9 440.1 114.55 436.85 L114.55 436.9 Q120.45 424.9 128.05 425.5 135.6 424.9 141.55 436.9 143.15 440.1 144.45 444 L183.35 444"/>
+ <path stroke="none" fill="#D5F0FF" d="M192 509.4 L192 513.4 191.65 513.6 Q165.3 528.65 128 528.65 90.7 528.65 64.35 513.6 L64 513.4 64 509.4 64.35 509.6 Q90.7 524.65 128 524.65 165.3 524.65 191.65 509.6 L192 509.4"/>
+ <path stroke="none" fill="#39606D" d="M192 551.75 Q198.5 559.3 200.75 567.6 201.95 572.1 201.5 575.6 201 579.8 198.2 582.6 L195.95 584.35 Q198.05 580.8 197.5 575.6 L196.75 571.6 Q195.3 566.2 192 561.15 L192 551.75 M60.05 584.35 Q58.85 583.65 57.8 582.6 55 579.8 54.5 575.6 54.05 572.1 55.25 567.6 57.3 560.05 62.95 553.1 L64 551.85 64 561.1 Q60.7 566.2 59.25 571.6 58.7 573.7 58.5 575.6 57.95 580.75 60.05 584.35 M114.5 448 Q116.05 442.75 118.1 438.65 122.65 429.5 128.05 429.5 133.4 429.5 137.95 438.65 139.95 442.75 141.5 448 L140.2 448 137.95 442.65 Q133.4 433.5 128.05 433.5 122.65 433.5 118.1 442.65 116.85 445.1 115.8 448 L114.5 448"/>
+ <path stroke="none" fill="#2F4E58" d="M195.95 584.35 L195.3 584.7 Q190.6 587.05 183.25 585.1 176.2 583.25 169.75 578.25 L167.85 576.7 167.1 576.05 167.2 576 183.35 576 Q191.75 576 192 567.85 L192 561.15 Q195.3 566.2 196.75 571.6 L197.5 575.6 Q198.05 580.8 195.95 584.35 M87.1 576 L88.2 576.7 87.35 577.4 85.45 578.9 Q79.35 583.35 72.75 585.1 66.35 586.8 62 585.25 L60.05 584.35 Q57.95 580.75 58.5 575.6 58.7 573.7 59.25 571.6 60.7 566.2 64 561.1 L64 567.85 Q64.25 576 72.65 576 L87.1 576 M140.2 448 L115.8 448 Q116.85 445.1 118.1 442.65 122.65 433.5 128.05 433.5 133.4 433.5 137.95 442.65 L140.2 448"/>
+ <path stroke="none" fill="#A16639" d="M168 292.35 Q166.15 290.5 164.1 289.1 L161.65 287.65 Q156.45 284.95 150.2 284.95 139.7 284.95 132.35 292.35 130.8 293.85 128 293.85 125.2 293.85 123.7 292.35 116.3 284.95 105.9 284.95 99.55 284.95 94.4 287.65 93.1 288.3 91.95 289.15 89.9 290.5 88.05 292.35 L86.95 293.55 Q80.65 300.55 80.65 310.15 80.65 317.05 83.9 322.7 85.55 325.55 88.05 328.05 L88.1 328.05 90.65 330.25 92.3 331.45 Q92.35 346.1 102.75 356.45 106.9 360.6 111.75 363.1 119.1 366.9 128 366.9 142.8 366.9 153.3 356.45 L156.65 352.65 Q163.65 343.5 163.75 331.45 L165.4 330.3 168 328.05 Q170.5 325.55 172.15 322.7 175.4 317.1 175.4 310.15 175.4 300.55 169.1 293.55 L168 292.35 M87.85 260 L90.8 262.35 Q106.65 274.25 128 274.25 149.35 274.25 165.25 262.35 L168.15 260 183.35 260 Q191.75 260 192 268.2 L192 278.05 192 282.05 192 296.4 192 318 192 336.3 192 375.85 Q191.75 384 183.35 384 L72.65 384 Q64.25 384 64 375.85 L64 336.3 64 318 64 296.4 64 282.05 64 278.05 64 268.2 Q64.25 260 72.65 260 L87.85 260 M133.3 326.2 Q135.25 324.25 137.4 323.6 139.65 323 140.75 324.1 141.85 325.2 141.25 327.45 140.65 329.6 138.65 331.55 L138.55 331.7 Q137.45 332.75 135.95 332.75 134.35 332.75 133.25 331.65 132.1 330.5 132.1 328.9 132.1 327.35 133.15 326.3 L133.3 326.2 M123.65 331.65 Q122.45 332.75 120.9 332.75 119.35 332.75 118.25 331.7 L118.15 331.55 Q116.15 329.6 115.6 327.45 115 325.2 116.1 324.1 117.25 323 119.45 323.6 121.65 324.25 123.55 326.2 L123.7 326.3 Q124.75 327.35 124.75 328.9 124.75 330.5 123.65 331.65"/>
+ <path stroke="none" fill="#AA6C3C" d="M168.15 260 L165.25 262.35 Q149.35 274.25 128 274.25 106.65 274.25 90.8 262.35 L87.85 260 168.15 260"/>
+ <path stroke="none" fill="#BF8559" d="M168 292.35 L169.1 293.55 Q175.4 300.55 175.4 310.15 175.4 317.1 172.15 322.7 170.5 325.55 168 328.05 L165.4 330.3 163.75 331.45 Q163.65 343.5 156.65 352.65 L153.3 356.45 Q142.8 366.9 128 366.9 119.1 366.9 111.75 363.1 106.9 360.6 102.75 356.45 92.35 346.1 92.3 331.45 L90.65 330.25 88.1 328.05 88.05 328.05 Q85.55 325.55 83.9 322.7 80.65 317.05 80.65 310.15 80.65 300.55 86.95 293.55 L88.05 292.35 Q89.9 290.5 91.95 289.15 93.1 288.3 94.4 287.65 99.55 284.95 105.9 284.95 116.3 284.95 123.7 292.35 125.2 293.85 128 293.85 130.8 293.85 132.35 292.35 139.7 284.95 150.2 284.95 156.45 284.95 161.65 287.65 L164.1 289.1 Q166.15 290.5 168 292.35 M168.95 311.4 Q168.95 306.35 165.45 302.8 L163.2 301.05 Q160.4 299.3 156.85 299.3 L156.75 299.3 155.45 299.35 Q151.3 299.75 148.2 302.8 144.6 306.35 144.6 311.4 144.6 316.45 148.2 319.9 151.75 323.55 156.75 323.55 L159.15 323.35 Q162.75 322.65 165.45 319.9 L166.6 318.6 Q168.95 315.55 168.95 311.4 M133.3 326.2 L133.15 326.3 Q132.1 327.35 132.1 328.9 132.1 330.5 133.25 331.65 134.35 332.75 135.95 332.75 137.45 332.75 138.55 331.7 L138.65 331.55 Q140.65 329.6 141.25 327.45 141.85 325.2 140.75 324.1 139.65 323 137.4 323.6 135.25 324.25 133.3 326.2 M123.65 331.65 Q124.75 330.5 124.75 328.9 124.75 327.35 123.7 326.3 L123.55 326.2 Q121.65 324.25 119.45 323.6 117.25 323 116.1 324.1 115 325.2 115.6 327.45 116.15 329.6 118.15 331.55 L118.25 331.7 Q119.35 332.75 120.9 332.75 122.45 332.75 123.65 331.65 M145.75 336.35 Q143.9 336.2 142.1 336.95 129.5 342.05 114.35 336.75 L111.75 336.3 Q110 336.3 108.3 337.1 105.3 338.55 104.25 341.7 103.15 344.75 104.6 347.75 106 350.7 109.15 351.8 L111.75 352.65 Q130.15 358.3 145.75 352.65 L148.25 351.65 Q151.25 350.3 152.5 347.3 153.7 344.25 152.45 341.2 151.2 338.15 148.15 336.95 L145.75 336.35 M87.75 311.4 Q87.75 315.25 89.85 318.15 L91.35 319.9 Q93.8 322.4 96.95 323.2 L99.95 323.55 Q104.95 323.55 108.65 319.9 112.15 316.45 112.15 311.4 112.15 306.35 108.65 302.8 105.15 299.5 100.55 299.3 L99.95 299.3 99.2 299.35 Q95.7 299.5 92.95 301.5 L91.35 302.8 Q87.75 306.35 87.75 311.4"/>
+ <path stroke="none" fill="#6D4526" d="M64 268.2 L64 278.05 Q56.3 279.95 50.35 285.9 41.5 294.8 41.5 307.15 L41.55 309.15 Q42.2 320.25 50.35 328.35 56.3 334.35 64 336.3 L64 375.85 Q64.25 384 72.65 384 L183.35 384 Q191.75 384 192 375.85 L192 336.3 Q199.7 334.35 205.65 328.35 213.8 320.25 214.45 309.15 L214.5 307.15 Q214.5 294.8 205.65 285.9 199.7 279.95 192 278.05 L192 268.2 192 264.7 Q192 256 183.35 256 L72.65 256 Q64 256 64 264.7 L64 268.2 M47.55 283.1 Q53.1 277.5 60 275.05 L60 264.7 Q60 252 72.65 252 L183.35 252 Q196 252 196 264.7 L196 275.05 Q202.9 277.5 208.5 283.1 218.5 293.15 218.5 307.15 L218.45 309.35 218.45 309.4 Q217.75 322 208.5 331.2 202.9 336.8 196 339.25 L196 375.85 196 376 Q195.7 388 183.35 388 L72.65 388 Q60.3 388 60 376 L60 375.85 60 339.25 Q53.1 336.8 47.55 331.2 38.25 322 37.55 309.4 L37.55 309.35 37.5 307.15 Q37.5 293.15 47.55 283.1"/>
+ <path stroke="none" fill="#B4723F" d="M87.85 260 L72.65 260 Q64.25 260 64 268.2 L64 264.7 Q64 256 72.65 256 L183.35 256 Q192 256 192 264.7 L192 268.2 Q191.75 260 183.35 260 L168.15 260 87.85 260"/>
+ <path stroke="none" fill="#B67340" d="M64 278.05 L64 282.05 Q56.3 283.95 50.35 289.9 42.2 298.05 41.55 309.15 L41.5 307.15 Q41.5 294.8 50.35 285.9 56.3 279.95 64 278.05 M192 282.05 L192 278.05 Q199.7 279.95 205.65 285.9 214.5 294.8 214.5 307.15 L214.45 309.15 Q213.8 298.05 205.65 289.9 199.7 283.95 192 282.05"/>
+ <path stroke="none" fill="#8E5A32" d="M192 282.05 Q199.7 283.95 205.65 289.9 213.8 298.05 214.45 309.15 213.8 320.25 205.65 328.35 199.7 334.35 192 336.3 L192 318 Q195.95 313.4 195.95 307.15 195.95 300.95 192 296.4 L192 282.05 M64 282.05 L64 296.4 Q60.05 300.95 60.05 307.15 60.05 313.4 64 318 L64 336.3 Q56.3 334.35 50.35 328.35 42.2 320.25 41.55 309.15 42.2 298.05 50.35 289.9 56.3 283.95 64 282.05"/>
+ <path stroke="none" fill="#774B2A" d="M64 296.4 L64 318 Q60.05 313.4 60.05 307.15 60.05 300.95 64 296.4 M192 318 L192 296.4 Q195.95 300.95 195.95 307.15 195.95 313.4 192 318"/>
+ <path stroke="none" fill="#FFFFFF" d="M163.1 311.65 Q163.1 309.45 162.1 307.8 L160.85 306.2 Q158.6 304.05 155.45 304.05 L155.3 304.05 154.65 304.1 Q152.05 304.35 150 306.2 147.75 308.35 147.75 311.65 147.75 314.8 150 316.95 152.35 319.25 155.45 319.25 L156.9 319.15 Q159.15 318.7 160.85 316.95 162.65 315.2 163.05 312.8 L163.1 311.65 M168.95 311.4 Q168.95 315.55 166.6 318.6 L165.45 319.9 Q162.75 322.65 159.15 323.35 L156.75 323.55 Q151.75 323.55 148.2 319.9 144.6 316.45 144.6 311.4 144.6 306.35 148.2 302.8 151.3 299.75 155.45 299.35 L156.75 299.3 156.85 299.3 Q160.4 299.3 163.2 301.05 L165.45 302.8 Q168.95 306.35 168.95 311.4 M111.75 336.3 L114.35 336.75 Q129.5 342.05 142.1 336.95 143.9 336.2 145.75 336.35 148.65 344 145.75 352.65 130.15 358.3 111.75 352.65 108.5 343.55 111.75 336.3 M87.75 311.4 Q87.75 306.35 91.35 302.8 L92.95 301.5 Q95.7 299.5 99.2 299.35 L99.95 299.3 100.55 299.3 Q105.15 299.5 108.65 302.8 112.15 306.35 112.15 311.4 112.15 316.45 108.65 319.9 104.95 323.55 99.95 323.55 L96.95 323.2 Q93.8 322.4 91.35 319.9 L89.85 318.15 Q87.75 315.25 87.75 311.4 M93.7 311.65 Q93.7 314.8 95.95 316.95 97.35 318.45 99.2 319 L101.3 319.25 Q104.45 319.25 106.7 316.95 108.95 314.8 108.95 311.65 108.95 308.35 106.7 306.2 104.45 304.05 101.35 304.05 L101.3 304.05 100.75 304.1 Q97.9 304.25 95.95 306.2 93.7 308.35 93.7 311.65"/>
+ <path stroke="none" fill="#5B5B5B" d="M93.7 311.65 Q93.7 308.35 95.95 306.2 97.9 304.25 100.75 304.1 L101.3 304.05 101.35 304.05 Q104.45 304.05 106.7 306.2 108.95 308.35 108.95 311.65 108.95 314.8 106.7 316.95 104.45 319.25 101.3 319.25 L99.2 319 Q97.35 318.45 95.95 316.95 93.7 314.8 93.7 311.65 M163.1 311.65 L163.05 312.8 Q162.65 315.2 160.85 316.95 159.15 318.7 156.9 319.15 L155.45 319.25 Q152.35 319.25 150 316.95 147.75 314.8 147.75 311.65 147.75 308.35 150 306.2 152.05 304.35 154.65 304.1 L155.3 304.05 155.45 304.05 Q158.6 304.05 160.85 306.2 L162.1 307.8 Q163.1 309.45 163.1 311.65"/>
+ <path stroke="none" fill="#E7E7E7" d="M111.75 336.3 Q108.5 343.55 111.75 352.65 L109.15 351.8 Q106 350.7 104.6 347.75 103.15 344.75 104.25 341.7 105.3 338.55 108.3 337.1 110 336.3 111.75 336.3 M145.75 352.65 Q148.65 344 145.75 336.35 L148.15 336.95 Q151.2 338.15 152.45 341.2 153.7 344.25 152.5 347.3 151.25 350.3 148.25 351.65 L145.75 352.65"/>
+ <path stroke="none" fill="#2D548C" d="M448 268.2 L448 264.7 Q448 256 439.35 256 L328.65 256 Q320 256 320 264.7 L320 268.2 320 279.35 Q317.45 279.35 314.3 281.05 309.05 284.05 305.4 290.4 301.75 296.65 301.8 302.65 L301.95 304.4 Q302.4 308.5 304.85 310.35 L305.6 310.85 306.9 311.6 Q313.55 315.45 320 316.8 L320 375.85 Q320.25 384 328.65 384 L333.7 384 434.4 384 439.35 384 Q447.75 384 448 375.85 L448 316.8 Q454.4 315.4 461.05 311.6 L462.35 310.85 463.1 310.35 Q465.55 308.5 466.05 304.4 L466.15 302.65 Q466.2 296.65 462.55 290.4 458.9 284.05 453.65 281.05 450.55 279.35 448 279.35 L448 268.2 M452 264.7 L452 276 Q453.7 276.55 455.6 277.55 L455.65 277.6 Q461.75 281 466.05 288.4 L466 288.4 Q470.25 295.65 470.15 302.65 L470.15 302.7 470.05 304.9 Q469.3 310.9 465.5 313.55 L465.45 313.6 464.5 314.25 464.25 314.4 463.15 315 463.05 315.1 Q457.45 318.3 452 319.9 L452 375.85 452 376 Q451.7 388 439.35 388 L328.65 388 Q316.3 388 316 376 L316 375.85 316 319.9 Q310.5 318.3 304.9 315.1 L304.8 315 303.7 314.4 303.5 314.25 302.55 313.6 302.45 313.55 Q298.65 310.9 298 304.85 L298 305.1 297.8 302.7 297.8 302.65 Q297.7 295.65 301.95 288.4 306.2 281 312.35 277.6 L312.4 277.55 Q314.25 276.5 316 276 L316 264.7 Q316 252 328.65 252 L439.35 252 Q452 252 452 264.7"/>
+ <path stroke="none" fill="#5A9BF3" d="M320 268.2 L320 264.7 Q320 256 328.65 256 L439.35 256 Q448 256 448 264.7 L448 268.2 Q447.75 260 439.35 260 L328.65 260 Q320.25 260 320 268.2"/>
+ <path stroke="none" fill="#528CDB" d="M320 268.2 Q320.25 260 328.65 260 L439.35 260 Q447.75 260 448 268.2 L448 279.35 Q450.55 279.35 453.65 281.05 458.9 284.05 462.55 290.4 466.2 296.65 466.15 302.65 L466.05 304.4 Q465.5 299.45 462.55 294.4 458.9 288.05 453.65 285.05 450.55 283.35 448 283.35 L448 295.2 448 316.8 448 375.85 Q447.75 384 439.35 384 L434.4 384 Q430.3 381.75 430.4 376.6 429 362.2 417 351.65 L415.85 350.7 Q402.75 339.8 384.55 339.8 366.1 339.8 352.85 351 L352.05 351.65 Q340.15 362.2 338.8 376.6 337.35 381.7 333.7 384 L328.65 384 Q320.25 384 320 375.85 L320 316.8 320 295.2 320 283.35 Q317.45 283.35 314.3 285.05 309.05 288.05 305.4 294.4 302.45 299.45 301.95 304.4 L301.8 302.65 Q301.75 296.65 305.4 290.4 309.05 284.05 314.3 281.05 317.45 279.35 320 279.35 L320 268.2 M332.75 327.2 Q332.75 332.9 336.8 336.8 340.85 340.9 346.55 340.9 352.15 340.9 356.3 336.8 360.25 332.9 360.25 327.2 360.25 321.45 356.3 317.45 352.15 313.4 346.55 313.4 340.85 313.4 336.8 317.45 332.75 321.45 332.75 327.2 M435.25 327.2 Q435.25 321.45 431.2 317.45 427.15 313.4 421.45 313.4 415.85 313.4 411.7 317.45 407.75 321.45 407.75 327.2 407.75 332.9 411.7 336.8 415.85 340.9 421.45 340.9 427.15 340.9 431.2 336.8 435.25 332.9 435.25 327.2"/>
+ <path stroke="none" fill="#4B80C9" d="M466.05 304.4 Q465.55 308.5 463.1 310.35 L462.35 310.85 Q461.7 307.6 459.75 304.3 456.75 299.05 452.45 296.55 450 295.25 448 295.2 L448 283.35 Q450.55 283.35 453.65 285.05 458.9 288.05 462.55 294.4 465.5 299.45 466.05 304.4 M305.6 310.85 L304.85 310.35 Q302.4 308.5 301.95 304.4 302.45 299.45 305.4 294.4 309.05 288.05 314.3 285.05 317.45 283.35 320 283.35 L320 295.2 Q318 295.25 315.5 296.55 311.2 299.05 308.2 304.3 306.25 307.6 305.6 310.85"/>
+ <path stroke="none" fill="#3B6EB4" d="M305.6 310.85 Q306.25 307.6 308.2 304.3 311.2 299.05 315.5 296.55 318 295.25 320 295.2 L320 316.8 Q313.55 315.45 306.9 311.6 L305.6 310.85 M462.35 310.85 L461.05 311.6 Q454.4 315.4 448 316.8 L448 295.2 Q450 295.25 452.45 296.55 456.75 299.05 459.75 304.3 461.7 307.6 462.35 310.85"/>
+ <path stroke="none" fill="#FFFFFF" d="M332.75 327.2 Q332.75 321.45 336.8 317.45 340.85 313.4 346.55 313.4 352.15 313.4 356.3 317.45 360.25 321.45 360.25 327.2 360.25 332.9 356.3 336.8 352.15 340.9 346.55 340.9 340.85 340.9 336.8 336.8 332.75 332.9 332.75 327.2 M340.3 327.1 L340.35 327.95 Q340.6 330.9 342.75 333.05 345.3 335.55 348.95 335.55 352.45 335.55 355.05 333.05 357.3 330.9 357.55 327.95 L357.6 327.1 Q357.6 323.45 355.05 321 352.45 318.45 348.95 318.45 345.3 318.45 342.75 321 340.3 323.45 340.3 327.1 M435.25 327.2 Q435.25 332.9 431.2 336.8 427.15 340.9 421.45 340.9 415.85 340.9 411.7 336.8 407.75 332.9 407.75 327.2 407.75 321.45 411.7 317.45 415.85 313.4 421.45 313.4 427.15 313.4 431.2 317.45 435.25 321.45 435.25 327.2 M427.7 327.1 Q427.7 323.45 425.25 321 422.7 318.45 419.05 318.45 415.55 318.45 412.95 321 410.4 323.45 410.4 327.1 L410.45 327.95 Q410.7 330.9 412.95 333.05 415.55 335.55 419.05 335.55 422.7 335.55 425.25 333.05 427.4 330.9 427.65 327.95 L427.7 327.1"/>
+ <path stroke="none" fill="#5B5B5B" d="M427.7 327.1 L427.65 327.95 Q427.4 330.9 425.25 333.05 422.7 335.55 419.05 335.55 415.55 335.55 412.95 333.05 410.7 330.9 410.45 327.95 L410.4 327.1 Q410.4 323.45 412.95 321 415.55 318.45 419.05 318.45 422.7 318.45 425.25 321 427.7 323.45 427.7 327.1 M340.3 327.1 Q340.3 323.45 342.75 321 345.3 318.45 348.95 318.45 352.45 318.45 355.05 321 357.6 323.45 357.6 327.1 L357.55 327.95 Q357.3 330.9 355.05 333.05 352.45 335.55 348.95 335.55 345.3 335.55 342.75 333.05 340.6 330.9 340.35 327.95 L340.3 327.1"/>
+ <path stroke="none" fill="#4178C2" d="M434.4 384 L333.7 384 Q337.35 381.7 338.8 376.6 340.15 362.2 352.05 351.65 L352.85 351 Q366.1 339.8 384.55 339.8 402.75 339.8 415.85 350.7 L417 351.65 Q429 362.2 430.4 376.6 430.3 381.75 434.4 384 M401.6 352.35 Q400.5 351.25 398.3 351.85 396.05 352.45 394.1 354.45 L393.95 354.55 Q392.9 355.65 392.9 357.25 392.9 358.85 394.05 359.95 395.15 361.1 396.8 361.1 398.3 361.1 399.45 360.05 L399.55 359.95 Q401.55 357.95 402.15 355.75 402.8 353.5 401.6 352.35 M369.45 360.05 Q370.55 361.1 372.1 361.1 373.7 361.1 374.85 359.95 375.95 358.85 375.95 357.25 375.95 355.65 374.9 354.55 L374.8 354.45 Q372.8 352.45 370.6 351.85 368.4 351.25 367.25 352.35 366.1 353.5 366.75 355.75 367.35 357.95 369.35 359.95 L369.45 360.05"/>
+ <path stroke="none" fill="#2D5D9C" d="M369.45 360.05 L369.35 359.95 Q367.35 357.95 366.75 355.75 366.1 353.5 367.25 352.35 368.4 351.25 370.6 351.85 372.8 352.45 374.8 354.45 L374.9 354.55 Q375.95 355.65 375.95 357.25 375.95 358.85 374.85 359.95 373.7 361.1 372.1 361.1 370.55 361.1 369.45 360.05 M401.6 352.35 Q402.8 353.5 402.15 355.75 401.55 357.95 399.55 359.95 L399.45 360.05 Q398.3 361.1 396.8 361.1 395.15 361.1 394.05 359.95 392.9 358.85 392.9 357.25 392.9 355.65 393.95 354.55 L394.1 354.45 Q396.05 352.45 398.3 351.85 400.5 351.25 401.6 352.35"/>
+ <path stroke="none" fill="#EE9FEE" d="M660.25 347.15 Q663.15 344.45 664.65 341.25 665.85 338.65 666.15 335.75 L666.2 334.7 666.2 333.85 Q666.2 323.05 658.55 315.45 L656.75 313.8 Q649.7 307.85 640.2 307.85 630.7 307.85 623.6 313.75 L621.75 315.45 Q614.2 323.05 614.2 333.85 L614.2 334.7 614.3 335.8 Q614.55 338.7 615.75 341.3 617.25 344.5 620.15 347.25 L620.6 348.3 Q622.1 351.55 625.4 354.15 631.55 359 640.2 359 648.8 359 654.9 354.15 658.25 351.5 659.8 348.25 L660.25 347.15 M600.3 260 Q600.3 267.95 611.95 273.55 623.65 279.15 640.2 279.15 656.75 279.15 668.4 273.55 680.1 267.95 680.1 260 L695.55 260 Q703.95 260 704.2 268.2 L704.2 273.25 704.2 276.9 704.2 291.75 704.2 321.3 704.2 322.3 704.2 375.85 Q703.95 384 695.55 384 L584.85 384 Q576.45 384 576.2 375.85 L576.2 321.6 576.2 314.8 576.2 292.15 576.2 277.05 576.2 273.65 576.2 268.2 Q576.45 260 584.85 260 L600.3 260 M688.7 309.75 Q688.7 304.55 685.05 300.9 683.75 299.6 682.25 298.75 679.55 297.25 676.2 297.25 671.1 297.25 667.4 300.9 663.75 304.55 663.75 309.75 663.75 314.9 667.4 318.5 671.1 322.2 676.2 322.2 681.4 322.2 685.05 318.5 687.35 316.25 688.2 313.4 688.7 311.65 688.7 309.75 M591.7 309.75 Q591.7 313.05 593.2 315.75 594.05 317.2 595.35 318.5 599 322.2 604.2 322.2 609.3 322.2 613 318.5 616.65 314.9 616.65 309.75 616.65 304.55 613 300.9 609.3 297.25 604.2 297.25 600.8 297.25 598.05 298.85 596.6 299.65 595.35 300.9 591.7 304.55 591.7 309.75"/>
+ <path stroke="none" fill="#FAA6FA" d="M680.1 260 Q680.1 267.95 668.4 273.55 656.75 279.15 640.2 279.15 623.65 279.15 611.95 273.55 600.3 267.95 600.3 260 L680.1 260"/>
+ <path stroke="none" fill="#FFAAFF" d="M680.1 260 L600.3 260 584.85 260 Q576.45 260 576.2 268.2 L576.2 264.7 Q576.2 256 584.85 256 L695.55 256 Q704.2 256 704.2 264.7 L704.2 268.2 Q703.95 260 695.55 260 L680.1 260 M666.15 335.75 Q665.85 338.65 664.65 341.25 663.15 344.45 660.25 347.15 L658.55 348.6 Q650.95 354.65 640.2 354.65 629.4 354.65 621.75 348.6 L620.15 347.25 Q617.25 344.5 615.75 341.3 614.55 338.7 614.3 335.8 614.95 326.3 621.75 319.45 L623.6 317.75 Q630.7 311.85 640.2 311.85 649.7 311.85 656.75 317.8 L658.55 319.45 Q665.45 326.3 666.15 335.75 M658.7 327.25 Q657.2 325.75 654.25 326.6 L654 326.7 Q651.15 327.55 648.65 330.05 L648.5 330.2 Q647.85 330.9 647.5 331.75 647.1 332.65 647.1 333.75 647.1 335.9 648.6 337.4 650.1 338.9 652.25 338.9 654.3 338.9 655.8 337.5 L655.95 337.35 Q658 335.3 658.95 333.05 L659.4 331.75 Q660.05 329.5 659.3 328.1 L658.7 327.25 M624.6 337.5 Q626.1 338.9 628.15 338.9 630.3 338.9 631.8 337.4 633.3 335.9 633.3 333.75 633.3 332.65 632.95 331.75 L631.9 330.2 631.75 330.05 Q629.2 327.5 626.35 326.65 L626.15 326.6 Q623.2 325.75 621.7 327.25 L621.1 328.1 Q620.35 329.5 621 331.75 L621.45 333.05 Q622.4 335.3 624.45 337.35 L624.6 337.5"/>
+ <path stroke="none" fill="#9C619C" d="M576.2 268.2 L576.2 273.65 572 274.55 Q563.7 276.8 558.6 281.9 554.05 286.5 554.65 291 L555.35 293.7 Q559.1 307.7 567.7 316 L568.65 316.8 Q572.45 320.25 576.2 321.6 L576.2 375.85 Q576.45 384 584.85 384 L695.55 384 Q703.95 384 704.2 375.85 L704.2 322.3 Q711.3 321.3 716.55 313.2 L717.2 312.15 Q723.4 301.95 723.4 287.4 L723.35 284.65 Q722.75 280.1 717.2 276.85 711.65 273.6 704.2 273.25 L704.2 268.2 704.2 264.7 Q704.2 256 695.55 256 L584.85 256 Q576.2 256 576.2 264.7 L576.2 268.2 M708.2 264.7 L708.2 269.6 Q714.35 270.5 719.25 273.4 726.75 277.8 727.35 284.15 L727.35 284.5 727.4 287.4 Q727.4 303.2 720.65 314.25 L720.6 314.3 720 315.25 719.9 315.4 Q714.8 323.25 708.2 325.5 L708.2 375.85 708.2 376 Q707.9 388 695.55 388 L584.85 388 Q572.5 388 572.2 376 L572.2 375.85 572.2 324.2 Q569.2 322.65 566.15 319.95 L566.1 319.9 565.05 319 564.95 318.9 Q555.55 309.9 551.5 294.75 L551.5 294.7 550.8 292.05 550.7 291.55 Q549.6 285.3 555.75 279.1 L555.8 279.1 Q561.55 273.25 570.95 270.7 L572.2 270.4 572.2 264.7 Q572.2 252 584.85 252 L695.55 252 Q708.2 252 708.2 264.7"/>
+ <path stroke="none" fill="#D987D9" d="M576.2 277.05 L576.2 292.15 Q574.55 293.2 573.2 294.55 569.95 297.9 570.45 301.15 L570.9 303 Q572.75 309.85 576.2 314.8 L576.2 321.6 Q572.45 320.25 568.65 316.8 561.5 308.9 558.2 296.55 L557.5 293.8 Q556.85 289.4 561.4 284.7 566.5 279.6 574.85 277.4 L576.2 277.05 M704.2 322.3 L704.2 321.3 705.5 319.5 706.3 318.25 Q710.8 310.95 710.8 300.5 L710.7 298.5 Q710.4 295.25 706.35 292.8 L704.2 291.75 704.2 276.9 Q710.45 277.5 715.2 280.3 720.8 283.65 721.35 288.1 L721.4 290.9 Q721.35 303.75 716.55 313.2 711.3 321.3 704.2 322.3"/>
+ <path stroke="none" fill="#C97DC9" d="M576.2 292.15 L576.2 314.8 Q572.75 309.85 570.9 303 L570.45 301.15 Q569.95 297.9 573.2 294.55 574.55 293.2 576.2 292.15 M704.2 321.3 L704.2 291.75 706.35 292.8 Q710.4 295.25 710.7 298.5 L710.8 300.5 Q710.8 310.95 706.3 318.25 L705.5 319.5 704.2 321.3"/>
+ <path stroke="none" fill="#F095F0" d="M576.2 273.65 L576.2 277.05 574.85 277.4 Q566.5 279.6 561.4 284.7 556.85 289.4 557.5 293.8 L558.2 296.55 Q561.5 308.9 568.65 316.8 L567.7 316 Q559.1 307.7 555.35 293.7 L554.65 291 Q554.05 286.5 558.6 281.9 563.7 276.8 572 274.55 L576.2 273.65 M704.2 276.9 L704.2 273.25 Q711.65 273.6 717.2 276.85 722.75 280.1 723.35 284.65 L723.4 287.4 Q723.4 301.95 717.2 312.15 L716.55 313.2 Q721.35 303.75 721.4 290.9 L721.35 288.1 Q720.8 283.65 715.2 280.3 710.45 277.5 704.2 276.9"/>
+ <path stroke="none" fill="#FFFFFF" d="M688.7 309.75 Q688.7 311.65 688.2 313.4 687.35 316.25 685.05 318.5 681.4 322.2 676.2 322.2 671.1 322.2 667.4 318.5 663.75 314.9 663.75 309.75 663.75 304.55 667.4 300.9 671.1 297.25 676.2 297.25 679.55 297.25 682.25 298.75 683.75 299.6 685.05 300.9 688.7 304.55 688.7 309.75 M683.95 309.95 Q683.95 306.35 681.45 303.8 678.95 301.3 675.3 301.3 671.75 301.3 669.15 303.8 666.65 306.35 666.65 309.95 666.65 313.55 669.15 316 671.75 318.55 675.3 318.55 678.95 318.55 681.45 316 683.95 313.55 683.95 309.95 M596.4 309.95 Q596.4 313.55 598.95 316 601.45 318.55 605.1 318.55 608.65 318.55 611.2 316 613.75 313.55 613.75 309.95 613.75 306.35 611.2 303.8 608.65 301.3 605.1 301.3 601.45 301.3 598.95 303.8 596.4 306.35 596.4 309.95 M591.7 309.75 Q591.7 304.55 595.35 300.9 596.6 299.65 598.05 298.85 600.8 297.25 604.2 297.25 609.3 297.25 613 300.9 616.65 304.55 616.65 309.75 616.65 314.9 613 318.5 609.3 322.2 604.2 322.2 599 322.2 595.35 318.5 594.05 317.2 593.2 315.75 591.7 313.05 591.7 309.75"/>
+ <path stroke="none" fill="#5B5B5B" d="M683.95 309.95 Q683.95 313.55 681.45 316 678.95 318.55 675.3 318.55 671.75 318.55 669.15 316 666.65 313.55 666.65 309.95 666.65 306.35 669.15 303.8 671.75 301.3 675.3 301.3 678.95 301.3 681.45 303.8 683.95 306.35 683.95 309.95 M596.4 309.95 Q596.4 306.35 598.95 303.8 601.45 301.3 605.1 301.3 608.65 301.3 611.2 303.8 613.75 306.35 613.75 309.95 613.75 313.55 611.2 316 608.65 318.55 605.1 318.55 601.45 318.55 598.95 316 596.4 313.55 596.4 309.95"/>
+ <path stroke="none" fill="#FFC4FF" d="M614.3 335.8 L614.2 334.7 614.2 333.85 Q614.2 323.05 621.75 315.45 L623.6 313.75 Q630.7 307.85 640.2 307.85 649.7 307.85 656.75 313.8 L658.55 315.45 Q666.2 323.05 666.2 333.85 L666.2 334.7 666.15 335.75 Q665.45 326.3 658.55 319.45 L656.75 317.8 Q649.7 311.85 640.2 311.85 630.7 311.85 623.6 317.75 L621.75 319.45 Q614.95 326.3 614.3 335.8"/>
+ <path stroke="none" fill="#AF74AF" d="M658.7 327.25 L659.3 328.1 Q660.05 329.5 659.4 331.75 L658.95 333.05 Q658 335.3 655.95 337.35 L655.8 337.5 Q654.3 338.9 652.25 338.9 650.1 338.9 648.6 337.4 647.1 335.9 647.1 333.75 647.1 332.65 647.5 331.75 647.85 330.9 648.5 330.2 L648.65 330.05 Q651.15 327.55 654 326.7 L654.25 326.6 Q657.2 325.75 658.7 327.25 M624.6 337.5 L624.45 337.35 Q622.4 335.3 621.45 333.05 L621 331.75 Q620.35 329.5 621.1 328.1 L621.7 327.25 Q623.2 325.75 626.15 326.6 L626.35 326.65 Q629.2 327.5 631.75 330.05 L631.9 330.2 632.95 331.75 Q633.3 332.65 633.3 333.75 633.3 335.9 631.8 337.4 630.3 338.9 628.15 338.9 626.1 338.9 624.6 337.5"/>
+ <path stroke="none" fill="#E096E0" d="M660.25 347.15 L659.8 348.25 Q658.25 351.5 654.9 354.15 648.8 359 640.2 359 631.55 359 625.4 354.15 622.1 351.55 620.6 348.3 L620.15 347.25 621.75 348.6 Q629.4 354.65 640.2 354.65 650.95 354.65 658.55 348.6 L660.25 347.15"/>
+ <path stroke="none" fill="#857E7E" d="M991.2 287.2 Q991.05 292.4 989.6 297.85 L989.55 297.9 989.2 299.2 989.2 299.3 Q981.8 325.2 965.25 340.8 L964 342 964 375.85 964 376 Q963.7 388 951.35 388 L840.65 388 Q828.3 388 828 376 L828 375.85 828 342.25 826.45 340.8 Q809.9 325.2 802.55 299.3 L802.5 299.2 802.15 297.85 Q800.65 292.4 800.5 287.2 L800.5 287.15 Q800.2 275.25 806.6 264.25 815.7 248.45 833.35 243.6 L833.4 243.6 Q851.15 238.9 867.05 248.15 870.15 249.9 872.8 252 L918.95 252 Q921.55 249.9 924.65 248.15 940.55 238.9 958.35 243.6 976 248.45 985.15 264.25 L985.1 264.25 Q991.5 275.25 991.2 287.15 L991.2 287.2 M960 340.15 L962.5 337.9 Q978.3 322.95 985.35 298.1 L985.7 296.85 Q987.05 291.85 987.2 287.05 987.45 276.25 981.65 266.25 973.35 251.85 957.3 247.45 941.1 243.2 926.65 251.6 923.2 253.6 920.35 256 L871.4 256 Q868.5 253.6 865.05 251.6 850.6 243.2 834.4 247.45 818.35 251.85 810.05 266.25 804.25 276.25 804.5 287.05 804.65 291.85 806 296.85 L806.35 298.1 Q813.4 322.95 829.2 337.9 L832 340.4 832 375.85 Q832.25 384 840.65 384 L951.35 384 Q959.75 384 960 375.85 L960 340.15"/>
+ <path stroke="none" fill="#DBD9D9" d="M804.5 287.05 Q804.25 276.25 810.05 266.25 818.35 251.85 834.4 247.45 850.6 243.2 865.05 251.6 868.5 253.6 871.4 256 L920.35 256 Q923.2 253.6 926.65 251.6 941.1 243.2 957.3 247.45 973.35 251.85 981.65 266.25 987.45 276.25 987.2 287.05 986.9 277.3 981.65 268.25 973.35 253.85 957.3 249.45 941.1 245.2 926.65 253.6 L922.9 256 951.35 256 Q960 256 960 264.7 L960 268.2 Q959.75 260 951.35 260 L938.6 260 Q938.6 266.4 926.1 270.9 918.5 273.65 908.9 274.75 L908.25 274.8 896 275.4 883.45 274.75 882.8 274.7 Q873.4 273.6 865.9 270.9 853.45 266.4 853.45 260 L840.65 260 Q832.25 260 832 268.2 L832 264.7 Q832 256 840.65 256 L868.8 256 865.05 253.6 Q850.6 245.2 834.4 249.45 818.35 253.85 810.05 268.25 804.8 277.3 804.5 287.05 M914.3 336.8 L914.1 337.55 Q912.35 343.35 911 349.4 908.3 360.9 906.7 373.05 906.35 374.6 903.1 375.6 900.1 376.5 896 376.5 891.9 376.5 888.85 375.6 885.7 374.6 885.35 373.05 883.9 360.5 881.5 349.4 880.05 342.75 878.2 336.65 L878.2 336.6 876.9 332.45 Q874.65 325.5 871.9 319.25 873 316.9 875.7 314.75 L876.8 314 Q881.05 311.1 886.8 309.85 891 308.95 896 308.95 L904.9 309.8 Q910.9 311 915.2 314.05 L916.15 314.75 Q918.9 316.9 920.15 319.25 917.65 325.85 915.5 332.7 L914.3 336.8 M883.85 325.4 L883.8 325.4 Q896.5 331.25 908.2 325.4 L908.25 325.35 Q908.95 325.05 909.2 324.25 L909.2 324.35 Q909.45 323.65 909.2 323.05 908.95 322.25 908.25 321.95 L908.2 321.95 907 321.35 Q896.25 316.5 884.7 321.55 L883.85 321.9 Q883 322.2 882.8 323.05 882.55 323.65 882.8 324.35 883 324.9 883.55 325.25 L883.85 325.4"/>
+ <path stroke="none" fill="#BDB6B6" d="M987.2 287.05 Q987.05 291.85 985.7 296.85 L985.35 298.1 Q978.3 322.95 962.5 337.9 L960 340.15 960 332.55 961.8 330.95 Q972.65 320.65 977.5 303.6 L977.75 302.75 Q980.7 291.65 974.95 281.7 969.7 272.6 960 269.3 L960 268.2 960 264.7 Q960 256 951.35 256 L922.9 256 926.65 253.6 Q941.1 245.2 957.3 249.45 973.35 253.85 981.65 268.25 986.9 277.3 987.2 287.05 M832 340.4 L829.2 337.9 Q813.4 322.95 806.35 298.1 L806 296.85 Q804.65 291.85 804.5 287.05 804.8 277.3 810.05 268.25 818.35 253.85 834.4 249.45 850.6 245.2 865.05 253.6 L868.8 256 840.65 256 Q832 256 832 264.7 L832 268.2 832 269.2 Q822.05 272.5 816.75 281.7 811 291.65 813.95 302.75 L814.2 303.6 Q819.05 320.65 829.9 330.95 L832 332.8 832 340.4"/>
+ <path stroke="none" fill="#AFA8A8" d="M960 269.3 Q969.7 272.6 974.95 281.7 980.7 291.65 977.75 302.75 L977.5 303.6 Q972.65 320.65 961.8 330.95 L960 332.55 960 269.3 M832 332.8 L829.9 330.95 Q819.05 320.65 814.2 303.6 L813.95 302.75 Q811 291.65 816.75 281.7 822.05 272.5 832 269.2 L832 332.8"/>
+ <path stroke="none" fill="#D2D0D0" d="M832 332.8 L832 269.2 832 268.2 Q832.25 260 840.65 260 L853.45 260 Q853.45 266.4 865.9 270.9 873.4 273.6 882.8 274.7 L883.45 274.75 896 275.4 908.25 274.8 908.9 274.75 Q918.5 273.65 926.1 270.9 938.6 266.4 938.6 260 L951.35 260 Q959.75 260 960 268.2 L960 269.3 960 332.55 960 340.15 960 375.85 Q959.75 384 951.35 384 L840.65 384 Q832.25 384 832 375.85 L832 340.4 832 332.8 M921.05 314.4 Q921.4 307.5 916.15 301.7 911.55 296.55 904.95 294.6 L904.8 294.55 Q900.75 293.4 896 293.4 891.1 293.4 886.95 294.65 L886.8 294.7 Q880.3 296.65 875.7 301.7 870.6 307.55 871 314.4 L868.9 316.15 866.55 317.25 Q849.95 322.45 849 339.2 848.9 340.8 848.95 342.55 L849.4 347.9 849.6 349.55 Q850.15 353.65 851.2 358.2 851.35 359.1 852.05 359.85 L852.2 359.9 Q852.85 360.45 853.65 360.6 856.9 360.25 858.85 354.45 L860 351.35 861 349.25 861.65 347.9 Q863.05 345.2 864.75 342.85 L865.95 343.3 Q868.45 341.15 871.55 339.5 872.45 339 873.4 338.65 874.95 337.85 876.7 337.2 L878.2 336.6 878.2 336.65 Q880.05 342.75 881.5 349.4 883.9 360.5 885.35 373.05 885.7 374.6 888.85 375.6 891.9 376.5 896 376.5 900.1 376.5 903.1 375.6 906.35 374.6 906.7 373.05 908.3 360.9 911 349.4 912.35 343.35 914.1 337.55 L914.3 336.8 915.3 337.2 Q917.05 337.85 918.6 338.65 919.55 339 920.45 339.5 923.45 341.1 925.9 343.2 L927 342.55 Q928.85 345 930.4 347.9 L931.1 349.3 932 351.35 933.15 354.45 Q935.1 360.25 938.35 360.6 939.15 360.45 939.8 359.9 L939.95 359.85 Q940.65 359.1 940.8 358.2 941.9 353.6 942.45 349.45 L942.65 347.85 943.05 342.55 943 339.2 Q942.05 322.45 925.45 317.25 924 316.75 922.8 315.9 L921.05 314.4 M942.55 295.7 Q942.55 291.5 939.6 288.6 936.65 285.65 932.5 285.65 928.4 285.65 925.4 288.6 924.35 289.65 923.65 290.95 922.5 293.05 922.5 295.7 L922.55 296.8 Q922.9 300.25 925.4 302.7 928.4 305.7 932.5 305.7 936.65 305.7 939.6 302.7 942.55 299.85 942.55 295.7 M849.45 295.7 Q849.45 299.85 852.4 302.7 855.35 305.7 859.5 305.7 863.6 305.7 866.6 302.7 868.7 300.65 869.3 297.9 L869.5 295.7 Q869.5 292.55 867.85 290.15 L866.6 288.6 Q863.6 285.65 859.5 285.65 855.35 285.65 852.4 288.6 849.45 291.5 849.45 295.7"/>
+ <path stroke="none" fill="#E7E5E5" d="M871 314.4 Q870.6 307.55 875.7 301.7 880.3 296.65 886.8 294.7 L886.95 294.65 Q891.1 293.4 896 293.4 900.75 293.4 904.8 294.55 L904.95 294.6 Q911.55 296.55 916.15 301.7 921.4 307.5 921.05 314.4 L920.45 317.9 920.15 319.25 Q918.9 316.9 916.15 314.75 L915.2 314.05 Q910.9 311 904.9 309.8 L896 308.95 Q891 308.95 886.8 309.85 881.05 311.1 876.8 314 L875.7 314.75 Q873 316.9 871.9 319.25 L871.5 317.9 Q871.05 316.1 871 314.4"/>
+ <path stroke="none" fill="#FFFFFF" d="M937.05 296.9 Q937.05 294.25 935.25 292.45 933.4 290.6 930.75 290.6 928.2 290.6 926.3 292.45 924.45 294.25 924.45 296.9 924.45 299.45 926.3 301.25 928.2 303.05 930.75 303.05 933.4 303.05 935.25 301.25 937.05 299.45 937.05 296.9 M942.55 295.7 Q942.55 299.85 939.6 302.7 936.65 305.7 932.5 305.7 928.4 305.7 925.4 302.7 922.9 300.25 922.55 296.8 L922.5 295.7 Q922.5 293.05 923.65 290.95 924.35 289.65 925.4 288.6 928.4 285.65 932.5 285.65 936.65 285.65 939.6 288.6 942.55 291.5 942.55 295.7 M849.45 295.7 Q849.45 291.5 852.4 288.6 855.35 285.65 859.5 285.65 863.6 285.65 866.6 288.6 L867.85 290.15 Q869.5 292.55 869.5 295.7 L869.3 297.9 Q868.7 300.65 866.6 302.7 863.6 305.7 859.5 305.7 855.35 305.7 852.4 302.7 849.45 299.85 849.45 295.7 M854.95 296.9 Q854.95 299.45 856.75 301.25 858.6 303.05 861.25 303.05 863.8 303.05 865.7 301.25 867.55 299.45 867.55 296.9 867.55 294.25 865.7 292.45 863.8 290.6 861.25 290.6 858.6 290.6 856.75 292.45 854.95 294.25 854.95 296.9"/>
+ <path stroke="none" fill="#5B5B5B" d="M854.95 296.9 Q854.95 294.25 856.75 292.45 858.6 290.6 861.25 290.6 863.8 290.6 865.7 292.45 867.55 294.25 867.55 296.9 867.55 299.45 865.7 301.25 863.8 303.05 861.25 303.05 858.6 303.05 856.75 301.25 854.95 299.45 854.95 296.9 M937.05 296.9 Q937.05 299.45 935.25 301.25 933.4 303.05 930.75 303.05 928.2 303.05 926.3 301.25 924.45 299.45 924.45 296.9 924.45 294.25 926.3 292.45 928.2 290.6 930.75 290.6 933.4 290.6 935.25 292.45 937.05 294.25 937.05 296.9"/>
+ <path stroke="none" fill="#C2C0C0" d="M921.05 314.4 L922.8 315.9 Q924 316.75 925.45 317.25 L923.5 319.25 Q921.5 321.5 920.3 323.95 L919.6 325.45 Q918.05 329.7 918.6 334.6 L920.45 335.85 Q924.15 338.7 927 342.55 L925.9 343.2 Q923.45 341.1 920.45 339.5 919.55 339 918.6 338.65 917.05 337.85 915.3 337.2 L914.3 336.8 915.5 332.7 Q917.65 325.85 920.15 319.25 L920.45 317.9 921.05 314.4 M878.2 336.6 L876.7 337.2 Q874.95 337.85 873.4 338.65 872.45 339 871.55 339.5 868.45 341.15 865.95 343.3 L864.75 342.85 Q867.7 338.85 871.55 335.85 872.45 335.15 873.4 334.6 873.95 329.7 872.4 325.45 L871.75 323.95 Q870.45 321.35 868.3 318.95 L866.55 317.25 868.9 316.15 871 314.4 Q871.05 316.1 871.5 317.9 L871.9 319.25 Q874.65 325.5 876.9 332.45 L878.2 336.6"/>
+ <path stroke="none" fill="#FFFCF5" d="M925.45 317.25 Q942.05 322.45 943 339.2 L943.05 342.55 942.65 347.85 942.45 349.45 Q941.9 353.6 940.8 358.2 940.65 359.1 939.95 359.85 L939.8 359.9 Q939.15 360.45 938.35 360.6 L938 356.7 Q937.5 353.3 936.4 350 932.75 338.95 922.5 328.35 L919.6 325.45 920.3 323.95 Q921.5 321.5 923.5 319.25 L925.45 317.25 M853.65 360.6 Q852.85 360.45 852.2 359.9 L852.05 359.85 Q851.35 359.1 851.2 358.2 850.15 353.65 849.6 349.55 L849.4 347.9 848.95 342.55 Q848.9 340.8 849 339.2 849.95 322.45 866.55 317.25 L868.3 318.95 Q870.45 321.35 871.75 323.95 L872.4 325.45 869.5 328.35 Q859.25 338.95 855.65 350 854.55 353.3 854.05 356.7 L853.65 360.6"/>
+ <path stroke="none" fill="#CDCBCB" d="M883.85 325.4 L883.55 325.25 Q883 324.9 882.8 324.35 882.55 323.65 882.8 323.05 883 322.2 883.85 321.9 L884.7 321.55 Q896.25 316.5 907 321.35 L908.2 321.95 908.25 321.95 Q908.95 322.25 909.2 323.05 909.45 323.65 909.2 324.35 L909.2 324.25 Q908.95 325.05 908.25 325.35 L908.2 325.4 Q896.5 331.25 883.8 325.4 L883.85 325.4"/>
+ <path stroke="none" fill="#F0EDE7" d="M938.35 360.6 Q935.1 360.25 933.15 354.45 L932 351.35 931.1 349.3 930.4 347.9 Q928.85 345 927 342.55 924.15 338.7 920.45 335.85 L918.6 334.6 Q918.05 329.7 919.6 325.45 L922.5 328.35 Q932.75 338.95 936.4 350 937.5 353.3 938 356.7 L938.35 360.6 M864.75 342.85 Q863.05 345.2 861.65 347.9 L861 349.25 860 351.35 858.85 354.45 Q856.9 360.25 853.65 360.6 L854.05 356.7 Q854.55 353.3 855.65 350 859.25 338.95 869.5 328.35 L872.4 325.45 Q873.95 329.7 873.4 334.6 872.45 335.15 871.55 335.85 867.7 338.85 864.75 342.85"/>
+ <path stroke="none" fill="#857E7E" d="M1110.85 204.9 Q1120.3 201.5 1134.2 218.8 L1134.5 219.25 Q1145.2 237.2 1148.1 252 L1155.9 252 Q1158.8 237.2 1169.55 219.25 L1169.85 218.8 Q1183.7 201.5 1193.15 204.9 L1193.2 204.9 Q1202.9 206.75 1202.25 225 L1202.05 228.65 Q1200.9 241.95 1200.65 252 L1207.35 252 Q1220 252 1220 264.7 L1220 375.85 1220 376 Q1219.7 388 1207.35 388 L1096.65 388 Q1084.3 388 1084 376 L1084 375.85 1084 264.7 Q1084 252 1096.65 252 L1103.4 252 Q1103.1 241.95 1102 228.65 L1101.75 225 Q1101.1 206.75 1110.85 204.9 M1105.75 224.85 L1105.95 228.3 Q1107.35 244.55 1107.45 256 L1096.65 256 Q1088 256 1088 264.7 L1088 268.2 1088 375.85 Q1088.25 384 1096.65 384 L1125.45 384 1178.7 384 1207.35 384 Q1215.75 384 1216 375.85 L1216 268.2 1216 264.7 Q1216 256 1207.35 256 L1196.55 256 Q1196.65 244.55 1198.05 228.3 L1198.25 224.85 Q1198.75 210.6 1192.1 208.75 1184.65 206.7 1172.95 221.3 1161.45 240.55 1159.3 256 L1144.75 256 Q1142.55 240.55 1131.05 221.3 1119.35 206.7 1111.9 208.75 1105.25 210.6 1105.75 224.85"/>
+ <path stroke="none" fill="#BDB6B6" d="M1105.75 224.85 Q1106.25 214.3 1111.9 212.75 1119.35 210.7 1131.05 225.3 1141.05 242.1 1144 256 L1139.5 256 Q1136.8 249.75 1132.75 242.9 1122.75 230.45 1116.4 232.2 1110.1 233.95 1111.35 248.85 L1111.95 256 1107.45 256 Q1107.35 244.55 1105.95 228.3 L1105.75 224.85 M1198.25 224.85 L1198.05 228.3 Q1196.65 244.55 1196.55 256 L1192.1 256 1192.65 248.85 Q1193.9 233.95 1187.6 232.2 1181.25 230.45 1171.25 242.9 1167.2 249.75 1164.5 256 L1160 256 Q1162.95 242.1 1172.95 225.3 1184.65 210.7 1192.1 212.75 1197.75 214.3 1198.25 224.85"/>
+ <path stroke="none" fill="#A8A1A1" d="M1111.95 256 L1111.35 248.85 Q1110.1 233.95 1116.4 232.2 1122.75 230.45 1132.75 242.9 1136.8 249.75 1139.5 256 L1111.95 256 M1125.55 317.5 Q1128.55 318.5 1131.65 320.2 L1132.1 320.7 1132.1 321.3 1131.8 321.85 1131.2 322.05 Q1127 321.85 1122.55 322.1 L1112.8 323.1 1112.3 323 1111.85 322.55 1111.85 321.95 1112.55 317.3 Q1112.6 316.95 1112.8 316.8 L1113.3 316.5 Q1119.15 315.35 1125.55 317.5 M1121.35 326.1 Q1125.5 324.75 1130.8 325.05 L1131.3 325.25 1131.5 325.7 1131.5 326.2 1131.1 326.55 Q1125.75 328.05 1121.3 331.15 1119.7 332.2 1118.25 333.5 L1117.8 333.6 1117.35 333.45 1117.15 333.05 1116.1 329.45 1116.1 329 1116.4 328.6 Q1118.6 327 1121.35 326.1 M1145.15 344.15 Q1147.7 342.95 1149.85 340.75 L1152 338.25 1154.1 340.75 Q1156.3 342.95 1158.85 344.15 1155.75 345.7 1152 345.7 1148.25 345.7 1145.15 344.15 M1182.75 331.15 Q1178.25 328.05 1172.9 326.55 L1172.5 326.2 1172.5 325.7 1172.7 325.25 1173.2 325.05 Q1178.5 324.75 1182.65 326.1 1185.4 327 1187.6 328.6 L1187.9 329 1187.9 329.45 1186.85 333.05 1186.65 333.45 1186.2 333.6 1185.75 333.5 1182.75 331.15 M1181.5 322.1 Q1177 321.85 1172.8 322.05 1172.45 322.05 1172.2 321.85 1171.9 321.6 1171.9 321.3 L1171.9 320.7 1172.35 320.2 Q1175.45 318.5 1178.4 317.55 1184.85 315.35 1190.7 316.5 L1191.2 316.8 1191.45 317.3 1192.15 321.95 1192.15 322.55 1191.7 323 1191.2 323.1 1181.5 322.1 M1164.5 256 Q1167.2 249.75 1171.25 242.9 1181.25 230.45 1187.6 232.2 1193.9 233.95 1192.65 248.85 L1192.1 256 1164.5 256"/>
+ <path stroke="none" fill="#CBC3C3" d="M1144 256 Q1141.05 242.1 1131.05 225.3 1119.35 210.7 1111.9 212.75 1106.25 214.3 1105.75 224.85 1105.25 210.6 1111.9 208.75 1119.35 206.7 1131.05 221.3 1142.55 240.55 1144.75 256 L1144 256 M1159.3 256 Q1161.45 240.55 1172.95 221.3 1184.65 206.7 1192.1 208.75 1198.75 210.6 1198.25 224.85 1197.75 214.3 1192.1 212.75 1184.65 210.7 1172.95 225.3 1162.95 242.1 1160 256 L1159.3 256"/>
+ <path stroke="none" fill="#DBD9D9" d="M1159.3 256 L1160 256 1164.5 256 1192.1 256 1196.55 256 1207.35 256 Q1216 256 1216 264.7 L1216 268.2 Q1215.75 260 1207.35 260 L1182.3 260 Q1182.3 265.75 1173.35 269.8 1168.05 272.25 1161.4 273.25 L1151.8 273.9 1142.6 273.3 Q1135.7 272.3 1130.2 269.8 1121.3 265.75 1121.3 260 L1096.65 260 Q1088.25 260 1088 268.2 L1088 264.7 Q1088 256 1096.65 256 L1107.45 256 1111.95 256 1139.5 256 1144 256 1144.75 256 1159.3 256"/>
+ <path stroke="none" fill="#D2D0D0" d="M1216 268.2 L1216 375.85 Q1215.75 384 1207.35 384 L1178.7 384 1175.05 374.95 1175.7 374.7 Q1173.2 369.8 1170.5 366.1 1162 351.95 1152 351.95 1142.05 351.95 1133.6 366.15 1130.9 369.85 1128.4 374.7 L1129.05 374.95 Q1127.2 379.1 1125.45 384 L1096.65 384 Q1088.25 384 1088 375.85 L1088 268.2 Q1088.25 260 1096.65 260 L1121.3 260 Q1121.3 265.75 1130.2 269.8 1135.7 272.3 1142.6 273.3 L1151.8 273.9 1161.4 273.25 Q1168.05 272.25 1173.35 269.8 1182.3 265.75 1182.3 260 L1207.35 260 Q1215.75 260 1216 268.2 M1111.4 300 Q1111.4 305.05 1115 308.5 1118.6 312.15 1123.6 312.15 1128.6 312.15 1132.3 308.5 1135.8 305.05 1135.8 300 1135.8 294.95 1132.3 291.4 1128.6 287.9 1123.6 287.9 1118.6 287.9 1115 291.4 1111.4 294.95 1111.4 300 M1125.55 317.5 Q1119.15 315.35 1113.3 316.5 L1112.8 316.8 Q1112.6 316.95 1112.55 317.3 L1111.85 321.95 1111.85 322.55 1112.3 323 1112.8 323.1 1122.55 322.1 Q1121.7 324 1121.35 326.1 1118.6 327 1116.4 328.6 L1116.1 329 1116.1 329.45 1117.15 333.05 1117.35 333.45 1117.8 333.6 1118.25 333.5 Q1119.7 332.2 1121.3 331.15 1121.95 336.65 1126.05 340.75 1131 345.7 1137.95 345.7 1141.85 345.7 1145.15 344.15 1148.25 345.7 1152 345.7 1155.75 345.7 1158.85 344.15 1162.1 345.7 1166 345.7 1173 345.7 1177.9 340.75 1182.05 336.65 1182.75 331.15 L1185.75 333.5 1186.2 333.6 1186.65 333.45 1186.85 333.05 1187.9 329.45 1187.9 329 1187.6 328.6 Q1185.4 327 1182.65 326.1 1182.3 324 1181.5 322.1 L1191.2 323.1 1191.7 323 1192.15 322.55 1192.15 321.95 1191.45 317.3 1191.2 316.8 1190.7 316.5 Q1184.85 315.35 1178.4 317.55 L1177.9 317 Q1173.15 312.2 1166.45 312.05 L1164.8 312.05 1164.9 311.45 1165 309.7 1164.95 308.8 Q1164.65 306.55 1161.3 304.9 1157.65 303.15 1152.5 303.15 1147.3 303.15 1143.6 304.9 1140.25 306.55 1140 308.8 L1140 309.7 1140.1 311.3 1140.25 312.05 1137.95 312.05 Q1131 312.05 1126.05 317 L1125.55 317.5 M1192.6 300 Q1192.6 294.95 1189.1 291.4 1185.5 287.9 1180.4 287.9 1175.4 287.9 1171.85 291.4 1168.25 294.95 1168.25 300 1168.25 305.05 1171.85 308.5 1175.4 312.15 1180.4 312.15 1185.5 312.15 1189.1 308.5 1192.6 305.05 1192.6 300"/>
+ <path stroke="none" fill="#5B5B5B" d="M1117.35 300.25 Q1117.35 296.95 1119.6 294.8 1121.75 292.65 1124.95 292.65 1128.1 292.65 1130.35 294.8 1132.6 296.95 1132.6 300.25 1132.6 303.4 1130.35 305.55 1128.1 307.85 1124.95 307.85 1121.75 307.85 1119.6 305.55 1117.35 303.4 1117.35 300.25 M1186.75 300.25 Q1186.75 303.4 1184.5 305.55 1182.25 307.85 1179.1 307.85 1176 307.85 1173.65 305.55 1171.4 303.4 1171.4 300.25 1171.4 296.95 1173.65 294.8 1176 292.65 1179.1 292.65 1182.25 292.65 1184.5 294.8 1186.75 296.95 1186.75 300.25"/>
+ <path stroke="none" fill="#FFFFFF" d="M1186.75 300.25 Q1186.75 296.95 1184.5 294.8 1182.25 292.65 1179.1 292.65 1176 292.65 1173.65 294.8 1171.4 296.95 1171.4 300.25 1171.4 303.4 1173.65 305.55 1176 307.85 1179.1 307.85 1182.25 307.85 1184.5 305.55 1186.75 303.4 1186.75 300.25 M1117.35 300.25 Q1117.35 303.4 1119.6 305.55 1121.75 307.85 1124.95 307.85 1128.1 307.85 1130.35 305.55 1132.6 303.4 1132.6 300.25 1132.6 296.95 1130.35 294.8 1128.1 292.65 1124.95 292.65 1121.75 292.65 1119.6 294.8 1117.35 296.95 1117.35 300.25 M1111.4 300 Q1111.4 294.95 1115 291.4 1118.6 287.9 1123.6 287.9 1128.6 287.9 1132.3 291.4 1135.8 294.95 1135.8 300 1135.8 305.05 1132.3 308.5 1128.6 312.15 1123.6 312.15 1118.6 312.15 1115 308.5 1111.4 305.05 1111.4 300 M1122.55 322.1 Q1127 321.85 1131.2 322.05 L1131.8 321.85 1132.1 321.3 1132.1 320.7 1131.65 320.2 Q1128.55 318.5 1125.55 317.5 L1126.05 317 Q1131 312.05 1137.95 312.05 L1140.25 312.05 Q1140.85 315.7 1143.6 318.45 1147.3 322.15 1152.5 322.15 1157.65 322.15 1161.3 318.45 1164.1 315.7 1164.8 312.05 L1166.45 312.05 Q1173.15 312.2 1177.9 317 L1178.4 317.55 Q1175.45 318.5 1172.35 320.2 L1171.9 320.7 1171.9 321.3 Q1171.9 321.6 1172.2 321.85 1172.45 322.05 1172.8 322.05 1177 321.85 1181.5 322.1 1182.3 324 1182.65 326.1 1178.5 324.75 1173.2 325.05 L1172.7 325.25 1172.5 325.7 1172.5 326.2 1172.9 326.55 Q1178.25 328.05 1182.75 331.15 1182.05 336.65 1177.9 340.75 1173 345.7 1166 345.7 1162.1 345.7 1158.85 344.15 1156.3 342.95 1154.1 340.75 L1152 338.25 1149.85 340.75 Q1147.7 342.95 1145.15 344.15 1141.85 345.7 1137.95 345.7 1131 345.7 1126.05 340.75 1121.95 336.65 1121.3 331.15 1125.75 328.05 1131.1 326.55 L1131.5 326.2 1131.5 325.7 1131.3 325.25 1130.8 325.05 Q1125.5 324.75 1121.35 326.1 1121.7 324 1122.55 322.1 M1192.6 300 Q1192.6 305.05 1189.1 308.5 1185.5 312.15 1180.4 312.15 1175.4 312.15 1171.85 308.5 1168.25 305.05 1168.25 300 1168.25 294.95 1171.85 291.4 1175.4 287.9 1180.4 287.9 1185.5 287.9 1189.1 291.4 1192.6 294.95 1192.6 300"/>
+ <path stroke="none" fill="#E5E3E3" d="M1178.7 384 L1125.45 384 Q1127.2 379.1 1129.05 374.95 L1128.4 374.7 Q1130.9 369.85 1133.6 366.15 1142.05 351.95 1152 351.95 1162 351.95 1170.5 366.1 1173.2 369.8 1175.7 374.7 L1175.05 374.95 1178.7 384"/>
+ <path stroke="none" fill="#FFC4FF" d="M1140.1 311.3 L1140 309.7 1140 308.8 Q1140.25 306.55 1143.6 304.9 1147.3 303.15 1152.5 303.15 1157.65 303.15 1161.3 304.9 1164.65 306.55 1164.95 308.8 L1165 309.7 1164.9 311.45 Q1164.4 309.4 1161.3 307.9 1157.65 306.15 1152.5 306.15 1147.3 306.15 1143.6 307.9 1140.6 309.35 1140.1 311.3"/>
+ <path stroke="none" fill="#FFAAFF" d="M1140.1 311.3 Q1140.6 309.35 1143.6 307.9 1147.3 306.15 1152.5 306.15 1157.65 306.15 1161.3 307.9 1164.4 309.4 1164.9 311.45 L1164.8 312.05 Q1164.1 315.7 1161.3 318.45 1157.65 322.15 1152.5 322.15 1147.3 322.15 1143.6 318.45 1140.85 315.7 1140.25 312.05 L1140.1 311.3"/>
+ <path stroke="none" fill="#8A1D03" d="M1192.2 192 L1207.35 192 Q1215.75 192 1216 183.85 L1216 76.2 1216 72.7 Q1216 64 1207.35 64 L1096.65 64 Q1088 64 1088 72.7 L1088 76.2 1088 183.85 Q1088.25 192 1096.65 192 L1111.8 192 1192.2 192 M1207.35 60 Q1220 60 1220 72.7 L1220 183.85 1220 184 Q1219.7 196 1207.35 196 L1096.65 196 Q1084.3 196 1084 184 L1084 183.85 1084 72.7 Q1084 60 1096.65 60 L1207.35 60"/>
+ <path stroke="none" fill="#F53707" d="M1088 76.2 L1088 72.7 Q1088 64 1096.65 64 L1207.35 64 Q1216 64 1216 72.7 L1216 76.2 Q1215.75 68 1207.35 68 L1096.65 68 Q1088.25 68 1088 76.2"/>
+ <path stroke="none" fill="#D23007" d="M1088 76.2 Q1088.25 68 1096.65 68 L1207.35 68 Q1215.75 68 1216 76.2 L1216 183.85 Q1215.75 192 1207.35 192 L1192.2 192 1192.35 189.5 Q1192.35 178.3 1180.5 170.35 1174.2 166.1 1166.45 164.15 1168.1 161.95 1169 159.45 L1169.8 156.2 1169.9 155.35 1170 153.9 1170 153.4 1170 147.4 1170 147 1170 143.9 1173.25 147.65 Q1180.4 154.85 1187.25 153.05 1194.1 151.2 1196.65 141.35 1199.15 131.55 1195.9 119.45 L1195.75 118.9 Q1193.9 112.35 1187.95 108.9 1181.75 105.3 1174.9 107.15 1168.1 108.95 1164.5 115.2 1161.05 121.1 1162.65 127.8 L1162.8 128.35 1163.1 129.35 Q1158.35 125.5 1152 125.5 1145.75 125.5 1141 129.25 L1141.2 128.4 1141.4 127.85 Q1143.05 121.15 1139.55 115.2 1136.05 109 1129.15 107.2 1122.3 105.3 1116.1 108.9 1110.15 112.35 1108.25 118.9 L1108.05 119.45 Q1104.85 131.55 1107.45 141.4 1110.05 151.2 1116.85 153.1 1123.75 154.9 1130.9 147.65 L1134 144.1 1134 147 1134 147.4 1134 153.4 1134 153.7 1134.1 155.35 1134.2 156.2 Q1134.45 157.9 1135 159.45 1135.85 161.95 1137.5 164.2 1129.8 166.15 1123.45 170.35 1111.65 178.3 1111.65 189.5 L1111.8 192 1096.65 192 Q1088.25 192 1088 183.85 L1088 76.2 M1165.4 79.95 L1164.45 78.45 Q1162.45 75.45 1159.45 74.15 1156.05 72.7 1153.3 74.25 1150.55 75.85 1150.15 79.5 1149.75 82.8 1151.35 86 L1152.25 87.55 Q1156.15 94.3 1160.75 97.95 1165.45 101.6 1168.2 100 1170.95 98.45 1170.05 92.6 1169.3 86.7 1165.4 79.95 M1145.7 87.65 L1146.3 86.6 Q1147.35 84.45 1147.1 82.35 1146.8 79.9 1145 78.8 1143.2 77.75 1140.95 78.75 1138.95 79.6 1137.6 81.6 L1137 82.65 Q1134.45 87.1 1133.9 91 1133.35 94.9 1135.15 95.9 1136.95 97 1140 94.55 1143.15 92.15 1145.7 87.65"/>
+ <path stroke="none" fill="#BB2905" d="M1145.7 87.65 Q1143.15 92.15 1140 94.55 1136.95 97 1135.15 95.9 1133.35 94.9 1133.9 91 1134.45 87.1 1137 82.65 L1137.6 81.6 Q1138.95 79.6 1140.95 78.75 1143.2 77.75 1145 78.8 1146.8 79.9 1147.1 82.35 1147.35 84.45 1146.3 86.6 L1145.7 87.65 M1165.4 79.95 Q1169.3 86.7 1170.05 92.6 1170.95 98.45 1168.2 100 1165.45 101.6 1160.75 97.95 1156.15 94.3 1152.25 87.55 L1151.35 86 Q1149.75 82.8 1150.15 79.5 1150.55 75.85 1153.3 74.25 1156.05 72.7 1159.45 74.15 1162.45 75.45 1164.45 78.45 L1165.4 79.95"/>
+ <path stroke="none" fill="#D5EEF7" d="M1163.1 129.35 L1162.8 128.35 1162.65 127.8 Q1161.05 121.1 1164.5 115.2 1168.1 108.95 1174.9 107.15 1181.75 105.3 1187.95 108.9 1193.9 112.35 1195.75 118.9 L1195.9 119.45 Q1199.15 131.55 1196.65 141.35 1194.1 151.2 1187.25 153.05 1180.4 154.85 1173.25 147.65 L1170 143.9 1170 143.5 Q1170 141.15 1169.4 139 L1169.2 138.15 1169.15 138 1168.3 135.8 Q1168.95 137 1170.05 138.1 1173.25 141.25 1177.5 141.25 1181.85 141.25 1184.95 138.1 1188.05 135.1 1188.05 130.75 1188.05 126.35 1184.95 123.3 1181.85 120.25 1177.5 120.25 1173.25 120.25 1170.05 123.3 1167.05 126.35 1167.05 130.75 1167.05 133.15 1167.95 135.15 1166.7 132.8 1164.7 130.8 L1163.1 129.35 M1141 129.25 Q1140.05 129.95 1139.2 130.8 1136.1 133.95 1134.85 138 L1134.8 138.15 1134.55 139 Q1134 141.15 1134 143.5 L1134 144.1 1130.9 147.65 Q1123.75 154.9 1116.85 153.1 1110.05 151.2 1107.45 141.4 1104.85 131.55 1108.05 119.45 L1108.25 118.9 Q1110.15 112.35 1116.1 108.9 1122.3 105.3 1129.15 107.2 1136.05 109 1139.55 115.2 1143.05 121.15 1141.4 127.85 L1141.2 128.4 1141 129.25 M1115.8 130.75 Q1115.8 135.1 1118.85 138.1 1121.95 141.25 1126.3 141.25 1130.6 141.25 1133.75 138.1 1136.8 135.1 1136.8 130.75 1136.8 126.35 1133.75 123.3 1130.6 120.25 1126.3 120.25 1121.95 120.25 1118.85 123.3 1115.8 126.35 1115.8 130.75"/>
+ <path stroke="none" fill="#FFFFFF" d="M1115.8 130.75 Q1115.8 126.35 1118.85 123.3 1121.95 120.25 1126.3 120.25 1130.6 120.25 1133.75 123.3 1136.8 126.35 1136.8 130.75 1136.8 135.1 1133.75 138.1 1130.6 141.25 1126.3 141.25 1121.95 141.25 1118.85 138.1 1115.8 135.1 1115.8 130.75 M1167.95 135.15 Q1167.05 133.15 1167.05 130.75 1167.05 126.35 1170.05 123.3 1173.25 120.25 1177.5 120.25 1181.85 120.25 1184.95 123.3 1188.05 126.35 1188.05 130.75 1188.05 135.1 1184.95 138.1 1181.85 141.25 1177.5 141.25 1173.25 141.25 1170.05 138.1 1168.95 137 1168.3 135.8 L1167.95 135.15 M1182.3 130.7 Q1182.3 127.9 1180.4 126.05 1178.45 124.1 1175.7 124.1 1173 124.1 1171 126.05 1169.1 127.9 1169.1 130.7 L1169.1 131.35 Q1169.3 133.6 1171 135.25 1173 137.15 1175.7 137.15 1178.45 137.15 1180.4 135.25 1182.05 133.6 1182.25 131.35 L1182.3 130.7 M1121.55 130.7 L1121.6 131.35 Q1121.75 133.6 1123.4 135.25 1125.35 137.15 1128.15 137.15 1130.8 137.15 1132.8 135.25 1134.55 133.6 1134.7 131.35 L1134.75 130.7 Q1134.75 127.9 1132.8 126.05 1130.8 124.1 1128.15 124.1 1125.35 124.1 1123.4 126.05 1121.55 127.9 1121.55 130.7"/>
+ <path stroke="none" fill="#5B5B5B" d="M1121.55 130.7 Q1121.55 127.9 1123.4 126.05 1125.35 124.1 1128.15 124.1 1130.8 124.1 1132.8 126.05 1134.75 127.9 1134.75 130.7 L1134.7 131.35 Q1134.55 133.6 1132.8 135.25 1130.8 137.15 1128.15 137.15 1125.35 137.15 1123.4 135.25 1121.75 133.6 1121.6 131.35 L1121.55 130.7 M1182.3 130.7 L1182.25 131.35 Q1182.05 133.6 1180.4 135.25 1178.45 137.15 1175.7 137.15 1173 137.15 1171 135.25 1169.3 133.6 1169.1 131.35 L1169.1 130.7 Q1169.1 127.9 1171 126.05 1173 124.1 1175.7 124.1 1178.45 124.1 1180.4 126.05 1182.3 127.9 1182.3 130.7"/>
+ <path stroke="none" fill="#61A3FF" d="M1163.1 129.35 L1164.7 130.8 Q1166.7 132.8 1167.95 135.15 L1168.3 135.8 1169.15 138 1169.2 138.15 1169.4 139 Q1170 141.15 1170 143.5 L1170 143.9 1170 147 Q1169.95 145.05 1169.4 143.2 L1169.4 143 1169.2 142.45 1169.15 142.3 Q1168.1 139.15 1165.75 136.65 L1164.7 135.6 Q1159.5 130.65 1152 130.65 1144.55 130.65 1139.2 135.6 L1138.45 136.35 Q1135.95 139 1134.85 142.3 L1134.8 142.45 1134.55 143.2 1134.55 143.35 Q1134.05 145.1 1134 147 L1134 144.1 1134 143.5 Q1134 141.15 1134.55 139 L1134.8 138.15 1134.85 138 Q1136.1 133.95 1139.2 130.8 1140.05 129.95 1141 129.25 1145.75 125.5 1152 125.5 1158.35 125.5 1163.1 129.35"/>
+ <path stroke="none" fill="#5D9CF3" d="M1170 147 L1170 147.4 1170 153.4 1170 153.9 1169.9 155.35 1169.8 156.2 Q1152 160.75 1134.2 156.2 L1134.1 155.35 1134 153.7 1134 153.4 1134 147.4 1134 147 Q1134.05 145.1 1134.55 143.35 L1134.55 143.2 1134.8 142.45 1134.85 142.3 Q1135.95 139 1138.45 136.35 L1139.2 135.6 Q1144.55 130.65 1152 130.65 1159.5 130.65 1164.7 135.6 L1165.75 136.65 Q1168.1 139.15 1169.15 142.3 L1169.2 142.45 1169.4 143 1169.4 143.2 Q1169.95 145.05 1170 147"/>
+ <path stroke="none" fill="#3473CB" d="M1169.8 156.2 L1169 159.45 Q1152 163.3 1135 159.45 1134.45 157.9 1134.2 156.2 1152 160.75 1169.8 156.2"/>
+ <path stroke="none" fill="#397EDE" d="M1169 159.45 Q1168.1 161.95 1166.45 164.15 L1164.7 166.15 Q1159.5 171.5 1152 171.5 1144.55 171.5 1139.2 166.15 L1137.5 164.2 Q1135.85 161.95 1135 159.45 1152 163.3 1169 159.45"/>
+ <path stroke="none" fill="#FFCC00" d="M1192.2 192 L1111.8 192 1111.65 189.5 Q1111.65 178.3 1123.45 170.35 1129.8 166.15 1137.5 164.2 L1139.2 166.15 Q1144.55 171.5 1152 171.5 1159.5 171.5 1164.7 166.15 L1166.45 164.15 Q1174.2 166.1 1180.5 170.35 1192.35 178.3 1192.35 189.5 L1192.2 192"/>
+ <path stroke="none" fill="#807F7F" d="M927.1 192 L951.35 192 Q959.75 192 960 183.85 L960 138.55 Q968.9 137 975.65 130.2 983.8 122.1 984.45 111 L984.5 109 Q984.5 96.65 975.65 87.75 968.9 81 960 79.45 L960 76.2 960 72.7 Q960 64 951.35 64 L840.65 64 Q832 64 832 72.7 L832 76.2 832 79.45 Q823.1 81 816.35 87.75 807.5 96.65 807.5 109 L807.55 111 Q808.2 122.1 816.35 130.2 823.1 137 832 138.55 L832 183.85 Q832.25 192 840.65 192 L865.9 192 927.1 192 M988.5 109 L988.45 111.2 988.45 111.25 Q987.75 123.85 978.5 133.05 972.1 139.45 964 141.75 L964 183.85 964 184 Q963.7 196 951.35 196 L840.65 196 Q828.3 196 828 184 L828 183.85 828 141.75 Q819.9 139.45 813.55 133.05 804.25 123.85 803.55 111.25 L803.55 111.2 803.5 109 Q803.5 95 813.55 84.95 819.9 78.55 828 76.25 L828 72.7 Q828 60 840.65 60 L951.35 60 Q964 60 964 72.7 L964 76.25 Q972.1 78.55 978.5 84.95 988.5 95 988.5 109"/>
+ <path stroke="none" fill="#414040" d="M984.45 111 Q983.8 122.1 975.65 130.2 968.9 137 960 138.55 L960 121.85 960.95 120.95 Q965.95 116.05 965.95 109 965.95 102.05 960.95 97.1 L960 96.2 960 83.45 Q968.9 85 975.65 91.75 983.8 99.9 984.45 111 M832 138.55 Q823.1 137 816.35 130.2 808.2 122.1 807.55 111 808.2 99.9 816.35 91.75 823.1 85 832 83.45 L832 96.2 831.05 97.1 Q826.05 102.05 826.05 109 826.05 116.05 831.05 120.95 L832 121.85 832 138.55"/>
+ <path stroke="none" fill="#545353" d="M960 79.45 Q968.9 81 975.65 87.75 984.5 96.65 984.5 109 L984.45 111 Q983.8 99.9 975.65 91.75 968.9 85 960 83.45 L960 79.45 M807.55 111 L807.5 109 Q807.5 96.65 816.35 87.75 823.1 81 832 79.45 L832 83.45 Q823.1 85 816.35 91.75 808.2 99.9 807.55 111"/>
+ <path stroke="none" fill="#FFFFFF" d="M832 76.2 L832 72.7 Q832 64 840.65 64 L951.35 64 Q960 64 960 72.7 L960 76.2 Q959.75 68 951.35 68 L922.65 68 Q922.65 83.3 915 94.1 907.4 104.9 896.65 104.9 885.9 104.9 878.25 94.1 870.65 83.3 870.65 68 L840.65 68 Q832.25 68 832 76.2 M850.8 120.4 Q850.8 116.55 853.5 113.85 856.15 111.25 859.8 111.15 L860.1 111.15 Q863.9 111.15 866.65 113.85 L867.1 114.3 Q869.35 116.85 869.35 120.4 869.35 124.25 866.65 126.85 863.9 129.65 860.1 129.65 L859.35 129.65 Q855.95 129.35 853.5 126.85 852.05 125.45 851.4 123.75 850.8 122.2 850.8 120.4 M855.3 120.55 Q855.3 122.95 857 124.6 858.7 126.35 861.1 126.35 L862.1 126.3 Q863.85 126 865.25 124.6 866.95 122.95 866.95 120.55 866.95 119 866.3 117.8 L865.25 116.45 Q863.5 114.75 861.1 114.75 859.85 114.75 858.8 115.25 857.8 115.65 857 116.45 855.3 118.1 855.3 120.55 M936.7 120.55 Q936.7 118.1 935 116.45 934.2 115.65 933.25 115.25 932.15 114.75 930.9 114.75 928.5 114.75 926.75 116.45 926.1 117.05 925.75 117.8 925.05 119 925.05 120.55 925.05 122.95 926.75 124.6 928.1 125.95 929.9 126.3 L930.9 126.35 Q933.3 126.35 935 124.6 936.7 122.95 936.7 120.55 M941.2 120.4 Q941.2 122.2 940.6 123.75 939.95 125.45 938.5 126.85 936.05 129.35 932.7 129.65 L931.9 129.65 Q928.1 129.65 925.35 126.85 922.65 124.25 922.65 120.4 922.65 116.85 924.95 114.3 L925.35 113.85 Q928.1 111.15 931.9 111.15 L932.25 111.15 Q935.85 111.25 938.5 113.85 941.2 116.55 941.2 120.4"/>
+ <path stroke="none" fill="#F5F5F5" d="M960 138.55 L960 183.85 Q959.75 192 951.35 192 L927.1 192 925.65 189.4 Q923.4 185.5 921 182.35 910.4 168.5 896.5 168.5 882.6 168.5 872 182.35 869.55 185.5 867.3 189.4 L865.9 192 840.65 192 Q832.25 192 832 183.85 L832 138.55 832 121.85 832 96.2 832 83.45 832 79.45 832 76.2 Q832.25 68 840.65 68 L870.65 68 Q870.65 83.3 878.25 94.1 885.9 104.9 896.65 104.9 907.4 104.9 915 94.1 922.65 83.3 922.65 68 L951.35 68 Q959.75 68 960 76.2 L960 79.45 960 83.45 960 96.2 960 121.85 960 138.55 M845.15 116.95 Q843.9 121.65 844.7 125.95 845.1 128.15 846.1 130.3 847.8 134 850.6 136.1 852.55 137.55 855 138.2 860.95 139.75 866.6 135.75 872.15 131.9 874.1 124.7 L874.1 124.65 Q875.7 118.65 872.6 113.3 870.6 109.9 867.5 108 L867.1 107.8 Q865.45 106.85 863.5 106.35 L859.65 105.8 Q855.7 105.75 852.1 107.85 846.8 110.9 845.15 116.9 L845.15 116.95 M909.35 131.25 L909.55 128.9 909.55 128 Q909.2 125.6 905.75 123.9 901.9 122.05 896.5 122.05 891.1 122.05 887.25 123.9 883.75 125.6 883.45 128 L883.45 128.9 883.65 131.25 Q884.3 135.2 887.25 138.15 889.4 140.3 892.05 141.25 L891.2 142.25 889.15 143.75 886.05 144.4 Q883.05 144.4 880.9 142.25 L879.55 140.5 879 140.05 878.35 140.15 873.75 142.7 Q873.4 142.9 873.35 143.25 873.2 143.55 873.4 143.9 874 145 874.9 146.1 L875.95 147.25 Q880.1 151.45 886.05 151.45 891.95 151.45 896.2 147.25 L896.5 146.95 896.8 147.25 Q901 151.45 906.9 151.45 912.8 151.45 917.05 147.25 L918.1 146.1 919.6 143.8 919.65 143.15 919.2 142.65 914.5 140.2 913.8 140.15 913.3 140.6 912.05 142.25 Q909.9 144.4 906.9 144.4 905.25 144.4 903.85 143.75 902.75 143.2 901.8 142.25 L900.95 141.25 Q903.6 140.3 905.75 138.15 908.7 135.2 909.35 131.25 M946.85 116.95 L946.85 116.9 Q945.2 110.9 939.9 107.85 936.3 105.75 932.4 105.8 930.45 105.8 928.5 106.35 926.55 106.85 924.9 107.8 L924.55 108 Q921.4 109.9 919.4 113.3 916.3 118.65 917.9 124.65 L917.9 124.7 Q919.85 131.9 925.4 135.75 931.05 139.75 937 138.2 939.45 137.55 941.45 136.1 944.2 134 945.9 130.3 946.9 128.15 947.3 125.95 948.1 121.65 946.85 116.95"/>
+ <path stroke="none" fill="#353434" d="M960 96.2 L960.95 97.1 Q965.95 102.05 965.95 109 965.95 116.05 960.95 120.95 L960 121.85 960 96.2 M832 121.85 L831.05 120.95 Q826.05 116.05 826.05 109 826.05 102.05 831.05 97.1 L832 96.2 832 121.85"/>
+ <path stroke="none" fill="#5B5B5B" d="M845.15 116.95 L845.15 116.9 Q846.8 110.9 852.1 107.85 855.7 105.75 859.65 105.8 L863.5 106.35 Q865.45 106.85 867.1 107.8 L867.5 108 Q870.6 109.9 872.6 113.3 875.7 118.65 874.1 124.65 L874.1 124.7 Q872.15 131.9 866.6 135.75 860.95 139.75 855 138.2 852.55 137.55 850.6 136.1 847.8 134 846.1 130.3 845.1 128.15 844.7 125.95 843.9 121.65 845.15 116.95 M850.8 120.4 Q850.8 122.2 851.4 123.75 852.05 125.45 853.5 126.85 855.95 129.35 859.35 129.65 L860.1 129.65 Q863.9 129.65 866.65 126.85 869.35 124.25 869.35 120.4 869.35 116.85 867.1 114.3 L866.65 113.85 Q863.9 111.15 860.1 111.15 L859.8 111.15 Q856.15 111.25 853.5 113.85 850.8 116.55 850.8 120.4 M855.3 120.55 Q855.3 118.1 857 116.45 857.8 115.65 858.8 115.25 859.85 114.75 861.1 114.75 863.5 114.75 865.25 116.45 L866.3 117.8 Q866.95 119 866.95 120.55 866.95 122.95 865.25 124.6 863.85 126 862.1 126.3 L861.1 126.35 Q858.7 126.35 857 124.6 855.3 122.95 855.3 120.55 M909.35 131.25 Q908.7 135.2 905.75 138.15 903.6 140.3 900.95 141.25 896.7 143 892.05 141.25 889.4 140.3 887.25 138.15 884.3 135.2 883.65 131.25 884.35 129.3 887.25 127.9 891.1 126.05 896.5 126.05 901.9 126.05 905.75 127.9 908.65 129.35 909.35 131.25 M936.7 120.55 Q936.7 122.95 935 124.6 933.3 126.35 930.9 126.35 L929.9 126.3 Q928.1 125.95 926.75 124.6 925.05 122.95 925.05 120.55 925.05 119 925.75 117.8 926.1 117.05 926.75 116.45 928.5 114.75 930.9 114.75 932.15 114.75 933.25 115.25 934.2 115.65 935 116.45 936.7 118.1 936.7 120.55 M946.85 116.95 Q948.1 121.65 947.3 125.95 946.9 128.15 945.9 130.3 944.2 134 941.45 136.1 939.45 137.55 937 138.2 931.05 139.75 925.4 135.75 919.85 131.9 917.9 124.7 L917.9 124.65 Q916.3 118.65 919.4 113.3 921.4 109.9 924.55 108 L924.9 107.8 Q926.55 106.85 928.5 106.35 930.45 105.8 932.4 105.8 936.3 105.75 939.9 107.85 945.2 110.9 946.85 116.9 L946.85 116.95 M941.2 120.4 Q941.2 116.55 938.5 113.85 935.85 111.25 932.25 111.15 L931.9 111.15 Q928.1 111.15 925.35 113.85 L924.95 114.3 Q922.65 116.85 922.65 120.4 922.65 124.25 925.35 126.85 928.1 129.65 931.9 129.65 L932.7 129.65 Q936.05 129.35 938.5 126.85 939.95 125.45 940.6 123.75 941.2 122.2 941.2 120.4"/>
+ <path stroke="none" fill="#666666" d="M883.65 131.25 L883.45 128.9 883.45 128 Q883.75 125.6 887.25 123.9 891.1 122.05 896.5 122.05 901.9 122.05 905.75 123.9 909.2 125.6 909.55 128 L909.55 128.9 909.35 131.25 Q908.65 129.35 905.75 127.9 901.9 126.05 896.5 126.05 891.1 126.05 887.25 127.9 884.35 129.3 883.65 131.25"/>
+ <path stroke="none" fill="#464646" d="M900.95 141.25 L901.8 142.25 Q902.75 143.2 903.85 143.75 905.25 144.4 906.9 144.4 909.9 144.4 912.05 142.25 L913.3 140.6 913.8 140.15 914.5 140.2 919.2 142.65 919.65 143.15 919.6 143.8 918.1 146.1 917.05 147.25 Q912.8 151.45 906.9 151.45 901 151.45 896.8 147.25 L896.5 146.95 896.2 147.25 Q891.95 151.45 886.05 151.45 880.1 151.45 875.95 147.25 L874.9 146.1 Q874 145 873.4 143.9 873.2 143.55 873.35 143.25 873.4 142.9 873.75 142.7 L878.35 140.15 879 140.05 879.55 140.5 880.9 142.25 Q883.05 144.4 886.05 144.4 L889.15 143.75 891.2 142.25 892.05 141.25 Q896.7 143 900.95 141.25"/>
+ <path stroke="none" fill="#E5E5E5" d="M927.1 192 L865.9 192 867.3 189.4 Q869.55 185.5 872 182.35 882.6 168.5 896.5 168.5 910.4 168.5 921 182.35 923.4 185.5 925.65 189.4 L927.1 192"/>
+ <path stroke="none" fill="#1D3138" d="M695.35 60 Q708 60 708 72.7 L708 146.5 Q714.7 153.55 716.4 161.85 718.4 171.85 712.6 177.4 710.55 179.4 708 180.5 L708 183.85 708 184 Q707.7 196 695.35 196 L584.65 196 Q572.3 196 572 184 L572 183.85 572 180.6 Q569.25 179.5 567.15 177.4 561.3 171.85 563.35 161.85 565.05 153.4 572 146.15 L572 72.7 Q572 60 584.65 60 L695.35 60 M704 76.2 L704 72.7 Q704 64 695.35 64 L584.65 64 Q576 64 576 72.7 L576 76.2 576 147.9 575.1 148.7 575 148.8 Q568.8 155.2 567.25 162.65 565.7 170.3 569.95 174.55 572.4 177 576 177.55 L576 183.85 Q576.25 192 584.65 192 L600.65 192 678.9 192 695.35 192 Q703.75 192 704 183.85 L704 177.5 Q707.4 176.9 709.75 174.55 714 170.3 712.45 162.65 710.9 155.2 704.7 148.8 L704.6 148.7 704 148.15 704 76.2"/>
+ <path stroke="none" fill="#447180" d="M704 76.2 Q703.75 68 695.35 68 L584.65 68 Q576.25 68 576 76.2 L576 72.7 Q576 64 584.65 64 L695.35 64 Q704 64 704 72.7 L704 76.2"/>
+ <path stroke="none" fill="#365A66" d="M704 76.2 L704 148.15 704 177.5 704 183.85 Q703.75 192 695.35 192 L678.9 192 677.05 189.15 Q672.65 182.8 667.75 178.3 655.4 166.9 639.8 166.9 624.15 166.9 611.85 178.3 606.95 182.85 602.55 189.15 L600.65 192 584.65 192 Q576.25 192 576 183.85 L576 177.55 576 147.9 576 76.2 Q576.25 68 584.65 68 L695.35 68 Q703.75 68 704 76.2 M686.75 111.25 Q684.9 104.7 678.95 101.25 672.75 97.65 665.9 99.5 659.1 101.3 655.5 107.55 652.05 113.45 653.65 120.15 L653.8 120.7 Q657.05 132.8 664.25 140 671.4 147.2 678.25 145.4 685.1 143.55 687.65 133.7 690.15 123.9 686.9 111.8 L686.75 111.25 M655.55 137.9 Q654.8 133.05 651.15 129.35 650.25 128.45 649.35 127.8 645.3 124.75 640 124.75 634.7 124.75 630.65 127.8 629.7 128.45 628.8 129.35 625.15 133.05 624.4 137.9 L624.2 140.5 624.25 141.55 Q624.55 145.05 628.8 147.55 633.45 150.25 640 150.25 646.55 150.25 651.15 147.55 655.4 145.05 655.7 141.55 L655.75 140.5 655.55 137.9 M626.4 120.2 Q628.05 113.5 624.55 107.55 621.05 101.35 614.15 99.55 607.3 97.65 601.1 101.25 595.15 104.7 593.25 111.25 L593.05 111.8 Q589.85 123.9 592.45 133.75 595.05 143.55 601.85 145.45 608.75 147.25 615.9 140 623 132.85 626.2 120.75 L626.4 120.2"/>
+ <path stroke="none" fill="#D5EEF7" d="M626.4 120.2 L626.2 120.75 Q623 132.85 615.9 140 608.75 147.25 601.85 145.45 595.05 143.55 592.45 133.75 589.85 123.9 593.05 111.8 L593.25 111.25 Q595.15 104.7 601.1 101.25 607.3 97.65 614.15 99.55 621.05 101.35 624.55 107.55 628.05 113.5 626.4 120.2 M686.75 111.25 L686.9 111.8 Q690.15 123.9 687.65 133.7 685.1 143.55 678.25 145.4 671.4 147.2 664.25 140 657.05 132.8 653.8 120.7 L653.65 120.15 Q652.05 113.45 655.5 107.55 659.1 101.3 665.9 99.5 672.75 97.65 678.95 101.25 684.9 104.7 686.75 111.25 M679.05 123.1 Q679.05 118.7 675.95 115.65 672.85 112.6 668.5 112.6 664.25 112.6 661.05 115.65 658.05 118.7 658.05 123.1 658.05 127.45 661.05 130.45 664.25 133.6 668.5 133.6 672.85 133.6 675.95 130.45 679.05 127.45 679.05 123.1 M600.8 123.1 Q600.8 127.45 603.85 130.45 606.95 133.6 611.3 133.6 615.6 133.6 618.75 130.45 621.8 127.45 621.8 123.1 621.8 118.7 618.75 115.65 615.6 112.6 611.3 112.6 606.95 112.6 603.85 115.65 600.8 118.7 600.8 123.1"/>
+ <path stroke="none" fill="#FFFFFF" d="M600.8 123.1 Q600.8 118.7 603.85 115.65 606.95 112.6 611.3 112.6 615.6 112.6 618.75 115.65 621.8 118.7 621.8 123.1 621.8 127.45 618.75 130.45 615.6 133.6 611.3 133.6 606.95 133.6 603.85 130.45 600.8 127.45 600.8 123.1 M679.05 123.1 Q679.05 127.45 675.95 130.45 672.85 133.6 668.5 133.6 664.25 133.6 661.05 130.45 658.05 127.45 658.05 123.1 658.05 118.7 661.05 115.65 664.25 112.6 668.5 112.6 672.85 112.6 675.95 115.65 679.05 118.7 679.05 123.1 M674.3 125.05 Q674.3 122.25 672.4 120.4 670.45 118.45 667.7 118.45 665 118.45 663 120.4 661.1 122.25 661.1 125.05 L661.1 125.7 Q661.3 127.95 663 129.6 665 131.5 667.7 131.5 670.45 131.5 672.4 129.6 674.05 127.95 674.25 125.7 L674.3 125.05 M605.55 125.05 L605.6 125.7 Q605.75 127.95 607.4 129.6 609.35 131.5 612.15 131.5 614.8 131.5 616.8 129.6 618.55 127.95 618.7 125.7 L618.75 125.05 Q618.75 122.25 616.8 120.4 614.8 118.45 612.15 118.45 609.35 118.45 607.4 120.4 605.55 122.25 605.55 125.05"/>
+ <path stroke="none" fill="#5B5B5B" d="M605.55 125.05 Q605.55 122.25 607.4 120.4 609.35 118.45 612.15 118.45 614.8 118.45 616.8 120.4 618.75 122.25 618.75 125.05 L618.7 125.7 Q618.55 127.95 616.8 129.6 614.8 131.5 612.15 131.5 609.35 131.5 607.4 129.6 605.75 127.95 605.6 125.7 L605.55 125.05 M674.3 125.05 L674.25 125.7 Q674.05 127.95 672.4 129.6 670.45 131.5 667.7 131.5 665 131.5 663 129.6 661.3 127.95 661.1 125.7 L661.1 125.05 Q661.1 122.25 663 120.4 665 118.45 667.7 118.45 670.45 118.45 672.4 120.4 674.3 122.25 674.3 125.05"/>
+ <path stroke="none" fill="#FF9900" d="M624.4 137.9 Q625.15 133.05 628.8 129.35 629.7 128.45 630.65 127.8 634.7 124.75 640 124.75 645.3 124.75 649.35 127.8 650.25 128.45 651.15 129.35 654.8 133.05 655.55 137.9 654.85 139.9 651.15 141.4 646.55 143.3 640 143.3 633.45 143.3 628.8 141.4 625.1 139.9 624.4 137.9"/>
+ <path stroke="none" fill="#E08600" d="M624.4 137.9 Q625.1 139.9 628.8 141.4 633.45 143.3 640 143.3 646.55 143.3 651.15 141.4 654.85 139.9 655.55 137.9 L655.75 140.5 655.7 141.55 Q655.4 145.05 651.15 147.55 646.55 150.25 640 150.25 633.45 150.25 628.8 147.55 624.55 145.05 624.25 141.55 L624.2 140.5 624.4 137.9"/>
+ <path stroke="none" fill="#F2F9FB" d="M600.65 192 L602.55 189.15 Q606.95 182.85 611.85 178.3 624.15 166.9 639.8 166.9 655.4 166.9 667.75 178.3 672.65 182.8 677.05 189.15 L678.9 192 600.65 192"/>
+ <path stroke="none" fill="#29454F" d="M576 147.9 L576 177.55 Q572.4 177 569.95 174.55 565.7 170.3 567.25 162.65 568.8 155.2 575 148.8 L575.1 148.7 576 147.9 M704 177.5 L704 148.15 704.6 148.7 704.7 148.8 Q710.9 155.2 712.45 162.65 714 170.3 709.75 174.55 707.4 176.9 704 177.5"/>
+ <path stroke="none" fill="#987900" d="M421.05 44.95 L420.85 45.7 420.8 45.85 Q419.25 51.6 414.05 54.7 L413.55 55 413.3 55.15 411.95 55.75 410.45 60 439.35 60 Q452 60 452 72.7 L452 74.8 453.6 75.55 453.65 75.6 Q459.75 79 464.05 86.4 L464 86.4 Q468.25 93.65 468.15 100.65 L468.15 100.7 468.05 102.9 Q467.3 108.9 463.5 111.55 L463.45 111.6 462.5 112.25 462.25 112.4 Q461.7 112.65 461.15 113 L461.05 113.1 Q456.5 115.7 452 117.25 L452 183.85 452 184 Q451.7 196 439.35 196 L328.65 196 Q316.3 196 316 184 L316 183.85 316 117.3 Q311.5 115.7 306.9 113.1 L306.8 113 305.7 112.4 305.5 112.25 304.55 111.6 304.45 111.55 Q300.65 108.9 300 102.85 L300 103.1 299.8 100.7 299.8 100.65 Q299.7 93.65 303.95 86.4 308.2 79 314.35 75.6 L314.4 75.55 316 74.75 316 72.7 Q316 60 328.65 60 L357.55 60 356.05 55.75 354.05 54.8 353.9 54.75 353.6 54.55 Q348.65 51.45 347.15 45.85 L347.1 45.7 346.95 44.95 346.9 44.75 Q345.85 39.4 348.6 34.7 351.6 29.5 357.45 27.9 L357.5 27.9 Q363.15 26.35 368.15 29.2 L368.6 29.4 370.55 30.75 370.45 30.65 Q374.05 33.45 375.35 38.25 376.35 41.8 375.65 45.05 L375.65 44.95 Q375.25 46.95 374.25 48.9 L373.9 49.6 372.65 51.3 374.3 60 393.65 60 395.3 51.3 394.1 49.55 393.75 48.85 Q392.7 46.95 392.35 45 L392.35 45.1 Q391.65 41.8 392.6 38.35 L392.6 38.25 Q393.7 33.9 396.85 31.15 L399.3 29.4 399.35 29.35 Q404.55 26.3 410.5 27.9 416.25 29.45 419.35 34.65 L419.35 34.7 Q422.1 39.4 421.1 44.75 L421.05 44.95 M404.8 64 L408.85 52.5 Q410.2 52.2 411.5 51.55 L412 51.25 Q415.8 49 416.95 44.8 L417.15 43.95 Q417.9 40.1 415.9 36.7 413.65 32.9 409.45 31.75 405.15 30.6 401.35 32.8 400.35 33.4 399.5 34.15 397.25 36.15 396.45 39.3 395.75 41.85 396.25 44.25 396.55 45.8 397.45 47.35 L397.45 47.4 Q398.4 48.9 399.6 50.05 L397 64 371 64 368.35 50.05 370.5 47.45 370.5 47.4 Q371.4 45.85 371.7 44.2 372.2 41.85 371.5 39.3 370.55 35.85 367.95 33.8 L366.6 32.85 366.55 32.85 Q362.8 30.6 358.5 31.75 354.25 32.9 352.05 36.7 350.05 40.1 350.8 43.95 L351 44.8 Q352.1 48.9 355.7 51.15 L355.95 51.3 Q357.5 52.15 359.15 52.5 L363.15 64 328.65 64 Q320 64 320 72.7 L320 76.2 320 77.6 Q318.25 77.95 316.3 79.05 311.05 82.05 307.4 88.4 303.75 94.65 303.8 100.65 L303.95 102.4 Q304.4 106.5 306.85 108.35 L307.6 108.85 308.9 109.6 Q314.55 112.85 320 114.3 L320 183.85 Q320.25 192 328.65 192 L339.1 192 430 192 439.35 192 Q447.75 192 448 183.85 L448 114.3 Q453.45 112.85 459.05 109.6 L460.35 108.85 461.1 108.35 Q463.55 106.5 464.05 102.4 L464.15 100.65 Q464.2 94.65 460.55 88.4 456.9 82.05 451.65 79.05 449.7 78 448 77.6 L448 76.2 448 72.7 Q448 64 439.35 64 L404.8 64"/>
+ <path stroke="none" fill="#DBAF00" d="M350.8 43.95 Q350.05 40.1 352.05 36.7 354.25 32.9 358.5 31.75 362.8 30.6 366.55 32.85 L366.6 32.85 367.95 33.8 Q370.55 35.85 371.5 39.3 372.2 41.85 371.7 44.2 L371.5 43.3 Q370.55 39.85 367.95 37.8 L366.6 36.85 366.55 36.85 Q362.8 34.6 358.5 35.75 354.25 36.9 352.05 40.7 351.15 42.3 350.8 43.95 M396.25 44.25 Q395.75 41.85 396.45 39.3 397.25 36.15 399.5 34.15 400.35 33.4 401.35 32.8 405.15 30.6 409.45 31.75 413.65 32.9 415.9 36.7 417.9 40.1 417.15 43.95 416.8 42.3 415.9 40.7 413.65 36.9 409.45 35.75 405.15 34.6 401.35 36.8 400.35 37.4 399.5 38.15 397.25 40.15 396.45 43.3 L396.25 44.25"/>
+ <path stroke="none" fill="#CBA200" d="M396.25 44.25 L396.45 43.3 Q397.25 40.15 399.5 38.15 400.35 37.4 401.35 36.8 405.15 34.6 409.45 35.75 413.65 36.9 415.9 40.7 416.8 42.3 417.15 43.95 L416.95 44.8 Q415.8 49 412 51.25 L411.5 51.55 Q410.2 52.2 408.85 52.5 L404.8 64 403.4 68 402.3 71.15 402.3 71.2 Q401.8 72.45 400.65 73.05 L400.65 73.1 398.25 73.35 398.3 73.35 Q397.1 73.1 396.35 71.9 L396.3 71.8 Q395.65 70.7 395.95 69.45 L396.25 68 397 64 399.6 50.05 Q398.4 48.9 397.45 47.4 L397.45 47.35 Q396.55 45.8 396.25 44.25 M460.35 108.85 L459.05 109.6 Q453.45 112.85 448 114.3 L448 93.55 Q449.15 93.85 450.45 94.55 454.75 97.05 457.75 102.3 459.7 105.6 460.35 108.85 M320 114.3 Q314.55 112.85 308.9 109.6 L307.6 108.85 Q308.25 105.6 310.2 102.3 313.2 97.05 317.5 94.55 318.8 93.85 320 93.55 L320 114.3 M363.15 64 L359.15 52.5 Q357.5 52.15 355.95 51.3 L355.7 51.15 Q352.1 48.9 351 44.8 L350.8 43.95 Q351.15 42.3 352.05 40.7 354.25 36.9 358.5 35.75 362.8 34.6 366.55 36.85 L366.6 36.85 367.95 37.8 Q370.55 39.85 371.5 43.3 L371.7 44.2 Q371.4 45.85 370.5 47.4 L370.5 47.45 368.35 50.05 371 64 371.8 68 372.05 69.5 372 69.45 Q372.2 70.65 371.7 71.7 L371.55 71.95 371.6 71.95 Q370.9 73 369.7 73.4 L367.3 73.15 367.2 73.1 Q366.15 72.5 365.7 71.2 L365.65 71.2 364.55 68 363.15 64"/>
+ <path stroke="none" fill="#EEBE00" d="M393.25 102.6 Q393.95 103.1 394.8 103.1 395.7 103.1 396.4 102.6 L406.1 95.55 Q406.75 95 407 94.2 407.25 93.4 407 92.6 L403.3 81.15 Q403.05 80.3 402.4 79.8 401.7 79.3 400.8 79.3 L388.75 79.3 Q387.85 79.3 387.2 79.8 386.5 80.3 386.25 81.15 L382.55 92.6 Q382.3 93.4 382.55 94.2 382.8 95 383.5 95.55 L393.25 102.6 M380.6 86.65 L381.05 85.1 Q381.05 84.25 380.6 83.55 L375.65 76.75 Q375.15 76.05 374.35 75.8 373.5 75.5 372.7 75.8 L364.75 78.35 Q363.9 78.65 363.4 79.35 362.9 80 362.9 80.85 L362.9 89.25 Q362.9 90.15 363.4 90.85 363.9 91.5 364.75 91.75 L372.7 94.35 Q373.5 94.6 374.35 94.35 375.15 94.1 375.65 93.45 L380.6 86.65 M344.55 68 L364.55 68 365.65 71.2 365.7 71.2 Q366.15 72.5 367.2 73.1 L367.3 73.15 369.7 73.4 Q370.9 73 371.6 71.95 L371.55 71.95 371.7 71.7 Q372.2 70.65 372 69.45 L372.05 69.5 371.8 68 396.25 68 395.95 69.45 Q395.65 70.7 396.3 71.8 L396.35 71.9 Q397.1 73.1 398.3 73.35 L398.25 73.35 400.65 73.1 400.65 73.05 Q401.8 72.45 402.3 71.2 L402.3 71.15 403.4 68 424.6 68 Q422.7 88.6 413.2 104.05 401.35 123.35 384.55 123.35 367.8 123.35 355.95 104.05 346.4 88.6 344.55 68 M372 110.3 Q372.2 111.1 372.8 111.75 373.45 112.25 374.3 112.4 L380.5 113.05 382.1 112.7 Q382.85 112.25 383.2 111.45 L385.75 105.75 Q386.1 104.95 385.95 104.15 385.75 103.25 385.15 102.7 L380.5 98.5 Q379.85 97.9 379 97.85 378.15 97.75 377.4 98.15 L371.95 101.3 Q371.2 101.7 370.85 102.55 370.5 103.3 370.7 104.2 L372 110.3"/>
+ <path stroke="none" fill="#FFCC00" d="M372 110.3 L370.7 104.2 Q370.5 103.3 370.85 102.55 371.2 101.7 371.95 101.3 L377.4 98.15 Q378.15 97.75 379 97.85 379.85 97.9 380.5 98.5 L385.15 102.7 Q385.75 103.25 385.95 104.15 386.1 104.95 385.75 105.75 L383.2 111.45 Q382.85 112.25 382.1 112.7 L380.5 113.05 374.3 112.4 Q373.45 112.25 372.8 111.75 372.2 111.1 372 110.3 M448 76.2 L448 77.6 Q449.7 78 451.65 79.05 456.9 82.05 460.55 88.4 464.2 94.65 464.15 100.65 L464.05 102.4 Q463.5 97.45 460.55 92.4 456.9 86.05 451.65 83.05 449.7 82 448 81.6 L448 93.55 448 114.3 448 183.85 Q447.75 192 439.35 192 L430 192 430.1 191.9 Q425.15 190 425.2 184.45 424.9 181.35 424.1 178.4 L423.65 176.85 Q422.5 173.45 420.7 170.35 417.9 165.6 413.5 161.5 401.7 150.6 385.05 150.6 368.4 150.6 356.55 161.5 352.1 165.6 349.35 170.4 347.85 173 346.85 175.75 L345.85 179.1 Q345.2 181.7 344.95 184.45 343.4 190.15 339.1 192 L328.65 192 Q320.25 192 320 183.85 L320 114.3 320 93.55 320 81.6 Q318.25 81.95 316.3 83.05 311.05 86.05 307.4 92.4 304.45 97.45 303.95 102.4 L303.8 100.65 Q303.75 94.65 307.4 88.4 311.05 82.05 316.3 79.05 318.25 77.95 320 77.6 L320 76.2 Q320.25 68 328.65 68 L344.55 68 Q346.4 88.6 355.95 104.05 367.8 123.35 384.55 123.35 401.35 123.35 413.2 104.05 422.7 88.6 424.6 68 L439.35 68 Q447.75 68 448 76.2 M393.25 102.6 L383.5 95.55 Q382.8 95 382.55 94.2 382.3 93.4 382.55 92.6 L386.25 81.15 Q386.5 80.3 387.2 79.8 387.85 79.3 388.75 79.3 L400.8 79.3 Q401.7 79.3 402.4 79.8 403.05 80.3 403.3 81.15 L407 92.6 Q407.25 93.4 407 94.2 406.75 95 406.1 95.55 L396.4 102.6 Q395.7 103.1 394.8 103.1 393.95 103.1 393.25 102.6 M380.6 86.65 L375.65 93.45 Q375.15 94.1 374.35 94.35 373.5 94.6 372.7 94.35 L364.75 91.75 Q363.9 91.5 363.4 90.85 362.9 90.15 362.9 89.25 L362.9 80.85 Q362.9 80 363.4 79.35 363.9 78.65 364.75 78.35 L372.7 75.8 Q373.5 75.5 374.35 75.8 375.15 76.05 375.65 76.75 L380.6 83.55 Q381.05 84.25 381.05 85.1 L380.6 86.65 M335.5 134.55 Q335.5 139.7 339.15 143.3 342.8 147 348 147 353.1 147 356.8 143.3 360.45 139.7 360.45 134.55 360.45 129.35 356.8 125.7 353.1 122.05 348 122.05 342.8 122.05 339.15 125.7 335.5 129.35 335.5 134.55 M432.5 134.55 Q432.5 129.35 428.85 125.7 425.2 122.05 420 122.05 414.9 122.05 411.2 125.7 407.55 129.35 407.55 134.55 407.55 139.7 411.2 143.3 414.9 147 420 147 425.2 147 428.85 143.3 432.5 139.7 432.5 134.55"/>
+ <path stroke="none" fill="#FFD738" d="M404.8 64 L439.35 64 Q448 64 448 72.7 L448 76.2 Q447.75 68 439.35 68 L424.6 68 403.4 68 404.8 64 M320 76.2 L320 72.7 Q320 64 328.65 64 L363.15 64 364.55 68 344.55 68 328.65 68 Q320.25 68 320 76.2 M371 64 L397 64 396.25 68 371.8 68 371 64"/>
+ <path stroke="none" fill="#E9BB00" d="M464.05 102.4 Q463.55 106.5 461.1 108.35 L460.35 108.85 Q459.7 105.6 457.75 102.3 454.75 97.05 450.45 94.55 449.15 93.85 448 93.55 L448 81.6 Q449.7 82 451.65 83.05 456.9 86.05 460.55 92.4 463.5 97.45 464.05 102.4 M307.6 108.85 L306.85 108.35 Q304.4 106.5 303.95 102.4 304.45 97.45 307.4 92.4 311.05 86.05 316.3 83.05 318.25 81.95 320 81.6 L320 93.55 Q318.8 93.85 317.5 94.55 313.2 97.05 310.2 102.3 308.25 105.6 307.6 108.85"/>
+ <path stroke="none" fill="#FFFFFF" d="M335.5 134.55 Q335.5 129.35 339.15 125.7 342.8 122.05 348 122.05 353.1 122.05 356.8 125.7 360.45 129.35 360.45 134.55 360.45 139.7 356.8 143.3 353.1 147 348 147 342.8 147 339.15 143.3 335.5 139.7 335.5 134.55 M340.2 134.75 Q340.2 138.35 342.75 140.8 345.25 143.35 348.9 143.35 352.45 143.35 355 140.8 357.55 138.35 357.55 134.75 357.55 131.15 355 128.6 352.45 126.1 348.9 126.1 345.25 126.1 342.75 128.6 340.2 131.15 340.2 134.75 M432.5 134.55 Q432.5 139.7 428.85 143.3 425.2 147 420 147 414.9 147 411.2 143.3 407.55 139.7 407.55 134.55 407.55 129.35 411.2 125.7 414.9 122.05 420 122.05 425.2 122.05 428.85 125.7 432.5 129.35 432.5 134.55 M427.75 134.75 Q427.75 131.15 425.25 128.6 422.75 126.1 419.1 126.1 415.55 126.1 412.95 128.6 410.45 131.15 410.45 134.75 410.45 138.35 412.95 140.8 415.55 143.35 419.1 143.35 422.75 143.35 425.25 140.8 427.75 138.35 427.75 134.75"/>
+ <path stroke="none" fill="#5B5B5B" d="M427.75 134.75 Q427.75 138.35 425.25 140.8 422.75 143.35 419.1 143.35 415.55 143.35 412.95 140.8 410.45 138.35 410.45 134.75 410.45 131.15 412.95 128.6 415.55 126.1 419.1 126.1 422.75 126.1 425.25 128.6 427.75 131.15 427.75 134.75 M340.2 134.75 Q340.2 131.15 342.75 128.6 345.25 126.1 348.9 126.1 352.45 126.1 355 128.6 357.55 131.15 357.55 134.75 357.55 138.35 355 140.8 352.45 143.35 348.9 143.35 345.25 143.35 342.75 140.8 340.2 138.35 340.2 134.75"/>
+ <path stroke="none" fill="#D2A800" d="M430 192 L339.1 192 Q343.4 190.15 344.95 184.45 345.2 181.7 345.85 179.1 L346.85 175.75 Q347.85 173 349.35 170.4 352.1 165.6 356.55 161.5 368.4 150.6 385.05 150.6 401.7 150.6 413.5 161.5 417.9 165.6 420.7 170.35 422.5 173.45 423.65 176.85 L424.1 178.4 Q424.9 181.35 425.2 184.45 425.15 190 430.1 191.9 L430 192 M403.5 161 Q402 159.5 399.05 160.35 396.1 161.15 393.45 163.8 L393.3 163.95 392.55 165 Q391.9 166.1 391.9 167.5 391.9 169.65 393.4 171.15 394.9 172.65 397.05 172.65 399.1 172.65 400.6 171.25 L400.75 171.1 Q403.4 168.45 404.2 165.5 404.95 162.95 403.9 161.45 L403.5 161 M369.4 171.25 Q370.9 172.65 372.95 172.65 375.1 172.65 376.6 171.15 378.1 169.65 378.1 167.5 378.1 166.1 377.5 165 L376.7 163.95 376.55 163.8 Q373.9 161.15 370.95 160.35 368 159.5 366.5 161 L366.15 161.45 Q365.05 162.95 365.8 165.5 366.6 168.45 369.25 171.1 L369.4 171.25"/>
+ <path stroke="none" fill="#A38200" d="M369.4 171.25 L369.25 171.1 Q366.6 168.45 365.8 165.5 365.05 162.95 366.15 161.45 L366.5 161 Q368 159.5 370.95 160.35 373.9 161.15 376.55 163.8 L376.7 163.95 377.5 165 Q378.1 166.1 378.1 167.5 378.1 169.65 376.6 171.15 375.1 172.65 372.95 172.65 370.9 172.65 369.4 171.25 M403.5 161 L403.9 161.45 Q404.95 162.95 404.2 165.5 403.4 168.45 400.75 171.1 L400.6 171.25 Q399.1 172.65 397.05 172.65 394.9 172.65 393.4 171.15 391.9 169.65 391.9 167.5 391.9 166.1 392.55 165 L393.3 163.95 393.45 163.8 Q396.1 161.15 399.05 160.35 402 159.5 403.5 161"/>
+ <path stroke="none" fill="#1B8045" d="M183.35 60 Q196 60 196 72.7 L196 183.85 196 184 Q195.7 196 183.35 196 L145.25 196 145.25 199 Q145.3 201.85 143.2 204.05 L143.05 204.2 Q140.95 206.2 138.05 206.2 135 206.2 133 204.15 L128.05 199.2 123.1 204.15 123 204.2 Q120.9 206.2 117.95 206.2 115.05 206.2 112.95 204.2 L112.8 204.05 Q110.7 201.85 110.75 199 L110.75 196 72.65 196 Q60.3 196 60 184 L60 183.85 60 72.7 Q60 60 72.65 60 L183.35 60 M192 76.2 L192 72.7 Q192 64 183.35 64 L72.65 64 Q64 64 64 72.7 L64 76.2 64 183.85 Q64.25 192 72.65 192 L114.75 192 114.75 199 Q114.75 200.3 115.7 201.3 116.65 202.2 117.95 202.2 119.3 202.2 120.25 201.3 L128 193.5 135.8 201.3 Q136.7 202.2 138.05 202.2 139.35 202.2 140.3 201.3 141.25 200.3 141.25 199 L141.25 192 183.35 192 Q191.75 192 192 183.85 L192 76.2"/>
+ <path stroke="none" fill="#31DE7A" d="M192 76.2 Q191.75 68 183.35 68 L168.4 68 87.65 68 72.65 68 Q64.25 68 64 76.2 L64 72.7 Q64 64 72.65 64 L183.35 64 Q192 64 192 72.7 L192 76.2"/>
+ <path stroke="none" fill="#2ECC71" d="M192 76.2 L192 183.85 Q191.75 192 183.35 192 L141.25 192 141.25 187.5 145.25 186.6 148.4 185.65 157.4 181.85 157.9 181.6 160.15 180.3 Q167.15 176.15 173.3 170 178.95 164.35 182.9 158 L184.85 154.6 182.85 156.1 182.4 156.45 181.55 157.05 162.1 167.2 160.7 167.7 Q155.25 169.55 149.5 170.75 L141.25 172.05 136.7 172.5 136.55 172.5 128 173 119.75 172.55 114.75 172.05 112.7 171.8 106.6 170.75 Q100.75 169.55 95.35 167.7 84.9 164.1 75.9 158 L73.2 156.1 71.15 154.55 73.15 158 Q77.1 164.35 82.75 170 88.9 176.15 95.85 180.25 L98 181.5 98.7 181.85 100.4 182.7 109.45 186.2 110.75 186.55 111.9 186.85 113.55 187.25 114.75 187.5 114.75 192 72.65 192 Q64.25 192 64 183.85 L64 76.2 Q64.25 68 72.65 68 L87.65 68 Q89.8 88.65 99 104.3 111.05 124.8 128 124.8 145 124.8 157 104.3 166.2 88.65 168.4 68 L183.35 68 Q191.75 68 192 76.2 M179.65 140.55 Q179.65 134.8 175.6 130.8 171.55 126.75 165.85 126.75 160.25 126.75 156.1 130.8 152.15 134.8 152.15 140.55 152.15 146.25 156.1 150.15 160.25 154.25 165.85 154.25 171.55 154.25 175.6 150.15 179.65 146.25 179.65 140.55 M77.15 140.55 Q77.15 146.25 81.2 150.15 85.25 154.25 90.95 154.25 96.55 154.25 100.7 150.15 104.65 146.25 104.65 140.55 104.65 134.8 100.7 130.8 96.55 126.75 90.95 126.75 85.25 126.75 81.2 130.8 77.15 134.8 77.15 140.55 M120.55 150.15 Q118.95 148.55 116.7 148.55 114.55 148.55 112.95 150.05 L112.8 150.2 Q110.05 152.95 109.15 156.1 108.85 157.15 108.85 158 108.85 159.75 109.9 160.8 110.55 161.45 111.5 161.7 L114.6 161.5 Q116.95 160.85 119.15 159.1 L120.4 158 120.5 157.9 120.65 157.75 Q122.15 156.2 122.15 154 122.15 151.75 120.55 150.15 M146.1 160.8 Q147.15 159.75 147.15 158 L146.85 156.1 Q146 152.95 143.2 150.2 L143.05 150.05 Q141.5 148.55 139.3 148.55 137.05 148.55 135.45 150.15 133.85 151.75 133.85 154 133.85 156.2 135.35 157.75 L135.5 157.9 135.6 158 136.9 159.1 Q139.05 160.85 141.4 161.5 L144.55 161.7 Q145.45 161.45 146.1 160.8"/>
+ <path stroke="none" fill="#FFFFFF" d="M166.85 140.45 Q166.85 136.8 165.9 134.35 164.9 131.85 163.5 131.8 L163.4 131.8 Q162.05 131.85 161.05 134.35 160.05 136.8 160.05 140.45 L160.05 141.3 Q160.15 144.25 161.05 146.4 162.05 148.85 163.4 148.9 L163.5 148.9 Q164.9 148.85 165.9 146.4 166.75 144.25 166.85 141.3 L166.85 140.45 M179.65 140.55 Q179.65 146.25 175.6 150.15 171.55 154.25 165.85 154.25 160.25 154.25 156.1 150.15 152.15 146.25 152.15 140.55 152.15 134.8 156.1 130.8 160.25 126.75 165.85 126.75 171.55 126.75 175.6 130.8 179.65 134.8 179.65 140.55 M95.35 167.7 Q100.75 169.55 106.6 170.75 L102.85 173.85 Q100.5 175.8 98.15 172.1 L95.35 167.7 M149.5 170.75 Q155.25 169.55 160.7 167.7 L157.85 172.1 Q155.5 175.8 153.15 173.85 L149.5 170.75 M89.95 140.45 L89.95 141.3 Q90.05 144.25 90.9 146.4 91.9 148.85 93.3 148.9 L93.4 148.9 Q94.7 148.85 95.75 146.4 96.6 144.25 96.7 141.3 L96.75 140.45 Q96.75 136.8 95.75 134.35 94.7 131.85 93.4 131.8 L93.3 131.8 Q91.9 131.85 90.9 134.35 89.95 136.8 89.95 140.45 M77.15 140.55 Q77.15 134.8 81.2 130.8 85.25 126.75 90.95 126.75 96.55 126.75 100.7 130.8 104.65 134.8 104.65 140.55 104.65 146.25 100.7 150.15 96.55 154.25 90.95 154.25 85.25 154.25 81.2 150.15 77.15 146.25 77.15 140.55"/>
+ <path stroke="none" fill="#5B5B5B" d="M166.85 140.45 L166.85 141.3 Q166.75 144.25 165.9 146.4 164.9 148.85 163.5 148.9 L163.4 148.9 Q162.05 148.85 161.05 146.4 160.15 144.25 160.05 141.3 L160.05 140.45 Q160.05 136.8 161.05 134.35 162.05 131.85 163.4 131.8 L163.5 131.8 Q164.9 131.85 165.9 134.35 166.85 136.8 166.85 140.45 M89.95 140.45 Q89.95 136.8 90.9 134.35 91.9 131.85 93.3 131.8 L93.4 131.8 Q94.7 131.85 95.75 134.35 96.75 136.8 96.75 140.45 L96.7 141.3 Q96.6 144.25 95.75 146.4 94.7 148.85 93.4 148.9 L93.3 148.9 Q91.9 148.85 90.9 146.4 90.05 144.25 89.95 141.3 L89.95 140.45"/>
+ <path stroke="none" fill="#2ABD68" d="M160.7 167.7 L162.1 167.2 181.55 157.05 182.4 156.45 182.85 156.1 184.85 154.6 182.9 158 Q178.95 164.35 173.3 170 167.15 176.15 160.15 180.3 L157.9 181.6 157.4 181.85 148.4 185.65 145.25 186.6 141.25 187.5 141.25 172.05 149.5 170.75 153.15 173.85 Q155.5 175.8 157.85 172.1 L160.7 167.7 M114.75 187.5 L113.55 187.25 111.9 186.85 110.75 186.55 109.45 186.2 100.4 182.7 98.7 181.85 98 181.5 95.85 180.25 Q88.9 176.15 82.75 170 77.1 164.35 73.15 158 L71.15 154.55 73.2 156.1 75.9 158 Q84.9 164.1 95.35 167.7 L98.15 172.1 Q100.5 175.8 102.85 173.85 L106.6 170.75 112.7 171.8 114.75 172.05 114.75 187.5"/>
+ <path stroke="none" fill="#28BD68" d="M87.65 68 L168.4 68 Q166.2 88.65 157 104.3 145 124.8 128 124.8 111.05 124.8 99 104.3 89.8 88.65 87.65 68 M152 93.5 L152.05 93.45 Q152.35 92.45 152.05 91.55 L152.05 91.5 Q151.6 90.35 150.6 89.95 L150.65 90 Q129.05 78.95 105.45 89.95 L105.5 89.95 Q104.35 90.4 104 91.55 103.65 92.45 104 93.45 104.35 94.45 105.45 95 L105.45 95.05 Q129.05 105.95 150.65 95 151.6 94.5 152 93.5 M113.45 112.55 L113.4 112.55 Q128.65 119.6 142.65 112.55 L142.7 112.5 Q143.55 112.1 143.85 111.2 L143.8 111.3 Q144.1 110.45 143.85 109.75 143.55 108.8 142.7 108.4 L142.65 108.4 Q128.7 101.25 113.5 108.35 112.45 108.75 112.2 109.75 111.9 110.45 112.25 111.3 112.5 112.1 113.45 112.55"/>
+ <path stroke="none" fill="#31DB79" d="M113.45 112.55 Q112.5 112.1 112.25 111.3 111.9 110.45 112.2 109.75 112.45 108.75 113.5 108.35 128.7 101.25 142.65 108.4 L142.7 108.4 Q143.55 108.8 143.85 109.75 144.1 110.45 143.8 111.3 L143.85 111.2 Q143.55 112.1 142.7 112.5 L142.65 112.55 Q128.65 119.6 113.4 112.55 L113.45 112.55 M152 93.5 Q151.6 94.5 150.65 95 129.05 105.95 105.45 95.05 L105.45 95 Q104.35 94.45 104 93.45 103.65 92.45 104 91.55 104.35 90.4 105.5 89.95 L105.45 89.95 Q129.05 78.95 150.65 90 L150.6 89.95 Q151.6 90.35 152.05 91.5 L152.05 91.55 Q152.35 92.45 152.05 93.45 L152 93.5"/>
+ <path stroke="none" fill="#24A35A" d="M120.55 150.15 Q122.15 151.75 122.15 154 122.15 156.2 120.65 157.75 L120.5 157.9 120.4 158 119.15 159.1 Q116.95 160.85 114.6 161.5 L111.5 161.7 Q110.55 161.45 109.9 160.8 108.85 159.75 108.85 158 108.85 157.15 109.15 156.1 110.05 152.95 112.8 150.2 L112.95 150.05 Q114.55 148.55 116.7 148.55 118.95 148.55 120.55 150.15 M146.1 160.8 Q145.45 161.45 144.55 161.7 L141.4 161.5 Q139.05 160.85 136.9 159.1 L135.6 158 135.5 157.9 135.35 157.75 Q133.85 156.2 133.85 154 133.85 151.75 135.45 150.15 137.05 148.55 139.3 148.55 141.5 148.55 143.05 150.05 L143.2 150.2 Q146 152.95 146.85 156.1 L147.15 158 Q147.15 159.75 146.1 160.8"/>
+ <path stroke="none" fill="#E74C3C" d="M114.75 172.05 L119.75 172.55 128 173 128 193.5 120.25 201.3 Q119.3 202.2 117.95 202.2 116.65 202.2 115.7 201.3 114.75 200.3 114.75 199 L114.75 192 114.75 187.5 114.75 172.05"/>
+ <path stroke="none" fill="#D24436" d="M141.25 187.5 L141.25 192 141.25 199 Q141.25 200.3 140.3 201.3 139.35 202.2 138.05 202.2 136.7 202.2 135.8 201.3 L128 193.5 128 173 136.55 172.5 136.7 172.5 141.25 172.05 141.25 187.5"/>
+ <path stroke="none" fill="#2C2B2B" d="M1238.65 852.35 Q1244.65 854.1 1247.15 860.7 L1247.2 860.75 Q1248.55 864.6 1248.2 868.95 L1248.2 869.05 Q1247.9 871.85 1246.85 874.9 L1246.85 874.95 Q1244.15 882.45 1238.15 886.95 L1238.05 887.05 Q1232.85 890.7 1227.95 890.75 L1227.85 890.75 1225.95 890.6 1225.9 890.6 1223.1 890.1 1223.05 890.1 1220.05 889.5 1220 889.45 1220 951.85 1220 952 Q1219.7 964 1207.35 964 L1096.65 964 Q1084.3 964 1084 952 L1084 951.85 1084 889.5 1081.05 890.1 1080.95 890.1 1078.15 890.6 1078.1 890.6 1076.2 890.75 1076.1 890.75 Q1071.2 890.7 1066 887.05 L1065.9 886.95 Q1059.9 882.45 1057.25 874.95 L1057.25 874.9 Q1056.15 871.85 1055.9 869.05 L1055.9 868.95 Q1055.5 864.6 1056.9 860.75 L1056.9 860.7 Q1059.4 854.1 1065.45 852.35 L1065.7 852.25 1068.55 851.7 1068.45 851.7 Q1076.65 850 1084 850.1 L1084 840.7 Q1084 828 1096.65 828 L1207.35 828 Q1220 828 1220 840.7 L1220 850.1 Q1227.4 850 1235.6 851.7 L1235.55 851.7 1238.35 852.25 1238.65 852.35 M1216 854.3 L1216 844.2 1216 840.7 Q1216 832 1207.35 832 L1167.5 832 1136.5 832 1096.65 832 Q1088 832 1088 840.7 L1088 844.2 1088 854.25 Q1079.3 853.55 1069.25 855.6 L1066.6 856.15 Q1062.4 857.45 1060.65 862.1 1059.55 865.15 1059.85 868.6 1060.1 871 1061 873.6 1063.25 879.95 1068.3 883.75 1072.4 886.65 1076.2 886.75 L1077.45 886.65 1080.25 886.15 1083.2 885.55 1084.15 885.3 1087.75 884.25 1088 884.2 1088 940.45 1088 951.85 Q1088.25 960 1096.65 960 L1207.35 960 Q1215.75 960 1216 951.85 L1216 940.45 1216 884.15 1216.3 884.25 1219.9 885.3 1220.85 885.55 1223.8 886.15 1226.6 886.65 1227.85 886.75 Q1231.65 886.65 1235.75 883.75 1240.8 879.95 1243.05 873.6 1243.95 871 1244.2 868.6 1244.5 865.15 1243.4 862.1 1241.65 857.45 1237.45 856.15 L1234.8 855.6 Q1224.75 853.55 1216 854.3"/>
+ <path stroke="none" fill="#414040" d="M1216 854.3 L1216 857.3 Q1224.75 856.55 1234.8 858.6 L1237.45 859.15 Q1241.65 860.45 1243.4 865.1 1244 866.8 1244.2 868.6 1243.95 871 1243.05 873.6 1240.8 879.95 1235.75 883.75 1231.65 886.65 1227.85 886.75 L1226.6 886.65 1223.8 886.15 1220.85 885.55 1219.9 885.3 1216.3 884.25 Q1217.85 883.7 1219.6 882.5 1223.25 879.75 1224.9 875.15 1225.5 873.55 1225.7 872 1226.05 869.3 1225.15 866.85 1223.85 863.5 1220.8 862.65 L1218.9 862.2 1216 861.7 1216 884.15 1216 940.45 1189.45 921.85 Q1188.55 910 1178.5 901.4 1171.8 895.7 1163.45 893.5 L1163.25 891.5 Q1162.6 879.15 1163.35 867 1164.3 851.35 1167.5 836 L1207.35 836 Q1215.75 836 1216 844.2 L1216 854.3 M1136.5 836 Q1139.7 851.4 1140.7 867 1141.4 879.15 1140.75 891.5 L1140.55 893.5 Q1132.15 895.7 1125.45 901.4 1115.4 910 1114.55 921.85 L1088 940.45 1088 884.2 1088 861.7 1085.15 862.2 1083.25 862.65 Q1080.2 863.5 1078.9 866.85 1078 869.3 1078.35 872 1078.55 873.55 1079.15 875.15 1080.8 879.75 1084.45 882.5 1086.2 883.7 1087.75 884.25 L1084.15 885.3 1083.2 885.55 1080.25 886.15 1077.45 886.65 1076.2 886.75 Q1072.4 886.65 1068.3 883.75 1063.25 879.95 1061 873.6 1060.1 871 1059.85 868.6 1060.05 866.8 1060.65 865.1 1062.4 860.45 1066.6 859.15 L1069.25 858.6 Q1079.3 856.55 1088 857.25 L1088 854.25 1088 844.2 Q1088.25 836 1096.65 836 L1136.5 836 M1193 870.1 Q1193 865.9 1190.05 863 1187.15 860.1 1183 860.1 1178.9 860.1 1175.95 863 1173.05 865.9 1173.05 870.1 1173.05 874.2 1175.95 877.1 1178.9 880.05 1183 880.05 1187.15 880.05 1190.05 877.1 1193 874.2 1193 870.1 M1111 870.1 Q1111 874.2 1113.9 877.1 1116.85 880.05 1121 880.05 1125.05 880.05 1128.05 877.1 1130.95 874.2 1130.95 870.1 1130.95 865.9 1128.05 863 1125.05 860.1 1121 860.1 1116.85 860.1 1113.9 863 1111 865.9 1111 870.1"/>
+ <path stroke="none" fill="#545353" d="M1244.2 868.6 Q1244 866.8 1243.4 865.1 1241.65 860.45 1237.45 859.15 L1234.8 858.6 Q1224.75 856.55 1216 857.3 L1216 854.3 Q1224.75 853.55 1234.8 855.6 L1237.45 856.15 Q1241.65 857.45 1243.4 862.1 1244.5 865.15 1244.2 868.6 M1088 854.25 L1088 857.25 Q1079.3 856.55 1069.25 858.6 L1066.6 859.15 Q1062.4 860.45 1060.65 865.1 1060.05 866.8 1059.85 868.6 1059.55 865.15 1060.65 862.1 1062.4 857.45 1066.6 856.15 L1069.25 855.6 Q1079.3 853.55 1088 854.25"/>
+ <path stroke="none" fill="#FFAAFF" d="M1216 884.15 L1216 861.7 1218.9 862.2 1220.8 862.65 Q1223.85 863.5 1225.15 866.85 1226.05 869.3 1225.7 872 1225.5 873.55 1224.9 875.15 1223.25 879.75 1219.6 882.5 1217.85 883.7 1216.3 884.25 L1216 884.15 M1114.55 925.95 Q1114.7 923.7 1115.2 921.55 1117.25 912.4 1125.45 905.4 1131.75 900.05 1139.6 897.75 1145.35 896.05 1152 896.05 1158.65 896.05 1164.45 897.75 1172.2 900.05 1178.5 905.4 1186.65 912.4 1188.8 921.55 1189.3 923.65 1189.45 925.95 1188.95 933.95 1184.3 940.45 L1181.4 943.95 1178.5 946.65 1174.1 949.95 Q1164.25 947.95 1152 947.95 1139.7 947.95 1129.9 949.95 L1125.45 946.65 1122.6 943.95 1119.7 940.45 Q1115.05 933.95 1114.55 925.95 M1170.5 906.2 L1169.65 905.6 1168.3 905.25 1166.05 905.55 1165.8 905.65 Q1162.95 906.5 1160.45 909 L1160.3 909.15 Q1159.65 909.85 1159.3 910.7 1158.9 911.6 1158.9 912.7 1158.9 914.85 1160.4 916.35 1161.9 917.85 1164.05 917.85 1166.1 917.85 1167.6 916.45 L1167.75 916.3 Q1169.8 914.25 1170.75 912 L1171.2 910.7 1171.35 910.2 1171.5 909.1 Q1171.55 907.9 1171.1 907.05 L1170.5 906.2 M1136.4 916.45 Q1137.9 917.85 1139.95 917.85 1142.1 917.85 1143.6 916.35 1145.1 914.85 1145.1 912.7 1145.1 911.6 1144.75 910.7 L1143.7 909.15 1143.55 909 Q1141 906.45 1138.15 905.6 L1137.95 905.55 1135.7 905.25 1134.4 905.6 Q1133.9 905.8 1133.5 906.2 1133.15 906.55 1132.9 907.05 1132.45 907.9 1132.55 909.1 L1132.7 910.2 1132.8 910.7 Q1132.95 911.35 1133.25 912 1134.2 914.25 1136.25 916.3 L1136.4 916.45 M1087.75 884.25 Q1086.2 883.7 1084.45 882.5 1080.8 879.75 1079.15 875.15 1078.55 873.55 1078.35 872 1078 869.3 1078.9 866.85 1080.2 863.5 1083.25 862.65 L1085.15 862.2 1088 861.7 1088 884.2 1087.75 884.25"/>
+ <path stroke="none" fill="#4F4E4E" d="M1216 844.2 Q1215.75 836 1207.35 836 L1167.5 836 1167.5 832 1207.35 832 Q1216 832 1216 840.7 L1216 844.2 M1136.5 832 L1136.5 836 1096.65 836 Q1088.25 836 1088 844.2 L1088 840.7 Q1088 832 1096.65 832 L1136.5 832"/>
+ <path stroke="none" fill="#FFFFFF" d="M1136.5 832 L1167.5 832 1167.5 836 1136.5 836 1136.5 832 M1189.2 870.25 Q1189.2 867.35 1187.2 865.3 1185.2 863.3 1182.25 863.3 1179.45 863.3 1177.35 865.3 1175.35 867.35 1175.35 870.25 1175.35 873.1 1177.35 875.1 1179.45 877.1 1182.25 877.1 1185.2 877.1 1187.2 875.1 1189.2 873.1 1189.2 870.25 M1193 870.1 Q1193 874.2 1190.05 877.1 1187.15 880.05 1183 880.05 1178.9 880.05 1175.95 877.1 1173.05 874.2 1173.05 870.1 1173.05 865.9 1175.95 863 1178.9 860.1 1183 860.1 1187.15 860.1 1190.05 863 1193 865.9 1193 870.1 M1114.75 870.25 Q1114.75 873.1 1116.8 875.1 1118.8 877.1 1121.7 877.1 1124.55 877.1 1126.6 875.1 1128.65 873.1 1128.65 870.25 1128.65 867.35 1126.6 865.3 1124.55 863.3 1121.7 863.3 1118.8 863.3 1116.8 865.3 1114.75 867.35 1114.75 870.25 M1111 870.1 Q1111 865.9 1113.9 863 1116.85 860.1 1121 860.1 1125.05 860.1 1128.05 863 1130.95 865.9 1130.95 870.1 1130.95 874.2 1128.05 877.1 1125.05 880.05 1121 880.05 1116.85 880.05 1113.9 877.1 1111 874.2 1111 870.1"/>
+ <path stroke="none" fill="#F0F0F0" d="M1167.5 836 Q1164.3 851.35 1163.35 867 1162.6 879.15 1163.25 891.5 L1163.45 893.5 Q1158.05 892.05 1152 892.05 1145.95 892.05 1140.55 893.5 L1140.75 891.5 Q1141.4 879.15 1140.7 867 1139.7 851.4 1136.5 836 L1167.5 836 M1189.45 921.85 L1216 940.45 1216 951.85 Q1215.75 960 1207.35 960 L1096.65 960 Q1088.25 960 1088 951.85 L1088 940.45 1114.55 921.85 1114.5 923.05 1114.5 924.05 1114.55 925.95 Q1115.05 933.95 1119.7 940.45 L1122.6 943.95 1125.45 946.65 1129.9 949.95 Q1139.45 956.05 1152 956.05 1164.5 956.05 1174.1 949.95 L1178.5 946.65 1181.4 943.95 1184.3 940.45 Q1188.95 933.95 1189.45 925.95 L1189.5 924.05 1189.5 923.05 1189.45 921.85"/>
+ <path stroke="none" fill="#5B5B5B" d="M1189.2 870.25 Q1189.2 873.1 1187.2 875.1 1185.2 877.1 1182.25 877.1 1179.45 877.1 1177.35 875.1 1175.35 873.1 1175.35 870.25 1175.35 867.35 1177.35 865.3 1179.45 863.3 1182.25 863.3 1185.2 863.3 1187.2 865.3 1189.2 867.35 1189.2 870.25 M1114.75 870.25 Q1114.75 867.35 1116.8 865.3 1118.8 863.3 1121.7 863.3 1124.55 863.3 1126.6 865.3 1128.65 867.35 1128.65 870.25 1128.65 873.1 1126.6 875.1 1124.55 877.1 1121.7 877.1 1118.8 877.1 1116.8 875.1 1114.75 873.1 1114.75 870.25"/>
+ <path stroke="none" fill="#FFC4FF" d="M1163.45 893.5 Q1171.8 895.7 1178.5 901.4 1188.55 910 1189.45 921.85 L1189.5 923.05 1189.5 924.05 1189.45 925.95 Q1189.3 923.65 1188.8 921.55 1186.65 912.4 1178.5 905.4 1172.2 900.05 1164.45 897.75 1158.65 896.05 1152 896.05 1145.35 896.05 1139.6 897.75 1131.75 900.05 1125.45 905.4 1117.25 912.4 1115.2 921.55 1114.7 923.7 1114.55 925.95 L1114.5 924.05 1114.5 923.05 1114.55 921.85 Q1115.4 910 1125.45 901.4 1132.15 895.7 1140.55 893.5 1145.95 892.05 1152 892.05 1158.05 892.05 1163.45 893.5"/>
+ <path stroke="none" fill="#A66EA6" d="M1170.5 906.2 L1171.1 907.05 Q1171.55 907.9 1171.5 909.1 L1171.35 910.2 1171.2 910.7 1170.75 912 Q1169.8 914.25 1167.75 916.3 L1167.6 916.45 Q1166.1 917.85 1164.05 917.85 1161.9 917.85 1160.4 916.35 1158.9 914.85 1158.9 912.7 1158.9 911.6 1159.3 910.7 1159.65 909.85 1160.3 909.15 L1160.45 909 Q1162.95 906.5 1165.8 905.65 L1166.05 905.55 1168.3 905.25 1169.65 905.6 1170.5 906.2 M1136.4 916.45 L1136.25 916.3 Q1134.2 914.25 1133.25 912 1132.95 911.35 1132.8 910.7 L1132.7 910.2 1132.55 909.1 Q1132.45 907.9 1132.9 907.05 1133.15 906.55 1133.5 906.2 1133.9 905.8 1134.4 905.6 L1135.7 905.25 1137.95 905.55 1138.15 905.6 Q1141 906.45 1143.55 909 L1143.7 909.15 1144.75 910.7 Q1145.1 911.6 1145.1 912.7 1145.1 914.85 1143.6 916.35 1142.1 917.85 1139.95 917.85 1137.9 917.85 1136.4 916.45"/>
+ <path stroke="none" fill="#F0A0F0" d="M1174.1 949.95 Q1164.5 956.05 1152 956.05 1139.45 956.05 1129.9 949.95 1139.7 947.95 1152 947.95 1164.25 947.95 1174.1 949.95"/>
+ <path stroke="none" fill="#747070" d="M1110.25 990.5 L1129.55 1020 1174.45 1020 1193.75 990.5 1193.75 990.55 Q1195.15 988.35 1197.6 987.75 L1197.55 987.75 Q1199.85 987.05 1202.2 988.25 L1202.3 988.3 Q1204.45 989.4 1205.35 991.7 L1205.35 991.75 Q1210.8 1006.05 1211.6 1020.45 1220 1022.35 1220 1032.7 L1220 1143.85 1220 1144 Q1219.7 1156 1207.35 1156 L1096.65 1156 Q1084.3 1156 1084 1144 L1084 1143.85 1084 1032.7 Q1084 1022.35 1092.45 1020.45 1093.2 1006.05 1098.65 991.75 L1098.7 991.7 Q1099.55 989.4 1101.75 988.3 L1101.8 988.25 Q1104.15 987.05 1106.5 987.75 L1106.45 987.75 Q1108.85 988.35 1110.25 990.55 L1110.25 990.5 M1216 1036.2 L1216 1032.7 Q1216 1024.2 1207.7 1024 1207.45 1008.55 1201.6 993.15 1201.25 992.25 1200.4 991.8 L1198.6 991.6 Q1197.65 991.85 1197.1 992.7 L1176.7 1023.9 1176.65 1024 1127.4 1024 1127.3 1023.9 1106.9 992.7 Q1106.35 991.85 1105.4 991.6 L1103.6 991.8 Q1102.75 992.25 1102.4 993.15 1096.55 1008.55 1096.3 1024 1088 1024.2 1088 1032.7 L1088 1036.2 1088 1106.8 1088 1143.85 Q1088.25 1152 1096.65 1152 L1207.35 1152 Q1215.75 1152 1216 1143.85 L1216 1106.75 1216 1036.2"/>
+ <path stroke="none" fill="#B1A9A9" d="M1216 1036.2 Q1215.75 1028.15 1207.7 1028 L1207.35 1028 1096.65 1028 1096.35 1028 Q1088.25 1028.15 1088 1036.2 L1088 1032.7 Q1088 1024.2 1096.3 1024 1096.55 1008.55 1102.4 993.15 1102.75 992.25 1103.6 991.8 L1105.4 991.6 Q1106.35 991.85 1106.9 992.7 L1127.3 1023.9 1127.4 1024 1176.65 1024 1176.7 1023.9 1197.1 992.7 Q1197.65 991.85 1198.6 991.6 L1200.4 991.8 Q1201.25 992.25 1201.6 993.15 1207.45 1008.55 1207.7 1024 1216 1024.2 1216 1032.7 L1216 1036.2 M1121.05 1024 L1124.7 1024 1106.9 996.7 Q1106.35 995.85 1105.4 995.6 L1103.6 995.8 Q1102.75 996.25 1102.4 997.15 1097.35 1010.6 1096.5 1024 L1096.65 1024 1108.55 1024 1121.05 1024 M1195.5 1024 L1207.35 1024 1207.55 1024 Q1206.65 1010.6 1201.6 997.15 1201.25 996.25 1200.4 995.8 L1198.6 995.6 Q1197.65 995.85 1197.1 996.7 L1179.3 1024 1182.95 1024 1195.5 1024"/>
+ <path stroke="none" fill="#958F8F" d="M1195.5 1024 L1193.55 1017.4 Q1193.35 1016.65 1192.75 1016.1 1192.15 1015.55 1191.5 1015.45 1190.85 1015.3 1190.45 1015.7 L1182.95 1024 1179.3 1024 1197.1 996.7 Q1197.65 995.85 1198.6 995.6 L1200.4 995.8 Q1201.25 996.25 1201.6 997.15 1206.65 1010.6 1207.55 1024 L1207.35 1024 1195.5 1024 M1108.55 1024 L1096.65 1024 1096.5 1024 Q1097.35 1010.6 1102.4 997.15 1102.75 996.25 1103.6 995.8 L1105.4 995.6 Q1106.35 995.85 1106.9 996.7 L1124.7 1024 1121.05 1024 1113.55 1015.7 Q1113.15 1015.3 1112.5 1015.45 L1111.25 1016.1 Q1110.65 1016.65 1110.45 1017.4 1109.35 1020.75 1108.55 1024"/>
+ <path stroke="none" fill="#D2D0D0" d="M1108.55 1024 Q1109.35 1020.75 1110.45 1017.4 1110.65 1016.65 1111.25 1016.1 L1112.5 1015.45 Q1113.15 1015.3 1113.55 1015.7 L1121.05 1024 1108.55 1024 M1216 1106.75 L1216 1143.85 Q1215.75 1152 1207.35 1152 L1096.65 1152 Q1088.25 1152 1088 1143.85 L1088 1106.8 1091.6 1110.6 1098 1116.5 1100.15 1118.2 Q1101.9 1105.95 1115.35 1101.4 1102.35 1098.35 1096.5 1085.55 1090.65 1072.65 1100.6 1056.8 L1101.5 1055.45 Q1103.95 1051.85 1106.75 1049.7 1110.4 1046.85 1114.65 1046.35 1119.95 1045.7 1126.2 1048.85 1141.2 1056.4 1142.75 1082.6 1139.25 1084.3 1138.95 1086.7 L1138.95 1087.6 1139.15 1089.95 Q1139.8 1093.9 1142.75 1096.85 1144.9 1099 1147.55 1099.95 L1146.7 1100.95 Q1145.75 1101.9 1144.65 1102.45 1143.2 1103.1 1141.55 1103.1 1138.55 1103.1 1136.4 1100.95 L1135.05 1099.2 Q1134.85 1098.85 1134.5 1098.75 L1133.85 1098.85 1129.25 1101.4 Q1128.9 1101.6 1128.85 1101.95 1128.7 1102.25 1128.9 1102.6 L1130.4 1104.8 1131.45 1105.95 Q1135.6 1110.15 1141.55 1110.15 1147.45 1110.15 1151.7 1105.95 L1152 1105.65 1152.3 1105.95 Q1156.5 1110.15 1162.4 1110.15 1168.3 1110.15 1172.55 1105.95 L1173.6 1104.8 1175.1 1102.5 1175.15 1101.85 1174.7 1101.35 1170 1098.9 1169.3 1098.85 1168.8 1099.3 1167.55 1100.95 Q1165.4 1103.1 1162.4 1103.1 1160.75 1103.1 1159.35 1102.45 1158.25 1101.9 1157.3 1100.95 L1156.45 1099.95 Q1159.1 1099 1161.25 1096.85 1164.2 1093.9 1164.85 1089.95 L1165.05 1087.6 1165.05 1086.7 Q1164.7 1084.3 1161.25 1082.6 1162.8 1056.4 1177.8 1048.85 1184.05 1045.7 1189.4 1046.35 1193.6 1046.85 1197.25 1049.7 1200.05 1051.85 1202.5 1055.45 L1203.4 1056.8 Q1213.35 1072.65 1207.5 1085.55 1201.65 1098.35 1188.65 1101.4 1202.05 1105.9 1203.9 1118.1 L1206.1 1116.35 1212.3 1110.6 1216 1106.75 M1105.5 1076.95 Q1105.5 1082.1 1109.15 1085.7 1112.8 1089.4 1118 1089.4 1123.1 1089.4 1126.8 1085.7 1130.45 1082.1 1130.45 1076.95 1130.45 1071.75 1126.8 1068.1 1123.1 1064.45 1118 1064.45 1112.8 1064.45 1109.15 1068.1 1105.5 1071.75 1105.5 1076.95 M1182.95 1024 L1190.45 1015.7 Q1190.85 1015.3 1191.5 1015.45 1192.15 1015.55 1192.75 1016.1 1193.35 1016.65 1193.55 1017.4 L1195.5 1024 1182.95 1024 M1198.5 1076.95 Q1198.5 1071.75 1194.85 1068.1 1191.2 1064.45 1186 1064.45 1180.9 1064.45 1177.2 1068.1 1173.55 1071.75 1173.55 1076.95 1173.55 1082.1 1177.2 1085.7 1180.9 1089.4 1186 1089.4 1191.2 1089.4 1194.85 1085.7 1198.5 1082.1 1198.5 1076.95"/>
+ <path stroke="none" fill="#9F9898" d="M1216 1036.2 L1216 1106.75 1212.3 1110.6 1206.1 1116.35 1203.9 1118.1 Q1202.05 1105.9 1188.65 1101.4 1201.65 1098.35 1207.5 1085.55 1213.35 1072.65 1203.4 1056.8 L1202.5 1055.45 Q1200.05 1051.85 1197.25 1049.7 1193.6 1046.85 1189.4 1046.35 1184.05 1045.7 1177.8 1048.85 1162.8 1056.4 1161.25 1082.6 1157.4 1080.75 1152 1080.75 1146.6 1080.75 1142.75 1082.6 1141.2 1056.4 1126.2 1048.85 1119.95 1045.7 1114.65 1046.35 1110.4 1046.85 1106.75 1049.7 1103.95 1051.85 1101.5 1055.45 L1100.6 1056.8 Q1090.65 1072.65 1096.5 1085.55 1102.35 1098.35 1115.35 1101.4 1101.9 1105.95 1100.15 1118.2 L1098 1116.5 1091.6 1110.6 1088 1106.8 1088 1036.2 Q1088.25 1028.15 1096.35 1028 L1096.65 1028 1207.35 1028 1207.7 1028 Q1215.75 1028.15 1216 1036.2"/>
+ <path stroke="none" fill="#FFFFFF" d="M1105.5 1076.95 Q1105.5 1071.75 1109.15 1068.1 1112.8 1064.45 1118 1064.45 1123.1 1064.45 1126.8 1068.1 1130.45 1071.75 1130.45 1076.95 1130.45 1082.1 1126.8 1085.7 1123.1 1089.4 1118 1089.4 1112.8 1089.4 1109.15 1085.7 1105.5 1082.1 1105.5 1076.95 M1110.2 1077 L1110.2 1077.3 Q1110.3 1079.65 1112.75 1081.25 1115.25 1083 1118.9 1083 1122.45 1083 1125 1081.25 1127.45 1079.65 1127.55 1077.3 L1127.55 1077 Q1127.45 1074.65 1125 1072.95 1122.45 1071.25 1118.9 1071.25 1115.25 1071.25 1112.75 1072.95 1110.3 1074.65 1110.2 1077 M1193.75 1077 Q1193.65 1074.65 1191.25 1072.95 1188.75 1071.25 1185.1 1071.25 1181.55 1071.25 1178.95 1072.95 1176.55 1074.65 1176.45 1077 L1176.45 1077.3 Q1176.55 1079.65 1178.95 1081.25 1181.55 1083 1185.1 1083 1188.75 1083 1191.25 1081.25 1193.65 1079.65 1193.75 1077.3 L1193.75 1077 M1198.5 1076.95 Q1198.5 1082.1 1194.85 1085.7 1191.2 1089.4 1186 1089.4 1180.9 1089.4 1177.2 1085.7 1173.55 1082.1 1173.55 1076.95 1173.55 1071.75 1177.2 1068.1 1180.9 1064.45 1186 1064.45 1191.2 1064.45 1194.85 1068.1 1198.5 1071.75 1198.5 1076.95"/>
+ <path stroke="none" fill="#5B5B5B" d="M1110.2 1077 Q1110.3 1074.65 1112.75 1072.95 1115.25 1071.25 1118.9 1071.25 1122.45 1071.25 1125 1072.95 1127.45 1074.65 1127.55 1077 L1127.55 1077.3 Q1127.45 1079.65 1125 1081.25 1122.45 1083 1118.9 1083 1115.25 1083 1112.75 1081.25 1110.3 1079.65 1110.2 1077.3 L1110.2 1077 M1193.75 1077 L1193.75 1077.3 Q1193.65 1079.65 1191.25 1081.25 1188.75 1083 1185.1 1083 1181.55 1083 1178.95 1081.25 1176.55 1079.65 1176.45 1077.3 L1176.45 1077 Q1176.55 1074.65 1178.95 1072.95 1181.55 1071.25 1185.1 1071.25 1188.75 1071.25 1191.25 1072.95 1193.65 1074.65 1193.75 1077"/>
+ <path stroke="none" fill="#383838" d="M1156.45 1099.95 L1157.3 1100.95 Q1158.25 1101.9 1159.35 1102.45 1160.75 1103.1 1162.4 1103.1 1165.4 1103.1 1167.55 1100.95 L1168.8 1099.3 1169.3 1098.85 1170 1098.9 1174.7 1101.35 1175.15 1101.85 1175.1 1102.5 1173.6 1104.8 1172.55 1105.95 Q1168.3 1110.15 1162.4 1110.15 1156.5 1110.15 1152.3 1105.95 L1152 1105.65 1151.7 1105.95 Q1147.45 1110.15 1141.55 1110.15 1135.6 1110.15 1131.45 1105.95 L1130.4 1104.8 1128.9 1102.6 Q1128.7 1102.25 1128.85 1101.95 1128.9 1101.6 1129.25 1101.4 L1133.85 1098.85 1134.5 1098.75 Q1134.85 1098.85 1135.05 1099.2 L1136.4 1100.95 Q1138.55 1103.1 1141.55 1103.1 1143.2 1103.1 1144.65 1102.45 1145.75 1101.9 1146.7 1100.95 L1147.55 1099.95 Q1152.2 1101.7 1156.45 1099.95"/>
+ <path stroke="none" fill="#545454" d="M1139.15 1089.95 L1138.95 1087.6 1138.95 1086.7 Q1139.25 1084.3 1142.75 1082.6 1146.6 1080.75 1152 1080.75 1157.4 1080.75 1161.25 1082.6 1164.7 1084.3 1165.05 1086.7 L1165.05 1087.6 1164.85 1089.95 Q1164.15 1088.05 1161.25 1086.6 1158.5 1085.3 1154.95 1084.9 L1152 1084.75 1149.05 1084.9 Q1145.5 1085.3 1142.75 1086.6 1139.85 1088 1139.15 1089.95"/>
+ <path stroke="none" fill="#464646" d="M1139.15 1089.95 Q1139.85 1088 1142.75 1086.6 1145.5 1085.3 1149.05 1084.9 L1152 1084.75 1154.95 1084.9 Q1158.5 1085.3 1161.25 1086.6 1164.15 1088.05 1164.85 1089.95 1164.2 1093.9 1161.25 1096.85 1159.1 1099 1156.45 1099.95 1152.2 1101.7 1147.55 1099.95 1144.9 1099 1142.75 1096.85 1139.8 1093.9 1139.15 1089.95"/>
+ </g>
+</svg>
\ No newline at end of file
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://kds4a2nx1frx"
+path="res://.godot/imported/squareOutline.svg-03c226047ab352a9dfd54d99cdf14acb.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/Vector/squareOutline.svg"
+dest_files=["res://.godot/imported/squareOutline.svg-03c226047ab352a9dfd54d99cdf14acb.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
+svg/scale=1.0
+editor/scale_with_editor_scale=false
+editor/convert_colors_with_editor_theme=false
--- /dev/null
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <defs/>
+ <g>
+ <path stroke="none" fill="#FFD738" d="M448 76.2 Q447.75 68 439.35 68 L424.6 68 344.55 68 328.65 68 Q320.25 68 320 76.2 L320 72.7 Q320 64 328.65 64 L439.35 64 Q448 64 448 72.7 L448 76.2"/>
+ <path stroke="none" fill="#FFCC00" d="M448 76.2 L448 183.85 Q447.75 192 439.35 192 L430 192 430.1 191.9 Q425.15 190 425.2 184.45 424.9 181.35 424.1 178.4 L423.65 176.85 Q422.5 173.45 420.7 170.35 417.9 165.6 413.5 161.5 401.7 150.6 385.05 150.6 368.4 150.6 356.55 161.5 352.1 165.6 349.35 170.4 347.85 173 346.85 175.75 L345.85 179.1 Q345.2 181.7 344.95 184.45 343.4 190.15 339.1 192 L328.65 192 Q320.25 192 320 183.85 L320 76.2 Q320.25 68 328.65 68 L344.55 68 Q346.4 88.6 355.95 104.05 367.8 123.35 384.55 123.35 401.35 123.35 413.2 104.05 422.7 88.6 424.6 68 L439.35 68 Q447.75 68 448 76.2 M393.25 102.6 L383.5 95.55 Q382.8 95 382.55 94.2 382.3 93.4 382.55 92.6 L386.25 81.15 Q386.5 80.3 387.2 79.8 387.85 79.3 388.75 79.3 L400.8 79.3 Q401.7 79.3 402.4 79.8 403.05 80.3 403.3 81.15 L407 92.6 Q407.25 93.4 407 94.2 406.75 95 406.1 95.55 L396.4 102.6 Q395.7 103.1 394.8 103.1 393.95 103.1 393.25 102.6 M380.6 86.65 L375.65 93.45 Q375.15 94.1 374.35 94.35 373.5 94.6 372.7 94.35 L364.75 91.75 Q363.9 91.5 363.4 90.85 362.9 90.15 362.9 89.25 L362.9 80.85 Q362.9 80 363.4 79.35 363.9 78.65 364.75 78.35 L372.7 75.8 Q373.5 75.5 374.35 75.8 375.15 76.05 375.65 76.75 L380.6 83.55 Q381.05 84.25 381.05 85.1 L380.6 86.65 M372 110.3 L370.7 104.2 Q370.5 103.3 370.85 102.55 371.2 101.7 371.95 101.3 L377.4 98.15 Q378.15 97.75 379 97.85 379.85 97.9 380.5 98.5 L385.15 102.7 Q385.75 103.25 385.95 104.15 386.1 104.95 385.75 105.75 L383.2 111.45 Q382.85 112.25 382.1 112.7 L380.5 113.05 374.3 112.4 Q373.45 112.25 372.8 111.75 372.2 111.1 372 110.3 M335.5 134.55 Q335.5 139.7 339.15 143.3 342.8 147 348 147 353.1 147 356.8 143.3 360.45 139.7 360.45 134.55 360.45 129.35 356.8 125.7 353.1 122.05 348 122.05 342.8 122.05 339.15 125.7 335.5 129.35 335.5 134.55 M432.5 134.55 Q432.5 129.35 428.85 125.7 425.2 122.05 420 122.05 414.9 122.05 411.2 125.7 407.55 129.35 407.55 134.55 407.55 139.7 411.2 143.3 414.9 147 420 147 425.2 147 428.85 143.3 432.5 139.7 432.5 134.55"/>
+ <path stroke="none" fill="#EEBE00" d="M393.25 102.6 Q393.95 103.1 394.8 103.1 395.7 103.1 396.4 102.6 L406.1 95.55 Q406.75 95 407 94.2 407.25 93.4 407 92.6 L403.3 81.15 Q403.05 80.3 402.4 79.8 401.7 79.3 400.8 79.3 L388.75 79.3 Q387.85 79.3 387.2 79.8 386.5 80.3 386.25 81.15 L382.55 92.6 Q382.3 93.4 382.55 94.2 382.8 95 383.5 95.55 L393.25 102.6 M344.55 68 L424.6 68 Q422.7 88.6 413.2 104.05 401.35 123.35 384.55 123.35 367.8 123.35 355.95 104.05 346.4 88.6 344.55 68 M372 110.3 Q372.2 111.1 372.8 111.75 373.45 112.25 374.3 112.4 L380.5 113.05 382.1 112.7 Q382.85 112.25 383.2 111.45 L385.75 105.75 Q386.1 104.95 385.95 104.15 385.75 103.25 385.15 102.7 L380.5 98.5 Q379.85 97.9 379 97.85 378.15 97.75 377.4 98.15 L371.95 101.3 Q371.2 101.7 370.85 102.55 370.5 103.3 370.7 104.2 L372 110.3 M380.6 86.65 L381.05 85.1 Q381.05 84.25 380.6 83.55 L375.65 76.75 Q375.15 76.05 374.35 75.8 373.5 75.5 372.7 75.8 L364.75 78.35 Q363.9 78.65 363.4 79.35 362.9 80 362.9 80.85 L362.9 89.25 Q362.9 90.15 363.4 90.85 363.9 91.5 364.75 91.75 L372.7 94.35 Q373.5 94.6 374.35 94.35 375.15 94.1 375.65 93.45 L380.6 86.65"/>
+ <path stroke="none" fill="#FFFFFF" d="M335.5 134.55 Q335.5 129.35 339.15 125.7 342.8 122.05 348 122.05 353.1 122.05 356.8 125.7 360.45 129.35 360.45 134.55 360.45 139.7 356.8 143.3 353.1 147 348 147 342.8 147 339.15 143.3 335.5 139.7 335.5 134.55 M340.2 134.75 Q340.2 138.35 342.75 140.8 345.25 143.35 348.9 143.35 352.45 143.35 355 140.8 357.55 138.35 357.55 134.75 357.55 131.15 355 128.6 352.45 126.1 348.9 126.1 345.25 126.1 342.75 128.6 340.2 131.15 340.2 134.75 M432.5 134.55 Q432.5 139.7 428.85 143.3 425.2 147 420 147 414.9 147 411.2 143.3 407.55 139.7 407.55 134.55 407.55 129.35 411.2 125.7 414.9 122.05 420 122.05 425.2 122.05 428.85 125.7 432.5 129.35 432.5 134.55 M427.75 134.75 Q427.75 131.15 425.25 128.6 422.75 126.1 419.1 126.1 415.55 126.1 412.95 128.6 410.45 131.15 410.45 134.75 410.45 138.35 412.95 140.8 415.55 143.35 419.1 143.35 422.75 143.35 425.25 140.8 427.75 138.35 427.75 134.75"/>
+ <path stroke="none" fill="#5B5B5B" d="M427.75 134.75 Q427.75 138.35 425.25 140.8 422.75 143.35 419.1 143.35 415.55 143.35 412.95 140.8 410.45 138.35 410.45 134.75 410.45 131.15 412.95 128.6 415.55 126.1 419.1 126.1 422.75 126.1 425.25 128.6 427.75 131.15 427.75 134.75 M340.2 134.75 Q340.2 131.15 342.75 128.6 345.25 126.1 348.9 126.1 352.45 126.1 355 128.6 357.55 131.15 357.55 134.75 357.55 138.35 355 140.8 352.45 143.35 348.9 143.35 345.25 143.35 342.75 140.8 340.2 138.35 340.2 134.75"/>
+ <path stroke="none" fill="#D2A800" d="M339.1 192 Q343.4 190.15 344.95 184.45 345.2 181.7 345.85 179.1 L346.85 175.75 Q347.85 173 349.35 170.4 352.1 165.6 356.55 161.5 368.4 150.6 385.05 150.6 401.7 150.6 413.5 161.5 417.9 165.6 420.7 170.35 422.5 173.45 423.65 176.85 L424.1 178.4 Q424.9 181.35 425.2 184.45 425.15 190 430.1 191.9 L430 192 339.1 192 M403.5 161 Q402 159.5 399.05 160.35 396.1 161.15 393.45 163.8 L393.3 163.95 392.55 165 Q391.9 166.1 391.9 167.5 391.9 169.65 393.4 171.15 394.9 172.65 397.05 172.65 399.1 172.65 400.6 171.25 L400.75 171.1 Q403.4 168.45 404.2 165.5 404.95 162.95 403.9 161.45 L403.5 161 M369.4 171.25 Q370.9 172.65 372.95 172.65 375.1 172.65 376.6 171.15 378.1 169.65 378.1 167.5 378.1 166.1 377.5 165 L376.7 163.95 376.55 163.8 Q373.9 161.15 370.95 160.35 368 159.5 366.5 161 L366.15 161.45 Q365.05 162.95 365.8 165.5 366.6 168.45 369.25 171.1 L369.4 171.25"/>
+ <path stroke="none" fill="#A38200" d="M369.4 171.25 L369.25 171.1 Q366.6 168.45 365.8 165.5 365.05 162.95 366.15 161.45 L366.5 161 Q368 159.5 370.95 160.35 373.9 161.15 376.55 163.8 L376.7 163.95 377.5 165 Q378.1 166.1 378.1 167.5 378.1 169.65 376.6 171.15 375.1 172.65 372.95 172.65 370.9 172.65 369.4 171.25 M403.5 161 L403.9 161.45 Q404.95 162.95 404.2 165.5 403.4 168.45 400.75 171.1 L400.6 171.25 Q399.1 172.65 397.05 172.65 394.9 172.65 393.4 171.15 391.9 169.65 391.9 167.5 391.9 166.1 392.55 165 L393.3 163.95 393.45 163.8 Q396.1 161.15 399.05 160.35 402 159.5 403.5 161"/>
+ <path stroke="none" fill="#F53707" d="M1088 76.2 L1088 72.7 Q1088 64 1096.65 64 L1207.35 64 Q1216 64 1216 72.7 L1216 76.2 Q1215.75 68 1207.35 68 L1096.65 68 Q1088.25 68 1088 76.2"/>
+ <path stroke="none" fill="#D23007" d="M1088 76.2 Q1088.25 68 1096.65 68 L1207.35 68 Q1215.75 68 1216 76.2 L1216 183.85 Q1215.75 192 1207.35 192 L1192.2 192 1192.35 189.5 Q1192.35 178.3 1180.5 170.35 1174.2 166.1 1166.45 164.15 1168.1 161.95 1169 159.45 L1169.8 156.2 1169.9 155.35 1170 153.9 1170 153.4 1170 147.4 1170 147 1170 143.9 1173.25 147.65 Q1180.4 154.85 1187.25 153.05 1194.1 151.2 1196.65 141.35 1199.15 131.55 1195.9 119.45 L1195.75 118.9 Q1193.9 112.35 1187.95 108.9 1181.75 105.3 1174.9 107.15 1168.1 108.95 1164.5 115.2 1161.05 121.1 1162.65 127.8 L1162.8 128.35 1163.1 129.35 Q1158.35 125.5 1152 125.5 1145.75 125.5 1141 129.25 L1141.2 128.4 1141.4 127.85 Q1143.05 121.15 1139.55 115.2 1136.05 109 1129.15 107.2 1122.3 105.3 1116.1 108.9 1110.15 112.35 1108.25 118.9 L1108.05 119.45 Q1104.85 131.55 1107.45 141.4 1110.05 151.2 1116.85 153.1 1123.75 154.9 1130.9 147.65 L1134 144.1 1134 147 1134 147.4 1134 153.4 1134 153.7 1134.1 155.35 1134.2 156.2 Q1134.45 157.9 1135 159.45 1135.85 161.95 1137.5 164.2 1129.8 166.15 1123.45 170.35 1111.65 178.3 1111.65 189.5 L1111.8 192 1096.65 192 Q1088.25 192 1088 183.85 L1088 76.2 M1165.4 79.95 L1164.45 78.45 Q1162.45 75.45 1159.45 74.15 1156.05 72.7 1153.3 74.25 1150.55 75.85 1150.15 79.5 1149.75 82.8 1151.35 86 L1152.25 87.55 Q1156.15 94.3 1160.75 97.95 1165.45 101.6 1168.2 100 1170.95 98.45 1170.05 92.6 1169.3 86.7 1165.4 79.95 M1145.7 87.65 L1146.3 86.6 Q1147.35 84.45 1147.1 82.35 1146.8 79.9 1145 78.8 1143.2 77.75 1140.95 78.75 1138.95 79.6 1137.6 81.6 L1137 82.65 Q1134.45 87.1 1133.9 91 1133.35 94.9 1135.15 95.9 1136.95 97 1140 94.55 1143.15 92.15 1145.7 87.65"/>
+ <path stroke="none" fill="#BB2905" d="M1145.7 87.65 Q1143.15 92.15 1140 94.55 1136.95 97 1135.15 95.9 1133.35 94.9 1133.9 91 1134.45 87.1 1137 82.65 L1137.6 81.6 Q1138.95 79.6 1140.95 78.75 1143.2 77.75 1145 78.8 1146.8 79.9 1147.1 82.35 1147.35 84.45 1146.3 86.6 L1145.7 87.65 M1165.4 79.95 Q1169.3 86.7 1170.05 92.6 1170.95 98.45 1168.2 100 1165.45 101.6 1160.75 97.95 1156.15 94.3 1152.25 87.55 L1151.35 86 Q1149.75 82.8 1150.15 79.5 1150.55 75.85 1153.3 74.25 1156.05 72.7 1159.45 74.15 1162.45 75.45 1164.45 78.45 L1165.4 79.95"/>
+ <path stroke="none" fill="#D5EEF7" d="M1163.1 129.35 L1162.8 128.35 1162.65 127.8 Q1161.05 121.1 1164.5 115.2 1168.1 108.95 1174.9 107.15 1181.75 105.3 1187.95 108.9 1193.9 112.35 1195.75 118.9 L1195.9 119.45 Q1199.15 131.55 1196.65 141.35 1194.1 151.2 1187.25 153.05 1180.4 154.85 1173.25 147.65 L1170 143.9 1170 143.5 Q1170 141.15 1169.4 139 L1169.2 138.15 1169.15 138 1168.3 135.8 Q1168.95 137 1170.05 138.1 1173.25 141.25 1177.5 141.25 1181.85 141.25 1184.95 138.1 1188.05 135.1 1188.05 130.75 1188.05 126.35 1184.95 123.3 1181.85 120.25 1177.5 120.25 1173.25 120.25 1170.05 123.3 1167.05 126.35 1167.05 130.75 1167.05 133.15 1167.95 135.15 1166.7 132.8 1164.7 130.8 L1163.1 129.35 M1141 129.25 Q1140.05 129.95 1139.2 130.8 1136.1 133.95 1134.85 138 L1134.8 138.15 1134.55 139 Q1134 141.15 1134 143.5 L1134 144.1 1130.9 147.65 Q1123.75 154.9 1116.85 153.1 1110.05 151.2 1107.45 141.4 1104.85 131.55 1108.05 119.45 L1108.25 118.9 Q1110.15 112.35 1116.1 108.9 1122.3 105.3 1129.15 107.2 1136.05 109 1139.55 115.2 1143.05 121.15 1141.4 127.85 L1141.2 128.4 1141 129.25 M1115.8 130.75 Q1115.8 135.1 1118.85 138.1 1121.95 141.25 1126.3 141.25 1130.6 141.25 1133.75 138.1 1136.8 135.1 1136.8 130.75 1136.8 126.35 1133.75 123.3 1130.6 120.25 1126.3 120.25 1121.95 120.25 1118.85 123.3 1115.8 126.35 1115.8 130.75"/>
+ <path stroke="none" fill="#FFFFFF" d="M1115.8 130.75 Q1115.8 126.35 1118.85 123.3 1121.95 120.25 1126.3 120.25 1130.6 120.25 1133.75 123.3 1136.8 126.35 1136.8 130.75 1136.8 135.1 1133.75 138.1 1130.6 141.25 1126.3 141.25 1121.95 141.25 1118.85 138.1 1115.8 135.1 1115.8 130.75 M1167.95 135.15 Q1167.05 133.15 1167.05 130.75 1167.05 126.35 1170.05 123.3 1173.25 120.25 1177.5 120.25 1181.85 120.25 1184.95 123.3 1188.05 126.35 1188.05 130.75 1188.05 135.1 1184.95 138.1 1181.85 141.25 1177.5 141.25 1173.25 141.25 1170.05 138.1 1168.95 137 1168.3 135.8 L1167.95 135.15 M1182.3 130.7 Q1182.3 127.9 1180.4 126.05 1178.45 124.1 1175.7 124.1 1173 124.1 1171 126.05 1169.1 127.9 1169.1 130.7 L1169.1 131.35 Q1169.3 133.6 1171 135.25 1173 137.15 1175.7 137.15 1178.45 137.15 1180.4 135.25 1182.05 133.6 1182.25 131.35 L1182.3 130.7 M1121.55 130.7 L1121.6 131.35 Q1121.75 133.6 1123.4 135.25 1125.35 137.15 1128.15 137.15 1130.8 137.15 1132.8 135.25 1134.55 133.6 1134.7 131.35 L1134.75 130.7 Q1134.75 127.9 1132.8 126.05 1130.8 124.1 1128.15 124.1 1125.35 124.1 1123.4 126.05 1121.55 127.9 1121.55 130.7"/>
+ <path stroke="none" fill="#5B5B5B" d="M1121.55 130.7 Q1121.55 127.9 1123.4 126.05 1125.35 124.1 1128.15 124.1 1130.8 124.1 1132.8 126.05 1134.75 127.9 1134.75 130.7 L1134.7 131.35 Q1134.55 133.6 1132.8 135.25 1130.8 137.15 1128.15 137.15 1125.35 137.15 1123.4 135.25 1121.75 133.6 1121.6 131.35 L1121.55 130.7 M1182.3 130.7 L1182.25 131.35 Q1182.05 133.6 1180.4 135.25 1178.45 137.15 1175.7 137.15 1173 137.15 1171 135.25 1169.3 133.6 1169.1 131.35 L1169.1 130.7 Q1169.1 127.9 1171 126.05 1173 124.1 1175.7 124.1 1178.45 124.1 1180.4 126.05 1182.3 127.9 1182.3 130.7"/>
+ <path stroke="none" fill="#61A3FF" d="M1163.1 129.35 L1164.7 130.8 Q1166.7 132.8 1167.95 135.15 L1168.3 135.8 1169.15 138 1169.2 138.15 1169.4 139 Q1170 141.15 1170 143.5 L1170 143.9 1170 147 Q1169.95 145.05 1169.4 143.2 L1169.4 143 1169.2 142.45 1169.15 142.3 Q1168.1 139.15 1165.75 136.65 L1164.7 135.6 Q1159.5 130.65 1152 130.65 1144.55 130.65 1139.2 135.6 L1138.45 136.35 Q1135.95 139 1134.85 142.3 L1134.8 142.45 1134.55 143.2 1134.55 143.35 Q1134.05 145.1 1134 147 L1134 144.1 1134 143.5 Q1134 141.15 1134.55 139 L1134.8 138.15 1134.85 138 Q1136.1 133.95 1139.2 130.8 1140.05 129.95 1141 129.25 1145.75 125.5 1152 125.5 1158.35 125.5 1163.1 129.35"/>
+ <path stroke="none" fill="#5D9CF3" d="M1170 147 L1170 147.4 1170 153.4 1170 153.9 1169.9 155.35 1169.8 156.2 Q1152 160.75 1134.2 156.2 L1134.1 155.35 1134 153.7 1134 153.4 1134 147.4 1134 147 Q1134.05 145.1 1134.55 143.35 L1134.55 143.2 1134.8 142.45 1134.85 142.3 Q1135.95 139 1138.45 136.35 L1139.2 135.6 Q1144.55 130.65 1152 130.65 1159.5 130.65 1164.7 135.6 L1165.75 136.65 Q1168.1 139.15 1169.15 142.3 L1169.2 142.45 1169.4 143 1169.4 143.2 Q1169.95 145.05 1170 147"/>
+ <path stroke="none" fill="#3473CB" d="M1169.8 156.2 L1169 159.45 Q1152 163.3 1135 159.45 1134.45 157.9 1134.2 156.2 1152 160.75 1169.8 156.2"/>
+ <path stroke="none" fill="#397EDE" d="M1169 159.45 Q1168.1 161.95 1166.45 164.15 L1164.7 166.15 Q1159.5 171.5 1152 171.5 1144.55 171.5 1139.2 166.15 L1137.5 164.2 Q1135.85 161.95 1135 159.45 1152 163.3 1169 159.45"/>
+ <path stroke="none" fill="#FFCC00" d="M1192.2 192 L1111.8 192 1111.65 189.5 Q1111.65 178.3 1123.45 170.35 1129.8 166.15 1137.5 164.2 L1139.2 166.15 Q1144.55 171.5 1152 171.5 1159.5 171.5 1164.7 166.15 L1166.45 164.15 Q1174.2 166.1 1180.5 170.35 1192.35 178.3 1192.35 189.5 L1192.2 192"/>
+ <path stroke="none" fill="#A16639" d="M168 292.35 Q160.6 284.95 150.2 284.95 139.7 284.95 132.35 292.35 130.8 293.85 128 293.85 125.2 293.85 123.7 292.35 116.3 284.95 105.9 284.95 95.45 284.95 88.05 292.35 80.65 299.75 80.65 310.15 80.65 320.6 88.05 328.05 L88.1 328.05 92.3 331.45 Q92.35 346.1 102.75 356.45 106.9 360.6 111.75 363.1 119.1 366.9 128 366.9 142.8 366.9 153.3 356.45 L156.65 352.65 Q163.65 343.5 163.75 331.45 L168 328.05 Q175.4 320.6 175.4 310.15 175.4 299.75 168 292.35 M87.85 260 L90.8 262.35 Q106.65 274.25 128 274.25 149.35 274.25 165.25 262.35 L168.15 260 183.35 260 Q191.75 260 192 268.2 L192 375.85 Q191.75 384 183.35 384 L72.65 384 Q64.25 384 64 375.85 L64 268.2 Q64.25 260 72.65 260 L87.85 260 M133.3 326.2 Q135.25 324.25 137.4 323.6 139.65 323 140.75 324.1 141.85 325.2 141.25 327.45 140.65 329.6 138.65 331.55 L138.55 331.7 Q137.45 332.75 135.95 332.75 134.35 332.75 133.25 331.65 132.1 330.5 132.1 328.9 132.1 327.35 133.15 326.3 L133.3 326.2 M123.65 331.65 Q122.45 332.75 120.9 332.75 119.35 332.75 118.25 331.7 L118.15 331.55 Q116.15 329.6 115.6 327.45 115 325.2 116.1 324.1 117.25 323 119.45 323.6 121.65 324.25 123.55 326.2 L123.7 326.3 Q124.75 327.35 124.75 328.9 124.75 330.5 123.65 331.65"/>
+ <path stroke="none" fill="#AA6C3C" d="M168.15 260 L165.25 262.35 Q149.35 274.25 128 274.25 106.65 274.25 90.8 262.35 L87.85 260 168.15 260"/>
+ <path stroke="none" fill="#BF8559" d="M168 292.35 Q175.4 299.75 175.4 310.15 175.4 320.6 168 328.05 L163.75 331.45 Q163.65 343.5 156.65 352.65 L153.3 356.45 Q142.8 366.9 128 366.9 119.1 366.9 111.75 363.1 106.9 360.6 102.75 356.45 92.35 346.1 92.3 331.45 L88.1 328.05 88.05 328.05 Q80.65 320.6 80.65 310.15 80.65 299.75 88.05 292.35 95.45 284.95 105.9 284.95 116.3 284.95 123.7 292.35 125.2 293.85 128 293.85 130.8 293.85 132.35 292.35 139.7 284.95 150.2 284.95 160.6 284.95 168 292.35 M168.95 311.4 Q168.95 306.35 165.45 302.8 161.85 299.3 156.75 299.3 151.75 299.3 148.2 302.8 144.6 306.35 144.6 311.4 144.6 316.45 148.2 319.9 151.75 323.55 156.75 323.55 161.85 323.55 165.45 319.9 168.95 316.45 168.95 311.4 M133.3 326.2 L133.15 326.3 Q132.1 327.35 132.1 328.9 132.1 330.5 133.25 331.65 134.35 332.75 135.95 332.75 137.45 332.75 138.55 331.7 L138.65 331.55 Q140.65 329.6 141.25 327.45 141.85 325.2 140.75 324.1 139.65 323 137.4 323.6 135.25 324.25 133.3 326.2 M123.65 331.65 Q124.75 330.5 124.75 328.9 124.75 327.35 123.7 326.3 L123.55 326.2 Q121.65 324.25 119.45 323.6 117.25 323 116.1 324.1 115 325.2 115.6 327.45 116.15 329.6 118.15 331.55 L118.25 331.7 Q119.35 332.75 120.9 332.75 122.45 332.75 123.65 331.65 M145.75 336.35 Q143.9 336.2 142.1 336.95 129.5 342.05 114.35 336.75 L111.75 336.3 Q110 336.3 108.3 337.1 105.3 338.55 104.25 341.7 103.15 344.75 104.6 347.75 106 350.7 109.15 351.8 L111.75 352.65 Q130.15 358.3 145.75 352.65 L148.25 351.65 Q151.25 350.3 152.5 347.3 153.7 344.25 152.45 341.2 151.2 338.15 148.15 336.95 L145.75 336.35 M87.75 311.4 Q87.75 316.45 91.35 319.9 94.95 323.55 99.95 323.55 104.95 323.55 108.65 319.9 112.15 316.45 112.15 311.4 112.15 306.35 108.65 302.8 104.95 299.3 99.95 299.3 94.95 299.3 91.35 302.8 87.75 306.35 87.75 311.4"/>
+ <path stroke="none" fill="#B4723F" d="M87.85 260 L72.65 260 Q64.25 260 64 268.2 L64 264.7 Q64 256 72.65 256 L183.35 256 Q192 256 192 264.7 L192 268.2 Q191.75 260 183.35 260 L168.15 260 87.85 260"/>
+ <path stroke="none" fill="#FFFFFF" d="M163.1 311.65 Q163.1 308.35 160.85 306.2 158.6 304.05 155.45 304.05 152.35 304.05 150 306.2 147.75 308.35 147.75 311.65 147.75 314.8 150 316.95 152.35 319.25 155.45 319.25 158.6 319.25 160.85 316.95 163.1 314.8 163.1 311.65 M168.95 311.4 Q168.95 316.45 165.45 319.9 161.85 323.55 156.75 323.55 151.75 323.55 148.2 319.9 144.6 316.45 144.6 311.4 144.6 306.35 148.2 302.8 151.75 299.3 156.75 299.3 161.85 299.3 165.45 302.8 168.95 306.35 168.95 311.4 M111.75 336.3 L114.35 336.75 Q129.5 342.05 142.1 336.95 143.9 336.2 145.75 336.35 148.65 344 145.75 352.65 130.15 358.3 111.75 352.65 108.5 343.55 111.75 336.3 M93.7 311.65 Q93.7 314.8 95.95 316.95 98.1 319.25 101.3 319.25 104.45 319.25 106.7 316.95 108.95 314.8 108.95 311.65 108.95 308.35 106.7 306.2 104.45 304.05 101.3 304.05 98.1 304.05 95.95 306.2 93.7 308.35 93.7 311.65 M87.75 311.4 Q87.75 306.35 91.35 302.8 94.95 299.3 99.95 299.3 104.95 299.3 108.65 302.8 112.15 306.35 112.15 311.4 112.15 316.45 108.65 319.9 104.95 323.55 99.95 323.55 94.95 323.55 91.35 319.9 87.75 316.45 87.75 311.4"/>
+ <path stroke="none" fill="#5B5B5B" d="M163.1 311.65 Q163.1 314.8 160.85 316.95 158.6 319.25 155.45 319.25 152.35 319.25 150 316.95 147.75 314.8 147.75 311.65 147.75 308.35 150 306.2 152.35 304.05 155.45 304.05 158.6 304.05 160.85 306.2 163.1 308.35 163.1 311.65 M93.7 311.65 Q93.7 308.35 95.95 306.2 98.1 304.05 101.3 304.05 104.45 304.05 106.7 306.2 108.95 308.35 108.95 311.65 108.95 314.8 106.7 316.95 104.45 319.25 101.3 319.25 98.1 319.25 95.95 316.95 93.7 314.8 93.7 311.65"/>
+ <path stroke="none" fill="#E7E7E7" d="M111.75 336.3 Q108.5 343.55 111.75 352.65 L109.15 351.8 Q106 350.7 104.6 347.75 103.15 344.75 104.25 341.7 105.3 338.55 108.3 337.1 110 336.3 111.75 336.3 M145.75 352.65 Q148.65 344 145.75 336.35 L148.15 336.95 Q151.2 338.15 152.45 341.2 153.7 344.25 152.5 347.3 151.25 350.3 148.25 351.65 L145.75 352.65"/>
+ <path stroke="none" fill="#EE9FEE" d="M619.95 347.25 L620.4 348.3 Q621.9 351.55 625.2 354.15 631.35 359 640 359 648.6 359 654.7 354.15 658.05 351.5 659.6 348.25 L660.05 347.15 Q662.95 344.45 664.45 341.25 665.65 338.65 665.95 335.75 L666 334.7 666 333.85 Q666 323.05 658.35 315.45 L656.55 313.8 Q649.5 307.85 640 307.85 630.5 307.85 623.4 313.75 L621.55 315.45 Q614 323.05 614 333.85 L614 334.7 614.1 335.8 Q614.35 338.7 615.55 341.3 617.05 344.5 619.95 347.25 M600.1 260 Q600.1 267.95 611.75 273.55 623.45 279.15 640 279.15 656.55 279.15 668.2 273.55 679.9 267.95 679.9 260 L695.35 260 Q703.75 260 704 268.2 L704 375.85 Q703.75 384 695.35 384 L584.65 384 Q576.25 384 576 375.85 L576 268.2 Q576.25 260 584.65 260 L600.1 260 M688.5 309.75 Q688.5 304.55 684.85 300.9 681.2 297.25 676 297.25 670.9 297.25 667.2 300.9 663.55 304.55 663.55 309.75 663.55 314.9 667.2 318.5 670.9 322.2 676 322.2 681.2 322.2 684.85 318.5 688.5 314.9 688.5 309.75 M591.5 309.75 Q591.5 314.9 595.15 318.5 598.8 322.2 604 322.2 609.1 322.2 612.8 318.5 616.45 314.9 616.45 309.75 616.45 304.55 612.8 300.9 609.1 297.25 604 297.25 598.8 297.25 595.15 300.9 591.5 304.55 591.5 309.75"/>
+ <path stroke="none" fill="#FAA6FA" d="M679.9 260 Q679.9 267.95 668.2 273.55 656.55 279.15 640 279.15 623.45 279.15 611.75 273.55 600.1 267.95 600.1 260 L679.9 260"/>
+ <path stroke="none" fill="#FFAAFF" d="M679.9 260 L600.1 260 584.65 260 Q576.25 260 576 268.2 L576 264.7 Q576 256 584.65 256 L695.35 256 Q704 256 704 264.7 L704 268.2 Q703.75 260 695.35 260 L679.9 260 M614.1 335.8 Q614.75 326.3 621.55 319.45 L623.4 317.75 Q630.5 311.85 640 311.85 649.5 311.85 656.55 317.8 L658.35 319.45 Q665.25 326.3 665.95 335.75 665.65 338.65 664.45 341.25 662.95 344.45 660.05 347.15 L658.35 348.6 Q650.75 354.65 640 354.65 629.2 354.65 621.55 348.6 L619.95 347.25 Q617.05 344.5 615.55 341.3 614.35 338.7 614.1 335.8 M658.5 327.25 Q657 325.75 654.05 326.6 L653.8 326.7 Q650.95 327.55 648.45 330.05 L648.3 330.2 Q647.65 330.9 647.3 331.75 646.9 332.65 646.9 333.75 646.9 335.9 648.4 337.4 649.9 338.9 652.05 338.9 654.1 338.9 655.6 337.5 L655.75 337.35 Q657.8 335.3 658.75 333.05 L659.2 331.75 Q659.85 329.5 659.1 328.1 L658.5 327.25 M624.4 337.5 Q625.9 338.9 627.95 338.9 630.1 338.9 631.6 337.4 633.1 335.9 633.1 333.75 633.1 332.65 632.75 331.75 L631.7 330.2 631.55 330.05 Q629 327.5 626.15 326.65 L625.95 326.6 Q623 325.75 621.5 327.25 L620.9 328.1 Q620.15 329.5 620.8 331.75 L621.25 333.05 Q622.2 335.3 624.25 337.35 L624.4 337.5"/>
+ <path stroke="none" fill="#FFFFFF" d="M683.75 309.95 Q683.75 306.35 681.25 303.8 678.75 301.3 675.1 301.3 671.55 301.3 668.95 303.8 666.45 306.35 666.45 309.95 666.45 313.55 668.95 316 671.55 318.55 675.1 318.55 678.75 318.55 681.25 316 683.75 313.55 683.75 309.95 M688.5 309.75 Q688.5 314.9 684.85 318.5 681.2 322.2 676 322.2 670.9 322.2 667.2 318.5 663.55 314.9 663.55 309.75 663.55 304.55 667.2 300.9 670.9 297.25 676 297.25 681.2 297.25 684.85 300.9 688.5 304.55 688.5 309.75 M596.2 309.95 Q596.2 313.55 598.75 316 601.25 318.55 604.9 318.55 608.45 318.55 611 316 613.55 313.55 613.55 309.95 613.55 306.35 611 303.8 608.45 301.3 604.9 301.3 601.25 301.3 598.75 303.8 596.2 306.35 596.2 309.95 M591.5 309.75 Q591.5 304.55 595.15 300.9 598.8 297.25 604 297.25 609.1 297.25 612.8 300.9 616.45 304.55 616.45 309.75 616.45 314.9 612.8 318.5 609.1 322.2 604 322.2 598.8 322.2 595.15 318.5 591.5 314.9 591.5 309.75"/>
+ <path stroke="none" fill="#5B5B5B" d="M683.75 309.95 Q683.75 313.55 681.25 316 678.75 318.55 675.1 318.55 671.55 318.55 668.95 316 666.45 313.55 666.45 309.95 666.45 306.35 668.95 303.8 671.55 301.3 675.1 301.3 678.75 301.3 681.25 303.8 683.75 306.35 683.75 309.95 M596.2 309.95 Q596.2 306.35 598.75 303.8 601.25 301.3 604.9 301.3 608.45 301.3 611 303.8 613.55 306.35 613.55 309.95 613.55 313.55 611 316 608.45 318.55 604.9 318.55 601.25 318.55 598.75 316 596.2 313.55 596.2 309.95"/>
+ <path stroke="none" fill="#FFC4FF" d="M665.95 335.75 Q665.25 326.3 658.35 319.45 L656.55 317.8 Q649.5 311.85 640 311.85 630.5 311.85 623.4 317.75 L621.55 319.45 Q614.75 326.3 614.1 335.8 L614 334.7 614 333.85 Q614 323.05 621.55 315.45 L623.4 313.75 Q630.5 307.85 640 307.85 649.5 307.85 656.55 313.8 L658.35 315.45 Q666 323.05 666 333.85 L666 334.7 665.95 335.75"/>
+ <path stroke="none" fill="#AF74AF" d="M658.5 327.25 L659.1 328.1 Q659.85 329.5 659.2 331.75 L658.75 333.05 Q657.8 335.3 655.75 337.35 L655.6 337.5 Q654.1 338.9 652.05 338.9 649.9 338.9 648.4 337.4 646.9 335.9 646.9 333.75 646.9 332.65 647.3 331.75 647.65 330.9 648.3 330.2 L648.45 330.05 Q650.95 327.55 653.8 326.7 L654.05 326.6 Q657 325.75 658.5 327.25 M624.4 337.5 L624.25 337.35 Q622.2 335.3 621.25 333.05 L620.8 331.75 Q620.15 329.5 620.9 328.1 L621.5 327.25 Q623 325.75 625.95 326.6 L626.15 326.65 Q629 327.5 631.55 330.05 L631.7 330.2 632.75 331.75 Q633.1 332.65 633.1 333.75 633.1 335.9 631.6 337.4 630.1 338.9 627.95 338.9 625.9 338.9 624.4 337.5"/>
+ <path stroke="none" fill="#E096E0" d="M619.95 347.25 L621.55 348.6 Q629.2 354.65 640 354.65 650.75 354.65 658.35 348.6 L660.05 347.15 659.6 348.25 Q658.05 351.5 654.7 354.15 648.6 359 640 359 631.35 359 625.2 354.15 621.9 351.55 620.4 348.3 L619.95 347.25"/>
+ <path stroke="none" fill="#365A66" d="M192 460.2 L192 509.4 191.65 509.6 Q165.3 524.65 128 524.65 90.7 524.65 64.35 509.6 L64 509.4 64 460.2 Q64.25 452 72.65 452 L183.35 452 Q191.75 452 192 460.2 M170.35 480.85 L169.95 480.55 Q165.95 476.8 160.4 476.75 154.6 476.75 150.5 480.85 146.5 484.9 146.45 490.65 146.45 496.3 150.4 500.2 L150.6 500.55 Q157.8 507.8 165.8 509.95 173.75 512.15 177.85 508.05 181.85 504.05 179.7 496.05 177.45 488.15 170.35 480.85 M85.55 480.85 Q78.45 488.15 76.2 496.05 74.05 504.05 78.05 508.05 82.15 512.15 90.1 509.95 98.1 507.8 105.3 500.55 L105.5 500.2 Q109.45 496.3 109.45 490.65 109.4 484.9 105.4 480.85 101.3 476.75 95.5 476.75 89.95 476.8 85.95 480.55 L85.55 480.85"/>
+ <path stroke="none" fill="#C3DCE9" d="M85.55 480.85 L85.95 480.55 Q89.95 476.8 95.5 476.75 101.3 476.75 105.4 480.85 109.4 484.9 109.45 490.65 109.45 496.3 105.5 500.2 L105.3 500.55 Q98.1 507.8 90.1 509.95 82.15 512.15 78.05 508.05 74.05 504.05 76.2 496.05 78.45 488.15 85.55 480.85 M192 513.4 L192 567.85 Q191.75 576 183.35 576 L72.65 576 Q64.25 576 64 567.85 L64 513.4 64.35 513.6 Q90.7 528.65 128 528.65 165.3 528.65 191.65 513.6 L192 513.4 M168.1 498.35 Q170.9 495.5 170.9 491.55 170.85 487.6 168.05 484.8 165.3 482.05 161.3 481.95 157.35 482 154.55 484.85 151.75 487.6 151.75 491.5 151.8 495.55 154.55 498.3 157.35 501.1 161.35 501.1 165.3 501.1 168.1 498.35 M170.35 480.85 Q177.45 488.15 179.7 496.05 181.85 504.05 177.85 508.05 173.75 512.15 165.8 509.95 157.8 507.8 150.6 500.55 L150.4 500.2 Q146.45 496.3 146.45 490.65 146.5 484.9 150.5 480.85 154.6 476.75 160.4 476.75 165.95 476.8 169.95 480.55 L170.35 480.85 M87.8 498.35 Q90.6 501.1 94.55 501.1 98.55 501.1 101.35 498.3 104.1 495.55 104.15 491.5 104.15 487.6 101.35 484.85 98.55 482 94.6 481.95 90.6 482.05 87.85 484.8 85.05 487.6 85 491.55 85 495.5 87.8 498.35"/>
+ <path stroke="none" fill="#FFFFFF" d="M87.8 498.35 Q85 495.5 85 491.55 85.05 487.6 87.85 484.8 90.6 482.05 94.6 481.95 98.55 482 101.35 484.85 104.15 487.6 104.15 491.5 104.1 495.55 101.35 498.3 98.55 501.1 94.55 501.1 90.6 501.1 87.8 498.35 M163.75 496.55 Q165.55 494.75 165.55 492.35 165.55 489.8 163.8 488.05 162.05 486.3 159.5 486.3 157.05 486.25 155.25 488.05 L154.85 488.45 Q153.5 490.05 153.55 492.2 153.6 494.75 155.35 496.5 157.1 498.25 159.6 498.25 161.7 498.25 163.3 496.95 L163.75 496.55 M168.1 498.35 Q165.3 501.1 161.35 501.1 157.35 501.1 154.55 498.3 151.8 495.55 151.75 491.5 151.75 487.6 154.55 484.85 157.35 482 161.3 481.95 165.3 482.05 168.05 484.8 170.85 487.6 170.9 491.55 170.9 495.5 168.1 498.35 M92.15 496.55 L92.6 496.95 Q94.2 498.25 96.3 498.25 98.8 498.25 100.55 496.5 102.3 494.75 102.35 492.2 102.4 490.05 101.05 488.45 L100.65 488.05 Q98.85 486.25 96.4 486.3 93.85 486.3 92.1 488.05 90.35 489.8 90.35 492.35 90.35 494.75 92.15 496.55"/>
+ <path stroke="none" fill="#5B5B5B" d="M92.15 496.55 Q90.35 494.75 90.35 492.35 90.35 489.8 92.1 488.05 93.85 486.3 96.4 486.3 98.85 486.25 100.65 488.05 L101.05 488.45 Q102.4 490.05 102.35 492.2 102.3 494.75 100.55 496.5 98.8 498.25 96.3 498.25 94.2 498.25 92.6 496.95 L92.15 496.55 M163.75 496.55 L163.3 496.95 Q161.7 498.25 159.6 498.25 157.1 498.25 155.35 496.5 153.6 494.75 153.55 492.2 153.5 490.05 154.85 488.45 L155.25 488.05 Q157.05 486.25 159.5 486.3 162.05 486.3 163.8 488.05 165.55 489.8 165.55 492.35 165.55 494.75 163.75 496.55"/>
+ <path stroke="none" fill="#48798A" d="M64 460.2 L64 456.7 Q64 448 72.65 448 L183.35 448 Q192 448 192 456.7 L192 460.2 Q191.75 452 183.35 452 L72.65 452 Q64.25 452 64 460.2"/>
+ <path stroke="none" fill="#D5F0FF" d="M192 509.4 L192 513.4 191.65 513.6 Q165.3 528.65 128 528.65 90.7 528.65 64.35 513.6 L64 513.4 64 509.4 64.35 509.6 Q90.7 524.65 128 524.65 165.3 524.65 191.65 509.6 L192 509.4"/>
+ <path stroke="none" fill="#FFFFFF" d="M366.35 553.15 Q366.35 554.25 366.65 555.4 368.55 563.25 376.85 562 380.25 561.45 383 558.7 L384 557.6 385 558.7 Q387.75 561.45 391.1 562 399.45 563.25 401.35 555.4 L401.65 553.15 Q401.65 549.3 398.2 546.2 L396.2 544.35 392.85 540.75 Q396.2 539.9 399.05 538.4 L400.05 537.85 400.75 537.45 Q404.6 541.45 407.95 547.55 414.85 560 416.95 576 L351.05 576 Q353.15 560 360 547.55 363.4 541.4 367.3 537.4 L367.5 537.5 368.05 537.85 Q371.3 539.75 375.2 540.7 L371.85 544.3 369.8 546.2 Q366.35 549.3 366.35 553.15 M320 460.2 L320 456.7 Q320 448 328.65 448 L439.35 448 Q448 448 448 456.7 L448 460.2 Q447.75 452 439.35 452 L328.65 452 Q320.25 452 320 460.2 M332.75 516.5 Q332.75 510.75 336.8 506.75 340.85 502.7 346.55 502.7 352.15 502.7 356.3 506.75 360.25 510.75 360.25 516.5 360.25 522.2 356.3 526.1 352.15 530.2 346.55 530.2 340.85 530.2 336.8 526.1 332.75 522.2 332.75 516.5 M340.3 516.4 L340.35 517.25 Q340.6 520.2 342.75 522.35 345.3 524.85 348.95 524.85 352.45 524.85 355.05 522.35 357.3 520.2 357.55 517.25 L357.6 516.4 Q357.6 512.75 355.05 510.3 352.45 507.75 348.95 507.75 345.3 507.75 342.75 510.3 340.3 512.75 340.3 516.4 M435.25 516.5 Q435.25 522.2 431.2 526.1 427.15 530.2 421.45 530.2 415.85 530.2 411.7 526.1 407.75 522.2 407.75 516.5 407.75 510.75 411.7 506.75 415.85 502.7 421.45 502.7 427.15 502.7 431.2 506.75 435.25 510.75 435.25 516.5 M427.7 516.4 Q427.7 512.75 425.25 510.3 422.7 507.75 419.05 507.75 415.55 507.75 412.95 510.3 410.4 512.75 410.4 516.4 L410.45 517.25 Q410.7 520.2 412.95 522.35 415.55 524.85 419.05 524.85 422.7 524.85 425.25 522.35 427.4 520.2 427.65 517.25 L427.7 516.4"/>
+ <path stroke="none" fill="#F0F0F0" d="M448 460.2 L448 567.85 Q447.75 576 439.35 576 L416.95 576 Q414.85 560 407.95 547.55 404.6 541.45 400.75 537.45 406.15 533.95 406.55 529.25 L406.65 527.75 406.35 524.05 Q405.3 517.1 400.05 511.8 L397.5 509.55 Q391.7 505.2 384.1 505.2 376.5 505.2 370.7 509.55 L368.05 511.8 Q362.85 517.1 361.75 524.05 361.5 525.8 361.5 527.75 L361.55 529.25 Q362 533.9 367.3 537.4 363.4 541.4 360 547.55 353.15 560 351.05 576 L328.65 576 Q320.25 576 320 567.85 L320 460.2 Q320.25 452 328.65 452 L439.35 452 Q447.75 452 448 460.2 M395.3 461.7 L395.4 460.5 Q395.4 457.5 393.3 455.4 392.25 454.35 391.05 453.85 389.75 453.3 388.25 453.3 L386.35 453.55 Q385.05 453.9 384 454.7 382.9 453.9 381.65 453.55 L379.75 453.3 Q378.25 453.3 376.95 453.85 375.7 454.4 374.65 455.4 372.6 457.5 372.6 460.5 L372.65 461.7 372.85 462.55 372.6 462.85 Q369.8 465.8 369.8 469.9 L369.85 471.05 Q370.1 473.7 371.6 475.75 L371.3 477.65 371.25 478.65 371.3 479.9 Q371.7 484.05 374.8 487.1 378.25 490.65 383.25 490.65 L384 490.6 384.75 490.65 Q389.7 490.65 393.25 487.1 396.3 484.05 396.7 479.85 L396.75 478.65 396.7 477.7 396.4 475.75 Q397.85 473.7 398.15 471.05 L398.2 469.9 Q398.2 467.85 397.5 466.1 396.8 464.3 395.4 462.85 L395.15 462.55 395.3 461.7 M332.75 516.5 Q332.75 522.2 336.8 526.1 340.85 530.2 346.55 530.2 352.15 530.2 356.3 526.1 360.25 522.2 360.25 516.5 360.25 510.75 356.3 506.75 352.15 502.7 346.55 502.7 340.85 502.7 336.8 506.75 332.75 510.75 332.75 516.5 M435.25 516.5 Q435.25 510.75 431.2 506.75 427.15 502.7 421.45 502.7 415.85 502.7 411.7 506.75 407.75 510.75 407.75 516.5 407.75 522.2 411.7 526.1 415.85 530.2 421.45 530.2 427.15 530.2 431.2 526.1 435.25 522.2 435.25 516.5"/>
+ <path stroke="none" fill="#F53707" d="M372.65 461.7 L372.6 460.5 Q372.6 457.5 374.65 455.4 375.7 454.4 376.95 453.85 378.25 453.3 379.75 453.3 L381.65 453.55 Q382.9 453.9 384 454.7 385.05 453.9 386.35 453.55 L388.25 453.3 Q389.75 453.3 391.05 453.85 392.25 454.35 393.3 455.4 395.4 457.5 395.4 460.5 L395.3 461.7 Q395 459.45 393.3 457.75 391.2 455.65 388.25 455.65 385.8 455.65 384 457.05 382.15 455.65 379.75 455.65 376.8 455.65 374.65 457.75 373 459.45 372.65 461.7 M395.15 462.55 L395.4 462.85 Q396.8 464.3 397.5 466.1 398.2 467.85 398.2 469.9 L398.15 471.05 Q397.85 468.3 396.2 466.1 394.85 464.4 395.15 462.55 M369.85 471.05 L369.8 469.9 Q369.8 465.8 372.6 462.85 L372.85 462.55 Q373.15 464.4 371.8 466.1 370.15 468.3 369.85 471.05"/>
+ <path stroke="none" fill="#D23007" d="M369.85 471.05 Q370.15 468.3 371.8 466.1 373.15 464.4 372.85 462.55 L372.65 461.7 Q373 459.45 374.65 457.75 376.8 455.65 379.75 455.65 382.15 455.65 384 457.05 385.8 455.65 388.25 455.65 391.2 455.65 393.3 457.75 395 459.45 395.3 461.7 L395.15 462.55 Q394.85 464.4 396.2 466.1 397.85 468.3 398.15 471.05 397.85 473.7 396.4 475.75 L396.7 477.7 396.75 478.65 396.7 479.85 Q396.3 484.05 393.25 487.1 389.7 490.65 384.75 490.65 L384 490.6 383.25 490.65 Q378.25 490.65 374.8 487.1 371.7 484.05 371.3 479.9 L371.25 478.65 371.3 477.65 371.6 475.75 Q370.1 473.7 369.85 471.05 M375.2 540.7 Q379.3 541.7 384.1 541.7 388.8 541.7 392.85 540.75 L396.2 544.35 398.2 546.2 Q401.65 549.3 401.65 553.15 L401.6 553.3 Q399.65 559.55 391.2 558.55 387.8 558.15 385 555.95 L384 555.05 382.95 555.95 Q380.2 558.15 376.75 558.55 368.3 559.55 366.4 553.3 L366.35 553.15 Q366.35 549.3 369.8 546.2 L371.85 544.3 375.2 540.7"/>
+ <path stroke="none" fill="#FF9900" d="M361.75 524.05 Q362.85 517.1 368.05 511.8 L370.7 509.55 Q376.5 505.2 384.1 505.2 391.7 505.2 397.5 509.55 L400.05 511.8 Q405.3 517.1 406.35 524.05 405.85 525.4 404.4 526.65 403.1 521.6 398.9 517.65 L396.55 515.7 Q391.15 511.95 384.1 511.95 377.05 511.95 371.65 515.7 370.4 516.55 369.2 517.65 365.05 521.6 363.75 526.65 362.25 525.45 361.75 524.05"/>
+ <path stroke="none" fill="#F39100" d="M363.75 526.65 Q365.05 521.6 369.2 517.65 370.4 516.55 371.65 515.7 377.05 511.95 384.1 511.95 391.15 511.95 396.55 515.7 L398.9 517.65 Q403.1 521.6 404.4 526.65 402.8 527.95 400.05 529.05 396.45 530.55 392.05 531.2 L386.95 531.7 384.1 531.75 381.1 531.7 376.05 531.2 Q371.65 530.5 368.05 529.05 365.3 527.95 363.75 526.65"/>
+ <path stroke="none" fill="#E08600" d="M363.75 526.65 Q365.3 527.95 368.05 529.05 371.65 530.5 376.05 531.2 L381.1 531.7 384.1 531.75 386.95 531.7 392.05 531.2 Q396.45 530.55 400.05 529.05 402.8 527.95 404.4 526.65 405.85 525.4 406.35 524.05 L406.65 527.75 406.55 529.25 Q406.15 533.95 400.75 537.45 L400.05 537.85 399.05 538.4 Q396.2 539.9 392.85 540.75 388.8 541.7 384.1 541.7 379.3 541.7 375.2 540.7 371.3 539.75 368.05 537.85 L367.5 537.5 367.3 537.4 Q362 533.9 361.55 529.25 L361.5 527.75 Q361.5 525.8 361.75 524.05 362.25 525.45 363.75 526.65"/>
+ <path stroke="none" fill="#5B5B5B" d="M340.3 516.4 Q340.3 512.75 342.75 510.3 345.3 507.75 348.95 507.75 352.45 507.75 355.05 510.3 357.6 512.75 357.6 516.4 L357.55 517.25 Q357.3 520.2 355.05 522.35 352.45 524.85 348.95 524.85 345.3 524.85 342.75 522.35 340.6 520.2 340.35 517.25 L340.3 516.4 M427.7 516.4 L427.65 517.25 Q427.4 520.2 425.25 522.35 422.7 524.85 419.05 524.85 415.55 524.85 412.95 522.35 410.7 520.2 410.45 517.25 L410.4 516.4 Q410.4 512.75 412.95 510.3 415.55 507.75 419.05 507.75 422.7 507.75 425.25 510.3 427.7 512.75 427.7 516.4"/>
+ <path stroke="none" fill="#C62C05" d="M366.35 553.15 L366.4 553.3 Q368.3 559.55 376.75 558.55 380.2 558.15 382.95 555.95 L384 555.05 385 555.95 Q387.8 558.15 391.2 558.55 399.65 559.55 401.6 553.3 L401.65 553.15 401.35 555.4 Q399.45 563.25 391.1 562 387.75 561.45 385 558.7 L384 557.6 383 558.7 Q380.25 561.45 376.85 562 368.55 563.25 366.65 555.4 366.35 554.25 366.35 553.15"/>
+ <path stroke="none" fill="#FFCC00" d="M653.4 466.25 L652.45 464.75 Q650.45 461.75 647.45 460.45 644.05 459 641.3 460.55 638.55 462.15 638.15 465.8 637.75 469.1 639.35 472.3 L640.25 473.85 Q644.15 480.6 648.75 484.25 653.45 487.9 656.2 486.3 658.95 484.75 658.05 478.9 657.3 473 653.4 466.25 M704 460.2 L704 567.85 Q703.75 576 695.35 576 L676.15 576 Q676.15 555.9 665.55 541.7 661.9 536.8 657.7 533.6 662.2 530.35 662.55 526.05 L662.65 524.55 662.35 520.85 Q661.3 513.9 656.05 508.6 L653.5 506.35 Q647.7 502 640.1 502 632.5 502 626.7 506.35 625.35 507.3 624.05 508.6 618.85 513.9 617.75 520.85 617.5 522.6 617.5 524.55 L617.55 526.05 Q617.95 530.3 622.4 533.55 618.15 536.75 614.45 541.7 603.85 555.9 603.85 576 L584.65 576 Q576.25 576 576 567.85 L576 460.2 Q576.25 452 584.65 452 L695.35 452 Q703.75 452 704 460.2 M691.25 511.8 Q691.25 506.05 687.2 502.05 683.15 498 677.45 498 671.85 498 667.7 502.05 663.75 506.05 663.75 511.8 663.75 517.5 667.7 521.4 671.85 525.5 677.45 525.5 683.15 525.5 687.2 521.4 691.25 517.5 691.25 511.8 M633.7 473.95 L634.3 472.9 Q635.35 470.75 635.1 468.65 634.8 466.2 633 465.1 631.2 464.05 628.95 465.05 626.95 465.9 625.6 467.9 L625 468.95 Q622.45 473.4 621.9 477.3 621.35 481.2 623.15 482.2 624.95 483.3 628 480.85 631.15 478.45 633.7 473.95 M588.75 511.8 Q588.75 517.5 592.8 521.4 596.85 525.5 602.55 525.5 608.15 525.5 612.3 521.4 616.25 517.5 616.25 511.8 616.25 506.05 612.3 502.05 608.15 498 602.55 498 596.85 498 592.8 502.05 588.75 506.05 588.75 511.8"/>
+ <path stroke="none" fill="#EEBE00" d="M653.4 466.25 Q657.3 473 658.05 478.9 658.95 484.75 656.2 486.3 653.45 487.9 648.75 484.25 644.15 480.6 640.25 473.85 L639.35 472.3 Q637.75 469.1 638.15 465.8 638.55 462.15 641.3 460.55 644.05 459 647.45 460.45 650.45 461.75 652.45 464.75 L653.4 466.25 M676.15 576 L603.85 576 Q603.85 555.9 614.45 541.7 618.15 536.75 622.4 533.55 L623.5 534.3 624.05 534.65 Q630.7 538.5 640.1 538.5 648.75 538.5 655.05 535.2 L656.05 534.65 657.7 533.6 Q661.9 536.8 665.55 541.7 676.15 555.9 676.15 576 M633.7 473.95 Q631.15 478.45 628 480.85 624.95 483.3 623.15 482.2 621.35 481.2 621.9 477.3 622.45 473.4 625 468.95 L625.6 467.9 Q626.95 465.9 628.95 465.05 631.2 464.05 633 465.1 634.8 466.2 635.1 468.65 635.35 470.75 634.3 472.9 L633.7 473.95"/>
+ <path stroke="none" fill="#FFD738" d="M576 460.2 L576 456.7 Q576 448 584.65 448 L695.35 448 Q704 448 704 456.7 L704 460.2 Q703.75 452 695.35 452 L584.65 452 Q576.25 452 576 460.2"/>
+ <path stroke="none" fill="#FFFFFF" d="M691.25 511.8 Q691.25 517.5 687.2 521.4 683.15 525.5 677.45 525.5 671.85 525.5 667.7 521.4 663.75 517.5 663.75 511.8 663.75 506.05 667.7 502.05 671.85 498 677.45 498 683.15 498 687.2 502.05 691.25 506.05 691.25 511.8 M683.7 511.7 Q683.7 508.05 681.25 505.6 678.7 503.05 675.05 503.05 671.55 503.05 668.95 505.6 666.4 508.05 666.4 511.7 L666.45 512.55 Q666.7 515.5 668.95 517.65 671.55 520.15 675.05 520.15 678.7 520.15 681.25 517.65 683.4 515.5 683.65 512.55 L683.7 511.7 M596.3 511.7 L596.35 512.55 Q596.6 515.5 598.75 517.65 601.3 520.15 604.95 520.15 608.45 520.15 611.05 517.65 613.3 515.5 613.55 512.55 L613.6 511.7 Q613.6 508.05 611.05 505.6 608.45 503.05 604.95 503.05 601.3 503.05 598.75 505.6 596.3 508.05 596.3 511.7 M588.75 511.8 Q588.75 506.05 592.8 502.05 596.85 498 602.55 498 608.15 498 612.3 502.05 616.25 506.05 616.25 511.8 616.25 517.5 612.3 521.4 608.15 525.5 602.55 525.5 596.85 525.5 592.8 521.4 588.75 517.5 588.75 511.8"/>
+ <path stroke="none" fill="#5B5B5B" d="M683.7 511.7 L683.65 512.55 Q683.4 515.5 681.25 517.65 678.7 520.15 675.05 520.15 671.55 520.15 668.95 517.65 666.7 515.5 666.45 512.55 L666.4 511.7 Q666.4 508.05 668.95 505.6 671.55 503.05 675.05 503.05 678.7 503.05 681.25 505.6 683.7 508.05 683.7 511.7 M596.3 511.7 Q596.3 508.05 598.75 505.6 601.3 503.05 604.95 503.05 608.45 503.05 611.05 505.6 613.6 508.05 613.6 511.7 L613.55 512.55 Q613.3 515.5 611.05 517.65 608.45 520.15 604.95 520.15 601.3 520.15 598.75 517.65 596.6 515.5 596.35 512.55 L596.3 511.7"/>
+ <path stroke="none" fill="#FF9900" d="M660.4 523.45 Q659.1 518.4 654.9 514.45 L652.55 512.5 Q647.15 508.75 640.1 508.75 633.05 508.75 627.65 512.5 626.4 513.35 625.2 514.45 621.05 518.4 619.75 523.45 618.25 522.25 617.75 520.85 618.85 513.9 624.05 508.6 625.35 507.3 626.7 506.35 632.5 502 640.1 502 647.7 502 653.5 506.35 L656.05 508.6 Q661.3 513.9 662.35 520.85 661.85 522.2 660.4 523.45"/>
+ <path stroke="none" fill="#F39100" d="M660.4 523.45 Q658.8 524.75 656.05 525.85 651.8 527.6 646.45 528.2 L640.1 528.55 633.65 528.2 Q628.3 527.55 624.05 525.85 621.3 524.75 619.75 523.45 621.05 518.4 625.2 514.45 626.4 513.35 627.65 512.5 633.05 508.75 640.1 508.75 647.15 508.75 652.55 512.5 L654.9 514.45 Q659.1 518.4 660.4 523.45"/>
+ <path stroke="none" fill="#E08600" d="M660.4 523.45 Q661.85 522.2 662.35 520.85 L662.65 524.55 662.55 526.05 Q662.2 530.35 657.7 533.6 L656.05 534.65 655.05 535.2 Q648.75 538.5 640.1 538.5 630.7 538.5 624.05 534.65 L623.5 534.3 622.4 533.55 Q617.95 530.3 617.55 526.05 L617.5 524.55 Q617.5 522.6 617.75 520.85 618.25 522.25 619.75 523.45 621.3 524.75 624.05 525.85 628.3 527.55 633.65 528.2 L640.1 528.55 646.45 528.2 Q651.8 527.6 656.05 525.85 658.8 524.75 660.4 523.45"/>
+ <path stroke="none" fill="#A16639" d="M919.8 467.25 Q921.1 464.75 917.7 460.4 914.3 455.9 908 452.3 L907.45 452 951.35 452 Q959.75 452 960 460.2 L960 567.85 Q959.75 576 951.35 576 L840.65 576 Q832.25 576 832 567.85 L832 460.2 Q832.25 452 840.65 452 L884.6 452 884.05 452.3 Q877.65 455.9 874.3 460.4 870.9 464.75 872.25 467.3 L872.3 467.4 Q873.85 470.05 879.45 469.25 882.45 468.8 885.7 467.55 884.35 492.05 877.5 513.55 873.2 515.65 869.45 518.85 858.9 527.9 858.5 540.5 L858.5 541.5 858.55 543.4 Q859.3 555.4 869.45 564.1 880.45 573.5 896 573.5 911.5 573.5 922.5 564.1 932.7 555.45 933.45 543.4 L933.5 541.5 933.5 540.5 Q933.05 527.9 922.5 518.85 918.75 515.65 914.5 513.6 907.65 492.05 906.3 467.55 909.55 468.8 912.55 469.25 918.2 470.05 919.7 467.4 L919.8 467.25 M944.5 494.05 Q944.5 488.85 940.85 485.2 937.2 481.55 932 481.55 926.9 481.55 923.2 485.2 919.55 488.85 919.55 494.05 919.55 499.2 923.2 502.8 926.9 506.5 932 506.5 937.2 506.5 940.85 502.8 944.5 499.2 944.5 494.05 M847.5 494.05 Q847.5 499.2 851.15 502.8 854.8 506.5 860 506.5 865.1 506.5 868.8 502.8 872.45 499.2 872.45 494.05 872.45 488.85 868.8 485.2 865.1 481.55 860 481.55 854.8 481.55 851.15 485.2 847.5 488.85 847.5 494.05"/>
+ <path stroke="none" fill="#9C6236" d="M907.45 452 L908 452.3 Q914.3 455.9 917.7 460.4 921.1 464.75 919.8 467.25 919.2 465.7 917.7 463.85 914.3 459.35 908 455.7 L906 454.75 Q895.65 450.15 886.05 454.7 L884.05 455.7 Q877.65 459.35 874.3 463.85 872.8 465.7 872.25 467.3 870.9 464.75 874.3 460.4 877.65 455.9 884.05 452.3 L884.6 452 Q895.55 446.05 907.45 452"/>
+ <path stroke="none" fill="#8E5A32" d="M919.8 467.25 L919.7 467.4 Q918.2 470.05 912.55 469.25 909.55 468.8 906.3 467.55 L904.55 466.8 Q905.25 468.65 905.45 470.4 L905.5 470.6 Q905.65 472.25 905.35 473.3 905.1 474.3 904.4 474.75 902.75 475.65 900 473.55 897.85 471.8 896 469 894.15 471.8 892 473.55 889.25 475.65 887.65 474.75 886.9 474.3 886.6 473.3 886.3 472.25 886.5 470.65 L886.5 470.4 Q886.8 468.65 887.5 466.8 L885.7 467.55 Q882.45 468.8 879.45 469.25 873.85 470.05 872.3 467.4 L872.25 467.3 Q872.8 465.7 874.3 463.85 877.65 459.35 884.05 455.7 L886.05 454.7 Q895.65 450.15 906 454.75 L908 455.7 Q914.3 459.35 917.7 463.85 919.2 465.7 919.8 467.25 M933.45 543.4 Q932.7 555.45 922.5 564.1 911.5 573.5 896 573.5 880.45 573.5 869.45 564.1 859.3 555.4 858.55 543.4 859.35 531.5 869.45 522.85 872.5 520.25 875.9 518.4 884.75 513.5 896 513.5 907.25 513.5 916.15 518.45 919.5 520.3 922.5 522.85 932.6 531.5 933.45 543.4 M880.4 533.9 Q881.9 535.3 883.95 535.3 886.1 535.3 887.6 533.8 889.1 532.3 889.1 530.15 889.1 529.05 888.75 528.15 L887.7 526.6 887.55 526.45 Q885 523.9 882.15 523.05 L881.95 523 Q879.75 522.35 878.4 523.05 877.9 523.25 877.5 523.65 L876.9 524.5 Q876.25 525.75 876.7 527.65 L876.8 528.15 877.25 529.45 Q878.2 531.7 880.25 533.75 L880.4 533.9 M914.5 523.65 L913.65 523.05 Q912.25 522.35 910.05 523 L909.8 523.1 Q906.95 523.95 904.45 526.45 L904.3 526.6 Q903.65 527.3 903.3 528.15 902.9 529.05 902.9 530.15 902.9 532.3 904.4 533.8 905.9 535.3 908.05 535.3 910.1 535.3 911.6 533.9 L911.75 533.75 Q913.8 531.7 914.75 529.45 L915.2 528.15 915.35 527.65 Q915.75 525.75 915.1 524.5 L914.5 523.65"/>
+ <path stroke="none" fill="#F3DBC8" d="M906.3 467.55 Q907.65 492.05 914.5 513.6 906.25 509.5 896 509.5 885.75 509.5 877.5 513.55 884.35 492.05 885.7 467.55 L887.5 466.8 Q886.8 468.65 886.5 470.4 L886.5 470.65 Q886.3 472.25 886.6 473.3 886.9 474.3 887.65 474.75 889.25 475.65 892 473.55 894.15 471.8 896 469 897.85 471.8 900 473.55 902.75 475.65 904.4 474.75 905.1 474.3 905.35 473.3 905.65 472.25 905.5 470.6 L905.45 470.4 Q905.25 468.65 904.55 466.8 L906.3 467.55"/>
+ <path stroke="none" fill="#FFFFFF" d="M939.75 494.25 Q939.75 490.65 937.25 488.1 934.75 485.6 931.1 485.6 927.55 485.6 924.95 488.1 922.45 490.65 922.45 494.25 922.45 497.85 924.95 500.3 927.55 502.85 931.1 502.85 934.75 502.85 937.25 500.3 939.75 497.85 939.75 494.25 M944.5 494.05 Q944.5 499.2 940.85 502.8 937.2 506.5 932 506.5 926.9 506.5 923.2 502.8 919.55 499.2 919.55 494.05 919.55 488.85 923.2 485.2 926.9 481.55 932 481.55 937.2 481.55 940.85 485.2 944.5 488.85 944.5 494.05 M852.2 494.25 Q852.2 497.85 854.75 500.3 857.25 502.85 860.9 502.85 864.45 502.85 867 500.3 869.55 497.85 869.55 494.25 869.55 490.65 867 488.1 864.45 485.6 860.9 485.6 857.25 485.6 854.75 488.1 852.2 490.65 852.2 494.25 M847.5 494.05 Q847.5 488.85 851.15 485.2 854.8 481.55 860 481.55 865.1 481.55 868.8 485.2 872.45 488.85 872.45 494.05 872.45 499.2 868.8 502.8 865.1 506.5 860 506.5 854.8 506.5 851.15 502.8 847.5 499.2 847.5 494.05"/>
+ <path stroke="none" fill="#5B5B5B" d="M939.75 494.25 Q939.75 497.85 937.25 500.3 934.75 502.85 931.1 502.85 927.55 502.85 924.95 500.3 922.45 497.85 922.45 494.25 922.45 490.65 924.95 488.1 927.55 485.6 931.1 485.6 934.75 485.6 937.25 488.1 939.75 490.65 939.75 494.25 M852.2 494.25 Q852.2 490.65 854.75 488.1 857.25 485.6 860.9 485.6 864.45 485.6 867 488.1 869.55 490.65 869.55 494.25 869.55 497.85 867 500.3 864.45 502.85 860.9 502.85 857.25 502.85 854.75 500.3 852.2 497.85 852.2 494.25"/>
+ <path stroke="none" fill="#B4723F" d="M884.6 452 L840.65 452 Q832.25 452 832 460.2 L832 456.7 Q832 448 840.65 448 L951.35 448 Q960 448 960 456.7 L960 460.2 Q959.75 452 951.35 452 L907.45 452 Q895.55 446.05 884.6 452"/>
+ <path stroke="none" fill="#B67340" d="M914.5 513.6 Q918.75 515.65 922.5 518.85 933.05 527.9 933.5 540.5 L933.5 541.5 933.45 543.4 Q932.6 531.5 922.5 522.85 919.5 520.3 916.15 518.45 907.25 513.5 896 513.5 884.75 513.5 875.9 518.4 872.5 520.25 869.45 522.85 859.35 531.5 858.55 543.4 L858.5 541.5 858.5 540.5 Q858.9 527.9 869.45 518.85 873.2 515.65 877.5 513.55 885.75 509.5 896 509.5 906.25 509.5 914.5 513.6"/>
+ <path stroke="none" fill="#704627" d="M880.4 533.9 L880.25 533.75 Q878.2 531.7 877.25 529.45 L876.8 528.15 876.7 527.65 Q876.25 525.75 876.9 524.5 L877.5 523.65 Q877.9 523.25 878.4 523.05 879.75 522.35 881.95 523 L882.15 523.05 Q885 523.9 887.55 526.45 L887.7 526.6 888.75 528.15 Q889.1 529.05 889.1 530.15 889.1 532.3 887.6 533.8 886.1 535.3 883.95 535.3 881.9 535.3 880.4 533.9 M914.5 523.65 L915.1 524.5 Q915.75 525.75 915.35 527.65 L915.2 528.15 914.75 529.45 Q913.8 531.7 911.75 533.75 L911.6 533.9 Q910.1 535.3 908.05 535.3 905.9 535.3 904.4 533.8 902.9 532.3 902.9 530.15 902.9 529.05 903.3 528.15 903.65 527.3 904.3 526.6 L904.45 526.45 Q906.95 523.95 909.8 523.1 L910.05 523 Q912.25 522.35 913.65 523.05 L914.5 523.65"/>
+ <path stroke="none" fill="#B4723F" d="M1088 460.2 L1088 456.7 Q1088 448 1096.65 448 L1207.35 448 Q1216 448 1216 456.7 L1216 460.2 Q1215.75 452 1207.35 452 L1162 452 1162 451.95 1152 451.25 1142 451.95 1142 452 1096.65 452 Q1088.25 452 1088 460.2"/>
+ <path stroke="none" fill="#A16639" d="M1088 460.2 Q1088.25 452 1096.65 452 L1142 452 1142.05 455.9 1137.7 455.9 Q1134.9 455.9 1132.95 457.9 1131 459.9 1131 462.7 L1131 466.45 1131 478.35 Q1131.1 481.05 1132.95 482.9 1134.9 484.9 1137.55 486.6 L1139.55 487.85 Q1137.4 501.05 1133.5 513.3 1129.2 515.4 1125.45 518.6 1114.9 527.65 1114.5 540.25 L1114.5 541.25 1114.55 543.15 Q1115.3 555.15 1125.45 563.85 1136.45 573.25 1152 573.25 1167.5 573.25 1178.5 563.85 1188.7 555.2 1189.45 543.15 L1189.5 541.25 1189.5 540.25 Q1189.05 527.65 1178.5 518.6 1174.75 515.45 1170.55 513.35 1166.6 501.1 1164.5 487.85 L1166.7 486.45 Q1169.05 484.9 1171 482.9 1172.9 481.05 1173 478.35 L1173 466.45 1173 462.7 Q1173 459.9 1171 457.9 1169.05 455.9 1166.3 455.9 L1162 455.9 1162 452 1207.35 452 Q1215.75 452 1216 460.2 L1216 567.85 Q1215.75 576 1207.35 576 L1096.65 576 Q1088.25 576 1088 567.85 L1088 460.2 M1200.5 493.8 Q1200.5 488.6 1196.85 484.95 1193.2 481.3 1188 481.3 1182.9 481.3 1179.2 484.95 1175.55 488.6 1175.55 493.8 1175.55 498.95 1179.2 502.55 1182.9 506.25 1188 506.25 1193.2 506.25 1196.85 502.55 1200.5 498.95 1200.5 493.8 M1103.5 493.8 Q1103.5 498.95 1107.15 502.55 1110.8 506.25 1116 506.25 1121.1 506.25 1124.8 502.55 1128.45 498.95 1128.45 493.8 1128.45 488.6 1124.8 484.95 1121.1 481.3 1116 481.3 1110.8 481.3 1107.15 484.95 1103.5 488.6 1103.5 493.8"/>
+ <path stroke="none" fill="#AA6C3B" d="M1142 452 L1142 451.95 1152 451.25 1162 451.95 1162 452 1162 455.9 1142.05 455.9 1142 452 M1173 466.45 L1173 478.35 Q1172.9 481.05 1171 482.9 1169.05 484.9 1166.7 486.45 L1164.5 487.85 Q1166.6 501.1 1170.55 513.35 1162.25 509.25 1152 509.25 1141.75 509.25 1133.5 513.3 1137.4 501.05 1139.55 487.85 L1137.55 486.6 Q1134.9 484.9 1132.95 482.9 1131.1 481.05 1131 478.35 L1131 466.45 Q1131.05 465.15 1131.5 464.05 1132 462.9 1132.95 461.9 1134.9 459.9 1137.7 459.9 L1166.3 459.9 Q1169.05 459.9 1171 461.9 1172 462.9 1172.5 464.1 1172.95 465.2 1173 466.45"/>
+ <path stroke="none" fill="#BD7841" d="M1173 466.45 Q1172.95 465.2 1172.5 464.1 1172 462.9 1171 461.9 1169.05 459.9 1166.3 459.9 L1137.7 459.9 Q1134.9 459.9 1132.95 461.9 1132 462.9 1131.5 464.05 1131.05 465.15 1131 466.45 L1131 462.7 Q1131 459.9 1132.95 457.9 1134.9 455.9 1137.7 455.9 L1142.05 455.9 1162 455.9 1166.3 455.9 Q1169.05 455.9 1171 457.9 1173 459.9 1173 462.7 L1173 466.45"/>
+ <path stroke="none" fill="#FFFFFF" d="M1200.5 493.8 Q1200.5 498.95 1196.85 502.55 1193.2 506.25 1188 506.25 1182.9 506.25 1179.2 502.55 1175.55 498.95 1175.55 493.8 1175.55 488.6 1179.2 484.95 1182.9 481.3 1188 481.3 1193.2 481.3 1196.85 484.95 1200.5 488.6 1200.5 493.8 M1195.75 494 Q1195.75 490.4 1193.25 487.85 1190.75 485.35 1187.1 485.35 1183.55 485.35 1180.95 487.85 1178.45 490.4 1178.45 494 1178.45 497.6 1180.95 500.05 1183.55 502.6 1187.1 502.6 1190.75 502.6 1193.25 500.05 1195.75 497.6 1195.75 494 M1103.5 493.8 Q1103.5 488.6 1107.15 484.95 1110.8 481.3 1116 481.3 1121.1 481.3 1124.8 484.95 1128.45 488.6 1128.45 493.8 1128.45 498.95 1124.8 502.55 1121.1 506.25 1116 506.25 1110.8 506.25 1107.15 502.55 1103.5 498.95 1103.5 493.8 M1108.2 494 Q1108.2 497.6 1110.75 500.05 1113.25 502.6 1116.9 502.6 1120.45 502.6 1123 500.05 1125.55 497.6 1125.55 494 1125.55 490.4 1123 487.85 1120.45 485.35 1116.9 485.35 1113.25 485.35 1110.75 487.85 1108.2 490.4 1108.2 494"/>
+ <path stroke="none" fill="#5B5B5B" d="M1108.2 494 Q1108.2 490.4 1110.75 487.85 1113.25 485.35 1116.9 485.35 1120.45 485.35 1123 487.85 1125.55 490.4 1125.55 494 1125.55 497.6 1123 500.05 1120.45 502.6 1116.9 502.6 1113.25 502.6 1110.75 500.05 1108.2 497.6 1108.2 494 M1195.75 494 Q1195.75 497.6 1193.25 500.05 1190.75 502.6 1187.1 502.6 1183.55 502.6 1180.95 500.05 1178.45 497.6 1178.45 494 1178.45 490.4 1180.95 487.85 1183.55 485.35 1187.1 485.35 1190.75 485.35 1193.25 487.85 1195.75 490.4 1195.75 494"/>
+ <path stroke="none" fill="#B67340" d="M1170.55 513.35 Q1174.75 515.45 1178.5 518.6 1189.05 527.65 1189.5 540.25 L1189.5 541.25 1189.45 543.15 Q1188.6 531.25 1178.5 522.6 1175.5 520.05 1172.15 518.2 1163.25 513.25 1152 513.25 1140.75 513.25 1131.9 518.15 1128.5 520 1125.45 522.6 1115.35 531.25 1114.55 543.15 L1114.5 541.25 1114.5 540.25 Q1114.9 527.65 1125.45 518.6 1129.2 515.4 1133.5 513.3 1141.75 509.25 1152 509.25 1162.25 509.25 1170.55 513.35"/>
+ <path stroke="none" fill="#8E5A32" d="M1189.45 543.15 Q1188.7 555.2 1178.5 563.85 1167.5 573.25 1152 573.25 1136.45 573.25 1125.45 563.85 1115.3 555.15 1114.55 543.15 1115.35 531.25 1125.45 522.6 1128.5 520 1131.9 518.15 1140.75 513.25 1152 513.25 1163.25 513.25 1172.15 518.2 1175.5 520.05 1178.5 522.6 1188.6 531.25 1189.45 543.15 M1136.4 533.65 Q1137.9 535.05 1139.95 535.05 1142.1 535.05 1143.6 533.55 1145.1 532.05 1145.1 529.9 1145.1 528.8 1144.75 527.9 L1143.7 526.35 1143.55 526.2 Q1141 523.65 1138.15 522.8 L1137.95 522.75 Q1135.75 522.1 1134.4 522.8 1133.9 523 1133.5 523.4 1133.15 523.75 1132.9 524.25 1132.25 525.5 1132.7 527.4 L1132.8 527.9 Q1132.95 528.55 1133.25 529.2 1134.2 531.45 1136.25 533.5 L1136.4 533.65 M1170.5 523.4 L1169.65 522.8 Q1168.25 522.1 1166.05 522.75 L1165.8 522.85 Q1162.95 523.7 1160.45 526.2 L1160.3 526.35 Q1159.65 527.05 1159.3 527.9 1158.9 528.8 1158.9 529.9 1158.9 532.05 1160.4 533.55 1161.9 535.05 1164.05 535.05 1166.1 535.05 1167.6 533.65 L1167.75 533.5 Q1169.8 531.45 1170.75 529.2 L1171.2 527.9 1171.35 527.4 Q1171.75 525.5 1171.1 524.25 L1170.5 523.4"/>
+ <path stroke="none" fill="#704627" d="M1170.5 523.4 L1171.1 524.25 Q1171.75 525.5 1171.35 527.4 L1171.2 527.9 1170.75 529.2 Q1169.8 531.45 1167.75 533.5 L1167.6 533.65 Q1166.1 535.05 1164.05 535.05 1161.9 535.05 1160.4 533.55 1158.9 532.05 1158.9 529.9 1158.9 528.8 1159.3 527.9 1159.65 527.05 1160.3 526.35 L1160.45 526.2 Q1162.95 523.7 1165.8 522.85 L1166.05 522.75 Q1168.25 522.1 1169.65 522.8 L1170.5 523.4 M1136.4 533.65 L1136.25 533.5 Q1134.2 531.45 1133.25 529.2 1132.95 528.55 1132.8 527.9 L1132.7 527.4 Q1132.25 525.5 1132.9 524.25 1133.15 523.75 1133.5 523.4 1133.9 523 1134.4 522.8 1135.75 522.1 1137.95 522.75 L1138.15 522.8 Q1141 523.65 1143.55 526.2 L1143.7 526.35 1144.75 527.9 Q1145.1 528.8 1145.1 529.9 1145.1 532.05 1143.6 533.55 1142.1 535.05 1139.95 535.05 1137.9 535.05 1136.4 533.65"/>
+ <path stroke="none" fill="#FFFFFF" d="M95.9 676.1 Q96.75 674.65 98 673.4 98.95 672.45 100.05 671.8 102.95 669.9 106.6 669.9 111.6 669.9 115.3 673.4 118.8 676.95 118.8 682 118.8 687.05 115.3 690.5 111.6 694.15 106.6 694.15 101.6 694.15 98 690.5 94.4 687.05 94.4 682 94.4 678.75 95.9 676.1 M100.35 682.25 Q100.35 685.4 102.6 687.55 104.75 689.85 107.95 689.85 111.1 689.85 113.35 687.55 115.6 685.4 115.6 682.25 115.6 678.95 113.35 676.8 111.1 674.65 107.95 674.65 104.75 674.65 102.6 676.8 100.35 678.95 100.35 682.25 M160.2 676.25 Q161.6 678.8 161.6 682 161.6 687.05 158.1 690.5 154.5 694.15 149.4 694.15 144.4 694.15 140.85 690.5 137.25 687.05 137.25 682 137.25 676.95 140.85 673.4 144.4 669.9 149.4 669.9 152.95 669.9 155.8 671.6 L158.1 673.4 Q159.4 674.7 160.2 676.25 M155.75 682.25 Q155.75 678.95 153.5 676.8 151.25 674.65 148.1 674.65 145 674.65 142.65 676.8 140.4 678.95 140.4 682.25 140.4 685.4 142.65 687.55 145 689.85 148.1 689.85 151.25 689.85 153.5 687.55 155.75 685.4 155.75 682.25"/>
+ <path stroke="none" fill="#986C4C" d="M100.05 671.8 Q98.95 672.45 98 673.4 96.75 674.65 95.9 676.1 86.5 687.3 86.5 702.45 86.5 719.65 98.65 731.8 102.5 735.65 106.9 738.3 98.4 748.65 90.9 768 L72.65 768 Q64.25 768 64 759.85 L64 652.2 Q64.25 644 72.65 644 L93.45 644 Q99.6 658.35 106.45 666.9 103.1 668.95 100.05 671.8 M149.15 738.3 Q153.5 735.65 157.35 731.8 169.5 719.65 169.5 702.45 169.5 687.4 160.2 676.25 159.4 674.7 158.1 673.4 L155.8 671.6 Q152.8 668.9 149.55 666.9 156.4 658.35 162.65 644 L183.85 644 Q191.75 644.25 192 652.2 L192 759.85 Q191.75 767.75 183.9 768 L165.2 768 Q157.65 748.65 149.15 738.3"/>
+ <path stroke="none" fill="#916546" d="M149.15 738.3 Q146.1 740.1 142.85 741.4 L143.6 732.65 Q149.55 732.15 153.9 727.75 158.05 723.65 158.75 718.15 L161.75 720.5 162.2 720.6 162.65 720.45 162.85 720.05 163.9 716.45 163.9 716 163.6 715.6 Q161.4 714 158.65 713.1 158.3 710.95 157.45 709.1 L167.2 710.1 167.7 710 168.15 709.55 168.15 708.95 167.45 704.3 167.2 703.8 Q166.95 703.55 166.7 703.5 160.85 702.35 154.4 704.55 L153.9 704 Q149.15 699.2 142.45 699.05 L140.3 699.05 140.4 698.45 140.5 696.7 140.45 695.8 Q140.15 693.55 136.8 691.9 133.15 690.15 128 690.15 122.8 690.15 119.1 691.9 115.75 693.55 115.5 695.8 L115.5 696.7 115.6 698.3 115.7 699.05 113.95 699.05 Q107 699.05 102.05 704 L101.55 704.5 Q95.15 702.35 89.3 703.5 L88.8 703.8 Q88.6 703.95 88.55 704.3 L87.85 708.95 87.85 709.55 88.3 710 88.8 710.1 98.55 709.1 Q97.7 711 97.35 713.1 94.6 714 92.4 715.6 L92.1 716 92.1 716.45 93.15 720.05 93.35 720.45 93.8 720.6 94.25 720.5 97.3 718.15 Q97.95 723.65 102.05 727.75 106.45 732.15 112.45 732.65 112.75 737.4 113.2 741.35 109.9 740.15 106.9 738.3 102.5 735.65 98.65 731.8 86.5 719.65 86.5 702.45 86.5 687.3 95.9 676.1 94.4 678.75 94.4 682 94.4 687.05 98 690.5 101.6 694.15 106.6 694.15 111.6 694.15 115.3 690.5 118.8 687.05 118.8 682 118.8 676.95 115.3 673.4 111.6 669.9 106.6 669.9 102.95 669.9 100.05 671.8 103.1 668.95 106.45 666.9 116 660.95 128 660.95 140 660.95 149.55 666.9 152.8 668.9 155.8 671.6 152.95 669.9 149.4 669.9 144.4 669.9 140.85 673.4 137.25 676.95 137.25 682 137.25 687.05 140.85 690.5 144.4 694.15 149.4 694.15 154.5 694.15 158.1 690.5 161.6 687.05 161.6 682 161.6 678.8 160.2 676.25 169.5 687.4 169.5 702.45 169.5 719.65 157.35 731.8 153.5 735.65 149.15 738.3 M124.35 729.15 L125.85 727.75 128 725.25 130.1 727.75 131.65 729.15 131.65 743.8 128 743.95 124.35 743.8 124.35 729.15"/>
+ <path stroke="none" fill="#5B5B5B" d="M100.35 682.25 Q100.35 678.95 102.6 676.8 104.75 674.65 107.95 674.65 111.1 674.65 113.35 676.8 115.6 678.95 115.6 682.25 115.6 685.4 113.35 687.55 111.1 689.85 107.95 689.85 104.75 689.85 102.6 687.55 100.35 685.4 100.35 682.25 M155.75 682.25 Q155.75 685.4 153.5 687.55 151.25 689.85 148.1 689.85 145 689.85 142.65 687.55 140.4 685.4 140.4 682.25 140.4 678.95 142.65 676.8 145 674.65 148.1 674.65 151.25 674.65 153.5 676.8 155.75 678.95 155.75 682.25"/>
+ <path stroke="none" fill="#A17250" d="M106.45 666.9 Q99.6 658.35 93.45 644 L162.65 644 Q156.4 658.35 149.55 666.9 140 660.95 128 660.95 116 660.95 106.45 666.9"/>
+ <path stroke="none" fill="#333333" d="M115.6 698.3 L115.5 696.7 115.5 695.8 Q115.75 693.55 119.1 691.9 122.8 690.15 128 690.15 133.15 690.15 136.8 691.9 140.15 693.55 140.45 695.8 L140.5 696.7 140.4 698.45 Q139.9 696.4 136.8 694.9 133.15 693.15 128 693.15 122.8 693.15 119.1 694.9 116.1 696.35 115.6 698.3"/>
+ <path stroke="none" fill="#B17E58" d="M93.45 644 L72.65 644 Q64.25 644 64 652.2 L64 648.7 Q64 640 72.65 640 L183.9 640 Q189.3 640.2 191.1 644 192 645.9 192 648.7 L192 652.2 Q191.75 644.25 183.85 644 L162.65 644 93.45 644"/>
+ <path stroke="none" fill="#3C6672" d="M140.3 699.05 L142.45 699.05 Q149.15 699.2 153.9 704 L154.4 704.55 Q151.45 705.5 148.35 707.2 148.05 707.4 147.9 707.7 L147.9 708.3 148.2 708.85 148.8 709.05 Q153 708.85 157.45 709.1 158.3 710.95 158.65 713.1 154.5 711.75 149.2 712.05 148.9 712.1 148.7 712.25 L148.5 712.7 148.5 713.2 148.9 713.55 Q154.25 715.05 158.75 718.15 158.05 723.65 153.9 727.75 149.55 732.15 143.6 732.65 L142 732.7 Q138.1 732.7 134.85 731.15 133.15 730.35 131.65 729.15 L130.1 727.75 128 725.25 125.85 727.75 124.35 729.15 Q122.85 730.35 121.15 731.15 117.85 732.7 113.95 732.7 L112.45 732.65 Q106.45 732.15 102.05 727.75 97.95 723.65 97.3 718.15 101.75 715.05 107.1 713.55 L107.5 713.2 107.5 712.7 107.3 712.25 106.8 712.05 Q101.5 711.75 97.35 713.1 97.7 711 98.55 709.1 103 708.85 107.2 709.05 L107.8 708.85 108.1 708.3 108.1 707.7 107.65 707.2 Q104.55 705.5 101.55 704.5 L102.05 704 Q107 699.05 113.95 699.05 L115.7 699.05 Q116.35 702.7 119.1 705.45 122.8 709.15 128 709.15 133.15 709.15 136.8 705.45 139.6 702.7 140.3 699.05"/>
+ <path stroke="none" fill="#252525" d="M140.3 699.05 Q139.6 702.7 136.8 705.45 133.15 709.15 128 709.15 122.8 709.15 119.1 705.45 116.35 702.7 115.7 699.05 L115.6 698.3 Q116.1 696.35 119.1 694.9 122.8 693.15 128 693.15 133.15 693.15 136.8 694.9 139.9 696.4 140.4 698.45 L140.3 699.05 M154.4 704.55 Q160.85 702.35 166.7 703.5 166.95 703.55 167.2 703.8 L167.45 704.3 168.15 708.95 168.15 709.55 167.7 710 167.2 710.1 157.45 709.1 Q153 708.85 148.8 709.05 L148.2 708.85 147.9 708.3 147.9 707.7 Q148.05 707.4 148.35 707.2 151.45 705.5 154.4 704.55 M158.65 713.1 Q161.4 714 163.6 715.6 L163.9 716 163.9 716.45 162.85 720.05 162.65 720.45 162.2 720.6 161.75 720.5 158.75 718.15 Q154.25 715.05 148.9 713.55 L148.5 713.2 148.5 712.7 148.7 712.25 Q148.9 712.1 149.2 712.05 154.5 711.75 158.65 713.1 M101.55 704.5 Q104.55 705.5 107.65 707.2 L108.1 707.7 108.1 708.3 107.8 708.85 107.2 709.05 Q103 708.85 98.55 709.1 L88.8 710.1 88.3 710 87.85 709.55 87.85 708.95 88.55 704.3 Q88.6 703.95 88.8 703.8 L89.3 703.5 Q95.15 702.35 101.55 704.5 M97.35 713.1 Q101.5 711.75 106.8 712.05 L107.3 712.25 107.5 712.7 107.5 713.2 107.1 713.55 Q101.75 715.05 97.3 718.15 L94.25 720.5 93.8 720.6 93.35 720.45 93.15 720.05 92.1 716.45 92.1 716 92.4 715.6 Q94.6 714 97.35 713.1"/>
+ <path stroke="none" fill="#FFFCF5" d="M143.6 732.65 L142.85 741.4 Q141.05 757.35 137.7 759.3 136.55 760.15 135.25 760 133.5 759.95 132.5 758.65 131.7 757.65 131.65 756.5 L131.65 756.2 131.65 743.8 131.65 729.15 Q133.15 730.35 134.85 731.15 138.1 732.7 142 732.7 L143.6 732.65 M112.45 732.65 L113.95 732.7 Q117.85 732.7 121.15 731.15 122.85 730.35 124.35 729.15 L124.35 743.8 124.35 756.2 124.35 756.5 Q124.3 757.65 123.5 758.65 122.5 759.95 120.75 760 119.45 760.15 118.3 759.3 114.95 757.35 113.2 741.35 112.75 737.4 112.45 732.65"/>
+ <path stroke="none" fill="#845C41" d="M90.9 768 Q98.4 748.65 106.9 738.3 109.9 740.15 113.2 741.35 114.95 757.35 118.3 759.3 119.45 760.15 120.75 760 122.5 759.95 123.5 758.65 124.3 757.65 124.35 756.5 L124.35 756.2 124.35 743.8 128 743.95 131.65 743.8 131.65 756.2 131.65 756.5 Q131.7 757.65 132.5 758.65 133.5 759.95 135.25 760 136.55 760.15 137.7 759.3 141.05 757.35 142.85 741.4 146.1 740.1 149.15 738.3 157.65 748.65 165.2 768 L90.9 768"/>
+ <path stroke="none" fill="#B4723F" d="M320 652.2 L320 648.7 Q320 640 328.65 640 L439.35 640 Q448 640 448 648.7 L448 652.2 Q447.75 644 439.35 644 L328.65 644 Q320.25 644 320 652.2"/>
+ <path stroke="none" fill="#A16639" d="M320 652.2 Q320.25 644 328.65 644 L439.35 644 Q447.75 644 448 652.2 L448 759.85 Q447.75 768 439.35 768 L429.35 768 Q424.85 760.6 419.9 755 412.25 746.3 403.6 741.8 394.4 737.05 384 737.05 373.7 737.05 364.55 741.75 355.75 746.25 348.05 755.05 343.1 760.65 338.6 768 L328.65 768 Q320.25 768 320 759.85 L320 652.2 M432.8 688.65 L432.8 688.6 Q431.15 682.6 425.85 679.55 420.45 676.45 414.45 678.05 408.5 679.6 405.35 685 402.25 690.35 403.85 696.35 L403.85 696.4 Q405.8 703.6 411.35 707.45 417 711.45 422.95 709.9 428.95 708.3 431.85 702 434.7 695.85 432.8 688.65 M335.1 688.65 Q333.2 695.85 336.05 702 338.95 708.3 344.95 709.9 350.9 711.45 356.55 707.45 362.1 703.6 364.05 696.4 L364.05 696.35 Q365.65 690.35 362.55 685 359.4 679.6 353.45 678.05 347.45 676.45 342.05 679.55 336.75 682.6 335.1 688.6 L335.1 688.65 M401.45 663.9 Q401.45 658.7 396.3 655.05 391.2 651.4 383.95 651.4 376.7 651.4 371.55 655.05 366.45 658.7 366.45 663.9 L366.5 664.75 Q366.85 675.35 371.55 683 376.7 691.4 383.95 691.4 391.2 691.4 396.3 683 401.05 675.35 401.45 664.75 L401.45 663.9 M396.8 707.65 L397 705.3 397 704.4 Q396.65 702 393.2 700.3 389.35 698.45 383.95 698.45 378.55 698.45 374.7 700.3 371.2 702 370.9 704.4 L370.9 705.3 371.1 707.65 Q371.75 711.6 374.7 714.55 376.85 716.7 379.5 717.65 L378.65 718.65 376.6 720.15 Q375.15 720.8 373.5 720.8 370.5 720.8 368.35 718.65 367.55 717.85 367 716.9 L366.45 716.45 365.8 716.55 361.2 719.1 Q360.85 719.3 360.8 719.65 360.65 719.95 360.85 720.3 361.45 721.4 362.35 722.5 L363.4 723.65 Q367.55 727.85 373.5 727.85 379.4 727.85 383.65 723.65 L383.95 723.35 384.25 723.65 Q388.45 727.85 394.35 727.85 400.25 727.85 404.5 723.65 L405.55 722.5 407.05 720.2 407.1 719.55 406.65 719.05 401.95 716.6 401.25 716.55 400.75 717 399.5 718.65 Q397.35 720.8 394.35 720.8 392.7 720.8 391.3 720.15 390.2 719.6 389.25 718.65 L388.4 717.65 Q391.05 716.7 393.2 714.55 396.15 711.6 396.8 707.65"/>
+ <path stroke="none" fill="#8E5A32" d="M427.15 692.1 Q427.15 688.25 424.45 685.55 421.7 682.85 417.85 682.85 414.05 682.85 411.3 685.55 408.6 688.25 408.6 692.1 408.6 695.95 411.3 698.55 414.05 701.35 417.85 701.35 421.7 701.35 424.45 698.55 427.15 695.95 427.15 692.1 M432.8 688.65 Q434.7 695.85 431.85 702 428.95 708.3 422.95 709.9 417 711.45 411.35 707.45 405.8 703.6 403.85 696.4 L403.85 696.35 Q402.25 690.35 405.35 685 408.5 679.6 414.45 678.05 420.45 676.45 425.85 679.55 431.15 682.6 432.8 688.6 L432.8 688.65 M335.1 688.65 L335.1 688.6 Q336.75 682.6 342.05 679.55 347.45 676.45 353.45 678.05 359.4 679.6 362.55 685 365.65 690.35 364.05 696.35 L364.05 696.4 Q362.1 703.6 356.55 707.45 350.9 711.45 344.95 709.9 338.95 708.3 336.05 702 333.2 695.85 335.1 688.65 M340.75 692.1 Q340.75 695.95 343.45 698.55 346.2 701.35 350.05 701.35 353.85 701.35 356.6 698.55 359.3 695.95 359.3 692.1 359.3 688.25 356.6 685.55 353.85 682.85 350.05 682.85 346.2 682.85 343.45 685.55 340.75 688.25 340.75 692.1"/>
+ <path stroke="none" fill="#FFFFFF" d="M340.75 692.1 Q340.75 688.25 343.45 685.55 346.2 682.85 350.05 682.85 353.85 682.85 356.6 685.55 359.3 688.25 359.3 692.1 359.3 695.95 356.6 698.55 353.85 701.35 350.05 701.35 346.2 701.35 343.45 698.55 340.75 695.95 340.75 692.1 M427.15 692.1 Q427.15 695.95 424.45 698.55 421.7 701.35 417.85 701.35 414.05 701.35 411.3 698.55 408.6 695.95 408.6 692.1 408.6 688.25 411.3 685.55 414.05 682.85 417.85 682.85 421.7 682.85 424.45 685.55 427.15 688.25 427.15 692.1 M422.65 692.25 Q422.65 689.8 420.95 688.15 419.25 686.45 416.85 686.45 414.45 686.45 412.7 688.15 411 689.8 411 692.25 411 694.65 412.7 696.3 414.45 698.05 416.85 698.05 419.25 698.05 420.95 696.3 422.65 694.65 422.65 692.25 M345.25 692.25 Q345.25 694.65 346.95 696.3 348.65 698.05 351.05 698.05 353.45 698.05 355.2 696.3 356.9 694.65 356.9 692.25 356.9 689.8 355.2 688.15 353.45 686.45 351.05 686.45 348.65 686.45 346.95 688.15 345.25 689.8 345.25 692.25"/>
+ <path stroke="none" fill="#5B5B5B" d="M345.25 692.25 Q345.25 689.8 346.95 688.15 348.65 686.45 351.05 686.45 353.45 686.45 355.2 688.15 356.9 689.8 356.9 692.25 356.9 694.65 355.2 696.3 353.45 698.05 351.05 698.05 348.65 698.05 346.95 696.3 345.25 694.65 345.25 692.25 M422.65 692.25 Q422.65 694.65 420.95 696.3 419.25 698.05 416.85 698.05 414.45 698.05 412.7 696.3 411 694.65 411 692.25 411 689.8 412.7 688.15 414.45 686.45 416.85 686.45 419.25 686.45 420.95 688.15 422.65 689.8 422.65 692.25"/>
+ <path stroke="none" fill="#AA6C3C" d="M401.45 663.9 L401.45 664.75 Q401.05 675.35 396.3 683 391.2 691.4 383.95 691.4 376.7 691.4 371.55 683 366.85 675.35 366.5 664.75 L366.45 663.9 Q366.45 658.7 371.55 655.05 376.7 651.4 383.95 651.4 391.2 651.4 396.3 655.05 401.45 658.7 401.45 663.9"/>
+ <path stroke="none" fill="#545454" d="M371.1 707.65 L370.9 705.3 370.9 704.4 Q371.2 702 374.7 700.3 378.55 698.45 383.95 698.45 389.35 698.45 393.2 700.3 396.65 702 397 704.4 L397 705.3 396.8 707.65 Q396.1 705.75 393.2 704.3 389.35 702.45 383.95 702.45 378.55 702.45 374.7 704.3 371.8 705.7 371.1 707.65"/>
+ <path stroke="none" fill="#464646" d="M371.1 707.65 Q371.8 705.7 374.7 704.3 378.55 702.45 383.95 702.45 389.35 702.45 393.2 704.3 396.1 705.75 396.8 707.65 396.15 711.6 393.2 714.55 391.05 716.7 388.4 717.65 384.15 719.4 379.5 717.65 376.85 716.7 374.7 714.55 371.75 711.6 371.1 707.65"/>
+ <path stroke="none" fill="#383838" d="M388.4 717.65 L389.25 718.65 Q390.2 719.6 391.3 720.15 392.7 720.8 394.35 720.8 397.35 720.8 399.5 718.65 L400.75 717 401.25 716.55 401.95 716.6 406.65 719.05 407.1 719.55 407.05 720.2 405.55 722.5 404.5 723.65 Q400.25 727.85 394.35 727.85 388.45 727.85 384.25 723.65 L383.95 723.35 383.65 723.65 Q379.4 727.85 373.5 727.85 367.55 727.85 363.4 723.65 L362.35 722.5 Q361.45 721.4 360.85 720.3 360.65 719.95 360.8 719.65 360.85 719.3 361.2 719.1 L365.8 716.55 366.45 716.45 367 716.9 Q367.55 717.85 368.35 718.65 370.5 720.8 373.5 720.8 375.15 720.8 376.6 720.15 L378.65 718.65 379.5 717.65 Q384.15 719.4 388.4 717.65"/>
+ <path stroke="none" fill="#955E34" d="M429.35 768 L338.6 768 Q343.1 760.65 348.05 755.05 355.75 746.25 364.55 741.75 373.7 737.05 384 737.05 394.4 737.05 403.6 741.8 412.25 746.3 419.9 755 424.85 760.6 429.35 768"/>
+ <path stroke="none" fill="#5A9BF3" d="M576 652.2 L576 648.7 Q576 640 584.65 640 L695.35 640 Q704 640 704 648.7 L704 652.2 Q703.75 644 695.35 644 L584.65 644 Q576.25 644 576 652.2 M693.25 724.45 L693.05 724.9 Q691.45 730.15 686.65 733 681.65 735.9 676.05 734.4 670.55 732.9 667.65 727.95 664.85 723.05 666.3 717.7 L666.25 717.3 Q668.9 707.45 674.75 701.55 680.5 695.65 686.1 697.15 691.6 698.6 693.7 706.65 695.7 714.6 693.25 724.45 M682.55 710.45 Q678.75 709.5 675.35 711.45 671.85 713.45 670.85 717.25 669.8 721.05 671.8 724.55 673.75 727.9 677.55 728.9 681.4 729.95 684.85 728.05 688.25 726 689.3 722.2 690.3 718.35 688.35 714.95 686.4 711.55 682.55 710.45 M587.15 724.45 Q584.7 714.6 586.7 706.65 588.8 698.6 594.3 697.15 599.9 695.65 605.65 701.55 611.5 707.45 614.15 717.3 L614.1 717.7 Q615.55 723.05 612.75 727.95 609.85 732.9 604.35 734.4 598.75 735.9 593.75 733 588.95 730.15 587.35 724.9 L587.15 724.45 M597.85 710.45 Q594 711.55 592.05 714.95 590.1 718.35 591.1 722.2 592.15 726 595.55 728.05 599 729.95 602.85 728.9 606.65 727.9 608.6 724.55 610.6 721.05 609.55 717.25 608.55 713.45 605.05 711.45 601.65 709.5 597.85 710.45"/>
+ <path stroke="none" fill="#528CDB" d="M704 652.2 L704 759.85 Q703.75 768 695.35 768 L584.65 768 Q576.25 768 576 759.85 L576 652.2 Q576.25 644 584.65 644 L695.35 644 Q703.75 644 704 652.2 M693.25 724.45 Q695.7 714.6 693.7 706.65 691.6 698.6 686.1 697.15 680.5 695.65 674.75 701.55 668.9 707.45 666.25 717.3 L666.3 717.7 Q664.85 723.05 667.65 727.95 670.55 732.9 676.05 734.4 681.65 735.9 686.65 733 691.45 730.15 693.05 724.9 L693.25 724.45 M631.2 713.65 L631.1 714.1 Q630.55 723.2 639.9 723 649.65 722.8 649.4 714.1 L649.3 713.25 648.55 706.2 648.1 701.95 646.4 685.75 645.95 681.85 642.35 648.25 Q642.3 647.4 641.7 646.85 L641.65 646.85 641.3 646.6 640.25 646.35 639.25 646.6 638.85 646.85 Q638.25 647.4 638.15 648.25 L634.6 682.05 634.15 686 632.4 702.3 631.95 706.6 631.2 713.65 M657.5 730.3 Q655.65 730.15 653.85 730.9 641.25 736 626.1 730.7 L623.5 730.25 Q621.75 730.25 620.05 731.05 617.05 732.5 616 735.65 614.9 738.7 616.35 741.7 617.75 744.65 620.9 745.75 L623.5 746.6 Q641.9 752.25 657.5 746.6 L660 745.6 Q663 744.25 664.25 741.25 665.45 738.2 664.2 735.15 662.95 732.1 659.9 730.9 L657.5 730.3 M626.7 671.55 Q626.7 669.6 625.3 668.2 623.9 666.8 621.95 666.8 620 666.8 618.6 668.2 617.2 669.6 617.2 671.55 617.2 673.5 618.6 674.9 620 676.3 621.95 676.3 623.9 676.3 625.3 674.9 626.7 673.5 626.7 671.55 M615.55 659.6 Q615.55 658.15 614.5 657.1 613.45 656.05 612 656.05 610.55 656.05 609.5 657.1 608.45 658.15 608.45 659.6 608.45 661.05 609.5 662.1 610.55 663.15 612 663.15 613.45 663.15 614.5 662.1 615.55 661.05 615.55 659.6 M612.85 674.2 Q612.85 671.85 611.15 670.15 609.5 668.5 607.15 668.5 604.8 668.5 603.1 670.15 601.45 671.85 601.45 674.2 601.45 676.55 603.1 678.2 604.8 679.9 607.15 679.9 609.5 679.9 611.15 678.2 612.85 676.55 612.85 674.2 M660.5 755.05 Q659.9 752.75 657.8 751.6 655.8 750.45 653.55 751.05 651.25 751.65 650 753.7 648.9 755.7 649.5 758 650.1 760.25 652.1 761.45 654.2 762.65 656.5 762.05 658.75 761.45 659.9 759.35 661.1 757.3 660.5 755.05 M673.15 748.95 Q672.65 747.05 670.95 746.05 669.25 745.05 667.4 745.55 665.5 746.05 664.5 747.8 663.5 749.5 664 751.4 664.55 753.25 666.25 754.25 667.95 755.2 669.85 754.7 671.7 754.2 672.7 752.5 673.7 750.8 673.15 748.95 M587.15 724.45 L587.35 724.9 Q588.95 730.15 593.75 733 598.75 735.9 604.35 734.4 609.85 732.9 612.75 727.95 615.55 723.05 614.1 717.7 L614.15 717.3 Q611.5 707.45 605.65 701.55 599.9 695.65 594.3 697.15 588.8 698.6 586.7 706.65 584.7 714.6 587.15 724.45"/>
+ <path stroke="none" fill="#FFFFFF" d="M682.55 710.45 Q686.4 711.55 688.35 714.95 690.3 718.35 689.3 722.2 688.25 726 684.85 728.05 681.4 729.95 677.55 728.9 673.75 727.9 671.8 724.55 669.8 721.05 670.85 717.25 671.85 713.45 675.35 711.45 678.75 709.5 682.55 710.45 M679.65 714.15 L679.05 714.05 Q677.05 713.75 675.2 714.8 673.05 716.05 672.45 718.4 671.75 720.85 673.05 723.05 674.05 724.95 676 725.65 L676.55 725.8 Q679 726.45 681.15 725.2 683.35 723.9 683.95 721.55 684.6 719.1 683.3 716.9 682.1 714.85 679.65 714.15 M623.5 730.25 L626.1 730.7 Q641.25 736 653.85 730.9 655.65 730.15 657.5 730.3 658.7 733.45 658.9 736.75 659.05 738.7 658.8 740.75 658.5 743.6 657.5 746.6 641.9 752.25 623.5 746.6 620.25 737.5 623.5 730.25 M597.85 710.45 Q601.65 709.5 605.05 711.45 608.55 713.45 609.55 717.25 610.6 721.05 608.6 724.55 606.65 727.9 602.85 728.9 599 729.95 595.55 728.05 592.15 726 591.1 722.2 590.1 718.35 592.05 714.95 594 711.55 597.85 710.45 M600.75 714.15 Q598.3 714.85 597.1 716.9 595.8 719.1 596.45 721.55 597.05 723.9 599.25 725.2 601.4 726.45 603.85 725.8 L604.4 725.65 Q606.35 724.95 607.35 723.05 608.65 720.85 607.95 718.4 607.35 716.05 605.2 714.8 603.35 713.75 601.35 714.05 L600.75 714.15"/>
+ <path stroke="none" fill="#5B5B5B" d="M600.75 714.15 L601.35 714.05 Q603.35 713.75 605.2 714.8 607.35 716.05 607.95 718.4 608.65 720.85 607.35 723.05 606.35 724.95 604.4 725.65 L603.85 725.8 Q601.4 726.45 599.25 725.2 597.05 723.9 596.45 721.55 595.8 719.1 597.1 716.9 598.3 714.85 600.75 714.15 M679.65 714.15 Q682.1 714.85 683.3 716.9 684.6 719.1 683.95 721.55 683.35 723.9 681.15 725.2 679 726.45 676.55 725.8 L676 725.65 Q674.05 724.95 673.05 723.05 671.75 720.85 672.45 718.4 673.05 716.05 675.2 714.8 677.05 713.75 679.05 714.05 L679.65 714.15"/>
+ <path stroke="none" fill="#FFFCF5" d="M631.2 713.65 L631.95 706.6 Q633.8 709 639.9 708.9 646.55 708.8 648.55 706.2 L649.3 713.25 Q648.4 718.55 639.9 718.7 631.95 718.8 631.2 713.65 M632.4 702.3 L634.15 686 Q636.25 686.7 639.9 686.65 644 686.6 646.4 685.75 L648.1 701.95 Q645.9 704.1 639.9 704.15 634.45 704.2 632.4 702.3 M634.6 682.05 L638.15 648.25 Q638.25 647.4 638.85 646.85 L639.25 646.6 640.25 646.35 641.3 646.6 641.65 646.85 641.7 646.85 Q642.3 647.4 642.35 648.25 L645.95 681.85 639.9 682.6 634.6 682.05"/>
+ <path stroke="none" fill="#F0EDE7" d="M634.6 682.05 L639.9 682.6 645.95 681.85 646.4 685.75 Q644 686.6 639.9 686.65 636.25 686.7 634.15 686 L634.6 682.05 M649.3 713.25 L649.4 714.1 Q649.65 722.8 639.9 723 630.55 723.2 631.1 714.1 L631.2 713.65 Q631.95 718.8 639.9 718.7 648.4 718.55 649.3 713.25 M631.95 706.6 L632.4 702.3 Q634.45 704.2 639.9 704.15 645.9 704.1 648.1 701.95 L648.55 706.2 Q646.55 708.8 639.9 708.9 633.8 709 631.95 706.6"/>
+ <path stroke="none" fill="#E7E7E7" d="M623.5 730.25 Q620.25 737.5 623.5 746.6 L620.9 745.75 Q617.75 744.65 616.35 741.7 614.9 738.7 616 735.65 617.05 732.5 620.05 731.05 621.75 730.25 623.5 730.25 M657.5 746.6 Q658.5 743.6 658.8 740.75 659.05 738.7 658.9 736.75 658.7 733.45 657.5 730.3 L659.9 730.9 Q662.95 732.1 664.2 735.15 665.45 738.2 664.25 741.25 663 744.25 660 745.6 L657.5 746.6"/>
+ <path stroke="none" fill="#4A7FC6" d="M673.15 748.95 Q673.7 750.8 672.7 752.5 671.7 754.2 669.85 754.7 667.95 755.2 666.25 754.25 664.55 753.25 664 751.4 663.5 749.5 664.5 747.8 665.5 746.05 667.4 745.55 669.25 745.05 670.95 746.05 672.65 747.05 673.15 748.95 M660.5 755.05 Q661.1 757.3 659.9 759.35 658.75 761.45 656.5 762.05 654.2 762.65 652.1 761.45 650.1 760.25 649.5 758 648.9 755.7 650 753.7 651.25 751.65 653.55 751.05 655.8 750.45 657.8 751.6 659.9 752.75 660.5 755.05 M612.85 674.2 Q612.85 676.55 611.15 678.2 609.5 679.9 607.15 679.9 604.8 679.9 603.1 678.2 601.45 676.55 601.45 674.2 601.45 671.85 603.1 670.15 604.8 668.5 607.15 668.5 609.5 668.5 611.15 670.15 612.85 671.85 612.85 674.2 M615.55 659.6 Q615.55 661.05 614.5 662.1 613.45 663.15 612 663.15 610.55 663.15 609.5 662.1 608.45 661.05 608.45 659.6 608.45 658.15 609.5 657.1 610.55 656.05 612 656.05 613.45 656.05 614.5 657.1 615.55 658.15 615.55 659.6 M626.7 671.55 Q626.7 673.5 625.3 674.9 623.9 676.3 621.95 676.3 620 676.3 618.6 674.9 617.2 673.5 617.2 671.55 617.2 669.6 618.6 668.2 620 666.8 621.95 666.8 623.9 666.8 625.3 668.2 626.7 669.6 626.7 671.55"/>
+ <path stroke="none" fill="#2ECC71" d="M901.7 663.4 Q902.05 659.6 904.15 656.45 905.05 655.05 906.35 653.75 L906.35 653.7 908.65 651.85 909.15 651.5 Q912.35 649.45 916.4 649.25 L917.55 649.15 Q924.1 649.15 928.8 653.7 L928.9 653.85 931.05 656.45 932.25 658.75 932.25 658.8 Q933.15 661 933.4 663.45 L933.45 661.85 933.45 661.8 Q933.4 658.9 932.55 656.45 L932.25 655.65 932.25 655.6 Q931.1 652.9 928.9 650.7 L928.8 650.55 Q924.1 646 917.55 646 L916.4 646.1 Q912.35 646.3 909.15 648.35 L908.65 648.7 906.35 650.55 906.35 650.6 Q903.7 653.2 902.55 656.45 901.65 658.95 901.65 661.85 L901.7 663.4 M927.15 661.85 L927.15 661.8 Q927.15 659.8 926.45 658.1 L925.55 656.45 924.4 655.05 Q921.55 652.3 917.55 652.3 L917 652.35 Q914.55 652.4 912.55 653.7 L912.45 653.75 Q911.55 654.3 910.8 655.05 L909.6 656.45 Q907.95 658.8 907.95 661.85 907.95 665.85 910.8 668.55 L911.85 669.55 Q914.3 671.45 917.55 671.45 921.55 671.45 924.4 668.55 927.15 665.85 927.15 661.85 M907.1 676.9 L906.55 676.55 Q905.75 676.15 904.4 676.55 L904.25 676.55 Q902.55 677.1 901.05 678.6 L900.95 678.7 900.35 679.6 Q900.1 680.15 900.1 680.85 900.1 682.1 901 683 901.9 683.95 903.2 683.95 904.45 683.95 905.35 683.1 L905.4 683 Q906.65 681.75 907.25 680.4 L907.5 679.6 907.6 679.3 Q907.85 678.15 907.45 677.4 L907.1 676.9 M886.55 683.1 Q887.45 683.95 888.7 683.95 889.95 683.95 890.85 683 891.8 682.1 891.8 680.85 L891.55 679.6 890.95 678.7 890.85 678.6 Q889.3 677.05 887.6 676.55 L887.5 676.55 Q886.15 676.15 885.35 676.55 885 676.65 884.8 676.9 L884.4 677.4 Q884 678.15 884.3 679.3 L884.4 679.6 Q884.45 680 884.65 680.4 885.2 681.75 886.45 683 L886.55 683.1 M960 652.2 L960 681.35 959.6 681.45 Q932.85 688 895.95 688 859.05 688 832.25 681.4 L832 681.35 832 652.2 Q832.25 644 840.65 644 L951.35 644 Q959.75 644 960 652.2 M858.45 663.5 Q858.7 660.85 859.75 658.55 L859.65 658.75 860.85 656.45 Q861.8 655 863.15 653.7 867.8 649.15 874.3 649.15 L875.4 649.25 Q879.3 649.4 882.65 651.5 L883.05 651.75 885.05 653.2 885.65 653.75 885.65 653.8 Q886.9 655.05 887.8 656.45 889.8 659.55 890.15 663.4 L890.25 661.85 Q890.25 658.95 889.4 656.45 888.25 653.25 885.65 650.65 L885.65 650.6 885.05 650.05 883.05 648.6 882.65 648.3 Q879.3 646.25 875.4 646.1 L874.3 646 Q867.8 646 863.15 650.55 860.8 652.8 859.65 655.6 L859.75 655.4 859.35 656.45 Q858.4 658.95 858.4 661.8 L858.4 661.85 858.45 663.5 M864.7 661.85 Q864.7 665.85 867.55 668.55 870.35 671.45 874.3 671.45 877.45 671.45 880 669.55 L880.9 668.85 881.15 668.55 Q883.95 665.85 883.95 661.85 883.95 658.8 882.35 656.45 L881.15 655.05 880.9 654.85 Q880.2 654.2 879.4 653.7 L879.35 653.7 Q877.3 652.4 874.85 652.35 L874.3 652.3 Q870.35 652.3 867.55 655.05 L866.35 656.45 865.5 658 Q864.7 659.75 864.7 661.8 L864.7 661.85"/>
+ <path stroke="none" fill="#31DE7A" d="M901.7 663.4 L901.65 661.85 Q901.65 658.95 902.55 656.45 903.7 653.2 906.35 650.6 L906.35 650.55 908.65 648.7 909.15 648.35 Q912.35 646.3 916.4 646.1 L917.55 646 Q924.1 646 928.8 650.55 L928.9 650.7 Q931.1 652.9 932.25 655.6 L932.25 655.65 932.55 656.45 Q933.4 658.9 933.45 661.8 L933.45 661.85 933.4 663.45 Q933.15 661 932.25 658.8 L932.25 658.75 931.05 656.45 928.9 653.85 928.8 653.7 Q924.1 649.15 917.55 649.15 L916.4 649.25 Q912.35 649.45 909.15 651.5 L908.65 651.85 906.35 653.7 906.35 653.75 Q905.05 655.05 904.15 656.45 902.05 659.6 901.7 663.4 M832 652.2 L832 648.7 Q832 640 840.65 640 L951.35 640 Q960 640 960 648.7 L960 652.2 Q959.75 644 951.35 644 L840.65 644 Q832.25 644 832 652.2 M858.45 663.5 L858.4 661.85 858.4 661.8 Q858.4 658.95 859.35 656.45 L859.75 655.4 859.65 655.6 Q860.8 652.8 863.15 650.55 867.8 646 874.3 646 L875.4 646.1 Q879.3 646.25 882.65 648.3 L883.05 648.6 885.05 650.05 885.65 650.6 885.65 650.65 Q888.25 653.25 889.4 656.45 890.25 658.95 890.25 661.85 L890.15 663.4 Q889.8 659.55 887.8 656.45 886.9 655.05 885.65 653.8 L885.65 653.75 885.05 653.2 883.05 651.75 882.65 651.5 Q879.3 649.4 875.4 649.25 L874.3 649.15 Q867.8 649.15 863.15 653.7 861.8 655 860.85 656.45 L859.65 658.75 859.75 658.55 Q858.7 660.85 858.45 663.5"/>
+ <path stroke="none" fill="#D23007" d="M927.15 661.85 Q927.15 665.85 924.4 668.55 921.55 671.45 917.55 671.45 914.3 671.45 911.85 669.55 L910.8 668.55 Q907.95 665.85 907.95 661.85 907.95 658.8 909.6 656.45 L910.8 655.05 Q911.55 654.3 912.45 653.75 L912.55 653.7 Q914.55 652.4 917 652.35 L917.55 652.3 Q921.55 652.3 924.4 655.05 L925.55 656.45 926.45 658.1 Q927.15 659.8 927.15 661.8 L927.15 661.85 M922.55 662.05 Q922.55 659.45 920.75 657.75 919.85 656.85 918.75 656.45 L916.5 656.05 914.3 656.45 Q913.35 656.8 912.5 657.5 L912.2 657.75 Q910.45 659.45 910.45 662.05 910.45 664.5 912.15 666.2 L912.2 666.2 Q914.05 668.05 916.5 668.05 919 668.05 920.75 666.2 922.55 664.55 922.55 662.05 M864.7 661.85 L864.7 661.8 Q864.7 659.75 865.5 658 L866.35 656.45 867.55 655.05 Q870.35 652.3 874.3 652.3 L874.85 652.35 Q877.3 652.4 879.35 653.7 L879.4 653.7 Q880.2 654.2 880.9 654.85 L881.15 655.05 882.35 656.45 Q883.95 658.8 883.95 661.85 883.95 665.85 881.15 668.55 L880.9 668.85 880 669.55 Q877.45 671.45 874.3 671.45 870.35 671.45 867.55 668.55 864.7 665.85 864.7 661.85 M869.4 662.05 Q869.4 664.55 871.15 666.2 872.85 668.05 875.4 668.05 877.85 668.05 879.65 666.2 L879.7 666.2 880.9 664.5 Q881.4 663.4 881.4 662.05 881.4 660.65 880.9 659.5 880.45 658.55 879.65 657.75 L879.35 657.5 Q878.55 656.8 877.6 656.45 L875.4 656.05 873.15 656.45 Q872.05 656.85 871.15 657.75 869.4 659.45 869.4 662.05"/>
+ <path stroke="none" fill="#3F3F3F" d="M869.4 662.05 Q869.4 659.45 871.15 657.75 872.05 656.85 873.15 656.45 L875.4 656.05 877.6 656.45 Q878.55 656.8 879.35 657.5 L879.65 657.75 Q880.45 658.55 880.9 659.5 881.4 660.65 881.4 662.05 881.4 663.4 880.9 664.5 L879.7 666.2 879.65 666.2 Q877.85 668.05 875.4 668.05 872.85 668.05 871.15 666.2 869.4 664.55 869.4 662.05 M922.55 662.05 Q922.55 664.55 920.75 666.2 919 668.05 916.5 668.05 914.05 668.05 912.2 666.2 L912.15 666.2 Q910.45 664.5 910.45 662.05 910.45 659.45 912.2 657.75 L912.5 657.5 Q913.35 656.8 914.3 656.45 L916.5 656.05 918.75 656.45 Q919.85 656.85 920.75 657.75 922.55 659.45 922.55 662.05"/>
+ <path stroke="none" fill="#23A35A" d="M907.1 676.9 L907.45 677.4 Q907.85 678.15 907.6 679.3 L907.5 679.6 907.25 680.4 Q906.65 681.75 905.4 683 L905.35 683.1 Q904.45 683.95 903.2 683.95 901.9 683.95 901 683 900.1 682.1 900.1 680.85 900.1 680.15 900.35 679.6 L900.95 678.7 901.05 678.6 Q902.55 677.1 904.25 676.55 L904.4 676.55 Q905.75 676.15 906.55 676.55 L907.1 676.9 M886.55 683.1 L886.45 683 Q885.2 681.75 884.65 680.4 884.45 680 884.4 679.6 L884.3 679.3 Q884 678.15 884.4 677.4 L884.8 676.9 Q885 676.65 885.35 676.55 886.15 676.15 887.5 676.55 L887.6 676.55 Q889.3 677.05 890.85 678.6 L890.95 678.7 891.55 679.6 891.8 680.85 Q891.8 682.1 890.85 683 889.95 683.95 888.7 683.95 887.45 683.95 886.55 683.1"/>
+ <path stroke="none" fill="#FFFFFF" d="M960 681.35 L960 685.35 959.6 685.45 Q932.85 692 895.95 692 859.05 692 832.25 685.4 L832 685.35 832 681.35 832.25 681.4 Q859.05 688 895.95 688 932.85 688 959.6 681.45 L960 681.35"/>
+ <path stroke="none" fill="#E5E5E5" d="M960 685.35 L960 759.85 Q959.75 768 951.35 768 L840.65 768 Q832.25 768 832 759.85 L832 685.35 832.25 685.4 Q859.05 692 895.95 692 932.85 692 959.6 685.45 L960 685.35 M923 746.25 Q922.4 743.95 920.3 742.8 918.3 741.65 916.05 742.25 913.75 742.85 912.5 744.9 911.4 746.9 912 749.2 912.6 751.45 914.6 752.65 916.7 753.85 919 753.25 921.25 752.65 922.4 750.55 923.6 748.5 923 746.25 M921.85 731.45 Q921.45 730.05 920.2 729.3 918.85 728.55 917.45 728.95 916.05 729.3 915.35 730.6 914.6 731.9 915 733.3 915.35 734.7 916.65 735.45 917.9 736.15 919.3 735.8 920.7 735.4 921.5 734.15 922.2 732.85 921.85 731.45 M935.65 740.15 Q935.15 738.25 933.45 737.25 931.75 736.25 929.9 736.75 928 737.25 927 739 926 740.7 926.5 742.6 927.05 744.45 928.75 745.45 930.45 746.4 932.35 745.9 934.2 745.4 935.2 743.7 936.2 742 935.65 740.15"/>
+ <path stroke="none" fill="#D7D7D7" d="M935.65 740.15 Q936.2 742 935.2 743.7 934.2 745.4 932.35 745.9 930.45 746.4 928.75 745.45 927.05 744.45 926.5 742.6 926 740.7 927 739 928 737.25 929.9 736.75 931.75 736.25 933.45 737.25 935.15 738.25 935.65 740.15 M921.85 731.45 Q922.2 732.85 921.5 734.15 920.7 735.4 919.3 735.8 917.9 736.15 916.65 735.45 915.35 734.7 915 733.3 914.6 731.9 915.35 730.6 916.05 729.3 917.45 728.95 918.85 728.55 920.2 729.3 921.45 730.05 921.85 731.45 M923 746.25 Q923.6 748.5 922.4 750.55 921.25 752.65 919 753.25 916.7 753.85 914.6 752.65 912.6 751.45 912 749.2 911.4 746.9 912.5 744.9 913.75 742.85 916.05 742.25 918.3 741.65 920.3 742.8 922.4 743.95 923 746.25"/>
+ <path stroke="none" fill="#DBD9D9" d="M64 844.2 L64 840.7 Q64 832 72.65 832 L183.35 832 Q192 832 192 840.7 L192 844.2 Q191.75 836 183.35 836 L168.7 836 87.3 836 72.65 836 Q64.25 836 64 844.2"/>
+ <path stroke="none" fill="#D2D0D0" d="M64 844.2 Q64.25 836 72.65 836 L87.3 836 Q90.5 840.25 96.85 843.8 109.75 851 128 851 146.2 851 159.1 843.8 165.5 840.25 168.7 836 L183.35 836 Q191.75 836 192 844.2 L192 951.85 Q191.75 960 183.35 960 L173.45 960 Q170.65 957.15 170.7 951.65 169.4 933.7 158.35 920.55 152.45 913.5 145.4 909.8 146.3 907.6 146.3 905.15 146.3 899.2 140.9 895 139.55 893.95 138.1 893.2 L129.4 863.8 128.9 863.05 Q128.5 862.75 128 862.75 127.55 862.75 127.15 863.05 126.75 863.35 126.6 863.8 L117.95 893.15 Q116.4 893.95 115 895 109.7 899.2 109.7 905.15 109.7 907.85 110.8 910.2 104.15 913.85 98.5 920.55 87.55 933.7 86.3 951.65 85.15 957.15 82.5 960 L72.65 960 Q64.25 960 64 951.85 L64 844.2 M179.25 903.2 Q179.25 897.45 175.2 893.45 171.15 889.4 165.45 889.4 159.85 889.4 155.7 893.45 151.75 897.45 151.75 903.2 151.75 908.9 155.7 912.8 159.85 916.9 165.45 916.9 171.15 916.9 175.2 912.8 179.25 908.9 179.25 903.2 M76.75 903.2 Q76.75 908.9 80.8 912.8 84.85 916.9 90.55 916.9 96.15 916.9 100.3 912.8 104.25 908.9 104.25 903.2 104.25 897.45 100.3 893.45 96.15 889.4 90.55 889.4 84.85 889.4 80.8 893.45 76.75 897.45 76.75 903.2"/>
+ <path stroke="none" fill="#FFFFFF" d="M76.75 903.2 Q76.75 897.45 80.8 893.45 84.85 889.4 90.55 889.4 96.15 889.4 100.3 893.45 104.25 897.45 104.25 903.2 104.25 908.9 100.3 912.8 96.15 916.9 90.55 916.9 84.85 916.9 80.8 912.8 76.75 908.9 76.75 903.2 M171.7 903.1 Q171.7 899.45 169.25 897 166.7 894.45 163.05 894.45 159.55 894.45 156.95 897 154.4 899.45 154.4 903.1 L154.45 903.95 Q154.7 906.9 156.95 909.05 159.55 911.55 163.05 911.55 166.7 911.55 169.25 909.05 171.4 906.9 171.65 903.95 L171.7 903.1 M179.25 903.2 Q179.25 908.9 175.2 912.8 171.15 916.9 165.45 916.9 159.85 916.9 155.7 912.8 151.75 908.9 151.75 903.2 151.75 897.45 155.7 893.45 159.85 889.4 165.45 889.4 171.15 889.4 175.2 893.45 179.25 897.45 179.25 903.2 M84.3 903.1 L84.35 903.95 Q84.6 906.9 86.75 909.05 89.3 911.55 92.95 911.55 96.45 911.55 99.05 909.05 101.3 906.9 101.55 903.95 L101.6 903.1 Q101.6 899.45 99.05 897 96.45 894.45 92.95 894.45 89.3 894.45 86.75 897 84.3 899.45 84.3 903.1"/>
+ <path stroke="none" fill="#5B5B5B" d="M84.3 903.1 Q84.3 899.45 86.75 897 89.3 894.45 92.95 894.45 96.45 894.45 99.05 897 101.6 899.45 101.6 903.1 L101.55 903.95 Q101.3 906.9 99.05 909.05 96.45 911.55 92.95 911.55 89.3 911.55 86.75 909.05 84.6 906.9 84.35 903.95 L84.3 903.1 M171.7 903.1 L171.65 903.95 Q171.4 906.9 169.25 909.05 166.7 911.55 163.05 911.55 159.55 911.55 156.95 909.05 154.7 906.9 154.45 903.95 L154.4 903.1 Q154.4 899.45 156.95 897 159.55 894.45 163.05 894.45 166.7 894.45 169.25 897 171.7 899.45 171.7 903.1"/>
+ <path stroke="none" fill="#BDB6B6" d="M173.45 960 L82.5 960 Q85.15 957.15 86.3 951.65 87.55 933.7 98.5 920.55 104.15 913.85 110.8 910.2 109.7 907.85 109.7 905.15 109.7 899.2 115 895 116.4 893.95 117.95 893.15 L116.75 897.15 Q116.2 898.95 116.05 900.55 115.55 904.8 117.5 907.35 L117.7 907.6 Q120.4 911.15 128 911.15 135.6 911.15 138.35 907.6 L138.7 907.15 Q140.45 904.6 140 900.6 L139.25 897.15 138.1 893.2 Q139.55 893.95 140.9 895 146.3 899.2 146.3 905.15 146.3 907.6 145.4 909.8 152.45 913.5 158.35 920.55 169.4 933.7 170.7 951.65 170.65 957.15 173.45 960 M145.6 923.35 Q144.5 922.25 142.3 922.85 140.05 923.45 138.1 925.45 L137.95 925.55 Q136.9 926.65 136.9 928.25 136.9 929.85 138.05 930.95 139.15 932.1 140.8 932.1 142.3 932.1 143.45 931.05 L143.55 930.95 Q145.55 928.95 146.15 926.75 146.8 924.5 145.6 923.35 M113.45 931.05 Q114.55 932.1 116.1 932.1 117.7 932.1 118.85 930.95 119.95 929.85 119.95 928.25 119.95 926.65 118.9 925.55 L118.8 925.45 Q116.8 923.45 114.6 922.85 112.4 922.25 111.25 923.35 110.1 924.5 110.75 926.75 111.35 928.95 113.35 930.95 L113.45 931.05"/>
+ <path stroke="none" fill="#DEDCDC" d="M87.3 836 L168.7 836 Q165.5 840.25 159.1 843.8 146.2 851 128 851 109.75 851 96.85 843.8 90.5 840.25 87.3 836"/>
+ <path stroke="none" fill="#FFFCF5" d="M117.95 893.15 L126.6 863.8 Q126.75 863.35 127.15 863.05 127.55 862.75 128 862.75 128.5 862.75 128.9 863.05 L129.4 863.8 138.1 893.2 139.25 897.15 140 900.6 Q139.65 902.4 138.35 903.65 136.7 905.35 133.3 906.05 L128 906.5 123.1 906.15 Q119.4 905.45 117.7 903.65 116.35 902.35 116.05 900.55 116.2 898.95 116.75 897.15 L117.95 893.15"/>
+ <path stroke="none" fill="#F0EDE7" d="M140 900.6 Q140.45 904.6 138.7 907.15 L138.35 907.6 Q135.6 911.15 128 911.15 120.4 911.15 117.7 907.6 L117.5 907.35 Q115.55 904.8 116.05 900.55 116.35 902.35 117.7 903.65 119.4 905.45 123.1 906.15 L128 906.5 133.3 906.05 Q136.7 905.35 138.35 903.65 139.65 902.4 140 900.6"/>
+ <path stroke="none" fill="#9A9494" d="M145.6 923.35 Q146.8 924.5 146.15 926.75 145.55 928.95 143.55 930.95 L143.45 931.05 Q142.3 932.1 140.8 932.1 139.15 932.1 138.05 930.95 136.9 929.85 136.9 928.25 136.9 926.65 137.95 925.55 L138.1 925.45 Q140.05 923.45 142.3 922.85 144.5 922.25 145.6 923.35 M113.45 931.05 L113.35 930.95 Q111.35 928.95 110.75 926.75 110.1 924.5 111.25 923.35 112.4 922.25 114.6 922.85 116.8 923.45 118.8 925.45 L118.9 925.55 Q119.95 926.65 119.95 928.25 119.95 929.85 118.85 930.95 117.7 932.1 116.1 932.1 114.55 932.1 113.45 931.05"/>
+ <path stroke="none" fill="#545353" d="M576 844.2 L576 840.7 Q576 832 584.65 832 L695.35 832 Q704 832 704 840.7 L704 844.2 Q703.75 836 695.35 836 L584.65 836 Q576.25 836 576 844.2"/>
+ <path stroke="none" fill="#414040" d="M576 844.2 Q576.25 836 584.65 836 L695.35 836 Q703.75 836 704 844.2 L704 951.85 Q703.75 960 695.35 960 L584.65 960 Q576.25 960 576 951.85 L576 844.2 M683.55 873.8 L681.5 871.9 678.75 869.9 Q672.3 865.75 664.15 865.75 655.95 865.75 649.5 869.9 640 874.75 630.5 869.9 624.05 865.75 615.9 865.75 607.75 865.75 601.3 869.9 L598.55 871.9 596.45 873.8 Q588.4 881.85 588.4 893.2 588.4 904.6 596.45 912.7 L596.55 912.7 601.1 916.4 Q601.15 932.35 612.5 943.6 617 948.15 622.3 950.85 630.3 955 640 955 656.1 955 667.55 943.6 L671.2 939.5 Q678.8 929.5 678.9 916.4 L683.55 912.7 Q691.6 904.6 691.6 893.2 691.6 881.85 683.55 873.8 M658 860.7 L657.95 860.15 Q657.5 852.95 652.85 847.7 647.7 841.95 640.5 841.95 633.25 841.95 628.1 847.7 623.5 852.95 623.05 860.15 L623 860.7 Q623 861.4 623.3 862.05 624.2 864.2 628.1 865.85 633.25 867.95 640.5 867.95 647.7 867.95 652.85 865.85 656.8 864.2 657.75 862.05 L658 860.7"/>
+ <path stroke="none" fill="#BDB6B6" d="M683.55 873.8 Q691.6 881.85 691.6 893.2 691.6 904.6 683.55 912.7 L678.9 916.4 Q678.8 929.5 671.2 939.5 L667.55 943.6 Q656.1 955 640 955 630.3 955 622.3 950.85 617 948.15 612.5 943.6 601.15 932.35 601.1 916.4 L596.55 912.7 596.45 912.7 Q588.4 904.6 588.4 893.2 588.4 881.85 596.45 873.8 L598.55 871.9 601.3 869.9 Q607.75 865.75 615.9 865.75 624.05 865.75 630.5 869.9 640 874.75 649.5 869.9 655.95 865.75 664.15 865.75 672.3 865.75 678.75 869.9 L681.5 871.9 683.55 873.8 M618.25 876.7 Q616.95 876.85 615.95 877.8 615 878.75 615 880.1 615 881.45 615.95 882.4 616.95 883.35 618.55 883.55 639.95 886.15 661.15 883.35 663 883.35 663.95 882.4 664.9 881.45 664.9 880.1 664.9 878.75 663.95 877.8 663 876.85 661.15 876.65 639.15 874.6 618.25 876.7 M598.35 897.05 Q598.35 901.65 601.6 904.8 604.9 908.15 609.5 908.15 614.05 908.15 617.4 904.8 620.6 901.65 620.6 897.05 620.6 892.45 617.4 889.25 614.05 886.05 609.5 886.05 604.9 886.05 601.6 889.25 598.35 892.45 598.35 897.05 M643.75 900.15 L643.6 900.25 Q642.45 901.4 642.45 903.1 642.45 904.85 643.7 906.1 L644.1 906.4 644.5 906.7 Q645.4 907.3 646.65 907.3 648.3 907.3 649.45 906.15 L649.6 905.95 651.25 903.95 Q652.1 902.75 652.4 901.5 L652.5 901.15 Q652.95 898.95 651.85 897.85 650.65 896.65 648.2 897.3 645.9 898 643.75 900.15 M637.25 906.1 Q638.45 904.85 638.45 903.1 638.45 901.4 637.3 900.25 L637.15 900.15 Q635.05 898 632.65 897.3 630.25 896.65 629 897.85 627.9 898.95 628.4 901.15 L628.5 901.5 Q628.8 902.75 629.6 904 630.25 905 631.25 905.95 L631.35 906.15 Q632.55 907.3 634.25 907.3 635.45 907.3 636.45 906.7 L636.85 906.4 637.25 906.1 M622.3 919.35 L619.45 920.25 Q616 921.45 614.5 924.65 612.9 927.95 614.1 931.25 615.25 934.7 618.55 936.25 620.4 937.15 622.3 937.15 L625.1 936.65 Q641.6 930.9 655.35 936.45 657.3 937.25 659.3 937.1 L661.95 936.45 Q665.25 935.15 666.6 931.8 667.95 928.5 666.65 925.15 665.3 921.9 662.05 920.45 L659.3 919.35 Q642.3 913.2 622.3 919.35 M682.4 897.05 Q682.4 892.45 679.15 889.25 675.9 886.05 671.25 886.05 666.7 886.05 663.5 889.25 660.15 892.45 660.15 897.05 660.15 901.65 663.5 904.8 666.7 908.15 671.25 908.15 675.9 908.15 679.15 904.8 682.4 901.65 682.4 897.05"/>
+ <path stroke="none" fill="#464545" d="M658 860.7 L657.75 862.05 Q656.8 864.2 652.85 865.85 647.7 867.95 640.5 867.95 633.25 867.95 628.1 865.85 624.2 864.2 623.3 862.05 623 861.4 623 860.7 L623.05 860.15 Q623.5 852.95 628.1 847.7 633.25 841.95 640.5 841.95 647.7 841.95 652.85 847.7 657.5 852.95 657.95 860.15 L658 860.7"/>
+ <path stroke="none" fill="#A8A1A1" d="M618.25 876.7 Q639.15 874.6 661.15 876.65 663 876.85 663.95 877.8 664.9 878.75 664.9 880.1 664.9 881.45 663.95 882.4 663 883.35 661.15 883.35 639.95 886.15 618.55 883.55 616.95 883.35 615.95 882.4 615 881.45 615 880.1 615 878.75 615.95 877.8 616.95 876.85 618.25 876.7"/>
+ <path stroke="none" fill="#FFFFFF" d="M598.35 897.05 Q598.35 892.45 601.6 889.25 604.9 886.05 609.5 886.05 614.05 886.05 617.4 889.25 620.6 892.45 620.6 897.05 620.6 901.65 617.4 904.8 614.05 908.15 609.5 908.15 604.9 908.15 601.6 904.8 598.35 901.65 598.35 897.05 M603.8 897.3 Q603.8 900.15 605.85 902.1 607.75 904.2 610.7 904.2 613.6 904.2 615.65 902.1 617.7 900.15 617.7 897.3 617.7 894.3 615.65 892.35 613.6 890.35 610.7 890.35 607.75 890.35 605.85 892.35 603.8 894.3 603.8 897.3 M622.3 937.15 Q618.75 929.25 622.3 919.35 642.3 913.2 659.3 919.35 662.45 928.75 659.3 937.1 657.3 937.25 655.35 936.45 641.6 930.9 625.1 936.65 L622.3 937.15 M682.4 897.05 Q682.4 901.65 679.15 904.8 675.9 908.15 671.25 908.15 666.7 908.15 663.5 904.8 660.15 901.65 660.15 897.05 660.15 892.45 663.5 889.25 666.7 886.05 671.25 886.05 675.9 886.05 679.15 889.25 682.4 892.45 682.4 897.05 M677.05 897.3 Q677.05 894.3 675 892.35 672.95 890.35 670.1 890.35 667.25 890.35 665.1 892.35 663.05 894.3 663.05 897.3 663.05 900.15 665.1 902.1 667.25 904.2 670.1 904.2 672.95 904.2 675 902.1 677.05 900.15 677.05 897.3"/>
+ <path stroke="none" fill="#989292" d="M643.75 900.15 Q645.9 898 648.2 897.3 650.65 896.65 651.85 897.85 652.95 898.95 652.5 901.15 L652.4 901.5 Q652.1 902.75 651.25 903.95 L649.6 905.95 649.45 906.15 Q648.3 907.3 646.65 907.3 645.4 907.3 644.5 906.7 L644.1 906.4 643.7 906.1 Q642.45 904.85 642.45 903.1 642.45 901.4 643.6 900.25 L643.75 900.15 M637.25 906.1 L636.85 906.4 636.45 906.7 Q635.45 907.3 634.25 907.3 632.55 907.3 631.35 906.15 L631.25 905.95 Q630.25 905 629.6 904 628.8 902.75 628.5 901.5 L628.4 901.15 Q627.9 898.95 629 897.85 630.25 896.65 632.65 897.3 635.05 898 637.15 900.15 L637.3 900.25 Q638.45 901.4 638.45 903.1 638.45 904.85 637.25 906.1"/>
+ <path stroke="none" fill="#5B5B5B" d="M603.8 897.3 Q603.8 894.3 605.85 892.35 607.75 890.35 610.7 890.35 613.6 890.35 615.65 892.35 617.7 894.3 617.7 897.3 617.7 900.15 615.65 902.1 613.6 904.2 610.7 904.2 607.75 904.2 605.85 902.1 603.8 900.15 603.8 897.3 M677.05 897.3 Q677.05 900.15 675 902.1 672.95 904.2 670.1 904.2 667.25 904.2 665.1 902.1 663.05 900.15 663.05 897.3 663.05 894.3 665.1 892.35 667.25 890.35 670.1 890.35 672.95 890.35 675 892.35 677.05 894.3 677.05 897.3"/>
+ <path stroke="none" fill="#E7E7E7" d="M622.3 919.35 Q618.75 929.25 622.3 937.15 620.4 937.15 618.55 936.25 615.25 934.7 614.1 931.25 612.9 927.95 614.5 924.65 616 921.45 619.45 920.25 L622.3 919.35 M659.3 937.1 Q662.45 928.75 659.3 919.35 L662.05 920.45 Q665.3 921.9 666.65 925.15 667.95 928.5 666.6 931.8 665.25 935.15 661.95 936.45 L659.3 937.1"/>
+ <path stroke="none" fill="#31DE7A" d="M832 844.2 L832 840.7 Q832 832 840.65 832 L951.35 832 Q960 832 960 840.7 L960 844.2 Q959.75 836 951.35 836 L928 836 864 836 840.65 836 Q832.25 836 832 844.2"/>
+ <path stroke="none" fill="#2FD274" d="M864 836 L928 836 Q925.85 851 919.4 862.75 909.7 880.55 896 880.55 882.3 880.55 872.6 862.75 866.2 851 864 836 M891.15 854 L891.6 853.2 Q892.4 851.55 892.25 849.9 892 848 890.6 847.15 L887.45 847.1 Q885.9 847.75 884.85 849.3 L884.4 850.15 Q882.4 853.6 882 856.6 881.55 859.65 882.95 860.4 884.35 861.25 886.7 859.35 889.15 857.5 891.15 854 M906.4 848.05 L905.7 846.9 Q904.15 844.55 901.8 843.55 899.15 842.4 897.05 843.6 894.9 844.85 894.6 847.7 894.3 850.25 895.5 852.75 L896.2 853.95 Q899.25 859.15 902.8 862 906.45 864.85 908.6 863.6 910.7 862.4 910 857.85 909.45 853.3 906.4 848.05"/>
+ <path stroke="none" fill="#29BB67" d="M906.4 848.05 Q909.45 853.3 910 857.85 910.7 862.4 908.6 863.6 906.45 864.85 902.8 862 899.25 859.15 896.2 853.95 L895.5 852.75 Q894.3 850.25 894.6 847.7 894.9 844.85 897.05 843.6 899.15 842.4 901.8 843.55 904.15 844.55 905.7 846.9 L906.4 848.05 M891.15 854 Q889.15 857.5 886.7 859.35 884.35 861.25 882.95 860.4 881.55 859.65 882 856.6 882.4 853.6 884.4 850.15 L884.85 849.3 Q885.9 847.75 887.45 847.1 L890.6 847.15 Q892 848 892.25 849.9 892.4 851.55 891.6 853.2 L891.15 854"/>
+ <path stroke="none" fill="#FFFFFF" d="M935.6 889.75 Q935.6 894.8 932.1 898.25 928.5 901.9 923.4 901.9 918.4 901.9 914.85 898.25 911.25 894.8 911.25 889.75 911.25 884.7 914.85 881.15 918.4 877.65 923.4 877.65 928.5 877.65 932.1 881.15 935.6 884.7 935.6 889.75 M929.75 890 Q929.75 886.7 927.5 884.55 925.25 882.4 922.1 882.4 919 882.4 916.65 884.55 914.4 886.7 914.4 890 914.4 893.15 916.65 895.3 919 897.6 922.1 897.6 925.25 897.6 927.5 895.3 929.75 893.15 929.75 890 M862.35 890 Q862.35 893.15 864.6 895.3 866.75 897.6 869.95 897.6 873.1 897.6 875.35 895.3 876.4 894.3 876.95 893.1 877.6 891.7 877.6 890 877.6 888.25 876.95 886.8 876.4 885.55 875.35 884.55 873.1 882.4 869.95 882.4 866.75 882.4 864.6 884.55 862.35 886.7 862.35 890 M856.4 889.75 Q856.4 884.7 860 881.15 863.6 877.65 868.6 877.65 873.35 877.65 876.95 880.85 L877.3 881.15 Q880.8 884.7 880.8 889.75 880.8 894.8 877.3 898.25 L876.95 898.6 Q873.35 901.9 868.6 901.9 863.6 901.9 860 898.25 856.4 894.8 856.4 889.75"/>
+ <path stroke="none" fill="#5B5B5B" d="M929.75 890 Q929.75 893.15 927.5 895.3 925.25 897.6 922.1 897.6 919 897.6 916.65 895.3 914.4 893.15 914.4 890 914.4 886.7 916.65 884.55 919 882.4 922.1 882.4 925.25 882.4 927.5 884.55 929.75 886.7 929.75 890 M862.35 890 Q862.35 886.7 864.6 884.55 866.75 882.4 869.95 882.4 873.1 882.4 875.35 884.55 876.4 885.55 876.95 886.8 877.6 888.25 877.6 890 877.6 891.7 876.95 893.1 876.4 894.3 875.35 895.3 873.1 897.6 869.95 897.6 866.75 897.6 864.6 895.3 862.35 893.15 862.35 890"/>
+ <path stroke="none" fill="#2ECC71" d="M960 844.2 L960 945.8 Q946.85 951.5 938.45 943.85 L937.9 943.35 935.5 940.15 Q926.15 928.25 915.4 922.5 L920.95 921.3 Q930.85 918.8 931.35 915.3 L931.35 914.95 931.35 914.8 Q931.1 911.15 920.95 908.55 L916.05 907.5 915.95 907.05 Q914.7 901.3 910.6 896.8 L908.25 894.55 Q902.95 890.2 896.05 890.2 889.1 890.2 883.85 894.55 882.6 895.5 881.4 896.8 877.35 901.3 876.05 907.05 L875.95 907.5 870.95 908.55 Q860.95 911.1 860.65 914.75 L860.65 914.95 860.7 915.3 Q861.15 918.8 870.95 921.3 L873.45 921.9 Q862.25 927.5 852.6 939.6 L851.1 941.55 849.75 943.35 Q843.55 951.35 832 946.05 L832 844.2 Q832.25 836 840.65 836 L864 836 Q866.2 851 872.6 862.75 882.3 880.55 896 880.55 909.7 880.55 919.4 862.75 925.85 851 928 836 L951.35 836 Q959.75 836 960 844.2 M935.6 889.75 Q935.6 884.7 932.1 881.15 928.5 877.65 923.4 877.65 918.4 877.65 914.85 881.15 911.25 884.7 911.25 889.75 911.25 894.8 914.85 898.25 918.4 901.9 923.4 901.9 928.5 901.9 932.1 898.25 935.6 894.8 935.6 889.75 M856.4 889.75 Q856.4 894.8 860 898.25 863.6 901.9 868.6 901.9 873.35 901.9 876.95 898.6 L877.3 898.25 Q880.8 894.8 880.8 889.75 880.8 884.7 877.3 881.15 L876.95 880.85 Q873.35 877.65 868.6 877.65 863.6 877.65 860 881.15 856.4 884.7 856.4 889.75"/>
+ <path stroke="none" fill="#FFD738" d="M875.95 907.5 L876.05 907.05 Q877.35 901.3 881.4 896.8 882.6 895.5 883.85 894.55 889.1 890.2 896.05 890.2 902.95 890.2 908.25 894.55 L910.6 896.8 Q914.7 901.3 915.95 907.05 L916.05 907.5 916.3 909.05 916.6 912.75 916.5 914.25 916.5 914.45 916.3 913.05 915.95 911.05 Q915.55 909.1 914.8 907.3 913.3 903.75 910.6 900.8 L908.25 898.55 Q902.95 894.2 896.05 894.2 889.1 894.2 883.85 898.55 882.6 899.5 881.4 900.8 878.75 903.75 877.25 907.3 876.5 909.1 876.05 911.05 L875.65 913.05 875.55 914.55 875.5 914.25 875.45 912.75 875.65 909.05 875.95 907.5"/>
+ <path stroke="none" fill="#FFCC00" d="M875.55 914.55 L875.65 913.05 876.05 911.05 Q876.5 909.1 877.25 907.3 878.75 903.75 881.4 900.8 882.6 899.5 883.85 898.55 889.1 894.2 896.05 894.2 902.95 894.2 908.25 898.55 L910.6 900.8 Q913.3 903.75 914.8 907.3 915.55 909.1 915.95 911.05 L916.3 913.05 916.5 914.45 916.4 915.3 915.95 916.85 Q915.05 919.2 912.8 921.2 L911.15 922.5 910.6 922.85 910 923.25 909.6 923.5 Q903.85 926.7 896.05 926.7 888.2 926.7 882.45 923.5 L882.05 923.25 881.4 922.85 879.55 921.5 878 919.95 Q876.7 918.45 876.1 916.8 L875.7 915.3 875.55 914.55"/>
+ <path stroke="none" fill="#EEBE00" d="M875.55 914.55 L875.7 915.3 876.1 916.8 860.65 914.75 Q860.95 911.1 870.95 908.55 L875.95 907.5 875.65 909.05 875.45 912.75 875.5 914.25 875.55 914.55 M916.05 907.5 L920.95 908.55 Q931.1 911.15 931.35 914.8 L915.95 916.85 916.4 915.3 916.5 914.45 916.5 914.25 916.6 912.75 916.3 909.05 916.05 907.5"/>
+ <path stroke="none" fill="#DEB100" d="M931.35 914.8 L931.35 914.95 931.35 915.3 Q930.85 918.8 920.95 921.3 L915.4 922.5 912.2 923 912.05 923.05 910 923.25 910.6 922.85 911.15 922.5 912.8 921.2 Q915.05 919.2 915.95 916.85 L931.35 914.8 M860.65 914.75 L876.1 916.8 Q876.7 918.45 878 919.95 L879.55 921.5 881.4 922.85 882.05 923.25 879.8 923 877.45 922.65 873.45 921.9 870.95 921.3 Q861.15 918.8 860.7 915.3 L860.65 914.95 860.65 914.75"/>
+ <path stroke="none" fill="#F3F3F3" d="M960 945.8 L960 951.85 Q959.75 960 951.35 960 L840.65 960 Q832.25 960 832 951.85 L832 946.05 Q843.55 951.35 849.75 943.35 L851.1 941.55 852.6 939.6 Q862.25 927.5 873.45 921.9 L877.45 922.65 879.8 923 882.05 923.25 882.45 923.5 Q888.2 926.7 896.05 926.7 903.85 926.7 909.6 923.5 L910 923.25 912.05 923.05 912.2 923 915.4 922.5 Q926.15 928.25 935.5 940.15 L937.9 943.35 938.45 943.85 Q946.85 951.5 960 945.8"/>
+ <path stroke="none" fill="#4F4E4E" d="M1167.5 832 L1207.35 832 Q1216 832 1216 840.7 L1216 844.2 Q1215.75 836 1207.35 836 L1167.5 836 1167.5 832 M1088 844.2 L1088 840.7 Q1088 832 1096.65 832 L1136.5 832 1136.5 836 1096.65 836 Q1088.25 836 1088 844.2"/>
+ <path stroke="none" fill="#FFFFFF" d="M1136.5 832 L1167.5 832 1167.5 836 1136.5 836 1136.5 832 M1189.2 870.25 Q1189.2 867.35 1187.2 865.3 1185.2 863.3 1182.25 863.3 1179.45 863.3 1177.35 865.3 1175.35 867.35 1175.35 870.25 1175.35 873.1 1177.35 875.1 1179.45 877.1 1182.25 877.1 1185.2 877.1 1187.2 875.1 1189.2 873.1 1189.2 870.25 M1193 870.1 Q1193 874.2 1190.05 877.1 1187.15 880.05 1183 880.05 1178.9 880.05 1175.95 877.1 1173.05 874.2 1173.05 870.1 1173.05 865.9 1175.95 863 1178.9 860.1 1183 860.1 1187.15 860.1 1190.05 863 1193 865.9 1193 870.1 M1114.75 870.25 Q1114.75 873.1 1116.8 875.1 1118.8 877.1 1121.7 877.1 1124.55 877.1 1126.6 875.1 1128.65 873.1 1128.65 870.25 1128.65 867.35 1126.6 865.3 1124.55 863.3 1121.7 863.3 1118.8 863.3 1116.8 865.3 1114.75 867.35 1114.75 870.25 M1111 870.1 Q1111 865.9 1113.9 863 1116.85 860.1 1121 860.1 1125.05 860.1 1128.05 863 1130.95 865.9 1130.95 870.1 1130.95 874.2 1128.05 877.1 1125.05 880.05 1121 880.05 1116.85 880.05 1113.9 877.1 1111 874.2 1111 870.1"/>
+ <path stroke="none" fill="#F0F0F0" d="M1216 940.45 L1216 951.85 Q1215.75 960 1207.35 960 L1096.65 960 Q1088.25 960 1088 951.85 L1088 940.45 1114.55 921.85 1114.5 923.05 1114.5 924.05 1114.55 925.95 Q1115.05 933.95 1119.7 940.45 L1122.6 943.95 1125.45 946.65 1129.9 949.95 Q1139.45 956.05 1152 956.05 1164.5 956.05 1174.1 949.95 L1178.5 946.65 1181.4 943.95 1184.3 940.45 Q1188.95 933.95 1189.45 925.95 L1189.5 924.05 1189.5 923.05 1189.45 921.85 1216 940.45 M1136.5 836 L1167.5 836 Q1164.3 851.35 1163.35 867 1162.6 879.15 1163.25 891.5 L1163.45 893.5 Q1158.05 892.05 1152 892.05 1145.95 892.05 1140.55 893.5 L1140.75 891.5 Q1141.4 879.15 1140.7 867 1139.7 851.4 1136.5 836"/>
+ <path stroke="none" fill="#5B5B5B" d="M1189.2 870.25 Q1189.2 873.1 1187.2 875.1 1185.2 877.1 1182.25 877.1 1179.45 877.1 1177.35 875.1 1175.35 873.1 1175.35 870.25 1175.35 867.35 1177.35 865.3 1179.45 863.3 1182.25 863.3 1185.2 863.3 1187.2 865.3 1189.2 867.35 1189.2 870.25 M1114.75 870.25 Q1114.75 867.35 1116.8 865.3 1118.8 863.3 1121.7 863.3 1124.55 863.3 1126.6 865.3 1128.65 867.35 1128.65 870.25 1128.65 873.1 1126.6 875.1 1124.55 877.1 1121.7 877.1 1118.8 877.1 1116.8 875.1 1114.75 873.1 1114.75 870.25"/>
+ <path stroke="none" fill="#414040" d="M1216 844.2 L1216 940.45 1189.45 921.85 Q1188.55 910 1178.5 901.4 1171.8 895.7 1163.45 893.5 L1163.25 891.5 Q1162.6 879.15 1163.35 867 1164.3 851.35 1167.5 836 L1207.35 836 Q1215.75 836 1216 844.2 M1088 940.45 L1088 844.2 Q1088.25 836 1096.65 836 L1136.5 836 Q1139.7 851.4 1140.7 867 1141.4 879.15 1140.75 891.5 L1140.55 893.5 Q1132.15 895.7 1125.45 901.4 1115.4 910 1114.55 921.85 L1088 940.45 M1193 870.1 Q1193 865.9 1190.05 863 1187.15 860.1 1183 860.1 1178.9 860.1 1175.95 863 1173.05 865.9 1173.05 870.1 1173.05 874.2 1175.95 877.1 1178.9 880.05 1183 880.05 1187.15 880.05 1190.05 877.1 1193 874.2 1193 870.1 M1111 870.1 Q1111 874.2 1113.9 877.1 1116.85 880.05 1121 880.05 1125.05 880.05 1128.05 877.1 1130.95 874.2 1130.95 870.1 1130.95 865.9 1128.05 863 1125.05 860.1 1121 860.1 1116.85 860.1 1113.9 863 1111 865.9 1111 870.1"/>
+ <path stroke="none" fill="#FFAAFF" d="M1114.55 925.95 Q1114.7 923.7 1115.2 921.55 1117.25 912.4 1125.45 905.4 1131.75 900.05 1139.6 897.75 1145.35 896.05 1152 896.05 1158.65 896.05 1164.45 897.75 1172.2 900.05 1178.5 905.4 1186.65 912.4 1188.8 921.55 1189.3 923.65 1189.45 925.95 1188.95 933.95 1184.3 940.45 L1181.4 943.95 1178.5 946.65 1174.1 949.95 Q1164.25 947.95 1152 947.95 1139.7 947.95 1129.9 949.95 L1125.45 946.65 1122.6 943.95 1119.7 940.45 Q1115.05 933.95 1114.55 925.95 M1170.5 906.2 L1169.65 905.6 1168.3 905.25 1166.05 905.55 1165.8 905.65 Q1162.95 906.5 1160.45 909 L1160.3 909.15 Q1159.65 909.85 1159.3 910.7 1158.9 911.6 1158.9 912.7 1158.9 914.85 1160.4 916.35 1161.9 917.85 1164.05 917.85 1166.1 917.85 1167.6 916.45 L1167.75 916.3 Q1169.8 914.25 1170.75 912 L1171.2 910.7 1171.35 910.2 1171.5 909.1 Q1171.55 907.9 1171.1 907.05 L1170.5 906.2 M1136.4 916.45 Q1137.9 917.85 1139.95 917.85 1142.1 917.85 1143.6 916.35 1145.1 914.85 1145.1 912.7 1145.1 911.6 1144.75 910.7 L1143.7 909.15 1143.55 909 Q1141 906.45 1138.15 905.6 L1137.95 905.55 1135.7 905.25 1134.4 905.6 Q1133.9 905.8 1133.5 906.2 1133.15 906.55 1132.9 907.05 1132.45 907.9 1132.55 909.1 L1132.7 910.2 1132.8 910.7 Q1132.95 911.35 1133.25 912 1134.2 914.25 1136.25 916.3 L1136.4 916.45"/>
+ <path stroke="none" fill="#FFC4FF" d="M1140.55 893.5 Q1145.95 892.05 1152 892.05 1158.05 892.05 1163.45 893.5 1171.8 895.7 1178.5 901.4 1188.55 910 1189.45 921.85 L1189.5 923.05 1189.5 924.05 1189.45 925.95 Q1189.3 923.65 1188.8 921.55 1186.65 912.4 1178.5 905.4 1172.2 900.05 1164.45 897.75 1158.65 896.05 1152 896.05 1145.35 896.05 1139.6 897.75 1131.75 900.05 1125.45 905.4 1117.25 912.4 1115.2 921.55 1114.7 923.7 1114.55 925.95 L1114.5 924.05 1114.5 923.05 1114.55 921.85 Q1115.4 910 1125.45 901.4 1132.15 895.7 1140.55 893.5"/>
+ <path stroke="none" fill="#A66EA6" d="M1170.5 906.2 L1171.1 907.05 Q1171.55 907.9 1171.5 909.1 L1171.35 910.2 1171.2 910.7 1170.75 912 Q1169.8 914.25 1167.75 916.3 L1167.6 916.45 Q1166.1 917.85 1164.05 917.85 1161.9 917.85 1160.4 916.35 1158.9 914.85 1158.9 912.7 1158.9 911.6 1159.3 910.7 1159.65 909.85 1160.3 909.15 L1160.45 909 Q1162.95 906.5 1165.8 905.65 L1166.05 905.55 1168.3 905.25 1169.65 905.6 1170.5 906.2 M1136.4 916.45 L1136.25 916.3 Q1134.2 914.25 1133.25 912 1132.95 911.35 1132.8 910.7 L1132.7 910.2 1132.55 909.1 Q1132.45 907.9 1132.9 907.05 1133.15 906.55 1133.5 906.2 1133.9 905.8 1134.4 905.6 L1135.7 905.25 1137.95 905.55 1138.15 905.6 Q1141 906.45 1143.55 909 L1143.7 909.15 1144.75 910.7 Q1145.1 911.6 1145.1 912.7 1145.1 914.85 1143.6 916.35 1142.1 917.85 1139.95 917.85 1137.9 917.85 1136.4 916.45"/>
+ <path stroke="none" fill="#F0A0F0" d="M1174.1 949.95 Q1164.5 956.05 1152 956.05 1139.45 956.05 1129.9 949.95 1139.7 947.95 1152 947.95 1164.25 947.95 1174.1 949.95"/>
+ <path stroke="none" fill="#A16639" d="M131.9 1112.15 Q136.65 1108.8 140.35 1096.75 143.2 1087.65 144.5 1076.45 145.35 1068.95 145.5 1060.5 L145.5 1059.15 Q145.9 1051.2 142.65 1045.05 L140.35 1041.2 Q135.25 1033.95 128 1033.95 120.75 1033.95 115.6 1041.2 114.3 1043 113.2 1045.15 110.8 1049.85 110.5 1059.15 L110.55 1060.5 Q110.7 1068.95 111.55 1076.45 112.8 1087.65 115.6 1096.75 119.3 1108.7 124.05 1112.1 L119.85 1111.4 116.05 1110.3 115.3 1110.35 114.8 1110.85 Q114.6 1111.2 114.75 1111.6 115.7 1114.5 118.05 1116.8 120.35 1119.1 123.25 1120.15 L123.2 1120.15 123.5 1120.25 122.7 1121.2 120.65 1122.7 Q119.2 1123.35 117.55 1123.35 114.55 1123.35 112.4 1121.2 L111.05 1119.45 110.5 1119 109.85 1119.1 105.25 1121.65 Q104.9 1121.85 104.85 1122.2 104.7 1122.5 104.9 1122.85 L105.95 1124.45 Q102.35 1127.15 99 1130.85 95.35 1134.85 91.9 1139.95 88.3 1145.35 84.9 1152 L72.65 1152 Q64.25 1152 64 1143.85 L64 1036.2 Q64.25 1028 72.65 1028 L183.35 1028 Q191.75 1028 192 1036.2 L192 1143.85 Q191.75 1152 183.35 1152 L171.1 1152 Q167.75 1145.3 164.15 1139.9 160.8 1134.85 157.25 1130.95 153.8 1127.1 150.15 1124.35 L151.1 1122.75 151.15 1122.1 150.7 1121.6 146 1119.15 145.3 1119.1 144.8 1119.55 143.55 1121.2 Q141.4 1123.35 138.4 1123.35 136.75 1123.35 135.35 1122.7 134.25 1122.15 133.3 1121.2 L132.5 1120.3 132.85 1120.15 132.8 1120.15 Q135.65 1119.1 137.95 1116.8 140.25 1114.5 141.3 1111.65 L141.3 1110.9 140.75 1110.4 140.05 1110.35 136.25 1111.4 136.2 1111.4 131.9 1112.15 M69.55 1030.45 L69.45 1030.5 Q69.3 1030.7 69.3 1031 L69.3 1033.6 Q69.65 1046.7 78.6 1057.25 L78.55 1057.25 Q79.45 1058.45 80.5 1059.15 83.45 1061.1 87.35 1059.2 89.65 1058.1 91.1 1056.15 L92.1 1054.5 92.1 1054.45 Q94 1050.7 87.95 1047.8 L83.4 1045.05 Q77 1040.45 71.85 1032.35 L70.8 1030.65 70.4 1030.3 69.9 1030.3 Q69.7 1030.3 69.55 1030.45 M79.15 1075.2 L78.85 1076.45 Q77.5 1082.95 80.1 1088.55 83 1094.85 89 1096.45 94.95 1098 100.6 1094 106.15 1090.15 108.1 1082.95 L108.1 1082.9 Q109 1079.6 108.45 1076.45 108 1073.95 106.6 1071.55 103.45 1066.15 97.5 1064.6 91.5 1063 86.1 1066.1 80.8 1069.15 79.15 1075.15 L79.15 1075.2 M176.85 1075.2 L176.85 1075.15 Q175.2 1069.15 169.9 1066.1 164.5 1063 158.5 1064.6 152.55 1066.15 149.4 1071.55 148 1073.95 147.6 1076.45 147 1079.6 147.9 1082.9 L147.9 1082.95 Q149.85 1090.15 155.4 1094 161.05 1098 167 1096.45 173 1094.85 175.9 1088.55 178.5 1082.95 177.15 1076.45 L176.85 1075.2 M186.45 1030.45 L186.15 1030.3 185.65 1030.3 185.25 1030.65 184.2 1032.4 Q179 1040.45 172.65 1045.05 170.4 1046.65 168.05 1047.8 162 1050.7 163.9 1054.45 L163.9 1054.5 164.95 1056.15 Q166.4 1058.1 168.7 1059.2 172.6 1061.1 175.5 1059.15 L177.45 1057.25 Q186.35 1046.7 186.75 1033.6 L186.75 1031 186.55 1030.5 186.45 1030.45"/>
+ <path stroke="none" fill="#B6733F" d="M124.05 1112.1 Q119.3 1108.7 115.6 1096.75 112.8 1087.65 111.55 1076.45 110.7 1068.95 110.55 1060.5 L110.5 1059.15 Q110.8 1049.85 113.2 1045.15 114.3 1043 115.6 1041.2 120.75 1033.95 128 1033.95 135.25 1033.95 140.35 1041.2 L142.65 1045.05 Q145.9 1051.2 145.5 1059.15 L145.5 1060.5 Q145.35 1068.95 144.5 1076.45 143.2 1087.65 140.35 1096.75 136.65 1108.8 131.9 1112.15 128.05 1112.55 124.05 1112.1"/>
+ <path stroke="none" fill="#EBCEB7" d="M69.55 1030.45 L69.6 1030.45 70.9 1032.8 Q76 1041.85 82.25 1047.75 L86.75 1051.5 Q90.25 1053.95 91.1 1056.15 89.65 1058.1 87.35 1059.2 83.45 1061.1 80.5 1059.15 79.45 1058.45 78.55 1057.25 L78.6 1057.25 Q69.65 1046.7 69.3 1033.6 L69.3 1031 Q69.3 1030.7 69.45 1030.5 L69.55 1030.45 M164.95 1056.15 Q165.75 1053.95 169.25 1051.5 L173.75 1047.75 Q180 1041.85 185.15 1032.85 L186.45 1030.45 186.55 1030.5 186.75 1031 186.75 1033.6 Q186.35 1046.7 177.45 1057.25 L175.5 1059.15 Q172.6 1061.1 168.7 1059.2 166.4 1058.1 164.95 1056.15"/>
+ <path stroke="none" fill="#FFDFC6" d="M164.95 1056.15 L163.9 1054.5 163.9 1054.45 Q162 1050.7 168.05 1047.8 170.4 1046.65 172.65 1045.05 179 1040.45 184.2 1032.4 L185.25 1030.65 185.65 1030.3 186.15 1030.3 186.45 1030.45 185.15 1032.85 Q180 1041.85 173.75 1047.75 L169.25 1051.5 Q165.75 1053.95 164.95 1056.15 M91.1 1056.15 Q90.25 1053.95 86.75 1051.5 L82.25 1047.75 Q76 1041.85 70.9 1032.8 L69.6 1030.45 69.55 1030.45 Q69.7 1030.3 69.9 1030.3 L70.4 1030.3 70.8 1030.65 71.85 1032.35 Q77 1040.45 83.4 1045.05 L87.95 1047.8 Q94 1050.7 92.1 1054.45 L92.1 1054.5 91.1 1056.15"/>
+ <path stroke="none" fill="#FFFFFF" d="M84.8 1078.65 Q84.8 1077.5 85.05 1076.45 85.6 1074 87.5 1072.1 90.25 1069.4 94.1 1069.4 97.9 1069.4 100.65 1072.1 102.55 1074 103.1 1076.45 L103.35 1078.65 Q103.35 1082.5 100.65 1085.1 97.9 1087.9 94.1 1087.9 90.25 1087.9 87.5 1085.1 84.8 1082.5 84.8 1078.65 M89.3 1078.8 Q89.3 1081.2 91 1082.85 92.7 1084.6 95.1 1084.6 97.5 1084.6 99.25 1082.85 100.95 1081.2 100.95 1078.8 100.95 1077.5 100.5 1076.45 100.05 1075.5 99.25 1074.7 97.5 1073 95.1 1073 92.7 1073 91 1074.7 90.2 1075.5 89.8 1076.45 89.3 1077.5 89.3 1078.8 M171.2 1078.65 Q171.2 1082.5 168.5 1085.1 165.75 1087.9 161.9 1087.9 158.1 1087.9 155.35 1085.1 152.65 1082.5 152.65 1078.65 152.65 1077.5 152.9 1076.45 153.45 1074 155.35 1072.1 158.1 1069.4 161.9 1069.4 165.75 1069.4 168.5 1072.1 170.4 1074 170.95 1076.45 L171.2 1078.65 M166.7 1078.8 Q166.7 1077.5 166.25 1076.45 165.8 1075.5 165 1074.7 163.3 1073 160.9 1073 158.5 1073 156.75 1074.7 155.95 1075.5 155.55 1076.45 155.05 1077.5 155.05 1078.8 155.05 1081.2 156.75 1082.85 158.5 1084.6 160.9 1084.6 163.3 1084.6 165 1082.85 166.7 1081.2 166.7 1078.8"/>
+ <path stroke="none" fill="#8E5A32" d="M84.8 1078.65 Q84.8 1082.5 87.5 1085.1 90.25 1087.9 94.1 1087.9 97.9 1087.9 100.65 1085.1 103.35 1082.5 103.35 1078.65 L103.1 1076.45 Q102.55 1074 100.65 1072.1 97.9 1069.4 94.1 1069.4 90.25 1069.4 87.5 1072.1 85.6 1074 85.05 1076.45 84.8 1077.5 84.8 1078.65 M79.15 1075.2 L79.15 1075.15 Q80.8 1069.15 86.1 1066.1 91.5 1063 97.5 1064.6 103.45 1066.15 106.6 1071.55 108 1073.95 108.45 1076.45 109 1079.6 108.1 1082.9 L108.1 1082.95 Q106.15 1090.15 100.6 1094 94.95 1098 89 1096.45 83 1094.85 80.1 1088.55 77.5 1082.95 78.85 1076.45 L79.15 1075.2 M171.2 1078.65 L170.95 1076.45 Q170.4 1074 168.5 1072.1 165.75 1069.4 161.9 1069.4 158.1 1069.4 155.35 1072.1 153.45 1074 152.9 1076.45 152.65 1077.5 152.65 1078.65 152.65 1082.5 155.35 1085.1 158.1 1087.9 161.9 1087.9 165.75 1087.9 168.5 1085.1 171.2 1082.5 171.2 1078.65 M176.85 1075.2 L177.15 1076.45 Q178.5 1082.95 175.9 1088.55 173 1094.85 167 1096.45 161.05 1098 155.4 1094 149.85 1090.15 147.9 1082.95 L147.9 1082.9 Q147 1079.6 147.6 1076.45 148 1073.95 149.4 1071.55 152.55 1066.15 158.5 1064.6 164.5 1063 169.9 1066.1 175.2 1069.15 176.85 1075.15 L176.85 1075.2"/>
+ <path stroke="none" fill="#5B5B5B" d="M89.3 1078.8 Q89.3 1077.5 89.8 1076.45 90.2 1075.5 91 1074.7 92.7 1073 95.1 1073 97.5 1073 99.25 1074.7 100.05 1075.5 100.5 1076.45 100.95 1077.5 100.95 1078.8 100.95 1081.2 99.25 1082.85 97.5 1084.6 95.1 1084.6 92.7 1084.6 91 1082.85 89.3 1081.2 89.3 1078.8 M166.7 1078.8 Q166.7 1081.2 165 1082.85 163.3 1084.6 160.9 1084.6 158.5 1084.6 156.75 1082.85 155.05 1081.2 155.05 1078.8 155.05 1077.5 155.55 1076.45 155.95 1075.5 156.75 1074.7 158.5 1073 160.9 1073 163.3 1073 165 1074.7 165.8 1075.5 166.25 1076.45 166.7 1077.5 166.7 1078.8"/>
+ <path stroke="none" fill="#B4723F" d="M192 1036.2 Q191.75 1028 183.35 1028 L72.65 1028 Q64.25 1028 64 1036.2 L64 1032.7 Q64 1024 72.65 1024 L183.35 1024 Q192 1024 192 1032.7 L192 1036.2"/>
+ <path stroke="none" fill="#464646" d="M131.9 1112.15 L136.2 1111.4 136.25 1111.4 140.05 1110.35 140.75 1110.4 141.3 1110.9 141.3 1111.65 Q140.25 1114.5 137.95 1116.8 135.65 1119.1 132.8 1120.15 L132.85 1120.15 132.5 1120.3 129.8 1120.95 128.85 1121.05 126.7 1121 125.95 1120.9 123.5 1120.25 123.2 1120.15 123.25 1120.15 Q120.35 1119.1 118.05 1116.8 115.7 1114.5 114.75 1111.6 114.6 1111.2 114.8 1110.85 L115.3 1110.35 116.05 1110.3 119.85 1111.4 124.05 1112.1 Q128.05 1112.55 131.9 1112.15"/>
+ <path stroke="none" fill="#383838" d="M132.5 1120.3 L133.3 1121.2 Q134.25 1122.15 135.35 1122.7 136.75 1123.35 138.4 1123.35 141.4 1123.35 143.55 1121.2 L144.8 1119.55 145.3 1119.1 146 1119.15 150.7 1121.6 151.15 1122.1 151.1 1122.75 150.15 1124.35 149.6 1125.05 148.55 1126.2 147.8 1126.9 Q143.8 1130.4 138.4 1130.4 132.5 1130.4 128.3 1126.2 L128 1125.9 127.7 1126.2 Q123.45 1130.4 117.55 1130.4 112.15 1130.4 108.2 1126.95 L107.45 1126.2 106.4 1125.05 105.95 1124.45 104.9 1122.85 Q104.7 1122.5 104.85 1122.2 104.9 1121.85 105.25 1121.65 L109.85 1119.1 110.5 1119 111.05 1119.45 112.4 1121.2 Q114.55 1123.35 117.55 1123.35 119.2 1123.35 120.65 1122.7 L122.7 1121.2 123.5 1120.25 125.95 1120.9 126.7 1121 128.85 1121.05 129.8 1120.95 132.5 1120.3"/>
+ <path stroke="none" fill="#955E34" d="M150.15 1124.35 Q153.8 1127.1 157.25 1130.95 160.8 1134.85 164.15 1139.9 167.75 1145.3 171.1 1152 L84.9 1152 Q88.3 1145.35 91.9 1139.95 95.35 1134.85 99 1130.85 102.35 1127.15 105.95 1124.45 L106.4 1125.05 107.45 1126.2 108.2 1126.95 Q112.15 1130.4 117.55 1130.4 123.45 1130.4 127.7 1126.2 L128 1125.9 128.3 1126.2 Q132.5 1130.4 138.4 1130.4 143.8 1130.4 147.8 1126.9 L148.55 1126.2 149.6 1125.05 150.15 1124.35 M137.1 1143.15 Q137.6 1141.75 136.3 1139.3 135 1136.75 132.6 1134.75 127.8 1131.05 123.4 1134.75 121 1136.75 119.7 1139.3 118.4 1141.75 118.9 1143.15 L118.9 1143.2 Q119.5 1144.7 121.65 1144.25 123.15 1143.95 124.75 1142.9 L124.4 1144.9 124.4 1145.05 124.4 1146.55 124.8 1147.35 Q125.4 1147.85 126.45 1146.65 127.3 1145.7 128 1144.15 128.7 1145.7 129.5 1146.65 130.6 1147.85 131.2 1147.35 L131.6 1146.55 131.65 1145.05 131.6 1144.9 131.25 1142.9 Q132.9 1143.95 134.35 1144.25 136.5 1144.7 137.05 1143.2 L137.1 1143.15"/>
+ <path stroke="none" fill="#724828" d="M137.1 1143.15 L137.05 1143.2 Q136.5 1144.7 134.35 1144.25 132.9 1143.95 131.25 1142.9 L131.6 1144.9 131.65 1145.05 131.6 1146.55 131.2 1147.35 Q130.6 1147.85 129.5 1146.65 128.7 1145.7 128 1144.15 127.3 1145.7 126.45 1146.65 125.4 1147.85 124.8 1147.35 L124.4 1146.55 124.4 1145.05 124.4 1144.9 124.75 1142.9 Q123.15 1143.95 121.65 1144.25 119.5 1144.7 118.9 1143.2 L118.9 1143.15 Q118.4 1141.75 119.7 1139.3 121 1136.75 123.4 1134.75 127.8 1131.05 132.6 1134.75 135 1136.75 136.3 1139.3 137.6 1141.75 137.1 1143.15"/>
+ <path stroke="none" fill="#B4723F" d="M320 1036.2 L320 1032.7 Q320 1024 328.65 1024 L439.35 1024 Q448 1024 448 1032.7 L448 1036.2 Q447.75 1028 439.35 1028 L328.65 1028 Q320.25 1028 320 1036.2"/>
+ <path stroke="none" fill="#EBCEB7" d="M432.6 1152 L335.5 1152 Q338.1 1137.65 349.05 1126.8 363.55 1112.4 384 1112.4 404.45 1112.4 418.9 1126.8 429.95 1137.65 432.6 1152 M423.25 1086.95 Q423.25 1082.45 420.1 1079.25 416.85 1076.1 412.4 1076.1 407.9 1076.1 404.7 1079.25 401.5 1082.45 401.5 1086.95 401.5 1091.5 404.7 1094.65 407.9 1097.85 412.4 1097.85 416.85 1097.85 420.1 1094.65 423.25 1091.5 423.25 1086.95 M438.15 1067.55 Q437.7 1069.25 435.7 1070.85 432 1073.7 434.1 1080.6 434.95 1083.6 434.95 1086.95 434.95 1096.3 428.35 1102.9 421.75 1109.55 412.4 1109.55 403.8 1109.55 397.5 1103.9 L397.6 1103.2 397.65 1102.3 397.45 1100.1 Q396.85 1095.9 393.65 1092.65 L392.1 1091.3 390 1090.05 389.8 1086.95 Q389.8 1083.7 390.6 1080.8 402.8 1065.35 438.15 1067.55 M370.5 1103.95 Q364.2 1109.55 355.6 1109.55 346.25 1109.55 339.65 1102.9 333.05 1096.3 333.05 1086.95 333.05 1083.6 333.9 1080.6 336 1073.7 332.3 1070.85 330.3 1069.25 329.85 1067.55 365.2 1065.35 377.4 1080.8 378.2 1083.7 378.2 1086.95 L378 1090.05 375.9 1091.3 374.3 1092.65 Q371.15 1095.9 370.5 1100.1 370.35 1101.15 370.35 1102.3 L370.35 1103.2 370.5 1103.95 M344.75 1086.95 Q344.75 1091.5 347.9 1094.65 351.15 1097.85 355.6 1097.85 360.1 1097.85 363.3 1094.65 366.5 1091.5 366.5 1086.95 366.5 1082.45 363.3 1079.25 360.1 1076.1 355.6 1076.1 351.15 1076.1 347.9 1079.25 344.75 1082.45 344.75 1086.95 M377.1 1131.9 Q379.95 1134.75 384 1134.75 388 1134.75 390.85 1131.9 393.7 1129.05 393.7 1125.05 393.7 1123.55 393.3 1122.2 L393.05 1121.85 392.65 1121.75 392.05 1121.75 Q391.8 1121.75 391.6 1121.9 L391.4 1122.35 Q391.25 1125.1 389.25 1127.05 387.05 1129.25 384 1129.25 380.9 1129.25 378.75 1127.05 376.75 1125.1 376.55 1122.35 L376.35 1121.9 375.9 1121.75 375.3 1121.75 374.9 1121.85 374.7 1122.2 Q374.3 1123.55 374.3 1125.05 374.3 1129.1 377.1 1131.9 M364.75 1141 Q368.5 1141 371.2 1138.3 L372.1 1137.25 372.3 1136.65 372.05 1136 371.5 1135.7 370.85 1135.8 Q369 1136.75 366.75 1136.75 363.15 1136.75 360.55 1134.1 358.45 1132.05 358 1129.3 L357.7 1128.75 357.1 1128.45 Q356.75 1128.45 356.45 1128.65 L356.05 1129.15 Q355.65 1130.45 355.65 1131.9 355.65 1135.65 358.3 1138.3 L358.35 1138.35 Q361 1141 364.75 1141 M403.25 1141 Q407 1141 409.65 1138.35 L409.7 1138.3 Q412.35 1135.65 412.35 1131.9 412.35 1130.45 411.95 1129.15 L411.55 1128.65 410.9 1128.45 Q410.55 1128.5 410.3 1128.75 L410 1129.3 Q409.55 1132.05 407.45 1134.1 404.85 1136.75 401.25 1136.75 399 1136.75 397.15 1135.8 L396.5 1135.7 395.95 1136 Q395.7 1136.25 395.7 1136.65 395.65 1136.95 395.9 1137.25 L396.8 1138.3 Q399.5 1141 403.25 1141"/>
+ <path stroke="none" fill="#FFFFFF" d="M423.25 1086.95 Q423.25 1091.5 420.1 1094.65 416.85 1097.85 412.4 1097.85 407.9 1097.85 404.7 1094.65 401.5 1091.5 401.5 1086.95 401.5 1082.45 404.7 1079.25 407.9 1076.1 412.4 1076.1 416.85 1076.1 420.1 1079.25 423.25 1082.45 423.25 1086.95 M416.95 1086.95 Q416.95 1084.4 415.1 1082.6 413.3 1080.8 410.75 1080.8 408.2 1080.8 406.3 1082.6 404.5 1084.4 404.5 1086.95 404.5 1089.55 406.3 1091.4 408.2 1093.2 410.75 1093.2 413.3 1093.2 415.1 1091.4 416.95 1089.55 416.95 1086.95 M344.75 1086.95 Q344.75 1082.45 347.9 1079.25 351.15 1076.1 355.6 1076.1 360.1 1076.1 363.3 1079.25 366.5 1082.45 366.5 1086.95 366.5 1091.5 363.3 1094.65 360.1 1097.85 355.6 1097.85 351.15 1097.85 347.9 1094.65 344.75 1091.5 344.75 1086.95 M351.05 1086.95 Q351.05 1089.55 352.9 1091.4 354.7 1093.2 357.25 1093.2 359.8 1093.2 361.7 1091.4 363.5 1089.55 363.5 1086.95 363.5 1084.4 361.7 1082.6 359.8 1080.8 357.25 1080.8 354.7 1080.8 352.9 1082.6 351.05 1084.4 351.05 1086.95"/>
+ <path stroke="none" fill="#5B5B5B" d="M351.05 1086.95 Q351.05 1084.4 352.9 1082.6 354.7 1080.8 357.25 1080.8 359.8 1080.8 361.7 1082.6 363.5 1084.4 363.5 1086.95 363.5 1089.55 361.7 1091.4 359.8 1093.2 357.25 1093.2 354.7 1093.2 352.9 1091.4 351.05 1089.55 351.05 1086.95 M416.95 1086.95 Q416.95 1089.55 415.1 1091.4 413.3 1093.2 410.75 1093.2 408.2 1093.2 406.3 1091.4 404.5 1089.55 404.5 1086.95 404.5 1084.4 406.3 1082.6 408.2 1080.8 410.75 1080.8 413.3 1080.8 415.1 1082.6 416.95 1084.4 416.95 1086.95"/>
+ <path stroke="none" fill="#A16639" d="M448 1036.2 L448 1143.85 Q447.75 1152 439.35 1152 L432.6 1152 Q429.95 1137.65 418.9 1126.8 404.45 1112.4 384 1112.4 363.55 1112.4 349.05 1126.8 338.1 1137.65 335.5 1152 L328.65 1152 Q320.25 1152 320 1143.85 L320 1036.2 Q320.25 1028 328.65 1028 L439.35 1028 Q447.75 1028 448 1036.2 M397.5 1103.9 Q403.8 1109.55 412.4 1109.55 421.75 1109.55 428.35 1102.9 434.95 1096.3 434.95 1086.95 434.95 1083.6 434.1 1080.6 432 1073.7 435.7 1070.85 437.7 1069.25 438.15 1067.55 438.35 1066.65 438.1 1065.7 437.2 1062.35 430.75 1061.6 424.3 1060.75 415.1 1062.55 401.95 1065.45 396.45 1071 392.1 1075.3 390.6 1080.8 389.8 1083.7 389.8 1086.95 L390 1090.05 Q387.25 1088.7 384 1088.7 380.75 1088.7 378 1090.05 L378.2 1086.95 Q378.2 1083.7 377.4 1080.8 375.9 1075.3 371.55 1071 366.05 1065.45 352.9 1062.55 343.7 1060.75 337.25 1061.6 330.8 1062.35 329.9 1065.7 329.65 1066.65 329.85 1067.55 330.3 1069.25 332.3 1070.85 336 1073.7 333.9 1080.6 333.05 1083.6 333.05 1086.95 333.05 1096.3 339.65 1102.9 346.25 1109.55 355.6 1109.55 364.2 1109.55 370.5 1103.95 371.1 1106.5 374.3 1108.4 378.3 1110.75 384 1110.75 389.65 1110.75 393.65 1108.4 396.9 1106.5 397.5 1103.9 M397.4 1053.7 Q401.3 1046.95 402.05 1041.05 402.95 1035.2 400.2 1033.65 397.45 1032.05 392.75 1035.7 388.15 1039.35 384.25 1046.1 L383.35 1047.65 Q381.75 1050.85 382.15 1054.15 382.55 1057.8 385.3 1059.4 388.05 1060.95 391.45 1059.5 394.45 1058.2 396.45 1055.2 L397.4 1053.7 M377.7 1046 Q375.15 1041.5 372 1039.1 368.95 1036.65 367.15 1037.75 365.35 1038.75 365.9 1042.65 366.45 1046.55 369 1051 L369.6 1052.05 Q370.95 1054.05 372.95 1054.9 375.2 1055.9 377 1054.85 378.8 1053.75 379.1 1051.3 379.35 1049.2 378.3 1047.05 L377.7 1046"/>
+ <path stroke="none" fill="#DEC2AD" d="M329.85 1067.55 Q329.65 1066.65 329.9 1065.7 330.8 1062.35 337.25 1061.6 343.7 1060.75 352.9 1062.55 366.05 1065.45 371.55 1071 375.9 1075.3 377.4 1080.8 365.2 1065.35 329.85 1067.55 M390.6 1080.8 Q392.1 1075.3 396.45 1071 401.95 1065.45 415.1 1062.55 424.3 1060.75 430.75 1061.6 437.2 1062.35 438.1 1065.7 438.35 1066.65 438.15 1067.55 402.8 1065.35 390.6 1080.8"/>
+ <path stroke="none" fill="#8E5A32" d="M377.7 1046 L378.3 1047.05 Q379.35 1049.2 379.1 1051.3 378.8 1053.75 377 1054.85 375.2 1055.9 372.95 1054.9 370.95 1054.05 369.6 1052.05 L369 1051 Q366.45 1046.55 365.9 1042.65 365.35 1038.75 367.15 1037.75 368.95 1036.65 372 1039.1 375.15 1041.5 377.7 1046 M397.4 1053.7 L396.45 1055.2 Q394.45 1058.2 391.45 1059.5 388.05 1060.95 385.3 1059.4 382.55 1057.8 382.15 1054.15 381.75 1050.85 383.35 1047.65 L384.25 1046.1 Q388.15 1039.35 392.75 1035.7 397.45 1032.05 400.2 1033.65 402.95 1035.2 402.05 1041.05 401.3 1046.95 397.4 1053.7"/>
+ <path stroke="none" fill="#FF9900" d="M378 1090.05 Q380.75 1088.7 384 1088.7 387.25 1088.7 390 1090.05 L392.1 1091.3 393.65 1092.65 Q396.85 1095.9 397.45 1100.1 L396.3 1101.65 Q395.5 1098.6 392.95 1096.2 L391.55 1095.05 391.15 1094.8 Q388 1092.75 384 1092.75 380 1092.75 376.85 1094.8 376.65 1094.95 376.5 1095.05 L375 1096.2 Q372.5 1098.6 371.7 1101.65 370.8 1100.95 370.5 1100.1 371.15 1095.9 374.3 1092.65 L375.9 1091.3 378 1090.05"/>
+ <path stroke="none" fill="#F39100" d="M371.7 1101.65 Q372.5 1098.6 375 1096.2 L376.5 1095.05 Q376.65 1094.95 376.85 1094.8 380 1092.75 384 1092.75 388 1092.75 391.15 1094.8 L391.55 1095.05 392.95 1096.2 Q395.5 1098.6 396.3 1101.65 L395.7 1102.1 393.65 1103.1 Q389.65 1104.75 384 1104.75 378.3 1104.75 374.3 1103.1 373.15 1102.65 372.35 1102.1 L371.7 1101.65"/>
+ <path stroke="none" fill="#E08600" d="M371.7 1101.65 L372.35 1102.1 Q373.15 1102.65 374.3 1103.1 378.3 1104.75 384 1104.75 389.65 1104.75 393.65 1103.1 L395.7 1102.1 396.3 1101.65 397.45 1100.1 397.65 1102.3 397.6 1103.2 397.5 1103.9 Q396.9 1106.5 393.65 1108.4 389.65 1110.75 384 1110.75 378.3 1110.75 374.3 1108.4 371.1 1106.5 370.5 1103.95 L370.35 1103.2 370.35 1102.3 Q370.35 1101.15 370.5 1100.1 370.8 1100.95 371.7 1101.65"/>
+ <path stroke="none" fill="#C6AD99" d="M377.1 1131.9 Q374.3 1129.1 374.3 1125.05 374.3 1123.55 374.7 1122.2 L374.9 1121.85 375.3 1121.75 375.9 1121.75 376.35 1121.9 376.55 1122.35 Q376.75 1125.1 378.75 1127.05 380.9 1129.25 384 1129.25 387.05 1129.25 389.25 1127.05 391.25 1125.1 391.4 1122.35 L391.6 1121.9 Q391.8 1121.75 392.05 1121.75 L392.65 1121.75 393.05 1121.85 393.3 1122.2 Q393.7 1123.55 393.7 1125.05 393.7 1129.05 390.85 1131.9 388 1134.75 384 1134.75 379.95 1134.75 377.1 1131.9 M364.75 1141 Q361 1141 358.35 1138.35 L358.3 1138.3 Q355.65 1135.65 355.65 1131.9 355.65 1130.45 356.05 1129.15 L356.45 1128.65 Q356.75 1128.45 357.1 1128.45 L357.7 1128.75 358 1129.3 Q358.45 1132.05 360.55 1134.1 363.15 1136.75 366.75 1136.75 369 1136.75 370.85 1135.8 L371.5 1135.7 372.05 1136 372.3 1136.65 372.1 1137.25 371.2 1138.3 Q368.5 1141 364.75 1141 M403.25 1141 Q399.5 1141 396.8 1138.3 L395.9 1137.25 Q395.65 1136.95 395.7 1136.65 395.7 1136.25 395.95 1136 L396.5 1135.7 397.15 1135.8 Q399 1136.75 401.25 1136.75 404.85 1136.75 407.45 1134.1 409.55 1132.05 410 1129.3 L410.3 1128.75 Q410.55 1128.5 410.9 1128.45 L411.55 1128.65 411.95 1129.15 Q412.35 1130.45 412.35 1131.9 412.35 1135.65 409.7 1138.3 L409.65 1138.35 Q407 1141 403.25 1141"/>
+ <path stroke="none" fill="#B4723F" d="M960 1036.2 Q959.75 1028 951.35 1028 L840.65 1028 Q832.25 1028 832 1036.2 L832 1032.7 Q832 1024 840.65 1024 L951.35 1024 Q960 1024 960 1032.7 L960 1036.2"/>
+ <path stroke="none" fill="#A16639" d="M960 1036.2 L960 1120.75 Q947.7 1129.8 933.8 1134.85 927.9 1130.1 921.25 1127.1 926.35 1124.95 930.9 1121.8 L931.7 1121.2 935.4 1118.3 936.45 1117.35 Q946.35 1108 946 1097.45 945.7 1087 938.85 1095.2 936.55 1097.9 932.65 1098.95 L932.6 1098.95 Q926.6 1100.55 921.25 1097.45 L918.9 1095.8 Q915.5 1092.9 914.3 1088.35 912.7 1082.35 915.8 1076.95 918.85 1071.65 924.85 1070 L924.9 1070 928.95 1069.3 932 1069.3 Q938.05 1069.35 933.4 1065.1 L933.4 1065.05 931.7 1063.45 930.95 1062.85 Q925.55 1058.15 919.4 1055.2 916 1053.6 912.35 1052.5 913.05 1049.1 913.2 1045.3 L913.2 1044.45 Q913.2 1039.25 908.05 1035.6 902.95 1031.95 895.7 1031.95 888.45 1031.95 883.3 1035.6 878.2 1039.25 878.2 1044.45 L878.25 1045.3 Q878.4 1049.1 879.05 1052.55 868.4 1055.75 859.8 1063.45 L858.1 1065.05 Q854.1 1069.65 860.45 1069.3 L861.4 1069.3 866.45 1070.05 866.5 1070.05 Q872.5 1071.7 875.55 1077 878.65 1082.4 877.05 1088.4 875.9 1092.9 872.5 1095.8 871.4 1096.75 870.1 1097.5 864.75 1100.6 858.75 1099 L858.7 1099 Q854.75 1097.95 852.75 1095.75 845.45 1087.8 844.85 1095.8 845.05 1108.25 855.4 1117.75 L858.1 1119.95 859.8 1121.2 Q864.65 1124.75 870.2 1127.15 863.5 1130.15 857.65 1134.85 844.05 1129.9 832 1121.2 L832 1036.2 Q832.25 1028 840.65 1028 L951.35 1028 Q959.75 1028 960 1036.2 M928.35 1075.65 Q924.5 1075.65 921.8 1078.35 919.1 1081.1 919.1 1084.95 919.1 1088.75 921.8 1091.5 924.5 1094.2 928.35 1094.2 932.2 1094.2 934.8 1091.5 937.6 1088.75 937.6 1084.95 937.6 1081.1 934.8 1078.35 932.2 1075.65 928.35 1075.65 M863 1075.7 Q859.15 1075.7 856.55 1078.4 853.75 1081.15 853.75 1085 853.75 1088.8 856.55 1091.55 859.15 1094.25 863 1094.25 866.85 1094.25 869.55 1091.55 872.25 1088.8 872.25 1085 872.25 1081.15 869.55 1078.4 866.85 1075.7 863 1075.7"/>
+ <path stroke="none" fill="#AA6C3C" d="M879.05 1052.55 Q878.4 1049.1 878.25 1045.3 L878.2 1044.45 Q878.2 1039.25 883.3 1035.6 888.45 1031.95 895.7 1031.95 902.95 1031.95 908.05 1035.6 913.2 1039.25 913.2 1044.45 L913.2 1045.3 Q913.05 1049.1 912.35 1052.5 904.55 1050.15 895.7 1050.15 L894.1 1050.2 Q886.15 1050.4 879.05 1052.55"/>
+ <path stroke="none" fill="#EBCEB7" d="M870.2 1127.15 Q864.65 1124.75 859.8 1121.2 L858.1 1119.95 855.4 1117.75 Q845.05 1108.25 844.85 1095.8 845.45 1087.8 852.75 1095.75 854.75 1097.95 858.7 1099 L858.75 1099 Q864.75 1100.6 870.1 1097.5 871.4 1096.75 872.5 1095.8 875.9 1092.9 877.05 1088.4 878.65 1082.4 875.55 1077 872.5 1071.7 866.5 1070.05 L866.45 1070.05 861.4 1069.3 860.45 1069.3 Q854.1 1069.65 858.1 1065.05 L859.8 1063.45 Q868.4 1055.75 879.05 1052.55 886.15 1050.4 894.1 1050.2 L895.7 1050.15 Q904.55 1050.15 912.35 1052.5 916 1053.6 919.4 1055.2 925.55 1058.15 930.95 1062.85 L931.7 1063.45 933.4 1065.05 933.4 1065.1 Q938.05 1069.35 932 1069.3 L928.95 1069.3 924.9 1070 924.85 1070 Q918.85 1071.65 915.8 1076.95 912.7 1082.35 914.3 1088.35 915.5 1092.9 918.9 1095.8 L921.25 1097.45 Q926.6 1100.55 932.6 1098.95 L932.65 1098.95 Q936.55 1097.9 938.85 1095.2 945.7 1087 946 1097.45 946.35 1108 936.45 1117.35 L935.4 1118.3 931.7 1121.2 930.9 1121.8 Q926.35 1124.95 921.25 1127.1 L919.4 1127.85 Q908.7 1131.95 895.7 1131.95 L894.1 1131.95 Q882.3 1131.7 872.45 1128.05 L870.2 1127.15 M908.55 1095.1 L908.75 1092.75 908.75 1091.85 Q908.4 1089.45 904.95 1087.75 901.1 1085.9 895.7 1085.9 890.3 1085.9 886.45 1087.75 882.95 1089.45 882.65 1091.85 L882.65 1092.75 882.85 1095.1 883 1095.8 Q883.75 1099.3 886.45 1102 888.6 1104.15 891.25 1105.1 L890.4 1106.1 888.35 1107.6 Q886.9 1108.25 885.25 1108.25 882.25 1108.25 880.1 1106.1 L878.75 1104.35 Q878.55 1104 878.2 1103.9 L877.55 1104 872.95 1106.55 Q872.6 1106.75 872.55 1107.1 872.4 1107.4 872.6 1107.75 L874.1 1109.95 875.15 1111.1 Q879.3 1115.3 885.25 1115.3 891.15 1115.3 895.4 1111.1 L895.7 1110.8 896 1111.1 Q900.2 1115.3 906.1 1115.3 912 1115.3 916.25 1111.1 L917.3 1109.95 918.8 1107.65 918.85 1107 918.4 1106.5 913.7 1104.05 913 1104 912.5 1104.45 911.25 1106.1 Q909.1 1108.25 906.1 1108.25 904.45 1108.25 903.05 1107.6 901.95 1107.05 901 1106.1 L900.15 1105.1 Q902.8 1104.15 904.95 1102 907.65 1099.3 908.45 1095.8 L908.55 1095.1"/>
+ <path stroke="none" fill="#545454" d="M908.55 1095.1 Q907.85 1093.2 904.95 1091.75 901.1 1089.9 895.7 1089.9 890.3 1089.9 886.45 1091.75 883.55 1093.15 882.85 1095.1 L882.65 1092.75 882.65 1091.85 Q882.95 1089.45 886.45 1087.75 890.3 1085.9 895.7 1085.9 901.1 1085.9 904.95 1087.75 908.4 1089.45 908.75 1091.85 L908.75 1092.75 908.55 1095.1"/>
+ <path stroke="none" fill="#FFFFFF" d="M928.35 1075.65 Q932.2 1075.65 934.8 1078.35 937.6 1081.1 937.6 1084.95 937.6 1088.75 934.8 1091.5 932.2 1094.2 928.35 1094.2 924.5 1094.2 921.8 1091.5 919.1 1088.75 919.1 1084.95 919.1 1081.1 921.8 1078.35 924.5 1075.65 928.35 1075.65 M928.5 1080.15 Q926.05 1080.15 924.4 1081.85 922.7 1083.55 922.7 1085.95 922.7 1088.35 924.4 1090.1 926.05 1091.8 928.5 1091.8 930.9 1091.8 932.55 1090.1 934.3 1088.35 934.3 1085.95 934.3 1083.55 932.55 1081.85 930.9 1080.15 928.5 1080.15 M862.85 1080.2 Q860.45 1080.2 858.8 1081.9 857.05 1083.6 857.05 1086 857.05 1088.4 858.8 1090.15 860.45 1091.85 862.85 1091.85 865.3 1091.85 866.95 1090.15 868.65 1088.4 868.65 1086 868.65 1083.6 866.95 1081.9 865.3 1080.2 862.85 1080.2 M863 1075.7 Q866.85 1075.7 869.55 1078.4 872.25 1081.15 872.25 1085 872.25 1088.8 869.55 1091.55 866.85 1094.25 863 1094.25 859.15 1094.25 856.55 1091.55 853.75 1088.8 853.75 1085 853.75 1081.15 856.55 1078.4 859.15 1075.7 863 1075.7"/>
+ <path stroke="none" fill="#5B5B5B" d="M928.5 1080.15 Q930.9 1080.15 932.55 1081.85 934.3 1083.55 934.3 1085.95 934.3 1088.35 932.55 1090.1 930.9 1091.8 928.5 1091.8 926.05 1091.8 924.4 1090.1 922.7 1088.35 922.7 1085.95 922.7 1083.55 924.4 1081.85 926.05 1080.15 928.5 1080.15 M862.85 1080.2 Q865.3 1080.2 866.95 1081.9 868.65 1083.6 868.65 1086 868.65 1088.4 866.95 1090.15 865.3 1091.85 862.85 1091.85 860.45 1091.85 858.8 1090.15 857.05 1088.4 857.05 1086 857.05 1083.6 858.8 1081.9 860.45 1080.2 862.85 1080.2"/>
+ <path stroke="none" fill="#464646" d="M908.55 1095.1 L908.45 1095.8 Q907.65 1099.3 904.95 1102 902.8 1104.15 900.15 1105.1 895.9 1106.85 891.25 1105.1 888.6 1104.15 886.45 1102 883.75 1099.3 883 1095.8 L882.85 1095.1 Q883.55 1093.15 886.45 1091.75 890.3 1089.9 895.7 1089.9 901.1 1089.9 904.95 1091.75 907.85 1093.2 908.55 1095.1"/>
+ <path stroke="none" fill="#383838" d="M900.15 1105.1 L901 1106.1 Q901.95 1107.05 903.05 1107.6 904.45 1108.25 906.1 1108.25 909.1 1108.25 911.25 1106.1 L912.5 1104.45 913 1104 913.7 1104.05 918.4 1106.5 918.85 1107 918.8 1107.65 917.3 1109.95 916.25 1111.1 Q912 1115.3 906.1 1115.3 900.2 1115.3 896 1111.1 L895.7 1110.8 895.4 1111.1 Q891.15 1115.3 885.25 1115.3 879.3 1115.3 875.15 1111.1 L874.1 1109.95 872.6 1107.75 Q872.4 1107.4 872.55 1107.1 872.6 1106.75 872.95 1106.55 L877.55 1104 878.2 1103.9 Q878.55 1104 878.75 1104.35 L880.1 1106.1 Q882.25 1108.25 885.25 1108.25 886.9 1108.25 888.35 1107.6 L890.4 1106.1 891.25 1105.1 Q895.9 1106.85 900.15 1105.1"/>
+ <path stroke="none" fill="#955E34" d="M832 1121.2 Q844.05 1129.9 857.65 1134.85 863.5 1130.15 870.2 1127.15 L872.45 1128.05 Q882.3 1131.7 894.1 1131.95 L895.7 1131.95 Q908.7 1131.95 919.4 1127.85 L921.25 1127.1 Q927.9 1130.1 933.8 1134.85 947.7 1129.8 960 1120.75 L960 1143.85 Q959.75 1152 951.35 1152 L840.65 1152 Q832.25 1152 832 1143.85 L832 1121.2"/>
+ <path stroke="none" fill="#B1A9A9" d="M1088 1036.2 L1088 1032.7 Q1088 1024 1096.65 1024 L1207.35 1024 Q1216 1024 1216 1032.7 L1216 1036.2 Q1215.75 1028 1207.35 1028 L1096.65 1028 Q1088.25 1028 1088 1036.2"/>
+ <path stroke="none" fill="#FFFFFF" d="M1105.5 1076.95 Q1105.5 1071.75 1109.15 1068.1 1112.8 1064.45 1118 1064.45 1123.1 1064.45 1126.8 1068.1 1130.45 1071.75 1130.45 1076.95 1130.45 1082.1 1126.8 1085.7 1123.1 1089.4 1118 1089.4 1112.8 1089.4 1109.15 1085.7 1105.5 1082.1 1105.5 1076.95 M1110.2 1077 L1110.2 1077.3 Q1110.3 1079.65 1112.75 1081.25 1115.25 1083 1118.9 1083 1122.45 1083 1125 1081.25 1127.45 1079.65 1127.55 1077.3 L1127.55 1077 Q1127.45 1074.65 1125 1072.95 1122.45 1071.25 1118.9 1071.25 1115.25 1071.25 1112.75 1072.95 1110.3 1074.65 1110.2 1077 M1193.75 1077 Q1193.65 1074.65 1191.25 1072.95 1188.75 1071.25 1185.1 1071.25 1181.55 1071.25 1178.95 1072.95 1176.55 1074.65 1176.45 1077 L1176.45 1077.3 Q1176.55 1079.65 1178.95 1081.25 1181.55 1083 1185.1 1083 1188.75 1083 1191.25 1081.25 1193.65 1079.65 1193.75 1077.3 L1193.75 1077 M1198.5 1076.95 Q1198.5 1082.1 1194.85 1085.7 1191.2 1089.4 1186 1089.4 1180.9 1089.4 1177.2 1085.7 1173.55 1082.1 1173.55 1076.95 1173.55 1071.75 1177.2 1068.1 1180.9 1064.45 1186 1064.45 1191.2 1064.45 1194.85 1068.1 1198.5 1071.75 1198.5 1076.95"/>
+ <path stroke="none" fill="#D2D0D0" d="M1198.5 1076.95 Q1198.5 1071.75 1194.85 1068.1 1191.2 1064.45 1186 1064.45 1180.9 1064.45 1177.2 1068.1 1173.55 1071.75 1173.55 1076.95 1173.55 1082.1 1177.2 1085.7 1180.9 1089.4 1186 1089.4 1191.2 1089.4 1194.85 1085.7 1198.5 1082.1 1198.5 1076.95 M1216 1106.75 L1216 1143.85 Q1215.75 1152 1207.35 1152 L1096.65 1152 Q1088.25 1152 1088 1143.85 L1088 1106.8 1091.6 1110.6 1098 1116.5 1100.15 1118.2 Q1101.9 1105.95 1115.35 1101.4 1102.35 1098.35 1096.5 1085.55 1090.65 1072.65 1100.6 1056.8 1110.6 1040.95 1126.2 1048.85 1141.2 1056.4 1142.75 1082.6 1139.25 1084.3 1138.95 1086.7 L1138.95 1087.6 1139.15 1089.95 Q1139.8 1093.9 1142.75 1096.85 1144.9 1099 1147.55 1099.95 L1146.7 1100.95 Q1145.75 1101.9 1144.65 1102.45 1143.2 1103.1 1141.55 1103.1 1138.55 1103.1 1136.4 1100.95 L1135.05 1099.2 Q1134.85 1098.85 1134.5 1098.75 L1133.85 1098.85 1129.25 1101.4 Q1128.9 1101.6 1128.85 1101.95 1128.7 1102.25 1128.9 1102.6 L1130.4 1104.8 1131.45 1105.95 Q1135.6 1110.15 1141.55 1110.15 1147.45 1110.15 1151.7 1105.95 L1152 1105.65 1152.3 1105.95 Q1156.5 1110.15 1162.4 1110.15 1168.3 1110.15 1172.55 1105.95 L1173.6 1104.8 1175.1 1102.5 1175.15 1101.85 1174.7 1101.35 1170 1098.9 1169.3 1098.85 1168.8 1099.3 1167.55 1100.95 Q1165.4 1103.1 1162.4 1103.1 1160.75 1103.1 1159.35 1102.45 1158.25 1101.9 1157.3 1100.95 L1156.45 1099.95 Q1159.1 1099 1161.25 1096.85 1164.2 1093.9 1164.85 1089.95 L1165.05 1087.6 1165.05 1086.7 Q1164.7 1084.3 1161.25 1082.6 1162.8 1056.4 1177.8 1048.85 1193.4 1040.95 1203.4 1056.8 1213.35 1072.65 1207.5 1085.55 1201.65 1098.35 1188.65 1101.4 1202.05 1105.9 1203.9 1118.1 L1206.1 1116.35 1212.3 1110.6 1216 1106.75 M1105.5 1076.95 Q1105.5 1082.1 1109.15 1085.7 1112.8 1089.4 1118 1089.4 1123.1 1089.4 1126.8 1085.7 1130.45 1082.1 1130.45 1076.95 1130.45 1071.75 1126.8 1068.1 1123.1 1064.45 1118 1064.45 1112.8 1064.45 1109.15 1068.1 1105.5 1071.75 1105.5 1076.95"/>
+ <path stroke="none" fill="#5B5B5B" d="M1110.2 1077 Q1110.3 1074.65 1112.75 1072.95 1115.25 1071.25 1118.9 1071.25 1122.45 1071.25 1125 1072.95 1127.45 1074.65 1127.55 1077 L1127.55 1077.3 Q1127.45 1079.65 1125 1081.25 1122.45 1083 1118.9 1083 1115.25 1083 1112.75 1081.25 1110.3 1079.65 1110.2 1077.3 L1110.2 1077 M1193.75 1077 L1193.75 1077.3 Q1193.65 1079.65 1191.25 1081.25 1188.75 1083 1185.1 1083 1181.55 1083 1178.95 1081.25 1176.55 1079.65 1176.45 1077.3 L1176.45 1077 Q1176.55 1074.65 1178.95 1072.95 1181.55 1071.25 1185.1 1071.25 1188.75 1071.25 1191.25 1072.95 1193.65 1074.65 1193.75 1077"/>
+ <path stroke="none" fill="#9F9898" d="M1216 1036.2 L1216 1106.75 1212.3 1110.6 1206.1 1116.35 1203.9 1118.1 Q1202.05 1105.9 1188.65 1101.4 1201.65 1098.35 1207.5 1085.55 1213.35 1072.65 1203.4 1056.8 1193.4 1040.95 1177.8 1048.85 1162.8 1056.4 1161.25 1082.6 1157.4 1080.75 1152 1080.75 1146.6 1080.75 1142.75 1082.6 1141.2 1056.4 1126.2 1048.85 1110.6 1040.95 1100.6 1056.8 1090.65 1072.65 1096.5 1085.55 1102.35 1098.35 1115.35 1101.4 1101.9 1105.95 1100.15 1118.2 L1098 1116.5 1091.6 1110.6 1088 1106.8 1088 1036.2 Q1088.25 1028 1096.65 1028 L1207.35 1028 Q1215.75 1028 1216 1036.2"/>
+ <path stroke="none" fill="#383838" d="M1156.45 1099.95 L1157.3 1100.95 Q1158.25 1101.9 1159.35 1102.45 1160.75 1103.1 1162.4 1103.1 1165.4 1103.1 1167.55 1100.95 L1168.8 1099.3 1169.3 1098.85 1170 1098.9 1174.7 1101.35 1175.15 1101.85 1175.1 1102.5 1173.6 1104.8 1172.55 1105.95 Q1168.3 1110.15 1162.4 1110.15 1156.5 1110.15 1152.3 1105.95 L1152 1105.65 1151.7 1105.95 Q1147.45 1110.15 1141.55 1110.15 1135.6 1110.15 1131.45 1105.95 L1130.4 1104.8 1128.9 1102.6 Q1128.7 1102.25 1128.85 1101.95 1128.9 1101.6 1129.25 1101.4 L1133.85 1098.85 1134.5 1098.75 Q1134.85 1098.85 1135.05 1099.2 L1136.4 1100.95 Q1138.55 1103.1 1141.55 1103.1 1143.2 1103.1 1144.65 1102.45 1145.75 1101.9 1146.7 1100.95 L1147.55 1099.95 Q1152.2 1101.7 1156.45 1099.95"/>
+ <path stroke="none" fill="#545454" d="M1139.15 1089.95 L1138.95 1087.6 1138.95 1086.7 Q1139.25 1084.3 1142.75 1082.6 1146.6 1080.75 1152 1080.75 1157.4 1080.75 1161.25 1082.6 1164.7 1084.3 1165.05 1086.7 L1165.05 1087.6 1164.85 1089.95 Q1164.15 1088.05 1161.25 1086.6 1158.5 1085.3 1154.95 1084.9 L1152 1084.75 1149.05 1084.9 Q1145.5 1085.3 1142.75 1086.6 1139.85 1088 1139.15 1089.95"/>
+ <path stroke="none" fill="#464646" d="M1139.15 1089.95 Q1139.85 1088 1142.75 1086.6 1145.5 1085.3 1149.05 1084.9 L1152 1084.75 1154.95 1084.9 Q1158.5 1085.3 1161.25 1086.6 1164.15 1088.05 1164.85 1089.95 1164.2 1093.9 1161.25 1096.85 1159.1 1099 1156.45 1099.95 1152.2 1101.7 1147.55 1099.95 1144.9 1099 1142.75 1096.85 1139.8 1093.9 1139.15 1089.95"/>
+ <path stroke="none" fill="#FFFFFF" d="M610.9 1041.2 Q610.9 1043.55 612.6 1045.2 614.2 1046.9 616.6 1046.9 618.95 1046.9 620.65 1045.2 L620.75 1045.15 621.85 1043.55 Q622.35 1042.5 622.35 1041.2 622.35 1039.9 621.85 1038.8 621.45 1037.85 620.65 1037.1 L620.4 1036.9 Q618.8 1035.5 616.6 1035.5 614.2 1035.5 612.6 1037.1 610.9 1038.75 610.9 1041.2 M606.45 1041 Q606.45 1039.05 607.2 1037.4 607.85 1035.85 609.15 1034.55 611.85 1031.95 615.6 1031.95 L616.1 1032 Q618.45 1032.05 620.4 1033.25 L620.45 1033.3 621.85 1034.35 622.1 1034.55 Q624.75 1037.25 624.75 1041 624.75 1044.8 622.1 1047.4 L621.85 1047.65 621 1048.35 Q618.6 1050.15 615.6 1050.15 611.85 1050.15 609.15 1047.4 606.45 1044.8 606.45 1041 M669.15 1041.2 Q669.15 1038.75 667.45 1037.1 665.8 1035.5 663.4 1035.5 661.3 1035.5 659.6 1036.9 L659.35 1037.1 Q657.65 1038.75 657.65 1041.2 657.65 1043.55 659.3 1045.15 L659.35 1045.2 Q661.1 1046.9 663.4 1046.9 665.8 1046.9 667.45 1045.2 669.15 1043.55 669.15 1041.2 M673.55 1041 Q673.55 1044.8 670.9 1047.4 668.2 1050.15 664.4 1050.15 661.3 1050.15 659 1048.35 L658 1047.4 Q655.3 1044.8 655.3 1041 655.3 1037.25 658 1034.55 L659.55 1033.35 659.65 1033.25 Q661.55 1032.05 663.9 1032 L664.4 1031.95 Q668.2 1031.95 670.9 1034.55 672.2 1035.9 672.85 1037.45 673.55 1039.05 673.55 1041"/>
+ <path stroke="none" fill="#2ECC71" d="M606.45 1041 Q606.45 1044.8 609.15 1047.4 611.85 1050.15 615.6 1050.15 618.6 1050.15 621 1048.35 L621.85 1047.65 622.1 1047.4 Q624.75 1044.8 624.75 1041 624.75 1037.25 622.1 1034.55 L621.85 1034.35 620.45 1033.3 620.4 1033.25 Q618.45 1032.05 616.1 1032 L615.6 1031.95 Q611.85 1031.95 609.15 1034.55 607.85 1035.85 607.2 1037.4 606.45 1039.05 606.45 1041 M625.85 1028 Q629.8 1032.65 629.8 1039 629.75 1045.95 625.1 1050.75 L624.85 1051.05 624.5 1051.4 624.25 1051.6 620.5 1054.25 621.8 1061.3 620.5 1062.55 Q619.85 1063.35 619.75 1064.45 L619.75 1064.85 619.75 1065.2 Q619.85 1065.9 620.2 1066.5 620.75 1067.35 621.55 1067.5 622.4 1067.65 623.05 1066.85 L623.15 1066.75 625.15 1072.95 Q626.45 1076.45 627.85 1079.2 626.65 1080 625.95 1080.95 L626 1080.85 Q625.05 1081.85 624.95 1083.35 L624.95 1083.45 624.95 1083.7 624.95 1083.9 624.95 1084.15 625.55 1085.8 625.6 1085.85 Q626.45 1087.2 627.7 1087.35 L627.75 1087.4 Q629.3 1087.75 630.6 1086.35 L630.7 1086.2 631.35 1085.65 631.7 1085.5 631.85 1085.45 Q635.6 1089.75 640 1089.75 644.4 1089.75 648.2 1085.4 L648.35 1085.45 648.75 1085.65 649.4 1086.25 649.45 1086.3 Q650.6 1087.75 652.25 1087.4 L652.3 1087.35 Q653.55 1087.2 654.45 1085.85 L654.45 1085.8 655.05 1084.25 655.05 1084.15 655.1 1083.7 655.05 1083.2 Q654.9 1081.85 654.15 1080.95 L654.1 1080.9 652.2 1079.2 654.85 1072.95 656.9 1066.65 657.05 1066.85 Q657.65 1067.65 658.5 1067.5 659.3 1067.35 659.85 1066.5 L660.3 1065.2 660.35 1064.9 660.3 1064.45 Q660.2 1063.35 659.6 1062.55 L658.25 1061.25 659.5 1054.25 Q657.3 1053.05 655.4 1051.15 L655.25 1051 Q650.25 1046.1 650.25 1039 650.25 1032.65 654.3 1028 L695.35 1028 Q703.75 1028 704 1036.2 L704 1098.15 702.75 1098.55 697.5 1100.7 Q692.35 1102.65 686.75 1104.2 679.15 1106.25 670.75 1107.55 L664.3 1108.4 Q663.8 1103.95 660.45 1100.6 656.55 1096.7 651.05 1096.7 645.5 1096.7 641.55 1100.6 L640 1102.45 638.4 1100.6 Q634.5 1096.7 629 1096.7 623.45 1096.7 619.5 1100.6 616.25 1103.95 615.75 1108.4 L609.25 1107.55 Q600.85 1106.2 593.3 1104.2 587.65 1102.65 582.5 1100.7 L577.5 1098.65 577.3 1098.55 577.3 1098.6 576 1098.15 576 1036.2 Q576.25 1028 584.65 1028 L625.85 1028 M673.55 1041 Q673.55 1039.05 672.85 1037.45 672.2 1035.9 670.9 1034.55 668.2 1031.95 664.4 1031.95 L663.9 1032 Q661.55 1032.05 659.65 1033.25 L659.55 1033.35 658 1034.55 Q655.3 1037.25 655.3 1041 655.3 1044.8 658 1047.4 L659 1048.35 Q661.3 1050.15 664.4 1050.15 668.2 1050.15 670.9 1047.4 673.55 1044.8 673.55 1041"/>
+ <path stroke="none" fill="#5B5B5B" d="M610.9 1041.2 Q610.9 1038.75 612.6 1037.1 614.2 1035.5 616.6 1035.5 618.8 1035.5 620.4 1036.9 L620.65 1037.1 Q621.45 1037.85 621.85 1038.8 622.35 1039.9 622.35 1041.2 622.35 1042.5 621.85 1043.55 L620.75 1045.15 620.65 1045.2 Q618.95 1046.9 616.6 1046.9 614.2 1046.9 612.6 1045.2 610.9 1043.55 610.9 1041.2 M669.15 1041.2 Q669.15 1043.55 667.45 1045.2 665.8 1046.9 663.4 1046.9 661.1 1046.9 659.35 1045.2 L659.3 1045.15 Q657.65 1043.55 657.65 1041.2 657.65 1038.75 659.35 1037.1 L659.6 1036.9 Q661.3 1035.5 663.4 1035.5 665.8 1035.5 667.45 1037.1 669.15 1038.75 669.15 1041.2"/>
+ <path stroke="none" fill="#30D776" d="M621.8 1061.3 L620.5 1054.25 624.25 1051.6 624.5 1051.4 624.85 1051.05 625.1 1050.75 Q629.75 1045.95 629.8 1039 629.8 1032.65 625.85 1028 L654.3 1028 Q650.25 1032.65 650.25 1039 650.25 1046.1 655.25 1051 L655.4 1051.15 Q657.3 1053.05 659.5 1054.25 L658.25 1061.25 655.1 1059.1 Q648.8 1055.7 640.05 1055.7 631.2 1055.7 625.05 1059.1 623.15 1060.15 621.8 1061.3 M623.15 1066.75 Q623.85 1065.9 624.95 1065.2 L626.5 1064.5 626.5 1064.55 Q632.1 1062.35 640.05 1062.35 648 1062.35 653.65 1064.55 L653.6 1064.5 655.15 1065.2 Q656.15 1065.85 656.9 1066.65 L654.85 1072.95 652.2 1079.2 650.65 1078.25 Q646.2 1075.8 640.05 1075.8 633.8 1075.8 629.45 1078.25 L629.4 1078.25 627.85 1079.2 Q626.45 1076.45 625.15 1072.95 L623.15 1066.75 M631.85 1085.45 L632.05 1085.4 Q635.35 1084.1 640.05 1084.1 644.75 1084.1 648.1 1085.4 L648.2 1085.4 Q644.4 1089.75 640 1089.75 635.6 1089.75 631.85 1085.45"/>
+ <path stroke="none" fill="#32E07C" d="M654.3 1028 L625.85 1028 584.65 1028 Q576.25 1028 576 1036.2 L576 1032.7 Q576 1024 584.65 1024 L695.35 1024 Q704 1024 704 1032.7 L704 1036.2 Q703.75 1028 695.35 1028 L654.3 1028"/>
+ <path stroke="none" fill="#28B463" d="M621.8 1061.3 Q623.15 1060.15 625.05 1059.1 631.2 1055.7 640.05 1055.7 648.8 1055.7 655.1 1059.1 L658.25 1061.25 659.6 1062.55 Q660.2 1063.35 660.3 1064.45 L660.35 1064.9 660.3 1065.2 659.85 1066.5 Q659.3 1067.35 658.5 1067.5 657.65 1067.65 657.05 1066.85 L656.9 1066.65 Q656.15 1065.85 655.15 1065.2 L653.6 1064.5 653.65 1064.55 Q648 1062.35 640.05 1062.35 632.1 1062.35 626.5 1064.55 L626.5 1064.5 624.95 1065.2 Q623.85 1065.9 623.15 1066.75 L623.05 1066.85 Q622.4 1067.65 621.55 1067.5 620.75 1067.35 620.2 1066.5 619.85 1065.9 619.75 1065.2 L619.75 1064.85 619.75 1064.45 Q619.85 1063.35 620.5 1062.55 L621.8 1061.3 M631.85 1085.45 L631.7 1085.5 631.35 1085.65 630.7 1086.2 630.6 1086.35 Q629.3 1087.75 627.75 1087.4 L627.7 1087.35 Q626.45 1087.2 625.6 1085.85 L625.55 1085.8 624.95 1084.15 624.95 1083.9 624.95 1083.7 624.95 1083.45 624.95 1083.35 Q625.05 1081.85 626 1080.85 L625.95 1080.95 Q626.65 1080 627.85 1079.2 L629.4 1078.25 629.45 1078.25 Q633.8 1075.8 640.05 1075.8 646.2 1075.8 650.65 1078.25 L652.2 1079.2 654.1 1080.9 654.15 1080.95 Q654.9 1081.85 655.05 1083.2 L655.1 1083.7 655.05 1084.15 655.05 1084.25 654.45 1085.8 654.45 1085.85 Q653.55 1087.2 652.3 1087.35 L652.25 1087.4 Q650.6 1087.75 649.45 1086.3 L649.4 1086.25 648.75 1085.65 648.35 1085.45 648.2 1085.4 648.1 1085.4 Q644.75 1084.1 640.05 1084.1 635.35 1084.1 632.05 1085.4 L631.85 1085.45"/>
+ <path stroke="none" fill="#B19A89" d="M626.8 1112.15 L626.65 1112.05 Q624.9 1110.3 624.1 1108.4 L623.75 1107.3 623.65 1106.85 Q623.25 1105.25 623.8 1104.2 L624.35 1103.5 625.1 1102.95 Q626.25 1102.4 628.1 1102.95 L628.25 1102.95 Q630.65 1103.7 632.85 1105.85 L632.95 1106 633.85 1107.3 634.15 1109 Q634.15 1110.8 632.85 1112.05 631.6 1113.35 629.8 1113.35 628.05 1113.35 626.8 1112.15 M655.65 1103.5 L656.15 1104.2 Q656.7 1105.25 656.35 1106.85 L656.25 1107.3 655.85 1108.4 Q655.05 1110.3 653.3 1112.05 L653.2 1112.15 Q651.9 1113.35 650.2 1113.35 648.35 1113.35 647.1 1112.05 645.8 1110.8 645.8 1109 645.8 1108.05 646.15 1107.3 646.45 1106.55 647 1106 L647.15 1105.85 Q649.25 1103.75 651.65 1103 L651.85 1102.95 Q653.75 1102.4 654.9 1102.95 L655.65 1103.5"/>
+ <path stroke="none" fill="#EBCEB7" d="M655.65 1103.5 L654.9 1102.95 Q653.75 1102.4 651.85 1102.95 L651.65 1103 Q649.25 1103.75 647.15 1105.85 L647 1106 Q646.45 1106.55 646.15 1107.3 645.8 1108.05 645.8 1109 645.8 1110.8 647.1 1112.05 648.35 1113.35 650.2 1113.35 651.9 1113.35 653.2 1112.15 L653.3 1112.05 Q655.05 1110.3 655.85 1108.4 L656.25 1107.3 656.35 1106.85 Q656.7 1105.25 656.15 1104.2 L655.65 1103.5 M576 1098.15 L577.3 1098.6 577.3 1098.55 577.5 1098.65 582.5 1100.7 Q587.65 1102.65 593.3 1104.2 L594.2 1108.35 Q596.2 1115.6 600.25 1121.75 L600.8 1122.3 601.5 1122.5 602.15 1122.25 Q606.35 1119.05 608.45 1110.95 L609.25 1107.55 615.75 1108.4 Q616.25 1103.95 619.5 1100.6 623.45 1096.7 629 1096.7 634.5 1096.7 638.4 1100.6 L640 1102.45 641.55 1100.6 Q645.5 1096.7 651.05 1096.7 656.55 1096.7 660.45 1100.6 663.8 1103.95 664.3 1108.4 L670.75 1107.55 671.55 1110.95 Q673.65 1119.05 677.85 1122.25 L678.5 1122.5 679.2 1122.3 679.75 1121.75 Q683.8 1115.6 685.8 1108.35 L686.75 1104.2 Q692.35 1102.65 697.5 1100.7 L702.75 1098.55 704 1098.15 704 1143.85 Q703.75 1152 695.35 1152 L584.65 1152 Q576.25 1152 576 1143.85 L576 1098.15 M626.8 1112.15 Q628.05 1113.35 629.8 1113.35 631.6 1113.35 632.85 1112.05 634.15 1110.8 634.15 1109 L633.85 1107.3 632.95 1106 632.85 1105.85 Q630.65 1103.7 628.25 1102.95 L628.1 1102.95 Q626.25 1102.4 625.1 1102.95 L624.35 1103.5 623.8 1104.2 Q623.25 1105.25 623.65 1106.85 L623.75 1107.3 624.1 1108.4 Q624.9 1110.3 626.65 1112.05 L626.8 1112.15"/>
+ <path stroke="none" fill="#F0EDE7" d="M593.3 1104.2 Q600.85 1106.2 609.25 1107.55 L608.45 1110.95 594.2 1108.35 593.3 1104.2 M670.75 1107.55 Q679.15 1106.25 686.75 1104.2 L685.8 1108.35 671.55 1110.95 670.75 1107.55"/>
+ <path stroke="none" fill="#FFFCF5" d="M608.45 1110.95 Q606.35 1119.05 602.15 1122.25 L601.5 1122.5 600.8 1122.3 600.25 1121.75 Q596.2 1115.6 594.2 1108.35 L608.45 1110.95 M671.55 1110.95 L685.8 1108.35 Q683.8 1115.6 679.75 1121.75 L679.2 1122.3 678.5 1122.5 677.85 1122.25 Q673.65 1119.05 671.55 1110.95"/>
+ <path stroke="none" fill="#B4723F" d="M1088 652.2 L1088 648.7 Q1088 640 1096.65 640 L1207.35 640 Q1216 640 1216 648.7 L1216 652.2 Q1215.75 644 1207.35 644 L1163 644 1143.05 644 1096.65 644 Q1088.25 644 1088 652.2"/>
+ <path stroke="none" fill="#A16639" d="M1088 652.2 Q1088.25 644 1096.65 644 L1143.05 644 1142.8 655.35 Q1137.05 653.3 1130.9 656.5 1125 659.55 1120.05 657.95 1115.95 656.75 1117.25 652.15 1113.75 652.45 1112 654.4 1109.65 657.2 1110.7 663.3 1111.9 670.25 1123.85 672.95 1135.05 675.05 1141.2 673 1139.05 688.7 1134.5 703.05 1130.2 705.15 1126.45 708.35 1115.9 717.4 1115.5 730 L1115.5 731 1115.55 732.9 Q1116.3 744.9 1126.45 753.6 1137.45 763 1153 763 1168.5 763 1179.5 753.6 1189.7 744.95 1190.45 732.9 L1190.5 731 1190.5 730 Q1190.05 717.4 1179.5 708.35 1175.75 705.15 1171.5 703.1 1166.85 688.4 1164.75 672.35 1170.9 675.35 1183.7 672.95 1195.65 670.25 1196.85 663.3 1197.9 657.2 1195.5 654.4 1193.8 652.45 1190.3 652.15 1191.6 656.75 1187.5 657.95 1182.55 659.55 1176.65 656.5 1169.65 652.9 1163.25 656 1162.95 650.1 1163 644 L1207.35 644 Q1215.75 644 1216 652.2 L1216 759.85 Q1215.75 768 1207.35 768 L1096.65 768 Q1088.25 768 1088 759.85 L1088 652.2 M1105.45 689.35 Q1105.45 693.5 1108.4 696.35 1111.35 699.35 1115.5 699.35 1119.6 699.35 1122.6 696.35 1125.5 693.5 1125.5 689.35 1125.5 685.15 1122.6 682.25 1119.6 679.3 1115.5 679.3 1111.35 679.3 1108.4 682.25 1105.45 685.15 1105.45 689.35 M1198.55 689.35 Q1198.55 685.15 1195.6 682.25 1192.65 679.3 1188.5 679.3 1184.4 679.3 1181.4 682.25 1178.5 685.15 1178.5 689.35 1178.5 693.5 1181.4 696.35 1184.4 699.35 1188.5 699.35 1192.65 699.35 1195.6 696.35 1198.55 693.5 1198.55 689.35"/>
+ <path stroke="none" fill="#FFDFC6" d="M1112 654.4 Q1113.75 652.45 1117.25 652.15 1115.95 656.75 1120.05 657.95 1125 659.55 1130.9 656.5 1137.05 653.3 1142.8 655.35 L1144.4 656.05 Q1147.8 658.2 1148.4 661.5 1146.5 659.65 1143.55 658.3 L1142.65 658 Q1134.8 655.3 1128.9 658.7 1123.65 661.75 1117.55 660.2 1112.6 659 1112 654.4 M1195.5 654.4 Q1194.95 659 1190 660.2 1183.85 661.75 1178.65 658.7 1172.4 655.1 1164 658.3 L1163.4 658.6 Q1160.85 659.85 1159.15 661.5 1159.75 658.2 1163.15 656.05 L1163.25 656 Q1169.65 652.9 1176.65 656.5 1182.55 659.55 1187.5 657.95 1191.6 656.75 1190.3 652.15 1193.8 652.45 1195.5 654.4"/>
+ <path stroke="none" fill="#EBCEB7" d="M1195.5 654.4 Q1197.9 657.2 1196.85 663.3 1195.65 670.25 1183.7 672.95 1170.9 675.35 1164.75 672.35 1161.6 670.75 1160.15 667.8 1159.4 666.1 1159.1 664.05 1158.9 662.7 1159.15 661.5 1160.85 659.85 1163.4 658.6 L1164 658.3 Q1172.4 655.1 1178.65 658.7 1183.85 661.75 1190 660.2 1194.95 659 1195.5 654.4 M1112 654.4 Q1112.6 659 1117.55 660.2 1123.65 661.75 1128.9 658.7 1134.8 655.3 1142.65 658 L1143.55 658.3 Q1146.5 659.65 1148.4 661.5 1148.65 662.7 1148.45 664.05 1148.15 666.1 1147.4 667.8 1145.6 671.5 1141.2 673 1135.05 675.05 1123.85 672.95 1111.9 670.25 1110.7 663.3 1109.65 657.2 1112 654.4"/>
+ <path stroke="none" fill="#5B5B5B" d="M1110.95 690.55 Q1110.95 687.9 1112.75 686.1 1114.6 684.25 1117.25 684.25 1119.8 684.25 1121.7 686.1 1123.55 687.9 1123.55 690.55 1123.55 693.1 1121.7 694.9 1119.8 696.7 1117.25 696.7 1114.6 696.7 1112.75 694.9 1110.95 693.1 1110.95 690.55 M1193.05 690.55 Q1193.05 693.1 1191.25 694.9 1189.4 696.7 1186.75 696.7 1184.2 696.7 1182.3 694.9 1180.45 693.1 1180.45 690.55 1180.45 687.9 1182.3 686.1 1184.2 684.25 1186.75 684.25 1189.4 684.25 1191.25 686.1 1193.05 687.9 1193.05 690.55"/>
+ <path stroke="none" fill="#FFFFFF" d="M1193.05 690.55 Q1193.05 687.9 1191.25 686.1 1189.4 684.25 1186.75 684.25 1184.2 684.25 1182.3 686.1 1180.45 687.9 1180.45 690.55 1180.45 693.1 1182.3 694.9 1184.2 696.7 1186.75 696.7 1189.4 696.7 1191.25 694.9 1193.05 693.1 1193.05 690.55 M1110.95 690.55 Q1110.95 693.1 1112.75 694.9 1114.6 696.7 1117.25 696.7 1119.8 696.7 1121.7 694.9 1123.55 693.1 1123.55 690.55 1123.55 687.9 1121.7 686.1 1119.8 684.25 1117.25 684.25 1114.6 684.25 1112.75 686.1 1110.95 687.9 1110.95 690.55 M1105.45 689.35 Q1105.45 685.15 1108.4 682.25 1111.35 679.3 1115.5 679.3 1119.6 679.3 1122.6 682.25 1125.5 685.15 1125.5 689.35 1125.5 693.5 1122.6 696.35 1119.6 699.35 1115.5 699.35 1111.35 699.35 1108.4 696.35 1105.45 693.5 1105.45 689.35 M1198.55 689.35 Q1198.55 693.5 1195.6 696.35 1192.65 699.35 1188.5 699.35 1184.4 699.35 1181.4 696.35 1178.5 693.5 1178.5 689.35 1178.5 685.15 1181.4 682.25 1184.4 679.3 1188.5 679.3 1192.65 679.3 1195.6 682.25 1198.55 685.15 1198.55 689.35"/>
+ <path stroke="none" fill="#704E35" d="M1190.45 732.9 Q1189.6 721 1179.5 712.35 1176.5 709.8 1173.15 707.95 1164.25 703 1153 703 1141.75 703 1132.9 707.9 1129.5 709.75 1126.45 712.35 1116.35 721 1115.55 732.9 L1115.5 731 1115.5 730 Q1115.9 717.4 1126.45 708.35 1130.2 705.15 1134.5 703.05 1142.75 699 1153 699 1163.25 699 1171.5 703.1 1175.75 705.15 1179.5 708.35 1190.05 717.4 1190.5 730 L1190.5 731 1190.45 732.9"/>
+ <path stroke="none" fill="#5F422D" d="M1143.05 644 L1163 644 Q1162.95 650.1 1163.25 656 L1163.15 656.05 Q1159.75 658.2 1159.15 661.5 1158.9 662.7 1159.1 664.05 1159.4 666.1 1160.15 667.8 1161.6 670.75 1164.75 672.35 1166.85 688.4 1171.5 703.1 1163.25 699 1153 699 1142.75 699 1134.5 703.05 1139.05 688.7 1141.2 673 1145.6 671.5 1147.4 667.8 1148.15 666.1 1148.45 664.05 1148.65 662.7 1148.4 661.5 1147.8 658.2 1144.4 656.05 L1142.8 655.35 1143.05 644 M1115.55 732.9 Q1116.35 721 1126.45 712.35 1129.5 709.75 1132.9 707.9 1141.75 703 1153 703 1164.25 703 1173.15 707.95 1176.5 709.8 1179.5 712.35 1189.6 721 1190.45 732.9 1189.7 744.95 1179.5 753.6 1168.5 763 1153 763 1137.45 763 1126.45 753.6 1116.3 744.9 1115.55 732.9 M1137.4 723.4 Q1138.9 724.8 1140.95 724.8 1143.1 724.8 1144.6 723.3 1146.1 721.8 1146.1 719.65 1146.1 718.55 1145.75 717.65 L1144.7 716.1 1144.55 715.95 Q1142 713.4 1139.15 712.55 L1138.95 712.5 Q1136.75 711.85 1135.4 712.55 1134.9 712.75 1134.5 713.15 L1133.9 714 Q1133.25 715.25 1133.7 717.15 L1133.8 717.65 1134.25 718.95 Q1135.2 721.2 1137.25 723.25 L1137.4 723.4 M1171.5 713.15 L1170.65 712.55 Q1169.25 711.85 1167.05 712.5 L1166.8 712.6 Q1163.95 713.45 1161.45 715.95 L1161.3 716.1 Q1160.65 716.8 1160.3 717.65 1159.9 718.55 1159.9 719.65 1159.9 721.8 1161.4 723.3 1162.9 724.8 1165.05 724.8 1167.1 724.8 1168.6 723.4 L1168.75 723.25 Q1170.8 721.2 1171.75 718.95 L1172.2 717.65 1172.35 717.15 Q1172.75 715.25 1172.1 714 L1171.5 713.15"/>
+ <path stroke="none" fill="#4F3725" d="M1171.5 713.15 L1172.1 714 Q1172.75 715.25 1172.35 717.15 L1172.2 717.65 1171.75 718.95 Q1170.8 721.2 1168.75 723.25 L1168.6 723.4 Q1167.1 724.8 1165.05 724.8 1162.9 724.8 1161.4 723.3 1159.9 721.8 1159.9 719.65 1159.9 718.55 1160.3 717.65 1160.65 716.8 1161.3 716.1 L1161.45 715.95 Q1163.95 713.45 1166.8 712.6 L1167.05 712.5 Q1169.25 711.85 1170.65 712.55 L1171.5 713.15 M1137.4 723.4 L1137.25 723.25 Q1135.2 721.2 1134.25 718.95 L1133.8 717.65 1133.7 717.15 Q1133.25 715.25 1133.9 714 L1134.5 713.15 Q1134.9 712.75 1135.4 712.55 1136.75 711.85 1138.95 712.5 L1139.15 712.55 Q1142 713.4 1144.55 715.95 L1144.7 716.1 1145.75 717.65 Q1146.1 718.55 1146.1 719.65 1146.1 721.8 1144.6 723.3 1143.1 724.8 1140.95 724.8 1138.9 724.8 1137.4 723.4"/>
+ <path stroke="none" fill="#DBD9D9" d="M1088 268.2 L1088 264.7 Q1088 256 1096.65 256 L1207.35 256 Q1216 256 1216 264.7 L1216 268.2 Q1215.75 260 1207.35 260 L1182.3 260 Q1182.3 265.75 1173.35 269.8 1164.45 273.9 1151.8 273.9 1139.15 273.9 1130.2 269.8 1121.3 265.75 1121.3 260 L1096.65 260 Q1088.25 260 1088 268.2"/>
+ <path stroke="none" fill="#FFFFFF" d="M1117.35 300.25 Q1117.35 303.4 1119.6 305.55 1121.75 307.85 1124.95 307.85 1128.1 307.85 1130.35 305.55 1132.6 303.4 1132.6 300.25 1132.6 296.95 1130.35 294.8 1128.1 292.65 1124.95 292.65 1121.75 292.65 1119.6 294.8 1117.35 296.95 1117.35 300.25 M1111.4 300 Q1111.4 294.95 1115 291.4 1118.6 287.9 1123.6 287.9 1128.6 287.9 1132.3 291.4 1135.8 294.95 1135.8 300 1135.8 305.05 1132.3 308.5 1128.6 312.15 1123.6 312.15 1118.6 312.15 1115 308.5 1111.4 305.05 1111.4 300 M1122.55 322.1 Q1127 321.85 1131.2 322.05 L1131.8 321.85 1132.1 321.3 1132.1 320.7 1131.65 320.2 Q1128.55 318.5 1125.55 317.5 L1126.05 317 Q1131 312.05 1137.95 312.05 L1140.25 312.05 Q1140.85 315.7 1143.6 318.45 1147.3 322.15 1152.5 322.15 1157.65 322.15 1161.3 318.45 1164.1 315.7 1164.8 312.05 L1166.45 312.05 Q1173.15 312.2 1177.9 317 L1178.4 317.55 Q1175.45 318.5 1172.35 320.2 L1171.9 320.7 1171.9 321.3 Q1171.9 321.6 1172.2 321.85 1172.45 322.05 1172.8 322.05 1177 321.85 1181.5 322.1 1182.3 324 1182.65 326.1 1178.5 324.75 1173.2 325.05 L1172.7 325.25 1172.5 325.7 1172.5 326.2 1172.9 326.55 Q1178.25 328.05 1182.75 331.15 1182.05 336.65 1177.9 340.75 1173 345.7 1166 345.7 1162.1 345.7 1158.85 344.15 1156.3 342.95 1154.1 340.75 L1152 338.25 1149.85 340.75 Q1147.7 342.95 1145.15 344.15 1141.85 345.7 1137.95 345.7 1131 345.7 1126.05 340.75 1121.95 336.65 1121.3 331.15 1125.75 328.05 1131.1 326.55 L1131.5 326.2 1131.5 325.7 1131.3 325.25 1130.8 325.05 Q1125.5 324.75 1121.35 326.1 1121.7 324 1122.55 322.1 M1192.6 300 Q1192.6 305.05 1189.1 308.5 1185.5 312.15 1180.4 312.15 1175.4 312.15 1171.85 308.5 1168.25 305.05 1168.25 300 1168.25 294.95 1171.85 291.4 1175.4 287.9 1180.4 287.9 1185.5 287.9 1189.1 291.4 1192.6 294.95 1192.6 300 M1186.75 300.25 Q1186.75 296.95 1184.5 294.8 1182.25 292.65 1179.1 292.65 1176 292.65 1173.65 294.8 1171.4 296.95 1171.4 300.25 1171.4 303.4 1173.65 305.55 1176 307.85 1179.1 307.85 1182.25 307.85 1184.5 305.55 1186.75 303.4 1186.75 300.25"/>
+ <path stroke="none" fill="#D2D0D0" d="M1216 268.2 L1216 375.85 Q1215.75 384 1207.35 384 L1178.7 384 1175.05 374.95 1175.7 374.7 Q1173.2 369.8 1170.5 366.1 1162 351.95 1152 351.95 1142.05 351.95 1133.6 366.15 1130.9 369.85 1128.4 374.7 L1129.05 374.95 Q1127.2 379.1 1125.45 384 L1096.65 384 Q1088.25 384 1088 375.85 L1088 268.2 Q1088.25 260 1096.65 260 L1121.3 260 Q1121.3 265.75 1130.2 269.8 1139.15 273.9 1151.8 273.9 1164.45 273.9 1173.35 269.8 1182.3 265.75 1182.3 260 L1207.35 260 Q1215.75 260 1216 268.2 M1111.4 300 Q1111.4 305.05 1115 308.5 1118.6 312.15 1123.6 312.15 1128.6 312.15 1132.3 308.5 1135.8 305.05 1135.8 300 1135.8 294.95 1132.3 291.4 1128.6 287.9 1123.6 287.9 1118.6 287.9 1115 291.4 1111.4 294.95 1111.4 300 M1125.55 317.5 Q1119.15 315.35 1113.3 316.5 L1112.8 316.8 Q1112.6 316.95 1112.55 317.3 L1111.85 321.95 1111.85 322.55 1112.3 323 1112.8 323.1 1122.55 322.1 Q1121.7 324 1121.35 326.1 1118.6 327 1116.4 328.6 L1116.1 329 1116.1 329.45 1117.15 333.05 1117.35 333.45 1117.8 333.6 1118.25 333.5 Q1119.7 332.2 1121.3 331.15 1121.95 336.65 1126.05 340.75 1131 345.7 1137.95 345.7 1141.85 345.7 1145.15 344.15 1148.25 345.7 1152 345.7 1155.75 345.7 1158.85 344.15 1162.1 345.7 1166 345.7 1173 345.7 1177.9 340.75 1182.05 336.65 1182.75 331.15 L1185.75 333.5 1186.2 333.6 1186.65 333.45 1186.85 333.05 1187.9 329.45 1187.9 329 1187.6 328.6 Q1185.4 327 1182.65 326.1 1182.3 324 1181.5 322.1 L1191.2 323.1 1191.7 323 1192.15 322.55 1192.15 321.95 1191.45 317.3 1191.2 316.8 1190.7 316.5 Q1184.85 315.35 1178.4 317.55 L1177.9 317 Q1173.15 312.2 1166.45 312.05 L1164.8 312.05 1164.9 311.45 1165 309.7 1164.95 308.8 Q1164.65 306.55 1161.3 304.9 1157.65 303.15 1152.5 303.15 1147.3 303.15 1143.6 304.9 1140.25 306.55 1140 308.8 L1140 309.7 1140.1 311.3 1140.25 312.05 1137.95 312.05 Q1131 312.05 1126.05 317 L1125.55 317.5 M1192.6 300 Q1192.6 294.95 1189.1 291.4 1185.5 287.9 1180.4 287.9 1175.4 287.9 1171.85 291.4 1168.25 294.95 1168.25 300 1168.25 305.05 1171.85 308.5 1175.4 312.15 1180.4 312.15 1185.5 312.15 1189.1 308.5 1192.6 305.05 1192.6 300"/>
+ <path stroke="none" fill="#5B5B5B" d="M1117.35 300.25 Q1117.35 296.95 1119.6 294.8 1121.75 292.65 1124.95 292.65 1128.1 292.65 1130.35 294.8 1132.6 296.95 1132.6 300.25 1132.6 303.4 1130.35 305.55 1128.1 307.85 1124.95 307.85 1121.75 307.85 1119.6 305.55 1117.35 303.4 1117.35 300.25 M1186.75 300.25 Q1186.75 303.4 1184.5 305.55 1182.25 307.85 1179.1 307.85 1176 307.85 1173.65 305.55 1171.4 303.4 1171.4 300.25 1171.4 296.95 1173.65 294.8 1176 292.65 1179.1 292.65 1182.25 292.65 1184.5 294.8 1186.75 296.95 1186.75 300.25"/>
+ <path stroke="none" fill="#A8A1A1" d="M1125.55 317.5 Q1128.55 318.5 1131.65 320.2 L1132.1 320.7 1132.1 321.3 1131.8 321.85 1131.2 322.05 Q1127 321.85 1122.55 322.1 L1112.8 323.1 1112.3 323 1111.85 322.55 1111.85 321.95 1112.55 317.3 Q1112.6 316.95 1112.8 316.8 L1113.3 316.5 Q1119.15 315.35 1125.55 317.5 M1121.35 326.1 Q1125.5 324.75 1130.8 325.05 L1131.3 325.25 1131.5 325.7 1131.5 326.2 1131.1 326.55 Q1125.75 328.05 1121.3 331.15 1119.7 332.2 1118.25 333.5 L1117.8 333.6 1117.35 333.45 1117.15 333.05 1116.1 329.45 1116.1 329 1116.4 328.6 Q1118.6 327 1121.35 326.1 M1145.15 344.15 Q1147.7 342.95 1149.85 340.75 L1152 338.25 1154.1 340.75 Q1156.3 342.95 1158.85 344.15 1155.75 345.7 1152 345.7 1148.25 345.7 1145.15 344.15 M1182.75 331.15 Q1178.25 328.05 1172.9 326.55 L1172.5 326.2 1172.5 325.7 1172.7 325.25 1173.2 325.05 Q1178.5 324.75 1182.65 326.1 1185.4 327 1187.6 328.6 L1187.9 329 1187.9 329.45 1186.85 333.05 1186.65 333.45 1186.2 333.6 1185.75 333.5 1182.75 331.15 M1181.5 322.1 Q1177 321.85 1172.8 322.05 1172.45 322.05 1172.2 321.85 1171.9 321.6 1171.9 321.3 L1171.9 320.7 1172.35 320.2 Q1175.45 318.5 1178.4 317.55 1184.85 315.35 1190.7 316.5 L1191.2 316.8 1191.45 317.3 1192.15 321.95 1192.15 322.55 1191.7 323 1191.2 323.1 1181.5 322.1"/>
+ <path stroke="none" fill="#E5E3E3" d="M1178.7 384 L1125.45 384 Q1127.2 379.1 1129.05 374.95 L1128.4 374.7 Q1130.9 369.85 1133.6 366.15 1142.05 351.95 1152 351.95 1162 351.95 1170.5 366.1 1173.2 369.8 1175.7 374.7 L1175.05 374.95 1178.7 384"/>
+ <path stroke="none" fill="#FFC4FF" d="M1140.1 311.3 L1140 309.7 1140 308.8 Q1140.25 306.55 1143.6 304.9 1147.3 303.15 1152.5 303.15 1157.65 303.15 1161.3 304.9 1164.65 306.55 1164.95 308.8 L1165 309.7 1164.9 311.45 Q1164.4 309.4 1161.3 307.9 1157.65 306.15 1152.5 306.15 1147.3 306.15 1143.6 307.9 1140.6 309.35 1140.1 311.3"/>
+ <path stroke="none" fill="#FFAAFF" d="M1140.1 311.3 Q1140.6 309.35 1143.6 307.9 1147.3 306.15 1152.5 306.15 1157.65 306.15 1161.3 307.9 1164.4 309.4 1164.9 311.45 L1164.8 312.05 Q1164.1 315.7 1161.3 318.45 1157.65 322.15 1152.5 322.15 1147.3 322.15 1143.6 318.45 1140.85 315.7 1140.25 312.05 L1140.1 311.3"/>
+ <path stroke="none" fill="#FFFFFF" d="M960 76.2 Q959.75 68 951.35 68 L922.65 68 Q922.65 83.3 915 94.1 907.4 104.9 896.65 104.9 885.9 104.9 878.25 94.1 870.65 83.3 870.65 68 L840.65 68 Q832.25 68 832 76.2 L832 72.7 Q832 64 840.65 64 L951.35 64 Q960 64 960 72.7 L960 76.2 M850.8 120.4 Q850.8 116.55 853.5 113.85 856.25 111.15 860.1 111.15 863.9 111.15 866.65 113.85 869.35 116.55 869.35 120.4 869.35 124.25 866.65 126.85 863.9 129.65 860.1 129.65 856.25 129.65 853.5 126.85 850.8 124.25 850.8 120.4 M855.3 120.55 Q855.3 122.95 857 124.6 858.7 126.35 861.1 126.35 863.5 126.35 865.25 124.6 866.95 122.95 866.95 120.55 866.95 118.1 865.25 116.45 863.5 114.75 861.1 114.75 858.7 114.75 857 116.45 855.3 118.1 855.3 120.55 M941.2 120.4 Q941.2 124.25 938.5 126.85 935.75 129.65 931.9 129.65 928.1 129.65 925.35 126.85 922.65 124.25 922.65 120.4 922.65 116.55 925.35 113.85 928.1 111.15 931.9 111.15 935.75 111.15 938.5 113.85 941.2 116.55 941.2 120.4 M936.7 120.55 Q936.7 118.1 935 116.45 933.3 114.75 930.9 114.75 928.5 114.75 926.75 116.45 925.05 118.1 925.05 120.55 925.05 122.95 926.75 124.6 928.5 126.35 930.9 126.35 933.3 126.35 935 124.6 936.7 122.95 936.7 120.55"/>
+ <path stroke="none" fill="#F5F5F5" d="M832 76.2 Q832.25 68 840.65 68 L870.65 68 Q870.65 83.3 878.25 94.1 885.9 104.9 896.65 104.9 907.4 104.9 915 94.1 922.65 83.3 922.65 68 L951.35 68 Q959.75 68 960 76.2 L960 183.85 Q959.75 192 951.35 192 L927.1 192 925.65 189.4 Q923.4 185.5 921 182.35 910.4 168.5 896.5 168.5 882.6 168.5 872 182.35 869.55 185.5 867.3 189.4 L865.9 192 840.65 192 Q832.25 192 832 183.85 L832 76.2 M845.15 116.95 Q843.25 124.15 846.1 130.3 849 136.6 855 138.2 860.95 139.75 866.6 135.75 872.15 131.9 874.1 124.7 L874.1 124.65 Q875.7 118.65 872.6 113.3 869.45 107.9 863.5 106.35 857.5 104.75 852.1 107.85 846.8 110.9 845.15 116.9 L845.15 116.95 M909.35 131.25 L909.55 128.9 909.55 128 Q909.2 125.6 905.75 123.9 901.9 122.05 896.5 122.05 891.1 122.05 887.25 123.9 883.75 125.6 883.45 128 L883.45 128.9 883.65 131.25 Q884.3 135.2 887.25 138.15 889.4 140.3 892.05 141.25 L891.2 142.25 889.15 143.75 886.05 144.4 Q883.05 144.4 880.9 142.25 L879.55 140.5 879 140.05 878.35 140.15 873.75 142.7 Q873.4 142.9 873.35 143.25 873.2 143.55 873.4 143.9 874 145 874.9 146.1 L875.95 147.25 Q880.1 151.45 886.05 151.45 891.95 151.45 896.2 147.25 L896.5 146.95 896.8 147.25 Q901 151.45 906.9 151.45 912.8 151.45 917.05 147.25 L918.1 146.1 919.6 143.8 919.65 143.15 919.2 142.65 914.5 140.2 913.8 140.15 913.3 140.6 912.05 142.25 Q909.9 144.4 906.9 144.4 905.25 144.4 903.85 143.75 902.75 143.2 901.8 142.25 L900.95 141.25 Q903.6 140.3 905.75 138.15 908.7 135.2 909.35 131.25 M946.85 116.95 L946.85 116.9 Q945.2 110.9 939.9 107.85 934.5 104.75 928.5 106.35 922.55 107.9 919.4 113.3 916.3 118.65 917.9 124.65 L917.9 124.7 Q919.85 131.9 925.4 135.75 931.05 139.75 937 138.2 943 136.6 945.9 130.3 948.75 124.15 946.85 116.95"/>
+ <path stroke="none" fill="#5B5B5B" d="M946.85 116.95 Q948.75 124.15 945.9 130.3 943 136.6 937 138.2 931.05 139.75 925.4 135.75 919.85 131.9 917.9 124.7 L917.9 124.65 Q916.3 118.65 919.4 113.3 922.55 107.9 928.5 106.35 934.5 104.75 939.9 107.85 945.2 110.9 946.85 116.9 L946.85 116.95 M850.8 120.4 Q850.8 124.25 853.5 126.85 856.25 129.65 860.1 129.65 863.9 129.65 866.65 126.85 869.35 124.25 869.35 120.4 869.35 116.55 866.65 113.85 863.9 111.15 860.1 111.15 856.25 111.15 853.5 113.85 850.8 116.55 850.8 120.4 M855.3 120.55 Q855.3 118.1 857 116.45 858.7 114.75 861.1 114.75 863.5 114.75 865.25 116.45 866.95 118.1 866.95 120.55 866.95 122.95 865.25 124.6 863.5 126.35 861.1 126.35 858.7 126.35 857 124.6 855.3 122.95 855.3 120.55 M845.15 116.95 L845.15 116.9 Q846.8 110.9 852.1 107.85 857.5 104.75 863.5 106.35 869.45 107.9 872.6 113.3 875.7 118.65 874.1 124.65 L874.1 124.7 Q872.15 131.9 866.6 135.75 860.95 139.75 855 138.2 849 136.6 846.1 130.3 843.25 124.15 845.15 116.95 M909.35 131.25 Q908.7 135.2 905.75 138.15 903.6 140.3 900.95 141.25 896.7 143 892.05 141.25 889.4 140.3 887.25 138.15 884.3 135.2 883.65 131.25 884.35 129.3 887.25 127.9 891.1 126.05 896.5 126.05 901.9 126.05 905.75 127.9 908.65 129.35 909.35 131.25 M941.2 120.4 Q941.2 116.55 938.5 113.85 935.75 111.15 931.9 111.15 928.1 111.15 925.35 113.85 922.65 116.55 922.65 120.4 922.65 124.25 925.35 126.85 928.1 129.65 931.9 129.65 935.75 129.65 938.5 126.85 941.2 124.25 941.2 120.4 M936.7 120.55 Q936.7 122.95 935 124.6 933.3 126.35 930.9 126.35 928.5 126.35 926.75 124.6 925.05 122.95 925.05 120.55 925.05 118.1 926.75 116.45 928.5 114.75 930.9 114.75 933.3 114.75 935 116.45 936.7 118.1 936.7 120.55"/>
+ <path stroke="none" fill="#666666" d="M883.65 131.25 L883.45 128.9 883.45 128 Q883.75 125.6 887.25 123.9 891.1 122.05 896.5 122.05 901.9 122.05 905.75 123.9 909.2 125.6 909.55 128 L909.55 128.9 909.35 131.25 Q908.65 129.35 905.75 127.9 901.9 126.05 896.5 126.05 891.1 126.05 887.25 127.9 884.35 129.3 883.65 131.25"/>
+ <path stroke="none" fill="#464646" d="M900.95 141.25 L901.8 142.25 Q902.75 143.2 903.85 143.75 905.25 144.4 906.9 144.4 909.9 144.4 912.05 142.25 L913.3 140.6 913.8 140.15 914.5 140.2 919.2 142.65 919.65 143.15 919.6 143.8 918.1 146.1 917.05 147.25 Q912.8 151.45 906.9 151.45 901 151.45 896.8 147.25 L896.5 146.95 896.2 147.25 Q891.95 151.45 886.05 151.45 880.1 151.45 875.95 147.25 L874.9 146.1 Q874 145 873.4 143.9 873.2 143.55 873.35 143.25 873.4 142.9 873.75 142.7 L878.35 140.15 879 140.05 879.55 140.5 880.9 142.25 Q883.05 144.4 886.05 144.4 L889.15 143.75 891.2 142.25 892.05 141.25 Q896.7 143 900.95 141.25"/>
+ <path stroke="none" fill="#E5E5E5" d="M865.9 192 L867.3 189.4 Q869.55 185.5 872 182.35 882.6 168.5 896.5 168.5 910.4 168.5 921 182.35 923.4 185.5 925.65 189.4 L927.1 192 865.9 192"/>
+ <path stroke="none" fill="#447180" d="M704 76.2 Q703.75 68 695.35 68 L584.65 68 Q576.25 68 576 76.2 L576 72.7 Q576 64 584.65 64 L695.35 64 Q704 64 704 72.7 L704 76.2"/>
+ <path stroke="none" fill="#365A66" d="M704 76.2 L704 183.85 Q703.75 192 695.35 192 L678.9 192 677.05 189.15 Q672.65 182.8 667.75 178.3 655.4 166.9 639.8 166.9 624.15 166.9 611.85 178.3 606.95 182.85 602.55 189.15 L600.65 192 584.65 192 Q576.25 192 576 183.85 L576 76.2 Q576.25 68 584.65 68 L695.35 68 Q703.75 68 704 76.2 M686.75 111.25 Q684.9 104.7 678.95 101.25 672.75 97.65 665.9 99.5 659.1 101.3 655.5 107.55 652.05 113.45 653.65 120.15 L653.8 120.7 Q657.05 132.8 664.25 140 671.4 147.2 678.25 145.4 685.1 143.55 687.65 133.7 690.15 123.9 686.9 111.8 L686.75 111.25 M655.55 137.9 Q654.8 133.05 651.15 129.35 650.25 128.45 649.35 127.8 645.3 124.75 640 124.75 634.7 124.75 630.65 127.8 629.7 128.45 628.8 129.35 625.15 133.05 624.4 137.9 L624.2 140.5 624.25 141.55 Q624.55 145.05 628.8 147.55 633.45 150.25 640 150.25 646.55 150.25 651.15 147.55 655.4 145.05 655.7 141.55 L655.75 140.5 655.55 137.9 M626.4 120.2 Q628.05 113.5 624.55 107.55 621.05 101.35 614.15 99.55 607.3 97.65 601.1 101.25 595.15 104.7 593.25 111.25 L593.05 111.8 Q589.85 123.9 592.45 133.75 595.05 143.55 601.85 145.45 608.75 147.25 615.9 140 623 132.85 626.2 120.75 L626.4 120.2"/>
+ <path stroke="none" fill="#D5EEF7" d="M626.4 120.2 L626.2 120.75 Q623 132.85 615.9 140 608.75 147.25 601.85 145.45 595.05 143.55 592.45 133.75 589.85 123.9 593.05 111.8 L593.25 111.25 Q595.15 104.7 601.1 101.25 607.3 97.65 614.15 99.55 621.05 101.35 624.55 107.55 628.05 113.5 626.4 120.2 M686.75 111.25 L686.9 111.8 Q690.15 123.9 687.65 133.7 685.1 143.55 678.25 145.4 671.4 147.2 664.25 140 657.05 132.8 653.8 120.7 L653.65 120.15 Q652.05 113.45 655.5 107.55 659.1 101.3 665.9 99.5 672.75 97.65 678.95 101.25 684.9 104.7 686.75 111.25 M679.05 123.1 Q679.05 118.7 675.95 115.65 672.85 112.6 668.5 112.6 664.25 112.6 661.05 115.65 658.05 118.7 658.05 123.1 658.05 127.45 661.05 130.45 664.25 133.6 668.5 133.6 672.85 133.6 675.95 130.45 679.05 127.45 679.05 123.1 M600.8 123.1 Q600.8 127.45 603.85 130.45 606.95 133.6 611.3 133.6 615.6 133.6 618.75 130.45 621.8 127.45 621.8 123.1 621.8 118.7 618.75 115.65 615.6 112.6 611.3 112.6 606.95 112.6 603.85 115.65 600.8 118.7 600.8 123.1"/>
+ <path stroke="none" fill="#FFFFFF" d="M600.8 123.1 Q600.8 118.7 603.85 115.65 606.95 112.6 611.3 112.6 615.6 112.6 618.75 115.65 621.8 118.7 621.8 123.1 621.8 127.45 618.75 130.45 615.6 133.6 611.3 133.6 606.95 133.6 603.85 130.45 600.8 127.45 600.8 123.1 M679.05 123.1 Q679.05 127.45 675.95 130.45 672.85 133.6 668.5 133.6 664.25 133.6 661.05 130.45 658.05 127.45 658.05 123.1 658.05 118.7 661.05 115.65 664.25 112.6 668.5 112.6 672.85 112.6 675.95 115.65 679.05 118.7 679.05 123.1 M674.3 125.05 Q674.3 122.25 672.4 120.4 670.45 118.45 667.7 118.45 665 118.45 663 120.4 661.1 122.25 661.1 125.05 L661.1 125.7 Q661.3 127.95 663 129.6 665 131.5 667.7 131.5 670.45 131.5 672.4 129.6 674.05 127.95 674.25 125.7 L674.3 125.05 M605.55 125.05 L605.6 125.7 Q605.75 127.95 607.4 129.6 609.35 131.5 612.15 131.5 614.8 131.5 616.8 129.6 618.55 127.95 618.7 125.7 L618.75 125.05 Q618.75 122.25 616.8 120.4 614.8 118.45 612.15 118.45 609.35 118.45 607.4 120.4 605.55 122.25 605.55 125.05"/>
+ <path stroke="none" fill="#5B5B5B" d="M605.55 125.05 Q605.55 122.25 607.4 120.4 609.35 118.45 612.15 118.45 614.8 118.45 616.8 120.4 618.75 122.25 618.75 125.05 L618.7 125.7 Q618.55 127.95 616.8 129.6 614.8 131.5 612.15 131.5 609.35 131.5 607.4 129.6 605.75 127.95 605.6 125.7 L605.55 125.05 M674.3 125.05 L674.25 125.7 Q674.05 127.95 672.4 129.6 670.45 131.5 667.7 131.5 665 131.5 663 129.6 661.3 127.95 661.1 125.7 L661.1 125.05 Q661.1 122.25 663 120.4 665 118.45 667.7 118.45 670.45 118.45 672.4 120.4 674.3 122.25 674.3 125.05"/>
+ <path stroke="none" fill="#FF9900" d="M624.4 137.9 Q625.15 133.05 628.8 129.35 629.7 128.45 630.65 127.8 634.7 124.75 640 124.75 645.3 124.75 649.35 127.8 650.25 128.45 651.15 129.35 654.8 133.05 655.55 137.9 654.85 139.9 651.15 141.4 646.55 143.3 640 143.3 633.45 143.3 628.8 141.4 625.1 139.9 624.4 137.9"/>
+ <path stroke="none" fill="#E08600" d="M624.4 137.9 Q625.1 139.9 628.8 141.4 633.45 143.3 640 143.3 646.55 143.3 651.15 141.4 654.85 139.9 655.55 137.9 L655.75 140.5 655.7 141.55 Q655.4 145.05 651.15 147.55 646.55 150.25 640 150.25 633.45 150.25 628.8 147.55 624.55 145.05 624.25 141.55 L624.2 140.5 624.4 137.9"/>
+ <path stroke="none" fill="#F2F9FB" d="M600.65 192 L602.55 189.15 Q606.95 182.85 611.85 178.3 624.15 166.9 639.8 166.9 655.4 166.9 667.75 178.3 672.65 182.8 677.05 189.15 L678.9 192 600.65 192"/>
+ <path stroke="none" fill="#5A9BF3" d="M320 268.2 L320 264.7 Q320 256 328.65 256 L439.35 256 Q448 256 448 264.7 L448 268.2 Q447.75 260 439.35 260 L328.65 260 Q320.25 260 320 268.2"/>
+ <path stroke="none" fill="#528CDB" d="M320 268.2 Q320.25 260 328.65 260 L439.35 260 Q447.75 260 448 268.2 L448 375.85 Q447.75 384 439.35 384 L434.4 384 Q430.3 381.75 430.4 376.6 429 362.2 417 351.65 L415.85 350.7 Q402.75 339.8 384.55 339.8 366.1 339.8 352.85 351 L352.05 351.65 Q340.15 362.2 338.8 376.6 337.35 381.7 333.7 384 L328.65 384 Q320.25 384 320 375.85 L320 268.2 M332.75 327.2 Q332.75 332.9 336.8 336.8 340.85 340.9 346.55 340.9 352.15 340.9 356.3 336.8 360.25 332.9 360.25 327.2 360.25 321.45 356.3 317.45 352.15 313.4 346.55 313.4 340.85 313.4 336.8 317.45 332.75 321.45 332.75 327.2 M435.25 327.2 Q435.25 321.45 431.2 317.45 427.15 313.4 421.45 313.4 415.85 313.4 411.7 317.45 407.75 321.45 407.75 327.2 407.75 332.9 411.7 336.8 415.85 340.9 421.45 340.9 427.15 340.9 431.2 336.8 435.25 332.9 435.25 327.2"/>
+ <path stroke="none" fill="#FFFFFF" d="M435.25 327.2 Q435.25 332.9 431.2 336.8 427.15 340.9 421.45 340.9 415.85 340.9 411.7 336.8 407.75 332.9 407.75 327.2 407.75 321.45 411.7 317.45 415.85 313.4 421.45 313.4 427.15 313.4 431.2 317.45 435.25 321.45 435.25 327.2 M332.75 327.2 Q332.75 321.45 336.8 317.45 340.85 313.4 346.55 313.4 352.15 313.4 356.3 317.45 360.25 321.45 360.25 327.2 360.25 332.9 356.3 336.8 352.15 340.9 346.55 340.9 340.85 340.9 336.8 336.8 332.75 332.9 332.75 327.2 M340.3 327.1 L340.35 327.95 Q340.6 330.9 342.75 333.05 345.3 335.55 348.95 335.55 352.45 335.55 355.05 333.05 357.3 330.9 357.55 327.95 L357.6 327.1 Q357.6 323.45 355.05 321 352.45 318.45 348.95 318.45 345.3 318.45 342.75 321 340.3 323.45 340.3 327.1 M427.7 327.1 Q427.7 323.45 425.25 321 422.7 318.45 419.05 318.45 415.55 318.45 412.95 321 410.4 323.45 410.4 327.1 L410.45 327.95 Q410.7 330.9 412.95 333.05 415.55 335.55 419.05 335.55 422.7 335.55 425.25 333.05 427.4 330.9 427.65 327.95 L427.7 327.1"/>
+ <path stroke="none" fill="#5B5B5B" d="M427.7 327.1 L427.65 327.95 Q427.4 330.9 425.25 333.05 422.7 335.55 419.05 335.55 415.55 335.55 412.95 333.05 410.7 330.9 410.45 327.95 L410.4 327.1 Q410.4 323.45 412.95 321 415.55 318.45 419.05 318.45 422.7 318.45 425.25 321 427.7 323.45 427.7 327.1 M340.3 327.1 Q340.3 323.45 342.75 321 345.3 318.45 348.95 318.45 352.45 318.45 355.05 321 357.6 323.45 357.6 327.1 L357.55 327.95 Q357.3 330.9 355.05 333.05 352.45 335.55 348.95 335.55 345.3 335.55 342.75 333.05 340.6 330.9 340.35 327.95 L340.3 327.1"/>
+ <path stroke="none" fill="#4178C2" d="M434.4 384 L333.7 384 Q337.35 381.7 338.8 376.6 340.15 362.2 352.05 351.65 L352.85 351 Q366.1 339.8 384.55 339.8 402.75 339.8 415.85 350.7 L417 351.65 Q429 362.2 430.4 376.6 430.3 381.75 434.4 384 M401.6 352.35 Q400.5 351.25 398.3 351.85 396.05 352.45 394.1 354.45 L393.95 354.55 Q392.9 355.65 392.9 357.25 392.9 358.85 394.05 359.95 395.15 361.1 396.8 361.1 398.3 361.1 399.45 360.05 L399.55 359.95 Q401.55 357.95 402.15 355.75 402.8 353.5 401.6 352.35 M369.45 360.05 Q370.55 361.1 372.1 361.1 373.7 361.1 374.85 359.95 375.95 358.85 375.95 357.25 375.95 355.65 374.9 354.55 L374.8 354.45 Q372.8 352.45 370.6 351.85 368.4 351.25 367.25 352.35 366.1 353.5 366.75 355.75 367.35 357.95 369.35 359.95 L369.45 360.05"/>
+ <path stroke="none" fill="#2D5D9C" d="M369.45 360.05 L369.35 359.95 Q367.35 357.95 366.75 355.75 366.1 353.5 367.25 352.35 368.4 351.25 370.6 351.85 372.8 352.45 374.8 354.45 L374.9 354.55 Q375.95 355.65 375.95 357.25 375.95 358.85 374.85 359.95 373.7 361.1 372.1 361.1 370.55 361.1 369.45 360.05 M401.6 352.35 Q402.8 353.5 402.15 355.75 401.55 357.95 399.55 359.95 L399.45 360.05 Q398.3 361.1 396.8 361.1 395.15 361.1 394.05 359.95 392.9 358.85 392.9 357.25 392.9 355.65 393.95 354.55 L394.1 354.45 Q396.05 352.45 398.3 351.85 400.5 351.25 401.6 352.35"/>
+ <path stroke="none" fill="#DBD9D9" d="M960 268.2 Q959.75 260 951.35 260 L938.6 260 Q938.6 266.4 926.1 270.9 913.65 275.4 896 275.4 878.4 275.4 865.9 270.9 853.45 266.4 853.45 260 L840.65 260 Q832.25 260 832 268.2 L832 264.7 Q832 256 840.65 256 L951.35 256 Q960 256 960 264.7 L960 268.2 M914.3 336.8 Q912.45 343 911 349.4 908.3 360.9 906.7 373.05 906.35 374.6 903.1 375.6 900.1 376.5 896 376.5 891.9 376.5 888.85 375.6 885.7 374.6 885.35 373.05 883.9 360.5 881.5 349.4 880.05 342.75 878.2 336.6 L876.9 332.45 Q874.65 325.5 871.9 319.25 873 316.9 875.7 314.75 L876.8 314 Q884.2 308.95 896 308.95 907.95 308.95 915.2 314.05 L916.15 314.75 Q918.9 316.9 920.15 319.25 917.65 325.85 915.5 332.7 L914.3 336.8 M883.85 325.4 L883.8 325.4 Q896.5 331.25 908.2 325.4 L908.25 325.35 Q908.95 325.05 909.2 324.25 L909.2 324.35 Q909.45 323.65 909.2 323.05 908.95 322.25 908.25 321.95 L908.2 321.95 Q896.55 316 883.85 321.9 883 322.2 882.8 323.05 882.55 323.65 882.8 324.35 883.05 325.05 883.85 325.4"/>
+ <path stroke="none" fill="#D2D0D0" d="M942.55 295.7 Q942.55 291.5 939.6 288.6 936.65 285.65 932.5 285.65 928.4 285.65 925.4 288.6 922.5 291.5 922.5 295.7 922.5 299.85 925.4 302.7 928.4 305.7 932.5 305.7 936.65 305.7 939.6 302.7 942.55 299.85 942.55 295.7 M832 268.2 Q832.25 260 840.65 260 L853.45 260 Q853.45 266.4 865.9 270.9 878.4 275.4 896 275.4 913.65 275.4 926.1 270.9 938.6 266.4 938.6 260 L951.35 260 Q959.75 260 960 268.2 L960 375.85 Q959.75 384 951.35 384 L840.65 384 Q832.25 384 832 375.85 L832 268.2 M849.45 295.7 Q849.45 299.85 852.4 302.7 855.35 305.7 859.5 305.7 863.6 305.7 866.6 302.7 869.5 299.85 869.5 295.7 869.5 291.5 866.6 288.6 863.6 285.65 859.5 285.65 855.35 285.65 852.4 288.6 849.45 291.5 849.45 295.7 M921.05 314.4 Q921.4 307.5 916.15 301.7 908.75 293.4 896 293.4 883.3 293.4 875.7 301.7 870.6 307.55 871 314.4 869.1 316.4 866.55 317.25 848.35 322.95 848.95 342.55 L849.4 347.9 Q849.95 352.75 851.2 358.2 851.35 359.1 852.05 359.85 L852.2 359.9 Q852.85 360.45 853.65 360.6 856.9 360.25 858.85 354.45 L860 351.35 Q860.75 349.55 861.65 347.9 863.05 345.2 864.75 342.85 L865.95 343.3 Q868.45 341.15 871.55 339.5 872.45 339 873.4 338.65 874.95 337.85 876.7 337.2 L878.2 336.6 Q880.05 342.75 881.5 349.4 883.9 360.5 885.35 373.05 885.7 374.6 888.85 375.6 891.9 376.5 896 376.5 900.1 376.5 903.1 375.6 906.35 374.6 906.7 373.05 908.3 360.9 911 349.4 912.45 343 914.3 336.8 L915.3 337.2 Q917.05 337.85 918.6 338.65 919.55 339 920.45 339.5 923.45 341.1 925.9 343.2 L927 342.55 Q928.85 345 930.4 347.9 L932 351.35 933.15 354.45 Q935.1 360.25 938.35 360.6 939.15 360.45 939.8 359.9 L939.95 359.85 Q940.65 359.1 940.8 358.2 942.1 352.7 942.65 347.85 L943.05 342.55 Q943.65 322.95 925.45 317.25 922.85 316.35 921.05 314.4"/>
+ <path stroke="none" fill="#FFFFFF" d="M937.05 296.9 Q937.05 294.25 935.25 292.45 933.4 290.6 930.75 290.6 928.2 290.6 926.3 292.45 924.45 294.25 924.45 296.9 924.45 299.45 926.3 301.25 928.2 303.05 930.75 303.05 933.4 303.05 935.25 301.25 937.05 299.45 937.05 296.9 M942.55 295.7 Q942.55 299.85 939.6 302.7 936.65 305.7 932.5 305.7 928.4 305.7 925.4 302.7 922.5 299.85 922.5 295.7 922.5 291.5 925.4 288.6 928.4 285.65 932.5 285.65 936.65 285.65 939.6 288.6 942.55 291.5 942.55 295.7 M849.45 295.7 Q849.45 291.5 852.4 288.6 855.35 285.65 859.5 285.65 863.6 285.65 866.6 288.6 869.5 291.5 869.5 295.7 869.5 299.85 866.6 302.7 863.6 305.7 859.5 305.7 855.35 305.7 852.4 302.7 849.45 299.85 849.45 295.7 M854.95 296.9 Q854.95 299.45 856.75 301.25 858.6 303.05 861.25 303.05 863.8 303.05 865.7 301.25 867.55 299.45 867.55 296.9 867.55 294.25 865.7 292.45 863.8 290.6 861.25 290.6 858.6 290.6 856.75 292.45 854.95 294.25 854.95 296.9"/>
+ <path stroke="none" fill="#5B5B5B" d="M854.95 296.9 Q854.95 294.25 856.75 292.45 858.6 290.6 861.25 290.6 863.8 290.6 865.7 292.45 867.55 294.25 867.55 296.9 867.55 299.45 865.7 301.25 863.8 303.05 861.25 303.05 858.6 303.05 856.75 301.25 854.95 299.45 854.95 296.9 M937.05 296.9 Q937.05 299.45 935.25 301.25 933.4 303.05 930.75 303.05 928.2 303.05 926.3 301.25 924.45 299.45 924.45 296.9 924.45 294.25 926.3 292.45 928.2 290.6 930.75 290.6 933.4 290.6 935.25 292.45 937.05 294.25 937.05 296.9"/>
+ <path stroke="none" fill="#E7E5E5" d="M871 314.4 Q870.6 307.55 875.7 301.7 883.3 293.4 896 293.4 908.75 293.4 916.15 301.7 921.4 307.5 921.05 314.4 L920.45 317.9 920.15 319.25 Q918.9 316.9 916.15 314.75 L915.2 314.05 Q907.95 308.95 896 308.95 884.2 308.95 876.8 314 L875.7 314.75 Q873 316.9 871.9 319.25 L871.5 317.9 Q871.05 316.1 871 314.4"/>
+ <path stroke="none" fill="#C2C0C0" d="M871 314.4 Q871.05 316.1 871.5 317.9 L871.9 319.25 Q874.65 325.5 876.9 332.45 L878.2 336.6 876.7 337.2 Q874.95 337.85 873.4 338.65 872.45 339 871.55 339.5 868.45 341.15 865.95 343.3 L864.75 342.85 Q867.7 338.85 871.55 335.85 872.45 335.15 873.4 334.6 873.95 329.7 872.4 325.45 L871.75 323.95 Q870 320.4 866.55 317.25 869.1 316.4 871 314.4 M921.05 314.4 Q922.85 316.35 925.45 317.25 922 320.4 920.3 323.95 L919.6 325.45 Q918.05 329.7 918.6 334.6 L920.45 335.85 Q924.15 338.7 927 342.55 L925.9 343.2 Q923.45 341.1 920.45 339.5 919.55 339 918.6 338.65 917.05 337.85 915.3 337.2 L914.3 336.8 915.5 332.7 Q917.65 325.85 920.15 319.25 L920.45 317.9 921.05 314.4"/>
+ <path stroke="none" fill="#CDCBCB" d="M883.85 325.4 Q883.05 325.05 882.8 324.35 882.55 323.65 882.8 323.05 883 322.2 883.85 321.9 896.55 316 908.2 321.95 L908.25 321.95 Q908.95 322.25 909.2 323.05 909.45 323.65 909.2 324.35 L909.2 324.25 Q908.95 325.05 908.25 325.35 L908.2 325.4 Q896.5 331.25 883.8 325.4 L883.85 325.4"/>
+ <path stroke="none" fill="#FFFCF5" d="M925.45 317.25 Q943.65 322.95 943.05 342.55 L942.65 347.85 Q942.1 352.7 940.8 358.2 940.65 359.1 939.95 359.85 L939.8 359.9 Q939.15 360.45 938.35 360.6 L938 356.7 Q935.85 342.15 922.5 328.35 L919.6 325.45 920.3 323.95 Q922 320.4 925.45 317.25 M853.65 360.6 Q852.85 360.45 852.2 359.9 L852.05 359.85 Q851.35 359.1 851.2 358.2 849.95 352.75 849.4 347.9 L848.95 342.55 Q848.35 322.95 866.55 317.25 870 320.4 871.75 323.95 L872.4 325.45 869.5 328.35 Q856.15 342.15 854.05 356.7 L853.65 360.6"/>
+ <path stroke="none" fill="#F0EDE7" d="M853.65 360.6 L854.05 356.7 Q856.15 342.15 869.5 328.35 L872.4 325.45 Q873.95 329.7 873.4 334.6 872.45 335.15 871.55 335.85 867.7 338.85 864.75 342.85 863.05 345.2 861.65 347.9 860.75 349.55 860 351.35 L858.85 354.45 Q856.9 360.25 853.65 360.6 M938.35 360.6 Q935.1 360.25 933.15 354.45 L932 351.35 930.4 347.9 Q928.85 345 927 342.55 924.15 338.7 920.45 335.85 L918.6 334.6 Q918.05 329.7 919.6 325.45 L922.5 328.35 Q935.85 342.15 938 356.7 L938.35 360.6"/>
+ <path stroke="none" fill="#31DE7A" d="M192 76.2 Q191.75 68 183.35 68 L168.4 68 87.65 68 72.65 68 Q64.25 68 64 76.2 L64 72.7 Q64 64 72.65 64 L183.35 64 Q192 64 192 72.7 L192 76.2"/>
+ <path stroke="none" fill="#2ECC71" d="M192 76.2 L192 183.85 Q191.75 192 183.35 192 L72.65 192 Q64.25 192 64 183.85 L64 76.2 Q64.25 68 72.65 68 L87.65 68 Q89.8 88.65 99 104.3 111.05 124.8 128 124.8 145 124.8 157 104.3 166.2 88.65 168.4 68 L183.35 68 Q191.75 68 192 76.2 M179.65 140.55 Q179.65 134.8 175.6 130.8 171.55 126.75 165.85 126.75 160.25 126.75 156.1 130.8 152.15 134.8 152.15 140.55 152.15 146.25 156.1 150.15 160.25 154.25 165.85 154.25 171.55 154.25 175.6 150.15 179.65 146.25 179.65 140.55 M114.8 187.5 Q121.15 188.75 128 188.75 134.85 188.75 141.25 187.5 L145.25 186.6 148.4 185.65 157.4 181.85 157.9 181.6 160.15 180.3 Q167.15 176.15 173.3 170 178.95 164.35 182.9 158 L184.85 154.6 182.85 156.1 182.4 156.45 181.55 157.05 162.1 167.2 160.7 167.7 Q155.25 169.55 149.5 170.75 L141.25 172.05 136.7 172.5 136.55 172.5 128 173 119.75 172.55 114.75 172.05 112.7 171.8 106.6 170.75 Q100.75 169.55 95.35 167.7 84.9 164.1 75.9 158 L73.2 156.1 71.15 154.55 73.15 158 Q77.1 164.35 82.75 170 88.9 176.15 95.85 180.25 L98 181.5 98.7 181.85 100.4 182.7 109.45 186.2 110.75 186.55 111.9 186.85 113.55 187.25 114.75 187.5 114.8 187.5 M77.15 140.55 Q77.15 146.25 81.2 150.15 85.25 154.25 90.95 154.25 96.55 154.25 100.7 150.15 104.65 146.25 104.65 140.55 104.65 134.8 100.7 130.8 96.55 126.75 90.95 126.75 85.25 126.75 81.2 130.8 77.15 134.8 77.15 140.55 M120.55 150.15 Q118.95 148.55 116.7 148.55 114.55 148.55 112.95 150.05 L112.8 150.2 Q110.05 152.95 109.15 156.1 108.85 157.15 108.85 158 108.85 159.75 109.9 160.8 110.55 161.45 111.5 161.7 L114.6 161.5 Q116.95 160.85 119.15 159.1 L120.4 158 120.5 157.9 120.65 157.75 Q122.15 156.2 122.15 154 122.15 151.75 120.55 150.15 M146.1 160.8 Q147.15 159.75 147.15 158 L146.85 156.1 Q146 152.95 143.2 150.2 L143.05 150.05 Q141.5 148.55 139.3 148.55 137.05 148.55 135.45 150.15 133.85 151.75 133.85 154 133.85 156.2 135.35 157.75 L135.5 157.9 135.6 158 136.9 159.1 Q139.05 160.85 141.4 161.5 L144.55 161.7 Q145.45 161.45 146.1 160.8"/>
+ <path stroke="none" fill="#FFFFFF" d="M166.85 140.45 Q166.85 136.8 165.9 134.35 164.9 131.85 163.5 131.8 L163.4 131.8 Q162.05 131.85 161.05 134.35 160.05 136.8 160.05 140.45 L160.05 141.3 Q160.15 144.25 161.05 146.4 162.05 148.85 163.4 148.9 L163.5 148.9 Q164.9 148.85 165.9 146.4 166.75 144.25 166.85 141.3 L166.85 140.45 M179.65 140.55 Q179.65 146.25 175.6 150.15 171.55 154.25 165.85 154.25 160.25 154.25 156.1 150.15 152.15 146.25 152.15 140.55 152.15 134.8 156.1 130.8 160.25 126.75 165.85 126.75 171.55 126.75 175.6 130.8 179.65 134.8 179.65 140.55 M95.35 167.7 Q100.75 169.55 106.6 170.75 L102.85 173.85 Q100.5 175.8 98.15 172.1 L95.35 167.7 M149.5 170.75 Q155.25 169.55 160.7 167.7 L157.85 172.1 Q155.5 175.8 153.15 173.85 L149.5 170.75 M89.95 140.45 L89.95 141.3 Q90.05 144.25 90.9 146.4 91.9 148.85 93.3 148.9 L93.4 148.9 Q94.7 148.85 95.75 146.4 96.6 144.25 96.7 141.3 L96.75 140.45 Q96.75 136.8 95.75 134.35 94.7 131.85 93.4 131.8 L93.3 131.8 Q91.9 131.85 90.9 134.35 89.95 136.8 89.95 140.45 M77.15 140.55 Q77.15 134.8 81.2 130.8 85.25 126.75 90.95 126.75 96.55 126.75 100.7 130.8 104.65 134.8 104.65 140.55 104.65 146.25 100.7 150.15 96.55 154.25 90.95 154.25 85.25 154.25 81.2 150.15 77.15 146.25 77.15 140.55"/>
+ <path stroke="none" fill="#5B5B5B" d="M166.85 140.45 L166.85 141.3 Q166.75 144.25 165.9 146.4 164.9 148.85 163.5 148.9 L163.4 148.9 Q162.05 148.85 161.05 146.4 160.15 144.25 160.05 141.3 L160.05 140.45 Q160.05 136.8 161.05 134.35 162.05 131.85 163.4 131.8 L163.5 131.8 Q164.9 131.85 165.9 134.35 166.85 136.8 166.85 140.45 M89.95 140.45 Q89.95 136.8 90.9 134.35 91.9 131.85 93.3 131.8 L93.4 131.8 Q94.7 131.85 95.75 134.35 96.75 136.8 96.75 140.45 L96.7 141.3 Q96.6 144.25 95.75 146.4 94.7 148.85 93.4 148.9 L93.3 148.9 Q91.9 148.85 90.9 146.4 90.05 144.25 89.95 141.3 L89.95 140.45"/>
+ <path stroke="none" fill="#2ABD68" d="M160.7 167.7 L162.1 167.2 181.55 157.05 182.4 156.45 182.85 156.1 184.85 154.6 182.9 158 Q178.95 164.35 173.3 170 167.15 176.15 160.15 180.3 L157.9 181.6 157.4 181.85 148.4 185.65 145.25 186.6 141.25 187.5 Q134.85 188.75 128 188.75 121.15 188.75 114.8 187.5 L128 180.85 141.25 187.5 141.25 172.05 149.5 170.75 153.15 173.85 Q155.5 175.8 157.85 172.1 L160.7 167.7 M114.75 187.5 L113.55 187.25 111.9 186.85 110.75 186.55 109.45 186.2 100.4 182.7 98.7 181.85 98 181.5 95.85 180.25 Q88.9 176.15 82.75 170 77.1 164.35 73.15 158 L71.15 154.55 73.2 156.1 75.9 158 Q84.9 164.1 95.35 167.7 L98.15 172.1 Q100.5 175.8 102.85 173.85 L106.6 170.75 112.7 171.8 114.75 172.05 114.75 187.5"/>
+ <path stroke="none" fill="#28BD68" d="M87.65 68 L168.4 68 Q166.2 88.65 157 104.3 145 124.8 128 124.8 111.05 124.8 99 104.3 89.8 88.65 87.65 68 M113.45 112.55 L113.4 112.55 Q128.65 119.6 142.65 112.55 L142.7 112.5 Q143.55 112.1 143.85 111.2 L143.8 111.3 Q144.1 110.45 143.85 109.75 143.55 108.8 142.7 108.4 L142.65 108.4 Q128.7 101.25 113.5 108.35 112.45 108.75 112.2 109.75 111.9 110.45 112.25 111.3 112.5 112.1 113.45 112.55 M152 93.5 L152.05 93.45 Q152.35 92.45 152.05 91.55 L152.05 91.5 Q151.6 90.35 150.6 89.95 L150.65 90 Q129.05 78.95 105.45 89.95 L105.5 89.95 Q104.35 90.4 104 91.55 103.65 92.45 104 93.45 104.35 94.45 105.45 95 L105.45 95.05 Q129.05 105.95 150.65 95 151.6 94.5 152 93.5"/>
+ <path stroke="none" fill="#31DB79" d="M152 93.5 Q151.6 94.5 150.65 95 129.05 105.95 105.45 95.05 L105.45 95 Q104.35 94.45 104 93.45 103.65 92.45 104 91.55 104.35 90.4 105.5 89.95 L105.45 89.95 Q129.05 78.95 150.65 90 L150.6 89.95 Q151.6 90.35 152.05 91.5 L152.05 91.55 Q152.35 92.45 152.05 93.45 L152 93.5 M113.45 112.55 Q112.5 112.1 112.25 111.3 111.9 110.45 112.2 109.75 112.45 108.75 113.5 108.35 128.7 101.25 142.65 108.4 L142.7 108.4 Q143.55 108.8 143.85 109.75 144.1 110.45 143.8 111.3 L143.85 111.2 Q143.55 112.1 142.7 112.5 L142.65 112.55 Q128.65 119.6 113.4 112.55 L113.45 112.55"/>
+ <path stroke="none" fill="#24A35A" d="M120.55 150.15 Q122.15 151.75 122.15 154 122.15 156.2 120.65 157.75 L120.5 157.9 120.4 158 119.15 159.1 Q116.95 160.85 114.6 161.5 L111.5 161.7 Q110.55 161.45 109.9 160.8 108.85 159.75 108.85 158 108.85 157.15 109.15 156.1 110.05 152.95 112.8 150.2 L112.95 150.05 Q114.55 148.55 116.7 148.55 118.95 148.55 120.55 150.15 M146.1 160.8 Q145.45 161.45 144.55 161.7 L141.4 161.5 Q139.05 160.85 136.9 159.1 L135.6 158 135.5 157.9 135.35 157.75 Q133.85 156.2 133.85 154 133.85 151.75 135.45 150.15 137.05 148.55 139.3 148.55 141.5 148.55 143.05 150.05 L143.2 150.2 Q146 152.95 146.85 156.1 L147.15 158 Q147.15 159.75 146.1 160.8"/>
+ <path stroke="none" fill="#E74C3C" d="M114.8 187.5 L114.75 187.5 114.75 172.05 119.75 172.55 128 173 128 180.85 114.8 187.5"/>
+ <path stroke="none" fill="#D24436" d="M128 173 L136.55 172.5 136.7 172.5 141.25 172.05 141.25 187.5 128 180.85 128 173"/>
+ <path stroke="none" fill="#FFFFFF" d="M446.1 834.45 Q448 836.6 448 840.7 L448 844.2 Q447.8 837 441.25 836.15 L446.1 834.45 M320 844.2 L320 840.7 320 840.6 320 840.45 320 840.35 321.1 835.65 321.9 834.5 326.7 836.15 Q320.2 837 320 844.2 M357.1 832 L365.2 832 365.6 836 358.45 836 357.1 832 M402.7 832 L410.85 832 409.45 836 402.35 836 402.7 832 M432.45 878.55 Q432.45 883.7 428.8 887.3 425.15 891 419.95 891 414.85 891 411.15 887.3 407.5 883.7 407.5 878.55 407.5 873.35 411.15 869.7 414.85 866.05 419.95 866.05 425.15 866.05 428.8 869.7 432.45 873.35 432.45 878.55 M427.7 878.75 Q427.7 875.15 425.2 872.6 422.7 870.1 419.05 870.1 415.5 870.1 412.9 872.6 410.4 875.15 410.4 878.75 410.4 882.35 412.9 884.8 415.5 887.35 419.05 887.35 422.7 887.35 425.2 884.8 427.7 882.35 427.7 878.75 M335.45 878.55 Q335.45 873.35 339.1 869.7 342.75 866.05 347.95 866.05 353.05 866.05 356.75 869.7 360.4 873.35 360.4 878.55 360.4 883.7 356.75 887.3 353.05 891 347.95 891 342.75 891 339.1 887.3 335.45 883.7 335.45 878.55 M340.15 878.75 Q340.15 882.35 342.7 884.8 345.2 887.35 348.85 887.35 352.4 887.35 354.95 884.8 357.5 882.35 357.5 878.75 357.5 875.15 354.95 872.6 352.4 870.1 348.85 870.1 345.2 870.1 342.7 872.6 340.15 875.15 340.15 878.75"/>
+ <path stroke="none" fill="#4A4949" d="M321.9 834.5 Q324.05 832 328.65 832 L357.1 832 358.45 836 328.65 836 326.7 836.15 321.9 834.5 M365.2 832 L402.7 832 402.35 836 365.6 836 365.2 832 M410.85 832 L439.35 832 Q443.95 832 446.1 834.45 L441.25 836.15 439.35 836 409.45 836 410.85 832"/>
+ <path stroke="none" fill="#414040" d="M448 905.7 L448 951.85 Q447.9 955.3 446.35 957.3 440.65 917.7 426.5 906.2 L426.3 906 Q421.15 901.05 427.15 900.75 435.75 900.6 448 905.7 M321.6 957.2 Q320.1 955.2 320 951.85 L320 905.65 Q332.2 900.6 340.75 900.75 346.75 901.05 341.6 906 L341.4 906.2 Q327.25 917.65 321.6 957.2 M409.45 836 L439.35 836 441.25 836.15 Q431.45 839.6 427.65 842.3 421.75 846.4 418.75 848.8 415.75 851.15 414.45 851.9 408 855.45 407.5 848.85 L407.6 847 Q407.75 842.85 408.65 839.15 L409.45 836 M365.6 836 L402.35 836 401.3 846.7 400.95 848.7 Q400.35 851.1 399.15 852.9 L395.4 857.45 Q389.4 863.4 383.9 863.5 378.45 863.4 372.75 857.6 370.5 855.45 368.75 852.9 367.05 850.4 366.6 846.7 L365.6 836 M358.45 836 L359.25 839.15 Q360.15 842.85 360.3 847 L360.4 848.85 Q359.9 855.45 353.45 851.9 L349.15 848.8 Q346.15 846.4 340.25 842.3 336.45 839.65 326.7 836.15 L328.65 836 358.45 836 M365.45 898.05 L367.8 889.95 Q371.05 880.05 383.95 880.4 397.95 880.8 400.1 889.95 L402.5 898.1 Q394.2 894 383.95 894 373.7 894 365.45 898.05 M421.4 927.9 Q420.65 939.95 410.45 948.6 399.45 958 383.95 958 368.4 958 357.4 948.6 347.25 939.9 346.5 927.9 347.3 916 357.4 907.35 360.45 904.75 363.8 902.9 372.7 898 383.95 898 395.2 898 404.1 902.95 407.45 904.8 410.45 907.35 420.55 916 421.4 927.9 M402.45 908.15 L401.6 907.55 Q400.2 906.85 398 907.5 L397.75 907.6 Q394.9 908.45 392.4 910.95 L392.25 911.1 Q391.6 911.8 391.25 912.65 390.85 913.55 390.85 914.65 390.85 916.8 392.35 918.3 393.85 919.8 396 919.8 398.05 919.8 399.55 918.4 L399.7 918.25 Q401.75 916.2 402.7 913.95 L403.15 912.65 403.3 912.15 Q403.7 910.25 403.05 909 L402.45 908.15 M368.35 918.4 Q369.85 919.8 371.9 919.8 374.05 919.8 375.55 918.3 377.05 916.8 377.05 914.65 L377.05 914.6 377.05 914.5 377.05 914 376.7 912.65 376.1 911.65 375.65 911.1 375.5 910.95 372.25 908.45 370.1 907.55 370.05 907.55 369.9 907.5 369.8 907.45 368 907.2 367.1 907.3 Q366.65 907.35 366.3 907.55 L365.65 908 365.45 908.15 364.85 909 364.8 909.1 364.5 910.45 Q364.4 911.25 364.6 912.15 L364.75 912.6 364.75 912.65 365.2 913.95 Q366.15 916.2 368.2 918.25 L368.35 918.4"/>
+ <path stroke="none" fill="#E9E9E9" d="M448 844.2 L448 905.7 Q435.75 900.6 427.15 900.75 421.15 901.05 426.3 906 L426.5 906.2 Q440.65 917.7 446.35 957.3 L445.6 958.1 445.35 958.3 441.05 959.95 440.9 959.95 440.65 960 440.5 960 440.4 960 439.8 960 439.65 960 439.35 960 328.65 960 328.5 960 327.85 960 327.7 960 Q324.05 959.75 322.15 957.8 L321.6 957.2 Q327.25 917.65 341.4 906.2 L341.6 906 Q346.75 901.05 340.75 900.75 332.2 900.6 320 905.65 L320 844.2 Q320.2 837 326.7 836.15 336.45 839.65 340.25 842.3 346.15 846.4 349.15 848.8 L353.45 851.9 Q359.9 855.45 360.4 848.85 L360.3 847 Q360.15 842.85 359.25 839.15 L358.45 836 365.6 836 366.6 846.7 Q367.05 850.4 368.75 852.9 370.5 855.45 372.75 857.6 378.45 863.4 383.9 863.5 389.4 863.4 395.4 857.45 L399.15 852.9 Q400.35 851.1 400.95 848.7 L401.3 846.7 402.35 836 409.45 836 408.65 839.15 Q407.75 842.85 407.6 847 L407.5 848.85 Q408 855.45 414.45 851.9 415.75 851.15 418.75 848.8 421.75 846.4 427.65 842.3 431.45 839.6 441.25 836.15 447.8 837 448 844.2 M432.45 878.55 Q432.45 873.35 428.8 869.7 425.15 866.05 419.95 866.05 414.85 866.05 411.15 869.7 407.5 873.35 407.5 878.55 407.5 883.7 411.15 887.3 414.85 891 419.95 891 425.15 891 428.8 887.3 432.45 883.7 432.45 878.55 M335.45 878.55 Q335.45 883.7 339.1 887.3 342.75 891 347.95 891 353.05 891 356.75 887.3 360.4 883.7 360.4 878.55 360.4 873.35 356.75 869.7 353.05 866.05 347.95 866.05 342.75 866.05 339.1 869.7 335.45 873.35 335.45 878.55 M402.5 898.1 L400.1 889.95 Q397.95 880.8 383.95 880.4 371.05 880.05 367.8 889.95 L365.45 898.05 Q361.15 900.15 357.4 903.35 346.85 912.4 346.45 925 L346.45 926 346.5 927.9 Q347.25 939.9 357.4 948.6 368.4 958 383.95 958 399.45 958 410.45 948.6 420.65 939.95 421.4 927.9 L421.45 926 421.45 925 Q421 912.4 410.45 903.35 406.7 900.2 402.5 898.1"/>
+ <path stroke="none" fill="#5B5B5B" d="M427.7 878.75 Q427.7 882.35 425.2 884.8 422.7 887.35 419.05 887.35 415.5 887.35 412.9 884.8 410.4 882.35 410.4 878.75 410.4 875.15 412.9 872.6 415.5 870.1 419.05 870.1 422.7 870.1 425.2 872.6 427.7 875.15 427.7 878.75 M340.15 878.75 Q340.15 875.15 342.7 872.6 345.2 870.1 348.85 870.1 352.4 870.1 354.95 872.6 357.5 875.15 357.5 878.75 357.5 882.35 354.95 884.8 352.4 887.35 348.85 887.35 345.2 887.35 342.7 884.8 340.15 882.35 340.15 878.75"/>
+ <path stroke="none" fill="#2E2D2D" d="M402.45 908.15 L403.05 909 Q403.7 910.25 403.3 912.15 L403.15 912.65 402.7 913.95 Q401.75 916.2 399.7 918.25 L399.55 918.4 Q398.05 919.8 396 919.8 393.85 919.8 392.35 918.3 390.85 916.8 390.85 914.65 390.85 913.55 391.25 912.65 391.6 911.8 392.25 911.1 L392.4 910.95 Q394.9 908.45 397.75 907.6 L398 907.5 Q400.2 906.85 401.6 907.55 L402.45 908.15 M368.35 918.4 L368.2 918.25 Q366.15 916.2 365.2 913.95 L364.75 912.65 364.75 912.6 364.6 912.15 Q364.4 911.25 364.5 910.45 L364.8 909.1 364.85 909 365.45 908.15 365.65 908 366.3 907.55 Q366.65 907.35 367.1 907.3 L368 907.2 369.8 907.45 369.9 907.5 370.05 907.55 370.1 907.55 372.25 908.45 375.5 910.95 375.65 911.1 376.1 911.65 376.7 912.65 377.05 914 377.05 914.5 377.05 914.6 377.05 914.65 Q377.05 916.8 375.55 918.3 374.05 919.8 371.9 919.8 369.85 919.8 368.35 918.4"/>
+ <path stroke="none" fill="#545353" d="M402.5 898.1 Q406.7 900.2 410.45 903.35 421 912.4 421.45 925 L421.45 926 421.4 927.9 Q420.55 916 410.45 907.35 407.45 904.8 404.1 902.95 395.2 898 383.95 898 372.7 898 363.8 902.9 360.45 904.75 357.4 907.35 347.3 916 346.5 927.9 L346.45 926 346.45 925 Q346.85 912.4 357.4 903.35 361.15 900.15 365.45 898.05 373.7 894 383.95 894 394.2 894 402.5 898.1"/>
+ </g>
+</svg>
\ No newline at end of file
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b7q6ywvxc1jc3"
+path="res://.godot/imported/square_nodetails.svg-2501d658494eef0d837bfcc51bcd6c7e.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/Vector/square_nodetails.svg"
+dest_files=["res://.godot/imported/square_nodetails.svg-2501d658494eef0d837bfcc51bcd6c7e.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
+svg/scale=1.0
+editor/scale_with_editor_scale=false
+editor/convert_colors_with_editor_theme=false
--- /dev/null
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <defs/>
+ <g>
+ <path stroke="none" fill="#A16639" d="M131.9 1112.15 Q136.65 1108.8 140.35 1096.75 143.2 1087.65 144.5 1076.45 145.35 1068.95 145.5 1060.5 L145.5 1059.15 Q145.9 1051.2 142.65 1045.05 L140.35 1041.2 Q135.25 1033.95 128 1033.95 120.75 1033.95 115.6 1041.2 114.3 1043 113.2 1045.15 110.8 1049.85 110.5 1059.15 L110.55 1060.5 Q110.7 1068.95 111.55 1076.45 112.8 1087.65 115.6 1096.75 119.3 1108.7 124.05 1112.1 L119.85 1111.4 116.05 1110.3 115.3 1110.35 114.8 1110.85 Q114.6 1111.2 114.75 1111.6 115.7 1114.5 118.05 1116.8 120.35 1119.1 123.25 1120.15 L123.2 1120.15 123.5 1120.25 122.7 1121.2 120.65 1122.7 Q119.2 1123.35 117.55 1123.35 114.55 1123.35 112.4 1121.2 L111.05 1119.45 110.5 1119 109.85 1119.1 105.25 1121.65 Q104.9 1121.85 104.85 1122.2 104.7 1122.5 104.9 1122.85 L105.95 1124.45 Q102.35 1127.15 99 1130.85 95.35 1134.85 91.9 1139.95 88.3 1145.35 84.9 1152 L72.65 1152 Q64.25 1152 64 1143.85 L64 1036.2 Q64.25 1028 72.65 1028 L183.35 1028 Q191.75 1028 192 1036.2 L192 1143.85 Q191.75 1152 183.35 1152 L171.1 1152 Q167.75 1145.3 164.15 1139.9 160.8 1134.85 157.25 1130.95 153.8 1127.1 150.15 1124.35 L151.1 1122.75 151.15 1122.1 150.7 1121.6 146 1119.15 145.3 1119.1 144.8 1119.55 143.55 1121.2 Q141.4 1123.35 138.4 1123.35 136.75 1123.35 135.35 1122.7 134.25 1122.15 133.3 1121.2 L132.5 1120.3 132.85 1120.15 132.8 1120.15 Q135.65 1119.1 137.95 1116.8 140.25 1114.5 141.3 1111.65 L141.3 1110.9 140.75 1110.4 140.05 1110.35 136.25 1111.4 136.2 1111.4 131.9 1112.15 M69.55 1030.45 L69.45 1030.5 Q69.3 1030.7 69.3 1031 L69.3 1033.6 Q69.65 1046.7 78.6 1057.25 L78.55 1057.25 Q79.45 1058.45 80.5 1059.15 83.45 1061.1 87.35 1059.2 89.65 1058.1 91.1 1056.15 L92.1 1054.5 92.1 1054.45 Q94 1050.7 87.95 1047.8 L83.4 1045.05 Q77 1040.45 71.85 1032.35 L70.8 1030.65 70.4 1030.3 69.9 1030.3 Q69.7 1030.3 69.55 1030.45 M79.15 1075.2 L78.85 1076.45 Q77.5 1082.95 80.1 1088.55 83 1094.85 89 1096.45 94.95 1098 100.6 1094 106.15 1090.15 108.1 1082.95 L108.1 1082.9 Q109 1079.6 108.45 1076.45 108 1073.95 106.6 1071.55 103.45 1066.15 97.5 1064.6 91.5 1063 86.1 1066.1 80.8 1069.15 79.15 1075.15 L79.15 1075.2 M176.85 1075.2 L176.85 1075.15 Q175.2 1069.15 169.9 1066.1 164.5 1063 158.5 1064.6 152.55 1066.15 149.4 1071.55 148 1073.95 147.6 1076.45 147 1079.6 147.9 1082.9 L147.9 1082.95 Q149.85 1090.15 155.4 1094 161.05 1098 167 1096.45 173 1094.85 175.9 1088.55 178.5 1082.95 177.15 1076.45 L176.85 1075.2 M186.45 1030.45 L186.15 1030.3 185.65 1030.3 185.25 1030.65 184.2 1032.4 Q179 1040.45 172.65 1045.05 170.4 1046.65 168.05 1047.8 162 1050.7 163.9 1054.45 L163.9 1054.5 164.95 1056.15 Q166.4 1058.1 168.7 1059.2 172.6 1061.1 175.5 1059.15 L177.45 1057.25 Q186.35 1046.7 186.75 1033.6 L186.75 1031 186.55 1030.5 186.45 1030.45"/>
+ <path stroke="none" fill="#B6733F" d="M124.05 1112.1 Q119.3 1108.7 115.6 1096.75 112.8 1087.65 111.55 1076.45 110.7 1068.95 110.55 1060.5 L110.5 1059.15 Q110.8 1049.85 113.2 1045.15 114.3 1043 115.6 1041.2 120.75 1033.95 128 1033.95 135.25 1033.95 140.35 1041.2 L142.65 1045.05 Q145.9 1051.2 145.5 1059.15 L145.5 1060.5 Q145.35 1068.95 144.5 1076.45 143.2 1087.65 140.35 1096.75 136.65 1108.8 131.9 1112.15 128.05 1112.55 124.05 1112.1"/>
+ <path stroke="none" fill="#EBCEB7" d="M69.55 1030.45 L69.6 1030.45 70.9 1032.8 Q76 1041.85 82.25 1047.75 L86.75 1051.5 Q90.25 1053.95 91.1 1056.15 89.65 1058.1 87.35 1059.2 83.45 1061.1 80.5 1059.15 79.45 1058.45 78.55 1057.25 L78.6 1057.25 Q69.65 1046.7 69.3 1033.6 L69.3 1031 Q69.3 1030.7 69.45 1030.5 L69.55 1030.45 M164.95 1056.15 Q165.75 1053.95 169.25 1051.5 L173.75 1047.75 Q180 1041.85 185.15 1032.85 L186.45 1030.45 186.55 1030.5 186.75 1031 186.75 1033.6 Q186.35 1046.7 177.45 1057.25 L175.5 1059.15 Q172.6 1061.1 168.7 1059.2 166.4 1058.1 164.95 1056.15"/>
+ <path stroke="none" fill="#FFDFC6" d="M164.95 1056.15 L163.9 1054.5 163.9 1054.45 Q162 1050.7 168.05 1047.8 170.4 1046.65 172.65 1045.05 179 1040.45 184.2 1032.4 L185.25 1030.65 185.65 1030.3 186.15 1030.3 186.45 1030.45 185.15 1032.85 Q180 1041.85 173.75 1047.75 L169.25 1051.5 Q165.75 1053.95 164.95 1056.15 M91.1 1056.15 Q90.25 1053.95 86.75 1051.5 L82.25 1047.75 Q76 1041.85 70.9 1032.8 L69.6 1030.45 69.55 1030.45 Q69.7 1030.3 69.9 1030.3 L70.4 1030.3 70.8 1030.65 71.85 1032.35 Q77 1040.45 83.4 1045.05 L87.95 1047.8 Q94 1050.7 92.1 1054.45 L92.1 1054.5 91.1 1056.15"/>
+ <path stroke="none" fill="#FFFFFF" d="M84.8 1078.65 Q84.8 1077.5 85.05 1076.45 85.6 1074 87.5 1072.1 90.25 1069.4 94.1 1069.4 97.9 1069.4 100.65 1072.1 102.55 1074 103.1 1076.45 L103.35 1078.65 Q103.35 1082.5 100.65 1085.1 97.9 1087.9 94.1 1087.9 90.25 1087.9 87.5 1085.1 84.8 1082.5 84.8 1078.65 M89.3 1078.8 Q89.3 1081.2 91 1082.85 92.7 1084.6 95.1 1084.6 97.5 1084.6 99.25 1082.85 100.95 1081.2 100.95 1078.8 100.95 1077.5 100.5 1076.45 100.05 1075.5 99.25 1074.7 97.5 1073 95.1 1073 92.7 1073 91 1074.7 90.2 1075.5 89.8 1076.45 89.3 1077.5 89.3 1078.8 M171.2 1078.65 Q171.2 1082.5 168.5 1085.1 165.75 1087.9 161.9 1087.9 158.1 1087.9 155.35 1085.1 152.65 1082.5 152.65 1078.65 152.65 1077.5 152.9 1076.45 153.45 1074 155.35 1072.1 158.1 1069.4 161.9 1069.4 165.75 1069.4 168.5 1072.1 170.4 1074 170.95 1076.45 L171.2 1078.65 M166.7 1078.8 Q166.7 1077.5 166.25 1076.45 165.8 1075.5 165 1074.7 163.3 1073 160.9 1073 158.5 1073 156.75 1074.7 155.95 1075.5 155.55 1076.45 155.05 1077.5 155.05 1078.8 155.05 1081.2 156.75 1082.85 158.5 1084.6 160.9 1084.6 163.3 1084.6 165 1082.85 166.7 1081.2 166.7 1078.8"/>
+ <path stroke="none" fill="#8E5A32" d="M84.8 1078.65 Q84.8 1082.5 87.5 1085.1 90.25 1087.9 94.1 1087.9 97.9 1087.9 100.65 1085.1 103.35 1082.5 103.35 1078.65 L103.1 1076.45 Q102.55 1074 100.65 1072.1 97.9 1069.4 94.1 1069.4 90.25 1069.4 87.5 1072.1 85.6 1074 85.05 1076.45 84.8 1077.5 84.8 1078.65 M79.15 1075.2 L79.15 1075.15 Q80.8 1069.15 86.1 1066.1 91.5 1063 97.5 1064.6 103.45 1066.15 106.6 1071.55 108 1073.95 108.45 1076.45 109 1079.6 108.1 1082.9 L108.1 1082.95 Q106.15 1090.15 100.6 1094 94.95 1098 89 1096.45 83 1094.85 80.1 1088.55 77.5 1082.95 78.85 1076.45 L79.15 1075.2 M171.2 1078.65 L170.95 1076.45 Q170.4 1074 168.5 1072.1 165.75 1069.4 161.9 1069.4 158.1 1069.4 155.35 1072.1 153.45 1074 152.9 1076.45 152.65 1077.5 152.65 1078.65 152.65 1082.5 155.35 1085.1 158.1 1087.9 161.9 1087.9 165.75 1087.9 168.5 1085.1 171.2 1082.5 171.2 1078.65 M176.85 1075.2 L177.15 1076.45 Q178.5 1082.95 175.9 1088.55 173 1094.85 167 1096.45 161.05 1098 155.4 1094 149.85 1090.15 147.9 1082.95 L147.9 1082.9 Q147 1079.6 147.6 1076.45 148 1073.95 149.4 1071.55 152.55 1066.15 158.5 1064.6 164.5 1063 169.9 1066.1 175.2 1069.15 176.85 1075.15 L176.85 1075.2"/>
+ <path stroke="none" fill="#5B5B5B" d="M89.3 1078.8 Q89.3 1077.5 89.8 1076.45 90.2 1075.5 91 1074.7 92.7 1073 95.1 1073 97.5 1073 99.25 1074.7 100.05 1075.5 100.5 1076.45 100.95 1077.5 100.95 1078.8 100.95 1081.2 99.25 1082.85 97.5 1084.6 95.1 1084.6 92.7 1084.6 91 1082.85 89.3 1081.2 89.3 1078.8 M166.7 1078.8 Q166.7 1081.2 165 1082.85 163.3 1084.6 160.9 1084.6 158.5 1084.6 156.75 1082.85 155.05 1081.2 155.05 1078.8 155.05 1077.5 155.55 1076.45 155.95 1075.5 156.75 1074.7 158.5 1073 160.9 1073 163.3 1073 165 1074.7 165.8 1075.5 166.25 1076.45 166.7 1077.5 166.7 1078.8"/>
+ <path stroke="none" fill="#6D4526" d="M171.1 1152 L183.35 1152 Q191.75 1152 192 1143.85 L192 1036.2 192 1032.7 Q192 1024 183.35 1024 L72.65 1024 Q64 1024 64 1032.7 L64 1036.2 64 1143.85 Q64.25 1152 72.65 1152 L84.9 1152 171.1 1152 M60 1032.7 Q60 1020 72.65 1020 L183.35 1020 Q196 1020 196 1032.7 L196 1143.85 196 1144 Q195.7 1156 183.35 1156 L72.65 1156 Q60.3 1156 60 1144 L60 1143.85 60 1032.7"/>
+ <path stroke="none" fill="#B4723F" d="M192 1036.2 Q191.75 1028 183.35 1028 L72.65 1028 Q64.25 1028 64 1036.2 L64 1032.7 Q64 1024 72.65 1024 L183.35 1024 Q192 1024 192 1032.7 L192 1036.2"/>
+ <path stroke="none" fill="#464646" d="M131.9 1112.15 L136.2 1111.4 136.25 1111.4 140.05 1110.35 140.75 1110.4 141.3 1110.9 141.3 1111.65 Q140.25 1114.5 137.95 1116.8 135.65 1119.1 132.8 1120.15 L132.85 1120.15 132.5 1120.3 129.8 1120.95 128.85 1121.05 126.7 1121 125.95 1120.9 123.5 1120.25 123.2 1120.15 123.25 1120.15 Q120.35 1119.1 118.05 1116.8 115.7 1114.5 114.75 1111.6 114.6 1111.2 114.8 1110.85 L115.3 1110.35 116.05 1110.3 119.85 1111.4 124.05 1112.1 Q128.05 1112.55 131.9 1112.15"/>
+ <path stroke="none" fill="#383838" d="M132.5 1120.3 L133.3 1121.2 Q134.25 1122.15 135.35 1122.7 136.75 1123.35 138.4 1123.35 141.4 1123.35 143.55 1121.2 L144.8 1119.55 145.3 1119.1 146 1119.15 150.7 1121.6 151.15 1122.1 151.1 1122.75 150.15 1124.35 149.6 1125.05 148.55 1126.2 147.8 1126.9 Q143.8 1130.4 138.4 1130.4 132.5 1130.4 128.3 1126.2 L128 1125.9 127.7 1126.2 Q123.45 1130.4 117.55 1130.4 112.15 1130.4 108.2 1126.95 L107.45 1126.2 106.4 1125.05 105.95 1124.45 104.9 1122.85 Q104.7 1122.5 104.85 1122.2 104.9 1121.85 105.25 1121.65 L109.85 1119.1 110.5 1119 111.05 1119.45 112.4 1121.2 Q114.55 1123.35 117.55 1123.35 119.2 1123.35 120.65 1122.7 L122.7 1121.2 123.5 1120.25 125.95 1120.9 126.7 1121 128.85 1121.05 129.8 1120.95 132.5 1120.3"/>
+ <path stroke="none" fill="#955E34" d="M150.15 1124.35 Q153.8 1127.1 157.25 1130.95 160.8 1134.85 164.15 1139.9 167.75 1145.3 171.1 1152 L84.9 1152 Q88.3 1145.35 91.9 1139.95 95.35 1134.85 99 1130.85 102.35 1127.15 105.95 1124.45 L106.4 1125.05 107.45 1126.2 108.2 1126.95 Q112.15 1130.4 117.55 1130.4 123.45 1130.4 127.7 1126.2 L128 1125.9 128.3 1126.2 Q132.5 1130.4 138.4 1130.4 143.8 1130.4 147.8 1126.9 L148.55 1126.2 149.6 1125.05 150.15 1124.35 M137.1 1143.15 Q137.6 1141.75 136.3 1139.3 135 1136.75 132.6 1134.75 127.8 1131.05 123.4 1134.75 121 1136.75 119.7 1139.3 118.4 1141.75 118.9 1143.15 L118.9 1143.2 Q119.5 1144.7 121.65 1144.25 123.15 1143.95 124.75 1142.9 L124.4 1144.9 124.4 1145.05 124.4 1146.55 124.8 1147.35 Q125.4 1147.85 126.45 1146.65 127.3 1145.7 128 1144.15 128.7 1145.7 129.5 1146.65 130.6 1147.85 131.2 1147.35 L131.6 1146.55 131.65 1145.05 131.6 1144.9 131.25 1142.9 Q132.9 1143.95 134.35 1144.25 136.5 1144.7 137.05 1143.2 L137.1 1143.15"/>
+ <path stroke="none" fill="#724828" d="M137.1 1143.15 L137.05 1143.2 Q136.5 1144.7 134.35 1144.25 132.9 1143.95 131.25 1142.9 L131.6 1144.9 131.65 1145.05 131.6 1146.55 131.2 1147.35 Q130.6 1147.85 129.5 1146.65 128.7 1145.7 128 1144.15 127.3 1145.7 126.45 1146.65 125.4 1147.85 124.8 1147.35 L124.4 1146.55 124.4 1145.05 124.4 1144.9 124.75 1142.9 Q123.15 1143.95 121.65 1144.25 119.5 1144.7 118.9 1143.2 L118.9 1143.15 Q118.4 1141.75 119.7 1139.3 121 1136.75 123.4 1134.75 127.8 1131.05 132.6 1134.75 135 1136.75 136.3 1139.3 137.6 1141.75 137.1 1143.15"/>
+ <path stroke="none" fill="#6D4526" d="M448 1036.2 L448 1032.7 Q448 1024 439.35 1024 L328.65 1024 Q320 1024 320 1032.7 L320 1036.2 320 1143.85 Q320.25 1152 328.65 1152 L335.5 1152 432.6 1152 439.35 1152 Q447.75 1152 448 1143.85 L448 1036.2 M439.35 1020 Q452 1020 452 1032.7 L452 1143.85 452 1144 Q451.7 1156 439.35 1156 L328.65 1156 Q316.3 1156 316 1144 L316 1143.85 316 1032.7 Q316 1020 328.65 1020 L439.35 1020"/>
+ <path stroke="none" fill="#B4723F" d="M320 1036.2 L320 1032.7 Q320 1024 328.65 1024 L439.35 1024 Q448 1024 448 1032.7 L448 1036.2 Q447.75 1028 439.35 1028 L328.65 1028 Q320.25 1028 320 1036.2"/>
+ <path stroke="none" fill="#EBCEB7" d="M432.6 1152 L335.5 1152 Q338.1 1137.65 349.05 1126.8 363.55 1112.4 384 1112.4 404.45 1112.4 418.9 1126.8 429.95 1137.65 432.6 1152 M423.25 1086.95 Q423.25 1082.45 420.1 1079.25 416.85 1076.1 412.4 1076.1 407.9 1076.1 404.7 1079.25 401.5 1082.45 401.5 1086.95 401.5 1091.5 404.7 1094.65 407.9 1097.85 412.4 1097.85 416.85 1097.85 420.1 1094.65 423.25 1091.5 423.25 1086.95 M438.15 1067.55 Q437.7 1069.25 435.7 1070.85 432 1073.7 434.1 1080.6 434.95 1083.6 434.95 1086.95 434.95 1096.3 428.35 1102.9 421.75 1109.55 412.4 1109.55 403.8 1109.55 397.5 1103.9 L397.6 1103.2 397.65 1102.3 397.45 1100.1 Q396.85 1095.9 393.65 1092.65 L392.1 1091.3 390 1090.05 389.8 1086.95 Q389.8 1083.7 390.6 1080.8 402.8 1065.35 438.15 1067.55 M370.5 1103.95 Q364.2 1109.55 355.6 1109.55 346.25 1109.55 339.65 1102.9 333.05 1096.3 333.05 1086.95 333.05 1083.6 333.9 1080.6 336 1073.7 332.3 1070.85 330.3 1069.25 329.85 1067.55 365.2 1065.35 377.4 1080.8 378.2 1083.7 378.2 1086.95 L378 1090.05 375.9 1091.3 374.3 1092.65 Q371.15 1095.9 370.5 1100.1 370.35 1101.15 370.35 1102.3 L370.35 1103.2 370.5 1103.95 M344.75 1086.95 Q344.75 1091.5 347.9 1094.65 351.15 1097.85 355.6 1097.85 360.1 1097.85 363.3 1094.65 366.5 1091.5 366.5 1086.95 366.5 1082.45 363.3 1079.25 360.1 1076.1 355.6 1076.1 351.15 1076.1 347.9 1079.25 344.75 1082.45 344.75 1086.95 M377.1 1131.9 Q379.95 1134.75 384 1134.75 388 1134.75 390.85 1131.9 393.7 1129.05 393.7 1125.05 393.7 1123.55 393.3 1122.2 L393.05 1121.85 392.65 1121.75 392.05 1121.75 Q391.8 1121.75 391.6 1121.9 L391.4 1122.35 Q391.25 1125.1 389.25 1127.05 387.05 1129.25 384 1129.25 380.9 1129.25 378.75 1127.05 376.75 1125.1 376.55 1122.35 L376.35 1121.9 375.9 1121.75 375.3 1121.75 374.9 1121.85 374.7 1122.2 Q374.3 1123.55 374.3 1125.05 374.3 1129.1 377.1 1131.9 M364.75 1141 Q368.5 1141 371.2 1138.3 L372.1 1137.25 372.3 1136.65 372.05 1136 371.5 1135.7 370.85 1135.8 Q369 1136.75 366.75 1136.75 363.15 1136.75 360.55 1134.1 358.45 1132.05 358 1129.3 L357.7 1128.75 357.1 1128.45 Q356.75 1128.45 356.45 1128.65 L356.05 1129.15 Q355.65 1130.45 355.65 1131.9 355.65 1135.65 358.3 1138.3 L358.35 1138.35 Q361 1141 364.75 1141 M403.25 1141 Q407 1141 409.65 1138.35 L409.7 1138.3 Q412.35 1135.65 412.35 1131.9 412.35 1130.45 411.95 1129.15 L411.55 1128.65 410.9 1128.45 Q410.55 1128.5 410.3 1128.75 L410 1129.3 Q409.55 1132.05 407.45 1134.1 404.85 1136.75 401.25 1136.75 399 1136.75 397.15 1135.8 L396.5 1135.7 395.95 1136 Q395.7 1136.25 395.7 1136.65 395.65 1136.95 395.9 1137.25 L396.8 1138.3 Q399.5 1141 403.25 1141"/>
+ <path stroke="none" fill="#FFFFFF" d="M423.25 1086.95 Q423.25 1091.5 420.1 1094.65 416.85 1097.85 412.4 1097.85 407.9 1097.85 404.7 1094.65 401.5 1091.5 401.5 1086.95 401.5 1082.45 404.7 1079.25 407.9 1076.1 412.4 1076.1 416.85 1076.1 420.1 1079.25 423.25 1082.45 423.25 1086.95 M416.95 1086.95 Q416.95 1084.4 415.1 1082.6 413.3 1080.8 410.75 1080.8 408.2 1080.8 406.3 1082.6 404.5 1084.4 404.5 1086.95 404.5 1089.55 406.3 1091.4 408.2 1093.2 410.75 1093.2 413.3 1093.2 415.1 1091.4 416.95 1089.55 416.95 1086.95 M344.75 1086.95 Q344.75 1082.45 347.9 1079.25 351.15 1076.1 355.6 1076.1 360.1 1076.1 363.3 1079.25 366.5 1082.45 366.5 1086.95 366.5 1091.5 363.3 1094.65 360.1 1097.85 355.6 1097.85 351.15 1097.85 347.9 1094.65 344.75 1091.5 344.75 1086.95 M351.05 1086.95 Q351.05 1089.55 352.9 1091.4 354.7 1093.2 357.25 1093.2 359.8 1093.2 361.7 1091.4 363.5 1089.55 363.5 1086.95 363.5 1084.4 361.7 1082.6 359.8 1080.8 357.25 1080.8 354.7 1080.8 352.9 1082.6 351.05 1084.4 351.05 1086.95"/>
+ <path stroke="none" fill="#5B5B5B" d="M351.05 1086.95 Q351.05 1084.4 352.9 1082.6 354.7 1080.8 357.25 1080.8 359.8 1080.8 361.7 1082.6 363.5 1084.4 363.5 1086.95 363.5 1089.55 361.7 1091.4 359.8 1093.2 357.25 1093.2 354.7 1093.2 352.9 1091.4 351.05 1089.55 351.05 1086.95 M416.95 1086.95 Q416.95 1089.55 415.1 1091.4 413.3 1093.2 410.75 1093.2 408.2 1093.2 406.3 1091.4 404.5 1089.55 404.5 1086.95 404.5 1084.4 406.3 1082.6 408.2 1080.8 410.75 1080.8 413.3 1080.8 415.1 1082.6 416.95 1084.4 416.95 1086.95"/>
+ <path stroke="none" fill="#A16639" d="M448 1036.2 L448 1143.85 Q447.75 1152 439.35 1152 L432.6 1152 Q429.95 1137.65 418.9 1126.8 404.45 1112.4 384 1112.4 363.55 1112.4 349.05 1126.8 338.1 1137.65 335.5 1152 L328.65 1152 Q320.25 1152 320 1143.85 L320 1036.2 Q320.25 1028 328.65 1028 L439.35 1028 Q447.75 1028 448 1036.2 M397.5 1103.9 Q403.8 1109.55 412.4 1109.55 421.75 1109.55 428.35 1102.9 434.95 1096.3 434.95 1086.95 434.95 1083.6 434.1 1080.6 432 1073.7 435.7 1070.85 437.7 1069.25 438.15 1067.55 438.35 1066.65 438.1 1065.7 437.2 1062.35 430.75 1061.6 424.3 1060.75 415.1 1062.55 401.95 1065.45 396.45 1071 392.1 1075.3 390.6 1080.8 389.8 1083.7 389.8 1086.95 L390 1090.05 Q387.25 1088.7 384 1088.7 380.75 1088.7 378 1090.05 L378.2 1086.95 Q378.2 1083.7 377.4 1080.8 375.9 1075.3 371.55 1071 366.05 1065.45 352.9 1062.55 343.7 1060.75 337.25 1061.6 330.8 1062.35 329.9 1065.7 329.65 1066.65 329.85 1067.55 330.3 1069.25 332.3 1070.85 336 1073.7 333.9 1080.6 333.05 1083.6 333.05 1086.95 333.05 1096.3 339.65 1102.9 346.25 1109.55 355.6 1109.55 364.2 1109.55 370.5 1103.95 371.1 1106.5 374.3 1108.4 378.3 1110.75 384 1110.75 389.65 1110.75 393.65 1108.4 396.9 1106.5 397.5 1103.9 M377.7 1046 Q375.15 1041.5 372 1039.1 368.95 1036.65 367.15 1037.75 365.35 1038.75 365.9 1042.65 366.45 1046.55 369 1051 L369.6 1052.05 Q370.95 1054.05 372.95 1054.9 375.2 1055.9 377 1054.85 378.8 1053.75 379.1 1051.3 379.35 1049.2 378.3 1047.05 L377.7 1046 M397.4 1053.7 Q401.3 1046.95 402.05 1041.05 402.95 1035.2 400.2 1033.65 397.45 1032.05 392.75 1035.7 388.15 1039.35 384.25 1046.1 L383.35 1047.65 Q381.75 1050.85 382.15 1054.15 382.55 1057.8 385.3 1059.4 388.05 1060.95 391.45 1059.5 394.45 1058.2 396.45 1055.2 L397.4 1053.7"/>
+ <path stroke="none" fill="#DEC2AD" d="M329.85 1067.55 Q329.65 1066.65 329.9 1065.7 330.8 1062.35 337.25 1061.6 343.7 1060.75 352.9 1062.55 366.05 1065.45 371.55 1071 375.9 1075.3 377.4 1080.8 365.2 1065.35 329.85 1067.55 M390.6 1080.8 Q392.1 1075.3 396.45 1071 401.95 1065.45 415.1 1062.55 424.3 1060.75 430.75 1061.6 437.2 1062.35 438.1 1065.7 438.35 1066.65 438.15 1067.55 402.8 1065.35 390.6 1080.8"/>
+ <path stroke="none" fill="#8E5A32" d="M397.4 1053.7 L396.45 1055.2 Q394.45 1058.2 391.45 1059.5 388.05 1060.95 385.3 1059.4 382.55 1057.8 382.15 1054.15 381.75 1050.85 383.35 1047.65 L384.25 1046.1 Q388.15 1039.35 392.75 1035.7 397.45 1032.05 400.2 1033.65 402.95 1035.2 402.05 1041.05 401.3 1046.95 397.4 1053.7 M377.7 1046 L378.3 1047.05 Q379.35 1049.2 379.1 1051.3 378.8 1053.75 377 1054.85 375.2 1055.9 372.95 1054.9 370.95 1054.05 369.6 1052.05 L369 1051 Q366.45 1046.55 365.9 1042.65 365.35 1038.75 367.15 1037.75 368.95 1036.65 372 1039.1 375.15 1041.5 377.7 1046"/>
+ <path stroke="none" fill="#FF9900" d="M378 1090.05 Q380.75 1088.7 384 1088.7 387.25 1088.7 390 1090.05 L392.1 1091.3 393.65 1092.65 Q396.85 1095.9 397.45 1100.1 L396.3 1101.65 Q395.5 1098.6 392.95 1096.2 L391.55 1095.05 391.15 1094.8 Q388 1092.75 384 1092.75 380 1092.75 376.85 1094.8 376.65 1094.95 376.5 1095.05 L375 1096.2 Q372.5 1098.6 371.7 1101.65 370.8 1100.95 370.5 1100.1 371.15 1095.9 374.3 1092.65 L375.9 1091.3 378 1090.05"/>
+ <path stroke="none" fill="#F39100" d="M371.7 1101.65 Q372.5 1098.6 375 1096.2 L376.5 1095.05 Q376.65 1094.95 376.85 1094.8 380 1092.75 384 1092.75 388 1092.75 391.15 1094.8 L391.55 1095.05 392.95 1096.2 Q395.5 1098.6 396.3 1101.65 L395.7 1102.1 393.65 1103.1 Q389.65 1104.75 384 1104.75 378.3 1104.75 374.3 1103.1 373.15 1102.65 372.35 1102.1 L371.7 1101.65"/>
+ <path stroke="none" fill="#E08600" d="M371.7 1101.65 L372.35 1102.1 Q373.15 1102.65 374.3 1103.1 378.3 1104.75 384 1104.75 389.65 1104.75 393.65 1103.1 L395.7 1102.1 396.3 1101.65 397.45 1100.1 397.65 1102.3 397.6 1103.2 397.5 1103.9 Q396.9 1106.5 393.65 1108.4 389.65 1110.75 384 1110.75 378.3 1110.75 374.3 1108.4 371.1 1106.5 370.5 1103.95 L370.35 1103.2 370.35 1102.3 Q370.35 1101.15 370.5 1100.1 370.8 1100.95 371.7 1101.65"/>
+ <path stroke="none" fill="#C6AD99" d="M377.1 1131.9 Q374.3 1129.1 374.3 1125.05 374.3 1123.55 374.7 1122.2 L374.9 1121.85 375.3 1121.75 375.9 1121.75 376.35 1121.9 376.55 1122.35 Q376.75 1125.1 378.75 1127.05 380.9 1129.25 384 1129.25 387.05 1129.25 389.25 1127.05 391.25 1125.1 391.4 1122.35 L391.6 1121.9 Q391.8 1121.75 392.05 1121.75 L392.65 1121.75 393.05 1121.85 393.3 1122.2 Q393.7 1123.55 393.7 1125.05 393.7 1129.05 390.85 1131.9 388 1134.75 384 1134.75 379.95 1134.75 377.1 1131.9 M364.75 1141 Q361 1141 358.35 1138.35 L358.3 1138.3 Q355.65 1135.65 355.65 1131.9 355.65 1130.45 356.05 1129.15 L356.45 1128.65 Q356.75 1128.45 357.1 1128.45 L357.7 1128.75 358 1129.3 Q358.45 1132.05 360.55 1134.1 363.15 1136.75 366.75 1136.75 369 1136.75 370.85 1135.8 L371.5 1135.7 372.05 1136 372.3 1136.65 372.1 1137.25 371.2 1138.3 Q368.5 1141 364.75 1141 M403.25 1141 Q399.5 1141 396.8 1138.3 L395.9 1137.25 Q395.65 1136.95 395.7 1136.65 395.7 1136.25 395.95 1136 L396.5 1135.7 397.15 1135.8 Q399 1136.75 401.25 1136.75 404.85 1136.75 407.45 1134.1 409.55 1132.05 410 1129.3 L410.3 1128.75 Q410.55 1128.5 410.9 1128.45 L411.55 1128.65 411.95 1129.15 Q412.35 1130.45 412.35 1131.9 412.35 1135.65 409.7 1138.3 L409.65 1138.35 Q407 1141 403.25 1141"/>
+ <path stroke="none" fill="#5B5B5B" d="M610.9 1041.2 Q610.9 1038.75 612.6 1037.1 614.2 1035.5 616.6 1035.5 618.8 1035.5 620.4 1036.9 L620.65 1037.1 Q621.45 1037.85 621.85 1038.8 622.35 1039.9 622.35 1041.2 622.35 1042.5 621.85 1043.55 L620.75 1045.15 620.65 1045.2 Q618.95 1046.9 616.6 1046.9 614.2 1046.9 612.6 1045.2 610.9 1043.55 610.9 1041.2 M669.15 1041.2 Q669.15 1043.55 667.45 1045.2 665.8 1046.9 663.4 1046.9 661.1 1046.9 659.35 1045.2 L659.3 1045.15 Q657.65 1043.55 657.65 1041.2 657.65 1038.75 659.35 1037.1 L659.6 1036.9 Q661.3 1035.5 663.4 1035.5 665.8 1035.5 667.45 1037.1 669.15 1038.75 669.15 1041.2"/>
+ <path stroke="none" fill="#FFFFFF" d="M669.15 1041.2 Q669.15 1038.75 667.45 1037.1 665.8 1035.5 663.4 1035.5 661.3 1035.5 659.6 1036.9 L659.35 1037.1 Q657.65 1038.75 657.65 1041.2 657.65 1043.55 659.3 1045.15 L659.35 1045.2 Q661.1 1046.9 663.4 1046.9 665.8 1046.9 667.45 1045.2 669.15 1043.55 669.15 1041.2 M606.45 1041 Q606.45 1039.05 607.2 1037.4 607.85 1035.85 609.15 1034.55 611.85 1031.95 615.6 1031.95 L616.1 1032 Q618.45 1032.05 620.4 1033.25 L620.45 1033.3 621.85 1034.35 622.1 1034.55 Q624.75 1037.25 624.75 1041 624.75 1044.8 622.1 1047.4 L621.85 1047.65 621 1048.35 Q618.6 1050.15 615.6 1050.15 611.85 1050.15 609.15 1047.4 606.45 1044.8 606.45 1041 M610.9 1041.2 Q610.9 1043.55 612.6 1045.2 614.2 1046.9 616.6 1046.9 618.95 1046.9 620.65 1045.2 L620.75 1045.15 621.85 1043.55 Q622.35 1042.5 622.35 1041.2 622.35 1039.9 621.85 1038.8 621.45 1037.85 620.65 1037.1 L620.4 1036.9 Q618.8 1035.5 616.6 1035.5 614.2 1035.5 612.6 1037.1 610.9 1038.75 610.9 1041.2 M673.55 1041 Q673.55 1044.8 670.9 1047.4 668.2 1050.15 664.4 1050.15 661.3 1050.15 659 1048.35 L658 1047.4 Q655.3 1044.8 655.3 1041 655.3 1037.25 658 1034.55 L659.55 1033.35 659.65 1033.25 Q661.55 1032.05 663.9 1032 L664.4 1031.95 Q668.2 1031.95 670.9 1034.55 672.2 1035.9 672.85 1037.45 673.55 1039.05 673.55 1041"/>
+ <path stroke="none" fill="#2ECC71" d="M673.55 1041 Q673.55 1039.05 672.85 1037.45 672.2 1035.9 670.9 1034.55 668.2 1031.95 664.4 1031.95 L663.9 1032 Q661.55 1032.05 659.65 1033.25 L659.55 1033.35 658 1034.55 Q655.3 1037.25 655.3 1041 655.3 1044.8 658 1047.4 L659 1048.35 Q661.3 1050.15 664.4 1050.15 668.2 1050.15 670.9 1047.4 673.55 1044.8 673.55 1041 M606.45 1041 Q606.45 1044.8 609.15 1047.4 611.85 1050.15 615.6 1050.15 618.6 1050.15 621 1048.35 L621.85 1047.65 622.1 1047.4 Q624.75 1044.8 624.75 1041 624.75 1037.25 622.1 1034.55 L621.85 1034.35 620.45 1033.3 620.4 1033.25 Q618.45 1032.05 616.1 1032 L615.6 1031.95 Q611.85 1031.95 609.15 1034.55 607.85 1035.85 607.2 1037.4 606.45 1039.05 606.45 1041 M625.85 1028 Q629.8 1032.65 629.8 1039 629.75 1045.95 625.1 1050.75 L624.85 1051.05 624.5 1051.4 624.25 1051.6 620.5 1054.25 621.8 1061.3 620.5 1062.55 Q619.85 1063.35 619.75 1064.45 L619.75 1064.85 619.75 1065.2 Q619.85 1065.9 620.2 1066.5 620.75 1067.35 621.55 1067.5 622.4 1067.65 623.05 1066.85 L623.15 1066.75 625.15 1072.95 Q626.45 1076.45 627.85 1079.2 626.65 1080 625.95 1080.95 L626 1080.85 Q625.05 1081.85 624.95 1083.35 L624.95 1083.45 624.95 1083.7 624.95 1083.9 624.95 1084.15 625.55 1085.8 625.6 1085.85 Q626.45 1087.2 627.7 1087.35 L627.75 1087.4 Q629.3 1087.75 630.6 1086.35 L630.7 1086.2 631.35 1085.65 631.7 1085.5 631.85 1085.45 Q635.6 1089.75 640 1089.75 644.4 1089.75 648.2 1085.4 L648.35 1085.45 648.75 1085.65 649.4 1086.25 649.45 1086.3 Q650.6 1087.75 652.25 1087.4 L652.3 1087.35 Q653.55 1087.2 654.45 1085.85 L654.45 1085.8 655.05 1084.25 655.05 1084.15 655.1 1083.7 655.05 1083.2 Q654.9 1081.85 654.15 1080.95 L654.1 1080.9 652.2 1079.2 654.85 1072.95 656.9 1066.65 657.05 1066.85 Q657.65 1067.65 658.5 1067.5 659.3 1067.35 659.85 1066.5 L660.3 1065.2 660.35 1064.9 660.3 1064.45 Q660.2 1063.35 659.6 1062.55 L658.25 1061.25 659.5 1054.25 Q657.3 1053.05 655.4 1051.15 L655.25 1051 Q650.25 1046.1 650.25 1039 650.25 1032.65 654.3 1028 L695.35 1028 Q703.75 1028 704 1036.2 L704 1098.15 702.75 1098.55 697.5 1100.7 Q692.35 1102.65 686.75 1104.2 679.15 1106.25 670.75 1107.55 L664.3 1108.4 Q663.8 1103.95 660.45 1100.6 656.55 1096.7 651.05 1096.7 645.5 1096.7 641.55 1100.6 L640 1102.45 638.4 1100.6 Q634.5 1096.7 629 1096.7 623.45 1096.7 619.5 1100.6 616.25 1103.95 615.75 1108.4 L609.25 1107.55 Q600.85 1106.2 593.3 1104.2 L592 1103.85 582.5 1100.7 577.5 1098.65 577.3 1098.55 577.3 1098.6 576 1098.15 576 1036.2 Q576.25 1028 584.65 1028 L625.85 1028"/>
+ <path stroke="none" fill="#30D776" d="M625.85 1028 L654.3 1028 Q650.25 1032.65 650.25 1039 650.25 1046.1 655.25 1051 L655.4 1051.15 Q657.3 1053.05 659.5 1054.25 L658.25 1061.25 655.1 1059.1 Q648.8 1055.7 640.05 1055.7 631.2 1055.7 625.05 1059.1 623.15 1060.15 621.8 1061.3 L620.5 1054.25 624.25 1051.6 624.5 1051.4 624.85 1051.05 625.1 1050.75 Q629.75 1045.95 629.8 1039 629.8 1032.65 625.85 1028 M623.15 1066.75 Q623.85 1065.9 624.95 1065.2 L626.5 1064.5 626.5 1064.55 Q632.1 1062.35 640.05 1062.35 648 1062.35 653.65 1064.55 L653.6 1064.5 655.15 1065.2 Q656.15 1065.85 656.9 1066.65 L654.85 1072.95 652.2 1079.2 650.65 1078.25 Q646.2 1075.8 640.05 1075.8 633.8 1075.8 629.45 1078.25 L629.4 1078.25 627.85 1079.2 Q626.45 1076.45 625.15 1072.95 L623.15 1066.75 M631.85 1085.45 L632.05 1085.4 Q635.35 1084.1 640.05 1084.1 644.75 1084.1 648.1 1085.4 L648.2 1085.4 Q644.4 1089.75 640 1089.75 635.6 1089.75 631.85 1085.45"/>
+ <path stroke="none" fill="#1B8045" d="M576 1036.2 L576 1098.15 576 1143.85 Q576.25 1152 584.65 1152 L695.35 1152 Q703.75 1152 704 1143.85 L704 1098.15 704 1036.2 704 1032.7 Q704 1024 695.35 1024 L584.65 1024 Q576 1024 576 1032.7 L576 1036.2 M572 1032.7 Q572 1020 584.65 1020 L695.35 1020 Q708 1020 708 1032.7 L708 1143.85 708 1144 Q707.7 1156 695.35 1156 L584.65 1156 Q572.3 1156 572 1144 L572 1143.85 572 1032.7"/>
+ <path stroke="none" fill="#32E07C" d="M654.3 1028 L625.85 1028 584.65 1028 Q576.25 1028 576 1036.2 L576 1032.7 Q576 1024 584.65 1024 L695.35 1024 Q704 1024 704 1032.7 L704 1036.2 Q703.75 1028 695.35 1028 L654.3 1028"/>
+ <path stroke="none" fill="#28B463" d="M621.8 1061.3 Q623.15 1060.15 625.05 1059.1 631.2 1055.7 640.05 1055.7 648.8 1055.7 655.1 1059.1 L658.25 1061.25 659.6 1062.55 Q660.2 1063.35 660.3 1064.45 L660.35 1064.9 660.3 1065.2 659.85 1066.5 Q659.3 1067.35 658.5 1067.5 657.65 1067.65 657.05 1066.85 L656.9 1066.65 Q656.15 1065.85 655.15 1065.2 L653.6 1064.5 653.65 1064.55 Q648 1062.35 640.05 1062.35 632.1 1062.35 626.5 1064.55 L626.5 1064.5 624.95 1065.2 Q623.85 1065.9 623.15 1066.75 L623.05 1066.85 Q622.4 1067.65 621.55 1067.5 620.75 1067.35 620.2 1066.5 619.85 1065.9 619.75 1065.2 L619.75 1064.85 619.75 1064.45 Q619.85 1063.35 620.5 1062.55 L621.8 1061.3 M631.85 1085.45 L631.7 1085.5 631.35 1085.65 630.7 1086.2 630.6 1086.35 Q629.3 1087.75 627.75 1087.4 L627.7 1087.35 Q626.45 1087.2 625.6 1085.85 L625.55 1085.8 624.95 1084.15 624.95 1083.9 624.95 1083.7 624.95 1083.45 624.95 1083.35 Q625.05 1081.85 626 1080.85 L625.95 1080.95 Q626.65 1080 627.85 1079.2 L629.4 1078.25 629.45 1078.25 Q633.8 1075.8 640.05 1075.8 646.2 1075.8 650.65 1078.25 L652.2 1079.2 654.1 1080.9 654.15 1080.95 Q654.9 1081.85 655.05 1083.2 L655.1 1083.7 655.05 1084.15 655.05 1084.25 654.45 1085.8 654.45 1085.85 Q653.55 1087.2 652.3 1087.35 L652.25 1087.4 Q650.6 1087.75 649.45 1086.3 L649.4 1086.25 648.75 1085.65 648.35 1085.45 648.2 1085.4 648.1 1085.4 Q644.75 1084.1 640.05 1084.1 635.35 1084.1 632.05 1085.4 L631.85 1085.45"/>
+ <path stroke="none" fill="#B19A89" d="M626.8 1112.15 L626.65 1112.05 Q624.9 1110.3 624.1 1108.4 L623.75 1107.3 623.65 1106.85 Q623.25 1105.25 623.8 1104.2 L624.35 1103.5 625.1 1102.95 Q626.25 1102.4 628.1 1102.95 L628.25 1102.95 Q630.65 1103.7 632.85 1105.85 L632.95 1106 633.85 1107.3 634.15 1109 Q634.15 1110.8 632.85 1112.05 631.6 1113.35 629.8 1113.35 628.05 1113.35 626.8 1112.15 M655.65 1103.5 L656.15 1104.2 Q656.7 1105.25 656.35 1106.85 L656.25 1107.3 655.85 1108.4 Q655.05 1110.3 653.3 1112.05 L653.2 1112.15 Q651.9 1113.35 650.2 1113.35 648.35 1113.35 647.1 1112.05 645.8 1110.8 645.8 1109 645.8 1108.05 646.15 1107.3 646.45 1106.55 647 1106 L647.15 1105.85 Q649.25 1103.75 651.65 1103 L651.85 1102.95 Q653.75 1102.4 654.9 1102.95 L655.65 1103.5"/>
+ <path stroke="none" fill="#EBCEB7" d="M655.65 1103.5 L654.9 1102.95 Q653.75 1102.4 651.85 1102.95 L651.65 1103 Q649.25 1103.75 647.15 1105.85 L647 1106 Q646.45 1106.55 646.15 1107.3 645.8 1108.05 645.8 1109 645.8 1110.8 647.1 1112.05 648.35 1113.35 650.2 1113.35 651.9 1113.35 653.2 1112.15 L653.3 1112.05 Q655.05 1110.3 655.85 1108.4 L656.25 1107.3 656.35 1106.85 Q656.7 1105.25 656.15 1104.2 L655.65 1103.5 M576 1098.15 L577.3 1098.6 577.3 1098.55 577.5 1098.65 582.5 1100.7 592 1103.85 593.3 1104.2 594.2 1108.35 Q596.2 1115.6 600.25 1121.75 L600.8 1122.3 601.5 1122.5 602.15 1122.25 Q606.35 1119.05 608.45 1110.95 L609.25 1107.55 615.75 1108.4 Q616.25 1103.95 619.5 1100.6 623.45 1096.7 629 1096.7 634.5 1096.7 638.4 1100.6 L640 1102.45 641.55 1100.6 Q645.5 1096.7 651.05 1096.7 656.55 1096.7 660.45 1100.6 663.8 1103.95 664.3 1108.4 L670.75 1107.55 671.55 1110.95 Q673.65 1119.05 677.85 1122.25 L678.5 1122.5 679.2 1122.3 679.75 1121.75 Q683.8 1115.6 685.8 1108.35 L686.75 1104.2 Q692.35 1102.65 697.5 1100.7 L702.75 1098.55 704 1098.15 704 1143.85 Q703.75 1152 695.35 1152 L584.65 1152 Q576.25 1152 576 1143.85 L576 1098.15 M626.8 1112.15 Q628.05 1113.35 629.8 1113.35 631.6 1113.35 632.85 1112.05 634.15 1110.8 634.15 1109 L633.85 1107.3 632.95 1106 632.85 1105.85 Q630.65 1103.7 628.25 1102.95 L628.1 1102.95 Q626.25 1102.4 625.1 1102.95 L624.35 1103.5 623.8 1104.2 Q623.25 1105.25 623.65 1106.85 L623.75 1107.3 624.1 1108.4 Q624.9 1110.3 626.65 1112.05 L626.8 1112.15"/>
+ <path stroke="none" fill="#F0EDE7" d="M593.3 1104.2 Q600.85 1106.2 609.25 1107.55 L608.45 1110.95 594.2 1108.35 593.3 1104.2 M670.75 1107.55 Q679.15 1106.25 686.75 1104.2 L685.8 1108.35 671.55 1110.95 670.75 1107.55"/>
+ <path stroke="none" fill="#FFFCF5" d="M608.45 1110.95 Q606.35 1119.05 602.15 1122.25 L601.5 1122.5 600.8 1122.3 600.25 1121.75 Q596.2 1115.6 594.2 1108.35 L608.45 1110.95 M671.55 1110.95 L685.8 1108.35 Q683.8 1115.6 679.75 1121.75 L679.2 1122.3 678.5 1122.5 677.85 1122.25 Q673.65 1119.05 671.55 1110.95"/>
+ <path stroke="none" fill="#6D4526" d="M960 1036.2 L960 1032.7 Q960 1024 951.35 1024 L840.65 1024 Q832 1024 832 1032.7 L832 1036.2 832 1121.2 832 1143.85 Q832.25 1152 840.65 1152 L951.35 1152 Q959.75 1152 960 1143.85 L960 1120.75 960 1036.2 M951.35 1020 Q964 1020 964 1032.7 L964 1143.85 964 1144 Q963.7 1156 951.35 1156 L840.65 1156 Q828.3 1156 828 1144 L828 1143.85 828 1032.7 Q828 1020 840.65 1020 L951.35 1020"/>
+ <path stroke="none" fill="#B4723F" d="M832 1036.2 L832 1032.7 Q832 1024 840.65 1024 L951.35 1024 Q960 1024 960 1032.7 L960 1036.2 Q959.75 1028 951.35 1028 L840.65 1028 Q832.25 1028 832 1036.2"/>
+ <path stroke="none" fill="#A16639" d="M832 1036.2 Q832.25 1028 840.65 1028 L951.35 1028 Q959.75 1028 960 1036.2 L960 1120.75 Q947.7 1129.8 933.8 1134.85 927.9 1130.1 921.25 1127.1 926.35 1124.95 930.9 1121.8 L931.7 1121.2 935.4 1118.3 936.45 1117.35 Q946.35 1108 946 1097.45 945.7 1087 938.85 1095.2 936.55 1097.9 932.65 1098.95 L932.6 1098.95 Q926.6 1100.55 921.25 1097.45 L918.9 1095.8 Q915.5 1092.9 914.3 1088.35 912.7 1082.35 915.8 1076.95 918.85 1071.65 924.85 1070 L924.9 1070 928.95 1069.3 932 1069.3 Q938.05 1069.35 933.4 1065.1 L933.4 1065.05 931.7 1063.45 930.95 1062.85 Q925.55 1058.15 919.4 1055.2 916 1053.6 912.35 1052.5 913.05 1049.1 913.2 1045.3 L913.2 1044.45 Q913.2 1039.25 908.05 1035.6 902.95 1031.95 895.7 1031.95 888.45 1031.95 883.3 1035.6 878.2 1039.25 878.2 1044.45 L878.25 1045.3 Q878.4 1049.1 879.05 1052.55 868.4 1055.75 859.8 1063.45 L858.1 1065.05 Q854.1 1069.65 860.45 1069.3 L861.4 1069.3 866.45 1070.05 866.5 1070.05 Q872.5 1071.7 875.55 1077 878.65 1082.4 877.05 1088.4 875.9 1092.9 872.5 1095.8 871.4 1096.75 870.1 1097.5 864.75 1100.6 858.75 1099 L858.7 1099 Q854.75 1097.95 852.75 1095.75 845.45 1087.8 844.85 1095.8 845.05 1108.25 855.4 1117.75 L858.1 1119.95 859.8 1121.2 Q864.65 1124.75 870.2 1127.15 863.5 1130.15 857.65 1134.85 844.05 1129.9 832 1121.2 L832 1036.2 M928.35 1075.65 Q924.5 1075.65 921.8 1078.35 919.1 1081.1 919.1 1084.95 919.1 1088.75 921.8 1091.5 924.5 1094.2 928.35 1094.2 932.2 1094.2 934.8 1091.5 937.6 1088.75 937.6 1084.95 937.6 1081.1 934.8 1078.35 932.2 1075.65 928.35 1075.65 M863 1075.7 Q859.15 1075.7 856.55 1078.4 853.75 1081.15 853.75 1085 853.75 1088.8 856.55 1091.55 859.15 1094.25 863 1094.25 866.85 1094.25 869.55 1091.55 872.25 1088.8 872.25 1085 872.25 1081.15 869.55 1078.4 866.85 1075.7 863 1075.7"/>
+ <path stroke="none" fill="#AA6C3C" d="M879.05 1052.55 Q878.4 1049.1 878.25 1045.3 L878.2 1044.45 Q878.2 1039.25 883.3 1035.6 888.45 1031.95 895.7 1031.95 902.95 1031.95 908.05 1035.6 913.2 1039.25 913.2 1044.45 L913.2 1045.3 Q913.05 1049.1 912.35 1052.5 904.55 1050.15 895.7 1050.15 L894.1 1050.2 Q886.15 1050.4 879.05 1052.55"/>
+ <path stroke="none" fill="#EBCEB7" d="M879.05 1052.55 Q886.15 1050.4 894.1 1050.2 L895.7 1050.15 Q904.55 1050.15 912.35 1052.5 916 1053.6 919.4 1055.2 925.55 1058.15 930.95 1062.85 L931.7 1063.45 933.4 1065.05 933.4 1065.1 Q938.05 1069.35 932 1069.3 L928.95 1069.3 924.9 1070 924.85 1070 Q918.85 1071.65 915.8 1076.95 912.7 1082.35 914.3 1088.35 915.5 1092.9 918.9 1095.8 L921.25 1097.45 Q926.6 1100.55 932.6 1098.95 L932.65 1098.95 Q936.55 1097.9 938.85 1095.2 945.7 1087 946 1097.45 946.35 1108 936.45 1117.35 L935.4 1118.3 931.7 1121.2 930.9 1121.8 Q926.35 1124.95 921.25 1127.1 L919.4 1127.85 Q908.7 1131.95 895.7 1131.95 L894.1 1131.95 Q882.3 1131.7 872.45 1128.05 L870.2 1127.15 Q864.65 1124.75 859.8 1121.2 L858.1 1119.95 855.4 1117.75 Q845.05 1108.25 844.85 1095.8 845.45 1087.8 852.75 1095.75 854.75 1097.95 858.7 1099 L858.75 1099 Q864.75 1100.6 870.1 1097.5 871.4 1096.75 872.5 1095.8 875.9 1092.9 877.05 1088.4 878.65 1082.4 875.55 1077 872.5 1071.7 866.5 1070.05 L866.45 1070.05 861.4 1069.3 860.45 1069.3 Q854.1 1069.65 858.1 1065.05 L859.8 1063.45 Q868.4 1055.75 879.05 1052.55 M908.55 1095.1 L908.75 1092.75 908.75 1091.85 Q908.4 1089.45 904.95 1087.75 901.1 1085.9 895.7 1085.9 890.3 1085.9 886.45 1087.75 882.95 1089.45 882.65 1091.85 L882.65 1092.75 882.85 1095.1 883 1095.8 Q883.75 1099.3 886.45 1102 888.6 1104.15 891.25 1105.1 L890.4 1106.1 888.35 1107.6 Q886.9 1108.25 885.25 1108.25 882.25 1108.25 880.1 1106.1 L878.75 1104.35 Q878.55 1104 878.2 1103.9 L877.55 1104 872.95 1106.55 Q872.6 1106.75 872.55 1107.1 872.4 1107.4 872.6 1107.75 L874.1 1109.95 875.15 1111.1 Q879.3 1115.3 885.25 1115.3 891.15 1115.3 895.4 1111.1 L895.7 1110.8 896 1111.1 Q900.2 1115.3 906.1 1115.3 912 1115.3 916.25 1111.1 L917.3 1109.95 918.8 1107.65 918.85 1107 918.4 1106.5 913.7 1104.05 913 1104 912.5 1104.45 911.25 1106.1 Q909.1 1108.25 906.1 1108.25 904.45 1108.25 903.05 1107.6 901.95 1107.05 901 1106.1 L900.15 1105.1 Q902.8 1104.15 904.95 1102 907.65 1099.3 908.45 1095.8 L908.55 1095.1"/>
+ <path stroke="none" fill="#545454" d="M908.55 1095.1 Q907.85 1093.2 904.95 1091.75 901.1 1089.9 895.7 1089.9 890.3 1089.9 886.45 1091.75 883.55 1093.15 882.85 1095.1 L882.65 1092.75 882.65 1091.85 Q882.95 1089.45 886.45 1087.75 890.3 1085.9 895.7 1085.9 901.1 1085.9 904.95 1087.75 908.4 1089.45 908.75 1091.85 L908.75 1092.75 908.55 1095.1"/>
+ <path stroke="none" fill="#FFFFFF" d="M928.35 1075.65 Q932.2 1075.65 934.8 1078.35 937.6 1081.1 937.6 1084.95 937.6 1088.75 934.8 1091.5 932.2 1094.2 928.35 1094.2 924.5 1094.2 921.8 1091.5 919.1 1088.75 919.1 1084.95 919.1 1081.1 921.8 1078.35 924.5 1075.65 928.35 1075.65 M928.5 1080.15 Q926.05 1080.15 924.4 1081.85 922.7 1083.55 922.7 1085.95 922.7 1088.35 924.4 1090.1 926.05 1091.8 928.5 1091.8 930.9 1091.8 932.55 1090.1 934.3 1088.35 934.3 1085.95 934.3 1083.55 932.55 1081.85 930.9 1080.15 928.5 1080.15 M862.85 1080.2 Q860.45 1080.2 858.8 1081.9 857.05 1083.6 857.05 1086 857.05 1088.4 858.8 1090.15 860.45 1091.85 862.85 1091.85 865.3 1091.85 866.95 1090.15 868.65 1088.4 868.65 1086 868.65 1083.6 866.95 1081.9 865.3 1080.2 862.85 1080.2 M863 1075.7 Q866.85 1075.7 869.55 1078.4 872.25 1081.15 872.25 1085 872.25 1088.8 869.55 1091.55 866.85 1094.25 863 1094.25 859.15 1094.25 856.55 1091.55 853.75 1088.8 853.75 1085 853.75 1081.15 856.55 1078.4 859.15 1075.7 863 1075.7"/>
+ <path stroke="none" fill="#5B5B5B" d="M928.5 1080.15 Q930.9 1080.15 932.55 1081.85 934.3 1083.55 934.3 1085.95 934.3 1088.35 932.55 1090.1 930.9 1091.8 928.5 1091.8 926.05 1091.8 924.4 1090.1 922.7 1088.35 922.7 1085.95 922.7 1083.55 924.4 1081.85 926.05 1080.15 928.5 1080.15 M862.85 1080.2 Q865.3 1080.2 866.95 1081.9 868.65 1083.6 868.65 1086 868.65 1088.4 866.95 1090.15 865.3 1091.85 862.85 1091.85 860.45 1091.85 858.8 1090.15 857.05 1088.4 857.05 1086 857.05 1083.6 858.8 1081.9 860.45 1080.2 862.85 1080.2"/>
+ <path stroke="none" fill="#464646" d="M908.55 1095.1 L908.45 1095.8 Q907.65 1099.3 904.95 1102 902.8 1104.15 900.15 1105.1 895.9 1106.85 891.25 1105.1 888.6 1104.15 886.45 1102 883.75 1099.3 883 1095.8 L882.85 1095.1 Q883.55 1093.15 886.45 1091.75 890.3 1089.9 895.7 1089.9 901.1 1089.9 904.95 1091.75 907.85 1093.2 908.55 1095.1"/>
+ <path stroke="none" fill="#383838" d="M900.15 1105.1 L901 1106.1 Q901.95 1107.05 903.05 1107.6 904.45 1108.25 906.1 1108.25 909.1 1108.25 911.25 1106.1 L912.5 1104.45 913 1104 913.7 1104.05 918.4 1106.5 918.85 1107 918.8 1107.65 917.3 1109.95 916.25 1111.1 Q912 1115.3 906.1 1115.3 900.2 1115.3 896 1111.1 L895.7 1110.8 895.4 1111.1 Q891.15 1115.3 885.25 1115.3 879.3 1115.3 875.15 1111.1 L874.1 1109.95 872.6 1107.75 Q872.4 1107.4 872.55 1107.1 872.6 1106.75 872.95 1106.55 L877.55 1104 878.2 1103.9 Q878.55 1104 878.75 1104.35 L880.1 1106.1 Q882.25 1108.25 885.25 1108.25 886.9 1108.25 888.35 1107.6 L890.4 1106.1 891.25 1105.1 Q895.9 1106.85 900.15 1105.1"/>
+ <path stroke="none" fill="#955E34" d="M960 1120.75 L960 1143.85 Q959.75 1152 951.35 1152 L840.65 1152 Q832.25 1152 832 1143.85 L832 1121.2 Q844.05 1129.9 857.65 1134.85 863.5 1130.15 870.2 1127.15 L872.45 1128.05 Q882.3 1131.7 894.1 1131.95 L895.7 1131.95 Q908.7 1131.95 919.4 1127.85 L921.25 1127.1 Q927.9 1130.1 933.8 1134.85 947.7 1129.8 960 1120.75"/>
+ <path stroke="none" fill="#747070" d="M1216 1036.2 L1216 1032.7 Q1216 1024 1207.35 1024 L1096.65 1024 Q1088 1024 1088 1032.7 L1088 1036.2 1088 1106.8 1088 1143.85 Q1088.25 1152 1096.65 1152 L1207.35 1152 Q1215.75 1152 1216 1143.85 L1216 1106.75 1216 1036.2 M1084 1032.7 Q1084 1020 1096.65 1020 L1207.35 1020 Q1220 1020 1220 1032.7 L1220 1143.85 1220 1144 Q1219.7 1156 1207.35 1156 L1096.65 1156 Q1084.3 1156 1084 1144 L1084 1143.85 1084 1032.7"/>
+ <path stroke="none" fill="#B1A9A9" d="M1088 1036.2 L1088 1032.7 Q1088 1024 1096.65 1024 L1207.35 1024 Q1216 1024 1216 1032.7 L1216 1036.2 Q1215.75 1028 1207.35 1028 L1096.65 1028 Q1088.25 1028 1088 1036.2"/>
+ <path stroke="none" fill="#FFFFFF" d="M1105.5 1076.95 Q1105.5 1071.75 1109.15 1068.1 1112.8 1064.45 1118 1064.45 1123.1 1064.45 1126.8 1068.1 1130.45 1071.75 1130.45 1076.95 1130.45 1082.1 1126.8 1085.7 1123.1 1089.4 1118 1089.4 1112.8 1089.4 1109.15 1085.7 1105.5 1082.1 1105.5 1076.95 M1110.2 1077 L1110.2 1077.3 Q1110.3 1079.65 1112.75 1081.25 1115.25 1083 1118.9 1083 1122.45 1083 1125 1081.25 1127.45 1079.65 1127.55 1077.3 L1127.55 1077 Q1127.45 1074.65 1125 1072.95 1122.45 1071.25 1118.9 1071.25 1115.25 1071.25 1112.75 1072.95 1110.3 1074.65 1110.2 1077 M1193.75 1077 Q1193.65 1074.65 1191.25 1072.95 1188.75 1071.25 1185.1 1071.25 1181.55 1071.25 1178.95 1072.95 1176.55 1074.65 1176.45 1077 L1176.45 1077.3 Q1176.55 1079.65 1178.95 1081.25 1181.55 1083 1185.1 1083 1188.75 1083 1191.25 1081.25 1193.65 1079.65 1193.75 1077.3 L1193.75 1077 M1198.5 1076.95 Q1198.5 1082.1 1194.85 1085.7 1191.2 1089.4 1186 1089.4 1180.9 1089.4 1177.2 1085.7 1173.55 1082.1 1173.55 1076.95 1173.55 1071.75 1177.2 1068.1 1180.9 1064.45 1186 1064.45 1191.2 1064.45 1194.85 1068.1 1198.5 1071.75 1198.5 1076.95"/>
+ <path stroke="none" fill="#D2D0D0" d="M1198.5 1076.95 Q1198.5 1071.75 1194.85 1068.1 1191.2 1064.45 1186 1064.45 1180.9 1064.45 1177.2 1068.1 1173.55 1071.75 1173.55 1076.95 1173.55 1082.1 1177.2 1085.7 1180.9 1089.4 1186 1089.4 1191.2 1089.4 1194.85 1085.7 1198.5 1082.1 1198.5 1076.95 M1216 1106.75 L1216 1143.85 Q1215.75 1152 1207.35 1152 L1096.65 1152 Q1088.25 1152 1088 1143.85 L1088 1106.8 1091.6 1110.6 1098 1116.5 1100.15 1118.2 Q1101.9 1105.95 1115.35 1101.4 1102.35 1098.35 1096.5 1085.55 1090.65 1072.65 1100.6 1056.8 1110.6 1040.95 1126.2 1048.85 1141.2 1056.4 1142.75 1082.6 1139.25 1084.3 1138.95 1086.7 L1138.95 1087.6 1139.15 1089.95 Q1139.8 1093.9 1142.75 1096.85 1144.9 1099 1147.55 1099.95 L1146.7 1100.95 Q1145.75 1101.9 1144.65 1102.45 1143.2 1103.1 1141.55 1103.1 1138.55 1103.1 1136.4 1100.95 L1135.05 1099.2 Q1134.85 1098.85 1134.5 1098.75 L1133.85 1098.85 1129.25 1101.4 Q1128.9 1101.6 1128.85 1101.95 1128.7 1102.25 1128.9 1102.6 L1130.4 1104.8 1131.45 1105.95 Q1135.6 1110.15 1141.55 1110.15 1147.45 1110.15 1151.7 1105.95 L1152 1105.65 1152.3 1105.95 Q1156.5 1110.15 1162.4 1110.15 1168.3 1110.15 1172.55 1105.95 L1173.6 1104.8 1175.1 1102.5 1175.15 1101.85 1174.7 1101.35 1170 1098.9 1169.3 1098.85 1168.8 1099.3 1167.55 1100.95 Q1165.4 1103.1 1162.4 1103.1 1160.75 1103.1 1159.35 1102.45 1158.25 1101.9 1157.3 1100.95 L1156.45 1099.95 Q1159.1 1099 1161.25 1096.85 1164.2 1093.9 1164.85 1089.95 L1165.05 1087.6 1165.05 1086.7 Q1164.7 1084.3 1161.25 1082.6 1162.8 1056.4 1177.8 1048.85 1193.4 1040.95 1203.4 1056.8 1213.35 1072.65 1207.5 1085.55 1201.65 1098.35 1188.65 1101.4 1202.05 1105.9 1203.9 1118.1 L1206.1 1116.35 1212.3 1110.6 1216 1106.75 M1105.5 1076.95 Q1105.5 1082.1 1109.15 1085.7 1112.8 1089.4 1118 1089.4 1123.1 1089.4 1126.8 1085.7 1130.45 1082.1 1130.45 1076.95 1130.45 1071.75 1126.8 1068.1 1123.1 1064.45 1118 1064.45 1112.8 1064.45 1109.15 1068.1 1105.5 1071.75 1105.5 1076.95"/>
+ <path stroke="none" fill="#5B5B5B" d="M1110.2 1077 Q1110.3 1074.65 1112.75 1072.95 1115.25 1071.25 1118.9 1071.25 1122.45 1071.25 1125 1072.95 1127.45 1074.65 1127.55 1077 L1127.55 1077.3 Q1127.45 1079.65 1125 1081.25 1122.45 1083 1118.9 1083 1115.25 1083 1112.75 1081.25 1110.3 1079.65 1110.2 1077.3 L1110.2 1077 M1193.75 1077 L1193.75 1077.3 Q1193.65 1079.65 1191.25 1081.25 1188.75 1083 1185.1 1083 1181.55 1083 1178.95 1081.25 1176.55 1079.65 1176.45 1077.3 L1176.45 1077 Q1176.55 1074.65 1178.95 1072.95 1181.55 1071.25 1185.1 1071.25 1188.75 1071.25 1191.25 1072.95 1193.65 1074.65 1193.75 1077"/>
+ <path stroke="none" fill="#9F9898" d="M1216 1036.2 L1216 1106.75 1212.3 1110.6 1206.1 1116.35 1203.9 1118.1 Q1202.05 1105.9 1188.65 1101.4 1201.65 1098.35 1207.5 1085.55 1213.35 1072.65 1203.4 1056.8 1193.4 1040.95 1177.8 1048.85 1162.8 1056.4 1161.25 1082.6 1157.4 1080.75 1152 1080.75 1146.6 1080.75 1142.75 1082.6 1141.2 1056.4 1126.2 1048.85 1110.6 1040.95 1100.6 1056.8 1090.65 1072.65 1096.5 1085.55 1102.35 1098.35 1115.35 1101.4 1101.9 1105.95 1100.15 1118.2 L1098 1116.5 1091.6 1110.6 1088 1106.8 1088 1036.2 Q1088.25 1028 1096.65 1028 L1207.35 1028 Q1215.75 1028 1216 1036.2"/>
+ <path stroke="none" fill="#383838" d="M1156.45 1099.95 L1157.3 1100.95 Q1158.25 1101.9 1159.35 1102.45 1160.75 1103.1 1162.4 1103.1 1165.4 1103.1 1167.55 1100.95 L1168.8 1099.3 1169.3 1098.85 1170 1098.9 1174.7 1101.35 1175.15 1101.85 1175.1 1102.5 1173.6 1104.8 1172.55 1105.95 Q1168.3 1110.15 1162.4 1110.15 1156.5 1110.15 1152.3 1105.95 L1152 1105.65 1151.7 1105.95 Q1147.45 1110.15 1141.55 1110.15 1135.6 1110.15 1131.45 1105.95 L1130.4 1104.8 1128.9 1102.6 Q1128.7 1102.25 1128.85 1101.95 1128.9 1101.6 1129.25 1101.4 L1133.85 1098.85 1134.5 1098.75 Q1134.85 1098.85 1135.05 1099.2 L1136.4 1100.95 Q1138.55 1103.1 1141.55 1103.1 1143.2 1103.1 1144.65 1102.45 1145.75 1101.9 1146.7 1100.95 L1147.55 1099.95 Q1152.2 1101.7 1156.45 1099.95"/>
+ <path stroke="none" fill="#545454" d="M1139.15 1089.95 L1138.95 1087.6 1138.95 1086.7 Q1139.25 1084.3 1142.75 1082.6 1146.6 1080.75 1152 1080.75 1157.4 1080.75 1161.25 1082.6 1164.7 1084.3 1165.05 1086.7 L1165.05 1087.6 1164.85 1089.95 Q1164.15 1088.05 1161.25 1086.6 1158.5 1085.3 1154.95 1084.9 L1152 1084.75 1149.05 1084.9 Q1145.5 1085.3 1142.75 1086.6 1139.85 1088 1139.15 1089.95"/>
+ <path stroke="none" fill="#464646" d="M1139.15 1089.95 Q1139.85 1088 1142.75 1086.6 1145.5 1085.3 1149.05 1084.9 L1152 1084.75 1154.95 1084.9 Q1158.5 1085.3 1161.25 1086.6 1164.15 1088.05 1164.85 1089.95 1164.2 1093.9 1161.25 1096.85 1159.1 1099 1156.45 1099.95 1152.2 1101.7 1147.55 1099.95 1144.9 1099 1142.75 1096.85 1139.8 1093.9 1139.15 1089.95"/>
+ <path stroke="none" fill="#2C2B2B" d="M1216 844.2 L1216 840.7 Q1216 832 1207.35 832 L1167.5 832 1136.5 832 1096.65 832 Q1088 832 1088 840.7 L1088 844.2 1088 940.45 1088 951.85 Q1088.25 960 1096.65 960 L1207.35 960 Q1215.75 960 1216 951.85 L1216 940.45 1216 844.2 M1207.35 828 Q1220 828 1220 840.7 L1220 951.85 1220 952 Q1219.7 964 1207.35 964 L1096.65 964 Q1084.3 964 1084 952 L1084 951.85 1084 840.7 Q1084 828 1096.65 828 L1207.35 828"/>
+ <path stroke="none" fill="#4F4E4E" d="M1167.5 832 L1207.35 832 Q1216 832 1216 840.7 L1216 844.2 Q1215.75 836 1207.35 836 L1167.5 836 1167.5 832 M1088 844.2 L1088 840.7 Q1088 832 1096.65 832 L1136.5 832 1136.5 836 1096.65 836 Q1088.25 836 1088 844.2"/>
+ <path stroke="none" fill="#F0F0F0" d="M1216 940.45 L1216 951.85 Q1215.75 960 1207.35 960 L1096.65 960 Q1088.25 960 1088 951.85 L1088 940.45 1114.55 921.85 1114.5 923.05 1114.5 924.05 1114.55 925.95 Q1115.05 933.95 1119.7 940.45 L1122.6 943.95 1125.45 946.65 1129.9 949.95 Q1139.45 956.05 1152 956.05 1164.5 956.05 1174.1 949.95 L1178.5 946.65 1181.4 943.95 1184.3 940.45 Q1188.95 933.95 1189.45 925.95 L1189.5 924.05 1189.5 923.05 1189.45 921.85 1216 940.45 M1136.5 836 L1167.5 836 Q1164.3 851.35 1163.35 867 1162.6 879.15 1163.25 891.5 L1163.45 893.5 Q1158.05 892.05 1152 892.05 1145.95 892.05 1140.55 893.5 L1140.75 891.5 Q1141.4 879.15 1140.7 867 1139.7 851.4 1136.5 836"/>
+ <path stroke="none" fill="#FFFFFF" d="M1136.5 836 L1136.5 832 1167.5 832 1167.5 836 1136.5 836 M1189.2 870.25 Q1189.2 867.35 1187.2 865.3 1185.2 863.3 1182.25 863.3 1179.45 863.3 1177.35 865.3 1175.35 867.35 1175.35 870.25 1175.35 873.1 1177.35 875.1 1179.45 877.1 1182.25 877.1 1185.2 877.1 1187.2 875.1 1189.2 873.1 1189.2 870.25 M1193 870.1 Q1193 874.2 1190.05 877.1 1187.15 880.05 1183 880.05 1178.9 880.05 1175.95 877.1 1173.05 874.2 1173.05 870.1 1173.05 865.9 1175.95 863 1178.9 860.1 1183 860.1 1187.15 860.1 1190.05 863 1193 865.9 1193 870.1 M1114.75 870.25 Q1114.75 873.1 1116.8 875.1 1118.8 877.1 1121.7 877.1 1124.55 877.1 1126.6 875.1 1128.65 873.1 1128.65 870.25 1128.65 867.35 1126.6 865.3 1124.55 863.3 1121.7 863.3 1118.8 863.3 1116.8 865.3 1114.75 867.35 1114.75 870.25 M1111 870.1 Q1111 865.9 1113.9 863 1116.85 860.1 1121 860.1 1125.05 860.1 1128.05 863 1130.95 865.9 1130.95 870.1 1130.95 874.2 1128.05 877.1 1125.05 880.05 1121 880.05 1116.85 880.05 1113.9 877.1 1111 874.2 1111 870.1"/>
+ <path stroke="none" fill="#5B5B5B" d="M1189.2 870.25 Q1189.2 873.1 1187.2 875.1 1185.2 877.1 1182.25 877.1 1179.45 877.1 1177.35 875.1 1175.35 873.1 1175.35 870.25 1175.35 867.35 1177.35 865.3 1179.45 863.3 1182.25 863.3 1185.2 863.3 1187.2 865.3 1189.2 867.35 1189.2 870.25 M1114.75 870.25 Q1114.75 867.35 1116.8 865.3 1118.8 863.3 1121.7 863.3 1124.55 863.3 1126.6 865.3 1128.65 867.35 1128.65 870.25 1128.65 873.1 1126.6 875.1 1124.55 877.1 1121.7 877.1 1118.8 877.1 1116.8 875.1 1114.75 873.1 1114.75 870.25"/>
+ <path stroke="none" fill="#414040" d="M1216 844.2 L1216 940.45 1189.45 921.85 Q1188.55 910 1178.5 901.4 1171.8 895.7 1163.45 893.5 L1163.25 891.5 Q1162.6 879.15 1163.35 867 1164.3 851.35 1167.5 836 L1207.35 836 Q1215.75 836 1216 844.2 M1088 940.45 L1088 844.2 Q1088.25 836 1096.65 836 L1136.5 836 Q1139.7 851.4 1140.7 867 1141.4 879.15 1140.75 891.5 L1140.55 893.5 Q1132.15 895.7 1125.45 901.4 1115.4 910 1114.55 921.85 L1088 940.45 M1193 870.1 Q1193 865.9 1190.05 863 1187.15 860.1 1183 860.1 1178.9 860.1 1175.95 863 1173.05 865.9 1173.05 870.1 1173.05 874.2 1175.95 877.1 1178.9 880.05 1183 880.05 1187.15 880.05 1190.05 877.1 1193 874.2 1193 870.1 M1111 870.1 Q1111 874.2 1113.9 877.1 1116.85 880.05 1121 880.05 1125.05 880.05 1128.05 877.1 1130.95 874.2 1130.95 870.1 1130.95 865.9 1128.05 863 1125.05 860.1 1121 860.1 1116.85 860.1 1113.9 863 1111 865.9 1111 870.1"/>
+ <path stroke="none" fill="#FFC4FF" d="M1140.55 893.5 Q1145.95 892.05 1152 892.05 1158.05 892.05 1163.45 893.5 1171.8 895.7 1178.5 901.4 1188.55 910 1189.45 921.85 L1189.5 923.05 1189.5 924.05 1189.45 925.95 Q1189.3 923.65 1188.8 921.55 1186.65 912.4 1178.5 905.4 1172.2 900.05 1164.45 897.75 1158.65 896.05 1152 896.05 1145.35 896.05 1139.6 897.75 1131.75 900.05 1125.45 905.4 1117.25 912.4 1115.2 921.55 1114.7 923.7 1114.55 925.95 L1114.5 924.05 1114.5 923.05 1114.55 921.85 Q1115.4 910 1125.45 901.4 1132.15 895.7 1140.55 893.5"/>
+ <path stroke="none" fill="#FFAAFF" d="M1189.45 925.95 Q1188.95 933.95 1184.3 940.45 L1181.4 943.95 1178.5 946.65 1174.1 949.95 Q1164.25 947.95 1152 947.95 1139.7 947.95 1129.9 949.95 L1125.45 946.65 1122.6 943.95 1119.7 940.45 Q1115.05 933.95 1114.55 925.95 1114.7 923.7 1115.2 921.55 1117.25 912.4 1125.45 905.4 1131.75 900.05 1139.6 897.75 1145.35 896.05 1152 896.05 1158.65 896.05 1164.45 897.75 1172.2 900.05 1178.5 905.4 1186.65 912.4 1188.8 921.55 1189.3 923.65 1189.45 925.95 M1170.5 906.2 L1169.65 905.6 1168.3 905.25 1166.05 905.55 1165.8 905.65 Q1162.95 906.5 1160.45 909 L1160.3 909.15 Q1159.65 909.85 1159.3 910.7 1158.9 911.6 1158.9 912.7 1158.9 914.85 1160.4 916.35 1161.9 917.85 1164.05 917.85 1166.1 917.85 1167.6 916.45 L1167.75 916.3 Q1169.8 914.25 1170.75 912 L1171.2 910.7 1171.35 910.2 1171.5 909.1 Q1171.55 907.9 1171.1 907.05 L1170.5 906.2 M1136.4 916.45 Q1137.9 917.85 1139.95 917.85 1142.1 917.85 1143.6 916.35 1145.1 914.85 1145.1 912.7 1145.1 911.6 1144.75 910.7 L1143.7 909.15 1143.55 909 Q1141 906.45 1138.15 905.6 L1137.95 905.55 1135.7 905.25 1134.4 905.6 Q1133.9 905.8 1133.5 906.2 1133.15 906.55 1132.9 907.05 1132.45 907.9 1132.55 909.1 L1132.7 910.2 1132.8 910.7 Q1132.95 911.35 1133.25 912 1134.2 914.25 1136.25 916.3 L1136.4 916.45"/>
+ <path stroke="none" fill="#A66EA6" d="M1136.4 916.45 L1136.25 916.3 Q1134.2 914.25 1133.25 912 1132.95 911.35 1132.8 910.7 L1132.7 910.2 1132.55 909.1 Q1132.45 907.9 1132.9 907.05 1133.15 906.55 1133.5 906.2 1133.9 905.8 1134.4 905.6 L1135.7 905.25 1137.95 905.55 1138.15 905.6 Q1141 906.45 1143.55 909 L1143.7 909.15 1144.75 910.7 Q1145.1 911.6 1145.1 912.7 1145.1 914.85 1143.6 916.35 1142.1 917.85 1139.95 917.85 1137.9 917.85 1136.4 916.45 M1170.5 906.2 L1171.1 907.05 Q1171.55 907.9 1171.5 909.1 L1171.35 910.2 1171.2 910.7 1170.75 912 Q1169.8 914.25 1167.75 916.3 L1167.6 916.45 Q1166.1 917.85 1164.05 917.85 1161.9 917.85 1160.4 916.35 1158.9 914.85 1158.9 912.7 1158.9 911.6 1159.3 910.7 1159.65 909.85 1160.3 909.15 L1160.45 909 Q1162.95 906.5 1165.8 905.65 L1166.05 905.55 1168.3 905.25 1169.65 905.6 1170.5 906.2"/>
+ <path stroke="none" fill="#F0A0F0" d="M1174.1 949.95 Q1164.5 956.05 1152 956.05 1139.45 956.05 1129.9 949.95 1139.7 947.95 1152 947.95 1164.25 947.95 1174.1 949.95"/>
+ <path stroke="none" fill="#1B8045" d="M960 844.2 L960 840.7 Q960 832 951.35 832 L840.65 832 Q832 832 832 840.7 L832 844.2 832 946.05 832 951.85 Q832.25 960 840.65 960 L951.35 960 Q959.75 960 960 951.85 L960 945.8 960 844.2 M951.35 828 Q964 828 964 840.7 L964 951.85 964 952 Q963.7 964 951.35 964 L840.65 964 Q828.3 964 828 952 L828 951.85 828 840.7 Q828 828 840.65 828 L951.35 828"/>
+ <path stroke="none" fill="#31DE7A" d="M832 844.2 L832 840.7 Q832 832 840.65 832 L951.35 832 Q960 832 960 840.7 L960 844.2 Q959.75 836 951.35 836 L928 836 864 836 840.65 836 Q832.25 836 832 844.2"/>
+ <path stroke="none" fill="#2FD274" d="M864 836 L928 836 Q925.85 851 919.4 862.75 909.7 880.55 896 880.55 882.3 880.55 872.6 862.75 866.2 851 864 836 M891.15 854 L891.6 853.2 Q892.4 851.55 892.25 849.9 892 848 890.6 847.15 L887.45 847.1 Q885.9 847.75 884.85 849.3 L884.4 850.15 Q882.4 853.6 882 856.6 881.55 859.65 882.95 860.4 884.35 861.25 886.7 859.35 889.15 857.5 891.15 854 M906.4 848.05 L905.7 846.9 Q904.15 844.55 901.8 843.55 899.15 842.4 897.05 843.6 894.9 844.85 894.6 847.7 894.3 850.25 895.5 852.75 L896.2 853.95 Q899.25 859.15 902.8 862 906.45 864.85 908.6 863.6 910.7 862.4 910 857.85 909.45 853.3 906.4 848.05"/>
+ <path stroke="none" fill="#29BB67" d="M906.4 848.05 Q909.45 853.3 910 857.85 910.7 862.4 908.6 863.6 906.45 864.85 902.8 862 899.25 859.15 896.2 853.95 L895.5 852.75 Q894.3 850.25 894.6 847.7 894.9 844.85 897.05 843.6 899.15 842.4 901.8 843.55 904.15 844.55 905.7 846.9 L906.4 848.05 M891.15 854 Q889.15 857.5 886.7 859.35 884.35 861.25 882.95 860.4 881.55 859.65 882 856.6 882.4 853.6 884.4 850.15 L884.85 849.3 Q885.9 847.75 887.45 847.1 L890.6 847.15 Q892 848 892.25 849.9 892.4 851.55 891.6 853.2 L891.15 854"/>
+ <path stroke="none" fill="#2ECC71" d="M960 844.2 L960 945.8 Q946.85 951.5 938.45 943.85 L937.9 943.35 935.5 940.15 Q926.15 928.25 915.4 922.5 L920.95 921.3 Q930.85 918.8 931.35 915.3 L931.35 914.95 931.35 914.8 Q931.1 911.15 920.95 908.55 L916.05 907.5 915.95 907.05 Q914.7 901.3 910.6 896.8 L908.25 894.55 Q902.95 890.2 896.05 890.2 889.1 890.2 883.85 894.55 882.6 895.5 881.4 896.8 877.35 901.3 876.05 907.05 L875.95 907.5 870.95 908.55 Q860.95 911.1 860.65 914.75 L860.65 914.95 860.7 915.3 Q861.15 918.8 870.95 921.3 L873.45 921.9 Q862.25 927.5 852.6 939.6 L851.1 941.55 849.75 943.35 Q843.55 951.35 832 946.05 L832 844.2 Q832.25 836 840.65 836 L864 836 Q866.2 851 872.6 862.75 882.3 880.55 896 880.55 909.7 880.55 919.4 862.75 925.85 851 928 836 L951.35 836 Q959.75 836 960 844.2 M935.6 889.75 Q935.6 884.7 932.1 881.15 928.5 877.65 923.4 877.65 918.4 877.65 914.85 881.15 911.25 884.7 911.25 889.75 911.25 894.8 914.85 898.25 918.4 901.9 923.4 901.9 928.5 901.9 932.1 898.25 935.6 894.8 935.6 889.75 M856.4 889.75 Q856.4 894.8 860 898.25 863.6 901.9 868.6 901.9 873.35 901.9 876.95 898.6 L877.3 898.25 Q880.8 894.8 880.8 889.75 880.8 884.7 877.3 881.15 L876.95 880.85 Q873.35 877.65 868.6 877.65 863.6 877.65 860 881.15 856.4 884.7 856.4 889.75"/>
+ <path stroke="none" fill="#FFFFFF" d="M856.4 889.75 Q856.4 884.7 860 881.15 863.6 877.65 868.6 877.65 873.35 877.65 876.95 880.85 L877.3 881.15 Q880.8 884.7 880.8 889.75 880.8 894.8 877.3 898.25 L876.95 898.6 Q873.35 901.9 868.6 901.9 863.6 901.9 860 898.25 856.4 894.8 856.4 889.75 M929.75 890 Q929.75 886.7 927.5 884.55 925.25 882.4 922.1 882.4 919 882.4 916.65 884.55 914.4 886.7 914.4 890 914.4 893.15 916.65 895.3 919 897.6 922.1 897.6 925.25 897.6 927.5 895.3 929.75 893.15 929.75 890 M935.6 889.75 Q935.6 894.8 932.1 898.25 928.5 901.9 923.4 901.9 918.4 901.9 914.85 898.25 911.25 894.8 911.25 889.75 911.25 884.7 914.85 881.15 918.4 877.65 923.4 877.65 928.5 877.65 932.1 881.15 935.6 884.7 935.6 889.75 M862.35 890 Q862.35 893.15 864.6 895.3 866.75 897.6 869.95 897.6 873.1 897.6 875.35 895.3 876.4 894.3 876.95 893.1 877.6 891.7 877.6 890 877.6 888.25 876.95 886.8 876.4 885.55 875.35 884.55 873.1 882.4 869.95 882.4 866.75 882.4 864.6 884.55 862.35 886.7 862.35 890"/>
+ <path stroke="none" fill="#5B5B5B" d="M862.35 890 Q862.35 886.7 864.6 884.55 866.75 882.4 869.95 882.4 873.1 882.4 875.35 884.55 876.4 885.55 876.95 886.8 877.6 888.25 877.6 890 877.6 891.7 876.95 893.1 876.4 894.3 875.35 895.3 873.1 897.6 869.95 897.6 866.75 897.6 864.6 895.3 862.35 893.15 862.35 890 M929.75 890 Q929.75 893.15 927.5 895.3 925.25 897.6 922.1 897.6 919 897.6 916.65 895.3 914.4 893.15 914.4 890 914.4 886.7 916.65 884.55 919 882.4 922.1 882.4 925.25 882.4 927.5 884.55 929.75 886.7 929.75 890"/>
+ <path stroke="none" fill="#FFD738" d="M916.5 914.45 L916.3 913.05 915.95 911.05 Q915.55 909.1 914.8 907.3 913.3 903.75 910.6 900.8 L908.25 898.55 Q902.95 894.2 896.05 894.2 889.1 894.2 883.85 898.55 882.6 899.5 881.4 900.8 878.75 903.75 877.25 907.3 876.5 909.1 876.05 911.05 L875.65 913.05 875.55 914.55 875.5 914.25 875.45 912.75 875.65 909.05 875.95 907.5 876.05 907.05 Q877.35 901.3 881.4 896.8 882.6 895.5 883.85 894.55 889.1 890.2 896.05 890.2 902.95 890.2 908.25 894.55 L910.6 896.8 Q914.7 901.3 915.95 907.05 L916.05 907.5 916.3 909.05 916.6 912.75 916.5 914.25 916.5 914.45"/>
+ <path stroke="none" fill="#FFCC00" d="M916.5 914.45 L916.4 915.3 915.95 916.85 Q915.05 919.2 912.8 921.2 L911.15 922.5 910.6 922.85 910 923.25 909.6 923.5 Q903.85 926.7 896.05 926.7 888.2 926.7 882.45 923.5 L882.05 923.25 881.4 922.85 879.55 921.5 878 919.95 Q876.7 918.45 876.1 916.8 L875.7 915.3 875.55 914.55 875.65 913.05 876.05 911.05 Q876.5 909.1 877.25 907.3 878.75 903.75 881.4 900.8 882.6 899.5 883.85 898.55 889.1 894.2 896.05 894.2 902.95 894.2 908.25 898.55 L910.6 900.8 Q913.3 903.75 914.8 907.3 915.55 909.1 915.95 911.05 L916.3 913.05 916.5 914.45"/>
+ <path stroke="none" fill="#EEBE00" d="M916.5 914.45 L916.5 914.25 916.6 912.75 916.3 909.05 916.05 907.5 920.95 908.55 Q931.1 911.15 931.35 914.8 L915.95 916.85 916.4 915.3 916.5 914.45 M875.95 907.5 L875.65 909.05 875.45 912.75 875.5 914.25 875.55 914.55 875.7 915.3 876.1 916.8 860.65 914.75 Q860.95 911.1 870.95 908.55 L875.95 907.5"/>
+ <path stroke="none" fill="#DEB100" d="M876.1 916.8 Q876.7 918.45 878 919.95 L879.55 921.5 881.4 922.85 882.05 923.25 879.8 923 877.45 922.65 873.45 921.9 870.95 921.3 Q861.15 918.8 860.7 915.3 L860.65 914.95 860.65 914.75 876.1 916.8 M910 923.25 L910.6 922.85 911.15 922.5 912.8 921.2 Q915.05 919.2 915.95 916.85 L931.35 914.8 931.35 914.95 931.35 915.3 Q930.85 918.8 920.95 921.3 L915.4 922.5 912.2 923 912.05 923.05 910 923.25"/>
+ <path stroke="none" fill="#F3F3F3" d="M910 923.25 L912.05 923.05 912.2 923 915.4 922.5 Q926.15 928.25 935.5 940.15 L937.9 943.35 938.45 943.85 Q946.85 951.5 960 945.8 L960 951.85 Q959.75 960 951.35 960 L840.65 960 Q832.25 960 832 951.85 L832 946.05 Q843.55 951.35 849.75 943.35 L851.1 941.55 852.6 939.6 Q862.25 927.5 873.45 921.9 L877.45 922.65 879.8 923 882.05 923.25 882.45 923.5 Q888.2 926.7 896.05 926.7 903.85 926.7 909.6 923.5 L910 923.25"/>
+ <path stroke="none" fill="#2C2B2B" d="M704 844.2 L704 840.7 Q704 832 695.35 832 L584.65 832 Q576 832 576 840.7 L576 844.2 576 951.85 Q576.25 960 584.65 960 L695.35 960 Q703.75 960 704 951.85 L704 844.2 M572 840.7 Q572 828 584.65 828 L695.35 828 Q708 828 708 840.7 L708 951.85 708 952 Q707.7 964 695.35 964 L584.65 964 Q572.3 964 572 952 L572 951.85 572 840.7"/>
+ <path stroke="none" fill="#545353" d="M576 844.2 L576 840.7 Q576 832 584.65 832 L695.35 832 Q704 832 704 840.7 L704 844.2 Q703.75 836 695.35 836 L584.65 836 Q576.25 836 576 844.2"/>
+ <path stroke="none" fill="#414040" d="M576 844.2 Q576.25 836 584.65 836 L695.35 836 Q703.75 836 704 844.2 L704 951.85 Q703.75 960 695.35 960 L584.65 960 Q576.25 960 576 951.85 L576 844.2 M683.55 873.8 L681.5 871.9 678.75 869.9 Q672.3 865.75 664.15 865.75 655.95 865.75 649.5 869.9 640 874.75 630.5 869.9 624.05 865.75 615.9 865.75 607.75 865.75 601.3 869.9 L598.55 871.9 596.45 873.8 Q588.4 881.85 588.4 893.2 588.4 904.6 596.45 912.7 L596.55 912.7 601.1 916.4 Q601.15 932.35 612.5 943.6 617 948.15 622.3 950.85 630.3 955 640 955 656.1 955 667.55 943.6 L671.2 939.5 Q678.8 929.5 678.9 916.4 L683.55 912.7 Q691.6 904.6 691.6 893.2 691.6 881.85 683.55 873.8 M658 860.7 L657.95 860.15 Q657.5 852.95 652.85 847.7 647.7 841.95 640.5 841.95 633.25 841.95 628.1 847.7 623.5 852.95 623.05 860.15 L623 860.7 Q623 861.4 623.3 862.05 624.2 864.2 628.1 865.85 633.25 867.95 640.5 867.95 647.7 867.95 652.85 865.85 656.8 864.2 657.75 862.05 L658 860.7"/>
+ <path stroke="none" fill="#BDB6B6" d="M683.55 873.8 Q691.6 881.85 691.6 893.2 691.6 904.6 683.55 912.7 L678.9 916.4 Q678.8 929.5 671.2 939.5 L667.55 943.6 Q656.1 955 640 955 630.3 955 622.3 950.85 617 948.15 612.5 943.6 601.15 932.35 601.1 916.4 L596.55 912.7 596.45 912.7 Q588.4 904.6 588.4 893.2 588.4 881.85 596.45 873.8 L598.55 871.9 601.3 869.9 Q607.75 865.75 615.9 865.75 624.05 865.75 630.5 869.9 640 874.75 649.5 869.9 655.95 865.75 664.15 865.75 672.3 865.75 678.75 869.9 L681.5 871.9 683.55 873.8 M618.25 876.7 Q616.95 876.85 615.95 877.8 615 878.75 615 880.1 615 881.45 615.95 882.4 616.95 883.35 618.55 883.55 639.95 886.15 661.15 883.35 663 883.35 663.95 882.4 664.9 881.45 664.9 880.1 664.9 878.75 663.95 877.8 663 876.85 661.15 876.65 639.15 874.6 618.25 876.7 M598.35 897.05 Q598.35 901.65 601.6 904.8 604.9 908.15 609.5 908.15 614.05 908.15 617.4 904.8 620.6 901.65 620.6 897.05 620.6 892.45 617.4 889.25 614.05 886.05 609.5 886.05 604.9 886.05 601.6 889.25 598.35 892.45 598.35 897.05 M643.75 900.15 L643.6 900.25 Q642.45 901.4 642.45 903.1 642.45 904.85 643.7 906.1 L644.1 906.4 644.5 906.7 Q645.4 907.3 646.65 907.3 648.3 907.3 649.45 906.15 L649.6 905.95 651.25 903.95 Q652.1 902.75 652.4 901.5 L652.5 901.15 Q652.95 898.95 651.85 897.85 650.65 896.65 648.2 897.3 645.9 898 643.75 900.15 M637.25 906.1 Q638.45 904.85 638.45 903.1 638.45 901.4 637.3 900.25 L637.15 900.15 Q635.05 898 632.65 897.3 630.25 896.65 629 897.85 627.9 898.95 628.4 901.15 L628.5 901.5 Q628.8 902.75 629.6 904 630.25 905 631.25 905.95 L631.35 906.15 Q632.55 907.3 634.25 907.3 635.45 907.3 636.45 906.7 L636.85 906.4 637.25 906.1 M622.3 919.35 L619.45 920.25 Q616 921.45 614.5 924.65 612.9 927.95 614.1 931.25 615.25 934.7 618.55 936.25 620.4 937.15 622.3 937.15 L625.1 936.65 Q641.6 930.9 655.35 936.45 657.3 937.25 659.3 937.1 L661.95 936.45 Q665.25 935.15 666.6 931.8 667.95 928.5 666.65 925.15 665.3 921.9 662.05 920.45 L659.3 919.35 Q642.3 913.2 622.3 919.35 M682.4 897.05 Q682.4 892.45 679.15 889.25 675.9 886.05 671.25 886.05 666.7 886.05 663.5 889.25 660.15 892.45 660.15 897.05 660.15 901.65 663.5 904.8 666.7 908.15 671.25 908.15 675.9 908.15 679.15 904.8 682.4 901.65 682.4 897.05"/>
+ <path stroke="none" fill="#464545" d="M658 860.7 L657.75 862.05 Q656.8 864.2 652.85 865.85 647.7 867.95 640.5 867.95 633.25 867.95 628.1 865.85 624.2 864.2 623.3 862.05 623 861.4 623 860.7 L623.05 860.15 Q623.5 852.95 628.1 847.7 633.25 841.95 640.5 841.95 647.7 841.95 652.85 847.7 657.5 852.95 657.95 860.15 L658 860.7"/>
+ <path stroke="none" fill="#A8A1A1" d="M618.25 876.7 Q639.15 874.6 661.15 876.65 663 876.85 663.95 877.8 664.9 878.75 664.9 880.1 664.9 881.45 663.95 882.4 663 883.35 661.15 883.35 639.95 886.15 618.55 883.55 616.95 883.35 615.95 882.4 615 881.45 615 880.1 615 878.75 615.95 877.8 616.95 876.85 618.25 876.7"/>
+ <path stroke="none" fill="#FFFFFF" d="M598.35 897.05 Q598.35 892.45 601.6 889.25 604.9 886.05 609.5 886.05 614.05 886.05 617.4 889.25 620.6 892.45 620.6 897.05 620.6 901.65 617.4 904.8 614.05 908.15 609.5 908.15 604.9 908.15 601.6 904.8 598.35 901.65 598.35 897.05 M603.8 897.3 Q603.8 900.15 605.85 902.1 607.75 904.2 610.7 904.2 613.6 904.2 615.65 902.1 617.7 900.15 617.7 897.3 617.7 894.3 615.65 892.35 613.6 890.35 610.7 890.35 607.75 890.35 605.85 892.35 603.8 894.3 603.8 897.3 M622.3 919.35 Q642.3 913.2 659.3 919.35 662.45 928.75 659.3 937.1 657.3 937.25 655.35 936.45 641.6 930.9 625.1 936.65 L622.3 937.15 Q618.75 929.25 622.3 919.35 M682.4 897.05 Q682.4 901.65 679.15 904.8 675.9 908.15 671.25 908.15 666.7 908.15 663.5 904.8 660.15 901.65 660.15 897.05 660.15 892.45 663.5 889.25 666.7 886.05 671.25 886.05 675.9 886.05 679.15 889.25 682.4 892.45 682.4 897.05 M677.05 897.3 Q677.05 894.3 675 892.35 672.95 890.35 670.1 890.35 667.25 890.35 665.1 892.35 663.05 894.3 663.05 897.3 663.05 900.15 665.1 902.1 667.25 904.2 670.1 904.2 672.95 904.2 675 902.1 677.05 900.15 677.05 897.3"/>
+ <path stroke="none" fill="#989292" d="M643.75 900.15 Q645.9 898 648.2 897.3 650.65 896.65 651.85 897.85 652.95 898.95 652.5 901.15 L652.4 901.5 Q652.1 902.75 651.25 903.95 L649.6 905.95 649.45 906.15 Q648.3 907.3 646.65 907.3 645.4 907.3 644.5 906.7 L644.1 906.4 643.7 906.1 Q642.45 904.85 642.45 903.1 642.45 901.4 643.6 900.25 L643.75 900.15 M637.25 906.1 L636.85 906.4 636.45 906.7 Q635.45 907.3 634.25 907.3 632.55 907.3 631.35 906.15 L631.25 905.95 Q630.25 905 629.6 904 628.8 902.75 628.5 901.5 L628.4 901.15 Q627.9 898.95 629 897.85 630.25 896.65 632.65 897.3 635.05 898 637.15 900.15 L637.3 900.25 Q638.45 901.4 638.45 903.1 638.45 904.85 637.25 906.1"/>
+ <path stroke="none" fill="#5B5B5B" d="M603.8 897.3 Q603.8 894.3 605.85 892.35 607.75 890.35 610.7 890.35 613.6 890.35 615.65 892.35 617.7 894.3 617.7 897.3 617.7 900.15 615.65 902.1 613.6 904.2 610.7 904.2 607.75 904.2 605.85 902.1 603.8 900.15 603.8 897.3 M677.05 897.3 Q677.05 900.15 675 902.1 672.95 904.2 670.1 904.2 667.25 904.2 665.1 902.1 663.05 900.15 663.05 897.3 663.05 894.3 665.1 892.35 667.25 890.35 670.1 890.35 672.95 890.35 675 892.35 677.05 894.3 677.05 897.3"/>
+ <path stroke="none" fill="#E7E7E7" d="M622.3 937.15 Q620.4 937.15 618.55 936.25 615.25 934.7 614.1 931.25 612.9 927.95 614.5 924.65 616 921.45 619.45 920.25 L622.3 919.35 Q618.75 929.25 622.3 937.15 M659.3 919.35 L662.05 920.45 Q665.3 921.9 666.65 925.15 667.95 928.5 666.6 931.8 665.25 935.15 661.95 936.45 L659.3 937.1 Q662.45 928.75 659.3 919.35"/>
+ <path stroke="none" fill="#857E7E" d="M448 844.2 L448 840.7 Q448 836.6 446.1 834.45 443.95 832 439.35 832 L410.85 832 402.7 832 365.2 832 357.1 832 328.65 832 Q324.05 832 321.9 834.5 L321.1 835.65 320 840.35 320 840.45 320 840.6 320 840.7 320 844.2 320 905.65 320 951.85 Q320.1 955.2 321.6 957.2 L322.15 957.8 Q324.05 959.75 327.7 960 L327.85 960 328.5 960 328.65 960 439.35 960 439.65 960 439.8 960 440.4 960 440.5 960 440.65 960 440.9 959.95 441.05 959.95 445.35 958.3 445.6 958.1 446.35 957.3 Q447.9 955.3 448 951.85 L448 905.7 448 844.2 M449.1 831.8 Q452 834.85 452 840.7 L452 951.85 452 952 Q451.85 956.95 449.5 959.8 L449.1 960.2 448.35 961 448.15 961.2 447.85 961.4 446.75 962.05 442.5 963.7 441.45 963.95 441.35 963.95 441.3 963.95 441 963.95 440.65 964 440.6 964 440.5 964 440.4 964 440.35 964 439.9 964 439.75 964 439.65 964 439.35 964 328.65 964 328.5 964 328.45 964 327.7 964 327.6 964 327.45 964 Q322.05 963.65 319.3 960.6 L319.25 960.55 318.7 959.95 318.4 959.6 Q316.15 956.8 316 952 L316 951.85 316 840.7 316 840.6 316 840.55 316 840.5 316 840.4 316.1 839.45 317.2 834.75 317.6 833.75 Q318.1 832.8 318.75 832.05 L318.9 831.85 Q321.95 828 328.65 828 L439.35 828 Q446.05 828 449.1 831.8"/>
+ <path stroke="none" fill="#FFFFFF" d="M446.1 834.45 Q448 836.6 448 840.7 L448 844.2 Q447.8 837 441.25 836.15 L446.1 834.45 M320 844.2 L320 840.7 320 840.6 320 840.45 320 840.35 321.1 835.65 321.9 834.5 326.7 836.15 Q320.2 837 320 844.2 M357.1 832 L365.2 832 365.6 836 358.45 836 357.1 832 M402.7 832 L410.85 832 409.45 836 402.35 836 402.7 832 M427.7 878.75 Q427.7 875.15 425.2 872.6 422.7 870.1 419.05 870.1 415.5 870.1 412.9 872.6 410.4 875.15 410.4 878.75 410.4 882.35 412.9 884.8 415.5 887.35 419.05 887.35 422.7 887.35 425.2 884.8 427.7 882.35 427.7 878.75 M432.45 878.55 Q432.45 883.7 428.8 887.3 425.15 891 419.95 891 414.85 891 411.15 887.3 407.5 883.7 407.5 878.55 407.5 873.35 411.15 869.7 414.85 866.05 419.95 866.05 425.15 866.05 428.8 869.7 432.45 873.35 432.45 878.55 M335.45 878.55 Q335.45 873.35 339.1 869.7 342.75 866.05 347.95 866.05 353.05 866.05 356.75 869.7 360.4 873.35 360.4 878.55 360.4 883.7 356.75 887.3 353.05 891 347.95 891 342.75 891 339.1 887.3 335.45 883.7 335.45 878.55 M340.15 878.75 Q340.15 882.35 342.7 884.8 345.2 887.35 348.85 887.35 352.4 887.35 354.95 884.8 357.5 882.35 357.5 878.75 357.5 875.15 354.95 872.6 352.4 870.1 348.85 870.1 345.2 870.1 342.7 872.6 340.15 875.15 340.15 878.75"/>
+ <path stroke="none" fill="#4A4949" d="M321.9 834.5 Q324.05 832 328.65 832 L357.1 832 358.45 836 328.65 836 326.7 836.15 321.9 834.5 M365.2 832 L402.7 832 402.35 836 365.6 836 365.2 832 M410.85 832 L439.35 832 Q443.95 832 446.1 834.45 L441.25 836.15 439.35 836 409.45 836 410.85 832"/>
+ <path stroke="none" fill="#414040" d="M448 905.7 L448 951.85 Q447.9 955.3 446.35 957.3 440.65 917.7 426.5 906.2 L426.3 906 Q421.15 901.05 427.15 900.75 435.75 900.6 448 905.7 M321.6 957.2 Q320.1 955.2 320 951.85 L320 905.65 Q332.2 900.6 340.75 900.75 346.75 901.05 341.6 906 L341.4 906.2 Q327.25 917.65 321.6 957.2 M409.45 836 L439.35 836 441.25 836.15 Q431.45 839.6 427.65 842.3 421.75 846.4 418.75 848.8 415.75 851.15 414.45 851.9 408 855.45 407.5 848.85 L407.6 847 Q407.75 842.85 408.65 839.15 L409.45 836 M402.35 836 L401.3 846.7 400.95 848.7 Q400.35 851.1 399.15 852.9 L395.4 857.45 Q389.4 863.4 383.9 863.5 378.45 863.4 372.75 857.6 370.5 855.45 368.75 852.9 367.05 850.4 366.6 846.7 L365.6 836 402.35 836 M358.45 836 L359.25 839.15 Q360.15 842.85 360.3 847 L360.4 848.85 Q359.9 855.45 353.45 851.9 L349.15 848.8 Q346.15 846.4 340.25 842.3 336.45 839.65 326.7 836.15 L328.65 836 358.45 836 M365.45 898.05 L367.8 889.95 Q371.05 880.05 383.95 880.4 397.95 880.8 400.1 889.95 L402.5 898.1 Q394.2 894 383.95 894 373.7 894 365.45 898.05 M421.4 927.9 Q420.65 939.95 410.45 948.6 399.45 958 383.95 958 368.4 958 357.4 948.6 347.25 939.9 346.5 927.9 347.3 916 357.4 907.35 360.45 904.75 363.8 902.9 372.7 898 383.95 898 395.2 898 404.1 902.95 407.45 904.8 410.45 907.35 420.55 916 421.4 927.9 M402.45 908.15 L401.6 907.55 Q400.2 906.85 398 907.5 L397.75 907.6 Q394.9 908.45 392.4 910.95 L392.25 911.1 Q391.6 911.8 391.25 912.65 390.85 913.55 390.85 914.65 390.85 916.8 392.35 918.3 393.85 919.8 396 919.8 398.05 919.8 399.55 918.4 L399.7 918.25 Q401.75 916.2 402.7 913.95 L403.15 912.65 403.3 912.15 Q403.7 910.25 403.05 909 L402.45 908.15 M368.35 918.4 Q369.85 919.8 371.9 919.8 374.05 919.8 375.55 918.3 377.05 916.8 377.05 914.65 L377.05 914.6 377.05 914.5 377.05 914 376.7 912.65 376.1 911.65 375.65 911.1 375.5 910.95 372.25 908.45 370.1 907.55 370.05 907.55 369.9 907.5 369.8 907.45 368 907.2 367.1 907.3 Q366.65 907.35 366.3 907.55 L365.65 908 365.45 908.15 364.85 909 364.8 909.1 364.5 910.45 Q364.4 911.25 364.6 912.15 L364.75 912.6 364.75 912.65 365.2 913.95 Q366.15 916.2 368.2 918.25 L368.35 918.4"/>
+ <path stroke="none" fill="#E9E9E9" d="M448 844.2 L448 905.7 Q435.75 900.6 427.15 900.75 421.15 901.05 426.3 906 L426.5 906.2 Q440.65 917.7 446.35 957.3 L445.6 958.1 445.35 958.3 441.05 959.95 440.9 959.95 440.65 960 440.5 960 440.4 960 439.8 960 439.65 960 439.35 960 328.65 960 328.5 960 327.85 960 327.7 960 Q324.05 959.75 322.15 957.8 L321.6 957.2 Q327.25 917.65 341.4 906.2 L341.6 906 Q346.75 901.05 340.75 900.75 332.2 900.6 320 905.65 L320 844.2 Q320.2 837 326.7 836.15 336.45 839.65 340.25 842.3 346.15 846.4 349.15 848.8 L353.45 851.9 Q359.9 855.45 360.4 848.85 L360.3 847 Q360.15 842.85 359.25 839.15 L358.45 836 365.6 836 366.6 846.7 Q367.05 850.4 368.75 852.9 370.5 855.45 372.75 857.6 378.45 863.4 383.9 863.5 389.4 863.4 395.4 857.45 L399.15 852.9 Q400.35 851.1 400.95 848.7 L401.3 846.7 402.35 836 409.45 836 408.65 839.15 Q407.75 842.85 407.6 847 L407.5 848.85 Q408 855.45 414.45 851.9 415.75 851.15 418.75 848.8 421.75 846.4 427.65 842.3 431.45 839.6 441.25 836.15 447.8 837 448 844.2 M432.45 878.55 Q432.45 873.35 428.8 869.7 425.15 866.05 419.95 866.05 414.85 866.05 411.15 869.7 407.5 873.35 407.5 878.55 407.5 883.7 411.15 887.3 414.85 891 419.95 891 425.15 891 428.8 887.3 432.45 883.7 432.45 878.55 M335.45 878.55 Q335.45 883.7 339.1 887.3 342.75 891 347.95 891 353.05 891 356.75 887.3 360.4 883.7 360.4 878.55 360.4 873.35 356.75 869.7 353.05 866.05 347.95 866.05 342.75 866.05 339.1 869.7 335.45 873.35 335.45 878.55 M402.5 898.1 L400.1 889.95 Q397.95 880.8 383.95 880.4 371.05 880.05 367.8 889.95 L365.45 898.05 Q361.15 900.15 357.4 903.35 346.85 912.4 346.45 925 L346.45 926 346.5 927.9 Q347.25 939.9 357.4 948.6 368.4 958 383.95 958 399.45 958 410.45 948.6 420.65 939.95 421.4 927.9 L421.45 926 421.45 925 Q421 912.4 410.45 903.35 406.7 900.2 402.5 898.1"/>
+ <path stroke="none" fill="#5B5B5B" d="M427.7 878.75 Q427.7 882.35 425.2 884.8 422.7 887.35 419.05 887.35 415.5 887.35 412.9 884.8 410.4 882.35 410.4 878.75 410.4 875.15 412.9 872.6 415.5 870.1 419.05 870.1 422.7 870.1 425.2 872.6 427.7 875.15 427.7 878.75 M340.15 878.75 Q340.15 875.15 342.7 872.6 345.2 870.1 348.85 870.1 352.4 870.1 354.95 872.6 357.5 875.15 357.5 878.75 357.5 882.35 354.95 884.8 352.4 887.35 348.85 887.35 345.2 887.35 342.7 884.8 340.15 882.35 340.15 878.75"/>
+ <path stroke="none" fill="#2E2D2D" d="M402.45 908.15 L403.05 909 Q403.7 910.25 403.3 912.15 L403.15 912.65 402.7 913.95 Q401.75 916.2 399.7 918.25 L399.55 918.4 Q398.05 919.8 396 919.8 393.85 919.8 392.35 918.3 390.85 916.8 390.85 914.65 390.85 913.55 391.25 912.65 391.6 911.8 392.25 911.1 L392.4 910.95 Q394.9 908.45 397.75 907.6 L398 907.5 Q400.2 906.85 401.6 907.55 L402.45 908.15 M368.35 918.4 L368.2 918.25 Q366.15 916.2 365.2 913.95 L364.75 912.65 364.75 912.6 364.6 912.15 Q364.4 911.25 364.5 910.45 L364.8 909.1 364.85 909 365.45 908.15 365.65 908 366.3 907.55 Q366.65 907.35 367.1 907.3 L368 907.2 369.8 907.45 369.9 907.5 370.05 907.55 370.1 907.55 372.25 908.45 375.5 910.95 375.65 911.1 376.1 911.65 376.7 912.65 377.05 914 377.05 914.5 377.05 914.6 377.05 914.65 Q377.05 916.8 375.55 918.3 374.05 919.8 371.9 919.8 369.85 919.8 368.35 918.4"/>
+ <path stroke="none" fill="#545353" d="M402.5 898.1 Q406.7 900.2 410.45 903.35 421 912.4 421.45 925 L421.45 926 421.4 927.9 Q420.55 916 410.45 907.35 407.45 904.8 404.1 902.95 395.2 898 383.95 898 372.7 898 363.8 902.9 360.45 904.75 357.4 907.35 347.3 916 346.5 927.9 L346.45 926 346.45 925 Q346.85 912.4 357.4 903.35 361.15 900.15 365.45 898.05 373.7 894 383.95 894 394.2 894 402.5 898.1"/>
+ <path stroke="none" fill="#857E7E" d="M192 844.2 L192 840.7 Q192 832 183.35 832 L72.65 832 Q64 832 64 840.7 L64 844.2 64 951.85 Q64.25 960 72.65 960 L82.5 960 173.45 960 183.35 960 Q191.75 960 192 951.85 L192 844.2 M183.35 828 Q196 828 196 840.7 L196 951.85 196 952 Q195.7 964 183.35 964 L72.65 964 Q60.3 964 60 952 L60 951.85 60 840.7 Q60 828 72.65 828 L183.35 828"/>
+ <path stroke="none" fill="#DBD9D9" d="M192 844.2 Q191.75 836 183.35 836 L168.7 836 87.3 836 72.65 836 Q64.25 836 64 844.2 L64 840.7 Q64 832 72.65 832 L183.35 832 Q192 832 192 840.7 L192 844.2"/>
+ <path stroke="none" fill="#D2D0D0" d="M192 844.2 L192 951.85 Q191.75 960 183.35 960 L173.45 960 Q170.65 957.15 170.7 951.65 169.4 933.7 158.35 920.55 152.45 913.5 145.4 909.8 146.3 907.6 146.3 905.15 146.3 899.2 140.9 895 139.55 893.95 138.1 893.2 L129.4 863.8 128.9 863.05 Q128.5 862.75 128 862.75 127.55 862.75 127.15 863.05 126.75 863.35 126.6 863.8 L117.95 893.15 Q116.4 893.95 115 895 109.7 899.2 109.7 905.15 109.7 907.85 110.8 910.2 104.15 913.85 98.5 920.55 87.55 933.7 86.3 951.65 85.15 957.15 82.5 960 L72.65 960 Q64.25 960 64 951.85 L64 844.2 Q64.25 836 72.65 836 L87.3 836 Q90.5 840.25 96.85 843.8 109.75 851 128 851 146.2 851 159.1 843.8 165.5 840.25 168.7 836 L183.35 836 Q191.75 836 192 844.2 M179.25 903.2 Q179.25 897.45 175.2 893.45 171.15 889.4 165.45 889.4 159.85 889.4 155.7 893.45 151.75 897.45 151.75 903.2 151.75 908.9 155.7 912.8 159.85 916.9 165.45 916.9 171.15 916.9 175.2 912.8 179.25 908.9 179.25 903.2 M76.75 903.2 Q76.75 908.9 80.8 912.8 84.85 916.9 90.55 916.9 96.15 916.9 100.3 912.8 104.25 908.9 104.25 903.2 104.25 897.45 100.3 893.45 96.15 889.4 90.55 889.4 84.85 889.4 80.8 893.45 76.75 897.45 76.75 903.2"/>
+ <path stroke="none" fill="#FFFFFF" d="M76.75 903.2 Q76.75 897.45 80.8 893.45 84.85 889.4 90.55 889.4 96.15 889.4 100.3 893.45 104.25 897.45 104.25 903.2 104.25 908.9 100.3 912.8 96.15 916.9 90.55 916.9 84.85 916.9 80.8 912.8 76.75 908.9 76.75 903.2 M179.25 903.2 Q179.25 908.9 175.2 912.8 171.15 916.9 165.45 916.9 159.85 916.9 155.7 912.8 151.75 908.9 151.75 903.2 151.75 897.45 155.7 893.45 159.85 889.4 165.45 889.4 171.15 889.4 175.2 893.45 179.25 897.45 179.25 903.2 M171.7 903.1 Q171.7 899.45 169.25 897 166.7 894.45 163.05 894.45 159.55 894.45 156.95 897 154.4 899.45 154.4 903.1 L154.45 903.95 Q154.7 906.9 156.95 909.05 159.55 911.55 163.05 911.55 166.7 911.55 169.25 909.05 171.4 906.9 171.65 903.95 L171.7 903.1 M84.3 903.1 L84.35 903.95 Q84.6 906.9 86.75 909.05 89.3 911.55 92.95 911.55 96.45 911.55 99.05 909.05 101.3 906.9 101.55 903.95 L101.6 903.1 Q101.6 899.45 99.05 897 96.45 894.45 92.95 894.45 89.3 894.45 86.75 897 84.3 899.45 84.3 903.1"/>
+ <path stroke="none" fill="#5B5B5B" d="M84.3 903.1 Q84.3 899.45 86.75 897 89.3 894.45 92.95 894.45 96.45 894.45 99.05 897 101.6 899.45 101.6 903.1 L101.55 903.95 Q101.3 906.9 99.05 909.05 96.45 911.55 92.95 911.55 89.3 911.55 86.75 909.05 84.6 906.9 84.35 903.95 L84.3 903.1 M171.7 903.1 L171.65 903.95 Q171.4 906.9 169.25 909.05 166.7 911.55 163.05 911.55 159.55 911.55 156.95 909.05 154.7 906.9 154.45 903.95 L154.4 903.1 Q154.4 899.45 156.95 897 159.55 894.45 163.05 894.45 166.7 894.45 169.25 897 171.7 899.45 171.7 903.1"/>
+ <path stroke="none" fill="#BDB6B6" d="M138.1 893.2 Q139.55 893.95 140.9 895 146.3 899.2 146.3 905.15 146.3 907.6 145.4 909.8 152.45 913.5 158.35 920.55 169.4 933.7 170.7 951.65 170.65 957.15 173.45 960 L82.5 960 Q85.15 957.15 86.3 951.65 87.55 933.7 98.5 920.55 104.15 913.85 110.8 910.2 109.7 907.85 109.7 905.15 109.7 899.2 115 895 116.4 893.95 117.95 893.15 L116.75 897.15 Q116.2 898.95 116.05 900.55 115.55 904.8 117.5 907.35 L117.7 907.6 Q120.4 911.15 128 911.15 135.6 911.15 138.35 907.6 L138.7 907.15 Q140.45 904.6 140 900.6 L139.25 897.15 138.1 893.2 M145.6 923.35 Q144.5 922.25 142.3 922.85 140.05 923.45 138.1 925.45 L137.95 925.55 Q136.9 926.65 136.9 928.25 136.9 929.85 138.05 930.95 139.15 932.1 140.8 932.1 142.3 932.1 143.45 931.05 L143.55 930.95 Q145.55 928.95 146.15 926.75 146.8 924.5 145.6 923.35 M113.45 931.05 Q114.55 932.1 116.1 932.1 117.7 932.1 118.85 930.95 119.95 929.85 119.95 928.25 119.95 926.65 118.9 925.55 L118.8 925.45 Q116.8 923.45 114.6 922.85 112.4 922.25 111.25 923.35 110.1 924.5 110.75 926.75 111.35 928.95 113.35 930.95 L113.45 931.05"/>
+ <path stroke="none" fill="#FFFCF5" d="M117.95 893.15 L126.6 863.8 Q126.75 863.35 127.15 863.05 127.55 862.75 128 862.75 128.5 862.75 128.9 863.05 L129.4 863.8 138.1 893.2 139.25 897.15 140 900.6 Q139.65 902.4 138.35 903.65 136.7 905.35 133.3 906.05 L128 906.5 123.1 906.15 Q119.4 905.45 117.7 903.65 116.35 902.35 116.05 900.55 116.2 898.95 116.75 897.15 L117.95 893.15"/>
+ <path stroke="none" fill="#DEDCDC" d="M87.3 836 L168.7 836 Q165.5 840.25 159.1 843.8 146.2 851 128 851 109.75 851 96.85 843.8 90.5 840.25 87.3 836"/>
+ <path stroke="none" fill="#F0EDE7" d="M140 900.6 Q140.45 904.6 138.7 907.15 L138.35 907.6 Q135.6 911.15 128 911.15 120.4 911.15 117.7 907.6 L117.5 907.35 Q115.55 904.8 116.05 900.55 116.35 902.35 117.7 903.65 119.4 905.45 123.1 906.15 L128 906.5 133.3 906.05 Q136.7 905.35 138.35 903.65 139.65 902.4 140 900.6"/>
+ <path stroke="none" fill="#9A9494" d="M145.6 923.35 Q146.8 924.5 146.15 926.75 145.55 928.95 143.55 930.95 L143.45 931.05 Q142.3 932.1 140.8 932.1 139.15 932.1 138.05 930.95 136.9 929.85 136.9 928.25 136.9 926.65 137.95 925.55 L138.1 925.45 Q140.05 923.45 142.3 922.85 144.5 922.25 145.6 923.35 M113.45 931.05 L113.35 930.95 Q111.35 928.95 110.75 926.75 110.1 924.5 111.25 923.35 112.4 922.25 114.6 922.85 116.8 923.45 118.8 925.45 L118.9 925.55 Q119.95 926.65 119.95 928.25 119.95 929.85 118.85 930.95 117.7 932.1 116.1 932.1 114.55 932.1 113.45 931.05"/>
+ <path stroke="none" fill="#FFFFFF" d="M95.9 676.1 Q96.75 674.65 98 673.4 98.95 672.45 100.05 671.8 102.95 669.9 106.6 669.9 111.6 669.9 115.3 673.4 118.8 676.95 118.8 682 118.8 687.05 115.3 690.5 111.6 694.15 106.6 694.15 101.6 694.15 98 690.5 94.4 687.05 94.4 682 94.4 678.75 95.9 676.1 M100.35 682.25 Q100.35 685.4 102.6 687.55 104.75 689.85 107.95 689.85 111.1 689.85 113.35 687.55 115.6 685.4 115.6 682.25 115.6 678.95 113.35 676.8 111.1 674.65 107.95 674.65 104.75 674.65 102.6 676.8 100.35 678.95 100.35 682.25 M160.2 676.25 Q161.6 678.8 161.6 682 161.6 687.05 158.1 690.5 154.5 694.15 149.4 694.15 144.4 694.15 140.85 690.5 137.25 687.05 137.25 682 137.25 676.95 140.85 673.4 144.4 669.9 149.4 669.9 152.95 669.9 155.8 671.6 L158.1 673.4 Q159.4 674.7 160.2 676.25 M155.75 682.25 Q155.75 678.95 153.5 676.8 151.25 674.65 148.1 674.65 145 674.65 142.65 676.8 140.4 678.95 140.4 682.25 140.4 685.4 142.65 687.55 145 689.85 148.1 689.85 151.25 689.85 153.5 687.55 155.75 685.4 155.75 682.25"/>
+ <path stroke="none" fill="#986C4C" d="M100.05 671.8 Q98.95 672.45 98 673.4 96.75 674.65 95.9 676.1 86.5 687.3 86.5 702.45 86.5 719.65 98.65 731.8 102.5 735.65 106.9 738.3 98.4 748.65 90.9 768 L72.65 768 Q64.25 768 64 759.85 L64 652.2 Q64.25 644 72.65 644 L93.45 644 Q99.6 658.35 106.45 666.9 103.1 668.95 100.05 671.8 M149.15 738.3 Q153.5 735.65 157.35 731.8 169.5 719.65 169.5 702.45 169.5 687.4 160.2 676.25 159.4 674.7 158.1 673.4 L155.8 671.6 Q152.8 668.9 149.55 666.9 156.4 658.35 162.65 644 L183.85 644 Q191.75 644.25 192 652.2 L192 759.85 Q191.75 767.75 183.9 768 L165.2 768 Q157.65 748.65 149.15 738.3"/>
+ <path stroke="none" fill="#916546" d="M149.15 738.3 Q146.1 740.1 142.85 741.4 L143.6 732.65 Q149.55 732.15 153.9 727.75 158.05 723.65 158.75 718.15 L161.75 720.5 162.2 720.6 162.65 720.45 162.85 720.05 163.9 716.45 163.9 716 163.6 715.6 Q161.4 714 158.65 713.1 158.3 710.95 157.45 709.1 L167.2 710.1 167.7 710 168.15 709.55 168.15 708.95 167.45 704.3 167.2 703.8 Q166.95 703.55 166.7 703.5 160.85 702.35 154.4 704.55 L153.9 704 Q149.15 699.2 142.45 699.05 L140.3 699.05 140.4 698.45 140.5 696.7 140.45 695.8 Q140.15 693.55 136.8 691.9 133.15 690.15 128 690.15 122.8 690.15 119.1 691.9 115.75 693.55 115.5 695.8 L115.5 696.7 115.6 698.3 115.7 699.05 113.95 699.05 Q107 699.05 102.05 704 L101.55 704.5 Q95.15 702.35 89.3 703.5 L88.8 703.8 Q88.6 703.95 88.55 704.3 L87.85 708.95 87.85 709.55 88.3 710 88.8 710.1 98.55 709.1 Q97.7 711 97.35 713.1 94.6 714 92.4 715.6 L92.1 716 92.1 716.45 93.15 720.05 93.35 720.45 93.8 720.6 94.25 720.5 97.3 718.15 Q97.95 723.65 102.05 727.75 106.45 732.15 112.45 732.65 112.75 737.4 113.2 741.35 109.9 740.15 106.9 738.3 102.5 735.65 98.65 731.8 86.5 719.65 86.5 702.45 86.5 687.3 95.9 676.1 94.4 678.75 94.4 682 94.4 687.05 98 690.5 101.6 694.15 106.6 694.15 111.6 694.15 115.3 690.5 118.8 687.05 118.8 682 118.8 676.95 115.3 673.4 111.6 669.9 106.6 669.9 102.95 669.9 100.05 671.8 103.1 668.95 106.45 666.9 116 660.95 128 660.95 140 660.95 149.55 666.9 152.8 668.9 155.8 671.6 152.95 669.9 149.4 669.9 144.4 669.9 140.85 673.4 137.25 676.95 137.25 682 137.25 687.05 140.85 690.5 144.4 694.15 149.4 694.15 154.5 694.15 158.1 690.5 161.6 687.05 161.6 682 161.6 678.8 160.2 676.25 169.5 687.4 169.5 702.45 169.5 719.65 157.35 731.8 153.5 735.65 149.15 738.3 M124.35 729.15 L125.85 727.75 128 725.25 130.1 727.75 131.65 729.15 131.65 743.8 128 743.95 124.35 743.8 124.35 729.15"/>
+ <path stroke="none" fill="#5B5B5B" d="M100.35 682.25 Q100.35 678.95 102.6 676.8 104.75 674.65 107.95 674.65 111.1 674.65 113.35 676.8 115.6 678.95 115.6 682.25 115.6 685.4 113.35 687.55 111.1 689.85 107.95 689.85 104.75 689.85 102.6 687.55 100.35 685.4 100.35 682.25 M155.75 682.25 Q155.75 685.4 153.5 687.55 151.25 689.85 148.1 689.85 145 689.85 142.65 687.55 140.4 685.4 140.4 682.25 140.4 678.95 142.65 676.8 145 674.65 148.1 674.65 151.25 674.65 153.5 676.8 155.75 678.95 155.75 682.25"/>
+ <path stroke="none" fill="#A17250" d="M106.45 666.9 Q99.6 658.35 93.45 644 L162.65 644 Q156.4 658.35 149.55 666.9 140 660.95 128 660.95 116 660.95 106.45 666.9"/>
+ <path stroke="none" fill="#333333" d="M115.6 698.3 L115.5 696.7 115.5 695.8 Q115.75 693.55 119.1 691.9 122.8 690.15 128 690.15 133.15 690.15 136.8 691.9 140.15 693.55 140.45 695.8 L140.5 696.7 140.4 698.45 Q139.9 696.4 136.8 694.9 133.15 693.15 128 693.15 122.8 693.15 119.1 694.9 116.1 696.35 115.6 698.3"/>
+ <path stroke="none" fill="#B17E58" d="M93.45 644 L72.65 644 Q64.25 644 64 652.2 L64 648.7 Q64 640 72.65 640 L183.9 640 Q189.3 640.2 191.1 644 192 645.9 192 648.7 L192 652.2 Q191.75 644.25 183.85 644 L162.65 644 93.45 644"/>
+ <path stroke="none" fill="#624630" d="M64 652.2 L64 759.85 Q64.25 768 72.65 768 L90.9 768 165.2 768 183.9 768 Q191.75 767.75 192 759.85 L192 652.2 192 648.7 Q192 645.9 191.1 644 189.3 640.2 183.9 640 L72.65 640 Q64 640 64 648.7 L64 652.2 M60 648.7 Q60 636 72.65 636 L183.9 636 184 636 Q192.15 636.3 194.75 642.3 196 644.9 196 648.7 L196 759.85 196 760 Q195.65 771.65 184 772 L183.9 772 72.65 772 Q60.3 772 60 760 L60 759.85 60 648.7"/>
+ <path stroke="none" fill="#3C6672" d="M140.3 699.05 L142.45 699.05 Q149.15 699.2 153.9 704 L154.4 704.55 Q151.45 705.5 148.35 707.2 148.05 707.4 147.9 707.7 L147.9 708.3 148.2 708.85 148.8 709.05 Q153 708.85 157.45 709.1 158.3 710.95 158.65 713.1 154.5 711.75 149.2 712.05 148.9 712.1 148.7 712.25 L148.5 712.7 148.5 713.2 148.9 713.55 Q154.25 715.05 158.75 718.15 158.05 723.65 153.9 727.75 149.55 732.15 143.6 732.65 L142 732.7 Q138.1 732.7 134.85 731.15 133.15 730.35 131.65 729.15 L130.1 727.75 128 725.25 125.85 727.75 124.35 729.15 Q122.85 730.35 121.15 731.15 117.85 732.7 113.95 732.7 L112.45 732.65 Q106.45 732.15 102.05 727.75 97.95 723.65 97.3 718.15 101.75 715.05 107.1 713.55 L107.5 713.2 107.5 712.7 107.3 712.25 106.8 712.05 Q101.5 711.75 97.35 713.1 97.7 711 98.55 709.1 103 708.85 107.2 709.05 L107.8 708.85 108.1 708.3 108.1 707.7 107.65 707.2 Q104.55 705.5 101.55 704.5 L102.05 704 Q107 699.05 113.95 699.05 L115.7 699.05 Q116.35 702.7 119.1 705.45 122.8 709.15 128 709.15 133.15 709.15 136.8 705.45 139.6 702.7 140.3 699.05"/>
+ <path stroke="none" fill="#252525" d="M140.3 699.05 Q139.6 702.7 136.8 705.45 133.15 709.15 128 709.15 122.8 709.15 119.1 705.45 116.35 702.7 115.7 699.05 L115.6 698.3 Q116.1 696.35 119.1 694.9 122.8 693.15 128 693.15 133.15 693.15 136.8 694.9 139.9 696.4 140.4 698.45 L140.3 699.05 M154.4 704.55 Q160.85 702.35 166.7 703.5 166.95 703.55 167.2 703.8 L167.45 704.3 168.15 708.95 168.15 709.55 167.7 710 167.2 710.1 157.45 709.1 Q153 708.85 148.8 709.05 L148.2 708.85 147.9 708.3 147.9 707.7 Q148.05 707.4 148.35 707.2 151.45 705.5 154.4 704.55 M158.65 713.1 Q161.4 714 163.6 715.6 L163.9 716 163.9 716.45 162.85 720.05 162.65 720.45 162.2 720.6 161.75 720.5 158.75 718.15 Q154.25 715.05 148.9 713.55 L148.5 713.2 148.5 712.7 148.7 712.25 Q148.9 712.1 149.2 712.05 154.5 711.75 158.65 713.1 M101.55 704.5 Q104.55 705.5 107.65 707.2 L108.1 707.7 108.1 708.3 107.8 708.85 107.2 709.05 Q103 708.85 98.55 709.1 L88.8 710.1 88.3 710 87.85 709.55 87.85 708.95 88.55 704.3 Q88.6 703.95 88.8 703.8 L89.3 703.5 Q95.15 702.35 101.55 704.5 M97.35 713.1 Q101.5 711.75 106.8 712.05 L107.3 712.25 107.5 712.7 107.5 713.2 107.1 713.55 Q101.75 715.05 97.3 718.15 L94.25 720.5 93.8 720.6 93.35 720.45 93.15 720.05 92.1 716.45 92.1 716 92.4 715.6 Q94.6 714 97.35 713.1"/>
+ <path stroke="none" fill="#FFFCF5" d="M143.6 732.65 L142.85 741.4 Q141.05 757.35 137.7 759.3 136.55 760.15 135.25 760 133.5 759.95 132.5 758.65 131.7 757.65 131.65 756.5 L131.65 756.2 131.65 743.8 131.65 729.15 Q133.15 730.35 134.85 731.15 138.1 732.7 142 732.7 L143.6 732.65 M112.45 732.65 L113.95 732.7 Q117.85 732.7 121.15 731.15 122.85 730.35 124.35 729.15 L124.35 743.8 124.35 756.2 124.35 756.5 Q124.3 757.65 123.5 758.65 122.5 759.95 120.75 760 119.45 760.15 118.3 759.3 114.95 757.35 113.2 741.35 112.75 737.4 112.45 732.65"/>
+ <path stroke="none" fill="#845C41" d="M90.9 768 Q98.4 748.65 106.9 738.3 109.9 740.15 113.2 741.35 114.95 757.35 118.3 759.3 119.45 760.15 120.75 760 122.5 759.95 123.5 758.65 124.3 757.65 124.35 756.5 L124.35 756.2 124.35 743.8 128 743.95 131.65 743.8 131.65 756.2 131.65 756.5 Q131.7 757.65 132.5 758.65 133.5 759.95 135.25 760 136.55 760.15 137.7 759.3 141.05 757.35 142.85 741.4 146.1 740.1 149.15 738.3 157.65 748.65 165.2 768 L90.9 768"/>
+ <path stroke="none" fill="#2D4D7B" d="M704 652.2 L704 648.7 Q704 640 695.35 640 L584.65 640 Q576 640 576 648.7 L576 652.2 576 759.85 Q576.25 768 584.65 768 L695.35 768 Q703.75 768 704 759.85 L704 652.2 M695.35 636 Q708 636 708 648.7 L708 759.85 708 760 Q707.7 772 695.35 772 L584.65 772 Q572.3 772 572 760 L572 759.85 572 648.7 Q572 636 584.65 636 L695.35 636"/>
+ <path stroke="none" fill="#5A9BF3" d="M704 652.2 Q703.75 644 695.35 644 L584.65 644 Q576.25 644 576 652.2 L576 648.7 Q576 640 584.65 640 L695.35 640 Q704 640 704 648.7 L704 652.2 M693.25 724.45 L693.05 724.9 Q691.45 730.15 686.65 733 681.65 735.9 676.05 734.4 670.55 732.9 667.65 727.95 664.85 723.05 666.3 717.7 L666.25 717.3 Q668.9 707.45 674.75 701.55 680.5 695.65 686.1 697.15 691.6 698.6 693.7 706.65 695.7 714.6 693.25 724.45 M682.55 710.45 Q678.75 709.5 675.35 711.45 671.85 713.45 670.85 717.25 669.8 721.05 671.8 724.55 673.75 727.9 677.55 728.9 681.4 729.95 684.85 728.05 688.25 726 689.3 722.2 690.3 718.35 688.35 714.95 686.4 711.55 682.55 710.45 M587.15 724.45 Q584.7 714.6 586.7 706.65 588.8 698.6 594.3 697.15 599.9 695.65 605.65 701.55 611.5 707.45 614.15 717.3 L614.1 717.7 Q615.55 723.05 612.75 727.95 609.85 732.9 604.35 734.4 598.75 735.9 593.75 733 588.95 730.15 587.35 724.9 L587.15 724.45 M597.85 710.45 Q594 711.55 592.05 714.95 590.1 718.35 591.1 722.2 592.15 726 595.55 728.05 599 729.95 602.85 728.9 606.65 727.9 608.6 724.55 610.6 721.05 609.55 717.25 608.55 713.45 605.05 711.45 601.65 709.5 597.85 710.45"/>
+ <path stroke="none" fill="#528CDB" d="M576 652.2 Q576.25 644 584.65 644 L695.35 644 Q703.75 644 704 652.2 L704 759.85 Q703.75 768 695.35 768 L584.65 768 Q576.25 768 576 759.85 L576 652.2 M693.25 724.45 Q695.7 714.6 693.7 706.65 691.6 698.6 686.1 697.15 680.5 695.65 674.75 701.55 668.9 707.45 666.25 717.3 L666.3 717.7 Q664.85 723.05 667.65 727.95 670.55 732.9 676.05 734.4 681.65 735.9 686.65 733 691.45 730.15 693.05 724.9 L693.25 724.45 M649.3 713.25 L648.55 706.2 648.1 701.95 646.4 685.75 645.95 681.85 642.35 648.25 Q642.3 647.4 641.7 646.85 L641.65 646.85 641.3 646.6 640.25 646.35 639.25 646.6 638.85 646.85 Q638.25 647.4 638.15 648.25 L634.6 682.05 634.15 686 632.4 702.3 631.95 706.6 631.2 713.65 631.1 714.1 Q630.55 723.2 639.9 723 649.65 722.8 649.4 714.1 L649.3 713.25 M657.5 730.3 Q655.65 730.15 653.85 730.9 641.25 736 626.1 730.7 L623.5 730.25 Q621.75 730.25 620.05 731.05 617.05 732.5 616 735.65 614.9 738.7 616.35 741.7 617.75 744.65 620.9 745.75 L623.5 746.6 Q641.9 752.25 657.5 746.6 L660 745.6 Q663 744.25 664.25 741.25 665.45 738.2 664.2 735.15 662.95 732.1 659.9 730.9 L657.5 730.3 M626.7 671.55 Q626.7 669.6 625.3 668.2 623.9 666.8 621.95 666.8 620 666.8 618.6 668.2 617.2 669.6 617.2 671.55 617.2 673.5 618.6 674.9 620 676.3 621.95 676.3 623.9 676.3 625.3 674.9 626.7 673.5 626.7 671.55 M615.55 659.6 Q615.55 658.15 614.5 657.1 613.45 656.05 612 656.05 610.55 656.05 609.5 657.1 608.45 658.15 608.45 659.6 608.45 661.05 609.5 662.1 610.55 663.15 612 663.15 613.45 663.15 614.5 662.1 615.55 661.05 615.55 659.6 M612.85 674.2 Q612.85 671.85 611.15 670.15 609.5 668.5 607.15 668.5 604.8 668.5 603.1 670.15 601.45 671.85 601.45 674.2 601.45 676.55 603.1 678.2 604.8 679.9 607.15 679.9 609.5 679.9 611.15 678.2 612.85 676.55 612.85 674.2 M660.5 755.05 Q659.9 752.75 657.8 751.6 655.8 750.45 653.55 751.05 651.25 751.65 650 753.7 648.9 755.7 649.5 758 650.1 760.25 652.1 761.45 654.2 762.65 656.5 762.05 658.75 761.45 659.9 759.35 661.1 757.3 660.5 755.05 M673.15 748.95 Q672.65 747.05 670.95 746.05 669.25 745.05 667.4 745.55 665.5 746.05 664.5 747.8 663.5 749.5 664 751.4 664.55 753.25 666.25 754.25 667.95 755.2 669.85 754.7 671.7 754.2 672.7 752.5 673.7 750.8 673.15 748.95 M587.15 724.45 L587.35 724.9 Q588.95 730.15 593.75 733 598.75 735.9 604.35 734.4 609.85 732.9 612.75 727.95 615.55 723.05 614.1 717.7 L614.15 717.3 Q611.5 707.45 605.65 701.55 599.9 695.65 594.3 697.15 588.8 698.6 586.7 706.65 584.7 714.6 587.15 724.45"/>
+ <path stroke="none" fill="#FFFFFF" d="M682.55 710.45 Q686.4 711.55 688.35 714.95 690.3 718.35 689.3 722.2 688.25 726 684.85 728.05 681.4 729.95 677.55 728.9 673.75 727.9 671.8 724.55 669.8 721.05 670.85 717.25 671.85 713.45 675.35 711.45 678.75 709.5 682.55 710.45 M679.65 714.15 L679.05 714.05 Q677.05 713.75 675.2 714.8 673.05 716.05 672.45 718.4 671.75 720.85 673.05 723.05 674.05 724.95 676 725.65 L676.55 725.8 Q679 726.45 681.15 725.2 683.35 723.9 683.95 721.55 684.6 719.1 683.3 716.9 682.1 714.85 679.65 714.15 M657.5 730.3 Q658.7 733.45 658.9 736.75 659.05 738.7 658.8 740.75 658.5 743.6 657.5 746.6 641.9 752.25 623.5 746.6 620.25 737.5 623.5 730.25 L626.1 730.7 Q641.25 736 653.85 730.9 655.65 730.15 657.5 730.3 M597.85 710.45 Q601.65 709.5 605.05 711.45 608.55 713.45 609.55 717.25 610.6 721.05 608.6 724.55 606.65 727.9 602.85 728.9 599 729.95 595.55 728.05 592.15 726 591.1 722.2 590.1 718.35 592.05 714.95 594 711.55 597.85 710.45 M600.75 714.15 Q598.3 714.85 597.1 716.9 595.8 719.1 596.45 721.55 597.05 723.9 599.25 725.2 601.4 726.45 603.85 725.8 L604.4 725.65 Q606.35 724.95 607.35 723.05 608.65 720.85 607.95 718.4 607.35 716.05 605.2 714.8 603.35 713.75 601.35 714.05 L600.75 714.15"/>
+ <path stroke="none" fill="#5B5B5B" d="M600.75 714.15 L601.35 714.05 Q603.35 713.75 605.2 714.8 607.35 716.05 607.95 718.4 608.65 720.85 607.35 723.05 606.35 724.95 604.4 725.65 L603.85 725.8 Q601.4 726.45 599.25 725.2 597.05 723.9 596.45 721.55 595.8 719.1 597.1 716.9 598.3 714.85 600.75 714.15 M679.65 714.15 Q682.1 714.85 683.3 716.9 684.6 719.1 683.95 721.55 683.35 723.9 681.15 725.2 679 726.45 676.55 725.8 L676 725.65 Q674.05 724.95 673.05 723.05 671.75 720.85 672.45 718.4 673.05 716.05 675.2 714.8 677.05 713.75 679.05 714.05 L679.65 714.15"/>
+ <path stroke="none" fill="#F0EDE7" d="M649.3 713.25 L649.4 714.1 Q649.65 722.8 639.9 723 630.55 723.2 631.1 714.1 L631.2 713.65 Q631.95 718.8 639.9 718.7 648.4 718.55 649.3 713.25 M631.95 706.6 L632.4 702.3 Q634.45 704.2 639.9 704.15 645.9 704.1 648.1 701.95 L648.55 706.2 Q646.55 708.8 639.9 708.9 633.8 709 631.95 706.6 M634.15 686 L634.6 682.05 639.9 682.6 645.95 681.85 646.4 685.75 Q644 686.6 639.9 686.65 636.25 686.7 634.15 686"/>
+ <path stroke="none" fill="#FFFCF5" d="M634.15 686 Q636.25 686.7 639.9 686.65 644 686.6 646.4 685.75 L648.1 701.95 Q645.9 704.1 639.9 704.15 634.45 704.2 632.4 702.3 L634.15 686 M648.55 706.2 L649.3 713.25 Q648.4 718.55 639.9 718.7 631.95 718.8 631.2 713.65 L631.95 706.6 Q633.8 709 639.9 708.9 646.55 708.8 648.55 706.2 M634.6 682.05 L638.15 648.25 Q638.25 647.4 638.85 646.85 L639.25 646.6 640.25 646.35 641.3 646.6 641.65 646.85 641.7 646.85 Q642.3 647.4 642.35 648.25 L645.95 681.85 639.9 682.6 634.6 682.05"/>
+ <path stroke="none" fill="#E7E7E7" d="M657.5 746.6 Q658.5 743.6 658.8 740.75 659.05 738.7 658.9 736.75 658.7 733.45 657.5 730.3 L659.9 730.9 Q662.95 732.1 664.2 735.15 665.45 738.2 664.25 741.25 663 744.25 660 745.6 L657.5 746.6 M623.5 730.25 Q620.25 737.5 623.5 746.6 L620.9 745.75 Q617.75 744.65 616.35 741.7 614.9 738.7 616 735.65 617.05 732.5 620.05 731.05 621.75 730.25 623.5 730.25"/>
+ <path stroke="none" fill="#4A7FC6" d="M673.15 748.95 Q673.7 750.8 672.7 752.5 671.7 754.2 669.85 754.7 667.95 755.2 666.25 754.25 664.55 753.25 664 751.4 663.5 749.5 664.5 747.8 665.5 746.05 667.4 745.55 669.25 745.05 670.95 746.05 672.65 747.05 673.15 748.95 M660.5 755.05 Q661.1 757.3 659.9 759.35 658.75 761.45 656.5 762.05 654.2 762.65 652.1 761.45 650.1 760.25 649.5 758 648.9 755.7 650 753.7 651.25 751.65 653.55 751.05 655.8 750.45 657.8 751.6 659.9 752.75 660.5 755.05 M612.85 674.2 Q612.85 676.55 611.15 678.2 609.5 679.9 607.15 679.9 604.8 679.9 603.1 678.2 601.45 676.55 601.45 674.2 601.45 671.85 603.1 670.15 604.8 668.5 607.15 668.5 609.5 668.5 611.15 670.15 612.85 671.85 612.85 674.2 M615.55 659.6 Q615.55 661.05 614.5 662.1 613.45 663.15 612 663.15 610.55 663.15 609.5 662.1 608.45 661.05 608.45 659.6 608.45 658.15 609.5 657.1 610.55 656.05 612 656.05 613.45 656.05 614.5 657.1 615.55 658.15 615.55 659.6 M626.7 671.55 Q626.7 673.5 625.3 674.9 623.9 676.3 621.95 676.3 620 676.3 618.6 674.9 617.2 673.5 617.2 671.55 617.2 669.6 618.6 668.2 620 666.8 621.95 666.8 623.9 666.8 625.3 668.2 626.7 669.6 626.7 671.55"/>
+ <path stroke="none" fill="#6D4526" d="M448 652.2 L448 648.7 Q448 640 439.35 640 L328.65 640 Q320 640 320 648.7 L320 652.2 320 759.85 Q320.25 768 328.65 768 L338.6 768 429.35 768 439.35 768 Q447.75 768 448 759.85 L448 652.2 M316 759.85 L316 648.7 Q316 636 328.65 636 L439.35 636 Q452 636 452 648.7 L452 759.85 452 760 Q451.7 772 439.35 772 L328.65 772 Q316.3 772 316 760 L316 759.85"/>
+ <path stroke="none" fill="#B4723F" d="M320 652.2 L320 648.7 Q320 640 328.65 640 L439.35 640 Q448 640 448 648.7 L448 652.2 Q447.75 644 439.35 644 L328.65 644 Q320.25 644 320 652.2"/>
+ <path stroke="none" fill="#A16639" d="M320 652.2 Q320.25 644 328.65 644 L439.35 644 Q447.75 644 448 652.2 L448 759.85 Q447.75 768 439.35 768 L429.35 768 Q424.85 760.6 419.9 755 412.25 746.3 403.6 741.8 394.4 737.05 384 737.05 373.7 737.05 364.55 741.75 355.75 746.25 348.05 755.05 343.1 760.65 338.6 768 L328.65 768 Q320.25 768 320 759.85 L320 652.2 M432.8 688.65 L432.8 688.6 Q431.15 682.6 425.85 679.55 420.45 676.45 414.45 678.05 408.5 679.6 405.35 685 402.25 690.35 403.85 696.35 L403.85 696.4 Q405.8 703.6 411.35 707.45 417 711.45 422.95 709.9 428.95 708.3 431.85 702 434.7 695.85 432.8 688.65 M335.1 688.65 Q333.2 695.85 336.05 702 338.95 708.3 344.95 709.9 350.9 711.45 356.55 707.45 362.1 703.6 364.05 696.4 L364.05 696.35 Q365.65 690.35 362.55 685 359.4 679.6 353.45 678.05 347.45 676.45 342.05 679.55 336.75 682.6 335.1 688.6 L335.1 688.65 M401.45 663.9 Q401.45 658.7 396.3 655.05 391.2 651.4 383.95 651.4 376.7 651.4 371.55 655.05 366.45 658.7 366.45 663.9 L366.5 664.75 Q366.85 675.35 371.55 683 376.7 691.4 383.95 691.4 391.2 691.4 396.3 683 401.05 675.35 401.45 664.75 L401.45 663.9 M396.8 707.65 L397 705.3 397 704.4 Q396.65 702 393.2 700.3 389.35 698.45 383.95 698.45 378.55 698.45 374.7 700.3 371.2 702 370.9 704.4 L370.9 705.3 371.1 707.65 Q371.75 711.6 374.7 714.55 376.85 716.7 379.5 717.65 L378.65 718.65 376.6 720.15 Q375.15 720.8 373.5 720.8 370.5 720.8 368.35 718.65 367.55 717.85 367 716.9 L366.45 716.45 365.8 716.55 361.2 719.1 Q360.85 719.3 360.8 719.65 360.65 719.95 360.85 720.3 361.45 721.4 362.35 722.5 L363.4 723.65 Q367.55 727.85 373.5 727.85 379.4 727.85 383.65 723.65 L383.95 723.35 384.25 723.65 Q388.45 727.85 394.35 727.85 400.25 727.85 404.5 723.65 L405.55 722.5 407.05 720.2 407.1 719.55 406.65 719.05 401.95 716.6 401.25 716.55 400.75 717 399.5 718.65 Q397.35 720.8 394.35 720.8 392.7 720.8 391.3 720.15 390.2 719.6 389.25 718.65 L388.4 717.65 Q391.05 716.7 393.2 714.55 396.15 711.6 396.8 707.65"/>
+ <path stroke="none" fill="#8E5A32" d="M427.15 692.1 Q427.15 688.25 424.45 685.55 421.7 682.85 417.85 682.85 414.05 682.85 411.3 685.55 408.6 688.25 408.6 692.1 408.6 695.95 411.3 698.55 414.05 701.35 417.85 701.35 421.7 701.35 424.45 698.55 427.15 695.95 427.15 692.1 M432.8 688.65 Q434.7 695.85 431.85 702 428.95 708.3 422.95 709.9 417 711.45 411.35 707.45 405.8 703.6 403.85 696.4 L403.85 696.35 Q402.25 690.35 405.35 685 408.5 679.6 414.45 678.05 420.45 676.45 425.85 679.55 431.15 682.6 432.8 688.6 L432.8 688.65 M335.1 688.65 L335.1 688.6 Q336.75 682.6 342.05 679.55 347.45 676.45 353.45 678.05 359.4 679.6 362.55 685 365.65 690.35 364.05 696.35 L364.05 696.4 Q362.1 703.6 356.55 707.45 350.9 711.45 344.95 709.9 338.95 708.3 336.05 702 333.2 695.85 335.1 688.65 M340.75 692.1 Q340.75 695.95 343.45 698.55 346.2 701.35 350.05 701.35 353.85 701.35 356.6 698.55 359.3 695.95 359.3 692.1 359.3 688.25 356.6 685.55 353.85 682.85 350.05 682.85 346.2 682.85 343.45 685.55 340.75 688.25 340.75 692.1"/>
+ <path stroke="none" fill="#FFFFFF" d="M340.75 692.1 Q340.75 688.25 343.45 685.55 346.2 682.85 350.05 682.85 353.85 682.85 356.6 685.55 359.3 688.25 359.3 692.1 359.3 695.95 356.6 698.55 353.85 701.35 350.05 701.35 346.2 701.35 343.45 698.55 340.75 695.95 340.75 692.1 M427.15 692.1 Q427.15 695.95 424.45 698.55 421.7 701.35 417.85 701.35 414.05 701.35 411.3 698.55 408.6 695.95 408.6 692.1 408.6 688.25 411.3 685.55 414.05 682.85 417.85 682.85 421.7 682.85 424.45 685.55 427.15 688.25 427.15 692.1 M422.65 692.25 Q422.65 689.8 420.95 688.15 419.25 686.45 416.85 686.45 414.45 686.45 412.7 688.15 411 689.8 411 692.25 411 694.65 412.7 696.3 414.45 698.05 416.85 698.05 419.25 698.05 420.95 696.3 422.65 694.65 422.65 692.25 M345.25 692.25 Q345.25 694.65 346.95 696.3 348.65 698.05 351.05 698.05 353.45 698.05 355.2 696.3 356.9 694.65 356.9 692.25 356.9 689.8 355.2 688.15 353.45 686.45 351.05 686.45 348.65 686.45 346.95 688.15 345.25 689.8 345.25 692.25"/>
+ <path stroke="none" fill="#5B5B5B" d="M345.25 692.25 Q345.25 689.8 346.95 688.15 348.65 686.45 351.05 686.45 353.45 686.45 355.2 688.15 356.9 689.8 356.9 692.25 356.9 694.65 355.2 696.3 353.45 698.05 351.05 698.05 348.65 698.05 346.95 696.3 345.25 694.65 345.25 692.25 M422.65 692.25 Q422.65 694.65 420.95 696.3 419.25 698.05 416.85 698.05 414.45 698.05 412.7 696.3 411 694.65 411 692.25 411 689.8 412.7 688.15 414.45 686.45 416.85 686.45 419.25 686.45 420.95 688.15 422.65 689.8 422.65 692.25"/>
+ <path stroke="none" fill="#AA6C3C" d="M401.45 663.9 L401.45 664.75 Q401.05 675.35 396.3 683 391.2 691.4 383.95 691.4 376.7 691.4 371.55 683 366.85 675.35 366.5 664.75 L366.45 663.9 Q366.45 658.7 371.55 655.05 376.7 651.4 383.95 651.4 391.2 651.4 396.3 655.05 401.45 658.7 401.45 663.9"/>
+ <path stroke="none" fill="#545454" d="M371.1 707.65 L370.9 705.3 370.9 704.4 Q371.2 702 374.7 700.3 378.55 698.45 383.95 698.45 389.35 698.45 393.2 700.3 396.65 702 397 704.4 L397 705.3 396.8 707.65 Q396.1 705.75 393.2 704.3 389.35 702.45 383.95 702.45 378.55 702.45 374.7 704.3 371.8 705.7 371.1 707.65"/>
+ <path stroke="none" fill="#464646" d="M371.1 707.65 Q371.8 705.7 374.7 704.3 378.55 702.45 383.95 702.45 389.35 702.45 393.2 704.3 396.1 705.75 396.8 707.65 396.15 711.6 393.2 714.55 391.05 716.7 388.4 717.65 384.15 719.4 379.5 717.65 376.85 716.7 374.7 714.55 371.75 711.6 371.1 707.65"/>
+ <path stroke="none" fill="#383838" d="M388.4 717.65 L389.25 718.65 Q390.2 719.6 391.3 720.15 392.7 720.8 394.35 720.8 397.35 720.8 399.5 718.65 L400.75 717 401.25 716.55 401.95 716.6 406.65 719.05 407.1 719.55 407.05 720.2 405.55 722.5 404.5 723.65 Q400.25 727.85 394.35 727.85 388.45 727.85 384.25 723.65 L383.95 723.35 383.65 723.65 Q379.4 727.85 373.5 727.85 367.55 727.85 363.4 723.65 L362.35 722.5 Q361.45 721.4 360.85 720.3 360.65 719.95 360.8 719.65 360.85 719.3 361.2 719.1 L365.8 716.55 366.45 716.45 367 716.9 Q367.55 717.85 368.35 718.65 370.5 720.8 373.5 720.8 375.15 720.8 376.6 720.15 L378.65 718.65 379.5 717.65 Q384.15 719.4 388.4 717.65"/>
+ <path stroke="none" fill="#955E34" d="M429.35 768 L338.6 768 Q343.1 760.65 348.05 755.05 355.75 746.25 364.55 741.75 373.7 737.05 384 737.05 394.4 737.05 403.6 741.8 412.25 746.3 419.9 755 424.85 760.6 429.35 768"/>
+ <path stroke="none" fill="#2ECC71" d="M901.7 663.4 Q902.05 659.6 904.15 656.45 905.05 655.05 906.35 653.75 L906.35 653.7 908.65 651.85 909.15 651.5 Q912.35 649.45 916.4 649.25 L917.55 649.15 Q924.1 649.15 928.8 653.7 L928.9 653.85 931.05 656.45 932.25 658.75 932.25 658.8 Q933.15 661 933.4 663.45 L933.45 661.85 933.45 661.8 Q933.4 658.9 932.55 656.45 L932.25 655.65 932.25 655.6 Q931.1 652.9 928.9 650.7 L928.8 650.55 Q924.1 646 917.55 646 L916.4 646.1 Q912.35 646.3 909.15 648.35 L908.65 648.7 906.35 650.55 906.35 650.6 Q903.7 653.2 902.55 656.45 901.65 658.95 901.65 661.85 L901.7 663.4 M927.15 661.85 L927.15 661.8 Q927.15 659.8 926.45 658.1 L925.55 656.45 924.4 655.05 Q921.55 652.3 917.55 652.3 L917 652.35 Q914.55 652.4 912.55 653.7 L912.45 653.75 Q911.55 654.3 910.8 655.05 L909.6 656.45 Q907.95 658.8 907.95 661.85 907.95 665.85 910.8 668.55 L911.85 669.55 Q914.3 671.45 917.55 671.45 921.55 671.45 924.4 668.55 927.15 665.85 927.15 661.85 M907.1 676.9 L906.55 676.55 Q905.75 676.15 904.4 676.55 L904.25 676.55 Q902.55 677.1 901.05 678.6 L900.95 678.7 900.35 679.6 Q900.1 680.15 900.1 680.85 900.1 682.1 901 683 901.9 683.95 903.2 683.95 904.45 683.95 905.35 683.1 L905.4 683 Q906.65 681.75 907.25 680.4 L907.5 679.6 907.6 679.3 Q907.85 678.15 907.45 677.4 L907.1 676.9 M886.55 683.1 Q887.45 683.95 888.7 683.95 889.95 683.95 890.85 683 891.8 682.1 891.8 680.85 L891.55 679.6 890.95 678.7 890.85 678.6 Q889.3 677.05 887.6 676.55 L887.5 676.55 Q886.15 676.15 885.35 676.55 885 676.65 884.8 676.9 L884.4 677.4 Q884 678.15 884.3 679.3 L884.4 679.6 Q884.45 680 884.65 680.4 885.2 681.75 886.45 683 L886.55 683.1 M960 652.2 L960 681.35 959.6 681.45 Q932.85 688 895.95 688 859.05 688 832.25 681.4 L832 681.35 832 652.2 Q832.25 644 840.65 644 L951.35 644 Q959.75 644 960 652.2 M858.45 663.5 Q858.7 660.85 859.75 658.55 L859.65 658.75 860.85 656.45 Q861.8 655 863.15 653.7 867.8 649.15 874.3 649.15 L875.4 649.25 Q879.3 649.4 882.65 651.5 L883.05 651.75 885.05 653.2 885.65 653.75 885.65 653.8 Q886.9 655.05 887.8 656.45 889.8 659.55 890.15 663.4 L890.25 661.85 Q890.25 658.95 889.4 656.45 888.25 653.25 885.65 650.65 L885.65 650.6 885.05 650.05 883.05 648.6 882.65 648.3 Q879.3 646.25 875.4 646.1 L874.3 646 Q867.8 646 863.15 650.55 860.8 652.8 859.65 655.6 L859.75 655.4 859.35 656.45 Q858.4 658.95 858.4 661.8 L858.4 661.85 858.45 663.5 M864.7 661.85 Q864.7 665.85 867.55 668.55 870.35 671.45 874.3 671.45 877.45 671.45 880 669.55 L880.9 668.85 881.15 668.55 Q883.95 665.85 883.95 661.85 883.95 658.8 882.35 656.45 L881.15 655.05 880.9 654.85 Q880.2 654.2 879.4 653.7 L879.35 653.7 Q877.3 652.4 874.85 652.35 L874.3 652.3 Q870.35 652.3 867.55 655.05 L866.35 656.45 865.5 658 Q864.7 659.75 864.7 661.8 L864.7 661.85"/>
+ <path stroke="none" fill="#31DE7A" d="M901.7 663.4 L901.65 661.85 Q901.65 658.95 902.55 656.45 903.7 653.2 906.35 650.6 L906.35 650.55 908.65 648.7 909.15 648.35 Q912.35 646.3 916.4 646.1 L917.55 646 Q924.1 646 928.8 650.55 L928.9 650.7 Q931.1 652.9 932.25 655.6 L932.25 655.65 932.55 656.45 Q933.4 658.9 933.45 661.8 L933.45 661.85 933.4 663.45 Q933.15 661 932.25 658.8 L932.25 658.75 931.05 656.45 928.9 653.85 928.8 653.7 Q924.1 649.15 917.55 649.15 L916.4 649.25 Q912.35 649.45 909.15 651.5 L908.65 651.85 906.35 653.7 906.35 653.75 Q905.05 655.05 904.15 656.45 902.05 659.6 901.7 663.4 M832 652.2 L832 648.7 Q832 640 840.65 640 L951.35 640 Q960 640 960 648.7 L960 652.2 Q959.75 644 951.35 644 L840.65 644 Q832.25 644 832 652.2 M858.45 663.5 L858.4 661.85 858.4 661.8 Q858.4 658.95 859.35 656.45 L859.75 655.4 859.65 655.6 Q860.8 652.8 863.15 650.55 867.8 646 874.3 646 L875.4 646.1 Q879.3 646.25 882.65 648.3 L883.05 648.6 885.05 650.05 885.65 650.6 885.65 650.65 Q888.25 653.25 889.4 656.45 890.25 658.95 890.25 661.85 L890.15 663.4 Q889.8 659.55 887.8 656.45 886.9 655.05 885.65 653.8 L885.65 653.75 885.05 653.2 883.05 651.75 882.65 651.5 Q879.3 649.4 875.4 649.25 L874.3 649.15 Q867.8 649.15 863.15 653.7 861.8 655 860.85 656.45 L859.65 658.75 859.75 658.55 Q858.7 660.85 858.45 663.5"/>
+ <path stroke="none" fill="#D23007" d="M927.15 661.85 Q927.15 665.85 924.4 668.55 921.55 671.45 917.55 671.45 914.3 671.45 911.85 669.55 L910.8 668.55 Q907.95 665.85 907.95 661.85 907.95 658.8 909.6 656.45 L910.8 655.05 Q911.55 654.3 912.45 653.75 L912.55 653.7 Q914.55 652.4 917 652.35 L917.55 652.3 Q921.55 652.3 924.4 655.05 L925.55 656.45 926.45 658.1 Q927.15 659.8 927.15 661.8 L927.15 661.85 M922.55 662.05 Q922.55 659.45 920.75 657.75 919.85 656.85 918.75 656.45 L916.5 656.05 914.3 656.45 Q913.35 656.8 912.5 657.5 L912.2 657.75 Q910.45 659.45 910.45 662.05 910.45 664.5 912.15 666.2 L912.2 666.2 Q914.05 668.05 916.5 668.05 919 668.05 920.75 666.2 922.55 664.55 922.55 662.05 M864.7 661.85 L864.7 661.8 Q864.7 659.75 865.5 658 L866.35 656.45 867.55 655.05 Q870.35 652.3 874.3 652.3 L874.85 652.35 Q877.3 652.4 879.35 653.7 L879.4 653.7 Q880.2 654.2 880.9 654.85 L881.15 655.05 882.35 656.45 Q883.95 658.8 883.95 661.85 883.95 665.85 881.15 668.55 L880.9 668.85 880 669.55 Q877.45 671.45 874.3 671.45 870.35 671.45 867.55 668.55 864.7 665.85 864.7 661.85 M869.4 662.05 Q869.4 664.55 871.15 666.2 872.85 668.05 875.4 668.05 877.85 668.05 879.65 666.2 L879.7 666.2 880.9 664.5 Q881.4 663.4 881.4 662.05 881.4 660.65 880.9 659.5 880.45 658.55 879.65 657.75 L879.35 657.5 Q878.55 656.8 877.6 656.45 L875.4 656.05 873.15 656.45 Q872.05 656.85 871.15 657.75 869.4 659.45 869.4 662.05"/>
+ <path stroke="none" fill="#3F3F3F" d="M869.4 662.05 Q869.4 659.45 871.15 657.75 872.05 656.85 873.15 656.45 L875.4 656.05 877.6 656.45 Q878.55 656.8 879.35 657.5 L879.65 657.75 Q880.45 658.55 880.9 659.5 881.4 660.65 881.4 662.05 881.4 663.4 880.9 664.5 L879.7 666.2 879.65 666.2 Q877.85 668.05 875.4 668.05 872.85 668.05 871.15 666.2 869.4 664.55 869.4 662.05 M922.55 662.05 Q922.55 664.55 920.75 666.2 919 668.05 916.5 668.05 914.05 668.05 912.2 666.2 L912.15 666.2 Q910.45 664.5 910.45 662.05 910.45 659.45 912.2 657.75 L912.5 657.5 Q913.35 656.8 914.3 656.45 L916.5 656.05 918.75 656.45 Q919.85 656.85 920.75 657.75 922.55 659.45 922.55 662.05"/>
+ <path stroke="none" fill="#23A35A" d="M907.1 676.9 L907.45 677.4 Q907.85 678.15 907.6 679.3 L907.5 679.6 907.25 680.4 Q906.65 681.75 905.4 683 L905.35 683.1 Q904.45 683.95 903.2 683.95 901.9 683.95 901 683 900.1 682.1 900.1 680.85 900.1 680.15 900.35 679.6 L900.95 678.7 901.05 678.6 Q902.55 677.1 904.25 676.55 L904.4 676.55 Q905.75 676.15 906.55 676.55 L907.1 676.9 M886.55 683.1 L886.45 683 Q885.2 681.75 884.65 680.4 884.45 680 884.4 679.6 L884.3 679.3 Q884 678.15 884.4 677.4 L884.8 676.9 Q885 676.65 885.35 676.55 886.15 676.15 887.5 676.55 L887.6 676.55 Q889.3 677.05 890.85 678.6 L890.95 678.7 891.55 679.6 891.8 680.85 Q891.8 682.1 890.85 683 889.95 683.95 888.7 683.95 887.45 683.95 886.55 683.1"/>
+ <path stroke="none" fill="#1B8045" d="M960 652.2 L960 648.7 Q960 640 951.35 640 L840.65 640 Q832 640 832 648.7 L832 652.2 832 681.35 832 685.35 832 759.85 Q832.25 768 840.65 768 L951.35 768 Q959.75 768 960 759.85 L960 685.35 960 681.35 960 652.2 M951.35 636 Q964 636 964 648.7 L964 759.85 964 760 Q963.7 772 951.35 772 L840.65 772 Q828.3 772 828 760 L828 759.85 828 648.7 Q828 636 840.65 636 L951.35 636"/>
+ <path stroke="none" fill="#E5E5E5" d="M960 685.35 L960 759.85 Q959.75 768 951.35 768 L840.65 768 Q832.25 768 832 759.85 L832 685.35 832.25 685.4 Q859.05 692 895.95 692 932.85 692 959.6 685.45 L960 685.35 M923 746.25 Q922.4 743.95 920.3 742.8 918.3 741.65 916.05 742.25 913.75 742.85 912.5 744.9 911.4 746.9 912 749.2 912.6 751.45 914.6 752.65 916.7 753.85 919 753.25 921.25 752.65 922.4 750.55 923.6 748.5 923 746.25 M921.85 731.45 Q921.45 730.05 920.2 729.3 918.85 728.55 917.45 728.95 916.05 729.3 915.35 730.6 914.6 731.9 915 733.3 915.35 734.7 916.65 735.45 917.9 736.15 919.3 735.8 920.7 735.4 921.5 734.15 922.2 732.85 921.85 731.45 M935.65 740.15 Q935.15 738.25 933.45 737.25 931.75 736.25 929.9 736.75 928 737.25 927 739 926 740.7 926.5 742.6 927.05 744.45 928.75 745.45 930.45 746.4 932.35 745.9 934.2 745.4 935.2 743.7 936.2 742 935.65 740.15"/>
+ <path stroke="none" fill="#FFFFFF" d="M960 681.35 L960 685.35 959.6 685.45 Q932.85 692 895.95 692 859.05 692 832.25 685.4 L832 685.35 832 681.35 832.25 681.4 Q859.05 688 895.95 688 932.85 688 959.6 681.45 L960 681.35"/>
+ <path stroke="none" fill="#D7D7D7" d="M935.65 740.15 Q936.2 742 935.2 743.7 934.2 745.4 932.35 745.9 930.45 746.4 928.75 745.45 927.05 744.45 926.5 742.6 926 740.7 927 739 928 737.25 929.9 736.75 931.75 736.25 933.45 737.25 935.15 738.25 935.65 740.15 M921.85 731.45 Q922.2 732.85 921.5 734.15 920.7 735.4 919.3 735.8 917.9 736.15 916.65 735.45 915.35 734.7 915 733.3 914.6 731.9 915.35 730.6 916.05 729.3 917.45 728.95 918.85 728.55 920.2 729.3 921.45 730.05 921.85 731.45 M923 746.25 Q923.6 748.5 922.4 750.55 921.25 752.65 919 753.25 916.7 753.85 914.6 752.65 912.6 751.45 912 749.2 911.4 746.9 912.5 744.9 913.75 742.85 916.05 742.25 918.3 741.65 920.3 742.8 922.4 743.95 923 746.25"/>
+ <path stroke="none" fill="#6D4526" d="M1216 652.2 L1216 648.7 Q1216 640 1207.35 640 L1096.65 640 Q1088 640 1088 648.7 L1088 652.2 1088 759.85 Q1088.25 768 1096.65 768 L1207.35 768 Q1215.75 768 1216 759.85 L1216 652.2 M1084 648.7 Q1084 636 1096.65 636 L1207.35 636 Q1220 636 1220 648.7 L1220 759.85 1220 760 Q1219.7 772 1207.35 772 L1096.65 772 Q1084.3 772 1084 760 L1084 759.85 1084 648.7"/>
+ <path stroke="none" fill="#B4723F" d="M1088 652.2 L1088 648.7 Q1088 640 1096.65 640 L1207.35 640 Q1216 640 1216 648.7 L1216 652.2 Q1215.75 644 1207.35 644 L1163 644 1143.05 644 1096.65 644 Q1088.25 644 1088 652.2"/>
+ <path stroke="none" fill="#A16639" d="M1088 652.2 Q1088.25 644 1096.65 644 L1143.05 644 1142.8 655.35 Q1137.05 653.3 1130.9 656.5 1125 659.55 1120.05 657.95 1115.95 656.75 1117.25 652.15 1113.75 652.45 1112 654.4 1109.65 657.2 1110.7 663.3 1111.9 670.25 1123.85 672.95 1135.05 675.05 1141.2 673 1139.05 688.7 1134.5 703.05 1130.2 705.15 1126.45 708.35 1115.9 717.4 1115.5 730 L1115.5 731 1115.55 732.9 Q1116.3 744.9 1126.45 753.6 1137.45 763 1153 763 1168.5 763 1179.5 753.6 1189.7 744.95 1190.45 732.9 L1190.5 731 1190.5 730 Q1190.05 717.4 1179.5 708.35 1175.75 705.15 1171.5 703.1 1166.85 688.4 1164.75 672.35 1170.9 675.35 1183.7 672.95 1195.65 670.25 1196.85 663.3 1197.9 657.2 1195.5 654.4 1193.8 652.45 1190.3 652.15 1191.6 656.75 1187.5 657.95 1182.55 659.55 1176.65 656.5 1169.65 652.9 1163.25 656 1162.95 650.1 1163 644 L1207.35 644 Q1215.75 644 1216 652.2 L1216 759.85 Q1215.75 768 1207.35 768 L1096.65 768 Q1088.25 768 1088 759.85 L1088 652.2 M1105.45 689.35 Q1105.45 693.5 1108.4 696.35 1111.35 699.35 1115.5 699.35 1119.6 699.35 1122.6 696.35 1125.5 693.5 1125.5 689.35 1125.5 685.15 1122.6 682.25 1119.6 679.3 1115.5 679.3 1111.35 679.3 1108.4 682.25 1105.45 685.15 1105.45 689.35 M1198.55 689.35 Q1198.55 685.15 1195.6 682.25 1192.65 679.3 1188.5 679.3 1184.4 679.3 1181.4 682.25 1178.5 685.15 1178.5 689.35 1178.5 693.5 1181.4 696.35 1184.4 699.35 1188.5 699.35 1192.65 699.35 1195.6 696.35 1198.55 693.5 1198.55 689.35"/>
+ <path stroke="none" fill="#FFDFC6" d="M1112 654.4 Q1113.75 652.45 1117.25 652.15 1115.95 656.75 1120.05 657.95 1125 659.55 1130.9 656.5 1137.05 653.3 1142.8 655.35 L1144.4 656.05 Q1147.8 658.2 1148.4 661.5 1146.5 659.65 1143.55 658.3 L1142.65 658 Q1134.8 655.3 1128.9 658.7 1123.65 661.75 1117.55 660.2 1112.6 659 1112 654.4 M1195.5 654.4 Q1194.95 659 1190 660.2 1183.85 661.75 1178.65 658.7 1172.4 655.1 1164 658.3 L1163.4 658.6 Q1160.85 659.85 1159.15 661.5 1159.75 658.2 1163.15 656.05 L1163.25 656 Q1169.65 652.9 1176.65 656.5 1182.55 659.55 1187.5 657.95 1191.6 656.75 1190.3 652.15 1193.8 652.45 1195.5 654.4"/>
+ <path stroke="none" fill="#EBCEB7" d="M1195.5 654.4 Q1197.9 657.2 1196.85 663.3 1195.65 670.25 1183.7 672.95 1170.9 675.35 1164.75 672.35 1161.6 670.75 1160.15 667.8 1159.4 666.1 1159.1 664.05 1158.9 662.7 1159.15 661.5 1160.85 659.85 1163.4 658.6 L1164 658.3 Q1172.4 655.1 1178.65 658.7 1183.85 661.75 1190 660.2 1194.95 659 1195.5 654.4 M1112 654.4 Q1112.6 659 1117.55 660.2 1123.65 661.75 1128.9 658.7 1134.8 655.3 1142.65 658 L1143.55 658.3 Q1146.5 659.65 1148.4 661.5 1148.65 662.7 1148.45 664.05 1148.15 666.1 1147.4 667.8 1145.6 671.5 1141.2 673 1135.05 675.05 1123.85 672.95 1111.9 670.25 1110.7 663.3 1109.65 657.2 1112 654.4"/>
+ <path stroke="none" fill="#5B5B5B" d="M1110.95 690.55 Q1110.95 687.9 1112.75 686.1 1114.6 684.25 1117.25 684.25 1119.8 684.25 1121.7 686.1 1123.55 687.9 1123.55 690.55 1123.55 693.1 1121.7 694.9 1119.8 696.7 1117.25 696.7 1114.6 696.7 1112.75 694.9 1110.95 693.1 1110.95 690.55 M1193.05 690.55 Q1193.05 693.1 1191.25 694.9 1189.4 696.7 1186.75 696.7 1184.2 696.7 1182.3 694.9 1180.45 693.1 1180.45 690.55 1180.45 687.9 1182.3 686.1 1184.2 684.25 1186.75 684.25 1189.4 684.25 1191.25 686.1 1193.05 687.9 1193.05 690.55"/>
+ <path stroke="none" fill="#FFFFFF" d="M1193.05 690.55 Q1193.05 687.9 1191.25 686.1 1189.4 684.25 1186.75 684.25 1184.2 684.25 1182.3 686.1 1180.45 687.9 1180.45 690.55 1180.45 693.1 1182.3 694.9 1184.2 696.7 1186.75 696.7 1189.4 696.7 1191.25 694.9 1193.05 693.1 1193.05 690.55 M1110.95 690.55 Q1110.95 693.1 1112.75 694.9 1114.6 696.7 1117.25 696.7 1119.8 696.7 1121.7 694.9 1123.55 693.1 1123.55 690.55 1123.55 687.9 1121.7 686.1 1119.8 684.25 1117.25 684.25 1114.6 684.25 1112.75 686.1 1110.95 687.9 1110.95 690.55 M1105.45 689.35 Q1105.45 685.15 1108.4 682.25 1111.35 679.3 1115.5 679.3 1119.6 679.3 1122.6 682.25 1125.5 685.15 1125.5 689.35 1125.5 693.5 1122.6 696.35 1119.6 699.35 1115.5 699.35 1111.35 699.35 1108.4 696.35 1105.45 693.5 1105.45 689.35 M1198.55 689.35 Q1198.55 693.5 1195.6 696.35 1192.65 699.35 1188.5 699.35 1184.4 699.35 1181.4 696.35 1178.5 693.5 1178.5 689.35 1178.5 685.15 1181.4 682.25 1184.4 679.3 1188.5 679.3 1192.65 679.3 1195.6 682.25 1198.55 685.15 1198.55 689.35"/>
+ <path stroke="none" fill="#704E35" d="M1190.45 732.9 Q1189.6 721 1179.5 712.35 1176.5 709.8 1173.15 707.95 1164.25 703 1153 703 1141.75 703 1132.9 707.9 1129.5 709.75 1126.45 712.35 1116.35 721 1115.55 732.9 L1115.5 731 1115.5 730 Q1115.9 717.4 1126.45 708.35 1130.2 705.15 1134.5 703.05 1142.75 699 1153 699 1163.25 699 1171.5 703.1 1175.75 705.15 1179.5 708.35 1190.05 717.4 1190.5 730 L1190.5 731 1190.45 732.9"/>
+ <path stroke="none" fill="#5F422D" d="M1190.45 732.9 Q1189.7 744.95 1179.5 753.6 1168.5 763 1153 763 1137.45 763 1126.45 753.6 1116.3 744.9 1115.55 732.9 1116.35 721 1126.45 712.35 1129.5 709.75 1132.9 707.9 1141.75 703 1153 703 1164.25 703 1173.15 707.95 1176.5 709.8 1179.5 712.35 1189.6 721 1190.45 732.9 M1143.05 644 L1163 644 Q1162.95 650.1 1163.25 656 L1163.15 656.05 Q1159.75 658.2 1159.15 661.5 1158.9 662.7 1159.1 664.05 1159.4 666.1 1160.15 667.8 1161.6 670.75 1164.75 672.35 1166.85 688.4 1171.5 703.1 1163.25 699 1153 699 1142.75 699 1134.5 703.05 1139.05 688.7 1141.2 673 1145.6 671.5 1147.4 667.8 1148.15 666.1 1148.45 664.05 1148.65 662.7 1148.4 661.5 1147.8 658.2 1144.4 656.05 L1142.8 655.35 1143.05 644 M1137.4 723.4 Q1138.9 724.8 1140.95 724.8 1143.1 724.8 1144.6 723.3 1146.1 721.8 1146.1 719.65 1146.1 718.55 1145.75 717.65 L1144.7 716.1 1144.55 715.95 Q1142 713.4 1139.15 712.55 L1138.95 712.5 Q1136.75 711.85 1135.4 712.55 1134.9 712.75 1134.5 713.15 L1133.9 714 Q1133.25 715.25 1133.7 717.15 L1133.8 717.65 1134.25 718.95 Q1135.2 721.2 1137.25 723.25 L1137.4 723.4 M1171.5 713.15 L1170.65 712.55 Q1169.25 711.85 1167.05 712.5 L1166.8 712.6 Q1163.95 713.45 1161.45 715.95 L1161.3 716.1 Q1160.65 716.8 1160.3 717.65 1159.9 718.55 1159.9 719.65 1159.9 721.8 1161.4 723.3 1162.9 724.8 1165.05 724.8 1167.1 724.8 1168.6 723.4 L1168.75 723.25 Q1170.8 721.2 1171.75 718.95 L1172.2 717.65 1172.35 717.15 Q1172.75 715.25 1172.1 714 L1171.5 713.15"/>
+ <path stroke="none" fill="#4F3725" d="M1171.5 713.15 L1172.1 714 Q1172.75 715.25 1172.35 717.15 L1172.2 717.65 1171.75 718.95 Q1170.8 721.2 1168.75 723.25 L1168.6 723.4 Q1167.1 724.8 1165.05 724.8 1162.9 724.8 1161.4 723.3 1159.9 721.8 1159.9 719.65 1159.9 718.55 1160.3 717.65 1160.65 716.8 1161.3 716.1 L1161.45 715.95 Q1163.95 713.45 1166.8 712.6 L1167.05 712.5 Q1169.25 711.85 1170.65 712.55 L1171.5 713.15 M1137.4 723.4 L1137.25 723.25 Q1135.2 721.2 1134.25 718.95 L1133.8 717.65 1133.7 717.15 Q1133.25 715.25 1133.9 714 L1134.5 713.15 Q1134.9 712.75 1135.4 712.55 1136.75 711.85 1138.95 712.5 L1139.15 712.55 Q1142 713.4 1144.55 715.95 L1144.7 716.1 1145.75 717.65 Q1146.1 718.55 1146.1 719.65 1146.1 721.8 1144.6 723.3 1143.1 724.8 1140.95 724.8 1138.9 724.8 1137.4 723.4"/>
+ <path stroke="none" fill="#6D4526" d="M1216 460.2 L1216 456.7 Q1216 448 1207.35 448 L1096.65 448 Q1088 448 1088 456.7 L1088 460.2 1088 567.85 Q1088.25 576 1096.65 576 L1207.35 576 Q1215.75 576 1216 567.85 L1216 460.2 M1207.35 444 Q1220 444 1220 456.7 L1220 567.85 1220 568 Q1219.7 580 1207.35 580 L1096.65 580 Q1084.3 580 1084 568 L1084 567.85 1084 456.7 Q1084 444 1096.65 444 L1207.35 444"/>
+ <path stroke="none" fill="#B4723F" d="M1088 460.2 L1088 456.7 Q1088 448 1096.65 448 L1207.35 448 Q1216 448 1216 456.7 L1216 460.2 Q1215.75 452 1207.35 452 L1162 452 1162 451.95 1152 451.25 1142 451.95 1142 452 1096.65 452 Q1088.25 452 1088 460.2"/>
+ <path stroke="none" fill="#AA6C3B" d="M1142 452 L1142 451.95 1152 451.25 1162 451.95 1162 452 1162 455.9 1142.05 455.9 1142 452 M1173 466.45 L1173 478.35 Q1172.9 481.05 1171 482.9 1169.05 484.9 1166.7 486.45 L1164.5 487.85 Q1166.6 501.1 1170.55 513.35 1162.25 509.25 1152 509.25 1141.75 509.25 1133.5 513.3 1137.4 501.05 1139.55 487.85 L1137.55 486.6 Q1134.9 484.9 1132.95 482.9 1131.1 481.05 1131 478.35 L1131 466.45 Q1131.05 465.15 1131.5 464.05 1132 462.9 1132.95 461.9 1134.9 459.9 1137.7 459.9 L1166.3 459.9 Q1169.05 459.9 1171 461.9 1172 462.9 1172.5 464.1 1172.95 465.2 1173 466.45"/>
+ <path stroke="none" fill="#A16639" d="M1173 466.45 L1173 462.7 Q1173 459.9 1171 457.9 1169.05 455.9 1166.3 455.9 L1162 455.9 1162 452 1207.35 452 Q1215.75 452 1216 460.2 L1216 567.85 Q1215.75 576 1207.35 576 L1096.65 576 Q1088.25 576 1088 567.85 L1088 460.2 Q1088.25 452 1096.65 452 L1142 452 1142.05 455.9 1137.7 455.9 Q1134.9 455.9 1132.95 457.9 1131 459.9 1131 462.7 L1131 466.45 1131 478.35 Q1131.1 481.05 1132.95 482.9 1134.9 484.9 1137.55 486.6 L1139.55 487.85 Q1137.4 501.05 1133.5 513.3 1129.2 515.4 1125.45 518.6 1114.9 527.65 1114.5 540.25 L1114.5 541.25 1114.55 543.15 Q1115.3 555.15 1125.45 563.85 1136.45 573.25 1152 573.25 1167.5 573.25 1178.5 563.85 1188.7 555.2 1189.45 543.15 L1189.5 541.25 1189.5 540.25 Q1189.05 527.65 1178.5 518.6 1174.75 515.45 1170.55 513.35 1166.6 501.1 1164.5 487.85 L1166.7 486.45 Q1169.05 484.9 1171 482.9 1172.9 481.05 1173 478.35 L1173 466.45 M1200.5 493.8 Q1200.5 488.6 1196.85 484.95 1193.2 481.3 1188 481.3 1182.9 481.3 1179.2 484.95 1175.55 488.6 1175.55 493.8 1175.55 498.95 1179.2 502.55 1182.9 506.25 1188 506.25 1193.2 506.25 1196.85 502.55 1200.5 498.95 1200.5 493.8 M1103.5 493.8 Q1103.5 498.95 1107.15 502.55 1110.8 506.25 1116 506.25 1121.1 506.25 1124.8 502.55 1128.45 498.95 1128.45 493.8 1128.45 488.6 1124.8 484.95 1121.1 481.3 1116 481.3 1110.8 481.3 1107.15 484.95 1103.5 488.6 1103.5 493.8"/>
+ <path stroke="none" fill="#BD7841" d="M1162 455.9 L1166.3 455.9 Q1169.05 455.9 1171 457.9 1173 459.9 1173 462.7 L1173 466.45 Q1172.95 465.2 1172.5 464.1 1172 462.9 1171 461.9 1169.05 459.9 1166.3 459.9 L1137.7 459.9 Q1134.9 459.9 1132.95 461.9 1132 462.9 1131.5 464.05 1131.05 465.15 1131 466.45 L1131 462.7 Q1131 459.9 1132.95 457.9 1134.9 455.9 1137.7 455.9 L1142.05 455.9 1162 455.9"/>
+ <path stroke="none" fill="#FFFFFF" d="M1200.5 493.8 Q1200.5 498.95 1196.85 502.55 1193.2 506.25 1188 506.25 1182.9 506.25 1179.2 502.55 1175.55 498.95 1175.55 493.8 1175.55 488.6 1179.2 484.95 1182.9 481.3 1188 481.3 1193.2 481.3 1196.85 484.95 1200.5 488.6 1200.5 493.8 M1195.75 494 Q1195.75 490.4 1193.25 487.85 1190.75 485.35 1187.1 485.35 1183.55 485.35 1180.95 487.85 1178.45 490.4 1178.45 494 1178.45 497.6 1180.95 500.05 1183.55 502.6 1187.1 502.6 1190.75 502.6 1193.25 500.05 1195.75 497.6 1195.75 494 M1103.5 493.8 Q1103.5 488.6 1107.15 484.95 1110.8 481.3 1116 481.3 1121.1 481.3 1124.8 484.95 1128.45 488.6 1128.45 493.8 1128.45 498.95 1124.8 502.55 1121.1 506.25 1116 506.25 1110.8 506.25 1107.15 502.55 1103.5 498.95 1103.5 493.8 M1108.2 494 Q1108.2 497.6 1110.75 500.05 1113.25 502.6 1116.9 502.6 1120.45 502.6 1123 500.05 1125.55 497.6 1125.55 494 1125.55 490.4 1123 487.85 1120.45 485.35 1116.9 485.35 1113.25 485.35 1110.75 487.85 1108.2 490.4 1108.2 494"/>
+ <path stroke="none" fill="#5B5B5B" d="M1108.2 494 Q1108.2 490.4 1110.75 487.85 1113.25 485.35 1116.9 485.35 1120.45 485.35 1123 487.85 1125.55 490.4 1125.55 494 1125.55 497.6 1123 500.05 1120.45 502.6 1116.9 502.6 1113.25 502.6 1110.75 500.05 1108.2 497.6 1108.2 494 M1195.75 494 Q1195.75 497.6 1193.25 500.05 1190.75 502.6 1187.1 502.6 1183.55 502.6 1180.95 500.05 1178.45 497.6 1178.45 494 1178.45 490.4 1180.95 487.85 1183.55 485.35 1187.1 485.35 1190.75 485.35 1193.25 487.85 1195.75 490.4 1195.75 494"/>
+ <path stroke="none" fill="#B67340" d="M1170.55 513.35 Q1174.75 515.45 1178.5 518.6 1189.05 527.65 1189.5 540.25 L1189.5 541.25 1189.45 543.15 Q1188.6 531.25 1178.5 522.6 1175.5 520.05 1172.15 518.2 1163.25 513.25 1152 513.25 1140.75 513.25 1131.9 518.15 1128.5 520 1125.45 522.6 1115.35 531.25 1114.55 543.15 L1114.5 541.25 1114.5 540.25 Q1114.9 527.65 1125.45 518.6 1129.2 515.4 1133.5 513.3 1141.75 509.25 1152 509.25 1162.25 509.25 1170.55 513.35"/>
+ <path stroke="none" fill="#8E5A32" d="M1189.45 543.15 Q1188.7 555.2 1178.5 563.85 1167.5 573.25 1152 573.25 1136.45 573.25 1125.45 563.85 1115.3 555.15 1114.55 543.15 1115.35 531.25 1125.45 522.6 1128.5 520 1131.9 518.15 1140.75 513.25 1152 513.25 1163.25 513.25 1172.15 518.2 1175.5 520.05 1178.5 522.6 1188.6 531.25 1189.45 543.15 M1136.4 533.65 Q1137.9 535.05 1139.95 535.05 1142.1 535.05 1143.6 533.55 1145.1 532.05 1145.1 529.9 1145.1 528.8 1144.75 527.9 L1143.7 526.35 1143.55 526.2 Q1141 523.65 1138.15 522.8 L1137.95 522.75 Q1135.75 522.1 1134.4 522.8 1133.9 523 1133.5 523.4 1133.15 523.75 1132.9 524.25 1132.25 525.5 1132.7 527.4 L1132.8 527.9 Q1132.95 528.55 1133.25 529.2 1134.2 531.45 1136.25 533.5 L1136.4 533.65 M1170.5 523.4 L1169.65 522.8 Q1168.25 522.1 1166.05 522.75 L1165.8 522.85 Q1162.95 523.7 1160.45 526.2 L1160.3 526.35 Q1159.65 527.05 1159.3 527.9 1158.9 528.8 1158.9 529.9 1158.9 532.05 1160.4 533.55 1161.9 535.05 1164.05 535.05 1166.1 535.05 1167.6 533.65 L1167.75 533.5 Q1169.8 531.45 1170.75 529.2 L1171.2 527.9 1171.35 527.4 Q1171.75 525.5 1171.1 524.25 L1170.5 523.4"/>
+ <path stroke="none" fill="#704627" d="M1170.5 523.4 L1171.1 524.25 Q1171.75 525.5 1171.35 527.4 L1171.2 527.9 1170.75 529.2 Q1169.8 531.45 1167.75 533.5 L1167.6 533.65 Q1166.1 535.05 1164.05 535.05 1161.9 535.05 1160.4 533.55 1158.9 532.05 1158.9 529.9 1158.9 528.8 1159.3 527.9 1159.65 527.05 1160.3 526.35 L1160.45 526.2 Q1162.95 523.7 1165.8 522.85 L1166.05 522.75 Q1168.25 522.1 1169.65 522.8 L1170.5 523.4 M1136.4 533.65 L1136.25 533.5 Q1134.2 531.45 1133.25 529.2 1132.95 528.55 1132.8 527.9 L1132.7 527.4 Q1132.25 525.5 1132.9 524.25 1133.15 523.75 1133.5 523.4 1133.9 523 1134.4 522.8 1135.75 522.1 1137.95 522.75 L1138.15 522.8 Q1141 523.65 1143.55 526.2 L1143.7 526.35 1144.75 527.9 Q1145.1 528.8 1145.1 529.9 1145.1 532.05 1143.6 533.55 1142.1 535.05 1139.95 535.05 1137.9 535.05 1136.4 533.65"/>
+ <path stroke="none" fill="#A16639" d="M919.8 467.25 Q921.1 464.75 917.7 460.4 914.3 455.9 908 452.3 L907.45 452 951.35 452 Q959.75 452 960 460.2 L960 567.85 Q959.75 576 951.35 576 L840.65 576 Q832.25 576 832 567.85 L832 460.2 Q832.25 452 840.65 452 L884.6 452 884.05 452.3 Q877.65 455.9 874.3 460.4 870.9 464.75 872.25 467.3 L872.3 467.4 Q873.85 470.05 879.45 469.25 882.45 468.8 885.7 467.55 884.35 492.05 877.5 513.55 873.2 515.65 869.45 518.85 858.9 527.9 858.5 540.5 L858.5 541.5 858.55 543.4 Q859.3 555.4 869.45 564.1 880.45 573.5 896 573.5 911.5 573.5 922.5 564.1 932.7 555.45 933.45 543.4 L933.5 541.5 933.5 540.5 Q933.05 527.9 922.5 518.85 918.75 515.65 914.5 513.6 907.65 492.05 906.3 467.55 909.55 468.8 912.55 469.25 918.2 470.05 919.7 467.4 L919.8 467.25 M944.5 494.05 Q944.5 488.85 940.85 485.2 937.2 481.55 932 481.55 926.9 481.55 923.2 485.2 919.55 488.85 919.55 494.05 919.55 499.2 923.2 502.8 926.9 506.5 932 506.5 937.2 506.5 940.85 502.8 944.5 499.2 944.5 494.05 M847.5 494.05 Q847.5 499.2 851.15 502.8 854.8 506.5 860 506.5 865.1 506.5 868.8 502.8 872.45 499.2 872.45 494.05 872.45 488.85 868.8 485.2 865.1 481.55 860 481.55 854.8 481.55 851.15 485.2 847.5 488.85 847.5 494.05"/>
+ <path stroke="none" fill="#9C6236" d="M907.45 452 L908 452.3 Q914.3 455.9 917.7 460.4 921.1 464.75 919.8 467.25 919.2 465.7 917.7 463.85 914.3 459.35 908 455.7 L906 454.75 Q895.65 450.15 886.05 454.7 L884.05 455.7 Q877.65 459.35 874.3 463.85 872.8 465.7 872.25 467.3 870.9 464.75 874.3 460.4 877.65 455.9 884.05 452.3 L884.6 452 Q895.55 446.05 907.45 452"/>
+ <path stroke="none" fill="#8E5A32" d="M919.8 467.25 L919.7 467.4 Q918.2 470.05 912.55 469.25 909.55 468.8 906.3 467.55 L904.55 466.8 Q905.25 468.65 905.45 470.4 L905.5 470.6 Q905.65 472.25 905.35 473.3 905.1 474.3 904.4 474.75 902.75 475.65 900 473.55 897.85 471.8 896 469 894.15 471.8 892 473.55 889.25 475.65 887.65 474.75 886.9 474.3 886.6 473.3 886.3 472.25 886.5 470.65 L886.5 470.4 Q886.8 468.65 887.5 466.8 L885.7 467.55 Q882.45 468.8 879.45 469.25 873.85 470.05 872.3 467.4 L872.25 467.3 Q872.8 465.7 874.3 463.85 877.65 459.35 884.05 455.7 L886.05 454.7 Q895.65 450.15 906 454.75 L908 455.7 Q914.3 459.35 917.7 463.85 919.2 465.7 919.8 467.25 M933.45 543.4 Q932.7 555.45 922.5 564.1 911.5 573.5 896 573.5 880.45 573.5 869.45 564.1 859.3 555.4 858.55 543.4 859.35 531.5 869.45 522.85 872.5 520.25 875.9 518.4 884.75 513.5 896 513.5 907.25 513.5 916.15 518.45 919.5 520.3 922.5 522.85 932.6 531.5 933.45 543.4 M880.4 533.9 Q881.9 535.3 883.95 535.3 886.1 535.3 887.6 533.8 889.1 532.3 889.1 530.15 889.1 529.05 888.75 528.15 L887.7 526.6 887.55 526.45 Q885 523.9 882.15 523.05 L881.95 523 Q879.75 522.35 878.4 523.05 877.9 523.25 877.5 523.65 L876.9 524.5 Q876.25 525.75 876.7 527.65 L876.8 528.15 877.25 529.45 Q878.2 531.7 880.25 533.75 L880.4 533.9 M914.5 523.65 L913.65 523.05 Q912.25 522.35 910.05 523 L909.8 523.1 Q906.95 523.95 904.45 526.45 L904.3 526.6 Q903.65 527.3 903.3 528.15 902.9 529.05 902.9 530.15 902.9 532.3 904.4 533.8 905.9 535.3 908.05 535.3 910.1 535.3 911.6 533.9 L911.75 533.75 Q913.8 531.7 914.75 529.45 L915.2 528.15 915.35 527.65 Q915.75 525.75 915.1 524.5 L914.5 523.65"/>
+ <path stroke="none" fill="#F3DBC8" d="M906.3 467.55 Q907.65 492.05 914.5 513.6 906.25 509.5 896 509.5 885.75 509.5 877.5 513.55 884.35 492.05 885.7 467.55 L887.5 466.8 Q886.8 468.65 886.5 470.4 L886.5 470.65 Q886.3 472.25 886.6 473.3 886.9 474.3 887.65 474.75 889.25 475.65 892 473.55 894.15 471.8 896 469 897.85 471.8 900 473.55 902.75 475.65 904.4 474.75 905.1 474.3 905.35 473.3 905.65 472.25 905.5 470.6 L905.45 470.4 Q905.25 468.65 904.55 466.8 L906.3 467.55"/>
+ <path stroke="none" fill="#FFFFFF" d="M944.5 494.05 Q944.5 499.2 940.85 502.8 937.2 506.5 932 506.5 926.9 506.5 923.2 502.8 919.55 499.2 919.55 494.05 919.55 488.85 923.2 485.2 926.9 481.55 932 481.55 937.2 481.55 940.85 485.2 944.5 488.85 944.5 494.05 M939.75 494.25 Q939.75 490.65 937.25 488.1 934.75 485.6 931.1 485.6 927.55 485.6 924.95 488.1 922.45 490.65 922.45 494.25 922.45 497.85 924.95 500.3 927.55 502.85 931.1 502.85 934.75 502.85 937.25 500.3 939.75 497.85 939.75 494.25 M847.5 494.05 Q847.5 488.85 851.15 485.2 854.8 481.55 860 481.55 865.1 481.55 868.8 485.2 872.45 488.85 872.45 494.05 872.45 499.2 868.8 502.8 865.1 506.5 860 506.5 854.8 506.5 851.15 502.8 847.5 499.2 847.5 494.05 M852.2 494.25 Q852.2 497.85 854.75 500.3 857.25 502.85 860.9 502.85 864.45 502.85 867 500.3 869.55 497.85 869.55 494.25 869.55 490.65 867 488.1 864.45 485.6 860.9 485.6 857.25 485.6 854.75 488.1 852.2 490.65 852.2 494.25"/>
+ <path stroke="none" fill="#5B5B5B" d="M852.2 494.25 Q852.2 490.65 854.75 488.1 857.25 485.6 860.9 485.6 864.45 485.6 867 488.1 869.55 490.65 869.55 494.25 869.55 497.85 867 500.3 864.45 502.85 860.9 502.85 857.25 502.85 854.75 500.3 852.2 497.85 852.2 494.25 M939.75 494.25 Q939.75 497.85 937.25 500.3 934.75 502.85 931.1 502.85 927.55 502.85 924.95 500.3 922.45 497.85 922.45 494.25 922.45 490.65 924.95 488.1 927.55 485.6 931.1 485.6 934.75 485.6 937.25 488.1 939.75 490.65 939.75 494.25"/>
+ <path stroke="none" fill="#6D4526" d="M832 460.2 L832 567.85 Q832.25 576 840.65 576 L951.35 576 Q959.75 576 960 567.85 L960 460.2 960 456.7 Q960 448 951.35 448 L840.65 448 Q832 448 832 456.7 L832 460.2 M951.35 444 Q964 444 964 456.7 L964 567.85 964 568 Q963.7 580 951.35 580 L840.65 580 Q828.3 580 828 568 L828 567.85 828 456.7 Q828 444 840.65 444 L951.35 444"/>
+ <path stroke="none" fill="#B4723F" d="M884.6 452 L840.65 452 Q832.25 452 832 460.2 L832 456.7 Q832 448 840.65 448 L951.35 448 Q960 448 960 456.7 L960 460.2 Q959.75 452 951.35 452 L907.45 452 Q895.55 446.05 884.6 452"/>
+ <path stroke="none" fill="#B67340" d="M914.5 513.6 Q918.75 515.65 922.5 518.85 933.05 527.9 933.5 540.5 L933.5 541.5 933.45 543.4 Q932.6 531.5 922.5 522.85 919.5 520.3 916.15 518.45 907.25 513.5 896 513.5 884.75 513.5 875.9 518.4 872.5 520.25 869.45 522.85 859.35 531.5 858.55 543.4 L858.5 541.5 858.5 540.5 Q858.9 527.9 869.45 518.85 873.2 515.65 877.5 513.55 885.75 509.5 896 509.5 906.25 509.5 914.5 513.6"/>
+ <path stroke="none" fill="#704627" d="M880.4 533.9 L880.25 533.75 Q878.2 531.7 877.25 529.45 L876.8 528.15 876.7 527.65 Q876.25 525.75 876.9 524.5 L877.5 523.65 Q877.9 523.25 878.4 523.05 879.75 522.35 881.95 523 L882.15 523.05 Q885 523.9 887.55 526.45 L887.7 526.6 888.75 528.15 Q889.1 529.05 889.1 530.15 889.1 532.3 887.6 533.8 886.1 535.3 883.95 535.3 881.9 535.3 880.4 533.9 M914.5 523.65 L915.1 524.5 Q915.75 525.75 915.35 527.65 L915.2 528.15 914.75 529.45 Q913.8 531.7 911.75 533.75 L911.6 533.9 Q910.1 535.3 908.05 535.3 905.9 535.3 904.4 533.8 902.9 532.3 902.9 530.15 902.9 529.05 903.3 528.15 903.65 527.3 904.3 526.6 L904.45 526.45 Q906.95 523.95 909.8 523.1 L910.05 523 Q912.25 522.35 913.65 523.05 L914.5 523.65"/>
+ <path stroke="none" fill="#FFCC00" d="M653.4 466.25 L652.45 464.75 Q650.45 461.75 647.45 460.45 644.05 459 641.3 460.55 638.55 462.15 638.15 465.8 637.75 469.1 639.35 472.3 L640.25 473.85 Q644.15 480.6 648.75 484.25 653.45 487.9 656.2 486.3 658.95 484.75 658.05 478.9 657.3 473 653.4 466.25 M576 460.2 Q576.25 452 584.65 452 L695.35 452 Q703.75 452 704 460.2 L704 567.85 Q703.75 576 695.35 576 L676.15 576 Q676.15 555.9 665.55 541.7 661.9 536.8 657.7 533.6 662.2 530.35 662.55 526.05 L662.65 524.55 662.35 520.85 Q661.3 513.9 656.05 508.6 L653.5 506.35 Q647.7 502 640.1 502 632.5 502 626.7 506.35 625.35 507.3 624.05 508.6 618.85 513.9 617.75 520.85 617.5 522.6 617.5 524.55 L617.55 526.05 Q617.95 530.3 622.4 533.55 618.15 536.75 614.45 541.7 603.85 555.9 603.85 576 L584.65 576 Q576.25 576 576 567.85 L576 460.2 M691.25 511.8 Q691.25 506.05 687.2 502.05 683.15 498 677.45 498 671.85 498 667.7 502.05 663.75 506.05 663.75 511.8 663.75 517.5 667.7 521.4 671.85 525.5 677.45 525.5 683.15 525.5 687.2 521.4 691.25 517.5 691.25 511.8 M633.7 473.95 L634.3 472.9 Q635.35 470.75 635.1 468.65 634.8 466.2 633 465.1 631.2 464.05 628.95 465.05 626.95 465.9 625.6 467.9 L625 468.95 Q622.45 473.4 621.9 477.3 621.35 481.2 623.15 482.2 624.95 483.3 628 480.85 631.15 478.45 633.7 473.95 M588.75 511.8 Q588.75 517.5 592.8 521.4 596.85 525.5 602.55 525.5 608.15 525.5 612.3 521.4 616.25 517.5 616.25 511.8 616.25 506.05 612.3 502.05 608.15 498 602.55 498 596.85 498 592.8 502.05 588.75 506.05 588.75 511.8"/>
+ <path stroke="none" fill="#EEBE00" d="M653.4 466.25 Q657.3 473 658.05 478.9 658.95 484.75 656.2 486.3 653.45 487.9 648.75 484.25 644.15 480.6 640.25 473.85 L639.35 472.3 Q637.75 469.1 638.15 465.8 638.55 462.15 641.3 460.55 644.05 459 647.45 460.45 650.45 461.75 652.45 464.75 L653.4 466.25 M603.85 576 Q603.85 555.9 614.45 541.7 618.15 536.75 622.4 533.55 L623.5 534.3 624.05 534.65 Q630.7 538.5 640.1 538.5 648.75 538.5 655.05 535.2 L656.05 534.65 657.7 533.6 Q661.9 536.8 665.55 541.7 676.15 555.9 676.15 576 L603.85 576 M633.7 473.95 Q631.15 478.45 628 480.85 624.95 483.3 623.15 482.2 621.35 481.2 621.9 477.3 622.45 473.4 625 468.95 L625.6 467.9 Q626.95 465.9 628.95 465.05 631.2 464.05 633 465.1 634.8 466.2 635.1 468.65 635.35 470.75 634.3 472.9 L633.7 473.95"/>
+ <path stroke="none" fill="#987900" d="M704 460.2 L704 456.7 Q704 448 695.35 448 L584.65 448 Q576 448 576 456.7 L576 460.2 576 567.85 Q576.25 576 584.65 576 L603.85 576 676.15 576 695.35 576 Q703.75 576 704 567.85 L704 460.2 M695.35 444 Q708 444 708 456.7 L708 567.85 708 568 Q707.7 580 695.35 580 L584.65 580 Q572.3 580 572 568 L572 567.85 572 456.7 Q572 444 584.65 444 L695.35 444"/>
+ <path stroke="none" fill="#FFD738" d="M704 460.2 Q703.75 452 695.35 452 L584.65 452 Q576.25 452 576 460.2 L576 456.7 Q576 448 584.65 448 L695.35 448 Q704 448 704 456.7 L704 460.2"/>
+ <path stroke="none" fill="#FFFFFF" d="M691.25 511.8 Q691.25 517.5 687.2 521.4 683.15 525.5 677.45 525.5 671.85 525.5 667.7 521.4 663.75 517.5 663.75 511.8 663.75 506.05 667.7 502.05 671.85 498 677.45 498 683.15 498 687.2 502.05 691.25 506.05 691.25 511.8 M683.7 511.7 Q683.7 508.05 681.25 505.6 678.7 503.05 675.05 503.05 671.55 503.05 668.95 505.6 666.4 508.05 666.4 511.7 L666.45 512.55 Q666.7 515.5 668.95 517.65 671.55 520.15 675.05 520.15 678.7 520.15 681.25 517.65 683.4 515.5 683.65 512.55 L683.7 511.7 M596.3 511.7 L596.35 512.55 Q596.6 515.5 598.75 517.65 601.3 520.15 604.95 520.15 608.45 520.15 611.05 517.65 613.3 515.5 613.55 512.55 L613.6 511.7 Q613.6 508.05 611.05 505.6 608.45 503.05 604.95 503.05 601.3 503.05 598.75 505.6 596.3 508.05 596.3 511.7 M588.75 511.8 Q588.75 506.05 592.8 502.05 596.85 498 602.55 498 608.15 498 612.3 502.05 616.25 506.05 616.25 511.8 616.25 517.5 612.3 521.4 608.15 525.5 602.55 525.5 596.85 525.5 592.8 521.4 588.75 517.5 588.75 511.8"/>
+ <path stroke="none" fill="#5B5B5B" d="M683.7 511.7 L683.65 512.55 Q683.4 515.5 681.25 517.65 678.7 520.15 675.05 520.15 671.55 520.15 668.95 517.65 666.7 515.5 666.45 512.55 L666.4 511.7 Q666.4 508.05 668.95 505.6 671.55 503.05 675.05 503.05 678.7 503.05 681.25 505.6 683.7 508.05 683.7 511.7 M596.3 511.7 Q596.3 508.05 598.75 505.6 601.3 503.05 604.95 503.05 608.45 503.05 611.05 505.6 613.6 508.05 613.6 511.7 L613.55 512.55 Q613.3 515.5 611.05 517.65 608.45 520.15 604.95 520.15 601.3 520.15 598.75 517.65 596.6 515.5 596.35 512.55 L596.3 511.7"/>
+ <path stroke="none" fill="#FF9900" d="M617.75 520.85 Q618.85 513.9 624.05 508.6 625.35 507.3 626.7 506.35 632.5 502 640.1 502 647.7 502 653.5 506.35 L656.05 508.6 Q661.3 513.9 662.35 520.85 661.85 522.2 660.4 523.45 659.1 518.4 654.9 514.45 L652.55 512.5 Q647.15 508.75 640.1 508.75 633.05 508.75 627.65 512.5 626.4 513.35 625.2 514.45 621.05 518.4 619.75 523.45 618.25 522.25 617.75 520.85"/>
+ <path stroke="none" fill="#F39100" d="M619.75 523.45 Q621.05 518.4 625.2 514.45 626.4 513.35 627.65 512.5 633.05 508.75 640.1 508.75 647.15 508.75 652.55 512.5 L654.9 514.45 Q659.1 518.4 660.4 523.45 658.8 524.75 656.05 525.85 651.8 527.6 646.45 528.2 L640.1 528.55 633.65 528.2 Q628.3 527.55 624.05 525.85 621.3 524.75 619.75 523.45"/>
+ <path stroke="none" fill="#E08600" d="M619.75 523.45 Q621.3 524.75 624.05 525.85 628.3 527.55 633.65 528.2 L640.1 528.55 646.45 528.2 Q651.8 527.6 656.05 525.85 658.8 524.75 660.4 523.45 661.85 522.2 662.35 520.85 L662.65 524.55 662.55 526.05 Q662.2 530.35 657.7 533.6 L656.05 534.65 655.05 535.2 Q648.75 538.5 640.1 538.5 630.7 538.5 624.05 534.65 L623.5 534.3 622.4 533.55 Q617.95 530.3 617.55 526.05 L617.5 524.55 Q617.5 522.6 617.75 520.85 618.25 522.25 619.75 523.45"/>
+ <path stroke="none" fill="#989898" d="M448 460.2 L448 456.7 Q448 448 439.35 448 L328.65 448 Q320 448 320 456.7 L320 460.2 320 567.85 Q320.25 576 328.65 576 L351.05 576 416.95 576 439.35 576 Q447.75 576 448 567.85 L448 460.2 M316 567.85 L316 456.7 Q316 444 328.65 444 L439.35 444 Q452 444 452 456.7 L452 567.85 452 568 Q451.7 580 439.35 580 L328.65 580 Q316.3 580 316 568 L316 567.85"/>
+ <path stroke="none" fill="#FFFFFF" d="M320 460.2 L320 456.7 Q320 448 328.65 448 L439.35 448 Q448 448 448 456.7 L448 460.2 Q447.75 452 439.35 452 L328.65 452 Q320.25 452 320 460.2 M416.95 576 L351.05 576 Q353.15 560 360 547.55 363.4 541.4 367.3 537.4 L367.5 537.5 368.05 537.85 Q371.3 539.75 375.2 540.7 L371.85 544.3 369.8 546.2 Q366.35 549.3 366.35 553.15 366.35 554.25 366.65 555.4 368.55 563.25 376.85 562 380.25 561.45 383 558.7 L384 557.6 385 558.7 Q387.75 561.45 391.1 562 399.45 563.25 401.35 555.4 L401.65 553.15 Q401.65 549.3 398.2 546.2 L396.2 544.35 392.85 540.75 Q396.2 539.9 399.05 538.4 L400.05 537.85 400.75 537.45 Q404.6 541.45 407.95 547.55 414.85 560 416.95 576 M332.75 516.5 Q332.75 510.75 336.8 506.75 340.85 502.7 346.55 502.7 352.15 502.7 356.3 506.75 360.25 510.75 360.25 516.5 360.25 522.2 356.3 526.1 352.15 530.2 346.55 530.2 340.85 530.2 336.8 526.1 332.75 522.2 332.75 516.5 M340.3 516.4 L340.35 517.25 Q340.6 520.2 342.75 522.35 345.3 524.85 348.95 524.85 352.45 524.85 355.05 522.35 357.3 520.2 357.55 517.25 L357.6 516.4 Q357.6 512.75 355.05 510.3 352.45 507.75 348.95 507.75 345.3 507.75 342.75 510.3 340.3 512.75 340.3 516.4 M435.25 516.5 Q435.25 522.2 431.2 526.1 427.15 530.2 421.45 530.2 415.85 530.2 411.7 526.1 407.75 522.2 407.75 516.5 407.75 510.75 411.7 506.75 415.85 502.7 421.45 502.7 427.15 502.7 431.2 506.75 435.25 510.75 435.25 516.5 M427.7 516.4 Q427.7 512.75 425.25 510.3 422.7 507.75 419.05 507.75 415.55 507.75 412.95 510.3 410.4 512.75 410.4 516.4 L410.45 517.25 Q410.7 520.2 412.95 522.35 415.55 524.85 419.05 524.85 422.7 524.85 425.25 522.35 427.4 520.2 427.65 517.25 L427.7 516.4"/>
+ <path stroke="none" fill="#F0F0F0" d="M448 460.2 L448 567.85 Q447.75 576 439.35 576 L416.95 576 Q414.85 560 407.95 547.55 404.6 541.45 400.75 537.45 406.15 533.95 406.55 529.25 L406.65 527.75 406.35 524.05 Q405.3 517.1 400.05 511.8 L397.5 509.55 Q391.7 505.2 384.1 505.2 376.5 505.2 370.7 509.55 L368.05 511.8 Q362.85 517.1 361.75 524.05 361.5 525.8 361.5 527.75 L361.55 529.25 Q362 533.9 367.3 537.4 363.4 541.4 360 547.55 353.15 560 351.05 576 L328.65 576 Q320.25 576 320 567.85 L320 460.2 Q320.25 452 328.65 452 L439.35 452 Q447.75 452 448 460.2 M395.3 461.7 L395.4 460.5 Q395.4 457.5 393.3 455.4 392.25 454.35 391.05 453.85 389.75 453.3 388.25 453.3 L386.35 453.55 Q385.05 453.9 384 454.7 382.9 453.9 381.65 453.55 L379.75 453.3 Q378.25 453.3 376.95 453.85 375.7 454.4 374.65 455.4 372.6 457.5 372.6 460.5 L372.65 461.7 372.85 462.55 372.6 462.85 Q369.8 465.8 369.8 469.9 L369.85 471.05 Q370.1 473.7 371.6 475.75 L371.3 477.65 371.25 478.65 371.3 479.9 Q371.7 484.05 374.8 487.1 378.25 490.65 383.25 490.65 L384 490.6 384.75 490.65 Q389.7 490.65 393.25 487.1 396.3 484.05 396.7 479.85 L396.75 478.65 396.7 477.7 396.4 475.75 Q397.85 473.7 398.15 471.05 L398.2 469.9 Q398.2 467.85 397.5 466.1 396.8 464.3 395.4 462.85 L395.15 462.55 395.3 461.7 M332.75 516.5 Q332.75 522.2 336.8 526.1 340.85 530.2 346.55 530.2 352.15 530.2 356.3 526.1 360.25 522.2 360.25 516.5 360.25 510.75 356.3 506.75 352.15 502.7 346.55 502.7 340.85 502.7 336.8 506.75 332.75 510.75 332.75 516.5 M435.25 516.5 Q435.25 510.75 431.2 506.75 427.15 502.7 421.45 502.7 415.85 502.7 411.7 506.75 407.75 510.75 407.75 516.5 407.75 522.2 411.7 526.1 415.85 530.2 421.45 530.2 427.15 530.2 431.2 526.1 435.25 522.2 435.25 516.5"/>
+ <path stroke="none" fill="#F53707" d="M395.3 461.7 Q395 459.45 393.3 457.75 391.2 455.65 388.25 455.65 385.8 455.65 384 457.05 382.15 455.65 379.75 455.65 376.8 455.65 374.65 457.75 373 459.45 372.65 461.7 L372.6 460.5 Q372.6 457.5 374.65 455.4 375.7 454.4 376.95 453.85 378.25 453.3 379.75 453.3 L381.65 453.55 Q382.9 453.9 384 454.7 385.05 453.9 386.35 453.55 L388.25 453.3 Q389.75 453.3 391.05 453.85 392.25 454.35 393.3 455.4 395.4 457.5 395.4 460.5 L395.3 461.7 M372.85 462.55 Q373.15 464.4 371.8 466.1 370.15 468.3 369.85 471.05 L369.8 469.9 Q369.8 465.8 372.6 462.85 L372.85 462.55 M398.15 471.05 Q397.85 468.3 396.2 466.1 394.85 464.4 395.15 462.55 L395.4 462.85 Q396.8 464.3 397.5 466.1 398.2 467.85 398.2 469.9 L398.15 471.05"/>
+ <path stroke="none" fill="#D23007" d="M398.15 471.05 Q397.85 473.7 396.4 475.75 L396.7 477.7 396.75 478.65 396.7 479.85 Q396.3 484.05 393.25 487.1 389.7 490.65 384.75 490.65 L384 490.6 383.25 490.65 Q378.25 490.65 374.8 487.1 371.7 484.05 371.3 479.9 L371.25 478.65 371.3 477.65 371.6 475.75 Q370.1 473.7 369.85 471.05 370.15 468.3 371.8 466.1 373.15 464.4 372.85 462.55 L372.65 461.7 Q373 459.45 374.65 457.75 376.8 455.65 379.75 455.65 382.15 455.65 384 457.05 385.8 455.65 388.25 455.65 391.2 455.65 393.3 457.75 395 459.45 395.3 461.7 L395.15 462.55 Q394.85 464.4 396.2 466.1 397.85 468.3 398.15 471.05 M375.2 540.7 Q379.3 541.7 384.1 541.7 388.8 541.7 392.85 540.75 L396.2 544.35 398.2 546.2 Q401.65 549.3 401.65 553.15 L401.6 553.3 Q399.65 559.55 391.2 558.55 387.8 558.15 385 555.95 L384 555.05 382.95 555.95 Q380.2 558.15 376.75 558.55 368.3 559.55 366.4 553.3 L366.35 553.15 Q366.35 549.3 369.8 546.2 L371.85 544.3 375.2 540.7"/>
+ <path stroke="none" fill="#FF9900" d="M361.75 524.05 Q362.85 517.1 368.05 511.8 L370.7 509.55 Q376.5 505.2 384.1 505.2 391.7 505.2 397.5 509.55 L400.05 511.8 Q405.3 517.1 406.35 524.05 405.85 525.4 404.4 526.65 403.1 521.6 398.9 517.65 L396.55 515.7 Q391.15 511.95 384.1 511.95 377.05 511.95 371.65 515.7 370.4 516.55 369.2 517.65 365.05 521.6 363.75 526.65 362.25 525.45 361.75 524.05"/>
+ <path stroke="none" fill="#F39100" d="M363.75 526.65 Q365.05 521.6 369.2 517.65 370.4 516.55 371.65 515.7 377.05 511.95 384.1 511.95 391.15 511.95 396.55 515.7 L398.9 517.65 Q403.1 521.6 404.4 526.65 402.8 527.95 400.05 529.05 396.45 530.55 392.05 531.2 L386.95 531.7 384.1 531.75 381.1 531.7 376.05 531.2 Q371.65 530.5 368.05 529.05 365.3 527.95 363.75 526.65"/>
+ <path stroke="none" fill="#E08600" d="M363.75 526.65 Q365.3 527.95 368.05 529.05 371.65 530.5 376.05 531.2 L381.1 531.7 384.1 531.75 386.95 531.7 392.05 531.2 Q396.45 530.55 400.05 529.05 402.8 527.95 404.4 526.65 405.85 525.4 406.35 524.05 L406.65 527.75 406.55 529.25 Q406.15 533.95 400.75 537.45 L400.05 537.85 399.05 538.4 Q396.2 539.9 392.85 540.75 388.8 541.7 384.1 541.7 379.3 541.7 375.2 540.7 371.3 539.75 368.05 537.85 L367.5 537.5 367.3 537.4 Q362 533.9 361.55 529.25 L361.5 527.75 Q361.5 525.8 361.75 524.05 362.25 525.45 363.75 526.65"/>
+ <path stroke="none" fill="#5B5B5B" d="M340.3 516.4 Q340.3 512.75 342.75 510.3 345.3 507.75 348.95 507.75 352.45 507.75 355.05 510.3 357.6 512.75 357.6 516.4 L357.55 517.25 Q357.3 520.2 355.05 522.35 352.45 524.85 348.95 524.85 345.3 524.85 342.75 522.35 340.6 520.2 340.35 517.25 L340.3 516.4 M427.7 516.4 L427.65 517.25 Q427.4 520.2 425.25 522.35 422.7 524.85 419.05 524.85 415.55 524.85 412.95 522.35 410.7 520.2 410.45 517.25 L410.4 516.4 Q410.4 512.75 412.95 510.3 415.55 507.75 419.05 507.75 422.7 507.75 425.25 510.3 427.7 512.75 427.7 516.4"/>
+ <path stroke="none" fill="#C62C05" d="M366.35 553.15 L366.4 553.3 Q368.3 559.55 376.75 558.55 380.2 558.15 382.95 555.95 L384 555.05 385 555.95 Q387.8 558.15 391.2 558.55 399.65 559.55 401.6 553.3 L401.65 553.15 401.35 555.4 Q399.45 563.25 391.1 562 387.75 561.45 385 558.7 L384 557.6 383 558.7 Q380.25 561.45 376.85 562 368.55 563.25 366.65 555.4 366.35 554.25 366.35 553.15"/>
+ <path stroke="none" fill="#233B43" d="M192 460.2 L192 456.7 Q192 448 183.35 448 L72.65 448 Q64 448 64 456.7 L64 460.2 64 509.4 64 513.4 64 567.85 Q64.25 576 72.65 576 L183.35 576 Q191.75 576 192 567.85 L192 513.4 192 509.4 192 460.2 M183.35 444 Q196 444 196 456.7 L196 567.85 196 568 Q195.7 580 183.35 580 L72.65 580 Q60.3 580 60 568 L60 567.85 60 456.7 Q60 444 72.65 444 L183.35 444"/>
+ <path stroke="none" fill="#48798A" d="M192 460.2 Q191.75 452 183.35 452 L72.65 452 Q64.25 452 64 460.2 L64 456.7 Q64 448 72.65 448 L183.35 448 Q192 448 192 456.7 L192 460.2"/>
+ <path stroke="none" fill="#365A66" d="M192 460.2 L192 509.4 191.65 509.6 Q165.3 524.65 128 524.65 90.7 524.65 64.35 509.6 L64 509.4 64 460.2 Q64.25 452 72.65 452 L183.35 452 Q191.75 452 192 460.2 M170.35 480.85 L169.95 480.55 Q165.95 476.8 160.4 476.75 154.6 476.75 150.5 480.85 146.5 484.9 146.45 490.65 146.45 496.3 150.4 500.2 L150.6 500.55 Q157.8 507.8 165.8 509.95 173.75 512.15 177.85 508.05 181.85 504.05 179.7 496.05 177.45 488.15 170.35 480.85 M85.55 480.85 Q78.45 488.15 76.2 496.05 74.05 504.05 78.05 508.05 82.15 512.15 90.1 509.95 98.1 507.8 105.3 500.55 L105.5 500.2 Q109.45 496.3 109.45 490.65 109.4 484.9 105.4 480.85 101.3 476.75 95.5 476.75 89.95 476.8 85.95 480.55 L85.55 480.85"/>
+ <path stroke="none" fill="#FFFFFF" d="M168.1 498.35 Q165.3 501.1 161.35 501.1 157.35 501.1 154.55 498.3 151.8 495.55 151.75 491.5 151.75 487.6 154.55 484.85 157.35 482 161.3 481.95 165.3 482.05 168.05 484.8 170.85 487.6 170.9 491.55 170.9 495.5 168.1 498.35 M163.75 496.55 Q165.55 494.75 165.55 492.35 165.55 489.8 163.8 488.05 162.05 486.3 159.5 486.3 157.05 486.25 155.25 488.05 L154.85 488.45 Q153.5 490.05 153.55 492.2 153.6 494.75 155.35 496.5 157.1 498.25 159.6 498.25 161.7 498.25 163.3 496.95 L163.75 496.55 M92.15 496.55 L92.6 496.95 Q94.2 498.25 96.3 498.25 98.8 498.25 100.55 496.5 102.3 494.75 102.35 492.2 102.4 490.05 101.05 488.45 L100.65 488.05 Q98.85 486.25 96.4 486.3 93.85 486.3 92.1 488.05 90.35 489.8 90.35 492.35 90.35 494.75 92.15 496.55 M87.8 498.35 Q85 495.5 85 491.55 85.05 487.6 87.85 484.8 90.6 482.05 94.6 481.95 98.55 482 101.35 484.85 104.15 487.6 104.15 491.5 104.1 495.55 101.35 498.3 98.55 501.1 94.55 501.1 90.6 501.1 87.8 498.35"/>
+ <path stroke="none" fill="#5B5B5B" d="M163.75 496.55 L163.3 496.95 Q161.7 498.25 159.6 498.25 157.1 498.25 155.35 496.5 153.6 494.75 153.55 492.2 153.5 490.05 154.85 488.45 L155.25 488.05 Q157.05 486.25 159.5 486.3 162.05 486.3 163.8 488.05 165.55 489.8 165.55 492.35 165.55 494.75 163.75 496.55 M92.15 496.55 Q90.35 494.75 90.35 492.35 90.35 489.8 92.1 488.05 93.85 486.3 96.4 486.3 98.85 486.25 100.65 488.05 L101.05 488.45 Q102.4 490.05 102.35 492.2 102.3 494.75 100.55 496.5 98.8 498.25 96.3 498.25 94.2 498.25 92.6 496.95 L92.15 496.55"/>
+ <path stroke="none" fill="#C3DCE9" d="M170.35 480.85 Q177.45 488.15 179.7 496.05 181.85 504.05 177.85 508.05 173.75 512.15 165.8 509.95 157.8 507.8 150.6 500.55 L150.4 500.2 Q146.45 496.3 146.45 490.65 146.5 484.9 150.5 480.85 154.6 476.75 160.4 476.75 165.95 476.8 169.95 480.55 L170.35 480.85 M168.1 498.35 Q170.9 495.5 170.9 491.55 170.85 487.6 168.05 484.8 165.3 482.05 161.3 481.95 157.35 482 154.55 484.85 151.75 487.6 151.75 491.5 151.8 495.55 154.55 498.3 157.35 501.1 161.35 501.1 165.3 501.1 168.1 498.35 M192 513.4 L192 567.85 Q191.75 576 183.35 576 L72.65 576 Q64.25 576 64 567.85 L64 513.4 64.35 513.6 Q90.7 528.65 128 528.65 165.3 528.65 191.65 513.6 L192 513.4 M85.55 480.85 L85.95 480.55 Q89.95 476.8 95.5 476.75 101.3 476.75 105.4 480.85 109.4 484.9 109.45 490.65 109.45 496.3 105.5 500.2 L105.3 500.55 Q98.1 507.8 90.1 509.95 82.15 512.15 78.05 508.05 74.05 504.05 76.2 496.05 78.45 488.15 85.55 480.85 M87.8 498.35 Q90.6 501.1 94.55 501.1 98.55 501.1 101.35 498.3 104.1 495.55 104.15 491.5 104.15 487.6 101.35 484.85 98.55 482 94.6 481.95 90.6 482.05 87.85 484.8 85.05 487.6 85 491.55 85 495.5 87.8 498.35"/>
+ <path stroke="none" fill="#D5F0FF" d="M64 509.4 L64.35 509.6 Q90.7 524.65 128 524.65 165.3 524.65 191.65 509.6 L192 509.4 192 513.4 191.65 513.6 Q165.3 528.65 128 528.65 90.7 528.65 64.35 513.6 L64 513.4 64 509.4"/>
+ <path stroke="none" fill="#A16639" d="M87.85 260 L90.8 262.35 Q106.65 274.25 128 274.25 149.35 274.25 165.25 262.35 L168.15 260 183.35 260 Q191.75 260 192 268.2 L192 375.85 Q191.75 384 183.35 384 L72.65 384 Q64.25 384 64 375.85 L64 268.2 Q64.25 260 72.65 260 L87.85 260 M168 292.35 Q160.6 284.95 150.2 284.95 139.7 284.95 132.35 292.35 130.8 293.85 128 293.85 125.2 293.85 123.7 292.35 116.3 284.95 105.9 284.95 95.45 284.95 88.05 292.35 80.65 299.75 80.65 310.15 80.65 320.6 88.05 328.05 L88.1 328.05 92.3 331.45 Q92.35 346.1 102.75 356.45 106.9 360.6 111.75 363.1 119.1 366.9 128 366.9 142.8 366.9 153.3 356.45 L156.65 352.65 Q163.65 343.5 163.75 331.45 L168 328.05 Q175.4 320.6 175.4 310.15 175.4 299.75 168 292.35 M133.3 326.2 Q135.25 324.25 137.4 323.6 139.65 323 140.75 324.1 141.85 325.2 141.25 327.45 140.65 329.6 138.65 331.55 L138.55 331.7 Q137.45 332.75 135.95 332.75 134.35 332.75 133.25 331.65 132.1 330.5 132.1 328.9 132.1 327.35 133.15 326.3 L133.3 326.2 M123.65 331.65 Q122.45 332.75 120.9 332.75 119.35 332.75 118.25 331.7 L118.15 331.55 Q116.15 329.6 115.6 327.45 115 325.2 116.1 324.1 117.25 323 119.45 323.6 121.65 324.25 123.55 326.2 L123.7 326.3 Q124.75 327.35 124.75 328.9 124.75 330.5 123.65 331.65"/>
+ <path stroke="none" fill="#BF8559" d="M123.65 331.65 Q124.75 330.5 124.75 328.9 124.75 327.35 123.7 326.3 L123.55 326.2 Q121.65 324.25 119.45 323.6 117.25 323 116.1 324.1 115 325.2 115.6 327.45 116.15 329.6 118.15 331.55 L118.25 331.7 Q119.35 332.75 120.9 332.75 122.45 332.75 123.65 331.65 M168 292.35 Q175.4 299.75 175.4 310.15 175.4 320.6 168 328.05 L163.75 331.45 Q163.65 343.5 156.65 352.65 L153.3 356.45 Q142.8 366.9 128 366.9 119.1 366.9 111.75 363.1 106.9 360.6 102.75 356.45 92.35 346.1 92.3 331.45 L88.1 328.05 88.05 328.05 Q80.65 320.6 80.65 310.15 80.65 299.75 88.05 292.35 95.45 284.95 105.9 284.95 116.3 284.95 123.7 292.35 125.2 293.85 128 293.85 130.8 293.85 132.35 292.35 139.7 284.95 150.2 284.95 160.6 284.95 168 292.35 M168.95 311.4 Q168.95 306.35 165.45 302.8 161.85 299.3 156.75 299.3 151.75 299.3 148.2 302.8 144.6 306.35 144.6 311.4 144.6 316.45 148.2 319.9 151.75 323.55 156.75 323.55 161.85 323.55 165.45 319.9 168.95 316.45 168.95 311.4 M133.3 326.2 L133.15 326.3 Q132.1 327.35 132.1 328.9 132.1 330.5 133.25 331.65 134.35 332.75 135.95 332.75 137.45 332.75 138.55 331.7 L138.65 331.55 Q140.65 329.6 141.25 327.45 141.85 325.2 140.75 324.1 139.65 323 137.4 323.6 135.25 324.25 133.3 326.2 M145.75 352.65 L148.25 351.65 Q151.25 350.3 152.5 347.3 153.7 344.25 152.45 341.2 151.2 338.15 148.15 336.95 L145.75 336.35 Q143.9 336.2 142.1 336.95 129.5 342.05 114.35 336.75 L111.75 336.3 Q110 336.3 108.3 337.1 105.3 338.55 104.25 341.7 103.15 344.75 104.6 347.75 106 350.7 109.15 351.8 L111.75 352.65 Q130.15 358.3 145.75 352.65 M87.75 311.4 Q87.75 316.45 91.35 319.9 94.95 323.55 99.95 323.55 104.95 323.55 108.65 319.9 112.15 316.45 112.15 311.4 112.15 306.35 108.65 302.8 104.95 299.3 99.95 299.3 94.95 299.3 91.35 302.8 87.75 306.35 87.75 311.4"/>
+ <path stroke="none" fill="#AA6C3C" d="M168.15 260 L165.25 262.35 Q149.35 274.25 128 274.25 106.65 274.25 90.8 262.35 L87.85 260 168.15 260"/>
+ <path stroke="none" fill="#6D4526" d="M64 268.2 L64 375.85 Q64.25 384 72.65 384 L183.35 384 Q191.75 384 192 375.85 L192 268.2 192 264.7 Q192 256 183.35 256 L72.65 256 Q64 256 64 264.7 L64 268.2 M60 264.7 Q60 252 72.65 252 L183.35 252 Q196 252 196 264.7 L196 375.85 196 376 Q195.7 388 183.35 388 L72.65 388 Q60.3 388 60 376 L60 375.85 60 264.7"/>
+ <path stroke="none" fill="#B4723F" d="M87.85 260 L72.65 260 Q64.25 260 64 268.2 L64 264.7 Q64 256 72.65 256 L183.35 256 Q192 256 192 264.7 L192 268.2 Q191.75 260 183.35 260 L168.15 260 87.85 260"/>
+ <path stroke="none" fill="#FFFFFF" d="M163.1 311.65 Q163.1 308.35 160.85 306.2 158.6 304.05 155.45 304.05 152.35 304.05 150 306.2 147.75 308.35 147.75 311.65 147.75 314.8 150 316.95 152.35 319.25 155.45 319.25 158.6 319.25 160.85 316.95 163.1 314.8 163.1 311.65 M168.95 311.4 Q168.95 316.45 165.45 319.9 161.85 323.55 156.75 323.55 151.75 323.55 148.2 319.9 144.6 316.45 144.6 311.4 144.6 306.35 148.2 302.8 151.75 299.3 156.75 299.3 161.85 299.3 165.45 302.8 168.95 306.35 168.95 311.4 M145.75 336.35 Q148.65 344 145.75 352.65 130.15 358.3 111.75 352.65 108.5 343.55 111.75 336.3 L114.35 336.75 Q129.5 342.05 142.1 336.95 143.9 336.2 145.75 336.35 M93.7 311.65 Q93.7 314.8 95.95 316.95 98.1 319.25 101.3 319.25 104.45 319.25 106.7 316.95 108.95 314.8 108.95 311.65 108.95 308.35 106.7 306.2 104.45 304.05 101.3 304.05 98.1 304.05 95.95 306.2 93.7 308.35 93.7 311.65 M87.75 311.4 Q87.75 306.35 91.35 302.8 94.95 299.3 99.95 299.3 104.95 299.3 108.65 302.8 112.15 306.35 112.15 311.4 112.15 316.45 108.65 319.9 104.95 323.55 99.95 323.55 94.95 323.55 91.35 319.9 87.75 316.45 87.75 311.4"/>
+ <path stroke="none" fill="#5B5B5B" d="M163.1 311.65 Q163.1 314.8 160.85 316.95 158.6 319.25 155.45 319.25 152.35 319.25 150 316.95 147.75 314.8 147.75 311.65 147.75 308.35 150 306.2 152.35 304.05 155.45 304.05 158.6 304.05 160.85 306.2 163.1 308.35 163.1 311.65 M93.7 311.65 Q93.7 308.35 95.95 306.2 98.1 304.05 101.3 304.05 104.45 304.05 106.7 306.2 108.95 308.35 108.95 311.65 108.95 314.8 106.7 316.95 104.45 319.25 101.3 319.25 98.1 319.25 95.95 316.95 93.7 314.8 93.7 311.65"/>
+ <path stroke="none" fill="#E7E7E7" d="M145.75 336.35 L148.15 336.95 Q151.2 338.15 152.45 341.2 153.7 344.25 152.5 347.3 151.25 350.3 148.25 351.65 L145.75 352.65 Q148.65 344 145.75 336.35 M111.75 352.65 L109.15 351.8 Q106 350.7 104.6 347.75 103.15 344.75 104.25 341.7 105.3 338.55 108.3 337.1 110 336.3 111.75 336.3 108.5 343.55 111.75 352.65"/>
+ <path stroke="none" fill="#2D548C" d="M448 268.2 L448 264.7 Q448 256 439.35 256 L328.65 256 Q320 256 320 264.7 L320 268.2 320 375.85 Q320.25 384 328.65 384 L333.7 384 434.4 384 439.35 384 Q447.75 384 448 375.85 L448 268.2 M439.35 252 Q452 252 452 264.7 L452 375.85 452 376 Q451.7 388 439.35 388 L328.65 388 Q316.3 388 316 376 L316 375.85 316 264.7 Q316 252 328.65 252 L439.35 252"/>
+ <path stroke="none" fill="#5A9BF3" d="M320 268.2 L320 264.7 Q320 256 328.65 256 L439.35 256 Q448 256 448 264.7 L448 268.2 Q447.75 260 439.35 260 L328.65 260 Q320.25 260 320 268.2"/>
+ <path stroke="none" fill="#528CDB" d="M320 268.2 Q320.25 260 328.65 260 L439.35 260 Q447.75 260 448 268.2 L448 375.85 Q447.75 384 439.35 384 L434.4 384 Q430.3 381.75 430.4 376.6 429 362.2 417 351.65 L415.85 350.7 Q402.75 339.8 384.55 339.8 366.1 339.8 352.85 351 L352.05 351.65 Q340.15 362.2 338.8 376.6 337.35 381.7 333.7 384 L328.65 384 Q320.25 384 320 375.85 L320 268.2 M332.75 327.2 Q332.75 332.9 336.8 336.8 340.85 340.9 346.55 340.9 352.15 340.9 356.3 336.8 360.25 332.9 360.25 327.2 360.25 321.45 356.3 317.45 352.15 313.4 346.55 313.4 340.85 313.4 336.8 317.45 332.75 321.45 332.75 327.2 M435.25 327.2 Q435.25 321.45 431.2 317.45 427.15 313.4 421.45 313.4 415.85 313.4 411.7 317.45 407.75 321.45 407.75 327.2 407.75 332.9 411.7 336.8 415.85 340.9 421.45 340.9 427.15 340.9 431.2 336.8 435.25 332.9 435.25 327.2"/>
+ <path stroke="none" fill="#FFFFFF" d="M435.25 327.2 Q435.25 332.9 431.2 336.8 427.15 340.9 421.45 340.9 415.85 340.9 411.7 336.8 407.75 332.9 407.75 327.2 407.75 321.45 411.7 317.45 415.85 313.4 421.45 313.4 427.15 313.4 431.2 317.45 435.25 321.45 435.25 327.2 M332.75 327.2 Q332.75 321.45 336.8 317.45 340.85 313.4 346.55 313.4 352.15 313.4 356.3 317.45 360.25 321.45 360.25 327.2 360.25 332.9 356.3 336.8 352.15 340.9 346.55 340.9 340.85 340.9 336.8 336.8 332.75 332.9 332.75 327.2 M340.3 327.1 L340.35 327.95 Q340.6 330.9 342.75 333.05 345.3 335.55 348.95 335.55 352.45 335.55 355.05 333.05 357.3 330.9 357.55 327.95 L357.6 327.1 Q357.6 323.45 355.05 321 352.45 318.45 348.95 318.45 345.3 318.45 342.75 321 340.3 323.45 340.3 327.1 M427.7 327.1 Q427.7 323.45 425.25 321 422.7 318.45 419.05 318.45 415.55 318.45 412.95 321 410.4 323.45 410.4 327.1 L410.45 327.95 Q410.7 330.9 412.95 333.05 415.55 335.55 419.05 335.55 422.7 335.55 425.25 333.05 427.4 330.9 427.65 327.95 L427.7 327.1"/>
+ <path stroke="none" fill="#5B5B5B" d="M427.7 327.1 L427.65 327.95 Q427.4 330.9 425.25 333.05 422.7 335.55 419.05 335.55 415.55 335.55 412.95 333.05 410.7 330.9 410.45 327.95 L410.4 327.1 Q410.4 323.45 412.95 321 415.55 318.45 419.05 318.45 422.7 318.45 425.25 321 427.7 323.45 427.7 327.1 M340.3 327.1 Q340.3 323.45 342.75 321 345.3 318.45 348.95 318.45 352.45 318.45 355.05 321 357.6 323.45 357.6 327.1 L357.55 327.95 Q357.3 330.9 355.05 333.05 352.45 335.55 348.95 335.55 345.3 335.55 342.75 333.05 340.6 330.9 340.35 327.95 L340.3 327.1"/>
+ <path stroke="none" fill="#4178C2" d="M434.4 384 L333.7 384 Q337.35 381.7 338.8 376.6 340.15 362.2 352.05 351.65 L352.85 351 Q366.1 339.8 384.55 339.8 402.75 339.8 415.85 350.7 L417 351.65 Q429 362.2 430.4 376.6 430.3 381.75 434.4 384 M401.6 352.35 Q400.5 351.25 398.3 351.85 396.05 352.45 394.1 354.45 L393.95 354.55 Q392.9 355.65 392.9 357.25 392.9 358.85 394.05 359.95 395.15 361.1 396.8 361.1 398.3 361.1 399.45 360.05 L399.55 359.95 Q401.55 357.95 402.15 355.75 402.8 353.5 401.6 352.35 M369.45 360.05 Q370.55 361.1 372.1 361.1 373.7 361.1 374.85 359.95 375.95 358.85 375.95 357.25 375.95 355.65 374.9 354.55 L374.8 354.45 Q372.8 352.45 370.6 351.85 368.4 351.25 367.25 352.35 366.1 353.5 366.75 355.75 367.35 357.95 369.35 359.95 L369.45 360.05"/>
+ <path stroke="none" fill="#2D5D9C" d="M369.45 360.05 L369.35 359.95 Q367.35 357.95 366.75 355.75 366.1 353.5 367.25 352.35 368.4 351.25 370.6 351.85 372.8 352.45 374.8 354.45 L374.9 354.55 Q375.95 355.65 375.95 357.25 375.95 358.85 374.85 359.95 373.7 361.1 372.1 361.1 370.55 361.1 369.45 360.05 M401.6 352.35 Q402.8 353.5 402.15 355.75 401.55 357.95 399.55 359.95 L399.45 360.05 Q398.3 361.1 396.8 361.1 395.15 361.1 394.05 359.95 392.9 358.85 392.9 357.25 392.9 355.65 393.95 354.55 L394.1 354.45 Q396.05 352.45 398.3 351.85 400.5 351.25 401.6 352.35"/>
+ <path stroke="none" fill="#EE9FEE" d="M660.05 347.15 Q662.95 344.45 664.45 341.25 665.65 338.65 665.95 335.75 L666 334.7 666 333.85 Q666 323.05 658.35 315.45 L656.55 313.8 Q649.5 307.85 640 307.85 630.5 307.85 623.4 313.75 L621.55 315.45 Q614 323.05 614 333.85 L614 334.7 614.1 335.8 Q614.35 338.7 615.55 341.3 617.05 344.5 619.95 347.25 L620.4 348.3 Q621.9 351.55 625.2 354.15 631.35 359 640 359 648.6 359 654.7 354.15 658.05 351.5 659.6 348.25 L660.05 347.15 M600.1 260 Q600.1 267.95 611.75 273.55 623.45 279.15 640 279.15 656.55 279.15 668.2 273.55 679.9 267.95 679.9 260 L695.35 260 Q703.75 260 704 268.2 L704 375.85 Q703.75 384 695.35 384 L584.65 384 Q576.25 384 576 375.85 L576 268.2 Q576.25 260 584.65 260 L600.1 260 M688.5 309.75 Q688.5 304.55 684.85 300.9 681.2 297.25 676 297.25 670.9 297.25 667.2 300.9 663.55 304.55 663.55 309.75 663.55 314.9 667.2 318.5 670.9 322.2 676 322.2 681.2 322.2 684.85 318.5 688.5 314.9 688.5 309.75 M591.5 309.75 Q591.5 314.9 595.15 318.5 598.8 322.2 604 322.2 609.1 322.2 612.8 318.5 616.45 314.9 616.45 309.75 616.45 304.55 612.8 300.9 609.1 297.25 604 297.25 598.8 297.25 595.15 300.9 591.5 304.55 591.5 309.75"/>
+ <path stroke="none" fill="#FAA6FA" d="M679.9 260 Q679.9 267.95 668.2 273.55 656.55 279.15 640 279.15 623.45 279.15 611.75 273.55 600.1 267.95 600.1 260 L679.9 260"/>
+ <path stroke="none" fill="#9C619C" d="M576 268.2 L576 375.85 Q576.25 384 584.65 384 L695.35 384 Q703.75 384 704 375.85 L704 268.2 704 264.7 Q704 256 695.35 256 L584.65 256 Q576 256 576 264.7 L576 268.2 M695.35 252 Q708 252 708 264.7 L708 375.85 708 376 Q707.7 388 695.35 388 L584.65 388 Q572.3 388 572 376 L572 375.85 572 264.7 Q572 252 584.65 252 L695.35 252"/>
+ <path stroke="none" fill="#FFAAFF" d="M600.1 260 L584.65 260 Q576.25 260 576 268.2 L576 264.7 Q576 256 584.65 256 L695.35 256 Q704 256 704 264.7 L704 268.2 Q703.75 260 695.35 260 L679.9 260 600.1 260 M665.95 335.75 Q665.65 338.65 664.45 341.25 662.95 344.45 660.05 347.15 L658.35 348.6 Q650.75 354.65 640 354.65 629.2 354.65 621.55 348.6 L619.95 347.25 Q617.05 344.5 615.55 341.3 614.35 338.7 614.1 335.8 614.75 326.3 621.55 319.45 L623.4 317.75 Q630.5 311.85 640 311.85 649.5 311.85 656.55 317.8 L658.35 319.45 Q665.25 326.3 665.95 335.75 M658.5 327.25 Q657 325.75 654.05 326.6 L653.8 326.7 Q650.95 327.55 648.45 330.05 L648.3 330.2 Q647.65 330.9 647.3 331.75 646.9 332.65 646.9 333.75 646.9 335.9 648.4 337.4 649.9 338.9 652.05 338.9 654.1 338.9 655.6 337.5 L655.75 337.35 Q657.8 335.3 658.75 333.05 L659.2 331.75 Q659.85 329.5 659.1 328.1 L658.5 327.25 M624.4 337.5 Q625.9 338.9 627.95 338.9 630.1 338.9 631.6 337.4 633.1 335.9 633.1 333.75 633.1 332.65 632.75 331.75 L631.7 330.2 631.55 330.05 Q629 327.5 626.15 326.65 L625.95 326.6 Q623 325.75 621.5 327.25 L620.9 328.1 Q620.15 329.5 620.8 331.75 L621.25 333.05 Q622.2 335.3 624.25 337.35 L624.4 337.5"/>
+ <path stroke="none" fill="#FFFFFF" d="M683.75 309.95 Q683.75 306.35 681.25 303.8 678.75 301.3 675.1 301.3 671.55 301.3 668.95 303.8 666.45 306.35 666.45 309.95 666.45 313.55 668.95 316 671.55 318.55 675.1 318.55 678.75 318.55 681.25 316 683.75 313.55 683.75 309.95 M688.5 309.75 Q688.5 314.9 684.85 318.5 681.2 322.2 676 322.2 670.9 322.2 667.2 318.5 663.55 314.9 663.55 309.75 663.55 304.55 667.2 300.9 670.9 297.25 676 297.25 681.2 297.25 684.85 300.9 688.5 304.55 688.5 309.75 M596.2 309.95 Q596.2 313.55 598.75 316 601.25 318.55 604.9 318.55 608.45 318.55 611 316 613.55 313.55 613.55 309.95 613.55 306.35 611 303.8 608.45 301.3 604.9 301.3 601.25 301.3 598.75 303.8 596.2 306.35 596.2 309.95 M591.5 309.75 Q591.5 304.55 595.15 300.9 598.8 297.25 604 297.25 609.1 297.25 612.8 300.9 616.45 304.55 616.45 309.75 616.45 314.9 612.8 318.5 609.1 322.2 604 322.2 598.8 322.2 595.15 318.5 591.5 314.9 591.5 309.75"/>
+ <path stroke="none" fill="#5B5B5B" d="M683.75 309.95 Q683.75 313.55 681.25 316 678.75 318.55 675.1 318.55 671.55 318.55 668.95 316 666.45 313.55 666.45 309.95 666.45 306.35 668.95 303.8 671.55 301.3 675.1 301.3 678.75 301.3 681.25 303.8 683.75 306.35 683.75 309.95 M596.2 309.95 Q596.2 306.35 598.75 303.8 601.25 301.3 604.9 301.3 608.45 301.3 611 303.8 613.55 306.35 613.55 309.95 613.55 313.55 611 316 608.45 318.55 604.9 318.55 601.25 318.55 598.75 316 596.2 313.55 596.2 309.95"/>
+ <path stroke="none" fill="#FFC4FF" d="M614.1 335.8 L614 334.7 614 333.85 Q614 323.05 621.55 315.45 L623.4 313.75 Q630.5 307.85 640 307.85 649.5 307.85 656.55 313.8 L658.35 315.45 Q666 323.05 666 333.85 L666 334.7 665.95 335.75 Q665.25 326.3 658.35 319.45 L656.55 317.8 Q649.5 311.85 640 311.85 630.5 311.85 623.4 317.75 L621.55 319.45 Q614.75 326.3 614.1 335.8"/>
+ <path stroke="none" fill="#AF74AF" d="M658.5 327.25 L659.1 328.1 Q659.85 329.5 659.2 331.75 L658.75 333.05 Q657.8 335.3 655.75 337.35 L655.6 337.5 Q654.1 338.9 652.05 338.9 649.9 338.9 648.4 337.4 646.9 335.9 646.9 333.75 646.9 332.65 647.3 331.75 647.65 330.9 648.3 330.2 L648.45 330.05 Q650.95 327.55 653.8 326.7 L654.05 326.6 Q657 325.75 658.5 327.25 M624.4 337.5 L624.25 337.35 Q622.2 335.3 621.25 333.05 L620.8 331.75 Q620.15 329.5 620.9 328.1 L621.5 327.25 Q623 325.75 625.95 326.6 L626.15 326.65 Q629 327.5 631.55 330.05 L631.7 330.2 632.75 331.75 Q633.1 332.65 633.1 333.75 633.1 335.9 631.6 337.4 630.1 338.9 627.95 338.9 625.9 338.9 624.4 337.5"/>
+ <path stroke="none" fill="#E096E0" d="M660.05 347.15 L659.6 348.25 Q658.05 351.5 654.7 354.15 648.6 359 640 359 631.35 359 625.2 354.15 621.9 351.55 620.4 348.3 L619.95 347.25 621.55 348.6 Q629.2 354.65 640 354.65 650.75 354.65 658.35 348.6 L660.05 347.15"/>
+ <path stroke="none" fill="#FFFFFF" d="M942.55 295.7 Q942.55 299.85 939.6 302.7 936.65 305.7 932.5 305.7 928.4 305.7 925.4 302.7 922.5 299.85 922.5 295.7 922.5 291.5 925.4 288.6 928.4 285.65 932.5 285.65 936.65 285.65 939.6 288.6 942.55 291.5 942.55 295.7 M937.05 296.9 Q937.05 294.25 935.25 292.45 933.4 290.6 930.75 290.6 928.2 290.6 926.3 292.45 924.45 294.25 924.45 296.9 924.45 299.45 926.3 301.25 928.2 303.05 930.75 303.05 933.4 303.05 935.25 301.25 937.05 299.45 937.05 296.9 M849.45 295.7 Q849.45 291.5 852.4 288.6 855.35 285.65 859.5 285.65 863.6 285.65 866.6 288.6 869.5 291.5 869.5 295.7 869.5 299.85 866.6 302.7 863.6 305.7 859.5 305.7 855.35 305.7 852.4 302.7 849.45 299.85 849.45 295.7 M854.95 296.9 Q854.95 299.45 856.75 301.25 858.6 303.05 861.25 303.05 863.8 303.05 865.7 301.25 867.55 299.45 867.55 296.9 867.55 294.25 865.7 292.45 863.8 290.6 861.25 290.6 858.6 290.6 856.75 292.45 854.95 294.25 854.95 296.9"/>
+ <path stroke="none" fill="#5B5B5B" d="M854.95 296.9 Q854.95 294.25 856.75 292.45 858.6 290.6 861.25 290.6 863.8 290.6 865.7 292.45 867.55 294.25 867.55 296.9 867.55 299.45 865.7 301.25 863.8 303.05 861.25 303.05 858.6 303.05 856.75 301.25 854.95 299.45 854.95 296.9 M937.05 296.9 Q937.05 299.45 935.25 301.25 933.4 303.05 930.75 303.05 928.2 303.05 926.3 301.25 924.45 299.45 924.45 296.9 924.45 294.25 926.3 292.45 928.2 290.6 930.75 290.6 933.4 290.6 935.25 292.45 937.05 294.25 937.05 296.9"/>
+ <path stroke="none" fill="#D2D0D0" d="M832 268.2 Q832.25 260 840.65 260 L853.45 260 Q853.45 266.4 865.9 270.9 878.4 275.4 896 275.4 913.65 275.4 926.1 270.9 938.6 266.4 938.6 260 L951.35 260 Q959.75 260 960 268.2 L960 375.85 Q959.75 384 951.35 384 L840.65 384 Q832.25 384 832 375.85 L832 268.2 M942.55 295.7 Q942.55 291.5 939.6 288.6 936.65 285.65 932.5 285.65 928.4 285.65 925.4 288.6 922.5 291.5 922.5 295.7 922.5 299.85 925.4 302.7 928.4 305.7 932.5 305.7 936.65 305.7 939.6 302.7 942.55 299.85 942.55 295.7 M849.45 295.7 Q849.45 299.85 852.4 302.7 855.35 305.7 859.5 305.7 863.6 305.7 866.6 302.7 869.5 299.85 869.5 295.7 869.5 291.5 866.6 288.6 863.6 285.65 859.5 285.65 855.35 285.65 852.4 288.6 849.45 291.5 849.45 295.7 M921.05 314.4 Q921.4 307.5 916.15 301.7 908.75 293.4 896 293.4 883.3 293.4 875.7 301.7 870.6 307.55 871 314.4 869.1 316.4 866.55 317.25 848.35 322.95 848.95 342.55 L849.4 347.9 Q849.95 352.75 851.2 358.2 851.35 359.1 852.05 359.85 L852.2 359.9 Q852.85 360.45 853.65 360.6 856.9 360.25 858.85 354.45 L860 351.35 Q860.75 349.55 861.65 347.9 863.05 345.2 864.75 342.85 L865.95 343.3 Q868.45 341.15 871.55 339.5 872.45 339 873.4 338.65 874.95 337.85 876.7 337.2 L878.2 336.6 Q880.05 342.75 881.5 349.4 883.9 360.5 885.35 373.05 885.7 374.6 888.85 375.6 891.9 376.5 896 376.5 900.1 376.5 903.1 375.6 906.35 374.6 906.7 373.05 908.3 360.9 911 349.4 912.45 343 914.3 336.8 L915.3 337.2 Q917.05 337.85 918.6 338.65 919.55 339 920.45 339.5 923.45 341.1 925.9 343.2 L927 342.55 Q928.85 345 930.4 347.9 L932 351.35 933.15 354.45 Q935.1 360.25 938.35 360.6 939.15 360.45 939.8 359.9 L939.95 359.85 Q940.65 359.1 940.8 358.2 942.1 352.7 942.65 347.85 L943.05 342.55 Q943.65 322.95 925.45 317.25 922.85 316.35 921.05 314.4"/>
+ <path stroke="none" fill="#DBD9D9" d="M960 268.2 Q959.75 260 951.35 260 L938.6 260 Q938.6 266.4 926.1 270.9 913.65 275.4 896 275.4 878.4 275.4 865.9 270.9 853.45 266.4 853.45 260 L840.65 260 Q832.25 260 832 268.2 L832 264.7 Q832 256 840.65 256 L951.35 256 Q960 256 960 264.7 L960 268.2 M914.3 336.8 Q912.45 343 911 349.4 908.3 360.9 906.7 373.05 906.35 374.6 903.1 375.6 900.1 376.5 896 376.5 891.9 376.5 888.85 375.6 885.7 374.6 885.35 373.05 883.9 360.5 881.5 349.4 880.05 342.75 878.2 336.6 L876.9 332.45 Q874.65 325.5 871.9 319.25 873 316.9 875.7 314.75 L876.8 314 Q884.2 308.95 896 308.95 907.95 308.95 915.2 314.05 L916.15 314.75 Q918.9 316.9 920.15 319.25 917.65 325.85 915.5 332.7 L914.3 336.8 M883.85 325.4 L883.8 325.4 Q896.5 331.25 908.2 325.4 L908.25 325.35 Q908.95 325.05 909.2 324.25 L909.2 324.35 Q909.45 323.65 909.2 323.05 908.95 322.25 908.25 321.95 L908.2 321.95 Q896.55 316 883.85 321.9 883 322.2 882.8 323.05 882.55 323.65 882.8 324.35 883.05 325.05 883.85 325.4"/>
+ <path stroke="none" fill="#857E7E" d="M960 268.2 L960 264.7 Q960 256 951.35 256 L840.65 256 Q832 256 832 264.7 L832 268.2 832 375.85 Q832.25 384 840.65 384 L951.35 384 Q959.75 384 960 375.85 L960 268.2 M951.35 252 Q964 252 964 264.7 L964 375.85 964 376 Q963.7 388 951.35 388 L840.65 388 Q828.3 388 828 376 L828 375.85 828 264.7 Q828 252 840.65 252 L951.35 252"/>
+ <path stroke="none" fill="#E7E5E5" d="M871 314.4 Q870.6 307.55 875.7 301.7 883.3 293.4 896 293.4 908.75 293.4 916.15 301.7 921.4 307.5 921.05 314.4 L920.45 317.9 920.15 319.25 Q918.9 316.9 916.15 314.75 L915.2 314.05 Q907.95 308.95 896 308.95 884.2 308.95 876.8 314 L875.7 314.75 Q873 316.9 871.9 319.25 L871.5 317.9 Q871.05 316.1 871 314.4"/>
+ <path stroke="none" fill="#C2C0C0" d="M871 314.4 Q871.05 316.1 871.5 317.9 L871.9 319.25 Q874.65 325.5 876.9 332.45 L878.2 336.6 876.7 337.2 Q874.95 337.85 873.4 338.65 872.45 339 871.55 339.5 868.45 341.15 865.95 343.3 L864.75 342.85 Q867.7 338.85 871.55 335.85 872.45 335.15 873.4 334.6 873.95 329.7 872.4 325.45 L871.75 323.95 Q870 320.4 866.55 317.25 869.1 316.4 871 314.4 M921.05 314.4 Q922.85 316.35 925.45 317.25 922 320.4 920.3 323.95 L919.6 325.45 Q918.05 329.7 918.6 334.6 L920.45 335.85 Q924.15 338.7 927 342.55 L925.9 343.2 Q923.45 341.1 920.45 339.5 919.55 339 918.6 338.65 917.05 337.85 915.3 337.2 L914.3 336.8 915.5 332.7 Q917.65 325.85 920.15 319.25 L920.45 317.9 921.05 314.4"/>
+ <path stroke="none" fill="#CDCBCB" d="M883.85 325.4 Q883.05 325.05 882.8 324.35 882.55 323.65 882.8 323.05 883 322.2 883.85 321.9 896.55 316 908.2 321.95 L908.25 321.95 Q908.95 322.25 909.2 323.05 909.45 323.65 909.2 324.35 L909.2 324.25 Q908.95 325.05 908.25 325.35 L908.2 325.4 Q896.5 331.25 883.8 325.4 L883.85 325.4"/>
+ <path stroke="none" fill="#FFFCF5" d="M925.45 317.25 Q943.65 322.95 943.05 342.55 L942.65 347.85 Q942.1 352.7 940.8 358.2 940.65 359.1 939.95 359.85 L939.8 359.9 Q939.15 360.45 938.35 360.6 L938 356.7 Q935.85 342.15 922.5 328.35 L919.6 325.45 920.3 323.95 Q922 320.4 925.45 317.25 M853.65 360.6 Q852.85 360.45 852.2 359.9 L852.05 359.85 Q851.35 359.1 851.2 358.2 849.95 352.75 849.4 347.9 L848.95 342.55 Q848.35 322.95 866.55 317.25 870 320.4 871.75 323.95 L872.4 325.45 869.5 328.35 Q856.15 342.15 854.05 356.7 L853.65 360.6"/>
+ <path stroke="none" fill="#F0EDE7" d="M853.65 360.6 L854.05 356.7 Q856.15 342.15 869.5 328.35 L872.4 325.45 Q873.95 329.7 873.4 334.6 872.45 335.15 871.55 335.85 867.7 338.85 864.75 342.85 863.05 345.2 861.65 347.9 860.75 349.55 860 351.35 L858.85 354.45 Q856.9 360.25 853.65 360.6 M938.35 360.6 Q935.1 360.25 933.15 354.45 L932 351.35 930.4 347.9 Q928.85 345 927 342.55 924.15 338.7 920.45 335.85 L918.6 334.6 Q918.05 329.7 919.6 325.45 L922.5 328.35 Q935.85 342.15 938 356.7 L938.35 360.6"/>
+ <path stroke="none" fill="#857E7E" d="M1216 268.2 L1216 264.7 Q1216 256 1207.35 256 L1096.65 256 Q1088 256 1088 264.7 L1088 268.2 1088 375.85 Q1088.25 384 1096.65 384 L1125.45 384 1178.7 384 1207.35 384 Q1215.75 384 1216 375.85 L1216 268.2 M1084 264.7 Q1084 252 1096.65 252 L1207.35 252 Q1220 252 1220 264.7 L1220 375.85 1220 376 Q1219.7 388 1207.35 388 L1096.65 388 Q1084.3 388 1084 376 L1084 375.85 1084 264.7"/>
+ <path stroke="none" fill="#DBD9D9" d="M1088 268.2 L1088 264.7 Q1088 256 1096.65 256 L1207.35 256 Q1216 256 1216 264.7 L1216 268.2 Q1215.75 260 1207.35 260 L1182.3 260 Q1182.3 265.75 1173.35 269.8 1164.45 273.9 1151.8 273.9 1139.15 273.9 1130.2 269.8 1121.3 265.75 1121.3 260 L1096.65 260 Q1088.25 260 1088 268.2"/>
+ <path stroke="none" fill="#5B5B5B" d="M1117.35 300.25 Q1117.35 296.95 1119.6 294.8 1121.75 292.65 1124.95 292.65 1128.1 292.65 1130.35 294.8 1132.6 296.95 1132.6 300.25 1132.6 303.4 1130.35 305.55 1128.1 307.85 1124.95 307.85 1121.75 307.85 1119.6 305.55 1117.35 303.4 1117.35 300.25 M1186.75 300.25 Q1186.75 303.4 1184.5 305.55 1182.25 307.85 1179.1 307.85 1176 307.85 1173.65 305.55 1171.4 303.4 1171.4 300.25 1171.4 296.95 1173.65 294.8 1176 292.65 1179.1 292.65 1182.25 292.65 1184.5 294.8 1186.75 296.95 1186.75 300.25"/>
+ <path stroke="none" fill="#FFFFFF" d="M1186.75 300.25 Q1186.75 296.95 1184.5 294.8 1182.25 292.65 1179.1 292.65 1176 292.65 1173.65 294.8 1171.4 296.95 1171.4 300.25 1171.4 303.4 1173.65 305.55 1176 307.85 1179.1 307.85 1182.25 307.85 1184.5 305.55 1186.75 303.4 1186.75 300.25 M1111.4 300 Q1111.4 294.95 1115 291.4 1118.6 287.9 1123.6 287.9 1128.6 287.9 1132.3 291.4 1135.8 294.95 1135.8 300 1135.8 305.05 1132.3 308.5 1128.6 312.15 1123.6 312.15 1118.6 312.15 1115 308.5 1111.4 305.05 1111.4 300 M1117.35 300.25 Q1117.35 303.4 1119.6 305.55 1121.75 307.85 1124.95 307.85 1128.1 307.85 1130.35 305.55 1132.6 303.4 1132.6 300.25 1132.6 296.95 1130.35 294.8 1128.1 292.65 1124.95 292.65 1121.75 292.65 1119.6 294.8 1117.35 296.95 1117.35 300.25 M1122.55 322.1 Q1127 321.85 1131.2 322.05 L1131.8 321.85 1132.1 321.3 1132.1 320.7 1131.65 320.2 Q1128.55 318.5 1125.55 317.5 L1126.05 317 Q1131 312.05 1137.95 312.05 L1140.25 312.05 Q1140.85 315.7 1143.6 318.45 1147.3 322.15 1152.5 322.15 1157.65 322.15 1161.3 318.45 1164.1 315.7 1164.8 312.05 L1166.45 312.05 Q1173.15 312.2 1177.9 317 L1178.4 317.55 Q1175.45 318.5 1172.35 320.2 L1171.9 320.7 1171.9 321.3 Q1171.9 321.6 1172.2 321.85 1172.45 322.05 1172.8 322.05 1177 321.85 1181.5 322.1 1182.3 324 1182.65 326.1 1178.5 324.75 1173.2 325.05 L1172.7 325.25 1172.5 325.7 1172.5 326.2 1172.9 326.55 Q1178.25 328.05 1182.75 331.15 1182.05 336.65 1177.9 340.75 1173 345.7 1166 345.7 1162.1 345.7 1158.85 344.15 1156.3 342.95 1154.1 340.75 L1152 338.25 1149.85 340.75 Q1147.7 342.95 1145.15 344.15 1141.85 345.7 1137.95 345.7 1131 345.7 1126.05 340.75 1121.95 336.65 1121.3 331.15 1125.75 328.05 1131.1 326.55 L1131.5 326.2 1131.5 325.7 1131.3 325.25 1130.8 325.05 Q1125.5 324.75 1121.35 326.1 1121.7 324 1122.55 322.1 M1192.6 300 Q1192.6 305.05 1189.1 308.5 1185.5 312.15 1180.4 312.15 1175.4 312.15 1171.85 308.5 1168.25 305.05 1168.25 300 1168.25 294.95 1171.85 291.4 1175.4 287.9 1180.4 287.9 1185.5 287.9 1189.1 291.4 1192.6 294.95 1192.6 300"/>
+ <path stroke="none" fill="#D2D0D0" d="M1192.6 300 Q1192.6 294.95 1189.1 291.4 1185.5 287.9 1180.4 287.9 1175.4 287.9 1171.85 291.4 1168.25 294.95 1168.25 300 1168.25 305.05 1171.85 308.5 1175.4 312.15 1180.4 312.15 1185.5 312.15 1189.1 308.5 1192.6 305.05 1192.6 300 M1216 268.2 L1216 375.85 Q1215.75 384 1207.35 384 L1178.7 384 1175.05 374.95 1175.7 374.7 Q1173.2 369.8 1170.5 366.1 1162 351.95 1152 351.95 1142.05 351.95 1133.6 366.15 1130.9 369.85 1128.4 374.7 L1129.05 374.95 Q1127.2 379.1 1125.45 384 L1096.65 384 Q1088.25 384 1088 375.85 L1088 268.2 Q1088.25 260 1096.65 260 L1121.3 260 Q1121.3 265.75 1130.2 269.8 1139.15 273.9 1151.8 273.9 1164.45 273.9 1173.35 269.8 1182.3 265.75 1182.3 260 L1207.35 260 Q1215.75 260 1216 268.2 M1111.4 300 Q1111.4 305.05 1115 308.5 1118.6 312.15 1123.6 312.15 1128.6 312.15 1132.3 308.5 1135.8 305.05 1135.8 300 1135.8 294.95 1132.3 291.4 1128.6 287.9 1123.6 287.9 1118.6 287.9 1115 291.4 1111.4 294.95 1111.4 300 M1125.55 317.5 Q1119.15 315.35 1113.3 316.5 L1112.8 316.8 Q1112.6 316.95 1112.55 317.3 L1111.85 321.95 1111.85 322.55 1112.3 323 1112.8 323.1 1122.55 322.1 Q1121.7 324 1121.35 326.1 1118.6 327 1116.4 328.6 L1116.1 329 1116.1 329.45 1117.15 333.05 1117.35 333.45 1117.8 333.6 1118.25 333.5 Q1119.7 332.2 1121.3 331.15 1121.95 336.65 1126.05 340.75 1131 345.7 1137.95 345.7 1141.85 345.7 1145.15 344.15 1148.25 345.7 1152 345.7 1155.75 345.7 1158.85 344.15 1162.1 345.7 1166 345.7 1173 345.7 1177.9 340.75 1182.05 336.65 1182.75 331.15 L1185.75 333.5 1186.2 333.6 1186.65 333.45 1186.85 333.05 1187.9 329.45 1187.9 329 1187.6 328.6 Q1185.4 327 1182.65 326.1 1182.3 324 1181.5 322.1 L1191.2 323.1 1191.7 323 1192.15 322.55 1192.15 321.95 1191.45 317.3 1191.2 316.8 1190.7 316.5 Q1184.85 315.35 1178.4 317.55 L1177.9 317 Q1173.15 312.2 1166.45 312.05 L1164.8 312.05 1164.9 311.45 1165 309.7 1164.95 308.8 Q1164.65 306.55 1161.3 304.9 1157.65 303.15 1152.5 303.15 1147.3 303.15 1143.6 304.9 1140.25 306.55 1140 308.8 L1140 309.7 1140.1 311.3 1140.25 312.05 1137.95 312.05 Q1131 312.05 1126.05 317 L1125.55 317.5"/>
+ <path stroke="none" fill="#A8A1A1" d="M1125.55 317.5 Q1128.55 318.5 1131.65 320.2 L1132.1 320.7 1132.1 321.3 1131.8 321.85 1131.2 322.05 Q1127 321.85 1122.55 322.1 L1112.8 323.1 1112.3 323 1111.85 322.55 1111.85 321.95 1112.55 317.3 Q1112.6 316.95 1112.8 316.8 L1113.3 316.5 Q1119.15 315.35 1125.55 317.5 M1121.35 326.1 Q1125.5 324.75 1130.8 325.05 L1131.3 325.25 1131.5 325.7 1131.5 326.2 1131.1 326.55 Q1125.75 328.05 1121.3 331.15 1119.7 332.2 1118.25 333.5 L1117.8 333.6 1117.35 333.45 1117.15 333.05 1116.1 329.45 1116.1 329 1116.4 328.6 Q1118.6 327 1121.35 326.1 M1145.15 344.15 Q1147.7 342.95 1149.85 340.75 L1152 338.25 1154.1 340.75 Q1156.3 342.95 1158.85 344.15 1155.75 345.7 1152 345.7 1148.25 345.7 1145.15 344.15 M1182.75 331.15 Q1178.25 328.05 1172.9 326.55 L1172.5 326.2 1172.5 325.7 1172.7 325.25 1173.2 325.05 Q1178.5 324.75 1182.65 326.1 1185.4 327 1187.6 328.6 L1187.9 329 1187.9 329.45 1186.85 333.05 1186.65 333.45 1186.2 333.6 1185.75 333.5 1182.75 331.15 M1181.5 322.1 Q1177 321.85 1172.8 322.05 1172.45 322.05 1172.2 321.85 1171.9 321.6 1171.9 321.3 L1171.9 320.7 1172.35 320.2 Q1175.45 318.5 1178.4 317.55 1184.85 315.35 1190.7 316.5 L1191.2 316.8 1191.45 317.3 1192.15 321.95 1192.15 322.55 1191.7 323 1191.2 323.1 1181.5 322.1"/>
+ <path stroke="none" fill="#E5E3E3" d="M1178.7 384 L1125.45 384 Q1127.2 379.1 1129.05 374.95 L1128.4 374.7 Q1130.9 369.85 1133.6 366.15 1142.05 351.95 1152 351.95 1162 351.95 1170.5 366.1 1173.2 369.8 1175.7 374.7 L1175.05 374.95 1178.7 384"/>
+ <path stroke="none" fill="#FFAAFF" d="M1164.8 312.05 Q1164.1 315.7 1161.3 318.45 1157.65 322.15 1152.5 322.15 1147.3 322.15 1143.6 318.45 1140.85 315.7 1140.25 312.05 L1140.1 311.3 Q1140.6 309.35 1143.6 307.9 1147.3 306.15 1152.5 306.15 1157.65 306.15 1161.3 307.9 1164.4 309.4 1164.9 311.45 L1164.8 312.05"/>
+ <path stroke="none" fill="#FFC4FF" d="M1140.1 311.3 L1140 309.7 1140 308.8 Q1140.25 306.55 1143.6 304.9 1147.3 303.15 1152.5 303.15 1157.65 303.15 1161.3 304.9 1164.65 306.55 1164.95 308.8 L1165 309.7 1164.9 311.45 Q1164.4 309.4 1161.3 307.9 1157.65 306.15 1152.5 306.15 1147.3 306.15 1143.6 307.9 1140.6 309.35 1140.1 311.3"/>
+ <path stroke="none" fill="#8A1D03" d="M1192.2 192 L1207.35 192 Q1215.75 192 1216 183.85 L1216 76.2 1216 72.7 Q1216 64 1207.35 64 L1096.65 64 Q1088 64 1088 72.7 L1088 76.2 1088 183.85 Q1088.25 192 1096.65 192 L1111.8 192 1192.2 192 M1207.35 60 Q1220 60 1220 72.7 L1220 183.85 1220 184 Q1219.7 196 1207.35 196 L1096.65 196 Q1084.3 196 1084 184 L1084 183.85 1084 72.7 Q1084 60 1096.65 60 L1207.35 60"/>
+ <path stroke="none" fill="#F53707" d="M1088 76.2 L1088 72.7 Q1088 64 1096.65 64 L1207.35 64 Q1216 64 1216 72.7 L1216 76.2 Q1215.75 68 1207.35 68 L1096.65 68 Q1088.25 68 1088 76.2"/>
+ <path stroke="none" fill="#D23007" d="M1088 76.2 Q1088.25 68 1096.65 68 L1207.35 68 Q1215.75 68 1216 76.2 L1216 183.85 Q1215.75 192 1207.35 192 L1192.2 192 1192.35 189.5 Q1192.35 178.3 1180.5 170.35 1174.2 166.1 1166.45 164.15 1168.1 161.95 1169 159.45 L1169.8 156.2 1169.9 155.35 1170 153.9 1170 153.4 1170 147.4 1170 147 1170 143.9 1173.25 147.65 Q1180.4 154.85 1187.25 153.05 1194.1 151.2 1196.65 141.35 1199.15 131.55 1195.9 119.45 L1195.75 118.9 Q1193.9 112.35 1187.95 108.9 1181.75 105.3 1174.9 107.15 1168.1 108.95 1164.5 115.2 1161.05 121.1 1162.65 127.8 L1162.8 128.35 1163.1 129.35 Q1158.35 125.5 1152 125.5 1145.75 125.5 1141 129.25 L1141.2 128.4 1141.4 127.85 Q1143.05 121.15 1139.55 115.2 1136.05 109 1129.15 107.2 1122.3 105.3 1116.1 108.9 1110.15 112.35 1108.25 118.9 L1108.05 119.45 Q1104.85 131.55 1107.45 141.4 1110.05 151.2 1116.85 153.1 1123.75 154.9 1130.9 147.65 L1134 144.1 1134 147 1134 147.4 1134 153.4 1134 153.7 1134.1 155.35 1134.2 156.2 Q1134.45 157.9 1135 159.45 1135.85 161.95 1137.5 164.2 1129.8 166.15 1123.45 170.35 1111.65 178.3 1111.65 189.5 L1111.8 192 1096.65 192 Q1088.25 192 1088 183.85 L1088 76.2 M1165.4 79.95 L1164.45 78.45 Q1162.45 75.45 1159.45 74.15 1156.05 72.7 1153.3 74.25 1150.55 75.85 1150.15 79.5 1149.75 82.8 1151.35 86 L1152.25 87.55 Q1156.15 94.3 1160.75 97.95 1165.45 101.6 1168.2 100 1170.95 98.45 1170.05 92.6 1169.3 86.7 1165.4 79.95 M1145.7 87.65 L1146.3 86.6 Q1147.35 84.45 1147.1 82.35 1146.8 79.9 1145 78.8 1143.2 77.75 1140.95 78.75 1138.95 79.6 1137.6 81.6 L1137 82.65 Q1134.45 87.1 1133.9 91 1133.35 94.9 1135.15 95.9 1136.95 97 1140 94.55 1143.15 92.15 1145.7 87.65"/>
+ <path stroke="none" fill="#BB2905" d="M1145.7 87.65 Q1143.15 92.15 1140 94.55 1136.95 97 1135.15 95.9 1133.35 94.9 1133.9 91 1134.45 87.1 1137 82.65 L1137.6 81.6 Q1138.95 79.6 1140.95 78.75 1143.2 77.75 1145 78.8 1146.8 79.9 1147.1 82.35 1147.35 84.45 1146.3 86.6 L1145.7 87.65 M1165.4 79.95 Q1169.3 86.7 1170.05 92.6 1170.95 98.45 1168.2 100 1165.45 101.6 1160.75 97.95 1156.15 94.3 1152.25 87.55 L1151.35 86 Q1149.75 82.8 1150.15 79.5 1150.55 75.85 1153.3 74.25 1156.05 72.7 1159.45 74.15 1162.45 75.45 1164.45 78.45 L1165.4 79.95"/>
+ <path stroke="none" fill="#D5EEF7" d="M1163.1 129.35 L1162.8 128.35 1162.65 127.8 Q1161.05 121.1 1164.5 115.2 1168.1 108.95 1174.9 107.15 1181.75 105.3 1187.95 108.9 1193.9 112.35 1195.75 118.9 L1195.9 119.45 Q1199.15 131.55 1196.65 141.35 1194.1 151.2 1187.25 153.05 1180.4 154.85 1173.25 147.65 L1170 143.9 1170 143.5 Q1170 141.15 1169.4 139 L1169.2 138.15 1169.15 138 1168.3 135.8 Q1168.95 137 1170.05 138.1 1173.25 141.25 1177.5 141.25 1181.85 141.25 1184.95 138.1 1188.05 135.1 1188.05 130.75 1188.05 126.35 1184.95 123.3 1181.85 120.25 1177.5 120.25 1173.25 120.25 1170.05 123.3 1167.05 126.35 1167.05 130.75 1167.05 133.15 1167.95 135.15 1166.7 132.8 1164.7 130.8 L1163.1 129.35 M1134 144.1 L1130.9 147.65 Q1123.75 154.9 1116.85 153.1 1110.05 151.2 1107.45 141.4 1104.85 131.55 1108.05 119.45 L1108.25 118.9 Q1110.15 112.35 1116.1 108.9 1122.3 105.3 1129.15 107.2 1136.05 109 1139.55 115.2 1143.05 121.15 1141.4 127.85 L1141.2 128.4 1141 129.25 Q1140.05 129.95 1139.2 130.8 1136.1 133.95 1134.85 138 L1134.8 138.15 1134.55 139 Q1134 141.15 1134 143.5 L1134 144.1 M1115.8 130.75 Q1115.8 135.1 1118.85 138.1 1121.95 141.25 1126.3 141.25 1130.6 141.25 1133.75 138.1 1136.8 135.1 1136.8 130.75 1136.8 126.35 1133.75 123.3 1130.6 120.25 1126.3 120.25 1121.95 120.25 1118.85 123.3 1115.8 126.35 1115.8 130.75"/>
+ <path stroke="none" fill="#FFFFFF" d="M1115.8 130.75 Q1115.8 126.35 1118.85 123.3 1121.95 120.25 1126.3 120.25 1130.6 120.25 1133.75 123.3 1136.8 126.35 1136.8 130.75 1136.8 135.1 1133.75 138.1 1130.6 141.25 1126.3 141.25 1121.95 141.25 1118.85 138.1 1115.8 135.1 1115.8 130.75 M1167.95 135.15 Q1167.05 133.15 1167.05 130.75 1167.05 126.35 1170.05 123.3 1173.25 120.25 1177.5 120.25 1181.85 120.25 1184.95 123.3 1188.05 126.35 1188.05 130.75 1188.05 135.1 1184.95 138.1 1181.85 141.25 1177.5 141.25 1173.25 141.25 1170.05 138.1 1168.95 137 1168.3 135.8 L1167.95 135.15 M1182.3 130.7 Q1182.3 127.9 1180.4 126.05 1178.45 124.1 1175.7 124.1 1173 124.1 1171 126.05 1169.1 127.9 1169.1 130.7 L1169.1 131.35 Q1169.3 133.6 1171 135.25 1173 137.15 1175.7 137.15 1178.45 137.15 1180.4 135.25 1182.05 133.6 1182.25 131.35 L1182.3 130.7 M1121.55 130.7 L1121.6 131.35 Q1121.75 133.6 1123.4 135.25 1125.35 137.15 1128.15 137.15 1130.8 137.15 1132.8 135.25 1134.55 133.6 1134.7 131.35 L1134.75 130.7 Q1134.75 127.9 1132.8 126.05 1130.8 124.1 1128.15 124.1 1125.35 124.1 1123.4 126.05 1121.55 127.9 1121.55 130.7"/>
+ <path stroke="none" fill="#5B5B5B" d="M1121.55 130.7 Q1121.55 127.9 1123.4 126.05 1125.35 124.1 1128.15 124.1 1130.8 124.1 1132.8 126.05 1134.75 127.9 1134.75 130.7 L1134.7 131.35 Q1134.55 133.6 1132.8 135.25 1130.8 137.15 1128.15 137.15 1125.35 137.15 1123.4 135.25 1121.75 133.6 1121.6 131.35 L1121.55 130.7 M1182.3 130.7 L1182.25 131.35 Q1182.05 133.6 1180.4 135.25 1178.45 137.15 1175.7 137.15 1173 137.15 1171 135.25 1169.3 133.6 1169.1 131.35 L1169.1 130.7 Q1169.1 127.9 1171 126.05 1173 124.1 1175.7 124.1 1178.45 124.1 1180.4 126.05 1182.3 127.9 1182.3 130.7"/>
+ <path stroke="none" fill="#61A3FF" d="M1163.1 129.35 L1164.7 130.8 Q1166.7 132.8 1167.95 135.15 L1168.3 135.8 1169.15 138 1169.2 138.15 1169.4 139 Q1170 141.15 1170 143.5 L1170 143.9 1170 147 Q1169.95 145.05 1169.4 143.2 L1169.4 143 1169.2 142.45 1169.15 142.3 Q1168.1 139.15 1165.75 136.65 L1164.7 135.6 Q1159.5 130.65 1152 130.65 1144.55 130.65 1139.2 135.6 L1138.45 136.35 Q1135.95 139 1134.85 142.3 L1134.8 142.45 1134.55 143.2 1134.55 143.35 Q1134.05 145.1 1134 147 L1134 144.1 1134 143.5 Q1134 141.15 1134.55 139 L1134.8 138.15 1134.85 138 Q1136.1 133.95 1139.2 130.8 1140.05 129.95 1141 129.25 1145.75 125.5 1152 125.5 1158.35 125.5 1163.1 129.35"/>
+ <path stroke="none" fill="#5D9CF3" d="M1170 147 L1170 147.4 1170 153.4 1170 153.9 1169.9 155.35 1169.8 156.2 Q1152 160.75 1134.2 156.2 L1134.1 155.35 1134 153.7 1134 153.4 1134 147.4 1134 147 Q1134.05 145.1 1134.55 143.35 L1134.55 143.2 1134.8 142.45 1134.85 142.3 Q1135.95 139 1138.45 136.35 L1139.2 135.6 Q1144.55 130.65 1152 130.65 1159.5 130.65 1164.7 135.6 L1165.75 136.65 Q1168.1 139.15 1169.15 142.3 L1169.2 142.45 1169.4 143 1169.4 143.2 Q1169.95 145.05 1170 147"/>
+ <path stroke="none" fill="#3473CB" d="M1169.8 156.2 L1169 159.45 Q1152 163.3 1135 159.45 1134.45 157.9 1134.2 156.2 1152 160.75 1169.8 156.2"/>
+ <path stroke="none" fill="#397EDE" d="M1169 159.45 Q1168.1 161.95 1166.45 164.15 L1164.7 166.15 Q1159.5 171.5 1152 171.5 1144.55 171.5 1139.2 166.15 L1137.5 164.2 Q1135.85 161.95 1135 159.45 1152 163.3 1169 159.45"/>
+ <path stroke="none" fill="#FFCC00" d="M1192.2 192 L1111.8 192 1111.65 189.5 Q1111.65 178.3 1123.45 170.35 1129.8 166.15 1137.5 164.2 L1139.2 166.15 Q1144.55 171.5 1152 171.5 1159.5 171.5 1164.7 166.15 L1166.45 164.15 Q1174.2 166.1 1180.5 170.35 1192.35 178.3 1192.35 189.5 L1192.2 192"/>
+ <path stroke="none" fill="#FFFFFF" d="M960 76.2 Q959.75 68 951.35 68 L922.65 68 Q922.65 83.3 915 94.1 907.4 104.9 896.65 104.9 885.9 104.9 878.25 94.1 870.65 83.3 870.65 68 L840.65 68 Q832.25 68 832 76.2 L832 72.7 Q832 64 840.65 64 L951.35 64 Q960 64 960 72.7 L960 76.2 M855.3 120.55 Q855.3 122.95 857 124.6 858.7 126.35 861.1 126.35 863.5 126.35 865.25 124.6 866.95 122.95 866.95 120.55 866.95 118.1 865.25 116.45 863.5 114.75 861.1 114.75 858.7 114.75 857 116.45 855.3 118.1 855.3 120.55 M850.8 120.4 Q850.8 116.55 853.5 113.85 856.25 111.15 860.1 111.15 863.9 111.15 866.65 113.85 869.35 116.55 869.35 120.4 869.35 124.25 866.65 126.85 863.9 129.65 860.1 129.65 856.25 129.65 853.5 126.85 850.8 124.25 850.8 120.4 M941.2 120.4 Q941.2 124.25 938.5 126.85 935.75 129.65 931.9 129.65 928.1 129.65 925.35 126.85 922.65 124.25 922.65 120.4 922.65 116.55 925.35 113.85 928.1 111.15 931.9 111.15 935.75 111.15 938.5 113.85 941.2 116.55 941.2 120.4 M936.7 120.55 Q936.7 118.1 935 116.45 933.3 114.75 930.9 114.75 928.5 114.75 926.75 116.45 925.05 118.1 925.05 120.55 925.05 122.95 926.75 124.6 928.5 126.35 930.9 126.35 933.3 126.35 935 124.6 936.7 122.95 936.7 120.55"/>
+ <path stroke="none" fill="#F5F5F5" d="M832 76.2 Q832.25 68 840.65 68 L870.65 68 Q870.65 83.3 878.25 94.1 885.9 104.9 896.65 104.9 907.4 104.9 915 94.1 922.65 83.3 922.65 68 L951.35 68 Q959.75 68 960 76.2 L960 183.85 Q959.75 192 951.35 192 L927.1 192 925.65 189.4 Q923.4 185.5 921 182.35 910.4 168.5 896.5 168.5 882.6 168.5 872 182.35 869.55 185.5 867.3 189.4 L865.9 192 840.65 192 Q832.25 192 832 183.85 L832 76.2 M845.15 116.95 Q843.25 124.15 846.1 130.3 849 136.6 855 138.2 860.95 139.75 866.6 135.75 872.15 131.9 874.1 124.7 L874.1 124.65 Q875.7 118.65 872.6 113.3 869.45 107.9 863.5 106.35 857.5 104.75 852.1 107.85 846.8 110.9 845.15 116.9 L845.15 116.95 M909.35 131.25 L909.55 128.9 909.55 128 Q909.2 125.6 905.75 123.9 901.9 122.05 896.5 122.05 891.1 122.05 887.25 123.9 883.75 125.6 883.45 128 L883.45 128.9 883.65 131.25 Q884.3 135.2 887.25 138.15 889.4 140.3 892.05 141.25 L891.2 142.25 889.15 143.75 886.05 144.4 Q883.05 144.4 880.9 142.25 L879.55 140.5 879 140.05 878.35 140.15 873.75 142.7 Q873.4 142.9 873.35 143.25 873.2 143.55 873.4 143.9 874 145 874.9 146.1 L875.95 147.25 Q880.1 151.45 886.05 151.45 891.95 151.45 896.2 147.25 L896.5 146.95 896.8 147.25 Q901 151.45 906.9 151.45 912.8 151.45 917.05 147.25 L918.1 146.1 919.6 143.8 919.65 143.15 919.2 142.65 914.5 140.2 913.8 140.15 913.3 140.6 912.05 142.25 Q909.9 144.4 906.9 144.4 905.25 144.4 903.85 143.75 902.75 143.2 901.8 142.25 L900.95 141.25 Q903.6 140.3 905.75 138.15 908.7 135.2 909.35 131.25 M946.85 116.95 L946.85 116.9 Q945.2 110.9 939.9 107.85 934.5 104.75 928.5 106.35 922.55 107.9 919.4 113.3 916.3 118.65 917.9 124.65 L917.9 124.7 Q919.85 131.9 925.4 135.75 931.05 139.75 937 138.2 943 136.6 945.9 130.3 948.75 124.15 946.85 116.95"/>
+ <path stroke="none" fill="#807F7F" d="M960 76.2 L960 72.7 Q960 64 951.35 64 L840.65 64 Q832 64 832 72.7 L832 76.2 832 183.85 Q832.25 192 840.65 192 L865.9 192 927.1 192 951.35 192 Q959.75 192 960 183.85 L960 76.2 M951.35 60 Q964 60 964 72.7 L964 183.85 964 184 Q963.7 196 951.35 196 L840.65 196 Q828.3 196 828 184 L828 183.85 828 72.7 Q828 60 840.65 60 L951.35 60"/>
+ <path stroke="none" fill="#5B5B5B" d="M855.3 120.55 Q855.3 118.1 857 116.45 858.7 114.75 861.1 114.75 863.5 114.75 865.25 116.45 866.95 118.1 866.95 120.55 866.95 122.95 865.25 124.6 863.5 126.35 861.1 126.35 858.7 126.35 857 124.6 855.3 122.95 855.3 120.55 M850.8 120.4 Q850.8 124.25 853.5 126.85 856.25 129.65 860.1 129.65 863.9 129.65 866.65 126.85 869.35 124.25 869.35 120.4 869.35 116.55 866.65 113.85 863.9 111.15 860.1 111.15 856.25 111.15 853.5 113.85 850.8 116.55 850.8 120.4 M845.15 116.95 L845.15 116.9 Q846.8 110.9 852.1 107.85 857.5 104.75 863.5 106.35 869.45 107.9 872.6 113.3 875.7 118.65 874.1 124.65 L874.1 124.7 Q872.15 131.9 866.6 135.75 860.95 139.75 855 138.2 849 136.6 846.1 130.3 843.25 124.15 845.15 116.95 M909.35 131.25 Q908.7 135.2 905.75 138.15 903.6 140.3 900.95 141.25 896.7 143 892.05 141.25 889.4 140.3 887.25 138.15 884.3 135.2 883.65 131.25 884.35 129.3 887.25 127.9 891.1 126.05 896.5 126.05 901.9 126.05 905.75 127.9 908.65 129.35 909.35 131.25 M946.85 116.95 Q948.75 124.15 945.9 130.3 943 136.6 937 138.2 931.05 139.75 925.4 135.75 919.85 131.9 917.9 124.7 L917.9 124.65 Q916.3 118.65 919.4 113.3 922.55 107.9 928.5 106.35 934.5 104.75 939.9 107.85 945.2 110.9 946.85 116.9 L946.85 116.95 M941.2 120.4 Q941.2 116.55 938.5 113.85 935.75 111.15 931.9 111.15 928.1 111.15 925.35 113.85 922.65 116.55 922.65 120.4 922.65 124.25 925.35 126.85 928.1 129.65 931.9 129.65 935.75 129.65 938.5 126.85 941.2 124.25 941.2 120.4 M936.7 120.55 Q936.7 122.95 935 124.6 933.3 126.35 930.9 126.35 928.5 126.35 926.75 124.6 925.05 122.95 925.05 120.55 925.05 118.1 926.75 116.45 928.5 114.75 930.9 114.75 933.3 114.75 935 116.45 936.7 118.1 936.7 120.55"/>
+ <path stroke="none" fill="#666666" d="M883.65 131.25 L883.45 128.9 883.45 128 Q883.75 125.6 887.25 123.9 891.1 122.05 896.5 122.05 901.9 122.05 905.75 123.9 909.2 125.6 909.55 128 L909.55 128.9 909.35 131.25 Q908.65 129.35 905.75 127.9 901.9 126.05 896.5 126.05 891.1 126.05 887.25 127.9 884.35 129.3 883.65 131.25"/>
+ <path stroke="none" fill="#464646" d="M900.95 141.25 L901.8 142.25 Q902.75 143.2 903.85 143.75 905.25 144.4 906.9 144.4 909.9 144.4 912.05 142.25 L913.3 140.6 913.8 140.15 914.5 140.2 919.2 142.65 919.65 143.15 919.6 143.8 918.1 146.1 917.05 147.25 Q912.8 151.45 906.9 151.45 901 151.45 896.8 147.25 L896.5 146.95 896.2 147.25 Q891.95 151.45 886.05 151.45 880.1 151.45 875.95 147.25 L874.9 146.1 Q874 145 873.4 143.9 873.2 143.55 873.35 143.25 873.4 142.9 873.75 142.7 L878.35 140.15 879 140.05 879.55 140.5 880.9 142.25 Q883.05 144.4 886.05 144.4 L889.15 143.75 891.2 142.25 892.05 141.25 Q896.7 143 900.95 141.25"/>
+ <path stroke="none" fill="#E5E5E5" d="M865.9 192 L867.3 189.4 Q869.55 185.5 872 182.35 882.6 168.5 896.5 168.5 910.4 168.5 921 182.35 923.4 185.5 925.65 189.4 L927.1 192 865.9 192"/>
+ <path stroke="none" fill="#1D3138" d="M678.9 192 L695.35 192 Q703.75 192 704 183.85 L704 76.2 704 72.7 Q704 64 695.35 64 L584.65 64 Q576 64 576 72.7 L576 76.2 576 183.85 Q576.25 192 584.65 192 L600.65 192 678.9 192 M695.35 60 Q708 60 708 72.7 L708 183.85 708 184 Q707.7 196 695.35 196 L584.65 196 Q572.3 196 572 184 L572 183.85 572 72.7 Q572 60 584.65 60 L695.35 60"/>
+ <path stroke="none" fill="#447180" d="M576 76.2 L576 72.7 Q576 64 584.65 64 L695.35 64 Q704 64 704 72.7 L704 76.2 Q703.75 68 695.35 68 L584.65 68 Q576.25 68 576 76.2"/>
+ <path stroke="none" fill="#365A66" d="M576 76.2 Q576.25 68 584.65 68 L695.35 68 Q703.75 68 704 76.2 L704 183.85 Q703.75 192 695.35 192 L678.9 192 677.05 189.15 Q672.65 182.8 667.75 178.3 655.4 166.9 639.8 166.9 624.15 166.9 611.85 178.3 606.95 182.85 602.55 189.15 L600.65 192 584.65 192 Q576.25 192 576 183.85 L576 76.2 M686.75 111.25 Q684.9 104.7 678.95 101.25 672.75 97.65 665.9 99.5 659.1 101.3 655.5 107.55 652.05 113.45 653.65 120.15 L653.8 120.7 Q657.05 132.8 664.25 140 671.4 147.2 678.25 145.4 685.1 143.55 687.65 133.7 690.15 123.9 686.9 111.8 L686.75 111.25 M655.55 137.9 Q654.8 133.05 651.15 129.35 650.25 128.45 649.35 127.8 645.3 124.75 640 124.75 634.7 124.75 630.65 127.8 629.7 128.45 628.8 129.35 625.15 133.05 624.4 137.9 L624.2 140.5 624.25 141.55 Q624.55 145.05 628.8 147.55 633.45 150.25 640 150.25 646.55 150.25 651.15 147.55 655.4 145.05 655.7 141.55 L655.75 140.5 655.55 137.9 M626.4 120.2 Q628.05 113.5 624.55 107.55 621.05 101.35 614.15 99.55 607.3 97.65 601.1 101.25 595.15 104.7 593.25 111.25 L593.05 111.8 Q589.85 123.9 592.45 133.75 595.05 143.55 601.85 145.45 608.75 147.25 615.9 140 623 132.85 626.2 120.75 L626.4 120.2"/>
+ <path stroke="none" fill="#D5EEF7" d="M626.4 120.2 L626.2 120.75 Q623 132.85 615.9 140 608.75 147.25 601.85 145.45 595.05 143.55 592.45 133.75 589.85 123.9 593.05 111.8 L593.25 111.25 Q595.15 104.7 601.1 101.25 607.3 97.65 614.15 99.55 621.05 101.35 624.55 107.55 628.05 113.5 626.4 120.2 M686.75 111.25 L686.9 111.8 Q690.15 123.9 687.65 133.7 685.1 143.55 678.25 145.4 671.4 147.2 664.25 140 657.05 132.8 653.8 120.7 L653.65 120.15 Q652.05 113.45 655.5 107.55 659.1 101.3 665.9 99.5 672.75 97.65 678.95 101.25 684.9 104.7 686.75 111.25 M679.05 123.1 Q679.05 118.7 675.95 115.65 672.85 112.6 668.5 112.6 664.25 112.6 661.05 115.65 658.05 118.7 658.05 123.1 658.05 127.45 661.05 130.45 664.25 133.6 668.5 133.6 672.85 133.6 675.95 130.45 679.05 127.45 679.05 123.1 M600.8 123.1 Q600.8 127.45 603.85 130.45 606.95 133.6 611.3 133.6 615.6 133.6 618.75 130.45 621.8 127.45 621.8 123.1 621.8 118.7 618.75 115.65 615.6 112.6 611.3 112.6 606.95 112.6 603.85 115.65 600.8 118.7 600.8 123.1"/>
+ <path stroke="none" fill="#FFFFFF" d="M600.8 123.1 Q600.8 118.7 603.85 115.65 606.95 112.6 611.3 112.6 615.6 112.6 618.75 115.65 621.8 118.7 621.8 123.1 621.8 127.45 618.75 130.45 615.6 133.6 611.3 133.6 606.95 133.6 603.85 130.45 600.8 127.45 600.8 123.1 M679.05 123.1 Q679.05 127.45 675.95 130.45 672.85 133.6 668.5 133.6 664.25 133.6 661.05 130.45 658.05 127.45 658.05 123.1 658.05 118.7 661.05 115.65 664.25 112.6 668.5 112.6 672.85 112.6 675.95 115.65 679.05 118.7 679.05 123.1 M674.3 125.05 Q674.3 122.25 672.4 120.4 670.45 118.45 667.7 118.45 665 118.45 663 120.4 661.1 122.25 661.1 125.05 L661.1 125.7 Q661.3 127.95 663 129.6 665 131.5 667.7 131.5 670.45 131.5 672.4 129.6 674.05 127.95 674.25 125.7 L674.3 125.05 M605.55 125.05 L605.6 125.7 Q605.75 127.95 607.4 129.6 609.35 131.5 612.15 131.5 614.8 131.5 616.8 129.6 618.55 127.95 618.7 125.7 L618.75 125.05 Q618.75 122.25 616.8 120.4 614.8 118.45 612.15 118.45 609.35 118.45 607.4 120.4 605.55 122.25 605.55 125.05"/>
+ <path stroke="none" fill="#5B5B5B" d="M605.55 125.05 Q605.55 122.25 607.4 120.4 609.35 118.45 612.15 118.45 614.8 118.45 616.8 120.4 618.75 122.25 618.75 125.05 L618.7 125.7 Q618.55 127.95 616.8 129.6 614.8 131.5 612.15 131.5 609.35 131.5 607.4 129.6 605.75 127.95 605.6 125.7 L605.55 125.05 M674.3 125.05 L674.25 125.7 Q674.05 127.95 672.4 129.6 670.45 131.5 667.7 131.5 665 131.5 663 129.6 661.3 127.95 661.1 125.7 L661.1 125.05 Q661.1 122.25 663 120.4 665 118.45 667.7 118.45 670.45 118.45 672.4 120.4 674.3 122.25 674.3 125.05"/>
+ <path stroke="none" fill="#FF9900" d="M624.4 137.9 Q625.15 133.05 628.8 129.35 629.7 128.45 630.65 127.8 634.7 124.75 640 124.75 645.3 124.75 649.35 127.8 650.25 128.45 651.15 129.35 654.8 133.05 655.55 137.9 654.85 139.9 651.15 141.4 646.55 143.3 640 143.3 633.45 143.3 628.8 141.4 625.1 139.9 624.4 137.9"/>
+ <path stroke="none" fill="#E08600" d="M624.4 137.9 Q625.1 139.9 628.8 141.4 633.45 143.3 640 143.3 646.55 143.3 651.15 141.4 654.85 139.9 655.55 137.9 L655.75 140.5 655.7 141.55 Q655.4 145.05 651.15 147.55 646.55 150.25 640 150.25 633.45 150.25 628.8 147.55 624.55 145.05 624.25 141.55 L624.2 140.5 624.4 137.9"/>
+ <path stroke="none" fill="#F2F9FB" d="M678.9 192 L600.65 192 602.55 189.15 Q606.95 182.85 611.85 178.3 624.15 166.9 639.8 166.9 655.4 166.9 667.75 178.3 672.65 182.8 677.05 189.15 L678.9 192"/>
+ <path stroke="none" fill="#EEBE00" d="M344.55 68 L424.6 68 Q422.7 88.6 413.2 104.05 401.35 123.35 384.55 123.35 367.8 123.35 355.95 104.05 346.4 88.6 344.55 68 M393.25 102.6 Q393.95 103.1 394.8 103.1 395.7 103.1 396.4 102.6 L406.1 95.55 Q406.75 95 407 94.2 407.25 93.4 407 92.6 L403.3 81.15 Q403.05 80.3 402.4 79.8 401.7 79.3 400.8 79.3 L388.75 79.3 Q387.85 79.3 387.2 79.8 386.5 80.3 386.25 81.15 L382.55 92.6 Q382.3 93.4 382.55 94.2 382.8 95 383.5 95.55 L393.25 102.6 M372 110.3 Q372.2 111.1 372.8 111.75 373.45 112.25 374.3 112.4 L380.5 113.05 382.1 112.7 Q382.85 112.25 383.2 111.45 L385.75 105.75 Q386.1 104.95 385.95 104.15 385.75 103.25 385.15 102.7 L380.5 98.5 Q379.85 97.9 379 97.85 378.15 97.75 377.4 98.15 L371.95 101.3 Q371.2 101.7 370.85 102.55 370.5 103.3 370.7 104.2 L372 110.3 M380.6 86.65 L381.05 85.1 Q381.05 84.25 380.6 83.55 L375.65 76.75 Q375.15 76.05 374.35 75.8 373.5 75.5 372.7 75.8 L364.75 78.35 Q363.9 78.65 363.4 79.35 362.9 80 362.9 80.85 L362.9 89.25 Q362.9 90.15 363.4 90.85 363.9 91.5 364.75 91.75 L372.7 94.35 Q373.5 94.6 374.35 94.35 375.15 94.1 375.65 93.45 L380.6 86.65"/>
+ <path stroke="none" fill="#FFCC00" d="M380.6 86.65 L375.65 93.45 Q375.15 94.1 374.35 94.35 373.5 94.6 372.7 94.35 L364.75 91.75 Q363.9 91.5 363.4 90.85 362.9 90.15 362.9 89.25 L362.9 80.85 Q362.9 80 363.4 79.35 363.9 78.65 364.75 78.35 L372.7 75.8 Q373.5 75.5 374.35 75.8 375.15 76.05 375.65 76.75 L380.6 83.55 Q381.05 84.25 381.05 85.1 L380.6 86.65 M424.6 68 L439.35 68 Q447.75 68 448 76.2 L448 183.85 Q447.75 192 439.35 192 L430 192 430.1 191.9 Q425.15 190 425.2 184.45 424.9 181.35 424.1 178.4 L423.65 176.85 Q422.5 173.45 420.7 170.35 417.9 165.6 413.5 161.5 401.7 150.6 385.05 150.6 368.4 150.6 356.55 161.5 352.1 165.6 349.35 170.4 347.85 173 346.85 175.75 L345.85 179.1 Q345.2 181.7 344.95 184.45 343.4 190.15 339.1 192 L328.65 192 Q320.25 192 320 183.85 L320 76.2 Q320.25 68 328.65 68 L344.55 68 Q346.4 88.6 355.95 104.05 367.8 123.35 384.55 123.35 401.35 123.35 413.2 104.05 422.7 88.6 424.6 68 M393.25 102.6 L383.5 95.55 Q382.8 95 382.55 94.2 382.3 93.4 382.55 92.6 L386.25 81.15 Q386.5 80.3 387.2 79.8 387.85 79.3 388.75 79.3 L400.8 79.3 Q401.7 79.3 402.4 79.8 403.05 80.3 403.3 81.15 L407 92.6 Q407.25 93.4 407 94.2 406.75 95 406.1 95.55 L396.4 102.6 Q395.7 103.1 394.8 103.1 393.95 103.1 393.25 102.6 M372 110.3 L370.7 104.2 Q370.5 103.3 370.85 102.55 371.2 101.7 371.95 101.3 L377.4 98.15 Q378.15 97.75 379 97.85 379.85 97.9 380.5 98.5 L385.15 102.7 Q385.75 103.25 385.95 104.15 386.1 104.95 385.75 105.75 L383.2 111.45 Q382.85 112.25 382.1 112.7 L380.5 113.05 374.3 112.4 Q373.45 112.25 372.8 111.75 372.2 111.1 372 110.3 M335.5 134.55 Q335.5 139.7 339.15 143.3 342.8 147 348 147 353.1 147 356.8 143.3 360.45 139.7 360.45 134.55 360.45 129.35 356.8 125.7 353.1 122.05 348 122.05 342.8 122.05 339.15 125.7 335.5 129.35 335.5 134.55 M432.5 134.55 Q432.5 129.35 428.85 125.7 425.2 122.05 420 122.05 414.9 122.05 411.2 125.7 407.55 129.35 407.55 134.55 407.55 139.7 411.2 143.3 414.9 147 420 147 425.2 147 428.85 143.3 432.5 139.7 432.5 134.55"/>
+ <path stroke="none" fill="#FFD738" d="M448 76.2 Q447.75 68 439.35 68 L424.6 68 344.55 68 328.65 68 Q320.25 68 320 76.2 L320 72.7 Q320 64 328.65 64 L439.35 64 Q448 64 448 72.7 L448 76.2"/>
+ <path stroke="none" fill="#987900" d="M448 76.2 L448 72.7 Q448 64 439.35 64 L328.65 64 Q320 64 320 72.7 L320 76.2 320 183.85 Q320.25 192 328.65 192 L339.1 192 430 192 439.35 192 Q447.75 192 448 183.85 L448 76.2 M439.35 60 Q452 60 452 72.7 L452 183.85 452 184 Q451.7 196 439.35 196 L328.65 196 Q316.3 196 316 184 L316 183.85 316 72.7 Q316 60 328.65 60 L439.35 60"/>
+ <path stroke="none" fill="#FFFFFF" d="M335.5 134.55 Q335.5 129.35 339.15 125.7 342.8 122.05 348 122.05 353.1 122.05 356.8 125.7 360.45 129.35 360.45 134.55 360.45 139.7 356.8 143.3 353.1 147 348 147 342.8 147 339.15 143.3 335.5 139.7 335.5 134.55 M340.2 134.75 Q340.2 138.35 342.75 140.8 345.25 143.35 348.9 143.35 352.45 143.35 355 140.8 357.55 138.35 357.55 134.75 357.55 131.15 355 128.6 352.45 126.1 348.9 126.1 345.25 126.1 342.75 128.6 340.2 131.15 340.2 134.75 M432.5 134.55 Q432.5 139.7 428.85 143.3 425.2 147 420 147 414.9 147 411.2 143.3 407.55 139.7 407.55 134.55 407.55 129.35 411.2 125.7 414.9 122.05 420 122.05 425.2 122.05 428.85 125.7 432.5 129.35 432.5 134.55 M427.75 134.75 Q427.75 131.15 425.25 128.6 422.75 126.1 419.1 126.1 415.55 126.1 412.95 128.6 410.45 131.15 410.45 134.75 410.45 138.35 412.95 140.8 415.55 143.35 419.1 143.35 422.75 143.35 425.25 140.8 427.75 138.35 427.75 134.75"/>
+ <path stroke="none" fill="#5B5B5B" d="M427.75 134.75 Q427.75 138.35 425.25 140.8 422.75 143.35 419.1 143.35 415.55 143.35 412.95 140.8 410.45 138.35 410.45 134.75 410.45 131.15 412.95 128.6 415.55 126.1 419.1 126.1 422.75 126.1 425.25 128.6 427.75 131.15 427.75 134.75 M340.2 134.75 Q340.2 131.15 342.75 128.6 345.25 126.1 348.9 126.1 352.45 126.1 355 128.6 357.55 131.15 357.55 134.75 357.55 138.35 355 140.8 352.45 143.35 348.9 143.35 345.25 143.35 342.75 140.8 340.2 138.35 340.2 134.75"/>
+ <path stroke="none" fill="#D2A800" d="M339.1 192 Q343.4 190.15 344.95 184.45 345.2 181.7 345.85 179.1 L346.85 175.75 Q347.85 173 349.35 170.4 352.1 165.6 356.55 161.5 368.4 150.6 385.05 150.6 401.7 150.6 413.5 161.5 417.9 165.6 420.7 170.35 422.5 173.45 423.65 176.85 L424.1 178.4 Q424.9 181.35 425.2 184.45 425.15 190 430.1 191.9 L430 192 339.1 192 M403.5 161 Q402 159.5 399.05 160.35 396.1 161.15 393.45 163.8 L393.3 163.95 392.55 165 Q391.9 166.1 391.9 167.5 391.9 169.65 393.4 171.15 394.9 172.65 397.05 172.65 399.1 172.65 400.6 171.25 L400.75 171.1 Q403.4 168.45 404.2 165.5 404.95 162.95 403.9 161.45 L403.5 161 M369.4 171.25 Q370.9 172.65 372.95 172.65 375.1 172.65 376.6 171.15 378.1 169.65 378.1 167.5 378.1 166.1 377.5 165 L376.7 163.95 376.55 163.8 Q373.9 161.15 370.95 160.35 368 159.5 366.5 161 L366.15 161.45 Q365.05 162.95 365.8 165.5 366.6 168.45 369.25 171.1 L369.4 171.25"/>
+ <path stroke="none" fill="#A38200" d="M369.4 171.25 L369.25 171.1 Q366.6 168.45 365.8 165.5 365.05 162.95 366.15 161.45 L366.5 161 Q368 159.5 370.95 160.35 373.9 161.15 376.55 163.8 L376.7 163.95 377.5 165 Q378.1 166.1 378.1 167.5 378.1 169.65 376.6 171.15 375.1 172.65 372.95 172.65 370.9 172.65 369.4 171.25 M403.5 161 L403.9 161.45 Q404.95 162.95 404.2 165.5 403.4 168.45 400.75 171.1 L400.6 171.25 Q399.1 172.65 397.05 172.65 394.9 172.65 393.4 171.15 391.9 169.65 391.9 167.5 391.9 166.1 392.55 165 L393.3 163.95 393.45 163.8 Q396.1 161.15 399.05 160.35 402 159.5 403.5 161"/>
+ <path stroke="none" fill="#1B8045" d="M192 76.2 L192 72.7 Q192 64 183.35 64 L72.65 64 Q64 64 64 72.7 L64 76.2 64 183.85 Q64.25 192 72.65 192 L183.35 192 Q191.75 192 192 183.85 L192 76.2 M183.35 60 Q196 60 196 72.7 L196 183.85 196 184 Q195.7 196 183.35 196 L72.65 196 Q60.3 196 60 184 L60 183.85 60 72.7 Q60 60 72.65 60 L183.35 60"/>
+ <path stroke="none" fill="#31DE7A" d="M192 76.2 Q191.75 68 183.35 68 L168.4 68 87.65 68 72.65 68 Q64.25 68 64 76.2 L64 72.7 Q64 64 72.65 64 L183.35 64 Q192 64 192 72.7 L192 76.2"/>
+ <path stroke="none" fill="#2ECC71" d="M192 76.2 L192 183.85 Q191.75 192 183.35 192 L72.65 192 Q64.25 192 64 183.85 L64 76.2 Q64.25 68 72.65 68 L87.65 68 Q89.8 88.65 99 104.3 111.05 124.8 128 124.8 145 124.8 157 104.3 166.2 88.65 168.4 68 L183.35 68 Q191.75 68 192 76.2 M179.65 140.55 Q179.65 134.8 175.6 130.8 171.55 126.75 165.85 126.75 160.25 126.75 156.1 130.8 152.15 134.8 152.15 140.55 152.15 146.25 156.1 150.15 160.25 154.25 165.85 154.25 171.55 154.25 175.6 150.15 179.65 146.25 179.65 140.55 M114.8 187.5 Q121.15 188.75 128 188.75 134.85 188.75 141.25 187.5 L145.25 186.6 148.4 185.65 157.4 181.85 157.9 181.6 160.15 180.3 Q167.15 176.15 173.3 170 178.95 164.35 182.9 158 L184.85 154.6 182.85 156.1 182.4 156.45 181.55 157.05 162.1 167.2 160.7 167.7 Q155.25 169.55 149.5 170.75 L141.25 172.05 136.7 172.5 136.55 172.5 128 173 119.75 172.55 114.75 172.05 112.7 171.8 106.6 170.75 Q100.75 169.55 95.35 167.7 84.9 164.1 75.9 158 L73.2 156.1 71.15 154.55 73.15 158 Q77.1 164.35 82.75 170 88.9 176.15 95.85 180.25 L98 181.5 98.7 181.85 100.4 182.7 109.45 186.2 110.75 186.55 111.9 186.85 113.55 187.25 114.75 187.5 114.8 187.5 M77.15 140.55 Q77.15 146.25 81.2 150.15 85.25 154.25 90.95 154.25 96.55 154.25 100.7 150.15 104.65 146.25 104.65 140.55 104.65 134.8 100.7 130.8 96.55 126.75 90.95 126.75 85.25 126.75 81.2 130.8 77.15 134.8 77.15 140.55 M120.55 150.15 Q118.95 148.55 116.7 148.55 114.55 148.55 112.95 150.05 L112.8 150.2 Q110.05 152.95 109.15 156.1 108.85 157.15 108.85 158 108.85 159.75 109.9 160.8 110.55 161.45 111.5 161.7 L114.6 161.5 Q116.95 160.85 119.15 159.1 L120.4 158 120.5 157.9 120.65 157.75 Q122.15 156.2 122.15 154 122.15 151.75 120.55 150.15 M146.1 160.8 Q147.15 159.75 147.15 158 L146.85 156.1 Q146 152.95 143.2 150.2 L143.05 150.05 Q141.5 148.55 139.3 148.55 137.05 148.55 135.45 150.15 133.85 151.75 133.85 154 133.85 156.2 135.35 157.75 L135.5 157.9 135.6 158 136.9 159.1 Q139.05 160.85 141.4 161.5 L144.55 161.7 Q145.45 161.45 146.1 160.8"/>
+ <path stroke="none" fill="#FFFFFF" d="M166.85 140.45 Q166.85 136.8 165.9 134.35 164.9 131.85 163.5 131.8 L163.4 131.8 Q162.05 131.85 161.05 134.35 160.05 136.8 160.05 140.45 L160.05 141.3 Q160.15 144.25 161.05 146.4 162.05 148.85 163.4 148.9 L163.5 148.9 Q164.9 148.85 165.9 146.4 166.75 144.25 166.85 141.3 L166.85 140.45 M179.65 140.55 Q179.65 146.25 175.6 150.15 171.55 154.25 165.85 154.25 160.25 154.25 156.1 150.15 152.15 146.25 152.15 140.55 152.15 134.8 156.1 130.8 160.25 126.75 165.85 126.75 171.55 126.75 175.6 130.8 179.65 134.8 179.65 140.55 M95.35 167.7 Q100.75 169.55 106.6 170.75 L102.85 173.85 Q100.5 175.8 98.15 172.1 L95.35 167.7 M149.5 170.75 Q155.25 169.55 160.7 167.7 L157.85 172.1 Q155.5 175.8 153.15 173.85 L149.5 170.75 M89.95 140.45 L89.95 141.3 Q90.05 144.25 90.9 146.4 91.9 148.85 93.3 148.9 L93.4 148.9 Q94.7 148.85 95.75 146.4 96.6 144.25 96.7 141.3 L96.75 140.45 Q96.75 136.8 95.75 134.35 94.7 131.85 93.4 131.8 L93.3 131.8 Q91.9 131.85 90.9 134.35 89.95 136.8 89.95 140.45 M77.15 140.55 Q77.15 134.8 81.2 130.8 85.25 126.75 90.95 126.75 96.55 126.75 100.7 130.8 104.65 134.8 104.65 140.55 104.65 146.25 100.7 150.15 96.55 154.25 90.95 154.25 85.25 154.25 81.2 150.15 77.15 146.25 77.15 140.55"/>
+ <path stroke="none" fill="#5B5B5B" d="M166.85 140.45 L166.85 141.3 Q166.75 144.25 165.9 146.4 164.9 148.85 163.5 148.9 L163.4 148.9 Q162.05 148.85 161.05 146.4 160.15 144.25 160.05 141.3 L160.05 140.45 Q160.05 136.8 161.05 134.35 162.05 131.85 163.4 131.8 L163.5 131.8 Q164.9 131.85 165.9 134.35 166.85 136.8 166.85 140.45 M89.95 140.45 Q89.95 136.8 90.9 134.35 91.9 131.85 93.3 131.8 L93.4 131.8 Q94.7 131.85 95.75 134.35 96.75 136.8 96.75 140.45 L96.7 141.3 Q96.6 144.25 95.75 146.4 94.7 148.85 93.4 148.9 L93.3 148.9 Q91.9 148.85 90.9 146.4 90.05 144.25 89.95 141.3 L89.95 140.45"/>
+ <path stroke="none" fill="#2ABD68" d="M160.7 167.7 L162.1 167.2 181.55 157.05 182.4 156.45 182.85 156.1 184.85 154.6 182.9 158 Q178.95 164.35 173.3 170 167.15 176.15 160.15 180.3 L157.9 181.6 157.4 181.85 148.4 185.65 145.25 186.6 141.25 187.5 Q134.85 188.75 128 188.75 121.15 188.75 114.8 187.5 L128 180.85 141.25 187.5 141.25 172.05 149.5 170.75 153.15 173.85 Q155.5 175.8 157.85 172.1 L160.7 167.7 M114.75 187.5 L113.55 187.25 111.9 186.85 110.75 186.55 109.45 186.2 100.4 182.7 98.7 181.85 98 181.5 95.85 180.25 Q88.9 176.15 82.75 170 77.1 164.35 73.15 158 L71.15 154.55 73.2 156.1 75.9 158 Q84.9 164.1 95.35 167.7 L98.15 172.1 Q100.5 175.8 102.85 173.85 L106.6 170.75 112.7 171.8 114.75 172.05 114.75 187.5"/>
+ <path stroke="none" fill="#28BD68" d="M87.65 68 L168.4 68 Q166.2 88.65 157 104.3 145 124.8 128 124.8 111.05 124.8 99 104.3 89.8 88.65 87.65 68 M113.45 112.55 L113.4 112.55 Q128.65 119.6 142.65 112.55 L142.7 112.5 Q143.55 112.1 143.85 111.2 L143.8 111.3 Q144.1 110.45 143.85 109.75 143.55 108.8 142.7 108.4 L142.65 108.4 Q128.7 101.25 113.5 108.35 112.45 108.75 112.2 109.75 111.9 110.45 112.25 111.3 112.5 112.1 113.45 112.55 M152 93.5 L152.05 93.45 Q152.35 92.45 152.05 91.55 L152.05 91.5 Q151.6 90.35 150.6 89.95 L150.65 90 Q129.05 78.95 105.45 89.95 L105.5 89.95 Q104.35 90.4 104 91.55 103.65 92.45 104 93.45 104.35 94.45 105.45 95 L105.45 95.05 Q129.05 105.95 150.65 95 151.6 94.5 152 93.5"/>
+ <path stroke="none" fill="#31DB79" d="M152 93.5 Q151.6 94.5 150.65 95 129.05 105.95 105.45 95.05 L105.45 95 Q104.35 94.45 104 93.45 103.65 92.45 104 91.55 104.35 90.4 105.5 89.95 L105.45 89.95 Q129.05 78.95 150.65 90 L150.6 89.95 Q151.6 90.35 152.05 91.5 L152.05 91.55 Q152.35 92.45 152.05 93.45 L152 93.5 M113.45 112.55 Q112.5 112.1 112.25 111.3 111.9 110.45 112.2 109.75 112.45 108.75 113.5 108.35 128.7 101.25 142.65 108.4 L142.7 108.4 Q143.55 108.8 143.85 109.75 144.1 110.45 143.8 111.3 L143.85 111.2 Q143.55 112.1 142.7 112.5 L142.65 112.55 Q128.65 119.6 113.4 112.55 L113.45 112.55"/>
+ <path stroke="none" fill="#24A35A" d="M120.55 150.15 Q122.15 151.75 122.15 154 122.15 156.2 120.65 157.75 L120.5 157.9 120.4 158 119.15 159.1 Q116.95 160.85 114.6 161.5 L111.5 161.7 Q110.55 161.45 109.9 160.8 108.85 159.75 108.85 158 108.85 157.15 109.15 156.1 110.05 152.95 112.8 150.2 L112.95 150.05 Q114.55 148.55 116.7 148.55 118.95 148.55 120.55 150.15 M146.1 160.8 Q145.45 161.45 144.55 161.7 L141.4 161.5 Q139.05 160.85 136.9 159.1 L135.6 158 135.5 157.9 135.35 157.75 Q133.85 156.2 133.85 154 133.85 151.75 135.45 150.15 137.05 148.55 139.3 148.55 141.5 148.55 143.05 150.05 L143.2 150.2 Q146 152.95 146.85 156.1 L147.15 158 Q147.15 159.75 146.1 160.8"/>
+ <path stroke="none" fill="#E74C3C" d="M114.8 187.5 L114.75 187.5 114.75 172.05 119.75 172.55 128 173 128 180.85 114.8 187.5"/>
+ <path stroke="none" fill="#D24436" d="M128 173 L136.55 172.5 136.7 172.5 141.25 172.05 141.25 187.5 128 180.85 128 173"/>
+ </g>
+</svg>
\ No newline at end of file
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://berqrqee0p4m"
+path="res://.godot/imported/square_nodetailsOutline.svg-9a662c2e193a0dcc2238e7c39fdccd0a.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/Vector/square_nodetailsOutline.svg"
+dest_files=["res://.godot/imported/square_nodetailsOutline.svg-9a662c2e193a0dcc2238e7c39fdccd0a.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
+svg/scale=1.0
+editor/scale_with_editor_scale=false
+editor/convert_colors_with_editor_theme=false
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://o8oexbq6ak2t"
+path="res://.godot/imported/bear.png-7e9ab229fc0f3992209fcc4633011a1b.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/bear.png"
+dest_files=["res://.godot/imported/bear.png-7e9ab229fc0f3992209fcc4633011a1b.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c3du5a4b8s34o"
+path="res://.godot/imported/buffalo.png-4ce4eb19093bafb5adf732a70bce7277.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/buffalo.png"
+dest_files=["res://.godot/imported/buffalo.png-4ce4eb19093bafb5adf732a70bce7277.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://8e8kgwyvdbmy"
+path="res://.godot/imported/chick.png-617d08f1dee79e909e7f71f890d8cd7c.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/chick.png"
+dest_files=["res://.godot/imported/chick.png-617d08f1dee79e909e7f71f890d8cd7c.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b3frx2h1bum3s"
+path="res://.godot/imported/chicken.png-ffa512b7784ad1114f1829ee016fbd26.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/chicken.png"
+dest_files=["res://.godot/imported/chicken.png-ffa512b7784ad1114f1829ee016fbd26.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cojbncqhrvx72"
+path="res://.godot/imported/cow.png-8cf31758f640f6046b5e704f3740cc1b.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/cow.png"
+dest_files=["res://.godot/imported/cow.png-8cf31758f640f6046b5e704f3740cc1b.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bambvjp433em6"
+path="res://.godot/imported/crocodile.png-e96a2dc1168540ca38772e2c6f92deae.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/crocodile.png"
+dest_files=["res://.godot/imported/crocodile.png-e96a2dc1168540ca38772e2c6f92deae.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bc8xatvwiwv5i"
+path="res://.godot/imported/dog.png-8014e7b8cb46ff82bdbbe26e4b02a321.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/dog.png"
+dest_files=["res://.godot/imported/dog.png-8014e7b8cb46ff82bdbbe26e4b02a321.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c18j0bp8xfko1"
+path="res://.godot/imported/duck.png-8b7eab82802761a9220cf3a79a29d52a.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/duck.png"
+dest_files=["res://.godot/imported/duck.png-8b7eab82802761a9220cf3a79a29d52a.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cvsomx74l4giv"
+path="res://.godot/imported/elephant.png-430f0cce7c4233110f0b3ad77b5fa953.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/elephant.png"
+dest_files=["res://.godot/imported/elephant.png-430f0cce7c4233110f0b3ad77b5fa953.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://4r87cob0e3sl"
+path="res://.godot/imported/frog.png-5f050117e744ba7b895eb5c06d6cc926.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/frog.png"
+dest_files=["res://.godot/imported/frog.png-5f050117e744ba7b895eb5c06d6cc926.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dg3htulg4qeko"
+path="res://.godot/imported/giraffe.png-0600716e5bf780e1c740b6e711f5d821.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/giraffe.png"
+dest_files=["res://.godot/imported/giraffe.png-0600716e5bf780e1c740b6e711f5d821.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bsqkauridbsae"
+path="res://.godot/imported/goat.png-0e4027ad63cf21dfc1fe336f67178247.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/goat.png"
+dest_files=["res://.godot/imported/goat.png-0e4027ad63cf21dfc1fe336f67178247.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c4nmp8eyqg6sy"
+path="res://.godot/imported/gorilla.png-203c5c31fd01c78b97ddce33b2dae290.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/gorilla.png"
+dest_files=["res://.godot/imported/gorilla.png-203c5c31fd01c78b97ddce33b2dae290.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://ces7suhivx8wv"
+path="res://.godot/imported/hippo.png-14bd5237b20709f023ba1cd7e5c7e2a9.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/hippo.png"
+dest_files=["res://.godot/imported/hippo.png-14bd5237b20709f023ba1cd7e5c7e2a9.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dvu4pgsmtaxml"
+path="res://.godot/imported/horse.png-105c235dde19811ca97f47847a8594b9.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/horse.png"
+dest_files=["res://.godot/imported/horse.png-105c235dde19811ca97f47847a8594b9.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dxi2687tqovpv"
+path="res://.godot/imported/monkey.png-4851c948fcf7efb069ac0d22f19835cb.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/monkey.png"
+dest_files=["res://.godot/imported/monkey.png-4851c948fcf7efb069ac0d22f19835cb.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://eg8n4g88iu42"
+path="res://.godot/imported/moose.png-effbc140191939d85a83ade06b626426.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/moose.png"
+dest_files=["res://.godot/imported/moose.png-effbc140191939d85a83ade06b626426.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bimcshsq3khnh"
+path="res://.godot/imported/narwhal.png-8141005bd2172703f05e21d20d4e1936.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/narwhal.png"
+dest_files=["res://.godot/imported/narwhal.png-8141005bd2172703f05e21d20d4e1936.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b7lxa5rofx8ns"
+path="res://.godot/imported/owl.png-1086b5bad1700f4fbdccbf4153cfcae1.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/owl.png"
+dest_files=["res://.godot/imported/owl.png-1086b5bad1700f4fbdccbf4153cfcae1.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://clv1x1dv2v7xa"
+path="res://.godot/imported/panda.png-1587556c8853ee6a521f9f0bbd348f36.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/panda.png"
+dest_files=["res://.godot/imported/panda.png-1587556c8853ee6a521f9f0bbd348f36.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dbigw60p1bg4j"
+path="res://.godot/imported/parrot.png-cbff2aee71c1049bf38abaed3df95b98.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/parrot.png"
+dest_files=["res://.godot/imported/parrot.png-cbff2aee71c1049bf38abaed3df95b98.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bwkkn4bq00b3a"
+path="res://.godot/imported/penguin.png-0185fcb86ba2e0dd08446c841e246097.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/penguin.png"
+dest_files=["res://.godot/imported/penguin.png-0185fcb86ba2e0dd08446c841e246097.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b7hpsfrwc6x7a"
+path="res://.godot/imported/pig.png-bb4bb178a08546f540312563c90f42d9.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/pig.png"
+dest_files=["res://.godot/imported/pig.png-bb4bb178a08546f540312563c90f42d9.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bq4vkfppvfydy"
+path="res://.godot/imported/rabbit.png-e358a1f6970b6c54236dcac15359e225.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/rabbit.png"
+dest_files=["res://.godot/imported/rabbit.png-e358a1f6970b6c54236dcac15359e225.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://jx7mroh4hqcf"
+path="res://.godot/imported/rhino.png-14c772458a2786c5a5655448f3309bb5.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/rhino.png"
+dest_files=["res://.godot/imported/rhino.png-14c772458a2786c5a5655448f3309bb5.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dbdrbrc8flf0h"
+path="res://.godot/imported/sloth.png-4b91be4d312eafd6bc4b2f797a6131ca.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/sloth.png"
+dest_files=["res://.godot/imported/sloth.png-4b91be4d312eafd6bc4b2f797a6131ca.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c3swbs0lmwcpi"
+path="res://.godot/imported/snake.png-1d2dcaa2e9035811c77f2e4f513d94b0.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/snake.png"
+dest_files=["res://.godot/imported/snake.png-1d2dcaa2e9035811c77f2e4f513d94b0.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+https://opengameart.org/content/animal-pack-redux
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b803mdjx4gib6"
+path="res://.godot/imported/walrus.png-d8f82e3f5ca24c2c6a7fdc94679ad4d6.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/walrus.png"
+dest_files=["res://.godot/imported/walrus.png-d8f82e3f5ca24c2c6a7fdc94679ad4d6.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c3r2ra8do8051"
+path="res://.godot/imported/whale.png-e1eb6770ca008bad0971048757924f5c.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/whale.png"
+dest_files=["res://.godot/imported/whale.png-e1eb6770ca008bad0971048757924f5c.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dqsqb43sc5cvc"
+path="res://.godot/imported/zebra.png-6c220a48857011e43f9420509be1dafc.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/animals/zebra.png"
+dest_files=["res://.godot/imported/zebra.png-6c220a48857011e43f9420509be1dafc.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+%PDF-1.5\r%âãÏÓ\r
+1 0 obj\r<</Metadata 2 0 R/OCProperties<</D<</ON[5 0 R 65 0 R 124 0 R 183 0 R 242 0 R 304 0 R]/Order 305 0 R/RBGroups[]>>/OCGs[5 0 R 65 0 R 124 0 R 183 0 R 242 0 R 304 0 R]>>/Pages 3 0 R/Type/Catalog>>\rendobj\r2 0 obj\r<</Length 70222/Subtype/XML/Type/Metadata>>stream\r
+<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
+<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27 ">
+ <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
+ <rdf:Description rdf:about=""
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <dc:format>application/pdf</dc:format>
+ <dc:title>
+ <rdf:Alt>
+ <rdf:li xml:lang="x-default">Letter_Blocks_01</rdf:li>
+ </rdf:Alt>
+ </dc:title>
+ </rdf:Description>
+ <rdf:Description rdf:about=""
+ xmlns:xmp="http://ns.adobe.com/xap/1.0/"
+ xmlns:xmpGImg="http://ns.adobe.com/xap/1.0/g/img/">
+ <xmp:MetadataDate>2012-11-26T23:20:20Z</xmp:MetadataDate>
+ <xmp:ModifyDate>2012-11-26T23:20:20Z</xmp:ModifyDate>
+ <xmp:CreateDate>2012-11-26T23:00:53Z</xmp:CreateDate>
+ <xmp:CreatorTool>Adobe Illustrator CS6 (Macintosh)</xmp:CreatorTool>
+ <xmp:Thumbnails>
+ <rdf:Alt>
+ <rdf:li rdf:parseType="Resource">
+ <xmpGImg:width>256</xmpGImg:width>
+ <xmpGImg:height>240</xmpGImg:height>
+ <xmpGImg:format>JPEG</xmpGImg:format>
+ <xmpGImg:image>/9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA
AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK
DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f
Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgA8AEAAwER
AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA
AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB
UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE
1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ
qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy
obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp
0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo
+DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q8H/Pyw1OfzVZyWsd
80f6MaptSoTlG8rb1B3FRX6MuxnSV++yiEu738j83Ixe0Oo0Y8PHCMonezfXY/YNnl0el69yqsOq
/ZsKlZUr++bboN6n7P8AMdss/wBb/wDVx8x05t3+jLWf6lD7en09fm3+itcMqgw6oQzXw3kT/dTV
Pw03I/a8Dtj/AK3/AOrj5jryX/RlrP8AUofb1+rr8lh03XAwIi1PiDYhSJ1A/enkOI49+q/zdDvj
XZ/+rj5jpzX/AEZaz/Uofb0+nr83u3/OPdvew+X9WN2lyrNfuF+tyK7EKKGgAFPf3ynJ4F/up8Y6
uPm7Vy6w8WSIjw93zeq5W0uxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2
KuxV2KuxV2KvPPzK02G51CKV/R+GymBaUybUDEfCgI7mnjvXtnN9r6aU8wIMR6Rz95c/S6bDkjc4
km+n9oYOmhW7SVaO2KlNJIPpXDAlpCDQp/w1do+o65rPyWT+dHr39fh0697lfkNN/Nl+P850WhQG
dPhtq8tW6RTgfDMADzqQvsT/AHnU4/ksnfHp39Ph16dyPyGm/my/H+cuk0KFbl1b0eYbS+RaG4J+
KQqasBRunxU/u+uP5KffHr39fh0+1P5DTfzZfj/Oei/lbZpa6TfqvChvpz+7R4+jEft7t8/41zoO
yMRhA2Rz6e5wNXhx4yBAEe/+0s0zbuK7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq
7FXYq7FXYq7FXYq7FXYq+XPzKg87t+Yuox2sMssL3LCCUODGUcALycniPT2B5H4fbJDSZZbiJovb
dn9v6HFghGWSMZQHqDG7W2/MUatdoLaVeEbAn1FCEIrcuLEhD6gBVQpPPoK1w/ks380uT/om7Puz
khwmq/srZQsoPzFNjdtHbzECT7JbmwL/AGeMbkO/Cn7I+Gu/Xd/JZv5pUe0mgGxyw4jdczTV1bfm
Kuj2TNBNRm4ij/GSgAJdVPMc6ihNOVPbH8lm/mlB9pNARQyw4hV8/wBSvd2v5jnVrRTBKQ6KAOal
PjQcQzhuC+mCAQx+ClDSmP5LN/NKf9EvZ92MsOEXYXWtt+YA1S6RLeYSIjhx6o4URW5cWLcD6g+F
Qp+PtWuP5LN/NLL/AES9nczljRquaHgtPzJ/RN47QzHi/QkI/wAdaFUNGYIVNSo+GvbH8lm/mlrH
tJoQKOWBkbo/gNT2n5kjSLNvRm+Nio4sC/JQByZBVwGZhTkBzpj+SzfzSv8Aok0JFDLDjHM/gdH1
L+ViaknkDR11KovfTcyKWDlQ0rlFJBNCqEDj+z07ZAwMdpbF5HtTU4s+olkxEGEuRHu3+1lWLgOx
V2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KvnX8wPIWu3nn+e5tdZs4be4
nle3E3riVAyj1kokTpt2rIOVMyYe2GlwR8OcZ8WPY0BX3/odBqNDxTkb2kWO2X5a+Yf8RX6jX9PE
/pDkwFwHICn0K1hVTybiHIdio8aAZI+3GjA4uHJv5R+P8TUez7iBewQul/ltr8mkam0PmKxjHryC
clrqFVNP9ILNJbxsnGi0ohB33FMMvbbRxIjw5PV5R+H8TKWgJIJIsKd9+XOtp5d0p38xWPos0Qti
pu/slB6HDhbs9WUtUGNePvXYj210hJjw5PT5R+P8SjQkSMrFlF6j+WmtjzJpoPmOyNyYvgUtchhV
f39EWJ04qeXEs68qD7PTIj230hBlw5NvKPw/iQNBUTEEUVWz/LrzC2v30P6dsVuEiBaTjdBigDeh
9qBIyHfZisjcd+vGmE+3GjERLhnv5R+P8TH+TtqvZLbH8tNUHl3UTF5j057YSuJaSXLrWlJat6Cv
UUTiFRuVdqbVJ9tdICI8OTfyj/xTZLREyEiRYavPy01YeWtOL+Y9Pa23EZLXLKE9I8WUi3dqhC5a
qL6dK160A9tNISY8OTbyj/xSjRESMrFl9N/l5ps+meTNMsbi5W7uIkf1p0BCF2kZ2C13IUtxBPWl
aDpmLPXQ1Z8aAqMuV+W36HcaPF4eIR7mRZFyXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F
XYq7FXYq7FXYq7FXkvmzTdEk82q001wpnmlLBGTijolWAqK/GK/LOB7Ryx8fJtyPzc3H2P4gEr+p
ItP0zyo3mjVII7m79dIojLIJ0dSHBEalN+JTrTiK9T1FcaWUCAJHp3oft6/gM/5D6WgtLsPJsuia
vLJNdfV4Z5VuFVluPUMarVgOJ581K8famSnkIlEV6iBXSua/yIOdlS1C08lx+VNIuJJrpbO6MASA
yKoT1ELKDwUk8ACCBWvyyUJk5JAD1C7Pev8AIo52UbqVh5Oj82aVayyXcl3NG5jnqpVRGp5b8erc
W7fDX3yMcl4zID0irHf+PxyX+ROllGWWk6Ade1CETXIVY42a4EiGpdSI0NU2Kfap9P7WVnNHhBI2
3ofj8Hkv8heZSTTLbyTP5W1W5tvr0VtFJKstvVEZyqqWI41NGVlGx2pQVFMvySIyRid5GqPcv8iA
72Vt9B5HTylpV0zXptJlrFByRCFELuV341JjR141PqVp3wxlI5JRH1DmfiPuPXp8F/kUc7e8eVYb
aHQLSK2ZnhRWAdzVmPNuRNAOrVzr+yJCWmgQK2/SXDy4PCkYdya5smt2KuxV2KuxV2KuxV2KuxV2
KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV595iXTh5lhZ7KNw0kgvC3qVqErEwAdUoab1Q8q/fzu
qw4TmJlEcVu+008vhACW3wSjTpdNfzRqcTaZGLJIkMEnpTqWZ1Pq0cu0Tha/sqvHt0rlAw4LvgH4
57fim0zzUBxH7Ph0/tQujzqNF1aS50ZZ7uO5m+owqXtzKigGH45JW4cmLcjyANP2gASBp8FEcA+1
kcmawRIj5fqU9RuWHlXSZ4NGRdSdoDeW1JSVLLWULxkJ+FwOPN6KPDE6fBQHAPt+KjJm4j6j9nw6
IzUZoI/NGlwQaPE2mvGxu7k+qSvFT6Yp6ioAeKVLBi9eh3OJwYLB4B0/Z+OqBkzUfUfs+PT+xE2I
sW13UA+nwjT1RPQIEodpHUmbrKycUWlCEWh6fZwjBg4r4B1/b+OinJm4QOI/Z8On9qU6feTSeVtV
nvNChg1GOSYWtvWaQOibx1pIz/ESwIVgHpXpQ5EafBRHAPt++0nJm4h6j9n6lt7eyjypplxDoUX6
TehuLY+swV/SZgvwyo4DSKi1Zj6fKtOuE4MFAcA+39aRkzcR9R+z9T1zRPR/RduIYxFCFIjQCgCg
mn39a986HSADFEAUHQam/ENmyjcyWh2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2
KuxV2KsS/Ne9lsvy+1i5jYoyJECQaVV5kRlPsysQcjLk7bsKIOsxg95+4vlu683zx3dqqJD6ErFZ
QYxyrxJBB6dvDKrfSclxlEXsUU/m6coYxxeNATBC+8as32iF6LyoK0wW2nEOY+r7+60BpvnS+Z5x
KIecJHpXMCcKPSpCk1NUPcYS4+AmZIkbA+XmG9W84X6Wwng9N5uspeL1WYnqzNUHxJO+ILLUAwjc
fl+OQCLh83zGGNeSmKRQ0yIOMcjAfCxXvSp416VxttjjiQDzPf8Aq96Bh8++tqfopFD9V4sA/FeT
OpHT2xcbHnE8nCDt70XqvnK/+rF4wJ7heCIXT1SsYooABI2RNgK422ZIcEbh39Pfuf0t6X50na39
RJFEpDpI8aeiSpqHRlBbYrsRXfG1xiOSNk3v9oPd3hAXPnuddRMKRxR28TIJHaLnXmK7sCOPthaZ
56yGNmhXf1+5M382ztG0QZfTUEwIw5JGzfaZU2G9BWnXI25nhDmPq7/uv3ILTvOF+XuGd4iIm428
0UYibmvVhQt0PQ4SWnDc7s3Ebe/vUda8830PomERvJIGeaR4xK7FQDvuPtHq2IatVk8OhHz+zyTC
385TPbxfZSOZFeaFKemzAfCSOjceRpXG3JxwEgJHnXyvnSXW3nq8bUlgmhhEchkHpiLiycKlfiOz
cgO2FxYZicgib3vv2pHap51vAkQHCW4kZIY5JhzCIB8I+SqKKMFt2QCAAjtxS+08yyT8pfNl1ded
tJt3CRzi79CSSFeAZeO/0MDuMI5ut7U9Wky8W/C+qsufM3Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FX
Yq7FWLfmhpkWqeQtYsJZ/qwniUJNx5UkWRWjBFRszgKfnlmLCckhEcy3afXjRzGYixD+x8syflbr
xliD32nepUmJTPICSAa0Hp77HMr+R8vfH7f1O8Pt9ozRMMu3lH/i0VP+VOoNYxrFqds9+xcXkDF0
iRNvTKSgMzlvir8Iph/kbL3x+39TD/k4OlJIMMnD/m3/ALr7ihNN/KjUUYV1OyWzDhbiSGaSdkUH
4+KFVBYA/Z5DH+R8p6x+39TGPt3o8USIwy/Gv+LLWqflbd+rU6np5teTfVZp5pIHdOxKhTQkUqvI
4/yPlHWP2/qSfbrR5QOLHkJHdX/FBGW/5WXxsHL6paLe/B9RhjLPDJHQ8y0tFKcfhpRTXH+RsveP
t/Uk/wDBB0okAIZOH/Nv/dfpCF/5VRronVvrenCYKeP76SvGoqael8sH8j5e+P2/qT/o80V8Xh5L
90f+LRGs/lZcmhttUtJbMRxerJdM0BWYKBIo4iTZZKgNXfD/ACPl7x9v6mMfb3SzjU4ZOfTh/wCK
G7tF/K25ofX1Szjs/Tl9GS1ZrgtLxYRqeQj2aSgLV2x/kfL3j7f1LL290sIiMMeT48P/ABRQU/5S
6s1xG015pomc/uw08oLFfb0/ipj/ACPl74/b+pZ+3GhnLiOPJfuj/wAWmE35XX6WUbx6ram+Bc3s
UhdIY0FPTZJaMX5fFWqimP8AI2XvH2/qZR/4IWm4j6Mlf5t/7r9JQmnflnfuUT9KaeLKMgTvbyvM
6IT8RCcV5GlTQsK4/wAjZT1j9v6kn2+0kIVHHkHdtH/ilup/lVfeqX/SdibXkVtp5ppLd3Q9OShW
oWHVeRx/kfKOsft/U1n260eQAyhlvyr/AIoIyD8qr9bGRZNTtY75SgsrdObQvHv6heQhSnH4afCa
4/yNl7x9v6mX/JwdLEgCE+H/ADfs9X6UDF+U+sC5cx32nGdftr9YlYry3+z6fw1wfyPl74/b+pY+
3WijLiEMt/5v/Fo7VvyqvHI+qalaT2gijMr3LPCyyqg9UDiJPhR6gNXD/I+XvH2/qRH2+0s41OGT
n04f+KG/4DIfym/Lm80zzxo17d3tqLSGb1EFs7ys7lTwHxKmzNSp3yE+y8kAZEjb3/qatR7ZabPi
ODHCcTPbeq/3RL6kzDdM7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYqw784Lo2v5cazcA0MawkH/
AKOIxmf2Z/jEfj9xcLtGN4JD8c3yXqOutPqOnXYAM1tK1ZafEEMb7V8K52Eo7h5nHAiMh3j9KMn8
2O0U4cs6OhDopPJhQ1AoQanJECmqOA2En8ua19VN7NHE1mtxwUWvBkVUQEKakDkx/aOV4t7JFOVq
cZNC+LzVPMmuvf6elsUaQn7MiIshWlDxNSGUPTcjHLy2DHS4+GV2mVr5qmjgtlNIjHGF9NPsr8IH
FfYU2ywDZonhskpRaa3rC+YhqN0yuzxyRl1diqR1XgigqKfx3OVRieLcOVOEPC4Y+SO1/XmvdOa2
cu6FkchArn4WD/Zc0b5ZKQ2asOMxnbegeZbuDTUhlVYSpcqiIsVRUkFkT4VY96YwG2658IM9t0n1
LVtQk8wNfcPrHJ4PQ9SNJEVYx8Q5tvF8W+3XK5WJbByMUY+HV1z/AB5skbzWziRZCHSQcXVtwQRQ
gg5kUHAGEjdLND1ZbJLq4WJLaW9bk0UahAkaiiJRaDpufc5CA2suRniZULsBA+a9Vn1E2lFZ1ijl
XmE9ahdQAOB6dPtdshl8m3SR4bvy8vx7k60/zRcQ2VnExKNDCsZWtaEKBSv0ZZEbC3FyYbkSO9Id
Nv7m28wR3UfJUia4aWZkCPJ6pJAZwzep8R2yqIPF5OZkAOKupr8eSca7r813bwxkGeBJkluLcb+o
gBJFD9rcg075OY2tx8OPhJ6bbMl/JbVpU866VaBTDb3GoF4LY7cEYV40HTcE07Zh60f4PM+TlYIX
ngedc31/nGvUOxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KpV5pW0fy/ex3kST2sqCOeGQBlZJGC
kEH55h9oameHDLJA1KPI/FrzfSXh+oeVPyus9T0+zPlsSRX7tH9ZFzOFR1QuAV9XkahTmjh7Va+U
SfE5eQ/U67wodyb3flP8tjpy2r6DC9tZc5YY4jIszM4HIGRXWSQniKBmOUQ9qtfxX4h3936k8EOV
JJ5b0b8s7m+uFbyutjqGmmKUwzzyXC0kBePkpkdD9n4kYZkZ/afXiIPi2JX0H6l8OA3przho35ba
ZbnVX8sQ3XrOTOI7mW2AdyKBI1bjuSfhRdsdL7T6+fp8U/IfqXw4HonVl5T/AC5GmfVDoEEUV6I5
riJneWRXQbBZizOtOZB4MAcx5+1ev4r8Q7eQ/UvBDlSSRaF+T83mJtEh0ESSRxPJNcCe59NXQrWP
+93YB6nwzJPtP2iIcZyfZH9S+FDuR3m/Sfy1trA6pd+X4J5IRDbJHFI9qvEERJyMbIuy9WIrlem9
pteZcIyH5A/oXgjLmFXyx5f/AC6+prqMGgWsMtwkkJUzm+T03rG3FmZ0qVruNxkc/tPr74fEO3kB
+hRCI5BJbzSvykh19dGh8upNMGjW4c3skXH1QCvBZJlaQhTUhcyI+0vaBhx+Ia/qj9Wy+DDuZJd+
Ufy6fTlsxoNvJFac5LaJXeKRncCoaZWDtXiB8bGmYkfavX8V+Id/IfqXghypJPLWhfl5cX10ZPKk
VnPpkiAF7mS6iaWnPiVLlG47cgQRvl+f2o1wiKyk8XkB+hfDgN6UfONj+V2lSxXE3lmO4nvTLK/C
4ktYl4Dm/ECRUBNfhRR8slpfaTtCYoZOXkP1KMUD0T3TvLH5aS6QsUWhQpaaisVxJHKZGmUhaoBI
ztJGRzNQrDMfJ7U68T/vDt7v1LwRG1Ma06x/KO91mPTv8NeklwZls7g3Ux5m3LCTlGJecf2TTl1z
Ln7SdoRjxeJyq9h1+C+DDuT3zPon5arHDc3Pl6K5u3MdlaW9szW/MqvGNTweJNlTdjvTMfB7Ta/c
DIa58h+r8FeCJ5hMfy10r8v01m3v9K0NdP1W3na1lSWR5nikpR+JZ5F+y2zLvTMnF7QazLmhjnk4
oS8huPk2YoRjIUHtOdE7B2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxVJfOVpd3flm/gs1DXJRWj
UkCpR1cgE9yF2zB7ShxaeY8mE4GQoPEbvy55oup7OZ9PuQ1nKZkATqTG0dD/AMHXOJhHhBHe4402
TuRVzoHnP6mZY7SWNpwyRleLyRsBszR1qOu1Rvj4AAB2Pl+vuX8pk7kr8ueS/OGnLLb+hPcNdScm
mmjWI82J5NJISa9erHbLctZCNuH47fsTLTZD/Cqa75Q843o+rejcxInKOVY4454pFO1fiDKenwsM
GMDGTsD5/tCjTZB/CjrPy15shsEEVhKIbNUhVHIErALQEKTyanHemQOHiuRI5/f3BH5XJ3JPZfl/
rFlqcd/a6bexvGJf3XKRkLSkEmjE+HT6e2WTyylHhP3dzI6fJXJNtY8secHh+rC2nR2CSrLAI5gC
QGCsCHXY7MMj4QhLpLbv8vJA0uQfwqPl3yb5osbU2UNnNt6s8ks3CIM5q5Cj4VFTsqjJSj4s7NDb
7h5qdNkPRKdS/LzzDfam18bS8jErwyXMSxqebQCkZVyOSbdaHJY8pjHhrvr4pGnyAfSyN9C83pAl
x9QkIlJUIpVpF492QHkta7VzHOAcINj9LH8pk7kDo3lXzTZ20dlFYzl3ZmluJQE5ySNVpJGNANzk
5x45WdvuCTpch6ILzH5C80alPH6lpMslsskQIiS4iYPQFlDVWu2zDLMUvDsc/ce7zHRMdNkH8Kaa
f5X8122mRJFZTGGyRIVWQqJWAFAQpILU470GVyxcVyNc/v7gxOlyHekntfIXmKHWzqz2NxJOpkaI
C3jjIMuzF2jVTJsaDllkslw4Onx/AZHT5Kqk01zyj5quEihe0nWWJo7q3uLfhJ6cnGor9pajkVZT
/bkeDw5dDY+8eSBpcg6Jr+XXljzFYeYLQT20/F7hrq9u7gKnJyu5oAB+yAqgf1zM0A4tTA7CuTKO
nmDZGwe452jkOxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KpZ5kn9DRbiXpx4fjIozV9tf4pP4fe
HL0MeLLEfjk8l8w6/ex6/wCXpYbyaOOS6khntkekUimCR6uo+0QVFK5wuAkwnfQX9oehOmA2rmnN
55i4W107XP1ZViYtcnj+7AU/H8Xw/D13zGhxcQ62k6QAMR/L3zXPdtq0kWrS6jpYMa2Yu5lluQQG
EkjKKNGkjfYVvDtmfr4SiIgjhl1rl+3zYwwRlyXfmX5mZNHhS31V9O1GjSW/G7ktA6IFMgqtFd6U
Cqx74OzoyMtxxR91+5ZYBHmybSPMfq6Zp0ivKVe2jZTOeUxBRT+8Pd/5vfMPLxCZ8iWQ0oItiGk/
mB5gvfzAWO7ju7PTpILiO1sZIZESkTIRO5YBWLb7jZdh3zY5cIjgsEGVizff0axgBNUnfnnzDdL5
bkW31AadK88Si5aZ7cAeqCymWMFk5AEVzG0d+JuOIV7+nczlphHcu8i+bDe+W4pazErLJG0k9w10
XKSEFkmfd0P7P3Y6yEo5CPK+VdO5EdOJbsW8x/mDq1t55kgmu5ksbSayS2tILgQSSLOFLsIjG/1g
c/hYE7DpTqM3Bg4sAI+oiW9Xy872YnDGJqno02terHPE0jIsicWdGKOAwIqrDdSOxGacSkDbb+UY
v5E1W6Mep6j9fu7nTbqUx6Yl3PJOfRgqhlBkJI9V6n5UzN1sjtCgJAequ89PgiOnEt6Sn80fN2rw
yaZb6fqEtpzhuZZFS4FmrFEXgfWYryKk/wB33y/s2FiXELqul/Z+ljPAInkzHQPNE11oul3MsrSS
zWsbySOAjMzIpZio2FT4Zr84Mckh3Eso6UEWwby9518wt58gtH1B7uGV739IBbmOeAJGW9EpAvxW
/E8F+L7WbTPjAwGVUfTWxB89+rWMIJqmUedfNV1babaKl29jaXF7HDf3sbBHigctyYOa8KsFXl2r
mFpIkyPUiNgd5ZS0wjuUd+V3mO7vpDDJdvfWkWoSQafeysGeW3XjxYuAOdGLLy70zYaWJGrx7UTR
I7i4+pwDwpSD2HO9ecdirsVdirsVdirsVdirsVdirsVdirsVdirsVQWtWlvd6XcW1wSIpQFLKaMD
yFCK16HfMbV44zxSjLkW/TZJQyCUeYec3uieVrTVbHS7nVZ1v74sbOP0+XIqpLfGFKrsD1Oc1/JG
EbcUnoB2plIvgjsj7ryboEdm7T3ssaRK73U7lOJjpU8gRQBQDkz2TgoCyCOrAdqZb+mNHok/ljSP
IWrid9G1GSZICn1qNYfq7FWBKVDIjcWFeLDBHsvCTZlI0yl2jlj/AARFrvM+k+UNFto7jU7q7Fox
LIUtzcLHwpu7IjBacti1K4JdlYQbEpC1h2llltwxKa2flPQbqyiuI7y4cXKJNbzMAhVGHLdCoPxA
ivLcYY9kYOGrO/VjLtTNf0x2QZ0HyuNbXRv0tKdVMDXAgCqWEIYAkkLQVNNid8j/ACPh5cUmf8qZ
avgiv1/QPK+l6e99d3txDZrwidAomZ3dhGKKqliXY9AMnk7KwcwZBhj7TzHYxiV+ieW/L19ZJdxX
F59XYMkcU0RtnUiqg8HRW+E7jamOPsnBzJkVydp5RsIxCXajpnkm01eDTrvVZW1EsgRFh9UxmU0T
myIwj5npyIrkP5JwjbikzHaWU78EU5ufKGiQWrytd3KmBWkmkRRIzKBWgjVSSQBsFFTkz2Rg4as7
dWA7Vy39Md0q0LTvJ2qzz21hqN1I1iIzdW0lvJbFVkBKCksUdOQU9MhHsnBd3Is59pZgPpiPx71L
zRp3kTRVgGr6jMiXBZraD0frDBYxVmoiMaIp3amGXZeEGxKQtEe0cstuCJpObTyloFzZxzw30s6X
KJLa3KlOPpsOVQKUIcEZIdkYKqzv1YntTNf0x26JJp9l5DvNal06z1iRtSJcNSIL6hhJDhJCgWTh
TfixpkP5KwnbikzPaWUC+CKZ63oHlXTbJry91Ga0tABEwYLIXc/DRVClmZz+yBk8nZOA72Qwh2nm
OxjEovydpPlq4ltdU03UJL2CNisaUCBXX4eLrxVlKfymmX6Ls3DDKJgklp1evySxmBiIvQc6R0Ls
VdirsVdirsVdirsVdirsVdirsVdirsVdiqA19nTSLh1BJUKxp4BgSfoGY2rvwjTkaWvEFvMtaMt/
qOi3MU0app121xMGbcqYJI/hoDvycdc0Hiu98FMbvVLkWs0kAR5GRhbiUlYnkANFZgG2qRyoDj4h
5nkjwRy6sb8mQ61Zz6jeaysMmragyGS5gnMocJyVIY4jHH6SIOg5MSThOQdE+Ftuu89watrOnR6b
bJaywEk3CXM01vJHKoHpSI0Qb7DVLKy+GPidCoxdQn+nXt3Dp9qlxObmW3hSO6uuzSBQCx8ObAnB
4h59EeEOXVh+jeV9S0zzgmutrKXqSrcG9aSNUmdpuHFKgn4Rw23HGlAKHHxQy8I8mQ+bY59S0Z7E
RQTOzxzfV7t5oUdVYSKRJCVkU9CrCownJXNjHF1CzyVFqumaFHYX1yLq5R5JAsbvMsURYssYd/jZ
Y17t+rEZLOyyxAbljGu+XNen84T6zpd7FCt7NaStc+vNHJbi2UJIvop+6mEir+18sRlDLwjyeg/p
RgDITRG2RyaKSOoB9q4PEPNj4I5JL5VhuNOs7h7yVJ9Y1KZ7m+kiJZTI+yRpUBuMaBVXHxd9knFt
ukX5i6Jqevy2Bg9OSO1iuIpLdpzayLJOqoH9QJKSq0+JNq++EZB1UY65Mq0Oe7stFsLa4lWaSzt4
4LieIUj5qgXagAAPHbYYPEPMckHELo82HaN5a1C28422qTSxQabpz3clnbx3MkyFrvkCI4nRRCPj
LPRjVum2E5RTLwiyTzZFf31vYvavGl9p13Hf28VyWSOTiGAViAxAZXqrUOJyUd2IxbbI38u7e+tb
yX628b32p3z31xFbszRR81UcVLBSeKpu1Nzl+lneUANOqx1jJL1POgdC7FXYq7FXYq7FXYq7FXYq
7FXYq7FXYq7FXYq+VLjzCNUlN/qapd3lz+8llmUOatvxXlXiq9Ao2Ayjm+v48Hgjgx+mI7tvwUsu
vNHlq1uktZYIPWcgcRCppy6ciF2xpjPOYmjOV+8pgmo6ejB4oIopFNUkjUI6kdCrLRgfcY7NhEyK
JJHnuib/AM33mtOkusS/XXgRIYhNRlCogBYKfh5OaszUqcbvm04NFDACMQ4LJJr3/cOQCS6h5r8t
WEgjnt4TIRXgkKsQPfbbGk5NQYGjOXzKJs9b0K9gE9vb27xnavpKCCOxBGNBshknIWJS+ZTCXzrq
N7aLo15O0+mWLc4IJCWB9QAgPX7QjoeAPSuNtUNBjhM5YCskuZHl3d19e9J9S8z+XtOZFuLSKsgJ
XjAp6e9MaDLLnlDnKXzK3TvNflzUJWit7WLmq8iGgUbVp1p740jHqJTNCUvmU6i866jZWjaNZztB
pl83OeCMlQPTBJCU+yJKjmB1pjaJ6DHOYyzF5I8ifPv766dyG+vaX/yyW/8AyKT+mOzf+8/nS+ZQ
q+YPL7X7WK29ubhV5MoiWnyrSlcaDWMsuLh45X7ymlh5vvNFd5dHl+pPOjwyiGiqVdCAxUfDyQ0Z
WpUY3XJhn0UM4Ayjjogi/f8AceRCDuNV0xUkuLiGKQqDJLNIgkc03ZmZgWY/PHZt9cR9RAHdsEnj
89eVXdUFolWIA/0de+3YY00DWX/HL5lPrfzCNLlF/pipaXlt+8ilhUIarvxbjTkrdCp2Ix5N2TB4
w4Mnqie/f8F1x5hGqSm/1NUu7y5/eSyzKHNW34ryrxVegUbAY81x4PBHBj9MR3bfgpLd+dfK1rcG
B7aJ3U0cpAhVT4E0/VjTVPVGJrjl8ymdrrGlSJHc2sUS1o8U0SCNwR0KsoVlIx2bgZTH1ExPxCNv
/N95rTpLrEv114ESGITUZQqIAWCn4eTmrM1KnG75tWDRQwAjEOCySa9/3DkAx+785+WLS4e3ltI/
UjNGpAtOlfDGkT1RiaMpfMovTvMOg6hE0lvawlUPFg0KqQevhjQbMeWUxYlL5lNJfOuo3toujXk7
T6ZYtzggkJYH1ACA9ftCOh4A9K42whoMcJnLAVklzI8u7uvr3pTqXmXy9p6qbi2g5P8AZjWFGY09
qY0GWTNKHOcvmXab5l8vagrG3toOSfajaFFYV9qY0Fx5pT5Tl8ym0XnXUbK0bRrOdoNMvm5zwRkq
B6YJISn2RJUcwOtMbYz0GOcxlmLyR5E+ff3107kuvdc0KygM9xb26INh+6QknwAAxoNmTJOAsyl8
yhNO83eWr+X0obaFZeqpJCik08NiMaa8epMzQnK/eU9sPN95orvLo8v1J50eGUQ0VSroQGKj4eSG
jK1KjG65Ln0UM4Ayjjogi/f9x5EISfVdMVXnuYYWO7yzSqrse5ZnarE+5x2bvVEfUQB50Eoh88eV
JZxCLeJamiyNAoQn502+nGnHGrs1xy+ZTy38wjS5Rf6YqWl5bfvIpYVCGq78W405K3QqdiMeTdkw
eMODJ6onv3/BYNFqBEaCvQAfhkXK4kq1+5VhbPQc/WUFqb032rkg6/XkARP9IJv+kG8ci7C3G/Km
leyn/hRhYxlYQF1f2Fi8l4yD6xNt4s21KCvT3xG7jZsmPDcz9R+1T0KSa2t5HkHBp35+mNuI7YSW
OigYxJltxG6R6X5Eshr14/hkXM4ll7f3ZtZBbMPXI+Ak0+eENeYy4DwfUlmg35tpZbSWMpdf3kkh
PIv9P04S4OhycMjjkKnz96bPfkyxmvTl+ORdlxITV/MDWsAWNv38uyV6D/KOSAtw9ZqxijQ+opRp
t3b22rRuLgScoz6kpOxkY77nCeTgafJCOYeq9ufmyb68WNK9Ax+5TkXdSlShe3Uk9nNCp+KRGUV8
SMbY5o8UCBzISlNT1nTLWMyCNraOilAfiA+eS2LrvEzYIAyA4QnT6jzhJB2ZdvkRkXaCQq1kmoyJ
ZsUb4ljJX5hcWOSdRJHcx7TLnUkspHgjiMXxF/UFWkp1G+SNOm0xy+GZREa8+qfadrAns45EURin
H0x0FNqD2yJdrpswyYxICkSb8qaV7Kf+FGLbGVhBavrT29m3psfWl+COnWp7/RhDjazUeHDb6jsF
2lsLKzSEH4vtSHxY9f6YCWzTY/DgB16q6X5Eshr14/hgbuJKNSvphrUEtqvq3KR0ZGpxA33qSKdc
kOTrNTMjOOAXKuTtNvZjrU8t0vpXLR/Ci04laiprU16YnkummTnlxipVyTd78mWM16cvxyLs+JLt
dkuJ/q00a+sLd+TQ9eQNO30ZIFwtbCR4ZRF8J5IG71aa51GwkFu0DI4ClhQt8QqO2ww04eXUGeSH
pMd+rIxfljSvZj/wpyLuJSoJV5j1B208IGIV5FD/AOrQn9YwxcLtGdY/iv1aS2/RDxhQEiUGKlNj
UUp88RzZ6uMRhPcOSvZahI2lxBz8RiAP3bYC26ad44k9yBkM0EjwTI0c0TGOWNhRldTRlIPQgjGm
mGYGIIQ11GlysYZyvpuHBArWnbCGvPAZAATVG1c3HfBTf4qvex3VrMkdzG0TvFDMiuKExyxK8bD2
ZWBGEhpw6gSBo9T96T3NjLLdm5W5KtWqArXj7DfthBcPNpZTycYn7tuX2ou1aaKMrLOZnJqGIAoP
DAXMwGUY1KXEUU8N3HbxXkkbLbXLOkEpBCu0PH1OJ78eYrjSY6gGRje4pA3cHryJNHM0M6DiHXcU
60IqMQ06jFxyEhIxkGrS3EEjzSStNO4oZG2oPACp8MSunw+HIyJ4pnqj0iu5LeS7jiZ7a2ZEuJQC
VRpeXphj25cDTGm6WoAkI3ubUJGikAEiLIB0DANT78DKZjL6gD71AWtqLtbhVVeK0EYVQvKuzfPC
0DBjGQTAHLlQr3pjZR3V1M8dtG0rpFNM6oKkRxRM8jH2VVJOIDZm1AiBZ6j70JOUnheJyeDihIND
44GWWpxMTyKC+oSPxSe7eWBCCIyKVp4mpyVuD+UJoTmZRHT8FM4/WnkSCBDJNKRHFEgqzMxoqqB3
JNBkac+eYRiSeTpPWgkeCdDHNETHLE4oyspoysD3BFDjSwzCUQRySz6hIgeOC6eK3cmsVK0r1ANR
krcH8qRYhMxgeiNg9OCFYo9kQbV6+JJwObi4ccREcgi72O6tZkjuY2id4oZkVxQmOWJXjYezKwIx
IY4dQJA0ep+9AzRRy3MNwzE+iDxj/Zr/ADYscmMSnGZP09P0q/r4KcjxFR4buO3ivJI2W2uWdIJS
CFdoePqcT348xXDTVHUAyMb3FIC6tvWmWeKZoJ1HHkoqCPcVGIaM+HjkJxlwyDrW39KZriWZp52H
HkRQAewqcSuDDwSM5S4pI9IruS3ku44me2tmRLiUAlUaXl6YY9uXA0xpvlqAJCN7m0JdqbiMKszw
sp5K6Hv7ioxDHUR8SNCRifJRt7UpOLiedriVRRC2wX8TiWnDg4Z8c5GcunkmllHdXUzx20bSukU0
zqgqRHFEzyMfZVUk4gN+bUCIFnqPvQk/pzwtFJujDenX5jFll4ckTE8ighp8jKsU108lsh2ipTYd
BWpw24P5QkCMpkwHT8FMovVmdLe3QvLIRHDEgqWZvhVVA7k7DI0588ojE9AA9y1rTvKfmXUJda1K
xiF1eH1GEIEWzfZ5cAC7U+0zbk5138mYo7cN113/AFvgeP2k1sR6ckox6Dbb5gpXN5V/LSCSOOeG
OKSU8YkebizE7AKCd8f5OxfzB9v620e0vaB5ZZfKP/Eoq38oeRbeZJ4bFPVjIZPVpMlR/NHIGRh7
EYf5OxfzB9v62EvabXkV40v9j/xKceaLzQvOc0E+sWMANpGsMfpKFeoUF6yU58OZPFK0A98A7KxR
FEcXv/Y14/aLVRP7uZxjuFc+p3BY1eeWvyvsgpvI4rYN9kzT+mD8uRGP8nYv5g+39bfH2l7Qlyyz
Pwj/AMSrxeTfy8kRZYrQOjCqOshZSPEbkHH+TsX8wfb+tB9ptfy8aXyj/wASyDUdW0jWNDt/K93Y
2v6O00/AUhjU8WFY/TooER+1zKAV9t8f5KxA8VWD07u9x4+0GqBuMyJ9ZdZd3kxe88uflbYlRerD
al68PWuPT5U605MK4/ydi/mD7f1uVH2k7RlyyzPwj/xLrPy7+Vl6zLZLDdMgBcQ3AkIB6V4saY/y
di/mD7f1rL2k7RjzyzHwj/xLKNO1bSNH0O48r2lja/o7Uj8ZeGNjxUVk9SqkSn7PAuDT32x/krET
xVQHTv7nFl7Qaom5TJn0l1j3+SQnyT5AJr9S/wCHYfqx/k7F/MH2/rb/APRPr/8AVpfKP/Eqf+Ef
y4+sfV/qy/WOPP0fVPPjWnLjWtPfH+TsX8wfb+tP+ibtCr8WXyj/AMSyDyveaF5Mmnn0exgJu42h
k9VQz1KkpSSnPhzA5JWhHvieysUhQHD7v2tOT2i1Uj+8mcg7jXPodgEmufKXkSaWS5uLKNXcl5DH
SGMdzxjjCog9gMP8nYv5g+39bZH2m14FeNL5R/4lK00z8n3dUSa0Z2ICqLtSSTsAAGwfydi/mD7f
1tv+iLtL/VJ/6WP/ABLINE0/yn5Z1CPWdNsYjdWh9QCYCXZd24FwSj0+yy0IOP8AJmKW3DV9d/1t
GT2k1sh6skpR6jbf5ANa1p3lPzLqEutalYxC6vD6jCECLZvs8uABdqfaZtycf5MxR24brrv+tcft
JrYj05JRj0G23zBSW60H8qbSUQ3XoW8xoRHLchGoemzMDj/J2L+YPt/W3R9pO0TuMs/lH/iUfbeU
vIkEsdzb2SM6EPGZKTRk9RyjkDI49iMP8nYv5g+39bXL2m15FeNL/Y/8SnPmi80LznNBPrFjADaR
rDH6ShXqFBeslOfDmTxStAPfAOysURRHF7/2NeP2i1UT+7mcY7hXPqdwWK3GjflJbTNBcvbQzJ9u
KS6VGFRXdSwOP8nYv5g+39bkj2j7RIsZZ/KP/Eq9n5X/ACzvI/Ws4Y7mMHiZIpvUXkN6VBIx/k7F
/MH2/rYy9pe0Bscsx8I/8SyXUdW0jWNDt/K93Y2v6O00/AUhjU8WFY/TooER+1zKAV9t8f5KxA8V
WD07u9xo+0GqBuMyJ9ZdZd3kxu68q/lpZxerdwx28VaepLNwWvhViBj/ACdi/mD7f1uTH2l7QPLL
L5R/4l1r5V/LS8i9W0hjuIq09SKbmtfCqkjH+TsX8wfb+tZe0vaA55ZfKP8AxLJNO1bSNH0O48r2
lja/o7Uj8ZeGNjxUVk9SqkSn7PAuDT32x/krETxVQHTv7nGl7Qaom5TJn0l1j3+THpvJ/wCXcUbS
zWqxxqKvI0pVQPEmoAx/k7F/MH2/rcge02v5DNL5R/4lQs/Ln5W3pYWSw3JT7fo3HqU+fFjj/J2L
+YPt/Wyl7Sdox55Zj4R/4lk3le80LyZNPPo9jATdxtDJ6qhnqVJSklOfDmByStCPfE9lYpCgOH3f
tcfJ7RaqR/eTOQdxrn0OwCT3HlDyLcTPPNYp6shLP6VIUqf5Y4wqKPYDD/J2L+YPt/W2R9pteBXj
S/2P/EpfDoX5UT3H1aE28txuPRS5DPt1+ENXB/J2L+YPt/W2H2j7RAs5Z17o/wDEp3omn+U/LOoR
6zptjEbq0PqATAS7Lu3AuCUen2WWhBx/kzFLbhq+u/62nJ7Sa2Q9WSUo9Rtv8gGEwa6ywRry6KB9
wzdmLoOFiPnT6o95Z6koP1uS4iSRuRI4qDSg6DplWQVTsdHKVGPSizL9PN/NlvA67hKyPW2So5dT
X7wMeG0mDH9UtNElvbrVtXka4jKgKkjEJGoFKLxIO56D+ORMANy5WPLkoQgKKzyHqU9rps4qyWkk
7PaRuakJ/n+ORxCxbLXD1DvrdP49bYXMzcvtBPwBy3hcLgS7zJeWVxZvdTWCahcQLSFCKt8RHhvQ
dchONC3I05lxVxcIKSeQLzTrZ7iUEjVXBEsbLw4R8uiDwJpX6MrxUfe5WvE9v5jLJNbY3MLcvsh/
xAy/hdbwIfWfOaabZNOx5yn4YIh1d+w+Xjlc6iG7BpzklTFNButSg84JdahIXvLi3aWQH9nlUBPo
A+jK4g8VFzs5icPp5A0zeTW2eg5dDX7gcv4adYIIPXdYnn0W+giq0ksEiKq7k8lIoB75GUNmzAKm
Ce9hOm3+kWMVqdT0J1CkBr1+ZBatamM0GUiQHMOzyQnMngmPc9Bm10vbyANUMhofmMyBF0/AVJ/M
T2+ntIpqYYSwH+qtf4Yyj1ZRx2QHnFhf2c8Fxdahpk+pTSuz3N6HZeHf4eIp7mv6sxYy25O6yQII
EZCPcHoOha7ZrpFqtizC1VOMQc1YUNCDXvXMiIBFh1GeEhM8XNGR62yVHLqa/eBkuG2swY75l/w7
HbXWpXFnHJdP0JLDlI2y1AIHuchMCIty9NLJKQiDsreSz+idHVW2nuT60viKj4V+gfjjCG27HVz4
57cgnEetsLmZuX2gn4A5ZwuLwMR836pbv5jsJr9TeWaxEfU0b4g1T8XGorXb50zHyERkHZ6SBOKX
Dsb5u8oapbp5jv5rBDZ2RiA+pu3xFqj4uNTSm/yr74cdSkV1cSMURLeV82XSa2xuYW5fZD/iBl/C
6zgY3591WS4j09ZmY6as9b1UruKrTp7cqZTlFV3OfoY7yr6q2SmTWdFtfMOlz+X6xfGI7oJzCsjs
o40fvStfoyBnGxTkRxZDjl4nwZ9JrbPQcuhr9wOZHDTqRBIvO/mO6XQ2igkKG5kWB2BoQrAk7+/G
mV5fSHL0WO8m/QWlmtaJo9poZks1MV7ZgSLchjyZlIrXfv2p0xnCo22YNTOWSjyLI9P8yz3eiQyz
N+9lgHqHxbjQn6Tk4CwC4mbFwzIHexdNRPBd+wyYLkHEhNUEl9HAqSKphnSQ8yR8IqDT78qywMqr
vbsJECb6hGtqNSaHbLbaPCbfUCG60+FfxUZGJZSxJFq0erXd+HKxT2cRrDCZOKnbqwqrV8cxssZm
XKw5mCWOEOoketJtaajeGD/SkjhkBoiRNyHED6affmRjMq9QpxMmKN+kk+9UXUG5sa7Ggr8sle6D
i2Ql9eat60c9jMhVV4vbS7KxrXlXb9YyrJx3cfk24oY6ImPiFDTxdrqE2o3rRi4lQRrFFuANtyd/
5fE5HHCXEZSZ5THgEI3Q70ybUG5qa7Cor88vvdxxi2QuoRWN/wAPrSljHXiQxGx6/qyE8cZc2zFK
UPpQMWi2cWoR3EZ/0aNeXAu3P1Vbbp2plQ04Er6N51MjAg/V+hO11Bi3Xsx/4UnL5FxI4lK4vZ5L
eSOGb0ZWFElIrxNfD8MZWRtzWEACCRYSm5Ou38K2l48EdvyBlnQ1Zgv+TX+AzGMcktjVOXDwoHij
d9ybtfhYiqmiqtFHsBtmV0cMY93C+V4uD7oy8WHiCKHHmE+HRSeAa3ZW0lja+jLbMW4TswVlD9aq
SN/oOYojkiOEUQ5kjimeKVg9yY6Yy2FlHbK/IpUuw6FiamntmRjjwxpxs3rkZIt9QIbrT4V/FRhi
WEsSXaij315aNI6mygq8kRJ5NJXYU8CKfjleSBlIfzW7FIQjKvqKYfpE/wA2XW4/hLV1BubGuxoK
/LBe7I4tktvBejUk1KxaN5gnpvFKaCniDt+vKMkZcXFFyMZjwcErrybs/rv6SfUb1o0lKekkURrt
4sd/1444y4uKS5DHg4I3V3umLag3NTXYVFfnl97uOMWyhqF7fyW/GzeMSVq6Siodf5d9v8+uQycV
elnihEH1XXkl9tDdy30V3fJDAlt8UNvBShf+Y8Sw7V65TCEjK5UKb5ziImMLN9SnSagS3Wvwt+Cn
MiRcWOJCamY9Qs3tpG41oyP14sOh/hgyR4o0zwk45cQS+Z9fu7YWNy8MdvsJblW5O6r7A1/AZjkZ
ZDhNV3uRHwoHijd9ybLeJDbiKPaONAiD2UUGZQoCnEMCTZe9+YvyJ8l6xq9xqVldXWlw3TmQ2sJj
eMMxqWQOtUBrXjWg7Z5SPbbUDaAhwjlxAkkfAh3k9PCRsbJb/wBC4+Wf+r3e/wDAw/8ANOH/AEca
vux/6WX/ABbD8pHvVIP+cdfKkcyPNq17PEpBeGsUfMD9nmEYivtifbjV/wA3H8pD/fH7lGlinvnH
8nfIfmO6t7ixE2jPBBFbv9VK8HWKMIgZHVviRQF5V3pvXrkR7aZobYxEx5+q+Z3I2I/tbcuKEzsK
Y9/0Lj5Z/wCr3e/8DD/zTkv9HGr7sf8ApZf8W1flI97v+hcfLP8A1e73/gYf+acf9HGr7sfyl/xa
/lIsk1T8oPy9vvLFjoVvDNZ3Ng7v+kY5AZy0lOZkLKVk9Sg24jjTamRHtrmHqiB4h+oH6RXKuu/9
rbLFAxEa5Mb/AOhcfLP/AFe73/gYf+acl/o41fdj/wBLL/i2r8pHvd/0Lj5Z/wCr3e/8DD/zTj/o
41fdj/0sv+LX8pHvZJpf5Qfl7Y+WL7QriGa8ub90f9IySATho68DGVULH6dTtxPKu9cifbXMfVID
xB9IH0m+d9dv7G2OKAiY1zY3/wBC4+Wf+r3e/wDAw/8ANOS/0cavux/KX/FtX5SLv+hcfLP/AFe7
3/gYf+acf9HGr7sf+ll/xa/lI97IfJ35O+Q/Ll1cXF8JtZeeCW3T60V4IssZRwqIq/E6kryrtXan
XIn20zT2yCIjz9N8xuBuT/a24sUIHcWkU/8Azjr5Ukmd4dWvoImJKQ1ik4A/s8yik098kPbjV/zc
fykf98PuajpYqf8A0Lj5Z/6vd7/wMP8AzTj/AKONX3Y/9LL/AItfyke9MvLv5E+S9H1e31K9urrV
IbVxILWYxpGWU1DOEWrgUrxrQ98B9ttQdpiHCefCCCB8SWcNPCJs7u8xfkT5L1jV7jUrK6utLhun
MhtYTG8YZjUsgdaoDWvGtB2xHttqBtAQ4Ry4gSSPgQs9PCRsbJb/ANC4+Wf+r3e/8DD/AM04f9HG
r7sf+ll/xbD8pHvVIP8AnHXypHMjzatezxKQXhrFHzA/Z5hGIr7Yn241f83H8pD/AHx+5RpYp75x
/J3yH5jure4sRNozwQRW7/VSvB1ijCIGR1b4kUBeVd6b165Ee2maG2MRMefqvmdyNiP7W3LihM7C
mPf9C4+Wf+r3e/8AAw/805L/AEcavux/6WX/ABbV+Uj3u/6Fx8s/9Xu9/wCBh/5px/0cavux/KX/
ABa/lIsk1T8oPy9vvLFjoVvDNZ3Ng7v+kY5AZy0lOZkLKVk9Sg24jjTamRHtrmHqiB4h+oH6RXKu
u/8Aa2yxQMRGuTG/+hcfLP8A1e73/gYf+acl/o41fdj/ANLL/i2r8pHvd/0Lj5Z/6vd7/wADD/zT
j/o41fdj/wBLL/i1/KR72SaX+UH5e2Pli+0K4hmvLm/dH/SMkgE4aOvAxlVCx+nU7cTyrvXIn21z
H1SA8QfSB9JvnfXb+xtjigImNc2N/wDQuPln/q93v/Aw/wDNOS/0cavux/KX/FtX5SLv+hcfLP8A
1e73/gYf+acf9HGr7sf+ll/xa/lI97IfJ35O+Q/Ll1cXF8JtZeeCW3T60V4IssZRwqIq/E6kryrt
XanXIn20zT2yCIjz9N8xuBuT/a24sUIHcWkU/wDzjr5Ukmd4dWvoImJKQ1ik4A/s8yik098kPbjV
/wA3H8pH/fD7mo6WKn/0Lj5Z/wCr3e/8DD/zTj/o41fdj/0sv+LX8pHvTLy7+RPkvR9Xt9Svbq61
SG1cSC1mMaRllNQzhFq4FK8a0PfAfbbUHaYhwnnwgggfElnDTwibO6fw6vSGMcv2R+rOA3DIHZgv
5gahrFpqmm6lb6tOlvJdQwrYoSqKerMSp+LlTowzZaMxlExI3o7s47s9/S/+VmtssLWQ6tQN8XfC
bCgsV1vT9d1fVp5rrWXsNIhQfVIrR2Rq0qzSk0Gx/wAxmXjzxhEARuXW2Vrfy180ajd6XdxXd015
HaXDQ2129eToADuTufHfffJa6AjIUKscllsyqPVv9IlPLqF/Ucwd+bAHdjfnz6hc2H6RvtRu7OCy
U/u7VwvMuQAOJG7E7DMvSZJcXCACT3swUm/Kma54XWqSai8yS1ijsTN6hQBqh5RXZtqLsNt++ZHa
EqIiB8Uy2Z7Jq3+kRHl0DfqGazfm1k7qWqearPTLCW9u5OEEIqfEnsqjuSemWY4SnIRHNkN2A+Vv
OXmHUPPKT38kkNrd2ry29lyPprDX92ePieNeXf5ZstRhjDDtuQebIig9Fm1aoX4u+aoWWBKA8y6/
Pb+XtSnt5Ck8dtK0bg7q3A0Ye465bgHFOIPekc3mXlq98sztYtdeYr+DUiVZ4+bLGJAa8Q5UgfMn
NrnGUXUAYsyC9cm1f9zIOX7J/Vmk3LWTspvryW1g07n4IYjI9OtEWp/VkogkgBQ8gTzPb608l/rX
mS50+8kdvqttbrK0cKV+GvCg+7fuTm8OGUNoQEh97ZRes6JqrppFor336QYRLW92/e7fa2rmlyk8
R2ryYEoqHVqBvi75A2EAsP8ANmn26Jfa3Preo28ar6ht4Z+KAgBVRBTbk1Bmbp8xJEBGJZAq/wCW
t3qkPl4XGo3Us8l4/qwrM7OUjpRaciftfawa6Q8SojksjuyePVv9IlPLqF/Ucwt+bAHdgvnzzBcy
eYtP0691GbS9BmiLyXEBI5yAtVWYeHw+IFa5stJD92ZAcUx0bByd5C1+6j8xahp1lqM2qaDDEGju
JyTwlJWiqx8fi8K0rjq4/uxIjhmeinkzqTVv9IiPLoG/UM1u/NrJ3Yj+ZHmnUYI9LsLW7NjDqM5j
ur1SQUQFR9oUoPjqflmfocYlxEi+Ecmcd0nGqSeUvM2kwWesS39nqLCO8tppBJxDMqiQU6VLVHy7
5cB42ORMeEx5JG4ekTatUL8XfNWLLAlIvPXnO60fQHnsz/pk8i29u3XizgnlT2VTT3zJ0eLxJ0eQ
3ZR3Ytqmka/oWlfp221y6m1W24y3kcjlonFRyUAncLX9rr7ZlYtRDJPgMRwnkkGyzrTfMw1HRLe+
2U3MAkZAdgzL8Q+g7Zr8sDGRj3MJMci1I+km/wCyP1ZYce6KY951W+v7fTVtYnnaK+hZwgrxUhhy
PgPfMvRmMTKzXpLZBkjal8R375h8DCliakd9/wDOgyc8e60wbzjr+u3uoNpQsr2PR43AupLeJnec
Df4Wpx4ntv7nwzZaTBCMeO48fSzybYRFX1ZN5Z1W2OlLHaWE+nW9u3ppDcp6bHbkWFSeVa7nxzC1
OM8e5Eie5rkN0xTUj60m/wDL+rKTj2Y0k/mHzHqlpPEo0r9J6PKhF0Ix6sgevePccaU6j6cyMGCM
h9XDPozjEHruk3lBLg+Y77WIrB9K0yWERQ27rwLsShqE22+EnbbtmRqyPDEDLilbKfKmYvqR9aPf
+b9Wa8Y9mqkj826RLr6WyrfG2W3ZmMRQSRsTSjEVXce9cydLmGK9rtnE0ksGmeaI/OFtcTX7yqlv
ybUBAvD01ahhp9mp+/fMmWXEcJAHXlf2s7HCzh9S6b9z+o5roY92qkPqmqXq6dctZQpc3QQ+lbyG
iOSaEHp+zXbv0w48Y4hxGgkDdg+s6pea7p0WkWvl2WzvOal5Hi9OKGh3KtxWgPvT6c2eLGMUuMzB
H2lsEa3tnovjHaiMuXKR8S56mi0r9OargstRC2W6W5sXt2bis8RjZh2Drxr+OER4ZX3FQwDTb19F
0q80S70Ga5v5jIsc8UQkjmDCiHnStF7ca/Qc2uSHiTExMCPv5NxFm7Zb5QS70vy9a2d2aTqGZ0qD
w5sWC1HhXf3zA1ZE8hI5Nc9ym6akd9/86DKZ492NMb83LqOsX2m6Ssbrpbsbi+uh9ikZp6fLs3t7
jwzK0pjjjKf8XIBnGgLZKl+qIqJRUUBVUbAAbADMMwYUsTUj60m/8v6sJx7Iphvmlp4/M8Gq3enS
atpSwen6SAyCNxWpKdPffY/PNjpqOIwEuGVtseVdV3lZ5X8zXGqWOnSaVpD2/pGOVfT9V6ggrH0H
0bffg1NDEIylxTtZcq6swfUj60e/836s14x7NVJP5wvhJpSq+lNq8PqAywIxV0UA/vF4gtX5fTmR
pIev6uBnAb86YlomlwX2u2VxY6ZPp+m2Tieae6LFpXUhlQBtuo7duvbM/NlMcZEpCUpbbdGyRoc3
o76kdt/86HNTDHu00knnO1uNZ0N7e2P+lQyLcW61pydARxr7qxp75fpJjHOzyOzKBopJqXm3Xtb0
k6NDpNzFqVwBFeSSIUhQAjk3IjblT9rp75lY9Ljxz4zIcI5d7MQAN2yywdNP0mCxRuS20Ij5dORV
aFvpO+YE/XMy7y1Hdk+sflfqaX8o0W5glsOR9L6wzxuor9mqq/KnTltmVqpYhkIx3KN+X6Tv73Yn
s+fePx8EF/yrPzf/AL8sv+R0n/VLMfjHcf8AY/8AFL/J0++P2/qXw/lj5naVRcXFpFCT8ckbySsB
4hCkdf8AgsMZxvcSr4f8Uv8AJ0+8fb+pNPMX5XsJoT5fvI5E9KMTx3BZRzVAOYdQ32/tFabHM3XH
BGQ8MmXpHKu7zI586X+T5Hlt70oH5aecB0ls/wDkfJ/1SzB4x3H/AGP/ABS/ydPvj9v6nf8AKs/N
xI5S2dO59aQ/8yseMdx/2P8AxS/ydPvj9v6k6vfythGiW31G/DayGc3PqKVjkrT4dqlAlNjvWv3Z
+Y6cYYmJJmb2rfzvfavfv0T/ACfLkkv/ACrPzd/vyy/5HSf9UswOMdx/2P8AxSP5On3x+39Tv+VZ
+bv9+WX/ACOk/wCqWPGO4/7H/il/k6ffH7f1J1ZflbCdEufr1+F1kshtvTUtHHSvw70Lh67nalPv
z8J05wyMiRMVtW/lW+9+/bqn+T5cklP5ZebamklkR2PrSD/mVmBxjuP+x/4pH8nT74/b+p3/ACrP
zf8A78sv+R0n/VLHjHcf9j/xS/ydPvj9v6k38u/lexmmPmC8jjT0pBBHblmHNkI5l2C/Y+0Fpucz
tCcEpHxCY+k867vInlzpf5PkOe/uSub8sfM6ysILi0lhB+CR3kiYjxKBJOP/AAWYUpxvYSr4f8Uv
8nT7x9v6ln/Ks/N/T1LL/kdJ/wBUsHGO4/7H/il/k6ffH7f1I3R/yv1N7+Ia1cwRWHIer9XZ5HYV
+zVlTjXpy3zI0ssRyAZLjG/L9B296js+fePx8Hax+V+ppfyjRbmCWw5H0vrDPG6iv2aqr8qdOW2O
qliGQjHco35fpO/vU9nz7x+Pggv+VZ+b6U9Syp/xmk/6pZj8Y7j/ALH/AIpf5On3x+39S+H8sfM7
SqLi4tIoSfjkjeSVgPEIUjr/AMFhjON7iVfD/il/k6fePt/UmnmL8r2E0J8v3kcielGJ47gso5qg
HMOob7f2itNjmbrjgjIeGTL0jlXd5kc+dL/J8jy296T/APKsvN3+/LL/AJHSf9UsweMdx/2P/FL/
ACdPvj9v6mx+WXm2orJZAdz60h/5lY8Y7j/sf+KX+Tp98ft/UnV7+VsI0S2+o34bWQzm59RSscla
fDtUoEpsd61+7PzHTjDExJMze1b+d77V79+if5PlySX/AJVn5vHSSy/5HSf9UswOMdx/2P8AxSP5
On3x+39Tv+VZ+bz1ksv+R0n/AFSx4x3H/Y/8Uv8AJ0++P2/qTqy/K2E6Jc/Xr8LrJZDbempaOOlf
h3oXD13O1Kffn4TpzhkZEiYrat/Kt979+3VP8ny5JKfyy82g7SWVOx9aQf8AMrMDjHcf9j/xSP5O
n3x+39Tj+Wfm89ZLI/8APaT/AKpY8Y7j/sf+KX+Tp98ft/Um/l38r2M0x8wXkcaelIII7csw5shH
MuwX7H2gtNzmdoTglI+ITH0nnXd5E8udL/J8hz39yVzflj5nWVhBcWksIPwSO8kTEeJQJJx/4LMK
U43sJV8P+KX+Tp94+39Sz/lWfm+lPUsqf8ZpP+qWDjHcf9j/AMUv8nT74/b+pG6P+V+pvfxDWrmC
Kw5D1fq7PI7Cv2asqca9OW+ZGlliOQDJcY35foO3vUdnz7x+Pgy6HUf3Me/7I/VmjGQgU9PLBuwT
z353856JrNg1qtsmiT3EMIc/HLIz7urAn4QKdvv8Nno4Y8kDZPGAUjCOrPv0j75rfFLHwFOHUKK2
/wC0cHGQk4WG65rv5kX+u3FhoEUOm2Foqn6/eLyE7sK0j+GQU7bDbue2bDFLDGAlMmRPQdEjCOqL
/Lzz1qOvaddJqaImo6fOba4aL7DkD7Q3O/WtNsjrcfhSHCfTIWg4B0ZNHqP+kS7/AMv6swBMg2k4
dgx/zlf+a0hS70fVrTTLO3R3vXuo+XShDcqPsB2p9+ZmmywJqQMieVKMI6hJPyw82edtbe6vdWuE
l0dQY7WT0hE0kgb7ScQvwgVrXv8ATmRrxjx1GP1dVOEdGdyaj/pEW/8AN+rNWZkm1GHYrp9Yht4J
J55VihiUvJI5oqqoqSSewycckiaHNj4Dz3yx+bOoa/56ewgRY9DaGQ23JSJH9M7S8j/MQdv45tNR
pfCw8RPrT4Ip6DNqFVXf9oZqeMlRhQXmPzFLpmgajqENGmtbeWWINuvNUJWoqNq9cuwSM5iPeUeA
wPy1r/5j6xFZXSeY9NAnCyvZNGhmCV3DIqqeg8R882OoOLGSOGW3Xoz8KPc9Km1H9zJv+yf1ZqDk
JFMY4N1o1aOG0Esj8Y44+TsegVRUnDGZ2AWWDd5bF5//ADA8wyS6hot7YaXp4kZLGzumjE1wF2/b
ViT8iortm5lixYvTMSlLqRyCRhi9M0jU9UfTLZtVWOPUSgN1HCSYw/fiTmpyZRxHhPpYnArw6hRW
3/aOV8ZCThYX5muvzOhur2+sNY0610aFTKizIeaRotW5fupd9j+193TNhgzYCBExkZfjzZDDHqET
+WPmrzJrPl9tQ1t0f1ZmFo6oEZo12JIWi051A2wa8Rxz4Y/FicI6Mqj1H/SJd/5f1ZrxMg2k4dgw
zzh538yr5nsPK+gPBa3V1F67310KrSrfCgIIP92ex+jfNnpoROI5Z2QDVBAwjq7yf538yt5nv/K+
vvBdXVpF9YS9tRRSKr8LgAAf3g7D6dsdTCIxDLCwCaoqcI6Mzk1H/SIt/wCb9WawzJNpGHYsW/ML
z5qeixadY6QiPq2rzehavJuiUKgkjpWsigVzYaLGMnFKR9MRZQMI6pRaecvPHl3zFpem+abm21C0
1ljFBcW6hWjlqF47LFtykUbr079cuMceXHKWOwYd6ZYYvQZtQqq7/tDNVxkoGFKPOfnePy3oE+ps
vqygiO2iJoGlf7IPsNyfYZlaSEs0xFHgMKu/NX5saJp8fmLU5LW608lHutLRArwo5oPiCg96faan
vvmdAafJLw42JdD3szhj3PRbXX4NQ0qK+t2rBdQiaMnrxdeQr775qsplEmJ58mMcO6SQXv7mPf8A
ZH6sgY7u0OJg/wCbF0TZ6Hvt+k4fxVs2fZcd5/1C4+ePDTOzebnfNXwt/hKcN7s2/fJzjunwnnnn
z80RFet5e0i6W1uCxivtUk5cIOzKnEM3IdyBt236bbQ9m3HxJix0j3uJkmAaDIfy/fy1aaCLfQbx
b2NHJu7gVDvMQKsymhXYfD7eOYev8WWS8g4e73N2KESNt2QR3v8ApEwr2X9RzEMdg3eExfzv5q8s
xSJ5f8xRzpYahH6n1wBvSDI9QvJKtyDKCdtqiu2Z2i02U/vMdcUenVx8nCDRY9+W2pRxebdSsNCv
J7zyvFAGRp68UlJWnHkEpU8/2RUeNK5l9o4ycMZZABlvp3fimGIXKhyekyXv+kQivZv1DNMI7Fy/
CYl+Zdj5r1mytrHRwj2TsWvozII2fiQUUlqfD16Hrmw7OyYscjKfPo0ZcUugYnplz5ptPzE06H9F
2lrdRWSxLaRyUhW0DEM/MM/xdfH5HM/JHFLTSPFIji59baQJcVVu9bmvdhv+1mhhHf4OZ4SX+Z9T
sYPL2oS6hDJc2QhYXEEIJdkb4SBQrTrua7DfLNNjkckRE1K2GSAiLLyLX5/y6/Q9o/lNpx5gaaP6
sqGczcidw4b4AR24d+m2dBgjqeM+NXh1vyr8e9xZGNbc3tQvJxYj1yPXEX72nTnx+KlPfOa4Rxbc
nMjiUb55LzRbi1jP7y4tniSvTk8ZUfryUPTMHuKyxbF4poEP5fx+WtRGvu8evwmVBC5kSRGUUQRq
vwseQ35fTtnS5zqDlj4f92acKJjRvm9R/LW+1I+S9ON+zGQq3pF68vR5n061/wAnp7UzR9owj40u
H8Hq5OGBMbZHDe7Nv3zFnHdt8JhH5latdajcab5PsXK3OrOJLp/5LZCTU+1UZj/q++bHs7EICWaX
KHL3/j73HyjcRHNmliLaxsoLK1Xhb2yLFEvgqigr75rZkykZHmW8YW473/SJhXsv6jiY7Bl4TzD8
wrjTbrz3Y2/mOeSy0VLblbXMSbtITVgZArnrt029q1zd6CMo4CcY4p3uHDyACdHYLvy9n02y8939
p5dne/0aS1DXF1IoJSUNVQJOKkitR7+9K4NeJSwROQcM75fsTjAM6G4emyXv+kQivZv1DNKI7Fy/
CYn+Zz+XJdKtJNZuJrN0npZXtuhdopCKksB+z8Netdtsz+zfEEyIAHbcHq4+aIiN2B2sZ1nzrosF
rrtx5h+qyLPdXcsbxpFDEyvxXmzGppufEjvm1kfDwTJgMd7Ad5aYjikADb2qa92XfvnOQju5vhMQ
/Ni3u7/ymZLVTJJYXEd40YFSURWRtvYPyPsMzuy5COXf+IU05sZEbSvzX+Zugat5QktNPla41PVE
WCOwRWMiO5HINt26CnU9Mv0vZ2THmuW0Y721SyRMdubMPL0M2l+V7KwmP762tVSUVqA/GrCvsds1
+okJ5TIciXJx4tgml75Y8w2Fy9qtpJcxxnjHPDRlZR0JoaqadQc2mo7JywmQBxBcPaOCcQSeE9xQ
z6HrsgAk0qaQKyuoeNWAZTVWFa0IPQ5SOzs45RLZLVac85RVI9D8ySOEXTpgzGgLhUX6WYgDGPZe
YmuFZa7TgXxBGar5O17TJI1iiN7HIiszwUJV+I5qVJDU5V4mnTMzWdjZIEcPq2Dj6XtTDkBs8O/V
I7ryTJdztcXfllLi4enOaa0hkdqCgqzAk7Zjx0mqiKHEB7y2nNpTzlFXs/LGp2URhsdDa0iZuTRw
QJEpYilSE4iu3XIT0GokbkJH3so6nTR5Simtx5K8wW1hFqAiEs05PrWiMpeNRThTejnry4nb3zLy
9iZI4oyFGXc4+PtXDLIYnYDkfxySu68uavdwmC70aS5hO5imhWRCf9VqjMSPZ+oibAILky1Wmlzl
F1r5b1a0hEFposltCDURQwrGlT34pQYy7P1EjZBJ81jqtNHlKKaW/krzBc2EuoGIRTQEejaOyh5F
Nedd6IenHkd/bMvF2JklilI0JdzjZO1cMcgiNweZ/HNA/ofzF/1bbj/gR/XML+Tc380uV+cwfzwt
/QeumQSnSpvVVSiy+mOYQkEqG60JANMP8nZ6rhKPzWnu+KNphpXk7XtTkkWWI2UcaMyvPQFn4ngo
UEtTlTkadMzNH2NkmTxenYuPqu1MOMCjxb9EG+ieZI3KNp0xZTQlOLr9DKSDmHLsvMDXC5A1unI+
oIKDyhd29ybq38vCG6avK4jto0kNetXUBvxyctFqSKIkR7yxGfSg2JRTKy8seYb+5S1a0kto5Dxk
nmoqqp6kVNWNOgGT0/ZOWcwCOEMc3aOCESQeI9wde+WPMNhcvaraSXMcZ4xzw0ZWUdCaGqmnUHHU
dk5YTIA4guHtHBOIJPCe4pZceTrm5uPrNz5dW4udqTy20TybdPjYFtvnkI6PUxFDiA95ZHPpSbMo
o5NE8ySOEXTpgzGgL8UX6WYgDIR7LzE1wsjrdOB9QRmq+Tte0ySNYojexyIrM8FCVfiOalSQ1OVe
Jp0zM1nY2SBHD6tg4+l7Uw5AbPDv1S86HrpkWU6VMZUBVJDGOQVqFgG6gGgqMw/5Oz8uEuR+a093
xRXfofzF/wBW24/4Ef1wfybm/mlP5zB/PCOuPJXmC2sItQEQlmnJ9a0RlLxqKcKb0c9eXE7e+ZuX
sTJHFGQoy7nFx9q4ZZDE7Acj+OSVXflnVL2L0bzRHuogaiOeFJVr48XqMxIaDURNxEh7nIlqdNLn
KLrTyzqlnF6Vnoj2sRNTHBCkS18eKUGM9BqJG5CR96x1OmjylFNbfyV5gubCXUDEIpoCPRtHZQ8i
mvOu9EPTjyO/tmXi7EySxSkaEu5x8nauGOQRG4PM/jmls/l/WriFoLjSJZoX2eKSJXRh7q1Qcw49
nZwbESC5MtVpyN5RUrPyrqFirLY6EbRXILrbwRxBiOhITjXJT0Ool9QkffuiOp00eUopvpXk7XtT
kkWWI2UcaMyvPQFn4ngoUEtTlTkadMytH2NkmTxenYtGq7Uw4wKPFv0Qb6J5kjkKnTpyymnJOLr9
DKSDmHLsvMDXC5A1unIviCBg8nXNvcm6t/LohujWtxHbRJJv1+NQG3+eTlotSRR4iPeWIz6UGxKK
Z2XljzDf3KWrWkltHIeMk81FVVPUipqxp0Ayen7JyzmARwhjm7RwQiSDxHuD0SK9/dqa7kAn5nOn
GXZ5g4t2E+bvzXl8va9a6YdGuJ7eeWGN9RY+nDWY9IzxYOwFdqjpkJaggtsNLxC7Zx9d98s8Vp8J
ZFe7HfvT6BsMAyMjjYT5i/NW8tNbl0Ty9os+uX1ooa/MZaNIeW4WvBqkj6PnkJag3QbYaUEWTSb+
SPP9p5q0uS7ihe0ubeQwXlnIatHIBWlaLUe9Bko57DDJp+Ep8l7+9cV2FKfT1/ViMu7E49mO+cPN
vmjSWtxouhNrCShjNIsoT0yKUBWhO/jglmI5M8eCJ5mkp/Lr81dQ82317bzaT9ThtEBN0kvqR+py
p6ZPFdyNxTwwQ1BLLLphEbFnD3v71BXY1r9HT9eSOXdqGPZU+u++S8Vj4TDNJ/NrS9W86zeWrGIz
RQxuTqAccGkj+2qrTdf8qvXtTfIDUWabjpSI2zCW92G/en0HY5I5GsY0LrfmCLSdHvtTkXmllBJO
YwaFvTUtxB7VpTE5qCxw2aYDo35ree9TW0uIfJ7yWF0y0uEnFODGhYclUfflY1Eu5vlpYD+J6TLe
/u2NdwCR8xlhy7OOMW7Ud7+6Uk9QCT898Rl2U4t3m1x+dWq3V1dN5b8t3GsaXZOUmvkZgHI68AqP
23Hem9BlZ1J6ByBpBW5os/0XX/0ppNrqBgltfrUYkNvOOMiV7MMsGaw0Sw0aRUV7sd+9PoGwxGRT
jYbrv5hecNO1K5t7XyhNe2cB/d3wulRXSleVPTfj9+QOeQ6NsdNEjeSL/L38xJPN+l3F+2ntp6Qz
eioMnqq9FDEhuMfSu+2GGcljl0/Cau2TJe/vXFdhSn09f1YRl3YHHsxPzh+Zcui6raaHpWmyaxrd
4hlS1RuCpHUjkzUb+U/xOCWcjk2Y9NYsmg7yf+Zcutard6HqumyaPrdmgle1duavHUDkrUX+YfwO
Mc5PNcmmoWDYZY97+9QV2Na/R0/XhOXdrGPZj3nn8xLPypYQSvA97fXknpWNlGaNI4670agFQNgT
UjbGWemWPT8RSfQvzY1GTXbXRfMuiS6Jc6gP9AlZ/Ujkbb4D8K0P8djTIx1BvdnPSiribZ1Le7Df
vT6DscmcjUMaB8wea9O0DSLjVdQcrbW61KrQszE0VEBIqzHYYnNQWOEk0wJfzt1e3W21HV/LNxY+
XrtgsWoeoXYK32XZOC7Eb+/auV/mT1Gzf+UHIHd6QuqRT2i3EMgeKRBJFIpqCpHJWByw5dmgYt0l
hvP3Sb/sj9WYPG5/hvPfzmuq2Xl/f/pbQ/8AEWwg2mMaeim7NeuPGjw1OG82bfucHGvhsQ86fmFF
o0/6K0SAX/mq/osNrEAxQ0+F56eC7gHt4DfJAlHAEV+Xnlu58t6PKt/N6+q6hM11fyg1X1G/ZB2r
TufGuR46ZSjbJEvP38u/8v6jjxo8NIfN2oaZqdtN5VOsrpmqalDWGlC5j5AEUJWvOhXjyBIrTvh4
jSiNFiH5Y6pqeheZr7yLNNb3tnZQm5iurdQpDEoWD06n95Q8twRStMN0Eyjb017z9/Fv/N+oZHjR
4bBvzd8yeZbbSItN0SzuZTqPJLq9t42kMcS05IOA2Z69T2rT2kJWogAWB+UdY07SvzE0pLHR7+3h
WzFo8MsP+ks8jHlcyKD9mrbnsOmww0yO4e7zXmw3/aGR42PhpZ5tn0+byzqcOo3YsrKa3eKa7ahE
YkHANTv8TDbv0xErXgrd5VrVjqvkny7Za5o3nCW9jieNILNmJtZoyfsxxiR1oOpHz3BwgsjR5vY4
tReawSZ1MbSRB2jPVSy1I+jImbEY0NrFxPJ5dvkt6tO9nKsSr1LmIhQPeuImvhvFvI2ja1c+SLvW
LXzVPpcViZXisoJGSJWjHMmfi6j4/cdKdemSumZovVPy481ahr3lCy1HUP8AetucckgAUSem5TnQ
dK03964mVMPDDIobzZt+5yPGvhsJ/NnzPdW+jQaBppLatr8gtIUU7iJiBIfblyCfSfDJCVqIAFk3
lnTLbQNCs9JtjVLWMK7jbnId3f8A2TEnI8aTC90el5+/l3/l/UceNHhvKvPMl9qn5qabY6RdJpGq
WtpyOpu5q6sSRGqdGpyO3epr0yV9WQFCl/kc32k/mpqdjrV2uq6tdWYdNSVjVVBUmNk6JUKNu1BT
Y431UixT1J7z9/Fv/N+oZHjY+Gwv80tJbUYdJ1G21G207VNKufU097yRY4pHbi/AFtuVYlIwiVpE
aYLrt/511Tz35Vs9cks/rtvco8NrYHk0SCRHkml3anJY+Q+LovQd5WkAAGnt815su/cZDjY+GwD8
85JpfJkUiKXht76GW6UGn7rjIm9P8t1wiVpjGii/zI8xaHL+Wl5Ok0clpfQolgFK0dyylAg8UpUj
tTDZOyIxo2nPkt7q28kaTBdVEyWUfJTsVBSqqR7LQZEzTwWbV5pWsn+q3R9GeL4WVzTptUV6g9jl
OQGBo83IxkTFjklur2mg6xHbx6iqTpazpcwDnxpJHXifhI233GRjkpkcVpguoROwVJA7saKqnkST
2AG5wCVqY0q3UdzpzKl6hgMgEiF9gQwBpXpVehGW5scsZ9Qa8M45B6SwjVvy48iarqVxqN0r/Wbp
zJMVuCFLHqQCTSuAZyGXgpz5Z0by95as5bTSmKQzSerIJJjJ8VAu1TQbDsMjLLaRipP3t7y3gGoT
RtHa3BokjAgDj0LV6Bq/DXrlksU4xEiNi1xyQlIxB3DHPMvlzyn5kWP9LRJLLEKRXCSenKq1rx5K
d136GoyuOUhtOK2/LPl7yr5ajlXSY0ieb++neT1JGA6LyY7AeApjLKSgYqZElveXEB1CGNpLW3NH
kUEg8upWnULT4qdMsjinKJkBsGuWSEZCJO5UP0lb/wC/k/4If1ynjbuBL2s9BbXF1whDqiQG1Wf1
D/dFuVONeNd+tMl4u1I8Le02tY7rUWZLJDOYwZHKbgBQTSvSrdAMnhxyyH0hryzjjHqKDv2068tp
rG/WOWCUFJ7ealCPBlO4IP3ZXxEFs4AQxSw/Lb8vLK/S9itg8kbc44pZ2kjVgag8Wben+VXJnOWP
gs0ila9f6tan1p5fhVUNeu1TToB3ODGDM0OazIgLPJ0srWT/AFa6PozxfCyuadNqivUHsccgMDR5
rAiYscmE6l+Wf5fahqTX8sJieRi80MM3pxOxNSSo3Wv+SRhGcr4LLrF9PtLaGxsVSOCFRHBbxb0A
2AUCpJ/XkOIksuAAIu6judOZUvUMBkAkQvsCGANK9Kr0IyzNjljPqDXhnHIPSUnuNP8AL9zrlrrk
yo+p2cTQ28xkNFRiT9mvGo5NQ07/ACyHi7U2eFvaZfpK3/38n/BD+uR4k8Cu9veW8A1CaNo7W4NE
kYEAcehavQNX4a9culinGIkRsWmOSEpGIO4Yx5n8r+UvM3pvqsatcRLwjuYpPTlVdzxqDQiprRgc
rjmIbDit3ljyv5S8s+o+lRqtxKvCS5lk9SVl2PGpNAKitFAxlmJUYqZOlveXEB1CGNpLW3NHkUEg
8upWnULT4qdMsjinKJkBsGuWSEZCJO5SPzDpXlzzDZCz1ZEniVucbB+Do1KclZSD/DK45abTjtL/
ACv5O8neWpmuNNQNduCn1meQSSBT1C9FX6BXDLMSgYqZXax3WosyWSGcxgyOU3ACgmlelW6AZLDj
lkPpDDLOOMeooW8msbiCazvBHJDKpjnt5aUIOxVlbK+IgtnACGH2P5Y/l5Z6gt6kJlKMHjt5py8K
kbj4Tu3ycnJnOWPgs3ile9f6tan1p5fhVUPI77VNOgHc4MYMzQ5rMiAs8n//2Q==</xmpGImg:image>
+ </rdf:li>
+ </rdf:Alt>
+ </xmp:Thumbnails>
+ </rdf:Description>
+ <rdf:Description rdf:about=""
+ xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
+ xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#"
+ xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#">
+ <xmpMM:InstanceID>uuid:a51db801-1a70-0f41-9143-85723ef4b030</xmpMM:InstanceID>
+ <xmpMM:DocumentID>xmp.did:0180117407206811822ACC437FD4C6D6</xmpMM:DocumentID>
+ <xmpMM:OriginalDocumentID>uuid:5D20892493BFDB11914A8590D31508C8</xmpMM:OriginalDocumentID>
+ <xmpMM:RenditionClass>proof:pdf</xmpMM:RenditionClass>
+ <xmpMM:DerivedFrom rdf:parseType="Resource">
+ <stRef:instanceID>uuid:df7cb84a-7d46-f043-a9a7-82ccb02b7d0f</stRef:instanceID>
+ <stRef:documentID>xmp.did:01801174072068118083DBF432C3F51E</stRef:documentID>
+ <stRef:originalDocumentID>uuid:5D20892493BFDB11914A8590D31508C8</stRef:originalDocumentID>
+ <stRef:renditionClass>proof:pdf</stRef:renditionClass>
+ </xmpMM:DerivedFrom>
+ <xmpMM:History>
+ <rdf:Seq>
+ <rdf:li rdf:parseType="Resource">
+ <stEvt:action>saved</stEvt:action>
+ <stEvt:instanceID>xmp.iid:01801174072068118083DBF432C3F51E</stEvt:instanceID>
+ <stEvt:when>2012-11-24T08:02:02Z</stEvt:when>
+ <stEvt:softwareAgent>Adobe Illustrator CS6 (Macintosh)</stEvt:softwareAgent>
+ <stEvt:changed>/</stEvt:changed>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <stEvt:action>saved</stEvt:action>
+ <stEvt:instanceID>xmp.iid:0180117407206811822ACC437FD4C6D6</stEvt:instanceID>
+ <stEvt:when>2012-11-26T23:00:54Z</stEvt:when>
+ <stEvt:softwareAgent>Adobe Illustrator CS6 (Macintosh)</stEvt:softwareAgent>
+ <stEvt:changed>/</stEvt:changed>
+ </rdf:li>
+ </rdf:Seq>
+ </xmpMM:History>
+ </rdf:Description>
+ <rdf:Description rdf:about=""
+ xmlns:illustrator="http://ns.adobe.com/illustrator/1.0/">
+ <illustrator:Type>Document</illustrator:Type>
+ <illustrator:StartupProfile>Print</illustrator:StartupProfile>
+ </rdf:Description>
+ <rdf:Description rdf:about=""
+ xmlns:xmpTPg="http://ns.adobe.com/xap/1.0/t/pg/"
+ xmlns:stDim="http://ns.adobe.com/xap/1.0/sType/Dimensions#"
+ xmlns:xmpG="http://ns.adobe.com/xap/1.0/g/">
+ <xmpTPg:HasVisibleOverprint>False</xmpTPg:HasVisibleOverprint>
+ <xmpTPg:HasVisibleTransparency>True</xmpTPg:HasVisibleTransparency>
+ <xmpTPg:NPages>1</xmpTPg:NPages>
+ <xmpTPg:MaxPageSize rdf:parseType="Resource">
+ <stDim:w>512.000000</stDim:w>
+ <stDim:h>512.000000</stDim:h>
+ <stDim:unit>Pixels</stDim:unit>
+ </xmpTPg:MaxPageSize>
+ <xmpTPg:PlateNames>
+ <rdf:Seq>
+ <rdf:li>Cyan</rdf:li>
+ <rdf:li>Magenta</rdf:li>
+ <rdf:li>Yellow</rdf:li>
+ <rdf:li>Black</rdf:li>
+ </rdf:Seq>
+ </xmpTPg:PlateNames>
+ <xmpTPg:SwatchGroups>
+ <rdf:Seq>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:groupName>Default Swatch Group</xmpG:groupName>
+ <xmpG:groupType>0</xmpG:groupType>
+ <xmpG:Colorants>
+ <rdf:Seq>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>White</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>255</xmpG:red>
+ <xmpG:green>255</xmpG:green>
+ <xmpG:blue>255</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>Black</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>35</xmpG:red>
+ <xmpG:green>31</xmpG:green>
+ <xmpG:blue>32</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>CMYK Red</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>237</xmpG:red>
+ <xmpG:green>28</xmpG:green>
+ <xmpG:blue>36</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>CMYK Yellow</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>255</xmpG:red>
+ <xmpG:green>242</xmpG:green>
+ <xmpG:blue>0</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>CMYK Green</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>0</xmpG:red>
+ <xmpG:green>166</xmpG:green>
+ <xmpG:blue>81</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>CMYK Cyan</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>0</xmpG:red>
+ <xmpG:green>174</xmpG:green>
+ <xmpG:blue>239</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>CMYK Blue</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>46</xmpG:red>
+ <xmpG:green>49</xmpG:green>
+ <xmpG:blue>146</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>CMYK Magenta</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>236</xmpG:red>
+ <xmpG:green>0</xmpG:green>
+ <xmpG:blue>140</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=15 M=100 Y=90 K=10</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>190</xmpG:red>
+ <xmpG:green>30</xmpG:green>
+ <xmpG:blue>45</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=0 M=90 Y=85 K=0</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>239</xmpG:red>
+ <xmpG:green>65</xmpG:green>
+ <xmpG:blue>54</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=0 M=80 Y=95 K=0</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>241</xmpG:red>
+ <xmpG:green>90</xmpG:green>
+ <xmpG:blue>41</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=0 M=50 Y=100 K=0</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>247</xmpG:red>
+ <xmpG:green>148</xmpG:green>
+ <xmpG:blue>30</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=0 M=35 Y=85 K=0</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>251</xmpG:red>
+ <xmpG:green>176</xmpG:green>
+ <xmpG:blue>64</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=5 M=0 Y=90 K=0</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>249</xmpG:red>
+ <xmpG:green>237</xmpG:green>
+ <xmpG:blue>50</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=20 M=0 Y=100 K=0</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>215</xmpG:red>
+ <xmpG:green>223</xmpG:green>
+ <xmpG:blue>35</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=50 M=0 Y=100 K=0</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>141</xmpG:red>
+ <xmpG:green>198</xmpG:green>
+ <xmpG:blue>63</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=75 M=0 Y=100 K=0</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>57</xmpG:red>
+ <xmpG:green>181</xmpG:green>
+ <xmpG:blue>74</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=85 M=10 Y=100 K=10</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>0</xmpG:red>
+ <xmpG:green>148</xmpG:green>
+ <xmpG:blue>68</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=90 M=30 Y=95 K=30</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>0</xmpG:red>
+ <xmpG:green>104</xmpG:green>
+ <xmpG:blue>56</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=75 M=0 Y=75 K=0</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>43</xmpG:red>
+ <xmpG:green>182</xmpG:green>
+ <xmpG:blue>115</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=80 M=10 Y=45 K=0</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>0</xmpG:red>
+ <xmpG:green>167</xmpG:green>
+ <xmpG:blue>157</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=70 M=15 Y=0 K=0</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>39</xmpG:red>
+ <xmpG:green>170</xmpG:green>
+ <xmpG:blue>225</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=85 M=50 Y=0 K=0</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>28</xmpG:red>
+ <xmpG:green>117</xmpG:green>
+ <xmpG:blue>188</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=100 M=95 Y=5 K=0</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>43</xmpG:red>
+ <xmpG:green>57</xmpG:green>
+ <xmpG:blue>144</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=100 M=100 Y=25 K=25</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>38</xmpG:red>
+ <xmpG:green>34</xmpG:green>
+ <xmpG:blue>98</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=75 M=100 Y=0 K=0</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>102</xmpG:red>
+ <xmpG:green>45</xmpG:green>
+ <xmpG:blue>145</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=50 M=100 Y=0 K=0</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>146</xmpG:red>
+ <xmpG:green>39</xmpG:green>
+ <xmpG:blue>143</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=35 M=100 Y=35 K=10</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>158</xmpG:red>
+ <xmpG:green>31</xmpG:green>
+ <xmpG:blue>99</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=10 M=100 Y=50 K=0</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>218</xmpG:red>
+ <xmpG:green>28</xmpG:green>
+ <xmpG:blue>92</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=0 M=95 Y=20 K=0</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>238</xmpG:red>
+ <xmpG:green>42</xmpG:green>
+ <xmpG:blue>123</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=25 M=25 Y=40 K=0</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>194</xmpG:red>
+ <xmpG:green>181</xmpG:green>
+ <xmpG:blue>155</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=40 M=45 Y=50 K=5</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>155</xmpG:red>
+ <xmpG:green>133</xmpG:green>
+ <xmpG:blue>121</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=50 M=50 Y=60 K=25</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>114</xmpG:red>
+ <xmpG:green>102</xmpG:green>
+ <xmpG:blue>88</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=55 M=60 Y=65 K=40</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>89</xmpG:red>
+ <xmpG:green>74</xmpG:green>
+ <xmpG:blue>66</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=25 M=40 Y=65 K=0</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>196</xmpG:red>
+ <xmpG:green>154</xmpG:green>
+ <xmpG:blue>108</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=30 M=50 Y=75 K=10</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>169</xmpG:red>
+ <xmpG:green>124</xmpG:green>
+ <xmpG:blue>80</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=35 M=60 Y=80 K=25</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>139</xmpG:red>
+ <xmpG:green>94</xmpG:green>
+ <xmpG:blue>60</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=40 M=65 Y=90 K=35</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>117</xmpG:red>
+ <xmpG:green>76</xmpG:green>
+ <xmpG:blue>41</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=40 M=70 Y=100 K=50</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>96</xmpG:red>
+ <xmpG:green>57</xmpG:green>
+ <xmpG:blue>19</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=50 M=70 Y=80 K=70</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>60</xmpG:red>
+ <xmpG:green>36</xmpG:green>
+ <xmpG:blue>21</xmpG:blue>
+ </rdf:li>
+ </rdf:Seq>
+ </xmpG:Colorants>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:groupName>Grays</xmpG:groupName>
+ <xmpG:groupType>1</xmpG:groupType>
+ <xmpG:Colorants>
+ <rdf:Seq>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=0 M=0 Y=0 K=100</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>35</xmpG:red>
+ <xmpG:green>31</xmpG:green>
+ <xmpG:blue>32</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=0 M=0 Y=0 K=90</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>65</xmpG:red>
+ <xmpG:green>64</xmpG:green>
+ <xmpG:blue>66</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=0 M=0 Y=0 K=80</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>88</xmpG:red>
+ <xmpG:green>89</xmpG:green>
+ <xmpG:blue>91</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=0 M=0 Y=0 K=70</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>109</xmpG:red>
+ <xmpG:green>110</xmpG:green>
+ <xmpG:blue>113</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=0 M=0 Y=0 K=60</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>128</xmpG:red>
+ <xmpG:green>130</xmpG:green>
+ <xmpG:blue>133</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=0 M=0 Y=0 K=50</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>147</xmpG:red>
+ <xmpG:green>149</xmpG:green>
+ <xmpG:blue>152</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=0 M=0 Y=0 K=40</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>167</xmpG:red>
+ <xmpG:green>169</xmpG:green>
+ <xmpG:blue>172</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=0 M=0 Y=0 K=30</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>188</xmpG:red>
+ <xmpG:green>190</xmpG:green>
+ <xmpG:blue>192</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=0 M=0 Y=0 K=20</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>209</xmpG:red>
+ <xmpG:green>211</xmpG:green>
+ <xmpG:blue>212</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=0 M=0 Y=0 K=10</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>230</xmpG:red>
+ <xmpG:green>231</xmpG:green>
+ <xmpG:blue>232</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=0 M=0 Y=0 K=5</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>241</xmpG:red>
+ <xmpG:green>242</xmpG:green>
+ <xmpG:blue>242</xmpG:blue>
+ </rdf:li>
+ </rdf:Seq>
+ </xmpG:Colorants>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:groupName>Brights</xmpG:groupName>
+ <xmpG:groupType>1</xmpG:groupType>
+ <xmpG:Colorants>
+ <rdf:Seq>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=0 M=100 Y=100 K=0</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>237</xmpG:red>
+ <xmpG:green>28</xmpG:green>
+ <xmpG:blue>36</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=0 M=75 Y=100 K=0</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>242</xmpG:red>
+ <xmpG:green>101</xmpG:green>
+ <xmpG:blue>34</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=0 M=10 Y=95 K=0</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>255</xmpG:red>
+ <xmpG:green>222</xmpG:green>
+ <xmpG:blue>23</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=85 M=10 Y=100 K=0</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>0</xmpG:red>
+ <xmpG:green>161</xmpG:green>
+ <xmpG:blue>75</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=100 M=90 Y=0 K=0</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>33</xmpG:red>
+ <xmpG:green>64</xmpG:green>
+ <xmpG:blue>154</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>C=60 M=90 Y=0 K=0</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>127</xmpG:red>
+ <xmpG:green>63</xmpG:green>
+ <xmpG:blue>152</xmpG:blue>
+ </rdf:li>
+ </rdf:Seq>
+ </xmpG:Colorants>
+ </rdf:li>
+ </rdf:Seq>
+ </xmpTPg:SwatchGroups>
+ </rdf:Description>
+ <rdf:Description rdf:about=""
+ xmlns:pdf="http://ns.adobe.com/pdf/1.3/">
+ <pdf:Producer>Adobe PDF library 10.01</pdf:Producer>
+ </rdf:Description>
+ </rdf:RDF>
+</x:xmpmeta>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<?xpacket end="w"?>\rendstream\rendobj\r3 0 obj\r<</Count 1/Kids[7 0 R]/Type/Pages>>\rendobj\r7 0 obj\r<</ArtBox[0.0 0.0 512.0 512.0]/BleedBox[0.0 0.0 512.0 512.0]/Contents 306 0 R/Group 307 0 R/LastModified(D:20121126232019Z)/MediaBox[0.0 0.0 512.0 512.0]/Parent 3 0 R/PieceInfo<</Illustrator 308 0 R>>/Resources<</ColorSpace<</CS0 309 0 R>>/ExtGState<</GS0 310 0 R/GS1 311 0 R/GS2 312 0 R>>/Properties<</MC0 304 0 R>>/Shading<</Sh0 313 0 R/Sh1 314 0 R/Sh2 315 0 R/Sh3 316 0 R/Sh4 317 0 R>>/XObject<</Fm0 318 0 R>>>>/Thumb 319 0 R/TrimBox[0.0 0.0 512.0 512.0]/Type/Page>>\rendobj\r306 0 obj\r<</Filter/FlateDecode/Length 920>>stream\r
+H\89¤VË\8eÕ0\fÝ÷+ò\ 3\93\9bØyn\19\1e+\84\10\vØ\8f\10³è\80\80ÿ\978v\92&\18\ 4b¤;±O\13Û99s{wonoï\9dyñòÞlß·\9aLôd\9e¶@¶\16µ\9d ©Zç«X>\99\87\8d;ÆÚ\866¹ýWÐa\96\ eû&Su\94 \12MbÎèU\ 2vcW£ÅV«çíKÇC\19\1f¶aíÛãöÑ|Eí·7\1f\9cùòs»sÖá\8f(`\82·µV\fùdÏ\19\14\93Ø¡\14\96ª\9f¶\17\9fÌíã3?\1fÍ«Oæýö¾±\12ª°\12\83u5¨CØv̶º¤¦\12C\83\19êÔ`ìKúÐ\1ePç\87\ 6AÍXÂ!Á\92KIêÆ®FK£V_u\8cý©\8c\8d%±\9egI\96äÉÌjÏ\19+K´ÐäO4µ³\95ß\9düûñy¦ô\92òöúÉ\99\97ß¶6\9b
+Û\18Qk¶H
+r)\aì \1e\b¥\ 4\1fºòÑzÈ\85bµÁ\81\11O¶D\16¾/È®\88ã¨Hf=\ 2\1fð,\19®Ùr\ 6àÅ`\ 2à/ÉàgKª\86sF\9aé"Reáð\8aì\13á\82JE\vÁ2\15Ãä!XPDÑæR\ f\1f\95^\10ÔÅÎF^Öp´\11ç+~I\88\19\1cbzøl\ 3
+G\8c\v\82\18\ 1\96\ 4\rZÆ\ 1xÄʼø\9e\91\ 3\84"4Æ\1alDµTPµ?\$8\ 3ûÆ\ eûôe\0\8cMxö#Üá¶l\ fÛ\ 5Ø\ f\80s²)\86\15©ÕÆ\80CpBúræ½\84áÏ¢\ 6rR2-JöÁ\9b;&|Y\ 2\97\90óÙ\99s(Æ©ö\164å\9a§¨é$ê!Sç\95c\91)JÆf\ 6BÙÙ\9cÚ\96\12Þð\14,QV½ÅªçvAvE\n\9aDl\0ä EÄ(d©èIº
+\ 4ÌAaÐ\17u\89:\8bò§\7fhô\8aì\13 Ù\92|yph>"\ 5ç³F»¿h´#RV±\85'BLÖ§¤~,M³\f*ä=HA¿\80\17¤½\91¢Ñ\90 ¡\ 5\98\1aí¾è\9eYéLÄ\10\99;©tøS\11\ 3A\bðXñî\f\84\85<\11b\8fyø\87RÏÀ~\0\8bR\aR\11\13<R-8Å2\8f}è²û\8bR;òì7×C\f\84°5PÉX°ÚË\8cå\9bÛ7Æäxê\94ÿêã[©ô\96\9e\é\1d3¢·ôþ»öÙÑ`¯\r¹5ë¶Æ\19 £ý\8b\8a6öZ|kìÞ¡\9f¶Éjj×j v«fö\}\95&ê\15>üO\1fÏ©<׿ÿÄ\8eT¦u=I?Vkß\96=¸V¨^~ªª¯\11 ·\9eÎÈé.s½\9b,W\17ýMâ%J'Z5¬VÏÕW\1dÜ©ñGzZøß_k´¦ALøKb¤¨N\8cTÚ\99éõ«·\16<¶Ñ6Ô\bZ÷{Þv#i\1cû¡ qZä%K£©éIyjfÏÛW\1e\8fÿ\9d(ÑÍ3\ 4½z\8b+±°ôK\80\ 1\0(\8e1`\rendstream\rendobj\r307 0 obj\r<</CS 320 0 R/I false/K false/S/Transparency>>\rendobj\r319 0 obj\r<</BitsPerComponent 8/ColorSpace 321 0 R/Filter[/ASCII85Decode/FlateDecode]/Height 64/Length 649/Width 64>>stream\r
+8;X^?0ld@>$q2i0_kb.nEN1"ue]JUe#\ak#Eh.Tb3+`d0!`%,?Z"J`7k\IZ[S7SOF
+hrg5n[I["tjXKY>+Z2u>R[1-9./hB<-'B705[WNKb_`\(_-'FJ'`9T]`Sf1^3Zh;i
+:XBXOoTRmaRG[P@.fTbOidXblilmogKCQK2pBk(!`#ejI$to_<*l]8I2ZL1j76Nik
+!(@^UL;'Qu+1RYm%!r@(SKpW6AIn$PP4.n0mbM*&Dfh;Zo<g`umm_H8a>2WqT5;&J
+)>W1Z-+\Kr@d;7joAFu5R]8Du,L9%p!Zc^ZeNC)s^8eVkNA(6Seq:.XidlO947Jec
+XlOEMm@O+Woe0nUC7YX=0DmX$kMoS@\NWJ1%/]K7OALErq:XOhEe'uAIrW9\e)g$C
+IO+p.O!S]==s!1[j"h)!oT+iJJ1]msl;'0b/Pk=Ypi\ck5?@At>Vb%0nmB]VKq8B*
+n5%u7`+rp[I$,R"o_TI!Ks11ljVhs8oj>g2.fB;D-/aG2s*s1;n;hULO7C%T;o]?-
+E[;e4o.N&4M2_@g+)@cDY4CVY6Kl0LK*\i<-g84jhuW6NWcQgak^L^#>B_3+!?Y]N
+r(mgn$6.(l+KaH"#Lj:2NNQ]U?Y].[;/'HB\QLoZ3i?0V3<1?<0H0~>\rendstream\rendobj\r321 0 obj\r[/Indexed/DeviceRGB 255 322 0 R]\rendobj\r322 0 obj\r<</Filter[/ASCII85Decode/FlateDecode]/Length 428>>stream\r
+8;X]O>EqN@%''O_@%e@?J;%+8(9e>X=MR6S?i^YgA3=].HDXF.R$lIL@"pJ+EP(%0
+b]6ajmNZn*!='OQZeQ^Y*,=]?C.B+\Ulg9dhD*"iC[;*=3`oP1[!S^)?1)IZ4dup`
+E1r!/,*0[*9.aFIR2&b-C#s<Xl5FH@[<=!#6V)uDBXnIr.F>oRZ7Dl%MLY\.?d>Mn
+6%Q2oYfNRF$$+ON<+]RUJmC0I<jlL.oXisZ;SYU[/7#<&37rclQKqeJe#,UF7Rgb1
+VNWFKf>nDZ4OTs0S!saG>GGKUlQ*Q?45:CI&4J'_2j<etJICj7e7nPMb=O6S7UOH<
+PO7r\I.Hu&e0d&E<.')fERr/l+*W,)q^D*ai5<uuLX.7g/>$XKrcYp0n+Xl_nU*O(
+l[$6Nn+Z_Nq0]s7hs]`XX1nZ8&94a\~>\rendstream\rendobj\r318 0 obj\r<</BBox[20.0 492.0 492.0 20.0]/Group 323 0 R/Length 263/Matrix[1.0 0.0 0.0 1.0 0.0 0.0]/Resources<</ColorSpace<</CS0 309 0 R>>/ExtGState<</GS0 324 0 R>>/Shading<</Sh0 325 0 R>>>>/Subtype/Form>>stream\r
+q
+96 20 m
+54.093 20 20 54.094 20 96 c
+20 416 l
+20 457.907 54.093 492 96 492 c
+416 492 l
+457.906 492 492 457.907 492 416 c
+492 96 l
+492 54.094 457.906 20 416 20 c
+h
+W n
+q
+0 g
+/GS0 gs
+-0.0000206 471.9995117 471.9995117 0.0000206 256.0004883 20 cm
+BX /Sh0 sh EX Q
+Q
+\rendstream\rendobj\r323 0 obj\r<</I false/K false/S/Transparency/Type/Group>>\rendobj\r325 0 obj\r<</AntiAlias false/ColorSpace 309 0 R/Coords[0.0 0.0 1.0 0.0]/Domain[0.0 1.0]/Extend[true true]/Function 326 0 R/ShadingType 2>>\rendobj\r309 0 obj\r[/ICCBased 327 0 R]\rendobj\r326 0 obj\r<</Bounds[0.25]/Domain[0.0 1.0]/Encode[0.0 1.0 0.0 1.0]/FunctionType 3/Functions[328 0 R 329 0 R]>>\rendobj\r328 0 obj\r<</C0[1.0 1.0 1.0]/C1[1.0 1.0 1.0]/Domain[0.0 1.0]/FunctionType 2/N 1.0>>\rendobj\r329 0 obj\r<</C0[1.0 1.0 1.0]/C1[1.0 1.0 1.0]/Domain[0.0 1.0]/FunctionType 2/N 2.40942>>\rendobj\r327 0 obj\r<</Filter/FlateDecode/Length 2574/N 3>>stream\r
+H\89\9c\96yTSw\16Ç\7foÉ\9e\90\95°Ãc\r[\80°\ 6\905la\91\1d\ 4Q\bI\b\ 1\12BHØ\ 5AD\ 5\14ED\84ª\952ÖmtFOE\9d.®c\ eÖ}êÒ\ 3õ0êè8´\16×\8e\9d\178G\9dNg¦Óï\1fï÷9÷wïïÝß½÷\9dó\0 '¥ªµÕ0\v\0\8dÖ ÏJ\8cÅ\16\15\14b¤ \0\ 3
+ \ 2\11\02y.-;!\aà\92ÆK°ZÜ ü\8b\9e^\a\90i½"LÊÀ0ðÿ\89-×é\r\0@\198\a(\94µr\9c;q®ª7èLö\19\9cy¥\95&\86Q\13ëñ\ 4q¶4±j\9e½ç|æ9ÚÄ
+\8dV\81³)g\9dB£0ñi\9cW×\19\958#©8wÕ©\95õ8_Å٥ʨQãüÜ\14«QÊj\ 1@é&»A)/ÇÙ\ fgº>'K\82ó\ 2\0ÈtÕ;\ú\ e\e\94\r\ 6Ó¥$ÕºF½ZUnÀÜå\1e\98(4T\8c%)ë«\94\ 6\830C&¯\94é\15\98¤Z£\93i\e\ 1\98¿ó\9c8¦Úbx\91\83E¡ÁÁB\7f\1fÑ;\85ú¯\9b¿P¦ÞÎÓ\93̹\9eAü\vom?çW=
+\80x\16¯Íú·¶Ò-\0\8c¯\ 4Àòæ[\9bËû\00ñ¾\1d¾øÎ}ø¦y)7\18ta¾¾õõõ>j¥ÜÇTÐ7ú\9f\ e¿@ï¼ÏÇtÜ\9bò`qÊ2\99±Ê\80\99ê&¯®ª6ê±Z\9dL®Ä\84?\1dâ_\1døóyxg)Ë\94z¥\16\8fÈçLUáíÖ*Ô\ 6uµ\16SkÿS\13\7feØO4?׸¸c¯\ 1¯Ø\a°.ò\0ò·\v\0åÒ\0R´\rß\81Þô-\95\92\a2ð5ßáÞüÜÏ ú÷Sá>Ó£V\9a\8b\93då`r£¾n~ÏôY\ 2\ 2 \ 2&à\ 1+`\ f\9c\81;\10\ 2\7f\10\ 2ÂA4\88\aÉ \1dä\80\ 2°\14ÈA9Ð\0=¨\a- \1dt\81\1e°\1el\ 2Ã`;\18\ 3»Á~p\10\8c\83\8fÁ ðGp\1e| ®\81[`\12L\83\87`\ 6<\ 5¯ \b"A\f\88\vYA\ e\90+ä\ 5ùCb(\12\8a\87R¡,¨\0*\81T\90\162B-Ð
+¨\aê\87\86¡\1dÐnè÷ÐQè\ 4t\ eº\ 4}\ 5MA\ f ï \970\ 2Óa\1el\a»Á¾°\18\8e\81Sà\1cx ¬\82kà&¸\13^\a\ fÁ£ð>ø0|\ 2>\ f_\83'á\87ð,\ 2\10\1aÂG\1c\11!"F$H:R\88\94!z¤\15éF\ 6\91Qd?r\f9\8b\A&\91GÈ\v\94\88rQ\f\15¢áh\12\9a\8bÊÑ\1a´\15íE\87Ñ]èaô4z\ 5\9dBgÐ×\ 4\ 6Á\96àE\b#H \8b\b*B=¡\8b0HØIø\88p\86p\8d0MxJ$\12ùD\ 11\84\98D, V\10\9b\89½ÄÄ\ 3ÄãÄKÄ»ÄY\12\89dEò"E\90ÒI2\92\81ÔEÚBÚGú\8ct\994MzN¦\91\1dÈþä\ 4r!YKî \ f\92÷\90?%_&ß#¿¢°(®\940J:EAi¤ôQÆ(Ç(\17)Ó\94WT6U@\8d æP+¨íÔ!ê~ê\19êmê\13\1a\8dæD\v¥eÒÔ´å´!Úïh\9fÓ¦h/è\1cº']B/¢\eéëè\1fÒ\8fÓ¿¢?a0\18n\8chF!ÃÀXÇØÍ8Åø\9añÜ\8ckæc&5S\98µ\99\8d\98\1d6»lö\98Iaº2c\98K\99MÌAæ!æEæ#\16\85åÆ\92°d¬VÖ\bë(ë\ 6k\96Íe\8bØél\r»\97½\87}\8e}\9fCâ¸qâ9
+N'ç\ 3Î)Î].ÂuæJ¸rî
+î\18÷\fw\9aGä xR^\ 5¯\87÷[Þ\ 4oÆ\9cc\1eh\9egÞ`>bþ\89ù$\1fá»ñ¥ü*~\1fÿ ÿ:ÿ¥\85\9dE\8c\85Òb\8dÅ~\8bË\16Ï,m,£-\95\96Ý\96\a,¯Y¾´Â¬â*6X\8d[ݱF=3ë·Y\9f±~dó ·\91ÛtÛ\1c´¹i\vÛzÚfÙ6Û~`{ÁvÖÎÞ.ÑNg·Åî\94Ý#{¾}´}\85ý\80ý§ö\ f\1c¸\ e\91\ ej\87\ 1\87Ï\1cþ\8a\99c1X\156\84\9dÆf\1cm\1d\93\1c\8d\8e;\1c'\1c_9 \9cr\9d:\9c\ e8Ýq¦:\8b\9dË\9c\a\9cO:ϸ8¸¤¹´¸ìu¹éJq\15»\96»nv=ëúÌMà\96ï¶ÊmÜí¾ÀR \154 ö
+n»3Ü£ÜkÜGݯz\10=Ä\1e\95\1e[=¾ô\84=\83<Ë=G</zÁ^Á^j¯^\97¼ Þ¡ÞZïQï\eBº0FX'Ü+\9còáû¤útø\8cû<öuñ-ôÝà{Ö÷µ_\90_\95ß\98ß-\11G\94,ê\10\1d\13}çïé/÷\1fñ¿\1aÀ\bH\bh\v8\12ðm W 2p[à\9f\83¸AiA«\82N\ 6ý#8$X\1f¼?øA\88KHIÈ{!7Ä<q\86¸Wüy(!46´-ôãÐ\17aÁa\86°\83a\7f\ f\17\86W\86ï ¿¿@°@¹`lÁÝ\b§\bYÄ\8e\88ÉH,²$òýÈÉ(Ç(YÔhÔ7ÑÎÑ\8aè\9dÑ÷b<b*böÅ<\8eõ\8bÕÇ~\14ûL\12&Y&9\1e\87Ä%ÆuÇMÄsâsã\87ã¿NpJP%ìM\98I\fJlN<\9eDHJIÚ\90tCj'\95KwKg\92C\92\97%\9fN¡§d§\f§|\93ê\99ªO=\96\ 6§%§mL»½Ðu¡váx:H\97¦oL¿\93!È¨ÉøC&13#s$ó/Y¢¬\96¬³ÙÜìâì=ÙOsbsúrnåºç\1asOæ1ó\8aòvç=Ë\8fËïÏ\9f\ä»hÙ¢ó\ 5Ö\ 5ê\82#\85¤Â¼Â\9d\85³\8bã\17oZ<]\14TÔUt}\89`IÃ\92sK\97V-ý¤\98Y,+>TB(É/ÙSò\83,]6*\9b-\95\96¾W:#\97È7Ë\1f*¢\15\ 3\8a\aÊ\be¿ò^YDY\7fÙ}U\84j£êAyTù`ù#µD=¬þ¶"©b{ųÊôÊ\ f+\7f¬Ê¯: !kJ4Gµ\1cm¥ötµ}uCõ%\9d\97®K7Y\13V³©fF\9f¢ßY\vÕ.©=bàá?S\17\8cîÆ\95Æ©ºÈº\91ºçõyõ\87\1aØ\rÚ\86\v\8d\9e\8dk\1aï5%4ý¦\19m\967\9flqlio\99Z\16³lG+ÔZÚz²Í¹³mzyâò]íÔöÊö?uøuôw|¿"\7fűN»Îå\9dwW&®ÜÛe֥ﺱ*|ÕöÕèjõê\895\ 1k¶¬yÝèþ¢Ç¯g°ç\87^yï\17kEk\87Öþ¸®lÝD_pß¶õÄõÚõ×7DmØÕÏîoê¿»1mãá\ 1l {àûMÅ\9bÎ\r\ 6\ enßLÝlÜ<9\94úO\0¤\ 1[þ\98¸\99$\99\90\99ü\9ah\9aÕ\9bB\9b¯\9c\1c\9c\89\9c÷\9dd\9dÒ\9e@\9e®\9f\1d\9f\8b\9fú i Ø¡G¡¶¢&¢\96£\ 6£v£æ¤V¤Ç¥8¥©¦\1a¦\8b¦ý§n§à¨R¨Ä©7©©ª\1cª\8f«\ 2«u«é¬\¬ÐD¸®-®¡¯\16¯\8b°\0°u°ê±`±Ö²K²Â³8³®´%´\9cµ\13µ\8a¶\ 1¶y¶ð·h·à¸Y¸Ñ¹J¹Âº;ºµ».»§¼!¼\9b½\15½\8f¾
+¾\84¾ÿ¿z¿õÀpÀìÁgÁãÂ_ÂÛÃXÃÔÄQÄÎÅKÅÈÆFÆÃÇAÇ¿È=ȼÉ:ɹÊ8Ê·Ë6˶Ì5̵Í5͵Î6ζÏ7ϸÐ9кÑ<ѾÒ?ÒÁÓDÓÆÔIÔËÕNÕÑÖUÖØ×\×àØdØèÙlÙñÚvÚûÛ\80Ü\ 5Ü\8aÝ\10Ý\96Þ\1cÞ¢ß)߯à6à½áDáÌâSâÛãcãëäsäüå\84æ\ræ\96ç\1fç©è2è¼éFéÐê[êåëpëûì\86í\11í\9cî(î´ï@ïÌðXðåñrñÿò\8có\19ó§ô4ôÂõPõÞömöû÷\8aø\19ø¨ù8ùÇúWúçûwü\aü\98ý)ýºþKþÜÿmÿÿ\ 2\f\0÷\84óû\rendstream\rendobj\r324 0 obj\r<</AIS false/BM/Normal/CA 1.0/OP false/OPM 1/SA true/SMask 330 0 R/Type/ExtGState/ca 1.0/op false>>\rendobj\r330 0 obj\r<</G 331 0 R/S/Luminosity/Type/Mask>>\rendobj\r331 0 obj\r<</BBox[-32768.0 32767.0 32767.0 -32768.0]/Group 332 0 R/Length 93/Matrix[1.0 0.0 0.0 1.0 0.0 0.0]/Resources<</ExtGState<</GS0 310 0 R>>/Shading<</Sh0 333 0 R>>>>/Subtype/Form>>stream\r
+q
+0 g
+/GS0 gs
+-0.0000206 471.9995117 471.9995117 0.0000206 256.0004883 20 cm
+BX /Sh0 sh EX Q
+\rendstream\rendobj\r332 0 obj\r<</CS/DeviceGray/I false/K false/S/Transparency/Type/Group>>\rendobj\r333 0 obj\r<</AntiAlias false/ColorSpace/DeviceGray/Coords[0.0 0.0 1.0 0.0]/Domain[0.0 1.0]/Extend[true true]/Function 334 0 R/ShadingType 2>>\rendobj\r334 0 obj\r<</Bounds[0.25]/Domain[0.0 1.0]/Encode[0.0 1.0 0.0 1.0]/FunctionType 3/Functions[335 0 R 336 0 R]>>\rendobj\r335 0 obj\r<</C0[0.0]/C1[0.0]/Domain[0.0 1.0]/FunctionType 2/N 1.0>>\rendobj\r336 0 obj\r<</C0[0.0]/C1[1.0]/Domain[0.0 1.0]/FunctionType 2/N 2.40942>>\rendobj\r310 0 obj\r<</AIS false/BM/Normal/CA 1.0/OP false/OPM 1/SA true/SMask/None/Type/ExtGState/ca 1.0/op false>>\rendobj\r313 0 obj\r<</AntiAlias false/ColorSpace 309 0 R/Coords[0.0 0.0 1.0 0.0]/Domain[0.0 1.0]/Extend[true true]/Function 337 0 R/ShadingType 2>>\rendobj\r314 0 obj\r<</AntiAlias false/ColorSpace 309 0 R/Coords[0.0 0.0 1.0 0.0]/Domain[0.0 1.0]/Extend[true true]/Function 338 0 R/ShadingType 2>>\rendobj\r315 0 obj\r<</AntiAlias false/ColorSpace 309 0 R/Coords[0.0 0.0 1.0 0.0]/Domain[0.0 1.0]/Extend[true true]/Function 339 0 R/ShadingType 2>>\rendobj\r316 0 obj\r<</AntiAlias false/ColorSpace 309 0 R/Coords[0.0 0.0 1.0 0.0]/Domain[0.0 1.0]/Extend[true true]/Function 340 0 R/ShadingType 2>>\rendobj\r317 0 obj\r<</AntiAlias false/ColorSpace 309 0 R/Coords[0.0 0.0 1.0 0.0]/Domain[0.0 1.0]/Extend[true true]/Function 341 0 R/ShadingType 2>>\rendobj\r341 0 obj\r<</Bounds[]/Domain[0.0 1.0]/Encode[0.0 1.0]/FunctionType 3/Functions[342 0 R]>>\rendobj\r342 0 obj\r<</C0[0.901961 0.376471 0.0]/C1[1.0 0.894118 0.0]/Domain[0.0 1.0]/FunctionType 2/N 1.0>>\rendobj\r340 0 obj\r<</Bounds[]/Domain[0.0 1.0]/Encode[0.0 1.0]/FunctionType 3/Functions[343 0 R]>>\rendobj\r343 0 obj\r<</C0[0.34902 0.145098 0.0]/C1[0.501961 0.231373 0.0]/Domain[0.0 1.0]/FunctionType 2/N 1.0>>\rendobj\r339 0 obj\r<</Bounds[]/Domain[0.0 1.0]/Encode[0.0 1.0]/FunctionType 3/Functions[344 0 R]>>\rendobj\r344 0 obj\r<</C0[0.996078 0.913725 0.756863]/C1[0.996078 0.913725 0.756863]/Domain[0.0 1.0]/FunctionType 2/N 1.35692>>\rendobj\r338 0 obj\r<</Bounds[]/Domain[0.0 1.0]/Encode[0.0 1.0]/FunctionType 3/Functions[345 0 R]>>\rendobj\r345 0 obj\r<</C0[0.980392 0.678431 0.411765]/C1[0.996078 0.913725 0.756863]/Domain[0.0 1.0]/FunctionType 2/N 1.0>>\rendobj\r337 0 obj\r<</Bounds[]/Domain[0.0 1.0]/Encode[0.0 1.0]/FunctionType 3/Functions[346 0 R]>>\rendobj\r346 0 obj\r<</C0[0.878431 0.560784 0.282353]/C1[0.996078 0.913725 0.756863]/Domain[0.0 1.0]/FunctionType 2/N 1.0>>\rendobj\r304 0 obj\r<</Intent 347 0 R/Name(Layer 1)/Type/OCG/Usage 348 0 R>>\rendobj\r347 0 obj\r[/View/Design]\rendobj\r348 0 obj\r<</CreatorInfo<</Creator(Adobe Illustrator 16.0)/Subtype/Artwork>>>>\rendobj\r311 0 obj\r<</AIS false/BM/Normal/CA 0.5/OP false/OPM 1/SA true/SMask/None/Type/ExtGState/ca 0.5/op false>>\rendobj\r312 0 obj\r<</AIS false/BM/Normal/CA 1.0/OP false/OPM 1/SA true/SMask 349 0 R/Type/ExtGState/ca 1.0/op false>>\rendobj\r349 0 obj\r<</G 350 0 R/S/Luminosity/Type/Mask>>\rendobj\r350 0 obj\r<</BBox[-32768.0 32767.0 32767.0 -32768.0]/Group 351 0 R/Length 104/Matrix[1.0 0.0 0.0 1.0 0.0 0.0]/Resources<</ExtGState<</GS0 310 0 R>>/Shading<</Sh0 352 0 R>>>>/Subtype/Form>>stream\r
+q
+0 g
+/GS0 gs
+-0.0000141 -322.9438477 -322.9438477 0.0000141 255.9995117 417.4716797 cm
+BX /Sh0 sh EX Q
+\rendstream\rendobj\r351 0 obj\r<</CS/DeviceGray/I false/K false/S/Transparency/Type/Group>>\rendobj\r352 0 obj\r<</AntiAlias false/ColorSpace/DeviceGray/Coords[0.0 0.0 1.0 0.0]/Domain[0.0 1.0]/Extend[true true]/Function 353 0 R/ShadingType 2>>\rendobj\r353 0 obj\r<</Bounds[]/Domain[0.0 1.0]/Encode[0.0 1.0]/FunctionType 3/Functions[354 0 R]>>\rendobj\r354 0 obj\r<</C0[0.0]/C1[0.4]/Domain[0.0 1.0]/FunctionType 2/N 1.35692>>\rendobj\r308 0 obj\r<</LastModified(D:20121126232019Z)/Private 355 0 R>>\rendobj\r355 0 obj\r<</AIMetaData 356 0 R/AIPrivateData1 357 0 R/AIPrivateData2 358 0 R/AIPrivateData3 359 0 R/AIPrivateData4 360 0 R/AIPrivateData5 361 0 R/AIPrivateData6 362 0 R/AIPrivateData7 363 0 R/AIPrivateData8 364 0 R/ContainerVersion 11/CreatorVersion 16/NumBlock 8/RoundtripStreamType 1/RoundtripVersion 16>>\rendobj\r356 0 obj\r<</Length 960>>stream\r
+%!PS-Adobe-3.0 \r%%Creator: Adobe Illustrator(R) 16.0\r%%AI8_CreatorVersion: 16.0.0\r%%For: (Steven Tubbrit) ()\r%%Title: (Number_Blocks_01.ai)\r%%CreationDate: 26/11/2012 23:20\r%%Canvassize: 16383\r%%BoundingBox: 0 -512 5120 4288\r%%HiResBoundingBox: 0 -512 5120 4288\r%%DocumentProcessColors: Cyan Magenta Yellow Black\r%AI5_FileFormat 12.0\r%AI12_BuildNumber: 682\r%AI3_ColorUsage: Color\r%AI7_ImageSettings: 0\r%%RGBProcessColor: 0 0 0 ([Registration])\r%AI3_Cropmarks: 0 -512 512 0\r%AI3_TemplateBox: 256.5 -256.5 256.5 -256.5\r%AI3_TileBox: -50 -652 562 140\r%AI3_DocumentPreview: None\r%AI5_ArtSize: 14400 14400\r%AI5_RulerUnits: 6\r%AI9_ColorModel: 1\r%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0\r%AI5_TargetResolution: 800\r%AI5_NumLayers: 1\r%AI9_OpenToView: -3027.9819 4509.6846 0.1667 1639 914 18 0 0 6 133 0 1 0 1 1 0 1 1 0 1\r%AI5_OpenViewLayers: 7\r%%PageOrigin:-50 -652\r%AI7_GridSettings: 32 8 32 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9\r%AI9_Flatten: 1\r%AI12_CMSettings: 00.MS\r%%EndComments\r\rendstream\rendobj\r357 0 obj\r<</Length 24096>>stream\r
+%%BoundingBox: 0 -512 5120 4288\r%%HiResBoundingBox: 0 -512 5120 4288\r%AI7_Thumbnail: 128 120 8\r%%BeginData: 23962 Hex Bytes\r%0000330000660000990000CC0033000033330033660033990033CC0033FF\r%0066000066330066660066990066CC0066FF009900009933009966009999\r%0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66\r%00FF9900FFCC3300003300333300663300993300CC3300FF333300333333\r%3333663333993333CC3333FF3366003366333366663366993366CC3366FF\r%3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99\r%33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033\r%6600666600996600CC6600FF6633006633336633666633996633CC6633FF\r%6666006666336666666666996666CC6666FF669900669933669966669999\r%6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33\r%66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF\r%9933009933339933669933999933CC9933FF996600996633996666996699\r%9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33\r%99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF\r%CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399\r%CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933\r%CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF\r%CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC\r%FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699\r%FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33\r%FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100\r%000011111111220000002200000022222222440000004400000044444444\r%550000005500000055555555770000007700000077777777880000008800\r%000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB\r%DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF\r%00FF0000FFFFFF0000FF00FFFFFF00FFFFFF\r%524C45FD05FFC3B693B693B694B6949493B693B693B69BFD6FFFA24C704C\r%704C704C704C704C704C704CA1FD6FFF840E0E300D300E300E300E300D30\r%0E0E5AFD6FFFA72D58335833582D582D58575833582D83FD6FFFA7818181\r%568181817B81818156817B8182FD6FFFC99E9F9F9F9E9F9F9F74C19F9F9E\r%9F9EA6FD6FFFCAC8A0C89FC8A0C2A0C2A0C8A0C8A0C2C9FD6FFFCFA1A1A0\r%A1A0A1A0C9A0C9A1A1A0A1A0C9FFFFCAFFFFFFCAFFFFFFCAFD64FFB6BCB6\r%BD94BDBDBC94BDB6BDBDBD94BDBCBCB6BD94BDBDBDB6BD94BDBDBD94C3FD\r%5FFFA18D698D8D698DB1698D8D6969B669698D8D448D8D698D8D448D8D69\r%44B669698DFD5FFFCA698D8D9344938D69699469698D93699469698D9369\r%938D69699469698D936894FD5FFFA95A537E5A53538453535A5A53855353\r%5A5A537E5A535384535A5A53538553537EFD5FFFAF143636370D3737300D\r%3D303037360D370E2F36370D37372F0E3D0D3037360D37FD5FFF8408070E\r%0707070EFD05070E07070807010E0707070E02070707020E07070DFD60FF\r%59597D835983835959835959837D58A77D597D835983835959835959837D\r%58A8FD5FFFA7AB81AB818181AB5681878156AB8157818156AB817B81AB56\r%81878156AB817B81FD5FFFCF5C5756812C5D5D5756812C575D572C815651\r%56815681565756812C575D572C81FD5FFFA8A67BA6818181A67B8282817B\r%A67B8182A67BA67B8181A67BA682817BA6818182FD5FFFCFC7C8C8CD9FC8\r%CD9F9FCD9FA6CDC89FCDC79FC8CD9FC8C89F9FCD9F9FC8C89FCDFD5FFFC9\r%C174C19E7498C77498C09874C77474C09E4AC1C0989EC74A98C0746EC774\r%749FFD60FFC1C1C2C89FC8C2C1C1C9C1C2C2C8C1C8C1C2C2C8C1C8C2C1C1\r%C9C1C2C2C8C1C9FD60FFCAA0CFCAA0A7FFA0A7CFCAA1FFA1A1CACAA0CFCA\r%A0A7FFA0C9CAA7A0FFA1A1CAFD60FFC9A0C9C975C9C9A07CCF7576C9A075\r%CFA075A7CF75C9C97576CF7575C9A075C9FD5FFFA8C9A0C2A0A0A0C999C2\r%C2C2A0C9A0A0A0C3A0C2A0C2C2C9A0C2C2A099C9A0A0A0FFCAFFCAFFCAFF\r%CAFFCAFFFFFFCAFFCAFFFFFFCAFFCAFFFFFFCAFFCAFFCBFD40FFBDBDBCBD\r%B6BDBDBDB6BDBDBDBCBDB6BDBCBDBDC3B6BDBCBDB6C3BDBDBCBDB6FD05BD\r%BCBDBDBDB6FD07BDBCBDBDC3B6BDBDBDB6C3BDBDBCBDBCBDCAFD3FFFB694\r%B669B694B6B694699494B68DB6696F93B68DB6949493B68DB6949469B694\r%B694B6699494B6B694699494B68DB6696F94B68DB6939493B68DB6949469\r%B694CAFD3FFF94B68D698DB68DB68D9344B68DB68D9445948DB69494446F\r%94B68D9445938DB694B6456F8DB68DB68D9445B68DB68D6945938DB69469\r%69698DB68D94696969B6CAFD3EFFA8948D8D44FD058D6969FD048D696969\r%8D698D4445448D8D8D696944698D948D454469FD048D4569FD048D446969\r%8D698D6969448D8D8D448D69698DCAFD3FFF938D8D6F6993699469456994\r%8D8D8D6F45698D938D8D696F8D938D93696969948D93696F699369948D69\r%8D948D8D696F45698D938D69446F8D938D934569698DCAFD3FFF94688D68\r%8D6893688D68696893698D688D688D698D688D688D698D688D688D699468\r%8D688D6893688D688D6893698D6869688D698D6869688D698D688D688D68\r%CAFD3FFF7E7753775377847E537D77777E845377537777A95377777753A9\r%7D77537D537E7E7777775377847E537D77777E845377537777A953777777\r%53A97D77537D537EFD3FFFAF613D6136613D3D3D613661613D3761363736\r%6136613D61376136613D3736613D3D3D6136613D3D3D6136373D3D366136\r%373D61366137373D6136613D61366137AFFD3FFF36373607303D3637302F\r%07373637363006363737363D072F3637363606303637363707290E613637\r%3030063736373629063037373630072F36373736072F3037A9FD3FFF360E\r%36070E0E360E360D070E300E360E070D360E36070607360E360E0706300E\r%360E06060D0E360E36070D0E300E36060607360E36070701300E36070E0D\r%070EA9FD3FFF300E0E2907300D300D0606300E300D2F06070E300E070607\r%0E300D30070607300E30060706300D300E070D300E30070706070E300E2F\r%06070E300E2F06070730A8FD3EFFA830FD080701FD050701FD0407080707\r%070EFD040706FD050701FD0B0706FD04070E0707070EFD0407060707A9FD\r%3FFF7E2F29302F2F7E5A2F302F2F595A07302F2F2F842F2F292F297EFD04\r%2F075A7E2F29302F2F7E5A292F292F595A07302F2F2F84FD042F297EFD04\r%2F075AFD40FFCEACACA6ADACACA6ADA6ACA6ACACAC82ADA6ACACADA6ACA6\r%ADACACA6ADA6ACACADACACA6ADACACACADA6ACA6ACACACA6ADACACACADAC\r%ACACADACACA6ADACACACFD40FF81AC815781AC87AC815757AC81ACAB812C\r%81ABAB87AC8181ABACABAC568181AC81AC815781AC87AC815756AC81AC87\r%575082ABAB8781568187AC87AC565781ACAEFD3FFF8180812CFD0581562C\r%5D815C87562C56878181562C2C878187562C50818181802C2CFD05815657\r%818180812C2C568781812C57268181875657565781AEFD3FFF8181815756\r%FD04815756815D81817B2C57818181572C51FD04815651578181812C512C\r%FD04815757815D8157512C57FD04812C2D5D81815756575681A8FD3FFF81\r%56812C57565D56572657565756812C2C5681565D56572C81568156502C5D\r%565756572656565D56572C815657565D2C2C2C8156812C5050815681562C\r%2C8156AEFD3FFF8256565D56575781565756575781568156575682565756\r%815682575D565756817B57565756575781565756575781565D5657568256\r%5756815682575D56575657AEFD3FFFCEA5A6A5A6A5CEFD04A681CEA6A6A5\r%CDA5A6A7A6A5A6A5A6A7A7A5ACA6A6A6CEA5A6A5A6A5CEFD04A6A5CEA6A6\r%A5ACA5A6A7A6A5A6A5A6A7A781ACA6A6A6FD40FFC8CDC8C8C8CDC7CDC8A0\r%9FCEC7CDC8C89FC8FD04CDC8C8CDCDC8CD9FA0C8CDC8CDC8C8C8CDC7CDC8\r%A09FCEC7CDC8C89FCDC8CDCDC89FC8CDCDC8CE9FC8C8CDCFFD3EFFCFC8C7\r%C74AFD04C7C1746E9FC7C7C7744A9FC7C1C7C77474CCC7C79F6E74FD04C7\r%744A9FFD04C7746E9FC7C7C74A6E98C7C7C774744AC7C7C79E75749FC7CF\r%FD3FFFC1C7C7999EC7C1C7C79F74C7C1C7C7C16E9FC7C7C7754A75C1C7C7\r%C774759FC7C1C74A7574C7C1C7C79F74C7C1C7C1754A9FC7C7C79F744AC1\r%C7C7759EC174C7CAFD3FFFC1C0C76E9FC0C1C09F2075C0C19EC16E6E74C7\r%C0C174754AC19EC19E744A9FC1C19E744A74C0C1C0C14AC1C0C1C09F4A74\r%6EC7C0C1746E4AC19EC7986E4A9FC0CAFD3FFFC1C1C0C1C0C1C1C1989F98\r%C1C0C1C0C198C1C0C1C0C1C0C1C0C1C1C198C1C0C1C1C1C09998C1C1C1C0\r%C1C0C1BAC1C0C198C1C0C1C0C198C1C0C1C1C198C1C0C1CAFD3FFFCA9FC8\r%C2C2A0CAC2C2C2C8C2C9A1C2C2C8C2C9C9C2A0C8C2C2A7C9C2C8C2C8C2C9\r%9FC8C2C2A0CAC2C2C2C8C2C9A1C2C2C8C2C9C9C2C2C8C2C2A7C9C2C8C2C2\r%C2FD40FFCFFFCACFCFFFCFFFCFCFCAFFCFFFCFCFA7CFCFFFCFFFCFFFCFFF\r%CFFFCACACAFFCFFFCFCFCFFFCFFFCACFCAFFCFFFCFFFCAFFCFFFCFFFA8FF\r%CFFFCFFFCACFCFFD40FFCACFCAC94AC9CACAC9A76E75A7CFC9CA756EA0CF\r%A7CFCA7C75CFC9CFA17575C9C9CFC9A06FA1CACAC9A77575A7CFC9CA6F75\r%A0CFA7CF767575CFC9CFA17575C9C9FD40FFC9CAC9A0A0CFC9CFC9C94AFD\r%05C94AC9C9CAC9A04AA0C9CAC9C975A0C9CFC9C94A76A0CFC9CFCAA775CF\r%C9CAC9754AA0C9CFC9A07575C9CFC9A0A0A175CFCFFD3FFFC9C9C975A0FD\r%04C94AA0FD04C9757575C9A0C96F4B4AC9C9C9A0A04AA0C9C9A04B4B75C9\r%C9C3C94BA0C9C9C9A04A7575C9A0C9A0754AC9C9C9757675A0C9FD40FFC9\r%C9C9A0A0C9C2C9A07575C9C2C9C97675C9C9C9C8C9A0A0C8C9C9C975A0C9\r%C9C2C9A075A0C9C2C9A0A0C9C9C2C9C89A75C2C9C9C8A075A0C9C9C8C975\r%A0C8C9CAFD3EFFCAC999C2C2C29FC9A0C8C2C9A0C2A0C2C2C2A0C2A0C2A0\r%C9C2C2A0C3A0C2C2C2A0C39FC9C2C999C9A0C2A0C2A0C2A0C2C2C9A0C2A0\r%C2A0C2C2C2A0C2A0C9C2C2A0CACAFFCAFFCAFFCAFFFFFFCAFFCAFFCAFFCA\r%FFCAFD05FFCAFFCAFFCAFFCAFFCAFFFFFFCAFFCAFFCAFFCAFFCAFD05FFCA\r%FFCAFFCAFFCAFFCBFFCBB6BDB6BDB6BDB6BDB6BCB6FFC4BCB6BDB6BDB6BD\r%B6BDB6C3FFC4B6BDB6BCB6BDB6BDB6BCC3FFBDBDB6BDB6BDB6BCB6BDB6CA\r%CABDB6BDB6BDB6BDB6BDB6BDCACBB6BDB6BDB6BDB6BDB6BDBCFFC4BDB6BD\r%B6BDB6BDB6BDB6C3FFC4B6BDB6BDB6BDB6BDB6BDC3FFBDBDB6BDB6BDB6BD\r%B6BDB6CACABDB6BDB6BDB6BDB6BDB6BDCA94BDB6BD94BDBCBD94BDBCB694\r%B6B6BD94BDBCBDB6BDB6BD94BDB6BD94BDBDBDB6BDBCBD94BDB6B694BDBC\r%BD94BDBCBD94BDB6BC94BDB6BDB6BDBDBD94BDB6B694BDBCBD94BDBCBD94\r%BDBCB694B6B6BD94BDBCBDB6BDB6BD94BCB6BD94BDB6BDB6BDB6BD94B6B6\r%B694BDB6BDB6BDB6BD94BDB6B694BDB6BDB6BDBCBD94BDFD04B6BDB6B694\r%B694BD94BDB6B694BDB6BDB6B694B6B6BDB6B68DBDB6B694B6949494BCB6\r%BD94B6B6BC94BDB6BD94FD06B6BD94BDB6FD0494BC94BDB1B6B6BDB6BD94\r%9494B6B6BDB6B694BDB6B6FD0594BDB6B68DBDB6B6B6BD949494BDB6BD94\r%B6B6BC94BD949494BDFD05B6BD94BDB6B693B6B6BD94BDB68DB68DB69469\r%446994B68DB68DB68DB69469446944948DB6948D8DB694944469444569B6\r%94B68DB694B68DB68D6969B694B68DB694B694934469446994B693B68DB6\r%8DB68D45444569B68DB68DB68DB68D69446944698DB6948D8DB694944469\r%44698DB694B68DB694B66969444569B694B68DB694B68D944445446F94B6\r%93B6B694B694B68D6F69B68DB694B68DB694944594946969B694B68DB694\r%B68DB6936969B694B68DB694B68DB6946F446F94B693B694B68DB6696F8D\r%B694B68DB68DB694B6946969B68D948DB694B68DB694B68DB68D6969B694\r%B68DB694B6696F94B64493B6B68DB694B68D6F69B68D698DB693B694B694\r%B6456F8D94449494B68D8D948DB68DB669698D948DB68D938DB68D938DB6\r%45698DB68D8D8DB68D948D69448D8D948D938DB68D948D69446944B68D94\r%8D948D948D69446945948D948D948D948D93446944698D948DB68D938DB6\r%8D948D6944948DB68D8D8DB68D8D4493694569B68D938DB68D9344698D93\r%44698D948D948DB669458DB68D6969948D94948D948DB68D6945B68D948D\r%948D948D948DB669458DB68D948D948D948D94456945938DB68D938DB68D\r%69449469698DB68D948DB68DB6FD046944948D948D948DB6694545694469\r%8D948D948D948D948D9344938D948D948D948DB68D45444545938DB68D93\r%8DB68D69446F454569B68D948DB68D6944B68DB645698D948D698D8D8D69\r%8D4445FD048D69FD058D4445698D8D8D698D8D8D698D8D8D6945448D698D\r%698D8D8D2045444520698D8D699369FD048DB06945698D8D8D698D8D6920\r%8D8D8D208D8D8D698D8D8D698D4445FD048D69FD048D69448D8D45448D69\r%8D698D698D8D69446920698D8D6993698D6945698D8D45448D8D8D948D93\r%8D948D6944948D938D948D938D944545699369938D9469938D9469456993\r%44698D948D938D948D69696F454569948D9369948D93446F696944948D93\r%69938D93694B6993454B8D938D948D938D94694569948D938D9469938D94\r%4545699344698D948D938D948D696993454569948D9369948D93446F8D69\r%20938D9369698D698D698D4569698D698D698D698D6945204520698D8D69\r%8D698D698D44452069698D698D698D69FD048D69448D698D698D698D6969\r%20452069698D6969698D698D68452045698D698D698D698D6969448D698D\r%698D698D698D698D44452045698D698D698D698D69452045698D698D698D\r%698D8D6920452069698D698D696993698D69938D8D699369936993698D69\r%93698D6993698D6993698D6993698D6993698D6969698D6993698D699369\r%8D698D698D69938D8D69938D8D699369696993698D6993698D6993699369\r%93698D6993698D6993698D6993698D6993698D6993698D6969698D699369\r%8D6993698D698D698D69938D8D69938D8D6993696F69688D6869688D6869\r%6869706F688D6869688D6869688D689A69696869688D6869688D68697069\r%6869688D6869688D6869699A6869688D6869688D686968946F69688D6869\r%688D68696869706F688D6869688D6869688D689A69696869688D6869688D\r%686970696869688D6869688D6869699A6869688D6869688D68696894FF70\r%706F706F706F706F7076FFA8706F706F706F706F706FA1FFCA70706F706F\r%706F706F70A1FFA17069706F706F706F7070FFFF9B45706F706F706F7045\r%77FFFF70706F706F706F706F7076FFA8706F706F706F706F706FA1FFCA70\r%706F706F706F706F70A1FFA17069706F706F706F7070FFFF9B45706F706F\r%706F704577CA85615A615B615A615B613661A98537615B615A615B615A61\r%61AF61615B615A615B615A613761A9615B615A615B615A615B6185AF3D61\r%5A615B615A615B6137AF85615A615B615A615B613661A98537615B615A61\r%5B615A6161AF61615B615A615B615A613761A9615B615A615B615A615B61\r%85AF3D615A615B615A615B6137AFFD0B615B6137FD066185FD046137FD04\r%6185618B6161618537373785FD076185616136FD04618B6185FD046136FD\r%0461856185618561615B61376161856185618BFD046137FD06618B616161\r%85373737856161618B61616185616136FD046185FD066136146136373637\r%2F363661365B14373637365B2F2F3061365B3637365B36370D2F0D30365B\r%365B0E37366136373636306136613637366136360D300D30366136370E61\r%365B36360D303661365B1437365B36300D300D36365B3637365B3661302F\r%07363637365B0E373661363607303661366136373661365B2F302F373661\r%3637373637366107060761363736373637363707070607303D3661143736\r%6136290707013036613637366136373737012F36613637366136610DFD04\r%076136373637363736300107012F373736373637363706070606073D3661\r%14373661300706290636366136373661373001290629366136373661363D\r%FD05075B3637360E3730360E3606070E3730360E3636360E070E37060736\r%360E360E360E373636012F36360E370E360E373636010607360E370E360E\r%37360706360E370E3736360E373636012F30300E3730360E3636360E3736\r%30013036360E360E36142F0137140607370E370E360E3601071436012F14\r%370E360E370D0107370D0107373636360E370E360E2F06360E370E360E37\r%0E360E370E07063730360E360E360E3606060D370E360E360E360E370607\r%062930360E3630360E37070601290D370E370E360E370D06060706300E37\r%0E360E370E360E3706070E370E360E360E370D06072F013036360E360E36\r%0E0607370D0607370E3630360E2F01360E3706070E370E0D0E0D300E3006\r%070E0E0D300D300D300E300D06010E0E300E0E0D300E0E0E07010107300E\r%0E07300E0E06060D0701300E0E0D30FD040E060D01060D0E0D0E0D0E0E0D\r%00060707010E0E300D300D300E30070107300D300E0E0D300E0D00060101\r%07300E0E07300E0E0706010600070E0E0D300E3006060E0E0E07060E0D30\r%300E300E300E2906300E300E300D300E300D2906300E300E300D300E300D\r%300E3601290E300E300E300D060106010607300E300E300E300E360E3001\r%300E300E300E3607060D370D0607360E300D300E300E2906300E300E300D\r%300E3006290E3606290E300E300E300E360D30070607300E300E300E3001\r%300E3001290E300E070E070E070E01060D0E070E0D0E070E07060007070D\r%070E070D070E0D0700070601060E070E070E070E070D0706000E0D0E0730\r%070E0706010701060D0E070E070E070E01060706010E070E0D0E070E0D07\r%000D0D0E070E070D070E0D0700070701060E070E070E070E06060706000E\r%070E0730070E070600070106070E070E30070E07300D0D0630070E073007\r%0E07300606010607300730070E07300D070106070E0730070D0730070E07\r%300707073007300730070E070701060730070E0730070E0730060601300D\r%0E0730070E073007070730070E0730070E07300D07000606300730070D07\r%300D0D0106060E073007300730070E070700060730070E07070D0707070D\r%070D070DFD07070E070D070EFD07070D070D070EFD07070D0707070E0707\r%070D0707070D070D070E070D070D0707060D0707070E070D070DFD07070E\r%0707070DFD07070D070D070EFD07070D070D070E0707070D0707070D0707\r%070D070D070D07075A07080708070807080708077E2F0707080708070807\r%0807077E3007080708070807080708297E0708070807080708070807545A\r%0707080708070807080707535A07080708070807080708077E2F07070807\r%080708070807077E3007080708070807080708297E070807080708070807\r%0807545A07070807080708070807072FCB592E342E582E342E582E7DFFFF\r%2E2E2E582E342E582E2E7DFFA8582E582E342E582E2E2EA8FF842D582E34\r%2E582E342D58A8FF59342E342E582E342E3458FFFF592E342E582E342E58\r%2E7DFFFF2E2E2E582E342E582E2E7DFFA8582E582E342E582E2E2EA8FF84\r%2D582E342E582E342D58A8FF59342E342E582E342E3458FFCEACCEACCEAC\r%CEACCEACCEACCFACCDACCEACCEACCEACCEACACAECEACCEACCEACCEACCEAC\r%CDACCFACCDACCEACCEACCEACCEACCEADACACCEACCEACCEACCEACCDADCEAC\r%CEACCEACCEACCEACCEACCFACCDACCEACCEACCEACCEACACAECEACCEACCEAC\r%CEACCEACCDACCFACCDACCEACCEACCEACCEACCEADACACCEACCEACCEACCEAC\r%CDAD81AC82FD07AC82AC81AC82FD07AC82AC828781FD07ACA6ACACAC81AC\r%ACAC82FD07AC81ACA6AC82ACACAC82ACACAC82AB81AC82ACACAC82ACACAC\r%82AC81AC82FD07AC82AC828781FD07AC82ACACAC81ACACAC82FD07AC81AC\r%A6AC82FD07AC82ABAC87ACACAC817B81AC87ACACAC81ACACAC817B578187\r%ACACAC81ACACAC815750575082ACAC87ABABAC87ACACAC5782ACAC87AC87\r%AC87AC81572C5757AC87AC81AB87ACACAC5757578287ACACAC81ACACACFD\r%04577BACACAC81ACACAC8782515781ACACAC87ABABAC87AC575757ACACAC\r%87AC87AC87AC87812C5781AC87AC87818781AB81570457818781AB818781\r%AB812C2C57265781AB818181AB81812C572C2656AC818781AB818781AC57\r%262CAC818781878187815726572C5781878187818781AC50FD042C8781AB\r%818781AC81572C57045781AB818181AB818126572C2C56AC818781AB81AB\r%2C2C502C2C81818781878187815726572C2D81AB818787818781AB81572C\r%AB8187818781878181568187572C8781AB818781AB81AB572D57AB81AB81\r%8181AB81AB812D265781AB818781AB81AB2C57818781AB8187818781AB81\r%2D5781818781878187818781AB81AB572D81AB81AB818781AB562D81AB2C\r%5781AB818181AB812C56AC812C56AB818781AB8181268187812657878781\r%5C8181815C872C2C808181815D8181815C818181045781815C8181815C81\r%5C2C045781815C815C815C815C2C2C572C815C815D815C818156042C2657\r%8081818156818157042C262C568181815D8181815C81812C2C8781815C81\r%81818081262C262C56815C815C818081262C5657045680815D815C872C2C\r%8081812C2CFD0981572C87FD0A812651FD04815DFD058156572657FD0781\r%5126812C51FD08815D815D57268181815D818187562D2C812C2DFD098157\r%26FD05815D818187562D2C572657FD0881262D2C2C5087FD058157268181\r%812C5781815D5681568156812C2C56815681578156815C5D262C5C815681\r%56815681565D56815C2C2C81568156815681262C262C26565C8156815681\r%5C57568756265681565D56815C570481815704575C81578156815681262C\r%5C81568156815681562C2C8180512C81568156815681565D565704575C81\r%568156815626568156262C815C8181568157815C512C815681578156815D\r%5704262C51508157815681578150262C2C0457818156815781568157812C\r%2D5D8156815781568126262C2D2C815681578156815D2D2657262D568157\r%81568157815626578156815781568157812C262C5104578181568157815C\r%57265126515D815681578156812C262C2D26815681575657565D565D5657\r%5657565D56575681562C2C502656565D56575681565D2C2C2657565D5657\r%565D5657568156572C8156575657565756572C2C2C5D5657565756575681\r%562C2650565D565D5657565D56572C815657568156575681565D2C2C2656\r%56815657565D565D56502650568156575657565756812C2C2C5756575657\r%575681578156815781568156575681578156815781568157575681578156\r%815781568157815657568156815781568157815681575D56815781568157\r%815681565756815781568157815681565756815781568157815681575756\r%81578156815781568157815657568156815781568157815681575D568157\r%815681578156815682572C5732562C5732562C57A7822C5732562C573256\r%2C5757A8575732562C5732562C57327CA75732562C5732562C5732567CA8\r%32562C5732562C5732562CA783572C5732562C5732562C57A7822C573256\r%2C5732562C5757A8575732562C5732562C57327CA75732562C5732562C57\r%32567CA832562C5732562C5732562C83FFA6817BA57BA57BA57BA5A6FFCF\r%A67BA57BA57BA57BA57BCEFFCF7BA57BA57BA57BA57BA5CFFFA7A57BA57B\r%A57BA57BA5A5FFFFCE7BA57BA57BA57BA57BA6FFFFA6817BA57BA57BA57B\r%A5A6FFCFA67BA57BA57BA57BA57BCEFFCF7BA57BA57BA57BA57BA5CFFFA7\r%A57BA57BA57BA57BA5A5FFFFCE7BA57BA57BA57BA57BA6FFC8CDC8CEC8CE\r%CDCEC8CEC8CDA6CDC8CEC8CECDCEC8CEC8CDC7CEC8CDC8CECDCEC8CECDCE\r%C8CDC9CDC8CEC8CEC8CECDCDC8CDC8CEC7CEC8CEC8CECDCEC8CEC8CEC8CD\r%C8CEC8CECDCEC8CEC8CDA6CDC8CEC8CECDCEC8CEC8CDC7CEC8CDC8CEC8CE\r%C8CEC8CEC8CDC9CDC8CEC8CEC8CEC8CEC8CDC8CEC7CEC8CDC8CECDCEC8CE\r%C8FD04CDC8CDCDCDC8CDC8CDC8CDC7CDC8CDCDCDC8CDCDCDC8CDC7CDC8CD\r%CDCDC8CDC8CDC8CDC8CCC8CDC8CDC8CDCDCDC8CDC8CDC7CDC8CDC8CDC8CD\r%C8CDC8CDC7CDCDCDC8CDCDCDC8CDC8CDC8CDC7CDC8CDC8CDC8CDCDCDC8CD\r%C7CDC8CDCDCDC8CDCDCDC8CDC8CCC8CDC8CDC8CDC8CDC8CDC8CDC7CDC8CD\r%C8CDC8CDCDCDC8CDC7C7CDC7C8C79F6E9FC7CDC7C8C7C8C7C8C7C76E6E74\r%C8C7C8C7C7C7C8C7C74A6E4A759FCDC7C8C7C8C7CDC7C8C79F75CDC7CDC7\r%C7C7CDC79F4A754A75C7CDC7C7C7CDC7CDA5754A6E9FCDC7C8C7C8C7CD9F\r%6F4A6E4A9FC7C8C7C7C7C8C7CD756E4A9FC7C8C7C8C7C8C7CDA5754A6F9F\r%CDC7CDC7C7C7CDC7C76E6E4A9FC7CDFD04C7CDC7C7746E74C8C7CDC7C7C7\r%CDC7C74A75994A74CDC7C7C7C8C7C8C79F9F6F44FD08C7CDC79F4475C7C8\r%C7C8C7C7C7CD746E9F9F9FC7C7CDC7C7C7CDC7754A9F7499C7CDC7C7C7CD\r%C7C7749F754A74CDC7C7C7C8C7CD746E9F9F449FFD05C7C8C7754A9F746F\r%9FCDC7C8C7C7C7C86E6E9F754AC7C7CDC7C1C7C1C7C7C76E75C7C7C1C7C1\r%C7C1C79F9FC1CC6E6EC1C7C7C79FFD04C79F449FFD04C79EFD04C79F444A\r%4AC7C7C79FFD04C7754A9F9EC7C7C7C1C7C1C7C79F449F9EC1C7C7C1C7C1\r%C7C1FD04C79F44FD05C79FC7C7754AC7C74A74C7C7C79EC7C7C7209FC7C7\r%4499C7C79FC7C7C7744A9FCC9F4A74C7C1FD07C7996EFD05C7C1FD04C7CC\r%9F4A74C7C7C7C1FD05C74A4A74C7C7C7C1FD05C74A9F7475FD04C7C1C7C7\r%C7744A4A4B74C7C7C7C1C7C7C79F4A4A6F4A99FD04C7C1FD05C74A99FD04\r%C7C1C7C7C79F4B4A4A4AC7C7C7C1FD04C7754A9F744B74C7C7C7C1C7C79F\r%4AC7C7C76E75C7C7C1C1C7C0C7C1C76E75C1C7C0C7C1C1C0C7C1C7984A6E\r%C7C0C7C1C1C0C7C1C7C1C1744A74C7C1C79EC7C1C14A4A746E4A9FC1C79F\r%C7C1C7C0C79EC7744A9EC7C0C1C1C7C19F2099C19F209FC1C7C1C1C0C7C1\r%C7744A9FC7C0C7C1C1C0C7C1754A9F744A74C7C1C79EC7C1C79E75444A20\r%75C1C79FC7C1C7744AC1C7C16E4AC7C1C7C7C1C7C1C7C1754AC7C1C7C1C7\r%C1C7C1C7984A6EC7C1C7C1C7C1C7C1C79875C1C74A75C1C7C1C1C1C79F6F\r%4A6F4A4A74C7C1C1C1C7C1C774C1C79F20C1C1C7C1C1C1C79E4A9FC7984A\r%9FC7C1C7C1C7C1C7C14A74C7C1C7C1C7C1C7C1C74A75C7C74A6EC1C7C1C1\r%C1C7C1C19EC7984A98C7C1C1C1C7C19F209FC7C1209FC1C7C198C1C0C1C0\r%C74A4AC0C1C0C19EC1C0C17420204A2075C0C19EC1C0C1C09F204A204A98\r%C19EC198C19EC1C0C1C0744AC1C0C19EC1C0C1C04A204A206EC0C1C0C198\r%C1C0C14A4A4A444AC1C0C19EC1C0C1C09920C1C0C1C0C19EC1C0C1C09920\r%4A444A74C1C0C198C1C0C76E20204A4AC1C0C19EC1C0C1C074204A206E9E\r%C1C0FD08C19EC7FD08C17499747599C1C1C1BBFD05C174999FC7FD09C1C7\r%9FFD0AC19F749FC1C7C1C1BAFD04C1C7747574C7FD07C1C79F9FFD06C1BB\r%FD04C19F74999FC7FD08C1747598FD0AC19F7499C1C7C1C1C098C1C0C1BA\r%C1C0C1BAC1C0C199C1C0C1C0C1C1C1C0C1C0C1BAC1BAC1BAC1C0C1C0C1C0\r%C1BAC199C1C0C1C0C1BAC1C0C1BAC1BAC1BAC1C0C1C0C1C1C1BAC1C0C198\r%C1C0C1BAC1C1C1BAC1C0C199C1C0C1BAC1C0C1BAC1C0C1BAC1BAC1BAC1C0\r%C1C0C1C0C1BAC199C1C0C1C0C1C0C1C0C1BAC1BAC1BAC1C0C1C0C1C1C1BA\r%C1C0C1CABAC1BAC1BAC1BAC1BAC1BBCFC3C1BAC1BAC1BAC1BAC1BAC2CAC9\r%BAC1BAC1BAC1BAC1BAC1C2FFC1C1BAC1BAC1BAC1BAC1BAC9CAC1BAC1BAC1\r%BAC1BAC1BAC1C9CABAC1BAC1BAC1BAC1BAC1BBCFC3C1BAC1BAC1BAC1BAC1\r%BAC2CAC9BAC1BAC1BAC1BAC1BAC1C2FFC1C1BAC1BAC1BAC1BAC1BAC9CAC1\r%BAC1BAC1BAC1BAC1BAC1C9FFCAA1C9A7C9A1C9A7C9A1CFFFFFA7C9A7C9A1\r%C9A7C9A1C9CAFFA8C9A7C9A1C9A7C9A1C9A7FFFFCFA7C9A1C9A7C9A1C9A7\r%C9CFFFCAC9A1C9A7C9A1C9A7C9A7FFFFCAA1C9A7C9A1C9A7C9A1CFFFFFA7\r%C9A7C9A1C9A7C9A1C9CAFFA8C9A7C9A1C9A7C9A1C9A7FFFFCFA7C9A1C9A7\r%C9A1C9A7C9CFFFCAC9A1C9A7C9A1C9A7C9A7FFCFCFFFFFFFCFFFFFFFCFFF\r%CFCFCAFFFFFFCFFFFFFFCFFFFFFFCAFFCFFFCFFD07FFCFFFCFFFCFFFCFFF\r%CFFFCFFFCFFFCFFFCFFD07FFCFFFCFCFCFFFCFFFCFFFFFFFCFFFCFCFCAFF\r%FFFFCFFFFFFFCFFFFFFFCAFFCFFFCFFFFFFFCFFFFFFFCFFFCFFFCFFD05FF\r%CFFFCFFFCFFFCFFFCFFD05FFCFFFCFC9CFCACFCACFA7CFCACFCACFC9CFCA\r%CFCACFA7CACACFCACFCACACACFCACFA7CAA7C9CACFCACFA7CFCACFCACFCA\r%CFA7CFCACFC9CFCACFCACFA7C9A7CFCACFCACFC9CFCACFCFCFA7CACACFCA\r%CFC9CFCACFCACAA7CFCACFCACFCACACACFCACFCACAA7CFCACFCACFA7CFCA\r%CFCACFA7CACACFCACFC9CFCACFCACFCAC9A7CFCACFCACFCFCACFCACF766E\r%75CFCACFCACFCACFCACFA06E4A75A7CFCACFC9CFCACFA76F4A754AA1CFCF\r%CACACACFCACFCACF75A0CACFCACFC9CFCACFA06E4A6E75CFCACFC9CFCACF\r%CAC96E6E4AA0CFCFCACFCACFCAC94A6F4A6F75CFCACFC9CFCACFC9754A6E\r%75CFCACFCACACACFCFC94A6E4AA0CACFCACFC9CFCACFA1754A6EA0CFCACF\r%C9A7CFC9CAC9A04A75C9CFC9CAA7CAC9CAA14A75A14A75C9CAA7C9C9CAA7\r%CAA0A14A6EA1CAA7CAA7CAA7CAC9CF754A75CAC9CAC9C9A7CAC9754AC9A0\r%C9A7CAC9C9A7CFC9C94A75A1A075CFC9CAA7CAC9CAA7A7A0A044A0C9CAA7\r%C9C9CAC9A04AA7A04A75CFA7CAA7CAC9CA4A6EA0A044A1C9CAC9C9A7CFA7\r%4A4AC9754AA0CFC9C9CFC9CFC9CFCFA06FCFC9CFC9CFC9CFC9CFA1CFCF75\r%75CFC9CFC9CFC9CFC9CF756EA7CFC9CFC9C9C9CFC9CF766F6E75C9CFC9CA\r%C9CFC9CF757576A0C9CFC9CFC9CAC9CFA06E76A0A0CFC9CFC9CFC9CFC9CF\r%CACF756FC9CFC9CFC9CFC9CF7C6FA1C94AA0C9CFC9C9C9CFC94A76FFC94A\r%75CFC9CAC9CFCAA04AC9CFCF4AA0CACFC9A1FD04C9CA7575FD04C9A1FD04\r%C9CAC9A020A0FD09C96F4475A0C9C9C9A1C9C9CFA04AA0A04BFD08C9A04A\r%754475A7C9C9C9A0C9C9A0444A4A4A6FC9C9C9A1FD05C9A14A75CFFD08C9\r%4A4A444AA0C9C9C9A1C9C9C96F4A75754475FD05C9CF754AC9C9C9754AFD\r%09C9756FFD0AC9A044A0FD04C9A0FD06C9C34476FD06C9A04A4A754A4BA0\r%FD0BC94AA0FD05C9CFA04AA0CFA04AA0FD08C9A04AFD05C9A0C9C9C97575\r%A0C94A76FD08C97575754A75FD06C9A04AC9C9C94A75C9C9C9A0C9A0C9C2\r%C94B75C9C9A0C9A0C9A0C9C27520A0C9C9A0C9C2C9A0C9C9A04AC9A04A6F\r%C9C2C9A0C9C2C97575754A20A0C9C9A0C9C2C9A07575C9754AA0C9A0C9A0\r%C9C2A020A0C9A020A0C2C9A0C9A0C9C9A12076C9C9A0C9C2C9A0C9C96F4A\r%C9C94B4AC9C2C9A0C9C2C976A0A07620A0C9C9A0C9C2C9A04A75C9754AA0\r%C9A0C9C9C8FD04C9A075C9C8C9C9C9C2C9C9A0204B4A4A75C9C9C9A0C9C9\r%C9A04B4A4A4AC9C9C9C2FD06C9CE7575C9C9C8C9C2C9C8C9754A4A4A75C9\r%C8C9C2C9C8C9C9A0204B4AA0FD04C9C2C9C9C9754BC9C9C8C9C9C9A0C9C9\r%C9A04B4A4A4AA0C9C9C2FD04C9A0204A20A0C9C9C8C9C2C9C8C9A04A4A4A\r%75C9C8C9C2A0C9A0C9C2C9A0C9C2C9A0C9A0C8C2C9FD06A0C2C9C2C2A0C9\r%C2C9A0A0A0C9C2C9C2C9A0C9C2C9C2C9C2C9A0C9C2C9A0C9C2C9C2C9A0A0\r%A0C9C2C9C2C8A0C9A0C9C8A075A0C8C9A0C9A0C8C2C9C2C9A0C9C2C9A0C9\r%C2C2A0C9C2C9A0A075C9C2C9C2C9A0C9C2C9C2A075A0C2C9C2C9A0C9C2C9\r%C2C9A0A0A0C9C2C9C2C8C9C2C9C2C9C2C9C2C9C2C9C2C9C2C9C2C9C8C9C2\r%C9C8C9C2C8A1C8C2C9C2C9C2C9C8C9C2C9C2C9C2C9C2C9C2C9C8C9C2C9C2\r%C9A0C8C2C9C2C9C9C9C2C9C2C8A0C9C2C9C2C9C8C9C2C9C2C9C2C9C2C9C2\r%C9C8C9C2C9C2C9C2C8A1C8C2C9C2C9C8C9C8C9C2C9C2C9C2C9C2C9C2C9C8\r%C9C2C9C2C9A0C8C2C9C2C9C9C9C2C9C2C8A0A8C2A0C29FC2A0C29FC29FC2\r%A8CAA0C29FC2A0C29FC2A0C2A0FFA7C29FC2A0C29FC2A0C29FCAFFC99FC2\r%A0C29FC2A0C29FC2A7FFA0C2A0C29FC2A0C29FC2A0CFA8C2A0C29FC2A0C2\r%9FC29FC2A8CAA0C29FC2A0C29FC2A0C2A0FFA7C29FC2A0C29FC2A0C29FCA\r%FFC99FC2A0C29FC2A0C29FC2A7FFA0C2A0C29FC2A0C29FC2A0CF\r%%EndData\r\rendstream\rendobj\r358 0 obj\r<</Length 65536>>stream\r
+%AI12_CompressedDatax\9cì½ë\8e$Éu&ø\ 4ö\ e±?\ 4\90\ 3UÒÝ̯ÜÁ\0qÕp!^À¦$
+ Q¬.6kT]Õ¨®¦\86ûô{¾s33\ f\8fÌÈ\8cäª\9bÊ4dU¤\87»¹»]Îý|çïþ¯ß|ñjûÕÇ?¼}\95î\9aMø»¿Û\7fzûúóÇO?ßðÑÍ/Þ¿ÿþ»Ï\9fpè'¿ýé¦\1dî\1a:iû\8béK=ñ\9fß~úîÝÇ\ f?ç¯øË\13®þÉ\17\9fßþùí\87Íï¾ÿÃ\1f>½ûüÓÍO~J_ýîÝç÷oéË_}ÿÍ\1fÞ~úr÷þã\9b\7fÿî˦½{ýî§voêìðú3\9d\15\87\9fµíÏbÓÆML?\8fèzÿúÃ\9f_\7f÷Ý»ÿ÷-î\97¦DÇv\1f¿ÿðÕ»\ f_ï>þ\9f\9fo\9aÍ«\9eΧßfÓÅi¢ïÿç»ß¾ýî¡\93\ e\1fß|ÿÍÛ\ f\9f\7fóéã\9b·ß}·ÿøþã§ï~¾Ùÿåõ\87Í/_\7fMß¼ÞüëÛ÷ï?þÇf÷þõ\9b\7f\ f4\ 4ý\97§wïßÒÛ~óúó¦\8dx÷í/Úøåîûwï¿\927üùf\98"\ e§/¹Ë\7fú\8eú¢nñ\19\87Ç/\7fñ\r\1dùâíçÏôptC¼äoÿaW>\ 6\9e\17í'ÿöÛ·_¿ã¹ !ú_?Õn?}üö\9b×\9fþý»òµ6\8d|ù»·ß|û\9eÆ\92ß:öÃ]¿y%ÿ\95\7fè¹ô.|Þ«\9e:\1azêh\88\9b¶Ó®ò\0½ýó»·ÿñóͯ>~x+£°ýôù\v\99\91®k\1aùW¾ùí÷ïß~ú§\ fï>ÓÓ\r84Ë0üòãWoßÓù~ýéýk~{nmþWNøÝëO_¿ýL³øñý÷\9fyMv\a\1aæ\7f|ý\97·\98«Vnðëoß~øÝÇ\7fæg|\95\9a8ÞÍS;oº¾\99ï\86©\e6Í];\f#\96ϼ\99ÛnÓN|¿aÓ¦¤÷mË\7fåFè\16\9dÚÝF\9a¨ßÐÔýúÓ»¯ß}ø¹\r\9aLê?|z÷U\9eÓ\147\93üÃït7\15¿³ýÊÃÓ8|þüö\83¾\f¥ý/\8bµÑÜýò\vºíñÃWû\8fß`2¾Ãò§Eñ\81ÖËû\8f_Ëwþ\99¿¡Ë¿ÿV^\81ÿþ\92æí7\9fÞ}@\9fáWüÍôåoÞ\7fO_ýç\8fß\7fû\8b\ f\7fü\18~"{ÿ\9fß¾¡\rNSûÕæ×\7føßô\aíb^¯\9bß}zý\86: ¿ý\1cÚÂßþôÞîèå>½ÝÈ\97t%ÿiÿ?|õáí\1fi§åËåèñÃ\9fß¾ÿømÑ\1fyýá«Í¿¼þôíÃ]ÿæýë\ f¯?mø¸÷ü\8fïþLß¼¦\91Ê}çcWtJËä[\1a\1c¾\84OYÜà\9e\13\8a¯®¸ÑëÏ\7f"¢ôöÃWßyßògýàrìáþ¾x\835øi³ûôýw\7fÚüîãÇ÷Þmý\95÷®\87ù(ÎÿaÜã7|Á\87_\7f\90\ 1:¿\93\9e°¼\13\91£\1fÜ]èìËw /\7fȽï_¿\7fÿîëO¯¿ýÓ»7k7XùÞï$ß=faýå\9b?||ÿî»oòz*\8eüæõ§ÏïÞ¼\7fûÅ_¾ûüö\9b«'wsüê\1d\11¹\vÛøÞs¾ø\8f×\9fßüé\1fßýáÓëOïÞÞ»û0\ 1\7f|÷á+Zû_|ÿîóÛ<@\1f¿ù\16âËæ\8b?½þö-¿Æç?\9døÌ/¼ÃþK"ý%q\7fõ*Äv³ûPÐþ\7føôú«wÄ6H\0û§\ f\1f^\7fCtýk=´iÛî§aý01¸Ù}\15þ-4ÚZnÝæï¾Ü}ÂagÜh$4\103%~Ø\920@g\10Ëúò\9e3vß\9d]\ ff<BF¹ty>\81®Þ\1düýí\ 5¯}ç8¬¾3\1dÎïüßÃÐSë¸%j\91Z;4ý\89Ú±?hÛsÛõÛ~î§~¤Æ\97õöÓQKÔ"É\b}Û7}Ó\9dÐÂÿ ;\1cºCâßt\88Å¿\9d\1f·ïZþµïíÌX|\17ño(þlù\ eÇ=µ\ 3·ã©9µtçá4\9fv§ÃéI?¡ú\ 3w\98OóaÞÏÛy\9eÇy\98»9ÍíÜLÇé0í¦í4MãÔOÝ\14§v<\8dÇq7nÇi\1ci º1\8eíp\1a\8eÃ~Ø\ eó0\r\ 3\r\
+\18f\1dâ\1dß\81Æ.Ñ(ö4ª#\8dñLc½£1?Ð)§¡¡9\894;\1d]Kâ\1dõ²\1dvÔã\81ú=\8dÍØÒ]\12Ý«\1f\aºë4Îã6ÐCìÇ\ 3=Ìijø\ eí®ÝS£qk\8fÔN±¡ÖR\8b1Që¨a\ 2\87H\9dEz\958SÛÆ\1dµ=5\fþ1\9eâ)5ÔÚ\14\ 3]\85\9f\8eZOwh\8a=s\97\9a\99\96\ 4äÀvêÆ\19Âá]ê§¡\83\Ø7í<àHlÆ©K¼\1cW¶ÕM\9d`çÝ¥y éB\a\894!ô4ãízú0Ðks?)¶ý\0)µmúi\8ae?å£ÜÚÓm{9M«{\99\ e\97{¹yæ\9f\87:l½\9d\1f\8bÚRѺÐtEës\93MÖL'ÚR{ßR¤ÑL\89澡U|àM5Óò\1eh¡'\1aû\86¶Õ\816Á\8e6ÃD\9b\ 2dL\88×\91IÖ6Ð.\1a\99J\11e"rt$\92³ë¶\1d%"X\1d-ø6\9d\88ÌìÓ6Íi$ò×Ór\8e¤V\9dhïiíÏ´\v\ 6Ú\13\89¦¸iO\81¶Î\9e¶ÑÜNíÐÒÕmK¯~l\ eüøO£5WR¡Gþ\1c\8b¶è°üê \8d7oK¯@£>ÓØïh\ e\ e4\13§¹!2\17\89ØusOdo\9c'"\80ÛyG¤ð0\1fçÓ¶Ù¶Û¸MÛnÛo\87í¸\9d¶óv»Ým÷ÛÃö¸=\85]³k\89\80¤]·ëwãnÚÍ»ín·Ûï\ e»ãî´o\88 Å}ÚwÄ^\86ý¸\9föó~»ßí÷û\ 3\91ôÓ¡a"\ f\ eÑ\1f\86Ãx\98Âa>l\ f»Ãþp j\7f:6DÉâ1\1d»%ý!â\10#ökÓÍÝ\88í:c\1eE\ 5¾\9bæ®eÍX6è´ ;O¹X8ý\1dÑg"ZªaÓ\9fL!×iÊugßF7ºu\19 +e\0{ß ï\eì}yQØû>qx\9b»\8eÞ¤KônO\1cãe\ fLد¿\9a®\1d*JþøKo\9b\82¾]\9d\ 2:\\91î\ 3·=·úÓùQ4ÚYÕgi´!åSÈ\1féÿY[þD´\96ÛÚ'ùkôOü\7fàÿFn\93~\9eüÓX|\926\14\r$Þ>ù±pá\ 4ã\ 6D\18ÚÝ\89ÈÄ\81ÈÅ\96\bÇD\ 4¤'B\92\88¤4Û\13Q\98=Q\9a\99hÎHÔ§#*\14éýND\97öD¡¶D«F¢Z\1dѯ\16|%\14²Ú@ÒZÍX&g,3\96,¯-\18\vKÁC`Á7AÞuÖB+\8a$é\8eD¢Ø5Ê\vÄ\¦\8a¹\1c\89½ì\98½\8cÊ^Za/Gf/[b/#-\90\8e\84³\1f*\83ùÏè°âZ<"\85\ 4r_{6\81çÑ?ÿ\7fv(ªÐÀmô6\15mö¶õ¶+ÚÞÛÁZ8æ\9fR¦h¼µÞ¢·T´Î\e+\95\81ÿ\e\8a6z\9b¼ÍÞ¶EÛyÛ{;\ 4\93b¨-\84\1e\1e\91\15åi~X}*µ'"\14\91ÈEGDc\98Æ¿²\904Ü.&\85Ãô\83\16\93î\88Ƨ ªÓØÏ#ü0è\83:iY¯2½.\8dC7¶\17ô±§wq\e7\1f\9aUnN\87KnÎ< \8d\16\9aò&p§H\v¡áe\8dM\b\83\82p*\98\15À`Zè\95gE\18\18T#:\ 4V\8a\84{ ÿ\1aØÞ\90`q .vâ½\ eN&JÒÌü\f\1cW\e\84¨K°C\80³í\ 3kMÂà ; \93\13\ 3P»0\0íy\e\11ëj\9dyí\89}A7\12öÕ\91vÄ\f\8cø×\81ù×Lük \ e\96ÀÁ\88H@pÙ²$1Â6Dª`\f\8f¡Ë7RÆUZ }G\ 5¢É%\166]ñ\ 3¢EoWr\94ÿ\þ!ä\ e$N\88\9c\909!tLê\94Ø ¹\13\82g$O\88\9e\90=!|Bú\9aÀÔOè\9fP@¢\81¼\fA\ 4\85\f
+!\14R(ÄPÈ¡\10D!\89F\14w\81é"SF¥\8dB\1d\85>
+\85\14\1aITRì\ 2\8f"§\ fSÓp\81\9c^Ð9/ÑÒcÏ\8c\96Øj`>
+®ydÖØ2\vì\98Ï\8dÌͶ̳À Ng\96²!ÒÎ3\9fðÝ\80\9fqÓ^¤ºW\9eÏ\84vèçid§ð<v½RI\98²\12«UtÂ\ 5òúØ\vo#ªc¿JTépITi\ 2÷;ùÙò\94B%\98X-\18hª¡\1a@9H4ù*>'\96q (@UØÑ2\99Ua \11\16\94¹UíA(óN©òÀ4Y\f¾Òc³QmiY\17Ä885>15Þ+5\9e\94\1a\e-nUÇ8*5Þ11\9e\vBÜ !\ eJ\89\8f¢xðf`\ 5c`û\15\94\8c\96Õ\8c#+\1aP5¶¬l\88-«c\85£u{ÖN-Z Ú\1dÛ´\88j\a"Û\87Bí\10»\96\90mR<T}\1c\996\82.>HµÿÚ4PI·<¿ò\1c3Ê ×Ñ\17`ÝI^b_èÁ\93+§%±'~ôHZÿÈǾýç|\1ch5ìº=\1c)¤\80\9eXunÙ\8f`\9e\ 4ó%\987Aý îQ0±Ø\ 4ã)TLãèò±IÈ&#g)yW±\8bÖee\97\96Ç\8aU\1c\f6©9Ulbvb¿¯xD4\92\1f\9cêOÎ \96"ú\12zx\1cOyX>\ f\8fç)÷³\94ð\9fÇSF\183àå\88ãLä\80YC\9b\88ºÁ\ 5\12UèwïÌ*wyz\17·ñ\99)ò\19:\ZCe0Äø\19l0ø\8f+Gø¢Íó1\17\89ÿê¾\vÎ,\9bW\9d}ã\b\8eë#8Ö\9czâ\r"MxuÝvü»c\8e~`±ìȦ>Óî\eÞRøå\16ø¿È{,Ê\8e\17ÍÇt\9f\83sÛÌo\aæ¶É]EG\96\82÷\85â#Ü\96\15\9f \ 6>á¶bH\81'9²'yâöD_òª)KÄÚ=\e)\aV÷\1a\16* ß\rìG6ËäÌrC"Æ&\1edõ\1f³óXl\91ðdz\87+¸\1drî&¾\ 3{s\97þÜ¥G·ôé¶p\ 4g§.5è\84\18D\1að4\a¢Ö\10\98 e©V8ñ!ú\93$\90#\11¨\86$\92H\17w$¡\90îM|`î¶Ê¥\8eÎ\9f.ú¹Ci«YR5Òó»\16v\864\8cSb·É\1d\82!ò\a\1a\81¹\13éô\82;ù\89×\vÕ\8bq\9e\98*µ$vÁÆ\90èmp`hé+öú"
+\93)\18ÑfºDûnìè¶ý;¯û\91çÚ\8füàb>²émGûb¦Ý1Ò\1eéi§D\12Æ`|;\12×ÚÓ\96Þ\12\17\9b\88\9b\r\81Ø\1a-MbpXo-Id'6.\1e\88\ 1bÿo\89\1dNØÃ´Carè8ä\ 3\11\1e\90ÝNÄCéD⦠\17[H\ 6\81X,\14Õ\81\18n\aÁ\17Î\ 2\12òÌ]°s\87\81i\ 6ª\17ÈÖ\1eÙFÚû\13áy\ eü\1c\93>\ 3\82Oèîtç=Ý\117ëù&¸Å\81»\9f¸ëDbó)\90\88`®\88\81U
+¨\12P#v$gh´\88\18rV£Eö\95\a\82ô\83°â\82Hª\v\1c8\10\87\1d\10ì\7f\88\1ck£þ\a1\8ag{˨ö\16¶¸<U\98ýá\18Ååõ²mæ\ 6éü\19\9eæÙ;dzG451í\1d\98ê>\82º²\ 6°B_Ãm\81Dç\96ððT9ûÜ\9asÉ\9esIú^\91¿\83È\r\17\84ðKfòKr8IâaU\14¿$\8c\17\16\1ez½\82[\r3ÍÓÀ\ 2m\13ûQ\83ü\10.\ 4N\ 3Â?u©í.HäOº\9axCËæï¡I°\8d\13_é\98Ç4-)ü"\15F6Þ\9cs¦Ç_x\13'\8aÍjD&\ e\97²¸\fC°a°\18M\1d\86`Ãð´q¿(§?½\v±º]\7fù\99\fÿ\84ko\9b\87vÕ¡\81Ã\8f\92\b\1e÷s\84ÓÎ\ 4\b\11\1f\12Ä\87S³&>\14Ò\83È\ e'\95\1döYv\bʸs,éºè013\17¹¡» 7°ä\10\98¿×\82\ 3{9\e~H\91s\8eì$ÝóãîØ\9dzþÈöÐ\a}\\111XÈ\b*cìèÁðP\1dK\18G\960f\8dv\88»\86M\980^Â\97$Q\ e&\\8cª>\88x±\ fn\92ìYC\82v\ 4ÍH´¢¡\8aG=¨Õq%pNãæº>\85\15ù\82}@G·(N\1eİô\ 2!HN¼@\12ŰW\eÜĶ77%þp\18ð\95\1dJ4Ø\1cÇÂÞ(ÖFyËiáPR+ãeÓâ\8fq\14 p\fqäøa\89\1d\9e4jx/ñÂ\12+|½L\13®\13jL¦yØ»\1f\1eçÞ\7fX¦ +BÍ£z¹Â\ 6\19\1eí×z N <É·u\8f%2ÔÞ\1f\8cìC¤,BÇo§D\14 \1fÚ\96È\1ewÐÆ¾\9b³eñ\82\10ô´\1enä«z9\ eg.\f¯\87\87Ê\94\ 14=ÿÖ»Ø$&G£s\82\87éäà\1d¢àâ[8²gA\1aØ%\ 2Ü\10â6s\ 4µø¡à\89êÙ\e\ 5\7f\94x¤Ð\9aÂ/%^©9¸c
+®©h®)¾\17ÛèÌÂ5j0\82p$QwÅÆÕÒ\v\88\81kÔøí£ÆoOêñÒèíà¬IÃ\13\98-í\95fq(%\84} `\12b\8c\1fN\87hÙ\10ƯÑs\ 3\17c\1fHË&Gø\ 1[ö\17\12\a@Û\aM«\90Ä\8a#ÇB\11\97Q¼\82\88-\14³{C\94Â:\11+÷ß\93Wq±\voêÃöâ@\e\95\13#\88 F| \1aO\ fÏ×7jãJ÷îŧõpÓ^L«\ 2qªåáÂßÊk\9bí£#[Key\8bïÕ¼¯Yb\12\99i˶Ø\1c?\93B\8c\95ø´×0\9a¥K³QãÎÎÃiÌ/\e¯\14'~¬\91¤\1aø)\19eà]=KÑ\83¦¨ \99ê5³,úÿ\91\ry\9a9Æÿ7Ì\ 5[\8d¬fá=°\9do϶>i\1cÔÂ<tdÛ_Ïö?iì\92ðPDÖ,Ø©1³Ì\8eÖ\ 5\8dEà8\ 4bß\a\8eAØng1\9a·\17¨ÒÕkà¨ÑàÜ\7fÐÅ`aLµÌY\ 62]éÔ¾\7fñÜ\12z³& \84ÊDó\fnÒpoè\r\89¬æü0\aÈÑãV\ew\84\983DÜ!æ\12\11§\889FÄ52\ 6õ\8fLL fu\92\88\9b\84]%Ü,©ñÈÍ\82ce¢Zm\9c\84×¥ ·êä§×F¼¡\92²4àrâp\9c¡£Ûºë/\8e]\7f1Wõ1W±=#&ȳ\12ÔÙ\11\aè8.\bA\9fè#ͱ\1d\84%\8cÌ\13Ö¼\1eOïâ&ZÞÒò®¦å\88U¨ä\99®\90fjyæÄ2Í\91¥\8eÃ%\1e\10\1eÁ\ 4ê½_îþbÿ\87§2\81¿5\1eðÔ\9f\8awôÊ32\ f1{pWü;VÿN|Þ*Ï \8f`:±d:\97xNx*Ó¹\97çx¦Ê\89\85yK\83´\\95¶\10Ös\0\19\87\8fóªp5³ªXÕ\82S\15¼*<\95YÝ»Èo\8f\ 5ªy\¸\9aÉÝ\1e«\7fm,Ð:\8f³tî^\83\0$\fÀB\ 1$\18À\ 2\ 2$$ÀÂ\ 2Vycx*s¼Ä\eÃS\99ã\ f\8c7N]£\11L¤\82ö\1c3\9bâÜ6Ð\9b\10Q\0¼*öé·í¸æw¹¥\8bÛxãj(OWGòxÆ@\1d¡\9aJø\ 2Í\87\9b\14\19"cC\b*\ 4V`«\80\10G\18\15\8enPØwJµØ°àÆ\ 5qÒ\97\16(Yý'\8dÈéiÕ\vºÃñaÚÿ(nÂwV\93¿loÉZ\9ex\83#VáÄ[»ã-êÁ¤Û\1c¿;ö4ìÙëpÄV×à?Þ÷ú§r\87¨\1c£\13\96#\92µD&s\ 4\ 1\87"\8b\91_\12\19\93\9aù\ f\1c'4s¤P¶òï5V(ç0Ò¼\ 5\8f p#\7f1i\128Ô=ÕJaÆÖÇX)\16\99TBª
+K\8bØZÌÚbö\16±¸\98ÍÅ.ÚJÃ\v\9b^\82B[\18¼\85@\D\85¹P¨\8bÚ^ùÔ-X\99-oé\84i ÑÏ\91-\1a4»DàèÃ\bFƱAý<Æ.\e;Øþ\ 1Ø\8b5ËÉ3ôt\13eéW¥î¾©±v\94Ô\ 6#µ\1epɤöq´ü\92'÷ \97j\1eÿ\83\97-=·\8f¹æ¦Ñ\1dâÚèÒÑ\92nó>\99µÙ.²]5h³=×é\ e4«§±x³\86Ò¿\81?Ú\8f\89e\96\ 3zTcª\99U\ fÚʬôm\91|N\14+pÊø¸he>xÙºÊ\9e±j×\bM«\9e\18Í\86Û{&\9cdÁ%ɼðHPáh\16^e>Pó\82\1e\14ïh\e\98N\1aCK.E\8bO\14¼`Ë\ 6q\91¦{\ 3\16ñÄ\8cc¡"ªµ``Å\90\93Áù%J¥pVÌ\91Ás4LÊ>ivø^ålË\11ïB\9bD³\89`0Ì{v\1a´6¨\8f[<Üæß\1eݵ\1d5Gæ ¹1U*}P\16´÷L\18É\83\89\96\95ÈÙ7`D½ã´äp¶ÙCp£¥»\ 4\95$æ*å0z\92\8b\8dù¤CnòC£.车Ø\9b¶Þ\85®[¦\81?ËÏ\8fÂ\17+R\12G,iSyý¨R4G t¬GH\e\16ÉáË´pZ\b¡Ê _f\83/\12ÁÏRÀ\97éß\1dÜ\84\9eù]¤}/\13¾\97ÉÞË4ï"¿;\9c$>[5¹¶J5\1c]\9f3\8dÎtº¦Ê2\1cÎ\ 2ÍöAL\98®ß\99\86g:\9eiyK\7f«\194MßóÀ33k\9aÚg\8a\9f©~fà4íOõ?×\0M\a4-p
+GQå\1fç ¿ µ\15Þ¥pu\ 6üÓ\1cäÏ\92°YËk\r½2{¦\1azfÉ$Á\8b\v»\9dç\81\ 4\1a|h\89æK\8e8½sº ¶=C_,½Á\858°¨×D\9a\a\b_,r¢ç&%\8eù\9eDÐ\ 2ð\ fd.Ük\8aÄSV\85¸çêð&icUI\1c\97¨cmÓ,"[jJ|-@\a÷s\19Õc=?oí\9cÊ\86tÖ¡XÄNÎæM\e\1a\15ÒÐ\95Vͨ\10\8b\998¾ÅD\9c
+./Æà}`\8b\7fí L\96\81©\99óGæòÆçÅ\94Ög.OÏ\9bM¿» \19\99\92\93Ù)\97÷ 0KW=hªêX2hfÑ\a\8d7/uEÁ¼±\\99i\1c\83á©\9d©úÙ\11\1f\v±\88\85"vÈ\97,Ú0ph\9c\82óè\81Í\8b\9dªy\15\92Ç\1a¦ÇÃm_¶PÿyÖ\ e\8fhGå,u\93ñ>p\ eñ\89%Y¡S%c\185Óé\9c54\9e²T1\87\80ü\ 5¶\b\16ìÁí\82Q\8113\830ó \18\bK\16!fÂ\14ÔR¨\B\99Äm\18'ç4>8\91\7f\ 2ÂÉ\1a\85\ fK\9bé\ f\9fÂ\13q\9aGÎ\1fÂ\96\14eº\99\87^ú\99\1aÚy8f$\99Õü~\1d½äÖ\9en£é«\88dc\rHæYèQõ"K\8fsX\10Ó\90\98\1cÌnÿ\e\1c\11¶D\85eD¯-¯üü;ù¯}\92fÇ&\r×-?\8dfx\13'ÖÈRcÞó\8f°\b^0ÿ©~sà\1cÿL:\97`a¦×\1c=Ogi\1aåá\11Vs\9d<våV]OíË\89}uZ_\9dÔ\97SúÌ$/Æøeþpl;^\9ftû\ 1\86\11,Õ\9e:ê6%ð*u=Þ\83ÞzC'\8aÞÚ5¼9ƹI\9dÄ\ 3Môü¸\9c^\9c!\87R77\1c\99¤9s\17À[oëè¶Ý¶.B\8d5\ 2#\93¨`$*\18\89RC\19HT0\12\15\8cD=\a½\14ó×sQ̪7¥\99Oìé\1c·ñÖ\9e\1e\9cÅeõ\88Ø\D\18?½F½\95Í\17ÿþ\17\9aÜâ\8frNa\ 2\99F^Ç==¨f®\88õ7 ÿ\13àT8\8fAªªDW¾rcWjø«Ú\8díÊ\8d]©ïx\96ízC'\92òúØ\ eV\92]\9fÜÅc¶Ü¯?½þðõÛ¿×\1264!\8b\ 3Ô]ïÊJiV<77vg¦G;oí\185F±\14·Q\96eê\10§sïo\19ßT;~\v×/ÒTÅ\15¦\99±Ã"ø`(\ 2ßrKgmyF\17ø\9fÿñ×\ 2\8c\16ÃÔ¡hû\95¶[iÛ\95¦Æ©Àÿ°d{¿ñpVã¡äƶ\9e½R\1a\ f+ø\9c\03ÄåíWÛîʶ]¶Àÿ¸Xûßs\88CmÍ>ÇÄ>ÿÜ\15KÔ?\8b!¬c\89}&i\85du¶Æ\98-\ 6bº\bé\10ÑE<\87p.¢¹\bæ"\96\9bÙ\85$òµ%7^lbÁ²6i\1a÷¨ª\8bÿý×Ym,\ 1\9e\a°Ç\ 2\93R3¶ÜSQkxå\8f\ 1^\16Hä\aÅy\9a\1d4¶\86Ü;8ÀS\86\9bpkw©KËòª`1Óñb[ÙÃE¼\99·je\80û\1a[®µT\1d\8d\95/E?\85¢³e·ô¯¼\ f\84HÉä9r\98\86äð +Y¬\93°M\9ae\12¬Ú¤à\93Ë¿\90~!ûBMU;$\ 4_\88½\10z!ò\8anJ\9a©Ìöᢦ\9f5þ}\91\hè\ 4\92\13\91\14£\0³½C®^`C¸¤ë\81ò¶\9e[¸£ål\1ejï7·l\94Ȧ\8c¹h\19Êt,\9aÚ¿C\95°±LÎ\90Ñ-Ð\rîÃ6è\fïLý8{÷ã\fîÉaKQXà\9a\95æ¢vÖÔú=;ðN\9c\r\11Ù\e(>ù\91}ð[ö>\1d´vD\99õu!ï+T\89_g©_Õ\ 2ÎðÓKgà9\9eô\1a?.IeWW\1aX£³]µ¨ë\16×ZX?|vÚ\82ÐÁÞ\98\98b\ f
+\92=3.7»J5ëD¼®\83F:ì¼N\87¦\91Ä\184vÁb¹&Õú¶\15\9c˾\8c×Z\84iÅÔ\15\ f\1e©%m\oÂ
+¦Ã\96öÃ\91ä\13tß¹\v)\a¦\99\8fèXù\85ÚÂ\e\94\9d@¼øÍ\vtî z\18ú÷Ì\14¸4\ 4^0òÙ^¾üs|J;³\1a>Êð¸ö\9cW\9e¦Ì/gM×yÓç\99ÓeîtF^Ù\16l{\b\85P\99\1c\84År%Nì]>jNõAÃW5\18ÕÃXç¢M¡°ãLj½YiÂOÖÑ\vkÔÙ\8cahÖó®²\9f\9frøtÐ Ô\aAäà\a\v{(\ 3\1dî\8bmà¨\86à\81\r%,ÿY[\182#è\1f4Óf\92¬Æ)5\13p~Jm\95N¢\8føpOxâsô%Jy\ 4á\81Þ\95\86>±\1f\89èxÏÊuÓ\f#[H4`é®Óò:\86\90äÝMÓ\1d©måÓ=c¯Zå\ 1®\fV\14iƹ\10P\97,hiæ\90*v}uÄ\1eøÅǦ/\92\a\86ánêÓ\\ 2V?K\7fjØ\98\ 4¦.\92\ eÁ\9e·ynR\1cÔ\1c\11[~ñÑl¹Í¢¯8ÝñÌ\15æ\8dgéO\9e-\91¬Å\17N]?¡36¾ù\eªÍM.FZ]ñ\18\8f¾ô1\9aú\17ß\7f\8b\ 2p\1fÿøY
+ÍnþùÝ×\1fÞ~þü\96\94öËßѽ\92\eU\9a\91È\ 2§\187sÇÑc\1d\ 4ïÀAwm7\8b\r\r\963\1d#Æ\e\87qÏvå³t\92\9fecÝl¬\9b\8du³Ñnò|Y7fn\19è\848oúñ\ e
+ia8yö®Å¤s[·wC߯®§ÞS{7\rMÚ\8cóÝ8¶Ï÷à\97ïð,Ï?÷k\86²gìô6t¶Ul6\98¯:3_±V0pf\88á\97D\r\84mX0:²\96pP¤äç\88\bN2t\86¡DJ\ e\ 6\96ÌRÖQ\93Fv
+\96lpÉ5\9a}Ï¡ÚI\91\93\197Ù]Ñ\87 ö;\a¶\9f\vp{\81·×`gÁ1Ù{¥\16\ 3I+a\10[\ 60É0\88\96&¾+\80K\ 4\15m\17Ø\89?H¢\8bÆ\8b\89Ã\1eîzqÔ×ÅXZ\8e½³Ä\96\\88å(1v\81\ 3ì2\16ò\19\84½Û \1e´TH`B[|\92à\ 4S®E\1f\11Ë\ e+/fa\14Í\a÷Ìå{¶ü»-ªýìý_©\13dÿÚï>\14\7fÚ¿Ç2\v\1e\ 2\8f
+È\1e\93/m\7fO;7-ææÑg!\7fôv\ f<Á\9a^ç\8då¶Ð·«-\96-cáßXî£t\85\87\95x§\9b\áá\9a\1cY±.7\1cõ\1e\17\ 1\b96mV`Õ
+RUÃ\10ê@\ 4î6¨[µ\fF¨Ã\11\1aM]K\8b\90\84\1c\94`a lÀ\ e\1e\99\90Ã×r\0\9bj\8c¥Æ¯\1eàÑêk\9e0pÕv:ÿÃ\8cK2»#\e\82\19&\14´»\9d\87Ü;«+PN¶\96Y1HV\85\ 5\8cʶ\î_¹\v²\8c\ 4\8c\86ï\ 3[\15{js@\bÇ Ö\82~?Å\1eÕGÀ\1c\86\86ÅËMQ\13r\14Ì\12ÈîóÔ\14\ 2ï<ÝÑ\17CæG·v$\9cr"a\1c,lHD5£z^\1c[¹ÛØ\90\15âm$ñ¼âåOïC\1dH\rm?\9cEJZ#\15ZÚ8I\0[Ór\15Íè1\ e\10lãZ\97-»\91J§ÒsvËOJ|¦cÕ\ 5fJ)i\ 3Ù»\97.\e\96¸#jzrâ\84MÀp9\ 1ã¹:¼M\9eX¯UÓT\12\85çÕL\9e/\903\ 6äØXü=VÎÚáÏ¡J*°\96\8a\16\17\7få4\83\fÁRd\e\84Z1/\95ó\85ªnêzæne¹<KBØ\ 6ÍEØ\9eå%\94\85ñ¦³\8av£räü[ø\0\97\86Hs%.m\8dfe?\ feT\82d\ 1\8b\97ü\1d,$AL:i\0¾\94¡°B\14\9dº(\18\1dÛë\ 2\89\bUV¢\10\l`Í\82%rq\18.\fĬҢÿF\83Çf0\9e\\15èèQ\939\12ÐÂ~R°ðIM\92°4\89\9d\0S\17¹ö%j\90å×\1fÝå¶UkÐ\14Ø\18)9õ)\e\85´¬\85´]\91<!¨?\ 3\9b¦Í4d)\14\aF\ 1²\bK5\ e\8du\98¥-Åb=Y\91Å/\90*{9¸+Å\84¼Â?\95\91\91a\9e\13ã\9c9\1cjdÀ¹\80\1f\8e\ e?¼\136i¹\1cA«"fGÀ°R\15\11\92û¸\b\15]fr\¬\8b\98
+\a×¾HåHUÈ\93\95Ý\1d
+¬¦£ â³e\17ztèIãhÍ\a\9b3e2PTÎ\92qó\9fä\1eK~L¶üe«ß2ÿ<g\9f'¡\19<\83F\ 1tî\82\ 2&tÅ\9c¹¼q©\fÈý\91Ë\17\7f~\14¹$?Î\ eÅ=a!¼\85¥Ö3bê¼\9827¦Î\90)òdÂ"YfYO±®¨XÖT\9c\17\91\v\1aÕ\10Î\8a+î«à\88Cå\85®+7\97¬ÍýÙaQl±.·\98\96úTÑ\86ª¹[2Tþ\97Ú\a3ß\e®}Áí\12ªR\8cÇ*¼Ò\8bÃ\88ve¥ÄDǪ\8a\89\15\19>9ǧ.(FªW`SÃ>ãI\17EÅê²b¹j\8chd\9cöcáÝ9À;Ü«bÕU+N\8bHïä
+VN\ 5\9a\83ÃP\9f+Xñ\82\825»\82µ_Ä}3@uëêUWªW¾\bw\85Kî¨ë¨UÜ\bsÆÙ\12 a\ e:Í;\85\91\90Ù\93ùz\1a\8açå\1c¥ð´$¥Ëj{x*\8eç%Å=<'¸\15æ=<½²ÜUØ\9b\ 5ô\87ë¿Yîq~vRçØ\89©âAÿ=h
+ý^E"÷\98\89Ùa]ÈÈ\19£¥\88q\9e,J"\86\bA¥otÍOj\81\14³\87l\fEt\ 4ÊÆ2o>wü_òæßç\9e¯v\9d\81ÿÔÆ\8d¹0pä=x`zM\8f\9bí\ 2÷-×\87\81ôy\83M\vD\96\8cÊRc³\94\b-\15NK9ï\ 5p¥\ 1)\94\90\95»
+>áP\80'X
+§¡&h\9d\1dÛ;Ø9²o°kxÏø\8e)\83Êd«\94\eE·\89¬\83s6cA2ö÷\96Ãù\ f\v\ e\92ùH\99\9bsu\1aX\19\eµ\8c§cS«A\8e\88·Ü`»[\96þO^$c\8eo«p·aé67졵\90±ý"hìBÈX\19ä(ë¤^\aÛ\vm¾Ð¦Ü\16H9ÜZn\1e\ 4¼4JÝ\7f\968\1dçyä\bú\9eV¼T¶\19Zñ²6DÜ\e\188&u£ôðUsyI\ f>¶Èñ)ÞaÃ\14\1eÉçíWr5\13©$\91]Õ\9c|p7\ 3ë\94ý:D59by2°a·Î´\8b¼ 3ÃÔ³ö*c:\ e1qºDOK\18/Fc\ 1÷8Þ=v#n6q¾Ð&C\8cܵÔc\1c×\13\8f\9e©ÃÛìR«¥\1fè(õß\15Y¥øiyçvê\10\195~jË®\8eÃJ´Z\8eU[D«\853\98ò2`-\v9YÌéÊÒWVõJ1ªHà
+J\95\14\88j`»ÆÄi¢Yò)ë2J$dçyÚ£¢&I\ eÕÎê´\1cX\ 1\91"\8d¹Lcâ\84,)Õh%~ȯUl´B¿G)ö\eØjÕjùƨA]\9dÖý\ 5g\1a´\98£T\0\9eØF$u\80·Z\rxç1:Dç\ 2\9b\92²*T\96n_\98ͦvÙ.yÊJ\9a\9d}c9Ø4Ók[\ 59p\9faDF\85\12\99<ÀnV?Yiå3\ fÙ¡ð\93\89\99ðT9ÁĢȶ\83V\r\92\9a)±:ú\8a½\96xE\99ÙNjCeåÅ Xv\vè"ü/R×q `DR Êk.¿\158F\81?HT_d;\88\85\ 6v\15è\9bÁ¾Õào\12>8\95BG¨øÃ:'¹Èuî\9fÕü\7f\åÎÉ\7fEfS9.èÄ×\93_\aÁ/ó5\ 6]\18¶8ú"jt\fnºÍ\ 6Ýlà\9duÙL\85 x^ù\,®P4|Þ.ÖÜì\96åÚÎ\®ÊâÛP\1cX\ 2æ\94\10:å±òh¹Ìw¹Ã%\ 2O>R\1eÝ-[\8e\95<®ÄRw÷\84\1dZÐa\19rh\ 1ÕÛP\199\8bR-\1aX(\85Z¶æ\19ÔP\87\1cæ`!\ e\a-\ 5½\rVÅã\1a¬þs»\12Ò\90«?\8fU \83\94\7fn$JZã\18<\8ca«
+M\1dÂÐqätâÍÁu¡9c@jC\1f8o`Ϲ\ 3»àöù\99-\1dBh¥dtÏÒ¡Xì\93Zí£\92KY\9aF^\8dà:\rΡ\93»¢m\17m^6\ 3~5õË"Ù·.\8a\8f\85òÕy^EY÷æ¬êMÐ,\1d\899µÚzY\96^\97¦KyZ$j\97©\83f\90ÔH«©\8aHm="õ<&µ\8cG\9d\`\8e>\1d<\84ÆÂh:ͨ0ÅJ\ 3jÔsdÖ.3è\1dPsì \8b0×$·h\e\8b¸\99=îÆZ9WCÑ\88ï\a66YëVÛÅÄ£\fç[«ÖË\\85:Oa\99\9f\90«Ip\vuNB\91`s\96X³\92Ns\9eùåvÐÝyr\97.\9eÉ\97Ðè\vÉZ_4µ×\86b\85åuf6\ 1\97Æáæ,\96Z\1f6¸Iöüg¿Òv\17ÚÖZÈ\1f«6_ÓJ¾0m\89aëRa\995³V\93\8bg\9b]+¬\1a¶jÓ\96\19·\8e\àº4neóVQ^¦Æ±XÚ4§Â\9e¹D±X\1a3%RD³ýèÑ÷^®v\99Ñ.2zÏ2úXÖ¦u,Ù\93"È\1abl\1fØóhR:äô\83Ëé\0|±êé\9dJè3ËçR9ýÄå\86\1a\15ÇE\14\9f\82ÖPܱì}bÙ"rR9\94û\91é.vü\ 1d\9c\88:H|§9{#³\85\1ds\8c\13ó\11à j|\1cóç]Á\9d-ÊËþߪSkïG\ fþï~ñïAbÀÊ\b°å©¹ûíâSþwË\92\87\ 6\9fÕ~ô,ÙÌ*\r\99L$\9f² UføH\81R\95Ý\82f4>\8bϨô\13ý\18:\9428Wä\12^\9dýÊ%¡¯H\80U÷ëzöE\99{±\85®ðÔj\15\17àêíÍYl[\13ÜöU$êºè&þíJr\vg\82[\16ÛDhË"\9b l\16KarÚà\12\1aÉfA\8cx*\94\1d]
+«\8b\8e\8f
+6Ùå\0\v^觪\09\97 \ f\83P8·$N\85ØS\975Y\11}.
+?ûp.ÿ\\14\7f\96¢O!ød¡'hHñ¡\12wJAgªÂ\8b\87J\8aI*\92ÛìÒü\862tî¿\aõZ-\93ÉÜ{Uù¯J\ fV·À\14T\7fV(¬É\ f§\91-\8fÈYYTÚ\8a{l:\97\8f%\1cG¸îÈÎHÑ\170âG6\8f\eçM¼b±Pf6\94oyUc}Ó:Çzç\18l\8cO
+^æÖЧ\a\1eÚÙyòÌ\83\8fß=óç\1dO\8cý\1eyÎNàÙò\e0\95ç¿Bh{×\83%'Ñ¢ª"[:z¶glÙP\81ß#\e"`B\83=AÌ\ 2{7\9c¥Ô\ 5¶\9b\99s\10ëÊ\\83\89#*ûÊ1xä\82ð\8d\9bÅ\86s¿`Xw\f®s\89û]\0Ùøß»11\9b\139FºÎ~\8d\9a\959T¹¯'\1f\83\9e\8d\880 \1eH~\11ÿ¨½>^þ\10èÝa ìØ48³¨Ao\>üù£^òRÔɰÙzáö\88Z\937åÅRÕLô-\v\9e\99\81«-bð\f\ 2¸\vg\98Ülß2l±\1c!&?\12'&\91b\ 6\18Õ\14ñb\190jw\ e\18\15
+̨äà{â¾Z\fY\8e"ËUè,\96¬®@\17CU²ÅRê÷\1aHÍÌåX\ 4JMkùÒ¬\96Ü\930m\0\ 1áA\8c\80¥Ãç\ 1Î\1eÖYû}N\e\98åSºCp\\85H}ÏIì^À²\9aÙ]B;¯e\8f
+GÀq\9co§>\95Ñ\90\9a&\ 6FÊ\19gó\1d\98¾\88[~\8eÞø¹æ\16\15çà\81 JÂ\11ÈØ\e)\15\11¾\eGE[\86ö¶w3 .\9b¡»£\15Xxg\9e³SyJz]γ\1cû®áÌË\8e¤\1d\ eèmÓÌ7\90><É\11øW\9cGW÷Ze#=k¯·¹i\86U7Í\80ðáT\81\7fF&T£±\11f \92о\15\17\f\92Ø\9dm\18Á\84\ 670¯ØA[c>Ñ\85\ 2A\82É%Ñ\ 1Á\8f\10ÆÀz\98r\84\8c\1e\91\ 3DJ\7f;ÃGdÝy¨tgÓ\9c3t°éÍû{ò8¶\ e\14|¡(½Å\bå\14\8c¶\8a\ eê\8aØ
+(x-ù¢F\84¬ã\14æ"J!'bx*\86\ 6*\14qqëøÐÙª²\ft+\82ÜB\15å6\9fáöìï n;\ fq£\9f°\16í¶\88w»¿\95ø.$\15\86*\1eîéÍ£èÂ"¨îæö7Øa\96d²\97v`\99d§\b\17'Å·\10Yrd9J\^'\968Ä[%~(È\92\böeù'±uÇ|¯nÑ!\1a±\f2Û]\80À\16\19\92Z`\8aaRd_ Î\88Ó\14´£e£Mbæ<¨\1fT<\9fGunF\ 5Àî§!xÈâ\8e\15Ç#£. îRò\10E\vP\ 4MÀF=©FPë\ 4¬\15\ 4\95AD1Ø34\13\94!\91åDm\125J\14+± \9bâe6g³F\1fÍ<m*\8eUJ\89\8e\1cT&ñ\rÞJD\86¹jÛàè\ e9W¬ü©\r£B\a.Áò2a\v¥&{ð@¤C¼ºa\9a=¹õç-¬\1d¼¥ý\rvx®\87e§ïZøÕ\12zªtì[ºL\1f\ã9\87ܳ£ÙÕ;V\8eß\12ÒÏþ\1a˰Á.ßgÅ\9bl]ç@\83|M\ 1£Uç\bä¨\ 5{ýxïÿ_ÙØ§PuWvl)\ 6åçöl¼Ïþ®õËË*òÕ\fµ[\v¬¬O¿7\ 4³Y\81Sº\8cÅt5JÓ\1a>ÓSºõ\16n»ü¿D\879N\0!¼3±Ê\9e\ 4\ 3Éu\ 2¾ÚHr¥\80ªÁ\83¶å:\9a0g¢NÍ\81K_N\éRjÔÀÌ\b»Ö\84´hØ\ f\89õ±²\ eE½,N\93ó\99v®\9a\97\8aù\12·¯\v\ fªäK¥| \84?x*\1c\9b7Â\ 2
+{§Ö÷ÙA°\87Ê ñ 9#\14ö\fË\8e[V¢-jÑ\16¦\8dº\1aÁU
+ø¤\16¦µâ´R\9a`Ô|ºÁË\95÷^¯¶Óªµö\13s\v©ÊÛ¬WÂ\99$}\i\v\ e\1eôÃþÞ¶»²!\16ébPìã\9a\87=\85\8bÑ´Ol\7f\83\1dZðÁ\81æÓià\88\812ÝqÔdÇÆÉÀÌ^\ e&\ 4\9cä(¤`æR\8a½&9*=Ø;Úa\89uX[ï¬fbY\13£´Û\11y\b\vÓ]\89î\99é\84YïRáë9*ÁXxz\ 2ÇN.]=»z\8c\86¸»§2\9a\8e\95Ñ\94ͦ¡\80ÚoÜvzRíü tÆl¨%ð¾ÙRs\ 1N¦?Á\93r\97xüɬÖ2\88F\99ZQg\92\9d\ 1y,¥è5\84\90\v¡,Rí3xÙϺÍW·©nayàQm<oaíà-ío°Ã\1cSVF
+.c\ 5-ZÐâÆj\90B\8b\18\8c\16$\164\f§Ì·\984rÐr-²O´\ 4'<h\14áÎÝ\9fìú\f\95çÓü\9e\95ϳ\bóÊîÎ\8bÎÎpÁßY{<ÍçÙzÈ¥¹\16s\14\94\9aðBV±s Ù¶ü\99\8b6\15\8eú\e¬\ 5ýÐ/ÚÚ\9e;\a¯Nê]/Z(þh\1fl+Á©Ë\16Ê?æÓí-¬\1c<ÞÒÂm\97ÿ\97è0{¦\1am-·\ 2\egîSÛ÷\ 2¨&Xkp>&\ 1®l½t\99\81¶\fí<4ÓFROV\10Û\9e§»Ýw\81\91\1féH\9b6\9d{²ê\83vÖÝ8.²i\96\87os¶L«Î\96é%'æ%'æ%'æ%'æ%'æ%'æ%'æ%'æ%'æ%'æ%'æ%'æ%'æ%'æ\96\9f\1fE\87/91/91ÿ¥sb¶\1e^¹Ì\86YæÃô\15¢ÛT¤½p\fX¨ ún*\92¬X~·w±ì\10ÂÙvÍq JÕzºÍ\81\91¨ZeèØ\0XG\13§ÚÌ
+ñwô$\9b\96cè:Eõ\eQ\85¼L¦9\14É3Rdzåe°\ 4õ\93úÕ`ö»ê\97Äì ñp\12\ 1ǨoöË\8b´UaÀ~m Gv\86F\r\81ÿz^à`\89\13\aLØz\16\ 1c+\9fr&ÏPdòìÔ\ e\98ë\8bul\8bÙæ\90l6¥D¶\8f\fe.\vÌ~\88Â\14iÂÀþv\12¥íù<e\1cæÌq\98eNÏ2\1as\ e9 S!ÿ2è_Îî\19Ø\80·Ìw{1Ý©Ý.ªn\f*GÌj\92;°4qÊÒÄöµ5Û\8bÙØ:·¬\r^¹m\82\8d£\bn]1³Îe\99¼X\16É\93ÈwI\97âd)\1eÙ9H®\10ob© 8pô;,¥'\8e}ï9ö\1dòÖ\91å¬\8eG Qï\18\93Ä6K\89vgQ*°<¼Ué©ãHTä¤ \[Ú^)N<9>ìÞ¨¯\8bíI¡HË\8a~÷¶°°\96\9dµõÔ¦\f\80½\9eÖt\9eÔTÁa\87:¡i\11ÿ\93\93\99.Áb×yL\a$\95I\8c\8f\85öL\1eÌÓ{èN \90mq7{7U\1aD¶ÖO\vL\0.\94P\83\ 4\93³¦NEÜŲÊäZôÅ¥¼)\ 5\9d¾?oê\91\99SÁ\ 5À+DÀ«Ë\ 2sPÕ\ 5!ð\a\97\90\95ú»¹\7f®|,íìÙÒ±¦þ\8e\ 61>o:\96u*O\99ºaæW\9ai\9dHyqZ[èÐë95â ¤!iP|\ 1\1f&@òÝ\9b\90õ¼ýÞæ%\9cW½\84óOyA©\97Ы\ 2d3[®ÀxX´£a-+ÞrÙÄ\88Û\ 6\aa\8es:k\9d\ 33[\e\8a&jF6¶²â\11Tÿ\98¼ÙÏö¬\89¹YÒªw\ eõ¼[\8f<¿\9cý{^\1aÙ<%EMÙP)ây Jg@®(a.2©âÚx"mR\9f\98×ÂÈå2r\81\r\v\vÉ\89\ fùQí\87\1dW"õBʵ\9aZ³\eÝÅÜÞjÙ,)\9c%¥³\ 6ÕÑZUÍrý\aÔ~è\ 3ÑQ\ 1ò\a\15\15\18\7fð,&\9d\Më@dsærZ½\17s82©\14ì~ð\9a\96)$¨ã\14\884v\fÖ/Ü\ 6\f\94zZÌLö\8aÌßÑø4¬úîØü!J/\ 3ð«{E\9d®Ó\98\7f\ 6o\16Þf¡GÉ5J\v¿kÝ\8c"\96ÛcðX¼\83J\93;\8fÈÛê*\9d\16qyÂõ\8bؼ\82û#ò·\12\ 1ÊØ¼ed^\8eÉ\e\8a
+\19"\99º±=\eÜs[Ö /#bÛ¢\15Ë1T0\ 6ÇÒ2ïm\7ff\9e¿Ç@\1f\16öùÊ6¿0ÉgÃ{\15ö$0¸\ 2î¾\0Þ\ f\ eðÞ,\0ÞKx÷nxEvg ¶\rn¸\133Ýv»\80ê^\ 3ë®àºC\85ׯÛÇ\ 1v/*Au©o%:\84\96|£õYQ9p\9a8b$ö\T°GÁÖÞàtÇ;"M] Özc?Ì\15I\ 4\18\13\18()\17Ó`5\9c\92!»\ eVÌi\92\ f\8c^»\12qs[77ñ¼¸Z\161¶U\1a²\97:\86À\v\ 2ãþUw¯b\97&Ö²[\ f\174çê\99k5xH \15]ß9\14ºl
+Û\0yÙ{\94ß\99\8eZ(bøÊ¨½\1c¢\97\ 3ñÌ\80\97ãìê\09\ fÓ2·\88%êí\9cIl\8bâ\8b³\9aü&\15ÆõnþëÄÆn,½\ eðn\17Y¶\1aÓ;;|Ã\99°am\7fu«|\85¡þó)MH¯\94ÒA\1d\1d$\9cÌ\9akÒp¦É\96KÅuÄÁNÌtgf¸\80²o\16µ)#1×#é(s\10®
+¦Êe\94vZ\egPþÑ2³\0\8bØj\8dJü\88ZX\16ÆÙ²\1a8À!#µq"óXIóس\1fÇ29\ 6-a)\19\1a\96\80qär\96¢êåø\15â\\81c_\12×·äª9^\ eÀÔ<\ 3ÿ/ë\7f Ã\13ÛQÔ\8a:R\8aë\14Ø\ 6¹,\84½\fÈ(ki\15rV¥w/Ôós-\7fÝ`ð Íâ\19ü\11\861\1f\9b\fp`v5AÈ\19ÔØ\83xº¨qF\83\86Ð\1dR®\991**Ì.\1d\83ûߢ\aÈÍE`\[\ 5à \16ÎNa\ fJs\99Å»Í\81Ãݪ 7\8dk³¨¶ÁãØ,~íèyÍ\16\94\964ê\82\96g`ñ\112Ñ\ðî¬Pdµ¡R\1e¼\˲ÅàªC©*\f«
+à %53Ù*\7f\94¨\85\8bêÂVñ\97\1eÙÂUÞç{\9bʯ<ÝR$Å"%ç"RÒc%\8bU\10³'\96WD\154\19Ø\1f»ór«^?Õë¡ÆÂ?Û1e\19tñH,¥\fòV\17Ò.¸ ö òëÉã*\eEú\89\1e_\99T\bîT$\1e<ÒÒ¢-ÙÙkS·-l·Ù~»Wù;¯Q]§\ eÝ\95kì\91\b\1f\a\8aUK\8bv\9e\8aЯ4zÌP¨\10u»þg*[¨ÿ|JcÚr\ 1´àRA\9cK%q¼ÎHðmn¥Fr±\11\8b\95°â8V\1eg\97åñJ\1açè\89 Ð(£U[r\88\94Ã=å\96Ê\82K¹ä\12K顨»tȵ\97¼ú\92Õ¸\8d*Wu\ e\86Öë\9a\12eÄøù\1c¼ôíV\91W¬BÓÞë4\19\16\8b´\12ýÐ\9fL§
+\8e\96°lK¥ì\1cKaµÕ\9aÞ\93\9aÔ\9ds2\16i\16« \ fKù0K\88;\14ÎÚÞ#(\9a\8fØÚp&8ö\95\0I-x\ 4`º J>R\98\f\95DyÞ.\89\97\17\ 5̰.W^lÛ\87Z¸÷ëùñ-<å¢E\17e\8dåYµYÑeE\93\85\1e+Z,tXÑ`ûã`\8b̪ùì\19\81¤UÔ\91\81\91F°\9fN¼9ºý`6¸û\8a æpg\88dZ`|=ÞbÕÔ.N\99õÈ\8eUþ¼ÅÉ\13«\96Á\12Ó²\8cýªû]\9bVôå\eû\11\83v\ 3É\80Ϧ¾Ä0\ eL0©ÂÌ\80`¨r\83[ÐFkÍ8\1eÓÝ\18é.}iþ¹+-*MLd\92³Z\94.\96ëQ\1c\ 6¶\814#õ\ 6_Ë\11.r\1cÏjÐÜÔËM¦\84Ô¯\99\12è(u\1c«$\9bÖ×oFÝh«£Ëï\9b¼Tm¡Ê2Í¥P£z\9dö\85!µ\13Cj®\92v*ñ°Êê\89ü\83¿÷\1c)\91ÃY=2ý\1cât:ãYaFÙ2÷U¼»§Þ\1d_l%ã¼Bt®\a\9d+êZIçF+6\1f\9bc½÷àõ\91ÂØÝ\88\rs7ÓÀu\13{ÌhÕXZ\17-\ZÎÙS5\ ew\rü2¹ÆÑmýHá¥\ 6µ¥d5θön\9ea\1fç¥Êõ\91ØìÅ>3x}Ø\89\96Á\f\13m¨8\97\8fô\1cÝÝ´öWk.u\95ãÈ×ô}ée\97\93˪Ô2Ä=\84"±,§\95-«Iö®&=XO2\b(`\85÷Õ©è<©\8aó¨z\92áþ\1a}\ fãÌ\96þ¥¸\bK0ÿÒ\ 2¼5\14\89YÙÃd!£\16Ôº/²ù\ 4¾\95S±\8a<,ËÁJAg¢÷ä«Qgeò\94«\ùo/P¾^õO¢T´æ\1f'QÅÀ¹S\9dçKYbàÄ~\9d«Ò\9bJhÛõQ*R\9b0fá,\9e£Lf*S\9arTN¿(É>y\f\14×x.\93\93¦ZÈ\üe1ºs³ÌCÊ\7fíB\11é[DüZ,ðcÒ\83.'\aU©A0\\87"1(§\ 5-íÖ\96\10ÔV&kCΰ, ÆÎ\bU\18G\1dÄq @c\15øÖ¢7\1e¨s¸\9e^³Òkrr\8d¥×ÔÉ5Uj\r\14\9bP$Ö\94i5\ 5\82\80\17m,Ói\96%\esÁÆ«p\ 4Fw\12ô\v\0\81ƽnêg\vêZ\9bÝe`\9e3v\1a\\97\9er_rÊ"5\ 5c\17Î\12Sª¤\94EJJ\9d\8eR硨þ\18\16é'uÚIWå\9aÔ9&uV\89§\90\84*o¤Î\f©Ò;ÖCj*9òÒ÷·\aÒÔ\92ü=ÝÆµW\9d_tô\8co·+|{òà\85=\83q^âÛ\15×\8e]x\90kW\15 k@ó¦HVî\8a\18\v\93#æ:QÝå y2\7fºP°°2oý )À\16V)O:.yR¥w\9e%Õ.ñÿ2\98`\999Í Â\1ejZo¹"\ 5oF{.\ ePÑÿÃ\18\1eGÿk8\96åS<\94¨z!U5,|©k©ª\96gHOõ\10Í¿\94PY§Sf\8aÏO\17.Pü\9cDY%P>\1f-\89©ïY\8fhû\8e\84DP\80\ 1\8b[à\1f\ 4z\9bµÚÈ\1eò \11`Ý\ 5jò\f}ÝFOâ*=\89Ð\80\15f\ 2Ñl\r=%\82qzEÃ\15$mÎÌ\90\f¶\8e\97ÀhK¾`B' oqé\81e\a>ä8v\1cÔZ\9a©\84`X¶Ï0öùV\1dß\82aÑImCÇ\bg\16?®xNÎ;:s\eæ#\ f¹\16\17áà¡<I\ 2açB *¡ÈÖñ «RèìA>\9040\v*¡¤Ð\88¼\ 4iI÷\8d¥\1fÛ>É»6é\1eYÂ(ɶ°\r\91eHÆZ\v¼g\154é¯\9fK&ï°\ eÔípÝ\97P·½-°Ç\82f¸ô^weÕ\11rY\953ï\87aÀo\97Ù¢AÓE9øH²,#;Ì»\85\12´Õ*ì\19\1f¥ñÜKóüÕ~?õú\ 5×kI³]X>xÃA\9e\98Ç\8e«BO8i\12ó\80\14\88F ¬Ú b-d,ku?Swb\añ®ú©\1d¸\8251é¦\97®Ì\94Âÿ£O\8cS×ç¾\86x7\13K_{´\9búS\eÍ8Æ\96¥°¾g\14 )Ñd\fu_½\99\13ã\82\96\9e\95ï~¦þôÙf~\81\91è8ÛthË÷\1c!ÕÀòÊV)\8emÆí¸\ 48[\809\16|µn÷óôw\13ïX5\9eö/\0E/\0E/\0E/\0E/\0E/\0E/\0E/\0E/\0E/\0E/\0E/\0E/\0E/\0E·üü(:|\ 1(z\ 1(z\ 1(z\ 1(z\ 1(z\ 1(z\ 1(z\ 1(z\ 1(z\ 1(z\ 1(º\14\rÕ\ fwc×\ eÏ\14[e½½@\14ý \8aúÕ\88µ¾r,2îÍ\83íx©\95Ô9Tþ\16÷ºøO®bØy[:\ÌÙÂì9\88\97\85\9d\8d[õùïÔÒxP×#Ë!\vãF§!íeþ/G\ 2\84ÊÒQÛ:Ö\92\80'\95Z¶ê\96ÜWY¿\11Zbiñ@\9aïÎ]\91§Jjé5ú=Ç¿\97Q\13\1e7\11Ô¡x\16\ 5_رÄþQ\ 5PH\ 2Èpu\e¯iA?ÔÎÈ2s0\17\9a2(¥m\81c`É\9c¾\88\82\85\ e\8a£®pÓ\95\8b¥\"=\8bD¶0fó»Ùj\b
+´ppO´-\86r9D¦Æ½Ú»\ 6µx\89´jká(\85Í\ 5\17 úb0ÿô$©\ f*q\89ÔÕðB\88Ì)L\88í\8b\84o\96d\ 33\972\19Â\12"r:\84 ²{õ@Ó¢\90ù|\8e\9fb/\ 6ýP\97\10í\8a\96K\10\9e/\98Éá³d\1dlá 5çì¶\9aòÒ9{\12*ás\1dÕ\akþ×\9eõ
+\99eÚð6Í[\96\83-Ìg§³\v;æÑç¶Õ¹Í\e}X$ú\93\1ctà©Íyþ\9d*$=G\1cȬî5æà¤1\a6§\89%\ 1\91¬g\96\ f¶\884\908\83Ó"ÁET\93^ëÚçÊö¼Íÿë\1açþs:¼¬»Õª\ 4ËûÙ\v>z>P6äÖ\812Ø/´\eÄüt¼º]þ)¼"aÅ5²îûÈIÖceù2Û\97Z¿Be\0»Æ\ 4¶«r-f·}©Ý+¬Tml
+ßr®Ö¸`\9aÌÅÜ-m\95áÌË\&\a\17\1a\83ë\f9'¦Ô\1a\o\bîI^ê\r\17sc¸\90,ÏçÒ¹u¹]5ÓaÕ\ 1¶>»WÍm(\f\9b×ÏìÞgv[dÑð¼\86{ªq6gé4»{²i4x \14Fèca\84>7A{ì\80\9b\9f-hÀ,Ï\12³¬±\ 29åiM#<\9bY\9eÏÊÁy\7f[\94½t\86\86\a=¢kË`9ïe¦M1Ý\ f\e°ãb\8eë\19æù\rË ¾0»õÜ®íYݱá,.¤\9e×m5¯]Î_[Ù¯<«¡Pó×\12Ù.èù\v|\0\84ïC¯ê\12Ñê\8e?¤NtÃiê9°¶ãX?|°\94öÎPñV\13\8c\9eKÖ1[ \8eö|q'yÎCß4¢ªN\86?0©n=\95*ë\98î\9a\94Æ2ìô9:»M\9b\M[¦£\8fÐ&\1fÔ\1e\17ªc\f+\9aãCzc\11\9aw®4\86Jk¼Zg¼¬2Z\18k\\0Geea·Ð\1aÛ*\985+\8d³\18½\ 3{Ê\97zãPé\8d*P\9ek\8eU̽ª\8eÁÑÅJÝq%ü¾\80\1dÊ\10 \19o\88c"®Ñ1¯Ò+Ku2\14ÚääÚä|¦M\9eé\92®J.">C¡K>B\93t5ãL\91\f+\9ad纤aÊ\95ºä2\82"Û\15x\85\ 45+TÚ¤k\1em\15GÑ{^½è\93Û2ÌÙ\14ÊÀ\8b%k\1f\96d_é\94\17R4F_4joxºæ¹°ü\94Jf(tÌÁuÌÑ\17\8dü¿¢aº\82¹/â\7fi\15\ 4×0\1f¥_²E{U½\f¥~ɾ\17\99ñL\18J¢pf7(¢e0×}×\ 5Ö0GöÒÌ>ÓG\9dé\96gÚæYfyðYÞ\9dy¿Z\9båN-\a\83\9b\93d\8eu¦Ýý%³l!ëc\ 1I\96gù?K9û\9bîð>¿a©{Ö\0\vî=\f\17´ÏZÿÌ©\1aB\11K\1fbvÒî¯ÑR\1fÔJ\97*KXÑZ\1eÒGïUYB¥³\\8b^VYÂ\95:KÖF\97pÁ\8b\90çPh-\97ä[ób\9di¤\95\88[¡5,¥Ü3T½Y\ fÄ3]£»^7÷\95-â~=õ\9aùNå|\87{b\8fïÑP/ª0mXÑP\97ó=®è¨y¾\8fõ|\87U-µ\9eïKzjö\\16\8aj¸ ÕÔºêºÿòlƯÑh\1fÔ`\97êk¸Ww½Gs]Ä]\8dç\16\8aGé\97ÕÖð\10ÄÇ\85ù^±5Él\87³í=,t×öÂ\\8f\85\8fºðR\87{õ×u{ÓEOuç\ 2ö\99=\8aÝ4w\fXE\1f¦\96\11à±FæM\ 1ÔÖ\99k\91ä\9e>Î\17ôÜçëòV=\17xrÝsé¹ÞÙMzî´¦æNÐrûEnå¥\9fK\91/\17sÜÃêW±¸¨Nò»¿Ó¸ÞáC0Þ+Ïu\7f\87õÉ×¼tñ\ 6á\81Ë\1eÝ.uøð\13>²ÃkÛ\15bâ\8d?/\1d^y\91ë9W\1c\1a8\9c¾DÒk\1dH~\ÁгÀ¼Étư\0\1dHn4ªá\ 6\f`<jÈ^ç\89ÎÙ6Ä)\14\81Ã!Í8$\1aaç\0â\19UÏôBÖ\f\v¬ð\8c\14.(áCpxð\12\11|ç¹\16E¦3\9b\92j o\83ö¶\12?\ 5x·ýäĸ2i.'i\1d\8av,\9b¥\8e\ 6KÓ;Ïv.sl½¥\v·\16òÇ¢\rW·³\9fp~èê\9f+`\8aoF\18~\16\98â\1fb\87yÏ
+~ÁÀ.YìV\14ù\8a¬\0Ã8$õºb\1d6Ë[R\83f-f\96¶`
+ºûf\ 5¯<òv\13\9cþÙK;ÈfÊV´=[Í$\9cX,f3ÛOh!\a5«JbÙP¦\96UÕ\94\f¸=C¶\9f\14®]RË\f¢}
+\8c÷¼õ`ô\12\8e=:\0»\87¤3\12ôÖqÖ3¾º#ª\87\ 2A½DI\17Mjð@õQs\1c\f\9e|«õ\97¤eýì\18Dt·z#\1czn-yëªV\14\1d8\8c\8b6\853Ìðõ¤¿KÙ\82»e^aXM6Ü?ÂQ¿hµõäzÿðÅö\18'ó\8f¨Ã\9cõn?Ç\95véêý\85¶\v\15\8erݶ\ f´y\85\95\83g\95\93\1el\ 5zG(ÿxT\eÖ[¸ôÅSÛ¥\ eû§¶ðôK_:üAuX¢\14\968\15OÆÉ\91\12×\10*\f/±Ä¨è\16q \vëmX %ÊUß\8a\9aoEÜ\89D(\98¥gQò-T\15ßÊ\9aoVØc¨Ç¥r\1e;dL>Tñ\rí\11e<\82×ó8/õº,æ±VÐ㬰G8¯ñ±R2îr;+û\11.T\ 3¹¦V\v¹\§î\89ío´C۳ر3íÖ\1ex\84´O\ f´kfÚ\9f=íÍ\96öå\81q\a\ 5r0qrà\91\13\ 1gÚxØt\91+ï\1dy\93ͨ2\8am\95¸\0ß\89KðÕ`\8aÑ\1d\1eÙ\1cº\ 6GqY¡rnÜo\ 2u#¨\9bAsª¯eY\ra\91dU§X\1dVS¬ê$+.úêyV\9cßÝ*\12ÒÉ\13®\8e*·\8a¨¼óÔ«××\99< Ë\12±¤q¹À^³²:ÏÍJ\8e·\19\1du3·"óì\f}\91¡
+ëvXm\17J"qJRÕÂ\ 5\10\94íS[¨þ\¡U\8fmá9:ùáu\98ú\8d¶\96Û£\ fJ\81\8ef`|Ú>Í-\a¨Mc\8aý¼\0H4\14Ûh¦{äw8\ 4\9e§»Ýw\81ëìÐ\916!\8d©!
+a7YùÆÎ¿\ezúbhï\10@²IÝÝÐö]uÝú\19õõ#õÚÇa\13¹\18î¸rýò\f¿~\1c\17(\8fË÷9\14ÒªG!UÀá\95GÒü\91"°TE\ 1<L\16_\9d;\1e\9d\ 6[\9cV.üÒrÁo)÷rRÌ\92\9d\82Jl\15TdPh\89Ný\ 4b¬¯\r©Ï\98ÇÏê \95ö|Àzþ\ 4\93oNÀy \10É\95еR\9d'×ÌË\ 5®[\93\97\r4c\81\ 2´-Ì3f\9a1«\8c\80Of!·W¶xÞ\16\1eÄyjG b\1dÆ&rí\9d¦éh\1càçë´ÔÍ`ε\ 5\b-í¶\11)\97Ù{ø,ÝI\ ek77\83"ÎÎ1v\82\8bÛ[\9a)
+a5Ã
+ÀëY¡¡[;zÌ\ 6ÿ\97?½ûüöï7»÷¯ßü;íìêϳêUë\b¬Ùó°\86¾\9akøÀ\ 3±RÃÇ\ 2\16Í\ 3a\88«\83׶͵{êÊ=\19XõÔ·¡ÈY\e4o±¬n['¨í΢N϶J(r\15-Þt=[ÑbN\8f«1§^v>\,sy^èò\9eR\97®\ 1î\82"Ì©}Ó\8bÇEùË¢\0f\1d%WVTXÖSX¢êÞ3³AãWmr˨²ÒòBÓPáé\16\15\9a\82OóàùlËúL\ e°q±>SA\18Ã\83¡Æ%\85¼bÞC\11j\\a\e\9fO}.pº>÷<ïaµÆérê·å\8c_?\97»fYcËf²®×¡s)3Ybx<Tk+C\93\9fÕÚ
+Ý¢ØÖ\ 3s\99#E=N´`t=ô¦2í¸Ê1U\9f\9fÅ\88\ e\1e\v¼\98Ù*ÿ8\ 5¯_{©\82m9Ãe\1dÛÎËL\8f¶É1ס\98ì<ÝGw\93Ø\86oÕ6\93¶éÇ\1e½º\1e$\91\8aõ\98\11e
+
+\13lY^UD¦v[ï\v~Ñ«{l\a\94\90£\86-÷\8a(³SD\99È\1ehE\94a×Xâ\1cö\99\85&8Å\12\a\16;¢\fü`\81\9d`p\80\91ºÀðK»ùÀ\9b¶c¸¥\1dÑÛ\93Â+Á\87µÛ\1dJ\eä㫵\°D±ô¬\15»\82\8bç9£í¦\9a]aº\84h²\8c\a¼\12Ñ.<\ f\9e Ã\990 I¸\ eÖ®Dµ»m.ÿVk¯=\1e\970<Ë,\16 4áú94dÂÿ"s¹\9cÍp宼z6Ã3íI\9fÍð\98\1d)³¹Ô G\92PXOë£|Hx&(Ki\96 TD¦\ f±í\a>µ\92/\ 4\95>W\8fÐ\fo¨\12uQ\8f£\ 3_þêã\87ß|z÷áó»\ f_¿zU¨wå\17áWßâ\9b$ßüæõçÏo?} ½ïôñý»×_¿%\95Ï>mÚn¸ëIjÚ´ítGkbÓÏé®\9dÇ´IãtG²XÏ\ f»å\7f\7fÿ\1fôß÷ü±Õçÿý_øÏÿ\87>þo:ø\1fôþ\9b_nþí\7f5\9b¯ä\92ßÂ\18e7±>7ßÐѳ;mþ±<j\ fô\8fe\a«\a«ë?Ðï϶\9f>\1fÞ½ùüîã\87×\9fþ²ù9ÛÃ~¶ûøñýæ'Û_èx|yüêÝç\8f\9f¾Ü\91ÖKcöåïÞ½\7fûåoß¾ùüÓÍßÓ\ 5ÿ7ýúÛþ\9a×ÇÔv4ùl2\8c$ä\8aÙ ÒVbÔ)¯Â=ÓÊÀâ!½\95VËæ÷¯ñV\11ÐM¤ß·ÓxGë^\ 6 \ 1\16\8a^j\8awpClH¢¹kH&Ý´cGßÄ\96\8f\90\84=mÚ¡»\ebÚìùºQ®£³&Ú}\9b¾£\aIc+=a¡Ò®¤\9e\1aºn\9aî\88\bèuÓÝ\88\85ÝNý]\aH'tO¢<=Ö8Ó\87fÜü3\9f\97\0\98\85\a£\9b\12åØ\9c=þ¿Òi\7fÄ©m+_Dê;âÎübm\84}3ÒÑx\17'z°¾\1dïFR\1e6tû;\12\ 5éHìî\12I\8bt¤»\83\98&\8f\18Û»\ 1\89ËD\10îz\94 ¡\9dH}\8d\91ï\80l6:2ÈãÅ®Cu¡^¯ìïh1à<Z\16\1d
+\8dÓfT*G_m\83qÂãPgtÏá.\8evÏÄ5ÍSy^\v\88+¼U\8fêë\9b\9e\91Ë`\ 4¢\91&R6è\85Ñ^\9e\9ezhèÑÒ|×#è\1c¯\99dj¦;"\1dxñ\16v§¸y\83+\87V\a¨íîZD²\93\8es\aYw\13\9bþn@¢v?Ð\88bÈÚ¹£÷¥§æ{Ò:\18qaC\ 3\9f&\9aé\9e\86¥¡\99\8eÍ(C\87Õ@D\95\8eÐä\8c$#Ë-iç4\1dMPl\a s¡\10ûL\8f\16[\9e\ 1Z\04Íg³¹/æ\99Ø\ 1\93\8b¦\et\9a\eêi\9chUôÀ\ 6\8b `\9d¬¿\96\9e\8aF¥ã#²r\ 6Z\ 1ÄSäa\9aDÏÐcyÒ>!6¶éæ e\88\92¬M\98¿º\99&\81Ö\f\1d¡¡\99õaú&\12\ 1\88Xêôrí\80óh\8ePcª\1dfz\8di¤#3M\1fÖù\80ÚP4/¸²\9bã\1d\ 3õC\8fÒy\1d\9dGË;53÷EçÓSÐ\874\8er\84·\96\I_÷4uÔ;Í\rEbnw\11U´Ñ\17R<E#\ 3ÔcâuMv´\1dÁ\82ùh7´t\ 3Úg\9187\1diï"²ï;<5îÝö4\vºÃ\89)ßM(²\85\91í0,¸\90Ô\11:ÒaY4x\ 6ZÞ°üù\11¹%\86\85æ²ÅæÀ\ 2éè¡gÞÍX\9ccD_\83<kÂãù³\ eD\84\12=GG»\9f\1e\80¦\ e[\10Ô¨\eåÃÙ*À\85»?0y=÷\ f¤þ§\9bW\8cÂ7ÑÃ\11Ë\80÷\83d\12ÐÈ\91\ 1\a\84\89¼j7$Å\fðÎà\1e$-Ðþ&©\82¾Þ}M}¿\8a\89æ\9f\88È+záD¢ í\b\9a\ 6:÷UÏT%Ò7]Äb¦M2N-Ö\16ñ\88ßc\8d¾J\ 3\16\94ã\9aèF$§`½á-\97]@à \9dGô\9d6\1dÑ\1c"§t\7f,Vº\8c®¡®_Ñ\ 4Mc¿r1Ý\9f(\ 5\ 4-Ü?Òº¥\85¾{Ôý©\v\1aæ\ 1µåG"¹wÓD/Ê÷ÿ#³ Ýn\9d±ý¬ü{ó³_}üL<ì㧯h&þÞ\9dV\17\87øg¿}ûúý/_\7fþôîÿÐÉ\9b\9fì·¿0\91ãw\7füøé\eùJ9"1ϯ>þáí\97Û_Ì_Ò\83|ñù/Ä1óí+¾ á÷_Ùò\887,\ fû\97×\82\8eðùÉO7¿ÿ\17úôß¾ç\97<ðw8c \85Ð$¢¨-\16k\13EÖ ±&\1a\8a¥KCÛ\8fô5ÉxÄ\ 2Hh\98ÁØéÿ\81ö ¦w3*ëÄâ¦ù ýJ$\946|jè\99\ 6\10\ fPeº,Ò\94m\ 6Ú¶=ªo\92Ü2LQ8\83\9fE»v\18æ\99.£mI+\13\1eÀ\89x9ß\9e\19"°\12'åD¸,%êkH$X sâ\ 1D·"¬ü¼'\89ËÐ.%æFl\9dhÙ¬\ fI§\13\ 3Ù\80h\91P°ÁS\93\142oFZ\8aľ\86\91ÖS\8c|w:¯c\1aL\ fKÏHÔ\92\1e$Òê\1e¦ù\ e\8buÓµ4T4\ eD¦øj"\e\89´ ¹Õ\94\84·\10\83 \85\8cN"¾Åë\9e¨\ 6)"ôè üà±=I\14ÄVå^\1d\96{Óalg>\89Ä\1aÚ\r\184R=é\89iûðø\10ÿåB}r·N7ÕÜó£R\17Â^é)\88¢Ñ$v\9d\88\ 24N\13-$½\8a(YjxfÇ\ 1_FPS¢\bDïS7P?\112\1c\16Ã,Ü\87/£-ÙC\88\9aG»l\843hÄX7 \9b\ 3<?Dmqû4«\100\10óìÀÊ@?ñàÄ×ïèÞ xSZ\85|\8b\96øzÄÅ|\11¸"\b\fõ¤\133\bó¦á\1cQ\94\ fÝ\92\ 4\92ü\0\ f#m[9ÝÏ\9aäU±N\12<Ùv`l\84ÉËevP\847\9a\1d\92Áèrÿ\9bî\95ð^óÝ8NÉ\87\ 3/?ªü2Ð2 Ù§E\ 6iiHùÀ\0n; c÷\834ûq"æ\8dGnº\ e\12)s\12\bpóD
+)ÖbC\84H\a1ÉÈö$ì¡8!)^w°\rã@\87ÍÙ\81í\137\eèï¾ku¢Ó\1d>Ó\8a#\8e\84\93hyCbè!jáÅR/sCË\ f\10
+>\1a\1d©sÄy\89ÜcÈZ\94;ìpÕ\ 4\ 4Ù\7fU*\ 2\8eß5"\99óýé[âº4TXB´\82\99¨\13Ñ\9e\e\9a'î\9aæ\ 5¥\14q\90fwæ\8dض\89X.mDì\16\1añ\88íK2*)·\83Ó\18Ò\80±¥X¦ =(Ò$\1d\18Z\9em¥"8@j»^E[\89\1eSÜ\91X\vS#\123 ÂÓ\ 4R5\82FÐÍhÄcc¤\82\ 4\11P\ 6\1að®Ç9\8d\8c]\ 4Ç\19å½H+'ax\12 D¶/ÑÈ\86\1e\17L\9679I\ e¤ù\8f\9b\84é!i\f{\85édÂ\ô"R`\12a\8e\ 5î/=GÏ\9dÓå<¬4f#Ó7¢\ 2Ô\v\8f\92Ð@\f9É\16\1db\1e°`XÊ'¢\85ñip/Ü<õÒËlk\9cö\19ì\1c C\1dS\1fZ\80´¿±~\13&nh\1a9\81H\8e\ f}?C|\ 3¡$\91¹Á\ 3\81?O\90Ç\89MDÐi\92&XR§§èg\e\ f\8c(=v#c\88k 6ÜÁbB7J* Ò{èV"Ú\bê\rý\ 2ãÐÏ\ 3®è85uægmz\90\ e\9d\8c½êÁÄNø-gÜ\85ºe\9d\rk\1a\fÃ\ f@ñ\81¾ÃOf\aåî=Q¼\194¼ÕùríºÑ\9b´Â_ü{b
+¼»õzû³¼\87\1f´'é!Y\ fDÅõQ{(\89 Æõûè\1fþÖ´Ì\890Ä<*P^#«\136r¤ÐéòÔÁí!-ã\80\8e=:a¾QN\ f_ÕÐ"´IÄkF(¾6ÍDZä\89«Å@\8fÝ\82vÙ\92!1DßK×TOS2àfÅÂë±µé\11|y²":\13\1d±\ 5\fÍ\8b÷D¹Ì¡t2}·Ð\83\90 ¦Ç6\v©QDj\9a¹ÚRü\b\18ZÛxPô{ÐrÛ\9aè¸\ 19)7pOì\ 5:\95ír\12oDwP2ÐCw\84\1aS\90\8a\9e\18Ö\ 4]Èè dWf2FqÐë\18û¡¢K=-ö1u\9dS/\18\ 3\1aâäNß w\12\9d\1d+"\88³"ñ6£\94=¸1Tp#¥x/\16CJ\82Û\83\ 3´ô\ 4F\96{\13,\8cpC_îÀ¿\8cºË(\8eÂÔ\94\ 5ô$WÌ#d!å\13\7fæ¾;Ú\80Ä \8c\9b`¦§\1eËJù\8dÜ}\1c*¦\84y\9chõ\19çêéË\81\95kemXÂÍÀ¤%3À~\80ÎN\8fgl²\87\10\ 3úe\8cÔ\ f\94ìÖ\ f\1aS\86\19a\ 6s3¶\8d\rÂâXÉÛñ\b ô\\ 5\0\8cǰòg!CØ1\134°:i\7fD\17Eð\9e\91´îJ`Á\8dÆ©/΢=ÞÀØc\82O\ fi\e»¥\92\8f\88\8b\93\8d1
+\ 6\13\9e!\93²zÌ
+\86µ\94ÅðP,º\9bÄ\86á\98è1]¦c3\vÓ\98Rôó÷ÐgM@\84\1d\aok\12$M®2¾BÎ$\1et\a3»K£8«Að¡\8a«XVÌ;*¡¶WÑÂD_ØàH\91hM6î#Ö2mÜR\80îc#]\9b\98\r\v
+¿ª â0RÀ\10_\89ë\1d½w\13a>P\99\1eæ\18¦.&õ\83\12ô#\91\8bR5\80\9eÏ\16'Õ\1f°§Ù\96`
+\86иq¬Ô\10Øøf"=®¬À\98ÇæLSg@A\869u\95Ò\ 3C \8f\92©F¸¬\9di\ f\98ò\ 4s\1c\8b\1f¥\8aåg\99"\ 6
+BäevU\r¯\ 6bVêsx3\10%SúØF\88ñt½°g\ 3\ e½£ë\8fr7\1aÈ\ 4ý\84î2ÁøÊ÷\a·\98!àÂÜH\vxnð@Ä\16»FF²\ 3§\879\ 6º\14uÍV\9b\91ä ^\13Sj!+\12Á\18`]¢%Ij¯Ùqf!\ 4m3\88ÝNh6]\89µ<3\81\84¡\82\9f3Òl9\19\9d Ab;ͨÍÞ\93ÜCWMò\86 ¨\7fæîi\1fO]Ç7eöÕ±h
+E\ 5öA\fI\aê\b[§\18Ý\aµLÙi\11%Í\897zO\11\\80é»Ý\91H6\e\ 1ßTO\96Z1\ 4æ7 \1d¡oè\82\7fe¶£¯ sÕLúÄ&\ f\ 5®l\86rÈpO\9a-\1d2\eÚ\ 4\vP\84QQG¿í@|y4t\92p$a\ 5¼±µ4±)\rw\0Ùôù¦Õ9\91ºV¬\vzZ\84¤úº\90õ\93Ø\ 50ol\85ÁF6w±óeØ\12\91\19A m\9ex±¶=80\8b\rº\9eamë\88wåe\ fS^\ 3Ëeµîabm@?lÿ´ \9bܶ\19l©,6Ù\85î\ 'í7¾aazIM7æ}Ý\12'l:gè¼ùÛ¾çâ\10\e'\ f°~\8eÍ\9c\89H\vÉ\8bx¤\1ay\95Ö´DÅy¢\9d\1cµ\98\18lZ§ZíLB×Ðëè\18qÃÑ \16~§\7f-È&(\88QIØd£\e¹\8d\96â\8d`&7b\v£æ\84ûd\9aLR\fÝ]oh\94\eË\829\81\13w\98eYÑs\1eÐ\12\13`ç\8c0\81ÙM¢ó4§\8dó\12¶£\12\17*x\ e4O³c\egâeÎ\17\1aóÂØ\ f\13óXåqx\ 6VÊöê;`V\bÛð\8c7pnÙÂ^\ 2òìL\95U¥Y\1fÕx/Ö\1c\8b\9aÎ\9e[°zDÆ;\17÷#o\94¯2³Ïç©8\0\9b{\8am*\ eÀaÕ´\95Ð\0;|\82öî\82G>bò \96=ï{\e\1d\16c°ÈY\etI§\85\84×aú\91\ 1æ\8dÔÕ\12\11Ö\ 5/R\17Ø96B23 \fË\955d\13\ 2d´'Ðj\10(\13åpD\9c-&ña¯±"¿W\15\80\ 5CxÑ\86\ 6,ÌdGø.\98î»\88 \87\1c\89å£\ f\10\8biíÌ\1e\88,®â\96s×\89§Í¥Zì\eÖ°Lîm\896òrvñ\18GP\T\89®JÑí\fKëÆ¥l:F33\15Â8\1cJ\8d»áLf§õ.&\16\93êq\80\1d`.üãH3\9a\1ck:\ 2©Bô¤°oº\1a\ 1\r\1d\9e\eW6blØ»¶w²\ f\8d¤í\84Á¸ÎBO8\rú\8a¢ÙàÜÖ$#W\80`4\ae0\15 \9e4VC]\93£\ e\8d©R¦pÅ\ 6j\1eôXÓÉ\88e\88¯ÎU7öÊ¥É$8Õðp^Û`§\9a\12(ã\ 5iÀtEî«7¿\9fi\94ðé¥\ 4®nJgK\ fÉ·©¦LõA,MQg\r\16n4vi¹\92Ë.4x\92\\17\ 6\8d$\ 2غ\b®*´rî¬T\83ÓO|OÕ¼á¤d£\92\b᪠G\12Az¬\ 6×áñRØq®é·ãX\8c¬Ù\ 3°\E\vs;B\83í\8e½åG°$\e#4~Ô\1eÄ-\14\91\ 6\9dmGnÂ\88\89ø}o§Y:ü¼l\1f±¾ò\91ò\9eù¨?\9b\99^òó\9b\85fñ\9elƱÁp3\8f\8f\97\99\82ªa5s\91\r¾\1a\93|zÜâTM£\e¦òt\9bíÊ\97\84\9b¸\16KG-a¶ÂÜTæ\8bÐ-jÕbuÃ\9b/j·ÍùÂW\ 3^µ=ÜÊçÛÈ\r\81¾ÕÜ^XmI7+úÖÍ\96GÝÝÙ>Y\12\81lÆ4b\91\r\9dFOÜ\1cZ\92\9dl45êävU§`n~(\9d[i\9d"\9a\1d×h¦\e{+Òê&a'Án5V"í¦å\8a\94»\ 5ÚI¾Ù¨\8d)¸!ÛyǾ4w\e\8bq£¸s¢?s÷j;w\8eeÖugjn\83¯\98\9f[ê\9dIº1ß\19©Ûü+\86ë®\ 1gÌî=pæ\9d\8f\94L>\1f5aÀ¼\15./¸O£\92+Üóáò\87ûFÖ\8e\14¢LqT%\1ewƸPä>\9bJxr×N>ϼ?.\88e/Q)°\89'É\84:w4¹Üçþ¨J>t·\95Ë\91îÙrYÓ\1d`\85Dê^2\17\Ý\91æÂûÛ*\19ØÝr.+»ãÎåéìà+ån÷\ 3º|î\9eB\93àÝ\9fX úîv4}À\1d\93®2\98û²Ò,ÜÉé\1a\88¹A]Iqgi¥Ì¸KÕt\1ewººZä¾ÙByr\a®«Xîãu5Ì]Á\95ºæ\1ecWëÜ©l\9a\9f»\9e+\ 51\9ff\8a¤;±]Ùt_w¥\94ºKÜu×ì67õ6»×K5x\0kÁ\18»ºÌOÁ\ÇTj\90Z\19\8aRõ\1e R\8cý\94Utâ\18w´Ûæ¬Æ\8fP/Ym,Õ}:ù\ eÙ\83Ù,À4_\94q5\1d\fÄ\1ayc¸\89AÞ\93(\eO\9d\99"\86Iù\97\9b,\98&Σ°\187m\8c,-CòSëÇHwb\19¤´\91ä³Ì\94\92{2sK¾£\99eÞTOfæ\9bü\ 6fæa÷¤½©Ø\82òP\98±(\ fYiTÊCkÆ'\1f~³Où,\95V,\9fL³uåù6sØyØ\ 5n\88Ð\95\1fkÌ\8aEèîþ\14Ö\ 3X\90ÿ\9c\83x\1f\ eUiÊ(\95\ 1¡\83P°tÝp\90
+͵0~bS\ 3\98×\80\84o\9eFb\ 5-3a"J\13\13>;Â\13DÔoF¢h>\ fÑa`\ 2Ô\15Û\19\ 6\18Ocª\16j>\89\ 4\8d\19®|ï\aQ\97P|òýì\88¬S{.?Ï\9f\1d¬\ 5\11\8dg¯ø² Î\16Ä×A\1d£\13«Ì³\10åoê£\9d¨âYï\81}uÎ\7fCÌæ3X\83:;k\10·JÑ\8f\1fÑû½1]\86\8fBÓç\10bêif¡\9dÖ\14Ç ç¾i\8e\87h\160b\9c\1dëÑù<{öÜ×ò\1dß¼,\86ÕÅ\10»\8a$À\80\93¦aÌÛª§QN\ 3\94SÛz0áôl¼,·(\ 2e\13üK~\14!¶\1d\E¾Ý\11\12;"¤½²ðçÓ\94tä®\8cºä[\96T(?\9a\9fç\8fo\14|Á\17\82p\81 ØV\9cDYþ¦<\98à\ 3\9b
+r\90\ 6\91uü\0â\ epFE\ eòYº\13s?¶5õno*ê\ 3~\80øý¼É51Á©ÏHz\96yD3ɰ³ìU¼\9fÅ»½Ð\81Å\1a\80>\1dÙ\8bUJ\ 6qR\ 5Z\ f²z\8b\90\8b\16Z\eBÌakJ¬JÑà³HÆ\1c¾\81¿¼\95óDi\84;J\1cx½Z©ÚFÒ\ 4jñ\9a®T\7f\97Å]\81\834Ðô\11F\ 2B\ f\83\93(k4êü|r¥= ò# \89âÈÄÊ\19´@\18¯D\ 5îE;\80\87].lÕ;\80\90\17±õ\91x\9d\10\8e\84Ì\18v!Ïf\93GØPk®\r¢Ybç\86Ñ\ 2b(\96bÏ\16»n\10¢\94Wì\0;Æ<;÷bkq>\8f\84"V\8d¼+M¡©ï8\rjþñ'\83µ\83m\vþôp¸ÈS\15o\89£=ûyl0z\92º\1a¾\81\8e\17ºâ\88\82j\q!\87:øø÷\93åýØ\1cÁó#)\rå\öP÷`®ó9ïaÔaó\88\v\7f\88rù°w\86C\bm\99!ÝD|'º\12{\ e½i²\ 6$~\8dåYÞQ\8b°\87¾xiH\rý¬~\a\7f,H\ e\1cçá\8f\ e\8fé\ 4¯¥¿b©Úä¡\0kê4ÔD\86\vy.-Ç\89Ú°Â\81\89È\16¹R\1f\84T®®\99dÚd\82\1a8ÌÀÆl"ç^l¶r\9dÎ7Ì}XiyIÐ:\16\a«\1cÚKüZr\9d¬¯\19)$L\91u\ 5Â\15Zeà!½kì\9c²òMòIºâs7¶1ª\9bù\ 6²gòMf\8fm[±|·¼am\bò¦¶aÊ\9b¿\1cÍL$lÔ3!±\99É\ 4§RN\9d0ÙLgâe«!?E¹j21´ÅuN/\97TõÍ*\ 1_Kc9'à\ f%¬Àp\ 1(\ 2¹Èþx5¦\ e\ eý\86sD\ 6ä\8dJ\8aÈß@~dzsÁÿöO/£\91G£çÔGäJZú!\8b\84\1d#ÛÍ\9cÍ\988äp\80P\aw%Èõ\ 4q{ 6Ð\8c\1dû¤\1aË\ 3\1d\11U7\16.5DØp\ 6$\1d\91°AóôÅD[tv"\v)\12\9eÛ¤\89\82 Ø©\99 (&\rHec#çXÂÖ®´r\84B\80Ç Ó"üÈ ë\93¥\1arz\1a\93O¾eGû\7fÐ|¶\9e³×hëÇ\ eW"\84g´äLä9b\93÷ÃH\9cºM\9cn\9aC¶\86N¯DP\b\92=9w\92=@\b÷èá\19¶(\8cHÜ¿\eÆ\1c ÐÚ\93LIB3ØÜ\ 5\97#r\ e\11\83\11%\9du\16Ã\1e_\as>²iù4\8eù¤\87\96äLDõ²Ûül*÷á\8a\1cºÈ6Àf33\14àÌE~_ùjïám%ê\8dq=£F\8c\8dØ4íæ\15Bf\1a\92p^õ½ø7_éw\91\89S\94\8cGR\báC\e£$Ðá\14zÖ\19WA\95d\ 2vO\ f\9c\83B£Ù"g\97ó×ò\ 3´\88\8a\98\1f¾?\88<1\82ÝSîÏ=4\88Ië§gÈ\9f{h\90\7f\0 tkkã*m\93\86\8eøläTuÈÃ\r\822GF\9e\13È9EÍlz\8eCåDvxªX\.µ\93f\94\r\vÃ\ 2g&@h\98Å:Ø\8c¬ö\8d\92\a\ e3F3\9bXʾßYdιA|ʬáÅ\907ILèX\ 3à¨P\88®èS.\1cå|\96^\11\f\ e½RT\87ØYâ\ 3ûîð\b}gé\ 48KÜ\14fÚ\80\v¼i$Vq\98ù\86¦&$É\925-\81#þ\8bÓ\1a{Gïª\15ÙzqËFµ\ 2}08]ÅÂj\8fNt¯\9føQ\8b7\84evPù\\ 6\ 2\91Ï\1c«å\83ET»\95á+\a\15á¯ìáòÁGÎ1ÇîÈô\80BKÚva\87)N\9aÄÖ\9f;"Y\8bãuò\r[\r\130¦ \ fÆ2\19rÞýá!\98uíP¼#ÉvÝ`\19\ 6>\16\90Û8îÚG\8bÎcÞ\96GµU·\96\8f*\8f>üý3[5m\86\1aXCSa \81èÛL}\8e\13\91 ÏçÙ¢È}Ùâ©ïiK,?\9b-Ãüü¶Z«÷ôUíãá+ßÇÌwH9¶y'Ù\1c\14{Mçi¹#ͪvA\82Z\ 1ÂøÅw_þöí·o_\7f~û\15ÈRE\86f'\17H´\8d\11\9eGö8\168\0`»Ì`\1d\a ¦>C\0\0DA\14\80\12\ 2\0G%
+Å \0À\11ùk\87\0 _õó\97\10\0àçâ\920\b\0\0AÐÕ1C\0p_\1dû]\v\b\0"sbÖr\b\80Øõ\12k\b\0\11p
+P%J\0\0<GÏ\8e\12\ 3\0\88}/Á\11\96ÿ\1fáóå\91)\ 1\0"üÛ\1c\99i\0\0\10K»\89\13¬\14\0 \8e0¦\8fUþ?©*ê/´ü\7f\7\fÀ=°lÿØ\9b\83¸ÌÿÇó7\1cÊcùÿ¸R=ï\9aÿ\1f\11\8fÏÏZ\ 2\0Ä^\97µ\ 3\00
+\ 4+\8f\ 6\0p>ÿWI/\97S¼¯\94a\18\ 1`P\0\0Z\ 6¯$}¾×ôyÈ\14Äô±\8eÆÙ\10\0f\15`ú\b\8bv\83¨æW4\7f\88R\81êµÒ\ 5©ÆsT\ 3f\ f\97-\9b\ fX\86\10\b\80V!\0ºÕ\a\18@6\86a4\b\80I!\0®\7f\80\11Á\b@{W\b\80Ù \bþÖE\98Û0\0nBæA|\98P§\ 2\99\aÁe\92¬`Ð<\11¡|bïVh\1e\8e\ fcZ\92\91y\10é%p=\ 6Í\83`0¦Q\ eÍ\83¨;\ e\88(¡y8D\8có\r\f\9a\a7dE¡\82æ\81\1a\17y3\e4ÏÙó\e4\ fö*\7fQAó@+cµÃ¡y"ä\ 4\98»\1c\9a\a\8e<F\ 5ª y"ÇÂv}\86æ\89lû\aµ5h\1e8üøñ*h\1e\ 6¹\81:äÐ<\1cm\87Mà\90;\88ïÓ8Ï\ 2\9a\87ç\ 1ÃX\9c7I ²Aó`DÀR+}
+½é»+2\ fÜ¡ÌR\f\98\aÁv¬KTÀ< ð2<\ 6ÌÓ"$#¦\ 2\98§%\ 5Tì\83%0\ fÂt\98,\e0\ f8H\87øA\aæÁZè@Õ+`\1eÜ\1f\ 1E\8eË\ 3\9d\92¶Ã\98qyΧÒ\98<î&SUZ\ 6\10ò4Î)\e\ 6\10ÊÔ "×\r\ 3x \8d\98Ì\86\ 10h\8e\81sË\0B\99¦\1eÃk\96\ 1\8e*\13\84¦Â2Ðö\88=Æj2Ë\03^\90\17·\f\80Wv\88\7f+-\ 3¼{ÄÐ \96\ 1\Ȧ=·\f l\89åÎÊ2Ð\1a_sË\80Ä\bbm\98e \85Ù9vCm\19àÈ+¾Ò,\ 3<y°\1e»e\0W\8a}¢´\fHø¯> ,\ 3\10^8ìÞ,\ 3X@½ì¦Â2\80]=±Öo\96\ 1Ä\9fq ¿[\ 6ΧòÉ\96\81+quÎ-\ 3¢V·\95Z=NÊ\b\17\86\ 1>§\ 5,O"z8KDãÅ\ e8sw\98\90\ 4\vã·\0ë\9cY\ 6\1eº\7fi\18xÜý¥\83ç³\vü0,\8d\7f\r³À\19¢N;¹û¿@Ôa\12\9eú"s2²Ë Qb\9a\É\8c\ 2Bb\99\81\89Í\ fviY\9a`+=`\97,\8f\13ä\92ÃèËlO?ËrBÁ£$êZ³F±ß\1a\9cQæ\96â2E\ 2\11'\1d\88-Ó3ËQe:\ fu«Ìd\ 5Ý\ 4O±tW¼\19³5Í\87en$\91µ9i\96\19\12þ°ÔZÐ\bÎo·ä[¨\11\1d̬e\8a.Ó è\98\96È\eI.dÕÅR}1Ò$Ö´UB0Ä\83\ 6e 4k\98TAÉ\ 6°´b\84\89ó\0UÉÇÌ\19: ïCÔ+ºá-m9Ì\b&\92xÚ\9cè\fÞ)\9e.M\87\ 6\19ÄÕ\96.-<²ïê¬j'¡\96|\rbÉ\92\8f¥g·ü¡\8bU\127:g{\82¥z\83¬3C°dpæ\19àýUÎ8T,\8eV¶Ôr(\83óÀi\v\92|\8e\9e9½ LQÇCÉ\ÚYpöM\f¨¢Z»\1d(óáóA\91º\10ÜÍÉ2ö7\922Àìʼ{\1e\11,VËÎGô2\16\94¥ïÛße\8e¿\1d3 \0\96\aù\80B\ 5àÖLTK@\ 1¼+\ fÁ\ e ü\7f\ 6iR\\ 2\ e\80NSªÀ\v8\95@lK\96èÓiª \82 `ÊxvJH\1dVÄ\11ù¬x
+`§ld)!u0b\9c\9e`Ð\fü\ 4\1d#Ù x\ 3\82Ã\ 4\81ª\80x@¬\19Ë\ 5\ 6\ 4\ 1\ 2ÒÁ®¯H\11\11&9ìà\12N\82©\f²d\rt\ 2[\9a½\ 6\ 6K\ 1I\88M+%x\ 5\88HÂÚ1\88\vpg¸[\r\ 3\ 3r\84$ze \f<\80\8a\13\f¦\81\9e{¸@\rm\ 3ïŸ\9b%$\aF¶- u8i\ 3þRCöÀÂ\ 4¡,á?0\89\9cWh !è\9ay\8fÁ\88D\ 3Ð,ÁF\84È\rÉ!I83\aa¿\ 6ZÂ\ 2
+l_%´ \e7°°\14ÿ\ 4B\1eç\88\18@
+\9b,Ø\97]À¨À\1cÁÞ\18\ 3[iá\95ê\10; p,H¬`Á®\ 4máUÌ\ f.È.|\15\8bZ
+ý\82ýé«\ 6\ fÃò*Lr\ 6!ã©\81Ì´½\ 1\14\15P4-\9b\81úÞðj$\8b\84&Ê\0mü@ {ã\aåþlu\91¨\19!*\ 2GK\ fÓèM:á4þ=OqAËõögu\ f;èOBÌ\84Á\fíQ±y\18e£z\1f]pþÖX®ðÊù¸ HE¬S>vÈ\1eâUjã\v³5\ eØ\ 4 À\1f\f¤\9a%º\8a3¹|.ñ-m>\9fl°1<p½$$ãÊ×\r²æùta!÷\8d±è\8aÕ\87\0tÄ%Ø\12e\9a\99a¡ \845ÄiÊu>%\19jÛ\f°ürÒ\9cm\176ËÎ\ 2\957\15î\8e1µ\9d\a(RÎ{ÔÉÜ)\ e5$Ö¬~UÃÍ"Þ\94\9c\ 40%\1e**\ 1ò\rÆàè\ U\84\9cÐ\8c\r\13³\1aáK\ 6ÃaÀz ³p\9c0\10nºI\85%F:*$\17¥\8d£fl\19íd._c\96Í\9c|æ4¸59©4¢@9\ 5¿\0Ð\81$Èê½\11|Ä\90Àb^\ 2èÌ\93d¶\1aë°Ð?ã-|ç±æ?4a-C~(\93"\9d\98³
+\9c\8bÅ(IP\15¯CxH\93!æZÈ+\8c\ 3g,Ó\ eT|Õ\ e:ó\ 5§\ 1\17sî\1c{\11¼*\1e\8epÚ\8c\95\83\91`ªtöw),ØA\17)àBH©\10:\90ê5 \ 5®\14Mb\12\8b\8b\9fÅ £\ 2@("\8eæoÕ\82PìÄHàò\12âr1;.Q5½\fk%wao@aué\fã\ 1\9dÖå7ø\8f\98\8aTb^ÛËø\994\by\ 5/kÒ"DMX#J\91\92F4v\19ÇqÖ\848\95J!²\8aæ_Ê®&?\98\84\8b\10\ 5\98\84T\ 2\9e4Q¸\94\92I.å~\1d5g\90WtÐ\9cNöE)\90÷\8d\84,;dÎ(Þ<ÇÉ$9*ÅZö\1f:I§1¼ÍA,J¦?ð\82ªÁr\88|ñ\8b\99\1e2vìÄqàÏNò\8dKef\1cePLãA.9´*S\89\88\85·\v\90\1c;%\83\95\12[\99³òÅï0u5ä)= *\8c\99\16G/ÁÓçz\1eH\84\984ËT\1f\18B8ÚÎ2\82pï.ex\1c\0\1f7ã\ 2\1dGztp\9cöNBÌ4;)©\8b¤FÆA¢\1f;ð4×\89Io¯©P\bma«l\89\8a3\fæ 4P\1c\18÷\10¨^aâ´\16ó¦9Z,X\82èX\1aWS9ÙükC±ë\1d\bÇîRâàø³Xî\99?q\89\82£ï\941pì¥-×Í\87¦BÀÑñËø7:c\ e\7f£\93P¥àéDy¢\9eϤåòå /sþ|]xj .\9c\9c=¨««N2Ô%è¹\88¶F=]Q×q\95Ôè'iê£í\85\9c\1c©\e¦Ê¡ÔMå\99\96¶é<\19S7f\95°)[7guêÖö¼OÝþ5Ô\8dÒ\bO"5"\92\81n\94ÒÔ87J\8e<gÕè\95eµ\1aM«r_\8dîY\86¬ÑEÏ¡Íä³Ìµ5\1aë)¹J\83=i×èt\95ÛkÄÜS\80\9dÜ{\9apf\vE6±3\ fÏ9vþâyÉÎ\86ªüeçV\9eçì\fÍR¡\9dí\95ÙÒÎ\1c=«Úù§g^;\9b2´\9d\e\17ç)ÃölïâH\91\15^\1cÕìq\13\ f\8a\ 3*DT\89è.kxº\8b#\9eÓ\9e\8f\94¹ïù¨åÈ\9bøãiô.$Uéö.KyZ¾K[\9eº¯"Y\95àob\9bã\0\98\çH\ 1.ýUØ6.#\1að\80K\92\15¶\8d\v\9c\ 6c \ 2©Ã\1c¨ÌZ\81!\98\ë\88 "õfH\ 5\15\8dkä\ 5\95\9f3>\83F\8c\18\80\83Êà5Ì\83\88é\19ÎÆÄxÇ\8bPQ¿B\95PeÀ¡'LY0t
+×(J\10\vW;\14êÂõ\12GÃpõ¥BÍp-ÇÑ5L\ fr\0\ eS\96*\9c\ eU¨\1cËÃ\14.\87ûpµ¬\82\ 5qåÍáCL½3\80\11×\ 1+\1c\12Ó\14\1d®ÄuI\874q\95³\82>qÅÔ!R²îj *®àVP+®\a;"\8b«Ê\ 6Úâ
+u\85ìâj·#ÀduÝPbò\91\12M&\1fµ\aqC@áTSKA\85`ã\ 6\85|\9e\9b!¼/?RÝÓ\8fú³\99\85#?¿\19B\16ïiqH6\1cfQÉ#ff\97zdÝ:ã3`ö\9b<Kfæ©gÓ¬AyÖÍ`\94W\86Ù\95ê\ 5dæ'_gf\9fÊ+ÑÌXõ\8a5k\97¯l7\88ùâw»YµEܼæ;É-p¾ÙÌNWïI³æå½kö>ÝÝÙ(XÒ\80l;4R\91\8bFMÜ\ 6Y\92\1c7T\1a]rS¦\93.·xV\ 4Î\r£N\ 6Ývj\84Ò-¬\159u;¬S]7Õ*Yv{nE»Ýìë\14Þ-ÃÆ\ 2Ü~\!Ù¸\95Ù\19\8aÙ¢+$\e7YgþdVmganü®8\9d\9bÈ\9d\1fº\15=óL3¶×¼Õlò\99\a«Õ>si;P1s;è<ß<\ 4Y.0GB-?\98»!Ë\19æ\90X;R\8a,ù¨\896æ\ 1Éâ\8f9Jj1Éü)ù<s¹d\91Ë]3\95hf\1e\1c\17àÌÇ\93e<s\ 5Õ² y\8c²ÌhN¥,Wºó©\14?ÕCåBªû°² «\9e®JÜu\7f\98KÅî1s¹9{ÖJñÚ\1dp.\86»\8bÎ\ 4uwäUâ¼ûûLèw\8f «\ 5î8¬´\a÷/º\92á.H×CÜSY©+îÏ4¥Æ\1c\9e®õ¸[´P\8dÜwêê\93»W]Ãr/l¥\87¹³ÖÕ5÷ç\9aBç^ßJí˧\99rhîcW\1fÝÉ\i\99î\8bve4û«M_Í~íR\ 5g\1d\112âê/?\ 4ó\1dÓ\90\99ØòH\94ztä\84Ñ>fu;²ù\ 6dÆ4ò\bã\8däó\17z;\82GÇ1\15\b·LõE»V\v\0\88«\14o+¡l0ql<0k\ 2\aÍÌ\ 5ö.H"\9eCªN\99i"²\84\9cQ|#X4£\92\15\ 6\ e?Éì\1f¹\1f3\91øíJ\14\e\7f(3·äg/Alü\1dÅr\93\aÁ\f;y°JûO\1eT3\13ùÀ\9b\1dÉç§46ù4\9aE*Ï´\99¬Î#\1dpÃ\97ôô\v 6ØÖ\15ø\91\ 4\186\966 \90\ f\bcS\10\b\85\85ÀÌG&y%|\ 4¤áÄ0ª~^×*\ 2¡AQD¦Þ\v\f\89â4\ 5¶È]\19øE¾e \92\91\1fÍÏóÇ7À\8d³·|Y\13«°\15â\ 5V06ù ¢ÏdÝGðiüï
+Åæü,\ 5 .úñ#\ 5¢L>jÈ3`\1c\89åuC§É}\97(6\90LÆI§[ÏÓGÏ]-^ðÍËBX[\bð\84±°WP\ 5@Ó
+ \81¡CM\8a\1eì\0R0é´m½?{l½±\0\9fBÎ\ 3bü3\84Í ð#U.\93\9fd©YÖ\8d£cÙÍj\10-}$;è\ fm\94lùf/\94à\ 2%°]X\0ØøA\ 3\9eñ}hÐ4~ \ 4°Y9KvaîFwe\ 1(ãÇ\14u¦ØÜ"êgªS ×\14¤Âβ÷ð~\16/öB\ 1\16\v\0*ôP\0J}£z»¨Ìz°å|í±Í¨"Ð\7f\aV\9eJô\11h²-ëK\ 6R\ 2ÍC}n
+d\ 2\85³\8d\vhH\18\88ÔaeñMÈÊòÌO&ï¬àÍS\8d±\92\1fİXp¥Ài\1a\\8bh½0s\94°.èo(±k ¡pV¦#Ä åKìí%\92\f\8e\8a1Û\0gXg±e*\80Z¾^Kì\1a\1c\15°þ|^«\16\98ÜW+E\90ë{"B\86\8d>þl\80hf\83\82??ü)ò\åk&ËLóá@\ri¹\83\r\192\ 3\18\9a¼\1aZ\Ð\17\13\80\9aʬÉû$E(\13\86·é\93I\ fΩ\94yÎéFb\7fðuáÏP\1f. =\95ë\8c¡JúÌ.`;\17\8bz\81\vr~\96wd\0#ù\86%\10I~0\ 3,É\ fo &ù%K¥&\ f\86\81¤Øp\19\8cJ\1eÔ\12n%?\87Á²ä 2è\16\9fÈ\12áÅçÛ``ò\920¤\98¼tJD\19_b\ 6<ã«Ð i|±\16ø5¾¤ý$[õÞ\8do\8eên¾\89ü©t\9fùsÛn¬ÞÎ7\ f\82ol\1f('\0Õ\80:¡ð\81wbâSc4§\9aA'M>ÓN¾|5øCT«ÆÉ¡¯®3\8a¹ «oV ø_\17½f\84\91\15VÚ\17ô\9a\17ô\9aG \85OÁ\99À\1e\eÇ1Õ\92\ 4F\85i\94 \19À\)EO\fë@2Ð\99©\14\98\b-§63\8c\99b'´¬#´\19^\81sÌØGT 0p\8e6\aÞ\19X\ 3Û¡3Ì\ 4\WJÕ\vÌ\a\9c¤&DU@ Z*Z\9câGd\8e^ÀL@Nå\94Áâ´doè]u\12X¸¸eRöm\ fÖjI\1a\7fr\18\12¹\ e@ù\82°\9cp\9d\1a\1f\aN>ëúb¨:@\19LÓbHáº\8c\1a6,C\ f\8b?ûÓur\90´È9´\85¶T\9c¤ð\ 5¹#\838È7,¡\10ò\83\19dB~x\83UÈïXÂ/ä±0\98\86<Zç¼Û¨\96\90\ fyô\r\1a"Ï\90ÁGä\89,a&ò\84çólQä¾lñÔ÷Ô\15æ\8fæ\8bÐ\1fß×jõ\9a¶¤}4|Õû\88ùî¨FÖw\91Ï@Þg6KËíhªï_\ 3e"c$õ\83hò5Ü\95\0&Ì\ 5Ü\15cñ£\88ªÃ]!zÑ\90\r\1cïj¤\11J(µåxWðdqÑ Ç»bqÂQX\fïj@\90~,à®\86¤¥e\1dîj\98Ë;\1aÞ\15âG\ 4\98Ñð®Pò\89\91X\1dïªï\8aÒ\9c\8ewÕû\95\86w\ 5é\81¡`\1cïj\80ß{°\8ab\86w\ 5¹c@¬\8aã]!-\92Q\ 3\1dï
+¸\12\96º\9cñ®àwgÜ^\a¼\82ð#5³\fñ
+a3Ñ\9eÖ\11¯p^?M\ 5â\15GÎ`\96Îfs\1fnC¼b \83Ø\b\90\ 1½~g.Ù\ 5àÕ\19ÞÕ*X\14ê\9cpA½\12î\8a\vv\99\vöòõÃæU7vp\86À[Z£]-Á®.Ü\1cÎ?Z¹»Çß\9c¯§)¦å}UFëO^!\1c\8eÄYâß?û\82d\85\ f_o~²Ûmß¼ùþ\9bß~üü\1açÊ®¼\ ePâÒ4ü\88s_oB\92@Y0Öá\12\14\ 5\an&V\ e\8541YF:\ 4Tn\88v)\1a¼(\0m \12'hÐÕ`K£\\18µ"r§\b§Ü\13 \1fPúLjÀ6SÆ\9cÁ~cg[\82^å $b\97&"ûtþÄP\12=D{\84ç$Ä\12ñÞ={\ 1Ã\92@ÅÇ$Ôk\92èr\ 1'\8f\12À\11ÙëÏ¥®Gq]35ä²\99ð°ðîG5±Ö°\94<Ú\ 6Ay-êÐÁÂÛ2²\ eÒ]\90Þ\b¹\17Ï\a`\9a!Z½MhâCd"\97&\14LF8\1a´TtÅ`}I+
+2\9f\18ì\8e\98\ 6&ù~\9a\91Ux³\19\91\16:8¦¡"TèN^\1d\98A Ó(ùÈånð\92=\ et\9a0\12\11M\ 2æÁ¶k(\84<:SÔª¹(\ 4\99à\8bF57\94á\ 3¿bª\9a\1apò~rJÎñ\ 2\b¬i\0\1a\bP"&ª(_\13\81é\ 5\84\ 3\ 4\9bGDKã˷$æ,\9eS á¶\0U\84\16Ënr\18³Q\94õ|*\8d\95\9f%~{M\8f4"\ 6ij\ 5íÍjÂ$¤¥À.äuc\12Q36\94z}\99\94:\ 1Zâ°H«C\93 \7fqí3«U\83+Ñ\93U´I4ç\á\95¯ó³Ò$<Ö\8bã$\145mÚ\C\a\8b¾\1dU$òZ;ØC\88Õ´j<)!È«\9drÍ\9e\84Z\8f³\ 1ÊZm\1f ¶6\80æñò?É\ 2ï½LP\82s»×ZOZL(5¨F\87\12JVo(5º\18,Q\9cµf*ßЪ\17áh\8bÐy«o\94\1a`_à\95\ eRBÐ\ 5´'¾¡\95KÂ\eµ\13\ f¡\96TJ0\9d ¿×*/%¸ó;\eS«Ð\94\10oÃ\15\¬\8a\13¸Ë\fÀ\19¯ö\94\0û\ 4J%WjU(\9em®;g\95£pË\9ek(i}©\84\ 1GØ\ 6_he¨R?Ø\85Zª
+£\1f±:½¤\15\1e¢\1fj\93\95¾J\88ËÄ+Hi¬Ô·ZNÎêg%HD>\8dVg\vëAÈ\84×âJQ\ 3˼f\97\1fáaµÚ^ÅyZÿ+!\0\ 5Y\1dù\b\ 2J\10Ã"WúQè\ 5Zü\8c#\8f\8a#Z\9b,\81p\fiöáá±\80\ 1\96vh®}\968-²\99\8a#l2µ\ 2c~´\9d\84\88xe5f\15Ã\98\v°%\ eË\9f5ÁÐ
+µ%\ e\1aD\9d"+æ\968\0\ 2ð
+Vô\r;mH\9aÿgµáÀP\12×\11²òq©m,¿QËÌ\819õ$\fûðp5º\84² \88\9cñªu¸r\9e{-p¤µí⬵\9f½ü]\ 2´\ f×_³2y8ÂÃÃ7°bz©\ 1ôÚ(Õ¯8´%!N\9aËÌya>Ø\fÛ¶uêÄÕE\19ø\8b/Ô
+\7f\91\ 3TPgÉ*\ 1âÈd O¹b Ê\1fL\9cægU\ 5\1168 ú\8e\17\1f\1cicÃq)WZ\91 þMä\ 3z!à \91\87¨Ëî\ 5\ f\11!\aÁ[ö½ÕEdLFÐ\a¯\9d\bÄDTtõ\1a\8büFÉ^Ók1rz \94\ed\83?Æ\9a¹\97\15u\ 4\9726è¥\1fqÖ\ 4\9dÃËCr÷\9cÉie$¹§Ñ\1eÕÊM\82ÇqP\8dW¤$Ú¬û×*W\82îû\8cx\85Ë\84Hq®?gU0\13ªÏ"\9fÆ«e\82P\8eù\9eRS\13\11¦<¬ZssTnè\859\19
+Ó\8b\ 3Zýι\912ÊRß3r`o×ç* eM\92?¥V\v\ 5\89g /W\14\9dI.â¤!?2uE\19C?j\8f\91«\98ºªê5wPÄv²\1a\ 2^\155«´V9Õûò#å=óQ{6¯ÖêÏïU]\17ïiKÓÇÃ\vÄÚ\80y\1dÙr\s½Y\eþ\\93Ö&Èk×VÓè5n}º½\ e®/ ¯\97[/\1d+«ëKÌKïæeh%z«åê¥|}Y{¹__ú¹,p¹E¼|°o¤ÿ\8f½wÛÙ$¹Îô®\80÷P'\ 6f\f4'3"rç3±,ÏÈæÀ\82,Ø\16\f£A\17{4mO³ ªÕ\84îÞù¼k\13\11_þÅîf\97,\r\'dÿ«2óË\8cÍ\8aµ}ßN1ì{-\99\88§-Ù\19\8bcëvRãØÞ\9düxT\ 3É\91\1cÚ¢Ó(\87FélË£æé¬Ì¡¡:ssh±dx\9e´]2A§VL²èÔ\9c\9dTzT°I>\9d\8a8é©SY'\8dõ¤Ô\93î:\95\7f2bç\ 1\91ÌÙy\8eØÐ:Áv\9e7IÄ\9dçÒ÷ú\ 5'ìÎó+I½ó\8cKòïé(L\92ð<2\93H<\8fÕ$\1c\9f\8eß$&\8fS:¹Ëó ï\92ñÀïÒ0\f\92/=\8d\87äU\9fl\8cä_O[$(Úß\10\fVM
+ÃøIFø4\90\929~2¤\92a¾_\17,ôi\94%[ýd¼%©}\1ayI|\9fVà\ 6´\80Fz´\16y7s\8bḛ̂WZ\9erÅÐT\93\85Ê7¨\968\rY|=}xغ\eIQja'\9bx\ 3ÌVË6lg®[`ÈJû\9a\85g'Õh\87onè\84µ\8e¯~4Õ·¸A¿\11ƪXê£á¿\11\8c×óÃAØ(7\17ò\9cû\10\8d\«
+ÑGW£QgGKMz$·û`è\18éµ EtÃèÛà8*d\98.\10ª@m\12é&\99ª<\8eÙ\9d"*p-X`áváÿg\f\84\ 3a%LSÛì¾\11;°\11s/\8fÛ\14ªKG\10/^vÐä0öëÌDó¬\85I\vÇ\93/,²@\ 6ÿ\94/\\ 5þãn¬b\v\9aìpu·Í\81%Ó%¶ß;\f½³\1e\81¹Í\eèüÙ\b \10a¦\18zá\9dH`\97Ý\eàwÓ\a\bK[ÁB\ 2l\ 1U\a\14\0>TÃÑÜ\85ot\1aÆ\8a¦ñt½W\ 5e\8c\ 2\94ê\17vÌî\16ÀzY\17\0/ÛjÙS\r\vÛ´
+»\18\v\80"Kö\89>\13-£vxò½\16Ú;mº\1dÞÙUu.\ 3ÿ\ 1þ\a\85ýõ\80ðgµmÔ¯S\18\ 2t¢|\16ä7â\11Êß</aÀ|\98^íZÜRÈO\80/õ*\16\92ê\9fª\9e%ð~r8\bü³Ýú°ñ\93Å\e
+úðbW¡Þr
+\1aØÒü1SMÅ!\87/ÿ\98Ñ\86\1a\91'\9bõÛÀRØ¥¯\ e5\10E`>W\11Á\0}¼/´{ä\fu:\96c£|å\f$÷Xµ\8d8[\95%âë\9a\e÷}Xþ\r \8cÍ\9b\ 2úe\98Á;YäØI\rRÆ\1d×È|m¥Çå´/\e\r\v\9c\96±u[YÜÞ\8a-Þxç\126^¨\82Fñda¯\86ºhôQ\²D\«4\15¤x?Rj\9fF\9ek½ý¹ÔP÷qÎîM=ÖÔf\7fùG\86ºCz 2Æ5bC\95®ç 9Ûm\ 4Jãê\aCÃòIÀI¿\v\1dÌ .\15B\91TÕ\80i\1c1¬¡ÒY\17\87¶\¨ý¶b¥ß«3\8f\87Æñ\80 dÇ\83\9d"\9aïC´,~д¥\18¸R?\90î\15*ÃÍ\ e¤8¸Xèº3\ e7\86ÿ\14_Y\1c\82¼Dç\1d\88ò©/IǬ\1f¨\8dÎÅM6B\1c¼\17Å5ñ\9bq@ë£\14\89\8dC¼©uæ<úa\9f\92\ f~ðÊ(è×¹ÝÀh¨g¥\vv\vP\8eÖEÃ\1c\14$\7f\98)]\12æL\13þ}X\94aö°ÐÍ
+\fÓ¨©Û\1d\f \94h\e\9e×lB±4\84è\9eÖXc
+i\1eO«\8dõªM\106\82\r·@ç±¹Ã\ 2D²\89
+.,ÅF\87\18ùÅ÷îYÈ¢lDè¡Ý £³Ý\ 6\8d´\7f\1a§\8düñ\1aFT\18±\rX \19±aì6á×ßëMj1\8câ\86K/ã?\fç{õ\eÎT\1aØ\8dÆ.\10\94Lñº!\8eT\9b:\8dõ¶5?jèo;Flª(\99þmóâét\ f\90\b
+*Ý\b$Ê3Ø\9dîn4\92\8fRná\924\12\9e2EÃu¹\17µÕ\1a¾Oå\8f">ª\99ná\ 55&¬ùGÊYj;»°ùò\f§ª\91Â\94\82\bÇ«\91F+ûà é\83®´ðåÅ5R\9a\90#\85£Ç8ßþûÙ\1dB\1et\96\1af\88;\8e\WN\96T8\97z¼Ì\82pBõ¬@\17Kg\15]v+6ãÔ°ã\876&\8dN8¾Òý8Ç\11\19\90\83Ì\ eS\re:Ñ^\96\81Ig»mÅ \9bÂT\97SÞöÝÇ5\1c÷Æ\7f\bÑ&\1cü\ 6_B;z~]q\80F;a»z6\9d\8f\12q@\86\14\1aÚ·S/úGn¾{#8ÑöÕºûºäX-ß3\ 51ò52 Ò\806Ò\94$\1d*Ý¿\80=Ùoz\80%¯Ë L>«KÆßìÒ|·\büô÷\8f\0Ñô\95
+"åHd\94)\ 6+bQÓ\90zÀ*\aÞ\ 3Z95\19ö\9a¦0Ãc}ª#\84\96Ë!Cm/ËÆCr¹¼2l\97K0Ã{ÓRÍ0`.é\f\15æ²÷\80â´92ì\98\9b(#\93±Ï2\809lÆ\fsæ\96ÍPhnë\f\99NÛ?C«©&2ü\9a\9a$ô\93ÆÉpnj¦\fù¦öÊÐð¤å2\84\9cÚ0¢Ì©03\18=¨Õ\fY§òͰv*è\f\7fO\8a<Ãä©ð#\92\9egB\ 6Üóìx?\ 6æó\8cÉ\0~\9eEßë\a<Ð\9fgVä\ 2âTË\8cÁtøef!\ fÉÌ>äA\9aY\8aéÀÍdF\1eÌ\99ðÈûKÆC¾KÃ\18\88\1cKÚ\v\99\8a\99ì\8aLÙ¤ý\91i\9d7$£)3HÝâÉTR\1aE\99r\9a\8c§LMõë"}\95\86XOs\8d\ 6\9båÂÒªËdYZ~\99T\9b,ÄL¾¥%Ù\13tamf\1eo4J3Ý\97Æk¦\ 4ÓÀÍÔád\ag\8a1íåLC¦MÝÓ\95£í\9dYÍ´Ñ3ó\99f|fH's?3©é\16d²5<\87HÉNþEfnÝ\v\89Ônº)\99\0\9eÜ\99L\14§Û\93Éät\8d2é<¹P\99\9cNW+Ó×á\8de\96{rÚ2\19\9eÎ]&ÌÓ\ 1ÌÄúä(öëÜ\9fÌ\f}º\9c\99É\9f\ÓÌø§\aÛ«\ 2ÂÉíÕ\ 3£3¼GeY:Íz \1d=áX£om$F\a|Ǩ ê1\1dõý:\7fyo¸«;ó\0üo
+n\8dNÿ\ e×\82 \95#8 Í/\97<\ 2\b;À7\9c\19\19h°ï¬Þ}\16\ 1\89ýtx\98\88[H)B\ 4f¸\92\1eÞ8d,ãZE\bä¨\97µ\11O¡\92~]\84Tú³"ìÒ\7f2Â3\1f¦W\8b0Nÿ\84\b÷(\93\9a\9f\1aa¡>\1c\11:êÃ6\86\98úðF(*§ ÃU9UcT+g4\83_}Ö#@ö¬-á'?÷Ò}¤Õ~\aR\8c¢á\=*ÅÁâQ
+ü@=¢2°P4\93ìdNãÃÉÒB :é\9b\ 2E2®\82±\8fÚ\ 3ðnnSbG÷\12 \1d×j¿\bð\aõðÆc\0:U\19@þZHl©ÆKåuýÅ/[pÏ\ fü¼\1eÞl®\95ouÊq\86©®XQÖ ½õ»\°p\7fîç¹å\94ìºD\9eÔ\e\979Þ_\7fR
+ü\a?\84[#é\ 1x\93\13g\8a;\11VR\18$\1f~Àh\14ÝÙ\17è\84¸Óýºxùþ¬×\8füðy5¼¹\1aJ\9bU\ 2\91\1c!ZäÎÚÀÓļËÝG$gSîhÜ¥Ûâà')mâ$&\19;þVõ¿<¨\8f\9dãýý:S\1fýQ®_ú/\ eZ¨¿X\ÕßÝÕÙôy\9f\15ÂG\14\82ïD\8a\0p\11¿\99\84WQ\13f¯#¹v³x\ 6É¥K&}0\æ[±?)\ 4þ{\1fFýSN öËþ.·ùíÐ\99\aÐ\9fM%Âê\9d¡©6\86ëò\83òY/\9føY\e¼,\ 5Ük#\8e\98ì\ 3Z°TV\15Rù»\10\fÔSÈs\16~\12\1f%Û^¦\99Îú\85\84çj×\99\13\89¯bI½fq+P¡UÍ;ÙÚ÷\8d\9e\ 2\8bª0 [Ä+A\91\8a<\7f2Ï*Z%\84¹:¼{\7f\11ª`ä\ 3ð\84£V\89Ú\11Î2\97x\93«p\ 5«ë\ eã\9erÀªØQìï¶µa\84«`\1a\eý´Õh\K·o¡åµ ÷RÌ\9bf-ª©¸-÷\8b\89 >\8f0ªð÷H\14³\15\14ÍÌë\18\83c|\94\93;οHË\ fá x/\8aoT\1a\9aoNòÅÞiøB¤\82¿Î\81Ø\98>=ÞÇ\8aG ¬d\1aÓM\80VËÞÇ~;£\8b æ\87,\90 Ò¦y¤\ fIÀ\981Ý´>©-;WD¾Ã¸p\94¨!\82\96\v\8câu+~\89E¸\89lb\19\!Ër<®ËgáB\9fëðÙÇf\ f·\9f\8c7\93ù@]H¾<\11\tV~ãèàô±\10&ãf\ 1h\e/b\84×¹\ fã*|S'JÌ÷Ø\9d\e¥Ï\10}RªT\8b\99Ä R\f×n\8c\19W´ô0úo[\13ûb)×X94*¬\ 3\1f¸êé·j%2¹\ 4+1\15\95~ÅR¥¦aÙ¢<)\96ôp\9d/ûáY±=¦\9fÌMä/Ö÷Y¼{lÇé\13û®\8d¡è;;\86«k\80qT»¦\88ÑïÚ$f¨k\9dÉUMåä\13ÞõW¬\89þ\12ãÚéú0\96Ø\e:ó¡[?¼©Ç?eûý^\87öûû\ fz¾Vã+=Hó Dñsÿýçþû\1f1\1aTb¨\86móè\97\fÄ\85h\106{sju
+1\84sFq\95@(\91X?X¹,Äd~\ 2X\96\ 4\81\88X\13\14Æþ\17ô\ 6Õ[Ûê%\eK´\ 3ôj\86¥\186q¥á\19.\95vmv\ 3\85\85*\aj¤Ð8¾(HT\14Ô<\fêû\b
+\v ³à\894×è«\17v\92?«ä\8f\91,g¸&«á\98R<gùì³\19}\92\1e\ 5\19F»\16¯x$Sâ÷ѳ%-L&\r\1a\18|Xa_R}x\9f\19d\91\14ùT3f4í\91IRj\8caUó\1d÷-W±f\ f\95jS\83¤\ 4vJì\17!³W)\18Qujp\ eç¿Â$!@}\18V\0z4¿\10R\9f«ZÍ¢Ðh·eµT£ªßÖãÝc\ 1¼ÿÅÏ"m\8få6l\93[c\13ëS\1f¿³Ë\8a³ýÖ£p¶sî\18Ý9ö\ 61lTZ\83`k»\aâ°´û-4fYâî¢_"\9f)¨ÞùÖÛ\15!&J\86ì\8b{!àè^NÔþ\85\98Ú\99gÂÖÂï}ül\10E\1cÔ|\g\rBÙ\1fúÙûVRa·\ 3ÌJ¬¶OF%û±áüWÐMûsÙÙÿ\fø\ f2]²n&wF9:L¥#\92§\82÷¹,²¨`9¶\8chÍ\89Y\88ü+l\19ëû:Wk¦½\9c\89«\ 6Á;\97\by\e\83W;Þn<\f\ 5Cæ¬Jo_Ô¬ ¢\9fÑ´!xm\1e®\fxäý=ÑáA\11@ê9ÀÉ\1c\0¡Ð\r¶\v|\86¥\87Ç\9cö-.[â\eãA«á`½ü\9e\ 3\÷÷¢èÒ³ñî·®ØN½éø\8dè£]\96}\8c\ 5:EUÛ1\jC`ü¦Q¥\86BÍ\8d9úü3Õ?9C\9b:AÎ\97\88ÑpÝáÍ·ù,P£\88=\ f¿éå\ 6áBÙ«\89²\9bb½|}ØsÔ\1c\9b\9fy[\83{ÐüõáÀÔSqw\ eÙQ¬|§\ f-iúó8úÐj\ 6v\8f\83õIÚ÷9Ü\8a±¬Þ\86¨6±)ÏËbQô'Åâ\99\7f1\16Y\7f³X\88ýícÁN_\99\v;G#×~\8eXß#ÃÈö½\1430ì7\9f¥Ç¶\8c\98Ü?\a\fH]\r-®,\1eÔ¢\13CÕÆ º,T¢Ð\0ah]\14vï´\8aQ\96À·¡¬\92:\8e\93P9X°eTdÃ\8c\18¾ù\1a\1eßnÕ<àÖd\1dN\15[\85àæ7cg©*ö LïZíXu\ 2¦eøIàXô"\95b\ efnóÞu!ã¨/ug\8e$¡Øßé<¹îþ¦*,\1fÛ\ 1\1c;Âä+^âR©\990ø\9cfÕ¬ö\99«ßY\17oÇÔç9ƹyHB\ 6<\f\8aUu\1aº\93\82z{\93ÛE\ 3Ò\0ûKe\17\86\97\8e\8bT\ fKî\0Ù#<\ 1»ÓkeuÝnÍq× )\0µõ\8b:r\86\89üQ¶Ç?3ø\au£ëQ\ 1tU)ÜVFð\ fõjÐ?µ\82GðñûqËîu²x1Ý\8fFÿ\18\7f\9dþºÛ]ýÕOÿuÝo\9c"Ûgô\8fO\82þAÉ\86!=\8fZ\87È\9fAã§Ö¹\9c.²k\9d{"Ú¾\9f/Z\aÇÂ\b\7fBë\1c5H"Bí\10\9f0²²Qí¨\1aàh\83Ú\81\ 6KìÁ©vNg\87\98Õ\8eNCñ®\85Ú9 qø/\98Ú\81tÒ~sT;\·¬û v8åD\ 3\92j\a\7fÍ\94¨v.\ f·uµ\ 3O\85ÐÊRí(\84¿\9f³ÚQ\94ÓÞÄÕ\ eõ)"3\v£j\ fa5\8fZ\aÌ\1dçà0C]Ömд®u\9e³ùg«\9en¡Cµ\11\16ú\8bæùâ¡zÞÜ»Í\1cã\17Í£\9b×]æÛI\910±Ä\8fÝOÍì\17\95\9f°².s|^UÏ\ füú¨y~Ò¯Ûýÿ\12\9açOOÃ\7fÍ\8aç¶\15\84IZ\14§¾,DC\9e^x{ ¹¨IͪH\ 1ÓQ¨¾Y\19©\b£Õ{»\a¯*îtS¯óeÀ_M\11\83\b\8eX-ë=ÏKõ\0J\90ߪ\b5pTäUSU+ÊDº\b\ fÕ|i\rª¯pQÝ\9c\ 5>(í+j+·²aÊÙZ5\\87C\95s§\13A\v\98¨íqãj0G\8bÕ\b\83\93fMÙ÷ö%ÞÂ\8bÚà\80ÆÖ\8e\b\978¿¤Z\9fU\10\f)²A"PáL\89ê\15\rý(ÏÕÑuh\15+\14+
+$\a7\81;E*Q %"B#ø6²\99.\88\0\8d8%@\9b»Ôº\10\1a\13 \95Êâû\ríUÕâ\19¯zìÆ¶#\98º¦\ 2r# ¸\9f¾®ªÃ\7f\9dÿ\9f\19¡ù"C\99\e\15övH?cÍEXmìl*äïWûÂB\1eÛmw\10óÀ\809xý\8b¤ëÁ\93*ëP*k+L\bÍ*_¬\18@¦çßxÂínl\ 6(±\11ï\13å\8bÔ\86B5÷
+ùB\1d`ëñ\91\9f_\8d;\9e\ 2Ì{Ä=Xó£\7fý`3ܾ\17`iÐ.Ý®â'\88ÙüÐ\0ÿ+PF?7jó3\90Ð\80XXðt\b\11_4²Ë}\83#H\ 5d÷Ä[\93?\f<аÑy,\82ÊJ\85²P¹\84\ví[\96\ 6y»ó¾N\9aÃ\0!h\1fåYí´¦|\ 3Þ¡\17'ê\86Qnbβ °8¥)¦\16`È\85Æn\ 2CCI,3~ªÀBôü\86\0C\13\ 2\83þåV\8d¢µ\13ïÍy\ 5\ 4\91wýó \ e±´\eë\92ü|±B\a\97Ñu:\9e \93\84µ&ì\b\9a'x¸éÅêo\86Ú¡;û½\8f°(qq[\85öÉШdo_\8c|
+\85jÀ:\9cäÑ\1aI8Ëx\99û\96ª#\9a\1eG\ 2'H\91ñ%\r\97}5x¤|\r0Ð\96\94D1ï\86\96d\99X\8a¤/«ÓÀµLÏÓØÖi\92\a\f\9c~ð¢\7fi^6X\9cÞ%¼Y\ve\80ÝfÿÑ̵Ä\15\15d<!\ 1M¢\1cÝ-\98\848;\88>\11\85ßĺH\96µ*]Z\82é9\8bï\87ùUaüt\1as\86\18 b\9cÆ\14¬È ÍÓX%,B§\eOcn\101d\9eÆz°\e?\8c\ 1Õd Ç£\18´\14Õ\16äQ\f\86Ûz9v\98\8eb=è*m:\8a9\8d
+htq\14\ 3\12S\r¢Â\8fb°ßÔÈ2\1dż\85µ_ÛYL8ú\14Mm\9cÅ\aC3\9eÅ@Ól\ 4\96ò,\ 6pÔ¸lã,.m³\12Àé,\ 6\86ôÖäÃYÌ\9d6?~ô\1a¶ Aÿá,æý\95ºÎ³¸(hÂØøY\f~ª½êx\16\83JÚ\84\8fbgq¡RàÒÉëgñsö?I¶ä\87Ò¾\96.9V;\8bï\9déÙ\87Ý\8f²Ê)}\8fÃ\9cÊ\96GqæK®êå³_Ü>Ýé¤t\8f'\94\8bÏ\16·g\ 1»ÂÚ´\86¼ g°Q¯^oÿ>\99A\126~\18·Ì\9cü¸\17¸\1fq8:K\9cÆ×'Ë üK'nÿ\95\1eÆj\92Rün<\8cÛ=_\9e\18õøÉÉ?ö~\183\80¸4óaÜ\b\1a(*\1c\87q\83XÖ\90Iý0¦\8bÐ@^ÆÃ\18\8f¼nÂBõÃX]\89Â\8f\18\ fcò\82ûâ\98©:\8c\9fß\10\87qS÷;ÿ2\1eÆ4± \18;\ fã&æÑuí\87±úÕt\84\8e'2MfjBÌ\13¹Ý\ efÛú\81Lo§½Ýx ó\86[?\8dÕ\8a#Ð\968giër\Æá8Ö4\1cuºÎ\83.y\1e3\1c^\883\9cÇ<Ï?ÜÏc¦Á\91°ü<nT·\14}t?\8fÕT£±Éó\18ÊuUìÄyÌÉ¡Á\9aÎc\82:\ 2E\8có\98\9e3Q6æyL°ÌÁ!\87ó\98Á·ÔB\9cÇ4c j%\8eãç<Æq\9cq\9cüü)*§x¼Àe"*§D8É\8cÊ w&MÂ\88Ê1ï4,fPN\ 1zÚã2(§²#çÌÉ\98\9cê¡N%äê\80Õ"ó5br¶ÊÂ|\8d\98\1cÈ?g9Ö\1e\93ã\a¶ýh=&G6çØ¼\96*cr¼ÑÉ\ffL\8eѸ\ 4a\1319\9e®¾Â)&Ç\92¬ÂA\89\98\9cj®@ÒÏ\98\1c?¾ìK\84Ö<&ÇoZ#¡Çä\f\ 5g\19br\95\93\7f)\11Ìó\98\9c®Ó¤FP\8eWÓÔ='óg\ 6å~ð\ͰØ\17¯a¹/Þ\8clQ\9aV@º\1fâr4÷}QÏ\vbÒ14öx\82ºÙwjX\ 4\96ÿ\12\98ûâ%2÷ö\v\90J<°ß~õg¼\80=Á°æÿ\7fq°þ\8b }§o\bï·Jy&ÿv=\9b\17\83\86\7f\v\1fsSÐ>ýÛ(\14\9eü[]wÕÒý[=K\81»ðo!\8fViãäßB\19d\ 5Káß®§\9dW\93{\vÃJ\81\1e_ððnW:ôÈ\8eOÞ- \15\97¦wké\aÙ\r«2\1d²÷'ï\96\9b¤÷Ò»ÕÃ1üÓ½]\8bçµ'÷\96ð¾@\ 6ý\85.E\9d\87éÞ*-søO\86{;\\16©SA%\95Á½\9dò\ 2éÞò®"\95H÷V¬"\97#Ûɽ\85\ 5doÎ\0\9aþ-´\1cżN÷oÅ uªfÌ\1d\Ñ\97»/\92þ-üìÖ\r\17þ8§ªì'÷o!éØNoÕIÿ\16B\ f\a\90uÿ\96\94\94Ü\9fÇ4Æyú\80ù¦\88ݰiÛj\a\88\19\88·ù±aüÝg»AH@¼¼Ýã\0qj³\86éfléвf\99_S>\1cDvñY &lµÏ\87ë\740äÄW\8dßsDõ\^·\\ e9&L\bòA\0|,\97\ 3^h(ÏÕHÙìÎbÆ+;H8òB7àµ\8bè¤)\9cB\14x U[a÷¹mUTÙ ¤\86ÕÌ»²¬\86\98ÁW\12Ú^UKèÍK\ 4Þ\8d\9búv\13+G>Ø\1c\8b\88È\ f_\90\84.\8dö\1a\8aùÓ Æ ±Û\94rö\83\1fÖ@B\14½\17=½«>»ùâ>/Á\ 2ê'aÓc\93\15º\ e.\81©T\87\81-^û×\82\11¦T\a\ezïÆ\92EìÅ\ e\ 4°A9lq\97\ 4î\ 24L\eQ\15$\ e4\8bM©a\11/2Ö\ 3æ\81z\85ùMÃ\9c\94ù(ÚíÓâ\ef\80¸q\ 1c»ßÙÌ)(Ôq\10.\17\14=À¡pÝ\ 4R\ 4Æ\85ðjî»-à\8eÍ#k \ 6zQ\9cÈ¢\127À=PÙY¨j%! ®¼õ¦¾pS@ÔÓ\bB\8c\1esöt\bÌ"®>ÁyÕf_ÍX¨m"%\10\12Ë\82ýà;Ç¥î\96ð\8b\16)é\92ÅLBÖ¾<\90\18\9d[GÝ\9fDë56'\18\15\86ó\f2Ò5\bx\89\9dÐ\84~2¥\98\9a4¦,ÁbÎI!HΫ\99:Y/\11å¤U§±æ\ 4P\81\fp\ 4*kGbH"à?pij\89´\94m Üú\9d \11\a\8a\15°®
+\ f±\ 1\8b¡Ó\191!õªë\99##¶É\95ä\87z8ÔMN\1e\97°\19GÖßéºÝ0\en\13ÇÝP\ 1lè\9c;\8cñ\ f\8fÈ\12´²_þ\ 3\94±(7MmÒBþg[\14\1fbûÉ\93ÀÇPé\19úµF[\ 3û[(nÐîݺÖ\90°Äû°\8a\8dA +»a\81I\12Õ\h\9eýÞ\84"C \12`\84ª¾ÐÎ\ 6w\ 1\97\92êmîG\9c\8b3˶-Rë[\80Öµ¨6º\1fÑPùìetê
+\90Buþcð\en_¨ê@0Ͱxå\1cL ò9X½FÓH\10±:3\8fÀ&D\97µ\aØSu\\96\15¨\1a\ 1á\88ô\8aì;\b\12T|\87'+$\a¦¤$P\1e\95sú\85K¿yYC\9e\9eE\ 5\81NB:W´ð\b®-*¬»\ f~Ê\1cîõã5ÏÇáä\19$\9fbRpzN"\ 3+Em*9\17õ\12äU\0_\97\817Ø9\v:Îé#Ä\86óoX\1cõ\95;%\ 1ÉfSÑçâĤ\816\92~`±\e\rp$K1\8eÅkÐÁÛ\80°\ 35\9c\95ÚU©N\8c\13þÃ~\12+\92ÑØ\fÞ+\ 54Æ\10\ f°áqaR/\90Ú:ÛX\94FÉç¡3[}2V\82vFÍH\¶]\86¥Ó\9f\94\92é\aS\9aïEh\98iË7Çi(\84ê¦/ÌZ¸\1c\89Fµ»\16O\8cÖýpãÑ\9c\ 6\15\18V[×1øÍ}\95>A\ 2e]^'róz\88>á\ 4\dÛæ¢\0v°½®\9d\1d\ 45\14g®1¢\1dm\\86Ô¥@å9ÖõtVðXÕ²:M\85øÊ·\10úVæ\1d"´jôQl$Â$*±ÌÍFÄA-UÓ¦Ô{h´có
+ÿv¿¶¾ÁyøA\7f¤\bh¾½Êqt}¡
+xââ©SÀyWÈeÒ=E\9diXF¡£Êé¡îÔc@~7\91\ 4\8eú\8e\9c\82pBR/bTªê'u'oq\1cüæ¨c¹î¢.*u±Ú\89e\86\87º\16À7þò¨ÕÁ\e\96\ 5\9aÊ¿\86\89\93\a\ 4f³ \9bò ±¡mn\9bç\81\ 3V5=fq.}¯\1f¸·\1cU\ f~xUA\1eùªÓú·W8ê|\b2ÃÆ\13\1c\87%\8d!F\ 6\1f\aª\1aCÄ\17?\9c»DÆ\14úêÇ3\8b\17\9d\18'x\17\8c\a}JÃ\1e \·³/Òd\10´7VâlZ\80\8eÍ\99ÑM\90{l,¥ñ\86d0gR\9af\ fE \ 5Ð\9a4\8dT(z.×lA©Û\85¨i¿N©\ 2ÖLØbÔÃ*¡3\99líp>§4íî\1fдuó\8fº5Fz2\13Ùaò\87Ã\9aÌÂÖ48å\87©¬b2Lëe\9d\15Ý\80å\974\1aaä¢\e\84Ü8\19øó
+°¦Ñ¬\8ad¥S°fÕé\94\9a\fð\1afN\1aê¸é"\1dNc\1e\ fW\ 1âÑægßè\aÒ5 -hq\80p\1f
+(wxÎ\93\9bA¦\87ò\88ôF\94\8a#\10\98\1e\v\9bW\91ãɳaó®\9bRDî\0)¹Hù_:I¦)q\ 2Fg
+m \1f\96{\"\b\88è\87q{Ñs|ÔÙu\13\e\80ÎõpñÄ7ÀrN7\10g_vÐä.öëÂäÝO¥JÃõD)*¥:¹¨ÊØ\12\fHWVI\ f\91<\84»«6Z§p\8bím«\ 1Ç\96æ\190cGàü!<ÐVã^\90¯\8eD8¤\1aW\\7få,9-¨Î"\ 3§8Z©±\18p5ÙÚ¬Xý\8c%-iûâyÕ\91 Lùs'k]\1e3\955\ 4ó\vp\88õ
+å\7f9\11M¥ö\1cå\81¶\ 5-MßI\bþ{ý\ 29\1d\ e<v\1f±Þ"ã\99ÓB!ûbK×\8aÏÚiü¬\96\89\8dë\14\8ap®L{Öæ}³ý7ïCN\89ò\ fÓ»AÀ¶kÁÄ7¨òí² TÿVèÖT7\95ãAêCD>9nüfñÖ¸>¾»Ãàö9 µ\1cϰÏ\15uhK\8bm\17sz8ÁG\9f÷\19\ 3l_\1f¤¬³\166×\11!\1c}}®µûd2z\9c\\93\97* ®<4míªs¾]Ã>\0Wå(uØ\aäqwÿÍ~Ýé\80¹¹§ ½\10>@l=\ 2\865\98Çs\87òÖJíä\16\16R\1a¶fîôû\14Ý«\9by]#\806 h@j\8d{\12+ÆGj\17Þ!)]R\v\89D£X5\9dH\1dÊæ{8Ô\19ªô\8aB\81Ðz\1c\ 6\8d¤[jF\ eJ-¼T \98\16gä\9eº¢\ 5F¼5³°\9c °ÚúèJ[e\92~À¤n§ì¢^F\94hú\9fZ\10¨>ò\9c\10Å\ 2\ 6\9dÝ\19çÉaM&ýÈa\ 6òTR\11\86\9biýôÚ\9d\10"Ï7z¥\ e\ eã<\a©WÜÂ\18Íó\12\94ÒÓ\9aEìH¥õJi§<z\85V\1a¿\98'ôY\b#Oq¨!¶s¿úi\9f\12³\13Ü*\18®\v{\82V`aËu \89rÍ\16\ 6\9bÿ\12\99DZ+]\12V\r®â\1e³\91Ö\ fõ\19d7º\81DÕ¥`\bR¢Lå^fC\8aÍ£dfÚdÊW\v1/L7Ö\86J\17ÂR0\1ffm\ eW\10f \12+I
+sQ«/\9akÓ¬$¬,»7\rO6 ´\7fÚ§UÉòuË\11²\12*¨7Ô\ f\1cö.wj\89ü\9d®s»øþNwåÂvæÇËrv\v\eAcDâ°7¢:\83\r\9dÖ:[Ð6FXõÖÜ\13Åjaý«\1d¼jK¹\87P\8bcÿ¦'\81dwØÏt8à7Ý\8c\9fÒ\9d\92\1aéöt^è¦RÚû}ê~MPõÒ©p\84Ô\98-z9÷\97X«ÊEÚ¤»_Å\\9bv\bßKAvLºôÑô=W\14È\85/ÇuV!áî\9ei\89Á)Tº¼®Q\1fçÎ#\13²_*%t\aSÏo^È&Ú<\9eä0FᬲLo\97ÿx×ýYÍËvv·\17¥\ f\80¨¹½î\1d£ÄeÁ\84\ 32³²Ôîh3\1aÂ\9eüàþ\81ñ\95A;{\1eÖqn\92\16\8d\93áÜ\8b|gÛz\17\9d\82\0ܹ\82»\9b\81\ 2>úÒ0G@\81Õ×\aÕã\ e\æ9z\ fMÐ\85/¢Ø.i«Õ%M!\8c|\91\f\87dúÞ\83&Uµi¾ä"´\92\17yì¥?&\ 4Ó¯\850_*B=ýÅ#$4\7f_\16\fä8¸\ fØ\87*\82Pó\90F°ª\ f}\ 4´úôDàk\9eÆ\b\90õé\8e Z®\88\8cµM\v'cr¹¾"n\97k0ã{ãJÍ0`®ç\f\15æ\9aÏ\90â´72ô\18[(£\93¹É2\8a9mÆ\8cvæ¦Í\88hnì\b\9cNû?ã«¡&2\ 4\9b\9a$Cµ\93ÆÉ\90nj¦\fû¦öÊðð¨ä2\8a\9cº0#Í©/3"=éÕ\b\§úÍØvªè\f\81Oª<Cå¡ñ3\9aÞ\ f\85\88ºçáñ~\8cÎç!\93Aü<\8cD\ 1d\81þ<²2\15\90ÇZ¦\f¦ã/S\vyLfú¡\1f¥\91¥\98\8eÜÌfäÑ\9c \8f<¾{¦d<æ»4Í\81̱¤É\90¹\98É´È\9cM\98 =¯ó\94\8cæÌ u³'RIi\19EÂi6 "/Õ\r¨L]¥1\96)®ÉhËTX\18w=]æö_Ϫ\8dfbO¾¥9\99 º°83\8f7\1a¦=ßwX¥\9f}°[¶\995\9c\fà\9e]\fC¹g Ã\98î\99ÊÁæî Í0Í{Ò3Ì÷Ì\8dNf~æPÓ\1dÈ<kº\f\99\8f\1d=\8bLÛ¦\ 3\92©ÝpQ"\ 1<92=O\1c\ eOÏ%\87SÔsΣóÔ3Óádeö:ý°ÌrOþZfÃÓë\19ópýzf}t\11ûuáJö,}¸\9b=\9b?º¥=ë\1fîk¯\f\b\17·W\10\8c®p\8b\ eòt\99õ\16:zÂ\96ºÕX\8cîw\13íѶu7\9d\8e¬[\ 1ìÝ\95o¸\97^Ê\9e\1e?ð;ÂeÈÈ\0\1f¥PBF\ f8¢D±\1aA\86ÐÁVê\1aÁ\b\98\1dî]×zÐB\1a\11b\16\11sFp£\9dÞÒ\94\ 1\10èhTì3\ 5Júu\11PéÏ\8a KÿÍ\bÎ|\98Þ-\828ù \11ëQ*5¿4bB}4"n\94\836\86\97úØF\18ª\8f\7f\84ªú<\8d!>\9f\11úês\1eá±gu ¿ù\19¼ó#@ß0·,¤ rñ|ãÚMç\7f\81Ò²He\1c
+\9b\94{)ìF£Bõ/\1a6$¶\93\16«Cí×ÑO¡Sñ~\82#T\ 1QI\80jZ¯ýºË,®þ¬[9\15ÂFý7Cb«Â_-/ëo\7fY\80ïù\95\9f\17Å\9bà¾r°öÕ¬Û\ 3à\9dofi5\ 2\94t\82D梁s\17`\99sÅ\awÃæ«\14\ fmÛð .ñ\1füàþ\8dI[õv»,"¾O3\91\räÃQWø\ eáø9\84I^\16ï\9e\8fz|ã\87Ï\8báÍÅ\0j¦\8c¿Q7`\91
+75wWQæ\920Kì@lb1BN\eµ\bÖ\9b¾¼\8eÆgü\92Üô\1c\9bb»\9a£þý:W"ýY¡húo\8e
+©¿[^×ßßuÛó;?k\87·\17DlKj\ 5äF\7f3IAðW5BÔ\95\0zd\9c!. Ðá\8c\8cóó*ß\98Ã\83B\12?øaTG\94"È¢Ém¿\12ìP¡C<\1cª \12 ÕP"ý²þEñ¨Ç7~Ö\ e¯ð\11xÙÊsM6ÃmxÉÁN©Ü_ÒÛ$í\1a6=pn\97ü-\10\b0×,(U-ÈP4 \ 6!ãI¾-¢Y\87¡;Læ·\80æ,%\16%5ô¾Râ\83Äô?\ 5 Õ;=ÕÀb+!^\ 4ÞRq àÎâ¾\91OTÞÑ|dºKégÝ\1c?\9eçY\ 2Ae<Å:i\ 4ʰYÖ\19<3\ 5í\99ó#\18ï\b\83)\84\81\9f$ÿ\9aÕXª` î7Ûú\9aEgµ#
+:ð#\8a÷ÞÚUÍ¢5ýAðß\80Q<ÿ `_\18ëýÅ(*\8a¶Z½:h\1eöNã\17n\ 1X\91#!ÇK?\10£µ{¯Î<ª\90Å*÷\9f£¿y_A\9f!<M¢àóL\127\15fEÎ8¤z\8a\9dÄ¢È\97\98ÖN£÷ä\1c×\98 \82öá\ 4!Ä®À{J"óñr]>«9÷bÿMÌ\89 Àê¯\86I¡\92\91|}»§ø\89â3G×§\ fG%¤©\ 1\8a!\ 3\rvñ¦-\eZñÿzC\7f\13\1a"<dn³t;àÊTõÙ\84\aô̸}Lº¢¨¼l.\8cûNk°Ë\ 5D¦$\16],´âH'}-
+\88ké\15\84T;¨õ-Ô¬-ì¼,\17\7f>*7Éô\93±\97òÍr·åÛç®\9c¾2wo\8eFîð\18°T\ 4Ó¸¦ÂÈñO¥\92s\94Êg\9aËTR9ç©Çr]äKLë'õb¬³§î|êØ\ foêóO \ 2~¯è\ e\ 2Nkµ¡Î\12Î=v0.©þù\f\ 2þ\19\ 4üÿ³\16ò©ß-[ȳß-[ȳ߷\90\8fýnÙB\9eýnÙB\9eýnÙB>õ»e\vyö»e\vùØï\96\1däÑïöü\82G\ 3ùÔï\96\räÙï\96\räÙï\96\räSÓ[6\90gÓ[4\90gÏ[v\90O=oÖA\9e\roÙA\9elÙA>u¼e\aùp]ÀöEË[v\90O-oÙA\9e-oÙA\9e-oÙA>µ¼e\vyoy\8b\16òÞò\16=äSË[´\90gË[¶\90gË[¶\90O-oÙB\9e-oÑB\1e\1doÏ\89|?L±Ák\15¢Â9Å\ 1¯¶:b\87W#½eü»\ e¯F ºB¯\16\90uxµUx'Î\1f.x5\96¥Ñ\7f\ 6¼Ú\1a\99\1d\vª9¼ÚJa\ 3Ü» ¯F¥©>#ÑÕ(;¸ö\bl;¼ÚṞJxµõôzç\84WãÙÚTv£Á«Ql¬yé\0k<j?\a|µÅ\ fG\vW\a¾\9a@kÈ\83&¾\1a\8d\91j±K|5ð·rs'¾ÚºÛ±ÚñÕÖ \18O\80µ\90Ø\9d\81°Æ¾ íÞ\11Öà\a\10ø\B¬Á.\9co\9b\10kØ3×5\82¬Q\eZ¶òî¹
+ÞÿâS\80¬M\10`O\1cüW\18ü\84({EX»8ÔOS\92/\0ko!\9c=àÕ*ÿ¸¬ì\1eBü\1dam\0Ã\7fóÇÁW»gé\80ÝS\15ê¿ú ¿nðj·YÊý \ 4Ý¿öÉàÕ>6´ÿ
+úÎ\7f\1e K\a\19\1a5R\87\98
+\8dÔ!¦B#%ÄÔ¤\91\12b*5R@L¥Br\88©I\1d%ÄTª£\84\98
+uÔ\11¦Fu\94\10S¡\8e\12b*ÕQBLMê(!¦R\1fu\90)×G\1dcjÔG\1dc*ôQÇ\98
+}Ô1¦F}Ô1¦B\1fu\8c©Ð>\1ddjÔG\1de*ôQG\99
+}Ôa¦F}Ôa¦B\1fu ©ÐGÏ5ð3õÑO 娥\8eö\ 1åé\15dª¦:º=ò eJMÏ\86ñ´\f0U/\18S\84o¿¸\8f\ 2g(\181¦VSGíÍßö\9aTWF÷Oýê'üvÀKíkh£z|&èø!e\ 4<û\84\938û\1d['pö;¶NàìÏØ:\81³ß\8bó¼\ 2:¡u²bp\84Ö \94ý\ e\13(û\1dZ'Pögh\9d@ÙïÐ:\81²ß¡u\ 2e\7f\86Ö \94ý\ eÓ\12 1 u\ 2e\7f\86Ö \94ý\ e\13(ûCVÌ˹'h\9dDÙOh\9dDÙOl\9dDÙ\9f°u\12e?±u\12f?±u¦yüQºäOÀìÿ\10tì\13Vç\8b·Ai\ 2«~ÆÕq¬{\ 1äSú(\1fãO<áö]vJRn'ã8^ ö¿xÅÚ\7fû\ 5f\\9d\9fú\ 2zÂ'ÃÕù¯\0>öÏ\aÖù3è~¨@]®ã%³IüNå-d#\rM\8dX\80\9ap`´¢)\12\f6â\9c\rß×Ã\96ÖÝ\83Í/<\1d%,\15Ï®\ epMh\93\93\82ê¤ûƨ\en\16ÄTøÚÓO\16ðÜÚе½\V\ 6!¼+»1\9av6Ï\88¢\v´A94nÓ®'éé_º7\7foï\96\ 3<\¶ûGÆ\93è¿U;òô\8bÒ\18×6¼\998©\94\ 4ð\97'o·]çË7bì4\8fäÛX`®¨
+?Çë~Ô¡\11\9cÆõ>_T+×Ç\1f=Mác\9f"þIFì\98¼\1d®£\eª\1al\9d=\8b\93D¥úý7è8\8e\ 6{5"¶\ 2\99Í×\a¿NÅÁù\99®¯ñ\991\1aDuÕç\99#Öh?p\12I\eÙÖ\8cú(GV\18*$ÁEê\13sDäfÛ{Fµ(\86rÆâ\89\19ÏËrUä£rõL¿\98«,ß,\17b¾}.Øé+saçhäâÏ\11ë\9bd\18ØØJ9ü}·Å\14=veDT\bÎd=4\8b\9a§BJ\ 5o\96\1d\8c\17¡\9a·CÕð\97º³Õ\93"üU>\82þT³Á\15\85w¬A\1aÌ+\15ã8\16êË^ï\ 5fÕí\1ae"\1fÍ\89\8d\94Ë
+ì\82Um\10j¤Âä0Ü\81Þ\ 5XÔ«\8eGÒ¬×jøÉfF\b×\89c\90;ÏÍ\7fàÚ«Å»ÌßÁ¾9¼?1\11ØP~çi\93Áhì«\9aÐoÛ·¨\9c\17äVo+\a\ 1ÁîÜ\89Ë\12\18\12I\93w\15\9e\96£/æx©Àðð@(\rò{¼É}þ\12\bò\ 6y\95e\1e\8e\14¦¸,.ÕRâmÏÍ!y¹\ e5DÓvÛpçøræî9\9b\7f¶=ñ³¸3Ö\91}â \85\91jÃc'äGiÉ\84ѧ\ 47)Òû¹\1f»\9dñù¢ÂFaõ¸\7f\8a:ã£?~\ f[«Ç\8cÏ÷c~Ün'\8bwÄO\7ffÎøyÖÆ\ 3Ìl\15\83³\9bâÇy\1a\87\ f\8dëgÝÂÌf\eÒº!þÐF\94AéE\ 2aÞÌ(\80oyòté\15«V\93\ 2§ã]5\8fÖ]e¨#\ 4AÕE\15¸®ý*LþMðO\9b£cÞî¾V:aj]r¿\9cØUãF#É \83mUp@jO~\16Õ\ 5e\8d¾4ôô\15¼Å2µ¸"\v^\ 3\1fh5;\14\84\93Ðå\ 3×Ó{\16\ foêQM±X·\97fh¶\1c/G\11F ¼¨Õ\13òÖjv\1a\87´~±rJòÏ\84\8a<º{4ò®`ú-úæ5ºO\88£7K\9aÞº'`Y \1fj\ 6qá=]UÐ\a@ 8\94(àÝ>¨:Mô\ 3X<\970Úª\95¬«©¶\12¬¤\17Ú\8bþ\81¸¶W]\82è\8fÉ\16Ô×q¨\10\9a\1fÜ\84\9d\0¾\82\10\8b ¬ß\a³kY×½\82ÔÕ\8d·\96U\84¢ê,\15Bãiµ¬¼Ãvû\97©\9f\e\8f\ 6W¾\803A§\89\1aÀ \92×\89#h\7f\ 1±øL®:Í\16ó!\97e7\90%kõ*<«\19<\8au\b\85DÑ^Ú×l\82ã:ÐJN\87¥Ø×½\f\12\88\93è»øà»Æ¥»£Å\1c\9c\9aW\19$ûa§¦\1at÷zõ\11\12\va=±c½¼\1fëV/b\9dL\ 1+\92¨¦~1\84+¦Åv*1gH\f¬ïÝjÓ¬ç\89®#\9a\94b\m´WGv\ 66B\99y$j6AÇ©\9cQ\r\1c\ 1á\8eÔ\18\14W
+\ fÈL]Ѭv¯¿[UØ\z\ f%$é÷\ 2±Ñ¡GPvÎ5,\b\r\11;®\ egþw>\8aÖ¹|]\ 6Ä¡7i\8bÁPÞoc©%㹤;\97áÑ\96à\13e¼)ÊÊf-\87Õ\1c©\95ÿ\90Q¹¸a}aK;Ú\8bô\93ª,¡\1c°;w÷Tw¿NsÂ\97äÎ\fÖÀ\11sÐ?ÞóOz\86Ö Zͨ\85¤\9eÈ \18&VÔy\9bm·\81å\ 1Õ\1aæ\ eÉÕæQNµI\8a\0\0\ 5ÁgªÕF8\94Å\vNWc\8dR[\95\14\ 4¶\88¹\ 5\10o^\8aW/Ò·ú\9cê\1fÉ\14\eÁÂUDïÎãu\8a P\14Ó\ f=iöÐå%¦M\9b·ª\0!\85Õ\85~°"v~@ö\15ö\90ú¥xV´÷`#\1a¹År\7fäBÖ\15^f\91\9b\91¨ÕþÝZ\10`\94>#ks\\16ÚþÄ`½*¼¥FìÝêÁH\7f\1aµ3°\12ù\9b¬x}ÃyÙÀêN\8b¯£¸°,·#ú¸\9aѼ¦¹¬ÜÜmD3@Ý6\16ûg³×o"Ý\0,(G¶\1d\ 6Á\85²_õ\93ÛnA\16Ú\9cÕ\95Ò%g³à\92^6¥ñ"|¸U-u\9bÝ+I15¥éí7[Xòq\1d©kC
+\89g¥dúÍ\94满]Õ\ e\9eïßPÐkyýÎX¡9\1e´{©ë%\86\8cP\1c9Üyd\81bÓ\8d9\ 3÷Áì\8b=f©ì~ZM³Éô\vM!g½5\v\86æÂ¸u¦½ý¼\80\161\1eõuF»\9a}d¬Åå°FÌiÍ^\9b5>æÒ\ 6øÊ¿Y\8bÿð*Ûi\8f\9cÞl\9a[iEãÈ\81ôݶҪ§Ú°iSò\ e\ftî]\9a \8dô÷÷Y\1d_lT\ 2\80¦\ 1£\9eº\82¦§:h\13\ 2\ 3u\7fQ:ª®;j×MrUÖ®¼@ª;·YÅáö¨ÿ)4!\8e_q\81\94%æ\ 5-\92\93Nݽ\99)Uï\11íË¡\9d\ 1~oç¬Ã/G \bM¿\86QÓO\83ûà1tø854\8eôkJ\9a§\v]\80â
+\8aS\88Ö3¬¬S\10Ò~X©\7fSëËgEop¼\9cz´\87*R\93§ã½\1c\97zà Z"\1a=\9d´«£¾Çy\8c\11%ý\97GvJ¦\93=¥i\0ðX\9d\9fi#Ð/&Ãp²%\8a\83S§Éq¿¡ÑH¼!\19Í\97\94¦\99\ 3T\98\0·Ó\14¢\ 1ZÍÒ\93ÉTª7¢çuÁ\ eßÍ/úG½Ð·[i¥9\ 1SZstjjÖÒâ£\8aP#=Y\86ì&\81h¥\ 5Y¼Ö¢[\99´U\võ{²FWÒ1{íV+F\94¾;ìÚ{\19;\bÅ`þ\9e\ e¾\1062ÈÝ\86Þïfôº8\88Ódn\875\13FùÅ\88×\9bí$§\ 5A2Z÷ÐNëáá\ 4l{ï\91ÆM îe]*\833\ 1Z¤ZnÃç¸\8f9Ë\17\85[¢Jç2;/;ÜÙüV¸8\0C]\9e\90\91\17$\rxÌ®Òá\14éQQúJÙ¶y\Ôßl \1fܲÃ\9b±Ãy;\ 2á=Ü»s\93e39\81y\91y\8a(\1få¶Â\95¤DEø,£Ã f\15µ2é\97\ 2T¨)\r×\15ÅbÜgáâj¶\96N(»\1c\87½b³LZá\0E\83*Á´\81¤î\0Æ^C\80ÌjÇîo.V\92¬\92Ü\18XÖa]<æ¨ÆÅëÜÁx\90\ 6w'\89\83ó(¶®xA\95\9dëÃö`Hßl\E»²G¼ûÖ\1e\ 69àT$Df\rúÍ}$Ño¨$vb\1fÏ\7f?\1d\92*\9f\0î\16\15\82ù;÷>h«\99ôù2÷¢Ö©\9e¯|z½\ 3\ 6}|×\857JQQ|¸\1a·×axÄ\0¶\ 6ô®\8d!\94ðh¨\18d±f ¸c&TFÇ\14\7fðÅ\ 2\80\ 6x\ 1$\99r>Ïf\rS}ÚÏG\10su\9c`\15Ý¿\16ë\a,\88\95\90k¬2Zõ3\a\10k\91.üÛd;rAs\eh\8a¾\9eÁ3\90\8e\1a×3\18\1ce¿\87:v\85j\15˰w\ 4\ 3\12åÕ¾½èí¿îI\8bí\a\98\84ÞÁ÷h\83t¬l¹X´\91\ 5\14\ 2rIlu
+@Ïˬ\ 4é\ 3~»Â\8fÁ \86Ö Ö«¬Ç=Ô®W\0ûàE]÷4]è%\17¡ \10^÷q\18\1a\8c\ 2C¨ÐsjçoÞ\81\14ÚP¨(\80Û\85ºdÈ\16*UºV½jO\91\87òeò\ f6\8fkç\ 6o\ 3\v/TxC\85_\8e.\12\8a^³\8aªÍ³\0Ä\fa\ 5÷3\ 3(\80@:ìg\v\8bØîôó\87\ 1?÷}8§x\a\8d_\9c6:Ï\9a\f\19\9dS~æQ´¹m:Çýh¤Î#
+nò\ 4Õ'Îí S¶\89Õ\19æì8\8dSòÁ\8fF\9dÚÃu~²3\1aj\a\18$ø¹m\9f-\0ÃD©Û»0&\ 6\81Û\1c\rä\9e=¬Ø°MXÔf¥\85ýÒd(-u\90`\88¯ç5Û9ª-¦E&,&J\80\ 5¼\91\86\15\8bT\85\146°n\80±KÊ\1fߥ\91\86d\ 3xÕM9°.Z \9e\86½§ºãÛÌ\ e\83\90ÒX)ï´\eéÀÞ×0q¾¤¦ÙhÙÂ\ e\15\12\ 5e_\8a^\84½Ja¬\)·hï%oئnõ\82s±TGq\fÓ\18¡vo\18ÏB\93àd\f\13[µ¯i`\eÎ\0å>ºÉ\ru«À½\r%·æ\9b*\e=ñä\16\7f\13\1eÊ=8á\12PÁ¨J³p\1c\1a`\81ÑÂâÞ\ 5X\b2¤Âýh÷\7f,;ÊÀÜÁ\1d¼\9aÄpe(Ï\95\ eHo\87ú\Ë"\85W¤¯¸ÒÚ6¼
+^ö¶R¹bLÏ\93"\ 2wÁxÌYÜúq?\8d\8bÊy\7f@8rz2gwú{zν\17Üxu¿P}øe1*x\9d"\84\9fe/\87\87)E\1ehá\88ªv\1eä£ôUiÌ¿·íÚ}Z!\91\0«õÁ-tù¾ Dh8Ó?¦\88u\85W-ýhÊy\93Ñ>ÝíF\96\17´×ðÈù¤MC\1c\9e;õñ1 áß7\15\ 4G\ 6¨ðU\vO\97P\84ÈÙ9Å
+ò52î@Uqe22>Ñ\88\rVÏrg\1c£_\17±\8eþ¬\94L¿\99Ò|·\88¯ô÷\8f8Ìô\95\1eéc\11\ 1\9d\1c®\88ûÌ£\1añ¡>ú\11Cê3\14±¦y&#&Õg<âV}UD|k^<\11\aë\8b,be}\1dFLm^¯\11{Ëu\9dñ¹\ú\19Ç\9b6HÆûr\1feH0vZ\ 4\ eÇÝ\18Ñžg=\0\99Û:ã\94ÓîÏxf*\89\8cy¦\1eÉØè¤m"\84\9a:)£¬©¶2\1a;)·\8cÚ¦
+ÌÈnjÉ\8c\0\ fª4ãÄ©o3\96\9c*9cÎ\93æÎØtê÷\8c_ç \90qî<)Þ\8fñð~¢DÜ<O\9eï=Ü«øz?¡"\ 6\1fgX\86ê§\93.Cúy\1efØ¿\9f\99\91\1e\98ÏÖÈ"ô3Ø\13\rý\94\ eÁt\98\870ÏüÈkt» ò\1f³ý\10y\92ngD.å\rÉd²ti\986\91¿éæOäyf3)òAýºÈ\19u\93+sK\93i\169¨nÁE\9eª[y\91Ï\9aÁÈ{u«1sciYf\ em²@=Õ\96\86jfãº1ëI»ÉäÍÜ^ZÆ\99ÿKÛ¹ç G\13;Ó\89i\8agÊ1õLMNF}¦0ÓöÏ,gx\a\99\f\9d|\88L\9aº£\91iÕôD2û:9,\99¥M¿&\12¹éùd¾wr\902/\9cnTf\8eÃÑÊ\ 4óä\8de\1e:\9d¶ÌU§_\979íÉýë×¹\8f\18¹ñt"3\85>ù\9a\99jO\97´§ãÃkíiûѹ\ 5ðßÐ\0à Ö;èð ?Y\1aW\ 31zÓEõ·[éN7%kVQ\1c~9Íó\86ó6zïBQ\11§i8ùÒýò±#\ e\80\8a5 ¹\88\16\84
+WP b
+´'\8b\13À\ 3\ fBZg=X¹\95\87'ÄO½]=\80AHÛ¨MÇ8G^\16q\90þ¤\b\95äïE@åÃøV\11vé/\1fÑ\19¡¬çGF\10§\ fD\84yú\80\8dÑ >°\114ÊÁϰRNÒ\18|ʹÌ\10U\9fï\bb=Ë9øÉÏè\1f\1fA\ fcs\v!6\97\8eª_ µPÎù^;çªlióxëÑè\10Ó\1a/*p\81&¨\1eÑ6ïWQç®d?DZà»vëì\9b\97j¿\f0\ 5²4ù$Úv«¨\fâ\aCb\8b5Þ+¯ëï~Ù\9a{~ãç%ñ&:\90<,Y¿÷n=\8aUBua\15Õsw\81¶+Ò¸)Ùu\89L\8e7.»¬[°?)\ 5þ{\1fܵ1)%®\8dJÈF\82L\92ÍXfúÃï9Nj\18\¿#°\1fý:\7f÷þ¨\97/üðy%¼µ\12@ÚPåѨ\15îA4ÈûØX»»\19¹÷h©Q*gÜ¢ôÎ Ô<\84tà\88!#6;Ý\14\86§3ìÏ~\95i\8e|\8c«\96üAÿä\v¹¬¿±«±Çw}Ö\ 4\1fÑ\ 4¾ ɹã,\7f3 /Æ~Ø\86¢\bÀÎ\19$\97.\99TÁp\99mÃþ ÿÛ\7fíà wèq½\ fõý]nou´ªô'\1fLâ\7fuô£T\17Ãuù5ù¬\97ïû¬\a^Ö\ 1\1eµjMG\r\80\1fo\15v!Åǵ¶5\81\ 2W+þÙU\9a©Æc\a\10§â]\1dS\g^#¸\ f\96\87k\16°Ú\9bà\19&ãZ \ f\96Ã\8aê«Û\8b²ÎBÊA¤åÁ±Uy(0Ê«Ãnõ÷ ÚD\1eúvx÷
+a\ 6E°ä\ 57ã¨U:ÜîlVU ª\18Eóª\ 1?TR-«Àç¬D\82J 0k\91Zd;\90KX\9f¢u\ 6\1dÈÚ¦óà\12¼õ\16+v÷Pq¿nõ\90L\7fÖêp÷Óo6§¦\8e7\ 3ïYE\98ùîr\1eÏëå\13 \81¨¤ \87¢î\ 6\ fÑ\87\vô$!¼OÃ
+ËÌ6\f~%\1a¾oÃ\ 4\15\9c\8a¥¼Ldu\ 4\90\9cîz\9fɪ\ eÍ\15\91¯0\1cP¢\8c"3V\18¤bª>ÉU(ON-T.\89<ÆËuù,\9aI@
+é¿\89ÍТ®$ßM\86Ãidàöú\84oQYù\95£kÓGCý\1c\14yøx\11\17¼\88Óæ¨*îê0æý5\b<*9\973\ 40µ\8aÁb&ñ~\14ºµ;cÆ\15"\ 5Í#×\ 4½±ë6,\9d}³cÐ\96\8e/1ª5T¥\92Ë\90ÎY\15Zär\15uÕ\16\15B±¬ûu±ôû³r\8bL¿\99\e)^-¶Z¾|ìÈù#sçæ`äîÎ\ 1K-0\rlj\8b\9c\80Ô(9E¡x¦\99Lõ\14\13\9e\1a,×D¾Ã´vR#æ\1a{jÍWåúáM=þ)¡Áöú®C\83Ý\7fÐar\1aØÙ±áÁ\93>ú\f\rö\19\1aìGuìþ\fh0¢\93F\99I\8a\86#P\11\a\82ÄÀ|¨xP%âKí}-ªL\ 3ïC\81)\80\1dÖh·!\g,*E\19``Nl\7fó¤S\1d\1eÍ;0\16øÐ¼{\8f\e\17U]sL\18T\92ó\15R\1f¹-ç)d0`L¬-\ 60
+²/Ï/\bh°"µÃ@Nw\fM\8b¦\1c\16@5Ð\10\91\7f\16'ï \9fPL\86ëæýs4ús G\0Ue\10´&6R\ fp\97®"tä\17\88Û\vºÄz ËTZ/c\17 ò¾X¶Q\11Tª\8cxÔéäÇÎ\9cá\15tïc\1e¶:^\16\8d\89ð\1c\\9bÁL âqìôãiöåÄþ\ eqz.ÆA%²\90*\8eÛ\93Ì\10\01*\eÖ\19\rÊ\89Ææ$}r8o©\80 ©9>Õi³zYÜR¬\8eÔ²\ 4 .Zs\83\95©Ru\ 3i\ 4ÕÄ\15d\a\96\82³²øab!£ÕúX\15>m\96qs¾Eè\92h{}Ìãûa\86\95«æìS°W3|¯ÈãPYå½XTA]\1d\10\1d
+hbû¶`ÀÀä·-XF×\1fÆÈº{W\ 4ùl\80âX\92\9b^ñû^ÃÛÉHEôä\\1f÷ç\18¨¿µ\8d\03£OàY
+\97aZ\9cÁ³¬ì²öÐj\8d§Ey:£yT-±0l(
+¾\ 5Kðb\92éÕ¹\r¿Ï)øßÍ\88Éxξ\18è¿\rL\15\ 1\97Gz\1d\ 2H¤J \80°\1e\8d\8d on\8d>_\95\9a\9e¹§÷°}à\17Ü\1c\88wß\8b\95ÿª\ 3 \bÇC¨ðgïå\15\86\90\ 5\92É\1d\89þ#éDZ\ 4\9auõÚ\9b
+\83-ÞôÖ-²ï6çÛ%6. B\15c\8a\89÷uêßÿâ_\ e\ e,0lVNòE%I\95\93\9c¦úµ\ 6\1eX»¼!ûÞgäIP\0Ï\aì\v°\8a\17å\1c_¬\v`»*
+úS\80`ãÏ\ 3\9cs\ 2\1du/<:o\8bèW?åçoÛ\9f\ 2\81¦\aPExµÏ\88`ÿ<°\19\98ºÇqÔ\17·\1eÛD\1eÃá\ 14\90\14\8d½îôâKP\14\rq\a:¨sé½óÖh\88Ëv\1a.»ê\83ï)\15X\81\1aà\ fqÆ5S\ 1á+\v\80AN\9dJþ©hÁ\13\0ú/\9a\83VáB\9ekG¨á2OðYX\90hϾ/V¬{\1eC4\1a\97øÜ\96\1e\e6\12Þ¼¬Æ\17Æ\83¨=¨çëïUw¯ú{FuÓ_\1dìK\ 1.L\9fHN\830T\1f\8a¶xë@\f\16\947\1a½iLëáí´9öðÈQíÖç\87\ 3JæÒ\18È\1c®;ì¬îÏ:\9au¹\f¿é\856\11G°W\13\9a\0µ¨ùúT·ê4ÍϼÏã½mý3m8\ e\87&íC\ 64\1c×õ¡=\9aÅ\bbhm\ 6v\8f\ 3÷IÚ÷9×\80¿¨Æ\9a\bðÙ\94çe±(ú\93bñÌ¿èk,_,\97a¾|.×é#cUçXäºÏñêûc\1c×ÜG9þ}¯Å\1c=öd\18\e\1fq:ÖwÿîWß~û_n¥ôW\7fý\9bï¾ûê\ f¿ûò¯þáË¿ùê÷_ý滯~\8b\82\9a\14R\87ÝøÈóð\9bï\83E\1aq|è_þöëï¾ýÃ\97\7fñ\8fß}û¿üþ7\1f¾þÝß\7fù¿þ[÷k\1eo0\üïÿðí\1fí:º¦V@\ 1?öì¿ýúV¤ÿÛ׿ýî?Û\r÷\95\7fukÈç\85\7fý\87¯¾ÿú«?~ùþÛÿò\ f?ô\ eÿý×ßÜ×ýþë¯þáËÿé«\7fú¡«\7fýÕ\7fúî˯\7f÷åÿð\87o\7f÷Ý\ f]ü·ßþþåZoT<ÿô'þ\87¯¾þûÿüÝ\8füÆ¿ùö\8fþ\8d?afþ\83?|ùèÕ\fË_\7fõ\87\ f÷\11ÔÇ¥}ìeø¿ßü_÷«ß#ùO_þúÛ\ f?â\1e\96àw_³´¾üÛ\7fúýWo®Â¿üÅ\7fó\17\7fU¿üËßýÖo¶¿\7fõÕß\7fý;\97üwïþÍ_\7fûÍï\7fóÛoÿñ\ fÿö\17Ã\7f«\98c½\80%&f¨ð\12\96ý¥\ e§E\12\1d\95\7f¡ÿýßÿø\v\83\9a\89£ô\16ý\93þü\1fïÿü¿oá\1fßË»ÿøîÿø?\97w¿µ[þ&¼®ñ\99\8e-õòKï~=Jó\8d~=>áméô\84ßýèMî£ü«ß|ø\7f\98q-¬Ûä\99w;ßûßÚGÿϲ\12êv\82CGLlÙ°1îs\860\99(ân\1f\11«£m&©ûÉyÃ?må¶Â\fË\9bRbÄ×n\8d\b߸Pz5\84Mîä½X\81\86ÙË%\81Z\11Á\ f9\ 3\ 6ú2Ë\99RhÑ Sò\86\82 2ë\9d!«\15ç\11©R\19\9dn¤vR\15o\ 4"Å=\88\84b*$ÒØv\8d"Ëdÿü¾U¼\8d\88¬\ 6\v\84ëÛ\ 60\89\95Äݺ\9dz+I¢Í\8fz¤Û¬Zuö\8ak\ 1\96Ì\v\87\96Bg¡L\13ס´Ò߸\ 6\89!\ri:\x°8;oÏWE\94\9c²ê\e\ 3¾w¿\ e\1d\8c\99\ 5\90Ý\81ç¬cJm¿\98\ 5f|\1dæÍ\18c/Îîíè\88Ì\99\97\15L¡EO)Þ.\16¥¦j\ 6Á¹{\14sS}\f\91ÖÝq
+$¥Í\16©ãO9×0\12u\fÚAXíY^\89È©g]\93DiW=¿9\1cQÃ\9cR_`]x\8eý»`ÅdEÄ5¢\8cR[üb\10°\83¤Ya îëÒÃýB¼;
+\r\15̵¦JÜØ½\vì\a/\ 3tÊ«vϺðÞFf"\18%Ö\ 3\8cVk\90\81#UQ$øi«¾Ç)\7fW\15/&\11d¬$¬Ø¸Ó
+\ \89\v^RhR\8b\85ÄO¸\1a\91lf3xÑ\9bÝ \f\15õ§[ØO»3\9c\v×|\89\86R\93\9cV½hw\86THàê«óNv
+?\8d\ 3jaåkBb#\v\1a/íáy\1dû\v\£\9dÆ\9amë\82iFBH\11ã*ÔKß\8b´e°Â\89ëk\0©í¿\82\8b\96yö\rªhVU5\10e\994\ 5Pýø½Þj·ä\80z\f\9cêÚ·Þý]ÚA¬ Ú5\91\94\9co¤\8a¸\13gÙõ\ 3$\ ev\974Á\90\1e\ e\ 5Ë\9dd;l¥Tï3®Å\ 2\1c¢k\91Õ\8e\1e\12Z\b@¤\9aÚ\90èN\91\a³òBJ ¤\95(\12Fôòß%5¡×qJ¨\8eÜÝ»](\12æ\15Шûe\82Iï\86KlèEÂH·\9a\96ÓìGée\98¹5\15\9bCt5úÎT\fK#K1JOõ¤«ôÙÛ:\91A\87ÌÊ%\91(\81xK\8c\a\92âxÁ¨Q¿Nէݹû\98S\8aSÕÅAÛ\91\ 3´(À\85D\89\15ÝIA\86î¼VÛ[«¸e¨"'\89©Rm\92:jA¤Ê\9aH¬¶ç\19lÔÔ\11\bÁ\f\887j`\15h\108\ãÔ\81k\ 1´ëRÌù 'Ó~\92e&\9c\89f\15\8a\92¸÷§\97A ù\90n&\94\147ª\ 4\17§åÒñ\ 6øAÛ\b\ 3}EuC³ºL»\93b\Î3\16ÞIQ+(\10'g\1eQ5´ïs*Ã\ 3 y@\e\99l#Ðê߸°-\84\91O¯wæ*æª\9c^S|T+¿;\8d\88ü\83ßexÒ§wF\bP\8f\8e\83ÓKÆIléϽzo6=!FÚÓ\14êW\r3®+µñ"\aP»\r½â.Ð]+áÓ2\µD\81ëê°M÷|©È\19"íê\1d&\12\12ÒBËmºÊ´¯\94ê¬6%ÕôHÁ\ 5aw\1dÎz¯´\9b]¤sô\16\\87çñ\rï\96n¡5~l³\95E\1f¼\80\8cî¥VU¦~Ù¼«f\ªà6\ 5\96àïÞ-JMÖU¥ý«ãp¨9If\82\v62"\87[\13)¼\97]ÔÎ+\13 \96\\1a\1eÔ¯U÷\14دU#}ïW\11\12?õ\1ciÕ.X\94P´»\\ 6\19Öa7Ñ9AèWT
+`\82\j¡\19Õ\11¡oq:ÿ²\1dêã-fSÀb\ 2u½nÛÔëal&q\9b2 -\1az\bÑW\91k¸U¶`?\9dz°"Ô6ø\97\8d5ï\ 4[\ 6l ê³å;X\ f]@íAÎ\99\v÷bQq\1e~Bñ½\13&W\rüj9\9f\10\98-wkÀíÖÌyU9¬§\8e\1c/ ~)ؼq×nsá=\8e\8b\b¤1üVÙ¨ÞIT\9aBGº\8e^nÚkÄ&^}D8gX}9D\14N\83\99A\rÒ\1a45ê\ 1_T\1c\97|ÞªÝWÌ\82¦\eÁ\9f^zð¹;\ e6B\99Yôþ£\1f¨\14·ø¶\19\8a4\8dKÂD\91\9f\1at,t¦\10¨¢#R$\19ûa9s\ 4Z \80ÿ/ÖyNéwÜurtò(ë*¢"½è1¢x\96\80#Rvèê{æVæ×}\843·×zY+ \1aBÈ\8f\10¶yh¹8é\88'\e<Ãfl\ 5
++c\87¢L`·ÁfÙ@¥UNà´\fýÆ©oØ/¿Ì\r\8fP\fÙ\bÙ©\9bl\bÀm<H½É\1a\11Á¹\99£vÛîJQ\86\87n*"Hµz\10=VÉ\ezrêå7Ý#t\91ÖÃ:¡«\9c\94\ 1óT\17Ã\1aß\84\87\v\8a\88y\ eV(©V0¬w£-ã.#=wå²Á\8b¬=xo\84Ó9µ\11ª
+£\ 1\94~\7f \ 4EsoÙ\17 V\ e+¾ÎÛhý=\f_U\7f×f{róÇ(±Ö¬\1d'\ 6Q\ eܶØI³©íå^ ThÀ¹\94\ 2OìÄ\87IFb\8e\96Î\r\1ar\99HXAhß4waB¢\eiú\96Õ\9a×-§\ 3\81áf] T,·N%ªw6\8dï\15\ 69\r1\83\8edLã{Ðü¸F;\92\f¾\8d\ 3o\85
+\89~\91¾\ 3\81ñäu º0.t¬Ý^[\17\1c\8beáb4%¼?U\95C\eÝ;\95\98g³\ 6_¾E½2!Ðm÷yb\90óq\15N\94\92(üz\ e\ 2°\×\12·\85\10°\17m\r\97\97Ì\16åM\9b\90Hn%\14\82\18L!Ëö«n}\88\95L\856Í;\e©\19)!®1yÊ×pTíÖc,\ 1ëB$\8a\1aÛË\\7fÊ¿·\9cºË\ 2\ 4\b5\8eëeés\ 4t\9e!\90®æ9Å]YÞ©Ý\86\9eÖ\13Yü\8d\16£³é\fT\82ÎÖÄÞR`·\15%\99ûE(ËCÇÇíàï\83\80#u\8d\1f\vábM¥ÛÊ\92§ ë0Íį\v\119\ 4º\r \0vw^UvsÝðÜØ_) \1f\16^z
+\ f\9cË[Çòpu\1c\1en\91mp¶Ðî\14\82\98k\19»!Ä Wÿ\19\fOý/\ eÊâYõ\14²Ï4EËbÃZîåIIܶ\92¨®W
+ì\rIê\ eBvC[6Ó\99ä\7f7ò¸Uð\96J¾Û\96á\1c\93\8fiF \82½ ·Ò?´^f\\88\1aÍ[f\11ªôá^ú¾c.\ 3î©ÍÌZ»Bà<°0ø]L¨\10@ýËêa\ 5\8cÖ¥\7fß\ 5M4øã!°íy\9a¿Ø¯ºl\ e\89ê\90\8fî\82få\a¡ÇM\88oæÚþ¶¥(-°s\92_;ÈÀ³)°dì¶\16¸\92®£èJUøê\12º5\7f7!QZ»qܤ]T\16³?uÓ!\ 4H3ÜôX\9d*\8bÙV¦[\ 3¢mµì\fÇ£¬\94ÕÙY»`5Àõ\ f~\88\9a-Cö¦\99ÞV·±ò\8aD\f9ù\14\1cHINÀ®@b\\a7<ÇÖº\9a1±Õ@y\\12N\1a\99"\180 Vg½aû+}vºU¾\11AäÉç`¦Ë5"¢\15BѤ\15\15\bº£\1a\82qg§\90ÆWñsÒ\97Làì\ 4\12\e \88³\18¦\ e\ es\rs\8a(\16öF4\91Á¢vÒ'r8\ 3/ýÝ2gI=\85§\86Ñ¥ÀîFWªõ4\vÝÌÿ\16L\11@\vì\92¸\ 6\8d\7fð\86\8b\9d\89Ø\89\r°-Ì%o\12\95\8cm+\19A\ 2 Pì¾iLÐ\àÕ½\bUô³oVâ$\ 1_\8fÀpI.+¡"ß¾8ÌUSIëª\13m\ 3WPÖôf8\1eÅ»fàâ;ã·ªÅS\0Y¯2Á«©õcó\91^Ü»%\908º6g\15¶\8fì}þ¾×º\10\aÅ\13 ß\87E$
+\16÷õ\10ÊÔ!\fÚ\1c¤B{\ 4Ò:5µs\eQ\14\16ÀÞÂ#:\19\94\ 4\9b5ZoVòD \90ÚöËj\r\ 4Çe\eý½û\r\8527J\93à]jÚϾ#e¬Å\18\82Ë1\bÌÙsáÊÏR÷Ƹik\eâ\ eFW==\82Q6#\8cÑ\ fÖ\16\88\91\97ßÉ*W\v\ 3ÿ¤\85Lýp\15\aãe\91p\8bs_æO«¼\988%\92Ú¢àXÖ:º\9bx\94î¼\1c\81\ 2©\ 3\7fð¼U\97é\f\14\12Èj\b\1f\1ac\ 4'¾\85Ýw¯ã¦ìwµ®Ò\ 6Z\9c0ïY6X\90 \a\88>GÅÒ\8b\87\81\91*\ 3/aµË,°D@c\15ÐÁb\113=êòî\1eI«\82y§\ f£Ü\9eõpX¡C\ 23,\11¬A\ 5Éù#%\r\1eQ3d)Å/W7\ fR\0\vrÄrCH\93Ê¥þg\ e¨ûeÀhiB3XåÿÅßæí,
+Dç5\10\9f,\10\vÕØ\9f·^5ål·\98l]\ 2
+¦y³:%XâÿÄ\9f\82\1d,%6\1e\8ed9\ç\1dÁ\94¾[\0-%hW\1e\91#iÒhj§\96\99#\8bð\97|´Å¼%FD;"?Ný3\18Ý\86\82áÝ\b\92\bê\89x7£$IDÔÛîêOÏÛý\17\94FAb]çH0\86\85\83\15\1döHeë^#¢\aº\vÐ\e\199\84ÑQA!°Uæ:8¯RáÃ~\bÜa\86¥À\86&"¡)åÌ¿òñZ°\87Umâæ
+Ï!%\1f<ôj\18\18y\1d¯¬ª\ 2BÂ\11û\93GG¥Hsz(B\84Ä /c}UdñØ\rÒ\89Ê\8a\14 P\14\1f\8d\90¤Iáj5\9aN9Y\8am²\8c¨Q(Å\1a\a\8eÖ\82\8a´\18W\87¤K±ëö#®Ó\14"Qz\87\12E\96mÜé\9a\82\\9dÀ\96°ºOCðQ¾DwÊ`B\92ñÀí²\88\93z\ eäÐ\ 2§b)1'¸ê\12\90pö=vSH\8ffl²B;\11D\86/~°
+Äo\95\92\ f®JUQÓ¯\13ö\80\18E\ e'\fî\92%rT]¶7K\ 4\90\1f\14\b\ eY$å\P}Ö8\10\92\pÊ\18æu¸lÊn\1cÞ\91A´ÔA4\9c\92Æîä¤ÜLªf\1fI\14\84>\ 2\81\88;¥\11\ f?#âNÛ1\87[ÖHv\99Y"LÝì7U¦«k\88=\84\ 6ð;\9dÄ\ 5\1c
+ËpQD³ì\93Ä\11AìÎ\90\12ä\10R\11\ 5?:Þp7öÓ\88\87\15·I\89\8dms²\93¼n=\re\93D\92\ 1C4ÃG\14\8cÓ\1aöÌêÜ)$
+\95àÂȰ\1c\8b\1aH\b\8fa}bÏ©\83d\8b\e«õk-ÎH\8b ¬|\97Î4̰\ 5-\ 4ÌwH,ÐØ|Á\86TØ\ e\8b:³\9a=b\90\\96i±;C*ÊHa@ì\81\0u\9aZç7\85;\81dͨ-|mÅR±\96\89X\16\1f.\8aZ\ 5T\89d\86í\94~¥¤\1a3¾\\a\880QWëoÛ-p¼\18K\90$cÀý6.NÇ\8aÒË\1eñ\16\9be¡\ 6 (\875cî.\DÕ\\95m\11\9eØe(\94D\9dg\89½k3Ý=\·{º\9c \91"\96\8bÓ\7fòV\1a M%q\8bãZIúk\7f\9eeß"\86!Ã\12õ\a^\95¼ÏA²[\141\rPI\81sÓÑLQ¾¶\18Ñim Á ,¥K⸶Tw^wFå\ 1ÿ!\10\97\94\84\1a±\13"¤\90\ 15\ 1Ï\11î@÷\92·Ò\11Î~´\11*Ê\82Ú Q£·k³H+\81£Û²ß¤h\95ð"v!<*\199\ 1\ eK ÌT9°\bdý¸ó\92\19È®"\90ÿw\1e@±Ê6\1ck"\95\9b¼·Ó\ e9%67\95Lô¿Í\8fla\93ÅUxH\86\11|\1aìBJ8 ³èÆ\10¢\95\b?\92òã,¡p@\948Íòç\189¡\b\88\a«\9c\81S\83ót\vÚÔ¶\9a\17÷\88\18G(Y\1d<^\18Cú\94\12Ù2V\ 5É!4¨}\826[äS#J¨:r\96\13× õ|\ fp-¼ÅMYôep\ 3¨}S[£\925\9b9¸B½á\18Ü\v\81·5ÊZ Y¯\11\99EÚ\8a\8d©G\8a\8ae0dZè;©Ë\96J\94±\91±ºâíwHwÅæÀ\1cÜüY¸\9fDÊ,s~XFÕn\84ÿö²\82Qõ
+n@"é \ 4¾\88¢L\ 2V \80²ðúXâuÂ\ 4\92J¢\82|#æ-è.ªø\ 1óÚ\0Ö[\9cCe;\1cj\9d\18pÕ\ 6<8ðß\11¢Q\9c\91¿-Ð\8aáµ+úrÿÓâ9\¤Ê¥â#;í2ËT\9fr7Uk\92º\a&q\89\ 5\87t±«Ä¹¦ÈÉé\ fºÐbH\145\96$ò\17Ê&HëÞKUE\9f
+LÉ"$\83®¸<¦\16«\ 4$\9fêË\8ex\8d\93z\9cv\9c\13O\92\ 3]ÔÉBxss\8a1Ú\91j\8dWÝ-ÊD\ f\8dZô6T;An\80¯\18ÊMyXÑS4\väØ\8d\9e\8då=DðO\ 2§\10\90.\15 2Îf\95à´Ö-BV§©\a¤\aÙûM \86ø\bÂ\ 3#\90DQ8\14¸sϸÕi¨ü«PýO\9bI\83D»%\96fB¢¼û-Qâ/îÔ¸'\18\1c \ f31a\12·àU\r\1a\9aÍRý\11½²R\fU\oÄ¢7C\14\87ÏÚRP»ãú¯Ô\81\97\88\1f\1e\8bíò¢\93cµ;õÁôL\89\8a\96±Ý\8d\8dh·\88V$\82äP\14E¶\15çtpzz«´·j³\\e\93)\90º÷\9eR¸\88Ù\14àú Ël\ 1E\ fî\98:ξ×u\8bU\84 \95\aÅV\92&\92\ 4\98ÛMJâtZì%,n{\99Ò³ç¡\1eÊ\15!¸Å\9c0Iv:nÖ¥{ÿÊR,Z~Õ¦\94·PÅ\1cÞÇB`\90Ê\19\95i\î~ÛOÖ \16â \a!æj1\15\8eb%bÐ\8b\ e(¹\1aZk\1c\82jÂSÛ\83,T4ªi\8cÀä}èâPãor\9eQÒwÜîè\ fq\9ey\89¤ÕÏXÊàÞþÔEPïð\8d«³CQ¹]\95â\8c\8f\92®d\8aAØÚ\9aåí0.öHý¬\1eì¯f\ f#¸¨Ï\90\ 5B [\rØ\9eyé9B/$Û=¼ \ 1±u
+Á@\13E@\8c\8c¿£P ]*\ 4<A\82\135\ 5\ 6\8e\80$F"º\15U.ôpñ`zd m®Ø\8fƼnv\16\11£ß`ÈeMâ\97S&\14)aË=4+îA(u\82g\8ewL\81\19¦«\ 4TGl×\90ÈĶ:ô¨\8dĹþ¾ìÇv\9a\17u\17N\99z±½Ö\ 4SeÃ\ 1\ e Q^Z&\1aÉiKϼLÙûO¸*0a\8fKð\ 2ÍÚÛ¿q©\9c9¤\867£\8a¡Í¯\13¼À\15ì,«S1~ð;Í4\15~\1eu\7fHD\83A*P¤QY\8f\ 4tö\16\96\ 3&±\ 2\88%\82Õ\9câ\11!\93oOà\8aaWÔnۣСX¼\96£W#\86Ãcfݹ\e½6%V¤b87\12Y\12骳\17©8/(\8f1.®æ¥t\³8$ª\ë¼Sç?0å "\a\12ÅÕì\98áo£7A\12p{Tn,¸ihgÿF\1c8ìKQõPb\ 5î\1c\81$,ô\16õT4OË;8vwá\8aé⸪b¥:hæ\1a\vç\83\aàíMa\18W\81O¤Å¹ÎJ¸ÈÁ\b\rC\98ó\91\83 \ 4F' þ9¦\9fB\9dòà\8eÃô±¢¦*óÂ*\89%M¤à
+®2QBónNÛyY´H8¦«qoª¨%Ã\17BXEÊs\91XèípÆ{I\ ä¸qQ°\16\13ÆP\831?\8b½\83\80T£-\9a7X#¸CK)¯O\13ê°ÃGW {ñØ\85\9e\f\8eS\8b \17àÄ´K®b;ª\1eI\94óI'óf8³M^æn_\1a÷Y\1e?p\9d\98\r+±Ã\bÀ¾$þj¾9¹©«Fdg±z\1a\81\r\8b.¡x\97(5\8fher\12\87Å\ 2\1c¥ÚÂùÄÒq\90H
+kº±\92XÒU7\ f7¯\90B¤µÖ̧\18\17XK\fÿW\91ÊM\ 1
+SEy ^K!GvDü8leå\19\15`Ò\87¯d\8f\17CjU·9Eñû\19þi\8d\0\8d\94\9eÅT\ï\143È\914«¥\ fǼ)\17§È6}\9bõ\9d\8d\964L1²hAÀ6¯Á¯[TF\16ÏÚðZ\86<\ 3åÐ"\90úÓH¨\1e
+òS\1eÊB\81áü)îÚIû²Dñ{Ôñ¿XÓ\94ÎÈz\1a\174W4¯¿ËH¥\84\88~Ã\80&©jÝ\94\1f°b\17\ 4ban«Ï*0¹jÂx¸Î-\9ec\1dmWVû©²U·\91Dº\8cG$\89E.Ñ(_Fú\84\1d$\8eìÓzüí®Ý¸y\95\13ß\r\90V¶¯v¢\15?6Ò)·®©Qf\82ÐÂ\ 4%p~N+ÜBpJq\9fvx´Òè\b\8fs1¡\1aì®Ó*·Z e"Pµ`1\8bÔ\94ôjµ«õ°ã_x¬ü\1akQðû$q\81\9cu°åPzʽR`cPÝP3\83\84KUÔe¥l»\13ûD\81íî%äØû\86"\7f%¦\9cÑ\93È]Û\ 4:\97 ³ÍÁ\97±´\ 2Ê{Q\89\89Ó\ 5ìV@I]í~õ´\893f[Ì@)5\80\9ei\16A\97\13\ 2±\89è\85°\84\9fH¿Ñ¹¹X\e©~é°)¾'ÏÐúk¯pPä\8f\7fE§
+ñyi\86& ÚjVßZ¼ä¬ÆÔm[qµRÐsU$\84°©*`\14Ñ]\r;Jõ¬;¹ß¨²#\#\9a³Í\993Ð/XÕ\ 2Y%øLl\15Ggwp£\ f\1eZ\15FZ\by¥\8bŪ*¡ÝÀ\94u\86í£\12FÈ\ e£Üpu\18i*s1:\85¾¿ºrV\80&\12]«#ÊîÕá¨W²\ 4Lj³RU\90\10°C8¢s=^QÉçêDÃXRèhuJ\10ÊvðdIúÖ+¾Ì3S\82ëÑè{%\11\1e\8bÑzì\96ߥ\1ar\1d\ 2\94<\9b0\14\90\rMPè§\8a\9b,\vx¿£jÒ¶Ö]}Î\ 3\19\ edD\94\19®^>\8f§*X~à\ 4î\ 5C9f\14;©&\80¶ýÝÝ\9e\1aE
+\87\93+pjà âHG \83×\96Ã\8a¡%d\ 30ìPÌ\97{vèR9ÍØ+Wô)Deìfå£R¸\14¨\11O\15:ÑioHYjä´$Ã\1fR\8c\eh¨Ó¡\83\89d\b±\95 \9e²\1d\97\95uÅm\vÁ<R\ 4Öñ|XÐ\11\ 15(\ 6fÌ2\1d»00é\9a\rµà-\0fb_\v*à°¦"Å\ 4\1d\J7\899A \9fV\ 2PU\ 2+Ãã\1e§ÓX§\94\86&x\9a_¶{x\83ö\0\ 1DQêÑÄücÁ9A
+« \92\80É\19VÅ<"!b\ÖK\\94F;Í\81F {\17A[ö¼Ma\18\84\86Ô\,îÃs\fµª¸f?\rжß\86\8d@\ e\8a:éÝkV\85\16^\fãë¶rx}\vgè¶-s\14\8a
+°\ 2û\ 5\13\8e¤4ýSª\91ÚÄW\15ÝRNñ´Ó\9bç?v\10l"4+V: 8 WâÇm\1e\98·þ0£R;p\1c\19Y\9däÂ\9d®Ö/^\18\7f\10âVgàãYFxA<BE*ÔB*:N\89\10;\v£ä²Tò5ZF¦z!!\92¹O\18\89'á^\19Îzó]\83\r\17© ÖÌr:[\8f*õI²¡ÃÄf\84[nFð¦Èµ\82 ïäR'ÛêÍMXÐ\96˦ß\1eÕú½[Ð\96\8f^ÅÌö6#\915&F«æç'á~e\87ô\v\93TØî-\e\\90\88ÅÀ\8b±L\12\8d0Hå·Q\97+=Ü"Ö\8aDí8H\94\97D\92eê\8dÃM\8c&\8ejBþÒ¢v¬@í\9fv¸\aÛ¼Xì½\1f\9fj\93To\9côè\1eù,\ 5ßÕ3pYM®8\17²(KQ\ 4§\1c±<çæeHHd\9c*\8cpÚ%§\97Ó!tN\87ŲJ(+it8¨{S$A\9eÖ2\14©Ð\19''\86ò(µí\90\8f1\09O#a\8c\18©etãé+Ñ\19ÖR¹*\rCÖÇÖâæÇ2È\ 2\192\ 6-¬\16ô\8fv¶yÍÐuyZ\9eààªÐËê\90\8b\90\86`úY¢f7CV\18\85*GïÉ\81j\14\15\141_\16h8\94Þb÷\9b÷>\91M]\158Ù<\81@\85¯BRÜ©È\83«-»±\19ú*BÅiÈ\b)\10\87D\7fª\96J\7fF1\15Eª\au¼d\8aD7¢h\8e²Õkä\0\bo\13¶\13\95T\8bߣ\15Ä
+\ 5W/\ 1¦\ff÷z\15ÅH\90\184\ 3\92Í»q\91ªÀERÒ½\1aD\ 5@x\96\85¦ÖðWV\ 1\18Ù\8dKð\8e\ 1Þµª¡L$1tçÊînÂ\84mÞÀ\17½R\81&\7foêKð7\0\ fª~\1c¨'å\81(DÐÚ%o\88»`kuó¢\vÁrU»ÓbÚê\84QÅýj(\9fb\16\ eÃ\ 3Pe<Ïë\88\ 2ÅÍ#$ú\ 65îÝ
+R1\19\99á\8e®Û8Zm¬£¿â\8cîÜ5Â@ \10RÂ\0±0Î\9dýâ\1eÅB\1còØ\1fGéÎb\ 30\87²Ié\1fjdr?\1e\9b9\ f\bm,$i&±tüx£*\91âNÛ¥*¹Q§Úæð\8dHйH, \83ä\f£'X\938
+¬\8diwÓ\84\916í
+Ò\98\11Û\9d\1dîK%\9cÒßDÇV\7f[\95#\8b²J\91&\f&˯5c$°Í\#·¹*\92¡²{+Yº¢4g7ø\8fK\b\90©\ 3¤-e}©\ 4¬YXNe&ͨϤðÁ%â¶Ð«ê\ 6<N\v=µèsa1êÀÂ\0Æ\88 @#\vdÑ82¡«í4öç\89\9eÁ-µT±\8f\ 6ËFP@\11mUã=ÁFå\18).R\83D¤^@ËS5ÖnyܸÍò\89H9«\94a.\8bK\94j@â\8f\96&3e³ÞºåÞR¸µVÿ{\18V\v\\17JÄ\908dBO·\ez\94ü^\92p=c8ªÙ\87î6êv\95áÄZT\96\90Z¶Íëx\0ÂÚ\15íãw!¥ 7&C\8d"ÌSI©ÃU\bþÞ\1eUú8Àj\ 3¤°\15LSBîòuVQ¹¢jêæµ&hШ\v ìYÐkØ\13\96Ki\9e\99\ 4\f\e§\9a\9f\14×\9d
+Â6ßú**7\1eíj\1e\8eÚltn-\8e'«\97U\8c\v \86wæÞT\1e\ 5íJÝ-»·\bAXlºÄܹS\ 1SQÚ\1c\91´Ø,\9aDd\80ij\8aöY¤W\1c?Tq³'®ÃN\aKûD\82n\89Î\825à÷p/Éy\91C±ª\92\0JÈ;\15¾"\96\83Á½)J§
+U\1aí\10\9cqx®Ö\0õÞ\87u <bQ\9dm2ÓN\v~«è^¹dá\88/Æ7\12y7ÕAH\8a¦¦qÃ\8ezNgªÎèxØ8gëgªUWù\92@`IûÔàÌ\94ý \1c°\ 3íÑ)\9fáWÚ\80¬þ\94D\vá]\ 6Z%oüB±v"\vùc\90\86\92²\96b°\ 1B(@böÀ\16«®ÕxÒÚ\8b@·\16\90æ*Fµî$\8br®\86ª/Éi?(C0\96¹\ 1ð\16\83~µÄÖiµ)\8aC«kCG\9evN,òCijdêác/8â¯EwI\82ʪ 2\1cåx\9b\0\ 3\1cªI4u<H¥\Âx:6Ë\92\99BÇ6-N\97eÒÅ®Sqů\7fa©õbøPçuÚ"7ß\81«ð8Õqw\14\ 3\95R«\9aÞc?Ü2\12ã\b ¬ã0e%î-\92V\87\ 5§8\87«÷K\92#\ 6¸àhÞ9Ť\ 2+@\17\80¶\1d\r2t\12\1dËh\98\9dÖTO¿¶
+!îcUÆ\a!|lxtµNô±\1cT¥=ªÞ§´\rǺEæÞ|\ 6Ns\15k\90ÛgÍêø8\1cl\12u(\ 2¶£z\aíe{âïÜÊPÙ\0U êê\ 5zï´8 ±\13^¶\9c\88k\9fQöËw\v&dñ6\ 4ý2\ 5ÕÄ\8a«\81¨H\vìV\12c\ 1\98ÓU\ fK\10\801MtZ\10M½Á\14\1d(\83ã\860ù"Y\93Å\91ú\14a _¾4s¨\1f¡âO\19\87þ\18ÒïO~Ð\0Äct;\1daw5`\9d\17X"U\ 5À\98\87¡¨ðØ7.µ\9d\13RÕ\0hÇÑý|X\86ÞÔ\9a\9a¸ã¤VûòÊizÐw½©\1fè\1el\9am¥\7f\97ð÷\87Ü#Â\8a\13Ä\8a\a E\ 2²=BfäPÓ\15\87®Èh\8a\9e\85«¨^_U\99m\16dÝ=m\8a@Y=\ 4\97»Kt¡ÉÚß\ f©beG\ 5ªHp±\84\1dáô\12\8d\9d°«¡Ä@Ùæ×Ùùª\ 4\8d\96c*ÀTR\87Ö:¢LiÛ\f\8f\84\86.ZÀ7\95^^ê³´áÙ9\10\85Õ?ï{\9d\81\ 2îñZ\11q\ 4/Þw)tsÑ,\e°|ÜeUj\8bÿ\98°t\89¿DDzstê¸\8a\16F\8al\89\1f ÚÔZ»{M\16A\9aE±æ-7¯\ 4º\8dæ\14\95ÂÅUò\a\88y_Þ\r\9d\82f$¾v[\bW×M·
+\92Ã*øV\86³\18\eªÿ\9bÈvnKÊx!ÅãDÕÁb9\1cÅ\80\1eâ¨ICv¨\ 5Ë\9d>\ 4\9c\9cÍ!\83\11èÜW¼!\8a§\ eÇr\11 \aÕ\10\80&a\ e«R\92\83\ 6 =\85\10\8f^\7f»QX\ eÎÍ«*\ e7â9\991\ 3óïe¨a
+!\86\1d]][@ñ\81K£f¼ÓQY$\88Îk"°\83l_\9c\19\18È]ìú\14\8cC\9fB\92\13j*\ 4y\ 2-º\17u§0ôRôâIrÊñó°H*\eLËüò~àÝI×TBtyÁ\80`¥©\ 3B\80Ò zÁ\9eº\9c$^tÉ>«È8
+\ f'AÜäRl&PûâeWówuJIÖ\8bünNTUMQÜ\87á\81:\81É\95R+\99\7f!0»ÜÊ\8bò"\f\ 3uW;C¨º O\19°¥\ 3UIjF~1v>$\16LB/\12÷}êÏ?y.@0Näô'\15\r)øÅ"Tù|1@\ 2\ 2\90B¡\0ÃXÜñê=\116µyD:/å5\8d§* -ñY\\96\9c\92@\89à+r`«·Ò8(OÜfQÅKV³\ 2\9b\87õ\96Zê\ 1CP]\19\97\816\7fðx\9f\ 177\v´P ´\1a\9ak\ 5\ 1Ñ\9c»¸yA©\85 \ 3K\84\8cêaígê\7f\14¼U1\96Ô\93\8c3\80\13Ë\16íh\87\19:ô
+\88;»ºæ\10q\9fXÜ=\91K\9dùâ 3r$2l\11\8aÌü´Òù-øá«7À È,esø\a"u\9b\ 52Í\12Z\fñü1iï?áºPâÒZ:\16Ó\10Z\12d¸¬,bq¶]®Óä\1e^Y\80d\95çtxØ4B\96«\8a\7f\8e \10Þ\rÀÈ\ 4\9b\11\8a[\\16É\12iÃ#\10ëÄÛHÑÿIüYtËî\19\ 3¹ä¥\18£¯,Ä\e*½Cº\89\8eÄ+o¥\9aq\ 6\9cyu3 9Û\96W\10n\9eP \11Q í׿~7+\86¢HI\12ø\80#Df\rÕ\99ª3Ä\99\13d\18×\81\.ÉvÙ³\14\88L\a]å¾gÔa\92¯\17Yóé¡z\9c\12A\1d@_\9bÝk\9bÀ7\88¨QF®\80Ni^¡\88;#n²\94(Á\15Z«K=[¯f~\85JÙG\8aHÖ\fýºä\83;¡\8795y]Æö7S÷Õù9\85þ\94Õp)¥\8b\88е>Jë\85À»ôr\8d6\95\8eº²y\999x"{µÂ}\vo \9dB/\11\91^\8aÓ\8f\88}àºQ)«Ò\1aa\80¨#u7ø7ÂE[\8d`³rL\11ÁÐÆÝÍé3+Q¶\8f°þNëb\19$CñD\97\92mW\91\1fÙ\15aûÑD¤\11+»q\eùß¶f\1dâ¥_EÜKüCxæ\1c«) \9aÒ2"\1cR!íàÁRfx\18æµ\87Á«¥a\ 5§x:ê07Z-\17UF\1a\1cBhZ\9f9\\ 4Ó\14jk^\16$%zy\9eY¹\165ò\80\1aêÄdÖ\9f\ 3\81\99ºiIÂ\1d¡}\89Ъ\0Juã2\86ZÀeÓ>\8e3¨\93ÝK\93¶è\E(æ\9fÅê]\10X8¶-Þ(\ 6\1a\9cõãÓé\99Í\96NÖÐ\82Xz\ f|´%èå/¯\9a70Ëð\10),±lRS\f\9aÃßð\ 6= ÷T\94\9fòx&ul5\93°»\13â¶ú¡{\ 2Uý¾\9fN0{\ 6\1c\eêRÙáËÑ¡\90È\9aUz\92\ 2zõ\ f"«¡x\1a¿\95\14÷\84Ùñ\1c\15\ 5qgjg\91ërãî\1aÝð}.ÇATÖ+Ò¯J¿³Îe\9bñª»\97¿QòBA0`³^é¸wÔ\ eÜaÃw\800^\8c)ô§G¥ÛIÊ\81ú\14ßïÅrNöªÕú%eaJ¢¨ Ñ\e£\ 3«fp!I7QR5ù\0Su(Õ\\riG*\80£@¿yÙO*\10e/{É+]\9bÓ\970!ÕbrÅ\82+]R\ 6}hR%\8f¼L\9eò\1a\ 1\16]¤v\8cSZñJý©U©Àî\99W\10`Æ\98¡DJ)\84Z\82R}µ%\0\r¼-\1d3Ò\92 ÔÆá¥\ 2GW\9bÁ\a(\89\18\ 2ýX@\11\84\90&BÇ\81\ÌÐ3ÉîÝé1ï)\14Ò\1a)CêR\94a\93\8b\8a¤\12µ«\83ÓmÅ\8a\9buÚ,j6':§¦ÿÍ\91¯º\84,y\89\fN\97.Þ\97^\ 3 \944ö.Ð\82= \ 5\\12CªJ²~\1d%óÂA\8d\83^\95G¦ï\8aŹ,\1c\14QnB\8fÊÓ¯\87-\10\ 2\94ª\7fY\ fG¦lN\9d\15q$\8f\1dVÇ6 ¿cÉëêI\\82\eJë¶:`/*\12]ýH¦\86¬,\91i_½![K\84p\7fHì+\9bu\94K*ö¼²{¶\97Z@9Î]²YÂÄîL)\814F\830·áº®® \81}i{í\12{Ùf\1cÜÃu\8b#1à̲DºD¥\84YV\15R\16¸ÜïÕaz(;5#\92ÂqUW\87$Ö\81záûu@\84)»Op\8d\13©K8·³]µER\ 4 \19«ÖÝ£Öy³V\0ÆÖ(×Bbo»\ 6Ôh\\17Ý\0¦Y\ 3çQf\87lßk@z\949k(\ eÂu\f¸Ð"ü\7fúR\95±Þ\1dh1î³6|\9e¦2\1a\82»§S¿é¸Õ5v^5ë\ e·=íðÑø¶\86Hé<6\18\9fÆSw\15\9f6I¼\85O4õJW\86TEZRïTÁPv;H¼)ÖîL)=0*4tz£%
+Eé×'oE\11ë\9eÇN±Í\84P@·ÀV\ 4\80«\f*Id\89\1f\8e"\137Z8Q´¾í°ët,\10\fæPµ\8f,^µ\1eQ\93ª2F\9d\88Ô>/F««\13\8e\1añd¤wÉi!ó\ f~.\9bT]\ 2\10')\9c \7fÀ\9bjá¡,Ãß9\1fE¾îeü\17\86+´£ÓM\9dÅù%U\9aßÜ\92¢\r
+³IQ.Õê\9e\86\93HW\93\96\f§\83?{éÞ\86|GÁAäu\84.¬¦¤ºç\9c\92I\13¤Tà;·(Æ4B^\80`\86µÒó\12«\17¼wßÑ<Àu·¶!\0\13\97\1a]b°\e¤ùHj\83Q²;¥\99Á\179Î\82\0R3;\9c\92ïÝ 5\ e\14\17RÁ!\ePí$l\15ú\83®}5¬f\ 5§Ì\ 6>\¡V/~1\89#¬ko\99ä\bÉ\19å-\ eÀee0\8b¥\97\ 5\14Ñ\f>F\7f[Í\85cóÆ}Ö\97HuÆj\97\1dF\87 ¾+îßm\98/\1a\1d\12~´\12èÆµ\ 5\16ôi$`8qvF\94ô\8b<0@/ì>ºl\96ã,ÎP\84DÕâvÝuI¢EF\90ýì÷Ù¶)\ e\85?IªA\9aÕ@Ä9¬æÂÜËË!&\8a*åÔ{}¨\1d\97^Cj\86î¥`Å `\12yf\f\80\12MÚº\e\18-\12ó\aÕÍ}\8e\12J5¢<Ó¤§ÊJÍ\ 5Z\1c\87\ 1|fbï-@RXQÅ\9b\19TÕá\83\ 1oØ\84Þh+\0rÚ"@ðe\17\83\8d~\ 56\11\ 6\11¡\ 3\84j\\ 1¬\19{h\ f'\ 3u¯Â\86¥cÄ"T÷\9b¸N]$\17Fñýj\ 2\8d®àÔ£êW(1÷ª\0¢JHWh\18Zs ²\b~õô3\82ÈL\8d\9aðó°\92> 7»ªQMt8]K\13½íý`\9e\13e\9d\12r0\13\88QÍ\ 6·á\14\ 56¤\1eì`\91Ýüâ\98"Tp\ 4bÞÒ¼CÞ\9bÝ%àü¸\86"ã¼J\85\1c*iÖ9æHA\ e½m\9e«ým®Ùáµx~\r!\11Ãð9"4å\12±µ¤\véÂór0\9b£X4\ 6C|\156Ú)^4ý½G1RµaË\8b\18¡£QúiºÒÿ\ e<¤\1cÅC\19WÕë\12·:\84÷c\ 6H$\10\88¶/ÃG©êF\1dLíðnèËÀ\ 4p\9cÕ[©î´¨Z2¥\87È\92\r\ eç~yÌ_\ 2\82\964¬]\89\9a}ØÖ¤ùE\ 6Ò¹8\91\82\9a\1a\8b9óò\99C`S\1c\8a7/c*U\19F\15\91¬ú\90h0\12iÜ\85\0\ f(\b¬Ço¤ÅÔùG\ 33Ú\91¿#\9aFA\91b\7f!T¼\95#FÉÔK5²æ\11R±rÅyAÀZËeñLª"®*\1dKç'$\ 1¯\1a\81Záý(\18 ð\98Ë|¶-<\112Ú\9c\9b{í5@\b\rã¡:ê\e\Ы_¥ÕÒ,\a¦®\81Ħo¦\bÈ[\127åo\ eKåÇTÁ×¼N¹Z\18&&N\ 1\81MÊFã¦J\10XÐj!P\0;nr\19©æKÅh\97\9f³[h¸âÕN[o\9e²ãS\14\ f&T\8dän(\95*mÈ¿/Sf\11\89\920:\80\88\1e ¦\8e¸çÞ\fQ~WcÊÕsUZYT\96äU÷¦We*§H\91Ê[\8dº\93\8fØ¢(\8d¢ÓC2ù\16\977\e\13Ù$"¨\9bÐo°ÿ\9dç\91wÉÃT\v
+\89>°\0DiÙ¼KLMÿM\ fîNâ¹ûmÛ/½½\9b|\1f9\9cZ\86¿\8fÁû\91°u(V\15j
+¯ä4-¥Ø\9a\1a\94]`'Y\14²ÇUàÇ\12x\aBAu:8ï
+\Z\9eS\a\99*\ 1\8b²Á\96î£ì\ f³GØ¡«\85we\99a!\9dÎqÊUR\89ÍÀæ\14\97\ 4¦\81ÚcR¥*L¢åD\82£Ç«u\ 4çUÍË8\95\v9k\174¯Ô°ÛBXÉE\850\94ã4\a\19ѯA Æ?\8cacëô\8a\12[âª\ 2«u`q Ô°±\ e\89n\84»\1e¥RS=FXE«GW£æ\8a|96Q\84}\ 5>Ù¼=O%C\ 6\9a\159¹\10\0\9d\11\ró)<\1d\ 4#rHÀùq®\11e\9e\ 4v[1ÍÛ¯Z¬\16\80Ü\96`U!÷Q¿^±\8f׬!ôÎ6AîýÚ\9fui\vY&\16\93oWï\829\92]@«U \88\84pu®"jßd\13$\16*êA\89\93%\ fQ¥ð\17Ùú\1e>´²\ 4\13\}û\9b»áB°_Õ`G\bZ\r÷N\1e\83w QP\8f\9bsá¶æõ«[ó(-ÕÍ\ 2\ 1(\9e¦c\7fR<¦&²ºe¨Kê\960)0#ê(Å\10CQ\93\15PÍPÙ¬$\r'X}Ó«Wû\12\1aå,¡\8eç"ä\19\82\bK\9amäBúB\ 4§HZXd6§\830®\16)Ñ]!ä}MI$^ÝnÅå´S\8as@t\81Õë\9fÔ;T\1c#LJôÀ\96:Ò_çÅ3Fü)#Ð*\1cúhñÐO|Ø\ 2:Ñ6\93\96-F+ºÿ\10\9dß\8f¥\a|ûºÿø\9b¯\7fg\9coßþ'1\8eýû?|û\8f¿ÿ\b¡à£Æé\13Q\8e½TFÁeü` C81\90!\98\18È\8a wg\ 6²\82É31\90\15¥¬\ 6\ 62Xº\9f\fdp\12Ï\fd\92L\fdvÍÌ@¦§\8d\fd\bf\ 62$O\ 6²\ 2WÈÄ@VD£92\90\89£øÁ@VpW©\15I\ 6²[\ 3Ì\fdEɬW\ 6²\928{Á@Vè\1a\9f\18ÈÀÍy2\90!\9d\19È\90ìeë\fd\bD}01\90I:1\90I²µ\81\81L\8fjeb +\89k\16\fd0\90\8b¢ÆÙÅH\1a¿2\90ç11\90\11c\9b\19È\ 6ÉÀw5H\9d\81\f8¢í\ 3\ 3\19\ 1¨\a\ 3\19¼Ê\13\ 3\19o53\90Ý\1e¬@\v&\ 22 ×:\10\90I2\11\90!y\12\90!\9d È\90Ì\ 4dH\ 4Ì=\11\90Y~~$ \ 3lj& \e$\ 3\ 1Y\97\ 6\ 1\19ß=\13\90\11y{\12\90\19JåH@¶ªÃ\91%\1d\fd]2MIJ\8d\83\8cpßÌAÆd?9È\80³\988È\ 4\q.ÛÌA&éÈA&ÁÄA¦\80ìRf
+2 Ïe C2S\90Y\99Â+\ 5\19\b-3\ 5Ùz\95\17
+2\9eO
+²²\ 6ÒLH!\88\9f(ÈP\85\ f
+2 G
+2\ 4*ð
+
+²\87â\8d\ 3Óª¡j\ 4('
+²J'úDAVK\9d)Ȫp?g
+²\1aÕÒIA&ÉDAVURüJAV©_\99(È\90Ì\14dH\9e\14dP\9dÏ\14dµ\9c/\14d÷À¾AAV\99Ì\89\82¬ª¡l¤ «µ<)È$\9c(È$\19)È\10<)È\90Î\14dHf
+2$O
+²J;ÃDAV\ 5\144R\90=§ò½Ou¥\1cý\95\82\fáDA¦«F
+2\ 4¯\14dÈ&
+2\ 4\13\ 5Ù°_)È\8ahÕ\ 6
+²¢jÄN.V\ 4Ö÷BAV¨î\18)È8\14'
+²\ 2\17\8aw¤ C(\88\8a \93`¤ +ࣽP\90!\93ã\16\14d\b&
+2 ^)È\8a\98\88\8eNAVH\1e\8e\14d\852\9d\17
+²\ 2ø uÞ[Ô·\b*w KÁHAÖ\85\9e\19+Á%\14äbÚì¯\14dh\92\89\82¬T\ f\ 5\ 4\ 5Y\17t
+²\949\ 5\99¾c +\942½R\90\95ºÍ\14d\12Ô½S\90é¶W
+²¢Vø\81\82¬\88"d Cð +µÌ\14dEÅ\9a\ 3\ 5Y\17\f\14d)\f
+2\1e>Q\90a¥=(È
+\0C#\ 5Y!h=R\90¥`¤ KaP\90\15Aª\r\14de;\1e\14dE\11ò\81\82¬PX<R\90\15\1c W
+²¢Xÿ@Av/\93\99\82¬\íIA\86p¢ +\1c\16#\ 5Y]\96'\ 5\19Â\89\82\fÁDAV\85\7f<S\90!\9b(È$\18)È$x¥ +J0\f\14d(\95\89\82ì¡å⤣\8aåAAFnr¢ £Vg¢ \ 3\ 3èAA\86p¢ \13tÐHA&\80¡W
+2 ;\ 5\99n\1a)ÈôØW
+2¼ä\89\82\f\7f|¢ #åúJAÆwL\14dÜ5Q\90É\89~¥ «\89Åæ\14dæ\8d\ f\14d\12¼R\90I8P\90éï\91\82L?öBAÆ×N\14d¼óDA\96\82\81\82,eAAFx`¦ « \8c<(ȪNÈ\91\82¬Ò\9d8Q\90Õz<)ȸl¢ \13\17íDA&Òâ\a\ 5\99xf'
+2\86a¢ KÁHA\96 \13|ÊHAV\ 3Òu¤ «õ\9a)È*)å\91\82,\ 5#\ 5Y\17:\ 5YÅ\17í\14dp\ 2?(Ȫª¾\ 6
+²º3\ 5\99\90I^)È$\1c)È$\18)ÈêV\9e\14d\b'
+2\ 4\13\ 5YUÚ\v\ 5\19ï4Q\90\89¶x¤ ³5ñBAVÛ6Q\90\19)ò@AÖ\ 5\ 3QQ\17zÜ»ªÍq ã×\1f\14d¬\9c\89\82LtÅ#\ 5Y
+F
+²\14\ 6\ 5YU;Æ@A&FèW
+2æz¢ Ã ï\14dù×HA\96Â ã!\13\ 5\19´Þ\ f
+²\8aÓ?R\90±\e&
+2ÃÄ\99)È\ 4\9e3R\90!\98(ÈêQ\9e\14d\8a-\8e\14d\b&
+2»b¦ #D9Q\90U5}\ e\14d`Û<(È\0`\9a(ÈÐÐ\13\ 5Y\17\f\14d]è\14dõtTÌ8&\8fãÉ@¦7\18\19È\10\8c\fd\82ßya 3ÙÀ@¦\9bF\ 62=ö\95\81\8csdb ãt\9c\18Ⱥ`` Ka0\90U9À#\ 3\99àÿ\1e\fd\1aÿ\89\81L\88O#\ 3\19\88O\ f\ 62A%\8d\fdìþ\89\81¬\12\1d{e \93g42\90á£L\fd)\986v\b\83\81¬RÉ22\90Õu{2\90Õå\98\19ÈêRg\ 6²\1a\84º#\ 3\196×È@V\14t\98\19ÈnO`b »-è\99\81\f3ñ\95\81L²\91\81Ì\ 4\ 3\ 3\99 ^\18È\10N\fd\12\8c\fd\12¼2\90ÝÇ÷Ì@\86`d ãïW\ 6²\82ò\1e\19È
+¨H#\ 3Y©û\93\81¬8ØS0\90ñ÷Ä@&×ç\95\81\fáÄ@f\82\81\81L·\11D\19\19È
+¸\81#\ 3Y\11\ØÀ@F¸÷Á@\86Û01\90\15ñë\f\fd)\18\19ÈR\98\fd\8cÛÌ@V\8eõ\r\ 6²"$Ü\91\81¬P9?1\90Ý/ô\ 6\ 3\19Ò\99\81\fÉÌ@VÔ%ðÊ@\86tb C01\90é\8a\a\ 3Y\11`ÛÈ@V\ 4Ð?2\90\15Z)\1f\fdH'\ 62\ 43\ 3Ùm_¿Á@&éÄ@¦;G\ 62=ûÁ@Æ\17L\fd\85\ 5<2\90¥`d \va0\90\15\9dO\ 3\ 3Y9Û\83\81¬\ub Ca\f\fdþçÄ@\16²` +bL\1f\19È
+õ\ 2\ f\ 6²BéÁÄ@fã62\90uÉÈ@6H\9d\81¬D¡«3\90é3\1e\fd\92N\fdHf\ 62$O\ 62¤3\ 3\99$\13\ 3\99$\ f\ 62¤\13\ 3\19¯:1\90\95³=\19ÈR\açUè£\91\81,\ 5\13\ 3Y\97\ 6\ 3\99=~d ÃË}2\90\11y\9d\19È\14[\9c\18È\bý=\18È\88\10\ e\fd
+,\8e\fd)\98\18ȺÔ\18È*tº#\ 3\19\ 1\84'\ 3\19Ò\99\81\fÉÌ@V\12Âjd C:3\90I21\90éÎ\a\ 3Y¹Ê\v\ 3\19#83\90uÉÈ@Ö¥Á@ÆV\98\18ÈÊq¼Á@¦ãub #.33\90\r\92d ë² \ e**[\1f\19ÈP}O\ 62-¸\89\81\8c]63\90\15\99ð¯\fdHg\ 62I&\ 62Ýù` \93tb +Â1\1f\19È\90<\19Èx·\99\81¬\90A\9b\18È\ 6ÉÀ@Ö¥Á@v¯Â\17\ 62"\O\ 6²²\1d/\fdÄ\89'\ 6²\82\97þ` +Âk\1c\19È02f\ 62\ 2\7f\ f\ 62.\e\19ÈJÐ\87%³XI\94ó\91\81¬\94(ÜÍë¨Z\9e\18È\ 6ÉÀ@Ö¥Á@V2ñ\14\fdüæ\83\81Liã\89\81\f\89\98'\92\81L\92\a\ 3\99¤\13\ 3\99\9e51\90é3\1f\fd\84×g\ 62"å2¢\93\81l\90t\ 6²Ah\fdEÉ\96\91o\8c ó\93\81¬Pk41\90\95z½0\90\95z¾Á@\86ôÉ@V\ 2x5\19ÈdXN\fd\83d` ëÒ` +DL'\ 62TË\93\81\8cãzf Ã\97\98\19Ⱥdd ëÒ` CiÏ\fd\84B\1f\fddÁf\ 62âF3\ 3\19¡\8b'\ 3\19q°\99\81\8c;\9f\fdÄOf\ 62`lg\ 62\10i_\19ÈÔì81\90\19¬ÐÈ@\96\92\91\81,\85Î@¦\16 \81\81L\10ů\fdjs\1c\19ÈèB\9c\18È\1e\ 1ã\88$ÿ \ 3Y\8d¶Â\89\81¬®Û\v\ 3\99®\9b\18Ȫ
+O_\19È*\1dé\13\ 3\19\ eîÌ@ƨ?\19È$åÌ\v\ 22\ 43\ 1\19\92'\ 1\99&q" C2\11\90)Nö cíÌ\ 4d\95ìÅD@F\98õA@F´n& «{y! «\10ì>\bÈ\88\0\8f\ 4d\ 4hf\ 22"\eO\ 22¤\13\ 1\99.\e È\10< È$\1d È\148\99\bÈ\90< È\94K\98\bȬ(n «üË\83\80Ll \13\ 1\19Ѥ\99\80L]Ư\ 4dB·'y\eüct,OücUIØWþ1z\98gþ1}ÑÄ?Æ0?ùÇ\90ÎücHfþ1A\98?øÇ\14W\9bøÇ$\99øÇ$yð\8f!\9dùÇÔJ=ñ\8f1<Oþ1bW3ÿ\98h\17&þ1(7\9fücô:Îücâf\98øÇ\18Û'ÿ\18Á°\99\7f\f\í\89\7f\fõøä\1f«j\16\1fùÇ\88\97=ùÇ\90Îücì¤\99\7f¬
+ìð\95\7f\féÌ?&ÉÄ?& a\96\91~L\19\8a\89~\8c\97\98èǸïI?V·ý\85~¬ª\82y¤\1fC)>éÇLU\8eôcR§\13ýØS\11\87\ eÿtôc\96.x¡\1fC\99\8dôc5X1\82~¬\1eí\95~\fÑD?\86`¢\1f\93à\95~LÂ\91~L\82\91~\fÁ+ý\18\9at¢\1f«
+&\ eôcUp\8e/ôcèò\89~L\aÑH?\86n\7fÐ\8fIá\8fôcU5À\ 3ý\98\ 4¯ôc\bGú1ý=Ò\8fé®Wú1ì\94\89~¬¶:Ó\8f=¦ìý'\\15دOú1¤û±\rôc²s[\eèÇ\90\88\9f`¢\1f\93TviÐ\8fIÂ\ 1\99ôczÖ~¶\99~LöðD?FíÈD?FôòI?\86ù:Ó\8fáíLôc\94¼h&'ú1¤ë¶\fôc*\8d\99èÇt\rÛu¢\1f\93t¢\1fÓ/,ÑY\8c¯CÞ¼,/üc\94mÌücæ¾á \ 4ÿ\18Ñ×\aÿ\18\15\183ÿ\18\91ì\89\7f¬\b\9fù\95\7f\8cðûÌ?V"'\9eüc\98ûOþ1üç\99\7fL\81Î\89\7fL1Ó\aÿ\18q\82\99\7f¬$yqð\8f\15±\9f¼ð\8f)x1ñ\8f!\99ùÇ$yå\1fC8ó\8fI2ð\8fÙ\83^ùÇx¯\89\7f\8cá\9aøÇ\14ixð\8f\11î\99ùÇ\14G\1cùÇ\8aØT^øÇ¸oæ\1fc6fþ1¢¯Oþ1"\v3ÿ\98\96ÄÈ?FFâÉ?VHmNüc\84zfþ1\1eþä\1fc\85Íüc<kæ\1f+¤\89\1füc¼ÉÌ?¦ðÒÄ?Æo>ùÇ$\1dùÇ$\98øÇ\8aTüÄ?Vö:ó\8fÙh\8dücH\9eüc¼èÌ?V\ 4´±×ä\1f{jÈOy*ck=øÇ\8ax\97[ç\1fÃz\99øÇ¸âÁ?&áÈ?\86@9Îà\1fC díÈ?\86ð\Jç\1f\93`ä\1fC Wt\84Ð*"þ\1eøÇÊêeÀÎ?V0\84\94ð\1cøÇT4<ò\8fQ|(d ç\1f#4óà\1fC8ñ\8f\15\ 1ÿ\ eüc\12¨urà\1fChÐűthÊÚÄeeiN \84\9d8ð\8f\11Áñ: ;58\9a&þ12]¯üc(½\89\7f\8c\82Ñ\89\7f\8c\92µ\17þ12\1e\13ÿ\18\11ã\89\7f¬È[\9bùÇÐ5#ÿX¹Ö\89\7fLºè\95\7f\8c¤ÉÄ?¦\84ÚÀ?F*ð\95\7fLÁ§\81\7f¬À\ 1¶\1cÁ?Æä=øÇ\14÷\eùÇ\8a\8aa\aþ1¢\93\ fþ15\9e\füc\ 4M'þ1Îù\aÿ\18wMüc(¤\89\7fL\91ÕWþ1\84\13ÿ\18¯4ñ\8fIðÊ?V\ 2~&øÇì¶Î?Æs\1füc%\b¬\83\7f¬(\80ÜùÇ\8aú^^øÇ¤YGþ±"®ì\81\7f¬\88Lç\85\7f\fýUÙÍÁ?¦úÚ³vþ1V³lÝ\81\7fLáÉ\91\7f¬\88\8fàèüc¼ã\83\7f\8có`â\1f#m;ñ\8f\91ï}å\1fSEÀÀ?ÆM\13ÿ\18\16Ð\83\7f\8c×\9eøÇ\8axZkÒ\8f¡J_éÇpn'ú1éÛ\91~¬\94õA?&ÙH?&\81\80\16\9c~¬¨\9c{\9béÇ\10Nôc¼áD?\86à´~îÞ\81ASÔH?¶
+\ faMú1u\14½Ò\8fɪ\1céÇV\95¿¶N?FðåA?&\ f}¤\1fÃ\ 3\9eèÇðÖ\17ë\97îôc\12
+:Ýy|\10è\ 3\82~\f\81u\81\ fôcEðÜ\ 3ý\18\82Í\98¶½f\\82\17ú1ÝF\0-èÇ\8a¸³j§\1fSW\92"\90\ 3ý\18!\90\91~\f\vN0wA?F,åA?F\10f¢\1f+ªÿ\1dèÇ\14:x¥\1f³æ°\81~\8c\91\9dèÇ\8aòÂ/ôc\8ahl¢:rú±\92\88¤A?\86Mò¤\1fS*\7f \1f+D\91Fú±"hí\17ú1N\8f\99~L\19¶\89~Ìlà\17ú±\12lvI?\86\ 1ý¤\1fãæ\99~\8cÝ=Ó\8f\95ãz\83~l\96jC\1fÙÜâ\98+%*±&ú1I'ú±r\/ôc\92<èÇ\90ÎôcEt5#ý\18\92'ý\18§çL?¦tÿD?ÆÙý¤\1f\93t¢\1fC2Ñ\8f!xÐ\8f!\9céÇ\94M\9eèÇ\90<éÇ0*fú1$3ý\18¶È\93~¬\88\96e \1f#å3Ñ\8fQ(ö \1fS£ÕD?F\8e~¦\1f«Ôñ<èÇÈÉÌôcCfÀéÇ(`~Ò\8fU1Î\8côc\928Î\95¶\8dnü\7fÙ;\93¤É\91æÈ^%O@\ 1Ü\1dÓº¶}\vÞ¡Ïß¡ÏÌÜÍ\80_H\11JRØ\v®*C\v\11_\ 4\ 6\1flÐ÷¦\8fI,ô1 \89>¦\97_ú\98êS+}\8c`N¡\8fu5\80|ècR+}¬\83ñÉô1)_ú\98ÔJ\1fã\1c\16ú\18Ê\9b>ÖÉy&ú\98²h\95>Ö! Vú\18¥\83\85>¦\9b¤ÒÇ(BøÐÇÚ}¿èczg¥\8fuúk_ô±\8eaT¢\8f©Ó®ÒÇúþü\vúXoÛ\8b>¦wVúX\17GîM\1fërí*ô1ýìJ\1fSÉä\87>&±ÒÇLÉô±òÆI\1fC-ô1)\95>&åK\1fëaÇ4éc}Û_ô1=¡_ú\18å\9b\85>Æ·(ô±\ eõöM\1f£ï0ÓǨ¸/ô15!¾éc\1a\ 2
+}LCN¡\8f©BíC\1fcS\92éc-Z\\82>ÖÃý+ÓÇ\18p2}LÏg¡\8fÑ-ñ¡\8f¡fú\98\84B\1fë8o¾ècôT\14ú\18ÙåB\1fCyÓÇTf_èc*|/ô1²\86oú\98\ 5É\13}\8c>\9fL\1fS¦ìK\1fâ±ÐÇ\96»¯ÓÇ\80\84\7fècÊãUú\98"î\95>fäÚ7}Ì ·\99>Fü>ÓÇô'¿ô1êÉ\v}\8c\ e\9bB\1fãË~èc\96gËô1\94B\1fã\9d\1fú\98ü\1f\v}\8czýL\1fëA^Éô±~ô\17}\8c\86\92B\1fS
+åK\1fã\9d\85>Ö\89Ñ%ú\988Â_úX§\809ÓÇ:«´L\1f#\91ü¦\8fuÐP\99>¦\9e\8dJ\1fS³Ã\97>F\9dz¡\8féKTú\98Z\ e¾ô±\ e\11%ÓÇt¢3}\8c\ e«\ f}̺µ2}LJ¥\8fIùÒǤfú\18=H\85>\86ò¦\8f\91®Îô1Ëkeú\18\r\eoú\98~v¡\8féY(ô1¥@?ô±IM\9eô1}P¥\8fé\e|éc¦¾écÊ«gú\98nòJ\1f£ÙîC\1fSJ\98\85QÀÇpîÍð1\bñ/ø\98\12Ä\19>Æ5Íð1ݹ\1fø\98\9e\83\ 2\1fëÜu >¦¡ú\ 3\1f£ª'ÁÇT\19Zàc\9aÌ?ð1\15\11\15øXg4~ÁÇ´È(ð1åY3|L\a|àcZè\16øX#ç\9eàcª\8f|ÃÇÚ±Wø\98¢/\ 5>FWð\e>¦dQ\81\8f\11_Èð±O\9cøo\ 6¡ÿçàc\94\ 4|àc\94\ 4\14ø\18\ 5\0\19>\86ð\81\8fu\1a\97\17|Lwc\81\8f©[ð\ 3\1f\93Xàc\b\19>fG¼àc|V\86\8fI(ð1 \1føX\1fÏ\84\8fõã®ð1\r¹\1fø\98\86þ\ 2\1fÓ\83_àc*þúÀÇ4÷\17ø\98ÊG
+|L\8føa]Üå±Ïì1êD2{LÂ\87=\86\98Ùc\b\99=Æç¼Øcò /ì1Uµ\15öØP'É\9b=\86\11\18®\8fq\14»\81k±Ç\96\90\0XKÜ#¼tY\ f½sÅð×Ç\19q±Ç4Tfö\98¾Pa\8fañüb\8f¡eö\18Bf\8fIø°Ç$\16öØ\90]Rf\8f\r\96à/ö\98¼¨\v{LFþ\99=¶^'öØ\14\83=&\83ôÂ\1e\93\9b;a\84Ì\1eÃÐý\99\92Ü×\89I\azl
+åÌ\87\18è1³«o\13=¦3O\9dsB\8fa\9a¯ÅD ÇähÏâ £Ç\10Uk\15è1\ 4-Ä\1c=¦×Ì, =\86¦b©@\8f\81ZÐv8Ðc\12´|Èè1Ý.\ 4r\ 2=¦ëUÐc°\18Þè1ÍÉ\19=ƪ £Çh#ü ÇP\vzLJE\8f}GÏÿpVø/¡Ç\b|½Ñc\8d\xB\8fYÓIB\8f1[¾Ñcä²2z\f!£ÇxÛ\e=&1£Ç\bjfô\18íHoô\18\11À\8c\1eSõBA\8f©ìá\83\1e\93\1dEA\8fÑO\96Ñc4\80½Ñc\88\19=\86\90Ñc\14E¼ÑcJ\8fdô\18íq\19=Ö\82ú\92Ñcª\19Èè1\9dý\82\1eû\´\7fþâ}AÎò\83\1eS+hE\8fq\A\8fIù¢ÇP\vz\8c\0fF\8f5\16¦oô\98Â#\15=Ö\15\15)è1Y-}Ñc´à\16ô\98æØ\8a\1eÓNà\8b\1eC-è±~Mß,G\8fIù¢Çh\16/è1v\9f\ 5=ÖÃìº ÇØ\9d\17ô\98v\ 2\15=¦\1dÉ\17=ÖqíÌè1\15ÎUôØR2z,©\9e¨§\89¿ Çú9þ =ÖÉ\88dô\18Õ{\19=fÂ\e=¶Ô@\8fñ£
+zL\83ç\17=\86ZÐc(\ 5=&å\8b\1ecßVÐcý¼*z\fkÐ\ fz¬óàfô\98¶ã\15=\96\94T7±Ô@\8féOVô\98Îõ\e=\86\1dDA\8f\11ôÊè±%dôØR\ 3=F\89aF\8fõ\11\ 6î\19=¦7Vô\18ñ³\82\1eëD#Þè1E\b+zLáÙ\82\1eS ö\8b\1e#<[ÐcìÃ
+z\8c\9cÄ\e=\86\98Ñc\12*zLÊ\17=Fü4£Ç\102zÌ\8ex£Ç\146.è1\85\+zì;PþÍéYiã/zL5Ù\15=Ööë\85\1eS«Ö\17=&µ¢Ç\1aK§\8c\1ekÿ\vô\18jF\8fñÆ\82\1eãÃßè1K½'ôX£K<£Ç\1a\94§7zL\9bá\8a\1eSb½¢ÇÚ$%fô\18\ 5+\ 5=\86RÐcVÔòF\8f¡\16ô\18JA\8fñ7ßè1\95Ì\14ô\98.HE\8f-%£ÇLÍè±Æ²{¢ÇT\1fûB\8fQóÐc8peô\98j\v?è1ì\ f
+z\8c²¸\8c\1eSíÉ\a=6=\bæQíz¡ÇLy¡Ç\96\18è1JR
+zLÅ>_ô\98Õ)fô\98VU\15=¶\94\8c\1eKª£ÇÚ\19\1e \81\14k\8cºoô\98NiE\8f)ÈSÑc\14\1d}Ðc¨\ 5=\86\92Ñc\12¾è±Fô3£Ç\1aqÍ\8c\1e\93òE\8f\11\7fÊè1\1cà
+zÌn\917z¬áV\9dÑc:\e\15=\96\94\ 4\1cJª£Ç¨C-è1ÕË}Ñct·\16ô\18æ\80\ 5=¶\94\8c\1e[j Çô\17*zLwõ\17=¦û ¢Ç´O¨è±¥dô\98©\19=¦Ú\87\8a\1ekt¼½Ñc*ñ®è±\16\9d\0\13=\86¿ã\a=\86ÃcB\8fáçXÐc4¤~ÐcR+zLJE\8fqÌ\a=Öú¨è1Ê÷\vzì·]ù\17è1\rs\15=F}VA\8f%%¡Ç\92\8a\1d\84>©¢Çô\17¿è1¾GF\8fI¨è1\94\ fzÌÔ\8c\1eC)è1û\91oôXÃ\1a6£Ç4ßVôXR\12zl©\81\1ek\84\132z¬a\96_{n¹\1e\ 5=f\9eº\19=¦â½\ fzL\8fHA\8faMZÐc\9a\1d¾è1ö\8e\ 5=¦ª\90\8a\1e[J\19 ¦\1aè±ö\1c\15=f=ôoô\98Ù\beô\98\8c\12+zL\99ï/zÌ|\8b2zl¦\86\vzL\vÒ\82\1eë\187dô\98z\83¾è1S3zÌ\94\8c\1e3å\8d\1eÓZ¹¢ÇP\12z\8c×\1fô\18\19è\8c\1e\93PÑcZ\98\7fÑcª\©è±~DÙO\9bû¢ó_ ǤVô\98\94\8a\1ec[÷B\8fa\19XÐcE¡~\94÷}Ðc
+ß\17ô\98\9a®\vzLaò7zL[ \8a\1e\93RÑcKÉè1S\13zL'µ Çp\15y£Ç(éÉè±ÞGE\8fÉ~ù\83\1e\93XÐc\984gô\98z¤?è1\89\19=¦×\ 5=Æ\ 1oô\18^+\19=¦ÜYA\8f©Xæ\83\1e\93XÐc\12
+zLÂ\a=\86\98Ñc¼-£Çøà7z¬³gMè1õØ\15ô\18Â\e=6\8f\9aè±Î<¶Ðc\18l¿Ðc]Ñö\84\1eÓÐQÑcSÉè±)\ 6zL[¼\82\1eôà\85\1eS\15MA\8fq\86\12z,^gôØÔ\1c=¦¸UB\8fõÈ\1f$ô\18ÚB\8fõ}+è1m\9cßè1i\19=Æë\8c\1eCx£ÇôÉ\ 5=¦/WÑc}¿¿è±5ðÎÃä\8cPÐcSÉè±)\ 6zÌ>~¢Ç:e\1e/ô\98ª\89
+z\8cxkB\8f)DýE\8f)\ 6\ÑcD\\vzl*\19=fbB\8fQÄ\99Ñc}¿¾è1\89\ 5=&!£ÇxýF\8fIÌè1^gô\18ïz£Çtá2z¬o½¢Ç¦\90ÐcS\vô\18Ùò\8c\1eëZ|½Ñc6}&ô\18\ 5\92 =¶^'ôØ\14£ù§c½\96Ðc\1aÌ>è1î¬\8c\1eÓC_Ðc\8aò¾ÑcÒ2z\8c×\19=Æ\9bÞè1Ä\8c\1e\93PÐc\12>è1}£\85\1e£\91;¡ÇÖë\84\1e31¡Ç¨ÒÌè1bkoô\98ê)
+z\fߨ\8c\1eë´\ 3Vô\18Æ\19=¦¥AA\8f)äøA\8fõã*è1â\92B`9S\8c¢¤7yLáêB\1e\93\85@!\8fM!\93Ç\96èä1\8a`2y\8c¿ö&\8f\91\1cÏä1 \85<\86ð&\8f!&ò\18\1f\93Éc³Þ*\93Ç\14õ-ä1Ê\852yl \89<¶D'\8fõH!\ 5SLAæ\ fy\8cú«L\1eSÀ½\90Ç:\85\ 5/ò\18â\9b<¦ÏJä1V|\99<¶\84D\1e\9bb\90Ç:m\1a\99<¦Ñ!\91ǨO5ò\98\96ú\85<fÂ\8b<6Å \8fáø\97ÉcÚ\1c|Ècí:+yLÅ8\85<FûØ\9b<¦\98@!\8fÑKú&\8f©«©\90Ç\14ý*ä1\15ñ|Èc\8aJ\16ò\98ZB2y,^\17òØ\14\83<\86]F!\8f©\91òK\1e£m(\93Ç~{Í\17yì\e"þ\9b\ 1èÿ%\8fý·\91Ç.9\8b\1a!g\82Ç.\82ñKS\81Ýc\8c\1c\92eØìn=SÇ´Øyö}AÇnê\99Î\ 5\1d{°S»+sL\9cd: \ 39\ 68ùé\8b8Æ\11cdà\98>é`×êÀ18Ê÷X¼1\16»W¯¸±[æôÞTDÐCÞA\8dh\9c×Ñ*BvUÒØI¹ãâ\8c\1d*e\ 1\81c\981òVO«\941z\8f®{AÆ y´¶\18cZ\16\11©Ï\881ÅV:fVÞã 9¼\8dD\18S!ïu\\150&±]÷â\8bI0$\97ãÅô9£í\99.\86eÙq-¸ØÀnó\fnX£E©e´\18»¸O²\98\1c3ðY\v°Ø\142Äj\8a\13+&ªØX¼0\95\1f6¼é\12ULk\e,\eæQ\1a'dz bj-8¯£BÅ$îí^L1 §G_H1\ 1M[ß+QL%B^ lN\ 32á\8f\86%&\ 6ùY\9cg¥\895,\95Î\ 5\13ëìW\17Jl¾N ±Ð\ 2#Ö\ 4nÑ&aÒÁpþz*DLÆ \ 4aBÜ\16<l«'|\9b¸°-\9e¤èª£4â~ÁÂNE{\8f\ 4\v\93Oð\8b\14¦|ç8\13)¬Å\83\13 0\15Q:Kl\81ÂÔÞì\ 6\ e\96»W\98ð8\13&\8cö½ýE ÓâPOT@Â\88½jJ
+öWW\ 3Æ^ aÄä[\12åTr\90Ñ2>Ø\85Ûq/x0i¿ýͤ\83ázs· \a{\8f\8d1¥Y¹\92\9eî\87Û$³Á¸\18\9c÷`\83\91Ò~ög²Á¸\8b\1c¸æ\8fãnµÌûB\83ÙÖûB\83Ù=Ü\9e\8a\ 6Ó¾ÝÛ¹Ð`öD\1c}¡ÁÈ.n½U4\18\rzÛó,4\98JTÚÐ7\f4\18VSVÜ\9eÐ`äBõ'\83\fÆí|ô¶È`Ê\9a\1d\150\18\9a\86ç \ 6Cá9\ f2\98\94ßY;+\19Lêï\8a\9c\8b\f&¥\8dq.2\18\959\83\12\91D\ 6S\86ü÷ÝïE\ 6Ûñð9\17\18ì{\1dÿ\89ë¬5l§Vl\81Á$\8em{&\18\8c£Ø\12:\18LBS85\93Á°\b\7f®{\92ÁÌXèÚ'\19\8c¶Öã9
+\el\87w¶Ð`;Õ\82cQ¿´ÂãaÌl0\ 5\88\80÷¸¦\8cö¡\rª\93Áh²ÐL\91À`2*{d\1då\0\8cË\f\ 3ÆNX\8e\ 2\8f\8a\90\12\16L9Ò[!N§\82\11´WÈÛ¡`¬\ 55\91%Ú\80Jù7Ac\1c ¦\9cÞy\\93\bvÒ¢{e \98¼\0w\r¨Î\ 3Ãxg;'±'^g\1aØÔ<WÅ*^6ZNùººM\ 4\19\ 5¦çs¿®©áo|\9e\13\ 46_/\ eXH\8e\ 1Ó\97×\95\ f\f\98ª\8a\94ãÊ\14°\93î¸1!`zÝí\18\1aÌô\1e}Ó\8c\0;i\10}&Þ
+@Ç9ù_ê\11Ñ\ 2(ã¿xd\ 4rú\97<\9cö}Lø×|\9dØ_¡\ 5úK[Å¡¨°3½.\8c\8dZ\ 1\7f©\9bì\18÷Ôd0®\ 5[`¿âu¦~\85\16Ð/õ\1fï£Mæ\97|\16\ 6EÈ\8bùEݹ 1\8eüRd±·uJ\1eÅ$\9eV\80_\8aÂî»`Z¾A§\15S]x\ 1üÂÅSÃu\ 6~\91QØ`ÈÛsÏD·É'Á\81_\9afúÓ÷\ 2ü\928Ø>ºë\85\84ß*í\99À¯\1d»aG\82\ 5ñKâi0\88_\b\87Q×é0D\90I\²ÌÜ ë\8f}\ 2¿4Rܺà\ 1üú\8c^1}©väÔP\94\81_Ê\b\8e\ 3ø\87Ûi\b¿Òqà÷.ô\9d\1e¸»\0¿$þ\86 {\ 2¿ðêѵ\rà\17\8e>7uº\vø\85èc\9d5îëmÍ\86GLõøàÑ÷\82üÒöô·Hy&òK\eá{£çÔ\90_Ju\9eÄý\12ó«Ñ\91x\8dÉüÂvò¹Æ\ 2
+n\8f?t\89ùŶ÷úÝÂÁü²}ð$~ñRk\8aLüB\14µ5\90_\bÚ2\ 4ò\8b¿µ\19\14,\90_úµì\9f\ 2ù¥¯ü[\11µ\89ü\9aBB~M-\90_Ú\97߬z\ 2å¥Ìªm*2òK\19ä\83Uæ<N¹¨m,â\97
+¥~_d/Ä/\1d5îß§\ 5ñ\vô+Óp\90¼\80\ 4_´V&â×n\1d\9a÷Ru\16ØI\ 5ñk
+\99ø5Å ~áX¢\ 6¹`yíf¢º\17â\97\8cÑ~³Ö³\8eRÆjôc\12¿¦\90\89_Ktâ\175\13ô\8a9ÍKyïßò¦\17æ\97¾Â¹=\8b\f¶Ã\9d»\8fÉüÂ\ e\84q(1¿\10\99\92\9cù\85°\19\19\8c¤Ï\8eõ[»
+óK"»ó`~Ihp¹\9cù%\81a:3¿ðqm\86¹\84ù\ 5&øî×ÄyÙMq<\85ù¥\1aåß\98t¬£ \10_cB¿\96\90Ø@Kô\883«XÃÜÙà$?&\155fæ\97î\9dS\8f÷<êi¶Ç
+æ×\142ók\8aÁü\82G EdмXá¶k\14æ\97®¶V\bó ]\87qÝ\86ü\9a¯2òk\8a\81üÒgpV\ 3æEaÉ£\8d]B~áÛ;\92¸ã¤2î\89ü2û\9a3\13¿ð«ÙkÆ÷oB>ÝÏ$~I`%\91\89_Äô\8eç\99Ä/ Ϧ|\90\13¿8â¤\98`\99\83m
+Xc½k?Lf=\8fÊ÷\82å%;\19B\rendstream\rendobj\r359 0 obj\r<</Length 65536>>stream\r
++ ø\85\9fï¦fÎyÐa\170\80_KHÀ¯%:ð«\91\93Ô\84éó¤þØÕöV\88_|\ 3â\97Nü\92p\10=2â\17\8e7Z¢fä\97\89*Brä\17ï\92½M ¿ì\97iRIÈ/Í#,Q\ 2ù¥ù\915J ¿\96\90\90_S\fäWc;û;ë3\8c\8dã\9eÊ}
+ò\8b\vp\12Øs\15\97¥\vû\10_MPYÙ÷\82üÂ\9eèÖÀèÈ/=üÛó\9b\94\ 2æ%ø\ 4\9f\9c\91_ìy~_v\1d%»¿æ¾Gì?C(\8fu\88\81ü¢\84\8f6H7RÝ\ 10êÏ'ä\17\ 5ÏZp\ 4òkÇ¿Ö\8céA~í\ 6°\1d\ 5ùE\9c@«gÇyaù±õ3#¿ð@ÐS\12ÇlÊg[ù\ 3SâC\1c»eâ\97$=³\ 1üâµÆt\7fbx=zÁ})m}ÿV\97AûÒkýî\80}éõ®Ú\8cÄúzø¼s¢¾äÉÇêÙH_òsÕ9H /æñg\9f\9c/\15\84é\1d\81ù:}§\9a)_$\8fÆ¢|)»´÷1!_ÚÔè®É\8c¯Ó\176\81øâõvOÂ×\89\8dp+\80/5g\8fcL¾\97&½³\9d\13ï\85÷ÔoÊÍt/yI\m²½\0×üND ½âu&{\856Á^xÚ\12\96u®\17t£í¬X/]w¶¸\13ë¥\95Æñ\0Øq¬\97|#x\16\vÖKj³`±c½ð½"\18\13X¯\9d
+|/Ã\9dÞÞR\8fãÚ'Ö\vc
+}3§zq\0NZ\99êEÑÂà\11sª\17vX§»\ fCõ¢\9cäh£R½vºQ\15+\r¬\97\14\8b \ 5ÖKõJ\ 4º
+Ö\v\95Àc`½xç¥!Ö±^|8kÇ\8cõÒO°\91ر^\8f\ 2BZd\ 4Ök
+\19ë\15b`½v&¡û\9aÈ.¼¾´ÅË\/üb\14\v\9eGuªR\8eYÑ2\85\ 2÷Zjà½vhäû¢véë?E±Ó¢q\fG´i\80¤Ówï\8bîµ\94L÷JªÓ½v«%Ý\83îÅ\8fÙ¹\v\12Ý\võnû¢{I±à\н¤\8cí¾*Ý\8b,\85FºI÷²¼Åv.º\17\8aÖ½\85î%\95emн0ÐÕh\15Ü®\9dª\8fg/t¯9ÜΣä\1c¤dGн¦Pè^K\rº\97}ü\95X^ºõw\1e\95L÷¢Õgô|\9c\ 2\84
+ÑNº\17f\19ÚºeO\aEù\88#:Þ\8bèà%÷\15Ç{M¡à½\96jx/\8b\1czÔ\12\8fâý¶i²à½(1å\8a\ 5Þ\v\1f°+\8eã\1aâ\11u\\15ï\85Ñ\97\8d\18\8e÷2ë_\9f\12IÄ\98§ØóT¼\97\ 6;"I\13ïEqª¥¢\1cïµ\94\8c÷Zjà½ô,tM\19\93Û¥çæºZÅ{ÙTúÜK\15÷¥Á³rº×\12&ÜkJ\ 1åQ\83åз\vd\97.åÕÉå$´\17w\eé¹y\9cÊÝî}\91½x$\8fg¯d/©¿_µ/²\17Êá¬/<xy'\83b&{Ù#~>\8bì%åd5\15d/ì\8d\9e \7f\ 5ÙK_Íßéd/\15\97Z¦)È^IId¯¥\ 6ÙK^W6Á\ 5±ëñðL\ 1{i\1f¿íé(\15[?Þ\11)û\12íÄ1¢ÏT/uë\92\89\f¨×\15i\91`zÉèå$ß°\90^X\1c>Ö\1d ÓëºlÉ:Q]æ\e>*Ñ\vsÂã^"^)ò3\ f\9e×\12\12Îk\8aAóRvax\92³\9bUíxNK¤E\8b\84ò²\f®AòRíï¶]\7f&Èë<m\1dT8^\129I\81ñ\ 2CA7¢S¼¨Ov0V\8e\8d?çÕÿL\86\97jìvï($U´\84EðZ\9a\ 1¼H\89,*\97Z1ÓKÖX\9b\8dËS\ 4ò\9c¸]×î÷JÆvɤ\97\14y¦vQk»ÛcG\fâ$\19t.f×\12\12²k\8aAìRå?ON´
+`\837\9e«6\ fh@Ûµ\1c\Ç\8dÈÜ\a°k)\19صÔ\0vév\19\8cº\ 1ìÒ\1då'f\ 1»È\r\13Ú
+`\97Â>}ï\8b×\85!ÿ3Zåu1|06\a¯Ko|Xße^\97b\1f½yå¸YÜÝ*Ó¹\12\9f\v~\90\ 2\99\85ØÕl³\99\8fÃ\8bgß\17±k*\99Ø5E'vÑ9£éÁ\89]¸úê+eb\17Ý\81§Ì\ 5¢ÐT\89Z-v\82Øõ\89øF(ø?%víÖ\8d7*±k\1f\11ä\vb\17ÇuÚê\9cØ\85Ë)õÿ\99ØÅÝwÑ\9eåÄ.\r¡'«ò vé¼[UH&v¡\92+\fd\17ýóJ=Ld\97\94Æx\97\91]\G\86Ê@vI\19\8fsÖ0\9aU\10hk£"»tû\18ÜÓ\89]"b\10G\9aÄ.&'\96¿\19Ù¥`Û鈴a\85Â*uÙ·áä\10\90]âSý\1e\96«"»\14Áí<\80\86ìR\88\85 áDv)2A\80§ »¤\92ï
+d\17\87Ý\8eËÀ'S\85¼äÑ3²\vu»\8eÅì"òqû'\ 1\8f\92BÔ·0»H\a0À\ 6³ËÊÉ®}2»\9aö5Úi\17f\17\84\ 1Íë\81ìR<\88\9dðDvÑ\9dÛ¼\8e-\90]\18Â\93V\rf\97Z}/Ũ\83ÙÕÈ\8e\9e£2»Ôükõ
+Áìâ\17áràÈ.\9dfÖ\1a\99Ø%±3Ðí\8b_E¬y\ 2»0ý¾¶Q\81]ÄÅ.üµ\1dØ\85Ò\9e{\ 1»PH\86g`\97Ô\87S\1dÀ.\1a\90\8f\0ÌØß||øÊÀ.E\9e¨\8a\b^\17\98\82K¿:x]\ 2Tþ\96íwåu©A\90'|òº`\19ìG_¼.\9dWzª2®K\81,ö\a\13×ÕØé@q0\\97®\14i²\82ëÒ\14ñ(à2q]\8auíJ\94\15\\97Tê3&®K_ü!n\1a¸.s¸Ø{ÅuáiA²=p](\16<s\\17Êéñ¿µ§Ç7ä\¸.} «6\v^\97Þhu\13\99×¥^Ä\87{*x]\94{0%\ 6¯\8bQ\ 3îmÂuÙ89\16\8b¡Ô\86
+§u}\aá\18¿ÿ\1eË\ 2ýÛYh]º\99.¢iFëÚ\1fÏ\96\ 6«m\9enK¸®f®µçÄuIx6\83\12ÐQ\82Ð=a2s{\e(¿Ië²\83Î ëÒk\ 2]\99ÖÅ ª\9b<h]º&Ô\ 2\ 6Ë
+jî³Ðº4\8e\13Ï Z\17\93\90bëAëÚ±g2{¿yÇ\9by\80\8a
+\9cÖµÓ\96kUêØ\1d"ü\1e\83Bë¢jëêÇÄu!<ö×Àuñ6Å!2®KË\94C\11·Àué[³8\vèÒç\9aýó\17o\vE)\95È(´.y\96^x!»ï\1c\ 5<\98\ 4;«KÁÎûº+ªë<|1\1a¤. ÔU\ 6¨\8bÒ ë©\9c.~\89\ 5\ 6¦KÓvD»ôT\vûѶQ!]$\91¶¶\18]ò^b\19ç\88®\13GëQ ]ø\89>Ï\ 2tñ\8c:T\8bò5{>+\9dëÜ}\9e\ f8× âáXp®SF\98Ï]Ù\òy¹|(±\1f¦]\18\84G'sñU÷£\92¹äÝÎê?À\2óa;ã\.EÅ6r\12\99Ë\85\9d5ß2¸\{d®'\97K«úa¬«ÄåÂê\9b\19#¸\\84*Ù\8c\ 5\97\8b '\15V\99ËE\0êô"4¸\;Hßv..\97\ 2\f\83ÂÂ\fæ"ìð<}\81¹¤XÌ,À\(\14\8df2\17½_\93?º7;î7oô sÙ'm\92¹°=ëÐÍ\1dÍ¥3F\8a,Ð\\84
+øè\8cæ¢RøqÐ\17h.\82\80ì'\1dÍÅËÖ1¡¹ðϦ\84ÖÉ\º\1eVß\16d®çñ\rv\ 6sɲP%/\93ËõÀ(ºþ\ 4\96Kýð¶\99OT.Ö \94\ 3;\94ëé^\19\1aL®ÇÇ\95\82äÒÄÚϱ\88\Z§Dµ&e²Jánø;'\1e×-c\8b§-\1c×cK\87 ãR\ 1&\15\85\99ÅõD<ÅQ\z=\8e±H\\94h\12\ 3Z(.+Ó<'\89\8bÓã\94/¬áµª\18^\94>ûÉnÏ©L\f×%\ 6Fx÷ß\96\9e)\ 3ßß\9cl\15õÑ´\92\19\\90\87Õsë\9d>ªhT.Ø\ 1\ª\13ój·\19H\946ä&èø-Õ\97a¯éô-un]fJ9ÇEù\lÖ\86\15\9fË$\14è-Å\8d6yU&\a)x×÷>Á[@\89d«eÜ-gÔø\96±[ªÄU^!Zo4é\1d\18\19ã\10©Çà4xÖdn©ÚT_Ì\89[\98Ý^Ï\ 4néõÓ\9eÂÛ:µ0¹ï\89Û:\89ôí\93¶EcÒÙ
+lKX¾c\7f&kKþj\eM»Ö\ f¤Ìé\86}ÞBmaêݰ\97ñB\ 6lË\9f1Q[´7\95\96¬tºÒ\ f<bÁÚRøöV-V°¶(KV\1dg\86mA:Ð.Áa[;\r\81×1i[f±¯~«DÛ"1¦\90UжÈs\1dt\80\92\86Òú_Y£LÛRÌèÆ\9fÙ¼\825\12mç\11´-L\8d\7f\ 3A\86m\9d¾Ô
+Ö\16=ßò\8fuÔ\966}ªèȤ-õ\¨ÊÒA[Ïf%'ÁÙºo«\ fÍ\98-\85X4\14\ 4eëV#ÚvMÈ\16¨è£\17Æ\96r\90Jõ\85¦áX\13e\10¶®Ç&£\fØÂce\7f&_\8b÷\98Ï?|{³»#ãµ\fÏ<&]ëÆ\8d)ØZ²Ð×V=£µn¯Z\f²\16\10hk5¡ó\10JÌï\9be®\960\8dzP\ 3«¥RÕ[\98-7ÂR\1f²Yô\ 6SKqÃÇHnx¾\9aÇþ5\89Zw³r¯\fÔÒFT\13~ð´\94Èâ\9a\aO\8bì\93î¾\fÔ"ß®\e'\88Zz\9bU\08Që>-Ó\97\81ZW³\reð´\f;zL\9eÖð\1dmÂi\8d(5u\9a\16\«Þ'Lëð/\97aZÒ´[ \96\96^\9f{\9b(\83\9e¢^HZ\a~\9ec\82´\14XÓÎ 8Z²ùó·Ä¦C®â\9aÊ\83¢%\b½â¼\ eÑj\1e5Ì\f-ù$\1cæÜû\98a¥Ü`Ú$hõÝÒ½\19 Õ=Ø\10ü,\r J¤\ 4>KóCoW¡gISÏEÀ³º|a¶k²³d.ÕhFg\99ÛÑ\ 4gÉYZþiÁÍâu+Ô,½C½¹\ 1ÍêlãÆdf)Çy\80\rXÈ,\15×àTèÄ,Í\ 6ÇHÀ,ª\8b2.KP\90û¾'-KÅ´\8a\97\ 5,KfT\9bõþNV\16\9dN×$e©j^³m\80²\18ùÛ(\9c,ÀͰ&\1c\93eæ\99cQ²´³·tl\82d\91\18'pæ\94,\96\vª@\bJ\16+ \9e\84DÉ"'º]Ï¢d\91Ò@4)Y¶\1e\1d/L\16е£-J\16Ü\1a\12Â\99\92Eb\9c\9cfP²ôÈÚÂ-(Yûî3_¡dUU\8f©)ç\82díQ»T Y¨Ä(\ 3\92\85Bl3 Y¬ÉHïeH\16k@p\a\ 1ÉÚ©\ 3öô\81SÁº·ödH\96&½A¸% YdÍÙ\99\ 4$\8b\ 2\11Â\83\19\92\85JiE@²¤P¼\13\90, ¿ót\14H\16Ø(jf\ 3\92ENv$F\96\84Ë:o\12#K\8b\81Îf"\18YR,\9e\13\19\e-"î\vÊCbdÑuh\1d\81ÆÈ"mÌè\8c,\9c#\a\8bûÅÈòÝÀ±\18YxØ\91Ø\ eF\16\e?ö{\99\91Å®%jkxèR,Þ\19Y*ù}îû®\8c¬\1d.Jo\8b\91\85B¼> Y¼\93PZ¦dI%:21YR\98ò\r\93¥\97'\1da\19\93¥¨ó\853H`²\b¢\90ö\rL\96¼\1d)³,\98,©^Xç}ü;¼\19/ú >\81µíxQ²$j^\9e\90,N"ñ\87\80d¡lçU Yl»É[;$KÛ³»Ñ\vë\90,Ë\ 6\8f=C²(¶»ÎkA²HNPm\1d\90,Rùܺ\19\92µ\13ðncA²°R"\8a\1c\90, 0\87*Ù\12$\v\97Dí\ 4\ 3\92\ 5ô\84HE@²p³$.\92!YxßÚ\99\8ev\84#:L\ 3\92¥'ÿ4\16H¢dáLi\ 57NÉÒï\9eû8lR\94\19ºnjº\16%K"]\12\93\92eÊX\90¬ò¾ ÉBå)\rH\16V]\84 \ 2\92%ÅR\1e\19\92µ\9bqP[\90,º\92¯þ,H\96\1eQû¬\fÉ¢à\91Ñ; Y|\v\15ïNH\96u\v\93ÎJ\90,\82Ç\96J4H\16EêVõóDq\8b\16\8fæ¾\13\90,\8d\ 1\14¢\ 6$\v+_j \1d\92E,NÃ}\86d±\97P\eF@²öh\v HÖn>U\85\91Å\80sß\13\91¥gSóG\10²h. <&\13²PO\8f¶Ø9\91\rDZ\1d\8b\91%¥38dH\16m\b\8f¿Óf*RºÏ¹ Y(ñéÓ$GQ«KÓPP²\14àÙ\14\1e\ eJ\16\89:]ÑLɲش-øij¢9F\86GAÉRrʲr\99\92\85\9b`ó\ 2\14\f»Í\88v¿&%\v\945cH¦d)sf]qAÉR¤\9býʤd\19`uë\95\92e,Ö³/J\16\81s-ì\83\92¥?y\12\17É\94,\8a°yì\82\92ES
+\13WP²\8c»ý\\95\92E\9a\88
+£ dYâhï\8b\92Å;\89]fJ\96òDÄy\82\92E\8d»îÒ dQô¬\87"S²ö;rbAɲ\16\fÊ\1a\9d\92¥Ô\85ÕldJ\16ï$°\14\94,<$\19û\9d\92åñ^sõ\9b\94,}\ f[\97\ 4%«±J»Ç¢d\91»åfÍ\98,e»\1aåN\81É"ëÈd\1f\98,²\87n)<[µ(í~¦\9f¼VIÏícKP²\94¦²«\9d)Y\8d\91Á\13M\84Zu¢©\9asJ\16MId\1f3%Ëú\9b¬Ó\183\ 3 ¶\1e8æM÷Ä\a%H\96T\8bÐ\1a$\8b¶\1d\8b9:$\våv\0פd\91 &\ 2\1c\98,K(1ó8&\8b.\a&½\84ÉÒïî\84l\83\93E¦øq¾Öð,±+2(Ëø¾Ì)\ eÊÒG±À N\96¾\82\8dé\99\93eê\9fBÉjVnzþ\99\9c,Ýæ¶y\bN\16\1dj\17Æ
+\89\93¥T¬-\8e\ 2\94\85Ï,ãU\90²`\99+°\94QYÊÍÒ°\1f¬,®¬ºê\83\95E\ 2C7\99\95åÖ\9cûde\118×\12$XY\1a³\99×K]åÕ¼ìÝXYxû+\1f\10¬,ÍéÀ\80\12*KÛ\8cKß(PY;8í}\14T\16E;\8ap\a*\8bå½"bÁÊÚéìÔÍ\9a¸\1eX¬ãvá¬,-ö\887\ 6+K0H\8d\ 4 \95u\ f_±z¸á\8a±ÈAY Ö®\82É\92OµÖ\92AÉRè@\ f½3²ÞaÜ¿\19"þ\9fCd\91\86o\8e¾\9a\88,ÒðÜÓ¡\92tçYsD\16Âåo\Ó4m¾¿é<\18Yº\v©Q\fF\16E.ìñSÖ\ fSxÅ\\82\91\85 \82ù`dÙ\11W+\8c,>KûÄ`dI .\1a\8c¬\9d¶\896
+#k¿Áþ´:\ f:e\ 2\91¥ñ\96ÄYFdiÜg \11\88,=óÔTF{®ª¨_Ë\88,MüØo\ 4"K\ 5\e\9cì@déÑ>¼ë¹<ïÌ\7fÎÈ¢6ã4À\12©* \94ÆeF\16"\15aÎÈBP6'\18Y|\8eÆ\91\fÉ\92[ú¥ØA@²Z³\ 2¨ _5ÂÅöÐNF\16\96U\99\91ÕØ\f$FÖ\12\12©i\89ÎÈ <1²0\82\7f1²4Jb\9c3\8fÙ-Ø\16\8c,¼\88\15qN\8c,4U\85\ 5#\vA³f0²$0çgFVÃ'Ýz\1615l*>ÔZ8\18Y\124±dDVÃBî\9c\84¬Ö}ýî\84¬õ:\11²¦\18\84¬F"g\9f\80,y\8e\7f\0YØ\8e/@\96<Â\v k
+å´\87\18\80,3U_\80¬\86\vF\ 5daí\9e\ 1Yò]ÿ\0²\103 \v!\ 1²ôú\rÈBË\80,\80\0\19\90%á\rÈÒ½R\0YºXd9\83}\ 51@W/\ 3²4\19\13\81\98Gm\9bw!;!\8b®;v\14\99\90\85z8ýÊ\80\rJ6\12E
+BÖwðü\ f'\85ÿ\12!\8b¨\97îÀLÈbù¯\18P\10²´\17%ú\16\84,æHöKy&Å\18§\1f\93\90\85@fÖ Y¼\8dhS"dI´h¢\11²\bh^Ö\84iy\ 4Å'éhH\84,KÉ\9aE¦\ 5X¶ÛÜZ\82\90µS¿Õ{!di÷Í6+\bY\ 4[)ïqB\16ÍTJ\ 2gB\16¢\167AÈB8,Íe\11\9fÍr¬\19\90E\17MkÁÇ¢Íæ÷¿\ 2\8fE:Dæ8\19\8f¥=8±
+ÇcéÔÛÚÇñX\9f+öÏß¼)\94f´\86\88\84ÇR~þ±ª\ 4Çcq\1cW6ðXRvöK\19\8f\85JÁMà±\88]ö\91øXR,\1c\9bùXÚ<Yx7øXZ\0w\8aA\83{¥`§\97B¤-2ýª=s´¨\ 2í^àJå\8d¶\0¤\1e\v\1f\v\15_¥àcIá.\9b|,)\14 \16>\16Õ¬h\82\8fž\13s¬àc¡\1c÷UùXìË©ª\r>\16Õ\83*U\9d|,íD°\ 3(|¬\1doIíñ\82\8f¥RµáàbðXSÈt¬%z>\9dnw¢£\ 1½bä±\1dk\82cißy]Áç\90J±Üf;\11Fz^[yáBÁ\84\18d,û9\9b¹HÙ\80¼E£G&c¡RÇ\1dd,\14\ 2ZAÆ\92bß=\93±Ø©µáØ+³ÈØ<\94ëd,¬+-#\91±\1aOìa\96W»Å:N/þ
+2VRR]ÃR\83\8c¥?yhÛ4\99W:ÑÖ\ 6\93ÙXØ&\10\93\9fÇ)ÚuÓ\9chl¬%d6ÖR\83\8dE=\1fí\9c\ 1Ç\82\121}\ 1\ 3\8ee\ 5Ö\87Y\8aq~\b\9dqsÆ\19ÓNÍ:Ð2\1ck\aùng\83¦\18öãÄ`\ 3\8eµ³ÝÚ¬ýf±\88ÊR\7f\14p,6^Ä}\ 3\8eE2\82vûLÇBÝ\1d}E-
+=q·{&Z\9b\95Ú\10¬i=á±\88\9c\12"\b>\16ÊpÔ\16\9bu;f;ÿ\14@\16À\16\12\vAÈ¢\ 3Älô<ùö\1d+ÿæô<¢R1\ 3²\866"÷Âc\1daE\16t¬Ã\93
+\1cë8½ë.ØX,\9a®ög¢±\8eh\ fÍd,LD|XÖZKï:}(\87\ 6r\84Ó_æb\91EßmªP\13º\82û\ö bÁ\1fºö
+ÅÂb\89*Cgb©=)JÌ@b\ 1ðÛ<[\10\ 5HÚþ\9bQ¤\ 3±$\ι"ìN\80`7·¹¹\1f\94HçLа$\1cö.\àõÇ\82µ>YX\980nvKÀÂ:6«Û\99(¬)d\12\16â5\16\bKÙg-\10\8druE4rb°T\£\18©)\148\ç\84`=\8f×)f\b\96|\ 1pB\r\eø\eLód[Ý»e\a3\0+:ôC\93½ÁáÀ®Ãq\ fÑß\1dð«\90\ 2}¥º\112fA¾ºï¨\vMûh\8a\ 1ǵ¸WÄzi\8e\bîÕR2÷*©Î½zîh\et\9c\95N\92µÚ'ê\15ô\82'¡°nú8÷żR \10£X"^Ý\11\ eàÕ\1d\1e"\ 1¼\12 þ1¦ÔÄ]\89Þjá9§]©QÇ\12Ð\ e»R\88\82Ôlf]\11Kîvï\buu\9f\91)w®\15w\81æô\fºR)ºåÝ\9ds%\1f\7f\92µ\81¹ZBbÛ,Ñ!W\8aPÛ\rïìªß\92é\ 1\b\98\11W\80Y{:J\8ew>ÛãÕ\14¯3Ý*´`[ÝfC3\89Uªu>G«`+Âü|¡Pµ¼·æ\87\0[-%\83LÕ\92-ÀV¶Y"eîÀ*\99CÐ\1e\94¹V*6\1eY\8c\82ùIµ:Ýò§@äOÈ\ 4ëP+LÍÝß\12/rX O«H+ñ\12è9\ f¢\95JÀøc\ 1´Ò\116»$\9eÕ\19¶ÄÁ³R\91;0\8bÀY©¡\95K\94iV\87;\8bLñèÞé\e,«%$\94Õ\12!Y\1dn\1d5AV\98În\ 6\9e\9a\1c+}\ 1\9e\91àX©Ö+LFÁXI`½\9c)V\88·\19\8f²]:n\1fÉ\83aÅ/Û\10z"¬(e`âr\82Õ\18fÃ6\ 1VKHüª)\ 6¾\8a½>«uo-\95\85\95µ\r¥\ eTrñg4ª^\8f9¾bØãð*mXl\ 6Lð*ñ\8d)ã x\15\ 4è½/&\95z\8eì\83\13º\8a}\1d&\a¡*\97ïe\1e\8e®ZJ~¼\97\1aè*=4³R\ 2°\88u\89ó`%v\95ùáô{±«¨üi\8b\\85\8döáF\83\93\eö;î\1d\80wg$l\v¸\8a\14\12OË<ì¤JþZä*õÉ<ç>*¹ÊÔ\1eê¸ü¸£/r\95)W(w\14\9c¸\83Ô$W¡Øùtv\15\8aÕA$v\15\99a\rï\8e®¢C\81\81;ÐUtì·
+®âñ`ý\18à*z\ 2y_\80«0ç2+\99\ 4®Ú1Ïp\ f\v(\rRN\9a`\ 3\Å\96\8b;,\91«°¾ãd\a¹ª(4YóÆ#ÚO\83\¥\9d§Y'8¹J#\ 2\95\ 2\ e®¢³\9a=å\ 2WѱÀ5\vp\95\14Û®\ 5¸j)\19\eêuOp\15ö zî\ 3\\85_\ 6Fk \E\91M¿'·j?½Ï4¸U\8cz~3·J"[úàVa!<\fIe\8b\7f\8dèý.Ø*iÖ\ 3æÜ*\9e5í-\82[Å\11Ô"$n\15."JG\a·jçð»Mn\95v¨L\ 4\99[%\91\ 2»àVáôê\9eàVÑí¯ 0s«\10Í\8d\ el\15ïÚ\8dìE½(\9fëN\87kõ¤©H\9bøÀV±O¡?Ü[½\114SdlÕ<jb«vf«=\88T¶\94ÞækK¢u/\8cócT'y·°¸ñ\81\ 4%S«¦\18Ô*-%\88\91\ 4\90\8aÎ}í×3¶
+³\a\9dµy\94y$\1c\93[5\85\f®Z¢\93«v¼9\9fs²«ö\88ë'v\15\1a\8eAN¯²åß9\82^ÅzñÞ3¼J\12\ 3_Ы\10ö}«xxb\86Wé\83y:\ 3^e äóZT*-ÅlG\9béUsð\9d\87©«\93r\80WM%ë¦\18ð*ûø1éU, û^àU4Ø)0\17¢\85B\9f'àU\8a\1eÛÞ-ë`Vq×\ 4¼\8ap(õ\±k\99J\86W\99hõAØ;S\©mVÀ«,°ô´\ 2¯¢ï \9f\ 3\87WIÀÎ×áU¼Vj*ë0Ö`8pz\15\82&ï WÑÑô\18\ 3kÒ«tåØ;½Jç[Ì\96<O¼Nìª\90\ 2]eÑ8`î>Èi½E\ 1RBW1\7f\12 \8c£T´xb\94H¯Èz\9dÐUS\8c\ e\1aÅv°^\v(\95w6^\ 5]Åm¥\ eçy\94j*\14'\btÕn\1eyGaW\19\98ÁXU\16(9¬ï6ØU¼\vzmbW!6'SÝa¨²Ù\19¢«ÊP\17£\15v\95¾\92½Mì*Ú\9a\ 1V\18»j½Nì*\13Gr\12%\1epM(\15\91/:u\13ºÊ:
+ïuÐ=¬S/ÈUZmS|\96ÑUø\8fÊU&ÐUÖá\8c\9f£«\14\13da\96ÑU:\8aqÑÑU\ 4\ eµ& *\15¥B2\8cÊì*\85\92\99\84çQ»WV\ 6»j
+\99]µDgWQ\98¢ú\98`Wñ×\9e\8a®"iMv «\1a\84úç\99è*\ 4åq2º
+Qg)ØU|\8e\19\8b\9c\11R¦\b*£«0\12\90ßB «(áQ\>ÐUKHèª%:ºªEn' T\8a\ 2\17ÁVI·\r»!*\1cN\82>ÐUêZ·N·\84®BÔî$£«ôYØR\a¼\8aU\9f<X\9d]5_'tUhA®Òî\86EÁ²òÔm¨\8cÆ6çQeÕ7\16v\1eÛ³J\ 1\13\9eVÀUS\fp\15fv´\9d;\9f\ 4\Çe\r?\13\E»\82\82U\ 1®Ró>\9dðÎÒÊ÷±n¡\89z\86\r³ARߥZã\12³Jý¼è\ 3Yu[Õm ¨~ËÁG\81ÈÌ«R\10ùX\b+íRp\atZU¼.´ª)\ 6ªO×5\87U\r7Å/¬*5ç4w¼rÜßC)\7f\90ª>¡Ú¿\19\aþ_PÕ\7f\e¨jh\9cÓQ\ 2©MT\95TÐoS\95Â6\và\9a2XR\8e}³c\ 2X56ÂÊ'\bv\9a\11\86¬z5\11>Í\1eäÑ\9d\11Ô·m!«Fofð\ 6&Z5'(ò»\ 1ë*\aa;f\18\ fÖ\8b+ù´Ã\ e¢?hP\93sÛA`«\ 6Æ+\97\1f\13ܪѼb²E¸c\18óC\ 4»nµC\99ÏKCí},xÕP\ 2n\1c\ 6Ñ&ûÙ\99д¶ÐY\12&UÝÏbú\b8;\ 1V]å\10ª\ 1\11r\962:!\139ûƤ\ 4aµ\eßT\¾Ä°RËÊe´>\87XÉÖÉ\ es\88ÕnI\)\89bµ\e\8e\ 5\b¨\ 24é\bh Õ\82q¬T&Ûí³\ 2`\8a\85°ú\8bÕ¡»óùÊ\19j!¤¥X\8eÍ\12³þ\9aw\89Ò£["\8eÑ\1eE£\98p§äf\96ÒöEWJêp\98°\92\19\8a\9c\89©\89õ£\0\98;?ø\@+á,Õ ½\8eRÑþÉ'5#Zuí|\81窸<l?QùYº=w~Ïf±kÁk¹-¥\10¾E \ fV©TÖH%%(\ 5\82b\8f&\9dÎ6Yîùàæ½ZCßíº\99æ6G[±\99?íÛ\1aÜj)GÂ[MU\9d-2\1cÔ\ f'\8dÕi\81\10\89\95ÊaÙ\96\87bg¶\99Gà:\8e\19@_â±ýî\12ò\15 qS±Ëï²\8dx\16\1dÚ¢KM\ 2HüÙɽ\12¥»ù\ 3J\1e±\ 3qØ\1d\ 2\19è+T(ôNªG°Gï´\86\ fXè\euXç\82_MBz³äüÃqÍjºNÃ_Iù}íÓÞ\19Ý¥]µV\1dõ1\97¼N\82\v Øæ\ 4,Øçº´¡ðÎ\9b\1cà¹ÔA\81¿êä4\81\ f\e\1c·5\14:\91\ 6U\ f\18CæqÚqö%ØZ=¦Ôá7æM+M\1a
+Sؽu,\1aÖP\7f\ 4\97Cíc\aà\15\ 5#\9b]ý\93öÕÃX´:µA§\93¦\18agOÕ.]æ2IPaµúî¥<ª¨\932qX¿7Ùy\97Jç¡\94&÷.\14E¨¤ta/ygà°Æ³ûó¥;Q\re\ 3Ï65Öw÷\ 2\1e²ÎØè×}\16\ ekà^¥\9b^µÞ\ fÍ÷Ê\15lxÁ\89p<\8fY\19j\9c\r \16â)¸*\9dhüI\1f&vÿ2\83`¤\1eE\8dÏÁÃ\92ÚÅp\15\88\99\96B)\10lQìD+«ø\18J|f²\86º\e\ e@ÏÃ2UãVAêi(aFàï¥üÇ/õPá®\95ª\1c\8b\88%ul»\97Ó(~Ãqw\94Óh#.¥¹\83×dbI4\83`ÕõÈ\99x`8p\9d®\fÕZ*AäU8¾\9b\19"70¯iÂ\15\16kÈ}\8f
+ aÄ«¡\9d\85\15¹\8cÅÅú=¯\16r_ÇQi¢Ð\17Ü\12¹C<2Ûº¼\bjR\97\1f:©-
+\87E·\14ëÝT4P\ 3F\17\98ò±\ 6ÑÙ\93Þm\9fa)vlû¥0¹¢ÐÙ,¥;tez[uE¬6²,'¡\9aþts\8aS\17\v÷Âï¬\eíwçëùBCæ5ûeÅOD\80\a\ 4¿}wb\ 2+\88©\\8b\99µT-9\94\ e\eb#\1cXí\r«ëb\1cÐ\3\15û\9bò:U}ê:N\1fqÛg1ì.E\8c\9e\16˰)\1e\94\92ó\93°\90\eÖb7´\a}Nß\ e¯!K5Ú*øU\93 \9aøPúeÇÑ\86Æ;ùòª>\8c}·T\10·\80\18\14ü\1d\14\9cÑÞÔ|ýF\97äm\9f>£Ï]O\1d½&¸þqá\14NØÍPÐ ëSimqµ\92úXW\8bþ\ 2ÅÎ\8dZ\18\15é²ùÙ\92b\8b?\85=Ü@Ô\8ek\90)ôY·5£-e¿\17c+©\87Q¶\ 6\ eâ\98JnÆÙ\1aê4\1cÖò2A[z#©?\1df'Há©Þó)ë\9b±å±'\fÜÖPÇ\94øíú"D\15\86j6ÚaÄ%"\ 6C¾Z\98CêK\ 4qKª\15Ï)µ¥\81eh\9a\81,¬ÎV\ 5:\86|(\88Lá¡î!
+©f¨ØÜ\9bPÊ\89yª\14îb¥$T\98\ eýÓCD\12of_ì
+n;ìfth§5.¢`\9dÈjÖ\1dJ\ 6\1d\ 6\9cÇËZl4 y\17Òaä\9aïH\19ÓåA{úm±\93\89ß:\14"`\1cÒx¡åÏï¢ÿNúcE\8f\94ù\1cÔ¯_¦ÌæK©;n1\8c\17J\8f²"\19V\18Idö`qÓm\84\9e\10.T\eZYÉð>\88\88²%\93W\1e\9f=ÜfqR¸\ eº_0½<-µv\10w%ôu\19\87ëP\15\82êÌ\9ed\84§\9fD-\12F\91\9a\ 5ôFÜÌçÈt(8k\ fm_(.©8\9eÑ\93¨;\v¥mÖ\93H7\a
+k\eõ\1a\ 6\8f\v\95[Ò\91\10úð§øð\8fúmRÍ¥3\88\úé¶?ĸÊ/Ȧ\9cA#¤©\9aީЪuÍ\1fi¢J°Ô\92w¨\1e\86U\982\990\ feìÃX\15
+ïd\ 2\1eù¸\r£09j\\16x>T\85,+FÈáÁåÒq\ 3«V¥¿´þ>v'Ú7õ¶+Ávh\7ft)\1c\1c
+\7fS\9e MÑÝy\9c\12&\9c\1fP»ç\93\14EÄôi©ò¹Ð4ste\ 5VgP\17ÑNÙ\87\93fÉ}å$\ euäÒá6\8fSâcÐ^x[\16q)*B\ f\17®¥j\ 3¨=ú¡\8dï\83O²\15ui\14Õnd*qfOxÀë89¢ÜÖ¬\83?ö¡²w\ 6/\1c\11âjJ=Ük\96¸(
+wKó\1eX)\16qh}qº\ e\Q\15\99hÝϬ\16\8d\87º6¥(\10)ÅÆ|}Vxìè»\8dvû\8d&_·C»Ò{Øô
+\86Ëî\95s,ÅÞ©)²çÃ4Ú^6\1dÑß\9c\94d\8a±T\95ók÷}¨IX\8bZ=\14\fiú\12cxwïdvé¶:\9f-\1f§-®v\8fú\v\98]%%y±/µ»¡³þÂ\83#ððõà¡ÆÒ¦ï\15JÜ\ 6,¸§ª]\ 5\8c
+}Ö\91^j\16\ ez×RÕ\11Í\95Û6;Ó\18\14+pz@\ 6ìÏRì«\1eVe·\8e\13ëq;|ÔU\9bÃ!.,«\b\990ú\92á [ø´\14\0« )çð0½ýjµG²\94Ñ1á¶%\95Z\10=$þx=Ö0eaðËÞ \v@Jx\8f\1d4è\13\87¾ýWʾz§¨ç\ 4Ôõ{¢\87UÌOÅ\9eèÛv²é¸Ç.®yAë¶\98\8a!\ 4Ç\9c\11\uÖ\89\86Ïß2Îl\8b\99\84õ7¯¶\9b\rç\84zñMô4¡2Â)Ê\r@\ 1\ fÌ\8e\803§\9c¥æT\82Ø&\82µ0ï»vó;fåÈgÛ·º\16ÙK3\13ë"\9d\1fÐ^\9a{Y\17AÒS.`)jA\b¸WRws^8Ø«Sóc\ 6Ô\9aR\89b\840¯È©r\8b8ªSeú¸_¹2E½Ydk\87\9bå\eËCîä·§\14XØiÀØ\9eÍ\8a[Ø)\1c
+äñá¡ü{ìÆ±.\ fUû(¢.ºËlK=\95<\12,Uav¼\ 5/XWJí¹+ÈPÍ\99\ 2w\9a"&åk\Ãvs\rz\81¶ËÔ\1e«\b\7f4ã|\ru\9f±°î}\81¾\ 6¾l§\8d[\9aò\a±\12Õó»ð\7fY]nþ,ÅQ\98oð\ 3.\9biµP%\13 öÆÀ}!2\9c"*ºÑ¼¸Í\94\11Ê\bÅ\8dõ¥Ò¯Ö\14Ï%íGÍÖæ
+gQ\8a\8aò¤Lô×\10 éÑô+\ e©
+S¤\9c¶¼oæ\9d(\9f0N\8ejµîø\8bÝCBzf;Û\82îS\84¬\ e9û\9boÏ\9bÊ/ò\ eì\ 61xÛNDÂïqxLQy\12\9b4Ü\0\84\88\r\16\98T[Z)Á2.{'ORÃBª\99B\91\e\8d\8aaÁ3\84èR\8e¥ÑËͶR\9e\13rÙf ªNR宨\8cêÉ\b.\98v5\94rëV¡\19f\0õSÓ¢:C´¶Mʽø\ 1KU\9d\8c²õ:\8f6ûÞ\8ev\1fýöé\81zãø\9bÝÑ/\8a¶Ù;±jѦMC,·:\b0mì¶s\11¤6\vË\9f\16y\95B\r\e
+{\a\8dþ\8a°ñÎð6\92z(\9ca\9f·s\18³j\17\10K\9bbX){G\98\96QC\v-\95¸(\92G\11ÜPÙÊ©«ù\1c\16\7fø};\8dù¦LD\98T\15 \9bØí0\96þR \84\r±`X'ã\92þ\84£¨\9b\99KµÓ\býx·ã¸FúlÖ±\12\82\10¦_À¸Þ\1e¬ ~?©\13\91m·/9¦ \ eí\88NO\91t>ö¦\9aÞ´óW\1d\86*E\ 6f\12I°Í×Ft}\1du>8Z\1c\8ec\8f×úOÔ\\86v]¶ÞÔ\ e\ e´\8c¾#.\16C\r7\82{MÅN\8a\93\8fÒq\9b\ 5Ó\9a¼·Íju*cñÁ\96*.¶voC\r·¬\eáÙhÓ¸ÙÆMçeö\89¡Þú\81ªlÖfu\802Tÿ±\14\ 5\98¥à\87\8f\12\99\ 2©6>^î<\88B\10úÚ\r\10\86ÂÒ[µgAú\92jËj\9cª4\90Ê»\81QM\86¥:N\17öˡØí\16\ 3õ<\ e\97VE\ 6dH¡åÝR8A\11â\9dêíÓ\86ý\ 5îÝaõeÚ~ï'Aô±\1a\14\14S6S\93y\9c¢¦Ä¯)\91ó ¦í+åL\11v\16
+~\1eÜP\17¹a\82¦\97\ 6
+¶MÇ\91\94ëX\9c°¥*\8e£.ñÛ¶xÄmu?©Ô\86d\17æ\0¾F\91z\13g\96º5;\ e{o\14.¥\14ÒW
+\b-{ß\16ãF3N\18ÊM²°[>\88wju\832#\9crC|¨©¹í\fè$ZÊow·\99¥´{9ê.uìV\1c®g¢\93ÂÙì)\18ZÂiØ\9eÊ¿ûÀ\8a!ú:\ eK\åÄ\86×Ç/¥_\91\83KÚn\89\ eå?\7f+×\8b,\199%\r\84W'Kv®,\13wÝ \83\18Ç)ÛO*L\9f¿{\0øw\82Oÿ91e©T@t\f©\98ÿ¡\10`Ç=l7År\83c_°0T=9J\ f°J\97rjuf©«Ãþæõð»Û\82\85\8dc\8bwnæÓ4\94!$\83×OË%/EÍHm\ e"¡î§9u\ f¹Uj²Sþ\96¥¿"q\84\93¦bçvØ\1d·\8eS\82ïQ:@e!\9a?vÌ8\14÷o\8b%$Õ3¿\97%ðÆî9$¥Ý,\84·ï¶üS\124\98a\ 3\1c\fo\ 3\19F8\93|Þæfõ
+µÿÆ\96g)\16\1a\1dqúÚ\1f¯yïó#\96r.§\85¥¶fn4}fÖ\94Y&\9f¢\rÞã¹æ}Æ\9cµÞm\96j¶,\8búR9]í°a\eE«'\12½±eEå\9cé\973\93è³4DI9-ðè\7f·³3 bÊ\16<²B\90
+BLA\7fÿ\16ÍRlIÙ¦Éù\12w+Gìd\92¶\83\93\ 1$L!óªØwõn\91tÜiå\0ú|\v©\92!Ð9WØ>xbÃÚ£\9f¥þ\1fÿ<Ë.FÄ\84%§\86¿Þ\1d¼\9d\94¾@SK=6«w\1f\8aéò\88ý& +iP³¤ü\ 4¦\12ó¶¥òçqwTV\8cÇXNK\89aÄ&\89PUj©\1c\9f\ 6íÁ\18\r\8bZ\93¡à}\9c¡í\99T1¥ø¬\80ao\16\ 4V¸
+ÏL\r´$ó\14\eù-H}É\13X1\ 5á\18Ê\9b\1aw\94ÑÔ;\1f-
+\9bê)\ 2+vP\86¯z\ emÐ\155= :ß6Ï\91¸=ú\80þ\14¯mû9b\85\16G\85\97GÃ\fS\ 6ÏS9\8eE\15[*m½¿=6}K·å#\bjý>\9b\12\ 1\82y1\18\1cØ=\rÃxS\ 5|P~\8b+\97ó\9d¿áì\btÿ§l1¶\91Ê\8atÂBG¤\8c=N)\15Ë\ 1\8eS$\
+Õ(RÈã¡Ì½ÁsYì¯\93rÒ\89\95\9b\98ço3MÖÉgÄÕI\9cl1ÔÑìÔz(ªyÞå\19æÌ-¥id´eÇ\8c\ fÊp\1e;øa÷£\94ÁÖ\ f#¹\13á°\ 2\81±Øbº\87~gÿ P\ 1\93ßCé\16æÃý0S{\ 5{àa,¶\98¢\83{k¦R\aw(=3d¹ß\9b±Å\ eÕ+*ÒÀ\ 4\1cl1Å¡»=\9d\9a÷ÿ(ÞClS¯-Ò«%ØI\ eüXl±\ 3÷Yrê\ay\14\ e³düÁN\\82U(\0\11\88ÛNêfGÑÌNèåö\ f\ 2-&\85À5J$XHt0ø\ e·R!Ò¥µ!E\ 2¤ ôSu\97P®\1cì\ 1\8d"V\11ã³úAÿºÎ\96\1cصÖQÌ\86Èi\97íW\8f¯zZ¸ª+\9d¤ÂÇC\ 5Í
+´«¤\85 \r)fM_ç¾ØbÇáyf}\ f,`ùIê¯ìXÓ\91_¸}q¢\9dlÐŤ2JH\ 5/v`x¤]¥\14âPpö¶ÇÞ9ûê\14§c¦T@ê¹íJn\9d%ØmÙ0\14J\v´\88\v¼\98Tλ¾\eÏ\96\120¶ÒTC¡Å¾º¯Hµ|\r¼ØAË\9f*N°zÃÝMu?Ã
+lø_\87²eúÁ\9d
+Ó\88G^\9b?å\18tíöN~p¿ÝþVçöT\9e£Ë]!pK
+¦±¹Pa\vf\e\87vö\8aCt¬ANÆIr\82º\98\130¦àì£øÎïÊ\9b3ó\81ß\89\161À\80\1c0&u³Â²Ë6Tz\94\18\89P\ 4\18\93b«\f½3\0cRmÕÅçixh\8fצi\93¹c\9a¥B|=®k\85\ 4H\92\10\ 1¸Ü\0Jß\82Â@mBè®lQé¥[.\0c¿=¿Ø\e\9d§\15W\9b\ 3FY·e0¹ \8d\8bãÒ ¢\96 \8cÙh9Lµ\85ªFTF\f\1d§RªïX\1cÃøßC\8cYvBÛ95$\ 6cLãÙE\14Ok\ 6®id\88\9b[Ò\1fÃ\92\89ÊÞ\ 4eìÀÛ\97ìÁfkc)\8fÊPP\14mD\19\91öYéËÝ+½\9a\87\1eP\bÝË1 Û\ 3m\ 6º\v\11TÕ¨ºë\8e'\8fL\ 2\90Hämù(üL4¬\1f×c_kòÆ4´\13\1dj\\ 1õôjf"\r x§ª\154ØS\185\13Ù\96ê\18^G&\95ñ\ 5²\926Î\ 2\87kM\8bÒ67\9e\9b\11rº.û8ÌE\10\1eÿ\93`Çx#á\r¥b\96\ 5\82j¶\ eKª\ 1\1e;¨\17àG\r«Íü^Ê\7fþâí¢%î¥$\8cÖM\93=Ö\1f\aCKÅÐ\8f¥0ßTÇ)-#å·÷ï\16° ü\18ª\96®\8dÖ)\r\ 3R\145\97Bz¢G-V»\93÷\ 4KfÂ\8dwľ1¥öx\1a{\7fÍÖ:ûÄø&lGi1\85m5'sÊ´!bÙ×\8d~ñGõ=í\186¡L\ e\99Ô\9dIYª\16éÔ\ 1)æ/ÅJ !\10\9evÌd\91¡²0P1\85º\17ø\vöÚæ\1feú\95ìE \18\99JQ¶\vÀDD\98Ùàig{î\16¯PÀ\96ï¬\15|àÈ\ 6\8eû\9a\87";?°Ð¼¬\88S\8bè¡\r®~Z\8f;çß=\92oßT½º\142Eî¾\13¥Uù\1a\84Ý\16+\13H¦\1dvg\8aÑã¯5!\81ÑÇ+?À_1VJÜ k\8c\15R}N/\ 3\ 4H¦ïf\9b\8bqZ@I\91\8c\ 16âX<2Â\eÊ% ês\87õA\9e¾\1eÒ\97\95âÂtá\95¸\11Ú\85ÈÝì°ß,cßAÛN>h³BÄ\89#\e\90\92ô¶ÛÂe#\90ß:ûzà\89EØ'ß\8bF¦\80Ðx4¨«®CëGB\8elN\89N«Ýf\98!\9föJA#Óû(2`\1f´\80®\86\97\17º\95\81¢µ¶woÛBè(ö@]\90\16ÜL¯Ü\12lã\9a\ 1!Gs\8b(ÍQ\13I6À\vÈêQii.w»¼n·ùp®\ f·]£j«\82J¦;ìwe\1e\ 2\e\8c¤ú¬YEË\1efà[Gt÷Y`2}\93FÉÒ}Y.\93\0\14Õ\158\8e¨èH((\95Ü©)`¢>P-húüÛá1\17\ewä\92À\99f´çulÜ\aI>ÂÞ\ fx2;[\1aa$X\ 2kSG\88¿/º\ 6õE-ãs{/\9dªð,ó{c\91ôç;@þÍÙZ\8b0f"ê9\83R¦\ e\0vD\18,¨Kë\1a\9b6E.\11|@Ç\8c(4\9cÑLÔ¡\99\rò¯\82K:\91\aå^»UåH9©NÙ÷5\8aJ%\82\8a\1a\7fÁ&1Ã\90[gÂ,n\9c\ 6_\1d$Ôm\eUÐeR\1eÊ\17d\11¯u«\16K$\8e\14\ 5\89-\ 4EÔd=ÈÆk\ 3 &\v-\91éGÓÝ.óøÓͰ'ÄL*a\ 5L³ùfr\ 1¢\10MÊÍP~ût²=+òÚéÎØ\=há¼½\12móT*
+Õ$Û³ì\a\15ù¡\9aW\ 5U¬\ e\ 6T\ 6Ü\17/k\16SÆ\fg\10mP\ 3K¥Ñ\90,/}\90LO¿µf¿018\rl¦\9a¼\93«¶\8a\vÆ9bmæ\1dï
+8ã^\atü\86a´Óe£\8aÅ\896ÓPÄ\ e\85Å\19\95\81ΩV]\r R\rV\94\90ªêø|V\ 6\86h\9a~¡c\7fô\8d/«y%\85&ã|¿<«DX1,mÖ7÷xî²Wáï\r»ú¿«Ê\1e¶\85+\99]\8aXâið\85\8aG¥0 §f\9c3E:\ eFAç \9dÑ¥C]¬öu\14M\ e¯Ù!<Låf³2_¥Ö'ïLot¿ïf\b*\8d_\97Vç,[ f+V\v\81\1aoÇÈ/к}^K\1d¸ìw\7f§\ 2Ð(,tz\1e¸ñño¶06æ ï´5\1fø3}ø\1e\bú @Ób\87\r©Tvæ\83Ð4\97{·\ 2^Z\86v[ÏO\ e\1ac²¥ÜO«çÒGYPJ\84©Ó¿\ 3Ûc³Ã}âWFú«{\83'%È\9cÙ~[e¤îzË'3\83§\0(\7f\80¤ý¥0ïã.ºòú $ªòU«\81ØW\18aÀÿ\ 1\16í¦¦J\15ÛÝ¢.&\95g\ eÐZ7\7fqVnQ¢ ».<¨ô>«\17`æ%í¿E\9aó^\80´\ 1¶B\97él\86Hë2G`\88?|÷¨aÙâ\8bZû<Ñó1«\86\9b\95Ó2zS\85§èÊdûí_\15\94xÔ¥KdÛEL]Ë\ 6)tx(`¬Â¡NMüiï\9cÄ4©\eÁC]úÁ®ýò8§\14\95ËH¹\ f·¿_-âÖ\ e?ý\90Óä\ 2B
+ÔH\87Ö«E\1cRQ® §±\µÏ\1fV\90Щ\ ef\ 2iNPSP\81t¸byóW\9e\1eRi\90lµÈUM\8arL:Î8j°÷\86\r<\8b¤&\95\1d\8e*í8ÿ²PÀRrw²\86\14ÖÓ(\93§&\88R\aÔ~8RMH1\8aõôY@ÕP\9a\1d³¸j¼S\17Se\90\90ÕN/å¥jG\19\º¿\ e\9a¡Ç¢«ul1\990N"¼\1dk\84ÓN\ayr\85sÌ%ÕÜc¢/íð\r\93Z\88\1fÿ\93×\16~äz
+\89_\103ÕÆq¡Ö<M¨çÜhkò;e\a+35ãífÓ¬Û\7f\12×\88\1c\9e\8f·²\1aå~ø\99*tÒc¨E\90=&ªE[+1\1fÄ/£À\ eųø$åÔiª\14âÐ\1e¯kQ×4%Ù`Æù$ßpø\9a\ 4°\8dfN\96Ý\a±ô ]c\11Ç}v{;\99Öì\96e×\861¨kz3\19bê:¨_DzR·\rì)½søÔÜ÷±¨kUÕ\93oÊ\19
+TW¯*3%Ú\8e¤²S\94s\a\83ø\88°/D\18å]¥\90)\952+üÕC¥!B\91f°kʨZ\0Q÷ãF±Çåé\1eݳ\81]ÓtLc*Ý\88\f½ç̰]æ$<`±ÓÀw¥º2\98éÍ2À\96y=¼rJ
+Ëa é·\1d\12\98'\89\87u\v^\16!&ÅM\1a\8bräÇ>É\ 2\8aýJE4êEdÛ¤\9a.\9a¤À¦ì)±¥5\ eÞõ³ÿ\91_©±Är@7\89!塸«$0¹_nt¥ÍIp×hm³\ 6ÎæUMÏã\85\ 2¢\93ìÄ}v«Ålj~\ fî\9a\12E¶n~\1cv\98ò\14\9b¹¹«¢û±ÐƱÀ\1eª\ 3¦ÓL*-\9d(ä2îÃ\9e\1cÞI¬ãXص\ 3\82û0\91ð\90î-V\1dRxi%_z\19%_ªÇ½(a\96U\86\9aä\88!Q³{G:Bí4\8a ªDfRפRó(Õ\8a\9fE*<½\94\86¨\8c\14ëë\92\12Ø5©ÔÞ *\ 1ÍI$à¥Ï² Øî;¤ë\9eܵ\83L,?á\81»¦ÜÞÝ´<¢?O³¸&Krøê\ 3\8b®4ÅCtGoݸkºK¬\98\1e¯\1fÅ+\14U§>F^HÁ]\e\87÷<·{ó\1d\9er\ 5ì\1d(|TU\15]Íêk9Ï\ 5^\eÚ\0\12aÃb\90\1aËâ2\rÎ\ 4\8d\92\ 2Y1úõE^\e·Çk5\98Z3Ê}D\1e2BO¢#iÊ»\93åÁ\10Á\95
+%U½^`\fÚÚ bñ£ÒOF \95îÌ'RFÆlNd¹ÆÙ@\19¦X\89@~ã$¯¡²Ê¡\12\88¶@hi®hÔ\95b\fR\82¼6 ~èR
+åI[Ø\19ë\17ùn3¾Êr\88Ϻ\8fÅ4¢\ 6ÕFðÇ&\ 4¾\ 5õÖ\ 2,\11ÝÒÊÊ\92}û"¯ÑìI¾õ6_\17º\ f¬\9cê\8cr!íjn+\7f
+ô\9a\86\ 1k³\1a\ e\15иãµ\9f\97[\ 6¨\85\86 I¹µ ¯±Ùi¬\1f\ f\8by\8dh\vbIÌÄ¥<\16«\vBk\11\17Ã\82æ¶\10y·p²Læ4\9f1´\93Çv \9dî\9fIaCÕ\1eþêvz$èa\91` !-F\88~ôÅv¡ãä\89Ã`ú\92bÝ\!\ 1"Å?z:=©ÓàÂÍ@):«i\96/Ià"H\10)¡Éµ=ú\82°YÜ^·§ªÍaóªE\8aæAÕ!\93|UÝ\1aUó*»\v\8fùC3FcÁq\9b/ü\ 1K\8aA\12\ fnêÕmHQR>0lÊ2ZÇß³\99\85«r\0¶sÒ*Xë\ 6Uw[1´ÂÒQ¹ \82îK®%Z_X\9agxÒT\ f>\1c6ýÍÓÂ?Ûâ°Q9oOáf;%Z\91ض`övú·U\98\r%\8cÖ,\v8L\85\ 5\85Â`#x\86òä¼\93\1d¢\1c\9f\83Ãv\80áU@\8b\99\ f\13ÒÇoÙÀïR¢ÎC¢â\81@±\1dm\8b\ 1.z*öÃë\1cåc¬\94\9c2<Ô¾L»\8aùNþ&m\95ºó\88\15RU;`K\1cÍ\ 1\0\1dZ\84£Ø\ e\8a±7¯\18ÂG\9a¥Ûm!xZ\vHu«ä
+ö\9d\93Ø\94\16¤Z\ 3U£·\9aW|úoV\ewÀt½,\18:ûö(Ä'ݧ\94\94\ 2.ú\12\f6T\9d`æu\r>5d\f£U\ 5`\rÕS^µ¨sMa\9eþB³~+o\ 2OÀHkokfÞ\80O\84\14Ö\b(Üyòºã\93ö{Õ¬Jµè´T{\1fÅ*|~ßÅn»í\ fN\14\e uÌ"\1eÃ'YÒí¶
+\1a¢á4ªÐc®o\1eÌm11»U1Ñ\ 2©ç\81\8a\b½\ fLv·\95\86>yrØ\ el\e\94üÐf\93~Çî\ 5g\9d\14Úaé;\86\ 1)\13ÄfêfÇM\14\9b2ÿÔöt\ 3±é>·\1a&`\87\ 2{\1fÞ\8c k=AlÊY³ZÒ-fÙ´ë²Qëö.µãò8\98¦æpÆR\ e»Á\eÚ½¡L\97\15{\87î\10Ä\ 3[Wxú\95\17l·Y\e(î\84óØÁ½§GRé\ 4î5vÛL\9f«W©C²n\ 4®Ì\1f\95³2T)xÁ\86B\13=E%t\ 2\a\90M\95O\90:Øw\8bÐ4\18¢\1dU5\91lZ\84Pá \1d"9Ie\85 å)pBkÀõØÍ¥(áDÉh5l\8d£Z\83ÐaA\95\0\1eʷǰûî\8d>\9ahÂ\1cu`aòØ;\r\ 5¿ù\0\ 5\18\84:t\1cU(\81±W\0Ú:þ\85²ÝR\91¿T¢\157=§»íÆ¿\81ì¿\19&ÿ\9fã´QÍÐ\14Ó¾$8mT3°\89\ e\95Ú\ 5\82å"2]VYÀx'aÍåt\8a\e¦\v\12\99îQJCu\8fÚмE\98 gg~ÑUîÃ\82OX»¢\fÂbNä°c.;fÆeø<2²Ú\9b1Ü(`ËF¦{vW
+ÉG\94àµ\1d{x?h\1aoÞYÕº[Ôj\&µØ\98У?¶\9f¾èÐî]_â\0ýE\93¸\17\1e\1dxÂ6k\95\9cØ6-\14p\8f¡\81]ý÷ª\84±\93ÿ\e1ìtÉ^\96\1d×vÕ\11ÂæK¬\96¼ì\85Ö]\V\87)Ve/\87ªÙ¬zºQ\12,ÌÛßiÁ\9c-\9aÃõYÃ\85¸±\7fOÃo\188-boÔ³Çxð\18\9bí¸\8eõ\8cO\84Ûïq´\8fYDZ \1a\7fz÷ùRö\85\13[ª\16\84\fg\18i\1f\86CÕ\19>è\16Ã\ 6ñ\9c 7\8d²¸GÍ£Ôef\91¿ÍPn:Ä"ê
+EG½\9dDªð\0½n6^ã\ f'\850¯\14ã\ 6íc%v¤z@o\98Ïç\81¯FsE@·\83\85=a˱
+\8d\ fíj¬\15¶yÁÈ\15[\83\1d\aÒ$À/\8d\12\8c¥6ëv;Ô9pî6\96\19\14DµM'<s¡Ý\ e/.\98â \82·Y\96\83xÀRòõXjëÆw;ä\1a2ºå\ eT©¦ëÁl¡½B\10Þ\ e\9a&\87\85ñíyx|ù©\8dÆd¼¡^¾ý Þ\8c¢Ñ\86\86A=\82Z+\eúî\9a\987D8§jö½üóIô¢Ðùù\18\16\ e!Hoº\9dØâ7¼ÍuS_\97%\8f\19\8bä'¨\123«F ÅVýVWµ\ eÓ'°>\16\1cèaͶ9ÅIãaX\91¡Ú&â1Ú\9b\14\8bcjhU\0ú;\ 4ÿ\87SË\7f\89öF°ÍîÏkáÞ\ 69ÿa\99@ænkÂq\10\14;/¦_íÎÔ3»¦i%æèbVg-]eôÂÞÖkëé¼Ý*á %\aôM*ÁLÔÍzuÈ\f \90!Q³\96²\ 2(Á}#þh\ 65»ÅxT¯±[ÿónacUz`\16dÔè¶¼DÜ\18æ4ö\eMwfÊr\9b\a\ 4mr¤ØUO\1eô7TÖSr<P\9c\ 4\85Á¦¹\ 3(Õ VñÕ\16\ 1N9\1d\8b45\82UÖIH\8c[\ 2m\rJû\fÿð\95\87\1dîÕ¡¯ö\1c\16Oµ%\97ªö©Ùø\Ì\7fþâ\rC^\96n\17-Ç\83\ 4§¾Ú\87\8a\90î¾Þ\1c\87\81U÷¢
+)»Öe(A\82C}(6¼<*\rWãp\ 1S\95è\aè×\ 2Á\8dËÍ
+U÷dF@pÑTaÚ|K>à¬Ò\v\917éÊScE\17ªfm³«\enÌ\1d\béYå\89&\b\ e\15K±ÓS\1cRÌ:MNvlø\83%cÞvÏz§í\12Àg\ fëâ7·8\1d'b\ fÊñØgMþ\ 3\91\ 1J \8f¨M\95ó\1cuÅØºá\bà®\13¿ó¶\1aü4r°½QÀ\9c\89RU\84^µÙ,\97¾\14Rq1 -ÕK\13°P \8eS> §·\96û\96ùY,¸\83\14Í\18ù¸\99d0ì§ ÃlÀV-àR/3ÓäGq¿ì\8f\ fÛ=:xT$¶\ 6Ñá¥÷m3®\ 2\8a\16D\1dÃ\10¾\84\87\9c)Ø\ f\1c\1cûÅv\98j\ 6-\14\85\9dæü§`ÕÑ=êm\85G\119áñ=m§i\8bOø·Ø<\1eÖà\93\94T-²TÕ\10Pà¨\85"\9b·Ç!\10:×t\b$(\ 4¾\1cø¸Ì£\18\94é8\18Àà\96\0¦s\86¦§z\el\81\1aK\9e\92\16ñøn©c\9c4\83\ 5§7Z\19[sGs\ 2xÜ\9fót\11\ 5i¶·\9e,8Å*É\91\93ô¡ÇIqÒӺˬué:mõNYV°à\b\14Sû¥\9b\11\8bUí÷¨HÔB\93\8d'\84W¯Ê
+\14\1c"&\85\97\15ùH *\8cB\ fÝùx\ f\9dÞ¸Ï~Ô\874:"\9eW§Ûâɧ\8aì;Gì{ø\98Æ>TÕd\96Ö\ 2\ 3§à¯%\8f\9ag\ 3¿\ 3åß\9c·\95à>mØÜ\16\aNÅê\ f\1d\ 1j8×¢¯ßá§é\84ôõã>_R&\vNªµVJÅESë(n\9c\98\88úãÍÀ=ª!â\9dst¦zQo<}DÇ\84\89\ f\1f\9em\9bù`j\ 5(ͼp%ètÕëê«\9cGµÑ¿_\12E\9e}Y¤h¯MÔ»C©¹¬\82a\8b"?¨pª¹±ç]u\15³ÈKY\99ý±\9c"ñ<\14\vÕ<\96\15°j\9dÝ\8c\17çþ\13\15â±\9cu¸·\1f÷?b\bÐTÀß|ìON8\9c\8a\81 Hï¾»Ó\ 5¡úI\ 3$ñ\9c©¨Îw\8e\87¦\92ÅrËÌÎ
+\9d¦b%\99¨\ f¶m\9f½æ¾T\85\12\ 1\?F+qÖ6Ú#\92Íø\9dJºÚi;na\ 6án®ZcZ>F\ f=\9b_aVû0Ç\ 5R\9aSá\ fN\a\87PÕfiûÝë²E )§wóÇå\ f±c¢§\14¦Jk\ eV\fÍbÉ*còêÝ´£·rÍÃ\9a\90\0=h\8de& ÍíÊ\96"¯ô \9f,\95^Uµ\aöð\82\15iìÄäá\f\v\86¾p\ 2:¯\14Îãvo\9fU$\98ù\9eb*n\r¥.£û
+\95\962\8d§\14\ eì\97ß'\9b\97îhåF\7fξ-\80Ü øJ\Ñ]x\aaU\92é\9b'\95\15>!ͼoÉy\93(x÷\99Yur-zR\80Ênf\96A\fu*ö+\87uÞ£^øØ\9f\91}Þl÷\9d\94¶PSI=ÍX\9dr\\9c}å\7fÅ\80¨x¯ªÙ¦b_V³×(Çmî\¡M°n\91¥\10Ì\99\15b®bjK\9e\7f\ fc¤;Ö\92ÍÉîS\89û\0Ã\80u\9c
+\99Um\80w\85&¦©0}Ï\86ÞáI\19\9c¢^ù\8cjïf-\11\83\9eÀû\\8a}Û=\8cfã¸è\89°\ 1vX[®>Ô\9e\1e \1e|=5_ws½ÀÃ3Ìba\ 5йK³Rß\17\Nª\99YÓìîî\9fæ)¢lª\9bt\8cÕ<ì\8b/§bOú\84ÔÓ׺71\t\90\9d6Ût±\81¹l(ÞÝØo·±\99*Åe\8cò\87C\9a\92²/ÈÜR\a\ 6\1aú$[ü\8d+\8acåh°\99\7fòäÌñ=\1e«D·lÊÓ\96}¯Ùe?Þ]FG_\9b¥°Í»ÔÁGëÖ\95Âì r\17æÖ§Å\97:\17l®c\10¬Ó©Æ\ 1Ù¡hÚµ\89N]tV\87\15Êq,ÞÜRé\93Ð\85 æÀ¶ÀÛ\8eû\83\8f{mN¦
+A \1fÔëqwe]zÁnXñh\158\1eoNpä\9c\1e\11¥O8Õºù°¥¥Çìð[F3\84}v(ÿ\1e\ 1\ 1\¨çq\ 2Ù[\8dËæ»é©\94\91 Tl«\ f\9c@\9a\99«è¼)Øaf\ 3ä
+¯Å\9c3k&\1a`ÜuH^\97f¼ølF\9dS*~è] ò Î\99\1d\94;Q\80\93\9bIê©ü__\97ò \85xàp\81£Áis¬\9a¥\9es7·îI\9d3µ\87:.?Î=öy¶L¹B¹£ÜÆ\8dά,g³\1c7V\1a»ÙíðÚj@öÅ\9c#\13Î\94 j\91Ý\ e#\8f"\ 1è\9cÖç\e½ørî ì\9c\8aiÜ\rü0ìÜѼ\14IgÑ·G\11 xFÚaô(>\17\99C\84\15)V)ÏqÏ\83B0Xö&÷z\1f\8f\8dDªÜ\8bÒÍ>®\87\83ÐXÔ9å\b0áP\86»\91\96\95UÆc\191\85\0\14\82·Ò\94û
+ì\9cvB\4Ý'\98\ eK1ß^j[î¢\8c\85\9d3õ¶\82XÛ
+mnU!Ï(¢ú\18°05à0ë\1d\1d\14\1aY)Ä\15®\91Þ\87¬(&ã\9a\9c¸y\94å\116ésR½\93ï2oF\1c»ÍY2ö\1c\1aöùt\1d\13\1eÀR1ð2b\93\ 4«tÁ6·\9bb'Zy\95YÆ\f?P\8f\97\8c\8fp\ eÓ\951_²Ë(tªåq\9bkaè¤ZÅ!êaÇ\rª\9dävH\81øíÍ©|VT¢¢²ÄS\88\86z\92Û·KÓÊ\93O\ fsϵ&c?«ãFø\16n#\9c\ 5Ü!\0\85|ä\99j§×qª2¡\\9bùÍÍ\96Ü\90Ýj¢íµíÜ.·5õcTJj.H#"W¡P3<·\98¡ª¿\0/ Õ[P\1f«\98å\8e\v\9dP\8f\97\vg\94Mu?\85ó0\9d,\95¹\1cÃGÒ)ÜÉ\99'D9Hiã¦ðÖeÎI¶B\99 \8a³-Knz\82\91hó\1a\97÷\92S7Äw\fú\80\ e \87âËFF4]\f\ 4ì\88OÏ' \10ëTáô3}Õ/\7f\84ÏÓWR÷fñ2\95}\0\9d\e·7H\84`\97=Ê\88æaò\9a +¦D9Ëÿ©p^¦#}¨ªl"\92Ì\1f8HÍÑ'IQ
+}\ 1Ïò\82U!\94ÁMB%XkÑ÷æ±ÔÛÝ6T`\13\84:Å\91-¦{yn\97`-uos»4\950Ë\8d(/\ eJJXÀ¨£\12\95½^\8b½\8bxa4ÙömÕ.I5Û\fuÆb²§Î±=\8eã.\1a\9e\83£mbò\f\86\9bóm\ 6ªCÀÝZ\99\ 5\fòõF+»Þ\16ªNWÒ\1a\86´\87\92ë\13¥Bä¢.Ëb-Eý\ e\11¿\r\91\øC]Ýc\93ôN\7f+Cc³\82©Øóë ì©Róyº¡(u\19SÐ\12?°uS\9d\8dS\a¦w\1a\8d\15\90ÒBM\83ày`az®4\19w\1d\86^ó8Y}nÎò"Ê®\981 b~Ï\11\95v*¦½Ld\93òx#·\14JÜx\9f\ 6F)\13_\87
+QUë:m
+¥\10ÄF¡`á÷\ fÒL(sË©\84\8a½³ý\9b7Ò+ù¨v+\1cÃC\8000·S¨#ÙëR\8aú\\87;\19+£D«q\eK±Ù1ªöçq\98¼ïÖEÁ\10tÐky\98ßn°ìð奵B\1d\18ä\1eå"\82KÚ¾{^YÎç,ù´ö
+\9cÝѼ½\95~\bâÓºÌÍzÐAÕQpEO\ eʵbâ6¿ÏãF\94¬\92xQ-ØTösAí\92ºY/\10U>\94ÜnîðÂß|\80>Ü\vlGfßz碬X\\11\f\8977¡G¡\8dE9ê\99\9f\97zÚÇQ_ËG1@Q·èArkïßî\85·S\98Ù¼B7o\84¤0êæÌn\91\1e\9cJ[\84»¤\1enF23X \9d\1f+\9fª\8a½Óó\1dé¸ÍK\1ad$\83O.e\12\8fµ\eNÎ\1dj4\ eNÐ\9d>ï±\a\8eY\83e¦òÒJ/³{\9d
+lâ`Ý-õvHÖA\ 3˾Ìm5¬\90µÙÏkÎÑ\14!H\18\87\97\83È)\98*\vS\9e4nØV'Ô}÷>F942$\a¼H{\13;)ô\10:ön\8c(æ\95õ¨µjí^`ªò\17\12\87Z}c\ fHo\9e³ï\14\96°±[\rÛ2\81¡\975 \12¥\ 1ÀS{\18%yM;qÚ×÷(\80V\9cVS\94\8a\96\1e+p¹WJZAR_\90¹ª\9e\19³Á¼\9c\85\17\82\8aÝ'\v/D\rEG\18\9b\98µ`·ª{u³\82µÐ¾oÒðè¸jnç\ 6\ eO\18nz,Ú\b_\93wÌúoFÄÿ\17\88÷ß\ 6ÄSqÖ\17\88GÉV\ 1âQhX\80x\r'å\17\10O\8fB\ 5â©ãµ\0ñ´èý\ 2ñ\14c®@<\94\ 2ijc*\10\8fOË@< \15\88g«ì7\10O+ô
+ÄÓ\83X\81xzÀ¾@<,f¨r \9e\86\8e\ 2Äk$ØÞ@¼¶l\11\1d\88gL\99\fÄcýõ\ 1âI@<V\ 6íX@<Z\9b/\10v \88\87Z\80x(ÇH@<>j´\ 2ÄkaC7\81x\9aB¡$9ì\ eàÇ\v\88·ßW\ 1âi|¯@¼¥düZR\1d\88§ºÍ\83Vý@Ý\81Vz\ 3ñX?e \1eFú\ 5\88·?æ!Qxx\88\ 4ó\82\87\87RxxR¾<<©\95\87'¥òð¤\18¤)óð X\15\1e\1e˽ÂÃKJâá-5xxúÝ\95\87§\99ðËÃÛ¡²f\1e\9eM°
+-\ 5\10/)ù\92LÕ\90x\94Ö\16$\9e.ö\17\89·Ë{+#ñv9+ÜÛQ\91x¨\19\89\87P\90x»Ì\17¶V\89x\88÷\96\88xR*\11o¿·\7fAÄSEQ%âíÄ\973\11O«\94/\11¯íÏ\8b\88×\0y'"\1eíÿ\1f"\1ej!â\99ÑÑ}-"Þwü\8d\89ÓÊ·:Kµ7\11\8fKU\88xdò3\11\8f{ïEÄëQ6>\89xv\87f"\9eÝÿo"\9e\9e\93Jijç)\13ñȪ~\88x³Kr\12ñT\9aS\89xX\8f}\88xä\80\v\11\8fû¿\10ñ\94'ü\10ñ\10\v\11\ f%\13ñ$|\89xR+\11OJ%âQ\92ô!â©4 \12ñ:ÞM\99\88÷½\94ÿø¥&Ïø!âID<\8e+D<)\1f"\1e~ò\85\88g®R\99\88G\8bñ\8b\88×\80ýe"^£\982\91î´ ü\12ñ\b\7f\15"\9eæÈJÄk´¸\9c/"\9eT|B&\11\ f¥\10ñp\89x\13ñ$²ó\9bD¼Fò"\13ñP>D<¹§Ñ³\14D<,Ð
+\11OU¢\1f"\9ebKô&M"\1e+üBÄKJ"â-5\88xmò©\82tÇ8ð!âi ©D¼ÖÝþs\12ñ\96\92\88xI4"\1e?)\13ñ@Á}\88xØ\14"\1eJ?\13\11\8fw~\88xR+\11¯Á\90ÉD<)_"\1e¥µ\85\88\87a^!â-%\13ñ\92êD<ý\85JÄÓªîKÄ£'°\10ñ\9aLí\v\11o)\99\88\97T'â©\1e£\12ñpÛx\13ñ\1a\ 1\99\88G\0¶\10ñ4 |\89x
+_W"\1eݶ\85\88\87sì\87\88G\96¦\10ñ\98^\v\11O³Ú\97\88'µ\12ñ¤T"^ÇðúEÄ\93X\89x(\85\88\87ò!â5r%\99\88§\ 1©\12ñ¾#eL\97*Ñù\12ñ\94rD<\95"U"\9e<\9d¾D<©\95\88\87\eT!âá\1aõ!â¡&"\1eï+D<>ûCÄÓæ»\12ñ´Ó¯D<%\95?D¼Nûi&âá\80Z\88xlÐ?D<vö\85\88g{ýLÄCù\10ñP3\11\ f¡\10ñø\93o"\9e~z%âéÛW"ÞR\12\11o\89AÄS\14¢\12ñ\94Ñþ\12ñ\94¹¯D<ùþU"\9e
+Õ¾D<\1dW\89xð\97\v\11\ fP÷\87\88\a[¹\10ñt6*\11o)\99\88·Ô âáoS\88x=<~\v\11Oþ|\95\88§ÚºJÄ[J&â-5\88xÔ$"\9eJ\ f¾D<}\8fJÄëÇþ"âá\18ó!â¡\16"\1eJ!âõ£ý\v"\9eÔJÄ\93R\89xR¾D<L\87\v\11\ f~w!âÙ½ò&â©t¼\10ñ\f\10\9e\89xII\1c¬¥FÈ\9euv!âéK|\89xº*\11\ f\80w!â%%\11ñ\96\1aD<\90\1a\85\88ÇZüCÄÓmP\89xl/\16\11o½ÌD¼¥\ 6\11O\1fT\89x\94þ|\88xXO\17"^Ç\82'\13ñÌÎèEÄÃù¨\10ñ¤T"\9e\94/\11\8f\98g!âI©D<;æEÄSô´\12ñd\ 2U\89xò$ú\12ñ0¨.D<\8dô\95\88·\94LÄKª\13ñúm\16ª\13\88§?ù\ 5âñE
+\10OJ\ 1âá\9fô\ 6â\99\98\81x¼¯\0ñøì\ f\10O\13S\ 5âiê@¼¥d ^R\1d\88×Ùª' \1e®\91o \1e\17$\ 3ñ°ó*@¼Neì\e\88\87ùU\ 1âi¼¨@<QV¾@<vp\ 5\88§mT\ 5â-¥\f\ 4S\r \1eu\98\ 5\88×÷ã_\0ñ(_/@¼¾õ\17\10¯OÒt\ 6â\11\10É@<\feÞ@<|52\10Osb\ 5â\81ez\ 3ñ\10\v\10Ï\94\fÄ3å\rÄ£Ê \0ñP
+\10\ få\ 3Ä£F¤\0ñ¤\14 \9e\84\ f\10Ï\96\f\19\88\aH®\0ñ¸0\1f ^\v?¯\0âÑÇX\80xìÑ>@<Ê\ 2
+\10Ï\94\fÄã\9dD\832\10\ f3\80\ 2ÄS§a\ 5â\99\13Ú\e\88§MM\ 5â5ðN\19\88\97\94\ 4Ä[j\0ñ\1aæÎ\19\88\a\10ì\ 3ÄÓÝR\81xZñT \9eÜK¾@<©\15\88\87![\ 1â5z1Þ@<©\ 5\88\87=J\ 6âqÄ\a\88G=J\ 1âaÓV\80x\94\ e}\80xR\v\10OB\ 5â©dí\vÄC-@<Þ\99\81x|ö\a\88§_P\80xªÂ)@¼)d Þ\14\ 3\88×\98Ý2\10\ f\13º7\10\ f\17£\fÄÓ\90\92\81xñ:\ 3ñB\v \9e6p\15\88§/ÿ\ 5âé\96ª@<;y\19\88\97\94\ 4Ä[j\0ñZ\14\13\a\10\8f_ò\ 1â¡\16 \9e\94
+Ä\93ò\ 5â\91\f*@¼\95\1e
+ \1eÊ\a\88'µ\ 2ñ°\92.@¼v\8f\7f\ 1Ä[\ 3õ<N\86V\ 5\88·\94\fÄ[j\0ñì/d \9eîþ/\10\8fƯ\ 2Ä#hZ\80xX¶|\80x\8a}f \1e1Ó\ 2Ä[J\ 6â-Õ\80x\16PM@<<ê>@<j\8d\v\10\ f\8fº\ 2Äká^V\80x\98Ð\15 \9eYag \1eïü\0ñ4äU \1eUÊ\ 5\88·\94\fÄ[j\0ñôL\14 \9e\9e\9f/\10\8fi¸\0ñ\14@ª@¼¥, ^Ò\9cd¥üg\ 5âé\82~\81xÜu\ 5\88G\19n\ 1âñ|~\80xR+\10\ f¥\0ñxç\a\88gÏ{\ 6âI©@<ü¶>@<}·
+ÄS©q\ 5â-%\ 3ñ\96\1a@<Y±U \9enÝ/\10Owx\ 5âéA(@<MÑ_ \9eÔ
+ÄÓÄ]\81x
+T~\80x:,\ 3ñ\88f\16 ^\9b¦ú\19\88×Úõ\ 2â\99mO\ 6â%%\ 1ñ\96\1a@<\ 5W+\10O\7fó\ 3Ä#-^\80xxº²J\ e \1eÊ\a\88\87Z\80xFqÉ@<~æ\a\88Ǻ²\0ñ(ªÔª{\ 2ñ\92²\80xKt ^#\91\94ñw¸¼|\80xÄj
+\10¯õç\ 5ÄÓ\ 2ï\vÄáú\ 3ijrì=\ 1ñXr\16 ^R\12\10o©\ 1ÄÓ¾¡\ 2ñ°sü\0ñ4üU \1eݼ\ 5\88·\94\fÄ[j\0ñt7U \9eî¸\ f\10\8f\ 4}\ 1â)ZU\81xð,>@<\ 6\9a\ 2ÄÓ;¿@<Åh*\10OmI\15\88\a\97ë\ 5Ä£Á´\0ñÌ**\ 3ñ\96\92\81xKu \1e\1dW\19\88\87\81õ\a\88G{i\ 1â©ý³\ 2ñ¾Ñì\88sÿ§@¼\1eÍ\9c\ 5\88×÷ã\ 5Äã¸\ 2Äö÷\ 3Äã6,@<\8d¸\15\88§\93ÿ\ 5â¡\8e¶xxX0\14\1e\9e\94/\ f\8fkYxxR
+\ f\8f\90Ü\87\87§[¨òðD\95©<<æ²7\ fO±ÁÊÃ\93QCåá þöåá)
+\9dyx\8aöT\1e\9eB#_\1e\9eÔÂÃã°ÌÃ\93ðåá¡f\1e\1e\91\97ÂÃ\93òåá\91æ(<<«ÿK<¼®íÐ\87\87\a¡£ðð\14\97ª<<\1a¼ß<<h x^8\ eOÍâ\ 5\87×É/¿qxj\1f¯8<~QÁáé4\7fqxR+\ eOJÅáavÿÁá\11¤+8<\94\82ÃCùàð¤V\1c\1e]ì\ 5\87§ÓóÅá)òUqx =
+\ eO Ø/\ eOý¥\15\87\aþ£àðtn¿8<\85Ò*\ e¯³OJ8<]®/\ eOsEÅá)ÞöÅáI8<}ó\8aÃ3£\947\ e\ fk\94\82ÃC)8<\14-e3\r\8f\ 4I¡áéK\14\1a^§iæMÃS+k¥áQ=Shx\8c\e\1f\1a\9e\r\95\99\86ÇpZhxß\818Æð¿GóÌÄ\9b\86§û©Ððú"®ÜA\13\18\1f\1a^Ç\8a9Óð¤T\1a\1eÊ\87\86\87Zhx(\85\86'åCÃÓ\0Rixº@\95\86gÅJo\1a\9e\ 6öJÃcZ*4¼\8e)Ø\9b\86g¦\14\99\86×iôÎ4<\94\ f\r\8f*ºLÃC(4<Þø¡ái\11Sixúú\95\86÷½\94ÿüÅÛ\85øè\87\86'õ¤2#hx¬\83ÇH4<b\84ñ2\r\ f\950TÐðP4sN\1a\1e\9feÁ\9cä÷Èz¹Ðð\14è,4<¸9\1f\1a\9e\16_\95\86§ÝP¡áé^°+\9aixÜ!ò\82\9a4<j\80
+\r¯Íç8ÓðP\v\r\8f¿°E\9b7wüm\83_Áᩬ¤âðl{§ç px-\10~\19\87§À]Åá)\ 6Tpx\8aÁ}qxø¹\17\1c^\8bÄýÄái;ðÅááv_px\84E\v\ e\8f\bë\a\87G¸«àðÚdm\a\ eOq\8c\ f\ e\8fàFÁáI©8<\947\ e\8f\ 6Â\82ÃCI8<û 7\ e\ f\13¾\8cÃÓé*8<"\11\1f\1c\1e\85ß\ 5\87GÀ1ãð¸\8dß8<Üã\v\ eOW£âð\b\v~px\8a<T\1c\1e·DÆá)\9dñÅá5\16.\19\87§PPÅá\11\91ûàðt\87U\1c\1e]Ô\ 5\87\a¦ê\83ÃÓ7©8<ÂO\ 5\87GIì\a\87\87\9aqx\b\ 5\87g\9d\ 6\ 5\87gE² \87gg+ãð¤|qxú¢\15\87§\12<\16Õ\81Ãû\8e\90\7fsºÆ\ 1õ\83ãðK\88\8a\89ãù«àð¨ÄûàðP\v\ e\8f:>"h\81Ã\ 3ND=]Æáá?ºµ\84Ã3GÒ\8cÃk\11¼*8¼\ 6±>ãð( ¢"Úqxô¤=í\85ã\82ºàð\98Aù\87ãð\14Éùâð \a\15\1c\1e¶Õ\ 5\87\87¢§§àð¤Zô*px\18\0\13\89\f\1c\1e\8ajH\v\ eO\132õK\13\87§\19«âð\94/ûàð0Ã/8<3üÏ8<ì\16^8<¥M*\ eOáæ\8aãÐü\8dÃ\ 3\e\92qxíÙ+\ eÏp\15o\1c\1e)½\82Ã#C\97qxÊ\17~pxD°2\ eOe \14\15:\ eÏ\8cÀß8<â\87\ 5\87g^\ 5\19\87§8ç\17\87G\8fNÆá)\0[qxTS}pxzcÅáés+\ e\8fHí\a\87G\8aµàðôÕ*\ e\ få\83Ãká\1f4qxöÎ\84ÃÓ\87\7fqx-øì\13\87Gû{Æá\ 1«øàð8W\ 5\87Çy*8¼\ 6¥é\8dÃÓà×\19\ 3\ 2\87GýñÝ\13\ e\8f^z\993\ e\8fðgÁá5è\16WÂáéË~qx\90ê
+\ eO9¼\8aÃ#ñöÆáQ \90qxz_Åái%õÅáaç]px\r\0q_4<Êgß4<
+\18\v\rÏ\88t\99\86G%÷\9b\86\87Xhx(ZgM\1a\9e\14«\85Î4<\8a¹\v\r\8f\88a¡áI¹5\9f\15\1a\9e\86®BÃÓ\18µïû¢áQ\87ú¡áiäª4<ºä·\91hx\1a\f¾4<ª\v\v\r\8f1¼Ðð\98¼z\7fÑðP\197\82\86'\85\9f2ixR\18\8a\v\r¯\859ؤáI¡YiÒðLyÓðx§¢w\93\86×6߸N\1a\1e½_,\ 12\r\8fò¦LÃSk\13\16\87\93\86·\ 3ÇzÓðTlTix\8dBéLÃÓ¼ú¥áY'^¦áÑ\89Qhx6+½ix\r6¼NdÐðZ¸ÒN\1a\9eÖ@_\1a\1e\85\ 6\89\86Çê§ÐðXÛ}hx$\98\v\r\8f\9c_¡áÙªûEÃk\93º\184<àT\1f\1a\1e¥\ 6\85\86§\91 ÒðÚõü\v\1a^Uyð¯ÙJ4\ 2)õü\v\1a\1ej¡á±®,4<\94\ f\r\8fÅm¡á)\9dZixR¾4<ÍÆ\95\86G!B¡áQró¡á¡\16\1a\9e\94BÃ\93ð¡áÁ\87+4<òÛ\85\86'åKÃÓR¥Òð¤T\1a\9e\968_\1a\1e½²\99\86G\ e>Óð°e}Óð|Ë\93hx8C\16\1a\1eÛÛ\ f\r\8fíY¡á¥$\85ÓðTÍý¥áuxG\99\86\87â6g<8¼ñ\rÃ\93X`x\12\12\fO/¿0<Eã+\f\8f\10R\81áÉ5õ\vÃ\93Zax\1d\8aT\86áa\1aý\81áI0<Îa\81᡼axÄ\162\fO;Ð
+ó¤z\85áQýX`xdm
+\f\8f²\88\ f\f¯\91
+È0<üÉ
+\f\ fÐÓ\a\86\87÷h\81á\812*0<¼b?0<\9c¥\v\fÏü+3\fOÏþ\a\86\87ík\81áé\87W\18\9eRf\1f\18\9eÄ
+Ã3%ÃðÊ\e'\f\ fµÀðpÀ+0<)_\18^\9fÆ[\ 1㫾Àðô\8c~axÔ\9f\16\18\1eߢÀð¬Ãý\rÃ#¨\9eax4\1e\14\18\9e\9a>?0<\8d\ 2\15\86\87Uv\81á\11\87üÀðØê\14\18^\8b\8e ÃëË\ 1.Áð\18y
+\fOOj\85áÑGò\81á¡f\18\9e\84\ 2Ã\93ð\81áÑlR`x¤¾\v\f\ få\rÃS\90®Âð\14Óª0<²\99\1f\18\9e\85í3\f\8fî¨\ 2ÃS\12ï\vÃñ³Àð¦çsÀð\94oüÂð\94b¬0<¥\0*\fÏxËo\18\9e±\993\f\8f\8cB\81áéo~ax\14Í\17\18\1e]H\ 5\86Ç·ýÀð,\a\98ax\96^Ë0<Þù\81á)\99Vaxt(\14\18^\9fp\9f\fÃëG\7fÁðh³)0<%x¾0<ÞY`xxµf\18Þ\8cw\17\18\9e¾H\85áõóyÁðÈs¿axJ
+V\18\1e Ú\ 2Ã#Íú\81áQ\84_`xú\12\15\86§tÞ\17\86×\19*2\fOç:ÃðhEûÀð¬³-Ãð¤T\18\9e\94/\fOj\86áÑ¢U`x(o\18\1eÙô\fó\9c[\86áÑ£ò\86áég\17\18\1e9õ\fÃS\86ö\ 3Ã\9b\94ï ÃÓ\aU\18\9e¾Á\17\86gê\e\86GÎ5Áðt\9fW\18\1eí\89\1f\18\9e2ÖÛpûi %2sÎ,¼±\8d/\vO ìÂÂãª\16\16\1eé\9b\ f\vo\1aàN\16\1e\19\83ÂÂÓÐýeáQ\82\94YxÀ4
+\vOóü\97\85§ýGeáé1ù²ð(v*,<Vþ\99\85×iý}³ð@\e\14\16\9eÖ\82\95\85§³÷eá1û\15\16\9eNKeáÑ\86ýaá)\91UYxÄ*
+\vï\eÅþ\9b1òÿ9\16\1e¥\f\1f\16\1e¥\f\85\85GáBfá!|Xx\9d\1eñ}±ðt\8fV\16\1eÕB\1f\16\1e\84\86ÂÂC),<;æÍÂãó
+\vOJeáu:[Þ,¼>\9eÅ£֥°ð4,\7fYx\9a\1f*\vOÃCeá©\86íËÂÓ:¡²ðT\ 6SYx\1a\v\ eï\9f/\ 3DAáQòRPxR¾(<Ô\82ÂC)(<>ë\8dÂ\13Ç ¢ðús¾Px\83Xø\e\85\87\95\e·Å<\8eM\85¶S\81ÂKJB¯-5Px \ 4\fÕe\90;h\ræ\91¹Px\1ad\v
+ol÷\v\85\87cø\e\85\87XPx(\ 5\85'å\8bÂ\eA4\98(¼¡\82Ï\82Â\93òEá\rÜ\183
+ol±1p\14Þ\122
+/©a]K®+£ð\ 4
+ DQPxÀ\ 2\9e¥ÉÚß\ 2åAÂ[J¹\1cS\r\12\9eá\10Ú"á\rÜ\îJÂ\ 3Ë`MaNÂ\134Áâ\11\99\84\87\8aÍB\90ðPXÚ9 O\82ÏR\8b\84\87\88\83B\90ð zhß=IxR6¾W"áén²ða\90ðt\1d+ \ fðÇ\87\84§Ù¾\90ðXp\14\12\1e\1d\98\1f\12\1ej!áI©$¼ï\0ü\1fN,ÿ%\12\1e\81¶\ f \8f=F!áY÷M&á1ù~Hxfþ\94Ix(\85\84Ç;?$<©\85\84G0µ\90ð\b\8e~Hx\96åÎ$<\85V+ ¯QS÷&áiï_Ix\ 4|\v \8fþ¸\ f \ fµ\90ðP
+ \8fB\90\ f \8fþ¨L£\85ª\90ðÈø|Hx\8a\ 6\14\12\9e.I%á}/æ?\7fñ\86!%û!á©\18¢\92ð8®\90ð¤|Ix¨\85\84G$5\93ð$|IxÚ·U\12\9eVß\95\84§Èë\97\84GOs!áQ¬[HxÚ~|Ix¨\85\84'¥\92ð¤|Ix´å\17\12\1e\9bÞBÂëa^Hx\84\ 5
+ \8f
+ÏBÂÓ6èKÂëg\7f\91ðTAXIxKÉ$¼¤zU\ 2Ö \85\84Ǹô!áiÛ[IxÔ1f\12\9e o\12^R\9d\84Ç\8f*$¼~FëN&á¡\16\12\1eJ!áIù\92ðØ,\16\12^?¯JÂÃ\19öCÂë<¾\99\84§\18@%á%%\15\8a,5Hxú\93\95\84§sý&ááÇQHxÄÜ2 o \99\84\97TÇ?P_\99Ix°`>$<«\85Ï$<¢w\85\84§mâ\97\84§\98D%á\11\rÈ$¼Î&ïMÂ#J\Hxìö
+ \8fäÈ\9b\84\87\98Ix´;\16\12\9e\94/ \8f0n&á!d\12\9e\1dñ&á\81dÊ$<Zu
+ ï;PþÍy[Sò\97\84§\ 5Z%á\99»J&áµÖÿ\ 5 \ f\83\98BÂà ¦\90ð¨\9dù\90ð̦&\91ðxc!áñáo\12\9eÕ $\12\1eÕ\ f\85\84× \8d½Ixf\0\96IxÊÿW\12^\9bàÎLÂ#\ 2QHx(\85\84gQ\8a7 \ fµ\90ðP
+ \8f¿ù&áa\a\93Ixº \95\847\95BÂ35\93ðÈ\99'\12^\e\11#]$<\8a\93\12 Ïê;2 O\ 1á\ f \ f÷\88B£*°\90ð´\94ý\92ð\96uÃ<®\ 5ù=Hx¦¼HxS\9c$<ªj
+ \8f\9e²\ f Ï*53 \8fÀt!á-%\93ð\96\1a$<¾u!áqâ>$< %\85\84§hR%áQGõ!á¡\16\12\1eJ&áIø\92ðô\a* OJ%áIù\92ð\bte\12\9ee62 Ïî\937 OU\f\95\84§³QIxIIü«¤: \8fJÜBÂSEÛ\97\84Gÿo!áá\0YHxKÉ$¼©N\12\9eþB%áéÆþ\92ðHY\14\12\9ev\ f\95\847\95BÂ35\93ðlW\96Ix\18\8a|Hx*r¯$¼\16ý\10\93\84G\95Û\87\84\87\9fg"ááÝYHx\86Ky\93ð@¦\14\12\1eµu\85\84Ç1\1f\12^ë£\92ðh`($<\85²¾$<Û¼d\12\1eue\85\84\97\94DÂ[ª\91ðôI\95\84×ð}~\93ðø\1e\99\84GÅ\!á¡|Hx¦f\12\1eJ!áÙ\8f|\93ðØ\14\16\12\1eq\91BÂ[J&á-5Hx\8d\98C&ááÀö"áq=
+ Ï\\953 \ f\ 4Õ\9b\84§G¤\90ð°£-$<(@\1f\12\1e{ÈBÂS\15C%á-¥\8c\ 4¡N\12\9e\1e©BÂ3\97\817 Ï<\992 \8f\9a§BÂÃ\ 1ÿCÂ3\1f¨LÂ\9b\19êBÂ#W\96Ix*'©$<5J}Ix¦f\12\9e)\99\84gÊ\9b\84§%s%á¡$\12\1e¯?$<Òà\99\84G\ 3J!áaùð!áñ¸\14\12\1e\9d¢\85\84\87\93Ü\87\84×±bÉ$<)\95\84ÇîîEÂÃϱ\90ð\8aB\ 1,ïû\90ð´Í-$<\8d\11\85\84GÏý\8b\84GWJ!áI©$¼¤$\12\9e©\99\84\87\ 5G!áá¼ò!áQeTHx½\8f\17 \8f±÷CÂ\93ZIx8u\17\12\9e\9e¨/ Oj!áñà\15\12\1e\87|Hx\98Ó\14\12^ç\r\99\84§\8dñ\97\84'µ\92ð0ä/$<¬">$<ÔBÂã\9d\85\84ǧ\7fHxú\r\95\84Ç~©\90ðP>$¼u\\90ð:óÛ"áÙ\12¾\92ð4\9dg\12\1e\b\8dBÂ[J&á-5HxZ\8cT\12\1e\8e\ fo\12\1e\16"\85\84gn\ec\91ð\96\90HxS\f\12\9eÂ[\99\84×g~"\91ð\10÷E³%e"á±\f}\93ð$\16\12\1eB!á¡|HxúøJ³\84z&áia÷!á\1a¢y\98Z\81\v o)\99\84·Ô áÙ\1fX$<Öè\1f\12\1e½\97\85\84Ç\9fÎ$<\ 5¼¿$<\0x\85\84G°¶\90ð\96\92Ix¦f\12\1eU¨\85\84gá®7 \8fN¸BÂ\93RHx\b\1f\12\1e¦-\99\84\87PHx¼ñCÂÓ\95,$<\9dÅJÂ[J"áMq\92ð,f\98Ix ;>$<\9b}3 \8f\82ÏLÂ[B&áMuöL)\ eUIxÖ\bû&áq×\15\12\1e\15(\85\84\a¸éMÂ3úJ"á!\14\12\1eïû\90ðP\v \ f'\9fBÂ3ÂÍ\9b\84§o\96Hx´Ìg\12Þ\14
+ ÏÔL£\ eµ\90ð\88Ú}HxÖ\85\9aIxx/\14\12\9e\96õ\1f\12\1e~¼\85\84gN\ 2\99\84§\90æ\97\84§ã
+ \8fÈ'ÍÊ\ e¸£Øê\ 3ÂSH¼\82ðúõ¼@xKÉ ¼¤:\b\8f
+\9f\ 2Âão~@x¤õ\v\bOJ\ 5á¡|@x¨\19\84ÇG\15\10Þ¬)+ <\1c,
+\b\8f¢¨\ 2ÂKJ\ 2á%ÕAx}&°\ 2p§Èö\17\84G©Y\ 1á)Î_Ax²Lø\82ðP? <}^\ 6á±Ê, ¼©\14\10ÞR\ 3\84§½U\ 1áÁdÊ <VÐ\ 1ÂÓ\9a²\82ðLy\83ð\96\1a <\9c\19\v\b\ f>Ï\a\84G¯H\ 1áiª® <ºò> <-c*\b\8f\86Þ\ f\b\8fɤ\80ð\14\84« <U,}Ax4U\15\10\9e\92 \ 5\847\85\fÂ\9bb\80ðÚ6-\ 5\1d\84GWÑ\a\84G³U\ 6áé\8aW\10Þ7dý7\ 3âÿ\9f\83ðþ\7f\ 4Ü]
+e:\83iòí.¢þI¤~Û)LäåpEÞz\81ÛieôìÖ|N×\87ªâ\99¢\83m÷àÃn\16\9b\13m§Î\88\8d\8d»\93í \84?&Ð\vÈ\11Ã÷˶ÄÕ'\1d\97\15åÓ\85\ 52ü¶cÀÚÉlu¿ìS&ÕN;Èá\9dTDVT?Ø\bùyM\87\12îW\ 5Úi\a¬å]àì\ e0\1dW$\83þ\90#{\8c\9e4av8\1a^÷\9fɲ£À¾µ\85²Ó\96\88¬@&ÙiçÔ)µ\foO!\1eF\ 2Ùi\ fv\1dWåØIl×½0v\12\8cüæ\14;6jmÏ\10;\9cã\8ek1ì\ 6Ƨç\1fÇÓɹc;Ú\9fD°co¸õ\90è^$:\1düº\10
++m\8a\93^'xÝXX:¥\12\e;Í\ 4¯Ó7§\9aw\1e¥\81p<\8b]'\82ÊyY\ 5ñ2¤Õ\82²YêÆâãØ'{g\95mz\14)¶`ó³\9c\81ÿ{©³\19:¨3 º´\18ÿU\1au\9e«mË&\ eU'\9c\8bY×Ù\ 2/bÝ|\9dxu¡\ 5®\89ú³\9d B§Ô¾ûîLV\9düW\88ô\84¸-FÝVOøö'¨t[<IÑJ([Çny\8dŤ;\15Rög &\9dÌ\9b_@:åVÇ\99\80t-\1e\9càÑ©\18Ô\91u\8bG§à\83ûd\18\8e\ e(Å\99htô,î/\18\9d\16\8aØ\ 1x=\ f\ 1^êè\1d1§Öcò± DGà¿%ñ¤\aû\99\18º\v\vê\18´\1cé$±ï×\82Щש»ã\ 6)ÛÏ\10\19S\96ÕMíCWá1\v½\89 ÛÕbϹ\ f\ 4Ý®uó³?\13A·c\8eze\ 2Ýn1Ú}\11èPÌ\9aÅ t;%Ìí©\ 4º]õ,÷v.\ 2\9d\94ß<Ý\17\81NÊïÊ·J Ûµ\0ß\9eg\11èv%L\ 6\9b\ 4'Ðý¦M\15òXÒt\12èvE
+6ëi#¸¾kíst\e20ÜOº\8eÿdþ\1c\1aåÂÁ\9fCáY\ f\0Ý\8e\97Þa½¬\13@'õwIÎ?\13@'å·0r\85Ó¬lÞ %2\ 1èö\93mîýg\ 2èvì\92¼ä\9cZòÏuü'®s\7fì -ü9©cÛ\9eÅ\9fã8Û6:\7fn·hÄQ\ 1tR\7f;¸{\ 1è¤lǵ/\0ÝÞ)í:*\82nǯ!\11èv\8a\18GBËíJÿ7'\9eN\ 4\9d*ê\88ö\86(»º\ 3.\86\ 3èN /½òçN\²¯\85\9fÃJ.`s\1a\1cä$÷\80ôHô9%gï³-ø\9c¶\ f×u/ö\9c\84Þ\9e\8a\9eSÿÂ&Ð\94\93ç\ eÚt®\ 5\9e;ÉÔ]\85;'»½ýx\16vNÌ\90\9db|g;-!Aç¦\18Ì9\16ò8\9a9Jîê6M\14â\9c¶qûu-\11\ejo\ 6`D\9dBÂÍ-Íhsú\1dà=\836§*'\8aG3lî¤kÐÊ\80é]\94Ðý(Zî¬åÌ:î'iN|\81Ó\11u\981@f9ÿLÌ\1c\16\94î\7f3#Í<Y\90Ð\1c2§\82´}·È\ fÁ§)dÄÜ\12\9d0§\rå ¾ëà¸\v¿©$p;
+`0î%jùµ\r³\v£Ón
+\19.·DgË)*²\8fðáùýC\86\99\83\9deBËQh\ fAÈÉròQë-\9d"*Y\1f«>\9f\¹\9d"!v\85¾·ßÕ¿D«bpåövÙ\14[¸r;h\90Ã>\8f\ 1c\97\1fÈ\86í\84såöÞU2`e*\93+'uØ.Ó-ùvL\8d/k\9dáNÝñ\8d\ eö\\80å¤Þ̤\ 1\96Cá¡\ f°\1c
+e=Éøt'ó0¬\ 6\85¶¡\1dc\ fÝ\fÁ\95û\8e\801\abÐ ±¬påôx\f\86\97àÊ©°ç·\ f½\17W\8ePB?ïÊ\95\93ú\eÂîÅ\95ÃVIW}rå\bsÜí©\9Ô\181Íþ@ïl>Îâ\8cȧ\8f¾W²\9cn§ßºçYd9âEÛÑ\16Y\8eÇÀ¢\90 -GãÒu\8d\85\96#þõ\c\r?ly\ fÿã\13-Ç^ùjö%-LÀîùÏ\ 4Ëñ\9aåJ\ 6Ë¡n\9b\8d\1d\96ô\95Ò»?º\87\7fÒ¹9}.Èrö¹ÎÞdrÒ\97ÿ\r½íÏ$Ë-%\91å\96\18d9mëo\16VA\8c\13 \8a}K!Ë9¬)\1f'T£»Ð\11'Öøÿû.{\ 5ËíÖ\89}/°\1c\18ã1Î\ 5\8c³\89\8buZ\ 2Ë\81(Æy&T\9d\f¶k\13,·\94\f\96[j\80å°\8aé\98©80n7·Ü½\82åv\95õ\9eç\93\8e\13fdôc\81å\96\92ÁrK\r°\9c Oͺ\19\1c\19§Fµß\84Ø\97\12§öÜÜ<É\8e\ 3}è%h8¥c¿Âø\95Ñr¨6Ñ9Z\ ees\ 4\1d)«\1d[¿æ\10¹c^ÎÃÃ\ 2\81\96\ 3]eä7GËI±á>£åôÝFsN«Qneº{w\9bHaÆÙÍr<\7f
+ZN¬ªßXv¤ã m_6\ fѼ\9d\94\84\94Zj\ 4ÁÅÐ>\9d·h£\9a\92Çã¸ÿ\14´\9cn¬ó~\9et\9cÌ>´Í\9bh¹¤$´ÜR\ 3-·Ó\14"%\90q ÇÛ5*ZN7\ 2«\91yØA\e\82eX\8fô2\93å\96\1ad9}\ e'z\12ã\14:ý\1d\7fT²\9c\92\fÇÈ*ÃÚ6îE\963S¡³\80å0\11Ú½ÃÈw\94ZØÞÏ\ 2Ë1i\1cÎüZ.g\8a!\1eϳÀrR\9e\r{9\aËqÌy]\ 5,§\7f\ fMO\13,§¨ñ£òÅ \8cû\7fì½KÎ,Í\8ee7\953\82DØÃ_íÛUK\13\10\84RöÕ\10jü\8a½H\9a\91á?2\81Ä)\94\ 4TëÞ³\7f÷ø<<ÜíAnri¬Õ\86¢på\18 ?ú±öa\87ý²\8b+·\95Ì\95Kªså\18ºYÇ\aXN\7fòúN9\15,Ç\85Ðù.Àr6\rèés°\1c\88X1g²\9c©Ú\14\ 6Y\8e\13Õyh\91åì[rY\89,Gf\8eé1ÈrzUX\15-²ÜV2Y.©N\96ël¼µ\93ñð:\v$\99\9f2Y\8e_ä\14\84ÐEÒf\9a\ 5\17YN\vô\93y6\93åh$u϶ÉrÔÜ>Úæ\ 61NÕºöá\99,ÇÞ¬ó[Æqã¶ É"Ëm¥\f\ 3K\r²\\93\86òÓ Ë5x¡\9ai3Y®)\1cÆÊ&Èr\8dþÆN4\80,×\8cØl\8dç\16Y®áI>ÌÇ¥ ¿\11öpzu\90å\1aÍ\ 4ζ\8f\92\87ç
+¯¬&Z-[\86÷Å
+°\9c4\86ÒàÊ!0?ø\8b\850Cpª\82ÖD÷cm<i\80%\81»\10L9 Mû\86\8c\94\13ôáÁ]èD9¹\80l9o@9¹{¸%\89'w?\1eÓ \9c\9cÚFqRÐäNßj\17\98\1cù¯\99`rJ\91µaù\v¬GÚ}MzU&\94Ü\19\v© É!|L ?¦Ó\88èd\8e\9c\96$ó\98\e#§\19õÔ
+.(r\ 2j4Më\19"§÷_CU äà!\8d{\13ä¶\90\0rK\f~\1c6)\ 2Í\8e\8fk\9fi3@¦Çé\89`\97¾èqí£\ 4\15\9e]§ÇµÏaïl¡ÇIí\16þvz\9c\94Ah)èq\8dú\ 5w/¯nñR\8fãr¦\9c^V\8dð\8aò8<\8e\ 3.÷¾¬ÖW\8d&w\98£\1d\1e×¾k\9fçô¶Õ\ 4\ f\9a\ 2+G\9f\15\1eר\14\1fǦÇIa}¿èq\9d\1eºËô8ÔA4Ñéq\9cy)[íô8>\9c¥j¦Ç5ö5/zÜ£ð\96\16ÕA\8f[B¦Ç-1èq\8d)L\9eªàÂ5Å\18Ø\80f|\Ó\96¬\1fIÕÀñ]q\1eÛî³\95Ì\90ÛjPä\1a\89³¶ápM+£¢Ø½\91ÅÇ\eÿØqÜûm\88\R\12Dn«\ 1\91kæÃm\v"Ç÷ií®\109Ô\9b¦7\ e\91\93BÀqAä¤LîX\86ȵ\1eCa@äPîϹ!r(¬²3DNª \ 3"§\8b½\19Ç\ 2\ e×p¿<Bäö\98¼\8eSÂ^\89\9c\ 5\91ÛJ\86Èm5 rö\17®¶ápÚi7\16\9b\19"§ 0ÛÏ}\9c"\9f#\8a\15".i\eÈÜ\8bCñËÃ\9e+K\12ø¼h ã\14¹d\8aÜV\8d"×\84\n\1e\91\95QJ1\r¦ÖB\91\93z\13*\ e\8a\9c\94ïsêÇñ[\9aYßʪ\96eMª\8f\1fN\91C¹\9dÌJ¢\893o¯\98Z\14¹¦$ \96ó Èé.Zª-(r[É\14¹\ 6EN/ÅÐd²ðpQ\99Q)r6å>÷V\ 5\16ê`Ó\1c"·\84Í\90Û\92³\9fäÆ\99\1a\94\83\f§Ñð\1aäª\12A\8eGNéÇ}\9c|\81wÛ\09Eo¿÷¶U\80\9cÔï·j\e \87r8R\8e¶Í\9cIn.\ 3äPõÖ,\80\Ã\8e3Û\ 6ÈI¹\9e\80Ì\ 5@N\97æg:@®)MG&-\0r[É\0¹\ 6@®©ÉôÓ¯?\v\f÷xÔ¨ðã\1ebÁé(!\7f\1ew"ªï\8c\82\0ð\f2<NµÏ\96iuvÜåi\9f\85\8eÓÐyº«+Èqô|¬Ò\14tÜuÙJw\11á¬ýüüSÀqjßn\8f¨\8b\87\ 2EX\1e\1d\e·\85D\8d[b@ã\949\99×FÆ1°\9eg!Æ)ïÜÚ½\81q²W~>׿Å\9d§-\90
+.Nb\ f\8f\99f\8c\93Xå¹aq\f\95Î_[¬¸SûëklT\9c\10\7fÍ«3É\83ma\83â\96æ\9c8Ò=\7f\16üMeé\9f¬»>6</\112yÂÃ]Í\9f\95L\87û\8alr
+\1cNíÊFë\9b\r§\15d¿Ï\8d\86ÛB"Ã-1Àpj¬Æ\9b\13õ\16Í\1a½_µ\ 2Csq;Ý¿dÇÍp&\ 4\17n+\99\v·ÕàÂi\18\9e\8cºÁ\85S\88ÕnLâÂ)ïf~\80àÂ)Ø4\9a93-Ãö}\92¿ËÌ^±p\8a 16/,\9cN|\8eqV,\9cvlßÛwm,\9c6\97ß\1dÛ¹\81ojÏ;\15X-`8ê-mñ\15ÇÑ7 \ 3\88\83á¶\92Áp[u0\9c¹YoË"ÐÇ\EÜ\U\ 6ÃQmy\ es\1f\99\aWýßYú\ 4\18î\1d\8e\8e@õ\7f
+\86kVÛ8+\18®M\ f3.0\1cÇ)\92½ÀpRÈ®\150\Smü\85ùÒÁpt¢²¥º\83átû1¿\140\1c*\93}\90á\9aµ'½7\19ζÚ×]Épü\9c\1a1\17\19NÊ|\9cê×N\83Ë\1f\9f>+\19NO\91¡d\1d\f§ qª\ 5\86kôïû\1c\95\fG\88¤·s\93á\bÊOçÐ<Ö[Z\89åçªd8ì\80örB\86S¼\86Àä"ÃÑÍâx\9eJ\86³4Å'P(·\1dv;|\85\1e¨\8apc\17Èd8T¥M\16\1a\8eÐÉí\9f\ 4£\8cè¬\ 2Ï\ 5\rG¦\82q6Ðpæ\88»ÚBÃé\ 1|úÝ+\1aÎà\13m\93áè½}µs\93á(xVØ3\93á\0\a<ÞÉ\ e4\1cî[ÅÉ\ 3\r×Iü\9e³¢áh)¯½ÿBÃñ\8dh\1cád8Z\rQ\1e\93Àpô2¢Ò+ú¥*spúaÔuYbð3+\17\8e \9bvß\8b\v\87Ò\9f{sá<SqW.\1c\8dÕ¹ÕÁ\85³fñ\81+êÞ7ÜV\98\99\vG¼¤µ\8d\85£?ÝÅ·v,\9c¢\11ß\ 5ü]±p
+\ 1Ù\e\1eX80\18x$\ 2\vG##}ËL\85#Sª½Â¢Â\91ï\91E%¨p\1a$Iç\15*\9c¢ªOÇ\8fåT8P\17Jç\15*\9cT\(\8b
+G¢MñØE\85ÃfÀ""Sá°\a°\92
+*\9cY\rt%A\85C\91û¸`áHo|ÎM\85ÓE\98©.°päê°\86d,\9cø\1d\ fÏT`á\1aîæ~n,\\ 3$ôT*\9c\8d\93sCá\18J\19*\ 2
+÷\1e\84cüþ{P8Ë)|Î
+\85Ó@v\11}s(\{"µ\eP8o¶eÉ\99 ÂIô \7fP\84>ºt\aVP\80\832"[³Ò\8e\1fÀ\91\7f\16\14Î\ e3x\84õ>ÐB\98\90X\86Â1\9c^Ó\9cïäí\14ÅÇý¸ p\1aÏ\8fë¶«ZP8\rêD|\16\14\8e)\89ð}@á4ÌcS*P8\ 6\7fîY@á\1a5ÏîÓ§\91%JÿXû\84\95"m´\ 2\1c\96\97¢Õ\bÊã\7f\13*\1cg\12¬ÈT8a\ eBtA\85Óõ³t[T¸÷où¯¿ø¼¨7r'\ 5
+§&
+×16\13\ eó\12}¡\1d §Ñþ¾îJ\84\938Zß@8 øJ\83\a\87-êz*\ eN«c"\87A\83Ó|\1e±1½î
+¥÷\8fmS\96¡\9d\14Ö§o\14\1c\83\83*\88\1cª&\87×1f\ 5Á©ùí|\9eÍ\81Óÿ>Înþ§ÿýü@ऱ\0\b\ 6Ü ûãØ\f8ý\87öÜ\15\ 1§\9e:\97£'í\8bi\976ú\ 6À\910iG\ 5À©a?»\83à¿aµ¢\ 3\94áß\9a²NÊj\14ü\9b\82ív\95\81\7fk\91^_ø7ú'Hµ\8c\7fk`<¨µuü\e\81M6k\81\7f#D\8a»,ãß\1any7à\81\7fk\90¥û¹ño
+@Lj¸3ÿ\8d°Äó\8cÍ\7f\93BlmñßP0Íf\0\9cÔÏâßê\91Ey\9c\13)g\1d\9fôé\15\0§+û.\9d\8eM\80Ó\1d#\19\17\ 48B öÑ\89\0×ðç8O\ e\ 2\1cÑBö\9bN\80kÊ\9a²µL\ 48\9dG³ª\0Àé÷po\9f\ 3à\9eÇ7à\99ÿ&\87\86¬;\vÿ¦\a\82\9aÓßnZë\8d
+\7fSºóÁ\ eíì·g¸36Ðo\8f\8f,\85ü¦\19w\9cÖ¾\99áRU]áVÅ&¬\f2C}ƾ©ù?n¢ ¾=¶¦XÌ79ki=\98\91oÏ\8ao\1añMÿfô\và\9b¬·lÃ\12ñM\99·\93.õ\ 6|ãö8L\ e\1e\0>[7寪»;ò1A{\93áî\13À\86\9b¡¨\ e|\7fs\16Vɦ&\98\82z\ 3}=îMz\13\7fn\9c\9bó6)e?ÿ\14Ì\9bÄ©¹*(oäϧ\15\9dá\8eÑ\vty\17Ñ5<òÆxiZ|¸ÍHAxcã@ùOêÛ\ 5\80ýn\9bï\ 6Ò\8aÚ,ûéÝyZ¤Îýw\95-\99\94DT\1c\1dt#ê\8bí¦6ϧ\ 3Ú\16Úí$,°Ánt3¾\9eÍu\93ðô§bÝT&|Ý÷¦º©\1eëhmCÝ(Ð:{eº\89 yè6\ 6Òíê¶H]D7åiµ÷+D7\rpäV\17ÑMvÔq=s\13Ýd\85ûn;\8e?\19é¦\1c\86/\1c馨ï=>¶ö1\8b\ 5\9b³ùÃtÓàÂî"\98nÍ0NÇ\9f\ 5ucüÁ£\99¡n\8d\1eP£o¨\e\89³ï\84» n¢Ñ\93\87ÊP7\ 5\9eð\9f\ 4ÔM»\95Ïi9uýæÊ\ 5ióY\98ng¬Ð\ 2é¦56©\91 ºé¥Æz\92\81n*OÁrê<·çã&\99À¹©$\16ãb¦¹)`ÃÀ\110·\9b¶ÊV%LT\19´ùaÄ¥\85r\13\7fG\99Ä%ªÍãý`\b\ 3_\8fÍ_\85ãFó\9bfKY^TNs\10\ 4\18·ûc\ fO¡¸\19UÜÖrl¡µ\fÒ\93ê\b7È!\1f[}/\82Û\1dÆÍ\0¸Á/o\96\0¦r\13¬Ða8§\85o\13J\94×;èm²òÞ|3ïY¦\86\8dÞ\9d9Ðm\94 ;S\90¶¾Fb0\ f\14Ëó»»\9b-sÛTùK+À¶)Ck\ fD`Û\94Úí<¢\99ÛFú\9f'+Àm:ÓRò\ 1n\93CÄÒ\8b\89ÛvuÛ².l\9b-é\8e\8dm\9b¾kÎÔ¶¹l¸\ emÓ(\8c¹-\98mG\ef¶\1dÓ- \81l;°
+Úf\1d¯\98RZ,\873°í ;«\91Þx$E cã\11¸¶CY+?+66êBOØ+`mì\9f>æ£\80p\15ÁÊ\8cjS_\8bÃÛ6?ÖuT½|̼âM\13<í\9c9mÃ\ 3\1c\vÓ&sÇ<í4\82sr\8e\8cnãÈ\82´I¤¢%\18mZ+*(¿\10m*¶l\8fE)wo\8c\9b(Ìâ³éù¥\9d\7fàÙ\10¬VwÁÙ\ 6-®ûf³)Íõ\19s£Ù°ú^W%³iI\ 3i$Àl*\b9ìë;\97\r·T¡² \9dpßÖ¶Ùè\eC\89vk\8fÎx©ÇôãõÖ\vÉFYÙõg\ 1Ù\ 4\aeó\18<¶A?åYql°É!\969\8dÍ\1a£Î\rcS\88ÁÒÄ\89ÅFÚ\9eGÔalM?9þ\88\80±5ú\83óÊ$\18\9bæ\12\e\92\ 2ÆFþ\8ca,`l¶\ 2\9e?46 \7fGß06-\9f-U\9dal\8d\86ÛÔ{¹?Z¯7KÅ\ 5ckÍ'Õ\ 2c«ª^gSÎ?\8bÅÖÂ\84UXl¨\84K\83Å\86B\985Xl\r\87ÿi\9fµXlRO\b\1aÁbk\18¥\1fkeI3Y)VL\95YlÍ\1a$zq\9dY\ 3VâÊûùj&ÇÑ[Xl¨z\ e\16\8bM
+~£`±IøÞ§£°Ø\9aµX{6\8b\8d,ñL(6 \16ÃË(¶Fï\8bëÚ(6)\1eZò\1c\92Ö&·V+\ 5ÅÖ4\XÎÅPlÊûðL\ 5\8aMΰ¡"\87\8cb£¼ë¼].Ö ¥Þ-Õ\1e(6\19æp.\16\14\9b233¼?¼{)-à(6ù\9f\1fÞÏ\8cbkD-Gß(6\14ÆÐ`±q¦¢z\ 5Æ&Õ¢2Ac\93b«\ 6hlúçI\r^¦±a¿Ãð\e46B78\\83Æ&\ 2\aNÒBc\93\8aGpÑØ u\9cîG!""\85ê¦\fc\93Èd\1e,6n"a¦`±¡à$M,¶F\96S{5g±)\97vw\19Å\82ÅÖàÈN¯\18\8cÚ,\rð§×ºãQ¤!Ó<7\8b\rs\ 1\16\93ÌbkÄÞûÜ,6\9dI@{±Ø\1au¹ô$L,¶ïw¶LÈb±©Æ\8fèÈb±©vïP,¦°Ø\1ad×yo\16\9bÎôÄ\9f\87~\9a¸z\ 6\98I0¶¦Ü\e.\9f\80±é\9b¯½#\rmä\94¼X\7f&\18[ÃpÐÛ\86±\9927\8b\9c·Xl¨,\\82Å&åxúØ,6)füÏ,¶f\9fúf±µ\11ë\92`±é%µÏÊ,6\1c\9b6~;\8b\8d«À\9d\1c,¶\ 6<xÞ\95ÅFÅ#éMg±áÕ7GÒ\19\86\eÂ{ga±i\18°\92¤`±iÜqˤ³ØdJ³é(³ØØ¡tü¦ÎbkQE³XlÍz\90ý)(6F\9eÛ¶DÃB¸\1a\rÆ\ 6±QvqõYAl¨\84³\83Ä&å»!96\8aMÊ`\9cÈ,6ê3\1e?Ó&-òÍϹYl(ñé«§\91\ù\17\15ø\ 1c\93EþC¤:`l$\10ùq3\8cÍ¢åN\7f¦D¬[-ê¹alÊ\9b\99É<ÃØh\1aÙé\11æ06k;Ü®\ 5c£Ä¦{[Â\ 5ccÝE\1dTÀØ´ð²ÝOÀØ\f÷û\19\15Æfhàsl\18\9b\91SÆØ0¶\ e'ªµ
+cÃi>¼\9fA«U¸\83+>`l\86\95\7f®
+c#ÍF\ 1KÀØ\8cpÐÆ\86±q&{¼\fc£ë ¡¦\80±áêç\99\r\18\e\8enÞ\92\fc\83¾`#\T P\98¢MLÀØÚíÎ\92\ 2cãLþfÀØ\1a\91»»-\18[#cí\r\1c\17\8cM\17bk\95\80±uVn÷Ü06RËzj\v\8dM¡¥\8e)+hl\94\14Ø\ 2Àil\86rº*\8c\rßú³\b\ 2\14øÞ6Ú,\18\9b\82\ 6\97µZJ06 \19\87çÁ¬é\14¶»k\ 6\8c\8dê-+\86N06«\ 53ø«5\7fQ@§y\9f3\7fð\1eÿ Ìb\93jqbc±QÕDä3Xl(·sÞ\16\8c\8dü5qè ±Y²Kw?hl\14vPk\9dhlúÞ\83ÀqàØôFàA\b\1c\9bR£¬5
+\8fÍ8Ó°Ö\9cǦ\8f¢\11HàØt \f\ 4\ 5Çfê\9f\ 2cS\98\8e²©\85cÓ\93n\8e¡À±QÓGî=ãØðSz\1e<6Z
+[»`\a²Y5\1c&ÓDdëÖ\8a÷ØH6~[º\e\ 4\92\8dpÙô\8fH˶iUþ\vɦ\ 5\9fM\ 2ɦ1Üæûb\ 3½zØø\rÉ&_(\89î\85dÓtOg¼Ld\93ÝèâÊ\82ÈÖ ¿·èuîD¶\86\19\9e~oNdSBÖÂp\81dÓ1<b\ 5ɦ5±ÕZ\ 6\92M\9b.\ 2\9f\vÉ&j\ 1Å1\99ȦÑá¾ï\rd»|\88Z<6ð~W¥±©\a¤V\9d\vƦ0\84Ü¿\81b{\ 5\99ÿf\ 4û\7f\1e\89\8d¸j\7f¢å´\93ذ\ f°\7f\ e\95¯MDÛIl\b\97\9f¸'r*ª±´;\8a\8dNYÄÆ\ 2Ŧê \v\rd\14\9bÔA\ 4'Pl(ª\0X(6;æò¢\93e\82Æ|\ 1aÖQlR,6\e(6)\98\8d\v\8aÝÞý`X§Áyzä\8f®\1a\93Iñ\15\12[ÇÕ|ZÊ\98°\96F\ 6k\v\12UÐä«Y¹g\12\9bÞ(\9a¥,\12\e¡2n~\90Ø\b\8eD½y\19\19l®t\14\e6\93Óq]d×ø^Í\89j\vÅ\86\8aÃ-Pl(ã4d\9b\15Rë³\18v2\8bM%C\176ï`±Áßê ±Æ0\15ïöB±ÑL¬ Ø:{\8a\8cbKJb\7fm5Plô°Ï(6p\ 1¿(6\8d¯4>ÚGµ\bë9\8a\8d\96Õ\ 4Â\13\8a\r\11Ç[ ØP\ e_è\10³%ìtº[ie`\88°Þ^ùI\17K\ 5Ô-p\14(6)Ö\8c;\91Øô\ eXŨ\83Ø,Ì|x\16jÌ$d\10[R½sª\9a·Y¿Gç°)\11ðæ°Ñª>qØØ8\16\ eÛVÊo±Ôà°Y3þÄa\83BöËac\85]8l¬Â_\1c6ÔÂaCÉ\1c6ªÃ\7f9l\88\85Ã\ 6S¢pØè¥ûËaÓ£T9lú\11Éá.À\9a5Tý\9c\7f
+\87\8d\96\vÄ;ÖqZi°0\ e\10\e\ 5\8b\86\ 6H 6ÔÃ!kÞÅóôèe\80ØÞãï\7f8¯ü\97@lDÙìáL ¶\ 6ÐgZæ\8e [1:â}\vÄÆ\94û̳\82ØÈ¤Qì\e 6\94Ï=6\88\8d3\15ã* 6©\ 41\ 3ÄF õòjVKwÈu\7f\13yJ 6\ 2\8f·÷JµØ\ ekøÛ6L\84\8ae· [N\ 1±©é\86mê\ 2ÄFá\9aõ+q\10\eµfd½3\88\r\955T\80ØP\ e\a¶YÌéãYåÌaS~\86\b\93cØ(Å\83\ 5à\146\128³»\12IÓöñ\8e\16AaÓïa\8b¬ °½\7fÉ\7fýͧEy:jE2\85\91ÎÃ~ë\146\8e£ySPؤ4Ä
+\85Y\9aïÞ\146\82¨c&\f\9b\14\8b\vg\f\9b\ 24\16g\ e\f[\ 3¨p%¼\9aÚL\99\v$cØXä\8d\8ckëàæÝôkXM%j/\87¤-\f\e*í´\ 2Ã&\85\87naؤ¸)3aØ(bgk\10\186¶»ôE\v\f\eÊq_\15ÃF@\0§q`غñ[\9e\8daÓóMg\86\82acDÇî\14\186yö¦C¹¡°-!Cضèæ\ 1z\f`\99\f¶Z{"ð\9c\19l4R½\82ÿ"\15ÛàǶ?ÖP¶\9b\ 3'\13ضè\06û:\1fk\92lãõ'j`2\80\r\15o{\0ØP´
+Z\06)ví\19ÀÆö°Ïk\13Å:e¯´Í3\0\e\1dIb%\ 1Ø:ïía-Þ\9b\ 5YN÷½\ 5\80-)ÉȱÕ\0°éO\1elÔ\ 2ÆÎ\82ÊË\8c`£o\ 5\8dNÖq4\ 4ÇÔo\b¶-d\ 4[R\9d;\80\99ñ:\8eÍ`kxt¢%d0Øt¦ÙÈ\82ÁFà\8e\873î\98ö\85V\9c\97\19l\8d¾ív7¨\17Rp¸a\ 4\ e\ 6\9bÂÀ,Ú\v\83\8dà0Ö«`°±½Ã
+\18\f6²"Ï}T\b\ejsÂ\1a\ 6\1c)\ 4\83\17\85Ñôi¶Ja#\80K\"0l(Ó\89nD\bì\98ÏY9l
+\O|Ë\ 1bSØ×²F\ 1b{\8f\95\7fsÞ\9enÒ,\1c¶©æà÷¦°\1dÑ\81. l\877Á*\f¶ãô\82Ä@°1Ò\}\13Ø\ e¯ -\06b§>,k5¦³N\1fÊ¡Í\1cÑä1ã×Hù·kÑ×\94càg\ fø\1a|+Ì\95\89½6\1f\8bp/ôÚ1<Æ\14ä58\91P\ f\13xMé\17ËÆ;wMÂå85¢ÿXiÚøS¨kÔZ7\e\7f\80®I8\1c\b©a_\7f\f\9bhF®)"LJ ×ä!%Ò\17ĵ\10
+p\r\91$\957/×\8c3\82\b\86ùÖ6v\9b¶v_\1e\9d5I±k£(8kíy¼ô;³Ö\9ei\8dp\17;à~lg\e\0µ»Y®²pÖVc\83\10Ï\8fïd\83²vZkÑÌXsi\11Öd}\81v\18\80µû\ eglÚ¤ão\9cׯ«iådí\ 3\ 2¯¶\95\8cWÛjàÕ\9e;
++\9d\9aF\87\83+aÔü6^<÷!â\95\1cm£Õ\94½ºz\ 5«Ý\1e,_\µ{ÄÃà\µ{X\8fÍLUS.ßB\83\ eU£ÍË0Ì\17\99a\ 5AH\15g¤\1aqì1\17Qí\8eJ\8eÀ§ñ(P\ f\9dxj²æã\ 3\b\9c\9aè\ f\96<v\9aÚ\16\12Bi\8bÎR»\1fo5\e\884%\82\r?\99Hj\80\80G:\8aÞ7öóÓH+þ\9d!j®-\84Úí\8d\7f\ 2\8c¦B±söÊOÓ\ fÝ©{\bU\8b~êB\16?m)\85\9ffªVnÁO\93}Â\9dÒÎES\17\1c*§2>M¤¨\99Å(\eXð´ÓÛ-\15v\9aªY\98g\9d\9dF/{ïnJ÷y\15±RË\93Éiê\11KEN\80ÓÔ\1fÖþ\98sÓt\84Y\13\126í\8cÆÔ\81MS\9e\v´SPÓ\8eÛ\7f¢\fM;¼=Ë\12\15\8fch\ edÚ\16\121m\89\ 6L;¼\91×⥩T\8b\9a\8cKÓ\ 5\18NÊqijA\11-f¡¥I`Ù\9cai\88÷³YiÇí\ 3z Òøfíª¤4ú×ê½\rPÚ\9cÖ2oqÒ\96\901iK\fJ\1a\ 1\ 1\16í^|{\\1eòÏ5ºx\ 3Î(å½\1eëù«÷(\18ij8ÊD\98\19i\ 2jS\1a\18\8c4\bämlô\99ʱøàLHc\7fGëïPe\1eqÛ\89\13Ò¶\92_ï¥.BZë÷vn@¤±:zÒw \91fÍ\85¨\bqD\9aÚ5Â\9au@Z#d"G[\ 6¤Y;#ï®\0ù,òÆ\85\8f¦5£½-ë0A\99\e\8ca\a¤)~ÿ\9cmV@\9a©#ÔyùqÇØ\804S®Pî0Àx§®\ 5HC\ 1f\18\884\14óe$D\1aééçZ\844ý\9b¬Æ"¤iõüé\95\8f&o\8bÅ\ 3\83\8f¦m\96Í·ÁG£\1f\9aµÞI|4©\96ï\f>\9a\94\936\84ÁGcçE\806\ 1ÒèKH\9e0\0iE¡\f\9d\13\8f¨Ì\r@\9au³T^Í\ 1i*ÐV\9e0øh\8a\8a\9bWdóÑ´Má7[|4)Öb6øhII|4S¯{óÑtO-\95\10|4z\8a0ôg>\1a¾\9fa\1dë¼ç¡\97á.<\9aúCó\12\17<\9aT¯gs<\1a}¤§sÏl/ \91}Ü\95\8e&ÑËã\1c\8f&Å\9c'\81Gã\18C\1e'<\1amWÈ\8c\a\1eM\894ï«åx4ykÌ\ 1\95ñhRÍÿ\17x4)\13÷QàѤXx1ãÑP½9 t4Nl\ e\94ÃïÊ\87Ggʽ¤ÒüDP;èh\r'\0\91y¯\8fG!1\98éhû¸ £5f±\16à3:\82\13!Ûp´¦¨:É
+?F\9eλG\97 \1f`LÉp´\ 6\1cM\e3\82(\8bzFÛ\ 3vô\99\8e&\a\8eÝÁu\9cî\15¶\93À£%%ñѶ\1a\804\ 5\9e.ÃÄ9"¼AB¤!Z·%\87¤µé\ 5Õ\ 1IÓ&\98j\8fÄH\93f5\ 2\ 1ICim3Ò\10\bCfF\9a>ÝÞâ`¤5:¼\9f×\86\9fiwn\8eð\fI[î\9euØùq\9fY0Ò¶\92\19i[\rF\9aý\81¹!iÚ'\93fÉ\8c4¹\93\f\92\11ªÅQ\9fg1Ò\14\8b¶\9e\13\99\91¦\10¯\85[\83\91F$\153Zìs¶\92\19i¦º¯ F\1aîP¶gÁHk*\94 Þ43Ò¤Zë\88`¤I±^ÎÎHC 5\96\19iR½Û\9cCÒPhÑ\1c\90´\ 6+Òqk\v\92¦\9fÒJ2\1d\92¦»8<ìKvi \91\16Ú"¤\91j?\18Ï\9d|Ö´Z\93\87ª\10Ò\98~i¹¾\8e\93 󤿣\11Ò¶\90 iK]\85G\8a\12YÏ» \9fi\1c<\8fóúS\bi<r´©ZÇ ÛLz \bi
+çR0X\10iR\9fæD4\v¼\1cVÓ¼\10i\9cÈ\v\90\11i¨=ðg\18 \8eË¢é\v\91&\85\fPA¤éÒüL!Ò( Çöè\88´%\14D\9a©3w\87%Ðpmò\1915+\84N\844950ϯÃÔÛVñö\ 5H£\1a\8a¬g&¤ÑV\96\9eiAHÓ¢ÃÐ\13AHÓW°\15_&¤é8\eX\9d\90Fh\92þñ\81>Ã\ 2E£µ\8cH£NÍúPÆq-\¤\81HÛJF¤%Õ\11i¸npÁ\ 6"\8d¿ùü\10ÒH·_Þ\10Ã\92´jÄB;Ý ¤¡ÐÑ8\13ÒP-Wì\884>Ë\9b»\9c\11Á¶2÷LH£öÁ\80\a^:\88Qén\96P¶\92\90$BZR\9d\90ÖWf)ÈgÖ\9c6+¶(»}ð\ e\95\1c\1c£f\10Òh}κ)\13ÒPñDdB\1a%hÔv\ 6#\8d\95&\8e\ 1G¤\85P\biK\f@\9aìw,=VoV\95\ e)\9d\12\804¬³Ýþ\1d\ 6ÁÅÅG3åI\83\ 6ç,5øh4\1dd4\ e>\8eö%vK2\1f}Â\\e|4uUÀî\19x4-½éw\97éhZ^3f\a\1cMůtÕLh4ùu!\1d\ 4\19ív#rðÎNuÄííOÁ¢©\9b+Ë0×´[2\v\8cCÑ\96\90¡hK\f(ÚX\rò\9c\896\9d»P\90h*iêÞ\9cL\119U¤Qã\10@´WèøoÆ¥ÿ?ÎCûßÿýÿþ÷ÿóÿù÷ÿëÿø\9e`\7fêÿ?Ü´©ñPGM\1f\ 2\9c&\15ààR¥°ß\9b4âø¾xR\8eö±c\82\9d6?\84¹Ï?SËB\8aøHj\1d\7f¾O\8d½ÚS\16\rµ"\9dçµéiS\ 1Zõâ\9bª\93\90y\ 6E=\89¤Ð&Ú\8eÑ\7f\92\13ïñóä ³\83¨\9c\9a8\8dn;\b\82Ú¤9ÎåÇ\ 4BmÊ;-Ûè\8c¸Ë4â\8c\8eû\98Áw*\13{©\88ûè\9b£6\95\10\9cßÅó\94ÍX\vËÁ\fø\9dѧ¶\16ê± Btá¥æuo\96\9a\9aó`]\99·\e\a\85ð´»Oe?4µf\80Þ)ØÜÆ©©\96ç;×¢\1aOí;×v;ÌyjÍ\92ÊR\12P\19\15Hª\13ÕdR;.\14GªÉk8ì³\ 2½+*©\18ÀS\8b\80ÆçËÅü\9d«æmÐwm\v\94(ö\7fs\96`Q<\12~Ìt£ì$\10M\8cm)÷\ 6}mU¸J\ 3½w\vá}\9f9ëÒ©ÀWã\v\8fÍV\13cUeòû(mzN>ÿ1¸Ú8?¶Ã\99jy\1c\9dZQaÅÝ\ eîE\19|\9fÃ\1eK)Ä\91Q¢y®T¬@RIQJ\81Ý9£zIÊñýµM È\9a%ïO©\97SÖÎidK]qÖ\96òôDZÛêm½!õÅ-¦\99^ó\91B~\9f®¸l(vg»·s\Ç1\ 3è19m\83½\84ò\8b\84xÉ\92C\90ÑÞÅËñ@ú©IHM9ð\ 3Á¦\1e\eÝ_Pò\9atÓÐÍ\9c\8a2\a\85\rU·\10\f££ÃüÕ\eV\aCè÷£aæ\1c\9bÃ\86Ê\9by\ e\87{Ë&¬`+Ê$b\8dÙç´3£&W\rcÚ@=¡á áv<6\ e\ 1cÓV\9b\9f6\14μÉI\9e[\9d`¢iÊ\80m\92¡ð³\87Bç\1e¡ê\ 5cÈÔòF\8a]\ 4\9bµÇ\94:üƼi\1eª\19ÁÑ© F@Ùø©ø9d«\90ËOÿ§ \83¬ß\99ÏÓ\93§~\89\87* ½]\844\ 5+\ f\9cé\9fáÏçwÚ\96B?j{ú\95Ä\94\v(¨lzK¸ïR)É´·é°31$H\19\1f\92cSÙôFó~\1d\9fǨlóñ¶¾z\98©ªÒÛûùh¤\86JàYÿI\871^\8eaMÓxú\8faÃ\vM#çóX×I\8d³ÁeCü.F\10 ±¢0<ßv1\93¨¨~\11\8dÏ\81e\93:.\9eúËj-¥\0TF±\e Äw2åÌH©M\95xÈ;0Y·~\1eÞèïÝ;øál\ 4~ý\94ÿò\9fz\8aS
+µñì\9bË&u~\9aÛ{\14)â¸;ì=ÚÙKé\f$}cÙ$ÒÎ\19\9f\91zIKù\ eÕ§+Só\92ö\ fî
+ò=\8fÞ\8c¦yMß ²MUâk\95§\19B{¤I;Aº¹µ\re\9bí¶Øÿ>\ eç\8b\92¥\1aµå\97\1cB\9di\12Æpµ¸à\0ÐhðtYou)6\1e\8fË\ 6\8c!Fêc\95³«\9e\7fØöÃRþ\80\19¤0¹¢Pù-e\f¯Õ]\ 3\ 1<&¦¢A\10h<úùi\88àY\98²ö1D\9cÇ\8a´Mõ\11jÊä¨ÌU¡èI÷Þf\rêXrmE©Ù@´%õ¶¼Ü\14\ 1ãÐO«·Cþ\15Æ\ 1Í5K±¿©\826ý\92û8\85\15nû,\86ݤÌ\ 5jKbÇ6ÏWÒ\83¢þ\15JçOmS\9fÓÙâ{ÈR\17#Í\9aª\9dTm#\8aV\1eR¨ÊãL.\9eÅ\8bïÑ'¥ü\87©ôa\98\18àèÖ÷øúí«\f-Í83¢ß\83©ӯíâ\87Ó¤£\87æöƾIy6´m«jì\1d\8eþ\ 2Îm.R¡\b-êÚýI\8a-þ\14\bc(\8fã:ø\11}Öaey[¹\8f\8dnKj7vÛ¤\1f\9c¬B×eð¶©Æ¢ÊÕ)«\13Õê\93Hþi\r\ eí\ 6ÉÑÌó¹nÙ æwѵqñÛ&Ù ¥C\ 5.ÒVSËÑï¨wr\1c!\85©\16g\9a\11¸\88à·Ie\8d¦ã\18X\98_µ_Ó\8d¤7\9af5| \ 3ª\89G1¤b\94\96J÷<)§âÉ(<ÅÊ\8b¨\8f\96\84À·I¼5ûòq\0\83¥0:<ÃÊ8Q4Ï\ eV³ÞþeªsóÐ}\94AAö'\rH\94b\81\80Wðà=RÆtyÐÑú6üüâ·\1d\8a\1a0\ e©_\90\96?ß\1fý{Ó\1f3ab;:´\82à ×Ú1\9e-©M\8dyPõr\1f¬H¦¯15À\1c,n\86\8dÐ\8bß\86jC++\19Î\83&®\ eqjaÈgkÁÍp\1cm\14\ fJ}X\89\ eËñ\1dDrõó©VQ\9dl\ eUEë\95:SgB}%¼Q\1a~©/Ô\894\9e_#Ó¡`//\9c\15\ 1o;¢ù\9cT\82\18(ày¥¨`\ 5Ek\9bAé~äù¥òHz\7f*\ 4m\81x\8b\ fÿ¨ï&õD z\9b¾:ûÃ\81/Æ\7f\90\8fò\12\83hè÷ö/e*ÒéÏÕ\16Õ\9aIu\89\87ú¹³
+£ D_RíUØ%\85Â\99\80Qg>îCÏ6½oÓ\82Ø\87\9cÑj\969û±ñm:n*ð÷\12×É¡\92\rÖ\ 3ð,¾ÿç\90Iûº¯ð7Õ·µ·\91\8eSZ\86-"=qÏ')
+¯G¿¬¥\ e5]Ó4s\f¥Ï\99õoËcè\eu\98¯¡pæÇËüöqÊ\9bËN¥Ý\1c©Ì(Ú\e\rѶª\r öè\876¾\ f3¨\99Ì4\8aj7²\94¸³'sõ>N!ÎÛ&UZ\99\1fj}ËàE«\88ø5¥Ú\ 4ø±Ð)
+OËãµÀR\888HYð6©D&P¹³2Ô\1d\9aÐ¥(>y`©ûØ1«Q\91®möÛ\1f4µØ;\84ûVg\12)@ÙìY9çVìLù G>L£íeÓ\11µÞIIÝB\92:-:Ï:[\8bZb\ 1\1aÒt\11s\9ec+\9c©æ_\f\ 6ë8žµ{Ô_ ³ØV\9eÔ6\7f©óãM·õ\17\1e\16»Í×\83¬Å»Vñ¡Äc`\vîPÙ^\b)¢Ï:ö?\99\85\83Þ¶U%Øùå>\1f¿ÓJ\9at6 Jè\8cg+v©\87ÙýöqÂ\86~\ e\1fuU\85q¨ù"«\88óYä.\89\87:\1c j\15$åÔ²|àòз¦\9e\8eáúÙ\rͤbJÑKâ¯×cå_RXfÛ1·)Ñêí c\81f'5 æ[R
+\8b»h\18\97í\98Ó\1cüK±7ú¶\9dl:îñ\1f\97~Ýz,¶ro~ÛV\ fÇÓhøü.㬵4\93°þæÕ\9buD]ü6®\84·é\18>Â)¶ü¡Mõ \99\96\ 4\9a¤ªümM%Ó]\1dÚÞ³\16漫YOjV\8e|¶]ÕÜø6ÍL¶.úÞ\1fðm\9a{m]ÄjåÎ\8aJ"\ 2ß¶U\85¢Õ\90â`¯ÎâÞ\9a\84kJ%\8a\11ÂúEN\19\81â(¶Ð\97U\°f9Ô6\96\89\16 \9ao,\ fÌ\18\\863y5`|\1eZ\82vÛ)\1c
+wòá¡ü·Ø\8d\13}\vUû(¢.ÃL#)y$Xª\96ôÖáñ\ 2\¦\15ª7KѾ°+p§)báÛ\14Rd77\ 1Mh¾S\ 6ýÒöìó\18¾mÒ\97E1.80¾µ$"Â\12ÿit&\9aÄJdXwῳºüø»\14GÑ\93D_@\86\1eÍ´Z¨\92 Ðæ,øm\886\9cÞV(m
+\93\84¿[¦ÌP\9c\7f \95
+;üi\9b\85r|\á.J\91;PÊ¢¸}ÿÞ÷cÄ\8fÑþ]¶\18)§\rõ\8fµ®To5»9\9f\ 5r³5\ 3{\97i$·©\9a3Û\16<~÷?±=WÉLÞ\81Ýã0Q;\11 ß×á1E>)6i\84O\ 1Fz/
+©,¤R=a\8a¾-½µº)¸í´·\@·©\ e\8dʱh\18f½2iɦÐ+(Hý'e¡´\19å{\ 4ÓM»\1a¬åzT(ÎQðý\94¥Q'°¶Mʱ\19\ f[¥\9d\8eB,â\12\11ï\97\97GûÃI\97tM\ fr\88G#ËI×ánñ7;\93\ e6ºU\1abyÔÇcï3q\88@»I%"@¼\82È«èÌÓã\15¶w õ®\9e$\9d\19M\9f¤\1e
+gØç5\ ecV%¬¡M±\8eà^«_}ôÒ\9aò'ÉJ£\r\bn¼ \bA¿¦\ 2!Zµ~¯Nc¾)\8bí&Unx\13\87\1dÆÒ_
+h·y|<\ 6¨\8f
+´\eê <éDtμ\9a\1dÇo¤Ïf\1d+!Ðnú\ 6\8cëó¸qûN\9aæÙù,9\96 ²\91\88N/QÝ\10Té;\99Þ\14Ø£zRA6\ 5\8ag\12lóõ±èú:êÄ\89«§ÄbOþo9mÂü\19Ú\9c¶ÞÔ\ e\ e
+\90®\91V\1eºøG@¶¥ØM\19\ 6©Jǹ?]\ 1&\8b n¥m¦ÛVÇa\9d4æqÚL§o>Ù4~lãÆó\1auk¨·¾ ,ÖÚ¬J!\\89r\1cv&Ì\ 2\94È\14\90\fÒøÈç\9dþ\17,=¤\1e[
+¹ hé'l1ݤ²¬Ö¥ÙzJü$\8dj\f\8c,¬dÔed
+Å\1e7\1f¨÷q²\8a\93PRK\ e\96wKá\ 6E\88w©Z2<ë/ðì6³³ééo'Aô¶+%\14SfSº\8fSÔÔâ××\ ej²¯TÄo5óPðóð°\aã\96\82¦\97ÞF¶MJ\94-eö\8dtÛªÜ\8e\87GT»%ÍdëR\98\83éV\ fÚBºI½ùá¤~º\1dG§u\14~J)¤¯T\ 2½»,w\1f7(\83¾-¯÷Ý:<Ì©\96\ f:|á\8d²"\9cÇcÑ2ÍÚv\aäK`÷v{Ë\9d<Çîd¼Tm&q©ë\9dP¨\9ae¹½\ 52 ô¤ü7\1fXéM¿\8f£\ 5ñeÛ\ f\5[Q á\\ 1*4EËItL\9cÿ\1a\90Õ¿[»8ý ×8æVÖSGFt\1d'¯\9a²7|~ó\0ð÷\ 6\9fþubÊRÿj\11L¤Ò\15\11E{\8e\ 33]ó7[ã£\94Åu³÷ý²ô\0«ôI\ 3ùé\9b\14\ 5r¤\\ fßòÙ\7]\9b\9fyYê©X³æ\11å@,\97\1cʤ»þ\1aDB\95»øæ/\f\9fì´\859oKÙ\10NZ\8aÝÛéOÜ:N¶\91\87tÀ ÚMSôwxÑÓüläÓ¤U&I\80i ¼Ù"\87t»+H\91J[þ=máÝ&È\1eN\83î6\ 3Ϧ©Ï×\17\1a\8dÔû;\14\v\8dÎx`#ÄC\ 1\8fæÆëöÅôRd®\8e^\11I}¬\13Ï ÷º¾ÒÓ}|×\ 6ïñ\s[1gá\8a»¥\9a-Ë¢:Yn×Ó}Ø\96ÂêI[騲¢rÏôÍ\99IôY\fQòßYà[á\83awgÁÞXWª{\83Tho
+EØUÜ\8f¥Ø\92r~óI4oã \93¤xè÷fÀsSȼ*vÓ\87ð}Üév\0\15û\10RUQ\12\8fS$¿ø)\ûÙêÿæ\9fgÙÅ\88\98°ädø{\9c¾¾\14m¬\17\fl«ênÀ\1c-\8f)¯Ø\18niPñæÁÞhìâ\12\r\7f¤ò÷q·;+´Q\87·µ\945\8cØ$\11ª,\9bÓ\13h\931\1aò¸?\99v\87®s\ 1àHÐ\13\9a\13æMA`\85«h&ª\81\96d\9eb#ß\ 5©/y\82\0Ç@ÃP~L#ÀéÌ\87E¡ú`\ 4\ 1NA\1aªOõz\135ý\8e1\9e\85\97\97\³Õ¡>Ùçþ·m?g¬Ðâ¨hB¢Ù\8a\16C[Q´/X\1c[¥\15Ùw$R\98ö¾-\1fAPK\1c',\ 2÷µ\a\83\83^W²Thêмz(\ f®5\8e\ 2uìüÞáì\btÿ§ü7¶\91Ê\8aLÂBG¤\8c#Nùx»K\8eS$\
+n\94\893W?¡\94µ7x.\8býMRN\8c¯ª\12b=\7fX\8biÝ|wï´Í\7fC\9dÝn\87¢ºç]´Èà\8bª\8a\9f\91\91eÇ\8a\ fÊs®a\15\84\vÑ@eÝ\ eÿ,Å\8d\15¤2\83@Ûü7=Cß§ñÀ¨@÷ãCµ\90Ì\87b"\8b%Àdöi>fx\97$E\a[ï¦â\83;h8£=>ð«G¯ÕiÙJ&àà¿)\ e=ìíÔ¼ÿGñ\1eb\9bú·Ezµ\ 4SÐI×¼øoRI\vJU\1e\85Ã,\19\ fÄ\ 4\ 1\87\82\84Å\7fCýØQ\14×\13z¹ý\83À¿I!p\8d\12 \16\12\1d\1a|5\8fÒó\85H×Ç_½I\9a@Çß\17¡ôU~¡\88\ f&\ eÅSlV\97ùP»lÝ\12Ö:\8aÙ\109=@ÉÇ¥\9e\16®âÅ\93ýñ\90\eZ\81vEµ¹\95¤\98u\93ú½ùoÇáyf]\a½qùJ*ô<èÏG~áöÅ\89v²A\80\93j£\84µS¾9\8eh9
+q(X\88zïú±ÝâÄé@¡*,ùÜöK~\86\96`\98¤/;ó#k\81\94\85\80\93j÷]±}¢rZ\9ch¥y¨·\84ž\86\rc\8a5-\ 4ÜAí¡"Ut¹Ó
+
+,\13ß¼ù\7fR¶\8c/\8cÓ4â\91×ÇÞò\83\96ìÍÎ\_ت&Uͧ<\aù @`)\98Ææâ°ò\9e\9b\8fÀ\96rЪääç"'¨\1fsAà\ e\8açO\7fl\14À9è¿r[tqAà¤â{!\9a¨\r\95®\9c\91\bE\108¾Ë\87ìØÜ\108©\8czöyz§¤hW"\85=\19Êy5\94\15\12 Iòñ¨,?©®â!¤ü±úH\9dhN\94>7\ 4î»ç\17ûdð¶Òm\a\a\rÑ\16å+\95\vbä¸4¨È;\10\148\e-§©¶PÕ\88j#ÆaUÛï±8\86ñ¿\87\81³ìD\vw\91càô@]×\9c¾\94ò\17\8e\fñã½û\8féÉD\rðQ\1cKËãÓVM¬\8d¥<ØPX\8e(>.eFÚg§/\9bÛæ\1e\ f= \10ºW\9e\9e6\fê°<\\88 ª\86\90vMÏ#\93\0\94©\18\9f\80Ö\8d\1agͰä\8b¹\85\81ÓÐNthð\vhO¥\99\894À÷³èû¨Á\1ecÔJd[ªc\9a\9f \95ñ\ 5û³Rï²\834wÌ=r\7fHÙÉVº.û8\9a\9d <þ'¡Àqâ}\98\92Z2ȳuXR\r
+ÜA+\17V»Í¼\99ï\9fò_\7fñq!Dª$\8cÖM\v\ 37(üÔÔM\a½fÁU®\94ã\94\96!Üz?\16öZ$8T\96®\14fÝ\16¬%j.\85ôÄX^¬\99za°d&ÜxDì[Ó{ÄÓ¸'*eÐÝ7ïR\0\8f\94\16#l««Ö-Ó\86\88e\1f#-©\11ùË\94øÑ\8c²\98p<"ÌÊRµJÇ\b¤ ¿\14ó\12ò\18\9dvÌâ¡je \95\9a\ 6þ\82ý{Ú\13¯ôª\b&\ 4M¯í¥ùh\1fwô\b1³Ã#\97w{ÀÂ.Ú\96ð\81\86\9b°\b4\11©h\85=\9e°\89ý²g\92U4}³Ù$·\r\87S(ß®T\9b%\9cL\91¼×qæ_£rqØjeÁá´Å\1eÌ1ÚÀ³(ÔJ@_Ek\1dÛ\ f*È*\8f\eë\95x¬\89x\9dî\ 3\ 4\ e§k³ÝEó¦|\13<ÍaË\9f(D ¾A\8b\17©xç¬ðòô\ 5\11YöIT\92\ 5Qô"\96øQl\97ÅMëvØw\9a±kо\93\ fú\98\13q¡át]7\97\7fX¼L·\8bM¼î¾Þx\82\11öÉÇ&Ãáý~\94\13jÃÈpÄ\1cOÌ·§\85p\ 1ݰ\r½\17\19Nç\99Ë@\eiå\ 5ôk\98¿ðö¦
+D\ 6Ù¼ß×F\13)ø\801\88\98\9cæW\1e íãðyêe\85£û±\98ÎÂÃMV.ÚA)/ÍÏÝ/7îÞ>\9e\13\94ã\r\93¹*\bqz¾¿ÌCd\83¡T\9fµl´lb&½õ´ýW\183 qº\92Þ\1e» $3\89@ñÅi»\13¶X\f\9e3aPP\89\9aN\10Bv\98\r<§-ÕØ\80\7fÇÎÝ\8c²\ 4ÂÉ)ÿ±»Å#{\1a¯@J\9b^\84°
+\10u¡\96ò9¼\10oÒ¹D\egÂ\806ZÕ\11òoN×2aÙTtö\r\8cÃüu¸û\98²/\99vlÞ¤Îñt7^8\rW8\13uêó®Ë\12-xùäí\1f\94\1dÜf-;µíC\89aT*!TÔø\v6\8bé³ð¦\13¿\8a¿\19\1dÇ\ 6´Ûvª°ã°\ 5á_PÇ|MãZ-\91C\96Q2ö\10¸¨/\9aÚ=v!Ì \98R/ëAª`Î<±«\9c\e '\95¸\82TsÍ«\85;N4)7Cùmó J\84^¥^\1aÅÇå\8f\93\14³¢]\9eKEÁNr\9d»%¢&dì¼rT±<Ð\8cÅ\9b\88\15KK@¥ÌèQr¶M\92ÓhhÉ_\9abée8\14t\ 2F:\8c$§ýêɯ¶Ý\ 5ót\7f=Icú>«\8c\13§\9b*Æd÷Àl~\9b¯rqäô*²Eau\865ðvSÞÇ3¤\1a¬ð\90Êv|>;\ 5C8\8dr\10Ã"é9¼ÌôJ\ eM\e\10ÿy¶GXA,\9e4oj-+\88ý½öo±\88c\13;£M\9aý\14¾ÆcZ\aL(o\17 \19í\87T>«P'F\18Æ\99@ÉQ¦CD\19äøA\96\ 1ÓÎ$>ìA\19|¾\8a\88-\9a\9cN4;\14\8em\rG\ 2§kyκ\95h¶\82µ\8d\ 5ι\81rdY\1fw\9dZ\1e\eÜÀð3\15\81FÁ\1fðä\81\e A·\95±Ñ\1f9Ó\16}@åôáö =צÊé˱#ÅìLÑ\12ý\92n{¶qðªÕÝáÁ×E\96ã^iOÆwg2Ô}²¨Ôa%¯º\ 6öǤ\99£u\84\ 6?Ë\7f}¼ô\13\ f²ÝÙì\91úO\96Pþ´\ 5\98#\ 2\8a\85\8f\96/\1a¿A\9eÞ\1ec&&*ö\9a\99 î\1dG\98\90\91ô\1eF×U¥ñxZ´ÒÇ\9fIîíc¶æeÝ£ \18QtÃÒyf\9ePo~ª\16\ 1fé[è\8fD¬D_\80=1^[z²©ë\bC|÷í#\1eZ\ 2\8cZû<QôÑÂBö\98\9f\96Ñ\e\e\9e·òÉbçÖ£/³î2¦KÄ=AP]O\9b\14Ù\18¥àl\93bn:º0~\8euæ\87è¡þ\92\1eX¢\86ìoøÛÝ\86\87ûà?åÚ\96ë$\ 1Çí\877G?\8bnÎ\ f¹d1£Z òØÄ9z\12Ùç7s$\fìÁL \8f3ç\14U8ºÍ\10\e:wzLE\83\98Qç4\88+ÉÄ\8c\ 3vN³\979\19{âÎIe祺\bî¿:¹ÑXívÆ\88\14ÖÓ(\v=Çt¢7B*ð9áÖpëé³ Ï¡t;fóç.¯dÅ\a \80î\^ÞÇ\1aÚRþu<V\r·\10tX\9cÈ\95h\17¢·\96v\v>a\92(\97»ÉL_ÖÇ&
+Ó\ eÛ1é%±j\ 4ÜÒ\1f\9b¾\18q¡ØcÉÒÎq\93è\9aç ?Þy\89r\f\eôø;\8c®YWió\81x\93j}\1efgñÍW#K(ázÅÊô\1aj\11d¯\89Ìh{%f\838\ 6\fü³\9e¢#©NU¥\16wözÍÍ£#ÉÌú\14\v\16 \87ÃÖ$\13Ô\ fÉïÓ\1c4³o\1c\1d\8b8\8a\a\ f¯'Ó'X\9a]¼«àÑa7¸ÂØ\81\81]ÑV\96¥P¹\9a)í"î¶ytUÕ\9boÊ\19\8aƹ°\95\99\12uGR\19hU\86Í >=î\8bBõ\93\14R¥R\96Å_«[\r\11¤IHÐB.¢Ð*ª%çå\9bf=³\ 1¤ÓtLe*å\88\f½çJ±Mkm\8cí\86H\ e\r ÂXF»Æn)`K½\1en\9d\92Ârøx¬\18\ fÁ\1d\82\12\ f+\17\9c\16"&Ç<\16\87)¼'Å"\8a\9f\99\4*F$÷Iò\8d\bü\8c(\97g¶´Æ¡\eÿ*\80ä[\82幬ìÌêÿÂ\9crûä®\8a ê7d\98=£\9e+*8µHe¿%\9b\18N\ 115\1a\81\9fffL·\16\91\8eýYÃ%â4È\9d¨P\egu=\91¥û!¶!·A M´\ 3´R3¹\r\1aÑ\9aÃ\93\19¼ðºOP\eoÛ=¬@¤\9aåjN<¼\19®\ 4V\1d(üÓ<_úgx¾\14\91¿\8eÛ2Öðè\b"aÚ="\1f¡z\1a\85\10Ù¬\a\8fN*¦G©æ~V¯þÓ½4\84e¤PØ\85\12@:©f¾!ê«X¼n"1\17}\96EÅ\9aï\90ô7Ã\J*ö1;K?,Pzw
+;\ e[Û[f}zÍd\94¥)\1e¢'úú\18\91\8eÌ\rnz\9a )^!o\ 4¹Ck\83H7É\ 6t{\9dl\87w6wr¨\1dÍ dOJ3\9fÔ"ÒM\9a\84±ºma²<,*Ã\80sP)©\11Z£ßül"\9döË\8fÝí¨F¹£$zFìI\8c(ù*\8eÔó@YOËu\1fݺ\9fé\8b¯\r*Ý\83\947ó\11¨í7RÝ\86Ⱦ\11\83Õ%¢LSÌ#\90O\D:TV9X\81¨\v\84"ç\8aF])VË`hº°¥6³bj:°º°Ó×/º×6¾j\8aä³\14Ð\b²\13&T\eÁO\9b\10¸\8acº\ 3\8bè\16eî\87mJ\16\91\8e°: ×ÃÚÀP~@Ô\13¢\ 6~!-Toó?\ 5\91NÃ\0\ 3¦Óð¨M\8f\ 6b\7fa\9e{|ÔW/û Ò±Ù¡\ 4SÉÆÓMu6UjIÌÄ¥ÎNÃ} «
+\88¡ÇVá\97½szSoÒÖ\86)3c\8f}]Q\90\ 2J\87ªû)ô\ 6©O5\92!\0\17\19!\1a©N\13\ 2dCÉÉ\13\87AEVþ»\7f\!\ 3B\1f\19ûèÕ@Jaº\8b\19I9:35k¯¢g_\8dLÈ\10i\11ÌoÛ?\eHg\81{=\9eÚaÀ4Æ\ÎíïV\83©D\1e\19L|wÑôþÐ\8cAÎT\ e\1dµ]9h}É I³R\fë6¤(+\1f@:¥\19É\9eÙîXS\93è\e¬\eÔßRë\ 6ROD¸\14\97\ eë\822\90×qz4\92<Ïô¬é¤æFÙ:\81" ÿÈ·\16@:¬ó¼\85jx§\9d\12µHfö¹\fHÇÕ\12f\93\12mÝ,\r8M\ 5\87e\19¶fF*ÜÉ\9cií1®\r¤S>Í\ 2Zºlk\87úø#\e|b<ê¼$j¿\1a@:E³}\80\8b¢\8av¸ÑqÞ\96\93S\8aÇÌ/aH\gò7\15O:\89?{%7c¤Æù\bxë\95]@:]\88Ud\19¢±õð8\9f\14j\vÈuë\99\95ÿ)xt\a\94°ÃUV\1eÊÑ2ýkÆ\969\8eL+«Z\11\91£p\ f'>.+å¤\88-«\a(\83Í\13ÝÅåUã\17W^)\82À\aCÅmÕäÍ\12\84áÌ»\87¬Bßd\1e2HÓêÛºÏ\ 3ªW\95bk\84;\9e<õÔ³O:¶iUª9H¥ÚyæVÑç\8ff5v\9fÛþà\ 2Ò\91Q§[Äi\90(˺Ýf¡!\1aN¥
+Ó ®<\80åz\ 2\87Ù\98¨\81$¯\8e%â¶\18³\92´¬4\14Y\v×àÁB|ÚØK\9f"}\909Îî\8fáèt\ 56\f\88\8d\e8:S?vÜ\ 2Ò\91v}ÐÀÑé9·\1d\85\8e\9a\9e[¶j\ 4m\19\ 3G§¤µ\96´å"\9dv]6ji0Æ·wY\1c\8c©9ºg)\89M\ 3 \99à©(\9bÞL\97Ò\ 6^>\1aÌêçù̼`»·\ 1\8djpkÀBÔ+©t\82V÷\1a»m¦ÏöU\8cHV\8e@ñ\1a+n\86*íÈÙPh¢ÇUB)pÀè´\ 3\ 1\1db\96¹\8f9Ù½ yl\18\1d\96'\ 5ùµC$)ÉÚÿö0$µ\ 1T\0+µ¤`{´ÜÖûd\95£Z\83<¾\18´(*\89ùiwÏ*}4ÑD\9bV¦?¶\9f\91$×m±\10ÖÑ-rG5¶\9c\12ú\9b\vH§\\16ëNµÇ { Ñ
+u2\18êë7?\161©\81ì¿\19&ÿ\9f\a¥ÃÎÐ\1fÛ³.(\1dv\ 6\1eùP1/ð*j\80¼ÌZ`ã\9d`Sk.§T¼Y\92ob\eºÝ\eªöJ\fÍ\9f\15&Ȩ\0á^´i\92J{Y\94ù±L,-©í\98Ë\8eYq\19>ot{\96m¸Q\14\90@ïãéÝ\83ú\96n-\19\16\93NÆ?Û#\88{н´\8aø\99J/5.\9b=J\9b\9e\80Òi\82°E\87¼\92º\b\8d\ fØZWi÷ACÚnµ\92\vJ§\85\ 2íc\88¾©\0_V\18n¾\824v»ÔÜVc\88
+\vË\bÁ|\89\1a¾\17í\8b\11¨^=\ f\9b\87¤,(\1dêé\9d\8cìOJ±`NT\87볦\vñ`\7fß\86ï0pZÄÞ \8dç\88ñà4ØÜA<Üßñ\ 5¥;Âà·\8fc[A4~xùùRÄÎ\f^NR\ f\1fÎ\80m\12\9a\eô\ 3=(\17S\13\0\178OÉ\1a*©â(J\7f/oR¡5²\ e±V\13\8aq\86áN"Ý3ÀÝ~l¼ö\ 6qͼR,O~·\9dØ\91ê\ 1½fmC\ fù>)ºÇ\12ª©
+Ô4a˶\9dÆ\87~\ajaI>É1rùÖ\80\9c\93Ö\93[\98É©µT\15 ¨Üí ßÕl,3J\89î8q[\94(xWæ>\8b§\12êäô/'Ô'%ý\1e[}>\ 6¦;ä\13\81 ð\80$á÷p¿ôµÀtú\1d-\96«\17\92÷áq\1e2\95d\ 1¦C\8d24âÍ(d\ 2\0¸ß\bn8\9e\vL\87HîZ>\97Ë?ß\12½8_À\91|8\1e!Àtz\9c<³ÕÜ-v]\96<f,RGAyÌ\8eÛ\1d!«ï &üÇM!v\98Ö\1c¬\8fE+znó\aêb<\8c^d¨¶\898\8dK'Åâ\98\1aZ\15\80~\ fÁÿáÔò_âÒ\11l³çsn.\1dÛ\f\85\9e4)3w[\15\8e"¶§³À\99~©?<ò4M\17¨a¥´dØPè1#×\9f¥ó\9aYá¤,.\9dT\82\99¨\1f+Ö±ÌÀá\r@\b\90\92\15\90\12\:KuÓÄê¶\18\8f«Í
+ o\v\eO\9cuÃ^àÅ¥Óöß;Ã\fãÒ\11ôÅmEC³n;¤ûòäÞâÒ¡öaÕßÄIP\18lnï\f\8a\e\84ÔµÜ÷\ 1¦£NÊ¢ò\ fQ$J©èÕ%\81º\86 \ 2¡¬<ì\8cf\1d
+\18\1e\16\0²%\97FC\9eû×\8fù¯¿øÀ\90\97=ÜF¶ÐtrD<8B>ÞI\9cãô\83[l\96æ\86Ê\1c|<Z\eh:T\10\13\8aÖ\12\95V4u\1c.ÐUÅ\v\ 2P\16Fâ\8an\85Z\0P\10q+\10N\ f,ß\92OP²¸Pò&]yjb)¡âÙ\9dnGf@×\ e¤]îy^d:Tz\8aÉr ¢\88NÚÝ,M¶á×Ãó¸¡s\91é¨Ï§\9c\0\9bç´2~ã\17é8á\83P\ e7\87.\12\ 5\91\ 1<Ð=Ì©ZÁvï½A\b];¡ÓZ\8aõ]á§\91\83í\rËwâJªGöy{.=)c³é¶z¹5\81\1e
+Äl¯ÓC£cÅ Ï\r§ÓÎ×L\96û¸H2\\86+5a\9a9t\9b\ 1·:\9b&_\8aí½2\0\fÛ#Jx\94²Ü\83ètï=\94\9eaE\r\16@ c\b\17\11!g¥\14\83OÇ~±\1f¦Z\87\16jwOký§`\95.Â\e¬Ý\9bOwðú\9e¶Ó´Å§ö\1aD1ô¥>=+Ù-\92Ô\8f;\1c\15ueóv:\8eB÷º·ýo{f½%Ï>
+X(;¥\ 6\9dn\vÊÀÌ\15\9a^êaÔ\aL\96zKh\1cu\98Õ}¬\ 6\9b\ 1§3Küa\1dõìæ(\80w<ùvɵ\18qÍ\ 5§SXÂräw\149\91cµò2«]b\9b÷±\92ª\ 5§#PlÞ¯á=Vµßc\7fª\85&\eO%H\1ewe\ 5\9b\ e±Y²\ 4\93\ fe\8f··\1fµ":U\8d\10\7f×\89m\15¤>\96F\97HÓ«3úâM\v\16Ø\11~)\vL§\0¶\bMø \85ka@7\83dz\81ï\81òoÎÛ\9a\92Í/JK7\aÓi\81öP\12 ÞcZôY\9b\95afnë7úx£/öKýÚ5nV[ \93µÙ\16\9eí\14gN¯\973óz¸!âÌ5:?\8fý\81qú\88n]\98\1eë\81ié·È\aã\15è^|Âúÿ4ç\9f.\1es´æ87y~v\8f\14ë\ 4¦_R\16\1aÍ#\ 3¦\94\9büÀÔá3¶÷ýÜ\9c:b\10T¦ã¶¸Íqe¡\1a\85\8cæp\9b4\vµûÜûOT,$·?Û(G\f\ 1\16\10\1f8W\11\82VG_\18ü\8d=vwÓÜO<ì\97w©3åLã¡©d±¦Õ\ e\907·~IJ2\11ıQÎþÍs)\87\12\ 1\?\ 6\93Çm1p u\8a SÖNÝq\8fn\10·\17ñ\8fÈÇÈ\1aÈæWÛÜá>%Ki\86Â\1f\-\1cB¥G\865¡\9a¾\b|¢W+õýþó/\91.zîÅ¡k\11¹LbÉ=¶ØyGovÍê\90\0H\10\9b&Òõx¿²¨}zàV¶J±ª\92x£GñèÇÀ\ 3Ü8ëÁðÙ(\ 2ÝW\8csû¸\16u½jÀF/N\99©\18öÔ!6ʯP ²k\ f\88q ]ö\9ch\9b\88uGPá\87\ïµQvú\ 3\16dÑ&\13³\92
+²H¦K!©¬ð ¿\89Î\7\89\82\ f\9f\99{$7nKyYÙ:ÏÉÙ·bßrzé½T%!t7,û|ùî;)Ï\86^m\954§î\86BìÖÚ÷ð\ 1ñ»ìÂ\16¹\14»Xéf9î\13+\1e\7fŶÒ7Ûn«Ä\1e\86\19çè\8c$o\86%»cê\97\12Ï\81u\fXÇ©C\1dn\ 3Åï\98\98\96r]\epgj·fÄîW>Ýí¶)\8d\ e\ 5Í\f¡K±«uþØ>.\8a"l\80\9dVÊa«\8fçÞµ©4ö¼¬×«u\8e\91iÏ»Å\ 2\10 ~\82\fúsoÌ\9dTkV O\9bÞþÓ\9bJß6ër\8cM[÷&ÝÍ\8fu\10§¨¯\ f¯b ÚK¿ê\98\16Ìâg3ÅË\emó¢9/TÌe\8còÝIQ[\81/\10Ý\95·ÊâG\9fÄâïh3̱ji@«±±\89w\ÇcNt²)Øæ¢\7f/ë*\14\16ä²Söe\85í\16±dõóa\93ï}KðÈã\9d}b-'%b-l
+\99\18[3î\1dq\11P¬2-\9a\ f+\14Ñ8bË\92ÔÛ~\88AÌAScÔ\1dÓ\8a-ý{ý\1eVf6\8c}gí\95©\9bè¾âÑÞh>^\9càð;½"\9dÂÈH\ 5¨/-Ef=L\17*Dã³Cùo\11\10PíÏ>î<Âãrùnz)e$Xª\8cs$ïÏnÝUä\e!ØqxzhιéwÖ\9biZÛ\18k;$ß\13åæ*\91ìnnùЩ]É\94àßY?(oE\ 1Øn%©\97òß}]Ê\8b\14¢\1c%,\ 5©¨¡>O9\81³Y»îÅ¿3u\84:/?Î\9bìón\99r\85r\87Ýæ\8e\9eÝ·Ù_Q¦\99
+\14\18áßx@Î{ÓïÈ\843%È-Òì0ò(\12ÀßÑú¡{»Ò\ 5Àãu±vàÝ\0xÔ\8bræ±¶G\1e Àw\9dwnÞ
+¤\19\82E
+Ny;î±§ò\9aV`\1c\89\15\1a;²¨\92w\92"\9d¬\fë\1f7¢\85PÛü;ms\v\87rä¤eU\1dñX\bÃ\1a\82\9cnM\11ÏØ³rÍÑÒ´â _]»|[¨â\ 6\9a:n¥m\0\9e©·\19bm+ô\89^\15jÐ}<¶ö°©A\9b\9d\0àa42+Ä\8c¶\91^\88¬(&ã\1ac/ÝõÄø\v\ 2\9eT/å\9bÖ\9c\91\96ݱ,²=\87\86}l\9c:&\9a\0KµÊÀiä'^<ëÍ8ÝÈ®C\1añÕ¹ x4©aù$\17 Ã8áöö¡´Õ½cÆ ÙBXàïË\1d\87¨ÞÀaâvR»C\fâj\19ÁúX\9f\15NTT¦j\rCøInçx¯^\9e|zt÷Ük2hë\1c\17\8d\vu\8fYk7o\11\80\82'§'ïô>N.\13ìÚÌoÞmÉ;²ÛÆÖþm;·Ëû\9aú1²\92\92Ä\9e-"W¡¨\82¶-f¨}x3 Q¤Ø\ ekPm·5@\9fírá\fÛÔð[¸\ e£ëÆd¡`#é\12\8eÔ\9a'DX\1d´\82ÿpÁz»X¡D\82\82Eþ'}=s QæeKJm©»ud`\19Ê=êÏÊuÌËGFi\11Ó±¾ÿÝó (Ý+ï\16üN\1fo¯°ÞpVRäÔqÝ\FµÓÂ\8e=v\bö³Ç\b½\ eS=0\966 §íN
+÷eµ¤\ f\95üÜ'þÀa\e\88ÇÜtÖä^BDà(À´Ì\9c«üi&$Í\81^ÝiûHE¾\ 3~§\9d\92ñG¦ç®\bÖâ{[Û¥¥D·Ü\88òZ\v%í\92è[''*µ/wì]\bw=¾\14[gÞ«oÆå]öÔ\1d¸Åq<EÓsp\94M, ÁôQã2ö\1d\ 2í\95\83¡C¾N4ÛõµÙwú%ÏXô|\9cbÁ+M\18\996vK\11\91%â·KT.ü\19Óc\86\87¡\8b}hìÞñ6\14{\7f\87÷µ\ f\15Ïçé\1dEñe,AKüÀß%5¢\93ò¬QI,[\8e\16jV\r«Ú\9dPÖSG÷Ëu\9cL(d!´\é\f\96\8d¢Hû>G8íd¦½Ld\93òD%·|sÏÇ\14\ 2\aR\16ý\ eUs\9bTzrÐÑ\87\80==]ætÒÍ´Oß[NY#ìÌçß¼\92\9eä#áñ\9e\84«¥í\14êLýu±¢>¾2f\80#jg\ 5à}ãï¬\14õÎÇÉ\13ò4\vü0\ 4iYßN[Ã/ü\1d\8dy)¸\87ç\1e{\84,@ê5\v\1f³ä£\9dKàït\9cy<nküGäÓ*\96\87aí0\Q\97\87rí\98¸µê_ÇM·¬ZâE^°\8c\8d¿Ûªr{ª\ 5Âå#¯\11 U\9ckú\9b\8f¨\ fjm\96\ 3Ô^;\17¶âqzÛ×˻У\90¬R\8ezåç¥\9eöqøkù¨ÑìÄ3\82äV߯T\7fðïhdal /\84Ä\18E\96KûqK\ f.åÙü»êÎÒ\8ddg°\86\157)´]\15;³Ûø\9d\8eû\98¥Au\8dÄ`Õ8ÁK#ÏÍ¿C\8dÂÁÅ¿Óç=öÂ1k°Ì$/Q\9a6ÎK\91ç9øw[\9dNÉÒæ\8a\95Gt·\ 5ÎD×\85(6Ó\12\1a\13°]\86ÙATÜz-åIã\86muBý>¬VǨ\16\8d\fÉA/\ 2ÕÃM¡\86Ð x\14\8c໸o\ f\16«£\845e8=q¨Õ7Î9jó\9c\81§u\fc7 \fu\81¡¬\97\15f»7\ 6\8fÙ\ 4v\93vâ\94¯·0@+NûL+~|(\9f\b%\82¤¾ sUYPë\839\1d\86\17\82Ìî\v\86\17âqÇè\12½\ 5åQ?½\9a\15®\85\ 6ú\85ãâª{?·\18\8a\1f\16\80\8f\97Ë¿cÖ\7f3"þ¿\88xÿÃ\88xß=É?\10ñ¤V"^Çî\9d\89x\9dVÊ?D<á +\11¯ËG\9f\89x\82>¿\89x]Å\14\85\88\87R\88xvL%âñi\99\88'¡\12ñ\8c2ýKÄ\13£º\12ñ\ 4¤¬D<Ñ&ßD<ÑÇ1\83."\9eà\99\85\88×I°ý\12ñúî\8bèD¼\8eE?\13ñ \ f¿\88xR+\11\ f.n?6\11O\ 2Ô\8cBÄC-D<\14²fAÄ㣦Óõf\82Ð\16"\9e\b²\86I2Ú\1d\84û\1f"^»\ 3\92èÇP\v\99\89xIIüµ\ 6\11¯iݯ\8a\98ź\13\89÷EÄ\83\1e\9c\89xºªJÄkϰ\1e\12\19\88\87\88q!\80x(\ 5\88×\9eñ\ f@¼FÃ\9c\fÄ\93R\81xRè¿^\80xº´
+Ä\ 3v\\80x[É@¼¤:\10Oß»\ 2ñ\1a\f¦_ \9ehÒ\15\88g\84Ùϱ\89x[)?ÉR\8d\89×®h\11L¼FÇ÷_&^ÓB13ñ\9aÖ.7±¬ÄÄCÍL<\84ÂÄkj¾ð±`ãBâ!âç\r$\9e\94\8aÄk÷ç\1f\90x\8dÔ]Fâ5âË\19\89'0ï\e\89×[tþ µ\83\ 5OH<\8d\85o$\1ejAâIÁ\94¶\90xïñ7&N³o\rPÅ¿H¼¡rÿ\82Ä\e}T$Þ WkEâ\8d\88\15/$\1eJAâ\rÌÔ¿H¼!_MAâI©H<)o$\9e\98¹\15\897úý\83ÄûÞÜ\7f@â\rE,
+\12oh\rV\90xcô7\12\ f± ñP2\12oDo¿\82Ä\93Z\91xR*\12OÊ\e\897TÛQ\90x\83æM\19\89÷þ)ÿå?õ\90)ÿ\85Ä\93Z\91x\1cW\90x\83¸È\ f\12ObEâI©H¼¡¶ü?H¼Nï\88\8cÄë\98)\13êNtå7\12O|ç\8aÄÓ\1cY\91xßßÁ84\ 5\89'\95>!\v\89\87R\90x]½í~\91x\12Ùù-$\9e\94\8aÄCy!ñº**\94"\b$\9e8ë\15\89×e)úEâuõ\ 1¤¡A ñÀ\\17$ÞV2\12/©\9eÃë\vP\15¨;Æ\81\17\12O\ 3MEâu\1ae_ \89\97\94\8dÄK¢!ñøJ\19\89×eÁz!ñ¤V$\1eÊ8\13\12\8f3_H<©\15\89×\81Èd$^§[æ/\12¯\8fþ\83Ä\13e¼"ñ\92\92\90x[\r$\9eþBEâiU÷FâuAW
+\12¯kÑW\90x[ÉH¼¤:\12¯+\88S\90x\82\92¿\90x\9dÒ\80\8cÄëêþV\90x\1dïí/\12¯+ V\90x]EW\ 5\89÷]ßÿ\ 3\12¯?ó\a\89×ÕÆ¤ ñÆçó\ fH<©\15\897hÇ\9c\91x\83\8e×?H<\89\15\89\87R\90x(/$^'W\92\91xýy~\90xï\912¦KÚJ¼\90xzo*\12OV¤\8aÄ#öñBâIH<ºA\15$\1eq\99\17\12Ï¢5\e\89Çy\ 5\89Çg¿\90xz *\12\8fðVAâñBü"ñ¨´*H<Âu\ 5\89Ç\ 6ý\85Äcg_\90x¶×ÏH<\94\17\12\ f5#ñ\10
+\12\8f?ù\8bij\8fÍH<]}Eâ-%#ñ¶\18H<E!*\12Od7\12Ï(S\19\897Ä\98,H<Í\10o$Þ\98í\a\89\a\80¹ ñl\82ûEâ\ 1W.H<Ý\8d\8aÄÛJFâ-u!ñèoS\90x#\9aü\16$Þ\90\ f¹ ñ\86ø(\ 5\89·\95\8cÄÛj ñD§ÊH<UÖ½\91xº\8e\8aÄ\eGûAâÑ1æ\85ÄC-H<\94\82Ä\eGÿ\a$\9eÔ\8aÄ\83¸U\90xRÞH<][Eâ\ 1ð.H<{V~\91xBl\15$\9e\11Â3\12/) \84\95T\ fÙ\8bý]\91xº\887\12oÐ\1aãS\8e{~\90x[ÉH¼¥.$Þ \86%#ñ\0¥¿\90xz\f*\12O»\8a\84Ä[ÿ,H¼\ 6\12O\1fT\91x\8aô¾\91xJ\8aT$\1eãZAâY;£\1f$\1e\9d\8f
+\12OJEâ1g¼\90xÄ<\v\12OJEâÙ1?H<ýÿ\8aÄS\94»"ñ4Ú¾\91x\f\91\ 5\89GO§\82ÄKJBâm5\90x\8cÞ^Xcsðuý\ 3\11\8f\v)D<\9b\b\12\11\8fþI¿D<\133\11\8fó
+\11\8fÏ~\11ñÈ$\16"\9e^\96JÄÛJ&âm5\88x\83z"â±>ú%âñ\83d"\1ei¾BÄÓòýMÄ£ùU!âQ%\\88xª/~\13ñØÁ\15"\9e¶Q\95\88·\952\10\84º\88xC6 BÄ\eíø\a"Þø\?D¼ñ cs\10ñF ¦\v\11¯ã¡ND¼N¨ä\87\88×é\7f\90\88x]\9e£BÄÓ:õEÄC,D<S2\11Ï\94_"\9eÔJÄC)D<\94\17\11¯\vZQ\88xR
+\11OÂ\8b\88÷])ÿ\10ñºÚ^\15"^\1fç?\10ñzôó
+"\9e\84JÄc\8fö"âID<S2\11\8f3\89\ 6e"^×*¥\10ñº¦ÙBÄSðúMÄÓ¦¦\12ñ:|§LÄKJ"âm5\88x=\1c_\8b\88ׯö\ fD<=-\95\88÷}\ 2~\88xßkú\a"\9eÔJÄ\93R\89x\9dZ\8c_"\9eÔBÄ\93P\88x\1cñ"âuºöe"^¿\8e\1f"^WlæEÄëì¢\13\11OB%â}\17øÿ@ÄC-D<ÎÌD<>ûEÄëìx\12\11ï»:D¼%d"Þ\12\83\88×\99Ý2\11¯ßóMÄëϨD<\r)\99\88\17ÿÎD¼Ð\82\88×Éýe"^×\82éEÄë2f\14"\9eݼLÄKJ"âm5\88x=ÌÄAÄã\9b¼\88x¨\85\88'¥\12ñ¤¼\89xý\19?D<\94BÄCy\11ñ¤V"\9e.¶\12ñú\1d¶üLÄ[\ 3õ>N¦\83BÄÛJ&âm5\88xö\172\11O»ï7\11O!åJÄ#hZ\88x\8ai¾\89x\8a}f"\1e1ÓBÄÛJ&âmÕ\88xCüèLÄS\94ãMÄ\93Z\89xR*\11¯¯îe\99\88'µ\12ñP
+\11\8f3_D¼þô\1f"\9enb%âm%\13ñ\96º\88xz'
+\11¯_×?\10ñ\98\86\v\11O\ 1¤JÄÛÊ&â-m¡¬\94ÿ¬D<\r\84o"\1eO]!âéu«D<Å\7fßD<©\95\88\87R\88x\9cù"â¡\16"^ÇW\94\89xRÞD<][%âue\b\v\11o)\85\88·Õ âõëü!â)\10÷&â)®W\89x\8a|\17"^W\80àEÄ\93Z\89x}F
+)\88x
+T¾\88x:,\13ñ\88f\16"^_Mõ3\11¯÷pI¯ãúø!âm%\13ñ\92êD<EY+\11¯3Öþ\10ñH\8b\17"\9e\14ãF\a\11\ fåEÄC-D<>«\10ñø\9a/"\9e\92\ 5\95\88§\98?«îEÄKÊ&â%Ñ\88x\9dDRæß)bþ&âuy
+\11¯\8fç\87\88'ÛÀ\9b\88'õMÄÓç\19à6\ 2&,9\v\11o)\85\88·Õ âuu\93+D¼~]ÿ@ÄÓ¼]\89xÚzT"ÞR
+\11o«AÄÓ ]\89x
+Ѿ\88xÊðU"\9e¢U\95\88§ÐÈ\9b\88§\18\%âéÌ7\11O\9b¾JÄÓþ´\12ñÔ\95ø\97\88G\81i!âY«¨LÄÛJ&âmÕ\89xfßMD<\1aX¿\88x\94\97\16"\1e]ï\v\11ï\1dÍ\8e8÷\7fJÄ\e«\983\13ñF;~\88x\1cW\88xRÞD¼¡f\0\85\88GóBÄÓÍ\7f\13ñPgß@<öý\ 5\88g[õ_ \1e¿e\ 1âI)@<Br/ \9e\1e¡
+ÄSÌ¥\ 2ñ\ 6=\v\7f\80x\ 4X
+\10\8f\90~\ 1âÑ\7fç\ 5ÄÃý\98\80x\8aöT \1eÝ;^@<Kr$ \1e\87e \1e\11ò\17\10\ f5\ 3ñ\88¼\14 \1e±Ý\17\10\8f4G\ 1â\99ÿ/\ 1ñôø½\81x\ 6ÜÈ@<ú\8d\17 \1e\ 5Þ¿@<h Oß<<ÌÆ\99\877È/ÿòðh£_xx|£Âã·Ò\8b\87G÷¦ÂÃ#÷Pxx\96eüåá\11¤+<<\94Âó\Ç/\ f\8fvò\85\87g-ò3\ fO·çÍÃ#âRxx4å+<<\851Þ<<E\91*\ f\ füGááÑ»éÅÃ#óZxx$\8d2\ fO£ä\9b\87§ÈlåáÁøxñð¤V\1e\1e©ºÂÃÃÐðâááE(<<s5d\1e\1eÊyU\1c\1e \92\82ÃÓE\14\1c\1eɾ\17\ eOÜ\92\8aÃ\eø¹3\ eo\0PúÅáÙP\99qx\f§\ 5\87÷\1e\88c\fÿ{8<ËLüâð4\9a\15\1cÞXÄ\95ÀáY\8b±\8aÃ\93VqxR*\ e\ få\85ÃC-8<\94\82Ã#;ð\8bÃ#Z_pxJ\ 5T\1c\9e\ 6õ7\ eO\ 3{Åá1-\15\1c\9e\86ú7\ e\8f àð\ 6\85Þ\19\87\87òÂá\r: &\1c\1eBÁáqâ\v\87§ELÅáéò+\ eïýSþë/>.Zß¾qxRÏëH8<ÖÁs&\1c\9e\14\80\16\ 5\87\87ʺ5px(ÀI\ 2\87ÇgQÀ\9cqx¬\97\v\ eOþ\98\82ÃSÀó\8dÃÓò¶âð:\ 3EÆáÉÜc½Ü3\ eOj£\19Tàð0\ 1\15\1c\1eÇèE.8<Ô\82Ãã/|¢Î[\9b!ý\17:1g\1e\9e\8c(\95\87gû;Ùã\82\87×\8fñæáÉMRyx\1d³Wâáu%´^<<\ 5ò+\ f¯Gæ~ñð´\1fxóð:X\93ÌÃ#.Zxx\84X_<¼Ná@æáõEÛ\ e\1e\9e\ 2\19/\1e\1eÑ\8dÂÃ\93Ryx(¿<<\89\95\87\87\92xxöA¿<<]Wááév\15\1e\1e¡\88\17\ f¯ãýÉ<<"\8e\99\87×\95\8fýåáé¼ÊÃÓ¯Qyx
+־yx
+=T\1e\1e\8fDæá)\9fñæáueS\v\ fO± ÊÃëçø\a\1e\9e\9e°ÊÃÓgU\1e^W\9aúÅÃÓ\95T\1e\1eñ§ÂÃÓß|óðP3\ f\ f¡ðð:æàÂÃëç¨<<»[\99\87×ñ\ 1ÿòðt¡\95\87'\ f\1e«êàá½\87È¿9_w\95´¾xx\1dDøL<¼.L_ááé\987\ f\ fµððz\vogðð¤\90\13.<¼ÎûÔ\13\ f\ f¥ðð:o×§ÿ)<¼\ e³>óð:\f°cóðzs¯\ááa¡.<<\99.iÞ\14<<\85rÞ<<©\95\87×i\ 1\9dyx(\96ãN<<©Ö 4xxR\bE.\1e\1e
+&ÒÌÃSàÇ\rLÎÃÓ\94UyxJ\98½xx\1a\r+\ fOþÙÊÃ\93#ï\97\87§¼Iåá)Þ\yx\9d]Þ\ f\ fOCQááõ§U\1e\1e\83Õ\8b\87×é\9c\95yx¤è2\ fO\19Æ\17\ f\8f\10Væáumy>æ¨á×WÚéÅÃ#\80Xxx\8azU\1e\9e\ 2\9do\1e\1eE:\99\87§\blåáiUðæáéÄÊÃÓøUyx\84j_<<©\95\87§K«<<\94\17\ f¯G\ 3¡Åó3\13\ fO\1fþæáõ ´/\1e^×¢*óð:\14\96_\1e\1ecrááu\80ð\99\87×Á4ýòð4ø\8dOO<<\fÈ÷H<<=õ,\9a3\ f\8føgááuð\16Wâáébß<<M)\95\87§Lqåá)ÇüâááPÈ<<\9dWyxZI½yxú\ 2\95\87×Y'\8e\8dÃÓ¨üÂá©N«âð\18¼\v\ e¯÷öÆá!\16\1c\1e\8ay\1a\1d\87'\ 5×LÁáI8<]jÅáI¹ÍRªkQ©YÁá5¶jmãð¨Ôzáð\9a\1a\87\14\1c^Ã\1a<\13\ e¯=÷?àð¾\7fú\a\87×åH)8¼.¿\vaÞ\8cÃC5\8e¦C¤¤ðU\16\ e¯Óºðó\83Ãë´zÏ8<)T+-\1c\9e)¿8<Î$|\178¼®\94\9cv®\v\87×\96U9ãðTàTpxªm¢ÇáÂá©Lí\8dÃS©ZÅáu\9cÒ\19\87§iþ\8dóR¼\8cÃÓÍ®8<\1dóÆáuèð
+?\ 4\ e¯G[Ú\85ÃÓ\1aè\8dÃÃi\90px]ÏCÁáuÚ³ÿâð4#U\1c\1eI¿\82óU÷\ f\ e¯\avqáð´d\7fãð:ýÎ3\ eO#AÅáõ+\10H\19\87WU^ükÕ\129\ e¯\87§¬àðP\v\ e¯_Ï\ f\ e\ få\85Ã\93ZqxʧV\1c\9e\947\ e¯Ó\9f2ãðp"\14\1c\9e\16\ 4o\1c\1ejÁáI)8< /\1c^§Ã]Æá\91à.8<)o\1c^§÷HÆáI©8<-qÞ8¼®±$ãð\94\85*8<9Ý^8<êÚ
+\ eO¶\81\8aÃ\93\ 1ð\8dÃS\9a¨âðv\96"px²s¿qx\83\10jÆá¡x\9f3^\1cNü¥áI,4< \89\86§\7f¾ixx \v\r\8f\18R¡á \80ò¦áI4<@)\85\86'åMÃ\93ZixÜÃBÃCù¥á\rÒ°\89\86§Ä^¥á\rX¾\95\86\87ý±Ðð:ý°2\r\ f_Ä\8b\86×É\ 5d\1a\9eά4¼AIó/\ro´þCÃSic¥á©dñMÃ\eÐu3\rOgV\1aÞ\10Ùð\97\867\94\b,4<}ñJÃ\93ïóEÃ\e\9fû\87\86gJ¦á\95\13\17\r\ fµÐð¤T\1a\9e\947\ro¬Î[AÃ\e\9föCÃÓ;ú¦áa@-4<®¢Ðð\ 6\0ç_\1a\1e\85\9e\99\86GåA¡á©êóEÃÓ(Pix\1av*\rO>º7\r\8fN¡áõ( Z4¼±[À%\1a\1e#O¡áéM4<
+I^4<ÔLÃ\93Phx\12^4<ªM
+\r\8fÜw¡á¡üÒðTePixrüW\1a\1eéÌ\17\rÏâö\99\86GyT¡á\r\98\¿4<Zv\16\1aÞjú\1c4<ê\85^4<\96a\85\86§eX¥á\19pù\97\86gpæLÃ3pM¦á\r@]¿4<\ó\85\86G\19R¡áqµ/\1a\9e%\ 13\rÏø\12\99\86Ç\99/\1a\1e-g
+\r\8f\12\85BÃ\eA÷)4<Ø\17\85\86G\9dM¡á\8d#\8c/\99\86Ç\99\85\867\88\14&\1aÞ \7fþKÃÓ\85T\1aÞ`å\96ix$º\7fix
+[U\1a\1eå\11\85\86g$_\1a\1e.üBÃÓET\1a\9e\82\ fo\1a\1eÈ\92BÃ\ 3U\94hxÔ¢½hxVÚ\96ix\84\86
+\r\8fþF/\1a\9eÔLãF«ÐðP~ix¤Ó3\rÏ\92n\99\86G\91Ê/\rO_»Ððô>\14\1a\9eR´/\1aÞÂ|/\1a\9e>¨Òðt\ 5o\1a\9e©¿4<\85þ2\rOÏy¥áQ\9fø¢áá¼\9f}Ãðèæ\9caxV×÷\ 3Ã\eô@N0<~Õ\ 2Ã#Úö\82áé]¨0<-ô*\fOC÷\e\86\87\a)Ãðde0<Íóo\18\9e\O\15\86'×Ó\e\867°ðg\18\9e\92Â\ 5\86§CÞ0<\85+\fOÛ
+Ã\93¯ó\rÃ\93#±Âð\14Ù©0<ê°_0<%²*\f\8fXE\81á½£Ø\7f3Fþ?\ f\86G|ö\ 5ÃÃËP`x|í\fÃCxÁð\ 6Eâ \86G£²\ 2ÃSµÓ\e\86'µÂðP
+\fÏ\8eù\85áñy\ 5\86'¥Âð¤¼axc>\e\86GÏÃ\ 2ÃÓ°ü\86á\r,Ù\19\86§á¡ÂðÈ\9d¿`xzµ*\f\8f Z\81á\11&ñ\ 2ú2@\14\16\1e\9e\97ÂÂã{½Xx¨\85\85\87RXx|Ö/\vO\15P\95\85\aþ¬°ð\18®^,<z¹Y3Ð8\8eMÅ\95Xx[É쵤zà
+\86\80±º\8cr\a®\81&\99\89\85§A¶°ðta\95\85GËð_\16\1ebaá¡\14\16\1e±§\17\v\8fxlaá)(_YxRÞ,<½\ 4\95\85gÁéÄÂKBbám5Xxê\9eWYxJ)\f«ÞL,<h\ 1ÏÖØ<\12Ç\ e\14^RòϱÔ@á\19\ f¡o\14\1e 8î`Bá±Ìfm\12(<\96â,62
+\ fõº\12
+\ f\85¥\9d£ð(x¿\9f\8aÂC4\83\98£ðÀz°ï\ e\14\1eí\8cµ(É(<=M\16>\f\14\9e~Ç\8a³\9e¶¿(<zHd\14\1e\v\8e\82£\ 4ó\85ÂC-(<ëp\90Qxï\ 1ø?\9cXþK(<\ 2m/\14^\a©\94QxV~\93QxL¾/\14\1e9¹\82ÂC)(<Î|¡ð¤\16\14\1eÁÔ\82£Lë\85Â#öXPx\9du|FáÉäñFá©\89HEáQnWPx\14ȽPx¨\ 5\85\87RPx\18A^(<¥s
+
+\8f\1aÂ\82Â#ãóBáõë¬(<ý$\15\85÷þ1ÿõ\17\1f\18R²/\14^'%\98Qx\1cWPxRÞ(<Ô\82Â#\92\9aQx\12Þ(<Ei*
+o\0µÈ(<µØz£ðXí\15\14\9e\ 6Í\8aÂÓöã\8dÂC-(<)\15\85'å\8d£.¿ ðØô\16\14Þ\88Þê\ 5\85GX ð\ 6\f\9d\8cÂÓ\13þFá1¤\17\14\9e,\84\15\85\97\94\84ÂÛj ðè\9dPPxã\1cÿöFáÑζ ð02f\14\9e ¿(¼¤:
+\8f/UPx\1aVß(<Ô\82ÂC)(<)o\14\1e\9bÅ\82Â\eçUQx´\86}¡ð\ 6¯oFáÑ[» ð¶\92\8d"Iu\14\9eþdEá±ËøAáÑ\90£ ð\88¹e\14Þ\162
+/©Î\7fÀ`\99Qxc\ 61 £ðtbEá\11½+(<m\13ß(¼Aûü\8cÂS\94¸ ð\14\ f~£ð\88\12\17\14\1e»½\82Â#9ò\8bÂCÌ(< \15\857hgõ\8bÂ#\8c\9bQx\b\19\85gGü¢ð\14½.(<E~+
+ï=PþÍy[Éí7
+ï»xþAáõvý ðTÆöFáI(¼Îp\93QxRÞ(<Ô\8cÂãÄ\82ÂãÃ\7fQxæ\13H(<Y¡*
+¯\83\eûEái§]QxÊÿW\14^_äÎ\8cÂÃ\84SPx(\ 5\85gF\9d_\14\1ejAá¡\14\14\1e\7fó\17\85'\1fPAáé\a©(¼d\14\9e©\19\85'³PFáÉ\1cü\8bÂÃ\9c\94Px4R+(<Y+_(<ÚG\14\14\1e®À\82Â\93\81æ\8dÂÛ½\eÖqýúAá\99ò\83ÂÛb ðpÕ\14\14\9e\1cLo\14\9e953
+Ok¬\8aÂÛJFám5Pxj\9c\Qx\9dÁ÷\17\85×a¦e\14^ÇÄ\99Qxø¨^(<Ô\82ÂCÉ(< o\14\9eþ@EáuzÝd\14\9e\947
+\8f@WFáÑÓ¯ ðì9ùEáÉCVQxº\e\15\85\97\94\ 4ÀÚj ðpâ\16\14\9e\9c\81o\14\1e\ 5À\ 5\85G\vÈ\82ÂKJBám5Pxú\v\15\85§\aû\8dÂÓsPQxÚ=T\14ÞV2
+ÏÔ\8cÂ\93\17£¢ðtoß(<\99Ü+
+¯GAÄBáÑÏó\85£¡gBáѼ³ ð¨Ù}¡ð¤V\14\9e\94\8aÂã\98\17
+¯\8fYQxT0\14\14^WÑØ\v\85§Ñ®¢ðð\95\15\14ÞV2
+/©Ôuë\93*
+O\7fñ\8dÂã:2
+OBE᡼Px¦f\14\1eJAáÙ\97üEáu:\ 3g\14\9e¦Ý\8aÂÛJFá%ÕQx\9d\98CFáuØ µ,\99ߣ ð¬rFáÉ~øBáé\15)(<úÑ\16\14\9ef\887
+\8f=dAáÉ¥RQx[)#ÁR\ 3\85×\9f£¢ð¬ÍÀ/
+Ï\9a2e\14\9e\9a\V\14Þ 2ó\8b³FP\19\85·2Ô\ 5\85§uiAáÉNRQxJ\18¼Qx¦f\14\9e)\19\85gÊ/
+OKæ\8aÂCI(<þýBá\91\ 6Ï(< \15\85§õù\e\85''MEái/WQx´\92{¡ð¤V\14\9e\94\8aÂcw÷\83£¡cAá\15Å\f°:ï\85³> \85§ºô\82ÂS\0þ\17\85§\9dPEáI©(¼¤$\14\9e©\19\85§»ZQx´^y¡ðp\19\15\14Þ\18ó\a\85§\16Üo\14\9eÔ\8a£UwAá©\8eü\8dÂ\93ZPx\12*
+\8fC^(<ºÓ\14\14\9e\92w\15\85'#Ï\e\85'µ¢ð¤T\14\9e\947
+\ fµ ð8³ ðøô\17
+Oß¡¢ð\ 6Æ\83\8cÂCy¡ðöq\81Â\eÌo\e\85Gßõ\1f\14ÞP\f?¡ð4¤T\14ÞV2
+o«\81ÂÓ\1e°¢ðhùð\8bÂ\93ß§¢ð¸Y\19\85·\85\84Â[b ð\14ÞÊ(¼\11ù\89\8cÂCL(¼Ñ>\15\85§=ö\v\85'± ð\10
+
+\ få\85ÂÓÇW\14Þhã\a\85§Íÿ\v\85·GèuX¿~Px[É(¼\ 6
+ÏþÀFái/þFáÉ\ 5UQx\ 4k3
+O\ 1ï7
+Oqä\8aÂ#X[Px[É(<S3
+\ f\17jAá\rUu¼PxR+
+OJAá!¼PxR\v
+\ f¡ ð8ñ\85ÂÓ/YPxº\8b\15\85·\95\84ÂÛb ðHí\17\14ÞÐÒí\85³Ù7£ð0|f\14Þ\162
+/©\11\9d\94º ð4\b¾Qx<u\ 5\85§!¢¢ð\143~¡ð$\16\14\1eBAáqÞ\v\85\87ZPxR*
+OÊ\e\85§+K(<jæ3
+o\v\19\85gjFááC-(<¢v/\14\9e¬!\15\85G[à\82£|ë\17\85GCÞ\82ÂÓ\92£¢ðô\1dÞ(<\1dWPxD>õc\ 4á\ e³Õ\8b\84G\91]!áQwPHxII$¼\ 6 \ f\87O!áñ7_$<Òú\85\84G\ 3\9aBÂCy\91ðP3 \8f\8f*$¼å)+$<j.
+ \ fST!á%%\91ð¶\1a$¼±\13XN¸£©ï\8b\84\87Õ¬\90ðHõ\15\12\1e\1dã_$<Ô\17 \8fª¹DÂc\95YHx[É$¼\ 6 OV¿BÂÓ¨RHx¸t\83\84§MF%á\99òKÂÛj\90ðhÍXHxÚ\9a¼Ixý:\7fHxò\1dU\12\1eUy/\12\9e¢\12\95\84GAï\8b\84§Â°JÂS\10®\92ðäXz\93ð\14#$<\95Ë\14\12Þ\122 o\89AÂS\91P%á©\8eõM£Ø*\93ðºÊç
+ ï\1d²þ\9b\ 1ñÿEÂû\1fF»Ô\80ÄaM\v\84w\91\1dHâ¥Ê\1cÇ5\91¿Ã0û\19\85\82§¥ÔÓÚ\86àQxG|Î_s\15z~ú]\19x¢{Q\90\1e\b<pâÏØ\ 4<\8e\983\ 3ðôI\a[h\aàÁ\16¿çæßé9lרø»[V\15¯¸"\ 2£¡¶\13\1atC±\12óW%ßi§Ì_wî\9d
+5\ 6o\8daïÈ¥=½Rïh}xÝ\ez§\ 2\13nt0ï´6&{\90\91w
+ô\f¬¿N¼SÉp\9f\89x'ÌÏu\\15x'±_÷æÝ\ 1\r\9a}ãîô9³·L»£ÅÜqmØÝ¤Cê\19\1c;uøø\1c=£îØC~Æ"Ý©\83 ÖØ\0Ý-!CÕBÜ\98;Qîææ×ÉpÙ\95\8fÈ\94;u¤\92ëw\1f¥Û;\9f\r¹\13\82÷¼\8e
+¹\93Øú½\19w\80z\8f±\11wÊ\9eôÑ*áNö&·D[ã\87S[çgãíT¹?γÒíD=½\8fsÃí\ 6[å\8d¶\8b\7fg°ÝÒ\1ck§\80ÅÀ:\11´:å\ ehY\96 v´¯ü$¦ÝgÃì>õ\86\7f\16¾îãoRÐë\14\19hãþ\81×aè:\12¼N\99â\1fr\9dr°óLäº\1e/N\80ëd\1au¶Ý\ 6×\rÍ\99gâÖ)fy\9c [Gmcû¡ÖiA©7* u\ 4\825-\ 5\8bn¨&¥Ub\1d \82\9eÄS[\ fÍÏΫ»èU\1d\83\96³\9f\88\ e¶kÓêèË}÷\r«{\r\911µ\99¿ªi\11c\8fJbÕ5\95âsï\83U×´¾~Ú³Xu\8d.ªWFÕ53u·\8dªC±\16.\8eªkX\9dûSQuÍ\ÎçFÕIùÎçc£ê¤|·t½¢êÚAEdzQuM\81¼ \9fÓQußéU\86\9fQQuMíÅðp8©®i\8dt\8c¾Iuí¤:¹\80êÐ4D/P\1d
+ïz\90ê¤|ïÚYIuR¿?ɹIuRú\9cç&ÕIù®ë\9fJªk'>\87{\93ê\1a}\95Î\rª{ÿ\8eÿ\8aßY\86y½¡\ 5T'u~>Ï\ 6Õq\1cÛË\0ÕIé\84x3©Nêw·\7foR\9d\94ÏqµMªû>\82
+[\1c\95U×Àð%T]Ãì8\13\83®É&ÐçøSXurÞa\e\vQ}í\ e6½Nª;5\84\9f£\82êÔbͩ£ç\Pé48\9c¸5\8f\8a©ÃÓ\7föM©Ó6ãºî\r©;I!=\95Q§:\87\8f¶\98\8e¨SÞñ<®M¨\93ÑçnW\ 1Ô©\9bc;ÌÔEÄX¬¾ö1.\19\v¡%d:Ý\16=«Æ\82\9fn\14Î\9c»\86M\13\ 5MwÂ\9e¸¶H¿êÓ>\87\11u\v\9bK·5ÃÒé{ðT\ 4\96î$\1cqÿ)T:0,ÓìÂÔ8J\18~\14¥y:\8dkÎH:\81\bNgÙÑ´\ 1\84\8bm£YN)[1n\aÙED\9a7\vd\9aÓèð+4\8b\10\11¤ÚBbÑ-1PtÚxNâÀN\98\ 3ûöI\ 2\8f£:ÅÈD\1c¢ZË} o8\86n \99B·E\87Ð=\14\94G¿\9eïÿQgMJ\852\83\ eCþið\17îÈ£]~O·HÍùÚã=,\ 3@×\94zjÚ=\ 6\80®5%e\ fÛ@³¹oý²)¶\0褲tZ\0º¦ÀêG!Ô\0е\81µÀúñ-\0\9dÔi»QïÝר®\80'µÑ`: uA \93z\7f¼\89.m\1dPxé\83@\87\82Á9uHmd(¦YJ)/Ò(s\9fN!\82Âô\1e\ 1c\ e\941æ´±,\ 1è:MñÛµ\ 1t2\0õáµ$VÀ8ï
+ ë´/k÷\ 6ÐÑ~\89_=\0t´iº½/æ\ 2СÆ\88im\12tf÷q\96\16\8aÝÚ³µ\8a Ó®÷»îy6\82N[ì\9b\1f0\10tJæ\9e§\874vâ_q¼ë²¨)u\85:³?×ÜÃ\ f[ã#(FÁ cO}u+ ±p\ 2»ì?\8b@Ç¿\9bWw.\ 2\1dêç\13mYµ0\95¢ýÈBÐñ\17?\8e©\v\ 4\9d¾:Û³\85 ÓÅ\7f\87^ã\80Y\91p(\19A·Å@Ðiû\7f³°
+´\S\10\91}KFÐ5ê!F>\8eNks\13è\1a\96\9b³U\ 2\9d\ eû®4îM \83wÌ<\1fd9ÈØ\17ë´D \83eL/\9dPu3l»\16\ 4ºd\ 2ÝR\17\81\8e\962\83éÜÉrÍÚê¶J k\175ÃO:N<\929\8e?\8b@·\95L Ûj\10è\9aö\9fV\9bçl9!¨¿+©ñ§0èt%ççI¬º\ 6#ñ¶Q\81\96ê´iaüÊ\f:T\9bè\9cA\87òqV\1d©f\83®Óæ\8eõs\1e\16\16X\f:)Ý\10qÎ \93Âp_\18tº¶Ù\1dè
+\83\ e`ö=l"\ 5.g\ fËñlÅîÒ?ýHÇ\81ä¾l\1e¢È;)\89=\95T\ f\96\v¶}:\98ÑF5j\ 2¼]òbÐ5ªT\9f'\1d÷tÛæ-\ 6ÝV2\83n©\8bA×(\1e\91\12l9ØäýJ´¹x\10XI¯Ã\ eY\16¯Û\11të\9f\ 5A·Õ@ÐésìF\aZN\90ùïñGEÐ5\ 5!fVõâ|ÿÖ½\11tÖ|è,\ 4:\9a\r5¯Dò\1d¥`c^Ïn}û\ 1B9\1clwCS¬ñx\9eM \93ò|Îk\13è8æ¼®B SÔr2=\ 5\81N}\97\1eÙ\1c\17YNm\80¨SÌ\0º\ e6ªÏ|Øá¿l\0è\92\92\0t[\r\0]'=«uE\10èô'¯Þz%Ðq!¼JA \93r(¼\15\ 4:Z\16±bÎ\b:Sûµ\11t\9cHW»@ÐÙ·ä²\12\82N\13\93-\8a\ 2A§É×VE\81 ÛJFÐm5\10t\9d\8d÷ÕW\18\9eF\8d\18Þ\13\82\8e_äÔ&ÜEZh1\v\ 6\82N-´NæÙ\8c £áÔ=ÛFÐi¸ø<\9aã\ 2-×\14jäÃ3\82\8e½Yç·\8cãD!êÑÎ\8a\9dòRÊ0\10êBÐ5Ùo\b¼\ 5\82®\ 1\16U` #è\9aÂaZÙ,\ 4]£úÕÑ\a è\9a¡\9dgEÐi±×¬fÌàr\8d°ÇØ´9B*\9fÓߥ8\8aÏpó\b\13\90:Ã\vC\83@'Í\86R\aÐ!0?ø\8b\850Cpü\82º¡Ýdß\9c>'\ 1\94mÀç$4,.\89=§áí\99\86¨Ã\96"\a¼\8dïF\9eÓ¥Ú-Ùà9\8a¡\9e¶¹s,³?}cçÎØjgê\1cy²\99¨sJ¥µ17tNKL=U\859wúBj!çì\81¸7qN§\11ÑÉÀ9Õ\ eÌcnÞ\9cfÔ³\9f\e7wÓ\11ã©´9³\88oÖ\1cà$EÔ\ 25·\85D\9a[b\80æäò! \1e\9c¹ö\996\ 3dÌ\9c\9e\bvé\v3×Twü\80xrÌ\\93__ïlÁÌ5*\ 2®±1sR\86BK\v3רsp\97ój+/õ8®¶0s\124m\ 6e\8e\ 3¸¿\992×h\86§w((sMÄ£Óû[\13<h\8dÌÿ¬\94¹FѰ¢¿\81\99\93Âú~aæ\9a\0-\84î2f\ e\95Pj`æ8óRi\80cæøp\96ª\193§¯Àà\1d\989½\ 3ZT/ÌÜ\122fn\89\81\99kLa÷µ\ 1rM±["Y\993×\14\83&À½\8ecy*7\Ø\82¶\92as[\rÜ\9c¶k×h\9b"×äV(\8aÝ\eY\81è\83\17Çq\ fï¶isII´¹\ 6m®\99_·-Ú\1cß§Qð\9ahs¨wo\9b6'\85\80ã¢ÍI\99ܱL\9b\93ÊP¸hs(÷çÜ´9\14²\vmN*+èE\9bÓÅÞ\1aÇ\16E®á\92y\12Wξ¦\8fÉû85\8c"\91\13´¹dÚÜV\836g\7fáJl9í´\eoM¦Í5¦ò\91\8fSäÓÂÏ×\8eK²\81,=;\14¿´\b©ãæ\b|^4ÚqÜÜV2nn«\86\9bkª8i\1e\91\95¡J1\r¦Ö\82\9b\93zóË\ 5nNÊ÷9\9d\e7\87B\ 2)ãæ¤Úø\11¸9\94û\9e\e7Ç\99÷óTÜ\Ó\88I{¹ÀÍé.ÚN-ps[ɸ¹¥.Ü\9c^\8a¡ÉdqäZ£\82£âælÊ¥!»«\ f±ù¹isKذ¹\90\16$\8aVY\1a\94\ 3!§Ñð\1aä¼\12j\8eG\8eôã:NþÁ»mÒ\9c¢·ß{Û*iNê÷[µM\9aC9\9c=G{gÎl\9fQIs¨çùlÒ\9c\94S\8b°E\9a\93r=A£\vÒ\9c.ÍÏtÒ\S\9anP\椹¥\14ÒÜV\834×4ï3Ý\ 5Aîñ¨Q\ 1Í)\88ðié(U=?^\85ªþ4
+\ 2\0»Ê\949EU,Óê\90¹+Ò>Á\98SG\1f\96w 1G\7fËçØ\8c¹ë²\95îBÇY\9búY sjón\8f¨\8bj\vÿ\ 1¹ê|¹%d¼Ü\16\9d.§ ؼ6[Nû¶ç<\vZNyg\ 6Ù ËÉCóù\\e,w\9e¾@Ê\9\89ܤÀÊés\18\8a\82*\87\19ÜAm\v*wNYÜÇfÊ\89\ 5ؼ\8a\93<Ø\166Qnk\ 6\94#ݳ)qò³§\7f²îúøð\1c"\bóÄ\91\931\8ag%cäèã5g¥È©\87Åh}Cä4\ euJÅ\9c!\17BAÈ-1\br
+ÝóæD]\86Æ\8ag>WÔÐ\Ü´BÜÇMw&,\80ÜR
+@n«\ 1\90Ó0<\19u\ 3 §\10«Ý\98\ 4\90SÞÍâj\ 1\90S°i´±ùq\8aj|\97\99½òã\14A³±9øq:ñaµ\97ùq\8a¯\8cî6}º\eªÿïwÇ\96xqjã;\15X-\ 49ê2mñ\15ÇÑ_ \ 3\88\13ä¶\92 r[u\82\1c\85J÷mY\ 4ú\9d«ç³®ª\10ä¨Ê<éð\10^](#Úf\ 6Aî\1d\8e\8e@õ\7fJ\90kV\ 39+A®Í\b3\ 6A®Y7º{\13ä¤\90]+\ 4¹¦\14÷EI\9c\13ä´·=m©î\ 49Ý~7¿$\82\1c*\93} ä¤XÂ$\10r\8d\9aéë®\b9~NFÌ@ÈI\99\8fãÿ\1aæ\ 2\ 1\19û¬\b9=Eø®\83 ×(/¤Ù\9a\13ä\14ªµåoFÈ)´÷\1dðÏ\8d\90Sãí>\1dX\ 3B®«qÁó\\15!§(ò°\97\13\84\9câ5\ 4&\17BN¡\rbF\ 5!×r \90)·\1dv;¤\85^©2AË.P\10r¨J\9b,\86\1c¡\93Û? \98\99\14\ 2Ï\85!G¦BãìbÈ\99sîj\8b!×5éj[^\18rP-4½\aB®Óп\9d\e!Ga´Â\9e\19!\a`@cÀbÈ©ÊúR\9c<\18r\9dÄï9+CNu×$\7f\17C\8eoD\83 GÈé6³äÈ\ 49\89\83\8a0\aÈI Ò½\0r´\87¿>³\ 2ä\b²i÷½\0r(ý¹7@\ eEw\0ä¤>Üê\0ÈQû}\ 4×Èþæc£X\ 1È)neä?çÇ\81¸øÖÎ\8f\137õ»\80¿+?NE\99¼á\8b\1f\a.\ 3\8fDðãt_¡\16f|\9cÂ`ì\15\16>®Ó\Hµ\89\8e\8fÓ I:¯àã\1a¯À96>N±²¦t^ÁÇIÅ\85²ðqz\8b\1eÅc\17>N
+\8b\88\82\8f\93Ê\80·ðq(Úd,|\1c\8a\Ê\85\1fGzC\ f\7fàãt\11\98ê\16?®\ 1\19Ó\v\98ùqM\r-y¦\82\1f×pA÷sóã4$Ò÷"ããl\9c\9c\9b\1eÇPjC\85ÓãÞ\83p\8cß\7f\8f\1eg9\85ÏYéq\1aÈ®\8b@¡ÑãÚ\13©Ý ÇõOä\0\13>N¢§\ 2\826ô\91ÍÑÁ\16\14ê \8cÈÖ¬´ã\a\17ä\9fE\8f³Ã¬Ý\9aõH`é=\7fèq\f§×4\87<y;¥ßp?.z\9cÆóãºíª\16=®\19\14æü³èqLI\84ï\83\1e§a\1e\9bR¡Ç1øë\9e-z\£6Úýü4¼Dé\1f\83À\14©ÔïÐjy)Z\92 <þ7ÁÇqæ=MY]\12´\869æaE0àãtý¶À\v\ 4Øû·ü×_|^äø|hä\9fèqê^{Ñ&Ûû\vb^¢\7f´³ãä]º¯»¢ã$²X\rr\9c\ 4|¥\ 1\8eÃ\16u=\95\e§Õ1\91ÃÀÆi>\8fØ\98^wu\98ë\9fY¡q¤°>}3ãÔ\1cK\vª\85\8c;\81üÌJ\8cÓ\12a>Ï\ 6Æi\15ñ8ä\rÿ\9e\8eøüÐâ¤i\ 5°`q'\90\90cÃâT*Ú\9e»²âd÷½æµQqlÓ`\91z¿ÆûôY0\93â\9enÛ\83\ 5\8acë©YÃ9qß墾Q¯\9c8EÛí*\83\13×"¿¾8qZöOØk\99\13§íñ`. N\1c\91MíÖ\16'\8e\18éÑïÊ\89S\14à9Ý\81\a'®Á îçæÄ)\ 21)öÎ 8â\12Ï36(N
+Áµ\ 5\8aCQP±\90â\9aÕ\85Þ\9b\14\87òô\11¤8û¤O¯¤8]ÙwítlT\9cî\18Ù¸@Å\11K°\8fN¨8Åræãà9Pq\84\vO\f\86\8ak*\17µ½åFÅé<¬\0A\8aÓïaæ¾ Å=\8fïÀ3(Ní\aG\7f6'N\ f\84öj\81\89ÓçÙn?Qâ0]k\93\14\908MTØ3\83\11÷ÄÐ\92\11q\9arÇ97!NÝúî\8aOX»ü\ fݾ\13\1f\8e~ÌOßx¸Ç\16\15\v\ e§\9a\13ì\94\99\r÷D\80ÓÑpú7\19\8a Ã\89\8aÅ>,¡á´câ¦9\19\8eÛãÔ9À\ 1ZoLwå¯ò¼;\122\81\85£\7fI\90\1dnÆ¢:òýÍix>>Ãd&\1c \ 6mî\ 2 '\13 ÷\8a\86\8b \føúV´QâÔG\ 5\ eN±më¡ê48U¾]Þnt\8d\8fê\94üñ\1a¶øp\9b\92\ 2\ 5§\fñ\a~Njð\ 5ªý¶í& 8ØW\14q\19\a\8e¼f3ãÔê\18*_²r\12«4I5\7f\87ì\91\ e\81;Õ\14ÍIn\8b\ 1'ã\11Wè\ 48Ú\1e_Ö«\e\0\9c\84§»\10\91ÐS\8b\98ÛªÊxfä¿:\9a5\a'\89I%×i\1f¼:\ f
+\1eyp\e\9dý¦^xüµ@¿Ñ*\9c¸\84~Ó\0g)×@¿É\8f:.
+í\1cý&/ÜwßqüÉì7%1lm\15ì7\ 5\7fo\1cfÁ~kìÎæ\ füM\83\vÛ\8b\80¿5J.qÃ9ý\8dñ\a\93f¦¿)!BÔkÑßÈ\9c\1dçµèoj1w\1dV¾¶,·Ws\ 3JÐßT¾ú9Í\91B\13ÁÇv\9f\ 5þvú\12m±ßô\91äF\ 2ý&S']Æ2ùMõ)\94&8øíù\98Kfqß\14?bôËØ·ûrÿQPßn=\8d\1f+'&¬\f\ 4ý04Ób¾ Ô£Tâ\12\15U5×\8f\13ß(;<\1c´\17\ 30]r\9aeyQ9Í\89\11ðÞî\8f?<\19÷füq[̱\87\16¸BOª³ÞÔCK»ÿ\82z»Ý¹¹Ho\90Î[Û 7øCZ\8deÎ\9b\1eíOï\eó&/ï\r÷Í\9b\9b©³£·q\ eÆ\9b^ÆÇá\83ôÿ5d\83\99 X\9fã\14Ç`\90:\15\88«\81\19%ønJÑò@,¾\9br»ýs\1d\15ðFþÿöFñ¶ùù\843!\boj¡O¶,\ 3Þ®n{ÖÅw3 î±ùnÓ·Í\19ï6¯0f9ÝM£0î¶\80»\1d~\95\ 5î&\11OB°Ý$\9co´\9b\99QF%»\1d´q\9d\eìv\f\8b>.®\9bZÊÆY±³Q»zÜ»Au\eJ\18}ÌH\ 1
+Ë£\95\85é¦\ 6\18\87÷w~¬=©\9aþXÙ¬wW°¼s\ 1º\r\8fp,\9e\9bÜ\1dó´Ó\88Î)õ8úUin\12¯çÜ07%2\15\95_,75*oÏ]QnD\1cî\rrS\97òN)·sÜ\10z¥¸é$J¦\ 3â¦<×gÌÍpSÊõ¸\fi¹\10n°N¼K%\ 47-M\ eûú\ ep3»TÆ·é\91»oëïl\98\ eêM¬\8f:ãå\1c\16«,ì6êÊ®Mn\13ETsû\ 2·\r\1a/ÏÊm\83b\ eéımÖAunj\9bb\f<ù\19ÚFÞ\9e\17É©mMA$\f\12Amk4\12ç\95IÔ6Í%\fI\8bÚF\ 2mÒñΩm¶\ 2\9e?Ø6è\80GßÔ6-\9f-W\9d©m:ÙÒ¬AmÓëmKÅ ¶µæ\93j¡¶UU¯³)ç\86¶µpa\15h\e*#f@ÛPô\93-h\9b\14Ë8fh\9bÔÓP\e\ emk8¥\9f{CÛ¤X5U\86¶i\12\9dsÜ\eÚFBß2WÞøW39\96Þ\ 2mCÕs° mR0\1c\ 5´MÂ÷>\1d\ 5Ú&ñ°b8\87¶\91&\9e\89ÙÖ,h9*³Q¾u]\9bÙ&ÅcK\9eDÒÚä¾ \8c$f[ÓpAÒÅ\99mJüØ3åÌ6YÃ\ 6U\ e\89ÙF}×y\1f\9b٦ܻåÚ\83ÙÖèø¤@Yf¶)53Ãüû·ó\ 2Álk\98Àï»2Û\1a½®GßÌ6\14r\a\ 1mãLje3µM*a\99\85m\93ªÁ°múçI\11^ƶɾzÑð%°mÄn°¸\ 6¶Q\93«ÕpƶIÅ$¸°m\8d6YnH!$"¥Í\1fj\9bD&ó\80¶q\13 y\ 4´\rEVÒ\fmk¤9õ\ 2:´MÉ´»S~ìж\ 6pv¶\fmÃ0x\9d×\86¶é)1ïy@Ûp\17\90«ËжFð½Ï\rmÓ\99æ\85\bh[£L\8a\96\9a ÚÖæa©\90\ 5mS\91\1fÑ\91\ 5mküzÚ×fh[\ 3\ 1;ï\rmÓ\996ù\a´ Àg$\9aDmkXÑt÷\83Ú¦o¾ö\8et¾ipÙ´þLÔ6\89\94\95,j\9b)sCÛÊy\vÚ\86ÊÂ% mR\ e\85&\16´\19«í®Ð¶f=¢ú\86¶µáë\92\ 5mÓKj\9f\95¡mX6müvh\eWqPÏíжÆ\8dÒ=ÌÐ6J\1eÉo:´\r³>¡Æÿ\97½w]®ã8²\85\9f\0ï\80?\8e°'\ eà®[Wõè\97\ 4Ùþ<\a¶\1c\96\91cbB\ 1\81 \841.< HYóô_\95\99Õ½»7É\rR"ö\86¶\1d\92\80Dwu]³ò²2Ó\8a¶!þ±\v\9aZÉ\8a¶\81\r\10UÛ\8a¶\81ï\885Î\8a¶\ 1\95&<\7fZ´\8d\1a
+£¸h\9b³0\9aV´ÍI²²Õ\9amä<ET¢ 6\@¥ÃX±\8dq\17\ 4ïL+¶\91Ê\0}+Ù\ 6\8aO]\1ak¶\81\12È'¦EÛ\18 1è\9briÑá<ôcÑ6'%,úÕªm\80ågÞHVµ\r\18ù\ e¦êVµ\8d\1eD.î´j\9b\98ËK\19«¶1¦HR[iÕ68Îè1\©ÚÆì\92ôQZÕ6ÉOìr«ÚÆ\8aîä)Óªmðê1*®Um\83í\9dÚO«Ú&u\81»°ZµMj\b\83\81[Õ6Úò©'ZÕ6Ï´\96ÎVm#Ô\9c§Ðª¶1r\877\99Um\93úóC^ÚæeµóXµ\8d\14á6Zµ\8doJ&\87IÕ6ä®\14S\93Um#¬\9f{Öª¶\11ÒÍS2ÚæJo\1cÎB\10\18\99ÂÜ#Zµ\r\9e\15\81\96L«¶ñM~Óª¶9Zî\88P\95ªm(Ö¬7ê¤j\e:"²\8aUmó\94ÜJ\1c«¶Ñ·Ì];-Û\ 6o\9c'*Ëʶ!ÖC\ 4\0+Û\86È\88^³M·@7\ 2×\87Vj\0æØ¡(·±ªm\88J\90\15\9fVmó¬\ 4£\8e0\1a|1×\82ï\93ªm\fßb4ô´j\9b\ 4\83ù±h\9bgfÙ®\1f\8b¶\81¢\rM\8a¶\81* L)ÚÆ°&±|jÑ6R\8a\16\84kUÛèÀf\84¿\95m\13o\17fßʶ1²\83\17á¤l\eÆ\1d\82OcÝ6\9c\b\ 1!hÝ6øFEÖ\98\16n\93\82Ô\ 4Åhá64E¡Çê¶¡\vÂ\b¦uÛ\84ºZµ\r\9evÆMµºmØé¢RXÝ6\ 6õ\11«>Û\ 6W±\bLV¸\8d¹\87%o\89VnóAmX+¥Ûà<\96Ä V»\8dkËô\ 6V»\r[\98QH+µÛp"\18æßj·Aà\13ÙÄj·\81\87Ë}¿\82\ 3ÍÞpüR»\rÀPzº[í6\÷R~jRº\rx£Ü%\89\ 5cé6Ç2ñN¼ut\e$\11Â
+Zé6xd\93D\98kí6ǤBÐ/§µÛ \13K°¥Õn\83Ò%\86O«Ý\ 6?\1e£c¦¥ÛÀ\1d¨x\9as:+\8bj\85ÛX\a0¯\96më\9dH\9dj\eÌ\10ðwZͶ\85\91ù§´`?^É6â\a¼\96bk%Û\88\1fàf7*Ñ\ 2<\84Z²\8d\84¬/\8e\179Cª\89i×\9amØ\9b\ 2²´\9am\88ITÓÀÄ1 j \ 5Çj¶\91\82\10\80V³M\9eÉ\1auÒPдU0.Yk¶\81"¶Y«Ù\ 6
+ÑÆ+5Û\10ÌFý\0\92ô QHd\ex²@\91¦%Ûp9\88Àa%ÛÀ\19\b\10maÐ@\8d\11\8d·R²\rB\ 2³¥´\92m@\9epò[É6ð\80d\ 1ç+\9c\81w¥Õl#Τ׺^ô®\81B¸ßJÍ6R q³\9am¤\84>\8e5ÛØV,iµh\eRîçÌ<\bÅÊ\18\ eÊ\a´\16\9bg\14®\9eíV³\8dYÇVj¶yê\14Ó\9am#eZ$lBÕ\9amLv?ÙÆº\ 2ó\9am\9eòsç&O95ëYÍ6æ¶fò\85IÍ6\12\99EÂj¶\91\92´<-m¶ PdX©Ù\ 6ª \17¬f\9b\87\8d\87\ 1êV³\r\14\M+%Û\90\8a\9b!£V±\ru\f¨\15XŶ aR±m¤ZÅ6¤\88gbH+Ø\86|öË\82mÌi?)Ø\86\fô«\ 5Û&\94éZ4ª\15l\93¬ý\93\82mX\8bEÁ6V\ fX)Ø\86ÜþË\82m¤®\14l#eZ°\r\84EÁ6\12W
+¶±øÄJÁ6P\16\ 5Û°\95V\v¶a\11éÃm\95ØX\9fB@)Ãjz<Ú;Æç iP0¶\8am\8cX¤\864ØFjÒjlL÷ \8aX/bÛ\92ÿ¾õ^y¯\8am´²Éæ\9cTl\83\93©5ZÅ6Ç\öv3Rç¢3)ö«\15ÛèI\93h_ØFJWÂX±\8doÂÆµR±\rT\1a1b\e\r©YÃYÅÝ\81\88'\9aú§\15Ûhx,\9aTUl;]\91¼<b\eà\16\92.gZ±\rY7¨Ôµ\8am\8c\#ºÉ*¶9Ù\84ýjÅ6R½/cÅ6R\92Vv\13\9bS§^åiÁ6øgè\rÖzm\8cÅ\ 3\17³rmtàD\9fW˵\ 1° )-´\\eÖC\84,+×¶\É\93\9fr·À\8b*Á"\93rm\88>\1d\bȰrm|\ e«Ýʵ\81â \89\94k#u\be,×F#j\88\93zm ðò^©×\ 6\ 3\8dF¶h½6\a¸\ 1C¢¬\ e\eòL)
+d¢\9b3\ 28LëºyÖ¥WÔ/AGÐ;\Öjj^\e©Ì§eõÚ@á¦kõÚ<3d\ 2\v9ׯ(vÂö^\eÕ]\17ÊX¯\8d\94Tòj½6\1a\ 4\b5¶zm^\9cwÃX¯\rêO/ù´&õÚ\1cÓ\8c2äCëµ\ 1´\17µz7˵\8d\84Iµ¶F´bmL2@3\15a#K\125yR¬\rÊ®à\19\8dJÜ`×·Zmò{\-Õ6\12µR\9b\f§sc¥6°S \82\99Vj#\95àv«ÔF
+-\ 6V©\r\14éû´R\eÕC\1fóXzÌ3î\95yô¤R\eS\97Jb±I¥6Ïs\v§\8bUj\83Þ/f\v«Ô6R¦@\8e U+µá\93\89\8a\9aÕ`ÃDK\88дV\e\13WÐ9Ð\9e\83±\8dÙ2µVÛH\98Öj\9bPµ@\ 1Ñ\8c\f|µbm\8e¡K\96\13Ò\8aµáMºá[±6\1aîR\99Ì\18ôB\89Î\9b\16k\83\81\92ÑÊV«\rÆaGS°\15k\83\19\98BûJ±6\1a\87\ 5z¥ÅÚ¨ÞQ\1dµbmô\8a\f%Vk#Õi)6\ 2p@\11c°\95k\ 3\85!h+åÚhÀ¥]Âêµ\91\12µô\e-\ 4òLׯ\16l\83á:ÒÃa\15Û`ö\95Ì3V±mÉ+\7fÊ{;\1aJsZ°\rz0\99©\96kK\9a\82®UkK\9a\ 5k¥X\e\9c\15\8cH´Zm\14«²\1fKµ%\r¡]©Ô\ 6¢±eHcx«WV.ei4ËãJ\9d6ºü]neÚ\88þêãX¥\8d\805\82+'EÚâ \16n«Ñ\86ül\86®c\896\16\94ä9\9fTh\83ûÅ\952\16h\ 3!kÝ5Zÿ ¥qaµ<\e\88\84|Xu¶ÄÊQcm6|\8c\ 5\ 2§µÙ\90w\82zÕfK\9d\0\93Zi¶F\98Vf#1DZ0\e"Ë%{\10k®e3\82\8eeÙÈîr{\ 2¶kÚ¤(\enDÆ~O\8b²IÚ\982\16\19(\83h¶Vi8õUN\v²µÌ\ 6Fì;\ru´rl½æ\16\9d\14c3\92\95b\ 3ô\85\1e<«ÄVLm\9e*é\84CÆ<Öa\83ä$ù\ 3¬\ eÛH\99Öa\e©V\87m(\16Y©åÕÀX%7Á¤
+\eî\92<LJ³1MUpc\r6 \9a²_ÀVÌXn\ 5Ø\8a&ji\ 5Ø\98\9b2¯\96_C¤(%V}\rn\:Äø\1a\13Úº¸Z{\8dvì\10[éµ¢¡\1cÎ\1a·\ 2Ü\ 5ÓÂk4¸\11\a u×P&\82Îc+»6\12&µ\96\1aÑ\8a®Á:.û^k©Aê\94:\95\93\92k¬\18\1c&O!tV/}fÒj¿Oª\19Íj\15ÉüÓ*¨¡JM\1fýj¡5,´g\87\8cê\98ñ\1clÐ
+\8d\94i¡5¡Â\89b\85Ö\0\9f\10¤´\15PC4(C§¦uÖÐH\9c\12-n UYë-ßÒ´ÈZ\1fô\9eÕ"kLz¯éM\99¦\1eQ¬tuOK¬Q\ 5wy¬°\86Ô·\92ÇX\v¬á ¹d&õÕzÍLÝê«õI2úµòjU#â\12TWK\9a\9f¥\11¡ª\915[mµF\98\96V\e\89¬¬\964\93W+¬\ 6k(\83¶¦uÕÐ\ 1ÁÕk]µTÆ\1c³,«\ 6\ 2ÅæiU5\12Ë0\16U\ 3\81÷\98ÕTãÈ\^-©Æ\ 4¶\f¼×\8aj1JμVP\11¦õÔF¢\96S£A\0ÓgÑ·H¿ÏztÓ ]b\ 3ú0VScÒ_D\ 3X1µÜ\89ùl¥\98\1aÊ\1aHl \16Sc©r\17Æ\1ai\88ÇbÃÓRjÔïúÁ\8fT\80G\14v¢¥ÔFÊôx\8fT+¥æ|\19\91\e,]#\81ô¸\ f§µÔ$»\10CB´\96\1aò5ÒÅ\95Ô\1c\8bì\802¤&ù\8c4½\ 2K¤\99ßx¥\90\1adF9-í1föâ\0´\92\1a¢\86\86ÞÅÕJjB\rF\8dY\9fKa¬¤&\94l\94b\0\18MÕÕ*©\91Â\1aVVK\8d\14â2¦µÔè\9e\1er+¥\86ßéÕh¥Ô =w~µ\90\1a°-âÊ·BjP³\84á[!5&D\93Ü;\93Bj jv\v-¤\ 6JÏ\0a+¤æ$5RZ©¤ÆÄ\84\9cl«¤¶Ba\1c:_L\16\9ak\95Ô`¸\97ì\12ZI\r\11ڬˬ\85Ô`\15\17¬ÈXH\rj\8a¬\99\15R\ 3E´6+¤6¡L
+© 5\97±\90\1aæT\ VH\8dIE$Ñݤ\90\1aq?¡\8cuÔ\¯q¸\8e\1a\12Dó\10¯ÔQ\ 3U\ 3Ú´\8e\1a\13IG-\90&º\08{ÐRk\96´\16D\8d\8fÓ:j dÉ+¨uÔø\8c #&uÔ\98w\85\9eq«£\ 6G\1a\13kµ:jÀÖȵ0£æhøêÝXG\r\94Hô\91ÕQs\12&\1aVë¨\91ªÙ\ 1YF\8d/:<G¼+\e·Ô\94£H\85û\89
+¾\95QC8\9eà \8c\1a)\84ÈL˨\8dÏY\195Ç[ÌY\854¦\ 4§Æ9VQs°ª3'§>\ 3Lgñ\96&H\19\8cfú\99TQ\e©VE\r\8a\19\8d(<\1aó\1e@£_)£\ 6\ 4\8eÌ`{.\ 5uà[\1dµ eRHm¤Z%5\18\9e2ÍÐVKÍ\99ß`ZK\8dDIÀ¤ÕÔ\Ô\88j«¦\ 6%\18"È´\98\1ahÂ\1d\9a\1a)Î\8dÅÔH +wZL\rË)¶bjèh"C³*iÐÎE\ 3\9eVSk\º=Öw\8a3³bj#eZLm¤Z15ù@\1c«©AO¦\8c=-¦\ 6t\92\18ó\8c*vÔahÅÔ`\8b\16\8doZLÍ1\17MçÆbjN\12aæQÏ\19)ÓbjBU\\13\8b©\11\1dÊ@\12+¦æÀÉ$àtRL\rTÍ\1d¡ÅÔ@\91dÎZL\8d\ 4ºÆ¦ÅÔ@UÞ¡ÕÔHa\8ef«¦æXTRë²µjjXÊ^x\91TSÃ,\ 65ûÒ»Ô\b\93Zj\8df¥ÔèjO,\84¦%Ò\1c\v\90Á¬=-¥Æë\97©^Ûsð>öLð(¥ÔF´\94Ú\84j¶CÆR\11 ®%ÒÀ\a{ÆÀLK©qË1}c{\ e¨Sº\a¬\94\1a̹\f\18\©¥\ 6êà´t\9a\18^\92\ 65[-5¾Èj\82ÓZj¤z«\93F\0\ 4Ä\99Ng\8cð\ 1PÄ\ 34¥\86®é\9b¨¥Æ\brú\ 4µ\96ÚH\98ÖR\13j\9c¦\87¥¡!\1f¶\12i´©I$ô¤\94\9aË
+\9eo\8fÁR:t\12'",¨\f\82«[)¥Æ¼²Ìlm¥Ô t0ê¿\95R\83Í\91\12ßJ)5<'\80\v-¥FÓ$Ó\91Z\8d4B º`ÕÕòh®\96¼òí9§(ÒVKmB\99ÔR\e©VK\8d¨\9b\18û±\96\1a¿9ÌJ©ÑÝ\ e=¾\95RóÌñ>\fc)5RèD\9a\96R#U|ÅZK\8dmiv\97Þ,Ø\12ç>-¥\ 63°$¼´Rj\ 4*Ñûd¥Ô&\94I)µ\91j¥ÔüèYÒ\12i0=¯RD(+¼\e\15Vxâ\fZ)5$\10Ð ÂI)5R\89\89\98\96RC{\92¼Ü\8a©QÒ$b@k©5´\94Z#Z%5Çú\16n\92\9c\15ç\8e¹\a4~\8bÐY/¿CÃ\10\80\86\15R\13Ê0a\1a|§Q\90\1a³\ e\92\e[\81\1cGç\8cÆKµBj®Spm+¤& «%Ð\8fÞ<\88ÞıM˨!Û\ eã)¬\8a\1aÂ\ 2qALk¨!\11\r+\ 2Y µ¢@d+\8c\86$\99\fb\98ÖO#\e\9dÔTãDui¬\9eÖ\bÓêi\8dhÕÓ\82eȳâiQ\v/¬ÔNCH\93×ìd,b\89Ìe%\8d\95Ó\16¦ã\9fÒ.ýK,\9cö¦\1e@\17Æ\ 2þö¯\17g+\1f@\83·wßüíòêâ\9bÿ¼|vÿ½4\\9füãÍý\9a\aÿrwñúòâ\87Ú¡«\97oìµ>ûùå5:~yñò\9bÿ{ñã»\9e>½x~ÿM\1dêïïnoÞ<!ÖßÛ\17ógëá{ëèþ¿\8bË﾿ßpx\7f½ýÁ\86×½±Y\8cï/\17wç\177÷ã\0ã\9b\9aÆ\7fξ\1dáZ\9eÞ\9e\8fïÌ\96ñw\a¿úô\8fá\9bßÝ<Ó&ð{Âïßüùöæ/u³Þ×ýzt$äÏ.¾«31ùÃÁ\9f_à/EþòÙÝ«\97ß[;¿þóÅ\ f\87úK\95c\7fsÐ\1d~Zÿùú\87\83W\a\0áàíºÃÿ¨?üO%ýp\18\ fÿtø_ÿÝ\1d>ÃÓ\7f=8Êõ²\84¸\86¸Y\8b\95»^!ã'j3§\95\f\91o\r¥½zº¾ÅÓ\83\evì\8b\ 3\88¢YêùõUè\93\1f*÷×'Â:\ 6¤äì\98
+\18\15Á`ÒO=),\19ûõ\19¾\b»)Âüóà5\ f\ 2z\\15DQ²Gòé*9h\8fÇ÷\97\94ñÕç³?h ÒüSJ\9e}
+Á6aÑöZbk`öA\97\84ÇÎ>häù\aµ¤á¼õõä±\91ÙGqyÅ!Î?jäÙG\9d¦\87\9f·¾\9e<6òüàï\avF^ñ!/\9e\86ú.´½P¤\ 3#\99ïöÚb/N¼7Q\89Óõ-Ë\98KÑ\12?«\9f\9c\90'\8d\17$\a*åÍÔé'×´¼:â\7f{u\0\84\14\1aÈ\12<Ò\9ae\17\98¨É\95ùÇ\1auu|pÇ®\19v#¯´¡õof3\87Ä\88È\\839dÖn!C\90\ el\ 2À\95`;7
+¬\83ä\ e\16\ 5%\16§ÏÒø-Dæl"\91
+û¹6@»}ý)K
+oY=bÛH¤õà\88?Ò¨%OJä>ÈEr\9dð\9c+[\10"=gü\18½*B\94\9c<ø(\vÑ[\ 3\f\1dà\18é*Ò\8fyé\16A\95[pHòI\8dû=\92ABà&¹\87WPÆÕûd\1f\e´[AâpHL\99¶ Ù\95¬\85C2-_ 2¾{\10"Ð×\87²8\ 3\12.éÄ÷0\18+¹\97õ\85a0$m\0\82\90õ¶>+DÊ\87ü(ã\17¤\aNÜnü\89\ 6&é\16\15\19y\vÖ)\19\ 2Snð£Y\12\86 \99a½²\7f S@!_ö\1fÖH\88Ä\8cqû©ÏþÈ6U\11²\87\16$DúÔ+Q=_ú$L¹r^riÛ¨\ 4ä7(À$aåtºa\r!±ÎEÖQ\11Ë!OJÞ2\99\ 1Jü$SÛ\17"C\8d¤\ 3ø³\10ipaW\99>À\1a`"[\8e¶²8§\1f#î\9cD\ 6K*\13\ 2&\99D-piÓ=$!3ÜC?Vla\18\ e&DßK«N\8c×çº\vX\12D¾`½í¤\96\9e¬\ï1\87è8Íá\9c7\87¤Í'ÊÁ\98\17\9e;\9d(/á\13\9aß\9fdÂÙ@D\86î ç6\r}V"\93ÎòP©\1fê\88\93Ç´®l\80Å\99O×ò;0Æ\8e¼\10#èP\99\94}u]?è\15 I\ fdAbò6\9fd¼h\91N<Y{çdé²Ä\vÚ>å¦ã2ç^Ï5tm\17õÙ\Ú\ 1\16ù\ 6Ê Ë\85ÌìG2*̬\10+\13ÔMM0¢|\8a¸\1dÙé%\94¶Ìô\1fÈ©pÅ\86`g¢G\11\94µ3p®×s/Î#\19\f\8c\81×vã99mA
+y\b\eëaÐ\95g£NM\96ë^\ e£\ 4\
+\1fôÁ)\83¦M®5 ܵMx/\90\0Ù\101\19\13\81¿±óºÌCÔÓÊj\1fò¨W\1e\90¤Æ-\7fÒ\0"=Ã>x½Kà:Ó\ 6ºâm«ê\19^L\ 1æ¦*\86\7f\17 ¹\8aÔ+òñ&bs\\91\9aÝá§/\1e$6ç&ä&\15\1dr\93\98õ'\91\8fÓ:
+þuºhç§\95\93\83Öl×\ e¸R=x×3r'1Yc¯ÖPôÕÓõ-ª\ 4\89|£u\87Ì?5!O\eöêû|3yúÑeÛúQ×Û¶^ùè\84¼Òº\93üTo&O?ºlÛ>Ú\89\14;ÿèH\9e¶î\8c§¼\91¼òÑEÛ& \87&ÅN?:!O[ïòD\14^K\9e~tÙ¶JÈC/\89/V?:%¯´î&\82èZòä£kÚ6±|hÂóô£\13ò¤õ\82º=M\ 2_K\9e~tÙöª`þ@^ò÷\9b\9b³ë\8bg\87ý
+\1fÁñ}\b'\89\1dÀy\87ú\9f:Ø0ôª`)ít\95F\9cRà\90Ú»ëhúîOÇPØ x\83\13a&aì,$\ 4!\ 3Ù)D\8fª;\95\98ı:\ 4Ä\9d\r0\91
+9â\16\92gc\15\96µ\81\81\1ed\86ÞÔ¾-?\7f\82\1dS©\8c\ 6á\1fT\9f¸6²\17\ 3i\8f´ØNç\11\10Q\86÷0'I\1f\94¼häT['Î2Ú\1fº¨ÃCÙ9!³¢½\10}d\9e\83\94¥ü\99|°\84N[¦\1fòDû\91!\15K? SZ÷Rî\aé5\91C§ú¹®\91\87¾Øç²¤\15K\9a1am\7fm\9a\18\ 3£³ß×Ý¡\ 3\81M"(¹\14\1dHFär[\12Üá$2>[\1a\803ìD\eè\92\8c\ fþ\rÈñJ,F\9c4\90£5à\99\9cRÈ\8e5Ø\85\9c½>ë\ 6?\18±7âl\bãØf-_ëÚ\15\ 2\8fäù`c\e\a\1c(´¼k3²í\8a\ 2\95Dÿ\90\8b\1f'³\10ÜÙ±`\´EE6F;\r\ 1à\1aiÂûA\9f\rA;\a JÐ\1e{\17\ 6í\a\90ávDÚJÃïhó\96¨\88¯ëØIëqB\8229P\9dÍ\10ë\99+\95E\80N\8dÜG=k\8c\13ÓNtÅ\9eítMçÍ\8e+2\80!±\1f\ 3ô\8dw|Ï3'\86\9cö`Mû\12tϧ\18ÛørÐSí ñØ\ 4y"¯Ø\80o\13Ä\1cm:\8a¶\87f\1d\e{\9cÛç:ø_lIû.zco]¶\8d\98Å!ÓKP\97>9X×RIqÜC¥Ó^Dð!ÝÞÙé\8e\18\80AZÛ\83\93Æ\83Ü`\a\9di\17\8d\a\r\89\10\1ed|\19&¼"ÇbO§2\92%ß\rÈCÖ~0\95¼\17b\ f\8cÛÚÏi?\98SÛ\ e%Ó\ 5^+\99 Úe#ÂU/Ä®$\9dçâr4bït_uÎÙ\r0(J\9bÏ\866\10¤hìu\83g8ú´\ fX59\920V¬íØØãÙ\aÇ\91)|¸¨Ùë6ÄÓÃàÆÍ¬´h-TmÄ¿i\1cí\94%\9bûnH©m¢A;Ý\v4Õ¶=a«»\10\1ayÖ\88r\1dÄ\97#®XØ\0öÚµ\92\ 5c\rr\17Ûh\9cÖ!â²äШ³6¬q$ ¶ÇͨN²\1fì¼8Äb\b±\8f2\7fð\9fú¨D¦\17\1c¥\91\13m ëõÎ\90\r¯ÏZåÄ$[\1dDÄi\e÷$£·\ 6\ 6A´¡\a\bdÔV\ 5¾FFÙ\eq6\ 4Û\ 6aò\an\9ak%\aÈ\eºqó ½ðaPb\9dÖ·v-h\16g\92s¶gëýb\9b\11±kk{pÒÖ´sÅö×\90Û\92v1åU^\vâ W;ñQJó\83},÷mÒ\9d$TÔV»Ü\16\9f\85X\94\1czk¶ÏÎ\88É\1d®ëÖØ]Fÿ¨\14\16Ç-ø\86ï\85ÎøºC\ eu!Ö\ 3e,\1cÁÔJLÄ\ 62ÿ\1cqqöì0سÂ}ѪÏâÕYÇF\16`\f¿\97\¾Æ\ 2\98Þc¼\89tÔ\9dÉ\8c\18õú\99°'£öÁë\1a³IëBjüjöyc\15\83d\ 6ã\1frgýB\r\8aÁ®ÞA7;¤p\19p\86©Tä\aT´3.ÁìdÆK%]\1c\9fÍ©=;\98tKøøÚ\ e\9c·\19+®³?\80ï6¦\19¬g\fõ4¦i;\eu¼\8aqÍDX"\19^
+Æ¥#R\ eËM\18\92JÂËÏ\9d\8e+7D½Ô\8b\ 4\ 6¿áy}\9aɤ@î\87<RWÛ\18Ù]\1e².5Cw\8dÝ\rJdæ\ 6=ûÁö¶oÇY\væ&\1a¦Bã\a&¾1My0^ÇÜê$ÚN#\9aÈô\9b!§Æëúdû\9de\ 4\84\98Ú\ 1íè\17X×ÿñ\84\ eCÛ¯\80\84ÙÀº¶"®ÊéÚ\88V\15\9e\1e/\98!mÊ\érë\9ad\81d×\8cãºÉôz¯\8b¿è\81u\8d©2\89:PíZÒò\9a$\17\11ÞX<qT\0eË\82X¼\ e\ 2}<90êòÁl]¨òknÄäìÖo/Ïú4n\90>\19\9bbè\8bÍc\1c\9cI¥I;ëë\1a\9a<Á\8bG\89mXÁ\876\8dõN1\19£ïÛ
+'\9bÛ0Äðö-BÌ\98~«Ø³¹1®84âl\ 4ãu84q\89ò\96]\87\92\1f\94B©×\15¦{I»Öuºù4Q\83\10³\1f·\7f\1eLæ\e\90ÙV[í\83ÞÔÔÈ×öà¤Íz½0¬exÎÚîmB4á¦J$h\9aĨ×7âcb6b\18gM\ 2 Ø5z÷\94ؤp¤\7f]Û\83wvÍ5]\80\8a¬JM!';\17Czë\86ðL}¹²ûÑ3\e\9a\19UÞr0S#ÓY£s\13í¸wÑ¿}h0ÊË\19B&\8añ\\16U0\81ù\fz\86b\12µHÚ5!²4\87<\88\e]:\16!ùé³!ë¢Y\16=^EÙ\87·\9fëÆ\ 2\92ë\97|\81ðK!ö½\9d¿Aª-
+9©¶\99\9b\ 2\880\90([ \99 [\ 3ÌÔJb\95ãÆ\ 6\18ü\1aEg*ölJY-H}\88FÌ*\87\ 1,˼4úì\10¬\ 1§¼\1fi\9a\82êm\ 4(\v\91f.\12K_Fö´º\ 6§FEf{RÛ\99ê%Ï7\89¬\17·nemÅag²ýA3µ\92£wÊ2¨©\9fÚÓCj×\92\b\15X^T\ 1Ñ-\96\8d8¨5\103\92\87q)u\93ã¤éñC \90]a.\94F\2iV\91h'gÚÕA\9c6\ 6\97Cjúy\18åýªjèó\19 ]iÄ{\93_Là
+M\92Ë"¬\1a\7fK\92ï\ e\ 67µ\95\ 1[^¼*q]\8aÆ £k²\12ÄY\e\87kbÃ0ª\ 6¾39Ìì_\18\81\1fÚÐ|\19{Pr3·\fÆLíLö\ 2:\7f«\84\12{\93ÈÛ-Î\94DÆ,\92³n½\89Ç·ÞvÅÛ\1c\98ªÙ\8byU'fhO\ efø$¹µÛ¬\16+d×uc\13MU@Â\8c%1ú±ÝÞ76Xl\1aûÔ\98ó \ 2\ eV,7ùd\984Ðî[§¶\10~lE/±á¶O!ûÕ85Ön\13\86Âä\94xÜaËý鯩a\1d\16åúã]Û\17;\10ãÚ¼¡\ 3J\8bj\18 \13mÂ\8d{ëM\138>;\9dì\14Ö,Ë\9a\95}#óðm\0\14\93\84Øeã(Üßk\8fíÄ\8c£\82\ 5Â/Ò¨ Ø¥ÎÔ\19¦z8×\eÑ÷#QNC\91>\98êáôÞ@vʦl\15ãα4ÕnÖ\81±gAçRÃ;¬gA/\19\18,[˦«\97Q\94ÒòWB\8cý¨Æ\99ŨHª*{ÖØþDÁ|ÃÐ:\97t\18¶ïXóÜZíJjc+v!òZis\13\9a½0¤\89º§òk\96\ 4\ 6B\1cõK\1f\aS÷F;¤\eº±Ý^åAx\19²õ\81q"Ò\87ÔL\88³¹\9dJbv¯S\6I¬/\83\193»¤\9e3æ\1auýä\12oä!ëÓL¥mä.\ 5õá\987
+âXSÀ\ 5\93³®\17\135§\98\16\88¬Ýs-' |Æ®ò\91CA\17;]Û\84]lzÜõ8\9a\13\aä`¾\84\f8Ù©\92\ 3v\94ܺ\bï8]ß\b[\8f\1dÁ¢\92§ÛI
+ñk%k\0)kä\95,nÆJN\fÏæÓ\bhR¢ø\ 3zMx·¶Ý\13ù \eÌ\98\8b?D¹§\85,æE¤\85Exõ©\92U\88è\99X©\1c*Ñ[çÄç¶®]]\9a\ 1&½fàiÞ<\14ßkîJ¢\81H\eU\14ß 7\a±of<T¦:Ñ÷KñíR´µe³íZì\ 6m!õM\9f\82ø³¶[:A\88|\8aYYF\8eÎË\ 4\81¬v\86"¦V!2\9eP$HäáWb6Ѽdql Y\ 1\10 £=\eUv\ 3Ð \0/\12Ã0òØ26\10³×\8e%l2mU\r×è·³VgC\18Ǧ\8eQ$Ô\ e¶Û\80\f\13×H\8f@\8d^\17_\12@'!\87\14mÈL\9cA"ù÷ºfõ{(°\93m§DuI\91Ü\8b\19\fÉx]Q'ºG8¥od0`\12\93Xý\10%Oûéºvu³\95(~êQj¾Vr\fæ0ï\88£#\91uÑ\84èÅ \8eÜ1}s\bu¦\950R¯\89Èz\r\948±x\98\14¹ìÁxðÌuÔ7O\ e\ fê¨<G\8aé$\9a\96\8cPßÁ\8e´ký¥\1avbí6«*\vC(1\98hW¥Ëp¸¶\a6kiâfdVÄk%\87¾é®µo\87J\ff
+ì²ÑüÐ5\89Å4\10ä\r÷&9\9bo^Rá\98\ 1 \8b4üæY\1fT¾ÔP1mUeF²\90þpí\btÖ\11}ê\aå\83\8cÖ¾6r,\8d\91f\9e¥Ä\ 2<I\89\b\rV¢H®,\8c..F!\v«"\83\8eÁ\9eííY\11ýÖõ@»ÖwÍ\87\ 4£ê =ëY=Ú¨H\16$D×n¬zR\a%v\80ë
+\11¦¨\13m k\9a\85hëÒ@3<÷t©é\80\19£\91ª²Ýa:g$»d\ e$ú(õY¥ô²A\96o\9f¬oÔîWàVMñcu\86k#«}\ eÜB=\ eE\0Ý"@\98\8d\ 6\9c3\98ï´Ù\11\10Sg \13Sû\94oJ\9bÙ÷\87k¿¯Ó\80DB}¯¼\99ó{mäìÂ\84lD\13VÛ¦\1cÝ\rendstream\rendobj\r360 0 obj\r<</Length 65536>>stream\r
+ÐJ<±\ 6Bk@57\12\a{6+\83Yôà¤Ð(Ê;פ±a¢ëvf>B±\80Æṳ̂34ï¿:Ãm\91|³kud\eÒjSÒ&Îz0vÍ5ÀÈÐ|,LBéÍNéÛæéºl¼ ¨\f\8b¢K&\18Ðlhë9Dã\e%k\ 3e"\e\94 >\8fE\ fÆ®¥\86\90¡/Ôº\16G\8e\14\82MPÈ\86ô\18\92î\9f7ÎZð.Ù³©X\ 3a4̪ùåÍg#·g}°\ 6bC°TfnÝ\9a\rá\\98I\18\9aÏx\90>\+9(\94\ 2\9e}á& :Q\8a\ 6\1d°\10}1¢Kz»Tr\14³L¯ú\98\125ùC';tm\ fL\0\1c${4\9fî\9bw\84ä.\19Y´l\10eÇ\83\18E÷er\9bÁ\1a0ó2\1fÍΨb\83e£½J'½\97+\aD\ 1y\80\bßæÉú~©L\8e(\ 21õAèÍ\83\8aȬ\9a,\10ÁN\82\b¤\11U\1a!útixû\a\87"»u\90L\92§ë?\87~üÛ+J\aÈêRìF\81xwdU@\91((hC\0ízÑ\ eh \17©\ 1v5§\17\95Xá¥Y\910\89X<Yÿ)\10Q\99+),2 Õ\9b\12»l\97g'\88)\92{\11²\80$\ 4_;UrîìþóY6\v\88L0\ 2b@I[!2\ 4@\88Q\fp${\81ía\ 4C°g¥z2o1ëXgÖ ,F\12+\8bêB©·\85.&b©e\0
+\ f\8a2½AkRÁ©í÷¾t¹)Gãfå\87\85È\98\fYM=qh ï\8c¨ç^t&Õò:©übí¾A\17ë|i\e\9e\1dvÅ \8d\98\86N&\17E\1a\ 5\84\85k¿o\82b13ÂdÊÐ\80xMØÀ`DɲÊ\9d\9e\87Ô\1a0½¯\13\95éTÉ\fØÒ#àý¡}ÌÖ\a\97²}+i³\84º[³A\9cËØ¶Àb+QÐ\rè\82n[d\1a\8f\9dîeºh¤\ 1ØPlãѽpªdu\ 4 Ý"\82\90Ë\9aÃ\92\9b©£¾å\10Òæõ4\84\92_H\96Ny\eï\aÑÍ\1cä\ eSG`\b³6\9d-c(±uË9ïl'¸¨ßâí'DXh\84¨vÔ^ý¬\ 3ê\99Æ·\86!é³à$&¤V%A\88êz¢ \8c# ²3êN21i2\86\ 4°\88\12u\12\9cXã\84\98\98\96\92#\eìRpÉ\10\81´
+\94 ϪG
+«\90äVqÚ'\96æ\90w£áøz-º*ïF\ 1\88²H´N5\0û]´¯¤Ò\1aPS
+\11Ϻ\84\ 19\11t\e\8b$A¢\eysj§\99i\97ôxå,ö\92ú,\91\86ºXÅÞ\17A\ 2S\12ºØÞ\97t\9arÇt6«Þ¬ô<\9e^\9ahH,|«èñòmþ»æw"9f{¶Ï:0ß\18e§^M\12õªÅý\9b\92o\r8©´\80û%éÖpR\vL÷K\92]ØI\96%iµ´\ 6P¨M\8f\1cr\9a\bIq´ìT6Zg´A\1do$³\9c¯°\12ìQ!2¥\89¬A\14®\85Ì\1eòydÎ ½NÀ\9bÍ\10I\81Y¼Ý£6a\bªAMEëí\1eBÎM\ eGÝS5Y\fæä3Æ Û\86\88$°~vÆ÷`\8f\91ÍEày¯æ
+\84r©\9b\ 1FNgæ\91*"\9a£Q\19Ì\9b\r:Aµ:à|\93=ªð¢p\16i4\9ba9hÄ\1fÉ]0ÿe\ 2bR\88¦¥\15ñËj«ªr\f\88jìG\8bRóTºÑx\14ÕÛ;H)Ñ£·Ù´ôö`».µ©õº4L\83¤ÄÆÏ)2Z\ 3Å5ùtð6]L*(D?ØÄöªÛ ÛR\18\87Ы¥\19\r\fÖ[\82«Thm{£\8c\97\17Ãñ\84ʬær¼\9aQ.)Û\84\9d¾AT\ fÖ átm\rEÌ·SßöÆ`²%ÑãBÎ\13Á9\ fD¾\80Ü\9b'\e\1f¤}\9eD¯\1aÓ aÒ &»¾hDÌÊT¥,\81\1e(oO\ 6gK\9eô\9e`ºp\13NÈ;Ûëêk\1e\14öÍï\8fÖ?
+\ 1Bì\95%v\92\95î\\a ¾\97^a¾JÔ\9bª\13\v¹\10co\13à êÖ\83híÒGzjäl\86EætÖA$ë\98\ 4Å\92è\9c\11K×ö\17,S62Êe FÉ%[!èþbæÓÆ\93¼íðh\1e~ÊRÅ\9euÞ\eSsº4¬Æ¤\9cZ³øh\ 3ÙLö\ 2¥ÄÐðµªq\vÑÀ~Ãä²E^»Æþ\86Nç\01ðF,IO.\92òÚ¸\bZ³\ 6´º\ eø§M¢G)/kµWÒÐ\85`ì7Äöz½sí\ 6B½JY\1ao< ;\81ú8U\19µãñÙÜ+Ñ0QH¾lÂ/ȱ×9H^90n S
+£JÏ]g\18'ªS14u*æÞ\8cAÉ0ØÈkÕ\901±H\8cÆÀØgoç¼\11×ë\95jNê;3\1c!\89C\9flwõª\96\16\ 3âáõ.\8cÝ\1awb\1cÄ\86ÂJg6Ýb»\97'½-\8cÁWP\9d/\e\9fò\83\984PÊlÔØ\9døs\91rZ\95\15|ßШÈ1\1dÝ\8aä,ÏÆ¦zvú}&\9cÖ\rgú\16\9fí:{6aéõÙ`"_Tû\14\9ed\ 5\169\89\81,ñ 2®Þ¼\7fHª¨0\86Aå\ey¶o\9cÃ;û\98\86\96è\12X³R(]N\9dNl¯µ\ eùh¯$\88¾:/ѬÑ\bEïl^(å\9bÃ\88I,THlΡÁÙÍ\lºÀb\ 6#ö¶]\80\85OzÛ\89%\99D*µº\88\82\85Dæ~©KE\ 6ÑÛ~\89\rl0Höf!º\10Uäè\15::°°ºa\92½!u\86`w\rK\83Û1@\1d\ 6¡Q\b>ÕGG\9f:\9dtò-\13#\ 6\ 1Î\bqdÈLÎf\9dõí|\12D(ÄØ\9bä;(Æ\a:côCC\1e£d¤\ 4ñ\99
+§6\r?v\82ÎB@©Hh z\17[\ 3AÒïB§Qé[ÈC\9eÊï\9c\82$<\8e4\9dDß´Bl\ 3s½\ fÁ\ 2û(&[\ÈÀÊ\ 1Þ.65R\85f\ 1\1e\1aÒ\0Y÷\837\11khÜ\ 4*1õ¤ÆSI\0i;\81J \10\93\89ßÙ\99\1d\eíöÍêdì\f\19\1az\93\94³À\1aP\7f¶\14¿Ø_Þ\8eóDæàÓvpà¯-½6aÎ\9dAª\83\83ØI6\a\15á\r.\81rq½\89ûIÍØ\95¨\ 6Nªâ:_£©ÅÉ]b\r¤llÝp\8dhÕ\9bÙ¾dÁ{!-`4\0\84o\b7|¬\18\82ÐBôP\11'\9a\0®[©\f"JË\95а\8aÈ\ f\9bmÉ\18R$Ä\9cí<\17a~h³Í@è'ï'o\8a 3W\16l¹\9dÊ©C\92µeͰv]ç<6à¼I\9f]\88íÙlbSÔ][pר¹kK\vª\ 2Y\86æ#AQ\ e\81O\91£
+\9b-ÊÆD\ 6(Ùµ\ 6bk\80·¦\12»&RË\86C\1d¦4Ê&\ 6\8cF1&\91\94Áé\15\rT²$á\14mEÁ÷e\8c¾+\12Oa¾\10×ð&\16Í\ 3bgj\9cÅ\90®ó\85\80Ü[>q\90ûlÞÀ"R=\1667'¥k
+\ 4O¸9)ÇÃì£`\ eXADG\15ÍCYú&DEóJÐqi\827¹\91\10û¾Øe«á®ð ë\1eÆ\ 2·ÏÇ\16#0´°.ø=\15\94\86\v4¶V\9d1.Zw\81¤\90\98A\19ÒªâR\87\16Ê[Ftá \12\9b4\10Ì\1c"3謷\1aýj\8a\9d\f6\9bFB»Q\9b\83\1ct½- \91eP\9ap&ð\ e\94åKɰ\9c\83Að
+ÊgZ´¶Å\16!\vý`wÝ\10ô\14 Ïv\83,9ãD\85\86m{¶\17\91\r\ 5_}gÀ¶(h7Ô\ 4mA\81£o \95\9f»\16\18^\ 6{´éÑ¢~\91h1á8$\ 6cD%PÝ\1c@\f·o\95`L§ÓH7ôªÏv\ 1\17\vj+\8d\9f'\16@\10\16\8dq©z^\ 4\8c+-\98$WÔ\98M¢Z[iáð¾Í¬ëìk\16òZ\b\17Ò\ 6Ò\90Ì1¥®\ 3\1c\ e\98\12Ì1\15{ì\98Ü\v/X×Y\ f\94EÓ³egÖL\1cÒng\ 2\aë\92\9e*ÙBù\8b\94n\16b×ü¸\13?\9c)EY íÖn'P\11b¿\15«WZ\88$`Åæ!T§\r\11q~ô\ ew>¨w¹tÉ\90h¥Áýs;7¹\98ð\8fo\85¡¹\92\9dÏöd\v\9e\83Þo\r\84¤A\84Ù< SÌ$ ,\9dIxÉ\94\1a\16\875Á\8dö¾S%ÇÞBX\ 6\15\93Qa¨AR}ÖàÙÞÜ8\0yôÆhQú(\ eê£d\84²\10Ç ãê\bqÐ\vPóHX\ 3\86ôë\9bÛ\e³Û\0\1a¹\b÷åp-Z&·\80úlEJØîà¬\81I\14zo\ e`\8ba`v\83ÒÞÏÎÂìKßÖf\84£³rÀÑ[=È¥AÃ\×üؾaÃ,*\16gÀbÒ\18\8b?n:gÀdß6~×·°Qß\8eÈÂ;nÏ\1a,\97Ûru+÷beVâ\18`\12ÊdÛç\16\19Ý\17ß>Öbî\rø:\b²U\88±\9fÌA\8bO"¾S\88%\el Dç\8c\18\rm\14S[Åa\12\9bÝ¢+\ 6dÙ¶T\19]ó_\971Ò:Ú\1c\94N\80Î$·\b¢¡]!hÕ\19±\f\16\98Gð³5`¡ïY\8cß§F\8e\ 6!b¢
+eìÞÂø\f»\8f'[äË\bÿEý+q\80\10\ eÖ\8fLØâÎ\93\84©\b1\8e¹6\94\ 5\16×ö=6h\18/§`@\82¬q\1c`â¥õKu¾Bpk\83.¶ëÕO"(|Kª\ 2roÈo®ú©Þæ}»ö\9cA¦b\8b~\19\17íÍ Ô ½wöléì@°Ð±\8a^¡ÅÞ\ 6\vAB¢ZíA¢\0}ªT3Í'qr\8bL\17:KB`1|È|¯ÀÌ$µ#LR4¼s\14\9bñ\91Hð-î»G\ 5?!ª Ähò¶\10¨Æ\9aFD\87)\8e\9dT&\12²o*\8f\19Æ\ 1y)¦Û\f]²\85ÈvÉB=Ê\16à͸\ 3Ó¯,âª4åʰh¡\18TëS /\88Í\bÔ\94T~Jí\ f~²\8a\80\89\v-t¶\97Ç\18¨\ 1\9e+\ 3\94LÔV\ 3
+Ö\ 3Ù;ÓÝs\8b\8ddÙ\eÓóDZ
+.\95V\r\9bí\9e¨\ 3¡¹v1Eg\8c
+ähпè$2\ 2Ä`(6JOG+V\95~\82¥ç³\16\ 1l24?f÷UP\ 4\1a\88-´\82O6»L\1e\83Y½a\89Õ.ÃÍí\81\ 5\12X\9fí[`²\99\85,\9a o
+'\88¡}¿Iµx½EJ²z\99\10S;âQ\91B\80,\8f1w-ªüÍ\0ç2Ø\86é\86\ 6\91\1e·ëÐÆ:4Ì+ÃHÌ\ff\96¥$E^\848b\ 6\83/Í\bVl^úÁb\1fùl\8b\ 5Ïúú\88.Ô, ¨\7fÞ[\10ÎP\9aù\ 6»Ì\ 2Ò-®\1eùü;Ãå5£Pn:L? \bC=\95lÈVÃ\84Â\10Ùn0\v\88GõÈ\16\9b\90úb\r\94Iª\15\væ\85}´\ 5\18ÆÎ\8c®
+à ºÒ¶6\15U\8bAè\9c>Úw¥e\v\88f\1f6£-XZ3[\17±àÊ\0\82\ fÍl\1d\9b Ú[ \ 5LÔÞÆà\8b7<SI½å¼ê\93\19\93µ,\15vÑ\10G+» XYCµ\ 5ÉÔâöÅâ'Völݵ\:B\8e}ÓÎD %yhâ«\8c¸\12]Ã\90iI\ 2!\9aè\8a©5tE×\90EØ]\ 2¿\81[DO"¦64\97W\832÷]\eXlI\1eòq6\1f\90å\9e²89!¶cd\98=\92Íö\8d\1d£®)¢<d\ 6\rî\9e\9a§¦\97¨õ\13ux\99Ö\89\87\84h+\9bÄÊ#.¿\11DMV\7fb\9eÀ8Ƥk_³Ä°M¤3!\ eö©®yü`ñj 9Bg\8f2×®vÖY£æºUIð\\eè[üÊP\ 4µ\83^eKñ2\98\1fo̼\ 4N5õ>G\v®)Q\1d\8ce\ 2\ïG÷·©ÒYòÕX\ 3º\7fÜè¦îû!Û\r\15,¸Àf5K\10¡\81\ 5º`AC¢\ 1\92è\83åVr)X\9fÌÇ\f\81qèÇ\ 6¢\9d\fó¯:Z"\eNÚà\ e\86ÈÎ-\1d4É,U¨ß\12\ 4¸\83\1f¤¥\ 2é\a#\9ax\9c'¸6æt·°ì ¾ÉJ´Û$«Q\94Dõ\8añIsß;ÔW7NÄ[þTÉ£A§!y|»»YÛÊ+1&ûX\9f\eîhÌéÃzY\86ó
+\93è-ªrò,cÇâ\98\94\8fO\8e\91ÙTbO´\81Ü\8e7\1dôÖ.¡»QP\e\9d\81\7fR\8b\90\93 HÁ\1dµ\980\r \94gí¦Ë\92RÐ`N\96íM\8d\0BÌ\8díH.\bÁI5\1dÎ\a;c\8eU¡M\96fx'\e\18ZÌ«b\v\\12\80Slª\83½ß+\9fN"\eéûíþR¾çú\86êÅM8~¾ïíV\8d½7üXtíØ\86\86 ³\84\11©\85\13\12\80f¶Å4F\86äI\10\88Ä_\bZoÌüá\r\90ãJÃ%÷\12,(Ä1\84\9cèD!&\8d\9dÆÞ\88c\ 3Ãxy\84b\91bDÛÊl¥lÐÍñ¶/¥Ó-î»\89NTºI \8c\11i\8b=zct\f\10\9dMÞ\90 \ 5\82G«Nnâ9ÊÙ 1´Ì\ 5u±\a®9$,\ 6\85XÙ1s\00\99Jk\89\97rs\9fû8±p\14\8dÐ\15r\8bI£Ã×È¥\98Ð\99\14 âÓ\84©\ eQÎ\98O\rÒ\93\85×ËçÒÄ)î\15\93Ê\8axv@º^Ã\ 6!\v·Àx\8d\9b¨ä~"7[ø\88ÇY\89ó\19Ï\93hU3:\92ì\9dYc»ÎÐ\98\bÙrv \88K´\12KË\16Ñ7t\eÊ\81´\v¿4n\arÓTrríÙ¦§èiBñÄ\10§w3ß\ fc´KÖ°r¸\1a\ 59\10%§\99`TP#Ý\9bq\91\11½Ò\0p\7fvaDEôÔ\ 6\ 6oé*zåSÁ\vÈW¶G\fÖjÒì£E\90pÖê ö\10\98/\ 5ý\1aàé5±ÏPM\95hÉ@³$\9bh\r$»F\98QåTÉ¥\eo=\ 5îG@\88-Ö¥\97«\81õ©\8c-\8f°\91\90ZÀ{V\1d¸\12óD\81bV=\10K\13Ûz)ü+\r\94IºU\r³] >ÈÌíeÔØ·\8fù\16Q\90Zú#\ 1ó\93h±æ²â'Öª·\rêõ\ e puÙ>ôö6j¥Ø&pº7bg8WS`¤K£i²+\16%aù_Y\a3´÷M\96`\ 2÷ÔF5ä\16p\17\9c\1eòúô\98©FNhì\9a¶\94Å&%Ä\1cì,W)B\99jt\135Ü®Ü\b|®i{\92#I\9el,I#g\8dj½R`W¤\13¸¥8JN\89nlÔu¡5PZN\9b\18\15«\15\9dAø\84)6òà\86¦.iÇ<êÄ\1aï\19Ú×\86æååI \1a½\80\86dÁ£\9c°Øà Ô\8bDL\8aL3Ó®6\8bK\88£% k2\ 4\12-N8\v\1a\ 4Dµc ±áR#õgÓ`\92®\18nzË´Ã\88n!²øI\14§\91 \ 2±oX¼^DX\10s»ChñrJde"\99ÚÒö'\9d -«\8eÎA\99êç
+c«ÄØrý\98³\9eä\12M3\8bz\11GÖÕl\97¶(1±è¡áÖ\94\97\a\ 3\16P&\15n\84Ò¨Å\8cá¬;\b¢3d0M\19YW\0ä\96¥"+?L(\1dm§\14µ\91'³ùO|¶K)MÓ±q O\95\9cÛ\11ål)±\89ëQ5\8b\14$£\83ô êàÚn\98\18\9f\14õ\9dÂD±p
+ÃÆ\83-ã\8co¸K¦3né7z\81<\8b,m\fYá«ÄS´ÌbÎb\ 4à\9eíÚæNíÙÒ\8e\85<÷ë£=ñl\13\18Ä\ 3#ÏFÓ\8d\9d\1e\19\10];\ 6ÙPç\ 2\97i¹\ 4\ryÉXUSdB\16±Ç"\88äY\85ûö~¢GiN\ 6y6's\90ùb°A\86xôÓ\13r¤@~sI\9aP\v¢ ó&\90\ 3\85\8d67¾\8a\9f\84ùZ \83ébæg\97É\ f¦\85À¡í\fÉæ\82.ú`ÁùÄ¢\14k`\f\98\89¹óc\ 3-T SVK\ 4\89õVÒ\fÉ\8d.f!b\8e\8b5\0Ç!g¼Þ×"CE{VwB6V\r\8c\8d
+nÌ7aè¡\12Ì$\ 1ñTv\8d\81TN\95\9cBCTzÑ©\99%ÕB\rh\1dÐÍ\1c\enn°ë\ 6Ùb½yý-`\ 3
+\917\90¤T«\91\1e4\b\14}\8cÖ\80ÆW¢¿^?\16&x
+\ 2Ê\85¨Î\v\ 2ÉÌP\80Ã7XoÛÜ6e\92ȬÁ\88Á\19 \91F\ 1kÀ·\80\85\f³ï©\92»¡Áz¢\ 5r *°3\RìtÆPxÖv\8d¸\81\84¨#srå\19·R\a&c|R¯ÏªÑ\8e\11ç"ª®\8b\r7v\97\94Lh\9dñV\9br&{T&\9a[Ð\1ej\95Y\ 3\1a²Ë\b\rÓ.\92³;«·\90KrwÍDE \98\18\8dx\8d´Ù\r¶sQ¨4Yè\8cwÑîøÜ|Ã\ 3õW¡\95\11ØÙëí8H\86.îû!´ÛQ9\10\96Á{å\14¨ÆÞй\82\11 qÄ\90\ evï÷f´!\8fóãµÉV \92\93%\8bÉrxbç«Õ\a\17¼³À\93Òt)\14qÍÖ@P\8d!"?\9dõÖ´r\14änñ\15ôCI\ 3Ñ\ 4%t¬ó&ÿź\97\8aÁ¶¬ÝØ\8cD\83b\ 2ItÅpâ#o\85ô\93\r±i9\ 2"\8b0\e\92H\19H}2x[\ 5Âʤ\81`\86ZF\96É\1d\87ÒëjR4¨"\89a°XÂ\1có(C2Ù¤ôÀk\ 3a\12\a§±qÑ7§\13ze\\1c\8fêu\bä\893©Ð|\97\83d/Ò\ eèe8â*¥\ 3\83\ 1\94¤î\1a\89\ 6\ 1íM"ëÌÜB\94b?\91¡\93á:\93\9a\8aI´½a\971dà`Á Mß\88\1aè'\aÌeûVj\8d²ø\98\10]Û\85Ì\eh
+ËPÚ\uÉT\8eì\8ch÷k\18Z¶"ð_»\85bgé\8ax_X\f0Úímº\ 4ó*\8aT±\89U\1d\17A:\rãÖ\ fMe³T\82X\96bj\94kø}\8eúh}´·\90»\86®¥·@[í\f\ f§ì\ 1ÊaC¥\1aàHuF»[% _ºß0Þõî6åH¡:<³9¶\ e\14oøb§,\ e#\18\1aã1}|\10Ǥ< \15ü¼\8d \ 5ÿ8Õ$\19Qk¨å`Z¯Å;vRÕÄF 6ʾ\13CÖ©\92ëV\9eƧ\1cQ\9b.-¬ÀvaÈ\96d\9a z»ÞC\9e$\1calÚ©\92S²;¬×ð\92\90>\f0Ò\1a´\12úv+¹\96Þ\90Ï\9a\8câ$å<«^\ fc\88ò¤\1f\8c!\13\95(\rhRCY]/|:ôbO\169°\93+0@\10\88J\8cÙ®÷\80:\1fÖ\83¤jHè-w\ 69T°\ 6ª\10Þ"åÍÄ\16ZÆOF\8f:}TÍn\94#eÏ\84æ\95fàk³tD³\f ü¼X\ 3c2\18'·G}r\8cÞÍÞn\9aJ6\81ε\83_\89©mШWU\88¦G\90ELzà\1aæ·
+Ûf\15©\²·@]K÷U\89\13Ö\9bÅx\19\82%¯5np¢\rÄ\16"RÚÕ
+KR0FÕk\91YiÄ\8fsni\99BËiL\0¹n\ 6\ f\ 4¨]\99Co&.KÃ0än´P¹dGÊ\ 2Á`8k\88fA-\91¨n5\13\82OÔÈ\16\9ah\e\8d©Õ\8deÁ7j\96$7\9e§8¸öºoñCEãb\ 3J Y®\1eo-j\92J®B3\1cº\89¼Ýrh¸&$\8e¹\82@T z\1a\9f\8eQi\80¼;VóAp\8dQºæ\97\rà\18©\11ÛÑïZ\12\ 6\96\1e°o).\89i\15:kÕ¹\96\82¡s£éÓç&ô\ 4+Z\15:ÓÅ,â@\9f\1d#<\92ÈÕ°\9d¦vÂÆmÛID\9bÌLÒ\85í\fäÆ3"rª\1fÙr7qâ\81\,Æ£Ó½\fboü@²AJ·ü\84¡\8d&á>Ù\1a\ 6ÝÇ~0èÅä<û¦ \91#\89À\ f-\90\ fKg\8e\13_,¿,\94[\rG÷Íß9 ¤ö´\ 4+K\1dÌ\84\9e[|¡ÓÒ:\9aÜÌFe\16JØÊÇl\ 2Å"©=ñnƼ²0/ßêÆPµ\96Õò\bз {ß2\aÀcÐ.\v\ 6«\9awÁò:8ܳæ\1cè[\82\10 B\10?D´@ÑÜDux-Zäº\ 5\8a¢ÕÆ6B_\8c\18ÛN¤æj\r¸\16\8dîÍo2\ 6äÐâ*D».u\9fËë¨\1dÜæË\92Á¡äjn\19\11\ 6#β\99 \e\rk@KÂ\86Þâçye]+9\8cÛ9´\9c\13½·;Ãd\ad\81p\16\7f34>å\98]Ó´¦®e\9c\88c\9e\e\vë_ôÀ2ôå\86Ç\1ad§_+¹HP!/Y\8d\10\9e\ 6eäØâ\9cu\86)Å·@X\88\ fY\85¸\16m ù£Iü\16÷»è\81e\89£@5\ 5S^7²\99Ö\82V\1d\9a ç%ïºÒ\1aT\8cÕ·Nôý\18ZºÛ\98ìÙ\10Ì0§\19x\97ß?±R¶\82j/æþcpàµ\91\e$Ä\82!I4¯SÐê6 ¦\86CsyD\85¦Á¼d\96ô\aPQo\95Hb{¿4\9cÇ\bW"\ 2ÕÈ \ 6<}¿ù`[âÀÅ\b&;6º ð×*\97\88vÓ\e¤yt.FJ\88:@3\98P\91±%1¿í²Ý\13©ñÚÉwYa85ݼô-\19¦ZÚ[è\96\12-d\10\11öGo\vûWx!\1eUÏ:\89-\16?¶|
+³\ eLRK¶\04 _7²]ëDã)1Yz\11³U¿\91u7©Ï\ö¾¡b@\14Ie]\ 6ʵ½Ò,w\88êr¦-ôãáÁ\rf\82vÛ\1e0\0´ð@Û´o\8eA\8b-@QÓå£\81bÖLË÷»ì\81¥EË\12dEK]?VëÉ\13\14=ã\0,\12!\97æ\ fï\14q\ f\9e\91\r[kyðg\b#\v$\80sÇê:\15Ì\97ó¤¶\94¤RZ×±1\93¾\9a/S\11¥§eÒw\ 6ø\902È$\86\16jÒçb\ 5 BgA\82}+i\a²7\17-Í--ç}Ì-O\87¦\9e\8b-\7fmiá\8fË\8e\8dsì[KÊý6ÇjJNªõ Q\ 3îa\13\1eÃ:roþ*\83¾\b¹\81ö¢\95Óè'NΤ\94\11`¹úv°Â*\1aéÇ \92\ 6¡r\16À2ë½\r«o\90÷,\ e\18Ë\8dlÑDYmd\12\98¢ÀòÜv5ê2ô\86\e\89¹\85jô\12h\13§\80P4Ð\9bG;Z\96¼E\ fÆd\7f¥áo}j©þ,ëA¯\19m\858\18\98?\8f\99ú,\aI\12ýæD\eÐÔ ¬>¦@ø®\81_zµ).¿?n\ 4K÷ZäxØFpɲ¢\13(c\87mL_\9eÆ2s\8bFNǼ\90m³ûÜjï\95\86¸ÑøW\8bv²ôýEÂv\95èZ ¦Æ\132q¦\9d\17?\89èÉw\86¦f\17,\16\8e>\82µý:\19\93\7f®4lý\8dÎܨâpÔÐ*\v%ó¡4âX×#\19Ö\9fÏ\ 6sÎö-y¨A.\91ß½ø7\8c¬1Å\96Ò\9e\fÏÖÉ\ò8à-C{\998\83ûVlpÙ\88Ý\ 6Á²×Y®úk\vÅ\8c\86\ 5¡Rh1\1dfÙ--\\1cÑ\9c-\1eÖÂø\10ýÑYî\8bä[hK°$\8ed`Y\1f\r-<\91Î\8fµý2ÙÏ·È%Í_qm\ 1\86-)\8e\15î\ 3Që\17\fRiA\88\1aâ\ fÛnß\822¼åt°¸äÓõ\9f\e'Î"¹5·\90M\hÖL+\r\ZÁ£^m°:Â`¦@J\1e6Cc\8e\94\96\95¸% ¦áS²%,{pÒnøa°0XÞ\81vÃ\97bkZZùÕB\9f¦rÃ\92\87¡\91g\8d\9c¶,ê%Z`=1¤\96E=x3]Mâ4Æ\9caÙ\12x¤¦×;Ñ\84O,΢\99+sn)×û`é+²Þ@\88]p¦Ç¤Þ\8f\r\14ßRĹ\96*\83\15gTçiÑ\13³!\8c\19âg-ÛØbsÔx\v\16\89MDlYH´>¯j]yLÌa¢X'W\8b\12[fÎäß4®çêÁ\1ec\v\19:zäÁY¹\9dat\97\8fõ=F\1fÖ² M1Ú{h5&¡GÍÖ
+j«âÆ\9fÌgÞ\0\8c\96|¬\9fÖ4«"¶øÑq\9a\1a2H\fí\8b/Y:òÞR=0»a¶:\0½\85da\9c¸OO\8dܼ\97Å\89½Ìõ¦¹Á\9c\0P\85\10\93:\8c\9c$2>Yÿ¹±\0B)f\14¦OÒÒ¢«ÄB\8b\8f!>|×r¨8É\94uº¾\11k=¶\8c ^¢p®\95l~L/aSB4;\ 2óë\rJ4«\8b\9fà6ÞÔ\80ÆØNÌîË\1e`\ 1þ~0\1cþú7\87_ÿçÊO¬zÿ»\9bg+5ïIüìâ»Ë\9b\15ò¯ÿ~ssv}ñì\90ÔÃJ>t¿©jÛ§¨qÿ\ 3\vлÃ\8eÿÿúÇúË\7fÔ\1fþ§\92~8tÝá\9f\ eÿë¿»Ãgxô¯\aGy\b\11\89ÿª>\ 3ã\82ãùË\85ÅgË\94|ºJF\1aB\95IÆ&Ö\12Ç\ 6nê7ÿz\80ôö±r\9bC(ÒUAõ\87(ÙY·sGÑ·rZ$\r\r\80« \95 \876\89ô[U7ë\ f¿þ´jÅÿQ\87ò?\87°UÖ\11ÅÃ?¡g¨R\19<;\81\1cñR«·þ\82¸ò8%\9f\1e|Y'¨N\117µÇ×R!ê\ 3=ð\81 }èÌ\eا\90{Èÿ¸0RW·yíAýëá\ f:\1d\8c/©ÃRT¢|40©N?!_ñ£Ýá\17ïÿÙ³Å:j\ fhâ«\9fÒúõ¶|Ì 7\92W\17/«+mFd_Ïg\v\19^W[E-ôÎ\1a°\1e(Q\1a`I¢8{¶\97ru«\8eÄ\95\1eLÉ·c«+ã\9aÍÁùÊ){Å5\81@ \ 3\9aL\14\96*º*CN\e\1c·sûð\94Ôº8\12Û`¦íµaO¿=\99"\90S iñ¬\8f½\9bµ:\12W¾?%·\9e\8eNF´\18ýù\e\19\11¹Æ³\83¾ÍÞ«\9fäØòÐØií\83\88.µ?\0 ç"Û¶GAª>\b9¢\80Î\95\9emZÇ*/q\0ýõ¶ê]½\95\98K\18¿\ f\92\1f¤>\94¥Ì1·\11n²*ô\81\8c³\14ùìÈ,\10c\90kOÿ±Ê,\8cLFæ\91á3ö+M\fAM·ãç^ÛÑ\aVV{\85&\ 3b\ 4¦]\1f¼\96\93\1c\87yr dÞ\9eã¤LÙÆ\87ÌþÙÁ\94gà\82Ê9OøµL¾\17÷;É\19\9e8\10aô\97\8d\83%«Í\83\98DS ±Jþ6ÕHVØ%é?\95´+m·\a\9a\90{¯\8b\8dHT\ 2\9f¥\b,DN¯|,\15!.z»æt{êoó!qiR¿:¤\ 1>\8f~\88+C\1ap§#å÷ê\90°$LL´:$´K M\86\ 4[µ\91Y\89|:(\103@(ÓAéïÆçñÍ\92B\ 2ñ\9b?ßÞüåîòæþò滣#!S\80\98þáàÏ/ð\17×É\9f¾üê\ f¿¿¼ªÍ\1cü¶ýxøï\a¿ýúO§\7f¾}v\81\1f?¿<¿¿¼½9»ûñm\7føäð×ÿº¾º©\7f:ªÝº»üöÕýÅËß\1cþ\9f\83ß~zww6{âüûË«gw\177ø»?üí\1foîÇ¿á_÷?¾¸Àß~ýé\1f¿ùôêÅ÷g߸ß\1cþöï7\97çõ\8f_ÖÖo¾[}áõÙÕ+yãòY}rÝ#\90\9aðDí\ 6\9eù?\1f{(·ßþÏÅùýg·¯n\9eÕ¾}vû¯MGô\9c\8bR\1f½\7fùöW&#\yç£\ fµûÕ¦c{Ç$LFô¯\1eÇ\8f\e\8fãÇG\18\87ë6\1fÉ\ f\97Ïî¿ßx4úôV\8fèû\8bË﾿ßxHöøÿÙ ëÛÂ&ï_Ý}»étÜ]¼|uµùtØã\1f}\89on¿¼¿¼?\7fÇ^\1cÇõ\92Oÿíòêbs6¹òÎG\1f¡ßth7¯®¿8¿?{ý\80\91M_ùø|ó¸K\9b\8eíÛ³\97\17¿¿»ø\7f¯.nÎ7碳·>ú\bqà^]Õ\8f_l:NyuÃáÙwÞ»óî-\9d_/\1eMä\8d\8b¿m8º±ÇoY\80\8f¼2_Þ¾º;¿øÃÝÙ\8bï/Ï7\16\1ao6^\9aË\9bGÚn\9b\8få\1d|ee0þ\11Fó®Ù\1eÇrûââîìþönã\ 1\8d/<Úá9¹½~qûòòþ\ 1gççè\a\15\80M»ðÛÏ/\9e\1f~²å*`Ü«\80{\15p{DZW\ 1·wD{\15ðv¯\ 2n£
+¸ñ\9d¶{*àÆ\16ÛÝÔ\0\9fß\9dÕɽúóíå˽\ e¸×\ 1·\8bÁïuÀ½\ eøÄtÀÏ.^_\}ùýÙ³Û\1f\9e\803ðÈ?\15\ 5é!#Ùr\15)>9\15é\ 1#ú\ 5¨H"\16Ð\98ôT\84\82\8dõ\87\97÷Ï>¿x}y\86\ e=@7\9a¾ôÑ\a÷íÕ«wÜ^?\81JûH\12Â\1fÎ^½|yyvóÙ;Ǹ\8d\ 2öÆÛîÙæ\97׳Ǹ½6\1fÈæw׳Ǹ¼\1erV¶\9d©Ý>\7fþòâþÝ'cwOÿ\17\1cáî\9dû+\ú@\17\9eß^ÝÞýû\ fß¿SÅ\99Þ@?^mnýЧ?úÞÛ\18·ðòÕÝó³ó\8b/ÏÏ\1e2ª\95\97öLâ\ 3ÆòòÅÅù\17¯Þq\86vÏä½±j\8bñ¿º:»;¹½yy\7fv³ùÐ\96/>\82ëæ¡£üÝ¿^ÜÞ\¼Ç(Ç\17wIS©Juýߦ\93ô¿\eÏÊÿ>\86\81 =`([nëp\ fY\96\aZ;\1eI\14ùËíåÍýéCtÿ\9fÇVyñ¥\9eØS\951vO:zà\95´í7ì{\99Kö~\87»',\fí\8e;e[xÂÆòÜ?7?9ÿ|\8c\83³ù@Âæ\ 3 \8f0\90\8dïï\7f¾Ã84\1dHÜê\81¼cí¦\ 3q\8fvÑ<1wý\83\85\81m¿9Ïî.ï¿¿¾¸ß|\89vé\ 6½º¼ÿËÙå»\14Ìý\15ºÙ
+lËíûpKò\83ÙÊ#ç\9f.î¾»ÀLî\9eHôУö\84\97äçëÇ\1exôS\ 1\8fNno¯>»»¸øß\8d=\1d[\8b:ú\ 5Å\9f\1c¥_=\11\9bã\ 30<[\8e¯r{|Õ\93ÆWmn&|¶ù\8dþ\18|Ò\1do\1c\9a\7fwöìòÕæLÑ\1eß\rcîvkØÏ.¯Î6\87\1fì\922ºñ\12í\9a\16ú§Û»\17ßß^Ý~·ñMµ=jËæÁ\17{î¶µ\afÏÓ\1e\8b§ýüÁ©{\9eöðEyX$Í\163µ£§\83ä}*¼ló͵kG~Wá»ßn|ñoûq\7f\0ãÚöS²¹0¶#\10Ö§\9fµac\90øîemØx7î³6¬\1dà>kÃûsÂw\0\87vçvÚx /\1f\16=òXa#¿ÀËvûñ8\9b\1f\97]\11\1cþº±Çîäû³\9b\9b\8b«//®.Î\1fbÿX¾øÑ\aùéÆÎ¼÷\1däòÅG»\8e>¿|ùâêìüâúâæþOg/vðNzXÒÉ-¾\93ºCûÿáâG·òã¦#æO\9b\v¶öø\163Ê¿¾6Þ\8d»Âò¯ÏjS\eÃPvI\12?A\84ô\9f6\18ÞV²½\8d5Ümg{\ f`à[~ø7\8f\fÞÅT/\eo¸\9fÑV¼-§ïêòæâlcÄrU
+Ïÿt»9êtòÂÇ÷Ó^ýpöã;D\86\95¥¾?»{ÐZËóÛk\10¼¿ÝüþºÝf&óüîözs((\1fþè\83¹» ò±é\90Î\9e=»¼¿|½ùA\1a_øø\enãCôlóüRòì#ø\vn6_£óóWׯÞ\8d\91\98®Òä\95\8f\1f\ 5¶ñ]<\19£}þÏ\1cĦÃ\}ëãë\97\eïÈoQwps\8f\81<ý\b\9e\82\87@þ\9f_^]=\ 4\19\7fõh\9aÉÙÍåõ\ 3\8eÏÏ\14£²ÛéïÎ\9f\ el¦ìa3[¦çm¾¹ö°\99\8f´"O\ 66ó\0Ƶí§d\ f\9bÙ9ØÌæißv\ f7óÔ\v^î\813[|?=\19àÌÆÒèn\0g~\89×íö\ 3g6?.»":ì\813{à̶ÝIO\178ã~)À\99\aÈ\15Û~}í\813;#\89ï4pæüÉ\0g\1eÀÀ·üð?iàÌæ\en׬Å?±\8bhwà?\ fà!\ f=y\8f´\94;\9c¬ð\ 1HÈýbìn\9a\8fÝY\8b\9f¯\1f\8fÛ\87§\942òsfqùæafÙ\8d\84ÀݹÅ67²íH\8e¡'\99¥ü#æ\ez,\16û\1eéyöüm#þÖÿ\92ùÛÆ\83ßó·=\7fÛó·\9dâo¿»«\84½ø¶goÛÎÞ.°Q÷ÜmÏÝ\1eÎÝöÂÛ\9e»í¹Û\9e»=5î6u\e}ó0\10Ê\13cr\e\ fþ'ñ{î\94\97p\7f\88\1ep\88ò/ù\10m<øý!Ú\1f¢ÕCô\97Ë\7f]\ýåêìÇo\1e\16.º\8dh _På°Ô\1d¦\8d¡\9cÒÕ¿>\0Í9yc\97øàåͳ\8bç\977ï, :Å\e½¸8»ÿü\ 1é'&o|üD\r/\90ugÓ±ísî\8cköX9w\9epv\17·y2\8d}z\97ÇLï²!ûßçvY?®ÇÊíâ\ eÝ'¾;t©þ»;¬ÿ|R\7f®ÿý¤þáð©EqÜ]\ß¾\8bíý"\12Ùl\8b(õíCÊ\91oy\94À\13,+ùq5þ-Þ{¿ð\80\81-^\99m?Bïé\8dÚöÀñwMûOä\8cúØá&·×/n_VÅþ\8bWï8ì»Ë\1aNl\8c»Ç\176¶\1dþsóãóÏÇ8=\9b\ fä\1dØ£é@ÂchC\e\ fä\1d\1e¸é@âV\ fä\1dk7\1d\88Û\11\16¶\ewè\ 3%ëm¿AÏî.ï¿¿¾¸ß\*ØÕ\9bôÉ&qü)¯ÒÝq\7f¼×Òî£\10ߣ\1f{ÿóOï\7f~XþÒm´3íýÏo\eÞÞÿ¼öbÝ%ÿó¾æËÞÿ¼:²½ÿyï\7f~רöþçÙøvÃÿÌ+\1e\1ehß}ò ë~ïsÞû\9c÷>ç½Ïyïs>Ü\ ekØnû\9c\9f]>\7fþjó|þÛÎ\18\1ehsýòA9äWÞùèCûñâêêö\87MÇwuùÝ÷÷õïGçÈ¥ºñ\10ç¯mï\ 2êÆ=¹½©ÚßÍæübñÞÇ\17ý6æô¯î\9eWõòa\9btõ¥æôÛ~%?\907þ\ 2Ê\12ïMp{\13Ü\eöòÞ\ 4÷\93_\85û
+¿»a\82{\88¬µ·Ãm\97\1dN¤êO¾»»¸¸ù¤
+/\17\9fÔ;îò»ÛO^_Þ^]Ü\7frwñì\93Û»³\9bwy¥÷\ 6º½\81îCù}ÙØ\b|ö¿\97ׯîßQ'rÊ5ìù\8f¾Ëú\8dÇtqU\7fy\90QkòÆ£Y\7f>¿¤\1ay\8a+à\91±3\9f\8bºrª·Ñî\1d\80Êk\9f¼yc¯üï\88òÿòÅÅy\15(ï>FHÄG÷ío¼ u\12\1ele[¾¸ÍGM;û»\7f½¨ZÊ{\8cr|qoÌ\99ïñ½1goÌÙ\esöÆ\9c½1goÌù\b7\1aL7bÌQË\ em:{cÎíÞ\98óñÙÈ\93AUì-S{ËÔ\atåKÕ\93v×4õ\1eÖ\80m7p<Éèâ§\99\9fãcÚ¢\1e\89[ípz\8eÍs(lyz\8eÍ\a²OϱehÈmOÏñ$\8b\93<\14;½õ·çÓÎÍquyÿ\97³Ëw\99÷÷Wèc@\1f\9eÊ\15ºÏpµmWè\93ÉpõPöµí·ç{©Ôû\et\enÐ}f«'\95ÙêÁ˺Ïjõ\1eýxÜ><¥¬V_~\7föìö\87}I¥¿\7fHJ«ÝaOO0Ø\7fãllû`ÿí\12\10v;Ø\7fãr ÏÞÁ\89¦\b¤\7f=Â\16Û| \e\97Õå£[}V¶\9d©Ý>\7fþòâ\1e'ãîâÙ\83Øõ®q\81/8Ò_\94\8eðþ\8bû\84\95\85mY\9c\8fã]Ù\9duÙ+q;£Äíó\12ïP^â#\97~µéè6\97 \1fC\80|ÈH6\17!\1fC\82t±Ûx$?\>{\04S\9fþø#
+\9b\8fèû\8b\87À\eÛã{óÇ£j
+ýÞü±\9b\8aÏn\9b?ÊS1\7fl>\90½ùc\a4ä]ã\ 2{óÇÞü±M|}oþØ\9b?vÎüq\7fö\0\90ÐÞø±Ó\1eìó\87Y¹¶8\12ôüçÃ\bmí\9aìJZ\9f\9bÛ/ï/ïÏßaà\99*×xúo\97W\ f\bp_yçã[\866\ 6óÞ¼ºþâüþìõ\ 3\866}åã£\94\8f7ÎVôíÙË\8bßß]ü¿W\177ç\9b«w³·>ú\0\9fß\9dÕɽúóíåæ\ 13òò\86\ 3´/íΰϿ´Ï¿ô\86\vä\91ò/uÇ\eW¡¹¿ÝüdÞn7C}~w{½¹\fÊ\87?úp\9epf¬}b¬ÍWé1\13c=@îØõ¼XûlJ?£\15çâo¯î¾}uUwÑ\ e\9a\1a\1f Éo¹þ»Oÿòþaw\8fd
+~\8fè´½\19öífØ\91\17}ó\8e\80ì½1vq\91="\12ms\84ÐvãÐ6\1fÇ\96£Ðº'\87B{À\88~\ 1(´ûÊ(÷\ 6ó]3\98o\f\14Ú={y÷Ä\ræ÷\ejI?»¹|¯\ 3~\0+Ük\81{-ð'>:{-ðçÔ\ 27¾UöZà^\vÜk\81{-p¯\ 5îµÀ-×\ 27Î\96±{ZàÆCÛM%p\8bPS{5p¯\ 6îÕÀ½\1a8ëÇSR\ 3ÿóööÙwwg\9bï\9b½\ eøø:à\91{*ZàCF²åz`zrzà\ 3Fô\vÐ\ 3\1f\14·½å!MO²4ÉÆzÑ>ÃÆvÅÖïv\86\8dÛ\r2\ 3ì\ egاK}Û@öùB~\8a³²Ï\17²½ÜìA\15À·\9d\99=¿ªÚ\145ÿ÷o¯ÎÎÿùÉ¡\90n_\9c\9d_Þÿøï\ f0¦¾¼ÿñjs\e£>ýÑGü åÛµ3õ{¬Ýî\1d©\97Ìúyò\94\ eÖøÄ\93½\94ööàÇ©ÉôË\11#v¸¾áC+\85n9Ë{`ý¯/ÏÏ\1e .¬¼óÑ\87öÃ÷\ fÈÇp¥õì\8f6¸\ 3&#\9c¿¶½ë§ûöäöæåýÙ»J\ fN\95Ãù{\1f}\88\eãø^¾º{~v~ñ°=ºúÒ^\rþx¬ñg¼´¶å² {x2\19Ã\Øø(\9eýïåõ«\a8\83Úó\1f}PýÆ\89¨.®ê/\ f2®OÞx4QëóKòíÓ\878²~¦l\ 1\9f\v\7f8Õ;s÷d¿_\84D±¿nwäº}\8fªË»\ 2äÝXªµ9x°X»|ñ\11\0é\ f\1dåïþõâöæâ=F9¾¸sÒÓ^xÚ\vO{áéùÅ\97z\94wWzz\8fûjÛ¯à=Øzg\8cë\1fSZÚ[Õ\1fº:\eß#ÿÜüôüó1\ eÏæ\ 3yG\92ªé@ÂV\ fä\1dX\83é@â6ë\12ÿ|Ç\93Ó\81¸G»l\9e\18ºõ¡î´¿=Ïî.ï¿¿¾x@E\90]ºE¯.ïÿrvù.\rt\7f\85>Â\15º9\9fÛò+tó\81ì¯Ðm\eÈ\96_¡\ fe_Û~{¾\97J½¿A÷7ènÜ »cªÞ\17\95ÜbÉègçú»³$?_?vo[<Ájì\9b&aÙ=\8fðÓOíôt+â=ù\ 4¿ûÜNÛËåÝa§ÿ_÷S£lºlüiósg\8fïÀM°íwÛ\1fê«/ß\8d5Û½«íú¬6µqZ\9f]â\e\f\ eüÓ\ 6ÃÛFÆñ\ 4ÅÃ'\9dJä\97\107·Û)E\8e\9eL\16\8e£\8d\ 5ÚmOÃñQLV\1fyL_übâhw5\1dÇ\83e¹§»å¶ß\1fó4ñ\80ðS`½þö1ò ?\ 1_Ì\ e,϶3 ·y!ó]\14À§K¶qÌë®\1d©Ý\96À\9fܽ\8b=÷õó\8b»ß_Þýüv¡ÝqGûÃ\8d\9d ÷gß^]|õ0«æÊ;\1f}Íùõ§h.ûý«\9bó¿î\1eS9Î\87Ýá~»íävûÃ\ en7·gn;ºÛ>{d
+õ!ÄAÿíîìæåóÍ«]lÏî\7f\1f\81gÛ\85¸÷\flÙÛM\1eËn"\v¶%2÷Þr²º@Dã}zuµ\ 5K³-Sò~{v\ f\ 3}\8f~<n\1fÞ§\84Õ¯>ý£ë¾ùÝͳVÊ
+¤\ 4Ê7\7f¾½ùKm\82ù\98\8e\84üÙÅw\977Ó?\1cüù\ 5Û\88ò§/\7f¼þööêà×\7f¸¸û¶2éß\1ct\87\9fÖ\7f¾þáàÕÁ\88<úúÇúË\7fÔ\1fþ§\92~8\8c\87\7f:ü¯ÿî\ e\9fáÉ¿\1e\1cy\7f<\14\17\ f}8î\ 6W\ e¯\ fðSé\87F9m\94£ú\83\8b%VR{o\1dm|ó\86]ùâ ;îÜ\10*©;Î9ÇÞ×\1fzçû!¡\8fÇ\83Oq¨ÿ\rÙ~H}éÃá×g\aG.\1dg\17êÇûãÔ\r9×\1e\1eùîØ§\\ e\8fòqïÓP\7fðîØÇÎËS®6û\ f>Õ\87>\1f\1e¥ã8ä®þà\86ã>\97úC<Î]é\¥\94ã\94º\ 2JWr\19\ eOê\17ûcçÓáQ8\1eúTj\9b.\1c\87.fPú\90Ñ\8e;\8eÉy\10Â\10Râ[uð®GC!\ 4tÉÅã\18jOðù\92Ãár$'\aÏǹuÇ.÷¹Ç\ 2tÇ1bj]ím(áÐåã\9cðk\1eÒpøÕAí`æ¨ëÌ\15~Ì¡\15¡\84ÎåT)ݱëcÝ\ 4Ç\9cæP?V{Ø+©\ e««í¦Jðî\10s\87ù©ßá\7f=VK^©\13\86ÅãíºÚu\1f\8f½\8f=¾Óõ)\86ÃE÷1&¬v©\13\¿\94\86ú¡\84\1f|¬oÊjGW\9f%Í¥\1eË\1dcp!c¹óq\17]\87í\91°\1c®NG%¥ÈÇú¡«\9f¬¿ë0ò\10\86\98@È\ 1m\1f\97¡î-Wû\909D|+\rC¥\9cVJäHê[®nA4Sº\92\ 6v#\85ú¥rì\86Áã¥06S8Aµ\87¡Äºbù8õ1b<1÷©G+¡\v\19O¤.¡¹\93å\10NuJÞï\0`ñÑÊQ]\95ìüPg¤nÚ¡\ e\ 6¤:oõ\a\8fÙÇÆ¬{°v´®þPÿÒÉ\1e\1e\9cÇXê¦é»®çv\8c¥NWÝ\9f\9dï¸?}òCÀÆò2o|-ÔÝ\wQL\81\1f\1f²ïI\90\93ç\8fK\8a\11ã{/z7È3¡vº~iÈõÙJ¨ÇhÑ\7fì\90r\»RW£\1e\85Øe\1f¸Ìµ\11\1c\93º)\9d\v¡N[ýXð.È1ïêy«\e¶\v Ôáu]íFmÜ\r<*\98à\88íW'§Î?)u\f\1eS\91K\92SìS]¡ú\8eÇ\86õõ\10±;µU\8f\v\12\aW\9f,1É9Ï]Ý _a\90uå\13I¡®$\9e =\86U ]eB\95á,\ 6¥\vï;\1c¶ºð]\b=ÏBq©®\84,|=\r\9e\elð\ e\87"\94âë\89\ 1ëÃä×£âɸ\\9d\81:Mu\93×'ÀÕj·Kä!«»VFX\97/&|¡î°n\88\98'lKLËä©Ú¬\8fàÎõTs£c\fC\1d/ÿÝ\ 5\99*\9fúÊ\b\82¬]Ý+¾D\8fɪ\1fuànuMص:ÀT\97\ 2\v\OPçɨ¢î\9a:\9c>\82\91ÔÇJ®ç\95´zî\ e×\fî\1f\1ftNê\9eõ9ÄÈκ!bO\81\96Ø·:Y®ï¸³ÝÐsýûº2Âæ\9dî¡ÊV\85\85UZì\vyn\1df]3\\ f\95Rxaàø\802\f\9d\ fBé\ 3o\ e\+Ü\9fõµ\82]R)õl\14\99¯ºýI©|\19ç°~.t)Ëçf]ÿÐ\9dS?6p\ 3×~ä\88\99èÉê\1dI)yÞ\8a]\ fæ\81Õ®÷£ÃL\803êi\1a¸mê©»\1cç)×ë-\ f\19÷<®wpÕº½\8a\D\98ç §!\aL&\86ä´õÐ\17/ô\15¯Û)`zêA«#\94õñ\ 5\vµ\98\9eó\83µ\93¸\9cèÙrÔ÷ê\ 1éÁI°ç¢Ë8\98¥óà1\95ar\17ãVðeà\1e\ 4×8ÁÔ%\9bºÜW\8erJ\12O\11ç®î]\92*Ç\1cÒ¤\ 3³)ÿÀÍ\»#\87
+ܺ.>\96°22ÏãZå\93¾ðã¸îѱÊq\9d¬n=g]'\92Qe\ 5\1c\11ØÙà{þ±~ \89ÔÓ\83õ;L[\92]Qù}$\ féºhrÐ@Æ^ßË\1eó\aÉÈyòß\ 4Ѥ2F®em `ov \8bs =p]®<\ 3»\ 476ÆRê¦ ´´\18ß\87îøÚµ\929\ 3uIq\8fÔ Ã\12â{\95Vª\94\149ð\10å¢\94Îý\83Rk\9dº\81g<qwÔ ë±ÕëS¹\94nÀèjã\1dÅ\9c\81· \87Ðã¢\1aoaÌ\13d"Ü\8du*Ò\eäÄ\850¹\107ç2é9;ɦÁ\87Ù#_'.dyM\96\1eB\80pß*\1dñìÖMg\82ë.Më%P'¶\14ùúê¼} \0wD aÀ«}ßwNw®H\ f\95&\92'örW\e\ 1¥Jeu'UJ\8cÙ\v\85·\a§¸¸\12ø^\9di/S\e\16Ê[\10·\84W%\bÓµ\13\18läÀç}ø0\11lí\98\16ß=¥\ ePü\80Þu\ 3\17§²µ\0\ 2®?\88\vqí\84¯[\96ÅÒÍ\96\17{"\18Ë9N\94¬\8e<Dº\81o9îúRH\>\97 \91ɦèdõr½À\9dÜ\84uê«Hsì
+äi9Ô!e\8aÔIGâÛkõìéJ¬Ì 6\ e¥!\9c+¨\\90;¯\95T×¼\92d[SbªßIàÁC\9a\12B\1eJQm\8a¢IU\99ô\ 2\8fõ;ÃP \83(S½È_<<\ 3ßñ\90í«D\9eq;ñ\84ô±²½º\89DtóèHm\v·[\95Úõ\95\ 2¶Wg»`\9e(±@ºÂôÇÀ©¨óUð\84\8f\90\88É)ñD9Îzg÷¼ü*!qòO8}}(P\17\84¹q8èk蹦³I:ùpÞ·Ò\ 3a}³^Î\861\e(¶\93\935wT\800\17`\92\95iQ\92\ 6\17\ 3§¬ûôÐaS\86^'\90û\14Û#Q\86®l\11¢'\ 4\ 1¨Y2\83}¨<\víT¥\81\Èáö\18xæuSøaǵ
+{Pó¹\8bëÊ_ó\84\85¡Î%V\ 6\ 2\167=\ 4:(Å\91\82}àAæð«F¨¬ºn
+!E°l\10 Ø\83\10x\86\83HÁÔT\ 2¯\85:I<ò¼Q\aùÒ\80\9b\18ê\7f©úåWbÓ(\8e
+¸\1fD\1eJ®c\87+¿µkµÃi\81D\18\92~\eÛ\18\9f,\9d\10¸Ñ©×ôE÷] b_/\85\05}>\13ÿøÀ\9dV¥H\8f\13ZôLÕ\99-Ô\109')æ\81»Ûã®\846åÖws1\94Å`g\13rÎMN\ 5\ezl\1aä.Ã}}Xÿ\9by\7fSmÃ\97ªpVGË/9ò\ fZ:ø¥Ê\fp\8fáÓ9A±«ý¯[Ñs#t¡§ \9b¸»Áà°^\18´\9e%¹iO8\ f¡¯ë^ç¡rÌp8\9d\98¬v¨Õ\99úÀ-]ÿ\1aø%pï\92dO׳\fù¬\18K¬»\157KýÝ\97Ì\eF\ 6[û\0¾Ci>Ѳ\ 3M\11'\10BH½ª8óu<\14\82h×á\9dÐó\9d$\172\14é\92=ÅÏ\8e\978Ì}]\10¡$ãø\82?ôQ\15¨!Á U\99Jê\1dÅ\14\91ý!\8aç:»_Q\1d\10~\%E¹\88ê©À\0\1c.4¹5yùØ\98OÖÌÃ\15lhuàÁ\93{Àôw}P\15\86Â5\8dÒPU\17\1c\99\92ÈæõÏ\14lÁ\988/\90¥p\rà\8e\a§¶ä\a0\a\!Ø\8fõ÷®\8a:ø{è¨!Vm(\ 4ìÆ"»&«Ú\82\13\r[ÔWµM×Ué\88\f\ 6\1c§n\7f\aU£\8aÎÎÃÆ&V\8ez|(\1a\9d`\14\94h*¥T5¾>A\11\a¿ó\96\98\8dò\ 3/\8d\ 1#Å.¯Cª\9b\ 4V%'\8a¡\83r\ 5«`½³r=F\18bN\10\95i2\892h\1eéú;\ 6\v~îÀ'qËyþÝ\85\81Æ\98º\0\90\8dêLWöCÛKÝåÜ\16\90>0]¡Ã7ë\ 5Ðe1&õ=§Ñ\95ÈÞÁlwh¶\9bÁ\16¶öºPw\9e\8fã\83\8dmÔlñ=ØZ¯a\1câ\16\0{«Ç\8bv\1f¬Rí Í>_Ñ|ÄQ;X\12#ÆBÁ\10,\86ó\98q<ho+\89\9c\0\97\11¸\a\rOU}\83\89Ê{Î\ 6$êÃy/>P$_\186al\9b\19?×\98GW-¨ç°©Ö9Å#0òÓîêºÈ \84\ eé îtT>«xãz9%¢e9\95\83ÆßÅn\0S.$\fÓ ð\91\8e<\fêNU´ªÈ4\f¥Ã\13\95SxþÎÛ¦^*U7\1aÄ®é¼\1fÏø©\98Çëïb¯À=ì)l9\11o²\18÷\92\bc\\rJØ\89â\ f\r\86ä0\10ݱ*`
+à\u±êyÂ'½\97[?\92ÿñ\r2QÏM\8d\e\1eF\88\141\8c(öØ\99eýõÁÂö¾0Î/\rø\83ÚÕ:ò\182öLÆÛ±«uÊר°\9f\1f,l¶×$ÅH£l\89Yíº8Ê PUþÇA½\ 1\9cXbê\ 5\90i éÍ\ 2Ñ©®Z\97#P;Áëº)º\10yô\12\ 4® »\80\ 66\90h~©\a\82Þ\8aJ¨û¤Þ\96\v+:6ÂÂÒ>³Å/Æz~°\98\8fÅ\8c-fõü`\8dïdé_YñÀ\9c\1fØ&Â\15Ëû\9e\8cÍ\8b\81 \9daµÑã\82àF«¤®ã\1cwQ\e]±\8c¿>\98\99Î\17\96õ¥õ]8C\fTÖªôÜuTIaáuÊ\19\ 6uFÄ \8bP§¸.]e\fUF!w\85\a\80Óu\8d[\8b×\12,s¥®q]tØ q)\82D=±\12|V\ 2ðõ\1c\88\81)Ф.7j¢\84\vë*íPUhàÊ\1eáHtõ[\8bíur°Ø\84§ë7êÊ\14¼>X:)\16n\8c¹«\83+(jbÝ{\ 1LË\83±:QlE\185[\11\84ûBå\19+\b×\8e(¿~Xú\1fx°g>\8a¹\17cáé ÛóTÓà+\849¤¯3@;\1e¸\12\86¹X«\ f¼\14ê\9aeêñ0ú¢²ví\17_=]çåXøBN×úKV}*¯!\1cèl\ 6\1a4yS\8a\19¤~×õ¼ \9bÑ\84Ü\85{¤\14H®.\89JC\e\9fYß\\81dYµ\bjõ0\1c\93M\9dB"\14\8fHÔ\1dP¯\vù\16¶\ 6\\9a\8b ù@\ 1ËÃxZdê\ 2NÇõ\81L\13W¹£¾[?%\1c!ª&¼è9¸çl|§\90Ô¨´C×ì r\14s¸Àt\béò+¬\\82Çö\88î®\ 4ÃIU\12:±Iq£ã\19¹l©\7fA\8a\85 \12S\0G\8e\h³1|à¦[:¦àÐê!Ex\1aãy\9dv\94¾3\8f«\1cè\7fà£\95GË ©\1f\1dê,ÔÇD \ 3\89W=Ö¡ÞFA(`.\90û(\80ÂöÌ[½\9eüz\1cÉ\9a`\8eæ\ 5_w4ÍûI,²\9e\12\1fß ´úB6ÏÂ\89\93r¸Ê}ª\1cJeÈg0¨z\89TÑ\94\9a }\bÜ\90N\91Aº\1ci)óªÊ{ػ̩\94įAMD½\95\10À"\98mÏ[\ eKË\ fÕNÉ\97!·\ 4yÇ©QÛÉ;\v·]=ks×ÞÜ÷·ô\ f\9e¬Y®Ó\ fºo\96N!uÑÍ]Gs÷Ò uNUV6o6oH\1d¶\98Äqµt4ré>¦\ e«6ñºÉ
+÷L\95Ëê\95zÔÑ®èe\e©°0Ûk\98\89ù\96<]»qçóõú`\9dwvîÁ]ã\v]ç1]¸U_\1fPÅ\87"\ 5\9a¸õ \83C\88¡Ó+\14ÎKO».\1a'w !`h\1c#öÂöfnÐ×\ak\9d¥K\87êÌwy.ë,\8eÄÊQ|ÎÓ§\ 2®û´ÆAxþ\81\8e\aX\18\14îÃK\88{\vê\ 6\976Ðz\8d¹°\1d\11\a\82l¼\98Õõìsj\ 2%\r\1cmö\13È\17z¸Ô=´p\93ÒÕ8w¦.\1d®3\ fáÉz/⪫ñ5\fT\1d\15~z?£¸ÚÔ\ 5}ÑsÃ\ fÍ´\8eKYMT\83Ø\9e\ 1\83\82`Ó«\99\ 6\9e+\aQú+ôÛÓ\ fS?\\84+F\15[ð¸ü)ÐFîd\16S¯ö\9dLÔ\17\1a Ú\ 5K\92SÞ+zâbAè ¨\7f\8dP\v\8eh¢L\84sU\9a\ f\8aVñ"m¸.\89\8flp°ú£ ºÂ@áY£·]¯¸x,Â=\9dÇtÜEÅ
+¡W4^5ÿ0û®3\83F\15%\93\93\13¨\96\13oËbÌtCÏgf9{\8b9>Ç\ 2ê\9eãÞHÊêÔ\1dG-\96\12\10íqÐVe\eâ8\89a\1anlú\ 5\9d(¦¼?"\8dÄîX×8\88l@\8aÓO\151¿\ fÍWî°¹\ 6ñ\1fóì&»\91\16«òa\8a\ 5¶hR\97o3WÖM*,4¨½²\8e\8bæõ#^Iµcÿ Ë>Áj\ 6Ö\93\94O÷à\ 3 PÖ\99Rº\béIl\94â\b¯¼Äø;dvÙ\97\82\fLê»\86t\ee\8e±ñèÖµ]ÅÍ«\rÉM³\9c\9aó\835\13¸\9cäùJ\9cÓ©\15½n\84Ê)ÅÛ\ e\88\822OÅ\1aÒåIJ\12ì\f4TÎ&äkYæ¹\9bÿõÁ\1a0À\120°p»s{\16\13\9a\94I\16s¡\81dz¥Åz~¨\97xáP¿\ 67\14[\ fÝõ¡ãÕ.\1eÏL¾\aë\ 3½\ 5õ<\89I\1d7½x\8f=¯MÚÝõʪò\81H\11ë÷Ë\9a]µØx«»ódÍ\16^Ì\vùõ@|\1d¸\ 3%6h\82}\16é1\89İ\80D\9c\1f¬\ 1N, \15søÅ9\1d[:+\9d\b+ͳGÕ+%\81{\88\1c\ 5\1f ÜË't\10RëÆ¬\93ç.Щ¯\ fÖ@X\17 ×9Âáü` \83X"%Öà)\9e\1f,\16\98{bº\ 3\96;dÑÐùÁ\1aøÆ\1a\88Ç\1c\br²\16.2÷Õ¿>XëÒ_¸ýçØ\0\99\95\19ra\89nX\87\81(*mT\9a/paV\8a\87\98IJ\16¡a\80)¬\11(YÔÅ,lI\95\9b\8cs\18yX\13mï´|\fEÙ»½\ 63\1eÑy0»È\9c\8bÉ\12Æ0iaÍAüP´Z\18\ 6ZK=Õa®{$¶·.\ 5¯ß !Ȧ\12\a7\9a¤)\9bs\fZä¼gq?\91\ 2m©R\14\v\96õbèd^U\ e\93Æ\ 1n ±\11\14:\1a\80\98\92\93\9aÕ\1dÓÖ\81ï\89dýÆ\95 ;\98ÖrA\17Ë~~°\16 3\aÑ, \18rÇÌp\1aK(Ç\fï!\\ 4®ÂCxëäìBû\80&)\8f\10\1c\80\99\9d0C\ fX^ý\ 2îUà,¨\82Àô\19Õjð\15\8fT\9dÎDÃB(Â¥`Î¥ý\9eV¤¬r\99o\1a\1aL\ 3Õp\9a\8bÅ!+^\82è\9c\18ÒV÷ËO\0Y¢*\ 2oüPÄ©=P\83¬s'Z"V\1f²_ 3\ fæql\91\88\1f\83ÍtV\a\ 2¤ÉN6\1f-\14 Ðy!\a\8cv´J\8aÄ÷Tf_À¤Ñ0o\8dÌp
+4ÛSm\90\97¸\85\82ô\ f\1f"ã\0ÚÛ÷T@\ 3¡.æ2\14\18#\ 1\ fð*ê]Jå\94\8eG^}³\99\17\16µº8\8bå\9b/± ÓºÊ6\ 1fá=\ 2¤\9aü®^hl%lÀþ\98\8e\ 1\81;Õë\97\14\91\9aç`\1e¹zVñ>\v@Ð\f4$ý7ÏM\92\v\14<º£ÍD?´ºÒzë\88AÚ\1a¢¨\9a Y\8a\0N&r¼\81WiÝ\ fr\93fõîVa\92@{θKØQP\1dxÉÁÍ\ 11*\88×`±\1d\84aÍ·ÌbSn¼\935\9bs6*\91\ 5K}8\19à\b¼Û\11p$Æó9\ 2I\18Ç\14¢´@0Í :Â4f0\9e\ 5Ðg\ 6\ 6:'\18(©ïX¡\1eÃ1Ýj\10\8e»¬ðÇ,\90"\ 2JNxç²7\80\96\14\1a<à\15ð\aS0øJ\84\8e\8eÞrA¾\15\ 5)Ti\86Ñ#\10k(\ f\9aÑ\9dâ\9c\9c\91$\9euì\84\8c®4¤Ú|k| V´\ e\97´@ìÌà2¯\ fæ\80\9a\ 5àf\ e5¡\82\ 2ñ\96È\ f\89\ 3éÕfP b\84èu_\15¹\18e::\1a¡À\18ÔØ\99hÔÈrr!ÐÒgÖ\9bY\fúÏ\80\9b«Wù°×Ø\9czjÁ\@\b4b%ñ\7f\8aÈÎË®6îxÕö\84\b`³\ 2)â\97+E\1de¶\9aóå\9em\bÙÏ\1c\85\1a_iøt²9õ\95\19àK0F3PØ\ 266[Â\ f½zª@J\eIV\ 6sM´;\95\8c<\9a.
+=©ð\92rðëÖau¥\16K9_nî\91D\1d²¨
+ÂM\ 3;E\93©çÀ'2¬\198j\ 1\9f\9a!¬d%ä@\17 \vĦ'/\aÀP¦¹\93µ¢IÛ©Ø+\e\16W\ 3\11±p A\89\82t\ fÆAãU\95û È8î2Ì\14á\f@9RJ¡s\a{«4ß=g\1cöѺsD\1e\ 3¡2ÃC y(oÌ×\84·DP¦\vk\'B\ 2\94øH´\90ÄÂQ+äïU\1eJeùuÚ\90f=\\8ca>N1 Ñ4ËЦ(»\9f\96nï\8fE\12¬l\9aò.°\v\83ªªbúF¬\98K\v\\17\8d»3è×\ 2\1c¶\16?¦lÄô`1wá\98pÈóiú@Õ\0 \1d\8aÁUDæµ\ 1\7f\11îr\ fT\98(\93Ø\89ò»c´$\9cÈ<'\83B\11hKw)ú\ 1í¨\e\1aÌÓ\ fò\14¥Ë5`³\ 5\1em\81X\9b£ÚÎG346÷ Nhñ\fyEó Y\91Äê_Ä\1cß\91çwr\02A\ e½\1cq\0¨
+PF\9dhÜQ®Eê!Fè¨\86\1d.æê\ 3yÓ\ 2UW·C\82UÖx\b@æ\ 2\82\14é\10\v\97\ 1²ªSX%\1d\19X\10Ãè Æ,ô\91ã\1aDTYôùü`ݸæ#_\9d\1c¸ôDÉ%ò\13\ 1³êë\84ç$\ 5\91¸Ðc\84ý\f\fó\89Ç\ 2E\81Ë\f§l\ 6 |}°\84\f®
+×\83ñÞS0Xbñ\ 6å\1c\90Ó
+\ f %=\88uØÑE|V2ETE{,e$ö\93HƤb\1aä7\18£ú{ú\ 6\1c\89꣩\1c\9dV± ¦40i\9f×\ 1\14g\bÆ9Àq\ e\81<¯£ð6\87\99\91\97uú\ 1\92¡\9cèÊ\ 2/x~°\ eQ8G\1cN1\89'\vÔâ|._\7fØ!\0È\81Ó'\16Ñëæ3O6 bÑë\19~¾n\9eç+1_©ùZ\ 2Å$ *G\95\9d\98}\ 2\94\1c"@\9c[\80 Ï\ fæ0É9\8ar\15ey\ e\98Qá\89Ê\ 4¶
+X©#\0#\ 4 ÙÅýLÔ4w7½QÄcÔó»@4\12·´\8ay\9cc"g¨I®4U¾¢7\b\84\ü\17»Hu\b\1eÐ\1e'Ú\83\89\179r \a´\83x$\1etÊ=ðøb\12£:\8aOæ\v÷\81áesØ!öA\81\93\1dzY\aA\14x\vXúà\82Â\ 5hð¦¨&¢\93\83 e\90\8d\10éa°>ÏÇ\0TÐd\88³áÏçç\9cÀ#l\93b¸E¯ØÛ\8e2\ 1#È0ß¹\97ë\rÌ\10\86\86^\15õ\190òõÁ\ 29¹\8a«\9cá.O\16\93ôaP\p\15z¨\93ª¹×@a\88˸\92\14è \98"XÚqá¬Á«Ì!-\vÌË\ 2\17s^\8f¬\82¯\1cõ\98Ãd\80\10\1aà] \14T|ú\bä õ8麳\19á\f3p\aî\94\19\0d\8e\10Y\ 3"ñ\82\1f &E\8eRÇL¬$\\a´Á/&
+\97Ñ¿½:p\87\9f\ 3£0ä^L\8b\95_Ê\ f`\1a´u\86!ñ:u\98~\ 6\89\19\ 3t\\8e7æc\b\85\ 6MD\9d\95áÐ0»\1d\95³R\96\18Ðó\83%Pt\r\96t\ 6\bÄ[3Ðà\ 2V¸\80\1e\9e\ 3Ù&\ 6Ó \86Ĩ®\ 1\10\14e5\83zá¥\ 5\1cl\ 1\18\9bA³\bðY\85o-\0^\8b\r\89\ 5\9dïÙŦ\9e'Þéi?!\1a\10"X%p\ 3\1déa]@\96ðÎ*ªi\ 1{Z\87\8dZ\87 Z¢¬fð\98ó\835 \9a%Ðf\ eÆ!\86G\1d\1fJ"A'P\82cWÑ\19|e\ eàX\82<æÀ\ 3\91Êe'%u\ 2Rý¡Ã/\11¹\99Ö`\ 5¨¯Í\11\ 5KÔÁ\ 2\9b x\10\9aY\10z=\b\8eÀuêN\14m~á\8fæ[K§õÒ±=sg\8a?zæô\ç\18]uÚP\99_¸vÖ:\80VÝDj¶ÄÜA\9e¢K!ë¶\83»\84\17ýÒÍ¢î\99¥3fé°Yºu\16¾\9f\85whÕ# \1fã<{µÝ±\8ft"Ð\93·°\99Ë+s»úÜð¾j\9bç;u \99PNl]>CÝ0XäåÜTÌõ\9a\99\93×\18\9cW-\8f|IøcÒ\83U/\ 4"Ì\93
+\96s[\e_\99\99ãæöº\99%\89\e~flZc\8eZ5\8fðt\r4\9cf\8dú¢i\ 4\ 3V$-í\ 2
+\12[±\1dÌ\8d\v3ó\ 3,IË\b·Õ\10¸ExØùÁ\¯¿:X«ûÏì\ 3\v#\ 2x£\17Æ \12¸RSL'\84U\ 5\18\9aéª\8e<סgz$Øö"êk\16\15¶ª\96á\16ZUÜæ\8aÝ\%\81|³ª´Ìt\9a\99è|NY\1aÛ]T¬thøÊ¨>«¹¬{~°\94\86çÒòª¨H\ 1a%Ðg\1e\b´.Th\1eL4\ f6Z\89F"È\9eÂCÝ\10\12&2!\84¼&\8f\14_Yä\9a\9a'£Z\95\8f\80bü·¿\1f@üúôÅAG\19¬*\11uu\ f\99\84DÔ\8ea¨ó«4t\81úh\15 2¯Ûd¢°«rÞ q\1abDqz\a\0ª?\10}\89íã\89Á\87\99\94þÙ\81.<\84mð\14%Q\94\81\80\17ë^B¬\19\ 1¬A±\86=]\10ÈSe\ 1\14Y]XH\11Ô\17°Âb\19Ý\1aX¡>CÕî\94Ö58 0\e\89\aá\948[O\83ôP\15,É\ eWw4\98iV\rý\94¶XBMì² )Gìû^"v@ªÛ²@U\84\17\ fÀ\85Ó\83\86À\8b\1a=u:òÔ
+$IEù9`\9aAH=UZ\9bJy\8a\1c¯ã^,ú¦\8a\12@Tcë³\e½\80\12ý±\84È\91&?"a\90 Ò1&qcXÊ \ e]d>Âf:'ó#±3d¸=ç\1a\88\12±\ eSpq\¶qrñdÄ\ 1Ǫ8\82\v!©0o\ 1\96®Þ»AÚ\93%h.æ¨k\88= ò)º\v\ 6\8am"ÖS
+V\99\13Þk4\16\f\95\14Z\19\a"p\99\8e×''\ 4+Ô\87@s\9cFÞÍ7*4À¿\1f0\vá³\83þð׿9üú?5\1f Ë©r\ 6ðÙ¡\eĨWGL-¤«÷\v\15ñ\ 2+L\90³V\ 5\1cªæ¤0~E|wN<\1e×\8d\80\9b\ 6+\·[\84DÚë\1e\e'Ò(\94&3uæöPÝ~|ÆZi\ 4ý\ eoH¡àò L&¤\8d@F\13\11{\3#\81±K\7f\1aÉ:líÌF$pè*"ö\9c\v\a5\8eÖ\89Ê\91`åÆüÔ{Q4¹z°2q \95ÕøAÃO$\16ÊæÇ\bA9\18R\8d@}\8cæám\9d\8e#6\10Ù¾\ 2\95~}(è±´V\1aa\9c\1f£\1cQ\17\91SZ9r\1a 9\99 #áª\94\ e5\92õ¸54\e\13g\88\ö'ØM\82ÛA63\11\r\18DNV\8acIaþt|\f\ e\ 1aEU\1c\179i$õ*5N^lOµöO×|\13Ç%Ð\0
++\90\ 5È@øÄ\15cçù´=\83ù\88Ìn\18Õi4R\92Þ\97ã[öLl±\1cóo\89Á¦>T¸ä\8e8\91k° /*i`\1e\8cÀk@\1fób\ f\aOê\b\85\9c\10Òä\ 5û³5{ºü\12>\ fMÒI¬\a!\fC/9d\8c©B{i·\8e= Sbq½Æ\ 4\89b<¥Q¶vÓ\97ÇçÚWN×~\9b}òvR\89ÍeX8\ 2(\88\98¢¨\v!ètò\1clb\12w\86oj⦠IìèÓWí1ûÂé\9a¯\9e
+~>)6§^\81Ñ |~\10ÎâÔ®q:yÌ«\7f\967Sïy\1eWhU§ï\87\95wÛsú\89ÓåWµ+\81Aä^\87Á®\b\90\1e¸±\8eBF{
+\19×T\12\88\84A\87))ètN^´§ü8Kó/j7$ç¥\19_\88ß \ 5Z³\1fw\8b=åde\85\ 4ç\90\9b\92¢J×+/ÊSÖüéò\8bì\ 6<Db-\95è%zò\a\8eÀв§ãSA\11¼\1czbÌï
+\89\96 É{ö\90µ~ºü {á\98Æ\8d\91|ô\15ðì\88\19ÌLf§ãS¦\esïÇ9ã¥È\9eµ7Ûcö\81Óå7\85\8d0±\9e£{\85)ö®i\7fw\92dÀ ¨òt|î\88\9e1\19\87³\b\9c\15Z\1eDÐnïÚcí\13§k>{Êü bÊ\bz\ 6áÊ4mC\8eÎi{\ 6\eP\84¥ âæ\94"¶óñ-{&´Ó=ÿ\96|ßKB_\18_© Ò\99*ò\9fÓà±Óñ1¯p}´ï¼\86\88\8f¤dÜÌ^lOµöO×|S\84±A¥°¿\1füê\9bß~zw¿\92\13ýWß|RÿiÏ\8cùª%Óô\9aÜÓ\7f¼ºzu}ysv\7fñìð\8b»³\9bï.VÒP75è\8b7g¤vÝjJjÀ\ fà÷ŽØiÆg£U9\94\11sø/®w¡×¦ô\a\81>1\84G)GóW\8f\96í\vFE\88öúø\83ý©\e\7f¤\82[\ 4[¯¤E\ 3ë>óÙ·u>~ý÷\ed\ 6\7fvøÝÝÙ³Ë\8b\9bûÃè\7fÃ\89\190G2KöïϾ;\90\ 6ª\18ÃìË®²=_x\83\1c¶?\1cÁú"\9fË\ 3@!U\1aÿúzúfÞàͺ¿\8eyg~v>y\15QÚð lôÑÏ®!í\1fWI\15fõ·¿\12 AÖ«\87ï !%D¥w¼R¸ÓñÊ\ 3ÇV¹\ 1\8d\15\18\e¤ÆÏ>û\ 5î3×=©}\ 6ÓÆ\90\87\87l3pp\a\99âí{ÅÓ[õÓl3\86\ 5\8f\9cï\97·ë\8alº£wíº#ÛvGë¦\18(ò\ 1V½!fùôÊÆ;²åyÇË9ÂÆ_°>\1dÍ'Þ\a·é\17¹\85`;Ir'¿ý%È\rU\10°\97\86\81@Ü·¿\14þ\7fö¾\841\8abkûû\ 3ü\87 ;bBWUW/zQIXDA\90 â\15å\ eÉ\0\91$\13'\89Û¯ÿêyΩêê\9eÉ¢âUïËë}59©®õÔÙê,\88æò¦\8fy\8c\f+\8b\13GtAÇ\bòâàãSnL¼X o\ fñ\86,êµb¯á?ðÊë³r\89<Ôô1Uã4\ f1Añ¿Ë^^\86:@B\1cæôÐÇ\8eª±|^\97^\ 4n1´þ$.ǽ?.\ f¿^^4ÄòÜD\96çæ\9adíÌmy?ï®ÀÎ\99ùK³àbÍ_\8cµ3ó·tp\8dÓ\r_;3¸ûÃ/\17u?7\89¹ë\9b-c-_Ó=1VÓD·RågÚ³Øu¦ìÑ#zt\14\8eþRá\1exºÓ4pP\12\87\ e\18¢\18Û\84ÿÒ\19³\86\9fÛèÉ\8d>ÚXH~£ûÿËôp?ll\14p\87[záÙ¢\85wÐ\93\97~áÙï[|øî·.ÿ³߷\ 1\17\9eí\82#ÜØE\91è£u\8eXP)h\17îáøà`2Û½õóÞtvðX\8bñ\xV\8c®N§Ûý6»(`xçpkSJ\1fývååálº1Ùß\1f=\9al\1c\ 4Õe{¨»\14¿Ywa\ eb¸wÂCÛxUÓà\19N!\12\ eUI\9a]ßö~·mÌIì+I/aÅ\12\94AÒ7tbÈ:\95Ü)
+X;CHá\13ä\1e!mÛAØ«÷©×üwÎ$\ 2â<²ßµ=û뺫Õ1Mf0Ü\8b{G\8a¥§\94Ja\94\e\95^²½*\18\8fôAo\90ý \L<\82û2)\1eÞÃÄ\8eÿ²(àiZ\ edR\vwì\93>ÕA£îãÊ\ 2þCÇ~âà°_ë7pL°åIK\v\9fÐØ´úÛ×VÂ\18\9cóö·hú;ÐÔþÝð´\88S>=z\9eê\ 37Ô|N\8bd躯øø\8cn¾Eº\13\90.ÊÙ«¯\16\93ÉöJ&\88wè\17v\19\bhèò%ª\16bÎ\rÒæà0qZ>\1dëbôíÙü\1e¾U\9dZ³%IX^t\81\8cÆÀ¥\v4Pkõî\9dðm\85¼þ¾Rµ¶\r\fÅ\9døM¼°CU3ôsâ·®\82ßËðãSN6\12¤\81ª¹R\97Ì B§ÂÆyEngà\1a\ 3mCÞ¶ñ\9cgð&0TDsÌa\99´ìd\13>Æ\83í\ 3\963TÉû¸§j`\ eö¥Þ\8eô¥¼\13á\8c«¶\8a\10VFh"j[8ìå\90te\bÉ'\14\ 1é\eöÚu\1aWÀ\ 4÷Ù\129\v6ojý\9d½)j£·ì÷xQ4\9dJ·ü\ 4\88_°¿åÔa¾\ fkÃ\8dÉôÉx!æµÉ/\86âôP1\82Ô\r\91ÿ&t\83Þ\19BC\9a;Å\f´ÜÁæNrØ×½\=\19\99Úÿ-U\94G[Ï\9f\aíi¡^òè\8fº÷ßX¬Ø «È\82J¡¼\81Lûkà 'yö\eær\ 5\bNüp4Õ\83høj\ 6?GÉ\96\83à\91\92Q-°fÕ\95\ 4\Pe´x\eç»\17Òï\aö`!T\80}!\96Â3ÂÉ!\ f\8a\1ak\98ÿ\819$\9cæ-Ä\93-\0\12_RHhß\ 63{Û\ 6ï\97\ 2qô\9ea\1a\ 1z|[fÏB°\12\ 2yá£S"\17VM<¯\vjݶ®%D\16\8fy\b.Cr?\ 4%\a\1eBË\80¥ß\1dë\0H¬Lá\91óÁð\8d\90~Ô\12\9aÍ]kJqó\16Oj\80ðð\fw6$·f\1c\16\8bË!O\17ªp\81©«//\13»xÚÉ\99l\bæÒº)\98K_^\12±m¶\924ò\9a²ÎuwE#XP±Âá\99S\9e' `ÔsÁ,+e\1d\93J\19q_R'y\ag×FÒ\9a\15â`QãFãf*ñk¶ð®×\94\95¾lÅ\ 2á¬Õ\98oV\ emÕ?\8fÁöpJ¦\15Ç9\e\13âÕ\12~\10\ e\1e±âØ#Ç}\1c`\1fì+\vïêe8ªcó¯tE|WWoll\1cî<\9a\1e\8cÑTîâåÕ¬Åú«ñÞdu{²»\19îî«»7µÉ§G6énþå\e÷î-lv\7f|°ñêñtuòb:\9bd÷߬\84«ÉÜ\99ê%¹C\a;\16×p,¤Ú0³z¡\85\16\99V¤E\ 4\9eÆ\1ciP\r\ 2b½\95Dar\93\90\10\921G\b´kù\98\12öZª°¨\1f9P¢Ñ,oÈ*Îú)\15z \bF\a\ 4$àh\90~\1c^ÌLo\894\b\r\1d\12$g§EF3 àDf¯\91¥¿$\vÕ²\0È\ 6ÊÚZïXQ\ 3YL\19Þg<+Þð\ 5\ fñ\9dH\ 3\8aLÏ%½ü\91g\ f\9bÂÐOÆ£º¢ };CWiz¨ 9\11\0\fa\17ç{\92?lZ!Q\aÖ\94\8e\11\8a,Ô\81l\ 4ô¸D(#ªÆÈEªê\86
+$¯"v\8dt\0AÉje¯5euíõ\1a\91\r"VÓ\17z\8dØ-\84\96"&-aÊ\19¸ËÛJo\91s\12{ï\91ñ;ôÜ2á'¯\ 5\1dÖ\96-2NÐ\r\0.øô\83\83\18UÒ\9egá\15d$ï\9fÔ\8cÃöµ^ÂÙJ«·¨ö\1ar\12.?A\rÒ\13J@K+\85\1dYI\98N\8c}ÄÃ%BX¯#%\950\90\80\8d\r\\v\90dÇI\10$\9c}¥ö\v"GK©¡U:+y`\ 3Öà\0\99YX\92\e2H\ eHQ:©ÑXY\90[¤¡Ó\>\94\1e\89\8c-¼ó\18\8a\82 \ 2\83-\16WÁ\82{\86M4xäÓ\88hfn\ fD\12\ 1vâ½N\1c\añ\84³y\ 3nÒB¼$\16Ó£Þ \86¦d¹\9aÚS\942Þ²&\10CÎái\ e\Á \18VÛc\968Ë.\90\ e\14®\92,l\8amDr^l,s\1c9)}!9\1a\1a_\10"ÑRñ\80\80àr*ðI,\99J$ð)!³\fêaÂ\85Ö\18Á\ 6\a¦Æp[#¨\18è7\8d«¤\91sÜ\18\90\87F0\ 2·\97þ\8d\81+JÖ\ 6¤¶cÅ8 ¶çHõ\8a\ 4K1ïc£ïPr\18X-Ñ^B\94Ø\81\85¶¸Á\9a`è\96Y\9d$¯)\13\7f(*Ò5\1e\97P"\8c\f\ fQ+v
+£d_¾\91\\12Z¯Ð0ñËh\ eí\80\8bÈ\9dokA¼²\16G\19ø ²j\ 23\a\19\ 6ÃWZ·ÎĤ@F\8aFYËõ"\9bNQª\ 1\1c.I\96Ù´%\18\93¦qÜÄÂWÝz\ 2."'\92¦¹±\1adîáÀ]\10õ\840\ 6\ eIçW+a\838(ÐâJS=á±Í·RY\eib,²â\86ÞYÎOâ9\vaã(Õ\a?I¦dt¬9Q Õ\16ã礰±\10\1f«d\8f;Y1Y4b\9c\90=Þ¬H6Iæ»j\89|^\120\e\16vi±ÌÊH\80iX[-Ã\bA)ÛZ
+#8Í\9a\bgü\8a\89HZn/÷Ìñ\9eP8Á\ 1ðE\13\9d\e\89~\ 2á<\13O\15J\17%Ñh!\89t%Ó¢1\95¤\80nÔE\18Û¦I\99\\85¿aßl\9b \13 \82A\80Õ\9aí\95\88 V\8bwPѬ
+æÄ³\95Uºd\9c$à-¤X]\fR§G²Q²\8b«A×ßBcï\90"\93é\12\ 6x\adDÀ\f\8a\90\ 1\18$,'5\92ZWóö0%'óx¦TÌäN\91<°H\88É\9c9\92¥B6]ªu³4H©W/\b78%/i1=+k\10\19QO}Fã0O7}&\vIÀS#ø\14γ\92ÎF*ZÀ\12Ç\ 4EäÉ\81\17\96©D\ 5r`©ÚHþw2õ@?Yä\8aY\ 2\1aĬ6D\11\ 4\95 \16-ðx
+¥¥g4\8cA VÍl\fÌ\97e%\12\14\88(\ 5A\10\1dÓ\86sÁ\86á¿Âm-,\0Ø1\12F\ 4®\17\bK\87ùÁ\19\15\115ã\95U·s¤¤qÌp i»\11l\16\ 4n&En\84\18T®ê\12\ .²`pt\95$2\1ar$q§d\96íF¼ü\r<3\15\15C\8f\92\9dM\93\85ò2k¾íÊKúÐ@º$\vb\10\89Jeî\1e´\0b8Å(\18ÝèUËJum)\81¡u]i\1e=ø\902â@¶\88\89×A\10±©¼\1eFòÅÌa\1dP\91I"\98\971\10AWò\91\14©\160®ÅÁ\19ªµ5=yK\8a-`*\8dl¯Æ*J¹)Ñ¡\ 2 ¢ã\8cæÎ²U8Ï0 \ 4/\ 4#jT´£\8b¥¸]3¿4+WyúD2\b\b\v³,.!1´L-Q\19\8aJ\86AÜÀ.\90oð)¨\8a01в É\øE\8d\14EØwF\86U\96X\e°F¢(+ÉìR\vÚ\8aj&õY$a\1c\ 2h\91¦
+\ 4\9c!0LwkIä+É+²¬²\1cJ\94\9b\98\11Or\1fÅôÛ\95ák;RLò\ 3/5\1f\81®5©\1f\3JòâÒÅói\1a^8&\95\11\14dF¨X\9fÃhÒ\ 6Fá\1a/Ò|@)I+ÍH8É:V\97"\91ÛTº4È>\8d\8a\95dθ \14Ò-\12í\1aý.\b\1f516,Ü\89ø+å¬\19§&¹¬¤þ\1eé\85\ 4\92ÂÈCÿ+vo%\ f\81e\81gl¡¦$ɱ\r(\b\89¯¡\9aÙÆüú\86\91¦VÈ7Ó¶ b¨l\95\15;Þé 'K^òÚ\88øæ\11û'\8a \13\ ec\90º\90\ 2'%¤\1dW¨ZãU($""Õ\1dm\19\10iÀ\f¡³h²fê\1d\12ëÃT^D*\ 3\89·ÕH©pK\ 3\ f \ 5\8b+E\1aB\10er\92ÊʼL\13\18\87Eàp\ 3\96Ð2×vL\94Ì\1a\14R¤&Ê|,3¥\92B©\11ñòN\ e\99¦hµ\98\86\87C|\eù9Y\ 5\16c\19E-{#:\12\ 4ØVÐ\91ÑÌÈ\9eÒ*þV+\9aÝFÂâ[I\7f\87;ÏÄÆdýLÂ\89L\ 1\8a\8b>(N°æhܽ\94®''.\9aJ bÀe¾ÿ\17Eãt I!×J\88\ e \9ci5±4x«°df\1e´N\12Kë}ñ^Ý\8d\1aº¸ ç\8eÖ?Ð:\ 2\81îW"³\16b1`e\vIi\86,ù¥$x¨\84\117\8dd9ì£\1dqÑB½\13ùØÃmiç\fS?A<\82FUZfK¬EÂ\83Ç´³\92çLÏ\ 4
+°ÐªRR*\1a\ 4\14\8bô^1{¤\84Ìá>\14E¬{ÁÐ~Ç\0z\q\8b*\19\10o|ÃHDF$\1a\ 6²2P\94©Â\88Xµ¤ìpC\8c+\90QÊ2º\8e\8cÝ¢8½\95Ú\ 3"½\86±¨¼{)¯Õ¸VX>\ 5eL\0D\81\97 Ô8-\89¤ È*Ù\8aKê\a.\95n·R¯\83\1a\85\88EØ2È\84\16\99\0kÑJ\eD\93b\ 2¬XA[SÅLDuÓD¢S#·U,\89\89\83b\8d\99FkmQ\9eo\9dMI·\ 4\17c\96î²\113\12\18\89Ô\ e-¼øÁk."¦¯¯âMI%,ÂbJ"\@.áÄ\95Õ\8aî\1c\9e4ÓêwNt" \aS;2\91=S\a3Ó\91gÐ\1eâÂT]²V
+\ 3\19ß*~Â\95\f)\9b\1cýh¸\8b¢\87õñ\8eÈ\bÒâE¥b2¸\80\8cÈ8¬AÍ´{.â\1e2\82\88\1dD-5°W
+6"ÑB¥F\8cÀ6hÕ ¯@\84*.\97\büRð[0\11FMµä19 £ÿ%$\1e\aå\18^/õK\84ÿ×\92\94 ifÀ\82\ 3\9b\97ÄtL\17ŬP-ñ!\b\99bªm«V\ 4T[w̸\91<^P2$w«ò9Ê7\1e\94\ 4[ȤÐ\16~\ 1\81rVrßPv·zp"K!\94\11W@=ø\²¿¦:êj\80m\99IlC+\;D\18k½\eÜUÏR\96\9avßIÁ\9c\91Õj"\82\88\12c\88z\eµUe·Ö\90[C\9c¯hÃ\96\9a\1ee\1d\85\ 1¦=¦ØPñ`\99\19[ô\14£%¬[K5\15fM\9bÜÌHÐÃþ\11¶\j*%Òb£Y\aµÄ \r\16%5>ë\8aVØs\r\95/ìa\18KîZÐV\84SôP\ ex¨\96ÑV\9eÊ \89î\9c\11Ã|%Áõhé0jHz\19\r¯\14Ó¼X\ 4\19\ f(+6EÕFæ\14móRc^ï2ÍÌÂýc¦\ e±Î\v\11`281ÏGC³\84\v\a¹®ndë\e)¨A\ 3½\9e\ 63\84ÐB/\vfñ\r\9aè\9dظ\99\99\95\8a4çUJõN\9aè£4\8b\90lÚè\e¦Ù\97:\91Ôx æÑÞÎ\r¢\95¾©»\823Ý\16ZÉsÊ[Ö\94\8c>÷¼G4¥Ô0ÐZI\ eY\89\10Ô¦Ì\16¤\9a\r¥If\1e\10\ 3½ã;\87Vý\ e2\ 2%\rd^Å\17L|Õ\92ZÃÈ\rë|)¦YºçÒ8Ïê:Ñ\¿!ù;QÔP\8cõ\9aÔ\99Ùº\8b\15-Î )u9\90\8b\1a´\87˦\18ê£YÞ\veC\ 1sµÊÃÜ,Ùüäz\ 69\e+\96èuµÉCí×ê\17s\98w´q\1e:cÐ:\9b\13\8dó'\18Õo¼8\98ÌbÓ7cǧm>¾N\1au×\1fý4ÿ~ùF"§\1e϶vF÷dz×û£§\97\7fÚ:x5j\97×··6&O¯ô\9eûÔùö´ÁSE1j\99\ 4VÒKg¿Þ\93_ù¯{g\ 6?v\8dv5@¿ö\85$"[Æ\9bÃ\8ciYn5ÈÅU©Ó¹üÍ£°¨ý\83\19\8fîÛ+ܹ'¿\9eY\96Jð¤ARÜAæ\15y\8a(ð£è]Ý\8fÌ.\81ÀA\bK\92'\ eöRFµ\a6Ã\84|p)¶í\91C¯\18\1d\ª\9fpðØw\7fD6È~L\83W|\7fÓ\8aYÌlà\8dä t´²\1e5²Õ\91é\87"#Ç\8eûñAöc7²/å%×7¬\0\87+ßVÌ\16\82\1c©ÍÑ;¾âtp\8aô2xì»?"\ed?¦Á\83\98a%Å\93\81\97\ 5~@R\7fúo\17Ôô\8f\1c¼ÔÁ\9dI\83Ǿû#:Óÿ±\eÜÔ\92\v\16\87K±"ý\10&\ 1ýäÈÁ½\ en:ls\1d¶e#\9a¶ÿc\1a¼Dz3&¢\rD\9dïæÎ;£\99\ 3Z¤×<rð*¢z\1aÛtÈ\96\rX÷~J#»¢i\98\8fÀ\96¥¤1¦I¶8zÀZ\ 6ìP¬Ã°4\86Ï\7fHc\99ÀE¸Ê %\14¬ö\18\96è\}Üh\8d\8cfÒò\12J¥1LÝû)\r\17ÔË\8aåp\ 2F3R\0OD¦<n´VF³é MZ\7\8am{?Åñ$\a\ 4\8a\14\97\18Ì\94|\ f×Á Ê\87#\1d1É\ f\84&fâwp\93\92ðh*»\86g\86\1f\ 3\95ØÖ\ 6Ù\8f\865Óéâ\8f\90Æ\7f\ 3á\ 3Sù\9dSØ\97¨\9c?N \rç\0\ 5^j
+z¦\7fál¬Ód÷\0\8a\8e\ 4\10-F\0±|#A\95ÓO%\1f¢\0i\9f\ 5°\8a_Z\ 50e6 ´Î%\90~è\99°ß\ e.\15ÒW¥\10\8aáq\16ñK*\90\9cÕ1¥\91o\9bª÷{©\85B\12¤ôúA \11¼ñ+..\8eâQ\83\97\8d*MQ*;\ 2¨:5@\95\80LÓ}\19Am·-\1dPLÑ\9cv)c\8aÞac\r?@
+\95§¹ V6!Àb;_K;É;#[ʪ\17
+\8agák;hÇto\1cB\9c0¬Tr\94U\992}ZóÁ\1aÀ\92b!@Ô\16\0ª\8a:\82\1aÙG\eË{\0XzYj8=\1d\95Ö\ 3\82Ú¶\14Pã\15\9fh1ÕOY\1e ñjM#$n9UÒ\0*W _&\b?D\1a(?lÆ\93dÿT?P®¨6²&\8a±ú¥\a\9b\93Õ\vÚ\95úd\86mó¬PÒ\81JqhÕO\13°òq\b)²Û\94+êýR2_\12!ê1¤s³ò¥¬\8e ¹$\ 1\92èþø@\98@ú©\94«ËÚ!å\97\95!â\12X¼P \92#Nv\9c\95\ 6\ 1djI\82¨gr\1e.\1e©'V\96+±d\ 1\81têÂ"\8ax\13%\8b"@âßEt«\14$\8a¬\0io\a°iãel
+Y\97ä-$\b\8aK\ 2%Ì/í°\1d«ä 7©hË\9b¥\eçbp\97\8b']F¯'\80ø¨ \90\9b\83\14uÚ¤\ 4Ô\82Aì,n¯·m\1c³Ô\93±MG\86L¥\9bI\92*\17µ\94OM¢i\92ø²\11K@Ú¤V÷\97éMdË+íM\155\e\v¨\ 3\14\1f¡pÒt\ 3\ 1°°\8a¿òSÃ\98SÅK>Ç%PÄBCTÊÛy=\19f,\16$gnÔÞRñh¢H"µ9\fµðZ\8eA\9f·r\10m~ú©\ 2=\8d¡Ú\99\13:(I,dÐ2^Þ6MWj§\82ÌË\13\8eÕ\93#¨ue\9f:T+»;ãÊ^3d\85¶2h\95è6ß2\85\ 1\15 óQãOy\\1dé`\1d{\93\8a¿sLTs\0B\82¬*\11=ÚB\98u!Ï1Yîë\11]å
+ÛÉ%Ì/Þ\93\ 4XÒ¥N\92@öcL³ý\86å\92ß<\857-\97\94Ê\9fj+{»\93\9fF\8d\8b\15\88ɶ\ 2é\16\a`ârÌþ\ 3\90Ü6aA`À\0Ù¶£k${µ\8bå~Hê`ï\aHÜ\17(úÔ\19(\11
+×v@\9dJÉ7\90ÞÇòÈÍ!\9cÒ?a\82\9cJ\93¦\82\f\88:åHxøÔÃuÕí\0âÛD±\12ÌF\9e)å?\ 1*\94\ e!S\f!L/\1eW\0\e.\81u\14@(\ e\ 1">i$¸U\ 6\8a\94ζ®\ 3Ƶ\93\ e\87\ 3ãË_\ 4Vó z\8aD LXR\ 6£¾U\94ÇÄð\ ePâ}NJe\ 1H7a\ 1\91\83\ 1\14\19S\aÉ\ e:\ 1\v±ð\ 3ÄLË\0Õñ¬È\1a\0ñ.\91fy@\0Ð5&\9e\82öÅm\905y×\81"rµ\1d(¢*\8d\98½O\9bºm\aýÓ¿Uæa\9aN4ª\ 5VùHÂXY\9dkrÍ\0\94¯½\ 3V>J\aºC4aË\90VOª°i»åý®w,z×òã\af\ 2ŵK½ÖþÉ\8b\14Q;y`ÝVÚ¬c\90¨G\98Q¼ñR&\e ¾£\ 3$Ùö,\1f\8ed3)!GRÏÃ\ 4P
+%\83\92H¹C\80
+eVR°2\82ôS©÷ÜkgÍ /+K°é½CD·v05>\rÊ\ 2*]\80m\14w¹Ð(|z¥?ù\8eH}ÃÞÞ\95rqç\80|\1dËN\ 3rQåõÌÊ$\bëå*2Öï\13
+\bû+»\eg¤FA\ fd3Ù5\ 2#Ú¡·¢ê!'\ 65f\80ÃQZÈp½Ô¢\91Ù\8d(Å\ 1«\7f\99Jy;è_§²ÃÚîãtMÒ\bRW¯w«KuÎçå\8f\82\ eýj¹¬(ôGH¾ú\ 4«tÃÅa?£IH*R\riW)>Ûùe\8a¢Pïø\94qå\97©\94Ú\89óg«>\rF\19\82¢\9e\ 3Jñè\8cªÃ\ 3µ¬{¤__Qú,"\0éÐÔq\92´å\1d»ÉA\89+å@e^èLÙRäp\18´\8dL9\93\10QS&ç\98¥\84\0dl\15\e¥+èxrº99O.Åóªÿ±hÞ\19Û\97\z\ 3ñ \84ëFO\8a(EYÍe\8d\92 ñæ\96ß\97^î%\810Ü\0£\992\9ce\82Ò\91$«cq¨N\ 6¬ê$\80©¨EÏT\9f¤®ìǪþSdÀß<\857o\9bB5½å
+.;¶\8e" \88l\11( q8)\12Í\93bº\ 2ÊøYÕ\14òiÇ÷Xc\96 j\ e\92 g X4MÔãbg|së\ fJ\95-\19RtrR\1eQTìJA¶\89R\0K\8bDPD¿*o\17ÑÙæ-\ 5\84è\85|\b °ìϤ\\91ú4Ù\8cKÕ¤²ue \93]É\ eXÅ/cgq/KV\88êoy©Î¼ÙÑ\94âý\9d\1f`)å¨\13(çª\11¶Ý\87UuÙÑ<\8a\1a\15\ 2WK\93\80H\8c<\a$\19\89@!#\94(\ 1\8a\94FòóÀ߬ê\88\19åS\0ÛÈ\1a\85rUêÌ>\0e,¯\ 3ªf\1fYY\0U&r\f¡Ç\0Ù¤cK\94\17`\14V\84èéäÄÈ*\14\1f3\8f \8dÁ\96\10¨«\97d²C cÍɼG)\82IP$¿Rê\93ÓëpÂ292\97\11éª\94´äb#Ñï@Ù¦tÀ´yô@éo±\98\ 3\ 6GÁüòù\81\89$Ó;TfäO DË«y41VP\91\a\1c¥Ô&¢Dj\18\15Ï!°ñuoèh\8dIÓC\86ߢ\1c,ÂI±µ|±\0ÕMoKrP®\ 6$`¢Dâ®Ï\83\88&
+\96\8a&È\15\99\1eÐô\ f6[A<~§\1e8=\84\8aÊs\ fw`³kÊ9 \8dU½\ e¥\1cPoXQ\93\89O\9d\9aÂ\84\0\\85ëiU\19:å lO:`Ú»ØY·ÁiÌü ÒÜâq\95í\80D8qSîcS¶ö\1c\9b\18\ 1Jò\ 4[Ñ\10ØÑ±\ 1cKÒAÛ\1a¾vÂEMòä\86\8fÛRJ\13àán\94ªBàI/\b\92|/®c±®Ä\96#ßV\ e\8d\1fK\97\98uö£÷\7f\8aèð\9b§ðæÍG\15\82(\97Ë6{ÖBùµZ`úªUÆäÜmzÕ*¥ê.AéU\v\19±¡Î\0\18\9f\17ÄU\10\90:¾\e0N'\81"\ad8H¿]\11ç\16\95\b±'ÇiD\8aÅP|N×FY\93âzÙ¦\97\1c\94\1e·2`éÓ\97F .®\93\81Å\80t/\ñµ\ 2@}á*¥"6@\9dªØ\81Ún\8b: ¾pa\88ZV`\12§§¥\99ù2ÛÄ®D\1c\ fÀøÂ\85]+d×\8a$gËÓJ\ 4¥siÛA»J77>p\95j¿Ã¢Ò\ 3\17J×X9¬øÀ\ 5P+\93\8b\ f\à¤:ßî\81\vþoµ\f\11\1f¸¢â\ 5\90>p\95+\92\1e\1egPv\96èFò÷é\85\vYOuËãÓU|w\8a ~êÅW·ßNjrp\by\80\82Á\\11º{ã»§ku\ 3\ 4\aµÔ!7N߸\12¨ÉÞ¸2`|ãbo\84è»\84g\95[Bº'.\8d\9e\00>qéû"AútåÅ:\90@QUnûͤ\82\91\80Ò#]Ãç$\80l&¨9\99H|á\82Ì\aÑ\85ÓpñL)\e\ 2\94^¸¢ÈT6é\85«T¡\1f \9bÞ%\18]\ 1\90ï¤-ÊÚ\80é\ 3W©ÞÓØ¢"^\ 5OÑ<\82\12âWÍ \9dè¡èMªi¥Û\96\1e¸ÊxÌMzà\82\1eZÊ\8687\aI\ f\\190>p\95+eÚ]\1f\9f\90Dõàî6\19Ajµ]\11E-Ä«\11d:êFA\17 ôÀUj¨h\0\16I\f¦÷;AéT\8aß\ 1d«ìÊ8\99p÷ÀÅ8Þå²N\ fW^u\9a\b\8aW\86Ïνv,ÓÍÞÔðãõ\19··V\1f.t{§/\^=\87\ 3(¾pe î\85+\ 1ÛøÂåõ-¯lÓ\v\97WY\8dW·Mó\15\ 3\r(¾\8aÔ^Í\86\0éÓUF\1dò'.)û\97µ+Y\ fI@\89pÓcU\98QÑÙ[h\e'ëã)co.ªm}\86ªO\\81k\8bØd\15EóÇ\1a!À XÙc\8d\14É\ 30=ÖHÌ\13W\1d%?8\9f (\13\105¢©Í\1ek
+\1a¡8uÙ0«)v"\88\9f"v9nl2\fYõgè}\1cYb\14U-Ë|éLâ #\7f\80\8fçdôËÈu¢¨\9aA\92Y(\83©ñL
+{*U7qÄÚ)\8bhº\ 5\18¥àÑ`g\91y@ jÕ³ª\1eF\90~)\1an\ 4Æ¥S\13&ÊG\8bb\fð\1e\0åe:\ 2\ 5ä]$Æ^G\16\81ªGÆaèV\1a\15-£¨ªá\84Vªù4\87¤\93Î\80ñµ\86U?\954Ôñ°\18\8bJP2ìZ=9\0Õ\0lUêk\92\91ØFFßô\9ek\8aD{º÷\1aÆëæß"n h{\ 38\89¯\95\89tJ\895±]z°\91À(.+>Ø$Pþ`Ó\ 1£Q\8aåX\0H\86+\166\93\1dï\f\&RÙîÁÆtÄ-j_Ü®\ 4Ò}cL[ÿð\9dú\9aPªé4<rMJ\ 4¦{ø\94"¥ \8dúbã¤v4Aú,â:\99 {±A\r\95JÛ\99è%¼\8f èi\84º´\1d(ªo\91\98wí´6kÞ\eC\1ceT\97F\8dBL79ñ?ã\12*]\82¤ô\88KÕ/\9b(tå\9b"Ù1\ 6ÛÇj\9csÀ$}¤\ 3Qù´Éí\97\91ý¦7\e\18«½^\95ä²PEü\8co69(è\ 4ì0O\88h\ f?«J\17\91ã1³\99ôñ½Nx\9cn\85øDônT©\8a@ïJ\95\12ä\96\7f\fW%=Ú0F½\7f·K\95Ô3Þ\ 6A®+>ÚDHþh\93`Q´\13g«\8c4aD½c¹$ÊÐõüB\95\f$ë\9d\1f\1e\18mv¤ú©Ì±wø0\ 6X; ÆeÇ×r )Jß#ïxShê\1e\ fÀ\ eWC^QJþ \8c¥¤=o³G\9b\ e\94¿Z$`²ß\99È\9fºG\eC·Ï\1eK\8caù\19ëTãZÆ^K=¥\1eoNW§í9R0
+(ÿXó\17õÙ¿D×\ fÄ\84\9aBlO\9c\90B¼=¡£¶QmÎ\)úbL÷jS\94%«\1d\a1²d\81ÐÀ¢qª\92ë\9aNÇm \8bR¨¯@f\16º!\eä.Hv\99Ò%£\88\9a?$¿U²\84d?\96îO±Ëüæ)¼i»LL1ãªLR\8c\12¨«3I\11naÀA\0\93j¯µßëìA®fv\19\80²û\1eØ\82¶Kï{R3 \84\8dL+\92@I=b椺÷\84(\ 5\97{\1f;ZN9Dzz\97\ 4^uï^8>frÊñþ0\ 5\89,,Þ²\ e\94ÝÆ\ e\98n8Ê\0\14¯6}Q\90N:#\0N\82\ 5ë\8cPhÊ\82:#'òÌ\1eAI#µ\1d,®\9eúg8²¾ë\ 1n÷\0Èr\98\11&\10Pl@\12ýtF\11 Gg[ù0#ÇÔÛ\ 1J4;ArÊ\1e\81QR,%\87\17 uç%XÉ\sf" ç\0LL'0Im\97X\13*jw \88^´hD`zeg$\þqCסÞ\10âRédoD4\1c\0\98Ü'$\9d\ e×\15\9d,\12¨ç\8e\90\80ña®¡¾
+Hz\98\93§}ny÷2×ÐvÕ;\1a½qùù1V<\81¢2O\ 638{1 ¸ºçÊ"\99Q\Õóî\91RÝ\ 1\18eE¤(ö2r\14Ǽúlº*\93\15\11´Xj;\95î¼fç ¨PEÝ\18\9f\81ôS\86O\ eÚ5\8aÃ]obÙਮ3#Hn\8c|vb`â\1a*]\83\18OâZ£ù\8c¯µ½]AÔd1Ü?èþE;\ f¤ÓHv"\9e%\aõÜÊd\ 6¬j=ßÎö!â7ñ@¤Eß]½(-æ \9b\99î"0"\9f×àÐ\fE1ªk\ 6¨\8cÙ\19×Cy¸ü×¾w1\10uaÍàVÁlⳫ¦\e\90P·û¸»-i\88VòÀä\17<\0Ñþ\92¥§\15*X%q1\ 3å\eÐ\ 1+Ýuy×Ë(T\98\a-½=B\16\80uÓönU4\aõÎPùX~«P9sîø%кG\8e½D\bÏ\ 1©Ðgô=\8ckê²Ç\ 50\15e©\1d·ð\9a<»ã)iÓ;Æ\93\83\12\83Ê\81Êȼ¾\94gì\ eùÖLäÐ\99\8dL²muìÓ«GOÆd½:>õ8tº=9\87ö\1a\17ÐûX\1e\1f2!\0xç#\87î\ e[üw2¡\ 2\89©"\83N&n\1ah\aëïË2÷ú&1c³óÜÉ-X\19*8M:\90!\fTqk\a\88\85Ô\85J\83:cJ\e)F2¦t\90Ì\98\92\80ñ\89$묨dk²AéU\19M"qrZ\ f\9cKPÚ\95YDL\91q¾$\85×Y»$Õ\17nðq\ 3Cz\7f\88t\87ò©h\ 2\84nÊN=ê²\85e \9eÿk\ 2F\17áÔYçG\1cyRîn,!JÙÙÄ\80\99Þ ¢^ýà2«y¡w\9b;\18\87
+k\15m\89\99Q\1f\94¼*\ 3 M\11\11H\901\8a\93Â:DEÔ»FäOj¸Óv)ÌCT8 s\12¯:\90ï|p:`\13][E©ï ´¢\98\ e\ 4_#\992s\ 1Y\9e÷zb4ëN÷ox·)¹BX!EÝ\1cPÊ(×\99\96èɲ²[ï\94E÷n½\93\fÉùwÊݹØèZÑ\81Ò¦äÀ\84P\12\90\97mq\frê\1d\85SÃfvdѪ\93\1d¬ëD)\82Ò\85\1aà\ 4\9c\1cäv6È\9c\14Mv=<IfÌÈGr Ý\9d{\ 3\8bHÑ\9b\1e\93®\ e\97a\95îw«e\15Üþ\9et lï:`º³*7á$\9aØ\9b\8btße\ 6Ujì½\93MKèÎ_ó:ö\11J\9e\13zÈc\91ËÐÍ\ 1\99¤'ë\10föÄ©"\94\87\ 3N¯Hd¶.â*ä\11%Z\993|ÊAiOr`"ä±³¸ÁÙ\98Ý9ds\8bç\ 5Ëþ\80NØ(\80äè\94>G G«\vH\14\1e{\87À\9c\96õ¸[2\944È\86Æ\14ìUY3\80?ÈY\r-&Ea!\1a0 \9bÌ:UvH\ 6\12×\ 5C».\18Út\11ÐÙ\8fîÏ\89ÇþÍSø³\1cW¬\9fw\±~ÎqÅú9Ç\15\9b\87cGÇ\15ë\87\8e+ÖÏ9®X¿Àq¥ß®\88së;®X¿ÀqÅú9Ç\15ëç\1cW¬_à¸býÐqÅú¡ã
+4®¶s\ 4\11Ç\15Û\85fG\87\14ëç\1cW¬_à¸bý\9cã\8aõCÇ\15*\97\99¿9\1dW¬\9fs\±~ÎqÅú\ 5\8e+½v\95nîÐq\85\9e\13~à¸bý\9cã\8aõs\8e+Ö/p\±~ÎqÅú9Ç\15ë\178®X?ç¸bý\9cã\8aõ\v\1cWzíÄqÅú9Ç\15ë\178®X?ç¸bý\9cã\8a-\178®Ø.8[\1dWl9t\±å\ 2Ç\15[Î9®ØrÎq%\82¢5¦í7\8b\8e+¶\9cs\±yl¶:®ØrÎqÅ\96s\8e+¶\à¸\92¬\\82HÄrÎqÅ\96ó\8e+¶\9cs\±å\9cãJ\ 4%į\9aA;q\IÖÇÎphËyÇ\15[Î9®Ørè¸bË\ 5\8e+¶\9cs\±å\9cã\8aí\87+\8bã\8a-ç\1cW §ÖÉ1\9d®)¶\à¸bË9Ç\15[Î9®Ør\81ã\8a-ç\1cW¬\9bs\±n\81ãJ¯\9d¼uÚrÎq¥·Öè¸bË9Ç\15[Î9®Ør\81ã\8aõCÇ\15ëç\1cW¬_à¸bý\9cã\8aõs\8e+Ö/p\±~ÎqÅú9Ç\15ë\178®Ø.6;:®X?ç¸býBÇ\15Ê1¶\ ¥Gàr§\bó\1a÷µô\1e\ 1\88\8aµ-ç´têRÕ\102§¥Û\18©ßël¨¥Ûr\81\96\ eà@K'>öµô\bêié\11ØÓÒ{\1f\8b\96Þ\eB´ôÁTD±Î¦\1cµïla\19h^Kïö)ël ¥÷ö<jéÙÙD-½w\82¢¥GP®¥GØv\1fF´Éµôh?êiéC`\1dYç@K·~NK\8f&ª\9e\96\ eà@K\aã\1ahé´\82\rµt\0\aZ:/d_K\ahNK§üÖ×Òy«úZz\ 4mô7e^K\1f\ 2\85÷ø9-\9dÃöµtNo¨¥s\19}-\9d\8bíké½MÉ\81\ 3-=Û⨥÷\8e"jéÙ\91E-=;ب¥GP¦¥÷pBµtP«9-}ÐPä¾!°nëÁÀ*\8dø9-}°\fjé½Õ\8aöÝÛ\93\ e4§¥s\8fûZ:O¢¯¥G¤§¥÷N6-a¨¥\ f\10J´ô\1eòD=u\0¬UÜ\1djéÙ°Qcæô\ 6Zzâb\9dö\9dáS\ e\9aÓÒ³½ë:\ejé½sÈæ6ÔÒ³Sµ\1dó\9d×Ò\a(!
+y\94l\87À9-=Â\92\96^Cna\92ÃÒH}\93 +£ì\fRô6¨;\83p=S3÷`÷\83\94_LÚºéR\84\98.EH\96\16$×\99ÿ\f]ý7NàÍ»2°p\15r\15w\9aº\97\82\ 3\ 4ªªîWD\8dpIS\87$Òè\97IS÷J\13\8d\8b\9a:\92·\92ÿ: w\14\90¼y)(~I\9f·^;yÜggú¼"\82q\9cF\94Û¼ÓîTS÷*S#\ 5x\e\1fE;PÒÔ3`éÓ\97\92í1jêª@\ 2ÒiêQébµ\ fSÇvF@Ý[e\aj»-ê\80ª©c\ 5T\98\ÔÔ½&f1.ÓÔãc\90qIS\97\1a|\ 2J¯<^\17Ð)ê8+ë\aÍ$³±qIS÷êK\82E%M\1d@ù2*êÉ\94â\92¢î¥Ð AIQ÷êuÌúPñ\äÙϸ¤¨\aP[Io\9d¢î5º\14À¦\8eÏ\9eqÇ£\ 2^Åàa\97)êé5$o'\19W8\84\90ýJø\19æ\91ôô*ÒD\97ÔÜJ\83\92±oª§'\90Íôô\f\18õô*\85ñEE½\92p>ä(Nzz\ 5ó!÷!ééÝSwRÀ+õ\107¶÷JÛÖ²û\99>ßÊmÍ\f\rB{\ 1Jz:\1e)å>%EÝkÂ4)¢¢gZ\17òÇLQ÷ª\870\85|¼\931²7)ê^ãª\ 1J\8aºWÁ\ 5@ÕÔáX ïðI\ 3\aB7M\aJ\88/^ Y»Ès\92¦î¥\12\8dlpz?/µl@TÔ½\96[\ 1ÈÍA\92¢\9e\ 1£¢\8e¾twUOÇ\88:¯\wÕº^6éé~E\1a\99\8e\0z¡J\99\92\ e¢+Î?II×úÃ\ 4%kO-{\9céè±²\15\80E\9c\99$ô@ê{eëU\8c«7\99\8e^Å+\9c·c]Bö¦:z¥f¨Þ:\91n]ñ#êèÕJC^\8db=ª&e NGO@\17uôJÍ\11¸{ª£WQlsB\1dõ˲ÔÛ\1duô*\1e\87KºwF\18:\1d=l -¤Y;¸\4BðªD²%¹\11ÙP\91°^ÌXÆ%\1dÝÇlå.éèCVÚÓÑKu 1¶ç2¨¥ê\Ïe°\90ÍvY\ e:õ\ 2s\1a\8d`:³M?Õ\a\vÄ
+{L\9a«T°Ë\93yµ\12\15ÜÏ\ 4¦u\86û\99ÀD\ì}\Q\ e6y&0É jú\99À4t:Ï\ 4\968N\17 Ý\812\aÖ\ e\98\92\81iÁÊ,\19X\15\8bÌäÉÀªF\99\95Ø\99¸.«\94¾Ë\ 6&nÞ\11\14ׯø\97'\ 3c\95\ 6AûÜõ=\12Ï\f(\ 66\93g\94ª\94*v
+}U\94\19a\8f\1a\9ej»\99} zcuF\84\ e\92«\95\11Øe\ 3Sæ\93%\ 3«\8aB¦\91g\ 3cjr\ 2\937¼J|yN¯øbÒó\1a,|\95µKnÞÊÄ:¯A£Ø\91y\r\9a¸G¹× D\80\98<é\92\ 4¢\98<5S\ 2å^\83\1d0z\r\8a\8eflæ5(¾åÆö¼\ 6M¤´\9d×`ÑQ¸dB ×\9b±=cK«XÔ;ýV¯bî4(ɳL?%Xä%YJ0Ûêùûd\87M2A\9e\12L\v\17çi¼¤F§ÉS}\95E\9b\81\92µZ÷ kWë1v½IbJÓO
+\96\84\98nvò¢fò¬`Ñ£°\97\15¬\89BW¾+\92"Ä\f\92@y;\ fKÂG:\ f\95Nó¤`J)úYÁ¢n\9f½\98U\11A%î¡\ fÊP*\ 1;Ô\8b:v\86 \91â÷\10¹òÞ\r\10¾J\88\9c®\85Xv{w*=Ïõ\\ 6\8d×\83ì\\ 6»«\92\\ 6©Vôo·OH\9dÙØ£\92\92¹\f&Pî2Ø\ 1£p\17÷:s\194Ê>{¨©mÛ»Rx\ 1tý+\ 57×ü¨õÓ¢tC*\v_Ú²\1dÐcß±·\1e°V\ 6×9\r\1a£õw"\eÐzÍ}váYò.ç*iÛ]æ4Ø\81r§¹\ 4LN\83Æ\17}\86çEºë3F/¥\s\ 6\8a\87×FÕíä÷WTI¹Î®\94Ü\9e~f0\89\97Ì>Fª5£¼¼\8b\1cÐíì\ 5\18X,ÖI\15¢Rä¢\87¤Úî-\7f(Ìô|\ 6m'&§×\b«O¥\19.XÍÐ\93a\fDí\88\1eÙk\ 4«\83å\18\b\ 1\1&\19±:Hö\1a\91\80ÝkDê¬{\8dH\83vO\0ÙäâS\81UOáìFZMHÚ»ÍñÕ¢w\9dã»E\8f½\1aÍ-\93½F\98Ji|þ\1a!¥Â²);\96\ 2ê-,\ 3å\12B\a\8c\82Dê¬\936L\14g2¡Ä\94QRIÂ\8bÄ7÷$\9c"r\82<\ 4S\1c {·9\ 3æï\11ò<Hù>3\v\1aEÝ\1eP\18\9dËÌǪ\bÆ\f¶\ 41î\89·¾3\1f+ïs\99ý8\99\8b:ûq\aÊìÇ\1d°\89Ñ\95\92â«'Ô\96ÌG4\10~µ&l/].\vPõDi-\9cØ\97ÃÓ®ä¦â6\1a~z@«f\98Î\80,É ³\8bo£n\98ß|\8bZPý\9b\1f-·\m´ w Ì\82Ü\ 1Óåk¼Êë\9d ¹\89\84:³ 7m\14ÎõȬ¾\91f\ak¥fd\ 2Å;U\ ep\ 2±äD¨î=Â\ eÐD\81Z`~\0¬Õ\9aÙ\8d«õûòÙ)\ fè¯B\v=æ\8b\95üè½-é@ÙÖuÀD\8f$-\13\ f¢\89½%\1d.=HX)UÝ?Ø´\86îø%\85T\ f¡,ëîÌá\8eÄ\91\f\80I\19N\1dF\8e\96\ 6-L´È¦ç\b\98\ eâ\1aDT2úÂ\9b!S\ eJ;\92\ 3uçºÎºíMcæÇ\101"\1dV'\ 6¤#5b\ ev½Ç\88´ò\1c\1f\92ÈØ=FdÀ\9c\92õ\98[z\8c¨ÚZÊ\1eUAÀ\91\1f\10Z\87\17\87\1aö)-újY\91\aEt+Bú)¯ºL\95)Q%\1c\v\90ûKß\0\ 6¿.ÿ9)3\7fß<Þ¼\ f¡\10Q¾ÙÀ\1a¬&\13±å&hÒ¶ A%¨À\98åX\926Fo/\12\83Bª\9c&\85A\ 2\86\8bL_`1r@@çÝ\0\86\82²Y\98²@\8b6yö\99FJ"\16UòÄ\13\vm\ 1\85¡î|à\84\932\9fj\91R3£\12í2Ë\vÚV\955Ç*\82 \16¥7Ú¤\124\ 5ð\19?ü¾q~8\8c\ 4õ\15Ô\eL\17MG\ 2\8a\82UÖÆ·z\14\99åú\92ë¥Búû\10\81Ù\86ÅÞºm\95¤\ 3Ãío\9c1Ãsb-ÁyJ\90l\82Åm \822Ä\87J\96·\0\88dw\90®¶óÏ\87@>lF LRlÛ 8©V\ 4\vY0\15\9fï\à\84Ý2e\9fËöKÒú\r $õù\ 6"I`\19ÝØ´Ò<\92\86DeT\8eÍ0iH÷¥\13\98ä\ 6ì\90À\90\90Ç\r\15\v¦\82¢\18OÄ\8aÀx\95\88\81½\8fUä#\1fèa4s\1f6\991ÇK\7f&%û\94ûÁD\8fqß\12(_~\ 2vN"\826d\ 41\9f\82\98ÃÉ\bÒ",ä{'c\19GÖ;?\95µ\14´\91S\98ÁáG²Ó´TÖ£;\91¨^yS§qbC }L\a@\0ÜÍ\b\96¤ªéÍÛiL)Ö\a\9d$ZÜD0ARG\13-Sb\95Yñºk9(ßÔ\ 4\147'éMO×$kp«\98Ñ\9d¤\8b\ 2gwâ°\1aë\89G¼ÐBG=\9cJ\9c<Ç)\17ÝmóoÕ\8d C[\17\1fcsì\86|-ÛTuI?\84\awW¥\83t\8bï`\9d\90/\92:J<Ä26¥7v\80P)\9bx~0^w-;>ñ6ï!\94\8béqû\b%\81¼H\8fm]\97\ 1¹p
+µj\8eæ\16\93<6\92r\85È\84âÀ\ 1T·¨\7f\1c\87\91\èð\81P©\95¦zO¾\88õÆ,*´ó÷ f< >mt\92$<§·Ø/#0㣳LY(K-ò*[Rô\83I\94\13¶Hæ|¦Z.¢\82\96`\19çè \89à CaÓ\1d\1fR+â\80c¹tY;Þ\16\93ìä,Щw|\9f\85:©K?`¡N<\1dú\9fËc\ 63\99¦JrL3\ 3\10}þ´Gñ]@Æê®"\8füT°Z|¬}&nWÈXÍué×õp#j\9dK¾³\12é\8a\1aïÖ\15IÏ\95àá\82×Êud§\92éøJ\12í\8bY[xcUFc$Ü\82\v#\bEa;\99É\85]#¥V\11©2-\8e\85TE\8f¼\80\8eV\ 5K \95¾O\\11(Csû\80º*¢E ú\8d\88°nôÓ¨\1cÝ?£\15b}\19\8bÇj\91Åõ3\ 4\12\94\9cnX<Vÿ\92×\9c\r\7fìÊÉ®K?Æ»^QZ\832ʱE6hoÌlÈÞ\88ý\ 1\87ã\r\86\9b\e-\16¡<bO\8cì\89 Ü\ëëRáÂyi\ eúøîÓxßÿI\eñ§\r
+øQNà\9f"uÐæò«Ü(qÙHͳ\9f\ìÓeOuÙ÷f47Nh¾\86zàF\f(\9dRb\98l\18'"=ª\8d±ÎO\99\9e"q¥)Ò?:¡¤¸\91´R½\81Mç\83=\12Í&k.¿êJùs×<ý\14\eñ'5øö¾/GsãèJÿ8þ[Ñáþ¯\1có\9bT6ÿièr[Hæ©\88@B\8c8ÚN¶ä|\8b\8bn\8bÃ\9fI\85äÓt²;gú\88Ñ?Í\f\9fú\98ÖGÃtðh\96£D\1f_2LêãX\1f\ 1ÓÜ\80F s0Ѫ[a\86C=\14ʶ¤\7f~ýMÏ\8e½\8f\10}lI\9b\8afùÉõ\8f5;ð>*ôñ$Íí\r\12\87ÿÙ\83|S´à\1f\82\10¿ãúgD.u\94íh\91v´\7fõõØ«NîÁïrf=ü±Ò\82ý¦ßrÆ\925áÙÇ.\88!UÖÞEüé£T\91\ f\10\7f˹LÞÄä}ä+H̦·&Ót¿'\8a\98ä-¥\8aÆù^\8br°/eD\92º\87\ 2moÞm6ï\84\f© \91!õÁßò\9d)\14q䦤Ï]o\ 4\97\8d\90&Ñ5){}\94ý\9dy\932È[¤\99C\9a7*±ü\8f!ßï\95hæ·aîH¬ë\1f\89Íõ¬\8e1f=åÈ6\8f\8b\ 3l\9dÇç\1cÝ{\88$\8c2aÙ<\16\ eðt\1e\93{\98Þ\9bud\9b½eTýý\18`è\1c\82\ e6´\87\12ó(3@ªy´ë¡eïp\84!&d\98G\96\ 1:Í#\\ f!{ó~ÃòÒ[´x£ÒÕÿ\0zýNéknåÃ\13èèÔ\1c\99úâÌ\85g×nÌ\ ennm ÿñì\97Ñ{\ 1äG×îî\1e\8c.߸kÜÃñÁÁd¶\9bOãñ/{\93+£wCCÓÖb8´.LÌ\14âÆ\10¶\rs¿öh2Þ¾?>\98mý\1c\9aözk×··6&ë\eãíÝ\97wf[\9b\9fN~\91\1eÃg«Óé6[û\87[?O¶\1fNf/&\e\aë¿ì<\9fnßÚ\1d?ß\9e¼\8eÍüDoý¼7\9d\1ddSÌ:LmØË\9dÃÍɾ´z?üÿ\99vtùÊèÉWg.\84¦Å³[»\9b2&\7f/\9f\86\1dØUÈå/Ã\8c¦³Q\98úÎäJ8³\eáÿ\9fütæ0½V\8f^\9eaõJþóä\97ðË'á\87ï\ 3\88ÆÄÑ7ß\16£Í\80½O\1e\81åk\1cISÁ\0*&\89B\Ç\9b\94ÑÚk\92\87\ 6õ\81Ôë\90\96ýøÕ\1aø\90zÞ\ 6X[ª\9fµ\18\97\ 3Ä\89\8fÍp´µ3/ÂDnòkQ\12ªFJÎQ\1cY±5l¼U\rï\9bÀn[\16>5\ 2\11\7f¶B\1cü*Üm\ 3Eb\19¥sø\86PUHý\efT3@Ͱ\95mX¦rE^\0*º\1có3øË³øl\85D\aÌÀ±ât´\98x\ 6N\10âg\i¶õ5¤¡æ\83\aÇ+}\15\10RßzÃ$ù¦\80Ô"\10@*T(±ø\86)5XøºÀDê\11SÀ°\1a´\91È ÄL5¬Àk¤ôáÚ\99
+\1e*¬Bë%µ\0\1e6ù\8aSWÈêÐ\8c\10\86H³vÝ
+1];cY\ e\10\87I\v~;Â\9eZ\9e¥[)*yTµ\12ªß\94â\94\83Ãd\86\17ÏV\1aÍ\166\85i%\e\8d¥\vÛÓ\8a\8b9!¶\8d\9bÈÌ·\rK½\85\ e¸OØ»\86 wBs\96mÄ\eP6\1er\ 6ñ=£A¡\10\96r\rk¤ër\80x¦âh\98\15ÁôÆk\13\fÅÙø*cÔE6ì\81$W\8e®=Ëu#h¸FÔj¹¾°u\92\94À \88\ 2ví\1a~ãü\ eÎÓð\97g\85^/ß\ 1ïñÀ\16\8eÅY§\81XR!¾Ðw\8c9T\ 6\92\97p.gMÝ:p´\ 6\14±ôZ<#Ì\81Õ"Y\f\89\aÜ\88g\19
+\10±Fx\13¦\v\16·\86\8f\1af\81\rÛÂèÂÒêC~\83÷Ýpæeô\12í\96\8bÁ¥\|#Nüe¬\fR£Ì@Í^úÓÃ\9c\81zRt\10\bW#Ä\a \16\10®\90\91±2#\14?æ\9c\ 1¨J;ê>
+Ø\1f®ÓÚ\99°1âïDH\98Y\15«\82á\a\845á\ f5ËG¶á¬\19\ 4Vy-\ f\81¯Ã|*'ߢI@\99Êj¨>v\1dþ áz\18M'Sµ\92\80\ 55P\19\8c\85OZß\8e|³"c41á\vßh\92\970>î²\8f ÊÃï\b¡÷¨\18\rL¯\10\9bäð\ 5È\ 5ëF\96²o^k¶Wx_.,~çû\96\90\a~\82·?`{e\ 5ä\81õµ|S´\8e\0Ë|ùXT[Zù\88ÞH(dÈ\99Y\rÇ©\80vÖ\11àcéײ\94©yÐJ\ f¢\1dÎÊkÞ*_I\1dJ\8fDÈ¡\a,
+\ e¤á\8bZ|\87<\9eÀ|è³^©K\fâDg\86®\84\90y#O\9aüF<p}\ 1\8fiô*/ò¨ªTä{Vò\0å\$¬³´Rf¡B\80#6Íó \ 4:H©\ 1\8e\8bQp¹è\87\10º\ f2N@ªRSÿ\86#\vÒ\vÑ®nYþ\11aü\8ehæ$ \ 6ûêá\92\ÇÔD\95ºÈ\ 3`X/¸\94\809~$\9e\80\153i±cqJ®àsÑÃg½\ 4¸\19,E \15Z\89\f\rìÊ£ä#³ý\16Z ÅÇ@¦\0\91\92\b>V"uFÂWAû\9c¦âµ¨y\87N}Aâ'\90\96¥\14\86ãñ~VúDnQý¼àýL \1ce\7f\ 2Q\90pH\84¼b\ f\b`~y8pðL\ 3¡\94äh\88\88G±\rôKÏ\7f\96=\ fmæ\ 6â\1e8ø/\ 5D3âG\11v\0\89[á&\13@uL\ f\8d\88\1a\8f\8Ì0[\8b×\8a\87«omÉ1\1a:\a\0ä\984²\95@ \8f\87_æ\87E\15\89@¡\94V\84OÊBÊÄcS\1aÖ£*\ 4s±o\1c\184\10L\8e\ 5µH\84\96Kø\8eK?\92\1f£tr\,"Â:'pÙ 7µ¬Å\15\e\1fÕâ\ÉJe@ê v\80¯\96\81ØI\r\99\96\94¢ôRo\14\9f´\12Ö]":\13ã`RpE(+¹x\00\821tV\80æ\ 2\ 54n²\8c £½f¿\v½\89ûU¸x\8c>\92jsä}¾\11Zì\19^KÚÀ\ 2Öè¬\ 1\8f\82L\ 4\16\ 1¤\83ëVø¦ª$g\8c\8f\19¡A¨\82\98\11~w\r\ 5"'Q\ 1\81l0\154¾ W\fb\98׺\98\95ä\r\v\94'( Nn\13î\10îµ/ä\13'\ 5¦«R\ 3\0Ð\að0\8c\1f¤\19G\0\13¦C\0\82'\ 2>*\84õÔ\94¨\84¶\91P@&â½\ 5A\ 2òÖð\81¶¥n\ 2c\87À\87H *¡?µU\87ö\0ðÈ\bT³´\bQÁKÆá\1a9óxMk)ÍR#\879\ 6& \802!\8c\ 3ß \989ìK¸
+Þ7BGK8S°\17\9e³\95Æ5³èÉ@\85\ 4«\87\8fJúÎ\ 19à-\10:\16\\bHA_\99l¤²\92L\90\14êX\95\86j+úXgÆË\8eeã\0s!ÎÖH\fÆR<¥à'»u¼\ fMÝ\1fE Dw×\9d$µ\aE\94\92^´#Õ\8e×\12\17µ\15_|@X\ 5,P\922Ü\7fÐfÉQÝHWu)¥Òär3Ò\9e´¹\1du¿ÇÓIß\ 4>'\18ʬÿáê\82+\14\9a)\1f\9e%5\93¸\84\8dW²\ 3BÝ6Ä6B\82À_\17J¦\%.âuÑÕa@=\8eÐg)ò\9f+EXª\90Ê\95½V\92K«Ò(é8\fx2h9¾q\12M\ f\1e\0ÝW£\82\86\13ΰ\1cÔ_Ö>C\8bÚë7L\89QiP\8aÓ¢\95\1e\85\al·\9aHDAXI\ 1!®`\9cp\9aAR,(U@¸@°\1fIYE!\80\ 1ðe%Ê\10\84\ 2a \90\12Q\a\ 5,)\88\11¥ú\8c\ 1\1f\8b@\1f\87#\90\9c§É#\80³¥s²Õ:ä\15Ô\13f\ 13¢\1a\81\17J\9e\83V\92\8aB±ª)\87,Û\82\9eW\15\93\989¦¹¡Gj\85ô_Ì\:\18\88£\ 3»\11[¨ø\16\ 6\ f\98ɱp\88"ÎS\8c¨Öê\0'sÂæ«Vre4\85DpâSÜQH·P\90È\15\1d\85[º\ f\81ãÕÔ© Û3Ñ\aô\aêº5|\fkR\a\1ci\18Î ´¸Ö°k|¢\ 1V@jæb¨\91\1c æÔ\ 2\9dm\b`¶?Ò)ÃûV#g¢c\e*ɸ5 X\ e+Ö\f6\80\88PI\b;¤vJß@Rä¨\b\935ðä/!'ÈïÌ1\0Æ\b6\84ß\83\86\ 4D($\95A\rù¡\1d\ 5ôC
+ýð[U\ 6l\e\f\801\11ó\8f ̦An[¨)\fR\f2H£,#ú[5\98(´]+bV\ 3$£1ɪfÙhVK«\8c\15J?\82Æ\86c`ÜCHã\92M\ 2Ø\ e\ 2·\93\81\8cpü{g\ 2í\16w>h,ð7ô\89\80YAæN\ 25\11¿<¼Ó\1a\11\v -{«uãåbðúi\19M\eñØ\e\r°,\v\11O}\11\8b\90\ 4ÊT6äßä\8bhÁ¢\1ea»«.mx\98¥ÃUõ\8c\85s\9a\f\11\0\96ùs)Â\17 úqÃ\ 4Ú8\95&\98.±aø{\19ócÚZÒa¬\9d\81Ô$ɾ¡\b\84«\89\f\11°-ðv\ 1\8fL«.\9e RT²m\11K\83\18\89ì´FãÀ\1còÞ\84\ 1y\94,\fãE\19æYJD2\8bs\84\ 5\0\1d\9aX\0
+~\906%\8boEmX;cÚH\88C\eNEÒ³\84\81©e\1a\98aHu\v*%á\v§ABØ\96 Æ\8f\8c\91èL\08\95\96N\90\96\14³)
+\1ck«eà\+©|Áú#¶\98@'\11ê+GX2z+lu\98²T\13ÔÕ\94d¿¥JvÀÕ\95V\8b\1cÖ(»Ã- X%mH¼-KS\b\80>¬\86d¥d·\8d%A5À8\8a\8c¥\ba\88ë\92r\940&5#\e]Ê\81ÈÊÈ
+\RÚ ÑÒ\1aQIÒ¦Ò ·\83½«`Ò\19]Ó\1aÍuR·\ 5\\1e»\1edRÚGx%¨®¶Z)+^-1×I\98m@¥°m\8eö\ e\89ø\bûGñjÙ ¤a!B9D\10|ÖÆºØ\ 6ÑÐ çÚ'æè\1aæ²L%a¡àÉp\8cÄ.D|Ñ<P\10\e\11\8a\88\966Ö9öØ\a\92/À\9cÖ\16d@s¸\ 1±¤\1fm\1cH7D;`Üù\r\1d\8aµ\94½\88üËÉ\8f\9f\e\82\8dè¦È\9aqô\17Ãu\90|ô©T:Jô\1aaÛa8C\88\96C©V4r«UÆá4ýï2#
+k\11!\8c¦\9d#\9a\0\97\e\95\90q\95Ys\90î¯rU¬dn¬¨ï\10O\98.¸\11\93\93(>\92[ÁÒb\14/\83&ök¸2\nI¬ê S¨\10Bögñ'¶I9a`Ï\15r%öHSI~X\91÷4\93N%J8 b 0±æsÔ³\96M-7\e\93´Ñ·ÜÇB\9b\85&\v78BtºVò\83\ 5!\16\12\89\b±\9a°§¤I\83·KRT5\1a¢\b\ 1GBÍ»á|Ì\0\88IáÐ<D®Z\0\86\95h=rxÑÒ\19:ò2\9aw*ü\9bV\f\bèHóºµ*¨¤ál!u\ fES\93|!\10\85è ì}L¤è$õ.ÚP¸\94äèb߬EdÃÉ\95\8ev\98Vãö\ 2&H,1,7t\89v|~\12\9dÈh\8e#\1c+q\19J\91åw-Ƶb6\92tÜm\94ÿ\0k©29pÅR¬ÚrÝBï\12\88\18t±V\12ê#Ê\80»B\v]#0I\ e\ 1S\18\87\ 3©\86þDÓ;Í7x̱´$ÑjM?z\18:(¥'\9dÍBA£eÑIù\1e\8b\1eE³\84ÌÃ¥\84\93òF,¡\9a#»E ¡Ø'\ 1îÙ5¨[\15\v@\r\98N\1dº\92pÈX\14>\8aS\19ϤW\92ã:ÕÍ\83@(\85Ôl!D¸\e\ fo\87\88=Åwµ\86\85\0!±\ 5\ 1 \19æ \8b\15¦\93,a f\f¹¬N\91\9cWÒq\vZf3 \9cÒp3j§\ 1ïP?êÒêf¶\8cÂ\870A«\17ß\0@u\ 2ÚW\f»\87Ù\93)UÀ\84k'\87×j¡¸
+\19µhçj\94ÆCëgæ\f<A°t.\ 4\v¹ç\95×bzU|\a\bH×°:bÅ4´VÌnòÌÒM3 ´D\13\0gL!¤ÌX\908Zf\1d\8fV\8b°`ã\841Bû\96©·\f~2¼Abóoéë/v?á\16-£¼\9cÞ<õÙ/Ä^\89Vb#Ƴ\12Uðxñð\bP\bjÂ\8e$Ù ¡ü\90\97¸\98ą̈\9c\95ÈQÃléÑ.%\11N¨\8bG\89Ó51OÈ\8a\94IÓ¯ m@\9c\12\ 2MåÕ"áM#6O¾b\18\98Np$¥æáÈ?Òb\94\86\ 1\18\86\94\9ff¬\82\1c\ 1ô9êü\ 5·ÚTѸ\0T\87E\98\89La¾FùÜ\92d/3}´0s·U4} ¸\1e\9eÍø\10æUS41p\e\0èW¦\14áPw\1e&P\83G7\\ 4\f\1d\84ï\11Ù\a\8e$\9a'\ 3Q\fâ\94\18\18`\\ f\87\ 3u\90È\88ç\ e\84æC^`\8d\ 5ep\16\94¢¨tû\88ç\90]µÒ\8eE\84d\18¸\8a\ 5ª\10\85d4§\0\8eÉè\82\9cÖª4"\84\92EÕB#ð<\87>ëÆW*T0[[ʶ\ 3Ú\ 6²\87?Ð6j¨6;'Õ4ñI+o ø\8bXfµ(tèÞ;l¤%=1\93H\94$úLä\ 6 \192º\91\94´$}6Þg«¹¼³=°b*±1'\10ÚÂN\vÙ\R\91\e)\b\1f#ßDra
+/J>"\81´Èù\89ß\vSwâ\ ef\84c\17A\8e¯\96\14\1c4\8f\ 3íç\90Ë\8cËÞÍ\1c\1eV\84\82\86\eCÅÖYyL\84\14É\8bæðÖRËó\eå\1a\0\1aÙ;غ !9«%Ýj<B\ 5\r\84Ö\85ùâ=\88ÆMH3:=#æÞR\1eaå¡\97C7\92í4=Ïá¢â\16C\16\83z\eö*ÜÌÀQ[\91o\80kèXÂ\9c`¾\vèÎ\ 2ÖúÔé$¬º\ 4C®äI\99\8fd\1eO¥\10;\1a¢\81\15ð£Ù\80éñ\v±R\v\89F²o\0\ 2Gi
+\99/'\ e\9b¥\8f{\a©¼*´Z&X\851bH5\81N\10\86j\98\8f\ 2\88\93ã<aÛÕ¤M-bþø¨¢\89\8dHjaO-å\8e\87\81\1aDâÀ,Å\ 2Û¬U]óÑ\8ch\88)b7*+Á]`\ 2\12\eJ\9bLÍ'\1f\84\16\87\1f*fzd\ eK\98lê¨t0õg _\15´\a9CÃ\aqØí\9cë6\r\82@Y\89eųÀ"\19\15\bkQÂ:\17~\95wm<\Ò\8eR\88ß\ 1n\ 3s²Ó>(©b\90s±¡\19E®T\8c¢ìì3ÈOÀwϺ\94çvË'\91R^1ÂTã+9ø3l\7fxYw5ì'°\eµxFo\19
+Y \8c6\8ag[ãå°¢âY\90\83ðM=\ÅfEbãD\9ch@]K¸?ÑÌË\87c\8a\0a¾u#r\99a\9c\1cl&5LH1e\ el(VÔa¦\17
+¿3\91\12Ò\12ÑÂÙ@-lAí\18¬\97\rP \17\87\89\17þ0µ\14.¨UR\a\15FÀj÷\ 1dZèÓu#·\12¿ÃK\ 1\8b\ 6Ö\83$U\99¥Ì"Ô5\1c,V\0G\vHLxS\86í\b\e¯í»þ¼\9b\ 1ÂöVd\1fº&Ø\11\133ñk¾\87\85öÈì\8f\93\ 5A\r\7f¡Y\ 16´\8a¼ ¶×¢ªkg $\97ú4Ø\90.ô\vtÄë¿Ó\9aÔ\95\166¢Å\84[\88\87¾pT%)®\ 5F\9bpÚ°ËP6Ä\ 3\85¨º¥f\rÇÃ6MkñïÖ\84eÃæ\ 3E\10Î"%ï*4I¼°ái¸á\8b:uÇJÓ+Â(Á\9b\9b.*ìH0¨\ 5H\90p n¡ãJ-F\ ersáÄJJG\13WÉ»Q¥)\10\1d\f]\8e_´%ètà§¾Înµ\93\99T0Ô\87³q^öȳx{\ 3ë\1fi7\84» DÊ\bÔI ¢!ï¸ÓÒ \90\1aL\98»CiÍ G{V6Á\a^ÍÙV\84%V0\r\ 2\8b\87I+L\1az%\ 2_iÞ¶È(@5W\9e÷\84¹àY:ì?\88-X½.\ 2\7fö6.\82Ïg°Qz®\12i(KnO\93\ e\1af\85Z¶ÉJÌ2d&xѹB
+p\95RÍÚ\ 1Ï\r\99\8f¥Á\9d&\86BN8\10
+±¤\ 5\14+\11éÛàWdÕuP#HÆ\90(\15Z0+ø\12Où"\8e'\ 6\v\16«Uí±5\18\87\98-²\ 3lä\15\197\93\1e8\rf\8d\ 64çäý\8eF7\8eé\ 5u \ eµ²V\v\ f\9eF,\9f\9dxbjzù\0Â\¦ø\1d
+¯Sþo z\15¥\9c'\1f\9dáÑ\ 5\81\1eÛ\r\ 3V)\163ÇBG5\7f\aùè\ f\81rQ\ e\ e 5É\ 3Ü\v°Ù¸¥i\rF6\9d«¦æ
+¹\bèh51Ó\eXî\ 2ý"l!/\83ü\ 2²\11~\a½(å\ f\94+ -l(°\ 4áW:ÂÄ\94Ãt\17u\14m\1c^CÃÄø\88\8eq\91,'üÎää\18%ÊüHzB¢\1eó\1a3% P¯\15D\80Ä\18¸\1d¾¨i\9e´"QC<t\8d\1c\18+\92\a¡\10v\15ØL\fü¶fÒu\18>ÀéÙ\91\98b©\14\b&Á,QQÖ\83j
+®f¼È\90Pzq
+Æ\vã\86\8f@AæÐVbõm\85&\1a¾\94\8eøì\a\ fÏZÒ\90D+6Ì«\8e\88\ 4×\ 2¼²Vê\ 5Æ\ 2\8aA0\fS 9©\89Å(\8bÜ\0 \900'\8bL\ 2\86×\802ë2'SP"kih\81e¡¡\a\ 1´\1cf\ 4 §\9b%ñ\8an\a\r\8d\ 5q Lñ\ 49Ãjá\9dç\90n\v\ fýÌ\aYóõ\8eÏV¢Ètj\19ì¢\92\eÙ\88Ù¿\84ÜÏ_\e\92\81R|? \1d\16¢\ 1\96NÔ"Ú£xÍÅâk4íc¤äPï)®s=Tªi
+¢äWjZ1«õ»¡ðx\15µõå\1f$\8b\19(¬ú\88y\13\r%\9aÆ
+®@Ô\9f`\88óÑ¡H¥z¼ÝÁf\9dÌ£Ð\11ð¾QkrKÏ@|ÓjR`¦\ 5 MÀ\83L#fÁ\12>W\90üJ5ãX+"N´\8aáÆâé\ e¯ø¬\83\85\17\ 4<×V\8aÕ4[z\9a\9f\92\94IÏi°\1e\13\rûTP\9b{´Ycö¦\9bA¤j S%¢¶s\ 6f.\18\e\1dÓâ7£\96|\18$+Ü\8dVò\ 2tD3Ð8\9e\1a«\ 3\a©\0oP\8e\r(Ï\f»çÓU#YRâ\ 5Û9cÕ\81)@jÐAüÞ\b\11©A\89\ 3E`!\eäÚòäÉ´2Q\98©\ 2u\191Ox\98«á\93O5\1a\ e\81a¿H¾»âÈ\1aÕ\12.Er<Õ\92Ê\v\18o\v±61U\17x~\96Y:\13\90)\15^õ3ª JÄ"\90\19\90\ 3WwvÒÞHò\8a+Â+\15\ 6<\8eì\10\14ßµæ\91a~aúaµÙt*\18ï¼\98§ñr\196\0 :Ç0¯:¤¡B\1f´\86\ 3IÚ\83\85>ÝEç*]\8c6¦;{ÓÃÝÍÑþ«ñÞd´3Ý\9cd~Ð\7fÔ+\1c\\e¹l\11F@/\1e\13P¤\b\8a2î°\83\8cò÷q\ f/Þ\88{¸Ç¯Ï>\9bî>\9cmí\1e\84I//\v\98Nãù\1fÎ|¶\87¿4ò\97\87Û\87áß\ f\9e\7f\1fVpæò\8dÍéóÉhuv¸ÿjt\7f¼;~9\99\8d\1eÌ6'³+Çÿm$\7f\\eooo½\9c\8d÷^mmhËÇai×F~´w°2z\84\ 3¿6ßöÊhùÌåþ\aæø/ú\8dÝh\8f]\84\ f\1eü8Þ>±½ô=lÊ.\8ei\7f{{|\10Û\aÔ|°\eÎêU¯Ý\1a»x5\9emLÇÛ£åÑíIh1\99\1dÿÑÍ\1fÃ)§FìbS\1aäÍîO÷b\13Å\91E\138<\18}<a\17³Éµ+£\159è\80\19½c~Ãè27Û\80\10aºáßÅ\bÆJ&\vÄ¿\9c\93\9f\82\9c1ªF7î>[\9d\85»»=á\97÷¶\9e\87kþlm=´ôÏpð²\15Ïn\8fwÿ[+9\ 2cÂJr|į@Pü\ fÙK
+ ±0òÿÇÍõw\rí\12¶rà ®\ 5\864\825\99SÐ\18\8f7>l\87ô\1c6hs\eËÿé?\7fÒ i\18ÔpÀå
+z\f\17ûgìñðteàîlO±Þ7\89\87\8b(E\98×Ú\1ci @;º6úbww¼3Ù\1cU×Fñ\1fìÔµ\11·Ë\8cº8 \93~
+?ÿÎm<bvJÈ\ 6S\92&¡õÈt\93\ 31hb\99ñ bÖø!¨Ù\10þ®ñÚ\1f5s\18¦ñ¿cçþ&\8fâ(b\8bã µ\9dMtÅ\9fM~\8aGeÿWcæ\7f\97C*pH\ñq'õf\11¯\95¿\84c\?øe{²\7fæÚ§»Ó\9fvùK\10³.ߨ\9d\ 6\8a{í³p~Aô¸v#\88`?Nâ_¯©àv{k;¬\ 5í\ 3Zní\8e¤\81@¯ÈÊ´É»A$¾öåÖþV\10iÐá|\ fë\aã\8d׿¡\87ÕñþÖF6\81éîæáÖÁi>}ÿÌèÚÃñì`A/ë\a³éëÉégaù\87í\a3ý0ô\98\8b«a\ 3§\a\8f&\eÓ "mâ\8fÒL÷q$\89Áà\ f\1fdrHÞá>\80=\ 6µ8(4\ 5bOq/À?ù_üÍÖ\ 5\8ccOn,\ eì³H\88\95\ 2û
+\ 4ö¡Õ\93Í0±É\8bÑû£3£ËÙ$ W¾?â\9cGù¶üñ\ 3\1el¬\$Ý¥\a/^ìO\ e®pþG|¯\1fÜÝÞ>¤d?\9d\8c÷\82\84wM0?|4QܼÜëtt/àéèÖ\v\bã¡õã\83ßsN\97ïîîoA\19Á\81\85K3
+\84m\7fo{ü\8büzå\88£Ìn9ò\84\822ÿÛÏ(\85\8f
+\Ö\1a'¹ø\b\a\a°º= \8aÖéÏïX4fgÝÒ\ 3z.\ e1Ej¶|\99Ýúº\1e\8e\98ÿ\9f\8a\8dÀ\857´\17Isûb\7frëÇÉî\83ÍM¢\a\86èvèÁÑa¸Ã=bDùæ\99Õç\ 1i/G\ e\1a\ 4\96ÍIP"\e\99érÛ1\87øïUÄú®®f\9b\9cæð\97ã\b<\18ê?\15GþgNØ\14W¢\90ýæOø\9f»-¥}\83Ûò\17ÑÉSnÄoº\ 1g®Ýúy²q\889ð\ füv\91472µÿ¿ Ñý_\17]\1e\1c\1eü\1eÙ\ 55\94\1c+8ÀÌíDÑG"\96º*Qò¡\94ÚÒȱ`à*±H¼1\ 1¡%%HÐî~\93|Süå\9bHpÞJ7\7f6ï«Þ\8a7o\91$C\92¨R¾Z\8c/í\95Lçê°\ 5öæ¿;¾ø?C\1aø\1f\14ü¬y+\ f/Bý·âðï\16\87W'?N±O_\1cü£\ 4âÿ¶qòÔxúÛí\8b¿_Ô?v ÿ\15Sæ?\97fx\10\r\84lÃ\gè@S8¦\ 1\83ã×\e&¢\ 5Ý>üõ×_F÷Çû¯ß\94Î\14_½:\réØ-6êâ1ºü(ìÂáþ_!kÉâTËÃ\eÒ\9bÚ\8b^\97§Û\ f«Î(ßï\1eìa/ê¸=Ó\17û\a\0\94\11°³½µó?ÏF}©\1aGÉÛ`ß,7ý¿ÆXoΦ{£õWãÍéOo9ë?\8d³þ\9dî÷ïÝ ? é
+ÕíaðqD\1a\r¥ÝÊxk1uîß\86Óq+¥ÎÏ·w7¯d¿oìÏ6ð»\8bÄùùöá¬÷0x¸?y¸~oUÁt±\8a\84}oÌom\ 4¼\9aÎ~\ 5À'Ö¸9\9e½^Leÿhñ×ßJ¦»£Üߨ\9eõ¦ýãdvÐ[òÞxKö \8a\ e\96<B± \8ený¼7\ e\14vuòb:\9b\8c¾\9cÌö·àÒð70&þUÄù\10BØ[ªüÏ¥ÊÿGU\99\13\8c\80%\95\1a¸¦#v[\1c\ 4\11æÖþI*ÍãÙxw?\10\95\9d7%Åg\1d\9e\8eKD'úÝÃ\9dµéÞ\96¸\87\97
+ÜÛÚ}8ÝÚ\8d¤RhçþÆx{òå³Ûcä\vï=¸ð/÷¶v¥\93þ\a\1f/ú Lvsº³õ«ø¥\14Åà\8b\87\93ÙÆDFO\7f\9aM\ fÆ\a\93gPÀÂJû½M^l\ajýdQg_\1e×ÙÍÉËÙd²ßûÓÎôG|t°p\88¯ç\9a~<×ô \9e\84:é\1d¥-¾E\8c·\88ñO2\82ØÓ\19Aþ»>cuy:FðöÅìM2Ks\85Ux\8dÔ v¨8\80Ã@|í[vù\96*¾e\97o\11ã¯F\8c¿\9e]þ͸¥ûS\8c\ 6oY%ø\1c
+¬ ÎÜ\1cÅ1½0L$ôBe÷¦¶¢`¶Í\9fõfö\960¾%\8cÿ5Úb\18xô\96¼ü÷}×\1a\95Ä\91q\ f\92¸aäß\8ai\e÷\96°¼%,ÿ\13\84åSì_@XÊ\9eÄâjëHX\1cò\fýs|ªéÅkÿTüù;\9c~¡GÁ\90Ñ?ò^ú\a\9e¾ÿ'\9f;oO··Æ/'Ï}ôü'?zþõ\974¢Ò\95tU\8bôÏ7´d\83Î\82Õ-Û²mV
+$Ë6ÎÙf¥®|õíhïO¼Ö\7f\83ýaé!äFcµ¶Ê#MAÛVÈ\8cÎu£n]Ua\7fÞ\12¸7Hà\18.øHDÄÑ\93·Dî-\91û\aúÛýõ*©Y¤\92º\7f\92JjÞª¤\7f{bý0\90ÐñæôpöV\1eý\87\93꿳ÑÁ\9cV¢Mè¸P¦Í\8c\ 4ÿ]áõÏ´FýSÃmO{¦\ 5\8b2\18ºa{\8bbc\ 5³Ý\1aæfbÊÞJü¸\e\14üDîûÊÖþLþ&É<³G\8eÖ¦³ÝÉl\7fdG{\7fj\84éB\89ª7\857%U\r:ý\8dÏè³c\9fÑÿñ,ëÑ\1f\r\938*SÜ\ 2\94ý=Éüþ7T\94·ÆÒ?\91n}\13 ãÃí\83o3rµ¾µ³·\9dÈÕ\11\aðßÅ}9Å\87\81J\1edka:Ó[»\9b]2Ó\133¢>\f\1aQPJ¸¢\87Ï\19.\85\82gXB[5\8e?\14¨qÉú\9bUôT½üM\9ejþÛ+Ü\8b'¿\9e\19ÂÏ<Ü\98߬Ë_½Ú:\98ÈßþhXU8ø@"µ¯¢(K_ÑèfJ\8bl¡mí,òÛS\0(ù'Û\96\ 6Ë1E\8bʼá\87Ò ¸9:[»ÿõ§£G\93ÍØ\9fk\1a£ùG]\98\81æ\97Fu£\ 2\ f2é\93¯'ÛÛÓ\9fô«&\b\13%F(ª²f¦¨Ö×\r§S\14\16Õ\8dÐa\153þJ^©ÔÕ\9d \7fq%'mJ\16îÓ\9d\©\1aëĸ(\e\93>^ûe\1c¿\r[à
+\1e[å¥LbáÊ\96\99S\8bÂ\87ÿ¡Û¦p-÷¢\r\e\8b½÷uÚXv¸º}8I\9b[E\8bf!(\12:©\98s\e»\8aÏøRŽI\1dÜ\1f¿\fªöXû0u\83ú»ÜCÃ(ã\ 2e PS\1anк%&¦Úâ\7f\ 5eÖ®\87\91î_\872ÿõõ¶\18}\1a~\8cØ\85ê;\8e_6%
+\95\17ÝÎ \97\1c\16êÑÔ\95îÕõp¡ÐË××\e\1fºêzªÛ\86_µ\ 1õJ9±¢à\16µqvÈþU\1a¦hfJÚ®Ã\86sË:Äר\99\82r=¾`FÛ¶)\eÅ\80VR<\87-KÇ\90á\ 2{ôè\11kÎç\88c¬,WëQ¤º\90nQ¯\ f(\83¬d\7¦Ûuåü`µ(>£3iÚ0\17q\7fneËó{")©¥'\9cA:\81Ø\91iko\ 4±\fj\8eb:á¿Úw\98\98Ã*\9bp¾¦»ÌÒ\9f-´ÃÞ"Ãvñ\96uM¤¿\96³ÂfÅí¯ãLmY\17¾\8d\13\Üa]\ 6L\95\ eÚ¶.z'k»\84nJ\11¬l¢ôXû\85=6\95©x
+¦b\19Y^\88@$\9c\95iÆ3UuCúj\ 4\87Sg\11\87\ 3mµ\ 5wÉ9Ö¤ãA°/\14\r\8ak/Sîc\1cJ<\93\96Ç\9bpÏ¥5û\ 2åa\88Ö\ 1é,éGL,\8e\1a&á $Ûr\87)i±u\8e)u\ 3\82C\9aÉ
+Yü¦hd\13\9bÆ+AÓ\8b\16v:\8c\11W\Ä\15\97½\1e\ 3\ 5á2\8dGyu!k&\1em\15U´F\b\9dÎ\8d]\ 1\8d{çP6\8e4ßc.eì*\1eeé\e!½u\8ev<\a^®¼«6ÜznMëBOä\1a>\10;Ñ\1f]U\98|û\12Öø\80\86E\.\8eõ>ÎáëëÝr©r£ÌQ)_\ 6jNì6ºa¨\19Ïj\10NnqÞ\95\10<\8bάOÈì-éw\8bÚÄr\f²\17\8b|Ù+eG<1AN9;`é4_º\ f\b_²Ë°\ 3\ 5\97nÊ
+$\1d\97ÚT\1dkÈ\8eÉç\ 4Ð\17\v;\ eÛæl-\eà]C\84+\9a¶ð\82)Dã\8c¯;Á4éÒusu>¿-áÞ\1aWfw\19wF)PØcf\ e\8fØ\980Áå³5Ýl}\9fº\ 6Ú\8a\ 2õ\ 5\8agûV©k< #g\8d\ 13ÄLGnó\95[\1fö\8d\97µô5)EàQ®\91\1eë\98Î<Ñ\1cÍk®d\11+·è²ìmfk\84\83\97e@\0.¼5\9e?\14U8/7Êò£û¸§% ¯t\b®¥\8fË\8e\18åMX\17s±\85u-\8f¦r\8açJ·K!³\82\.'\1a>±ªªÈñ4\1c\81ìV\15®fÅ\8b\1d®cÛÊVÔD&\17¹sÇ·xaµgìCÅ\9e\81\0eÚÛ@&¹Ú°#%è\ f\84FÔK-´\888vX/j\ 5BL\1e,76Ûá2õ\9cv¸(\vYm\98:\v1\ 4*Ú\10\12®XA\19)\90ý\9aw¥\14»\11d8\92RÅÚ´\eu\ fi]Xº\97\13*<\85\95Â\89D\11$TS\93\94$\19#Q\19J\eù}àn4½}ÆúÊ\86Ûk[\1eyÓT\15\89¢ó%jäftжàL£\81øB¼¨|äì.v]\9aFD±*à\ 5Ç\b²ZMÆV\ 6ÂÏ£s\89\11G\92X\f1®îX\9eO$'\90®Vó¨\16ÜÏ\1a¥;\89/i\88jºü$£\83vd\17ϧ¾¹!µt- n¨c¼;\12õ Ó@\92A7óúê7îúx0\eï¾\fp\15ïOêeмëçöx\13ùg×_ÿrb\1fYSý>ªOâä¶~¸\17Tkdl\93Ù\8e¾Üz¹\v\rîÄ\9e\8fþ\12\ 3\1dëÚ10\83§¶üð7YгÖÂ\19/ß\99\8d\7f¡uîáË7 \r
+1\8eL(`\Ô¤êÚÓ\10\\99¦\14J×\14^¤\9fª"7ë\14\ 5½\84=J\94wÛ¦^]\83úª\10J½!#ó¶2\1c'\10\ 6Ó\98\8eRv\94Î\81\1f»\ 5Ý6éf4ÎÒ|\1d\ 4}Y{ v\95H\fM!\f Qe§"w)rö|·uê6P +\1fW-i\eäÉZ¸\87uB\81$§1\19\81ð%e#óýVIX\ fm#\87m8ï@)\fÅ\12#·×'Q$ª)>W*ò^}'8\18®Ë6Ö\8a \1d\ 4V)U\97\89\9a\91\14W\19ÅÉ»ë8F8ä\8a\94¤\r\1c\9e:uÐðZÑYë\88QI\ 5EÆ\99ï0Iצj\e9\93 (4\82\8eA\94\15A½\89\82M\13Ï©\91s\9aïÐ&¡¦)E:òa:¥üP:U¯ã±´¨y"Æ\18\9eÏ"\9c\8fý\ 5vey
+\81b\92*\aÜôªzÆuª%Cÿ»à8â5]\9dm½|uÐ]Ô?nj¹Þ\89`}Í*\b\9c\95°^T[\15õ/\9c\9eÈ¢\85\13É7^¦T/ID´®çÚÏw\1c0ªòd"Aø`7UËã\11ç,)(\ 3N\9f©\7fI\7fé)ö\rDu*\ 6\13y#\88¢(X\8f9\ 6Y@¤¼*^Nl\84iråÃ̯»\râ\ 11½©]Ák\1f\16[zQ?LI\81×Ä-\8dDJ¥\9b\9eö1'Ü·AvÃ\1c\9b æ\eQ\ 3ÃN\1a\91\8a¢<`£|×»\9bÕ\82\1e\1f®&»b4\1fþ\96\12K÷¶ö\ frCk??Ô§£9\1f¯^êRÍèÓót\1d8\1aÌ\99F9\89ßS/Ê\14ò')6\89nþ_\18k6Ý\98ìï\87 n\1c\ 4\19`\eU°¾\9cÀÉetg¶µ\83_ñ¸´³µ;>\98l\8eDP¸\ 2\1f\9d\9dÑýñìõþèéå\9f¶\ e^\8dÚeÖÚ|z\ 5\e±õüùt7üpg2{>\99\8d¯\fK]ÊèG¯B7þætãpg²{ps|0F)Ñø;«\88öÌòR\80SÞªV·'\93Í{\93\17\a_\8ea\ 4\1c½\9b\15-]\v\avc6\19ËC\9eüíÚ\8dY`å\vû¬\91\8c\86ÿbßt$b\8dÑG\87Û\93Ù\83@Z¶vû\ 3h¦þû\9a\8eë³Ëáà\9eOdzMäû½öÅîÖÆts\12óúÃP/Í\92§ÑÃ\e\8f\ 4\82ªÃËøW7ô£Éöãé#\19\96Óx8ÝßÂ|ùW\egR\9cú\13\93\ 6\97ç\9b»ûq¶\8aäÝ\ 4ß×\7f§õp×t\a\9fÜ¿÷YXÖÂ=\f\9fü¼³½\eþ¼<>\bë~~x\10«¡æ;ÿ'wñ\ 6úÏZm¼ÚÚÞ\9cMôìcBÎøWüë \15\86½|qwÿÙ\8fãÙþûYA\87¼é\8f\1d\9a\12¾\7fD»Ýì,bÃwÿñ»³;Ý\9d\9cbc¶§\e¯'\9b§Ù\99Øò\r!æï]×ó](Dæ\14k\vȱ>Ñ«vòúòÖoèøÿàN\98cwâTëßB¡äÓ þ\89§úOºèïýxê«\8e¦\7f1Fcy\e\87û\aÓ\9d¿\96\92ýyxøÞþ\18\ fæ\107Â\15;-:þé÷b\1då\8aþ6Sù_¸¥û/~ú\esã¿ø\1aìC\8eÿ\87\9frR\ 6\8e<ÚS\1dë_Ms;ùÿè\95ür\9a\95¼9Aýw®$,äÄ3ùik\93YðO\\8d6ükWT6Å\89+z5\81ñé4K\8a-ÿÚ5%Eð¨\ 5=\9f\1e\ 4þ\ få:*¿'/mþ\9b¿\ 1¯'\91[\9f\1eÎ6&«0ÛüåÌ>°¤¿z
+;\93\83ñf\90}þè<Ú?8\8fs\9bjç9\rve\8d{\84\9fV ÇÓ½¾\11(ûÛ#\¸ì¯)Ûú\9díéóñö£ÉÞávL8\1e&õÍýÉæÖáÎèÑd\7fº}¨Î\83C{Î\8d»Æ\8c\92\95*\bK\87{£ÛÛ\b\9eÚ\9dÌF\ fg\13ÔúÈ\8c>]þö\ewÛÑýÉþ«Ñ£ñþÁd¶õ+ý\10³Ñä\vWô¾xpx°wxpÂ7Ñ4µhr÷Æ»/\ fÇ/'£\87Ó½Ã=½~\ 3\8aãª8äÞxs3õ)\84b\879Þz´c\7foz0h5ÞÞÚÏ\16Àélîm(%\8d)ò§\92/^ÌLwG7\ e\ f¦im\93A\97\M<ûÑëÝ õOÃV¼\9cMã:\8ehº\15vg|0\19=\87ã\96Óì5nG{c¼8îoí\1cn\8f»}´i\1fÛ\11#ãöÆ\ 1å7~ cnm\86Öq\8aÞ\96¶ÉÚ\8e£\ 10¬o:\eÙ0òá¤\7fcç\9b\9d²«\97tº<]ÛY´\8aTÞâyTK\93MðĦÙ\ 4Nl\9b&`*¸\93Ä\96\11%ׯ»?\8e÷×Ó>\9aÞùñòÌ~\9c\8c\1eO~>\18ÝÚÜ:\18?ßÚÞ:PÉÆVÖD<z8\99íïMhá½\13\8eæ\19XÏ\9dn\9eeºé\8b\1aÞ\1eoLnÐ\12®\8dñи¸ßÛÛÓé,ë¸8ª_6\8cugyVMÛ\98cf»\9a\ eÀÙºª\8f\eÿQÜTë\8f\1cÿãi¸@ÓÝ\8f3\19Ã\1c¹ k\93ííµÀ\12ãTOXÕÞx#\1dB\99\9d¾\92=\90ÅÏ\ fÇ8¨Ñ=¼|Ì\9fm1z\91Hd¸ÂÛ[»\93Ñ>c"ö\17\13¤¾|°>Ùþx|\10\90(\f=\99ݽ¹\9f\e¦\17·¼7Ý\18o\83\fçmó\ 6\8f¡ëbT%þ¦\)V\8a\8c\1d½¾q÷öáövD]M\11þ:OzªlyãÝ\83QØ\8cq¢\86Ç\9dÂúBª·h»\ eÂ\9d\18R\14c\9f\aJ¼\86Ëw\7fº99é8) õNóH\14!ë\1c\\94t¢ak\1e\8egasÃiì?¼y\eÁA\81\8aæ\97õ8¤fßÙ¥\8a\vêu{kçùdóálúbk{òéä\97\93\96Æ>{k[<[L5\90\99\8eë\9fxûº\8bj\17Íó«W[\e¯ææÙ\1c{\ 6·~>È¥\99£7iu!\95^Ø´#\12G´z\9c©\0føØ5l¼\8ehôã'\88\85<Ü\1eïN\18Fã_G\9cúñ_qK\8fþ¬©j3jL{â\ 4U´ÛÝÚ\7f\15nk
+ÿ?f?»ç¼»»\9b\93\9fooÍöõ\13\8e\a/ÍS\rÊɯRáÉ\86[\1fúp¦:©\8f´m¸þ9"\9cz\16©\87¹I\9cvíë\93\8déîf6lÝþ\96Å\a\91;_9\\vNsdò^;\7fb§\9eAZx\7f\ 2Y\12\85ÞÍ\?|\1e¸ñíéîÁþ#Èxév\1eÅ\99ö¢ü1ýq2ÛÃkµÒpÆâ\9eæp»=\1a\9enÝ\89M½1g\94}\97\7f\94\aù \94\8cw7\16\bGù'\eÛ[{Aà\82\19ûç p½\f¤l?\9eÿ²/\8a\13'9\81Èûã\84Wñ7]¡´º£®|¦{ ræÊ×Ñ4\91\1dç»U\1eÝöËÉOaº7·ö\ fº:õÝÁtãËøñ\8b\rjßAGz\8f¡\81\89ð¾\8fÁSÔà@¦\19\ 6\15v\ï^À\80øà~÷æ\ 2ÑØQÐ\94îÄÌ\81¨\97%jäq\8a£|\84,'£Ð9?¢T=ü¨?\92\19Ýz¸þ\9b\87\92¯N\1eë·j©G(ä\99&ÎE\1e£}÷\854è\9b\90În@:Kja~ÍØß\1aî×\9aÞ¯Gùý\9akú@\85³õ\\96-\8ejõ8\89p95`\13Q\81¯©_Îê\80\fô\9a>\18\10§\93wIÎçÔÛ\84Æ'ì\93ôxº\8d\92¶'îT¿Ùâ\926ÇïU§âïN;B>ÚÚ%É\84gÌü¾êØ\83\8d=åý½ÖÙ6¯}?}¾Â.ÆÛÛQ7Þ\1fÚÄæ>\bh/NW§ê÷øVû¯·ö\9e\87\1dyÝ¿rÃf³ §Íö'XÍìø\96A³ßN$þò¼=lØ>.;[ÑûI¿ÇI|2}~w÷ÅtÔé^'lôQ3{¾u°3\ 6Ï\1e\12\19!Lyó½\97;¯W\9e\83-M_¼X\11kµ\12÷#\9bïÀõmØ|Ѷ÷;?Ü\9f\ 4ÒF\16\98.h\16·}Ìîa§'Ü\88\9eÏØÜxû\aÛ+\9bÒ#q"\9eà \87\83Ï´}g]=Í7{\9b;áÏÛ»§\9eÔÞæ©;\17g\83ôÅ¢£ÞÛ\9bi³c\8e ´ÑÑõX»Gµa»ìe Á"G´Ê\1fk\16£Th´µ\13®îÊöäÅé\1a\1eL÷N\9c\9d´\9cu\83\1f3Gi\9b£çå\80i\81|n\8e\9eÿ2º9\vRÊìø#@/»9\e\98\1fhc°gG7:qˤ«if$;¦³A³¹#g+Úh\8f§_\9b\93ý\97»\vl¼\véës}(:\91\10Sß?~d!ØûB¦NM?{Ç1¿êíÙÊN²ô\1cÕ"hw¨Ã
++ý1»\83\96\89A>\97X$b\9c]Øz¶¹2\9dA,\1cÏKtÃ\86/\82d\10\vØòÙea«=õS=\ e\178êË\95c\91OÛü8§\ e\ e[1Ç^ìëÄv?\1e¿Æý\8d½í\8d_\8eF\15i³±»\7f\1c\12\876\aA\8fÊ\9e(\8eX_8§íñÞÉû í\8e\99;ÙÕd\17æÏã¨.ZíÇ\9c%'b.\9b\v\95î.Æi¾ (\7f\804E:\93\15ë\8fdÈ\81ÀC6ìÓ¢c¸ñ m6fÓ½\13\9a@2Û
+²Ê ÍfYZ\91\93\ 6\85©öùx¶\7fÌ9öå\89\93¸K¯ñA¶¤\93Úf<æ\14BP7\8dS4î\18ÝÉm³i,ºE/v\ fV6·\8f'yÒfoöbº{\1c½C³ýÃçñ>ºEg´\1f\16\9a^0\16\9eâ~\90;!©\1eÛdwòrÜE\1f\1cÑhch\8a>²]`7»Ç÷µm6h\83\9fSÏ\aíö_\8d\83Ä?9f\97Ðhr\0kÓn\98[:\98\85½õ[Õ\8bèüÏ{+=£V÷8<h5\e
+ò´L,jùr\81È¿¨\9drÁù\87\93Åíä=êø\96Û[Ç\90\8cÐ\0\8f?ã\9eÖ|DÃéÞÆ1T\85\rö\8f9q6Ø<<Ö\0p\få\r\9f\1f/f\ 4õmÿd\1eÁV/\ ew7\8eÁ\12i£¦\87\88)'0\ 6~3ÞÝ\8d>\ 6\8bUg¶:I1ØØÉÄ¥Ë_¬¬¯\8c¾\9a<\1fM\19ëôôòúW\ f\1e>½2úÑ\9e \9aí\ 4i.\13ù\16É\90¡\r\94«Î,½¸M42oìür\8c\8e\9e5\9cJQ¼yEúFl\9e©Ò¹EÅw6¶\87[?O¶\1fNf/&Iç^Ý\8aúö\8dõµ»w\e\7fs\82Õã\8fKKK·\ eÛ\87\9f¬>[úú\83\ fÜÍk\ f>nß¿=¾0»¾ºþâþ¹{îýÏ\96\96f_\15K\17Ë\8f\1f}ôÞ\83\8f\ eÚÛ÷\9fþÚ<øúðÕí\8bwîíýúë¯KKWþssié\9dKg\97\96.\7fröÌ\85Æß»õà×îÿÂ(Kö£ÙçwMøáü\f¿>¾Q\7fûr;üpáóð¯³Í\9dÕ\8f&w8\9f\8b¯ðwÿÑ\97ßþp%üpé\12\7f½õ\9f\8d»\9fà×÷ùëªkÞÿ\10¿>\90Æ\8fÿ½ñ\1e~Ýà¯7\9aÏÝ^øáòYôý¯\eÍÃï_\84\9f®\ǯ\8fÏ\¸si寻áçwÐèì£;\17^\7fæÂOï~\86¯omí?¾\86_9Q\7fsåÑò~øaÙð¯·×&³\1fðë\17øuùÖ\7f>øá2~\18\87\7fµ~Õ¾z>ã¯\K\efVù\9dîï·×^|{ý×êßÕÞ«[Ï\1f\17goÿëæá\8d\15wïÃwÜêµå\877\1eÿ°\7fáöÕwlØëËßÞz~þ½on¾¸ôñ\85\9b\9f\1eºï¸eÜLwæ\ 27ÿê\8dsK¯ìͻyþ\9b÷\8aÿ|i\1eýúëŽó³\8fªê\93\97Õãå¯ÿmo--¯^{µóÁÕx\1eg.àß<b\1cÞ\17/ôðÞyýo\ 1f\7f=?\v[sî,öùê3\ 2Ã×\ 1üIXæ¥O¿\và×[±íÙ÷p:\ f\9e\85¿Ü}ÔͶ&¶¬~¾þaã\9e~¶bî¬~ýïG7\1em~xqõÖµs%æsyåå\ fß]½ùÁëë·.N\9f¼sgõiõ\9fÕ×ïm¾ûÑ\ f_of¨Ôõú à\19úÍ\96¿yñõ\ f7v¦/\ foÿëöÝ\aUõéÆ\97k[×?~ïêû÷ÌG?|¸Q_½uïög\95;\7f¸ñë¯×^\7fòéÒÕ\ f\ efµîÐî'ïÝX\7f÷£Ýµ\97\9b\ag.Ô;O?X¹9Ùÿ°¾õï\17·W?zï³ï__ûôÅÕ²ÞùÆ|1\98Íý÷ïî\7füàÖóâÝÃ\e\9f~}îE8Éﯮ.·\9f\7fsóîæÝKg.¬n\7f´íV·ý\85çu}mÿ\85»1Û¸k®¾n¿Åõ8ûù'aä{Ó\eë\87K¯®®Þ²/îÜ0³å«\1f]z~£Y^9{óÅòSwsõþý\ f\86G*gù+qø×¥sWÌòÒ¹@S\96În~üýÒÒͯÊ\80³³µ¥¥\ f?9À<ÏêY]yçÛ³KW>{òÃÒ;ïµï\10Çy®¡\85ÞØËßâ·s·/O\9bâ×ê«åí«\1fí_yÙàOËÀí¥\8bKg/~ûÞÒ¹wo~¶tÞ^}¾t¡\ eW÷âõ\a>àþ¥÷\8a;K\97?ÜþféÊõéÒ;\9f¾¿²tõó³«Kï~ùÝ\97KËOo}¿´ò|ùÊÒµ\97[×\97\8a\9d\87\9f/\99ýz²äÎ\1d\9c_r\87_TKþâ¿>YªÞ=÷ÝRm\9eÍ\96\9a\8fövùñÒ{_,}·ôþÆF8¡¥ë\17¿ª\97>øà\93\aK\1f~yýåÒG»æêÒê{ïÜ\ZûæÜ³¥[\17gç\97n?üᣥ\8f/ì=]ºû`ïÜÒ§Ë\877\96î\8d/<[úìëW\96\1e^¬î.}þüÆÖÒúÝûåÒ\17Å\93/\96¾<üþìÒ\93é»·\96þýìú«0ÊÓ'_ÔKß}¾ýté?\8fý»KÏ¿|´¾´ùdïüÒ\8bÍ\ fî-½
+\fféõÅâã¥\9d÷¾þaiú`åÎÒ\ f\e_ý°tð®ýøìÒÝñáÙs{«÷Ï^\=wñìåWO¾8{uíÃâìòþ\85ÿ\9c-î\8fß?ëÌý\9d3\17ÎúïßûälóÙ¥Ëgß\7fo÷éÙ\ f.\8dÿuö£Ù×?\9c]{õhýìíï>-ÏÞýöîöÙ{O?~pöÁæýòì£íÏwÏ~qðåã³_\17¡\9f§7¶Ï\9e}¶¾ôììó\9d0ò\8b÷ïÚ³[_\84\ evÎí}{vïas7\8crpé\8bêÜÙõÙùs\17Ë\ f_\9d»²õü«sËëÕÇç\8cûº9ç/º«ç\9a\9dñþ¹\7fýçý\17ç>zôý¿ÏÝüì\93\aç>^/n\9f»÷Õëëç\1e>ý¼<÷øûëËç¾>wåÒ¹oÛ½³çÆ\ fdzs\93\97ë;ç¾·\9f~\7fæÂ¹ÝGk¯Îí_¼ñòüÙ\a\1f¾8\7féݵ\97ç¯~wçÕùâýO¿?ï\97¾Ø9ß>}öÃù\ f>Ý[:¿vÓ\:ÿ±»±|þþÕ¯üùGïî_?ÿÕÊ{wÎ?½öåÃóã÷Î}sþÅýO_\9d\7fý\9fýÃó{\awV.,½\7fxýÌ\85\v\17\9f|vïÂÕÃKO/\98ÏÆ»\17ª\83\eW/üë³\8b\1f\X-^¬_¸óêóW\17î\7fzýÊ\85õzå£\v_\9f=xrá»í×?\Øü~«ºðý³ÿ<¼°÷bcçâÒæ¸¼xéõæç\17W.îì],ë³ï_|ï¡ùæâG[7.\9f¹pñNõå§\17ï?y½{ññÅw¯_ü÷çw\9e_\1c\17[åÅ\97\13ÿÍÅÝ\9b_\<\¾òÕ¥\8bû_-_Z\9e\{r©üòÛ\95Kï\7fþþÓK«\9fNËKw\1f¬o^zøô\83\ f/}µuyïÒw\87¯î_zQ}}õÒν»Ï.\1d¼þèÃ@ÿ.}p}éòÊ\8böÉåªÞ»|ýûæàòÛï?¹|?PÅË\8fw×/^~út¼qyó\93½{\97·W\8bêòÁê§g¯\Z\9dl\¹¶võá\95úÞ½\ f®|øÝþÊ\95;?ÜÜ¿òpåõæ\95'\9f¬}uå?Ó¥O¯l}ð8\8crå\87íÆ¿sáæ\ fWßY¹øÍ¹wªooþðÎ\87\1f\97¯ßùØ\9d\9f¼óùÅéø\9d¯§\93ïÞy¾=~úÎëo¿yç`úì\9bÿOÞ\9bo%Ï,\8fÂWÀ=<\88È\f\99H\0\ 1\99g\15\14\10P@&'\14\90áüÎþç\ûWÝ\99C\12\ 2¸×·Ö9û]\8f\e:¡ª»ºººÆn\9fÇóÞ÷Q\91åÐw]º\18ûr¯Ä\9bïÎ\9fûö=ÝvÖ¾ÑÅÆéûº\8d\ 4}Û\8b\aÎæô»\87\8e\8c\9f*\94ïüñÀòÙ\9fß\14>ý÷\93\8dÃßí×iÿä\95Îû\7fÆó§ÀÅ¢9\ f\ 4\9cI_\80\8b\ 5Ò\81ôÝïS úý¶\f´Ã/tàõåé60\ f>|\ 4vï="èË<ß\ 6Ù«ñw0õ±\ 2,ÁjÛý\14l×â\97ÁQµU
+~W\16ß¡\8b
+\1d\ f\ 5\1e\1eÆ¡ÈÔ\11\ eew¥Aè>¶¥C½Ve\10\ 2F\f\87~ë\831áv§ã\ 4ÝrÌ\89\9bð¨@T¶u\aÑ~Ï=\11ã\ 6\1d&\16\80\97t\96Ý5\9b\93$ï<!2ñèù Ë#â\96l-9\8a\1c\93Ù%¹(ÕÛ\94ó÷3MQ \97\8fJ.óßT5;èR\1do°H\81nÉQ¿5\87\8böä\1e\174Ëx^éløµE×¹L\85îG/SôWí=Â\<Ý\136'\13Úf}L"Î]1\95®ï\82éx/·Ì¬{¹a6ôå&ì\9b{·áè\13w\11.f³Îp+tï O\ 2ïDø×ïåX¯7sÃFÈ×\12[È\84\1eÙæÃã\90\1d\7f»¿Ùßh÷\8aó¾0,\17õL\v°\9f\15\aÕ\ e×NRsnº^z¹Í\14í-·÷O\91x©´\8aT³\19&ÒK^ßE>«©¯¨ã>EE©Yµ\1eÍ\µWÑFþ#\1e}\9d]Âz\8fÄý1ïg·\11\8b\15.ì ³n\8a±îìc\15ûl&r6çõeõ{yÍd\8b\85ë\ε¹næúµëéSÅu½\1d\11OqÂí\bÇSÙ¯ÏxýcR\8e\8f"/\9eøï[ï5\11¸éf\13IïÔ\93¸\e}L\12Ãöe5±ª\84餿X]'\13¹q?yWõ\96\93ÃÞ-Ì~rõ¹ºº \ 4²ó\9bäݺ\7fs¿ªÕoF\ 5\7fîf½\1aES¡ûb(\95æhWêÑí´§¦?óUÚ>èÏÓôèù3\9d\9fvßÓOïOoé/×è#ã\8aÏ¿2ÑÆî'S]\11ëÌ StdVë\89ÏæÌ\ 6ï¼t6MÕ\92ÙÇí¶\92}\e\17Û¹ËÎn\9aãîï6¹Ê}0\98ë?}¤s«×ÛÇ|è*ù\99ÏD¼\9e|ëÅ\9eÎ\7fz\7fº\ 5×Óצp\1dú\88\16îfóVa|¿Ý\14í1O¢\18\ eD\ 6Ųç\ e°\14ûÎÉmñ×çY\97\88h5[ÊÕ×óRç#\9f,ýx¿ßËþf5YN{<_åÖó$[þ\8a\16×\15Ï\8eº«$g\ e_å±ùѯ|´gɪûþySMô\ 6í*\98fQ\90\97\9fÛ\9a;²îÖ\12C*csÖ\1e]ioí£ýüuë!ííÛäg&{Ûl}R·_\99kû\9d\8f{ÿ¸K³ùç»§°ãîî'þ\92»\ fÞ\16®ïs\ 3\82º\7f¾Øùï\7fósW\9dú\189êå\9b\97]}¸\1dl\eöþÛ®\11),/\1a÷Q·Óæl¼ùXÏ\83;T'\1enè/î¡\1d Ý<üܵ*\8f¡ÙUë±\18z\18?\ eî=«¦ýâÅ×\8c4oâÍzÌ}ß|ß¾\8d[ÞIÛÑÊ<WcÞcªÑZ7¯çíð A¶o?\92·í·«ü×\93'óÈØ\9cOé÷·ÖS/â¼xZ¿%ó\1d¶ÔÿêÜûÜ×\9d÷ùí¤ë{½äº¹~kÜí?S\91\9e}ôùÖ\8b}ÔnzM\7flÙûÉ{jÏäÛÆû\¥ß\aÏÓÁ8ùâILì/Yçgïåe¼Jöíýà\95ÍÙ¿¾\8b\8dûÆc¿l~s\ 3fÄ:\ 6÷öÞÛà\93ó¶\86ÁV+?,»In8é|ø^=Ly÷\9a]\90ó×Áóv2º,\8f_F7©öÓ¨\97ª?\8evåzc|ýP¯\8fÛÓv}¼ö\8e\1f&\91»mÛæ\9c<nÈçɲZ\1eMYÿû×´1!ÖÓ\9fö³gÆT\88ð¬\9eèefßÙë\877ºô;y»\7fêìÞæo)ú\9d¦èòûýãÕð}¾YÚ?èÆâú£\1eúi\7f|Ï×ëOæÅsýÙhÅ\9e?\17w5Ð>¿Øú¤üõøâûùZ½\97\13óèÕ÷tÞÎ¥¹ùæk5ú\8eç\e\91ïî\8e\9cý\t~\92?©øãÏÏ\80*T\16.wԵȻÈ\97Å$D$\96~.¸]VJôÓòc\9c\8c¯(âÞ±ª?\ e_WK\9f½bsþF^\93áß§òèbm§\83³u*Øo¯\87^®¸ñ8ߢÿ')Ùµ\94Â^å\8dí\7f9\ª\82ýFèHNE"ÄÞ«r&í\81p²ûYq\96þ¿¿\rÍ"ë¼\9e+\fÅLv\ 5&\94Î\ ep³£\15\9fÔþ93s\9b\1d\95%¦÷k
+u\83¯\1dAIÓ\8b@'ÔÿúòûS\8c\èûãÄqÜ.\17ËÉÇzù3Ë-ÿgÁ\97Nïe\10\99tàq;ZLGkÙ\87´ï \12QIGº\98BeЫb|ÝØ}"âo®G«Õ\81\171v\9cB\9d\91üòfs+¥\89\1c~\95\1fÓ§Y2\86øj\ 1føi6FÙm\82³ªù\ 1<ôo´\9eýÛ~Ìþ Ñí\7f\9bÙ\16±Ñæßÿ|Ì\16ÿ6£ÿ\85xu´PÞ\ fñ\ f¯\87Ñ\ 65ó\97G\0\ 2©8&ø¯µÁ á¯\1aØ\7f\96»\7f+à¬\7fËÅ¿\19Ï\185\ fî\1dÝzñ©Bäÿ\aȤ\9f.`¬ÿ¶K\ 4b2û÷\89SnFÿ¾GÿA5;0\rÀs|ñÒf7ù@Ý+/r86+\83á±-\80Evлå\9b\8cþsóo·\98£Óð\83æ+U\9cy\0=Y\7f®\ e\84\17U\13õ`\1e\89\90Y\85wÛ§×&\81=ñå\87Ù;>BÉj\1f2\8a`þá·\9bf\11,I\16\8dÞgeÓ \96øfsýù£îí!¹¤S\9c ëµW-3cQb\10·°\\ 6g6mè,GEò¿P°b\12¦\92Ö;ND(\80\10\84\19ÿ\9fåz\9e9\90\ fd¥ÞÅLh
+\92º¼\98ÀJÃɪ²¸¦Âì!ò6á·ª
+«£¤{õsaA\Öù<"Ä,ʲ\ 2ã1á\9eeq E;¤ã\88/ï\10\a\82\b"fáÎ\87ÿÜYÍyRH\90í'\9f8rpÓ×þ@9>\8bèx\ 6G×¾(s"\fâáÚ\15û¤H½aLW \9asy¶Ë(\83(=^þ/\vÜ¢Y»2£(R\88µ«ÖB¹ëñÑ+iË\94ÊÏø\84Vy\96\ e®\11\85 Ð\8cÃT~\1c\ 4YKÛ?\8dCÊSØÍ?ß>ÅàÐqëÈòf§¦\96JlR\94\81êªC0-§1\96ä\92þ<YP¼Ó\93õr<ÚÖFÿ\99\89:Ýqô\91¶VóAj\16\85v\94GÍì\9e\9en\9c§ ÔE4\85w\87ö@Ý\15lj\ 4Èu4¸\8cÆÊF\84\10©÷!3-\1d\14R¼¡4Õ\99Pƺ2¿¦\9a\8a\ 2m\vcG\8bp´\9d5?v?ãÅèó{sXVht\86\83{£Y\1d(ظ\0\92\97TYÉ\9cT\83Ó\96\97ðGXâ\8a\9bÃQ[ææþêÙ\17\7fJ¸®G\1d\7f\85¾º\ fdRëâÏGì}a¯\14ì~·+û9
+n.ÙV)Ï:b©V1yËÜÄj/®ÛÔz7á
+yê6â\ 4;ÛA\10\9bÜWîÝO\¦®\aAo*î_mR\9b*\15²9S×5ûZ|©²Í¼\97\1aµT\9c\99=f?\13ÉI.\18t½ï¡ªM»\80\8fË\15\9c1®WÜæ¾ú\19¦\17ð§\7f\96µMºü¸ýð%YÇ®\90c.\9f2_ß®'\9b3÷FTƺÀ.¹è\e×n<¿¤\9bÙ`Û\18©ò½X?\15\9f\17ú©Ø&øãËù\9d»\82»8}³91±
+¯°üroý'\ e\ 5ã:±·ÌÇ6ûÁõH\159^¯r\13²ö\9b\8a߸\9ex8ÐåMvð>X§«_\14ϳg\ 2\91¯ËôcÀ±àûÐ\19Mw6gôËí\9bä'á\86;ûÁ\f¯ãi'}åËÜù_Q ¯UÈÎvÞd»âø¸\9eLFsôéÓ\97\7f«}ð\98I"4âÖ\9f\97¯±ÏAe\9aùvÞ¸\ 2kßË.]{¼úEý÷¤®+\1f´ÍÉ^·û©ôbâúñ%n¯CÜÏKâS\15S\8c\91\12ÄI®²i\ 3Ù8×\8c{¢\89iì3\e\1aÁü\92· wÀ?Ë|sõ\1f~\ 4Ý\9a3\95-Ç\1dOy\7f4¼\81y)?³\8e$\97]\ e|ñöô9F\8d\1d}\f6¹pÂ\80\92¬×\81¦ä\99}b\e\vD§dfîa\ 3\ 2k¶§5\82ì;ns¡Qüª`÷õÖ\b\v\8b\1e\f0\14ü\8aÍI\8c/Ê\fþìK\16â§øS¾Ê¿\9eõç_y`T\97*\ 3ëv\b_2\99÷S¹\9b÷\84\0ç)\11¿\9e~Ý\rðLJ\1d\ 6x÷\99°\80\ 5^ÊT¤\ eôå\ e\90îÄ\ 3ziÆà¶°=\93\ebR£°/ÃöدIº\99ûòåÞBÕßühäºÌ°ãV#^Ê\r\93éæÇd\9b®_NnÓM\8a\86ÙOsý®\ 3~3íå;¯7;\89D<תØt0\97\81E¾\83ë\928aÝeîí1?Åô\ 4°#\8f/é¸~âg\bA¶9óCÒ×Î0\9dJ!µ^\7f´\98ØíÓ\r\9e¡HøsÍÂäyý¾Ì2:Ð\92R=p%ÝE:ñ\13\8b@Ù\9c×¾ÄÎ]È}\93\19¢\12\8eÁ\9f"ñÉÃI²ãe꺹½H7+ÛÝ>)53© »8ñ\9dµ\1dµ5A\8eý\ 6?ÓZ:í\1e¢³\82ûjåÉ~°\ f½ü\98\88{s³õÚOÌê\89k©#<9$bÔ\8aéa\85ÄÜ\16\ f¼\16ÐJ\ 6så/nį}~B#\8f¿?Õôý s[ȾU"\ 4Y\1dO\vÙéO\17\vO\9d9(f¾ÙÄ\93\f\9bÝÖ\12½L©éHhú`sB/f÷¹âÜ9\ 3T\8d8\ e÷\13o±§å~oµïMà\93\7f[\]\8c£Qß5s§¡Èuy³|Ë~n>Y$-\ 3ÏuÊã(\97äQ]ÏbW?°\92\1f<\88½n}\89J¯""}\7f\ 19FÃSgÍ[Ü\ e§?éÇ×J.ô\99p\17x\0o®\12\9bnÞ.ßSífyTÈG\1a\1d\9b3î#ò/\129Vyÿò\8e*\±±\ eÌù.\9a\9fÌ\7f¯D\ 4x\81|\8fxÁ|õìª\81xL¸Ò\ fß+¯ò½Æ¨\ 4âÏÅp\ f\1fÞ`ºÚ}\Ø\9c
+\11.>\1f¦\9aÜÕ}¶öÛ$U[\86÷*÷\96v\rT{ÀC¡0ôØ?ð0@æ.f°¤ÂcÍSaöÑó¹j§QüÚ\v\9bhq\99÷7' bã \16vçÒ\97L°4~*¤\84|6¦hhvôJ3W\96\ 2\85x>ìÁOÑXÞ½\vþõæmÊ\99ù®\10A4WÏòúä"7\9f^&Õ\9e\11\¸·h\11U÷O\1eþL3D\95\9c¦ùO\15tñIÕÝIBÛ(¥l#ß3 -åß\bo\8e\84\1fVÝïYñ\87_ðÉ\13ãß\88¿\16\11à6þ\8f{U\80÷n\1eàÓW\8e\7f\ 5½\8c°\90«¼²{è%%\1c\8cå'§\ 5¡è¼ô\8bÊ|\9a\13zÃw u\ e `,¸+x\98\18"úêÉ<òm\ 20<*\8c\ 5ýZK"¡ËûHkqL\e\84\ 5Ct?ß(~]ÙÞÇá¥Ö\rüyN+IÉ¿<H\89T\8c7\14$àéÙsÝ\89P\ 6ii,ª\892\99Ú#&B3\rx,ÒDPö¢H,è¨ðúsR¤\93\8a\1cü{òW\9e_0ç ̪>à±Hs©\1e\8b\95)Á#à?\89£\12\9e*¿\ 2\16#Æ8Ä\16={M9*\99Uöy\16a1$\16OoL \91\1c\8a1£\97u\89\8ayC1æUAäd\9daò¿\11ðI Ô½Qþ\16\ f÷9©B\8aà\ 1R</\129x,êYåi\87 ò}\ 4Jè-\15\81îègh\ 1(\99\94\1f\v\9eAüü\bR[ã\17LòN\12s2\fNø\8d4ñòoøeø\9e=\89\r1OãU©@\80q{Ø{ñ\13\1e\10\1a\ 6?RXÓÕåª\ 1\ 2ü\8b\16ö½hz\91~x{¯\82ZY]i6\8ct³]]\14R$9·9\8bÎâ\10Ô\92°\9bUè&»\863^\18n\9bÞÔ5Q·ûòíNIÜÊ\ 2\97
+uB¡\15h$å{6'6\fxõ\ 5¶`\9fÂ4#£`°T3¬\vT?ϳ¡5Å]÷j\854=¿¬`;@= \1f6\10lÎȲBpù\80ÿ\8dÉUo~\19%\96Ìp\96~X<¶Ò\8fÛòOÞW\v¹ÕO¿\v©¨s%\1a\15\ f\1eÙøâ\11\94\9f\9b¿éûl¦\8et\18A»úQ\11\ 6,P¤\85©GªP6¸ëIë!ͽT\1er\95µ÷U\ f@:\ê\97ÓÕ§\ 6èÉBÏZÎyqs?[\vª_\8dÍÀ¶ý\12\94l\87 ¹í`n9 íB´\1d\100\8ekõgÕÜ[có\18ú¬?\ 3Kæ\7f³¼¾MS\17ÏæÆ\90¡)ds*\8d!\99CÑÐx\v»\93¾/ä¾\9e\86ÙÏ/6týöã|\aýÖK\ 2M\92¯\1c÷0]¢Î\ 5dýHPc\1f¿û2(àd\ 1ØÿM\96\ 5ë\95ü\ 1ÉÜ{ÀsÃ#hÐÉWPÔî]Ù\ f_7\eúL&bÂ\©é¤²EæÀöÁ\82l\b\83\84QÎA½\84É\ fHi\ar\1eÔx\9e\17\98SÑ\11#£â*Éó¹¼\0ê¥o°,dý_ý+:\1a\9dϪY\18ÐÔWx\1d&£¹b\97{\ 3s<O\11T\91¹Õ\82mØ=/\1a#\85ç±¼\88öµ\91{kù\8aÄl\ÈQ\9ei\9e_\81ØR%ýîl\94\17\\83øÕÜh]q\85Aßë(ä\17»WÊ\19ý\89\b³\1f÷_\86\9e#ܤVÉ4ê)\18K÷çN0ðw]gºq÷Ø.ä<Sñ\81ÌìË+\82\9bïÆu¢V\1d¯d\eYës zs\98\97ìÇ\8b=æK\16\87C\91³úA\98Á`53¿õ\81j_\7f\93×l\fyZ\ 6\999\95°Ë\ f$G\0\11\9bþ|\13À¤ä\1d¢vOöv\80ŧ\83û¯1£]LÀ-.ÝU°á»i\8f~E\ 4M.u]í^\80ùøaWþO?\16§_0/\895\95jÙ£x\ eð\f$Ü;j\86Xî\r?\09vó±ÙáI\8e6@¨\ 2\96Á\b@47ùá\8a\1c§®[® ÂIF\85¿/®ßvõ¯t³5ê\ 2\82Ø7QxIÑÐ\9bR@\92ÎZ\a\86Í\19ý.,ß\8c8\86\94Þl\8a«W Ìâê¥\95\1eEóõKPlú*7ff\8f\aW¯¢#hõ¾\ 3'\17<õïëB.Ü£|Énß»\ fÑ\82\95¯\0[S¬ÞLmø\81é ó\92d+»\ða\1aÀå\aÒ\16Õd/
+\8b¬à\1a\ 4æ\v¬~\97\9f¹Pç:%ÒÓ5\v}Ì\ 6¯\88\9e\e¡sÅ\B\90 O\890Úæ©ÌÏ}\12v1\95âqÇdîwt\ fHý°Éû¼ì\9bbÇ\92ù\ e±\12{éø\8d¤bO¿\9f×o¥ñ{*Ö)(Añ\12\9b·Ý£c\9b\13ïØq\7f\97-aØ\8a½[x\93p\83\9d¾\9dÀüõ®s³Õ}\r«\13¬£Æ8P\e\95«6o/dô\û»Ö\84\8dîæ2?$\16ýÜ[3÷fsæýËÛ]:\9cJ?ç'õo\8fF]\12<\93ïÎ9\bÔè\ 5· ݵÓÍZ
+-Ãh`¿óqwj\1d\88îÒõ\87P?ö9\88¼Á\8c?ya^\14ê\r¿\1d%BÀ15/((/Âðú#¤EJ%\7f\7f`\92ßí¨\10e&?@sµKGÆ«÷ Yjû\856\98bÐÇ\9a\97¿\81\82{\19õh\1e\91ãZ\99\92AHû+êò] óýC¼\ 1¿Ì{l2vßM]¯¢äþÐ\84÷мÀ\9b\¤±ô\1a¾\84_\89M§ãßýWz\81\1c\11í¹
+Ù\19;O7s#2ó\1dqD\bÊÿû\99\8aÝ7¾ñ\84)$Ì\1e\17áøDbÒy\86E\93»M?4S¿û¼áØd?\13·\9bT¬à\1c±7l§\98½Ë¶o$í\90\15ö\17.þ9yÎ\95'\ fõ\fóDm÷&~à°ÃæA4
+îÊM-Zz)l\ 5%X\98Ä 0Z\95½®^¦ßrï\8e>ÃÅVÁ,¨C\9f^\19\14Öú\10°·Ù\121ÝsÜsé\1c"î\8eçÇ¡ÞJyó=\8b4¯.\1f\vCÇÕ#\8cÏ÷\92\1f|m'Ø\a¹OÏâ6?ÎxÝ6gìÖG?§\9bÍ+»\8aYnÊ\12Ø\9aà¥\12Ø¢Æ\vañë\8b\ 1\83\94\1c\85lº\ f*bªÜ\ 19\96ó7Ã\92Ï\90ïmt\9eÎ7Ó\ôá=ʼf~`\90\19Âð\15´\11\8c\90©ä ,üMI=KÐ`%ÝÌSñäê U?-\88+\1d\10³Ìܵd\98îE«\94xa\\96F*¨y*(îà\vÂ2/ß\81ù\91_*×\1d\9bZ¢Ý°\82\vé`ýÒ\ e0\11zQ\19D\8c\8cØï
+\9en}\9b®vÉ©\ 2i¢z7ÍM\7f¢~eÌ\ 2zæ\ 6)\7f?\7f\97å//\84\97¯\1faÅJ\95¢\17¼ÀõÝ-¿roÑÊwnìýtFk¯ëx!ý½¸ÀîP\r¿Àì£P^ì.\ezÉU«ñ\10¯ªQ\8dÇ@!O¾¹\v±ôÃ\858¡On\90üÍ\10\9b(¤\93\19Ö¹
+çÊ£oç\9eüù®{\806ý\a$K\83¹jù"\vÒR½\80âþ]½[H\11Û!Ìùb\°{ý$\98°-ô\9b(\ 5+\87~\85ex\13Q\80¥½n\ fo\rMn Æ®RNuôM ÂuÁ]þIG?^î\1c\85\ýö±à\1 \\9efï):Ócäµ(¨AðIV°p\f/Í=:²iøWJÅ\ 3A\8f.\16ôÒU\119\8b_à¥<½¿Æ\1có4ãδòî͸\8f\ 4 ©%\16±ñ÷ð\fÀÂ\rt\r±<Ö2\94ç©\v\82tU¦Èd®¦\97\1f÷^¥åd¶R1Û\8b\16\9f)ãKÎ÷g\1c\ 5@sEåF\8fÅ\97¢³Ø\8f\0¿Ìw\8a\97·µB\1ff?u\89U\11\1c£Dz2\9bºÍ\ 5ï?â
+®M²þeÁëñ³ \ 61N0%Rß8Øx=\8bNÚB\b\8e´\94#Uº n¨ÂµÿB6à÷xL¹m¯¦o\ 5wµ\18UN2æÕÆ\8b\ 3=øN?\8eWo¼µH±\17ï\99\9f\8bÈ\97BSJ\95V¿âª\94÷\17\8cå\89\8e\8f¸ëÆ}=ý¸kQû\eJx\9d+ÿ|n`ÛÊü@\ f¿ÙÂë3j¬\ 1ÜÇâ\ f@±ÛiÍ¡?Ý¢N\11\89.C\93üxY
+\1cx¯yõÔÏ\8f^Ë\17\99\1fß\95b\83\16yL¡}ÜÜu`¦?\15q{\r0źÛ\e)ÚPÞ\860\89%ï/¨Üå;qGÆâókíê\14®v«Y\86ÙeÀÒ\ 1K[a\93ãW~Ü\11\90 Áüwæë«\9eÊ\95§\8dm®âv\17P\18´ÌÇ\8dÒߣ\1f¬\1aå·We»\88¹²\ 3m|_yéi°\82\1a»vL\11ßùÓ\rï\10vÈÉ\ f©\14Ç\95Ý\96(?\17ã\9aõ \8c\ 5\14\94I3v7\18ï
+¯\ 3ê\añ\18-\ 5Ó{JVJÌ2
+ñ\8fÖ9O\a'1\7f\86Í¡ãν]\1c춺M\14\86ßÁ\90
+ËçÀÿ\ e³±ñr±\81ï\11Å\83|Úy¡=\v\1a\14\ 2f\94f\®e\94|ª\86Ò\91âf\8bÒ\ 6@¡+\8f:©\8d§s\91«Vú¿¹Y|p!O\18Öù_\19Ø¢ßV >^Bll|\7feõ×è·Q0®J¥ÂpÛ\ f\14R®YS\1d\8ccñBá%\8ch\18ÔakN\ 5>"\80Ï_,ö"Í\97ü¸\99~ʽ\87¯>5ÒK\12\¢Ì\92vi^N S\92Çsasâ\10döã9þ[H×S«Øíf·T»\ 6Yö\97\8c>ä&ÙÑ<çý\fM¸8\9d\9få{oå¼ä\9eį<Â\8a\7f, ½i$VD?\17±ØÂ\14«÷¸æk)TÈíÒ8,Ù\0\8dÃ\15È\15\16é[Ø?\9b\9eÌü:\1e\10\14\14\rÄw\10p\8f»æTNÜॡ\0´q\91 {
+!\90cÓXî]!-\85çM\87@e\81vôòöÊ&\7f=s¥É\8ch\9cqÅky\7f?\ 3ö>KýÈÎYL,Ø{_>\81bÉ_o%7îÌ\1e`µ%KÅîpõ\8ae¤´|\f(/M\8eà'L\80\0\ f\14\1cìºQº\ 1Õç\ 6Dtõ7\83»$zG©\86{\8bø)ζêÓ\10¬Ô\96¿à$Ý`77\1eü¹\8aý\8dP\8e\80\7fyE²íß·4Þ\12
+Î\1a\17ÓÀ\96^Þ¡3
+zï\8bÜÛ²ïî#]ÿµ ê3\11ä\1dn\16wÁÕ ]íy"òì£\14\0W~²»\18DîKt3Jû+×\85¡¿\1dÓ\8cE\82ÓÌ/5Û¶\1aÎköý£àBQï\88ªË\12\80\15[L/\7f7!\94Ýq\9fë\7fv\1dÊhµ,\0b\95QûV\1e¿Ê\8cn\80þ{[p\15\9d\85Ò\8fd\16\81\81ôt\19ÌU|\8e°\12ó÷ö2?\19û§(\8bà\89º\11Z\7f.®ÐÄ\ f\91¾\16Wyºû\êz\10Ø¥\9bYn\bVç\14,ìP`\94^¦g\ 5¹s<\14Ú\9d¾N]÷[\19nQn\92¹þ{\9f\ 2{ÿñ;\15\12\81\81¼¨Oaý}ÆaÀ*U4\8fÏ\98\90Ó\91\82ö«h{ï\\89Ått\19}\7fZC_Kè<è\f\99ý´?»`½ø¼\93ß\1cq\19Xàí=lÏzI° ~.@Ýo\8d\8bÈsê$iUUXe9þw\8f+96\8a\820é¨×½#\9e\17âi{\1c\17U\1c9¬\ 6$g&ºå\1a\19>;\ f\9dI¶ä_Ó\9e6¬\84°\9f\14\8e2\9e5Ç\1a¯F\vñ4©\13N9ý\Ì¿7ÛàD¾ªC<\ 1¦¼\98ÿC7lë\1dý²G\90\8fåÿ\94>\15\ah\89'Ä<\8eþ×ìv÷½ý\}ÏÒêÓj¯÷;x-ÝS®¾³\eõ\87¿Ë\e\1dÚ+>³á$Je\8bnÒ¢/\19~åÀö\1f\87\88\90ï6\0ÛÐ\96F\9f(&Þ\88ÑÒ\83\86ô ?¸¦o\9aÛ\f\98MÅyÉñ\90\18Ábè&¥§\94/ñÀ~Ø=t)a\ f\84\ \81h\9dÇí\9e»^Ôîÿø\84G¯oA»o\17{´ûo;9{\80¸¥\88P¢ëÆè\81%=\rfCmn¡s¹9°ék\92ÎDè\bì ?=\9cH\84£eòS¢4\9c\81Ù´^'\13ã´\7fuWIU£\9bd¤\14\7f
+\16\96=¦\9d_¿ô\88\¯Ðm\16\12éÄ\84ô¦¹\85\80\85¾lø²\ 1ï\ 3૱FÃå\a\14¤kÑK¤Òj_ªmÖëëM\13\90øËD\88yä\87!÷l\13)lÛÔ`9¿"¦W$Æ|/\83]÷\89M\1c`Gv¾dÑ~\85\a\8eç%7\ f\866\91"\13ù½þ\82¯Åoøu7§Fú²îß¾4ô\91\16¹A8V\1e\ 4u\91\ e.ï@©Ñ \95\91²\9fÕ¢S\1fiÜî^oHçZ\1fi\9d|a.¨\98WFjsÊh7.ÿmÀ\0iøÃ=ruóúH\19Ï\8b/N½ë\8fô¢0`lNGkõ]Ó\e+QÈTS\ 6HYÇåbíI\18 í\ e\88ÂÛÝ£\8c\14'ùJh\8böø\15Y\196u\91\16KTÓ\90¼T/Ù|ÅH\81\17Çyõ\9c>\ 1'¿ì\925\84Ö³?«î.ýüMz\0)³Üc¥\1a\91\11\90Ö].\rÒpøg¸\92\91Ê\9cÌ£\1d®û\1f\8b¦\ 1ÒÔ\88å
+\97¤.ÒÁÍë\83\11Ò\12¨´´ûúE\7f¬q{\7fãø\98=è#md=ÉßË\9f\9a\1eRßõw,)#\85yQ³\92÷¦\97º×GÊt»D!JÜé"½(¼s\97\ f?Ô½\1eR\9b\93(ôû\ 5\83±²\ eç|q\9b5B:"\8aþ×¶>Ò"\91vÍÜ\\17#µ9µ\ 4Þ:ü7\ 2ÒnÀ!ðÍ\1d\93\10È\9b\7f\99\17TH{q¢Æ\ 5H\84Ô«Ajsn.J³%û0
+P\80\96[iù·öÜ\e\19 e\1dÜ|Z\18\18!Í\11·Þ~\14#Å\ e\0õXË¿±Ô×úîA\17éãµ\8b6DZ\9d=Ò\84\1eR$ù\99ç\0ñ8ô\è\8dusQ-Íî\9e{\1e·.Ò¶kñn\88ôñ£ñ:ÆHmÎý±>\17\89vu\15×GZ£\9dB*\9eÐGºª\è!\ 5\99\8cж\87Å\8b\ 1\81\9fï\89§\9bjN\1fém2?\1c4ú}]¤ýûy\19#EûËþX¿ºáiÁ\0éK\84èo¾\ 3úHï¾V?÷Ñ\bA
+X0Úa9°0$ðÚùè³\e í¶\88üçOE\17iä.paOõ\ 3 Ç\0mìW»hvCn( \1dÓ\1eÍ¢ñôj#/FJ¹\92î\92z¤5âÕ\eK#¤~\19)`Ah\ 1ìׯ(ô\13k-ÒÍò*! ÝÞø4#µ¿\8c\9e=<ÒL\97,«\ 5¡\7f½i%í\80\ 5Ð\ 6÷¥R9\80Ç
+H³Û=QXº`y¤7d5 \11\84þ\15sÇï4ôe,[ÅH\11\16\ 1íåz=\1a/\10RB\83t½NÏ\96"ÿVì\1a¤\9bðWLØinb\8d \86¼\17ËÙkÓ&è\ f³Ñ\90UwªÔº\1a,c\86O»\rò§môô\83(½:wòÓ=É\ f¢7weðk\98\83+_Vì××\8cÓ<e#ä°)<ÝÌ#{«\92]|\tô\9eóB±^\8e½\18>\8dPÞ\87Wã§\1f£\81K¢Øþó4uÕ\9b\18>ù\167\94ñÓñýÛµüTC1Öq\7f1\19\97\f~\1d)]\95â\rÿôÍõ\eÕü¶åû\14\95Ó7ò"¶G±Ö¸ò¸Ð{ÎK¹\9co¾6|úä\1c\87ìÆO_r±\84H1\9dç¯Î\ 1wiøôk[_\95\f\9fÎÛT¦!?Ý£ØÏ¼\90\1c\18ý\1aºÔ¸\ e\e>PL²cL1çd1~¬\19ýúÊ~U~ñ\1a>ͧoÇ3ç\15êæ\824¦XÚN]zb\ 6OÃ%"\9fð\8ac\8e¹¯5O}ÍÆæFx\9a\rƵ«²Ô|-zÓòsfÃø\1fÔ\16X\96\98º\9e³\82üyu~£§+Á\1c-\füèÉ,7wü'\95\1c£¶\97ÈÂÌÚ\ 3\95h\17,̯&ú\13Dm\ 5»?÷\90E\7f\9e°ý&Yo¼\8c\10ð\8d\1e2¢ä[_P®D= Ès°sTúXÒA»à\87\95\1f¼6\90¥£X\11¡ÛÈÂ\ 5vlg\a¢õâ
+ð½Å%|\8eÐgbì\ 1ét\91_ï^\83\ 1\95¸]_Ø\9c2Zlé\18 e\1dÈÎyÖGÊt{\86Ha\13ù"5ú\98r¬ØÒ1D\8a¶¼\89\11Ò©\12)ó\b6²\ 2mä.ó¨@:½ºrÈH±ö/!¥5äEÚ¿4Òâ·
+©§\8bW%Z\15\81\13\94!R¬ý\e \ 5{\10´ÿ\81\8c\14Æ¢\1akß\10)\10xÃ\18#EÚ¿!R\9b\13éÿ\1fúc\8dÛ\83fHk.C¤X§\90\91¢µ¯B\8bt\8a¦jVgQ\11=þ$L\84'Û\9bþXyo°ûY(×¾Á\9b¬ãw\90ïÜ\1f|/ü!ð\9d -20æ\97´ -÷\96î«û\aQçAá I\16vkA¸\=¦4+>ôé\88ùå?É\95{Ú\14\8cu$\93x{?¹òÄW\12D7\ 6\91\8c\96.¿p/\92Ñâs\ e\ 4×(\8f0Ó²h\12Ð'óNá\8fÿv) À*°\88@Ò-¡?0¸Ä\8a\7fIã}\ 2±\97 }ÌrNéÏ\83Rc\16|f÷ÒË9\84¥¨\1cîkåFð)A\97[uh¸B
+íÎ+R\87×Û\ 5q¬\18AýJM@Éã\ 6\1d&*a§\13ÿA\fù¤¶\92ô:5\8f\965\9dRvi¸s\ 1ëÞú)×\r¡ð£iÜ\81\98ä -û»Lõ\10ÑÑ\1f¡ó¼1¯3>\97Ýp|6§<BüÇp\ 6Åù{¼8<\7f\ ei|^\81ÇôF\88\94×\96 ±¬Ïß\12ó'oYX$\96 0Ò\9bù*\18\82²Yaw\91X×\81£8Kæ+Õ\8eÌsVñå÷xÊëÒ\1d\94\9b\9eÀÉgS\9eÊô¢\15sºÛ\8c\89¥\16=\9e}Ñ3È«E\ fm(zl\87X7ÿR^+ (uYEÀ+^ôèÓn\90G:\8c@`\83þøó~þ\8f@;r¡O»nÀn(¶\8dV%öÇé\ e{qüÐ\94»\18\1e\1c}ÓnÞ\1e"u±z%D\13t;\92óiF¥ÜÅ\14£\9aÕ\83WÂìï\89Ñ<`i/\8f\1a\90\9e\84\ 1Þ\ 1s®£ ´\f\95|þê¹\82Îur\ 6Óä_\91£KW ÷\81÷ó\9fH\18Âx\97þXú\12"ç(8\19;uô\81\91V\81é\81ÂtWDy¼ûënT°ºîÌW\1dì\95£\8bÎÎt.\1d¤¿EúÑ\9fg\9f"H±Ç\16 \19ÝùªÞt\ 2Å\94\13\8aþÀ\84Ê\8eè}Þ\80ñIRp\9f7î\eR\97\14ýÂcÙ\16u{\96,\8e7F\83L\11³m+´§\85íO\89lñÝúö§dZ<¤\85Y\15=óÈÆæ4Ü\98,è\8còË Í<o\r·%\9bó\98ù-"\9a\94\8e×\9eôÖþ´¨\96Ó:ĺ]Ê\e¯I\97¶7\15ýòþAè\8f\15\95\ eºd¬Ð\89SgsZ\9bA°òM\15\8bC:¿j\ 6\17NSÅâ\88ù+Ö\7fdP<'\9f\ 1ìqa¡_°*-\ 1So(ÇöK\8cð
+ÀºæFÌ1\83TjugSl¸þC\8a©%Ú\91ýZ©ý0¯ÜzÏpÝ&7'jǪø\vô§¤g\f\1a)´º\e4\95é|Ø\ fÈ1\85\82¿*·7\17\7f¶*3\9dßËã\fe>\1e»7\93%\142©É´A\96øñÔé^\Y5>$ÝRK\9däFÚ\96\ fº\11ô\15Ã\92F(è®\97ÃÓ\94Ü\98\9bx\9a\8e\b\9c¼ß\95\ 3RÀRG4ºåi49°ì\15\1dámd\9fÁ\16õ^B®ëç#lr>(©N2\92r{¨þf\1cT8´áS\19ñ|þ\b\ 4\ 6N\rÐ\ 4í&:\8c®ø0X esµÃæ<¦S\8e\13\ 5\80ZZ¢%×ß:Í·e«\ 2 ,\v\0«ö¾ñø\\16Hn³Ft\95®pØ\9f¡Õäe_ßW\19\ 5õ\9eþ\82©r[2ßß\14eÉ Ê\85Ó5|\flràý\ fÚ*\7f
+\11+3bY_â\86f\ f¶\92\80XG.q\15±¤%\8e\7fA_Fç!õ\ 2¯ ±¨\97¸®Õ}Ø»\ 4\{aÍCbæK¨h]²ÚÞ\98¹d5\1e\92\9f\8aZ\8370\8a\ f»dah\8a\85$ÌþÑn\92
+ÊK¸µêÞ\90¬$mW*;õ¶|\82{\ 3øà\97Â\ 3Â\99*{³e}®4{ª\81ßÇæ4óÒýTPp·{\96ß\a\91å°¯O#
+\fü5\88:¬%NVÈM\95§a¥R¥S;*\r|`ìL\14d²\ 5e\1aQ¹ªU¥\8f¡\1d¯\8fáþ8ÍûcÕ¿@ß´8\97\86#\14¶ØQ\eaU£ \9f¶^b\r\8fùÐ\ eóyUÞü¤ýå\ 4oôªªÝ÷\8c\ 6ds\9ap:ð\8ezÓ;E\0Ü´\9caÛ\819·F\98á\ 1'½M³Õ\19é²@\1dÍFwh\1fRê²üX\14[\1d
+V¹\94ù\ehTÐf\85\19\fW\9d\82\93³Ð\9fàq>ïý1w\1eõv;uTÔr\b\12\80\19ù[õ¼¼eaäoEÀ\8eX|úö\12,\1a\9bóì \ 5\9e5ó-Ïf\19\8eÚ\90<®7BL\9c\87sî
+ä¡HÖ¤\fE\94ÉÇÀ9~ß\93ì}\1d`ª\báq\9b¨:>èÂÚ\85ßÖ8³8MõO"\fY\9c|js\1e^\86\16¶\e\ 4\8c
+\1e\1dã3P"P.§×\12)\15êgìWµ\8bi%ÚfîÙ\93h\9b¹6\80gA¢ézH²@\98Ôï¹\12%K4Ñz=F\83×\ 2;,Ñl\16#H\bØé\12MZ\95Åöò\ f$\1aÌ\9a\9eD;zí\ 3\9cã%Ú\9eï\82\87s¾DCPÎ\8f½b8&Ñ \7fÆ-EqB6§\9e6 Ú\84ÚK3\vZ\19:Ô×Q\18ÿ\83:ß\12l\9e=ß8j;7\0+î/o®_c1dQ3ËÂ:¿ßê-fÞ\ 3\7f\9c\98\ 5`mûQBÖæ4\14³'f?¨\17s\eÛÒ*Kü\14\ 5\ 5fM\93Ôd$a\ eñ¦Ú\eBÁ~\18\80s~
+\ 4\86b`Pk"ï\87á¨\83î\16ÝË:Ñ\ 4\fì/|Õü^\bãó!íB½\eBkà\1cý^Á¤£\8b\87ÍÙ\16_çɪ7Ká»0Ü\r\9f\8eÒïÍ}°\bØùúý˯Þ^xì.\86fíx\97Öþ.\86à\9c£ß+ H{áé»\18\86££ßëA\91¬W\ 38VwCó½\10K\98\97ß³wCÕ^8ÔÆ\891\16hý\93t$$\7ftó°\84½R\95<%§a\18ê\ 2õÉ\94(Ié·\10}ëtÎñUküü\0ìÜÕè\97ÎÚ6ϵ6¡\98%uW\9cI\84ÅÈ"\82¹\fZZç&ÑÓ,г\1d2ñ\YH§ÓtÉ\90#pnÏÁå¥Ý\98²ÁÀÞ¶\94\r\86,Ù\95\166&*Ó\99\1a¦ç\19g®\19ØûÐ3Ê\1a)-,®ñæï²m\ 1\98aìFòöXM¨\a`ôåuµö\17\1e\12 \18w\9c\8aa\90\83\88fr\18´ä\83å\81\19,ö®iò-Ï\116Ñ\7fo©S\169boq ;2¿tåý,\19¾]èZ\16Â\1càj¹Í»=°h\fíþö o\ f¤é\ 1ª\9bËëUÐñ'·\9c_C§ÜÅö+è4\15C'×Ð\99WÐa\99ü\a5t\86Hq\ 5\9daµà\915tæ\15tÊjÁsjèÌ+èTZß\195tæ\15tªjÁ3jèÌ+èLª\ 5\8fª¡3¯ ÃÕ\82\7fPCgþ\9eP[}v\rÝÞÂUUÐI\96Å\995tæ\15tX\1f;\C§JH6©0«»
+zÚ¶q\ e¼q%\90&ÙÅB\97t=½¹Ã\89Û^kõR\ 5\8d\8d|r2lN«ýê8\a¬zz\9fsêÝþ¸©SÄørÚ\84\8d\93étíU±«ºVTÚãÝV\8aÁf_³ö!'\8a:Æg\ 6Ì<\ fËÚø°¯ïPå\9cåñi<WûëÅ:ÑCÇwÉ òñ\80çʬKz%sh,G\15ÍY\925yM*\88\9cÛs\\ 1Õö¨T\10>\7fL7\19äx·±\91Ó\18\9f\fv¶¿ª\ep\98\ fÍf±ØM\9d y¬c\10s2Ìù¹\1ec¾ØÍ(l£¶\92\ e\15»\19Û§æ\ 1\a\85´Ì\9b&\83¨LÓCfH^SÍ ª\14¶\ 6L\9d\82EîGlÆÔï¡ÊGk2kT8ÊèÅ«ÒÈì\1dÓÆ)\94G\95\98âÚ·[\8bU\87\87m{ \96^,[ÒÇö]g\87\1c\87óÈJã&\81ß¶t\93fO\88X\15\rÕ.Ã*0\85¦¤\ 3;¨vY®ãÛ\1dÊ\81?¢\8eo|¨þÅ¡rZ\19\97¦\19\17Á\98«Òû9ð®Ä\87èS)½\12Mãù;\98\ 3o9\8b`ZT{0uçÏj\1d_d}¨&Æ\8c\19ÔÙé\bØ\9fU\88®åÈ\87QeÊ1À\ es¼u\8a©\1d¬gRì`\99¨õAÊ\12í$\8a©\1d¿T¦Ó\r¨\13\9dJ\9aÄz\9dJ.kºì\9eÏwßÌ\92\96ú\83¾ßÒ¼^N\ 3Â\0ÀüB½#ë\80x¥\ 6$úójººK\16\8c=Éâ;`ì½\97,\e{F\0´9\8a'\808t4
+̳tª\86µR¹\93fhH\1cÞ_D\95F\7fY \12·ÃN\ 6\9b©K\1aU¥\19\18q{loV#g;Pæl!ä\89\ad~ä\89mϼ2Ñ#c\9b½T~wnk\81ä\8aÈ\88\11'\7f\95\8fsïè\98J¼¦t @nOê\18WDmuwó\13ô±²Õ\15/¯wC}ì«|\9c{ǸÌN\9bAt2\9d>\ ex\1al\1aSÂ\98\ 5\8eôȨº¤ªG\86NQǸ?Lº¤^Ì\87w1\13:1V»d\9e\9d~¸(άKÚ³;\82\1aÿ/_\92ô\17\1e\99
+öÈ\9c\99¥\ 6\9að¥\ 5\8f\8c\10ã;P\9es\19\v^\9dã\91QØû\95ó=2\0Àm\92ÝqD\19Ú)\1e\99½jÁó=2¨\fMã\911ªH=T\9fÇ\1cå\91ÑõóW,\94çX+ÎA%z°à\ es²µô=tU\a¡V\96«²²l\9c7nEY¦oZ>\87\ 5f0¯I\Uÿ&\93\ 1ÍK¬áú\e§\ e\f-æ>\90Ók¥\fíÄ\ 4våþ\82
+È\8c½KG\94\8fí¥.èV\v\1eª«;:iv?C\15×ÕYÌ×3«S\94\8e\9aT
+\1fv\82VM\ f©R¬^\85ni\9aªWß?\8b\14µYÜèÄ\9aw£Ä¤¿©\87CXþ"§Î¼\1eîøóÇN©\87ÓË\82®ÿüu=Ü\19u\16GÔÃ\99e¨þ]=\1còZ\9f¹\ 2-ÔÃé\9c\bjXÄuz=\9c*\eJü\8dë¯ëá´ç\8eò\15q\7f]\ fwð\94\80?©\87SE¬,¤Z\9eV\ f§µÅ\8cÂ:¨\92íüÊz´ÁýYN$\80RçD\1aé\96Vr"ÛKK9\91\87ÖþfN\9f«\ 6dq\82ÄùÕè\18\8eÿÐì[\84c¥\8eÄ\10
+¯\8fa8\7fPɵ\97É`\92\ 3\7fX¢¡â:c\87Ø~¾³â.\e\83\8cgׯw/ãÙõ{`"4\8bÐÐÛÓi\9f³\fåâ#\85WáÜe\bÀL\8f\95Ñ\93c\86˰»²º\fM´qDïãìE]Fû\9bÓ\801\9cã\96\8fA=2Àù\93BÈ\ÈÚ.v\10\8eñ\91À\ 6§i\19¥Yï\1f |ð44µWZsZ£Ç¿ïÃBÅgæ\a;\1d4¨¥\8aTòâÔ\ 4\11Å\98\8d\ e\16>©"ut1´PDj±"ut1¶â28Pê÷'\15©/¿\7fS\91\8aàüEE*ª\17;¿"\15Aù\8b\8aT\ 4ÇÚ1Ð\1a\93X/¯\ f/\10ãCS\8fN2ò\ 4\84ÙW/ÃÎÙËPS
+§/Çþº\14\ eçó\9bfôüE)\9cî¼üy)Üé~K5ÅÌm÷#ìÊ3Já\94g\10áb¸ÿJ)\9c\8eWá¿P
+§ï\1f³h\9fuÍ\14C¥(P\9e\9flVøôa\98«jåDxµ>\96\r\1e0\8b¬&z!PaK\1eE\v\ ed\ 4Ìød»#u\98½C\86\8f\r.(ªÑ»\16C8f§ó\82(×Ûòd,\87\8b\9bµuu/\86Çáh7\aÑ;ª³=Èë\17Ý\1aç×Ã'Ì\ 1¾â2yÿQün\8f\869Çt\97/D/S\83B3YϧB[\17HþBó\86ëâkÃs½ü:\95.±ÍJ6\13\9cd³\99P\15]Bð¸\12·#ç·ºË\82ÇI]\8b¥Wu\86¬$¡FéÙ¸î,Ò\88Õ\95ì¥.v»\9eÜß*\9dÏ
+¤á\ f¯3n_\1aUØ1Ý\8eY±Û4d\88\94(43f\15vÎûÏÛ\91\11ÒW\13¤Å@T\81T[\8b\15óm\14^8m±\eÓù¨I7\13jJÀ.ÜfÅndP\83T}\1fßõ\8fQ\85\1dëpü²»\17£b·g³ª³\1fó
+»e³i\88ôª6û\98\1a!\9d\99ßÇ×è\18#Íß=\17\rÉ{¹ ¯\87FH\eê
+;<«°`\85QãO\ 2\9fÇ,¾w÷\1eïUP½É¼Ô,Ad<uþ=a묱:\8aè\9dh%%\v»oí\86jæ;¶\90r«Ö`}\v~,ª\18Qýjù7¥=\873Tµ^\13ã{¬~-tI\11\173éÔ¡äÔCy\1e¼õú\977Éé];¢s¦\8a\ 5ï\92ÙMrGyá\9es\96S$\ fTCâ3!\8fÈë;t\89\9ci^\9fu~:p\89\9cáøôî};tÙ\88Õñ\1d¾kÀ2Ñ\ fÝ3¢9Kí\8cû㬯\97âÌø""ÃtW«\17Ð\99{zO©¦;Í\ fsl5\9d\9e\1d ÞÅùwÕt\16Ï\879³\9aNÏ'¨]/çWÓéÕÒ\9dZùh\M§ç\8b×Ï´?§\9aNE\16aÍê\9e?vV5\9d\1e¨\ 3'\84\9cPMwâ\8e|d5\9d^\9cFÚ+ÿ¬\9aN¯\96NiïÿM5\9d^-\9dÅÜ\9e#ªéô|íâ\rì\7fWM§7»ØÓû§ÕtzÊ\8d2wôoªéôjé\fN\9b?£\9an¿K\1f\ ecMéÔj:=åÔæüëj:½ùÓÉ\86:³\9aN\vêà\9dÂ'UÓ\19é\96\7f[Mg\9dbçTÓi@icâ\7fTMw\12Å\8e®¦3±ú³j:ýÚê¿®¦Ó\ 3\0Xþ¸\9aN/Z¢É\81ÿ\83j:=ñ ¶^ÿ¢\9aî@dä\8fªé\ eï/\7fQM§G\fY\eÿ«jºC\95\\7fSM§WKgx\1fßù\ 6`@6\0U÷\8b\1dut\93ñ-^û\97Tjïæ°Xøô{`±«\88Ï,\8dî²9ý¾º½.mQ\94ç¯ï«3Ö.¬Ñiës\1dE'\99JªLHT\93yP±°È\ 2ª\ 2\ 5\83ªg£NiºdU\14X¸]N\1d\98:©K\88bЩ£®]6ë\92~"\85¡\841¡\93ɵË\ 6"\13íbj\8bè\86¬l4\16\11}\19]\1d¸ØÜÜ3'Ý\96evÑÝÙ×Ü)鲨\92\9frÍ\9dáírUKµJ\16¯¹3ªä²VHg)AÂ<?Y¾èî¼¹*vWVn\991õRYºæî G\11\11æìkî\ 4\1dÆü¢»³¯¹ãkß\ e\tg-x´ªþÁ9WôM\8b4\9fDëu\16Õ?KQZUe\95ûäZ\1e\18ZÂc\95?\r£<è\82º\83¹\87\87ø\13\95Ñ!ãÙÔ\ 3o©\90ÎJF³íp\85¡q\12\87åúBÀb\92vxD\12\19¢\8e¡ëOÍÉÖnØ\ 2Ì\ e\97¶\9e\b\1d\9aj8f½³¡\8câ=ÅúÏ\89\85]ªl(`ª\ 3ùà\96³¡\0ÔÁü1ËÙP\0ÌZF·yb3\96}\7fRùx~(\ 4Ý(hr\1c¸0û\16áXºÛU\ f\8a"³ëñ/V \86²WÉ®[)|¸\96\1d\ 3³TXkt\a\84¶°öq±_Xû¸ø»S\ 1\11°?¹È\18ó\18ôÖ\8a0Sî]\86¤lê\91òà}¯f9ÔÞý\90.ªÄÛÏ 6µÄ\8dr¨g\9bù\9fT¦H'\1f\1f¯Iì\83ªíþê\ 6CxP7\ e\11[^û£.ª6\8a¾¡\8b×ÎV'x(fY\9dGÀù\83S\ 2x8çÞVÍC\11\17¡Þ \87Ç媶,\142\1c\15áõøt\96aÛB!\83%\ füÙ7Ü\89õ\95FwÜ\9d°\fu\92+N½·ú¸\eîÌ*\1fÏX\86"£ 7ÜýÉMy\aë\89¬Ý\94wn=\91tSÞùËÐä\86;u]\92\95ú\90Sn¸3»ï\15Ýqwü\rwVO5GÕOç\17Ö¾üÊj\8e\91õj¹°\16\80\1dVslV\14\1dþnºÓ
+kµ\95\8fásýG¨¾ðV·\1cú¸s®0\9c\13äæÞ\19\11\bÎ\9fÔsÞ\12Öl±\83p\8cka5EL¶CÇLàëò\8e©o×+bRFE\91\80ðï-Ã\98ûÀDXðk\89÷¾Y,c²RÄäJ\f´\96¨b\17³RƤ\1eä\ 1ß©\fJ\9a\17Ã2¦\98ÛR\85º©Ù.Ê\98Ûʪ´RÄäJ,´Ê÷©veç¨"&£\f"tw¢ÉN{\9cbØ\11jxÏ8\95_£\18ê\1c\96Øéòw@üE\8dk6h|ª\18²_\8e½\91î¨ë\1e1)\8dõ±îß\1dMÕÅÑ·?ªqí\1a\1eMu¼\ e3Þ\1cuÝã\81\9bòB'Ö¸*Ö§\94\86a¡êùp\8d+tÉrÕ³Y\8d«à\ 1B\13Qãôñ\89ª\1fªx+%\9a¹9\99Í\84*O9Ǭòhsæn|\8fÍÄòÕǧb\1dW÷\15:/\85)åJ^äø\8d\a»v\15¾cá\93ª\bïîæA\89TU\ fgsn\1cín]éªRßÃ\16Ë>w\rêá<ÆExëÝk\8cTËdM\19\1eá5ªýc\1d\97Ü\83§oT\84÷b\88\14ÆrQXÑ\86c%\8a\8e^Ë\10©«<\ e¾\eÝÃæ\91\91J\95\2\81ëaJ\81T]\9a¶qqWò=\82´¦ÊÑã¾yþÖCjs"\ 2kï\9cS\95á\8d´µ\7fJòVãu\ 3¤¬ÃÉÜå^e\1f¬¶"nh\82´xÉ\1a#-6\1c==¤øÞ·HIUZ©Eú`v\8f`µm\8c4\9fo\15T\99]\80ö\12=÷K\9f\84"Ì\9d7\11RϾÁ{t\960|OY_I¼zci\v\10}±å6/o\930æ.£U:¥`\8dàíQo\9eY\13?±´ÑYL\9b\ 4¢\86=8\1a¤ºÅìpâ¤\85½\19`'´\85M\a=$Æ%Iû©U\86]B\9clÜ©¬\95Ò¦Ã\85M\9b¿º\99\ 5;t\ fÜÌbÕ\93\943O2\9cº½\9bY\0Áã1)hfUw\9a\93'ϨJ;\90¡ÉSÉf\8d\9f4A¯cÇ'yQÝÝÑ·,\1ati/KK»^,\13ý¨,-\9bÓ¬SÆ~âãº\ 4ÒÒ8OKèÏ^n¬F\å_\92^uð:¿\7fgÊi¦\ 4À.[8úú\80\ fv\90ÿ«Ã\e»\ 1»µ\13\ e-T#\99º\97Fy\ 6ùsN¢\95k\12÷\8e\8c;©ØM?d}Ô¹Ö\83ü\89\9eeõ)\9a¨
+ðÜChõÎ\8a3¬\17;dµì\9f\15gb\0éûÇÔI#:!ÖQá¨û\ e\8c%LáÏläQA+aN\8dzó\ 5wFë\18G¬\ e__§ê\99ÖÏ\7fØe\87ïã3ôª0¿{ \ 4óÈúx}Äàî'W¢c\1c\1c<®\90lï>\8b3®e3¯d:ªÆ*zÔ9\a\8a.iê_¦E3ßñAm\Õ%Eª¾\10V¬Ú#K\ 1ç\97\16J9\95ç\\99\94\ 2\1eºÒøÀüÉ\91÷iñp¡\8eefÐÜk¬{ËÌ\11À\ eÝ¢ãÒV×\9a\0Óì*çQì`-\8fõAª#\97gRìà}:GQ¬Æ¼\18\0Û+\17ÖÓ\ e\ 5\8a\9dX\ 5hµ\ 6Ðò9$F\ 5b\96j\0M²Ó-T\ 1Z\ 1Ü÷'\1fS\ 5hµ\ 6PyÂáñU\80Vk\0±×úä*@\15«\98X\98Ú<Øãª\0Ö\0"\8a\9d^\ 5(ÓÓ\n¨k¬\8e\ 2´Z\ 3(ÙÈ'U\ 1\1ati¯\ 6P\19¯äû³?ªó/å³~#Û9\97ò)Æò_¼\94oÏ«ð_¹\94ïÐ\8dl\7fs)\1f_3b® \9c\7f)\9fÍ©£\15þù¥|û÷#ÿ7.å3¾\1fù//å³t\7få9\97ò)½
+¨S¬a§\ 4\12\1d*\r6¾Õïü³¡*\7fq6\94Å{ý,\9d\ruö½~\8a¡ýÁÙPF÷ú\1d\97§tê½~æ·ú\9dt6\94ν~æ^!}Küø{ýô\99Ïôl¨\13îõ;ÌÉ\7fq¯\9fyf\88ä¹:ó^¿C\95\\7fäÐ5½ÕÏæ<Ê¡kx¯\9fùÐ4¾\8b\93ïõSudïV¿\13n\0ѽ×Ï|@z\19ª§Üë§[\8ehvª¹uÂX®\94Õ=\vú\84{ýÌOþ\92bâgÞëgºÑeñ.ö\a÷ú\99»\85\8f:\81Êä^?sSW7\vú\84{ýôÊ$å¥wÞ}|\7fPó~Ô½~æP\90\9fÿ/îõ3\ f¨Ø,Ã9§ð][\91zê½~:ª¦âV?åí\fÄ\19÷úi\96!¡¾ÕOuf×Ñå)\84t¯ßÁº×?¹×ÏüV?\89\93ϼ×Ï<áZQ\91zÖ½~rý\96\1e/jι:ù^?s\ 2b\rö\ fîõ3Yk\9b9ýG÷ñyÍ¡X¾\8fïÀur\96ïã;ë^? \8aîò9¶\9acï^?\93º\87\83Ù¶³cïõ3×äÑ\89\a\7fq¯\9fÑ\1eÞÞ\8f$\9eV¿eA\9d\17#\89\87\96á¡{ýÌãÍê,\82ÓïõSS[k-\9ez\1fßqI\1aÆ÷ñýÁò\91nõ;ÿ>>+EL\87NoØÏÕ8î*>mEêy÷ú©\1cÛ{·úñ\15Cçßë'\95J\99Ý+zö½~æj\8e\ 1\8f\1d}¯\9fù~g\9fÚ$Üëw¦¯Ïâ½~\16ê^ÿà^?ó[ý\8e¾\8fï¤*\\8d´Ü¿×ïôbxÅ~
+,gÝë·ïJVÞêgtÊÙ±÷ú\99§wiv±\93ïõ3OtÒø\94N¾×Og^\14·ú\99\9f\vgý^¿Óý\96j\8a\1d_ód`W\9eq¯\9f,¸ônõ;9{Ps¯\9f)G(n\09ï^?sÅ\90·^Ï¿×ϼ VØ\91Ͼ×O=Hí~{ú\98å\93¬Ô÷ú\19+A¼\ esà$+\8b÷úYÒaξ×O9\93û\ 1\1c\93êZ\83õ©\7f¯\9fùæ`ZÅùg\ 5±ü¾\1fÒÙ\1ezf:Ú}K?ãC{®Ô\a\7f¢¢f¯\84Vc×®y⽦lQÅM"\8fÉÑ\9bdb¥¬\83ç}S\ 2*·j\87\f.eÂ\10¡û\19+ÑóNe\89Ö6¨ö\8dÚ|Øa[©Ø}Ïw\97D¨3çø\97P=\95ýò6Y\ e\12î\85=4y^1ôú£RH~÷£\8d\96×\1døñ¸2¿\19¢ô~\97vüî2¬ýe4¥áÓkÊ\19\8e\\97®nï\7f\1f¿óî³ÍÉ\85\83Ì$r[è\ 4«Áµ=\+2¯\99\87yëfúxË>}4gwáß¶{övù\94ö0¹¯\8bæCu\1eû\8ew\96³\e÷âwÈý:ש\ 5{g\7fº»q]Òî"ë|{.\97=»\ fÇ3³|\99Å\84µ\8fk;\93æcÛ\1eô\rRvêý·í\8bÓ®\14QÈT3DámR!\8aìÕÃzý\1au¯7\91§òÆ1`Ç\9bðø¹.UZ6}\89Pà)H×¢\17bÙÛWh½yY¢Ëæ¢\ e¾¶z_\86¨êK¯{µa4=i¬\90A-]\ 1\89î\93ܽ\92No:U«è\11\v\13\ 3\86»½BóB_Ú\rÇ\8a+\1aÝ#׬îh÷\9aÉËÅ:T¸¢\98÷\9dã{j\9f¢JÒ\8aX\1cjßùWÌ\1dÊW»]à\9aD{ºÐl:\89ËÙ\14Ûûõ¥Ze_i\96\ f\f\9eU\14ÍÉþVÅÐ@¬éÑ!É:³;\9b3×+Ì:ø\ 2Íl¿øÐaï²Ó\8bTh\e¯¤B\9béu!ê\98×óO)z\0d[$\8bßíÎKºÄÚÇ\0§ý+\82å¯Ït\93¾9\87J\19»\83Ôu;ƣJÿ,\11'§«OOC_¾Ý)¡O0àúw\10\15íúy³>\19î®±åD\84¶n\94\8d0Üò\928\14\ eºÄO¤\eû\8e\81"Ü\ 2¾r^\õ\v\ 2§¼\82¯ ?\960\ e\17ìbÏkhÈ\ 6Å\1f\16B\85<u\e\ 1°%Â\97ó;w\ 5w©\&ý®\8f\9füdþ\e%BIÎ\83;\8a:×'½Yò:û9
+\91ð áS<\18]f\136§ø(\e\90\1fQ\99^ëF|P\96ðU\95ø\ 2\97å\ f\910w\1e\10\19Ë9Y¬]\8c¤6\9fü²ÍI\16\aÁ\89ô( \80S\Å\bÔ\16\12ô£ð\1d\81ª\8c~È\12[£ÐW\8a\87=\1e8%Ø\r\1fÿÊxE"\r½\11Pø`/)WÒ\8dÒ\1aAþ¥ \9bEp\1a\ 4J\ e[\93\93Ò=þ*\80\9dô\9eIa®º\ 5_èöqNÃÓ¦\1f?¥<ll*"m\ 6E,\84ç2BPß\8fμ?ê\ 1î Ú\97J{ÿÕ-\84åxfØó\1f .\1f\80\18â\99]\a\9e:oÜ:DB\ 1\91\f96q_ëzÍ&[Ì]\9aëOÝhÕe(OïÑ\8eY\ 5Q¬ûLI\13ÿJ_Æã¯\85¡ç¹JyvÓ¹8ô'¿<aT®\94@<ý\14äI\94ë\95I´\91_R¹É}XøôÝ¢\84O»ç\81 [RyÏh(|¢ÞÃ\bD\98\a1ì¥\10Ä^\10Õk,©áw\8dà\7f=Ü=\b°_=\1d\89Ûz\94¢7¯×Ó/ü\0S¬ÇH«r¬\18Ëë\93=\8bv\9ak\94¦ð\90ù\ e¾{ÓõÉ[-W-Û\1feA"\ 5s²\92sàJás\90#\89\19Ú¹+ÏÄþôCx\18ô\15Õbpoé«ëç°ð)7ú\94Þ£\85÷Ú?imoî³Í~!÷}1I?4_\6g~\1cH=¡Í:\8eóÙ\84µ¿]±üZT«\ eê ð\95JnJbm_n\8a»\18\92\9c\1a¹\19ëß/Ýù§Ìm%ãù^£C
+ØR&O\ 4\9bûrS{í°\v\ f\1cÄZ\ 4\1fQë\91b| þ\85atæ>~V3\9dÁ\86\bÍ/\82¡Ï\8bú\15}\19ýÙ\12\84;¸\11ä\18HK\9c\b\8eýð\95ñà2g2ÿ\92B_c>\12v\8e$\12\84ÈF\16'þ\ 5~ÓF"¥\14Äz\1dJ½ bO\ 4\12BÈÓP
+\19ø\94J\84Îì£\aU7Ê}ýEu\16ÄâU\9cЪ\97\97!þ¬s,µù\85¶\16\89xº
+¼ÁµKÙ×yzª\92ª5\82\b\8f«h"ª¤R\1af~Y¬'¿ß#Ù\a\bºK¼µ ¡¿¤\ 5=«\98õómünQ,ó¯ b}e¾/\16\ 5²\14(\90\b\80\12véæ\ 1ɶ\86\17ë\7fÊh\82¾þ§Ô\19ÃZw\8a¼K«÷pÌR¾Äc~JL\9d\8b\1cÒ.\12\93+¥ú\82ïº\8eW\9f$í¢De\9bcFÖ7q\eºÈø\16\83\0\0¯N-\80ݸþ\vJRd'\9cwa¿êQ\15\85
+\8d5J{¢\8bäæÃ\16i\9e-Õ \13µ\r:\9f .\83°_\85\97\ 5-\0ºü,\ 3x\14ï\14\16\8câ\1a/½\84\r¼0tQ\9e\9f\f\87\94`70Ú;\81øÜ#´\8d~½BÛüÂ\a+z\1c\96Øuª¢û\12Å_ð¨ñY\eòÅÙ©'ï\b\18ßW\80\aÁ\0^MûgM\88"Lº'ZR5û²\96é»þnÝ!É\7f?»@\8fºê£7Üò¼tìËP\9eWîÖ\99×\81:8¾|x\ 1æc\8aÚÛª\91E RlgÇ\14\8bÚyb2\9bç+D'»xÈHÔ!÷GiýÀ\1e \92 EûTw\87¿\8a$`B2 lNÔ\9f¹â\ e)|\\ 3O\84ÜæQ"Â\8b\92\b»ç{\89\ 4\9a#Oüz$@\9c¬"\ 2\9dj¸Ý\ 2\11F7÷û\89é\88\b\ 2R»rJÌH UÖã[,0÷g<U\89\b¥~ðâ«e\81\ fø|<\9e\89¹û¹@\ 2jGb\12\80´\94îj7â\ 3\17\7f¤\ 4ßo꽡ÏJf\0phÒk\81\e\8dû0º(úÌû\0c1í\85\92\19N\1a\ 6Þ\82D\8a\9d6\fØ\82æ!ÃÙ\90û`²*\95³q
+O»å¹\80±¨@X¥\84[&¥ñ0nbó\ 5\ 6\80Ϻñj®awË\940é\83 )Ý2c\13¥Üã\18QL8lf¡~ÓÃ\9f¢Ä\1f\9cÓÌH\13ßík&G~ïd\1eSJÝÓx\f¶\84 Äc'\810_ñ\96xLI\89\93xL¦\83\96Ǭ³©bÅ\e2\88\b\80?Oi\8fMqñàé¤tãÙ\90\ 1È<f\19\84GÉ\11\86tP\ 1°i\96\8aç\ùëQJ_±\ f<ŬÎ\86G\9e\rs¦ÒôAá·ô\9c+\7f=ÊéT\91\92×.¬\fC\9eУ\86¡ð*x\8c\ 4\97eRZÚ\91í®ÜKC\0Am\ 6j\10Þs×§\17ç]\b|iH ó>XØ\87\90´4ë\85\92/Oá\b/æJ\91b\87w"\9d}Èk\95+\8d¥¥\97Êtɲâk\7f\e«È_éËX¶Ê\aff_³\106R\95Æ\ar\85\a*Ñ\9e=\10 ôÀ~ñM\82%»ÿÞãÇþ\ 5\14Ö\11\1cO¼Å'\1d.\86L\ 4\94Æé\13ÌlÙ¹W\18\ eE#´¾\14]v\8f+Òÿþ\9eÄ\8e\0!\1f\867¸±wB4¸Cø+JSp\v\9f¾fè¬\90\12ï×C\19\ 3èXø\92Oø\1as#ͳ\14\10¾Ö\18\ 1À[+¶µ9Eë½LÈ\1eE¢4.w°3FkA+<\98j3Zñ EJ^¸j\10?°9\85Gï\89èõ¬)ðÑ7íUF L1\86u\ 1\90ÉnwLlKÉ\9eÐ\ 1\99\1fÄââ\83\82ì\a\1dàsáZkh\89.\98â=\81\96\80\8f§]¨Ø¢\10lX\9a£mT\0QÏúÐ+~Á2¬\97\ 3¢áºó
+ÓY¯\ 5ñ+ø\80\ eÄcõ\a\ 2 )\12þLÁv¨wx° 4\16ü\Q\9eË GtT\96±ùïSÎ~÷>\88±Ð\99\b\1d¹\9e\r<oÙ\ f¶p\9fù\8e8"ªZÑda÷\8dc¸<0mµ\8a\18\99\ 6\88\ f!s\88zðtê_\14\10[\84\f\91m%bÙtëêú5ûÁUWéfz\81\1d^Q*óì\1d\b>ÈIGò\9e5iÙáns*çw\óKS6\82µ\11\ 4\9b}üÀ;äQZ\96\87ÿ4ºh\að' ú£\97ÿ\94éÑ%äüèRý]¼\8c? \13;~\ fó\1eø\80àÙ\9a·\82Hî\90\92g+\0°Ónþ\13r¥\v½\99\8fd\7fêXéò\99¿3âªìÉæÿ\18\8d¥U@\ eëWxÄö\ 2¹Ð(~\15{_¸Z\85x\9eùÚó´\14;\r!¯\86ÿ#$MH\rendstream\rendobj\r361 0 obj\r<</Length 65536>>stream\r
+®\9a¸\92\17·Ï!ÔCÐ-¡ßi<ê ô»âã?)ú½}§q\e\885_^Ó\e¶÷Súν97ÍTü¦Ã¤«\1dÂ\81\1c\9aa_²Øp\v\9eÎOç\95°ö±\b\ 3,³\8c\18Ö\81mKp\ 2V~\84\85\ 43Ì\8b°ÑE\ 5Ï\90O|¥ý\8bv© rv#gÄË\ 6=\rÉþ=</Ü\1aÇPx\87 : P\15Cyd\ 4\81\14sÿ\8aâ(\15ÀÇO"qÕó%ým!D3«sq^N\83ôz68mþm\90z\11\9cïÒ\1fô\0E]\90l¯z\94â*ºEÒ²êS¶Õ|HdV\ 3\82wð=\11ÊUâK\ 2ýd!¨\10\ g|ó><M\84\ 5ñ\ 1OÙbí"Hå\ 2Ï>,ÇÐ\92ºÅq]Á1
+"\8cw\aº\12\ f¿Xv\ 1\16ÁÙ\88\82+¨\ 3%¶&Ã\96#,\ 1Á³\9cþ?I\e\17¥Ãÿð\9fÐÃî{¶¾_\7f¾\7f.þùm×¶PºL\92ÅtYXÏfÍÙÿÞæ\96\93ÝÏl±ý\17û\17J?fËåH87\9b,§³\7f8{)üÊIl\1c\10\84\81 @\941l\95\8b\11{Ç3¹·hq^r<$F¹7¢\9bTÈ\1d^UY5\7fíþ\8f¯\12¿\83:íþáôÙî§
+\8fvwiãG_»¼ÿ\85wiêFR1§{\1d¹Ù:³ËûnkO\9a°\0v¼D_\9bÅ\ 4ð÷Sfö\90
+mÞã¡RºWÍõ
+íÇThK,yÖæ\ 3\98ªt\ 1E\98['*\ e\8aÀöÊî\89ß1ö@ÈÕFÑñ\1c\8cå2\17 Ùý\9eT
+µVì¾ÆÅ\1d\1aß\1dzpc\ f¤é©Ý\7fÛ)Ù½¿\8e5ò.F\94²Ø\9ar`sjÔ\83ÿ\8ar\80²ÉUê\81¾r \v¬#b\97räÒæ4\8c]*WÖõ{Z|pOÊ»¼ à\8b ¯B%P`.fý\8a¸ï@\89\eyÞAV\81.Øyññ\8b®¿ùÚÁ\83\a\12\7f\ 5Ùn\87¯õ\94\f{(\843ê\ 5¼\8b{eA\89äS\ 4çáÕ" Äîajë÷!^QÈt~/ák\8bäõ\ 2~\93ª?ÓRÄ\12Èï\88;° \15öÀnMVe^E,\82X·9m3RZÞÞ6\13\85\1e.²æÛ\16o;Y\86(\9e\80\8d!z*\91F4R,¤\³f®<MØE%¢C\8aÛh\93Rê\82\94ç{è\10Ø«;b\14*\81\82½Æ÷¼\ e èfãVH`ûq\87 ǵ²\a>=\93Â\165\1ePÉh\99\82¹\1a\8fP\96\8cðyÊ`\10ÂÔÎ\1f\ 2¼\9a\80RçàkGÔ\14çÏ\84øi@*T\ 2×M-)ª\ 4SZñ``§\870\16>byû+êÑó\1föx=LñG«\85m;AÅz\99\b̲\1d\10d\91L¹áÓ\88\14?MeUf"ì&Û/f¯7ám»àõ$¯¹vàâ¶ðzëä5\0Ðl®\86\e\8e¨\14}(ÚÛg\85-\1c)\ fæ) b\84%f´9\bâßÛ/Àì£\r c÷·\ay\10\8aO\1d»ç®ç\16äæ.VG"\15,+ÏMÓîùüNÚ\ 3\8bÆ\v\92¥Q´/\*¢¦8?\9d\9f°D\97\17u\92\86ç\95£\98\8f+á¥Ño@Ìô`Ür¦\87\94\9cáÂ!C$-}\82´¬_ý(¥¥\10ÙsQ®\94½\8f§\1dIËlÐ\8f\8dS¬\91\86>;Û \1f\89üôÇ|8N\ar,_Ñ«2\a\9dø®ª\99}ô %¨K¢hååX_X\ 2\1a¹\8a\ 3\8a RQϰ#lÎ+#þ\ 1'\ 5¼«\84\1cÔÔ\18Z²2\82}\r\11>|O\16[î\88\14Ô\14"¤Åw\ 6Qì.(h$\97)^%Â6\16/<\15\12[6´^}\8a2\1e)oUNJ\ 5a.ï¾¼5È\90\ 2þ\9a;Tù<´ü ,\ 5ý\1a\1a\7f\16oº\a\94qÃI¤º\17xܺ7\12\88ú~àÑ[\f2¥ô\8f\18Þ\\8aw5©"¤\81[E\84Ô\1díÒª\b)ë°;3\979\11\84N\885\13R\0 \v\9d"\89CºB\ 6\83°ì\81ÓqD+ô\99lå±r\80\18-\89ù\lkÿ\8amÝuèó~á\933+0Ë©âÿBÐK\19ù³\10öR\8a0>ò\97 \f\82\9f8¬.Eþ4a/Ù;u¼£\ f{é,EþÌÂ\9fäJ"Â@I\ 2ìd\12HÐS\92\0z£®ê\9fGVG\85?µÁOÉ]j\16ù3s\8e\ 5$"\bH\85ô><%\16H\90Øâ<o!\ 6|B\ 4ø&VßZ\b~
+9\85ºap¾\92ø\8c8:_\ 3Ég0XäÆ=\10ø\167k}àsqöAà\e¨Î\19\ 6ÎØ\17\97\94ÍyÊ0Z±ÐQ¡èýU \16±÷\1c\9eF®A\9f\ 6\80@1«\94@NÄÀ¡a\8câw2\0úù\9b\8c(«bHÿ*Kè\ eÃ")\91EOb\0\9b\8bb)ã\93îî°9½ÏkúWñf1óë\11Þ,|\91>\9d[>\ 4>\1f\r]gò\18((îóx¬Æ\ 4e\0\86<f
+b\90"Îå1×\87û<\1e#\16\1e\ 3\1e³\f¢æó\1fd\10%\0<\b5\8f\r¸à9³\81]Kz\0\80Ǭ\82(Ö.\ e/W}\0BÞ*Rø,Ë>ý>\f\82ú¤D}À\99%\ag\ 3\14Ì\83+Þ¬\ f(ky\15;o6\90VkNJ¼¿\98\r£\14(\1c·6öúÀÖH9«ì¤µQºy \ eôa\9d\f\91\8a\1d¹Äl\83¸\ 2Äxà<o\ f\18¿û|RN¡Y/Lú°"\8d\99JÓ\aaík{1¹ä\ 2gqÄ$\90\bʤTHË\ 3;\91\12\ 4\9bÕ]â\86}Ø\97\96\93\9bò\8dòké>¥üÚh¥\85Ìâ0ÉçSÈ·\93á¾F\ 2ö \93»ñ\r;¹Ý¨XËö+¸^\85÷0\84S¢ã\89\8f\13T~ÔyìÆ¥\15\16
++¤(æé¥\15\16
++`,ªÒ
+É{ªõôK5 Zw¿TíPUV;¨Ìè\90\1aË*û.=Òä\ 4#\7fë\9d2V
+òU\8a\95Þ)c¥ ô¤X)2Á¤\ 29\ 6b\88O©GÒ\ 41þ\1d)XÝRN°\f\ 2\16\1a¢lC°Ó\81ãc\82iâ¿]ò\11\b`bÄw\8d\90PbqSæýÉ\r\ 1,0\10\ 6K+\9c\92¥áÚ)\842\ 3\fbΦ\820\94ç&um!E_Ì`\10Ó´÷.U\92\8c~ÊS*Ä\8fNúWÞ<´\ f±QKÈ¡\89ð¶~9+ö{\91÷ôãîò3ß\9bÖQÖy\93\94ù\97êï\ 6)1@; %¿%£ò[æn8\89Y\9e\ 2BUE#\8bÄÐSHdü'\80=î#ûô\89\14]QO8¤\80B\ fO´ô\89á\ 1ä¯\7fXøÚÃV\12.²\98à\89ïIu6=BúD*\v*¨\81\14síÑÊ\a¹ù¥è\92ü
+K¡Lö´ª\18ù\8f¶\86¥\1f\94\91ÒW\9e{DÔ>üé>¹1\8fõIü\19}¢\94oÞ¾3¨\8dÑ©©i\14^ÛÝlÎ\17ñ\14
+ùÛvDô\84þ\84\89Ù8Æâ¸§äÔèñ\1exΪkðDÇ \92cG¸\ 6Ot\fÚ\8es\r\9eè\18´9\8fr\r\9eè\18´9-»\ 6\97ÿ'i»¶9Q\98r\98_L\95!J\9bÓ -\8f³ín\85^\b\ f3³÷ÏEmô\9fÙÚFþãÿ#à?ô\97\8bþ#©È?*\1c\86/aÔZ\eÛÜøÝ\7f¤ç_mas\ eCéõ6÷9Ù~.\17£õ\7fþÅPSç¶Ö*çþÅþñï\ eáÝë\7fnè\r1\84·á\91\aÅE\87Ðá\8dø\97\86\7f\9dÿ±íà?â_\ eþÝÛ\b¡\13ðà?ð¥\ 2\1f¾ é\7fþ\91Ä¿Û\7fÏ}âß\14ýèÁÆ\90,<û±EÑÿÕl\f\15\8cF\880þe\0\7f!\19ô\11\1egm¨ ^¯á\ fl4H\90Ñð?ñ\17\810Iý\83×ðÿg1\ü\11`\8a¯âïè\9fükþ\e\89 ã\8fQ\ 4\9eo\14\90K¯\12ÿø¾fm\991\10ÚÝZ,F?³é¿÷õhú\89BÇ,åÁý\8e\12ª9@\7f3ï¶\0\11$à\7f\14ê\ 1\19\8cF1r\16µ\ 1hþ\11ý/@ñ\9dìü\bïÓáÈ¿\b\19eôÞå¡\90ÿ\ 2\11\8e`ÿe&Ç¡ÈXA\ 1ïâ/L$\82\10¼\ 1å3\194W\ 1&JÁ¬\85Áp\8eÒ4ÿ\95BÓ\12æ\82Q\82¥ù/\98®\14!\90\15}\10\7f ý\10\1a\118\8a\10ç\8cÂl \82A_\11lé\87ø\væ\ 6ü\89ç\aþ£ø\eùǨ\1d\ 3E\1f²R¿kF3ÈY\99@ò\1fà Ôe85ÅàW\11\1eÅþ\ 4ê½Ë7\ 4"lD5\7f\960ìÏ\9fþ»\14Á7ÊÓ\a#
+\86åÕù\7fíl\92$óÿÓ|\86Ù\88b>Éð?:L#\f¬\ 1\ 6\9acÎ\98Ï\96-úÏíù×yÂòW!w©\b\13¤IÔ#\86ä\820J\ e&\99bÉ`\84 "\8aF\8a¡\83L$
+$¦£\11\90zðIÑ\ 4½ 8\0\ 2s/5\92\11.\18¦"4â\ 3\86\bÒ\14\81\e#Á0K\87Q#\1d\ e\86£a\ e\1a£D\90¤#\80\84\ 6®£#$ß\14\8dp\80\84
+\a¹HTÙ4\ 1¾\82NSª÷È\b\e\8c°ø=\8eæñ*\9aÂT\90`\81\80\13\9b¢\91f`\90@o2Ê\ 5i\1aø\89\ 4º\818\ fÿ£Hx\14f\19h\82O,\15\8d¢\91\85AÈÓaÄ\8cÑ ÅÒ\1c\1a\ 3´1\ 4Cã6\92áð¸X\16\981\82\99\16\10À|P\1c#¶0|×à_0\1cF\ 4\16[²\8a\99\10Ûj6\9aà\82d4ªø%\rô i"\8aºF\ 5\19à\ 3E\vP\94fX\ e\80É\8dÒÜÔ\94\8dâ\1cÒ\ 4ô\11ìnåLïs\84ávÆ Ò0`º|`\87\fÐ\14ì\95\f\r#&a×\ 4\ 6£\ 4\96\85m\89¦8¡_â(UK)\809Ýìw0\8dQ¾§\8a\15u4ÒÌqH\ 5òP\9cb\99É´#I\82\87
+«I\9al©\11¸\84\ 30aÄ9R#ÌR\90cI\8e\9fZ\9a%\98\7f\14Ë\ 4)`(\9e\11\19\82Æ\8c\ 2\8d\ 4ÇRBc\98@ò\8d\ 2Þ%#Hò\91T4\b¤\88`ù\v\ÉE\11D\9a\ e²¨û\14A\89üÏ\90A\8e\ 1Ý@Ñ$¯\13E# \ 3å\ 1Þ#iè2\81¨\82\18Z³:Å&ø)\15 FèHTù\1eM\ 5I<\fha\10\93!V\rÓa~¹Òa&,¬0&J \81±a -Í\8aK\f7*8YÑ\88d\a°<"\1e\8bÔ\11\86 ÷øXl\82¾ÁZ\a\19K*\1aiD$aUð°\14-²`\93\e¥eVS6R\0\ e\96ë?
+\96\16P@É\ 2:\a¼¢H\vû\11 0\91àc(ÐÝ\ 1$ÅR\12\87\82ô"\baê¤1îoM\86?cÑÞ\14\rK\9c}*Êý½Êìg\ 2a"º[\96róÚÙ¢`¬ k\80%"Ø\1c\b\87\19Ñ\1eP)墮.hí¼Þ ÑìÅ\9fbm\17\ 1\14,\ 3\84C°\f\0\96Â2 \8aQ\0\10¾b\87ÿ\8cõ\1e¡Yè\88\ 4\ 1f\15÷ýO\ 3Y\13\ f\93\84Ö2\80-\12+þûïE)2bl\ fè\0ÍX\0ªc\a`¢
+ª#l\8c Ñ ßôR\83ã¿ñ6\16-ÙX´B\r\94\7f\r
+"\86\8a5H<SX\83\8c¤H\1a$I 9%þ\96ÿ\16åg\89`Df\10>\8b}\90\ 1 þaÀ¼\16)\8dá/\8d\ 2Yc\vÓ\84V\81\14I¼ÿ^\94\8cF\8cí\0\1d ûó¶ÿÞAýÿÿ\8dY<É\188u\1e\89\ba¬ÿk^VëþÇÌ£¡ÞÏ"E\1c´SLE \18\854\15\16o»h\9f\96\1aY\ 6\94c.\82wÇh\90&@_W4Áö\18a@\90Ll\8aF\16T\r\16öf\16´\89\b\85\14fÐ\9aA_\87-\84\85g`ø Õ\fì\ 4ØH\91nÉÁ\ 4ÃCø)hÕA\92\80¢\86\12ó\83,\87\19\ 5Ô \82\86\1f\83E\ 2}B\93\8d4\91h\94!\15M %C/\14ß# \ 51ð
+\a{\19\11EV\11Ò=\b\ e¨Ç!\95\837GĦ ô\ 2íÛaVù\1e\13\ eFÃø\97\91 h#ô?Ø\13\83Q\8ag_
+L\95(þ%\90\9dÁN\16
+©ä\fÍüã\88\88 ñ\83\98\ 5\9d\ 2Q\ 3¬\ 1^\17\93\9a\80j\80
+¬\8b\88ò½0\v+/\80¶F:\f¤\10¾£.0\1c¨\15ð#¡\ 5\18\9d\8b\82°e\912ÄD°ÚDòê
+\v:[\84¤Ð[a¤7²4F\ 6\9dB»:6}8&
+}Bôæ\18^}!Ã\1c\ 5=GÆM\ 4k\9cd\90E\1a*\1aaD\98!XlÁ0 ¶\ fü<\18\85W\80\93\11}9há\90=\87ô\a±\ 5ÍGXP\86Ķ\bh\82ÐW\84\12\9e\91 \97þ\8b îàµt\8a\ 6r°x&9
+FÇFy\15\1c8\91ù\17\ 15\8a`±\1aÅÂ4°Ð\1fE\13\90\97\ 6³\ 6øIÙÈ\ 1V,\85äF
+f\95\8apÀ<@·0\ 2\1c ë$²ò"\ 4\ 2\8c5?\12Æ\17¥\91àà`©\90Qô\1eM\83I\v<\ 5à\18dÇ"p\8a6¤\82býXl\8bÀ/Y
+\11\89\ e#\9d\11¸PÑ\ 4\16\0EQ\98Lr#²# \988\19\98´\14e\9cRSVo\1d\eïRGXkÈ\ 1\80\96.¦\16#)mÐÇH\94\10:+ΩJÞñ\9eF³ßEX\92à{ªµÖ\8eA\9a9\ e©L\1eY8*&\11d/\9a°\1f\eÇÀ\ 6ÅK(¡\rÉ"0ô°TAö8^B\88\ 3XÞ\v\0R\v¤&\vzq\84\8d\88<F\83¬d\91Ì\92\9a$^\ 4\ 6U4
+\[S6\ 2ë\87A\0\ 1\83\ 2[0\14Z\8ba0\rè \8c6,v°\15"®2\8a ²4\83\r̨@cPÃA¤Døe¬Y\9fR\13\92z\14/Á\15ï\81©(¬<\12¬;À\ 5ê¼ ÛA¤\80¨ c\99@\80ì ¸(o[F@±\aq\ 2\82\90Cª2É\bÛ<\vL\1eæ¥/²Z\81\9cY,ôè06UÑ\98a\19ÂkTP´\ 5)´ë\88ße¡'´DÑøañ²\11\84\9eæ\ 5±VÀ\8aM|/\81<\94¢\91#\11-YÔ%0Õ°ÁÍÁ@I\ e\9bqQ \aO\19\90\91$O|\906\11\90Åÿ8\98\ 5\86Aª\ 5 3£ÝJÄ&øi\14Ì
+¼\8dJ\8d\11Ì}¼í\fý@\93¥hâ÷.é;\ 5\v!\1c\ 6.\8b\10°=Ð\fjb\80¥\91\ f\81C\92\9d@B\1c\v-°®\ 4\8a\12a\86ãå\fE\11\88AYPµ8\18\19Ú\91Á&\ 3s\1fo¿â&\r\12\1d\ 4¯²I±\99Ë\8d0¥á0l\ax§\ 2\19\89,<aõ*D\8fØ\94U¬)©\11ñ6¬lì¯\93\1a\91|\17E\1e\98\85°Ý+\9b\14¢Qn\84\91\ 3\13aù!@\13\97èþB>ß¾\ 6ý\ 1ÈOa¯\87B¦\0\93°\80\9f§\8e4\9a}\8dÏìgQ\92`÷\ 4à±(÷õA³\9fñ«\eÞ<l_\93\fC`\ 3\9b$)\1c\r\ 4\r\e¹4y\13[mÚJ6¯hþ\8a*¹ÆJ\16\7fÏÛÐ$E\88\866F&XÚ$\ 3ê\88ÂÔ\ eÓ¬\12\bÿ\957µñgÞÔæ\9bÅþH §ü8þKÆ6\89\1e©m\ 6Ä\06«u^\8cr4aÅÜ\96Áf¬\80Õ1¸yêò¶\1aèv\11\85±F\12\8cÒR\12¾
+Î\vFv^0*£K\ 2\81\f2\f\1c\9blüÌa\9b\8dd"¤Âhâ]ú=þÆs\bþ(p\bÿYê\8a\f\ 1w\14ÃæÍ6y<ÿ\1dë\9bD+Nm¶I\14×y1
+Û\87\15û[\ 6»?\91:/\1e´Àÿ\1f\9cÖ3Íñc'6\8cæê°Aο²È\8f\9bXC\93\9cÄ~b\8e×åa\ 3\8cPx²\91.É\91LDÑ
+´\ 3q.m½\f2\85I¤X°d\94ä7w\ e\99²\13 3(§d8\8c\82t,ì\1c`\16Ã\9bð k;4(4ØòR4¡P\1d
+=àß\8a\8d`\9cR4\8d\¸\1c
+xa½\v,\950Ãw%LEå\16ø!¶\83AßT¼\ 5\96\1d\19Eá\ e\1a4²(zF¢h\1fXX,\82OÂ\10i\14e\83VAÃ\83Vä5 ñÖ\80\ 2\bD\98cùÖ(I\93¸\95áx{\17,.\82·PIäC\bãX\ 3²Â¢\14\81Ó[ÀÞ\r+ZP\1fAIÃ>nÅ{¨o\ 4\87IH#\8b0\8c\9aP¤\8cax\14XÖÂ\8fi\12)f\181hÄX!\876Ð\9f¢\ 4ËÛ\8eaظÔm\14lÎü\9e§l%y\8d¹¦jEáM\16\14j\8c\87\1f6"$V\8dId\83àx\f´¡N²üh\90m\8f¶B¤E\80\16\88è\e \vÛ)\15Aªq\84CÔ\ 1\8d\9aD\81\13©\rÑ\1cÔÔ¨º\15Ó\1c¨Kã\99\95\7f\8f\f\fä¡ H\1c\185ª64\1fa\9eD\8aV\9a\ 5\e\80\8a .\80á ®¥(6È"]\ eO,¨\9bØyÂññ(Ô!XÑa\96\12L\ 26\1aá\99\0Q\8b@ÑPe+òô\0ÅiE+°)(>\föb\84Y>¤¥l\ 3Õ\9e\8eraÌãr+ÌP\98\84O
+\88À#8\94¦@-6¡yD\8e\18à[¹\11M#¬\10\8a\89(~K#Ë\ f\ 4.¯\85Eàgª6\14\99£±É¡le\10uIÄB\11ÄL\82\81\11¡ Äi\11¤ä Ó\13î(\eæ{\ 3£bX\ eû\92¢°°x\81\fÖC0\82\ 3ch Faû\82ßc\87\e\89\1cn\14
+[\ 3Ï\914\vK\16÷\e\87æ\90É\84:\ 4\13\8f\91Sa\14ÖG\1a\16òPPh\89PH\14P(\1c$5Ñ$\92'\ 4ß\1d¹\91\ 4;\85à{#5\82\1dK\v\83\ 1Ý\90Áö?\8b\ 6H¢6PõÃ$^íÈÆ@AwÔ\19\94Z@\91X \ 6:q´°@°\8bN!\e÷¥è\1fůÃ,\83h\ 6Êf8¢ð1\90(æ\85G%N¹jÃáC-&?\8bb·\17êç~ôÚ2ÊÌQ(\ 5ÒÐ\94RqD^Z>ë\ 3ø\0¦\8ceÐö\836\ 4` ¼\8e\91;\ 2I\16`\ f\10<È®@Ò:\12!\11\97\13H\10"¥\149la3ÂÒ\1c\ 49\18m4\8e-\83e
+<̯\11\14Våþ?òÞ\1dI\8e\9c\89Ö\Aï\81ò5#-ðF¨Å\11S\9d\15´p¥\16gÿ\83ï8^\91\99\95UÅ\9fTº\85n«t"\10\b<\1cþ<Φ\8e\8dK\ 4n /\99íý`¶È\9d¶\9f\92Em·«\ e`ë±ýuÈB\89zoçn\1eÏIûya"\83
+\13iü³kûóy\ 2X:kðÎöõNÛ\99È¢Â\ 1ab{\8fM\1c2¶´½{Ð\98#v³E½\fªî¶Ö\7fÍÅæ3wù\8a5Ð9l3ß#S\1c\avðß6öÆG¯´\8d'/jjºæ©[X\ 6/X-.ôÎå×}0hÌܺ;\ 6\95\11µ\13j!0ëyöB'µ\8dRk²\9b0ym£¶|¥d
+\ 4S\84*®Óº9 eh+íû=¨K-Æ°Óæ\8d)\8eçïo×Û\85Ú¶©\8f0(ì×v]3k\87.öÆ$e\14i¼È·AÚ=
+\a³\19
+mg\16\16R\ e}ìì2.Ü \14\83ò·]¢\95[{o×\96+\10cô\1d>ì\13Ü\92H\8d\ 3\93J\e_chpä\9fv]V\82
+Dõاný\12õð2¨\87\85\8e8\85'a]4Á\f\ 1¨\9d\84öW6\ 1)Ý f\9d¢\8d\8a=J.\99ÞªqÙ.ãyl\12Åï¤]\16\Ä\1e\14Ô:kså4\f\93\94!µMÛ$?HÅ\82@ø¶£M%|\ 5^ïóÁ\ ec:jí\ 1\ 3\ f\8c{д"®\edWK¤³Rõæ\13w\ 2ñ_\1aCÊÎ\fY\92\0yº`ÏÓ\10Ùð!ÛíiwP@\bqn'\8d»\8aݵ\88ýV»mD\ 6Û\99!\9e
+ma¼W\9e+ò\91\91þý;â=\88Hó\ 4JÔÍÆãpWieæü<ê;/\9e:\9bÎÐ\1es÷ƨ/¼ïQ\11zñ\94ñ×\1a>c\89:ÛN\95%*\ao\96¨\84\ f«[¢®\96\9fa\12\1aÖ¡¡\90Þ\19\91ÆófbÊÁOK\14/ë\96(\7f\1ci³DùCÚ×è¤ÿì¡®\12õ,ØUä>\9eÕE\e©}Ç\9f²D%\SWKTcp²8=i\88mÎ\7fÊ\145û}ûL¿ÏLQ\9aÞn³HmCm6\8b\94.\86\ 2ûÙ\8d{i\19÷ÒÅæ0»À\1e¡ÎÍf¡¥3\9bÅy\86e³ð\87âxúóöë´eóul\91þ÷\1cÊêA\ 3UßÝf1¿ç\ f\99¢\12÷ãÕb1füICL\80þS¶¨ÙïãJ>iø±-ê¿·®ÿ«-ê«+ëÚû\19c\94\9a_\8dQ_ZÙ\9dáþ\9fÿï>%çÿþÕ.ôá7Ge¨M\84cÑk\13\88-TuR\9b4\106'vqpý\8dV\9aØ@¼@\9bî\8dÊMÉ\95ßV8\9f3\82d§âw*úÊAu\ 4@¸")\ 33\r\ 1\f;\rã\13\91\98íú_TIq\87x~ƽzv\993à¸l4\fIN¦\12Üs\8a¡\16µtª3\97ì\8dÑ\13rïÍ` \19\1a"/Õ½ÒV΢^Ú$\85&7( "Zpx\9bM\8cWç¹H\8aHÏ?bì¶\85Þ®I\17µÎ(o§¸þECüi\93¢¹\9cTü\81åÔ`\90¥Í\938i'B\8cdÆNsg\93½«7S^09y\91Ы\v¾Ì\9dÆkù°Õ×Z\93õÎI»\8cn_Ó\8d:vÅ\95ºöOF\85C£ÝöÙã\8eüÙ¶³ûöÿì;«\7få?\17Zè\96³ö¶\82µôHé2o÷Oÿ\96H\8aÐÞ »£Ï\1cãHÕ`+\9eþìs;VþÂ\1eÌkôòÁ3·EÑ\1cÜÛ\ e¾ôÚ·/¾¶O}ØYÉÿù\7f\8d\83üßË\ 6<ÝX\ 6¬;¶Q\8dvÛisK_©èÝ\15ë@MÅ"\ 1$?Þ\1f¦Iã4\85Ãb°ö\96Ì\86\ e²kj¨\82ØÚ\89mz«Wl<Y\ 2ØN9ò\95gb²Qæä¢1¡³é\162R6ªÔ\bQ³å\8dø\13\ 3'\96C¢\14:\17"<¢)t\17ÚÎ\99\16µ)^!£åfÙõ\1Õ¤óºÅ\15\a\8ds5â<\16õv¡îçjQÛ=[\89nÐ$¥¡S=\1c«Ac6\13FÙ\11/ß[ÎõÙ:\´\9dÑ/ê>ÌÅ*6êy\8cÈ\96õñ'öRã=h§\1eÛÂF[<jÑ\ eß-\83«¿¾ß\1ewåOmÝÆ6JSÓÏp¦Ë~\9dÓFLHñ¶æ\8bºvñÃÓï³\8dO+{\9f£m\1e²©ö3È\86\90\95\85\8d3WäQ¦xù\\93.°Ú!Ãß©|_zë£Äñúv\1aÏ+ÇxOõó1G©~¾\9dF©~þPª\97T¿{U+.ù/nòß\9dÖ6\9e7\9dÎÅ8T?½l¨~É\95]õKyO$î?MõÓߦú\19y\8cgvÁ\94è;þ\90êçY;Õ¯}´©xOZ6Q)ÅÏè~«ã·OuüDù³ 6%Á;\8eåT\12ü\91wɼÿìút^útÞ\85üÕ\ 5
+\80:\97\92`\8b'%Á§¦s/%!Å-ýÔ~Ù&Ñ\9f}\93Øßs(«\a\rT}\9b\92°¾çÏ(\7físó½\8a0§üI˶\96!~Fû[\1d?YË'-?Tÿþ\83+û?ª\7f__Û|eÎïé\7fÖüªÿ}mmßO\f\963<\9e»o7Á®M(\88\eÕãE<äh\89m)KSºÚ2\92\91\19uÉ71)\1e\8a\19õxVSÂs\89³O\8bîe36CkÓÖNcÎ\8b\16\89úsÎ\9e\9eTï-\12Ó+OÑ,ÎMñ\92íÖãf.\8aa\9f4²\12Cl2Oº4l\9d·Uñ\16Ø[r\86\96\9c9"$_(b´m\91¦ÐýHº\15 6\15Ò)ç2\9f\16|aÁ\ 1$3{|åÙÔ¥\1eV \994Qs\v@ð\884Ñ\95KÃèF<\83Om¥Ú1ÙiX\14½eYïÔh6õÛNU,!Z¨gdE¾\ f\9c1Mµ\8a\fȵ»X~ ASÚfj*²¤ÜÙ\92¿,~×\17d9}a&P\94hS)Ë}qÚ\18\1aU§\18ÓøiÙ¡Ñ<W\8dVÌ¥îñGµm\906Z_\1c\7f¦óÒÒwG´Þ#¯\9a'H i¤
+\7fmrfµÌi¨M\bÔ÷´-¤xê¶3R÷uà¸\92£Âã\94ËI:o\eZÀ?¡\9dj9)è\875H0ÔÓ=ö\9aðfgi§í\14!"9så'\97ún³àÛá\8bõò©q\1dnÑ\ 2óÐ\17bE\vø&6\9aа\1e\8e.\98\0miÀ\84\vì4R7JÕ¤mÔvr2.Su\98ÝHÒ%?|{ñ ñ}82È\82\98D>\ f×\\90îÔÔ\8e\9cí\9bëL/9³å\92xÒhÍÏÓÎD\13yO^ÓfLý\r
+{\9cD\b9\85·vÄ%Û6c\8eqêúÐ\16½ÊTB\94\82\1c¹ú>\1c\fÚ\0M²\fJ¥\8f\9e¼ ³w´\r\17üN\92Òå¥"ÝQk{·\80\b\165 èò\ 6/O\1eqRÈ®\9e\90\83\1c¼ÜUmq¢rg4ê\\93Ô£üÃ%.\1e\14\15o\98\14\83\15>a\9a¿9ø X\1eÉ\14±Û'¥þI\8fá\aÊ 8ü\9cÂw\9el\1aA,\1f\85 |âÅo_}ñ³8\ 4\8f\ 6\99¼Ä\0Y\ 5Ú!û\a´\88ÓøÜw\1c¨â\15m\ 1B\ fådz~Ý\86\93òwßÂA|h¶\83S¤¤KÑq\14¸Kn\7fYp=Ö\ 1Kÿñ°\ f\85^)\ 4§\1f\95íPmÄÆûK5O~í\87ï,ã\8cF¥\11\HÛaÞ¨\9emOÂ=Çâ\90©rF%ì/^Q\r\eÇÙ¢\1a<ÁUwQ\11\8d]u^ªè 9â= \a]×Å?\1eeZlD\ÄÊË\v= \90>\89¸ QÙ6¸u\ f\ 4\806[\ 5çöw\9càrX{B¼\1a\9bèY}í\14Û8\e5UéÏä\83´ã2Ç\99\92riÚ$\15ä\15E\9bX\9e\83{¼:\ 6\8dÅm\17v8Å¿WËDJ\8e9eÏ\ e|À\ 5\95-e¤½D±N\7fÛ\15î:5Xø\91Ø \82\8aø\9a\87\esÐÄÞØøùÚ2\8d\98DvXE\Ùhó¶æBبýf¿]¨ºx\1c;&ôü´\15Z°\v\15+\bÁsS*\88mk \9aK\17\87"7³\188à\ f)u¿\7f2\96éã\f½Ä&u\14[ðÆålÁá\ 6\ 1ÙÆ\13º9\f3Ç£Ô5h\f\88{Ò+\veµ$·±»àÛ´ºê/´MâÛ¨$ b%k´öá\1ayê!#\9e\0\83zF±qä\b}\fÞ}å'ÁÐe\aÔb\17¤áå»Þ9ö\8a:ð\ 4\91ø,çÕjI\80\87`\1c\82l\83\89+ ñª"¹%\10êRlS)\8e/ë£ÛÅÜ\84"®ð&a\8e\9bÇ\19¸ÅN\ew\147×\85ªûì¶Se\98=}4Nâe\9dC>\rUWé#÷ü\8dÁ\angåÇi\12\95Ð\93ð\83©\8a¼|\90\0\89ð2\ 4á3o}¢\0½~ëçã\10Ú)3\0:í\bé£M-\98ƨ;ãO^ÚhÞ´Ñ«\1di>oV&í´n\8câeÝ\18Õî¢\1d\96.\10\9e³:é?¥]ÛßÒ®;¹\8fguÑFjßñ§\8cQ)Õ{cTùf&§'\r\eÓÍ/\10é\9eõûö\99~\9f\99¢ì \9bÁ"»¸\e,R½Z êf߫˾Ww\83Ãê\ 2c\84:7\83\85\96N\ 6\8bv_lxfAYãyûuÚ²¥ MÒÿ\1eCÙzÐ@Õw7XÌïùC¦(2MïÌ\15cÆ\9f4tÄ\10~Ê\125û}\É'\r?6Dý÷Öõ\7f5D}ueA\ 6ý\8c\1dJͯv¨/ìGq\b¾*\1fÿЬ\9e\96\eÐ\16½à3\ 6<jQ \16hR 9·\8ae<ûÒ®Ü\%ô'Î\9cuM\17\98°¸%×´âT}VÂxí\b\0õôy§)¹Ä\92¸/Tß$G³:lT¼\0\99û\8b÷\14\vw.\98Xb\9b\87Ò¤%%\157½ \1a\98\ 1#\ 2UA\9a\97S ªcìM\v\95îû\9dXÇ\80\1cS}»÷Ý"´'\95+NðíÖªö¼t<>\12\99üéºèaXwÄ>\80\89ErNVH\ 3Ð]ÈÒ\1eWo:\ 5Z\16[K\12JvZ\9bã\8e~±S\11x±\9fØ{\14Òà\94\v]5\9csÀ\87\r\1aãn²¶Oñ¼´,Á2}åz\13Z\84'\12 dÖ\8a`ë³ß\955#
+\9d\9d\9a\8e$%\1fê\11\95Á>\14(¨é0\\12\8dS!ÏMóÄ\9d'Ì\ fg`\1amnéÒ\f(\9dÆ0ñ5æxmy\8chj\96Ué,\1e¨\80bÑ!54u£h\82\vYåAú\15ù\fÎ\83WÆ_Å0\f;< \96º C\82ÿèA*?y\9a\f ³Ê´g\92Ó»-:Y6\19%h{\9cÜ\16\9e=iÚ\17±\eõ¶\96ø\99³\12{\8e&$»\f\e:¢ \95ß\91ã+\1egm\13\97ÌÔG\1e v_\7f\92ºQ,J"\98ҹѤà$\eøNíÁ\90·\vU\ 1¸@¦±íä\8fÆ\fSNm!Ì,A\86]\161Ú\ 1a襧¡WK\82i\9f\18L\89Ø\98À\13v1\82Dôof"ú)`\a@ú`\16¦\83\ eªf¾xSB«Y\ 6Ú\1f§aÔ|Ç^Út\vÁÊ\95¦w\95\14ztCoYfËó4ÇþF\ 3yÑ2Õ/ÄÒ\1eV¨ñN\ 5r\90Ì>\rÈ ÿ\88Í\16RI[÷£\87MO\1a\13ÕDêTËyiÙx\84\9dTÅÝó\9e\9dÆ\84ws÷NM6\19·\9d\8a\91[\væ\15\84á¥,Ïi{2Á¿Å\bVHÉKf»-\17\98\8f¶©BßT\83ýí\17\w|¾|\90$õ\9etvo\ 3ûÒ{ß¾øÞµA\9f\85Ò´\9b\84\@! \856\ en\ 46+\fG\ 6\ 1L7\8a\8f\13\7f3\83\0é\97÷<aÒÄ\8eê\ 6Xd-\vx\94voq;\17äé\ 2@N\95Q>D\v\80a·f\945\ 5V\90sÀgy¢©Z7â¸=â®\1d\89l\89\88\82¼Àª¬W\97\9e¦\0V\91\82ÈÚv!wÇ[\8aÐ\ 3\13\1e´¾§}ÉñÒ\92À *L\8e\f\84\11ã®Ä\9a+eÉ)z°\18¼ªÀ(ã°\8cçl·\ 27r\8cÝ\ e\9e\83\92Z\1a\15\9b·îaÜ\fý:%!GaI\ 2Rº»Ó\ 6\r®yx3]\86§\vã\92Äñ%ÇÁFÛ¯ÓE\15üT`³Àí£\8cëÄ\9aà±ÒKú%\89\9d\bÏ\8b>²Zv"\9d\92xN»¼mbÚv¬w\12Ĥhm\10].Tm\ 1»\16\9a\90o\98»\8dëã+Ó÷!j\9dÞ6U\13wÌ@î0\9fIráv\99{J{s§\r©\89=µQ»\84uÛ©d«\9c\ 1\19\84×Xv/æT\90W\1a\8fñòù|Ç4*ï\ eÃ!Ê3+n\94èF p\8cu#åµË#<^\14\83¦kæ°¬Ñå\89;Êî-v\9a\1c\\emÜpÜ{\eµß\86·\9d\8aëJ_Þ\16;Z\86\8d\12,Ï*°ÐÇ\13ÿw\ fTj\ f\12ÅzÚÕ\9bKc»\12\82k;\fqXZeù \94QF-\f\93\ f\yÐ$\1f´Å\12\1e×ÖRN?ñyÌ[èé\emÞ\býLÝÝ\1e·\v5äÎK\0ùò\1a¤¼¼÷7× é*\1dμղ\f`¸Þ#\12ËF\e·fçN×\vö¶\13ÉúÖ½Uä\13\14\1eyí\91 Of÷7XΰÜâVòþr\ 5p\12bßÝs\8f=*e¯\1ekÚYc~÷7ÖWßù¨°½|§8Cý\\10W@6Än\16°\91K}\ 6±¸ÛÍîíTe)ÏeS\9e¯&¯ù¼\19Äd{7]@/\ev³¶î»ÝÌB\1dg'öÓìfúÛìfF\1eã\99]´\91Úwü\ 6»\997½÷b¶j\9fx\8fÛª\ 4\ 5ÙÇ\1eZþPþ|ãëå\ 1¾õuço\9fèüÛ\13ã\99ͱ\19YB{l3²\84ã¼Z6\ 6>¿Ð\92\97=rGóߺÀ\80bÎ\93c®\9f\19Y\92ß@@\83\80ØçóúeûD\7fö}b\7fÏ¡¬\1e4PõmF\96õ=ÿ»ñ¬ÏøÅÂÑ>÷\1e\ 6tÍøC˹\9cé\ 1ÕõuçO\96óIK]nç\v\13Ú\7fpu¿`Bû}ë\9bã\ 3ÚkÔ£Ï:¿ÚѾ¶¾ïÆs\ 5t¶\92OÙÊ\10,=p\87Á\vµnÄ\0\8a¢%]P&@"üNk\ 2s=%\94ìTܨd|\ 6/7·7)I 0\ 1Gñ)k\90RòCÔJùtt\10\0@ë\145ÖV\9a\10¦bÀ\85%Y²<\85\vd\17S\fÊNmB¬Ð\b\175È\15¨H\12.Ç\93Lñ\9d6Ò\f\18ü¢:\ 4è
+¶¿ïB%µ\e\ e¢\95·W\ f\12»YA\ 6\96>kÄ6\9cè«}Æz8Æ<ô\ 3`kb\93³v\9a\80ä¥\93íTÅK4i¦ÑBëP8\1fMJ\136_\88áìÑF óH\oã!ÓÝ´\bÉÏ5Ø\b\81\14À)1+2'\ 5\ 2äë\99ÓeÁ\1fwÆïÐ×Ù\9c\87X\ 1yäÈgSým\9fVûç\8e¹º\9c¦î\1dzÿI2~\1d\b¸\1aí\9dÂþµ\17¿}éÅ\86È\9aÌ\ 2¹Ý\92kG°Òêø\9f˾\1dTö-v¯\ e6áÇ6kÚAß\8dMü\92£w§íûvQ[ï
+\12T\8f\86â©\82$:\bëÕ\83ÆF!¥MK=©\f\88\12\ fýÐ\ 2k¬\14)QÛv\ eF!\18\11Û¬B\11°È\1emw\ 6\ 2\f\ 6sp\96ºq¡m\fcQÁØ!µ'x2±Ð»\95÷u¿#'\8d§1Çé<¬\96h#\1d\9d¡\89öM\10jç\9d\84}00¿\93\9f\9b¤¯#\8bYÓP\86\9bªå³@\\eµtc\86\10wбÛ\11;æQô\16£²ÓöC»¨`×\ 2ß\100ç\bq`í\93½ñ\eð)¹\fcÓ!\8fºïTÛ7¡ï\909OOîª÷\1eL\876&Xà²>ÜaT~éµOn±\97\ föù\89\9fpÊ7\15Ô`*\9b®l0\95m\97N\98Ê{a¾.±¢nbÅU/\98Ï\9bÖ\90ë\84©ÔËF©¸#í0\95Qð\1e«Ô\9cý\94\98d\7fKLêäQ/nvq|ëßñ§\94\vîä«r\91\9aôaúÃCË.x\7f>\80U¾îüí\13\9d?U.4Ç]ülL`\17?ó\ 5Ö¿ÿ4ñ3\1fSiË{\85\80\vDKunuÆ´~Vhì\88\eªa<Ê\96\89n¿¬Ö\98þìÅÆìïYmlõ rcê»\8b\9fó{þ\90r!ÿÕEø\3þÐr.gy\80¬|Ýù\93å|Òòcåâ¿·ºÿ«rñKëëÒ\ 3råSå"\1f÷È\95_\ß\8f¼ô¡ZþMµºgmÕå#Mæ\9bëÔP\14)g\b2\b³¢\11Ä\19òi±u
+-o÷+å\16,\86T ;m`E\80\88\16Ë\88H\eÏ\vÍa\ fs*×´S{\1d¶ÛN%ºÌ!>·®\9bò <b2\e2Q\9e\ 1\18x+Sà%dE\89ý\84\11¸,|woà\87íá0Ë:`6kBÔF£<]\ f÷Ü©\84#+\1e}'6¹\ 2¢¦G¡Çß©Î\0\1a\98MëøÕæå\ 4kÍò©F\933\11l*°³ÑÑFê/l£Ø\88cl·\9dÊWT×öH\13§\9a@T\95?\ 1¢\96\84\9bv\8c~\ 4ázFô=;\15'fjEZz\19yQ3ÎH\82±\19 òç\9aÇå%»¢ÐÇ\ 4²À·`v.\ 3Ð<\11\ 5\eNd\ f¹_°×\963\9c;\8dõ\8cØiy÷F%8¸\7f΢\82ÒOÜs{\8f7DEí%ùà\ 3~gs3±ë<\vÚg·\1a\90-û\93 \82P\85Yo\81&c\1f_7ûp/¯s\80'\98ÈZ\8e\ 1\1aÃéü"\ 6\¹\16Æ:\ý\e\89*«¦%_hs\17O¢ï@íÁ*\9fHX\a~\8føÙ\0||6\17zÀ\98\19%´\ 2UakMv\86/±5þ6\v\1f\ fZ¸Ð¿nüâ±&ºç \80²Ù¤\1aØúw¢e\85¥¶\91ÆpÛ7\\88|×m§ÍϯD\84\1f²\13\8dIºÌ#3l\14b0"P¶L\8a6ZvK§\8aë¸\1e\16Òô¸êë\85\ 6\87!Vûç_\17ª·\1d}Û©¤¨ø¢\8fE®§`\1d\ 1ðJ!è£\e?5GGç\ f«M\89\ 3\vlu5ió¥\fe£ö\ 1Þ.Ôõ)\1c\1fÅÁo\9f|\99\97ßân'º%Ø\ 1®¼w©Â'õWt¾\ 6ÿ¹\WÝ<ýþ\93\80¤¹LìÖq©Böõ÷¾}é½.\8e\ 3{Ô§îövö\8b-ÈwÌS ݯí1B\9cz< ê\16¢dÂá\ 6ËäCP\84\17mgü\eu1þ\8dH\12¢
+\11V"tTaÔQWp±þù\93;±\1d\1cKmX\8dJ\98u\1egg\emqÿ\8d¸qÿEÕ¾%9$Pë"\ 3\8a¨OV\84V\10fJ\15Ȱb\r\8c\ 5S%)ÄÔ\v¡$à\93[\8fǸfÛËM+_´\9d7ìÔ~yß.TJ\aHÓ/\80\86*Ô\9e,Ó\9d\ 5\8f\9fâÝ¡'èF§Ì\8f\860\9bÇm²hãÞÐJ\9d÷wÌm§\ 2"TIBÐ]&\14\84ï$Ò9î\90v\ fº\91\17\99\8dW0 OÄ\9fBôAØÕ\97\9cTú\88±ïqÕç~¶ñ\ 6<\856fi§ÿr7ü³Ñüé\r\1d#\b\9c¨G1¥\9d\87ö_0©\12ÆÛg\13¡t»KG\83´ÝE\17Ú¸\8b\161\80EìàEõè¦'Ù{×mÒ\7f1\bJ\9c(3i5!AÛ\09\93·Ú`A\95TdÖDv\0\83C'\80B6¡»\97\85,½M\8f/Ýds\99±¹Ýî§ñ¦K\ 5\1c\93+Cþg§r,R´;\8aL2\ 5\ 3\91W»]\ 3ã§nX%.\\1a)öÀ®\94ÙÙ¢í÷ÀN]÷ÀF-\1dt¥½§ÝêV\f\88|§í\1e\18?u'Õ^Òjk´¾wu¶ÍÁv?>ÎÌo@7¡\16-~æpaÓ\bε\1fûyz\9fèAï=gÆS®ÉÁß\7fñ\9dOÔ£WÏ\19\1f.\9ft\8aGì%Ø\9aÊa \96QA=f·º·\13\9dKc=7\8dõjr\9aÏ\9bAÊ\9d\13ÔR/\ev«\94wPËhõ\10g'öÓìVúÛìVF\1eã\99]´\91Úwü!»UT´ÆÕn\15À\8dÅ4õÐr(Âõx@¶|ÝùÛ':\7ff·²96ËF¤8ײlDw)\81Ñ\7fÚ¼:7í\81n¯¦±u\81ÕÂ\9d\ 3\ 1ÑÖÏ,\e)m\b\881Õ\rBÃ~Ù>Ñ\9f}\9fØßs(«\a\rÔjá\8aé¬ïù3v«ö¹ñÞ®1gü¡åXÎR\1fà-_wþd9\9f´üÐnõ\1f\ÝÿÑnõj}µ\9aï®1 \12\9f°]Ù\v®¶«×/ø\15ûUDµ-ç%Ç$R\ 1$\9ciÏ1\89Ô>0è9L\ 4\ 2~\8cä!K\90TÀ:Þ´¿ÿ\8a\14o©Q¡p\84\94"ê5Zw7\e\b
+Ál;-u\85OOOª2¹½½Åâ\15\83b\aÛÝ\16\89²6'Ö¤ñpíè\11{K\8c^1'\93\7fTr\85°Ìá\93\ 3nÏJ±Ga¯\vò\8e¬_ÅOÞ\98\vʬäj\96\aR¨!º\9eÅnp\9cÔ¶\8b
+\9aVIBÕ\ f\0=0âÚ\97à³hm\98\ 6\fYÏKKDå*èrÂý\80=\8f üK4\95\88\17£
+\93F²nGrr°`ÂF«fG\12<:æªHÉ\80ì\f÷\9c*9\ 2ÞW\97=»Ø\ 1LÞº\89$ùZáD\1eVÁÆ6ðÔ\81<'\8dW\13;m±ø³¥b 5½G1\98ú\88ËÓI\8fR\19ÑlkÓnl¥û
+\9bDV\81¨\9a(\16\ 3\8bó\99)ÙiÇi^RÖf£V\9b¼ÛN%¿å$&Zï1 \7fÐ\a\12q\ 3\1a\90·³×ÎK±\8d¦d\95,Í3ZÝY-k*e\vmo\13Ñæ³J&\99\99G\11'«-ÿl'`\12\1fݵ¥h«\12qz\9f
+Ôfý\10ôÛÃM\93\9d%\15\93Å37\rªô@Yw"õ×´Ó\80T/\94\vl\13±SO\8b ¾]¨ \98\0Ò®÷¨¤bÛQ§\ 5\8d´-tt´\a6\82*\8b0"\97:¦\ fò #`¶}âa\90\1f\e\vx`\15Ã\0\18\83*.\985Fâ9L\ 4£lH;5béèe"K÷´Gb\17d\19U\14u9ÃØiR;\95>$3y;\89ç(%!à\88¼\93<\ 1±I\12ü\85Z-\8däv¡RÜ\93D0½&\1fy¤\0\89a°µOàg¥Ê$3!ÚÈ-R6d\vÄ\8fÒÅü¨U© gí\97bX\b\83ÆÓÔ\91\10êÒÖ²ÖQôÁ\93¿^Â\85vd;\94|ÏFMÒån;ÑÕdÅz#±\bÅR\rÖ\94ß/ÍoËK\89OóCÚ^<ßËK\11\f\96 )ï? ð/vé÷\13S>ýâ·/½øÃÌ\94\8d\19Ìt\ 16º«#UaP£\80%UÆÔñ¯DpD¢>\94NðÝ\81\11D"\17|\88T®¢Ú¬Ôm\92bB\15\9bÎ×*)#HD\8b69 |q£\9e#\97c§\12EÃ\8e\888*\14m/W\ 4{\97\11õÄ>\ 1w(§\86\11µ\e³£\8bÈ6ÒTå¨Z&\ 6\ 6&躻;bÐt=\ 5\8bwÛ[¢¯Äaæn\82\ 5s~P`\ãi³\7f\18;\89Q9\ 5ºÜ(\9a\86\12\1fÁwªE«\1f-\90«m~Òkä%\ 33%+XF\97[ÇÄH=\96)\82-âzå·üx+\ f\9aNx°ð\9c½%\19röÙ\8dÛV[\b\ 4
+\85ÑÃáT.\9c\85¨¤UF#údgT\96@¹\84\80M9a·¢Æ!5 \944téJU\91\ 5«ö ã\f\1a«\ 3è\98ê\9co-\19\9c Md\1a
+ o£íâÕ¢f/;\936`\92\ f\82\88F\ 5íè%º\85\84ñ¡ì\e]\99¹ço² \91Ä"qÐÃ\99-!Üß\13+½$\ 2;Uª¡ê\8ev1Ï´H¸¢\ 2>\17mÞol\8b\8dÚïÂÛN%KT=b·´;'w|\8d\bòR¨\8a\14\13¦\8fª¤h£\19Ð\16\aT\87%"¯öt§y\90\9f\1cù\91\9a²ózv\f\]÷Þ\10\92&U,Bu\82¾\vº'êH\1d£B\ fÇ5úbì\80|W\1d\1f$áÒÖ\92\1d\17ÆÍEÌU\86o´qÇI\84\r÷÷ám§"]ø,\16CB\´\v\96\e \7f¸v»\92ß°\91\15/Øæ\88µØ|Å\84_F;\92x\851WJ\86¹»h\ 6E\82ÒaÞå]\ 4-Þ..\98N\8c\17Ú¸áÄ\vâýex»PUr^r2iwºÅ×\8c?®ÍoÊlIO²L"×ú{\99-K3\7fï9Mn[\97ðnjËg_úÄ\1cðê¹¾§?gÆK\948\96\19¯\1c\ 6PÜÔª P|g6\eö´aZë
+ü½\ 5.í\0Åê·\9bñô²nÆKGÙ\ 1\8a\93ÕQ\1d\9dô\9f2HØß2Htr\1fÏêâøÖ¿ãO\99ñòq\ fP\9cò73Ô=4ì&\81v\9c\1e0\8a_÷ýöqßO\8dx\9aánæ¡*ÄfæÉ\97Ú!ýg7\8eúe\1cÝË\90l]`ÂQç2óØêÉÌ\93\8e¼áØ&wlð#öë´\95;&rPÿ{\feë\81\81ZßÝÌ3¿ç\ f\19ñ\84\94p5ò\8c \7fh8\16Ó\9f\ f ůû~\Ì'\r?6áý÷Öö\7f5áýÊêR£ó3Ö;õ}µÞ}iu?4ÜÕÜAZ/¦;Òß½"Á\97ÞNZz\1d@ö\8a\8ei# SE2(|´Êq\16\81õ\8fæÅ\f¸8\19j\93\9e\f\82í<í*ßHíf-\ 6|q!²\97Öo\17,MF½g*רjÃ6\15ÉY>T±\8f\1c\10\ 1»1\8eZ:È \980
+Jã\7fݼ6m.DÏ\98\19o³Í\10Ê$\eÏj\aüF»ó¼u'\89±©-øQ%ÁpG 3ò0R¼\8cf$ð\13A\90Ú"õòw@Óâ\ fÛH\14ø\8c\87ÝW\8b¨}¾~ãAÇo®ÞGýå®Âi\1cæäT ëÃ&\80P ÃYaÉpXGÐJ\føn-ì\93-0M2ëß&|\vÛ\ 3±( ^sPcÅਪ\1e\94º\96¾\12\89\8e²\1ciDÆv×J\14\ 4\12æTö\11Ú¦´\9cXÑF³>\14¡Pv\88\8d¶fèBÕ\1eÙ\båÔ\ e\8dD\8du´\ f\8a.\90CÑÆ\92G\85Ep¤ªÜé\1aµ²¸\90·\95(Ò>î4;ÊfW]{d·À\ 2vЫí®\96x{-^Tå4Û±\8cB\1cPm\14$øh`\a\11¼\82ã4\0n3~6\12F,í÷&ò*\9ed§m\aåBe\166B \b í°FóVÎø;e\ 5\1d©Ú\91ê\1e¹(\9b\83²^E(\87mÔ®×"eñLö\ 5\11!\eNÂZäÇíð{\rAu/\7f\88\94v°aϧf <<\97ï>FmÌÆ>>°\ 1}üη/¼óCóÏ\89»ILÓ¥\ eúÞ\8e\1410V¬\1e¼\b\ 5\15E"DÎ\1e±T\1f¸Õ¦I¶ÍMTiÞ©Q\88!\96<\ 3\ 2Å¡DHì¥Î\ 2\1f\82é{0ÊöwPj\eZ\9c\ 3\8b"\16Ò \8dóv(\9f\8d\94tçï¿mcÞv"ib\86wFÚ\90\19*à\86ÙÙ8\ eÁ\16\ 1N\1cͤMpf°ú³µ\97Îj\1fV\8dCl
+ÿƯ6Ó\0\93e\9f»Z2©&|Ðc®bã\18*ìÕÕl1\9cEæ\85Tb3¦À}NJ®\1açMfíÞH6\ 1ÛïÎ\9fn;\91ÐU\0~Ô»\19[8] &ùl\17L\8bÀÆm\86\r ¦\8bKBÎÉeYªÀLO\ e¤rg\8dù\ 5\ 3\97±=n\86
+¢\Ý!\9fÖÑË\ eG\81k\19ã$\14KÆ\8b\8dÖ\17y#¬\8fܨ¾\18ÆV£\9dý\8bÀà\ 2?>*b¶c\8fu\80hmV¬wÅx\88ï\97\a\96\r¡[\ e\80\9a\9d×,(\9b\bpLßÕ³¥¢º-µ³õ\98ª.:\ 5\92
+\1e\8dpI`íXgF+Ñ\ 40\Ý\8dm\93¤Á9AÓ\ 2\97j§õ¥Þ s³oÔÚ\973\12\1a}T\8bO>ѹ\19\v©v¹\aY)º["Fî[\9bµË\14\93\8fUVÁr]ãÇÝð\em\10í&¿T:\8fÄ4\96ã¹ b\88\9eï<ez\v\8bñÂþð\89\17>ʺ/\9eú\92ñ\ 1í!é8\9dö\av-³\1dXT\8eÙ\ 3*h¯¦Ù´¹ä~m?{»8ñkOÃ\84¥\9d\991&^¬Ì\10[¿]\7fñß\86öâ×\8bv\vÄ·1¾w/U\97>³Â¦ú£Ì\9b¾25úï|ã\ÏÆ\ 1¿UwÆg\r\r\ 4³¨\1aÜ[\15Þëúí3][\ fk½À\99Ä \94:\88¨ê\94~Û~õ
+UßFyªoKñë\8dо¸jzÔ\86ýE¤ÇÐUQ_\15ܱ\13LuµGoúcö·
+ñ¨\99TV\eçûjd¨\9fV#QY.ÓB!Hz\7f\\9bg-\8dð]é&÷6\82w»~\\9b§-eJxÏ:ðoYª/hü¿i©àe÷
+ÿó®]¨¿¶VïW$âòå&\ 5Ã\89\98\10¡þ\9a7g\90(6¡È\ 30\1d\ e×n²EQ\ e½!t\r\1aN4\85Ë\v`ýG\0ú\ 1×W\f¹\83ñ\9b^\1cäjà\ 2À\v\1eª\13å\10\90'º=\8e©Iù\9bÒsæÜ\9c4`ñ$i ìê\8d\8b\92pÓ\bDmÑ@ã#¨\1c×/\82\16ùI\92h\95l\80y?¨0¤\ 1÷·\1e\ eò\ 6")h!«¦\82Òû\91\8f\10^и\ 1§Í&6\10ã Ì\ 1¼j\9dRlXH\0)á,\1c\94\9fkâ'MÀL¦ªO\1aA\ 1Î\12½Ì\²\b\85ê4!\18ê\87ÑæjÜ6ÚX3 »$ëÌe½_ú÷o\96\98¿RU¥ãªFÐþݬW\ f\12H±1ÍÏ»\9c\13»N^=×v\8b³\a\1f+ª|þ¥o_{é\98\9d\rú|.ÝÑ\87\ 3zäXâA\13ÚhÓ¼Ø.\83Fy\1d\95xf9s\80\15Q[\ 1\8f![/\9dª\91¬*\1e\98(D\8b£òRÛ«\8d\87á\98\166¿ª7\9a6Hp\96\15Ê8üØë\87å\97,Ê:\11\8b\86C\8dÔ\r3¡\91o\11Êý \1c\14\15Âhú\ f±î³\15ö\ 4\ 6\8f£\8c-¥L\9e\90t"\15$d\a 3Ç7%\97¶o\e\a Ú¶c\17\r¾\0tx9Tô\v\93ÚuÃN
+Ð\8e\8dÅ£7N\9aDkíüÞÏ",f5ió\18Ý6\9aj$Pò\ 4§¯B¥æ\ 2>,ýû\87ÆçÏ\17\82Ðîå\13|\9e~´\83ú\9a\87ÔüºÇ\9båݧ2W\v\89Mw\aæ\8bo|¼o^<5§åc¬ RLLÞÆe×ýp).Éø"
+\ f Ødås\8aÊC\92N\13\ 2\8fÞtÏ{\83Ç;ëÄ\9c£\82Å|D?$\93\18YR\89ý9^:\1fÕ;ûx\7f\9bü½ÄÞä\8e\8bìÝ.¹Z\8eüØè»ÈÏ$îûÎÞ>îì*i3m&¿å<E¶\14\960Åߦ¬\84©¬\84M\16\9bÏ!yÐ\9b\89q§¯]\8c;ó¹¤6'\7fÆxÖ~9[\8c#Úúê¯ñöù0\82¤¯&Êõ1ÿ6±{ P)\1cW9nÌâC«ï\95ò<Ï$í\87Þ\1e×ä¡ÕK û_¹D_\14·\7fm\89(göL¾¶»J×\9f\£w%ë\f\16=ö¦3\99-¿1º\9c\1awl÷å åØ\v\91\83Ñ\93\eKÞ(Ø\8f\92ÒS\17\8dP!b¸2ñÝT¢\ 4pJ\15
+2\10¿\14\\ 4
+Yq?ÿ¢h\83'\1c\1d\13\89"Zn\7f\15r¶°ñË*ÕÆøÍ\92ÜIã:ÑHÒ¹(A\ 1aë'AëX¥\8aÆO\1a¨ªlºF)¡\vú\83òw{=·gÊ[+\81/ó\18AB¡|\ 3\8bâô\0V\11:kXµ\ 5XcÌ\vø\ 3UL®\1cµcù\9fÁ0~Ûåf\92Ϥ´Y"\98MUèf+² \8175\vZÿÙÞÚYí # úa9Ë©×d$¶OrBÎÝ8K\8c\9f²#y\r`Ð\0\1d\14¢\91Ü7\82jÜ!p\87ÃJ²áVðp\85H¥-²xùªjkA\98\9a°µU\96\82Út\91ÌU\98r!uTfñAaòS\17A\ 6\86^¾\ 1ü¹Z\9bÄ\b\fp\0\85\8b\88]U\81lÏ\81í\81]\11ï«\ 2¢\81ÚV-zj\81\1dÀ\91-\8aKVÅáç_\e-Úªß\16\r]G\85\ 2H\96O\80àùQV\1e¤\7f\ 5S\92Ò(ü´¶ÿ\14\9c\8f\98¡j\98\84&â\1dLtµ\91\10ó\90=\a\89\92ò*\9cg\ 58Û\82,\8ajû\15M̤¡\8b\9d%}\9b\1d\8dÓ5_6\b?\1f\ fåû\8cé+:\ f
+³\15tHf_\9fÆÈ*üï}\95/\fË.ôWÏ\9d@×éÁ{\9dç+/}ûâKûì,6·\16NE\18A\89\0Îå\10Ëé$¸Kép×\a¸q%hɳ\1dvÊ)ª\12\1eÙ³¶\9f\ 6JݤÌ]×vâ¢õÝyÛh$\1c\104ª\12-Àþ\81\8c©¯©*¸'\1dh\9d"\ fhG$oÝ\e+\948#à/\8a»]Nß À¼AD®VÄLê\\9dY¸Ö`§w´\90l\9e\86ö\98JÌ\81RWð]\ 4\18Öa©+aD£dJÊ\89\87FJ¯\10\8f\98\85\87\82\8e\17\83emgPUL\99\ 2þ\7fü\\1cÌ\bpLjÒdùjLã¹òÉI±Á Ï|Ò
+UÛ¸"\ 3î!"¦\v¶\fÁ%â:¶©hGÏi¢UJ°\r\ e4\ 3¥\99XUÄË-0(í9U AG\1c´ªM)e\93\88çv\8b-\8a]8ã'zJ\8cm\17\ 1ºâ v'\9e\¨§\ 5Ö¬\8a p \1c\946\7f\82ñ\84qô\10Þ\fË*¤\1c\83\0\80ï\85\9b²ß¦Áܪ\8b²Ý¹\93æ\9dU-Ðý\ 2ó£J±ÝÞ\83\99LÊÏí\9c\f\1a»¶\1dU,W\93\ 6w6æÕzW\18ì¢l,nҬʩ\f ½§~ä\1e\8eåoPG©r\rcñÃYØÕ<¦Î\rq¥\7fÈ£ôõâ©&\87©*\8f¿¯Iø\957>
+h/\9e\9aÇöcuÔÅxt}Ô9\7ft\85\94\ 2&K#½j\87Smì\1aä¹\14È©bæ \9e¨N\91\88õ"$b\17Ï Xè\92²%úcü0ÍTdÓLõç|÷|Vã\1acÿ\ 3º©\83º\89Ù±\1dïv\8cë\93VßE\7f\9döîÞ>ÑÝU?ÕüIûiÂV\9dê\8f;âÒ@ô£«ôq©ôñ¢Æ\8c\87;zæÑ\95 Í¡iA\8d'¸M\rbdëyý²EçO[tþ\9a\83\98O3<z\95"4Æÿ\a\94U\aæ\86\7f¶F\8f;\9fî|DE\7fÞßã"=6{©°þû×ì\97µ×¯ÙQ\1f\91Î\9f4¼(°\9f^´w5X'k'Òý¨EÞ\16ÒË\9b\1fë¤QK÷Ç1®A\95\8b#LÁb\89\14s \1aÚßm2©\ 6O\81_\80·\8f*Ñ\9d, \94\ 6pÐ\88QZ\94âÌ@®\a;\8dÌÕv¡Ó?\8e\18J 4á?f\eC"ʳ\13ÚSú\v¨ôÙ\ 6X@tlòY\ 4\9fäð<É(\8e\ 1SåÁ\7fò\85½b³ÃH_TÒÈaé>R\9bI\88\aU\99 Æ^VZy¥<îTj\a\938ÚÌ\ 1n\93f±¤E`ld7¡D®V*\99¬¿(øG{¢qT[Iµ\7f\92b;\1c\ 2²rzpkIcv\82âA»Wa?ÒËw\12%í\14\8a·\88|l²ÊØ;±´ ç,\ 4Á9\96¬\89\93ÜépL)r\94\88/2åô\r(ÂAEª\9b\b\1e\99ÎÚ\91L\ 4§\r\10\97#\15[Ų&\89\19N=\83z\125Ãm2\83\15\1a\1f\ fS]\87@\1c¯ZÆÇ\85\ 4¼v´IYDAÖ\17|\bÞÐ\10TO\ eÑI+ؤ:\95 3ß\b#)½<\192v0ô%G\89cÃûÞ\88\0~©\ eú$:ö¨P«ÁÚ×6ÚHM¼o:KÒþ\9dÄ\13\\ 3Á¬\8fÞðJÉ\9d³Þ:I¬\19&\8aâ¶v¬\19q\98±nϪ66N>\ 4\9e¶3ÒF\92s(K\86ß\88J^C\90\ 43\1c\1f\15â¹0È\1d¹ç*\ 2\88Ãæ°Â\ 2\8eôÂ\98\ 1íA¿Gëc Ô/Tíò\8aéÈK\82FJv*Dô\ 3y¯\91\0\1e`¼¤\80ö
+@NÚRT\11Y«î\98\1c+ìî-E~Q\88K5 §\8dF&æiÃè4rÊrÿ\84lèbð\1f\97%Ú\13*E8\9có\1dë\8dQà³F'!¥þl{Õv?6ªÅÞî\99àïr\93v4«è¯áKNÕ·ñ¥\8cå½Ü\11&d½xìÌä\87ªz÷\83\93ôÓ¯|ûÚ+ûÌlÒ\9a\10(T\f\91P½3\10Èê\14
+ÍÕE-(\81b8\82\ 5\14^H̬
+N:ÐçS \1c[ES-bÊ$\9e;N/'¢ÔØ\ fB¶j\17l±\90³n@7vx5kÜFÚOÂ$\12Þ\f\ 4\86Ãg*ø´Yþ|;~\83ôsc\ f\93\b{hÜPêñz\98:©ýØ\1f¶\7f7ÒÎ\1e&\11\96\ 6cZ½q\9c\8cÙ,¦4HÌÊ\ 10\e1\11\83¨[\89\9azÙÂ\ e\ 4Ç.îZ\8dõøÒC\1c\1cÎÚÎ5\9dÁel¤\9d»N"\10r\87îÍ8\8a½F7xõäé\83ÄTMî?\88\f¥ö(Óõ°
+½Aiw@\13\f\92Ý`ɳU\ 2\89»\ 2©sª°Y£!\87\1d8Æ\9dEÒw-P }\eiÜsâ_þîF¼íDÒA\12,Ç÷\94YJ\14\86S×p»\\84¬Ae\f\85Ué\1aîé\13®í<Ï\92ÉWLÈ)\9aøõâ\1f\84¿íæ«Ú¨«\95î\93&é8ÊH\90åïT-\12\184U¶\85¯þ´KN\80Á\10\85\89|ë7\9fg5+·±Â\ e\9cÂY\b¬1¨\8f\93\ 5#\158K|ÉW\81©\13´\ f\19\12N\85Þ\ 6IDr\17×:\1e\9dEÙ¥³AË=PÂ\11)\9e\1dïç#%\18ÂCI° ¸¡ptù
+0\1elíô£pñkçÚ\84EêÊ}'I³ïºåq¶#)¾\90\8dí\b°Wt\90\fN ¡\f\9c\90\1alá\8aW% §½\9c£]wv{ )ÔsQæ\1dÃþ\99´~\17Ý6\1aÛÒ¸\19Vwö'\ e\17fû\91\r¾\e\9fû¥x\ 11r27\16CV¬\ fE:õG\9f\97Gõâý\87\9ajx\14Ki\7f\88\16øìû\1eµ\8f÷\1f\9a\9cò\13Æ\993ùa\9cÉÁ\ fãL*u3Î\\r$ÃrÒ\8d(粡L+K\99\b\81êT\1a\1f/:\14[sLT>Om\8eñ\98~ôPFÉ`\16ÌÈ\9fãÝëY\8dk\8cýO\18gR\88\17ãLcÉM&?\9e´ú.ú\aÆ\19ëîí\13ÝÝ\19g\98?Sô\13ØaCÑOiÓ±ùÑZiYµÒEQ\1f\ fK\89ÏÁ\ fE\9f9ì\8aþy\86¥èûÃ_Â<}í\8b®?â)\7fÍA̧\19\1e½\9a¢ßÇÿ'\8c3\89KìÙ\1a=6kkä\1e«J<ïïq\91\1e\9b½6Îüë×ì×\8d3_Z³t>V\8axÒðj\9cùì¢}\94¤ÛnÖî\9c=ñÏ\b/È\91E£0ÃAs\94®\9dÞRA¾l¤@ùV¡ýlDàн`µ\9bÜ3â\ fv¢ª@ó]\83èð§«LµL\18¤7n$\9cùYÐ[\8b\88̦4\1dG*¸\0ë\91ì\14\9fÐH\18W\1cÆ\84\ e\8cÃ\9a##\89\18\ es\0Þ\184ñÏ^êµäSh\18}\94\93AL-w²#qYhBh9\8aÞu*´\ eòÈ$)^¸\89?±+â½\1dyBu\84áR\ 1~#I Qbì"â\95òN\ 3A0\933k\92N×au:É\9d¾ç´y \9cÒN!VÙãGÛH\ 25á\\8c~Ö\12Ì·MÒ>ª}ý\16q,ÿ\85¸¶ i̤\18½t¿ãFFðÚ=ýÃþÙI
+Ï\bz\8d0ÏU\1dxMÓÝ£¿Ç/\ fn¹J²SÚ\1d\13UÿGnev\95ò\bÇ*_N»]\97/\1ft\87üréIþè\97ÞûöÅ÷\8ei\7f\96Aºm7\7f\8c%@\13Ö¦4Òm#ÍÍ{!¢¯\ 2\èT\b¾ô\0Øû#3H\1c\19N£2ýV;&\81\93
+¸\96B\9bÚ\99¬V°<\b¿>K°ÎèýQ\85\95\ fS\83Å\Î^¥\9d°çC1Ã\8d\98\15¶Oòdd¢\1dîoc$äy»´\93.\fg\12+uSP\12³\8c\¤\f\944Ø×ds\83ÄÙ\91\82åÜ"Þvâ~v&±q_\87Ó\Ó\92º\9arwv&\89ÙK(~=\86¹·\ek±u6I;¿\9eÄ}x\93 lD\92»\15\16±>øt®ïd\14¼"\85q\92\16ß\19$ô5³\91;ú\8ezØu\ 3e\9fØ\87\1fíЧ};\8eyB±öÅÖv\12×\1e½\7fô}\8eðyÅÉÙ¹Ä\9c¼\9f.tûrô-2Öàñò\7fõØwPúÂÍ\9dòô\95w>Ê\a¯\1e\9b\87íSù\8d>æØu(ïbì:\94§\9eîÔ¡îõ\98¸D³8E³\8b2tNx&uz(\11(\ex\93OnB"ù\94W\9e¤~\98\ e%²éPús¾{>«q\8d±ÿ\ 1\1dª}P¾èP\\a\ 12\8f;Û?¼Ö¢z\87o\9féðªFi
+%\927Ùoit¹n\89tyê\9fyé\9fy\17©çÃ\12·éÔDrM£\89ä>\1di\13ÉSÜÒñì\97;\7fÚºó×\1cÄ|\9aáÑ«Dò1þ? FùCe.\9f-Óc;\96É?Â\9c?ïñÉ:=¶{©Iýû\97í\975©¯.\eÈÀ¯u)µ¼êR\9f^·÷³ å}Å ¼<Ý\9eÊ;íj\8e\93æÑDì\9e$ÂWñh\88\19 \ 6ÊÈ\98N\85ÿy¼{Iøxqh®²\80ÊÌ\98zU°\8d\94\8båUéÑA\1c}x¥kEI9Åì\91\1eïfÉ5/\12ÙY\92\vÒÞ\8cÂE(I^ñsÄë
+ê\1cÐs.xEÿµõǰ/\10RË\8cTAeO½\1da6Ëý,ë<ð\9cÊÈ\1a^kÍ\9bDºÍ»í\83§prÙ\9b\81\8fTº×ú¤\ eß"\ 1½¨\92âm \e±\98Mø¶\13½7UÎ\ 3LZ0Óã0ȤëyÐ|\1cèQ\93¤\845
+\ 5!GÎvè!\8a»\ 4ý²ml>«©8ª1$M³/\84PP ª\96u÷°\94¸Øîbò\88 '\ 5_Õ\13\ 1 ªa\93Ô\17BE\95¶v@\84²Ey\85|<\1e\8chAßjÝ\9c%\85Bl\12WT&Ý¡\98W\ fj\82ìòÈ\ 2\ 1\f
+\8f\7f('.\91vø3ötoòn\8dR´\\96\10¦G-:\96@ÔjyvL¸Ê9á,\16ƪö\93"'§\ 3ÐËÅÃ>ÝÜÑ\1eè]Íûæ\8eö\bø\ 6É8\1f\16V¹S\8d°&×á\8fÞHÄÍ·ïd¦\161\81ôKÒ\88Ô\ 5×S\11Éx]/\1d\14>\fÓ{-nÒø.\820Øä\82æ\ föuÄô»^ßÈ\931(_\84ðé\99c\1c>*\849\bìaúÅ ¹µ"\94\94ÍD&ü\88^`4\98\14äÓ:\ 5å\89ð\17ð+Þ¯¬\8cà(«\ 6*XÄ\8dYwÊÑQëáó;\11\17\8dR¨\a\11çµu\ e\16UÓ\83\ew\92\ eM$< N\ 2\9fO\ 2}Ö`3¹Í\8eÂ\8b¸\8d<`âà\1eMvöÀô~·g\e{\8bÛ*Æy\90rõ-O|Û\86eä\ 5Lûâɦ\r\82\vôÚ¿ý\89\17¿}õÅ\8fNnÏV\16<»\81[·?þ!½ý´"p&úG\98\ fAã
+°&Ìè²å\ 6áï¾W\81äZèW)0\ 2Ý/\1e¶\91;Z\ ei.É\12-<;\8d\8aß\8aâèÇa\1d\9b\8dF ø*\7fqè\87K@÷\9cÀ\1cUfq£l\au\11ÏÃJ\hï\1f\98ì¦\1fgc\ fË]¾1\92å.÷
+ò¸øÚ=ÜÝ«L\1eeC½\ 5\16¹®*â\8dM²±yÔÿ\14\19Aé±eôçzÉ
+
+ÂY\16\90ÙÒ\982 ¬8a\9ej\ e*}\8b\7fÎ¥bãóÔJÓR\93Âr\969>¼É\¡
+å÷øi)p/lÛ;æ?H¬"ðË`\9boí¨\11\96å\16ô=O\9bÛ%£ÖÓ\7f\82¹ÿm7®3bµ¨\15ñ4¢Qø\86û{n\90Ä¢Á\19níR\8fMã&Q,ÿF\1a·+,}\11û=|Û\88N÷\ 6B\85Ê\90Èl0<×Ûå¿<Ü\9e¸\1f\vè\99í\0\94\90´\82 \13\ eÉ4@\81\91J\86éÁê(\8afqwXiNo\vÛ\98\96\16\16yHÈ\92\1eÓo·Q¸{yh\92\18 á\88äIlí\8ecHW\94hC
+X¤M
+[Dòë0\18y@¡\b°\a\1cMLÓc\ f\11\18<fÀb÷-\90\81ì\16\82\8c¤\9akQ\8b\8cûÃGºøîæÓöÄ"¨\1cæÖ\8e`\ 1å»Ë4\86\80ÂA(\88\16\0ü+\ 3°\1fÎ#+Ç!YµG\8fÕÛØ%Pt\98Ú\16i^.Ü8;Q×Ðm'¶Ï TòÖ+\84\rI\96¾mÜGæ÷[]ÛngÄ\8c\ 5\99ÇÖäѹ=5\80WÏ¡^\ 4÷ÚÁý\89·>Ñ;^=÷\ 5/w;J\ 3\82J;¡[h(J¾,4wV\92¼T¾<U¾ÝÔ2\9fn\1a\1f\9dJáãE\87 \ fü\ 4¦
+ÄM\8eÇôCêª\91¥®Ú\9fãÝëY\8dk\8cýOXhRª\17\vM!$<Å'¾Û?|` ±þÞ>Ñß\9d}\86 4E?»\ræ(Õ]ǮӶU\97m«î\8aú|XJ<\9dvE\9fI4E¿±ù\rã¨Ý©[\1a·ýr¶:©£!è¯1\88õ4ãWSôûøÿ\84}\ 6|\7fÿl\91\1e\9b±Há9:Õc\87\8f«ôØìµuæ_¿h¿n\9dùÚ¢e÷\1c§ê®åÕ8óÙUûÈÑí«\10¬\ f\808Fa\1c_ðW\12y5hx¤\7f\ 4P\8e\88èµTÔÒ\98~S\8c z+\ 6CÜîÌ\ 2[T¤8u 9ôùìE\vT\95\95\8cîEB"\8b\96\97º\13OÃó½íDRܨ}£W(\93/¨\9e\13ö\80B}\19¢ÑC.\96\83ÍPH\ 4?\9c9ÏLt¤\1a¯Â9'\l»B\80l]\84ö r_IþßZ!N\91
+\1a »B÷8\ 5\99\14²¡]\15å°7-0ØÈ ak×"
+Fãæé<¨ ëºCn\91p\ 3ZvþFD ÄÎ`¯Ð\8eÇf\8fÄå\81â4@¡Ab¼M\98µ¢×«\1d8Ý$\93\ 6×ñ\92=\ eç\00(¡ÁR\1c\0ËÊ\88\84§\11e\95º\19ñ\88äâúh[\ 3"5¶õi\94NÖ\9e¨\ 1ç\12\99«\1d\89Ù\ 3>\9dU_zA6{°§\võê¶vG\ f}e \95FàIq.\8a6ðÕкYB0O\ 3\8a
+ÁåÄ\17z\92ßUÊF\1f+\83\13«z g\bíàT¾½\aÙVX<$ßÊTÑÞz*
+\0\9b\85RO=ÎTÅÑN\92\96?\9aqkk\87W\13§'ê¥J\ryP½%L·¹þA\14±-bí\ 2eÛ\87
+4ö@\98\v¸Ü\ f,Ù\8d\84¾`\18Û;±ç6Þ6¢\ 5Q"R\81\15%ß'éß:ó\80\9a:$x0\87\15\98©=\11\fRÀQ\8d \\84ö]Á"Áç¡~8ú#â@ÿ"k\91Jµ\90½\r\14\17Uf¤¼\r¢fYHÅXý\9a\8e§\ 5"ZÄ\941\vWe!+ð´Á|å½]\19í\¯oµ\91f-\99\9d\16m«Þ6¢\9b\81!\8cDà^³\Z[ݣǸ\ e\12\13\13C\8f4YíÈ\95àèÑ\9b^±H\8cd\98s7b¶ï¿íD\90ádÅ\94+\1f\14â5O\8fóù{lBEh·O*£y\8a¾\e`þ`bûmÔå¹\97\ f:\aÚÿ»8Þ\9f}íÛ\17_;\ 1À\9f\84a´\8b\80ê \1d\f°ÂÓÙ\97\ 4u B£p´«\80ù&\87Þ\vÈä¼?ë\93$\ 6S\17(\8aµ+ ËÙ\8dãº!¹\0ËQÅ¥\8aqF6¦R}ÀC8°Bqã\13\7f\93ª\18gê¾}*8\ 4Ì\89$åg\ 1C\8bÕ)h\1c@\14á4xUa\87\ f\r¸á\8d\95.\ 4bm^¹ö·vÜ!Uh\ 1GwgT\ 2\81\91!0¶êt²yAOÄ(m\16Ø`L½$\83\ 2\87¨\90'\11ûT`ý\18×_´úZXÜîo¢A\82ÿ\81ª\ f\86Ël\ 6â¾]k¸ld\14_¤ýú\9bD°\94\98âÖÙiqû\98¿T\18BýÛµ\86ý\84ÄF}\19!úÅ"b¢\18I¥>gRMìpwÏ/øò¶\ eÈ\16;Q+-®.ðòâd\rk\93¨\8fÂ'p\14Û7®\98\19\18\8fÉ!ÑâÈCPq\16ص\91\86@öYÄ.úÜ6")\ 2ºÊô\ 6å;æ\ eMßv|c+Êͨfhg\1cÄ÷å¤Ì7\8bÓ7þ\8biiÂÒ/>¿á×·\ 5l#Ï%níN¼):úì%3\86\ eÒ¼\96¸«\16±_`·\9d\b¢EÖAS-_¸\1e6+'\9c¿\87\ 3< ØÛé©BþPâ\ 6ê¿\ 4Ñj\90â2Ý\91ãFºâ\ fÙ\890µÞ1×AÒ-î¬\ eÆÖN.*X5\8e$T¥\8d4Xz?*Wæ\7fÛ\88\ÅÆ\16À\aò\fn\96HÛ®\9cUKÍS\14EΧÕ\ eæa\17\98z\vu#Í\8b®3\99Ë\8dxÛiÎ\8a©6J\13X)l\88\17,\9cÚ>÷\93ù;\8cHÂ\13\7f,KÖ¶oìÛwl¥GÍçÅS¨@ñ\ 5\82ù§Þø¨\19½xjÁ\9e\7f&Â' ,\9bý(`\f6ûQ 0ø´\1fÝÛpÊRJËTJwCÐ|úø¦NQIõ"Ù\8f\9a\8a1íGH{ó1~\98ýHd³\1féÏùîù¬Æ5Æþ\aìGí\83.ø\8a\1dE çÇf?¬\ 6\93þñµ\11©wúö\89Nï¬H\9aF\19$\82<vÝ \11\8es·\ 5\9cÓþv.ûÛ\8e}½\1e6Õ+\ f8?Me7H$¿\ 1ú©\82áz^¿líùÓÖ\9e¿æ æÓ\fO1\vZý>þ?`Ej_x\ 5õ[³úÐn.Uü\b~qôúd\1eÛ½´%ýû\97î\97mI¿²tM|ýÀ ¤^¯\ 6¥O¯Ý»Ñ>\818\96B\91R¤\98X\03\v$èeÅh\19)\0\8f&ù\b\ 4m\85`n¤ÐTÙCBÁF\8c\1d,,xá5yÃ\9c\ 2h" Y\9d\86L\82\81&¡§5áû°ôeðª\14NÔV\91h\97\ 20\99j\7fs\91\ 3æ-\13\11a\f;\91\92ïÔÊ\9aÄ \97\14ñ\b*\19GêëF\1a¡Þ\8cy\12I4NNØ\8e8\94\8e \1có31¥ó\93Ä\ e\95ãZ\9eôNlC\89¾Z\9d\9aõplz¿ÉÝ\0f\0'±\91\ 4º,Íf#"\1c\90KÓHÁ
+Z7\99Ìð¸\9aP~Z\80JÀ½ÚÔj\86\82ÙG¡<\ 4I·mó'Û\12 \83H"Â\9d¦\86\96 ÂÖÚÞo\80ߢå"½ªP\96`ïÉú\9cjcû¦j\9f9gèrPú\95óþ\93\ 2\8dÈò\ 6·gïôܯ½øíK/\16Ô«MÒv\85Í]Àêª×\7fö]:\88ìR\¢
+A\1aÄ \80\ fí>P0üy!í»t\12©$MÔ\98zÓ\11#bͶü|é ±3H\13b}'\91\91\90Ó®c\19\ 1\eU*\8a\88\86<#ݧ\18m@aDt[\18..ì~È\ fs\83o¤\9d\19L" (äP\84 rHNÍÝö\9b$\1eÅDÅ®_í°âYN9\9e\ 1©\8e$\9e\83\17ç°àù`\97\ 6Veá\7f&*\9e\vu±\11KWûÑÿ\89\83h\87è\18Gí´H\87\8d´\1fÉI¤ä\10àè\ 1+ f͵\88\8f;àw@Ï\95\1eixÔ}7ò\16\12ô\19æô<¹iÞ{.©\18´sÊ\b\ fîNzÿÒ[\9f\D¯\9e\9b³ó±û·)Ù\ 3\81®ñÂ\81@\17¨\fºÄ÷;\11º.9 N9`\97ÃçÓÇ7uªªD¼He\89\8e4\11è"\10\ 4³\90\11?¬¶òq\8e¼OûsÖ&\9aÏ
+\87}\8cýO\88ïJ\1fßJM\11éà\9aâøØl\b\16¥|\84C×;}ûD§÷â;Óh2`;ÖK\ 6Ì\e\14¶~\98\f\98\8f©þä\1dO{=,ù\8eN{Ý\e¦²\17¾9â\ 6j\16\89ÄX¥oôËjßð§\15¿á¯Yýf>\r`\1a½\9a\fØÇÿ'ÄwYS\9e.ÕC»¹Té#8ºÑë\93µzl÷Z|ÿ×/ݯ\8bï¿°t9~\84J§^/âûç×î#\87p¨ä8\ 4«¹ÓVT¾:\8eë \ 5*I:\8b\19¥>\8cH\88\8fíúSH\95"¨Û}\a
+¹Â\ 2]\0H
+\ fhìø+\0¶cvßH@·\85ª""\e±×þ¹mD¢\17k\11
+p\13d"9\93è
+\81Ë(\0\9e,\14o/Ù&I¶ÆS\18L\0¾\80;kO\86\ 1tNíUBH' \ 4è\1eÅ·\13½ªùÞv\1aQ¤\87³ \89§j\ 3Ô\1f\15ÿ²&qþjs¡z\89\96¡2\9a\9cM;\11LÏìgQúÛÚ\b6\9a\e¡û\8bÈð]\95\14H}àJ4;¾1 \17gÀ¥\924\15m<\92àÎPzÜe:»¿\95\92Å*\90H\99Å ú58cd:#\83¡\17ìl/\ 6®'aQ Ë'¨Ëò\9a\10þ\v\90Ý"±v\898EÞº\88 ¿÷\8f\98Ä\fÆ\f1á'u9A9cÇD\13\8c|5?\b;«°x}6\95\13¨\1d\88Û:T\81<\13²0¶é¾\8f\87csnp/4|i¨T.>O|)\9d\16ð%blõÃ\9f<)|ÔiZæN\9a{tÐ\ 6\88z0\90ÿ¬¤Õ^ä\aÐeE\\12CxÖ$ÙPe;\85Ù\84óFèþx\80ä§ÇSIÞ\87\ 6>~ð\fè\8e\ 1ä¢Ù\80jI¤\96\94î°Z\941Ê6ò\9dÆÇÜ\16i}1%0\9bìU׬ìÓÆ|\8a\10´y\9cô\14\8cß\8a«\9cD1\ fUÞ¢Æk¦ÊæF\82U\10Sûó¯\8d(4&S,\16\91Ì
+¯\ fä\9fCRܶB¹mTã\97&å°³¾Zài@\8cܺ\99¤ñ:Æ0\89c`·\9d¸>\80l\7fÂ\93·ÏÜgâ÷xv \90\bÉJÀVÂ!\96\ 2yæb\agò\92ËíÒå´÷\9fôQx\8fÙ\9e½÷í~éÅo_zq{r\1cÈgÞÝv¬)ì¥00g¥ËÛ®"0ÆbµP¥¢ü|ñ\18ì\ fÏ
+¢Ã$íÜ{#Nî½h¹ôÂVõ\ 4@\9f02\f\1a\8b}\8f_\eµ\83\e®&TCµk`v´H\8b\7fo´Å¿'Q»T¡; ¾g89\9f©2äAp\ e\95\90'i¿ÆJ©õ¡Ú\17ÄÿG/¬\ 1|\90v3ú®ÎNÒ~î7b¿ko;1¦®\1e\17l\ 5
+\86¦r×ä¥ó\97\18p°\1c\8cÕä\94)NØ\90iÜ\ 5\934ؾ\16å¼» n\eQ\15Ó\b\f×\1dÔC½ÙlÒù(\14ð\9aèuÈ\19\89ïoÃ`\914þ\13\9cû(\10L\0L¢\90\17îwÖH¥×Æk÷Ê\85½ÿ³H Á)71\b\ eÅÂ_òÆ\11û\ fXO ý½³\81ª\vº½\93NÙ.\92\9d4.\92I£\ 4¥\80\bq×Ê\1e#Kç¼\rú\ fÞî\9d¥~¬\ 6d¥
+a/\9dV»&¨j\0\96½\-\90@{»§p¹\81òºæ£ÆnÐØghî§»Y»éR ZË\85µþ³\11Ùï1ÙýBVN\92wzgåã\97îÄ\11?>\9bȹ\b\9dÙÑ$í¼|\117^¾\88±\83?´Wô !R.^>~éB©V\81ek2¿qu4Iûö0\17¿\ 3l!\18\83\96)dã²H°µ\1fåq(\9fh\1dï=vÊ\92\93Á½`Äw~Ø/¼ó\89Jòâ±ÉO?WKzÔ¯ûç¯&÷\ f¼ºHDÄ4åÜ\9bSÎ¥\13\9eS'Üm2ói$öÓðê¢\95¦¦Fn\9exuQ¥½Æcü0S\8eÈfÊÑ\9fóÝóY\8dk\8cý\ f\98r"á\0»\92\89¹ÓûóxlÖ\95LýãkSNïôí\13\9dÞ\99r4\8d²\aD\5Ã\1e\10Ý\ 6\r¯\1f6\7fÎMS\98Ûñå×Ã\86\1au\ e\b4Må¨a\9c6\b´\b\0éz^¿líùÓÖ\9e¿V!㴠Т!uhDç\9f\82k_x\85@[³úÐn.Uù\b¼nôúd\1eÛ½4åüû\97î\97M9¿²t.}\84a§^¯¦\9cO¯ÝG¦\9c\88NÒ$¢\15Ù\1f\ 1¿ojö\8aì\8fØ\v\ 4<\85.-´\82H®¥«\87E\14ãÚþû¯H}\ 2]aN)¦M¨\8aÄüÖ(Ñ1X\10ÓFJ½ä²\1e\1dD"\vÉl\15ZÂÙÑ\12äÄ\89Â1\132Ú ñdõ?B\13\a÷vøN"Hìg²Ò\ 2Äyvç\10\ 1}V\1d7
+F_ ýíÖWdÜ\8d¯\aò\b¨¥ª$VÑ\bO\17J3èz\94M\8aV£8\9aæ- ½ÈM¯\92Á\93Ô\86'\14ZC¶\9aí\0eW\ 5o\ 2»\0\ e\8eà_\9fBÂnÒ\94â§y´Ä\91\7fY-x5\12Ó(Xeà\85 N\8a\80ig'äàóG¨Â¦Vw\969w&\vó\8cø§TtË Ñ\11\9bj\90\9a\80\83e\90x©\ 3\ 2\9e\18éÙ\8e\19ÎYð«öò\88\84ìÐC¸´\8f`ë\10z\16#\89ÜR¡£¢»\15ÇXz2ñ"á\18V4)ë°\88Áâäo;\118\ 60ñõ
+á\\930-÷»F\82\r³b\9fñ¶\95\9a\1e&÷\9fr)©>¨õ\13®ý\8c8n\1fO
+\81.þ\99Õ\11IÉÐ:¯v\82I`±èMa\86MzÏÝ5Y£\99PÚ£QC²\0\11Ë3iJH±hÇàªÁ).\12~N\8f3±}þFô\16ìzÛ\89®\eô\8a\94T¹Â[¹³\18å:\86ÄÞ#å\81¡\90\93pvÅ«ê\eCíÞÄy¤ï\8eý0~EÕ¥6»\85$Zø\ 1\18Î\88á\93\181\ 1Xe1\82\82ñ\7fF\95+ÃÒD¸«?ÊØL¦T\0¤\0\84|Tþ\85°ÔY\13Üe\8b\82Ñ+J,Þ\89Á¢÷o\e\91D\1f!Uê\r\19\90:¥Xèô3Û§#ë¡Rî1Ù¶fÀ
+v$\9c\99¨è¨Ð\rß\v\9b)BU\9b¢(!{\90x\14 u!¹¬vµ\17õ\ 4"[öÎE\12º@µ\8d½\11³tµÛNóXW\b¦!í§(Ø{MðÝ2üáT\80¶ÝÎ÷R\ 1¸kº0øþ\93$Y{\8ao~-\17àÉ{ß¾ôÞ\ f\92\ 1¶c>Â9ÙÐ\ 4B\135>\89Q\80\11\84\ 1\85\93:|\88\17\ 4\ f\ 4
+¾Á\87\15>\ fs!A\86º4ª;"!\1fCCgT\87ÙZ7Ò`hp¹Eô#\90~\11\95É\1dTÀ,\8d\\17\ 2(2áf~Ü\1d^eÔ\85\19¯[ÎRÖd9@Ì\16r¿\8aÀ\80\17xeò\93¤\9b¥}wP\15¤Ùîì\19_\ 2À\8fâs\a!\r*-ï-\9d\vf%|íh\9ew©Å\91\98z
+Ó\80äïP\ 1Û\1e÷\86eDv\88þøÛ.%ËÙÇ&ͽ\1f \977/Q\9bÍûKt\90tz\83¥TmíH4\12nRc\9aÎf\9dk\9f\10gniÙ¿\98u°\v°fÊdfG\10ÚQuQ\976sµ\13c\17hj\97\1e$ö¨æ/0L÷"È ±\12à\159\9fövñ\1còÌa\85W6Ò.÷LbdL\ 4ÿ\12\8b\8eQ\9d\986½Jý\17
+Ñ\82< ,\a]sÙ8>\ 1*M\8fÎÆ\f{y¼zeó[P\7f\ 4ÆÆ
+&ÍV1Ï\1c²öoD½/Ò¼\94XüEì××m#\92E§Þ0ÔÙ}Q-\9e.\82ä"á$\b8Dõ\0´\95\ 4ÖÃ\993&@y\1d%\91¬\93ùx\82G6ÀÆ®Ù\16pfÝV]\80\99D\9dwG²¦ ?\94ó\81\8c«b\13`D¤âíp7yÐ\8eEé%\e"f\8d~å´]\11\18Ù$Í«I¢d¸»Än;\11\86#p\16^\11±ÿá+\10G³\9d,G\8cÀ¶\ 4\9b\1a\83âö±\ f¦\8e÷\19yÂÌ\9eM¸Þ\12\83 \11\ 6ùö\8c[«xÄ~ãÀ=Rº\90úŤ\93\1dïn°ÛFôª\10,Q\95l%nÜ5¿\ fëð\a3 ¢À]\9eg\12,µè½ÇÎS*Wu_I%xòÊ'\9aØ\8bǾ\96K\90¨cÙ-Xå\18h¡\8d#mh¡wV¤a^ê\96¦s\19\9a¦)*M´Pu\8a"¬\17¡\a§£L´Ð¤\1a\7f\vö¢'ç\eÙêÚëÏñîõ¬¬Ccì\7fÂ\82Õ\ 4½\8b\ 5\8b´òz<i5Tkþñ\ 3\ 3\96õùöq\9f÷ö«rtàÉ\b\80ú4\82ä\r=_?ºýÏ/ûß\ eÁ¿\1e\96\81\83NÍ\b¢\894#H:ò\ 6<\99ܱA#Ø/g+tt\14\12ý5\ 6±\9e¦²*½\9a\11¤\8fÿOد²¿\ 2OÎI}h6\16ªÔ\8f CG§\8f+õØìµõê_¿p¿n½úúÂ!\9e~`¼¢Ó«ñê³+÷¡íªRÙ\87h\82ÍzE\ e¯D\93©ê\92_[;Ô³°\ 3Û{\ 1f@Ö\13¢º\9c8\11Ðë(ïY¡\96#QRTG\12¢\90·Ð¡EI$Å*[s£i\97Ì\9fgíõËéXI¡\94/¬ÔÐ\8aäd\1e\94\80B¹TÒ;\ 3 \12\96\12RÀø\ 6\90\81(%³2-\83\ 4A\17²dí\86\v\82]$\18®và\ 2h\88ôf·ÐI=\81\13 \ 2æ\8d×\8cG\11\901 \91}\8cC:µå°ÚJ\0H\12ΰ(\14\80KÊtßiÚêã'ÎY<ðê¸\17ÚìJ\90\ 6 ÉWµIOûl¼íVÏËYàH\ 47A\88Ws \1f\16zÚ+æ¿Lä\bö\0\ 2 ã\9cÄXC6\0\12äC\19\91"Á3JÿD<KAaCÔiûq*³\ 3\b\11\14\86XÁçÊJÝ<ºÆ¾HkF.DvÂúÝ^\89\a0\12F$\0\ 2*3)n½\r"÷ò\(`N~Z\r\96\84\18\8c¡\8aÈo_Ô\16Ç\93¯2Í\88s#ìæF\12³Ôâj\a¤\8a\82\ 1\85\88PàNäH«lè9ëÙGÒ«Uæ\e¥\10\fÏF9Mæ¥,«B\106Òv\ 26¢>|ý.8\95a3'\0\ e\ 6°èL\v\8c ÙË\88Ãô\1f^ fm°Î
+Ô±L&]\92»\9d\95н\16óaÑ\7f¯}¤îu³$Õ°#ϧÖ\91<\ 4\8dw\1f#\f\93\80Ä\97¦\91\8f_ùö\85W~`\159ñ\8bÀÿ\ 4\98\19\ 4\9e\19\89\9cPua!«*\1d\89\10\83ÓBZÂ\ 3ûYêXÛħ¥Ú¯v\ 20P\8e\ 2Yò'*%!\90ªL,p½júJ\ 1!\92\ 4!Ô\9bvøx\944,qÐd9Z\8b\92t'¯\9f}\ fÞ6\1a\91z²hгÒ58\12»d\0\1c:
+ÐI\ fâýg;\7fªC\b«\15´\7f¥\10¡\0\12§\82<7Ü®H3;úÄÕ\8e9´ÂI\1e,$ñaôy½4\98\9d\82£ÆL`\14\90AXÙ5wö\99\rûdQì\9b·\9fÆpn\eM¸&*.M(\9aSM]´v%7>¬õÔ\9f\17\a\19f\15xçÀ Y¶\96J¨Ò`*\ 2Fi\9c¬M.Ê\8eÐUL\9f'\8eQö\1fð\1auÏD\81ó\88\ 5\12 #\15\7f\91úbn¿ç\97-b%¢W\19\87ìE}ÇÑKð*\1eÒÐ\8a\8aM\9a¶"yZE\9c¡tÎßa\ 1& ÆÆ?\16pF\ 4Âvìl§\88\¥¾µÞ¤\8eGð
+ä\ 6ÐÑN¦8ê\ 3Y"\94\gH
+'\10Mâ\81À<\ 1q³\91ú\92®ßk\1f/"á\ f\88\b\91ðÖCÐ"\ 4Bh\9b9\92\93²\ 5ß\b°D2@îÛ\96\9aÇ\94ÿ\8dU\16±rYË\875ÿ\8dºz»v/Uj#Alåxªª\ f!ð\9d\87Lº<\1fÁe¾ôºG\99óý\87¾¦¤G\8b,\86s\9eý/,>½¾¡)Ö§
+ÝV\14LJxþl\9df\ 5ø4y>Åa>^Jý9`\1cé|hý\eУþK\e¢@V$\93\1eõÕ4óõÒù¨F3ÇûþMYÒ\97\14sMëÒ\91¿Û?Ì\ 5nLþ[u\8aûxh\8ag\97¸ûï%×ç\1aúóÎß>Ó¹·ï\«È´\ 6ä©YYõº\94W\1a¹Í¤?úDÊê¡,î²já\1d\96\9dâ\f\8bÎ&TØ,« ßÑÕÀù°~híùËV_Êàx÷R\b\83%¬'%\16ö1¿¯äåãKJÞe\92°^«ûÇÅzÖÔ\bmòs%ýyß\8fkõ´©¦ì]eý_¹t_ÔÏ\7fÇÒ¥ø\M\7fì;§ã\17\97îý
+\1f CqÛb\99S\14´ð@-\88pÒ\b\e\90£=\93Ó@yðE\ 1äÙ[\99\8aA«J0QÑeåO#¯V9ªs\87Ñ6\11¤\12Xb\ 5ÿÚÎ"L\16ÊᬨÄ\8f\82\83eRþ¦Ä\929ý&\8d²\19\12E\84\17Æ\e\17¥]´gðÙ*\17v\9a\ 2HÉEQ=\8f¶\85p\ 1\ 2\ 3¥ÒÐ\82\8c@¿*\ 6\ 2Ýd²\83°ò\13\14mÜ\8e7Ѥ\ 2ASt3\18\97Ù\ 4\f$\r\85Pb\8fï\94Ó\86\85 \91\12ÖßAù¹¦~Ò\841cJø¤á\1c\97Ì\ 1\9a$Ðô\93@q±\9cTÿqÒæjÜ6ÚX3ü \15\fе®\ f«ÿþ\rTÃWJ\1d\bºñ»ÜdÙÍ*ÇÙ$3}ÎøÀËaù®\1dýò9 Äõàc\99\83Ï¿ôík/\9dÓ³a\1eÏÕs}< Ù\8dU\1e4a\1d6õ\8b\1d3h¾\1c½
+©ëÕÂI¶§Ú\8av_:³v\aù;\98#D\8b\ 6bEÕ?ÄZP¸FÉ\80£§"T¹\9c\ 55åÇv÷f\19X\94u(\16\rÕ\ 3s\8f¬C¤·cϸ;\84\83" {Ë\83Z° ´ÁË\f"\8f4É|MÕ\10ä¨\85séÜ\100&¸E/H\8aIÛ6í¢Á\1a\82@ØTZ'£æ\·ì \80>×\98=UF&\r=ÄV®÷³\b\8b_MÚ<I·EÃ\f£:\89*`\8f\83w-àÃÒ¿85åó\bïÚ¾\18Ú|\9e\9e*\15 8l¥æ×=Þ/ï>\95¹`H/»;1_|ããóâ©9-\1fçös\87wI\9dK¼\8bêS\8evÃc5\ 5ç!O\9bdm\17ÿUô¾\97ÁMjç\19\93Ú«Q\84\/¸¼ÎD\16ýiB\8bý9\ 60\1f\9f-~¯ä¾\84åä\8e;©\9d«¯\1cù±\99q°×Þ´ÑÝÛÇÝÝÉè\9aE\93ô\86xÅOý·\13ºÆ\13¦Æ\136\89m¶\94db\8b-\81ϦP\ 2_oÜ\ 5¾.\18öçí\97·µé=ÜìÏÙõ|~\8cÁ\84¾1þß&°/I+Q\ 4><[£\87fm\8dÊGàÇ5zhöZ6ÿ÷/Ù/;Ò¾´dØ&^»Ðhw\95Ë?»dïÊä\19\88ìÚdÐ|\14³ú7îHÆ=A\9d\93ÆE¦²¼\99jj\14\12^\14
+ð$eú-Z>,^*\13ôL\85\94Là/\9179\a+\91FÍa\85\84þü\v¼xO=£BüÔ©\98\99rö\1aä\85\84±6Êo\96\1d\8dÈàøÒtn\14Y\9f×O ;1\80ñ¬`¿\11\17Nï\1a\8584©\b\83òw{=\97nÊ[«hIj\95ìDà\80@'PÐ:VÅ\ eC[\94Þ\9cÚ\ 2 ,c\9a,G5Q¼\ e,Ðv'v\81iPÚ,©\b÷Y·V$\8b}Ã_©\80¡þ\13H3óÈt\82 ƹhR¯§V³7ñ"çní%QNéy¼\ 6¤Û&2É\9cÙ\86\89\rM^\9fSµ\fÛö'LÓS±\a§\8câäøªjkq
+E½\1d\16Aã;ÅWòy\8dm\97\92\fÿtR\98üÔ%\97A«X\9eñª\9d$\0×vFÁ@U\8cp[%«âÖ\9e+í\e°`\ 2L¯Hbð\83U\9e¹\92\91 >ÿ¢`ß5lÜ\8d\96mÕo\8b\ 6 ©\0Í\917\13@d%bvnÛ\1c\rEC\81ïyXé.\80c\1d\9e\896\17\1d8\15Ça¢«\8d\84t\88È:Hu$îg¡¦± \93\12³\95\1dh\1f8ihqgIßVGãx·\rÊÏ'\aó}þô\15u u\etm`0ü%\92¶
+âx_è\vÛú.Fóò¹\1c¢=x¯.}å¥o_{é\9c\9eÅìÖt\16K:ýç/ >\ e±\9dN\82Ã\14ÃT.\98\ e½\10»*@ù:ð¨\ eÔÁ"£Óö\14xï\84tNÊÜym7.Zß¡·\8d\96\9cÅ\8d«V\ 40l$ÿêsjìA}V¼ÛN\12,\16W?Þo±ÓJù"Â'å<½\9eÀA\81\8duèÃÕ\8a\92w\9có0\80_p¢G\ 2\1c\93
+¥\16E&\97S3ªÚ\14\94Ñ\10dG-Ý®\95)3%>\9a@Ò"Ð1\vB\ 3õ0õÄa
+¼w=\fïYÿ¹q1#È\1fÕ\8e&Åßñ\85ÃQïxå Øà*\88Ä\93V(\ 1\ 5\ 6\vN{OPrq½¶Z%.Ò¦\ 2TiMtc!Â\0'c^Y\19Ô«¸» \ 6¥=GƳxÐ U××\98ETÂϢإ3\7f6®\1acÛEUu^cÛW5\18Þd\81=\93\9c!.\84\8fÓæO`\8a0\8fR\94ê\9f)nIz\b!E\8a\ 4å¶´\e\15'\r>ÙEÙîÝI\vÁÐØuÇÀ\0\9b:ÛoðÉN\ 6åçvN\ 6\8d]K¥ùºµ\83CÛIc;áH]\94\8dÍMZ:-íeõÔ\8fÜñü\r\9al»ÛÄYüpCv\r\91©sCdé\1fò(\84½xª\89cÕ?0³/¾ñQN{ñÔ<¶\1fk².Æc¨²\8e ̮˺#çM»¼*\93S\87ì
+ç\90\90¯JiÞ\80îÔµ©´z£é´.\9e\eè\9cK!oÏó«+µüÙ\95Zý9Ç1\9f·AÎoù\ 3j\eÔ\85Sx`OuõI;»k^+¶³Ã·Otx§ÚÚtJQjrX]\8a\91;bÜ\15 ¸\f\ 3q\19\ 6âEÛ\19Ï\9b*d{@WQ\9fO D\8da¸]cJÊÅ\1d}è\97í\aþìû\81?×Xf\a\1a§6\81t¦ù-\7f@Ïm\9fê¯ZÓ\9cãÇvß+\ 2ìkMwvø¸h\8fí^ëºÿ±5üeÅ÷\8bkÈ\85þZõUÃ\8bîûù5|Wùu²®\16 ÙyÔ\9cw^a\a±."\95:\7f\1cãöLè\9eDSX\10\13Ws/½é@'s)\ 5]ÓGUa\1crvàóMÞ0\90ÛI!?5¨\ 2Ť\15R.(ýâ\94ÿ,)\8ej[ÙÆ\90\88\ 3é\84ö\14ñ¨\11\f\9fÙ\ 6¸9Ôs\94Ó\ 3Ôk\87»Kfø¦\10Y\ eôO>±\97y-¸\ 5Hc»Aô\ 6\12\rñ 4\rÄØ«Ð¢>Z¶\109? #<\8a\90ªËj\1eKZ\ 4Ævö\8cÈÕJ5Wù\va\84ø\15G\98\8c
+½Ð»\82\8dÚ\93$\84*%'\93#\83®æÈg\93a\0-*S{\91HcJ*Q¶\13½¥(ß.D
+Ér$\82ð\ 1ùT\84mÄU\877¬\80\rT\14¡\14í\eСÛå\85@)øqG5{]^EÅ_\ 1a£ð³bo&\89\19N=Ey\125Ãm2\81uÚ\1efL\ 4½\16¶Q=.$¥ªÙ¤,b-\ 6¼ãT0¾íÉ"\acRÁ[oÙµU!@ñÔHJ\8f8D4WA;FB¹82\92v"Ùï\ 1ä¥It
+!"-\ 2ÊÅ6ÚH\ 4\f\1f\92\82\17Quèª\90²Go\ 2åÂ\81´Þ:I¬\19Ö\rð\8e&\915+\16Ûµ\9eU\81]<\8bÈI\8erö\8b$wT\96è¿\11Ið¥Î¶\ 3â\1a¯\18R½aJ\93ßTrT²#D\eHà\10\95* ^Ê"\ 3\89Mv§k¬K\8dÃð°ÌU¨\10 U\11_å\94ÉÏx1%( \8f\91\90\98ÇYlâ®Uc\ 6\88\988½\12{\1aú¢\80o\9fN\eǤy+\99|[´¬\14|û\84l(Xð\1f\15ªvdÃ+</\87^ì\9aQà(G\95Éh*>÷Ý\8fykão\ f|ðwùfG5x\7f\r¶r*É«ðÔó¾\b};\ 3ßÅØ_<æ\ e
+>\7fP\81þÃw¾}é\9dsn6\91N¨\ e\84/ \91×3PûÎ)\18\99\eL%$IÙwÀä«P\18\ 1\8d*¬çÈ®k7¤\97\95²z\15¯v*ü¨\13\8cZXc?\fÙâ_\85[Iô\8d\v\92¦Ùå\98Q1æm¤ý4\fâ©:á\0K\90~«0X\gýlÍ#8H?7\161\89°\bj\15 Y¯\87Éöµ£OA¯tî¤\v\8b\98DØ\1aÌiõ¦z\93\87U\11\18\8ci\90\98\15l<Ò¡\ 6Q7\13uÆ\9a\10Äü p[\1c¶\1aû\ 1¿Ë\8a+á"î\9c\93\94SÀ;\16iç°\93H\15Cw§¬Fí/B\88;¿\9e|}\90\98ªy\ 3\f"C©ÕÂ7ÖÃ,¹($ûRïTwSòl\15\ 2\ 2|еN(@ =¤\80x¡\1chÂxí\ e#À\ 2\\90\8d4î:ñ0\7fw+Þ6bc\1c*jé¨\9biW,Ótê*n\17L\94\1d§\12\7fm\17 H÷\9a\13\19\14X2y¨\89\16E\89¿^þ\83ð·Ý~\95\8dºµ¢¸\14XZ¹ôRmN\19æ\0{\95C\15íìº\12ü\19Ë\8a\918J<µÛ\8fré\10O\vvp\8a£!¢GB\13vpG.ºòu1Å_\85&#h\1f6\96\ f\9eËh£\8cpä1n\ e¹\9b&e\97Ð\ 6ôð\fG̶jVæ^³È\11\85«\1c\ e,9.;\93µ(MG\80\13µá¸üµsu3áò¾gÀ\83¤ÙwÝh9Û)s\97\94Ü\8c\ 4§°¤ @}\ 2\12"Õý\82-\ñª\15\90µ\97s´+Ïn\10¤\85z.ʼgØ?\93Öï£ÛFkrqçf\18íÙ\9føk\b\a\7fd\83ï\a\13\7f%J¡W\84ßs\e\ eÉÞÑÖbÌË£\96ñþCMÛ\10\1aÐ\8b
+ô\1f¾ïQ yÿ¡É)?a×9\93\9fv\9d\1cü´ë¤Rw»ÎÕ\9e2\f-Ýæ2tÀ«]¦l¨wêºÛuxc¯q\7f\1c\e\ 2\9d?ÚúÎçõkÄWJ,³\bKþ\1cãXÏÛ ç·ü »N
+ñήӸt\13Õ\8f'íìbÿÀ®3:|ûD\87÷v\9dܽÝmÑ\12\85\95¦M ¥]\ fç×°\8d¥e\eK\17}~<oʾí\ 1³ Ø|\9aMà<Ãf\13ð\87¯«\ fûåm|íûA\7f®±Ì\ e4Nm\ 2³ \8coù\13v\9d¶\9dîl\ 2c\8e\1fÛ}?\9bpð\91]gtø¸h\8fí>°ëü·Öð×í:_[ã~T\9d@\r¯v\9dO¯áGiÁí:î\ eaDw%£¶åÅ\95¤\90ÈIt\94 \9d>Ú\8eê2I\11$×*Ùd\11\11ÓÁ\90hë\88Ø`fÿ\9d\88¼DaÉItxñ\95W&ëÇéóFBZS\0`»º\17Ñ÷Ä\1c'\7fÐq\9a@¨¨\88F*\ 6%F¾\9bP÷YxJ.\19Ñ\9bËñÆ ÙöÒÌ%ÖBÃpT\15UHD'èu\84\1f\b\1f\bíHÑÆNµ©Iv\9a$Å7g+4¿µ\e\85µ\156¬zÙ\93\84cS\99«Lß â\aSe*g~Ï#n¤SÙÙ\88uFr§ª¢É\9fy\98øº(\87\8aE´aM\12³\8b&¾úYK0ß6Iû¨öõ[ıü\17âÚ&dR\93Eµm¦\87M7r\94×þé\9föÏNR\ e\9f
+b9\81y7)\7f\9f¨»G\7fO0\0Àܤß\0\86&ûVÿGø ËË\84Îu¾\1cùï:¢/\1flrgê\8fÞëè_zïÛ\17ß;çýYÊë¶ã\9aVÔ× ÷4ÔNºm¤¹\7fw¢4]\90\ 5\9d*j\97\1e°{\7fj\ 6\89S\13ð?\87¸·c\168¬à\8d+¦ª\1dËj\95ÈI\89>\88\æP\v\86*&\8dN
+´øËi\88\95\10%à\8b\98\95i@´R<T,£m¤ÎK@¦J\17ÒÎs\ 61\v;\13õ2ËD\ 6\9b\ 4ÍË8Øät\83Äñ\91jæÜ"Þvâ~|&1\ 4CÂÖ´¤®àÜ\9f\9eAbö\12¥£{Ìuo7Öbël\92v\96=\89ûð&\1fØ\88̹b1Ö\aÃÏlK¡\1ab Y¤\8dõL\12)§²°Í¾ú\8ezØu\ 3Q\9e\80\8b\1fíÔ§};\8ey" AÀëûä=zÿè\v\96ði\95ËÙÁ$»f?^\8e}sô-2ÖàQ\ 4xõX\13èÚ>W!\96;µë+ï|\94\12^=6\ fÛ§29}Ìqh_¾\9d¸¡}yª¥.íë^ë\89KR\8bKR»jOç\86ؤ®MûÒ\e»ö\95Ü\86\9eäSÞRCõ«k_üÙµ/ý9Ç1\9f·AÎoù\ 3ÚWûº|§}E\vM\7fÖÐ8ökõköøö\99\1eïô/\9bPÉî\1e\â-?0×=C0/\1d6/\1d6ïr÷|Þ\84rÛ\ 5\92Ýû\8c\1e\96Mr¤]vOqË5´_¶#ø³ï\bþ\c\99\1dh\9cÚ\ 6\92Ýç·ü\ 1ýË\83Xr\95Ýç$?6lËæ>\82\12\9f=>Y¶Ç\86¯5°ÿØ*þ²\ 6öÕULçG¨âjxUÁ>¿\8aï'{ÊÛ\8bñzó{\9f)ÆUâ"zï{½\93v½Yà\9c\aÂ\1aÄA\994Ó©8E\8f?1\81²\87ÃËà°do\95Q³)>\ 6ZºH@Î`çÔ£\9dX¸\97éÃ+%-J\f:Íúéñ§\16¢I&\89\f´ hç½Y\8c¦[\117êC\80\ 4D9\ 5F\10
+\14¦Øö\80P[å)\16\8cN9\95TG%\13 \99åðVÁSð;\95u6üä\9a9\89\81\9b?Ý\83\12\1c]Ù\9b &²ûÉU\9aw\91
+ØÇÅ2e7â9ª
+mDb%Ñ\0=°µ\ 2§Ä=¡²$\1e\90\1e\a\88ä$))\ fäddÏÙ\8e$T\ 5\88\129ßö6\9fÕN\89êïHAí\v!\80T"ÀeK>,í\ f׺ÃÇÞæ\ 1ÜUOÌ\81\8afMR_\b\15\1aÚÚ\ 1&Ê.\15æ\8b\92\ f©-×TAÞ
+\ 2®å¾BlR\1a_Q¤
++»1u/@\ 2\91\14LP¼Q\ 2\ 5-m\91r\16ä6¥u°À£\9d5\81_©º<ja¼DÌVË%ôìg\8a\1c\9dRcßO
+ñ\9cþF/\87\12ûts\80{ P5ï\9b\ 3Ü\83¥{âÈZ\ f\v\81\\81ø\ 4mà\ 1_$\ 5ù{\81FmÄ\8cÇͳ´·ìzº%\89½ë¥\83Â\87aè¯ÅM\1aßUÁC\ eQÑÎ\80A\896\12\10|±t\ 3OV¤<\1fÂÌa\8e½ÐCÝ"°\87C1\97çÖ\8a\98W6\13º\8f¼\96^°CX"p¹GR-õQÎ0b)$\94\95ø\1cI\98PÐ\f\88:í\ 2Ø(¨;E
+Ê\95\88CH\99â\83Hf\89uîñaá·Jäh\83Î\9d\ 3¦7ê\8c&AÛk°\99\14îì\8a9©<àá^°\0\83\9f=ò½ßíKÇPã¶\8ai\1eT]}Í\13oz;Ùß\8d\97¿|Ò)\84ã\ 3\87ú'^üöÕ\17?ñª·ÍY\f\91½Hû\16,\95\17lQÆ¿=ê\89µÉ\ f=\18\9cئˮ\e\84¿ûv\ 5rlµ\ 2d[);M3lÃðp\8e\1c\8d#ÕQ}\93\13\91©ðí-t¤\9f\88ur6\1aÅÄ«\1cÔ©\9f/²\vt\bK¶\1a\83\8b²\9dÕIĤPÈ»Ñö?0öMÇÑÆ!\96\7f~ã%Ë?ï½
+nìÎ}\ f\1c§F\1c!\0r1{@ÈLÃÄý\9bd\9dó\0f¥H\16Ví\ 1môçzé\892²\96\1aIå0ÈÖj\9cS\85\1e(Ñ â8\ 4]*6>ßK`\95Ô+\9d\8fñá¾.X9U[\14Çp&8>ù\aþ?H¬"UcA9ßÚ¥\1eæB\ 2\99¥£\vØ\19k@QHC²\rÐø¹L\ 4\1a\1e¡2bk\84Àð\r÷WÝ \89aECbÜÚ¥\1e\10Çe¢¼\83\8d4.X¸ú"ö«ø¶\11³®\8eʶ\0ç kÃt\95o÷ÿr©{\8ao(\8ahµ\ 3;C\ 2\v²N8$Öè&LæÌ¶â\9b¢)ØOÆ\9dÓtZÊÎÙÂ\82¾G\85QO¤`7m\84\a\91h\90\18 \86#r:¶vG¯3\92Áë\ 2ß{#m\82ØFtfgò`\84E¥:ôX\a\8fÃ\È\80\98\ f\8b]¹Üùì\16"\9bz¡¿\8c[Ýo\1eó\8dó.'º'øA%!·vpy¥õË¢F0?\1c§ ]dB3¼í\e\85\92eåc4~Ä\1f^¥D,XÀ\e¶À"Íû\85Kg'ê&ºíD Ì©5W\bá²0!N×ß\ 3óû¾t·sbáä\9dµ¯É£7}ê\ 1¯\9eûÞ®èóµCý\13/}¢|¼zî\v^õv\92&D\97v°ëPF{³ëÜÙSòÒÿòÒÿ.v\99Ù\81l6tÝí:¼Ñì:íJÙ\80»\ 2\81\9bóyý2]V\7f\9a.k\7f\8eq¬çm\90ó[þ\84]'¥zg×Q\98z\8aOÚõ»ý\ 3»Îèñí\13=Þ\9bu4\9ff\10Èn\87}Jõ¢\84×e\1c«Ë8Vwe~>o\9a¾m\ 23\bØ\84Ê Ð®\80\1d\ 4ª]¸[\82ºýò¶XiÀAèÏ9\96Õ\81Æ©]`\ 6\81ñ-\7f¬\93Ê\1d\12Ô\9cãÇv¬\9aÿ\bb{öø¸j\8fí>°êü·\16ñ×:_\Dw|\ 4·\96W«Î§\17ñ#ǺÇ\e¡\9al\99x|\ 3ÜödÈVâÃ&ÑK0\13
+\94Ë\96lë\vµ±\9bîÔ.ßÓ\80\98ÛM[`¤â\86í¦Ud¤Ïg¯\99@È¿òÖ7R\93ãb_ú\8dè\fÞø¶\11q~\9f\ 1\99\97W(WQ\98Ð\õ\9eà\7fKU,§e\9a3\14ÒÝÑ|¸a¬¬\8eÂx\89:\ 5ÕU¡ô\1eÍ·MÞ$´\a\95Ý\vÄÁÖª&Kv=Q¢ÐX\14\1eOF\81ÐÀ\8a2õ=©ö\1ay\ 5Ðòh\8cÑ£O¥³íN\8aËû·\91°!\19\ 6ÁFD\1aÅ@a¯ÀA\ f\18ï\81\9cæ\85E&´¥Ab¼µc9oí\0è&]¶\86\ e<î\15q\v¶ªp³£Ò,<Z\8e
+÷\b|íT1\1d\11\8fH&?¢åi\v¡t`}Z,V:È×\80'+\v\r@x\ 6\9eTÞ|*ÉÖ\ f\14V\ fþvÉñÒîè\11º,¡2\1e<¹\ fåPÿM²¤l,K\88\10\1aä@kóO\18¤G\96R\91\1c},\96*ª°Ï\85ép
+UÀ\83\ 2, "Æ$\e\87GE$ê\80%WrÇs«pßIÒòG³\8amíp¡âaä]S¶È\93Ó-\11\1c\14[a¡k\11«\89¡\ 5`n,K\1eÐvUÂ!qY\891\e -Ã\10·wb\ fð»mD\8bõD\12#§E\8eV°.tìA\89uÈý\99åJ¶ù\19±\80\132èÉ ?´ï
+\16°¾Nõãé\1f\11\ eú'\19\9a8FÊP\a©\8cÂ6Rú\ 6Qó\¼R¢\93AözU\Vü5
+!qµ,eõ\ 6\8b\8f\8f³·+£\9d\8f½>Ö"Q-G\99Å;-Ûf½mD\92Íå\16ÖH\84}&\87w\10Ôp\93Ù-\18w\90\98\9a\18,¶ek\aH\0\87\8fÞô\8aEb$Ã\12¼\11«}ÿm'\86vr1\80zE\ ex´Ò9O\8fóù{\8cIï\16bó\94R·rj\83\8díWÒw»A^>è\9aÂ\9c¾XÿíÉkß¾øÚ¹\19\9f\85}xPì\ 2 ³*\ 2\ 1[gc\12E\82îMò¾Ê©\89aI÷®b£×ã>Hâ1u¡¿X»\ 2ú\9e]:Á\8cÐ\1eÓ\87\12ùÙÜb\8eìLjf éÎQ\86 \8d\94\80\9fTÅ;{\18\93g\9c\ 1S$È\ 3d\ 4ê¥ÅÂÛA~\11\18\85WÝsÆF\91ö;n:H}÷*\94`kGèJ\15$Bw\85xòKT%\14\ 3°\8e'»\17\80I\fÚ²
+\87`|\9dä*\8a"@ì5ì<ר¦\ 2\18\8dq\ 3F«ã\ 5\10Äýe4H°@"j0¾Íf\¿v³©À\1e\ 6õEÚoÀI$\9d\96)ö \18*Ã\80ûWÕ0Ô¿Ýl\18^HÃÔ\97a\99)\16\81\13ÅIx\99Ã\a\0²öõª\1f\ 4\ 3âÅNÔJ\8b±\ 3\ 6\9f\e\8bFÒiw\93>
+\7fÂQlß4¾ \132\87ý\90tqä!«\ 4\8b%[¤)Ó°m\16±K?·\9dH\15>)Û¼AÙ\99¥ãix¢\ 1Oá\f\1df¤g\1c\84\14f\ 2\14ñú »\e\ 3Æ&\95A6ºãô\83¤K¢\9d¾\8c\ fo¶;ñÄè\10²\97ä×\99¤y3q]-b¿Ãn;1fûZ\ f¸zȰ=\8c]N8\88\ f\axÀ×{à~\ 4oÂ÷¡\94J\18\ 6Ï.\9b\1f\19y$Wª¢0¶¼{î:HºÈ\9dU\ 3ÙÚɽ\ 5¯\ 6\1f\86ªu\eiðô~T®Üÿ¶\11¹\8d\8d-H¤apò[ÞÝ9\83¤Û¯;®V;\98\87Ý`µCR-Ò¼é:\93¹\\89·\9d\ 64)7N\ 1¹\88J\89xЩís?\99¿ÃúôN=5\8fl¯í;·Ò£þóâ)\14¡ð\12\19þ\13o|Ô\8f^<5\ fü§"\8a\ 2òr·<\ 5\95\926ËS ê÷²<Ý[|ÊÒQËÒQ/\96£Ù\81¬Jtm\96'½±[\9e\9a±Y\9e\90þÖó\92\ 5ÍòÄ\9fÝò¤?ç8æó6Èù-\7fÀòÔ¾î\ e\7f2*\8f\10\9cÚ\87\86?¬ä\94\96êµùivûö\89nïíO6«2]\ 4ç7\1cÃp\9c\17sÁ¹\8cxç2âí\bâëy³IØV\90þÚ§ÕL\17Éï\0\87*®¸úÐ/Û\16üÙ·\ 5\7f®±Ì\ e4Ní\ 5\99.æ·ü\ 1ûSûÔ;\90Ã5É\ f\rçÚ\85\8fà)g·OÖî±ák+Ô\7fl)\7fÙ
+õKK\99ÝG°\95êöj\8aúüR¾\e`\14\b\9c)\19øCd\9fXÀy\v\80Sd\v\113Z\0;ÎBô}\8f\19ßH±Zù¿ÿÚ\88\8dK
+H-à\88¬ \97",\81¦\11(Ó+L/n䨴éo\ 2D?,?\e,/E0µÕ$ÀF5o\ 5{uÚ\12ëq!DîD\19\fRXÄ \17\98B Ø\ fäön¤\11\91Î\98\a\91d\a\97\9a¤ ÞT´Iµh\12³:ß:IlV9ÊåºïÄ6\94è\9bÔ\94\95Ø4\1e\8e\be\88ëØ\95\84\99±H\86e-\85h'\1e\96:ÚH¡õ\16\f0LXe!bô#&¦
+³¬ \10\ 5\92ã\15=D,wÛß6\7fij\ 2ÝH¬\85Ì3\81Jl\82OÛ\16÷a\ fü\16ý\18±\97à¬ï*)@bëT8ÛWÕ>!c\8e.§å»íë÷\9f$.ß;á\9d´gï4䯽øíK/6T\\9b¥í\9a[\eÁ9ëö\9fm£N"\e\15/¬%ÿ»±µÚ\99²\rx8sÌ-Òe£N"Ú$±jê\8dS¦BD¶ëçé\18$6\a9M¬ð$2\92öw±\93 \1e«²fD\14ÂN\96ÖT\8c\16\fò#'|ßí\1f\ 3^ó~νyÞ7ÒÎ\ f&\11ð\17²=\ 2\95à¥v\93\0t¿\ 1\a\89G±n±ñW;âR,o\1e¾\8eÒ\19H®\aN/«l\851÷\88I\9a\09@B\9b\ 2\19ìT\96n0@ë&ô¢\9d£c\9c6gÁ\15;i;\95\83(\ 5\18Øù@\1d9l¢k\11\1fwÀï@æ+=¾\91JXk;RV\v\94"m\869=Oî\9b÷\9e£ü&·Nt\96\0s\87Î÷\95·>¹\8e^=7gçc\97sSÏ'@_SZ'@_ bê&øß Üu\89\ 5u\89\ 5\17Á}v ¡\9e®{¥(ÞØKE\1di\ 3è\8b`.¬*SB`ÐÉÒ\9f&âØ\9f³^Ô|Þ
+FÍoù\13\82?·ÂEðOÀb¸RêcÃ.qh¡>\10üG·o\9fèöAð׬\9a´¨è¿)-æ\1dM\¿º´\98\8f©Cå\1d\95|=ob m\ 5«=dÓjÅ\87\8e¸c¼EBCVù!ý²úCüÙ\v\10ñçª@4;P "í\ 5c(ã[þ\84à\8f©æ"-®I~h8×.~\84Ö7»}²v\8f\r?\10üÿ[Kùë\82ÿ¯,¥ó\1f\81ö©Û\8bàÿ\85¥üÈ \1dªÒ2\92\95Aj\v,÷`\92§ª\13\ 3Q\8b\8aÑ˪æ+\12q\84!\9f
+þR¸w»&É\98T\0c»7Éê\vE\0q
++fç_$l®í\8aVU\97\8dØë1Ýv"\ 5a\10r\ 3¹Üª\eY\9a\1c¢\12Ò\ 1[¢ðÑ\8bD¢$©\1cï8Ñ¢åt\86\ 6×\9e\f\1d\16\99 e\82]7\12ñ¯\16o¸\13£Ê7ßv\1aîÏÃÙ\84Dį\93`?|Ú\9aÆù«ÍÅ9â_W\933eC0\9aý,J\7f[\eÁF\v#Ï`#\92~^\9bð\18N\1cð\95Ðûö\91&\93\9c\bþà\18R¶4ÚA<ñ\8b\11óGh\9c|¼\81
+Ñ©Ê\84K°8Ò&î\1fÙê\ 4²L\1e<\9f\90ªa\ f\12h'(k*Ë\1a\\1a¶O\ fÎßFÂ?ID%o]D
+Xõ\8f\18DvC!ꬽ\82¸5g;F>æ\80\93U\8e\17vV©G\18³©¤Gí@\åA(^\16'1öée+\ fgêÜäø>\89åd\8fã\97=\9d\9f´\80ÿ\12ûn\19^ìE\ 1êÞ4Ô\9d4wé¤u$õ`\ 5\14\10 A$#d3\0\85§èPâ\1dÏ\9a$TªÞ*kJ.J¡rBÀé¤è\0¼£¤©Ø'õ\1f<\93 øÌek@\ 1+eÂ8ó\91MÊ\1ce\eùNãcn\ei~1ªA\13Úê\9a\95}Ú\98O\110»+"\99\89TB´ÐÙ;QüCõÐp\96©ÞùF\82Y\10ÿûó¯\9dèl·Þv"áÑ^\1fè\84\84\18s\85\9dÛ Æ/MʡӾµà\0 \7fnÝLÒx\1dcXÄ>°ÛN\\1f\90N\v¥Þ>s\9f\89ßãM&,#ȯÛö\rA\18Kõ<Á\8däèLnr¹b¾Ûeðþ\93 y\9c[zöÞ\9fü¥\17¿}éÅ\9cöq"\9fy\94\ 3NC\87\9d\ 3$ù\88
+Ö¶\95ò 0 \b\b\92\8ce1-ã\80\94û\92
+ºH\e\ 3ß\88\93\81/\1aµ«Ul¬¶c\9bT)\10ø³ÅÁÇ/n3\8e\18qñ« ùVv\13Ì\8e\16i±ð\8d¶Xø"²M\89\18
+8\872Ì\n¶¨ë\11ݸ\82\95ZÂä¦Dw¨°\bõ\14"n¥\0\88G¿\1ccW\84\17i;ø\e±_··\8d\88:o\8a5\10~Ê\v#}pã¦ã\97xpO\18YMNÙñ\84\9eYÆu0H\93ókQλ;â¶\13Uö\90"Ó\C\8aK/¬\18êT8u\\89êiÊ\17§\9c\91P´@ ³\18\174þ\13XÎ\b( õ"\ ef÷qg\r¸\0m<2 vþþÏF¢ì8¹\94A¨/\16sS7\96Ø\7fÀ{Jèï\9d\rHv\83¯®N\ 6eÝ$;iÜ$\83\ 6ô\8a`\1a\ 36@Yrd&\9d×AÿÁÛÛJ(Oe58f\1d g\85\81\82Ê1`\16¬\87\ 5/ho'K9Ë\ 3\aw~<Q8f
+Ùghî§»Y»éV8\8f;ÞúÏNlû=&»`H!\ 2\90å\f\e/\9f¿t)öh÷ÕD\ euÝ ³£EÚ\98ùF\Ì|\11S\a¸\b\88Pò\ 2\13ı1óñK7Jµò6[\93ù9«£õÙÛµö0\17¿\ 3P"\18\87\96\11ec³\b±µ\1fåq(\9fè\1eï=F©Á¦\80 [2â;ßï\17ÞùD1yñØä§\9f«\f>\8bþýóW\93ý'\9a_taGó»7¾\9cKE<\97\8ax1âÌ\ edà¡ën\ 4\1aÅÁ©g\9c74¿¨\1agóù|\8c\1czýÙ\8d@ús\8ec>o\83\9cßò\a\8c@ñ8ïÐüÈ·tÞ\9fÇcá}\96ò\11¦ßìöí\13ÝÞ\e\81lVe9\88®ÝvÓr\10Ý\ e®¯_}*\9d\9bö4·\83ô¯çÍ$`[Á,\a6f9Hi\a\84\8b\80·®>ô˶\ 5\7fömÁ\9f[\19ê´\ 1ÂÙ^\bVEþüc ~íSï\0áÖ$?4\9ck\97>\82ö\9bÝ>Y»Ç\86¯\8d@ÿ±¥üe#Ð/-e\8e\1f!ü©Û«\11èóKù\91\11(\82µ\8dÝfå!D\8a
+4ý|ËC\88\1e¸,Ì/há\ 2e\88ä\93:ÒH\89\7fƧþ÷_\91Ê\ fºù2\0íÈb\8d\84õ_\12g²x«\8d\94û\15G\añt\8a2Ó\v\14;\aþ\83¼F\11\98\ 49r&\89'«ÿ\11\9a\14¹·#H1b\ 6:\8aÕl $Õ¼Qä1ôBÇQõ \84\ 2v8\vâ»ñùMZRÎ*\0ÊI\97\ 1\88ï\ 5èka\ fRÆ*Z½éh\1a»`\ 6#.kU\7f\9e¤6<Aû\1aè×l\aÚ½ê±ãn\ 1\8d9\ 2*~\ 2/\8e\10¦Xo\1e-#yX&\866ý\8dT\r«\1aÌfâ¨"\båÙa\r"Û¯
+ð[ÝuÀ\8eb\11©\91¤M\15A+\ 2]áX\ 5i\17g^$^
+\1a6ñÜ«\9d\17h~R|\9c^\1eñí9Ô\17ÒI\8f`ë\10ªej\82\b!Õ;\92ÂlÑ\95µ£ï-RU\88¢ð¿wb²¨þÛN\ 4u\82b\ 3z\85ÀÃI
+\97Ë_#ñ\84¥RUÚÛVâeø\e\ 1gTEH\9f
+\ 6Ìèèöñm\97W\84\85\95\83\12\81jÖ:¯vB\83`±èM\11\91MèÏæ\v\95.\89é¥=Ú\14ÆQ!ZVLÓ]\8a\ 5f\ 2Ó&°ÉE\ 2èÙã½l\9f¿\11£ÅåÞv"À\11\98»ô\8a\94T\12$Zù¹\18å¬\86\94\82%h0\946\8b\ 6\92BÕ7¾±}Øa¦Âu¦ïOþ0\9bµ\7fh\87Æ,\1e\12\85a $\82\84´\11#Æ\ 3«õF\ 43.×\88÷Ýa£"6×\1fel'i#ä\92¨¶F¤l·AÔ+Ã=î\14"0£äé\9d\98,×à¶\13 Ü-öVdðÜSBtþ\ 3!³m\1fI\97\88fu³\ 1+2³\16\vá\8e\80OôTá`á´Ú\16Eiç\83Ä£àÓ\v²fµ\13\b)@ñ\98\ 1±\95.\12é*â&|Å"V)y·\9dÆ\91\ 1\14(R· (2}MðÝ2üáÄ\85¶áÎ÷\12\17¸p¾Û\8dóþ\93^¸øÞ}1sáÉ{ß¾ôÞ\8fR\17¶\93>\82OÙÑØ\a\89q\9fÄ($=¢\8f°9û\90á.¥Ý-Ôà«Ô,%Ø\1fþ\82\1eHÍ\1fÕt\91B@Ñ\8bΫ¼\99i7Òài0ºE\8c#ì\7f\11\95°\1eÐ\16À>Rj\ eVù&Õ@b\87p}\80\9b \\v\86B©
+\81:Èæ\80,®\8a\b\82M\ 2Mñ\8eÏ\ f\92.\97Æ0¨Ü²µC;\88Ý\f|D±º&\v\14U\89\8cÑòÏàW\ 2*ç^¢\0\ 1
+u\ 4 \87¢?THp(\8fm\93{Cm"\99E\7füm÷\92A\13PÍ\89«?\ 2é`.&\ 2UîîÑAÒñ\r\96\ 3¶µÃ¦Ä§\82\16ìlÖ¹ù Èæ¢\96å\8cY§\8a\ 6\15ûdl³3\bí¨ÿ?yg\92\1e7®lá\15Ô\1ej\ 3òGtl¦ò4wáqí\7fúð\9f@\13L¦RJ_yò<©J\85A\10D\13\88ö\84îjà³öFÌM¦¡Ê\b\ 2\84$\1f+Å\8cZ|\96B\ 6\89\95\0\99\89-îÚ\ 1\85 \91\86û\13\99Ý\91¼è3\89Ô\8d\8aÿj\87\15ìñ\84ÒéUê\7f£>0\0\vÊÉÐM·\1aÓ'(¦jà«qC) #>{0ú\99\82\90\ 1ìQ1ªÙ*¯#é\8d;0eG\1a÷\12\8b?\89í\ 6»9"~\fõ\86\89O\17\ 6ãFìÈ ÖH>Ù\85\8f¢:\vÚJ\82%âÌ©\87Lé¢dhÈårWÏ$\123è9~Ͷ\805ëºê2L'ê¼\a²Keg-:)K+âQg°6\8fv¸©ìªcQw\92r\852\ 6\91vçÔ]\91àÍ\93Ôï&I\93éî\16»ybG\aÓ+2\96ýûÞl'#H`c\8a\9b@e3\11|òy\12ëWì\98áÞÄ`:ìTã\9aè\ 4I1U\\ 4\8ae¶ÊKnW\ eÜ£\94\13©ÝL:Ùùî
+»9â¦ÂÍ\92V\11I¸rçü^Öá\ fæ=dbô>È{\98ÊÑG\8f\1d\87\14/J}\7f=ñáÁ+\1fècO\1e{-ó¡\8cú£u;oËÀRÍä 9Û×ÙæÔ\8dQÍ.Õ4ã;ÛUqXªêÚl_z£Ù¾Ê²9,Õ¢2\87eæKt¤\ 1ý4-ß~öqÌç:êø\96?aûª¢ß\9dí\8b²5ûò ]Ó¹µR\9f\98¾z¯ï\9f÷z±|iNÍ\Bàó4\97¬¾ü\80þêFÄ8\8d\88¾\8cÁ|Þì ¶\11d.i\93*sIYV\ fÄYê\7fg\1föW´\ 5[:\10\8b~\8e±Ì\ e\18§í\ 43\97ôoù\13\96/\92ØÏæ\92>Ç\97vcå¶Ï UG¯×\95»¶ûÄîõw-äïÛ½~c!1X|bö¢×³ÙëË\vù©Õ\8b\eÕ\10¬\9cÝ\8b<e 4SGV®dÃÏ\16¸bÆñX's\93hv\ 4y\8d2\19÷Yîº\9dò\9a\ 4g!\a ¾*[¸Ò¤PxÂÐ\a\1cM[¦ÿ\89+L \14êX\99¯¤Uï\944Ë$\9e.TäÂG¨Ô~\ 6PUZá¬)\9b\17à "£Ì>5M\19\8a\0Ç\ 6æM\1e\b^\92'g;ð\ f4DzÓåU\95\87*i\1e\b\1e0yÜt<\8a\ÍJ\92ò\89\a¼Ô\15Q©+<m
+ \18\14¼³[Q>¿§iÓ÷?ñ\ 6ãòWÇöiÓ\9d4\0 Ì*\17{ØgãÞ·òjÑBU2ø\10Â\ 3\9bkx]ëaé\18ÿ402Ø\ 6¹\8dt\10³°;ÈÜ\ 6]_\ 6¨\8c «,WAð'\ 5+Q8ïÇ¡L\14ì\85h\1ay'ô\82H+\81jH×\9f¤9''"{aþ\9d©|Xw\1e¢¦\80\166ÀÜ ²ÏÂ\14\15\b/\97[\90kX\83U\ 6\ f!p\9bÖ\9dÄóH~Í0A\8eàM\95\8amPýËÙ\ eEHQ\88Ä\9a±\13³"áUO\81@7Ë?Ïì\14\95lG\9b\ 4æ4«2J\12X[²¨\aGrgÀ\11õáóï\ 3?6ÌF\95Ý\r\802\99ú\98I\97\90ù\87é_¢@Þê`\83U\fd\99L,%E}UÞú\ÌË¢\7f¯ee÷\85Ì\82\8e@¶²\99W»
+nX±´\ f\1f£ºäö G÷ÅW¾¿ðÊÏì)\a¾\95M\15b\eàt=5¼IE\9f fPþTæ×aa4åÂ\81¦"\97\81\94\11¤Àl' \ 62*\84\ 6p \8c¢\83ª^4\99\1dR¹à{\ 5\8c!"À\88\1f ì\fa\19ó$¦\7f\92Ê\ 6e\13&©û³mÂ\9b£\91\19d74\8a\98,\ 1-ÐB\ 3àÔQ\12P\1a\14ï?ê\ 1TeÈÔ\8a\ eeAó
+Ar¨Ö\93\ 39\15\9c/Ó'ÎvÌ¡®qzKA¬\18K\80^ZÌÂÁYc&0'ÈJ\ 1G9TûÆJ/\väeRì\9bÝ\9fÆqn\93\ 6§©\a\9bsFü\e¯åüdxÈ\83µ\1e\9a÷d!Ý \ 3óÄB\8fà<4;ØM\9d«\b\ 1&s\8e#j\92`dÌ\12@ð¤,G\e»\80«&\8be\1a\ f\ 4\ 4\92k`\92Úbº¿Ç\97M"Ø4EY\92ìE}\a éÜ£
+Â4`¦Ã&M[\91\14\95M¬ak¬\7f7ø\83\ 1üá\18È\ 4\bÉ\ 2¥\r-pÄÚ)\10X¹zµ7)ò\99\0\bù\10xiØ\83\8cxJGSÚ\16\18\ 6즺\13Jg\82à\81\87äImIçßs\1fOb^LJÈDÕ.\82P!øBÛ,p\83®\16ð#`\16\89\ 1kÛ¶u\95\12E\99³ >ÂvZËË\9a\7f£\96Oö¦/\1c\9c \9cÛ\96\87J~\17\ 5?xÈdÌýj\8b~éuWÉóã\87^Sï\ 1\8fP\85Éÿþ9Ú/lE½Ødý³NS]MÓ§ù\9d\97ºè\vYVKmJºÄºvã³3\b\1c\ 3ÝR¯èF\ 3\ f\81i~öÕ¥A©Séóö¢[ûÙß?\9fgdcì\1f^\9bõ\1c¼¤Ík\8a§RýÖ"eÆj'\8e_P0Ê¥->bbÿß¶°=Öê?èýý+½GûÒ¹¦\9a_Ýxe\80)\ 2Ã\82l{/±Ñg4.}Bõkï\89)ýÑ¢Ø\bû\7f[1~\12ÍÐ1\18ù[éuãiûKû¡åÝ-:úÑ\ra>Ïèl+dvE\1fÿÇj౿¤\ 6\9ef\8cBMÖÿuí\1eµ5B]ºòXÿ óëÒ=nÛj%=Öîÿÿ¯ä\8b
+ý·¬ä\92\1eëõ\ f:ÇCÿ{+ùqÍ\14в¸\99ë\95¹[\98¶pS-Êq\12ÁÓ\97O¿Þ¬\9bÕww$P³£\95þ\18ĤD\18ÕÍV~8\ 2nÀô\9eÓÚ\90ÉMh 8ÛTU;J1Ü\83\91\96`Å:~lª{8H¿¨ue>ÆI\f\98\1dVµ#T\84÷:R½ \8f\14W+&Ù\88\19ôurg\ 2\85$¨gJ\10@\0(Ke¾1Ö\87\8cn¶\19Àv\ 1±\93jª\ 43l8;o"J\7f\12QáØ`\81®&\9d\ 4°\a\14ô\89\ 3¬\91r°á\11sQ
+\93<H?Ýr\f¢\80xL\91\9fÄ\14\9bÔ\12(+\ 1ü¿£\10úRT\9es\12Ç\12Ý<±/eRüy\15\9aÝ\82_7ÆÇ·×\92_)*!´Ë·@ÄÃ\1aFýêõ_\8b\ fÒ'ôï<\1d¥7m÷g\ f\1e\80µëÁkE\89\17ÞúþÚ[ç\f9(é¹\90±\r ô¿±ä\9d(\84ȪËi\vub$\13\9fz±Z]\95\83\ai\80\ 27¶%˱j·\90\84\84}Ã\88ÙпÀ\84GN®\ea\1dU\1a\96\96PQ\89±\15.Xb?\1eG6s\83#Í\13ã\88(4Ø\91bUF\94â_\ f[¸\9cÓNR\ 5\ 1Kêrí\92)`¢\14öY]±TR±\83ÛÂÌt¬\bd\v¸¿\ 5z\7fsD·\99\1d\11.\92\ 4e§âFuwçËVî$Pü\b\7fZ\83#\12)Ó\16´õå(\93ÅMâ8i7O$p
+\bV\9c\96T.ò\v{Ý\15OD¯\88\15\rô^\9b;\80î°\ eW\9aÊ\0.míÆG^/§\ f\1f[¹\9d\98ß»\ 3õê+¯WÖ³ÇÆÌ|\8ey\80i¿é\ 4\98ö\9bRàJÐ'sIM¹|\bìMv7ùáN¾/\1e)M\1d\9b~ ×\99~`\8e»QxÞþ³z \85&\ 5Ùo\93\83Úï>\96Ù\aã\1cßòm:Â\14ÊKXîõ\83]V¡õÚîm[÷Ï0öG\7fï\9f÷w§\rØt\9a\109Ê\8a/vÝ\94áôWÓ±ÒÔ±\92\97\ 5]\89ô\16FÝdI\9bJÉ\92Í\15ÔdI«\8e>:h\7ff[§%÷í`¿ÇXf\1f\8cÓ6\81äÉñ-ߦ\1aL\11®¤å^\98ìS|iW\97lý\f`\7fôw]²k»§ZÀ_¶\82¿íã{m\ 5Kþ\f]_ý\9d5\80¯®à\87Ò?á]e_`Öá0oDe¥+\f\98;z\10)\8a¨2Ì\95©¯V9Ú\91Hø-Ê{tDÂ\0\15\ 4F07Õmª\90\94\f~%8g\95´y´P×\9fÿ\90²\18©F\15\88 TðÌí\1f\82Qø<2ðAå4Ë\18\97ì\11Á\85 \ 2h\92\14WíþÎÍD\87QP\18ì\92;\8e\18\ ee:6¥¤\93~ýCÒh$½Üµ«²\0Ù{A\95\94\80X\92É;jT)uT`\ 2û\84Ú\10\b»S¥/r\88MèO\1d\9c\15û¡Éa\83Tg\17ºrí¨%EÿÅ¢úßeëþ£N©GH¶S*\17 =>\10\ 3/Q\ 5³»\8cÓ\81\88w¥0ò2\10\88ãf
+P,\16\93'?\95D\97\9dê}ª4M\11¦\0:\94\82\ 2ù½P\16Èý\9a\ 4\11.\8f.g°~+\95\9c¶\ 6a;I¬Hé¢P'\92\a(,\8a\0`Ô¾¯fôUXt\1dH´\12}õѺ\e6L¯õÍ©\85Oï`w ÊXU\14\1c Û´á\17{b«\85}sD\84\18!Ï\93±^À}\v
+IDÝÛµÝ\10ç¢L\2 \13l\1a\ eI=Ä£ áV\0zêÎÑ\90@%\1ew\9að±¢\80Ê\ 5U\87åz\92Êne"êÇN"êä±\95\7f]gý4ºwvÒÏGGùC¦ö\92¾\86)\0<tÀ
+ã)\9ax?\1a\8cÃ\Õ\13¯{\13szú 1±öä½ÂöÒkß_|í\98¢É#ݤîQ\8böß?à¥,ƨ\1a\r\96´\19\14v@»Y¢ðÒ@\1f\17k\08À*\9fáÔèûlµðÖI\1aû±nRGl;÷æ\89k²8zÕú\0 ¯\1eæöa{n%ߥ\88ô£\16\81ÏÈ:D«1ã\9d\83N@©Nóý)í$\98_´
+×\8e¤|\9d¾\1c\17\ 3i\ e\9dÅgÒ\8f\8b*åR\96MÀ)R/Ud\84z(ÂA©ãm·/P&Å\98ð\86Ó\88\10ÐUÈ$A\fwëÙØñGW\aU\89½ýíx_£Èç\16Í\ 1\83Ã_üø\9eÏv\92\8dr\a_z\12·°X9G®\8e\1fQaÛX\81T\9f²ò"u[\9f¤bM~]\19¡º\83G ä\15*Z\n\94Nª\8f\92Q®Ût\10 vm÷\13~1r£\1cÉ®°ùw I\86"2x\9aq'\ 6ü1B\ 4\15\0\r©,ƸðêÚ\8c
+ïR¼fÛ\84¨°Rót³\84ãlq³«à0uWã\99Â\11íHîN\9fÄ\\fl_\17\16\9c³²©Ò$\84É~:é§?S\9dÈÞ®G[Æ»A\84Ç·\83\99I\84ZN$Ç\1e'\91\8c}ÕÑ\99½µ#z=Èß b×-,v\14»\e¶)®\87"лhÔ>ç*ð=y¬\8a~Ûra\81¯¾ò*\13>{l\1cïÏUl ×MÇ\96pÝ\94l§íB¸Sm§ÖÛ5à.\97ß)ÊW\95¹éÚö^S¶[¿CÛ¶\17\9eßß´mýnÚ¶ý\1eC\9a\9d\8cF\7fJߦâÙ\9dÂ\9d\ 5\8f\eö\a\rÍÀø\ã\9e=¾\7f¡Ç;\9d»Í«T¶©\14\89Ðþs¦uËEv\96\8b|V»Æ\ 3bݶ/¤¹µy\95êæ\1e(ݽsOk{dtsk¿ç\eÜ[û\80\9aö6¿ë\ f(àµßx§¿\8d\19¿6¬k¸}\ 6/>{¼®á\83\86O\95ð¿yI\7f[#\7fuI bx®\93[\8f'¥üëKú¡V\1ed&ÞL\96ßVi]æ¨0\8d¼;*µ_\7f,ãÚ-hÃR½\15ö¥\8b½\95s¿)3S°\8bWÙoÙjÒòÃ*qïÅp\8c\1d\89úíIõI&\91²öÛ*Ó\0\85wÄp\ 4ª¼ÚP
+ñ3\9dR\1f\8cT¦\api¶\ 2\1f\10ûAÀ\13°\80p\1epûÉÙ\10(þ«äó\9f|n«!¬gV\8bu´§\80\ 4\17u¡\80\11ÔÜ\8a\1c×Q\14KÓ
+à0\17¹\1aÐÂT¾X\13»\15Ga\8cU@Sä¬k§²¾ö\ 4vi\1e!õI5\81ô
+\ 5lÕ\87\91Î\94\10U?u1S@ \9dPö\vé\8e\99dyO\8b\14\10WQ»\135[\9eøíD¥pa\92¡Aø\8eúl\f0\88Å2\89l\8b>UÁ^Ù¾\ 6õ\9e\v\8ebÝÂ\9e¯_ÝqU\947\a¸W ̸\ 2\99&\8d9/-[|R5ç\88ÆZÙù<\89â\ 21\89l2 \a=Mi\836E\8ez\1c\86\9f¤Ï%¬\1d\8f\89\95ÕÓÂ*Ù9\90w&w\14\ 3ÚZ@\92Ô\ 1UDd@\14ÀZ\14èé¨\81ÊâA®çN\95\9c\98H\14\fäÈÙ&\9b4, Uá*Úã\93Jñ=Hëë=â\1a\94+ͽ{ÐXIÕþ\ e¾%+Yß\19óî\1fW\81g\®\12ª`RN´¥\ 5ͳµ\ 6\95òìÔN4UJ®Bt \81\8cËS§T\7f¹Ê\16òð\18OB5ÚvÛyÒa\19O\ 6°R\8a\129\8f\v\12|\92Ý-ð\v'0alæB×ÀAvPà$\ 3"uR'·×\ 5¯c<\14\10Y7Îjh\ 1\8e\ 4T^9l8\93\98~÷Í\11+?¨Ko\1f³\1aÌ\99X\97ê¦×Ád\v\86¬\8c\7f3\909\ 6C\9c\ 1Ê\14\98°UZÛ!\91¥ÎñÇ+'ý./¶\90·ÞÈD>\85·\99YMJy_ôÓmó¦ËáÙs\v¦¼^hú·_úþÚKÇô8±Q8\1c
+\ 3\ 1ä|?L 76r\13\ 6\¨\82Y\b\94SP\1dººa²Õn\fÀÏ\97¤=¿P\1fBeÕ¥ù\a;æh§ä±ê ¬\16y¬\1d\90pgÈfÙö?VbÌ\92\8ev:)\93
+\8c\ 3\98 æ7^d¬\ 4\0ÏÎÞ<¤\9döÓ3\93A\85\99T>j\1aÿ|>PÛÒXDȶ·=Í3\93A\ 5¸`\83\99¹\1eA$1öä\18Y§1GËf v\93ª;\8eºvkcüÂh\17oÞ\e³JK\vU ¸Ô;Ç%oxO'\9açÍ\93Jé¶E·±\8c^úUE\86Æíç½ÐiÌܼC:\95\11í{\v\89\99ϳ\17\1a)X±]ñ¥\12µ\8dà@õZÓRFÊ\96Ây¸Ò\97,£x\8aã>Ü\faÐÓúÍ)®\17ïoÙÛ\89J\ e·\99è÷~m3k\87.ø@\85²,~D´²Ý§TL°\19"r(²\90òë\13È+\ 3Ã\9d`Ñ)¿ì2ݵ\95]»Ä\82\1e\12J\82¡)\ 4\ 26\84õ&q©À\95\7fÚµ¹g\96\eê\96\95\88f\97iÔ"\93áa\11$AñJ«]Ë\9bÙþ\ 3e\ 5\94\8cþï\ 44£h£"ò\948[UNÛd½\ 5\eiÜ\1dé$\13\ eâÞ\82_̶Mäµ}°¸.ü\97t\9bÚ\1eÃY0Ñ\8ej\89
+/£èc\93,r»ã\b\e¸0ïNÓ\8a\84n\94\1d-ñ\93(÷ºö\88Ô\874\97\88Ã/
+ðÀ5b1óõDE\95¢Ðø©é`7h»\87\10FöÃ\91Æ}Åî\9aÄv³Ý<\11\90oc\86x,´\85õ.\ eü\95\91~\18\ 4þRØ\87®\ 3$ÏÉÕµ$x\80,À«ÍÐUáùø©ªøðQw\17Ð\8b/¼êCO\9e\1a,ö\vö¨£Äa\8fZS\1cö¨²íÞ\1etgü\19&\9fn#ê\8aé\9d)ió0\89Ö\7f³Gé½f\8fª:\81\a*¬rÃî:±?{\f¬I\7f\16\ 5«ß}H®\13\rb|×\9f°G\95\94ïíQ\95ÁW=ayÐÐü'\9fØ£F\8fï_èñÞ\1eeójÆ\8bBY¯i¨(åd)Ð\9fݶW\9cm¯\9cí\ e£\13Y\1al_\98ñÂæÕ\8c\17Ç\91\9c¡".ÑÛ"Ú\9fÙÖ-î}\8fØï9¤Ù\89\ 6lûÂ\8c\17ã»þ\84=ª\94|o¼è3~mø¶ã½ýÄ\1e5z¼®á\83\86ÏíQ\7fñ\92þ¾=êÅ%ÅOõ\89=J=\9eíQ_^ÒÏRÀ\ 39nËÚC\82\95w\W\9b\ 40\vV\1dÔ@ÝÛéÇ\16\1c\8f§Q\87|ß%æ8ª\9cx\87ì9ë1âH<\15·Ó¦/ìÔ@\18\84²\bÍRs _;\1a¡\18«°a<5µL¬ *{ËÑÄM\8b4Ye4CD\ 5SHõ\1dØ\aøÈ\1a5\9bGöÆè \ e\88f3\90ø\f\11£\97.\91\fö\8cD\ 1\12å\85'%\ 5MqâAµ×Éq\9b4ŧ\83Ó×í\ve\15\84\94¿iÑÞ$\ 4z\1aè\8bd-3\9d\83\8aGP5Ô\ 2A\ 5æK\9c4\8a÷%\93\18\8d\16\8eØÊ\80\a´DIÉ\8e\14U£¤\ eÏÑx-ß6û\9aË2ß9h§ÑùeuÔ¾1ÎÔ¹\85H©'\97Îoµë¦ìÉênsµ¯üïD\93\1c¯BnA\10GUµ8ÍÛýÓß\13O\ 10<ÙWqkµ!Û?F&üh\93;ÖþÄ\19Þt\90\9f?i®Ñò õùµ\17¿¿þâ6ý\8f2 ý&DÒ·¥\0öÑ6«Ñn\9e6¶õ\99\1aZe¼ bò[\ f¯¾\1c©NãH%\õ)\9fZ2\1d:Ï\14§SD[\0Õ ÔShUJ#ê\9c\93\ f\ e¤ÙQÑÀÑêÅ\8b\ eÃA\15U\8a\84¨«¥\92`«ÏÌ{ V¡³\9dª\ 5\84r¦y\ 65©\82eEÏ]eÝ\13s\ 5&ÎXÞd\8e\9dÆÙ\92f\18\82£ÞNT\7f¶&5\17\ 3h×$\95®U]\8eV§1\9b\ 5´ª\1e8ßZ\8eõq\1dN\9aç÷\93ê\879Ù\85£\82X`ñ-óã©\88×ùÏa5\ 3<mò©IK©Ù\ag\7fm¿]we¯z@\bË\8fÊ\eÊi¿\8eiÃú¨ò\0§É\9c»øòôǬãëê^°óK\86\95?\84\81ý´´\9d3\96ä*Q<{®Ê\16G+\1at§ò½ôÒ«Ðñô¹q\1a¿\94\0\1có\9a»æ\17CÎ]ó\8b\14\ 6\9e\9aßEÍÊN\ 4ÌN\ 4¼SÚ\ e\ f\12fý\9bægïm\9a_ \1e¦+\96Õ§\15Û\9fMóÓï¦ùÙï1¤Ù\89\ 6<¾ë\ fh~õ3×{Í/[\16ã\96f'~®úÍ.ß¿Òå\9dî×fV\8aBý¬øÃç\91®^*·?»\1e½:=z=Éø³\13i\0¶3¤(´\99\95¢\10ËR¼¢P²OJm\7fÚ.Ñï¶Kô{\ eiv¢\ 1ÛÎ\90¢0¿ë\ fè~\11\10\9c;EaLùµå[½\ 2?C»\9f]>XÅ\a-\9fj\7f\7fó¢þ¶ö÷ò¢.ûg¸÷ÖåYýûú¢~\9c#,w¸lñ.\1e!ʼ_¶ì¨1Æ~)\87zí*\1ry\83\88i\86Ør(b4â[-\82\81ÄÕ×V\1d\83¯\99b«x%\]O\ 3Ý\bó¬\9eîTâÜÔOT¢b6I+\98Õ6b¿Ý\14È>h¤%&Å@\9e\1aæ¦Õ)¬·Ê\fÐ\80Ó/òo\10\8e\9c\ 4;\15\ 1\1a.æM\17pÓv(é\92r=\0\88[x\80
+\ 2\835k\99\88=°@3i"¦\vA¨\82áª\8aD¾!~¼\a\16¨|µ§\111±Yµ§\86^AËS©\92\8e\12Z?ªá©Ê\r£"<\11¯QÈæÇo4åmR4JÒíhI
+³EïFð\87\83¾°^}*8eºr[\1c\ 5£*\8e_FñÅÒC«Ü®\|\0AV\10\83#:·*ÅMZ[\1cU×ò-\ 1ÂUä.ï\91?-âê¨ÚèfÞ©\12,\7f\1ajÝ(r+\1dÒÍ\95\11[º\97cÅ¿´\13Uyì\ 6j\e"å\0ðLh§Zb
+ºa=GÊûæi\8b¼Vpóny§õ\ 4Y\85/9ò3\91!Úm\16z;ܰQî´¼û \0\16mKm)\¼@\ 4\12ú\903o>/0}K± \f\86\80\ 1OÃ\7f\e\85bæ¨Â\ 3Æaª\1e×Ð3uÉ\13w¯î$¾Q\16\7fùï\e\91OÜÙO)[¼:\10e"\8e<\93tXRI\94#X'OÎaf\1dïÚ\ fõ×)ìó´u\97ðlGd²¶\1aÛS.ÝHÀ\83ê_+N!\93¥«ï\v\ 6|\W§jëJ«×\9c\98»\8aø¦z\89x\12
+×&õè\8e\8a/L¸\ 4\93º ¬ò\86(?\1e\88Y\ 5(\0\1c¸k\92í\90B,EáÙ\1aõ
+T@½S\9a\9f.\ 2\8d/ô±É\ e\1f0Îï\ e?À®\14\-Á\88Tmßô \0¡²\817»\ e\9e?*Åó\93\18\84¯¼ùýõ7_\ 3\11"Ñ.*: x\14E´ý\a~\ 4IJ
+\10\bÅÎb$°¿Åó\13JvÞ\89\9dò«í⤴\83Ñ\ e\17¸ò¶\ 2Ù'U\e\87ɬÙ\18\98R³\8aå\ 1E\1cßIÊ¥Ff§Å\9d+G¤\©\85î4b$®§\1dSò\898Ï\93äϳ£\82\81Eæ\95NÆ"\83åð\99y^2Ã\1a<ß\99a\r\91Í\7f\17\16\11A`\8e\14TTø\84<ñ\91«åØà /².Vb!\ 2è°Ð\ f\ 3}\86Vs%Dá£\1dp\ 4V±Deóa8\98˸ZÅc9FCÙl\9cªh!õ\99¤\10\8aéõqÊÓÏ\+µ$â;_-Ù!_o\90Ncq¹u\ e±ñÙ²\14\8b\1d¢\94{\ 3@à\9eZe«à%\85\vâ\97ÝäfÁÐ0\89A\12'Td\11_s¹8;M\1c.\eª¨oYFp"Y\15ìrOë\976·\82£¶\vþv¢êþÙÙ1 \96É 2b\v¼l1£\10â\fÖ\9a-¹ÔM*B¦J\8b¤'ðüJi\8e\7f+b+b\8bÁÄ$u\98\12L\bb[pÐN©Õ\e\19p³·\80ï~/|u\1a\ 3
+Áòx|Ëeéâ\1cÈé@Þ;\9a\17ü\1c\95tR\8cd\95\96\94çA\856c·\91á
+öRæÐÍîq"'\95¤D \99\f\ fZìM\ e\91á¹öL{\86\1dD¢HTfÕ·$ÂÃ\80%d\1a$[\83s¾I| JM±M¥`¾Õòo\901\ 2·ø²\8dË'\eÈ\85§õk\8aËëDÕ\95v;QWJÚl«q\12\81¹\ 6+é£ÛôÊ=¿5ú xfÎæF´jkt\8d?\18úȳ\a«\ 6«2Tá>)æµ·>Ð\82\9e>øB\1cB=g\ 3\8fζE³FQÞY£îM?«SIW§\92\9e\rI³\13\99\99Ô\7f³Fé½f\8dª\17\93G©K
+\1d\9dØ\9f¦jÛoSµÛï>$×\89\ 6<¾ëOX£JÙïQ\eªxÉ\ f\1a\9aÓá\13cÔèñý\v=ÞÛ¢l^M\9a L\9b3[\94ýl#Ø\9deow\96½ýdq\98\9dÈ\1eaûÂÌ\166¯2[Ô«Ã#\9cÕ«Û\83"´?³[\19 %ö{\fÉu¢\ 1Û¾0³Åø®?a\8b*Û~o¶è3~mX×0|\86??{¼®á\83\86Ï-Q\7fñ\92þ¾%êÅ%%ôí\13C\94z<\e¢¾¼¤\9fÅ!D<.\87a>\91`aXôqÃa¬\0¼A%XàG2\³¸[Úv¤îSÕñ¹ÈK0\8còzASãð0\8eY/h\85¨Æõh\85H\94È!\88\ 4O«Òa¶\1cî\135\19ú÷ÍSU]-Á^yÏf\91Î$Õ (D\10ï\95ÌZEü`x\ 6\8c\bl\ 5¹\10U\ 6\by6R\8aÚ"\87sn\0×õ¾ÚäË\1a\94ú¬\92Å\81ÚðíöbÙÒ!cþB[ÂI\96\95,"è»M\0\11U\85m\9f\10\900¶ÇÍ[\ e"\18±(È\1dêiu£7\18\fOEÚÅ\86bïQL\ 3f©\ 5á/\82þÛ0Ä:\8d\81ïÁr?|KMinn7¥\ 2D"\ 1\12PÄ\82\19\94\9e\ 3xÞZ¬D\96\81\ f\1eª[%ê\92\85 Q©Ú8P©'¯¯d\9cªÓ\15\85klYÞÙP5" õëa\ 6\94Ü¡\8b£Àê×|n¹ôXjVVI-\11°\80m±\97Ä\1f\89\12Ϭ,ñìÉü\88UÅ#\1c5\82-¡ºTöáØÙ´Ú*\1c`8#\87@-"\bÍ\86½\859E¦\98Hµo\vlÆïL\ 2EÄÁmÁÙ\83¦\8d\91\9baϵÄǼ*o&\1eV0,R\14@â¾ÂmUO@k»\9b\94\ep\f*\98=Rù@U¨ª\14\1a-/ÊÓÐn\f¶þDmζ\9b§Zø-B\1e°qæ\8bÞ0\13i\v-õ\ 4&y\eYÄbg\84¡o\96\88\ e&\v\90$Ñj\8eï\9e;<â\18=HDÿf&2Ô"\81"\80ÔGy©¦\806ªf~\8bÒ@«J&\0ì¨\9aé\16A_Zô3+¼G+4!ÿok¹\8d\96èO\94ªó´x´\õ\13q·ý|;Q\97æB×\80\fÿ\8fÈl\95\95\8bBĶ éNc¢r\8f\er-1\9bê¤Ò£Þãiص\9aÉÛQ\89\12`2n'jeUÀM\80oW÷@\94¦<¦íÁ\ 4\7f\8f\11ìÃ\ 2\89uS¥¶©\ 6ÿóWÛ\9bÝDÏ\9f\8cà\82¾V\98ñÑ{ß_}ïØ¡\8fâhêmB\15Ä=\9a\89zçV`·\12\98#s\80ÊîRêP\fÎÌ\ 1\84þ\\98B§\89\1fí\ eºÈZn$\98µ»«\98\9d½Þ¦\87AG(×D,\95íº¦\16\9eÅÌl\è\91pª²\eËmñA\91Â0 \93ªP/H"Õ«·\96¥\0j\91PR"µ\äu!CèÂ\85;mjEaø\96D\ 5í\ 6Ë\91Í\1dTg'[E_\19·u\82ÙÔ@²*¡S&ï\94ìZ D_ÎÍ\10ÞêMFÊ|h^\ 2*\7f¿O³\15Ý\132ÉåRë4Ø&õ\93-%¡7TÑ\19»%U\11SâÞ¤ùûtR\89\88eÒk\87GË\1d\91]\81R4z\89Ý\92òR\90Ì«\8f$\1dtkaNYLg/d\ 2+Ø+n÷BD§hm\10_NTm\ 1»\17°\95¯[\80\v\11Niß\87'eÙlSUYÖ,äd\18.\92^\96uÈCÅ\ 2ù\1cmHNì)GmRÖíD%eFv\0^cI¾\18SA|©\82SåA\87É\9fæ\96`8Dz®\8a\1d%¼\11Ë\82ñnÌi\95kÇëMÑiºgx\9f\\9d£å\11K?±[\83aq´qÅqñ9j»\ eo'jÙíËã¡\1a§b\95\18ë\82 C¯'¾\17\94¨çl\17(\8fî^9È$\bïV1Á\f\98do\92\9f«\12á2K^Ør§I@\bV¤Ç·\94çO\8c\1ex4êPzZ¿\12Ú\99º»>n\9eÊ\15o¼D\95d4H¹zﯮNÓ]Ú=z³%<Ç.Cë\11\91eÒÆµÙ¸Óù\86½\9d\88@þrqQ\fc¥
+ª<\8céÐÞºÌîwØÍ>¨\96Xwwn»{챫:öä±·c}PIøÅ7^Õµg\8f\r¾ð¥\0®$o\84\99Ì\92läf2«\12¦\al½Ø§6§;oNw>[»f'²\85©\7f3\99Ù{\9bɬd\ fܪ,J×\89 \9df2Óïf2³ßcH³\13\rx|×\1f0\99ÕϼÇnmÀ÷ëzmùÃjÅÉÒùÜp6û}ÿB¿÷\96³6½2³¤\10=
+hZ\8e³M£Ãô\v8ÙY!O¸þ®\13ÙOl{ÈÌÒ¦×Ì,%z4Ðd\18í£\13ûÓ¶\8a~·¢ßsH³\13\rض\87Ì,ó»þ\80å¬~ò="è\9còK˱\94ñ3h×Ùï\83¥|Ðò©\ 1ío^Ùß6 ýÞÊ\86å3ÈWë÷lFûúÊ~\18Ï\95ðÓnë¡è\ 5dÊ\r°Ã\14%\96ï\8e\98ÀPl \17UÈS ¯§\8bUÕûõÏ\89º\1a\8a`Â;»\v\ 6\18\ 1\0¨\97\84¦xØ7 R¯\ 5ý2¡:[ú?)Ä\8a\1a«k\8b!Du°eP\91\0Añ\ 2\99Å\14\7fâ©\11SHI\8e\9aä\ 3´(\126\b9â\8e6Ò\v\18ü¤R(°TaC=ª(\9b\8a8\1c\85I\9eï\1e4v±â\v\14öЩuD¹
+!\9b¬¶óùL(\96Ô\ 3\ 2O\84çâiB\93\97Jæ¨\80\1f(Ù8¡Rn\ 2\99L\14]'\976Ñ·E\1cÕÛ»
+O\e*Y"¦ÁBµ\bǯ[ßæ\93°cÁ\9c\12³"sRJÄÌ\81\eè\17ýº;¾E_G²&.îMå@H\87\1eêoý¶½ÏB\9fÓQz³=ÿñ£\8aøÚ\84ÌS\9f½ÓØ_|óûKon¨Ó6Qî\8atÛ"&ëø?¿}\a\95í\8bkº¡M¤¾Ù\88\8e·M\19\929(=ÍoßA\15~
+±\82ê1\eÔæÚÏÃ<9\9dÆ^!±M«=¨\f\88\8a}íì\ 2q¬,)Q\eL\94\94µÍ\88©AÑÔÿV¹\ev-COã\ 6Ù\ 2\15N4Ç7&\15¼"x]Bm\91)@©_\97MÙi<\8dENGb¶$ܧÁ3T\ 6"å7\81â\0ªd\b\98a£êû&âö,L1a®KBrMÈ´Í\9c\ 1ì\ e1, \84â~\1a\93Ũ8ÚéÜNjà\8cRC\ 2Í[\90\ 3sm\1fì\8dï\0©ÜZàé²ûº0}õ5¶EÆD=¸ª>z\90j¼\X±å<Ý\ 1U¾ôÚ\a7ÙÓ\aÇ\ 4}î\93¯\v1°*«Æ<°*\13U\94\9d\82q/ÍïN¶Ø\9dlqÖ\rf'Ò\1cÔ\7f«\e§÷¶ÂqKñX\95YX\1f³ð\9cA\7fHf²ß&3µß£zÜìDåãÆwý \ 5\83{ä¬`\14\8bSÙökË.» \19~¢`\8c~ß¿ÐïEÁ°é51´ò\ 2/\86®'l\7fû³\89¡ë2u¶õT)Àu"ùÒ¶\87\95\1e³éµÚcKöX\86\99 \1aW}Ìþ´òcúÝê\8fé÷,@6;Q\ 52Û\1e&\86\8eïú\13
+\86ÜY'1tNù¥åXÊô\19påì÷ÁR>hù\Áø\8bWö÷\15\8cßZÙ5|\86_iý\9e\14\8c\17Vö3G}\15SQ_\14\91¿c\9aLò\91\16óÍ5j¢H°ám£)\1eY4"8ÓzX`\9dÂôëåJÝ\ 5\v \rø\1cê5± \16Ñ\82\e\ fóa8\1aA¨õ~WÍ&Om5Ùn'*\15\9f\10\9f\135ÕUz6\10\1c¨Jô x+V\10%a\15 þD\12\ 4\ 1ø-É \10ëéã\8eGjxWuÊÓ@·¶XÏ\13uU)ø\9b'"T@ÔôäÃ*¨\80"\84bµ[bSû³Î\8cêæ¶tªÞè(kCß\1a}MR\7fg\1d\88'\96\9e?â©\8ci¯²i:(ó¾\97h\1flÂÍ\91ð[\15\9b\98:.É\94GÚ\1a\1c<Q\88r\80'
+Ï\97]&è\9d8\7fÄY\9c^²-
+~LP\v|LÙ\e 'q\8dÂ\90§`u\ 3\ 6Äb\eA½ô´º¤\85ÈVÞí¨Dg¶Ï\19T6ÊF\8c_}O\95ú\84|Èv\92\e>\1d2\1d\8bïP\10}_R\9fÞ½áÙ²ü¹¾}\17p½\85\9bô|ÞïÝÃ<\8f\82%\19IÙ¦4ýq\848\89 on6(Ìæíw$T\18S\96O´±\91'±A¤'«\82²*Sz³øÙ\ 4\86¼âu\15rzìEB«ê:k \85Ü(\7f\92ð¸Yø8\ ec\92\93Ú×µ¿x\8cÔ
+l»&\14¸³$¨d®BGêÃßp"ò]7O\e\9fOíä*\17în\92NóÈ\f\eE \91D\913µU\19³¨ÜA\15ã±\12\8a©\90\11³Å\13\r&C¬öÏ\7fNÔd;úv¢\92D\15õ±Èõ*\GÖ¹6¹\8d¥ÿ©9Z\1a\8b\98mä-\92Cov5iý¥\fÅQÛ\0o'êü\14Bm\14\aï>ù4/ßãq'Â%Éõ]\ f\ 4Ñ,S\19>ðcfË]j,ètW½Ù¥òñ£
+6Á±§gï}ùý¥7\8b-ôSûÈë^\19\05\1aYþ¨(ª\83:I\89P'\vÌ\13L*\19ðbs\9doR_\14\ 1ÅÑÜ\ 5à©ã\ 2pÄ#´ª\84{=ÛÅ
+\8fVîão\80þ'wã\9eZ~ÃlD¡ívÅ\8cÎ\1cm^\ 1\9e8¯\0G\8d-*+QõbÝcûä-ëÂE]ß\ 59¼\97Á\87)\9b¤ÂA*\89\92ñ£Õ\1e\97qÝ®M5w4Ç <µ]â7OÅÔ`êþ\ 6t¨ÅÛ§tâÃýO1ðÔ\92õf£C¦HÃ\9a=ú\952hãòÐJ\1d÷\17ÍíDåº#\13A\17\9aá\8bDAþ\1dÜ\9aä\98ZÐTU\ 3a\ 6\f\88HsÃnÞ`{|ÉAÍ\8fl\0»lQæûÁÆë\10\15Ú\98õ\86:_\10ÿyZN\96\8c\9b\84SÔ¢\99\16ÏHÛ_pª:\8eööÑ\84tHqäÙÑ Í\véDë\17Ò$Ö}"0Ó\84\13ÝìO²ýÎ+¥ýÅ ð`*=i6Á¦g°\9c{²baI5UdÞ<¢E\80è\ 4\14KG\94OX8Ón*@ï\96Ýæ4cc»ÝOãM7˱ÜsåÿNÔ:Ú\ì¢"\9dLÁ\ eX\9fÜ]ÐÿÔ5Û\92\17\#\85 ؽ2:s4w\19xê¼\f\1cumÀ+õ=ÁÜä
+\8bñ\97AÿS\17ÓÞ
+\¹FóËfgn\ eÜ%y\9d\99ï@8IÆäeüq\8c\1a\11zï\a¿\9fß\a\8aÐGÏ\1d²^¹Ý\9bwÞñW^ú@KzöÜ`Å_ò\8fg\95!5óUU@\ 6´e\ eÉC[^lE\87Ó\\ f§¹\9e-O³\13Ù¥Ô\7f3_YùS3_\95ÕC[f+\908:Ñ\9fÍ|µ.\ 3½¡ý\1eC\9a\9dhÀã»þ\80ù*+\8cãl¾R\1d®x,×\96M3\96Õñ¹ùjöûþ\85~ïÍWmzeäÈÊ\e\1eF\8e\1cNµ0ìÏ6¥!L\8b`8UÖp\9dÈzaÛÃ\8c\1c6½fä(ÅÃ!æ²{T\8dö§m\15ýn[E¿ç\90f'\1a°m\ f\199æwý\ 1óUýä|oä\18S~i9\962\7f\86s9û}°\94\ fZ>5_ýÍ+ûÛæ«ß[Ù*ò|b¾²~Ïæ«¯¯ìgæ«\fH\81¬M3Ë$S\ 6$\1dÅg\99ä\b\16\9c,F\98\a\84\r\92ÉA\ eûÒâÕ >øõO\ 6\15N\97e\b@Ñ#áe´Ý=\9bLÛÊ\8azÚ\1eì~×Ó\9d\1a[4\9fÞbÑ\8aJØÆg\96Áé0\aÖ ñð\1e\7f¤\90Ê©å\ 1²ÝZLìQÝ\15\ 2\86\9b?\8e´îV\8e=«ª\88¡Ý\85dÑ\937æ\ 2XD%;\ 3Q^¢\88\ 4 \eä¼JzWjVÈ´j\12b)\10ôfÆ»_,˶Óê0\85\94ݰíFKªQìGjÁ~`\9egàý\ f\ 1ý#Ù)P\9f§·\91\89.3H]\92\8cï_øðÂF'X-+L5\18èyú\91v¡î«Ë\ e)sX¼p&Ú×*'
+m\848Ô\9c¤Ø\1c«£ñj Û\15\8a?[2竦7¶1dÜ\9dA\95n\88\8dX\92M½\9a\95Ô+x\12Y\ 42iñ-Ö\15\b\ f,:\8e\ 6`\8cb\93Y\eGÝ,Uãv¢\82\83B\81\10½ÇPüA\1eP¸\84\ 6¤\10ß\85¸×h\eM©Ã«Â\1c\82Õ\9fÕ²Z\81\8f\11Ù\9eI§A;=å\1ee\10Ñm\ 3Ì\96\82&Ñ\12Ò£\82Së?®æ-®ïÞÍXT\9f®:l/«XåReEUÝik\91²)GÃfu4ü\8f\11çn\9d\vO]-\84úv¢\82c\82ÑNï)Ūþ¬VÆ2g¹øE[\8beã0"jJ\1c]wÜùÞÌØdÿt\àÂ-ºý/\93å\13\9bmF27|\84\12º¦1tjÆÊÑJE\12{\8ek:\13»\10ddS¡\96eë\9bM\9a\90\12\88T5'SI§\95\92H»\90\1c= ³f\96ì~¢n\96Hr;QÃnH¸zÍj\10ù$\ 1\89g(\93-°cPb²Y\10mä\16*KQ\17"ñ3p(\96vÎ\ eVÔ³vÌfP\ 6\9dÆÓÔ\910ì¥Ùrß[Ñ\ 68®ÌÁ\9e\16\ fãB|Ϥ\12\89¬\9c/O,¨*ÄKQzd³\\839å÷Kó\873Sê^<>ÌLáîz³ËëãG5õ\94e}-5åÑ\8bß_zñ§¹)\9e\1fôÀ`v:P JV\18Ô,\IÕ2:þ\8f\98\10a\88úHªä\99ÈG!\87\ 3^D6×&@\17nYi!\0\14wÞ\96Í\ 4íi\9d\vÂ\e\1duíÙ\1c\9eÊ\r\96Pt°×('K®\88²®ÐØ0\8a$\ 1¸CY5\8c¨Þ\9a\r]Df\11T\0\1531L0ÐFïï\89NÓ\15U'? Äh¶D1ÉÝÌ]Å$x^Ýõ[ÒxÊjé\89ð7Õ\fÐ\ 5G\1d4\94üLB&Å¿TÝ$ ÊfâY\ 4L\16ÈaÒ¯_vÁ5L\8c½åIf2R\9aóNïåfî4\1dñd¹\81¾%Irúl\8a£\ 4[\b\84
+\v¤\aª\ 3\v \v±\93Y\99\8d¸e;¤\10\17s \91O\ 4¿\1557É \1f\85ä\13IXª&/tµ\8b\9cÓi¬\ eØcªyîZ\92\83dâ\14\95¦H\88ð4/bMêFu¹ø¯6`\91\ f\82ÀF½P/ÙTÎ\1c\8c\ fåßèÚ\[
+'\81G¥\8axÆB\ 2Å\b±\9f\17ÅL0ÉdÓXÙºÙ.¯33²²Eüô\8e6.8¶\85£¶Ëðæ©$\8aªGL\96véP£\ 4Á&+¹xW¤\980}T&E\eͰ¶rh\97g\16ªXC!ß®"ÀÌ\1c2û¤göì\18غ.¾!(uªXDPº2\8b/w¯\ 4íV¢ç¨+°Ec\a\955Øñ!rQ\99c\99\7fïWWÝ0 ¾îhý\92\93\18\9bî/ÄÛ\89JjP\12\8b\81\ 5É\1a\8a\93EüÐv»¥¿\94U\12js&ªÒÜÅD`\16;\928\86\85ß\8c pwÓt\8aD%Ü\ 6Göí2\08íæ:\f\91ÇÓÚ\15'^\90ïoÃ\9b§ê\13\8ade\12ïÖ|\9añëÚüÁÜ\96LðäG¹-Scûè¹:¹¨\83å\9a\8eùâ;\1fh\89Ï\9e{-½¥\8cÚÄu\97oK\1e滵x|â{[Ù0£u\93ZÓÜï-oÅã\13[ÿf¾³÷\9aù®,\9bÇ'.VMµwb\7f\9aEÂ~\9bE¢ýîCr\9d0àù]\7fÂ|·.÷øÄE\8e¤åAÃn\18ضÏ0\8ag·ï\9fw{1ÞÙä\9a\89\87
+\11Îij\9e
+\87Ø\9fÝ\1eÚk\8dÜúïa\9d\99\9dÈvc\9bC&\9e6¹2ñ\94eõh¶%,\1e\88¤ý\99mñ\96\ 1\1dd¿Ç\90\'\f¸m\ e3ñ\8cïú\13Æ;á&\9cM<}Æ/\rÇB\96Ï`\8ag·×\85|Ðð¹éî/^×ß7ÝýκÖ\9bõ3Ë\9dº=[î¾¼®\9f\1aîªîÐqÙ\9cé\8eä÷hQàCi')}ï\18ö\ 2\1fo\a\14EÍ`\9cAþ²\f¢\7f6ç¥Bm\b\8f\8b¥UÊK«Å\899\92*¿*\99Ù\11wm¢ñ7`\9aÊ\94QïJ\9cVéÕ\9d\ 2\88\99\8cåEåúH\ 1\11\9a\ 4ã¨\ 2\9e\ 1\f"¸ \f\85À´f^\9b\16\17BgÌ\8eçm3\ 42I\u-\ 1àÐPÕ£n¾ªµ\90
+ \ 1\86[\ 1§%O#ÄËnF\ 6?±\ 3eA
+;\1ar\80bQ& /öV\84 q"êH\8c¿ñ\9d\139¡Þ{\1dæ¦Ái\1cæÞT)ëÃæ\80 \89V\931Y P\ 6¯ÄpïæÚ>Ø\ 5Ã$3ÿm\0¸°C\90\8a\8ajNvjÞ \WM\ fÊ\87Ê|\96 \8e²$i$Æ\92\14%F\15Î\1f\87å Õ£ %'ï`u¬VR:7;Ĥ¹\19:SÙ&\8e@å"¶&Ac\86÷\ 1H²R(êXÖ\86½KÈ\82RÆ\19\vÆ5Yf MÜ´#ªð_¢\92¬\86iuî\12o\84\ 5í UÜ\9d-\8fØ@\81èQXHY\90\ 3V\19\ 5pTC;È\0\16,\87Áp'¡\ 6WÒary \ 6G\91$\9eæÎ\8a£Ú,L\ 21\87;\90?\95Vuõ\ 6ÞZL¥ÍÔö°úM,É\12\ 5rXG\1dZ-R\16ÏD_ \11V\83\13\9a\8b|Ý\ eßk\bÚ}íà S\92{ÁÞ\8b\19\bwµ8á\87Ïé°\92q÷Ì\ 6ô\85w¾¿ðÎOÍ?\aÎ¥Í
+V7ì÷z¦\b\7f±ªõY%Y\16ö1vü\16¬´]\19ÖÔ$ëî>\f˵\14f\88%Ï\80Aq \17\13%k5ï±}Hß\83Y*\95_áwÄ~\ 56ÊFV¡\95i?,ép\92Øs0ìñwß\997O$MLv\eº\8ff¨H\16¶¢q,\86\´\9aòÆ0\ e\10g\114å\v¢öIý0\8a\9c\17¯\9dx\86åL\ 3L\96}îlɤ\9aàA\8f)\88\8fc¨°Wof\8bá0nÍàaÆ\14ØÏ!\90^Eõ,\ 6MäH6\ 1þocP7GL$»mT\14 w3¶p¼2\fçÑ.\18\16\ 1Çnº\r ®\8b[B®ÈiYÚÁ\99\1e,HÈE\95ûÕþ,Z\18Öh\86
+¢\eô
+$lêÎÊÂ×j\9c\13w\127\89£µEö\84ñ\91\93\8aýa)ʳ\95×I_DM\ 3îfEÌ\1aüX 6\89Ú¬ \ 4oÆD¶v{ì\86À1!j<³\99`6\19è\18[æÙRaÝ\96Ý\89[$è¦Ã¿&à\8c$\17c\90Q\92²l-·¯n\12m¶ºIÊ`\9d\0ö\87äi}©'ÁmvG-M
+É\84F/2\7fà[Úµ\rÁ\8b>Ö\16_%`! \19kßÚuí\12\15åó.«àv^ãënøF\eDÞÏ¥Î3á\8cÛòØ\ 4ÑEÏ\ f\9e2¡v=\9eÙ\1f¾ð¾«¨ûä©×\8c\ fÂ0¡¤Ñ\7fÿ\1cí\17\96-W\91vé\15g«\86¿X\8dË\9f\88Ϋp\8f\16Wû6{\0Ûc ÁªxC7ixÈX\8bRèOë¯U\19\96úyÈ-,X¸ñþñ¼F6Æþá\95\9b_3/h\8a§\8eÿÖ¢\8fÆr§z\1e÷päGmñ§\93Þñ¶®å±\95á\83Þß¿Ò{´\ f\9dKªé-\98\8cÊ\80\19-L\87+\80\1a\97>¡qéó©_½ji\7fTeM\8fV\ 5õgÛ\13Q;¡ô\12+üÌËñ´ýULü\8a}Cèç\18Âx^£³\9dPØ\14}ü\1fj\9eéKK7\14ÏÓ\84Õ\aÚ|\\97îQ[#Ô\95K\8fÍ
+\1ft~]¹\87m5ugãB\9ezçÿû\85|Õ\84ð-+YâcCÂ\83ÎAçú½\95ü¸î\11\boº¨WÌîÄÏ\vU¸\85¾\ e"~@\8bnX3\8c\8dz\ 3\93\84\131Z©\9eAÜ\95Ø\14Tê\80 \ 3áL\90Ä\91ÓÚ0ÿ\9bþ\r\9eÝ\8eßR0[ÄQ\8b´\ 4+ªóc³Â¨\9dô\8bÂvÍ\8d:\888çL¨!wDïu$jÎT\85ÕjÏ6":\P\1a\94ü\87ÑjÁ\ 6àÜ\b\vÚåM°Ô/C¨'ÆD)
+Ê\11Ã\9f{\13Ñ\94/\88
+\8b\a\14wm\82Ê\81ø¢".Dí4R²á\11\81R
+\93<H?Ýr\f¢` \9a\85`\10Q
+MxA\8c¡æ\86£\10ÒPTÒw\12Ç\12Ý<±/eªâÌ.\fá¹à×\8dñáÝU\96Wªº\bØõ\r\88ººÏº\@\ 6¢"¨ô\ 5ý3O'éM»ýé\83\vU\ fô䵤Ë\v¯}\7fñµc\86\1cîú\ÈÔ\86\ 4\86åXòN\14êiUÿ´\85:\91l\12+7Íê® 6\89ÎNH¯¶d9Ví\16rÇd+\111\e\14]U]$2×\8d°\8f¢(KÏs\11ü\9e
+R,]\r0a\96zS\83äN\8c#¢ì`\9f"@Î\10 Ȩ¸?§\9d¤Â\1c\96\94çÚQò\81Ï\80RØg ù\19å\86\83Û\82ñt¬\14ó·SÚ#®¹\9f5\11ÝfvD¸H\12Ü¢U$[Iþ¹ÛÊ\9d\ 4èd½%¨º4\89Ä\aµ\ 5m}9Êdq\938NÚÍ\13\89\8f\ 4jXµ\97åA\9f\v{Ý\15\1f\v\84Û׫T\18V2\0 ëpóI(^ÚÒ\8do¼ÞM\1f>¶r9=8O¯¾òzc={lLÌçX\18\aÕ¿L!À\93Ø4\82ªL:\95à,\94\ fi½ î&>Ü ÷Å#õÉEiÊ\ 1¯kÊÁ±{p¼`\8e\90Í'\1f4!È~\9b\18du.ÆXF\1f\1açø\96ïR\10¦D^Âr¯\1cÔ«sß\96õÚîÎügõ(F\7fï\9f÷w§
+Øl\9a\b¹®N\86,ÉKpú«éWiêWÉK\82ãyI:¶þ\92$m&%IVµÝI\92AE\90G\aíÏbË´ä¾\eì÷\18ËèCã´= ir|Ëwé\ 5S~+i¹\97$û\f_ÚÕ\15+\9fU\9f\18ý]WìÒî¹
+ðw-àï»\14_[Á%}VlBý\9dÅÿ¯®à\87¢ÿ
+\1cÿ\ e\14í*Së\86\88²®¥²_.èA\s¯Å¾R¬\922ò\8eTïEÁ´ýúÇ\11¹æ\be[±MR\1e*¬Dx\13þ´âVSýI0V\15áûó\1fjXD\8a¿\ 5U¸8\14´´\91¶&w\87\0\8bëpÿµ|\7f \1e\89\1c\8arxRÆ\12íþ.Íü¼\ 1\a¯\J%\80ÆPI[ê\1aI'ýª£àÂ.«o\97\8b\15E#û1\82Â\ 5@\872\18êûJG°ÞâÒÐÅwÄqLª\eÙ\98\92ø÷\ e\13\¯Ô&\84\rR\9d5Bü\ 4å<Û\918Aÿ\9bÅoõ¿1Î\99\ 3ªS\ 4Þ[ùóZzÁÊ\1d\f1ä\94uívë\9dز#ÙË\80Ê\8e\9bi?±\ e¸
+*æé\92ܲSPs[øÔ]¢æjÑ\8d|áÞVèÈ\r}\Å;T»\ f\94\89\ 3\96¿\11\1e\ 6Nò$±"¥ËA\9d¸c.\94sñ \9d}¯Ò,`É
+\a¯\ 3ÉV-³>J\b\9f\8c¯\98\89\157\ e$ù²rÍ
+°\9aB"\8e\84¥Úðµ=±í\88\9b'R£\84ª
+h¤E\88\81äxïèzÔE°¼Q¥9ZAD\10§Ã¡vai ËøR\8bºs4ÄOÉÆ\9d¶S]Su\ 6Wá\1cÖer$DýM¶uGD\97<¶òïìl\9cÆùÎAúùè(\7fÈÔ^QÖ0\ 3\80é\8f\1f.\9e\ 2¦w\ 1§\9f\16ÿÄêÞÄ\9b\9e>¸Ô©°'ï\95µ\97^ûþâkÇ\fM\16éæôÈZ³ÿþ\ 1\ eg\11\9fê48Òf@ía˵ç(4½½6\14g\bTÄP%A\12\8fû6Û-@×\91úv¬{Ô\11ÛÆ½yâV,g@¥n\ 4\9d¸«ö\1d$U-4;Æ<i\91Pñ¬3´\e/Þ)¶©ì\1e\ eóý!í$x_\8bÓpí¨3j\87\8fº\80õ<l¡sø\ 3ßUQ\95ë\r_¹\80pP-U`\87¢@´ ¸¬uù®BZ\17\ fÞ\ 1»#Vu\15¼L\10¿=,\ 1~¥¨BS\ 5ñ!ö¿\1dëk\149ãêù¥\88«*YÂ\8eïÙl'Ù(wUW\1eDΧÕQ%l \12\88¾©D\10'_\ 5\ 4lf\bC°É'#\ 6¯:\b\11\96À\83GëþBé¤ú(9üºL\aq\a\0Á®§º\fJ\1ds$»ÁæßÔÌÎu\97\81i#7c\10oÂÞ¹\r\90ßø\16\1e`\9bQ\83J\85Õl\9b@.Vª\ f\93PTïåÕ¢{¹\84ûý}\98ëÚ\93æ\95>\89Ô\9c\0 B÷\95ÊÑpß\9b\800¹O'ýôgª\13ÙÛ¸Çwß\12\16ß\ ef!1l9\91\1cw\9cD0\12H\9ar½µ#z=Èÿ»z]WNÜ(v×lSZ\99Å0\ 4£ö5WqïÉcUð{À\ 1_}åU"|öØ8Ý\9f«×
+Økúµ\ 2ö\9a\82íj8.æ¤Sk§ÆÛµß.\95ß)ɫǫTÿMÏÖ{\9b¢Ý"v\87¦mÿÙ<V@×´õ»iÚªò8\874:±\ 1\8fïú~]\e,ó;e;W¦P\8fþþ áÛ¶î\9f\81ØÏ\1eß¿Ðã\9d¾Ý¦UúÚ\8c³\14Añ\8eSK²?»Ñ";£E>ë\£¶àÒãG\9bÚÖ¦Uz\9b«-¨fbò³\13ûÓ¶\88~·-¢ßsH£\13\e°m\v©nó»¾_ù®_\1cït·1á×\86u ×ÏÀëg\8f×%¼6|®\80ÿÅ+úûÚø«KZòg¨õÖãI!ÿú\92~¨\91+5ȪÃàRP}ߺÌ1µ;zR-\9blܹe±Òб\ 5\88q«·"ÈÊóß\8eA\9cÂê*C\ e:µÄ\9cµÊ\93\ríº\936J.'UÊqDÒoVÕ \ 2´Hüf£þàjC)
+âm\94ú ¹éY5\99F+ \16±\1dTJ\15Rbì\15Àñ2T©qµäü\9fÿ¨\80\90\15äÞð~\90\18yûÇ\92\ 1A\93\17u¡ð\16ÔÜë\86#\9bZv\19`ÝE>\ 6$<U\ 3×ÄnÅQ\18#"\82\94áÙNu±õk#üi+\16$e5´x\85\82¸êäaYêÖVEál(CUp³¼$ôÆ,,\ 1G«ÃÞ\8a\8a8\9e¨«¥ÍßNÔLÝoEz
+½S\9f\8dñ\ 5\99X¡N\9b\80µ$µ«\16\95R¡\ eչܤ-(duï\185\9bD¥ÐÊÀ[y´AcÎKO\9b\1fTÍ9\89«ZÙù<%\95\14\98Lµ>!\82:Ú®ÔG\9b"G¥6¦jÙP.\9d\0ú@\1c\99êGja\95Þ\1döº\1dä\87b@[«ó#]@õ@\19\90:Â\13ê©À]¦ \9fs§ª$zR\96#ñ±¶É&\rëGÕ¶\8aöø¤\92¯¾w\0Më\11\9f |hîÝ\83ÆJb\89\ 16lRYIÅ\99íþqU1Ã×*\11¬\8a%åD\v-4\9f5¨
+\8bÜ\95.¼\ 35Ö´\vC¢'ôP\98\aò\91-$\f2\1e¢Å×Mæ¤Ý\14XÆ\ 3.\94\9cb»\16 ¶¼â(hÐ\1d\1c¸r´Èü¬\81\13ý§ J\ 6\84Ú \93[OL\91D\95\18\99\8eɺ7Ì\84I¢\8cF9l8\93ÈÞ>l4\83H±³ö1k\ 3\9a\83uUNu4\GÅGʼE,-\83!À\0M\8a\f\8cªSí\90ÈJçøã\95\93~\93ûZðfoäW\9f¢ÚBFÓ\96BÞ×ütÙ¼énxö\9cvb/ÍþÛ/}\7fí¥cv\9cÐ(\80\12\85\7f\10\16º\1fJ÷\v¤ôFU\18¤\12«ÁÂR\84Ã*(¢´ZER0\13JbË\v<´\1edm\ 4\94J;åh¦¤Ýê\9c¬(ÊN\81zD)\15Øk\87\ 2\ 31\16IOó\aeR)\8d"¨\14\12À\r]\ fGb;zó\8cvÚOÏK\ 6\15^RÇaÚþ|¾²\95Î!@\1c\11T¡£y^2©0B\15ù\9d=b\832îäøX§1G\95¯/\16þÒ©ºâ¨Á\b:\ 6ó)Ä~±æ½ñ*B\86m§ãJïl\98kQ\99õ\8eæXó ʬ¹è2\96Á\8b_ÔÅlÌ~^\v\9dÆÌÍ+¤S\19\11x+
+\85\99ϳ\17\1a)YÁi]r%²\8d6rÍc\92¼@,E"%(P}qQf>Q¾ý:<\1a´££õ\8bSL/Þ_²·\13µÊ\1eV:8ö\84ë\8dY;t¿S4Rà\8b\94VÙ\83]§TÓ°\19Zqã«Ò ?\ 4\95\80qá,W\fÊ/»Kwme×\ eP\16¡Õa\882¨\b\15x\14\86\1eű\vLù§Ý\9a{f¹¡VA ÚÅ\a¶\0\8b\fõ°È\11Á\17)pÊä³(p\ 6rÊW\93\93â½|f\14mÔz9\80f4Z)\98ßD=ì£R\ 5\ 6É\8b\84\93Ø\82^TÐHU\81í\83UÜ\10ö«\8c\1dl\81a\r&ÙQÓSaeÔ(\95`Áî¶+\8ex\81\vïî4Hè\ 6ÙÑ\12\84\19e\85×+\82L1+@\9a¬v²\fYÙbè\ 5\ 6 \ 2%«6¼\15TMí\1a
+È"ûáIýºbwMb»Øn\9e\88\89Ì\98!Î
+ma|XÂ`¹2Ò\ f£¿_ ÷Ðm\10\83Ïa1x\8bܤú>AWuç㧪Úóàþyñ\85WmèÉS\83Ã~Á\16\85nÙmQè\96Ý\165lAfÚ¹3ü\f\9bP·\ fuµôÎ\8ct5(u[\14\ f7[Të·Û¢Ú\vÏï&ûYäUÞÝ\90f'³Ñ\9f²E\95\94ïmQ\95½W%ayÐÐÂÜ>±E\8d\1eß¿Ðã½-ʦÕ,\17Ó$ C\80ýçLëf½âÌzålt\98ADZÍ}·\Ø´\9aåb< \82µ=ÓÚ\16\99ÝÜÚï9$÷Ö> n¹\18ßõ\alQ\85\8bòl¸è\13~mø¦Ëë\13[Ôèñº\84×\86\9fØ¢þÞ\15ý\1flQ/.)\894\9fØ¢ÔãÙ\16õå%ý,ϼ^äÝe\8eª 4æºÚ¨ï\16¡:¨\81úËÓ\7fm°E\8e\86`^µWæ×Q\95ZtÈ\96\83-ªù6<\15\7fÓ¦/ìÔ@ø\83R\fÍJsÄõD#\ 4c\15r\8d§æ\96\7f\15@4(ËÑdM\8b0YI½\96\8fl[\8bUé`\1f\0Uب«¹bo\8c\9exûhö\ 2ÉÎ\101xé
+\ 1\1f=H\ e \19ßбÐÎ\f3}'óHP:\83¦ t\1c}ݶÐZ"Eì#Ä\9bô@O\vÑr\9e\99ÎAÅ\15¨j{\81`\ 2s"NZ\95ä\r\1f¬Ó¤7©r} \ 2G"²#%\15 ©Ãs4^«{kô5\97e¾sÐN£óËê¨}c\9c©s\v\91§¯\14:·Õ®\9b²§½»ÍÕ¾ò?O\ 3 \1Ìõm\ 2õ_J9ÍÛýÓß\12G\ 12? Wu#\9bi®ý£\92\ e\8e6·céO\8cáMçøù\93æ\12-\ fò¤_{ñû«/\1e³ÿ(YÚïÁz\fÛJTݱíU£Ý<mìê35¶ª\89J÷È[\ f©¾\9c¨NãD%\ô)\9fZ2\1d:Îä\16+\90M¶/\0ayK\15Ì\884çàãé\97 \95QJ£\17+jµ\ 1E\95\12!êjé#\14tÊ\8bÙ°âà:Da\953Íó§I\15d-:î*Ã^ØL1i\1coðÆAãhI+\fÁQo\9ez:Z\93
+\1e\9e\85L\90·Ð5ªËÉê4f\13×|îÁòåX\1f×á¤yv?×Ü\ fsî\ eG%`ÄâZæÇ\1fJª\17ûA75KΤM65i\84íÉ4èú³ývÝ\95½Ø\ 4¡+?*k(§ý:¦\8d\88\10Õa8MæÜÅ\97§?ä\1c_Wõ\82\1d_\92ªü\19lKk\eg¬ÈU\9exö\\95,\1e0\8d\97_z\159\9e>7\ eã\972~c^s×úb=\8f]ë\8bT\98\9eZ×EÅÊN\0ÌN\0¼SØ\ e\8fY¦þ\9bÖ§÷v¯\ 4\8f\14\16Ëêó\88íϦõéwÓúøí\864:±±\8eïú~¯v»Þk}-JãQK\v\98{®öÍ.ß¿Òå\9dÞ×&VZB\fKüá3G×ý$ô¯N\85^\9d
+½\9e\ 4üÑ\89\89ÿ¶1¤%´\89\95\96\10ËR¼\96P²OCm\7fÚ&Ñï¶Iô{\ eitb\ 3¶\8d!-a~×÷ë}\11\10\9d;%aÌøµåÛN¸îsÅovù`\11¯-\9fk~\7fñ\9aþ¾æ÷ò¢\12\9bø\õ³.Ϫß×\17õã¤`¹Áe\84wq\b1¢\1a\95-;j\8cU\16´\ey%æ\96\18ŨÚDYz\0^ÜCa¢\11\9fj\11(¥ä([u,½æ\87ª×\8eð\81\1dM1\9bØeõô \82 F?Q\99\89ÙĬdæÚ\88\83ySðú \91\87\98(\11WN\rU_\ f÷Î&Ç\16\ 6+\95\1a(rl\0\83\9e\84Z\15\81\a1\ 4àM`OÛ¡,KÊ! 2]a\ 1*\ e\r^íjjR\v(ÐL\9a|éB\ f"àY9l§\86@\94m= @\ 5Î=\r!w³\fkOM½\92\99§\96Ý\14Шâ{æîØ\92\156ª\ 3ªbU6ÿ}£)Q\93jM\12mGKr\96-dw«ßZ÷=_¸®Ð\97ôä¶8\ 2$V쾬á\8bå\83\92ÍIøÏ¶RO\8d\84q¢5¬\84ß µÅ±êf®%\88½
+×å=r¤E\15\1d\88Zn\84Ë` ÓQEí\82¾'H/W
+léî\r\ 1úîÄR\1e»Áî\ 6%\96à\92ÐNµd\14ôªb(Ñ[¨Êæ\ 3$¢y·DÓz\82Z}5\1cø\99\88\10í6\8b·\1dþ×(?\9a\90®]\9c@\ 4\13Û\96ÂÅ Dp\ fyñæóª#`i\15xé\b\14ð4b;£\0Ð\1c\95\18\87\84§T=®¡§æ\92\18î^ÝI|#þ\8b\1d7T'ò\89;n\99\94-H\1dX3\11GnI \96H\12I\9e5÷\ ei\e*ó\85[í\87úë\14öy\15÷\9a/x¶#\1cY[\rÍM¾ÜH\19z+\85N|B&-Wß\17\1a@³jz*\8f\9eRé«ù\9fÈ\9b^÷\13 mk\93ntGÅ & \82I\r\9aëú\86(\a\1e\90Z\85Ü\7f`õë½Ñ\fE\82ÑåKê¨W°\ 1\b\07\a]\ 4ý?\1a
+Eg\87\ f\18ç7\87\1d`R
+®¾c\14¢áÖó×ï\ 2\ f*\17x³Ûàù£\11\18£Ob\ f¾òæ÷\97ßü \0¡îØ\95UØe\10\10ÊZ\ 4+ºr\1a¥Omv\14#hU-\86\9fÅ8oÄNùÕ6±àôf;\81à\17Eç'vE\84Ǭ¹\95Ç \e«XêOÄá\9d¤Xî\8añ³;\8f\95#\92~%wf'FÂyÚÙ]¬Pª'¹ãì¨`+\92l¥\83±ÈV9\9ce\9e\95Ìp\ 6Ïvf8C$¸ê.\1c"\ 2\a\1ds·õÉ\ 3\1fU0'ö\11¥"Ãb%\82-ÁÓ\84|h\1dè3ô
+4\9b<â\a\f\81\ 2\b%*\81\8fB
+\as\19×VÊ\1a\87hÕ\99l\9c¤Ç+\b\91r\9eªWØÇ)\ f?e
+\95N\12ñ\99¯\96à°^/\90Ncq©¤j\ 5®e)Vè¶í\rð\80kj\95\9d\82\97\14î\87_v\91\87FÍ\16z$F¨\80"¾ærov\9a\18\nP¥®e\191\89\ 4½°Ë=ßÙ\
+\8eÚî÷Û\89ªëggǤaûî1\ 5N´pÑ\a\91\82<\16£5[\82çÒ\84¢\85ûYÂ\13X\7fB0èb\95\86El¡\97l\88#Ú\82\933`\vα¥¶r$t³Ûd¶«ìÕi\f(\ 4ËÝñ-\97^\87h#æ\11h~Osrߤ*\83\14\ 3YTi¨¢<Ó\16+\12\89,°º\ fXÏ6»ÆÁ\aUb\12ñc²:h±7ùB\86ËÚóì\19n\10\89\1e±Â·®%\91\1d\ 6$!³ )\1aðªMÒËJ\8cK´M¥\18¾U97\94¥åWÌDQ´»g5P\vOë·\14w×\89ª\eív¢RFdÙVã$\86 »éâ×ezå\9eß\19u\10</go#Xµ%ºÆ\1d\fmäÙ\83UÕÑõ\13î\13a^{ë\ 3\1dèé\83/Ä\1fÔc6Àç´+º%j]<\0ÝÅì³:\85tu
+éÙ\884:1\13\93v]³DñÞf\89ª÷\92\87¤K
+¨\1d\9dØ\9f¦hÛoS´õ{\ eivb\ 3\1eßõ\a,Q¥ì÷\96¨\8d|\83\92\1f4´PÅO\fQ£Ç÷/ôxo\87Z»_Z\0W'\ 4³²\9f\r\ 4»3êíΨ·\9fÌ\r£\133Fض0\9b\85M«l\16õâðxfõâö(\bíÏbËV\ 6&\89ý\1eC\9a\9dØ\80m[\98Íb|×\1f°C\95í\1eÓlLøµáÛQÏÖgf¨Ñãu ¯\r?±Bý½+ú?X¡^\Òeÿ\fçÞz<\e¡¾¼¤\9fÅ\1fDa?\18À\13I\15\86s\1f\15b§¨»A%HàG2\10³¼X\9evÜpôí\88.¤²
+ã¼ÞÎ\eüÖøe½\9d\15\97\1a×£\97D!yC\90\b\9eVß\97-iûD-\ 6\18~óÔ]Y-0rÞ³Yx³\80\fª\94\10\89ßTöj `»ð\v\18\11X
+ò\1dr)I\98\8dônáÂGi0Ø\11ÍG\8eûN©Ï*;\\95\85\;UR\8f\82kXUM'â\1dËJ\10\11ÎÝ&@\88ª¾¦\86y.\14ò\ 5\18Fü»u\9fÊ{¶\99\1fÔÑ\80\93h°\17\9eªøîØß£X\86½j\85\v\92_TÖ\82\ 1\86u\1a\ 3¯R¶ò=|Ë-Y\8eµüm
+ÿ\8fD\0$!\11\83)(%\a¤¼µ\15ø2¤ÁCõ¶D]2IëPµq \96ÅÒë5NU\1a\8b{Â\87§äóÕP4"\98÷ëaÆ\93µ£\16G0ï·5\9f[.#¬\1aY,ie\ f´R½\ 4-\92zÙ¬,hËÉ\1c\88U\a%\ 65\12tmU´ôáØØ´Ú*B`¸"\87@,"°Ú\86´E\8eºÌ0\11]L¡\1aØc\94\93\1dñl[Dö icäfÔs-q.¯Ê\95©²¾\8a\9dÅCÖ\95\98ÍC®ª\ 4ZÛÝD\ÅD(\82=RGÁÊm\ 1\ 2®\(OCµ1\90û\13µ 7·\13U1·\88x`Ä\99\13zÇD¤-´PiM~F\16±Ø\19Ù%Ù+ó\1cxr H"ógi\a\93\ f<à\18=8Dÿfæ1ì\9cBA\0\96\8fªW¦}vªf~\8bR?«Î øë¨Jô\166¿F\vyf\85÷VºB\8eßÖr\e-ónE÷N´Ð\92ÓOÄÅöóíD\8d\8bùÎ5 \ 3ûÛ\94'\80b·×\7fµHéAc¢\80¾W¼\90kY\99\84\9dTzÔ{<\r\9bV3w{j´É¸\9d¨\94w\15\«"/¢Ôä1m\ f&ø[\f`\1f\16}\8cÄ[Ù\9e\1aìÏßlov\11=\7f2\82yóZ±ÉGï}\7fõ½c\83>\8a\9f©\97 ¹.²¼\ 6Ê\1aî2\83\81\e±Z¼\15f"*6\8a¿\99)\0ü¡\vOè4±£Ý!\15YKYRíê\8aÍÄ\1e \8d³Bpä\97\88£²[×Ô£²ÈIÕ}\8e2Zvã¸-þ"Rr&aM\15Ê\ 5y£zõÖ2\13\0)\12*JäÃäp!+èÂ\84;íiE_ø\96¥!\11©Cy\82"\19\80\9be)a&ã\0³§áVÊá\94µ;\99\16ÆØbÎÍ\ 6Þ*gF°H4/\ 1ô\9d~\9dæV\16\10$\92Ë\9dÖipÍ%\9aÑj6Ä¢Ö/ÉÃ\86áiþ:\1dTºÑ¤×\ e\8f\96/Â/\15¶ÑKì\92\94\83\82ü]}$\19 [\voÊâ9\821\91ÓãHǽ\fÑ)Z\e¤\97\13U[À®\85CVó\0\13¢Ê¢}\1fN\94e³MEÕi\19ǹª\17 /K¯ÍÌë\14¿çhCpbO9j\13²n'*\89¿2\ 2ð\1aËëÅ\90
+ÂKÔår\98øi\1e \86C\80çª +\ e\1ff\ 5cÝ\98Òê¼åëEÑiºfêI]åå\1c-\89\rk'\96\9d&\aפ\8d\e\8e{ÏQÛmx;Q \85áË£e²\89Sb¨\v\82\a½\9eø^X"n\ 2û:ìê\95oLrðÞ*%ÈxIÂ&)¹ª\9c.\93ä\85+w\9aä\83ÐJü¸\96rú\89Ï×\91ªT¦§õ\e¡\9d©»Ûãv¢Ö\eÞx\89|?\1a¤¼¼w7× é*íμÙ\12\9eÓîBõ\88ÄâhýÖlÜé|ÁÞNDà}¹·ÈY]U¾\15çb:´·.³û\r6³\ fÊ6F\90ïls\8f-vUÆ\9e<V\15í\a÷Õ\8bo¼*kÏ\1e\eláK\81[I\9e|3\97%9éÌ\Vå`\ fÎz±MmNsÞ\9cæ|¶t\8dNÌ\ e&ó»\99ËôÞn.«Z\8f7\97IÆ\9c\9d\98Èiæ2ýnæ2~»!\8dNlÀ㻾ß\V¿ò\1e§UZT\0õùÒò\87ÊÐ)àî¹Ílvûþ\85nï\8dfmrebI!zÄÏ´\1cg{FÇã\17B²³?\9e\0üg'f;±Í!\13K\9b\3±\94è\91?´ëìÄþ´\8d¢ßm£è÷\1cÒèÄ\ 6l\9bC&\96ù]ßo4«_|\ fþ9güÒ²/dø\fÄuvû`!¯-\9f\9bÎþâuý}ÓÙo-,ù¢ÏígÖíÙ~öõ\85ý0\88+\11\8dTuW%I MnÀ\1a&ÐQÖ\16\93gĤ*k\96a\91\ f\8bÝõ4BÔ\17I"'ênx\81 \9fì.¼_`"ÀuI\94\18?¬>\aÅé¨2£Z\ 4KKö\a\9cN¡bui\89[R\95nYR$:P¢@ö0 B\9eJ\9a¿ª\ f\ ej\92çÏBG\98s2Â\1dm$\140øI\ 5Ò¯T1C=ª^\9bJ5Ô\9d\17þuï\1e46±¢
+,Ø¡Që\88rUà¶ÕòÇúó\99Øh)\ 6\ 4ð\b¼ÅÓ\84\19/eÌS¹hÙ*\89ºu\9bà$wp\fI\9dM9\1d-Ìh\a``ÛPÆ\12à\v\16\9fE\0~Ýù6\9fD\1a\vÏ\94@\15Ù\91\12uÄ\85\10è\17ýº;¾CQG¤&\16îM5?È}\1ezoý´½\7fn\9f¬ÓAz³-ÿñ£\b\86Ia`<{§ª¿øæ÷\97ÞÜÐ¥m\9eÜõèvE*Öñ\7f~÷\ e*»\17\7ft\83\96(}¯QÜÑö¤"Þ\8e3ÍïÞA\ 5*Cñ\81ê1\e¦æÞ\8fÃ<8\9dÆV!\91M\8b=¨\f\88\12níèb.VV\94¨\ 6 µJKÛ\8c\98\1aì̺\13\18\0³&ª 3\83Õ¢\13N4Ç6&\15[5©<)\92|\85\r@©^\97=Ùi<\8d%N'b¶$Ƨa1¨\16_\95g\13\90\r*U\bôq\9d\eÝ"\19s»B\13Ѫú\9aìØnÝ\8e\ 1\16\r\81+õ\90-ã0\16\vLñ4\7fl'5rD)\14\91\81mØ\92_Û\a{ã\eÐ({¬é²û\9dº0{UK·\1d2æéÁ=õÑ\83Ôö};V\1d®\14îô\8a×Þúà\1a{úà\98\9eÏýð¹>;\14\8bu\1f\98\94\89ÊÌN±¸\97âw'WìN®8ë\ 4£\13Ó\18Ö}`Rê½½2ÜR<&e\16¬Ç¬,§?M^²ß&/é·+\ f7:±úpã»þ\80bÁ\1drV,
+\91)ª1\7fiib\8bEO|¢Y\8c~ß¿ÐïE³°Ù5 ´2\ 2/\81®'\0\7fû³I ë2UµõT\ e`vb¢¥í\ e+.f³kÕÅ\96ì\81\f3a4®¾\98ýi\ 5Æô»U\18ÓïYbltb5Ælw\98\ 4:¾ë\ fh\16ra\9d\ 4Ð9ã\97\96c%ãg\0\95³ß\a+ymù\89jñ÷.ìÿ ZüÖÊbÑûD·X\97{\9cÊ\17Vö3ç|Ú\95dCýb\82³ëzË/ZÌ\1fר \8bZh±¾\95IfÑ\bÙLkËåWX~½X \10´\88Ñ\15Ó|½$6Á\1fZäb0Ç\85§\91ä\9bv\15eòÔVtív¢RÒ É9\11Ĩ:³a«²\8c\8aÚ'ÐÞ Á&éªHæWO\88Í\14%\17Ôa\ 2Jª\81\8b'Ê|WMÊÓÈ\93µàÎ\13uW%ù\9b'"P@Ôôäê¤\0é\8dNµ["Sû³Î\8cªä¶ô©Þè¨3g0[£¯Iêï¬\ 3ñÄç\8bx*±¥{\95K\93
+Ûí%Ú\a\9b`c\15ð\8aML\1d\97äI\82\14\fó\9d°C9½\13\15ëË.»óA\?¢ì!\e¸\92löÝ`\15ø\98:¶\ 6¼¹E\ 3\8a§\82u\ 3\0´\8aÓk8Ñ\80\ 4%\94\95w;êòc\ fís&µn\94\8d¨¾D\89\80M\b\87l'¹Þ\13îfó.±ñ¶}I}z÷\86[ËòçúvaI¶\10\93¾\95Ïû½{\95çQÀ\ 1L(-'¡Îàq\848\89 \ f®âV·îáw¤d\11Çl\1cO\e\ey\10ÁøÇE\9f¬Òɪt£Ã\ 2f\93\12%\92!c Ë\14 ¬*嬵\16æ=%N\12n6\8b\17ÇIL2Rû\84ö\17\8f¤¤\v\8al4¡\82\9d%=\15ó\ f:R\1fný\86\13\91ïºyÚø|\ 2%ªT¸»I:Í#3l\14B/\146ÎÔâ\13\ f\96ÐÒ¨b<¡E\83lUÅØâ\89\ 6\93!8ûç?'j±\1d};QsÝ5Q\1f«i-\96\1f \9c\816\96þ§æhi,b¶¡b¸P¿\W\93Ö_ÊP\1cµ\rðv¢ÎO)G\v|w\9f|\9a\97oñ²\13Ô\92äî®\83$\80eêÁǺµ\ 368Ðéªz³;åãGa® g\9e\9e½÷³¿öæ÷\97Þ,\7fR?´\8f<íIqNÂuT\89\ ft¿ºÏ\88n²X<¡¡\92î..×Ù&\80ÆÈ'\8eæø¿§\ eþ?\89D\7fYÕAì<Å
+\8bVæã/\80þ'Wã\9eZ>ÃlD\1dív\99\8cÎ&ÍÝ\0\9e8o\0Geï\12\88\95¨l±î±}ò\96uߢ©ïB\16>¶Á\869Ī\r¤²'\19ßY\82!÷Û¶ù¢=Íñ\aOmwøÍS±2\98¦OJ\87e\a\92`êÙpÿSü;µÜ¼Ùè\90\11RkO\9c\99Ý(\836î\ eÔq\7fÏÜNÔLmÇú©ºÏ\fKÄÊo\1c\\9a)ô\94Ȫ\ 3Â\v\18P,öJ¹º\8b¾ä\80#gÃÑE\84c¾\1fl¼\ eG¡\8dI¢Êé~øÏÓJ±ÜÛ$H¢\16À\14=\1fm\7fÁ¨(ieo\1fMÈ~\14C\9e\1d\rÒ¼\8fN´~\1fMb\88\ 6Z\9ap\9c\9béIVßq£ô¿\18D\f-\1di6ÁØ"øM\12<T\ f,©n\8a\12O©{BÔ\87N@±ìCù\81\ 5'í¦¢^ f²9ÍØØn÷ÓxÓÅR¥þ;¦üß\89\9aÈ3±{\8aô1\ 58\84ít\15ô?u˶l\ 5×Ha\av\8cÎ\1cÍÝ\ 5\9e:ï\ 2GÝ\1aÈJ\ 2M[®q\85Âø» ÿ©{io5¬\£ùe³37\aî\8e¼ÎÌ7 \99$ãñ2ü8>\8d\0½÷sß\8fï\ 35è£ç(TZu¡Ô°6ï<⯼ô\81\8eôì¹Á\89¿ä\13ÏV\8aT¦«ª~\f\bË\1c\92\87\90¼Ø\89\ e§·\1eNo=[\9dF'f\93
+Ç\80°ÌVÞÔLWeõ\10\96ÙJ \8eNÖe`5Øïfº²â\8ccH£\13\eðø®ï7]e\ 5n\9cMW\18\82c<\96kË®\16\13ËðÜt5û}ÿB¿÷¦«6»²päP\16gáÈáTðÂþl3\1aÂ4\ 6\86Sù\8cÙ\89\99.lw\98\85Ãf×,\1c¥x\8cÃ\v\ f¡Ñþ´\9d¢ßm§è÷\1cÒèÄ\ 6l»C\16\8eù]ßoºª_|\ f{8güÒr¬dú\fÏröû`%¯-\9f\9b®þâ\85ý}ÓÕïì\1a>\83µ´~Ϧ«¯¯ìg¦«\f\9c½,M3«$Sê#\1dÅg\95ä¨ÒtG³^ \a$\93p\fƺŧ\13rðë\9fL\95\16Ý\94\95\88ä]Å»JÃÇ¡;\86n\88]ó4jor¹ëéNE³&|Oo±ðDpGä+Ë`r\98ãjÐx¸Jà)¤rj îv^\8bÉ<ªB\84póÃm@êYõ¬Ê!\ 6k\17\e\9cö\8d¹X~DËl&×v7\85\166áÊ\vx\93êuY1Ò*:\88\95@\10\9b\19§~±\18ÄN«Ã\14\1c¶\81ØÍ\96T\9cØ\ 5NNt\1fÀæ\19\fÿChþ\88u
+Ìçém¤\9dË\ 4R\97¤Òv\ 3\81\17\0:ái\99¢\0k0dóª¡ì\82ÖW\97-¹8\ 5\v\10ÎdóZiÄMñ$\v4i5Âiï4^\8d}ÍBïGKæ|Õôb÷b\f\197gP5\eò\8d\97dk\83\90°ÉÚH©=¬\ 1\99\1cø\16\1cKN/Ö\1cO\ 3+~\15Ôþ\89zXjÆíD\ 5ó\84" z\8fAõ\ 33 ( \rÈ`>ÙIÑ6ZU$\rLñ\10P\e\15\84YV+â1BÙëLÔQì&|\8c\£\fì¹m\80ÙR0$ZB\99û\bô¬zÆj^âúîÅ\fEõéªÀöº\89Ê\8a)´Ü¶\16\1a«t\15à\19\1d\rÜô\88S·Î\85§î\163};QÁ,Á`§÷\94"\ 3c=ѪS\99³\ûQðC\9beß0"\1d¶®8î|oýÆÅl\9f\8e\v\¸E·ýÕ\7f©²~³ËHà\86\8f\10ZoêB§fL\1c\16$Á渤31\vA\ 66â¦ã²õÍ&5H Cª\8cS\ fãÑëE\14\83lô$B`³\ 4wO\85\1dí6G\9eº\18â^³
+\a_I?â\19)°\87\ 4\92\18\b/¶û\19¹bcÑ<\14z\9f\93ª/ô\82\94
+sÖ\8eÙ6«zÚh<M±\bá,¹\96\18\83U\99\ 1S\9eLÁ\9eFDÐnûßS£\14ÎÛ\89¸"ô\13&E}\91Í\92\væ\94ß/Í\9fÍD©[ñø0\13\85«ëÍî®\8f\1feæ³b¬^JEyôâ÷\97^üi.\8ag\a=\12\98\8d\ eì\87%'tj\16\80¤j\95Ê~\96\90`\böHªÔ n°r6`E$om\ 2o¡F\93T\10JÕ4Ö\ 6â\ e\87ÃÓ:\13\845:êÞ³7<\95à\99\14aÕ\94
+Þuk\11ý²®ÐØ/
+ \ 1¤CY4\8c\88º+\86$"\93\b
+\80
+\96\18ü\17¨¢÷×D§é\86"·D U³%jIî\16î%\8b9V¦´%\8d\a-ÝØIÎÒ¯t¿\81Á\8a\82\9fAs¢¾\97*\98\ 4ôغù£a\90áR³_¿ì~kø\17TtC¨Èà\884¿Û\11.\17ó é\84'K\ 5ô-É\89ÓgS\0%ØB SXà|\88fýc!@>\91ëL&C;£\10\17ó\ 6\91?\ 4»\1557Á ÷\84Ä\13 X*\16/ µ\8b\98Ói¬\ e0c*iîZæ£ËMd\8c\90\0áh' kRIµ¬ê¾6`\91û\81pF½P/ÙT\1c<\ fåÛèÖ\[Æ&ñF%\94Õ8¨\95\99\181õó\9e\98 %\19\90)«L7Ûåu$BÂ\15Ñs<ßol\vGmwáÍSÉ\vU\8f\98+íΡ&\rrM\ 6eI\12\90r\87\94ÌñË6\9aÁjq@ÕKN\82I[| ÿ£#ß\93Q\1c¯ßØ1puÝ{CNêT±\88 ìd\XòôJζ2<XÿÊ\16\8d\1dÔ¯¶ãCÆ2Å2ö\9bvs\11j\95`ë\8eÖï8I±éþ>¼\9d¨ð¾$\16ÃìÊ\12\8a\7fEüÐv»¥»m ï\b\9d9\13Ki\9ebâ.\8b\1dIÌ\8aÂiF\86¹»h:E\92\12£8²o\97)he\17×ÖÐw<Ýpâ\ 5ùþ2¼\9d¨*-/Q\99D»5\9ffüº6\7f.\97%\132ùQ.ËÔ×>z®Î-Êà\83+ïÅw>Ð\11\9f=÷Z:K±\12ÇfºÛ\96\81C\ù\97Ç!¾·\93\r\13Z7§5½ýÞêV<\ e±úo¦»b5\93eº+Ëæq\88\8bÕKí\9dØ\9ff\8f°ßf\8f(Vε\ fiv¢\ 1Ïïú\ 3¦»u¹Ç!Æ\93\16÷åAÃf\15P¨à'\96»ÑíûçÝ^\fw6·fß\11ºß´ï¬§ê ög7\85Fg
+=Õ\1a\99\9d\98áÆö\86ì;mneß)ËêakKX<êHû³ØÚ-\ 3%È~\8f!ÍN4à¶7̾3¾ë\ f\18î\84\91p6ïô ¿4\1cë\98?\83#\9eÝ^×ñÚð\13³Ýß»¬ÿ\83ÙîwÖ5ÄÏ\10\89Û³ÕîËëú©Ñ®*\ e\1d\80Í\99íP`£E~\ f\85\9d\fô½#Õ\vd4\ 3\P§t3iï\br\94e`û³¼\96Ø
+2ò£Ì`\86¾¶[|\98#Õ+5\1aÆ\85'j\13\8d¿÷\94-9F½+KZ¥iw*\1cfÒ\93\17Õã#ëCÈ\11\8c£J\18\86$Hp\95\80O\bHk¦µim!dÆlxÞ.C\0\93dU×\12°\r\rU=êÞ«*K\95c\8f²Y\90»Òªy\1a ^63Râ \1a(u\8d¬¾\1dÑa\8aA\99$Ü×[9ì88¢\8eÄø\e§9!\13ê½\85{-M}Ó8̯©RÕ\87Í\ 1Ñ\11èb¶\0 Ì\14\19ÀÝ\Û\a»`\98cæ¿\r°\16v\b"\11#\9eÔ\f\10¨\0\81T\9fB¦³LP\94eD#.\96¤è0Êlþ8,í(í¦áä}!\9eM\13\ 4\82¡l\10\93æfèLe\9b8B}1^ØL°XÃö %\88´\89\8cÀk\18»
+\8b\bò kÔJßÂL¬Ü\90\8c\ 6P"¹\aÓ¬:w\897À\82?`\15u]Ë#6\0 z\14îQ\16¾\80\95?\ 1àÇ \r2è\ 4ËapÛEèÀY\98AIG\80\ 2J\84\90x\9a;+\9eªY\98\ 4>~\aÞ'\13Çx4\94ÖÍôÙL\ 1\ f«ÑÄ\92,Qh\86\19\83\81\15\eeñLî\ 5ÿ`5è ¹È×íðF Ý\177\f:$¹\17ä½\98\80ðS\8b\11~ø\]\85L êSûÏ\17ÞùþÂ;?5ý\1cʰ±zÔ\râ½\1e)Â^¬(=è\10Ê¡Ë\ 4\85\1c-Hé¸ò«©EfÐu\85[áZ
+\1fÄòeÀ\9b8Ð\89 \8eµ\92ö¤ïH×\83W\16\8a·*ê®n»z<y\1aEÉ\98o°4ÃIÚ\ eã×óï¶1o\9e\88»E6\e\8b@ÝZ\90#á*\1aÇb E»)n\f£*´Iú\98Ü@\148ÉTÝ\8e¥xÕÄó+g\16PæQXN-\99T\13^è1\ 5±q\f\ eöêf-æ,2/\9b w0¤À}\8e}m\9c·DC!r$\9b\0ÿ·ñ§\9b#îä·m\14\ e w3´pº2üæÑ.\18Ö\80¹ÆÃ~\ 4ÓÅ#!/ä´*íàI\ f\ e$\90¢\fÀL´ a\ 2;ÍHAp«\f^\8105]YYPZ\8dq\ 2\8bÊEâhm\91=a|ä¤îªº«ÌZv«}\11¥\v¸\9a\15(Û\90Æ\92M¢6+AC\9bñ\90]\1e»¡mL8\1aÏk&pM\ 6&Æ\96y¶T4·åsn«Y\182p \86äA?Ü*Zg\0y,\9d\8f2Ðl¶¬²s\8ds\ 2]\1c\92§õ¥v\84¹Ù\1d\95È[\84\90LDô²[p\14®*±u¢ï×\16W%\10!É\18kÛÚ¬]¢`|Þe\11ÜÎk|Ý\rßg\7f¨\17ù©\92yf{lËcóC\17<?xÊDÚ\aìöµ÷]\ 5Ý'O½\88£\91\84<\rÃ\15\12^\128N\0
+î0¨óÌ+ÿ5ÔçE\ 5\95ùËÊXª6¦à»ìçÚ\1e\9bÏ«"ÒD\80M½¬\12ê¬H¢åÓ)\9d®?o\7f\1d\16)\96íu·ö³\8fc>Ï\18Çw|xù®ñ+\e\ 1\fI\0rmº]\85©Ø\ 6>Ö>Õ³©\8a¶\ f\e\eåm\r'=õóî߿ֽ}«+}«)Vôf(\r\9fP\7f\a©\98[\87,L{\9fWý´yµ\9f¸°ä£\1fÏGá³\1fmíø)¸\ 4k¬¿\13H\96ãyûË\12\9a¶Ü÷\87ýìã\98Ï3FÛ\14
+\ 5\1dßñ¡>ú¥ãü¯ çóyâê×·Î\1f¬á\83¶c Ói ?éûÁ\ 2>l\e\8f|go(S\15ý{\96ókæ\85ï]Ð¥\8aQsA\r\89ê\83ÎÑ\89~oE?.}\ 4>W)\98t\10sV\83Ù*dà$âM\92&XïözÝ-À'M\924\9a,è¹A¤\10:\bò\80R\81) |;0)¶*y\89Xêe©Â\a\v^Aª\18\0zG>¼HE\96¦Ü\1c}\93\ 4Üübxp®\1d þD˨@\8eÞëHH\15«=:\89I¦\ 1\ 6µ
+²/òúr¨ªLù\91\ 5åE\95\89uWv\,ÍL¡R?B-»\89(|}\11s\õe\18^\84AK\8aF9@õZË Äã\80¶\§Â`¨:é§[\8eA\ 4d,4´²ù°\90âõpVÍ^O©\1f\96âªÕ\18ıD7O\1cK¹\as\e¹\ 5¿n\8c\ f/³mû\8a&¹à\98\97Mªnã7po¹5Ú¿ \19µ\81ß\8f¯<\1d$+Øþä¹ú5\85úO«GÕ\7fý¥ï/½tÎ\8eC^\9f\8b\88\1d&\15CÑ\1fËÝ\89ì\94Õ\ 2\91&\11ä y&µ²;\bãܹrCk;V\ 1Sð\87\Ää!\18qËB\7fSæð¢0nÌQ
+\9fR\91]U#Hc<À\11\8cÇ8\ 5 à\8a«\1e\8fNË$\ 62\82þUe±M§\868\81»#ÚI\143\8a&èûvè\94É(UJGÚ¤*κۡMÑ\90ÇU{\95\82\9c¼3ö
+\ 2\9dè7ò$ÂATj\86Ù\13¾uU¦î7ò 3Q8\8a®Ù\1eÇ©è\9dM\92cp\838ÎÙÍ\13aa;\13¥\94\83ì7Á\83}ññ\91
+_¸\88PÅÉ-do\13ü\90ª$ßþEõ~ÚÚ\8do¼^L\1f<E å\15L§ûÓôâ\v¯\97Õ\93§Æ¤|\ e\8bA\ 6QÓ\13r\8a]OÀÑ?õ\84;ù|\9f\82Ã>\ 5\87\93\9c?\9f\97w3\8d0ÿ2³\17Ö°;=aÍ\8b{Þþ\92\0¤\9f&\0ÙÏ>\8eù<c\1cßñ]z\82Ë\ 5ì\10\14sÑ«lT5ÿåÚîmE_~¤\18<èïýóþîÔ\ 1\9bÉb\89 ÁÉ\8fé8ÉmÇT³\8e©f\1d^þ\9bÏ#ߨc\93\1f5\93&?®XU\87ü¸R¢w<o\7fi\eè§m\ 3ûÙÇ1\9fg\8c¶öÅ¢jãwª\ 33Ŧ¿âÁRÝ5{[Ó\19_íãÎ\1e¬Ó}³§Rÿß³j/Jý¿¹n)=\14óϽ\9d%ü/.Ü\87Â}ÞpN\99\8cR²Y) ÷"\16o\12ë\rZeÜ£\98<\98ä9\9d$LÂVjË\11c4t¬\8cÐK\0m%\81\8aÇê\96*çì*ETå\8e:ùAn³æj©÷|´`íÛ?E\95!Ø\15\94J\15NtÁ0OÒ`\f\14\94Zêà')"ÖqxÊa°\f\85\1a©$<J¶PðQ ÙJ LÒ/\82Jº$5Ú\81*°í\92^À\12À\8bItæ\1a¤\99D\v¢\92aS6S\8dL!á\99<`ÉôAù\9bÌǶZ\14à$ý"jÆà³\;*¦\17«ìe®\84NPí\ 5\v\8c\1e$°ñ1\84"îD\13Æ\80ï&Ê\9bJ\10¦þ\80\8d\8e \93÷5\98ðV\11¬È[ÐkÈf\8a¨\ 5ùÛê×òAÒζh\1eÉØÖ\89PÁ\8d£S¨\1dRJÓ\²\ 5¨ ¹\1d»#Õ©%ÒÚä\9dÑ.ãË$í'ª\1eCª\v\ÀFÑÔR\f³Èê[À/S \10DUE®\16\10_qGÖ\ fÃ\19Xå\G\ 2½")ÕûLÔ®¸9b\10àÉÊ{\ 1\84\ 3r:T\91[\ 2NI-\ 6\97"Èu¯%1¤H \ 4Å.\ 3p'Q\15ê
+xλúsD$Mª\9fMb!ê7¨G|\998\19\1c)\14+ÌZ¿w\12\17\12\ 4*qö6\8eå|ë ý¼\9eè\8f¯¢\17t2ò\98cÂsÖ°6Ú?òI¹\ru¬ê\89Ù½\89?={°n§¥=y¯\95½ôÚ÷×^;ghòI·\8e*\ 4y\10MQ\16²\8bů:\11Ö´\1aÊKTB\e 'l\ 3"!©]Rwp\95o\89/#´¡í4^\\ 5¼I\1a;²n«\13Q{÷æ\89\ 1Ef\rÚ¦ ¸\84ºíwû´\82Tl6\914\ f\eÉ\1dake\9d\ 5\94\ 1WT,\81Îóý9í$X`6ô\82I̸\1aíüÉ\e\9fåÃk¼>ææ^\94\ 3°+ËU\91\¨\81\90·dÎ\16\15H´Ë\9ez·*ý\83þÖ\8a8\8b\anf\949ä\"gÅØ[ýd°\&a²ÀNRü,Lk=ZqA8ó\1dË\1d$\e©\12;\»\1d\\1f\15»\\9a\8f5ï\rÓ\85`\1aë\17\16ذ\ 1\8cóìp@ÂmTã¹î·ûË¥\93¸\97J«B0ÛiÉì\12ªJuÕ\16=©ßg\83R÷\8fÕ'\85\99ÊÍT÷\15nÈL\0$¬\9eÄ?q°¼Ç6\v¡\10ÆqvÉE\8a\95Þ)\1c\19\b\14ÂçEbM»Î\ f+iîIî\86\1fDBöñ káH\9b\91RgòBãA\83ðÓ\9f¬Nä¼ì\86t0\89âô\8dó\11\14\82
+4I\8eCN"{(À\rGgý\98>8Îß NgcJ\8cïÌZ¸~ûä´Ï¹Ê}O\1e«"`¾2ÂW_y\15\ e\9f=6\8eøç*õ\9e÷®R¯ûÞUêu\rN¥¾Seó\94Êó\94ÊÏ*ñx^êòD\93×ëL¥V \85¡Rï\82\ 3èÏÛ_Ò.öf\0å ýìã\98Ï3Æñ\1d߯R¯i¿W©«\²oË\83voëZöOTêÑßûçýÝ©Ô6\93RÎÖ*îMål-'¥¨L\8bD\99\16\89rR®ÆóR¼ö½+g\9aISÎ\1416\94³\9dR\9fãyûKÛ@?m\eØÏ>\8eù<c´µ\97r6¾ã\9bU굿âÁRÝ5«+\95÷§*õèìÁ:Ý7{ªRÿ=«ö»*õKëVöã¹JÞÎ*õ\17\17îC\95Zõl(ý#\ 131\84ÿþÙ°Ô\97-;"¨)¥Ý\9a*\14\ e2c\12Ö wð\9a6\841àé\94f¥«ºJuå_¢r\95Õ[Iõ\8a$\89Ð\91È\9aÇ%P\1f\9dDj&ïU©%KLá:Uj\82SÒ Tɯ\13êc\89\1f\b)½\8dÂ\8d\98¸PÈïª\8fSÉGAPµëª\1aæ\84¦¥ò>ȼ\95\88ª¿³Ã\94¹\87\84!b©z\15Dì\ 4Ò,\ 1iÙ\8fú8 âV=\veiIu\1a\98HÕ\1a\1a\94:8P0±8ûf\87%"E\¦\8a?\11þ\16\19¶êÿØ\8a\1e\ 5»;H\1dC`Eg'$Z¦\ 6ÍP$×Â\93\80ÇÔ\89ñÄ*g®\vÆ G,\94̬ÇA\15\vícq\0"³\ 2¨¹\17àvBÑèô\11]ý\ eõ«\81}Ö·Ú\r%¥§ÊSÿ\12\14]7zp¤:\12
+|\95\13\919^M\u\ f\13-J\1d\9bJ¢\80AÝÃ\8e´«Ò\90&Å\11 Õ®\87mãz\ eT¿ªëËò\11\11\ ż@u\fU\13µ\12R\88¬UýÁ¯\ 4̦Ñzb\8cÃÂÒ\88ä>*x5\ 2ß.'\92#%\ 2\87UCÐ\11³\92¤·\7f]o\03áºroí¤Ê\88ÊÚ\8boWù\16ù\911;\1aÑÄe)MÍ©bBò$ü`»Ô!G\8cª\ 5ñ/!{Û&\1d\83\82\ 3{Áqa`¤Òh\96 rë[\8f
+\94UG\1ad\1d\aP\ 4\ 4ôV¢PkëÃ2}Á0°r©h\1d\ 5-c\90\bMÝ8Ki%èNh\0u2 -F°©b@+ê2\93\1fZ\ f\9f#e¸\83IF'bÎ\aÚª#\82hZ÷(oP>\808P©Âã¿äÕE`U\88Øû±\91=\\17ç8\fǽ\12\17`ò³¶~\96\91l2¸+#ü&ÿ°J\94¿\99îâ¤Ú]ëS\8a[äÓ%ñ&¾þä¹úIT±$Sòê\1fþúKß_zé\9c\9dy¹\0Zjåz\ 3zj^\11\bÈ\81í*\1f±®õ\17Eê¬\12\Ø\ 5üU\8fD=ܪ¿a6Ó ´9\ 2J\858\8e\110\1dÑNÄj \aÚ×\ 4 ×ÅÞÇþ\8ff\ 4ô¤y$&\11\9e\1f8\13\84¬êÌÕ\rfçk\1eÃNúéÙD'Â&¶®Pwâ\16Ã8þؽàó\93äØ\84#ÂÔ*\83r½ÅÒ\98Î|k'ÁÔ\83¥sO"7SݳÄYköV\8bÌçò6\13FØ[°\añþ\9do\82/sÄ\13iò×I$^ºÔaqù-88Á\92iÜÚqõ}°zÇÿ÷Áê·^\11v>L\14»Ê*¢ö\1f\88F\M\91\9a\84\95D5X\ 1f\12õªâ\85ºuJÌu^\8e<®°LÆÄîIýª\83\93åûKñv"\ 6¢dë}\8aqØ®X¡\9dÔÍ¥$\1eq\14\f·\8btw\90;\93M
+;/Öý«\82\9bä\ 6KS¿»þ;å\97]\7f\8a×\9aÍ27K\96DÀ0*\e#j·Ë\1cuº\80®û©\9bÎJåAL[Ðtrý\99\15\81h\84]\ 2ë&¬\12\8d\19¹ +: \95IêáõNn2Â/]vK"R£· ë\90¿ê\12å5{\92\93Ó\1cq1¯ø\16(\ ea\ 6\9aÍB·\88;V\89êJ"Yßö\b\10\7f&]P\1dqe>ØÁ*P\8d`yÇ\88\aÉ\16¡\98Us´\ 3[\81\80êJª«F2\ 2\8cÈ|\1fØ^6\ 3$û'§UKæ®ò\81Ê)¶»\84ò¦h\13\93Ôï\1c\18Ñq\7f;Ý<\11|e\18\e¯HÃ\eT¿ú\ 1Gü0\84ú\95È\bqu>÷Ä\9c%\8a\97Ó$^Õ\8d\8f\9fzCL¹Ü#/¾ðª\91<yj0ÎÏÍ8\ 1\8cüfÇ9rîv\9c\83Ìþaǹ³\9f\1cS\15<¦*x²ÃÌç±W¨c³ãØûÌ\90\13ØáÓ\92c¼bFaÛ\9f\16\1f\1a\9a\0§§ô{\ 4tÏN\14í=¾çûí9{\87:\9c«\7fÈä\14¯íÞVÊt>·ç\8cþÞ?ïïÎ\9ec3*Ë\0É@Ó2 \ 3;4rûKS¨\9f6\83ö³köóyTZul\96\ 1\9bJ3\r\90²ìl\ 3U]\8f®\8bö§EÕëw\v«·ß#àwv¢h`Û
+²\10\8cïùf»ÎÑ_ñ`Éî\9a½ öþ\99]gtö`½î\9b=µëü}«÷»ö\9d\97Ö\ f\rå©}G½\9dí;_\ÀÏ2¯«ÔÐ}È\8b\1cB \84ôʽ÷V\9d~PC\95Eº\94Qo1K#u4¥\16e £R#zUÈæ±#ªb\12ñº¤msDêW,;þ+\19B@\95s$´h¢\ e\7fýã\88 Ç\1fì¢rX®ªdC\85\\1c*u \11dm9¨uÙ©gn\8e#ê\9eã\90¼ñÍá\87\96\12U½\14A³Tbî~¿*ð\16a6Õɯ×{na\ 1\a±ÐuF*÷_\1då×?`aþ\88ñDÅIü\ 3¼\97f\10 ?ÚÓ\12ÊÌ\1a5\89\83\8a@Ìl2\1cä\bs¡9â\9e\f|i\10«\ 6\18,\11>\92\ 6\95¶r¦e\81Dj\8c\93È»É\90vÝõ5ñïí´ó\10ç\92zjß\13gêÜ=ÒG{0@Ûe×ýØsÀý¾j\1fúß\89\88iL\ 1³a\91\112nçyº<þ-A\ 5Á\90ãß\ 2 EXÁ¦ ´\80\19¡Ù\1d;àÄ\ fÞt\84\9f>Y¹\17à}ñädù\9d\17¿¿øâ9ÿ\8f\92\87ý\8e(ûX\v@?m\91\eñæ\89c{\9f©¨Æ\v\10\\8bBÓ\8f¦Aß\1d¬NaÓ\12{\fà¦o'Ȩ"\1aÈæ¤.V=æ\a\12ú¿
+©':êðï\ 6\0gcÜr\12\1fÚ\fÄQDé\ 2\10-\ 37\92̳1é\aÉ\95\8dçD êO$Ç\9b\1c\11h³\rFt4c\ 3ª\85qºÉ\11;\89C5\95¹N½\9d¨þPMªð0\ 1\1aÐä\1cM!º?S\83Æ,R(hK§\86sýf\7f\93æYü¤úQÎMq¢öÈ\8eA\15\93éÌh¡JÆz¦M\ 65\89 ýa¤ó\1d¶mö`;ör\vG¯¿pÚ¨câ\88\88XÓ\1eï¦slßëã\1f3\8d\17\146+6¡\ 4ûyüÊ¿\18îÚÆé\8br\15 \9e<Ve\89rå\16¯¾ò*e<{l\9cÁ/e¾Öó¿\8cÔ׸,#÷5lÉ'¿Þ+KÅ\89zÅ\89zwª×èD\8aY\9cÅ\17í½M\7fK þMý-/ç,Úeæ÷éwÓßì÷\18ÒìD\ 3\1eßõýú[ýÊåN\81Ëõ4\1f1ì\ f\1a¾ma[>Ñàf\8fï_èñ>ëÕ¦Õò$±c¸DI\0\88½è½:Uxuªðz\16äG'\12óÕ\7fÓ\ 64M\e\0zÏi\ 3é8e\¦cfHëwÛ"öÛ%o.^\e°mai\93㻾Y\99«\9f»Üi\ 3s¶ïÛÕå[\97§êÜìîÁâ]Ú=Ïxý{\97òw5»W\17s Ïu;ëï¤Ü}y5?ôÞ\13,þ£ò{ï©\87ß®\r\80}R\83D£$k7Ö>a>\90«¤¨8³\97\1e\eî² ÜÅM\12\83b\eY)b\a-C\15{®!G;\1a¡ÇdCééA¥zÚÆ\ 2*íάÙ\80´`\\r*Õ\18\8cAãil\8eG:5¤ì<º\9bbW\ 3\ 5C,-\8aP"\84â!Ù\fD\0\94£Ù½×*s :a\8d\86qlîuê\14\aÐ\83[Z]wÌk*\ 5\88ã=ø\ 14dE\97º\86ÇÞã\ 1T¡}=Ó\b\rße>¾£Êà};S\ 1ÙE×\ 4ç4¥)|;)\99u@U6Û²§1 \r\8c-¹dg˵X\8d-9VKÙ\84b\10ð\89\1dM#î«CéÆF\rV\10;\90Ô\9b¢ÄF@k²zD\v>Ì#ßhmuê\fåSK0¿VóñP\1e@_\93HFHzK1Ì\11f#5ì2Q ZÀ\11VÌ\ f\81ëÿ\0\12\8am\99"ü&TV±'\ 4\emUKÃ\10ú¯üszz·øb"x\ fÓ
+c
+\16\8a/\99Å i\94T®ÈÒáøÔG
+\90Êûã\ 3`úª\8cà\1dòA êÇÉ\9d\1fRÊÃ=¸Q¥<\9dh8\95ª\ËÄ9*\95ò6¦\9d\1eÍÙ¦üQÖ̽º\91øF\85D(\ 5¾\11µ©w\ 3ºQ\06õ1EÝbϨ v¹\10`à¶Íç¸ \rÃb\80\92Ú\8b¼À\9d¦¾6_ìlY\ fI\9fÊ%\98Cµ\ e¼\1eÍ\96:\12\95C¢/¤\18A\94#\17héCósX\91\0¹ÿ\84\81äHhVÉ\ eî\99º¬¶5\1c\95âuz\83r]\88¡U:{\1d
+\99\a\8aæ%%+*_Ä\ 6\9d£¢\0`\84¬\v\1f'¼jÏ\12¯ÌóÛ]þ+É!C\9a\ eàwÛ7]\9dþ\1c§7Ý\aO\9f¬\17\1aàQ\9f¹ý?\7fñû\8b/~äú\ f «·D\94\1d\7f\ 3o!$i[b\9b\87*î±é\88ÊWÀz 4àn#\ eÚ¯¶\8dCÙO-)°°)Îë\80'\0\99¬<ò\12ZÈÊV\94ñ"~_§"X¼K;/îd9bÝGÉ\12½\e±\92Öq|\15-_Î4w¤'\15ÃF\91 ¢òxùp\1e.ÿæ\19XàYÏ\8c,\b$?\9cÃ\12\82òÞc²·¬øÆ\83*\92\98RËx¶5\19+,-ÌGñ\16,Äͨ-ôm#\81\1e,lX¥ÙbÙG»Hu\8d\ecß\0\11Û\r\7f\88È3\ 5jm¤\16\99\96¯1\9at°)\9c\83§7+_£s~½@öy\81\94dàö§\96Å"ut\ 3(\9d_×TZd\93©/©\92\8cÝÅ`\12\15£¢\95b[\84\116\97¯\95]=_\9c\9d&ö¦Ý\9b}Ë\ 4æ¼]Å«r'ò\89Ö/mXÔ\89ª\vþv¢ÚýÃMs\94\96U2¼þ^¶\98á\ 1âìM^\99-Ën0£\12ªê\ 5ÕÙôµ\8c([Vb\80¨=\80±\9e¢lö62^z¬c½\8eU\1eG9rÍà\92®âW§1"BOV\v&\18-ã>Ä<<ãËq¦yÑoPÉ\9eÄ\1c&Ño\8bGó¾+\8e#(+.o\8d\93ï¥}ÎZ7\91ù\94\8ffìcÁUÖyú\99\1dÓvá\ 1b.õøí¾%L(/\ 6\94 \8c@\16\17°O¥\ 6\ 5\12&Ázjg¹X\90\8b*(!¾\83\13ßo\9fÝ`\e<ßSº½Âý\9dv;Q±/\16@\ 1\93êþèè\10È\88Áå\ 1ÿüÞH\81;nNHU[£K¬ÀÐG\9e=WU\9dp½~^~éU zúÜ+\11\ 3\94&ë\96§\\1cêZ<Á®Ý\99y\86\ 5¨[\83\9a.zo4\8a'ì5õß,Ozo³<Ùï\ 5J\96¸NìOc,úÝtlû=\864;Ñ\80Çwý\ 1ËSî`ës3\ 4ܵ[~ÐðmCÐûÄò4z|ÿB\8f÷\96'\9bV3Wät\82è\ 2\96ÙÙ\ 6ìÏfÄ\vÎ\88\17N\96\86Ù\89ì\10ê¿\99+4Í\±&\ fÕ\15\f\ 1et²\96\81¹a¿Û\16±ßcH³\13\rض\85\99+Æw}·å)÷\97<X¿ûvuùÂC̵\aÝ=X¼K»ç\96§¿w)\7fÛòôÚbâõ~nyR\7fgËÓWWóÓ¸\82B âQäGÌV\8e\ fT=`G\ 586¨A\98 Å<V\8b\95W®òh2 uéo\ 5/\½\8eÉvÍ\9au®ãÃö
+E×BO\ f±*!\8e¦@S¥&ßQËnʤ£\1eM$Ö{\94 )Í:\81ÝVG\ 4`ª"t\19\90ªÌ\ 5Ã\f\b]0\17î9\9f¸
+\ 5A°Md\18\84R\ 5æu±èêFãi\óÍÔ9ZnÀV\84\ 6L\10Uí¥P\9bOÙ"\ 2nÛM\99\97¥}\84 °JQí\11\90q\ fé\19U`Sý\1dOC31\90\aO%-\16³\89½§Y (\8d\ 5\82.)ü\r\ 6«Óxz%\15s;5ÄÀ¤Øl\ 5]ja)\9b¸\9b\81b1æ'Ï"\94\1e\8d\1a³©\PK$b\19jfã@\ 5\ f:é\e\ 3i\16êUha\96@½\e`D(\12tåüí4F©:\91ÂM\9d-1\f\rã\8a`ùÉ\81ï\ 3ª\1a"áo<\1cAüÐ\\0ôǶ\ 23áÿÈ»\92ô¸y\1dx\82w\87\ÀùÄ\99Ü:Û¾EÖÿý·\8fUÅ\ 1R·Ûî|Î*«´\11\8a¢8`"P`-)}6ë\8ecµSðün/\90.|cï\92ØQÌ}îs\8aÙE\90kIÃ\ 5C\18êDðX\9a\8a\93Æm\81D
+\97O-q{\1c´\f}{5hÿ ñÙüè>ænYì\85\15ð\ 40!Rá¦\82cQ\91³\80Ì@"\91¥Á\9a)RYÏT*%·\13\95a±\0èÆ{\98äA]Ý\1dÚ@ÝxÍR¢Qþ¯j¯ \13[\8aM×ß[`ÅZx#\95\8e·ØÀ=ÃX\81\1fÉä\ 1e¥ú\83\99\0©\\16ç¤ræY2\8e\1eO\95\ 5ú\11\95\99¾M\ 6$c\®\rk\176¥\1aº2\e\ 2ï\85å#-í\90Å\82y:QY1îv¢Æ\11íÂ\ 1 ¾\ e±ÒiÔù©3\92yÒ0 J6:GwË\84XÙ8,<U¦34\14\18\1a>nK\85uNxlKÅ\ 1+d\12\8c¨ðí4m÷\13ü-\1e¯ Lä77\v\92m³ c#×\13O<\89µ7Ê¡§O:\15}Å£W\8f×k/~\7fñÅ{\8b>\8c\8dé\fs0>ø¤clô}¡ºz\1d\92&¨t \19\9c"T\88¶sá
+\8bF~T\f,\8f\1a\ 2p0Ï\ eéWw\89õ\1f\82¬F2Tì\8d\83\19_lØF¥^ \rendstream\rendobj\r362 0 obj\r<</Length 65536>>stream\r
+;ðB\ 5üV\91F \a¹\10\rÔ!óQB
+¦iP¦[\10ò\aj¨"\1fA\12å\8e\ 3OÚØÒy$ç¬\96\bò\114\96\ fºýáÔ\ 4ya\87«F.©Ê\7f¤\83\eÐ¥7Q³'ä\85Cü\fëæuê¼±\82¤ðK\96:ÅD¢\ eîU\9eM\1aÆ \81OG\95iYã\92\90MUv-ÍÊÒME\b!&½Ó¼\82k\88#ypip3J \97\10\92a\7fiÜ\ 3K\ 30±\91,\a`ª\85ת` W\rbÒ¸8aÂÇì\96G\99+±<Ã\11®QamBØ©\82±\ 3öI\8d\92\8f\bÆ\85Þ\ 5\1c¡µG\vbó,mêMЦNTêX·\135\82ïy>ßw"\1d´ô\9c\82ÝÄÖX\ 5\ 6ʧÒA~k\97úÊ,MÀгþ\ 2Y7ë5árò*(\16m¨$\87r<wË6Ï+Ü×\ 4\15±´)á(÷\8e«4¼\9d¨\99É*\94q\0x¡ÜCɵ\83JÀýy\9f%\14(\13\884CÙëp!F=ØC¯LÓcY¨J@ÑhrCÞ±åIû-¨5çO-yÓ\17ÇÍ\9aj\ f\eÚ\14 ãT]ÄÇíD\riò\12`XEå.¥{Ñ5iÜ\87nÞàí\96G\9bÂ\90=ReÙ´)6\a{º\88ØÛ\99
+\8f:>\12ÅIåýÍ£\14Æ£ùý\ 6?Ù(\1dà\8É\804l\83á\8e\1cûìÞ\1a{ö\7ÌʽÐzù¥÷&ÛÓç\16\7føZ\90V-~×'p~¹ÊPaոʮ~©l\8cçl\8cç\8b\97«¦S\99\ 2ç\97«\8cï\1d®²Ú,\ 2)ê\8dÛNô§6\10\7f\ f§\80~¯!íN8àõ]\7fÁU\96³¿ºÊújöMz<høV\80«ý\89«lõøþ\85\1eïJ\13¸\ 5kÉz\1dÆ¿\92ËÙ\99Q\8c×±\18¯c9»F\9a\ 5·TÿÿÂi\1dþ\15VEÝþ\95æ,\9aÇøS[\84¿Ç\16Ñï5¤Ý \a¬m1°íçw}·«,Ï\97<X¿k»¾|å9<éîîÁâݵû¤,Á?»\94\7fì*{q1Ý'\98¥êïì*ûêj~\1c¤\85
+åºkëS\aÅ\91AZ\85¹+Ñ\10\1d²a©\8c1y\82\81¸\96Öõà#\11îûDm¿S\ 1,ºú\90½\9f\11ª\81RR#NÊó\96\956$êc)\97\1e(kLÒïë\89\84ý\9a\b¸çPQ*qo°\a\ 1ý[*\8an BnR\1d²{\15\16\82\18\97ñxݦÍ\9c\0\f~S#TäÄ\92tN5üXc \15T\f4ï\9e4ìܰ\82W&\15{\18iÒr\ 2ç+.Ùe\ 4@èúZO4Â\9dËI`©^ ü,Ì]+]\81¨°TX|\8aýPßG DÕtvõqD_\ 1º,)È\1cYíÉñbï8ä1r\0\7f!Ò\9d]óûÍñ\1d&yj
+u{#¶mÚXÿ(o\95ÂüÚ9W§ãóÆýþôɾëjR*ÅÅ$\7fñÅï/¾xÏ\92\91\81fKÄ¢~ÿ;mÝIåÖÍ\13\92rR;íX\e\12¨-1\9fhvën*/\ 2sVÉG\ 1Pú8ÏÂ~õ¤aç:7îö\17\15\ 3B(Ý8·@çumQ½\90\94`\8d\11\89\88<#1Ø\ 1\95Öbå!©\8b\13TÄc´3Íò\8cEí:·RqJ\1e0\9fä8×\1d¹hx\1a\95Êy\1cLËY#½Ó2\80nÁQ\91Vv(É\9f\818\14\1c¨é®¸C\ 6÷åZthÝpX\10¬Æ³"`\fæ(2êäD3\87vSù\v¶\10êN6&ûïÕ}°;¾\ 1W1\8cPR\84Ê\9d÷*\0\1dF|Ü\9c©{éôì¹.¨üýázù¥÷"ìéskr>¿b÷¬G6ì\86\96ë²\eZ´ð\8aW%}éïS\97\9f\9aÄEå\8f\16cQýËnÐ{e7\b\ 4dÙ\r^Å\90f'ãOjH~\14¹É|ªX¨\0ÓIP~cýkvCsõj7\84ò£[ë\8f\1a¾\15xC>±\eV\8fï_èñj7hZ¥l¶hÁû:;8iv-\18\13,\18\13,\9cõÄh\11üÔ¿\94MM«\94M"ileÓ3ñnu2þLZ¶¼À\eÆï9$ÓÉÁ0A¿ üöw}·ÝÐæK\1e¬ßµ]_>ÿ\1c\83qw÷`ñîÚ=·\eþÝ¥üc»áµÅÄUìs»\81ý\9dí\86¯®ægWìbo¸\89`åÿ:\81QïÍ\19ª?P\81º*J\17庡{\1cGø©P@`+zi0\rÀJ
+õtDTûAUn \10\ 5¨ª(ïjh\bìr¬Jz¡òÍ·\13\15Y\89Ð\f\1ají0rô@\9d[¤y\1fn\80ç#\125vIÃ\ eÛ\80úê\ 6£\80ÿ\ã\85w\eW Ù#l|Ó¼\8aoëaCE$¥ò\90\r5dQ9;Ê!Á]P<\88x\10«ùów\9fV`\91¡\9a»i\ 4\89\19e\96¬Î\fm¾\16[ÜPëÌõ0T|Lj¼±<à\14V¨|Á\rÀ\b\93ÈU\8ebÚs<lÐuÇÍ\ f\ 2\ 6\912ÑiuzpûQëJPÖ\92³\9c.=Å\ 4ìûý?º×\aú$\82§\ 3\9dÙ¸\ 5\12Â\15ÂÀ\99ô±I¸\9a¨Cf\9e¨ñ`¼«¥b\ f6¾\12E6\14ÃMØ÷ÀÏñóÎ\1a[¯1®\9b\13Ì\9cUíÑ\86\rr\10H}F\8a\8c½|Úðóvx\9f\ 5ì2\1f\89vßÏ\ 2ò2\94\1d4¨þèVWÌi\1a\97õ\96\16¡[5Îï\898¶ó\89:\v\e\1c¬ÑA¶\16\9a\ 2^y\f\83ãIB`ló\85\1f\19â\qÄ%di,\87r¦xå[\ e\ 2\ f*Æwü\89\a\11ù;º[\8dXdMIâãÂÏ\90æ\98ñ%'*>ïv"îy`½SÞ>ïù:M*æ{\1c\ e\87v\8cy®#\98vQ9\ 1£\8e\9f\v?ëÁ\8bþMÃÊ\1fDd;Q\ 1lFmñDí&Gf¤%\14xZ\19\rûó\98Ûaý9f\8a7l¦\rî\10 ¸eº2´ñRÎÔ¦\8e\ 1ÞNÔý)(\90Øb9}òi^¾åîÜ\ 3\1d°ê"ºÁË¿ô}ZP:n\8b#\9däÕ\e\ 5ÌÓ'\9d*¤\1c'è ?yñû\8b/Þ\aøÑÝy\9f{7Â\9a\1c²üClÜe\rE\(K\81$êÅKêb¡H «ÎÒ\8c<8Q\97<°TD\11d\81\ 6\ 1r\90¦\0¢$\8c<\98\7fb\9b¹\ 1!º©ÈNXÂetfi[\1e\9c¨K\1e\18*÷.\v\15BL\a\ 5Áá£\v\8b\15\ 3ØD4LÏ`Ê\a\ 2\13
+C:P±ÃÑÆê\12t
+ß\86;æz¢m\1eq¡R¤ßNTÏØ,L\ 5b¦¤#\1cÞ2åõ'¦§´\15\9c?\eá×\90\ f\b\8f;Â\894\ 5 ¥¥¿
+\9dÛ\89
+»,\97¡ÎHh`ÇÆ!\eº!<²\18\9b²t0 ÆW\8eËÖRø%\80=.\ 4\88A]\8d\ 3«ù`ëM\10 mM\1cï\93¨øïD\ 4[\b\8cþd\18À\fL²¼tþ\89Qe`\12N\88\9aѨ\94Å\98Wg\9bf\ 4Ô\89¸\ 4Ô¦¢ì.æáÈuÖn\82£×H\98ùçoñpúKL\eV9\19\18@\rź¨C\99\17Þ\10\ 3F²²¼äÑ\97\93ù\84\94jD^>ÍÓÑw^l?.s·¤ÓÝ\8cÞ(dJ¸2èÿ,\15G¤xI-d\84\11o»Ö\93X\98\7fòó\822\10l#\ 6\16\10¥|w¶h'¹`¨F.lª\eH)|Ï\84bÍ'¹0ÿä²\ 3¡ó87Úß»;3s`äåýÌ|\ 3\1cI\16ÃÇ\ 5²åÚ°\0pQ$&0Ïò\9daôSÙé\1f?Ûí¤\8aaû»\eï\97^|gA}úâÍ\9f¿tëíY%SÞ+xb§÷\8a*úö^ݹ\8a\8a±g\8b±g/\8e§f\91%Õÿð^©:§¼WÑYhI¯¢~«\13ý)¦¯\18*y¯ô{\riwÂ\ 1¯ïú~ï\95gq¦³÷
+ιÎPý\83\96*3üÜ}µ»|ÿJ\97\17ÿÕ\98X\95"FÙ¹íô\80\18=y\18f=\b,Ü,\13q\9b¿\97¿bwBo\ 6û\1fN\ f\15[\95Ó#\1e\16ª\90Éå¦\13ý©MÂßc\93è÷\1aÒî\84\ 3ÖÆPÁìõ]ßì¿òn¾äÑ
+^\e¾Ñ\12yæÀÚý=Z¾»\86O=Xÿðbþ©\aëååô\9f`OªÃ³\vëËëù©\ f\v\98\17Jµ6i"äd\ eá]\9bÚ¥%ªuKïSr,2$\86Î\8cü\82\1aYÈ\e·\15N±\85L\9a¦\9a\1e'h6B9UñrÓ\90äÙ\98yk©°«\19ÓÉh;\86\eB^ñN\f¸\1a\ 3\9dzÒð0Ò\94\13ý*»e!¦\96\97\86\93#·TßHã¾\8d¨ðª\ 6\8e:ÚQ\10tHÐm\ 4J÷HYv\aW\80xß"ÖQ@lÔ
+ñLÏA\ e@\19^\ 2ÂarrU\8a}Ñú0\ 30¨CK¶e\80\81\12\95·Û\15±ÊýêP\1dE\99À\aR»+\9fvÉä\11\a\87)
+®,|\958\923B×dêQø9ågn\ 4«g\9f\13\ 4\ 6\95Ʊ×\90\8eëXÐ\8f\15Â\92äì1 6\17\r\13\Y\1dÂÙ\96\98t\85}\ 2\ e\86\96\ 5R¥\19IG˧A\ f\1e\ec|62\12è @\84ì\88««aæÎoZk\ 2ÂÄê\9c¨L¶¸Y*³hT:#N\14| \ 5\8czz©®èÝCn©±_äQ@R<Ë£riG\8eÉ\fNïÝà4ÐŲ³\87úT"\f¡\96SKÀ\89D\ 5Fô\1e\19`\8abl!2ª\e˨\1aò\1a\1aRUx\r\94ó\f\8bÇ\82\103uÓà}ÌN\1añ\99Ê\124·\135Ñu\87eÄk
+a8ÂD\a\b(µ#p\ 6G\v\96s\11`=\b\8c\a¶^dq3Ü[\17ÁN-.pÏ/¦\1f°\ fÄýÌ31\88:6XIKÃBXÔN;T}U!ä*Ó
+\97+sWàèáEõØqªs\ 2\13¾\ 6VKéÌigí\10jÑ\92\ eaæüú\9f¡bÏ´(eÒRû1f]`¼fÀ\95ò\18\93sTì#:0»ÕR¢¼\88\1cz¦\aºï\94L×
+ LüH\15\ f
+^æ\9e\19wõ\93Æ=ã'dÒnéý,\80\80x\15ú\857\rßC^\84u7T§Ü´Û\89ê\×¶\ 1Ä\82cÞç÷4é÷«ó\973Lú§Ô\8f3Lp\9d.\19öôQç\11«þb\8aÉ£7¿¿úæç9&\96)ÌÐ^
+N@xX"%Ð@\ 4\8a¨\aÊ\f\84\1cgþ<júÂzÀÞ\82o\ 5¡è*j$P£¸"\88\11^,\11¿h\8b\17\92C¶+ß¼\9d¨\801\18Àq#¹\8a·\12
+ù÷y\8a"į×ì%QûØ\9d`Aè\ fáE\rª\82HØ0\98æ".&\8d»\1d\ 5V)\82vK\84 Éã\ eg±§¨BhWVá©>²\e\94\11\9e¿\8c>\ fÚõ\ 4{R5\8fÎù;\93'\97jÈ#lâq\ 4\17û-A\17\a\94E\1dé\85\0\ 5Q\19VøYîDô¤\91í\0òÊÅSËê~\96\ 1
+ÒF\9a\1dµ\v\ 1\9f \16©0\8cÏ\ 3&GB\18ÔPX'\87Ô\14ãÀÕf©1R\8fYÈ\eåF\8aÖ¢ öÅ@¸¸Óx&\8d;¦\8e²Ü¦%æz¨PAE\9f,Í*[\86\8a±9m\r]µASÓ\v\89ù\92Y\1a\ 5 OG\908\87£³Ê·\98GÍ5°ÑCåÇf\98¼\11\18&[Ä\aj>>Û\96!í,G°/\¿\19Ú\14uØ\1a'*ÅâÍR\91ôÉ;»@ÈZ\ e\r \1f\f¢\fñ\18k\8bÔ \8cL\8dßÚm\82Éâ)e7P«²ò\97Öi~pìgª\89åùÝ\ 6!w§\0\JÓ¤\92M\8cU/ã\ 6X:·ªÞ@BÕ¡£ F\97ÎP-£x\8c/qI°¾ÿF\ 6}¼Ê:îÄx\95\8b·3µ\ft;¾g\ 4\8e\86qgÉ\1d߯ÍR\ ecÓôã_\18?\17f¹h\\15ë8@\97¹\b\9bIâ\99Ä·²fÀn\18\8e%½Ò\0Ó1´)ç\ 6?¸ÈÄ\9b¥B\1eC}úåqu¹güÁÚüÍ4\15/è¥\ fÒT\96ùöìÁn\1a\86{É÷ò[\1f\18\8dO\1f|-Qų
+ïpÙõ\15].»¾$Öewõ\8f\ 5cÀ\acÀ_¼mÉ¢ «ÿá²Sõ_¹ìr¶hÂ^ECW'úS\8e \95/\95cB¿×\90v'\1cðú®¿à²\8bá\ eM\18YlGÄÛïZª\ 4ý'.»ÕåûWº¼ºì4±òò 4·ñòÄxv©Ì*\1fX¸Yýã6\7fo\aM² ´ê\7fxyTÌY^\9e\9c-\b\17£^\9dèOm\12þ\1e\9bD¿×\90v'\1c°6\86¼<뻾Ûe\17çK\1eàµa_Àø\1cPx÷÷hùî\1a>wÙý»\8bùÇ.»\17\97\13h\ 2Ï]vìðì²ûòz~ê²Ktª$ë\9cëK\8d¬õ¬Ò:ËXGZh\f\fK?\82@B}:pµJ\85\17 *\89Em;Óïâÿ\90ÿ %l±;\1a¢³)K\90\87ÊX1C+È\ 2g*ò\89ª\r´ ¸ta\f>Þ\10\90øÌäö¾Å"ÆÒw\96#à L\80BM,\11z®\ e\ 4F"\99xd·\1f#\9fjúZ\80X2ë³n¯\f@9¨¢Ú\96\80Ïðª,S\a\ 4@vÈÈ¥n\1c¼\10DúÓÙûá4à \v£Ê2\8a\vª¬\+Ã_dh\88¾/\84\808S¹¹7\ 1¦\1d ýù\8a2J\ fG\19o\1cÌÑVÉæ¨y\80â¬Üã#\8cûi|\1dA'Í\1aßï\86å\90Ùÿ·\0X°S\92×\907µO0î«\19\18\8aª|t\9f%ºÊ\98\9a\86\80µ\9c¨\90\ 2Ôe\Ü·&ãÆ\ 3Z%\ 6f3Õ:\\10\86f¦èDÅ\14\19\ 2jvd8xð\8a$È\ ed\97 KÂ#ÿ~Ô-\8c\9dY í\e\83\81o\8de6\ 3pM¡FãëJ\ eÅzW÷V±~XB\16¨&ín\89ò\9a
+A\bÀ\12A?Ä\rPÁ\92\18\85ÂÈ\8dÖW/Öa\9ef\0ýv\1aT3\9enN+\88ÄÐÌ\91±TÍÃ&T\ø\83Eá\151O¸U\ 13v;K\85\95¸(\87Ó¾í[«kôÂd@ÅÃ\83:B\91cÖ¬òý~ø^\1f\10êd6ëMÉÁ\8d\13ðÀ\ 5Ô×ðM<ñÙ\93Î\17\0\91>õ\0}å½ï/¾÷\13ÿOÆåR¥é\85\ 2È\8eøº¨¦<
+´û\957\97ºiÕª?\99\91\86ym3²og?ª´\9b\96Àÿ\18®k\a4QìÈn*©Ä;ÞM\9c\e<ÝG\94\eÝK¸\93?àr\8aÌ\1d\9cèZ\82\ 21´"Ùo\bc\8bÞNTä\84Ñ{ÃW(\92\a×3\18?Ær\10ÒÕcç\15\9dK¤/ÒJÖÍ\10¼3ø8\80\84Z\93\7foHë\1cÀ\84é\93MK\18\99ºhtǸåÁ\12\946^M\v\14,\1csC§\a\1d*p2gï\16\eÎ\82\1a²4MÂ\89 ~u;Q\91ÞF<t¼AN\17\1c6Oþó`7,·\80á>Ó\99\84\9d\12\a\12\94q1A\86ûÅ\91\84E\94à¤ð³P\8f*§öùE\91$F¡\11´\b\9fKÀ¬ÁIÁS1hCÓW\9e\bë+\r\15\95 }å¾+ó\8bP\96\80â\1a\11´AxbNØN\14\b\13è\17L%$\89\93"P\8d\8d;c\99ÏF¨ñÀ\83\19Û{·D¼7ï*\18Ð ^\86\v7Þ¦àÍ©\1dÚ'¨\9d&·ÕòÊ$\82ü\8a\8f\ 2¿\ 2·(\866fÁ\10ö\867TÔÖ¡^\ 2\94\83®/D²\ 41ù4ãôq\9fs\f±XÝÜÝ\80C'@I¢w°\9e\97ø~3|£\1f\82\11M\96\9b\11x&}à\86X*é\93纶Ûî¹ï«ï| \ 6?{î5\1f\84de7r\91Z:~\ 2
+g:\0ð7³W°S\95ðÆ¿\1c3'\98X\96\ 4Ñ\åa\1e\80²'PÚ\92§;\80¯\93\97#d\8b\ 3«(\9fù¼þJx\a\7fâu·ñs\8ec?\8f1®ïøP&»ô\95\1d±\1d\ 4?éÜÙéf~\8c|\97´êÊ\ 5#\82\1e6\16å-ÕöØÿðQ÷ï_ë^\1fk\113ð¼cîb\9a\ 6a`E\ 6Ìpp«êÌ\9cXþÔÄêg\18P\aûù\94\ e-\1e~\8cÅÃϾ\14iÚ¦ø\9bU¢×óú\8b\e\84?µAôs\8ec?\8f1jW8¦\13ÏïøØP\rõ\15Cõ4u(³£î\1f¬â\83¶k\11ëC\1fÄ\a}?XÂ\87mS:\9eä¿ý;\vú\9açá{\16Ô?öB<ê¼\84?\Ñ\ f±3po\ 5 ,L¥Sµy(5]\15`tì"\92\953"\ 2±\bÝ \8e\96T\80ã\1f\8b\94ÐA\8cÌ\89J
+Æ\ 4n==Á\19Q\ 45ȵ<4\9e\88\bî\80¨t\94\ä]\ 4H\89º\19ððxí´H\f½\19×®»\1d]$\10õ\0¢å{\r µ\ f³\1eÝÄ\86xXªî¨eDJ×4\9a\ 4É@×\ 50m®I¶^\97\94Ú±]s\r\99(\14´Jh°\81\18\ 1ª\ fmÓ\8dXñD-\a\97kH\7f\19$ø\rè\14kãÆr\91~\99åXÄÞ_u#Fz?Üõ;é8é\b¬¬±)ø°à3Wc\11×\12Ý,q-eEÄ\ 1Tð½à÷\eãcy\16ó+Å[\88èú\86+iT0\19ÿ×_\84\ 5ɧ 9\9d$ż>y\ eµq³\9c2÷\85[¾þÒ÷\97^º§Ç8â÷*´ râîõ\9eDz[»¥\88å[DÜà\ab\fbiûëéùÿéX\99\aû±´Ê°\18ÈbzWH,¬\1e\82Ò%\aÔjø\99ºÅò'ô\8cñ\96\12pÐ,\0Bp\8dq6Pÿ\84\96n{t\\16\11Æ\1c¼XðvÑb\8c¸\b¿\9cÑI\82+²\e/\8c\1f4í¢\f9PJ\83\8b\b±|\ 5Ñ^\84\8f\1e\11|8SÌ¥\8b¼4\rë \91hwò&\82\858ÀR`öXx, \88õu'\ fR\1f\1e<ÚÔøV³ºVtu¶I\86Ã-â:h·\13\11è\8b\98¨>ø.Oì&x°/>>S>\7f½\18\ 57w*§=JßÿX¼õ\91÷¢é\83§ú¤vÑ\840¸Ëqzñ\85÷âêÉSkV>GÈ Î¹\8c\ 5^6ÊX\88G2ÆÂEI¯[u¨[u8)ûûyè¿ìXÆ\ 2_'c!;\8b\84§ûÅù¼þ¢
+Ä\9fR\81ôs\8ec?\8f1®ïø6caëæH-ºØ ]=â5ä]»·\f;ùùíäêïýóþ.6\81¦\92*dtΨ\90¡\9dT·¶\8d¶\8dfUÀý<T\1c->UHM%UÈì¼Q!s8Ìóú\8bû\80?µ\ fôs\8ec?\8f1jñ©B®ïø.\9b`)ma¾äÁb]\9aõµ
+ÏëK¬Î\1e¬ÔµÙSÕÿ\1fZ·?¼t|iÝPèüé\8d£z;©ù_\¸\ f5|\b[Ü\ 3BOáEG_Ê\8câ\b5\18b\97¢£\86z`åÉâ-©\0\ 1\9f\ 1Æ\96\b¥¾\vø\880D\a\1d8 \18\16«\8e«f\15\93\f¸HBÚc_gÔ§8X\13\ 3Éþ\bö¹ý\ f.KÝ\83Dd.ÖØ\97\8dP\03n¤K\88fIPYû8,%Éc\97\0\99ËÄJ|2\83{\ 1Î\9dexLR\7f\14aÙÔ¦v;\941¤ï3\ 2O#¸>!pJ2Ã!\ 2ÖK\10Õ}¦\ 4\1e\8e\91\15TË\8bÕ\ fÅ>N\14à\88DX©[\93Ô\9fÄ(YÍb·K\bÀÔ½<\83Ö\17\ 1µ+t=µIINÕ\b\95ÇK!k\bç+?0%òcc0L"Åû\80\87M"R¾ûfù\81ª\86º #l´ï{\16\ f¨¼\1aD/ã\1eû£¨|ÀuJ*Ùà\7f¨>G\1aæKÄ)L,hÛª!õ©Eô\9dt\9eÕ\ eåì¢n¬qÇ\11ú\ 2ó\1e\9aS\8b»ÑD4\rÔ½\b,\1c\86IfT9pÇ\8fpp¡pÙu]CÊ\0åæ-Ü\99È]q³D\94ãCá\ 4\80ø«\14Xô^:\ eJ\1f4\ 6°Å\ 3\87\8b8ï\0\95>\1aÃ\16Q\9cV8ʸ\8fô\15ýY"´M\16\14\D8Â\ 5i\11*\91\ e\9d%\11ùbe\r\11ë\17;Ñô6\8f¥yë$ýº?Ñ\1f3µW\f³¾-\91Zú\86[\18ÞT¬°2ܦj¬kYOÜN¡MÏ\1et\aêÜóÉ«iöÒkß_{í\9e¢Í(Í\94vvÅ5û¯ó\84.A\82\18VX«Ë
+\94ä\1e\aö_(Ü\a®ë¯¬)\8dJ\ 2¨\ f\98pÍ \86â\12\88Þ5¤¹%û¾:\11¹yo\96\88Ë_$\15°\9e\r\11\14c\1d\9f\96X\8b\90\9e\91¶O\eߦ\83Ú\r\vpe°ÅÌ\1c \1cèëA\9d$ðÀ8â9\161¢|(\ f N;¡À\818/fϸ\12\åtö\80ú\80ÄÌ\815y\0º\89.\97È\89ªÃ÷\16YþBÌ\18°wÄ=!\13,\8c`*\89iñðß\88¿!Ĺ6CØ<p\92ð/$mD\11\97,ó±Þóܺxn\ 1\92\8cw¶]EÈdm\12$\9d½÷\91Ö4¢É#/¢\1d\19}·\9e\8fâ&ë©`\81a\ 4ÖÆzÜI\97I\82`J£\10Án\87ä2ɪþ\99\rif\864\ 5Ú¦Än;AÍ\07%xlgaM0³ô2\ 1\7f_,\fP§\9aVÁ$\90å\bë\ 1[,T&\1f!âº\ 5
+å)º\93n·-É\88øEÌQÅ ¸p(EJÃN
+ÃbBmò%ˬÚäL\89SO/á$\92Õ\ fÖ\87Ú]*\1a\92a\91\86(Ð\1aÓÙ<¦\ f\8eówØÔQ\\89\80³'Þ\ 2\ 1<fg~Ͻæ÷ä±®\ 4¢\ 2Ö\85\13¾úÊ{õðÙcë\8c\7fnW3´Zv5\ 3keWçì\8c]}±gãÖËãÖËÏvq¶°\95ìXv5_'»º\16\8b\14Y\99è1\9f×_´/êð\83â þ\9cãØÏc\8cë;þ\82]\9dC½ÚÕ]5©åxÐî-\83/>·«W\7fï\9f÷w±«5\95´Ïr.Æ>Ëéd\17¥í\97HÛ/\91NöÕz\9e¶\97Â:\8e¹F²Ïj®Æ>«5\9bçõ\17÷\ 1\7fj\1fèç\1cÇ~\1ecÔâÓ>[ßñívu\9e/y°X\97fo\19vÕ3»zuö`¥®Í\9eÚÕÿкý¡]ýÚº\85OpçÕÛÉ®þâÂ}hW\178s\95_ÔUBÖÜýï\7f\ 5EõR\89\86XºJ\96\86ä,©\8bÌ\82Ð>F}A\ egU$.@\1aaÈ\18Äu×ìÒ\8f\ 2¼\1aÆQ\84
+°úþ\9f\96Ôt7Ð\1f]DØ0\15õ¦
+¢^\ f\18]@0éB\ 5\83(\99f£\bý1\ 4\bÓ 0Û üaÓÄÕ®îöÇ\v Í\98¤\ e\f\ 6\87¬û_ÿ\ 3Qu±#.(àA½ub\1cX1 ¦H8m\0æË¼\fT.ûã\85³Pª,&\96äÆD2"gQúàúÌ\8c\14Úݬ)Û®\93¼bx
+\8co\16¶Bÿ0\ 6º °\90\93MV\94j\ 6¨x%\17a\86¼ÏùDB\9e\14ãà-1* þv"¢bb?\ eeáqb꨷ö¥ë\v\8f\88ºè8:~IJÁ\11Ì\86j\ 3øV ©ÈòØ}ÿ\95ì\15}´I}$i&¿/"æ8Ke5\ f¯ÂFÑ'á{\1a\12³\16\19\9fe\88¨,\0x©\ 2 \1dÑe__,\1f\83LáßáuP\1fC\ e#v\11j+ê\ba\f\84NÔåÌ&z¿Ü,\83Øuç\9f\99q¾(eÅÛ$Cj\84Æã.\D^dö)þ±{\83ÙÇ¢Ôû\8bÔ¹U7Ê\14\82µ\88\9do!×ÏGC«È\94D\9c1Õ ®)\ 4Câ\85X¥Id\88\8c\fë|\ e!Þ\85v\ 6¢ÑkÂ\ 5Æ@'\80Us¸ÂóаWãpíÐ\8aìãè\eM ï]IïÜ¥÷Réÿ\ 2Ã\80«\8b5\1f+à"\9cW\ e\87Â\1d1\10$Ëñµ¬\ f\aÝÆ\13I\16$\8f¸³~ø\f\89¥,\98þq&ÆHPÑM\ 4Ó\b}\8fâ\r\910pà@©ë\8fýË\8e\11²\18r\12*__\1c¤l»\83Z>ªÞ\87È\1fé)Û\fî\9e\11~×M1ÑÆÞXn£\19Ͷ\ 2Ì\9e_´Vù$%ÞÈØ\9f<×y\eR!/5Ö_~éûK/ÝÓ³¥KÅ2\1dʬë\16qÌpÏ¢PȰû\90ã
+\ 4\b\94À8dt³:o\7f\ 1j\ 3\94\9còð\9câJ o\07à~áÙë|RG"\8fj$ØØ®Bæó\ eJ{½Ê\15hHæL\18"¶\ 2\ e\85Ã\9e\9c1Ä<`û\1cNÒ/Ã'\16\11|¢\f«z\11Kß\8a\93)4\15\ 6±¤Í'6\91\18\8e\9dCíÞÀbÄu6w\9a$pu7àä\16\11¢ 5\r\11ò\ey\aM¬FHïáÇ\88#î£\0^epSÔ`lþDÚ\fÖ\10\ fÄôv~\87\9a'\81ãóq°ëÍÖ' |v \80IìCa1@o\89XðäÉ\17:cbÕfÈ&Ï\ 2Â\11iÞÎQ\1f\0\0u\ 3\ f\84ØI}\16ûö\89S\86AÏð]þ\1aÒ\94u`eñ*\15o\86\b\81ZKßÊ¥ù%cQ@®o®R¡r\14yüÛA\ 3\1e¥*\94ú\12°ó:\7fü\ 1\99èXÑ\ 2æúEþOÊoÉ?\85nf}q\\8a4ô1\8cÎÇP[Ar8\0´9¹Ä\9dWF6<\88¡8N'ä\9f\ @+\f¾(\bóQÜ\11\14'øÒ\v!\19¹Í\10ózR\9cDøMi§\bòÙ\ 6Å¥\95\ 1@5æhIFQ3Ĭëñ\82Pë\83^\1a|'øEé\1c^\192\ 1e\80«ö\b\8a\1eS½\0<\fÁN¹\83\99Ø\ fÍò\8e\13\ f\92\16!ɵ¹Úµ¤Äk¨X]\1dëÂ\19\8cH7 ¬ª§øô\8a\1c"\16û\b\15\9bº+\bÕ-n\86m\96[4¤%tÀ\88ÚU<Ý,\11b\1a\8c2ÏeÞ õ¯~À\11?\f¬~)F\82l\9d\90Ý\96;S\19O§Y¼78>~ª\9b\1eÐ .\82äÅ\17ÞÛ$O\9eZ\9cós_\8ec\1a¡\9c9-ÆéÌi®\18gÎÅ\89Ò¶1ض1xrÆìçá³`Çræè}£R\89\v\16:q0\8b\15\94?\15+ê\86
+ǧø{ÅwïN\18ü½¾ç/8uj\8bW§N£ãÉß·{Ë9}V<dõ÷þy\7f\17§\8e¦\94Î\81ÎÈ\8cs@Gv\1aåú\8bsÈ\9f\9aBý\9cÆý~\1eV6\ 1\9d\ 3c.é\1dp¸AÙî\81n±{ÓÅøSQö.ú¹)Æï\15ý»;ah°ö\ 2\9d\ 4ë{¾Ý¹ÓæK\1e,Ú¥Y_³ø¼bÈêìÁ\8a]\9b=uîü\83ë÷\87N\9e\97ÖohÎ\1f;yÔÛÉÉóÅ\ 5ü,W»k\ eó69°\92]·ïÿëT\80õÔ£\19ªëúÈÔ4ò\10Ð\96\ 6´\1dÌg_\vC\85\88Î\fàle^¹Y"K\11\97b\88-å\91\8fGoH·Í\f Ê[©L?6Dw(O©!6/Å&ý\90Á\17-ÃQ\93¨G¢À\bk\8a\81Xk\1aÊ%áÎnøf÷\93K {=AÏ%1\ eÅ\19\97ü©¢\8aî\ 1}\99XR°\97\1aB£\911ô3fCùÝ\9f\85ÉåOT\ 4ò*\1dR^\ 1V<Ù4\ 6( I\18\93¸©(j§
+%Gñó.Í\10Q7\1ee\13»eëT²½\7f!î\ 5Ó\99\86ØïȺÌ\9b\88Ùî'å\87én\89yï¢\9d\86h\96ÔRç\9e8S÷î¡M:Ã\ 2Æ.»ß\8f3[Üì«ù¡ÿ\9d\88ÈÀfø¬#\b>áòì<Ý=þ=á\ 5ð\8f1É74UÞÜÊ\12áæ9½k\v\9c\18Â\eÏðÓ';\a*Q8ö÷\16ý+/~\7fñÅ{\ 1\1e¥\17ÛØ'{.\ 6b!´i\añv"Îý}¡Î\9a\82\aêx\876ÌèËÉ\9a\14ìZ¤SxWNíð)<Ô\by¨\88ór( \822Q?\18\8fÓ\8f4E\12êÀ3[\9ec,1\90\11\15\95Í#\91\ 6\ 1\88ù§\13\r®Å>é\r\10\0\83\13\ 1G \9cI\9b9-"\f§ê
+8Q\e\1e\87@\ 4G°ºÍ\12' §ÊXtn\9fªMµ§jS\91/\ 2\xMN\eVÑý¡\1a4Ìb\9fíZ©áZ\14ÓߦY\1e¿©v\94\9bO\9c¨3ÆcQÉe&ãÉ*d`h\96C\19bEÝy¦C¬ \91±Í\1elÇY\99\ 1\853º\1ePÎ\euM\1cb#rPåUC]Û÷þñ\8f¹Æ+V\e\8f.|jöü¥\1f\88&\1a;g®Ê½
+ñä±78\98ïØÅ«¯¼×3\9e=¶\ eá×JÇw\ 10\8d7ç\8fcZoÎ\95`\13b¯\16S2Ê^2ÊÞÅþ*\16ÖKý\ f#\8eï\1dF\1cü\14Æ\88\8bÇ9³öØ \7fü=\8c8ý^CÚ\9dpÀë»þ\82\11×?ó¸Xq\9dÝt-ÚÕ\a\rß\b\1føI\rÈÕãû\17z¼fÂj^\959 \88C\93:I\ 4O£}gc\10gc\10ç³.¿:¡¦¯}!\83@ó*\83\0î\1ac\10\84vÊÁ\fm§M\87¶ó¦õÛ¤s\1eÖ Ð¾P"åú®o·èú\a\1f\17\93`Ï÷µÝ\eQ\1d\9fV\81\Ý=X¾»vϳ`ÿáÅüÓ*\90¯-&î¡\9eW\81T\7fÖÂûòj~\=ÞãbÙÏT¾q\91ï\90^×|-\86ê\90Ó\96\82¸j\15:\88Cö\12cää8m\ 5\17gÎóê\90Z\ 3#\1d±RÞϬU8vY®îD+*{ǧ\17\95°¶X@fâyy¦{KxY\1d\12ï\ 4\86¹hx\1a¾Ç\16N\r\81éN¼jD²öé!-\8cÒõP#\18\1d\89Í\90â@\ 5¦r\ 1\14^ * <\10QÅyÑÎ\12É\0\8e\1d\99vó\8a\9eSY\´·û\18\10b£\8fvj\b(¯\11\19PF\99ïMÃÀc¥\1fùB\9de¾\f\95u9ap\ 2¿T ¨\91ð_\a\0"º
+\94J´4\f\bAþ\a/gwË\9cF\91y\±¦T\88màFQm\9aÅsuR]Ôò3\ 3\82Ý¡Ü:aYy5\1f"{Dì1ËÛ-ÚX\1d\95þ2-qÍ\97yÙ\ 3´ÿ¯ \19j\1cÇÓ§/%-\ f \87YO
+ÔÄ\bb\87tè¤\v \ 4\ 1´\18´-\85G\equ\10 Ûp«2+\ 36`7%\9cºD±S^S!\9e·É4Dõ5FæSmaE\ e\ eSq¦ë\ 6\94\1f)\1chs3ï\80\18]óåjÞ\85\85\86½\9f'Òþ¸'ìªS\fÁÒ\98»à\88\12c©\15w\81dc~ݺ±"\19:\¯\9e$|cÆÅ\ 3¹Ó rS×\ 1è\8dXY\aä/PÑ@ \16Ù)\9bÂ!Yt\>f\98Ä`1¾Î¢ç\8bÆ\9eç¥ìjÙ\ fÉ\98JDdòfµ\ fÜ\8dªà\b\ fÀ\ f~a\18ØÅ±+O!6Î\ fàòµ-\81*\1eO$XWA\a÷L=²¶Æ¦BEÕ\e\98ú\82\88Z¦¸;àÎ\aÇØ^D\92y¦\8fhÐQ¹ð\19÷iØS\rUër:±Ä{æùý\97ÿ¬,°4j\17\0 Å\8fº¿þÇyz£@xú$\14àãó\0\80Ï_üþâ\8b\1f\ 5\ 18\0\1d\8fÄ\14\80k\ 5b\909ÔóÈ\81\98\8b\11\95\0Ét\11G¥øu$Ñ\wâ¤ý\1eûØ1Ö~·\ 4$CaÈW\ 2SÈà3ð3±\8c\ 4¢WJ
+Ò °{3ÍI\828i3í£e\88}'\v\17|\12;)¯\93\9aU=ÐÒì\996T\\86QS!c\8bÍ\uY~²C\f,ïÙ1\ 6\ eYæç\0\85¾\1eMp\8bxKÆ-¹óÄY?FBE.9\88\17¦\19ñ\ 3\96\8c\85¸\89:¢à\ 2\98wþGRQ\19×ý]JR;p\93³\ 3Ö«TÖP\ 6\95¥¤#\81¸dês\8cT\ f"ày¸\ eDnf\0\19\0Ø®\12dÒ(\7fúö"\98¿m9\82v(\ 2\98âO9Õù~ÖKº*#a\f¬¢$*pÕ"¡\9f&ô\17¾æNrN\1aù[Âî\8d¶%àø\87,ÆÒ\ 1kÌÒ¦Ô\ 6\8f:Q)áo\96\1a$\80 j\88á\15mP\80U.v \0Y»\14\16Ó\12\95~\15¥Z)¡¹:uÂ\92\83G«\10/©\8ae¤\a*ÊéÖ\99÷Xpè_\15ÈW\8eU^\87'¦Ýé_\8b\86\11!\b%S#Ü-}]\1a\1dîÈ\8fv¢\9dt¿M\rò\89Q÷+¾\8d{xFt8\80:\bJ2°tõø\9c<à¿\11Å%\8f\1f\16\eD×\85ó\89k¯@\ 12\17\17|µ-Á\84T\96\18®®®ñbq;»R¦P@\ 2% ÆYN\fw\81z[*ôwØ\1fSüDA9\18Ú\12T\14_î*Ôn'*|Ñ)Tq\92ÌÃ\f´Ï\ 3N\97\aüó\9bc\ 6.ì\9c\18wy&µ\9c£\ 6\96Eòì¹nì¤û\0´\97_zo\ 6=}î\95Ø\81ì6\1a[L\ 6\8eÍ\9fðØ.¾\9eå\ 6\9a.¡a\8d^=Gþ\ 4ÊÆþ\87û\89ï\1dî§\1c-.\9bËÙb5\8c?eeó÷°²õ{\riwÂ\ 1¯ïú\eî§x\\91ÙPQ³\1fÓø á[qå3@øÝãû\17z¼º\9f4¯òX@t\19\8f\85JU-÷\80þ\1c®<g\yîälØ\9dÐ\15¡}!\8f\85æU\1e\8b\1c,\82\97\13¼Îêd¢íð©´\908Æï5¤Ý \a¬}!\8fÅú®ïw?Åù\9a\a+xm×\170?\a\84ßÝ=X¾»vÏÝOÿðbþ©ûéÅÅ<>\81\83\1fý\9dÜO_]ÍO#\f\12Â\16Y\1e1ÀY#4x\97ü1\90È\16Õ\11GAØ\16@\a8\ 4r ãYåç\0S\96)\92\91\0\e5ë\bÂGĨc¦\9bÙ"\að\0,k\1fì\11\vs¢² ÷íDíÚ)µ$¾Gu\14a^\a\80º9`Çs@\11\88ØÈÝï\ 3\12\8e\80\9bÊ9\94X~b&2Br#áÀ\ 1%\h²\8b\86§\91\17=ü\9d«%ò\84±Ä\ 4+`\8d\99nô\84\ 1ÍND·*\8b6\ 1G\96\90àHîí«\83©l\0L`(\ 4þ\17×\9d'\9a\9fÀ\ f\96\8aLYøNô\9eá*è2¦\8b^\8cÇOx¬IÃÓ(FÆ{öÝ\107\87\8cÔf\b&\17\16n\88ÊMÜ\r5Z6¿ðì1ê^\11Q/Êì\ 25yÆ/wjÄÆ\ 15!\8d\9aßX\90uÁ^\91\92ä\94S\1d\ 5"á\909Þ5ÿbh\18e@9L_O-©æO\ f\8bÃj#-~\ e¨ëª¸CÁÃÀ\1e¦\93\ 3ù\ 3H\80qÀQPi)~61c±ÚDé\17¬F$´\1e»$¤\14Ó¡û\9cbvá·*iøa<ç\f\85td.N\1a·\ 5ò*\>µÄ52=µ@ÐÈ\r\16\0à\88\83>\9a ·{a\a\18\ 5\90â\v7U\9b\15¨b7å\89îli°h\8aÔÖ3\95zÉÍR\15$\9b\93¶\15s>¨¯»C\eÈ\8d\ 2d\88ê\8d,\fÊ¡×$Ý\ 6þ2èÌ@ÌHIÙy\8b\rÜ3\8c\15\ 2\92LZ\90Wö?\98IgÇeX\9d\83Ê\99\ fYAê\87° ¹ný\8dE\ eN\86'c\®\r\8b\17Q#jèÊjx¨\14\9d¥\ 1\8cOùØ\17j\88òân*¬/Þ\93s@\82µCä4ãö¡÷ϸæIÃ\80\b\99\r\ f©i\99\108\e\87\95Ç÷\18\1aÞ=\1dÝ\96\8a_ê\0-*j¤\152 \86Vøv\9a¶û þ\1e·×ÇÅ\10»®q\8c]µØßI®½Q\10=}Ò¹VË«U\18\1f½øýÅ\17ï=ú0J&\9549_çü16:À\12*\18JÔ úa&wî\1cnĪ\0\82çÊ\16&\8d\f©\18¬\1e5Ä\9aæÙ!½ë\ e\ 1k,\8e\ 6Ó\91\1c\15\9bã\80¿XB.Éá\ 6\1fÙ¸VÉyÄ\1c¡Ä\89
+\94A*"ñò·xYV
+\ 1Ä"Ð@ú\b\914ã$RîXð¤\8d==ÐýwK\84û\10À\8aò\1cw@\9c\9a ß5\8a\14â\0ÿÒ\84)\1f\92nn\80\9aÞDÍ\9e·\v\0iWAIǪ\19¼·\8a¬\08\85©cx$à7î\ 4Ú¤a\9cü´\90N-k\"\12\8c\vV¬¡Yaj¨p9#X¥ËB\85Ù@q`å\17¾ä \88\84_\bɱ¿4nák \80\89P³\94\0\89\ 5n¡\eÝ©\10\93ÆÅ \13Rf·\ 4?×J ¿\85îab\983²\13ã®\87B\81àάt\8a\ 3\82\ 4Õ\12\1cî"ÂÚ£¬FmiSq\82:u¢Rɺ\9d¨\aÒJ<\9fG}K:R\ 6ª\89#b\13À4\ 3\12,q\15ñ[»TU?\91Æ\11Ú1yw\13\12s} )ê¬Î@\9dä`ΧiÙÖyÅV\ 3Ð\88¡-\11GÁw\ÅáíDõN\ 5X\1cpö\1dqôá°aÅ\97Gç}\96Y P ú\f\85¯Ãµ\18\15a?*\aÈmY¨K4\95\16\87/ò\8e/OÚo©Eª\80cZò¾/\8eû5\87ò\91\966eÂ8U\17ùq³Ô@¤0nXxÚ£R\99Ü\ 3Ùå¶ì\82§´)ïgµ<Ú\92\86\ 3{ÌÐ\96Ü\1cìé"co'* l)ºú\8fá\ 2F¾#*Á?\9aßïp\96}XÌPÖ\81\9c\92s£ÝÛcÏ\9eë¦\99{^»àK/½7Ú\9e>·\18Ä×µjñË_V\9c_þ²\-$é\9ds*\eó9\eóùâêªéTÄÀùå/ã{\87¿¬6\vMê\9a·\18,ãO¹\ 5ø{¸\ 5ô{\riwÂ\ 1¯ïú\eþ²\9cýÕ_Ö\97³oÓãA÷\82»ÑOüe«Ç÷/ôxW¸À-´K\97\9b\85»t¹\9cý\19Åø\1e\8bñ=\96³wdu"¸{·@/ǼÊÅR\9b\85½ì\16\95Å÷\18\7fj\8fð÷Ø#ú½\86´;á\80µ/\ 6îýü®ï÷\97åù\9a\a+xm×\17Ð=Ç-ÝÝ=X¾»v\9f\14-øw\17óOýe¯-&òE\9eûËÔßÉ_öÕÕü8\«\10 ,ÊÅ å\91áZÀ\15©!\1a¢C\82lQÞ\ 4\(\88ʵ´®×²$Ýïÿ\9d¨I¸x\ eÙÛMþ>@Y#h£
+5#¦xÃ\15X%\1c\ 5\15Gz}`ågÝ\19\17VÝbu\ 6\ 2¥%2hö ´PK\ 5$\87 å&Õ!áw\ 4\88ÀIàpÑjh3C\0\83_TDÐ\1c¥¯
+{\1cEË\9cCľûaÞ½hعa\ 6\ f,*ö0Ð(ªªëÌç+ó\1ct±Þ\8dE\ f}qÓ\84\85.O\81¡Öª\9cþÞ#ò\ eä\ f\8cý\7f\11ÛR!¿\19O\ 4©\9b«¦³«\90\8aÃÂ\85cN
+9G¢{B!Nú<é6r\0\84!\ 2\9e]óûÍñ-v9j^!\0ãÍñ\1e²Ë\972Ô\14æÄÌÉ:\9d\9f7nø§O:\95\99CfÅÅ.\7fñÅï/¾xO\93\11\83fO\1cAýþg÷î¢rïæ\81U¹¨\9dv¬}ÚµNdÏ\9fhfïn*5\9cÌ\96YÑ\82\88'\19\87a\1f\9bIÃÖEñ²:
+JïÃ\ 4øâqp\81ÛëÚ¢zÁ+Á$#<\11\99FRÎ;\f»ÊSR\17+@\1dËØÎ4Ë4\16\15Æ83s
+\11\v H\80ê\f×-9ix\1aeÛª«§\96\15!IÌ\eÎ\1e\10¸`©H3;\94ø\8fÀ\0fæõ\93sÌ\10D@,äZtjÝôZ\0ÁÆÃíXc0g\91ñ'\96fO¡"¿\ 1\ 6Q\85åH\0\80½º\ fvÇw\0.\86\11V\8aøÔóf\ 5Ê\836É\9aª{ùôì¹.ªr»;]/¿ô^\88=}nÍÎç\97í^\85Ìd<´\\97ñТÅ]¼jêK\89\9f
+ýÔ%.z\7f´à\8bê_Æ\83Þ;*½³´í.\9c®bI³\93ñ'u$?\8aà°,\87~Ï!\99N0àý]\7fÃxh®^\8d\87P~t£ýQ÷\82\82=\9f\18\ f«Ç÷/ôx5\1e4¯Ò7[´\98~\9d!\9c\94»\16\8c!\16\8c!\16Ϊb´À~c_Pß\1cóJ}\13ÎP£ozfâNÆ\9fNë\96\17¢Ãø=\87d:á]\9aö\85ôÍõ]ßo<´ù\9a\a+xm×\17°<\agÜÝ=X¾»vÏ\8d\87\7fx1ÿÔxxq1Ý'\88\8d£¿\93ñðÕÕü´ôú!\rñPq®ÿ:\81AðÍ\19ª?\98Y \98]\80\9eAÿ8:SW` $½\97\16ÓpÉ\17\15\ f\17\98\90éÚB\b\84\ f·ÄÎ%\r-\1eîg\97ÞÚ3'*ß|;Q\1d\8a£a£uÅX1þ\bFg¡pt\13åÖ\ 4\9ffQÔÞnB\80Å DÀÞ[\9b\ 5 \10;ê\11Enh\ 4a\96gÑRÓOøÀ4\9aEí
+\ 3©\9c\1d¥\94àR(\1eÐØ\8eXÍ\9f¿û´V\86\147Û\bB3Ò6Ù\9d\19Ú|-¶¸¡Æ\99úa©ýcRs£êph\8c\9cï\1f\9d »°ìsÖ\ 52˹Iâ\1dm]\ 1!|\10\19\14\9dV§\83\17ðO\15\16ÞÑu Z\18\0\1d\ 6\92ßo¼»\fXJ\û!wEu\8c\e\91¯àv\ 5\8e\96%á\8e¢rn/Ôx0úÕP±Sjc\85à\ 3h?rÃ\a]¦÷\ 1ùq{Í×\18åÍ f\16«öhÃ\ 69\88²>cFÆ^>møyO¼Ï\ 2v\19KÓó,àö\86ÉB\93ê\ fD\103\ 2\15á\99ª¹ei0?X\18þL\1cÛÙP\89ÉÅ\v\98\83\15<È¥ZRø+\8fap<I\b\93m\9eU\92\81.¡\15\87c¼ëÆ\15\1ft(\85\8a\97¿å\80\16¯\8f\9c\7fâÁÄèÝs#\96aSÞxÐÍß&1ãKNT|ÞíL\óÀ¢¨ÌÔÙóu\9aTÌ÷ \15\"\1ec\9eë\b]TN\80Jýá\86©\1e`v\96\ 6¼\ 6"µ\9d¨]ÑôRâ\f\15Á2\19a\97HצÂ\82 ÿLÞ±Ì?ÇLéªm·Áe¢\80¸vW\9b6_Ê\99ÚÔ1ÀÛ\99º>\ 55\14\15о?ù4/ßs\8bNØÀª+é\ 6wÿÒùûyóã¼-\96t\12Xo\940O\9ft* r\9crOÿäÅï/¾x\9fà\87¥ì\ f\%)Â\89\85Ûbã6C~\ 3£º\891êÅLê⡸/¬îDÛ\ 2áD]\ 2ÁR\11OÀòyÝbüé3Í\81#\9d\ 4Âü\13û̵\91§°¨HV\98Òevfi[ \9c¨K X*6/k\19BN\a\85\9fá£\vD\ 3ÑNDÃô\f®| D¡(º\ 30\184\91pß<¤/«9Ô\13m3\89\v\952ýf©p,$\18\8fýíyd\87àBêÄ\95Ç\9f\98\9eÒV¬þl\ 4Ù6V\1fihG°¤%I(.ýUêÜNT@?fd@@¸IjàZ0r\18\ 44\91KÁ'%í`@¸Ð=¸v-\85_\ 2@äBwe\17\97Ç\81Õ|°õ&°\84¶&
+À\9fdÅ\7f'"`K\ 1ná /äg\8c\92e¦óO\8c
+\ 5\1aËÄ\19\8dJ\99\9cyw¶iFB\9d\88KB-*\10~\ eÌÃ\91ë(íDw¯\151n\8b\98ÎÄåHÛmÂñ³MHÇ\86ÚW]Ö¡ü+#\95*\9cŬ@yøCù\85\14kÄd6SÂ\88(¸k.s·ÄÓÝ\8cÞ(eJ¸rèÿNÔ\84ôF\89-$\88\15\1e\91x\92\vóO~^P>\82mÄ\10\ 3É\98ÕÙ¦YÁ`¨F0lj\19è)|ÏÄhõ'Á0ÿä²û>%ǹÑþ²Ý\99\99\ 3#0ïgæ; J²8>®\92-Û\86\r\80û"q\81y\98ïL£\9fJWÿøÙn)¡<&
+\83\|W/½øÎ\86úôÅ\9bA\7féþÛ«¼&]XÞû\ 56Ù9\8aE\9b¼ó\17\15cÑ\16cÑ^¼OÍBNªÿáÂR\ 1Oi?äpÛ\85¥¢\7f«\13ý)\17\96Ê\ fÊ\85¥ßkH»\13\ ex}×_pay\16o:»°"rx<\ 4ê]Ë·\82À\9eç>¬ÝåûWº¼8±ÆÌÒïáýa±\v½«g'ì\15\81\95\9b%$nó÷rYìNèÐÐÎ\90ßC3+¿\a@b\8dß\ 3鿦\13ý©]Âßc\97è÷\1aÒî\84\ 3ÖÎ ßc\7f×·;±¼\9b¯y´\86×\86} ýs\14ÊÝߣ\ 5¼køÔ\8dõ//ç\1fº±^]N$\17<õc\8d\ eO~¬/¯ç§\8e,à`(ûÚd\8dxT£vM\98e\83ê= Û²ü\ 4Ê\97E\1e±ôfD\9f\1f5²Þw,
+qëCFE\0L4²\95\a¢6\ 2;Y\14ÓÐê\10ç|zQa\C{!Ì\b\83\ f\11àXy9\ 6¬\rAW/\1a\1eîf¢Kª'¾Z\16\J1öõ\80\93\8d{°«Áãâ\8d\90ñ*\1a\8erÛ\91ÐtÌÙmDQ÷Èbv\87\1c
+\0\ 3\17±¦\91®¢J"0\ e<!×Êp\15\10'\93\93«\8aí\8bÖ\87\19\0P\1dZ²-\ 3"1£Ò{QP\92\ e\19Xyª;Ó\90vÏèþNM&µ¸ï3\9eDz0W\8e\91«\11\0\ 4r\14nN¤{\13É\9e}*\95\13ÓQ3\9d<(gÊ\92\7fxº V\8eFM¬\86\86 ®\11µ#\9cm\89IWá\ f øÓº@ö4Ãêhý4èÂccè³a\1fTº\ 3pi=\82WÃ\ 4\8d44äe Ú\18«s¢2÷âv¢"©\86\855ø\9e4Á\ 3Tq\ f#R,/âré\9b\1aûEn\ 5Fð\12}\ 5K«\94\93\15ªÞ'\ 3§\81U×w2Q\9fJ\ 4$Ôrj Û%ê\8a»÷ÈpSà{\87ÈC\8deÔVÅ\9dà,\ 6è\7f\8e¼«<C_3\ 2Bä©[´\90\0z \8dåDe\81\9aÛ\89ê\18U>âVúnçî=\ 6`@\88uà5à\82ºT\19\8e\ 1À\ 5\ 2èA\89¼¨âI@!\10\14Õâ\ 2÷üb:\ 3û@ÜÏ<ó\84¨g\83\95´4\84Ií´C\ 5Z\15PÎä\19\8f,/¦²ÀÛÃ\eë±ãF\15\14Äò\a +\809í$\1eB0\1aRÊÂÑùõ¿\13\15HðÒñ,µï\1e\96\ eÆk\ 6\8e)CBÉ9*ö\11½\98\11«*W"\87\9e\85©\81øð\83G\1f;ß\8d\12\ f\feæ\9e\19ÈJ\93Æ=ã'\8cÒnÉ:\8côâ!pA5\8b6\rà\91\8d\10þ'jQªÚíDEdûAp\96¾#ûü\9e&ý~uþv #\ e>L8Á½º\84ØÓG\9d/é>v÷\ fÞüþê\9b\9f§\9cX®0\ 3})9\ 1ëa\89\14A\82 B\95Õì*¹f\9c|\18ØV° °¹pù\8dÈtÕ<¢Ñáã\8c'ƹ\90oÛÐ&3$\8blWÆy;Q\ 1m@\ 49¼\87ÉV¼\9bP\ 6\80ïÓ)Y\84pö\9a½D*²\ 5\ 4\15B§\b¶®\a[\1dÒ¦>\90\17uÉ\v ®\94,\19´ZÂ9D¿;\11`=eU×ìú9¤fwtéF¦Ò©°£Êèó qO\ 4¨Që\v©_d\9c¨\\92\ 5\ 2{\bqì·$]\14¼\ 5\8a\9f1Ý\10@!ªÔ
+g˽\8cvKFw\11ð\93à\8e¶%\1c4\ 3($\8d´;ª\17IJ\83Wýkª\12~JáFç¡\93*\81\1cÆ8\10·Y\89\8cÔc\14\9eÅ\8d\85T\15¨Z9·\81zqUy\16\8d;¦\8eÒݦ%\82\9d\86fÕT\13êD3ÚÖ¦"¨ \e\ 2[C\17nPÕôBâÀd\16NÁ'\1cAò\9cY?¼ñ\84#\88%ÙÀG\ fÙÏ3hþ$1Vò\88\a\90Tå\85ÛnIL¼\95¥W+\vh/Ú\92uØ\1a'*åâíDE¼&w ¾0Kú È\1du- ópm\91)\94\91¸ñ[»MØYiç\9c\ 1\9eMhïë4?8ö3óäÄô\9dØ;%àÒ\9a&\95lb\94\e\ eã\1eXJ7aV\81ÞÕ\r\ 3))¥\f¯8n&UZÆ\97\85dÖO÷ÁTyC\9bÂ\8e;1^\ 5ãíDÍ\13ò\8eï\91F\92çÍ%w|\e÷K9\8cM\83ûh\ 6 ¶\ 1\ e\fܼ!º«¿\936\93Ä3\89hN\9a-»!nG%¾\8a\9b\0;\9b6\ 5Ýà\a\17¡x;Q\ 1\94ä\19\8d\aW¹ÒêÖ\8c?X\9b¿\9aµâ\85ÇôAÖÊ2à\9e=Ø\8dÃ\1a^K[yôÖ\afãÓ\a_Ë[ñ*ß+¿]_Òå·ÃåºñÛ]\9ddÁ\98ðÁ\98ð\17\97[²0Ãê\7føíT X'?g\v3ìUTtu¢?å\9aPyS¹&ô{\riwÂ\ 1¯ïú\e~»\18î`\86\91ÖvD¼þ®å[Ååö'~»ÕåûWº¼úí4³rô ~·qôÄxöªÌ
+ X¹Y\19ä6\7fo\1fM²Ø´cgÈÑ£\99\95£'g\8bMëɪw'úS»\84¿Ç.Ñï5¤Ý \a¬\9d!GÏú®ï÷ÛÅù\9aGkxmøÆ0\82§~»Õߣ\ 5¼køÜo÷\ f/ç\9fúí^]Nÿ Öðèðä·ûòz~ê·K\88ë\17¬\9añÛ!\91=«ðβØ\91)Ú\15
+J\84&ôÐÎâ\11ÙN¥\17ù*\89uo\99½ì\ f9¡à\9ehÒ\90ªJ\ 3;T\95KáD\v\10òÌN>Qµ\816\ 1L\\11ù\rp\10aä»÷-6`W\ eG\10\14${\14jc\18t%L p^\88nâ\91ð~\8côªép\ 1\8aÉ,áº]3\0ê \9aj["\93À«îL\1c¨\0ÙÁ\7f {«
+U¤?\9d éK\8d\vÁS\8c/ËÝNt*<\97Âp\1a\19\1aì\97BX\883\95\9b{\13X¢\19_\8fW\94Q\9dø\90\ 1ÇÁ\1cmUu\8e\9a\a(Ï*\80\88¢;¼¨Æ×\11\8cÒ¬ñýnX^\99ý\7f\v\94\ 5;%\8d!oj\9fàÜW\82ɾ¨"C\1f\1a&}d>wU±\e!TJ\ 1ô2nð\81[\f\ 3\87Ǽ+³Yþ\12ù!\fÍLÑ\89\8a)2\ 4\8f5\86\97\a¯HA¾Æ¦\9c \8f\94|U6\84÷\92\99à\18\f\1clÌÜj(1Á´LÜ+çP¬\8buo\15ë\8c%\8a\81ÊÖî\96HÜ`,\ 2zL@8ò\84\12P5\93ã\10:#7Z7Øc\1d&j\ 6\ 2p§A;K4pÛ\88&14sd,Uó° È,`ùJ¼"æ Ã*ÀÆnk©ì\12\17åpÚ· »U\15?Y\10\93{=\97á\9dÝ«|¿\1f¾Ù\11\14½=\88\93\12Ü8\ 2\ fü@}\11ßÄ\14\9f=éºAá>q\ 3}å½ï/¾÷\13'PÆ\15Så\8aÕ @w\1c.\80i±\88;\18ÞÈ£+@oõ'[Òp¯mKöýìG%wÓ\121»Ã\81\r°\89L·s\1aeàñn\82ßàiâb \17
+\vM\88\ fæ\12NÈ\ 1\ f²iAÂß\10Æ\1e½\9d¨H\11K*Ñ\15GL\ f/iÄ}\13á,\88/\1aJÑÁ\ 4nd\13ôç,"\86\8f\ 3z¨µû-÷Ú\1e\ 2L\98>Ù´Äy\94*\83\9aA¼ëÁ\12\946^M3\14<\1cs\13Êð \1cp5gï\16\1föÂ\1f²4MÂ\89 \86u;QÓ,Ý\8a7Èó\82ÓæÉ\80\1eì\86å\e°ìgx\94°SpYQR¶~&\bq¿X\92\0\8aRèSîg\19\1f\15Wíó[Q(\98Ü'¡r\0\1a\ 2EK¬\14\91Y\81\9b\7fÓô\95'ÂúJC\85 ð\84H!æ0¿\bÎ\15n_\ 4Ó\ 6\81\8c\15\ 1>Q",\ 4à\82ØcÉ\93" \8d\8dEc¹ÏFñÀ\88\19Û{·$\1at\99Ñ8\ e¸v\13\84\a0êÚ¡}\82\v3åö¥:]3Dÿ\15#\ 5T\eËUmÚ\98\ 5CØ\eÞPqýAÅ\ 4Ð[G\f\9aç\18ÄåÓ\fÙ\87÷ÿ\18r\11õ¡µ»á@$hI¢\8b°\9e\97ø~3|§3\ 2ÁÒ'vF4\9aô\81/b)¥O\9eëú.0\92\9e¸"¾òÎ\a\8að³ç^sDpKV\97\99j:~\ 2\1fg\ 2Åâof² \1cµòßøW&F\8b§\91L\b/¦\83T7\91fOhµ\8c6¢O@Â\99®\ eø?·ã@a\fóyþ\85\8eû\13ø\89×ÝÆÏ9\8eý<Ƹ¾ãc©\Ò\9f¦¼ù1è]ëªk\16ô.\Ûý¤[è-¡\10Ø'Yo³Ó÷O;Õ\87YÀ\f<Z\98¶\98\16\98hA\91\9a*i\16\9f\99\93È\9f\9aDý¬#Ui?\8f\82×Ú\ 1Tm4\9ft\16²\12\ 1\rKüͪÑëyýÅÍ\10J\9c\9b!Lí\8d]ïç1Fí\80Bü\86ù\1d\1f\9b¥ùø³¬¨ù\92\a+vn¶\16Ì\7fRÑhöø`¹®Íê\91\9fä¸ý;\8b÷§)m//^\97<\9fdµ\ 5Y\9e¯¯Þ\87\80\18¸\81\ 2Â\15¦¨ª<4\93>µ\fv]DÜ$*¸!\ 3\ 6ï \8c\$\ f\94þX¤I\ eba\8eSªT$\91|\ e>Ú\8dÅ\9fÅÕ \1fñP[P³¾\ 5\ 6\99ÃÊ\84\99\vR\92\82\85º³Ñ\92\18E3.Pw;:: ¯K7¹ù^C
+ÀëÓ£\9b\18\11ÝÊÛ\8f\f\94Í\1f¼kNJ\1cL\ 37·èVI\16\e\90h±]J\ 6êe\95ÕV\86Ù\ 5b\ 4d>TF7B¿\vU\15\\93!\9de\90è}Á±hãîq\91~\99åXÄÞ_u#äy?LÏ\ 1\1fN\8du3\f%â¢%s5\16q-ÑÍ\12×RV&\ 2x»à÷\eãc\99TÃ+¥Y\88Õú\86ËeÔ'\19ÿ×_\84\8bÑ|\9a\90ÓÑ\91#üÉsî@¹DºVî˲|ý¥ï/½tO\8fq¨\9bU<Ôi?Tf½\8fµ´¸vàò-"îâ\ 3Á\ 3\89JãäÁÿéXx\87°\112Â\ 5\89cô\91\90XX\e\ 4\85I\ eèÆ\1e\b4NEMPìA¡z½\91Ê{°\1eØ8\ 6 Zk´${\61Ð/å»\ 5 DÇ\ 2xÂë\19ë\8cF\846µvj7¬1PJc¡\94\84ê)U§v\ 6ãáL17\ eïdÙ\87\9b!Ú\9dl\88\aðv\92f\8fuÅ`£]wò$õá\15\84\82UÛ¬®\15]\9d\19Òæp\8b¸\ eÚÍ\12\11!\89\ 2µ¸Sí²Ãn\82\aûâÉ\99*_¯4ÁÍ\8dòPf\8fòZw,ÞúÈ{YôÁS}R»@"\ 6J¾Sû_xὤzòÔ\9a\95ÏA/\88`.\85\9f·\86Røi¢-\85ÿ¢h×&Ô&\9c\14öý<TZ]SRáçë¤ðgg\11îtÿ1\9fç_RwøSê\8e~Îqìç1Æõ\1d\7fAáG¦ÐEáïªP\8dé¸o÷Ö\19Ägå$V\7fï\9f÷wÑõ5\95T\17áJÚêbh'5m\83©m\83©Yuo?\ f\15G\8bOuQSIu1;oÔÅ\8c+Ïõ¼þâ>Èá\98û\80?×8öó\18£\16\9fêâú\8eo×õÃ|É\83ź4ëkU\9fW\8eX\9d=X©k³§jþ?´n\7f¨æ¿¶nþ\93"\11ìí¬á\7fqá>Ôð\85
+'=\85×\15})Égk0Dú\86Y&=³°dñ\96ä\81mÏXaC\f\88bì\ 2\1eW\13ÑA\aά\17ØW\1d\17ƪ\15\99q\1d\84,ƾΨ<qÐBõ\ 6Âvnÿ\83ßQ·\19\ 5\89\885v\ 1ÁÔ~Z\v¸ü9úà\r *k\1f\87¡øávK>©L\0õ\vÆé\ 2u;\ fÃc\90ú£\by\976µÚ!¢\9d\ eÌBüm×'d¢èöWÆ\89=\8d\9bBÂ3ad\ 5µð\18Ë$Å~ÂûÆ2p\977©?\89\b>Ö©ØíP\7f\ 3¯ì²\92ñç\8b\80ºvºdZ$\I@ø"&JU#
+ê-@%ÁjÊ\19\rø(æ\84â}\0º&1Âw\9bÒ\ f¥8\86"\1d%z\179z\15O\83èe\ 4c\7f\14Á\8c\87\8cê$ìpUÞHÃ|\89¸Å\87Ó\9fXÈ\9bÔ§\16qtCç\99íP¬\8e0#%ã¢"ô\ 5\ 6Ð1ã¾»:¬â\96ýQâRPF#\r\ 4\ 1â\0\14?ÂÁ\ fCVm×u\rÉ\ 1m\9bwig"wÅÍ\103*»¢$\ 2àùUè+\97*\1d\aE\r\1aCÑr\82\1dN\0w EwS\ 2íbQ\9alï/¡\1c\ 5û3Dh\9b,\17¸\88ðf\v¢"\aÂ\17:KB]U¤\rôïÝD\87ê\ 5\9dhz\9bÇÒ¼u\92~Ý\9fè\8f\99Ú+\86Y?\ 2H\14}s~\7¬ø0Ü\89j¬kYOÜî\8d\fêÙ\83®ó\87ñäÕ4{éµï¯½vOÑf\94fJq×â [\ 24ø¾øÞ\10Á\9bP_\92Ad\19û/\14î\ 3à}³~{\85uR»\ e\87ÿ\1d[-\vÁo\93Ö\96ìûêDäæ½Y"\ 1ɳã>\15*"\10\ eùi\89\95\ 6é\19\89û´¡\80 ó0Kß¼\ e\\19l1\1fm\18\99w\aõX\8f"\r\89Q\19\8b\18\11C¬\ 3\88«\14`|#\87FÌ\1e0¥Ì éì\ 1Õÿ\88\81\ 3kò@
+\eB%\90v\ 5Ò\10À(sP\bÄ #®\15â\98\90 \16\1aB8w ¼+\ e\96\87`åÚ\faóÀEÂU\e¸\16ʳ0N\0¬ùÊs'I#m\14L»\1d\0\ fY\ 1\15\82¤³÷>Ò\9aF\xgIê\17<0ý<\8a\9b¬§\82\ 5\86\11"[X[ù,]& \82)\8d
+\ 3»]ÿ1eUCN\7f¶¤)Ð6¥ËI\ f5\ 3Ü\94\88°ð\89 ;6¡RÊÁÀ(°0à\97jZ\85z@\96#è\ 6¤Ç\84\8a»¯\1cTÑ\eBy\8an§+jC²"~\13\ fUyà¡Ð(\r;)\f\93 MÂ/{²&\11ç\ 5µ¯£3D²úÁ\ f\ f$\83Å\13i³ÈMÄ\1er`\87«³yL\1f\1cçï°©£¸\92CdÇ\89·@\0OEi|Ͻæ÷ä±®\ 4â\ eõ _}å½zøì±uÆ?·«\19$-»\9a\11²²«svÆ®¾Ø³qëåqëåg»8[$J\85ÞÒ®æëdW×bÁ\1f±\89÷óüKöE\1d~P<Á\9fs\1cûy\8cq}Ç_°«s¨W»º«&µ\1c\ fÚ½e\"?·«W\7fï\9f÷w±«5\95´Ïr.Æ>Ëéd\17¥í\97HÛ/\91NöÕz\9e¶\17\17\9fö\99¦\92öYÍÕØg\15÷ÚëyýÅ}Pk\9eû\80?×8öó\18£\16\9föÙú\8eo·«ó|É\83ź4ëk\15\9e#̯Î\1e¬ÔµÙS»ú\1fZ·?´«_Z·£|\ 2&ÏÞÎvõ\17\17îC»ºÀ\99ËL!(\99,¨ûßÿ
+Êå¥\12\r\91îï!9KêC\802¢Ð-Èá¬zÃ\85á¡ÕI\wÍ.ý(\a\92\96\18ª
+\a;ð§-)én ?º\89H\8dA!)è\97Ý\9e¦æ\8a´R\ e¢dzfEè\8fu1äå\ 4\18mºüL\r\13\97»àí\fÇÿ(([Í|s\84e;$Ðÿú\1f\88ªz\9d \9b_\11\90\r£MÈ/ ¦H\88ìÂ\803N}Â\15A\7f\9c×UL\17\83ÅÄ\82Û\85\ 1\8bÉPúàJ\1aÙ°¦YSÞ\'U\ 5â\14\18߬X\85þ[a$sAÅ fRe(0Ü\81ÿ®4!Ì\90ï\1fs"!ã©Áð3DÄèd&LY"Jj÷ãP\16¾&¦\8ezkA(OBX\Î\1c\1d?bÚà\19(Þ(!\80o\95\90Ê,~Ý·Zé\ 6\0C\886©\8f$Í<öEÄ\1c\ f\95Õ<¼*\16åê\84×iHÌ?d\90\95%\16¡E\15ÊínØc}±|\f\15-p\8eà:¨\8f!Ïði¨(\10\841 <9Gk\89Þ/7Ë vÝùgf´.^ÍÛ$CB5õ\83\ 1\8f\86\88\9d\11»²izC6.î°Ì['©s+`\ e0\8ej\11;ßBÖ\9e\8f\86V=/9\87©Ó5\85`IqDÅÿþ\9f%\12 ½7ó¸ZMRå\ 1õ^a!\10h\0#:\áyhØ«q¸vhEöq\1c\ 3÷³\13\91\16Ù{©ô\7f\81aÀÕÅj\8e\15È\ f\8ej4b½\ 3C'«w?=_Ûµ7$ÛbÀ\ 5Ȱ \ 1'\ fÌÙ\90X\9f\82xtgb\8c\ 4 5Ä\88ÀÈ>\12\\82\13Õ\r\1c(uý±\7fÙ1â\ e\11ïH\90½¾8/\89;¨å÷\93\86h lýHOÙfp÷\8cð»n\8a \1eÖ\rü`ÃÄ0þ6¾hòIJ¼\91±?y®\v%$5^
+¨¿üÒ÷\97^º§gK\97
+;\\91\16ð7Æ\f÷,ª\7fL»\ fh½ý\17êZ\1c2ºYw·¿\0xÿ%§<<§P]ú\ 6p\ 3¾\17®Àм\8eD\1e%F°±û
+ô3Á;(íõ(W %í3±\89ÈÃw8\14\ eÅ\b½N\93\ e\989\87Ç<\9cöÄ\1eóp\96¾\13\87U=\89ðÞÎó\9fTíÃ\90\f\9f0DpµÎ¡Lo\9dÅ\88ëì·N\12¸ú¨\91¶\89\10M(V\18¢f/\17B/BzË\8f\91Û\88ûÀõød\9c i°þDÚ\fv\13\ 1\8f\96ú° ý\8e\80ñeàì\92]o¶>Ià³K\0Lb\1f
+Ìk\ 6\96ì\87\11âìÉ\17JU=fÈ&ÏÒÀ\19 ÛÎQ\1f\0 tóQb'ùØç¥Å%Ã\0)Ùå¯%\rY\aV\16¯Rñv"\ 6dVw\81Úf¶2dq\9f¬Îµ\81¾I\96BC\96\ 6<ÊO(\81%cçù¾\7f!\13\1d«TÀ\¿ÈÿIù-ùÇ0Ý,bñ"U\ 2\f£ó1lò©tÀGä\12w^\19yí \86B\ 3\96òO®\ 4ÜVT\ 6_À\83\1e\19wDÅ ¾tx{\94f\9d\11·zR\9cDøMi7ÂÀG\eÜ\98\f\ 5\fYþ9Z\92QÔ\fÑëz¼ )ú\90\97¦)\ e\fn.å¹tÕ\10©(Ü#(g,õ\ 2 JÀ.å\ e\8eqx\ 5®\9cx\92´\bI®ÍÕ®oe¦Pw\12Ô±.\9cÁ\88t\ 3\ 2\aLQ\90yu¸¼QT\ 56uW\10 \ 1§0!NA´¤)tÀ\88ÚU<Ý,\11Pç`lxEXwBý«\1fpÄ\8f££_\89\91 ['\ 4·åÎTÆÓi\16ï\r\8e\8f\9fê¦\a`\ 4.\82äÅ\17ÞÛ$O\9eZ\9cós_\8ec2 \9c9-ÆéÌi®\18gÎÅ\89Ò¶1ض1xrÆìçá³`Çræè}£ø\88\v\16\bQÌb\aV\8bw(.Ô\r\15\8eOñ÷\8aÑÞ\9d0\80{}Ï_pêÔ\11\9ao\96¿ÑñäïÛ½e\b\89çN\9dÕßûçý]\9c:\9aR:\a:#3Î\81vX£\\a\98sÈ\9f\9aBý\9cÆý~\1e|D\9b\80\feÌ%e\8dÃ\rÊv\ ftåÈ\9b.Æ\9f\8a\94wÑÏM¡ß;ÒwwÂ0`í\ 5: Ö÷|»s§Í\97<X´K³7ÊîgÎ\9dÕÙ\83\15»6{êÜù\a×ï\ f\9d<¯_ø¤è\a{;;y¾¸\80\9fe\wÍaÝ&\1fÐ:»}ÿ_§výCu\9e\17Õu}dj\1aÄìF=\ fCó¬\10Ïj*\86\1ax¥\ 6½´\95¼.i6\11×/¡\14Cli&ÕÑ\eÒm3KRø\ 5D¸!æ¬d£\86dâ\ 4("è\87\f¾h\19\8e\1aª!\ 5\ 5CÈbA¬ºA*£ZÇ\rß\8cä['{=AÏ%1Î\v@ddVTÇ=\90\8e^â\b\10h\b\8dFÖÏÏ\98\råw\7f\16&\97?Q»ø;\94Ó(¯\0+\98\18\1aÂÉ\91ê\8bI\ÔL°FV\1c9\8a\1fwi\96\88Zhõ(\9bØ-[§Zì}r\0\ 5\96Î4Ä~G\16\6D¼ÛãóvwsMì{'í<Ľ¤\96:÷Ä\99ºw\ fmÒ\19\160vÙý~\9c9ßv_\8d\ fýïDlÐÀYò\8d\98ö\87/çyº{ü{Â\và\1fc¦.\82\84à\vÛÊ\12Ñã9½k\v\9c\18Â\eÏðÓ'»½\1cF1\93{\8bþ\95\17¿¿øâ½\0\8fr\84O[ñX\8b\ 1(ò±i\8f5ï\8b¸ö÷\99\9af\9dÀ\ 3E,C\efôõd\1dûd!\9dÂ#ÞŴçðPÃĪ\88ór(ñ\81²O\8aÇéGÚóô×\91óÎ1\96\18È\88\8a*á\91H\83\0ľSIC:=&½Á\7f<\98\ e´ùr"\19æd\88\0M+àDmx\1c2³\vÁê6K\9c$\9cªmÑMêíDµ§ÊP\ fÁ¼krÚ°\8aî\ eÕ¤a\16a\e\96pj¸×o÷gh\86Çoª\1dåÞ\14'ê\8cñXTr\99É\8d¼ê\12\9ch\9bCm"Ê\eÀUg;\1cÛìÁv\9c\85\16P\a£ë\ 1å¼Q×Ä!6"\a\95S5Ó¹¶ïýãO¸Æ\vV\e\8f.|jöü¥\1fHô\18;g®Ê½
+ñä±®MÄ|Ç.^}å½\9eñì±u\b¿V\12>\0\87j¤´úãX9®\ 4\9bÔzµ\98\92Qö\92Qö.öW±ø\ê\7f\18q|ï0âPTÊ\18qñ8gÇ\1e;¹\8f¿\87\11§ßkH»\13\ ex}×ßHqué¸Xq±\9fçæ]}Ðð-çô\19"þîñý\v=^3\5¯Ê\92t¥Ù4Ibq\1aí;\e\838\e\838\9fuùÕ 5}í\v\19\ 4\9aW\19\ 4@C0\ 6Ah§|ËÐvêsh;÷\99¿mêæa\r\ 2í\v%M®ïúþ\94W7_ó`\ 5¯íú\ 2Æçxø»»\aËw×îyÆë?¼\98\7f\9a\ 2ûÚb\8e«\91'ù¯ìïdá}y5?. ïq±ìg*߸Èw\9eÜ\1a·&\8bê\90Ó\96\ 2¹*BÿpEã\90½Ä\1899N[ÁÅY§ú\81_\91\19é\88\95ò~f±Ëòs\96\ 6Ð\1fׯÓ\8b
+DÖ\82\ 5d&\9eÜÚ(@\ 3/«Câ\9d`-\17\rOGÅûÙ\86À±!ô4"Yûô\90\16F=ų́:Â39OGz\e\ epâé\ 2\15\ 1y\95Q.ïcT=\ 6\ 4ìÈ´\9bWô\9cÊBMÒÜå; ã3ÖÔ4ÄýÊ\88\f\b£t·¡!R¼Ò\8f|¡Îª]\86Ú\87qÐà\ 4\12©àLa¸Tdi: ø§\12-\r\ 3*¨Kåò©%*\851`\15W¬)\15b\16¸Q(\9bfñ\\1dÀî\ ejø\99\81¦ÞiI\0«¼\9a\ f\91=&7ÊÕ-ÚX\1dUò2-\11æ\9byÙÓßS\v¿\86Ñ£\81o\ 1À\7fÒòà"ºÉ&ï{\88\11Ä\ eéÐI\17\12\b\ 2h1h[
+Y6WàE\91Á`\83*+£áf\81\17u|º\8ehãÎ\8f\9aLCß·-#ó©¶°¸\ 6\87©8Óu\ 3Ê\8f\14¢³¹\99wÀ~®ùr5ï\88ßÜN\17û\8e ùº±Ã\8dS\fáDÃí\92#Ô\8b¥öãÓ\97½O\12zÔ\eïi°fæÕ\83\84o̸x\by\13¹©ë\80æF¸\8c\ 3~\17¨ÅÏ\ 4\v\ 4Ñ4\9e=X º|t0\89Áb:{\19\85Ì\17\8d[=ÏKÙÕ²\1f\929\95(À\80\9bÕ>p7
+}#<\0?ø\85a \10÷5ì[£q~\10bÃm\89ë?Ô^5¤Ìb\12Ü\19gê\91µ5\f\15ø¯|\ 3S_\10QË\14w\a\bùà\18Û\vg£gú\88\ 6\1d \8câ\88\13\8d=Õà\92Èö&û\11óüþË\7f\16 X\1aµ\vÑ\8d\8fº¿þÇyz£@xú¤s¨bõi\0Àç/~\7fñÅ\8f\82\0\1c \8bGb
+®þ\ 3\81Ä\1cJsäÀ\18ý\83V v\1d\82ôGüúñ`'\1e{'b\1f;ÆÚï\96\bô*\8cM?\b"\a>\83À.V\84@ôJIÌ\80!ÃïSá\14ú2\ e\8c9Z\86Øw²\10¾'±\93ò:¿^Å\0O4s¦7\15\f4QSñ(æ\11\9b¹ê:ñ\93\15bpâ=+ÆÀ!Ëü\1c Ð×£ 4\11oɸ%wH\94\1f\96-ÆSr\10/L#â\87\91\17X\88\9b¨#
+®!©¾aß\87òS\1eYåHP;p\93³\ 3 ½Tjr ²44ÒEZ\95©Ï1J=¨\1e\81\1dx\1a\10̼á\ 5\8aÚU\82L\1aå\ fJºÐuaZ¦Q\19\13"\80)þ\94S\9dïg½¤«2\12ÆÀ\eJ¢Âû\12 ß4ñ»ð5w\92sÒÈßxg\19mK\0ëOY\8cZ\9a@b0´)µÁ£NTJøÛ\89*\ 1\ 4QC ®h\83\ 2¬r±\ 3\ 5ÈÚ\87²[¢r¯ô¢H ÍÕ©\ 3`\1c\9e\94¢Âº¤ÎXF\ fh=-xÌsÁ\13àBQÁ\13Ø$qx]Ò½þ5i\18\11\82P²Â
+VK_\97FG\ fo;ÑNºß¢²*N\19º_ñmÜÃ3¢Ã\ 1ÔA\80\90\99¥¨Ççä\81ã\9d)`2\15\e?ª\82®\vg˵w \0\99\8b\v¾Ú\96`B*3\9c\19\97\0×7Ø\952\852\12(\ 1í4ÎrR¸K\80\9eqPÞ,¶\a\r\14P\ e\966\ 5\15Å\97»
+µÛ\89
+_t
+U\9c$Ó/ ÌÎ\ 3N\97\aüó\9bc\ 6.ì\1c\901c\91î¢\ 6\96Eòì¹7\ 48~\167ðùKïÍ §Ï½\12;\90ÝFT\8bÉ@ªù\13¦ÚÅ׳Ü@Ó%4¬Ñ«çÈ\9f\80ÕØÿp?ñ½Ãý\840\19ã~ÊÙb5èÏaeó÷°²õ{\riwÂ\ 1¯ïú\eî§x\!ÖP\1f³\1fÓ+\1a\1a\1a¾±\ eÅ'î§Õãû\17z¼º\9f4¯òX V\86ñX°êÔv\ fDg\yθòÜÉÙ°;©Ú¬\v«kÌ«<\16àRÆc!\\94ÕÉDÛáSi!qè÷\1eÒî\84\ 3Ö¾\90Çb}×÷»\9fâ|Í\83\15¼¶{cy\90§î§ÕÝ\83å»k÷Üýô\ f/æ\9fº\9f^[L¨BÏÝOìïì~úêj~\1aa\90\10¶ÈJ\87\19ñ´Âtw %\91\88D¶¨\8e8
+IWW\b\12\15Pe×\ 1´î\1eµ\903E2\12`£À÷Ñ;"F\1dru\87\8a\90\18ÓWN4\14ù;\98|¡²>÷ÍR\91*@-\89ïQID\98×\ 1 n\ e\bðÚp\11\ 3ª4J\84#à¦r\ e%\96\9f\98\85\8c\90\aʨK,¯¦Xë6±\91\1dó¢\87¿sµ,\80²p\ 3¬\80ÕbºÑ\13\ 6À:\11ݪ,Ú./G\91q\ 4æ¦\84\ 5\ 6¶k\97\14\fzî-qÝii\80S\10ð\83¥"S\16¾\13½g¸
+º²ÜE/Æã'<Ö¤ái\98\8bÌ\1dÞ\rs\1c\91Ú\fÁäÂf\86gÓKáeÙü³Ǩ`ED½(³\vÔä\19¿\8c\12pØ8 vÓ \ 4~#°{3{EJ\92\13\88Ä!\10 \87Ìñ¾Ý\8b¡a\94@\94¨ÄEÝ-á\1dZ\1e\16\87ÕFZü\1cPW\18!Äð0\0\84éä@þ\0\12`\1cp\14T$\8a\9fMÜW¬6±ö\ 5«\11 Ç. )ÅtèÞ-f\17!¯%\r?\8cç\9c\ 1\86Væâ¤q[ ¯ÂåSK\#\a-\83GÁ'¼\9aÖ\12?ú\bÂÝ\1f\v+0
+àD¤ÂMÕf-©\8c\13\84¼"K\83ES¤¶\9e©ÔKn'*\83dsÒ¶bÎ\aõuwh\ 3¹QJ\fQ½\915>9ô\9a\94k\8d:pÐ\99\81\98\91\92²ó\16\e¸g\18+\ 4$ít\1fÜ\ 1#û\1f̤kÓÃ)=©\9cù\90©µ\97,@g®[\7fc\91\83\93áÉ\18\97kÃâE¼¶\1aº2\e\ 2ý°qÙ\fÍËjÁ<\9d¨!Ê\8bk¨iÜ\93s@\82µCä4ãö¡÷ϸæIÃ\80â\ 4È6-\13ïÞ\87\95Ç÷XZöËÑm©\88\ 4hU\ahQy\90É$\18ZáÛiÚî'ø{Ü^\1f\975ì*Í,M¶ØßI®½Q\10=}²Û\ 2ñ¾¨Ô\1f¼øýÅ\17ï=ú0J&!{\81\9c\ f\9eé\18\e\1d` U?\87¨\ 1Ö\r¹3rúÜ\82๲\85I#C*\ 6«G\r\81µ\90g\87ô®; \ 1±Ì\19LGrTl\8e\ 3þb6tN\ e7øÈt\ 2\86«\98#\14*Q©1ä½!ñò·xY\ eÊ|KB\ 3é#DÒ\8c\93H¹gÁu³àØ\ 6D¿i\89p\1f\ 2X1a\ 1w@\9c\9a ßµ\87\17Û\ 5\89\8a4ò!\95¶\90uÊ:µó\17'jViHÇÚ\17¼·\82¨ðK\98:\86G\ 2~ãN M\1aÆ \89Oo\95iYã\12\9c`\°b-Í\bÓM\8dp9#X¥ËB\85Ù Ë\91õ[ø\92\83"\12~!$ÇþÒ¸\a¾\ 6Ñ\1fÉs æ\8b.ZÝ\ 3\15Âm\15Â\87\ 5)³Z¢Z¯V\ 2ù-t\ f\13\87\ \9cp\14\1e
+\ 5\ 2\1eJ¥S¼x\95<p¨Õ\19Ö\1eeaiC[\8a\13Ô©\13\95JÖíDMµ3>Ïç\91mÈD\17/T\13ø\1c\7fÂï¨\822¸\8aø]ªú\9dHã\bí\98¼»ñ\9a\10ûõ*)&mè$G\bþÔ²ó\8a\ 6 \11K\9b"\8e\82ï¸\8aÃÛ\89Z\8aʨ8\80å;\82áÃaú-\8fÎû¬\95@¡@ô\19
+_\87k1*Â~ÀÿËmY¨K4U \87/ò\8e/OÚo©EªccZò¾/\8eû5\87B\90\966eÂ8U\17ùq;QQô\¼\ 4ÀVQ©Lå^vM\1a÷¡\9b÷x»åѦ4d\8fÔY6mÊÍÁ\9e.2öv¦ö³FÑ\85b\17r\ 1#ß\11EÝ\1fÍïw8Ë>¬J(ë`\94\\8a×ú\ 3Ó~zö\7ÍÒóú\ 3_zé½Ñöô¹Å ¾\16®U\8bß\15\b\9c_þ²\-$é\9ds*\eó9\eóùâêªéT\88Àùå/ã{\87¿¬6\vMê\9a·\18,ús¸\ 5ø{¸\ 5ô{\riwÂ\ 1¯ïú\eþ²\9cýÕ_Ö\97³oÓãA÷®Þ\7f\ 6Qº{|ÿB\8fw\ 5 ÜB»t¸ê1.\96\Îþ\8cb|\8fÅø\1eËÙ;Ò,æåØ\17r±h^åb©ÍÂ^v\8bÊâ{\8c?µGø{ì\11þÞCÚ\9dpÀÚ\17\ 3ã~~×÷ûËò|Í\83\15¼¶ë\v\98\9fã\96îî\1e,ß]»O
+\14ü»\8bù§þ²\17\17óø\ 4ÌTý\9dýe_]Í\8fõ
+â\8eté\86Êà>0\\8bÑ#*Ã4\88\ e ²Ey\13¸°BT®¥±~\12±À-58áâ98\89\1aý}\80OË\bÚ(¨'\88)Üp\ 5ÖûFYÄ\91^\ fô5æí÷õ,,\9dE ¾þ¢.¡\19\88Î\1e\84\16j©]U-\82\96\9bT\87\84ß\11 \82,`\87\8bVC\9b\19\ 2\18ü¦¢Lg×\8a\7f°GU\1e+\8aØw?ì»'\r;7¬à\81IÅ\1eF\8e½<Aëù\8aÛv\19\ 2ÈüñÐ\17\r\8dXèò\14XjTN\7fï\11y\aò\aöu\aÒ\§!\f\8e:?
+yWM'ªO*\ e\8b\8eA\85\9c#Ñ=9Þð9/·\91\ 3 \f\11ðì\9aßo\8eo±ËQ¸
+\ 1\18ÝÈõÂqÝ*Cí\e`|î\9c¬Óùyã\86\7fú¤S8dV\ìò\17_üþâ\8b÷4\191hö\ 4^\8f~ÿ;íÝIåÞÍ\13«rR\1dVxîH $Æ|¢Ù½k¨n\84\ 1¢G!S\86<\ fÃ~õ¤aëÂ4¯:"y\1f¦|tCA\a\17¸½®-ª\17¼\12L2Â\13\91i$\86=À×\18+OI]¬à@dF;ÑNLcSÝÈÌ)D,¤7Áåû-9ixºôyãy0-+®g\89\8dà* pÁR\91fv(ñ\1fxËNò&\1e#\ 4\11 M!×¢Së¦×\ 2¿<Ü\8e5\ 6s\16\19\7fr¢\99S»©(ÈS`\10UX\8e\ 4\0Ø«û`w|\aàb\18a¥G¾nVXàÚ$kªîåӳ纨ráît½üÒ{!öô¹5;\9f_¶{\96\1d\eÆCËu\19\ f-ZÜÅ«¦¾\94ø©ÐO]â¢÷G\v¾¨þe<è½£d»K\16\7fÑ«0ÒìD\7fJGò£\b\ eë\97è÷\1c\92é\ 4\ 3Þßõ7\8c\87æêÕx\båG7Ú\1f5|+\b¬üÄxX=¾\7f¡Ç«ñ y\95¾Ù¢Åôë\fá¤Üµ`\f±`\f±pV\15W'R$óBö\eóJ}\13ÎP£ozfâNÆ\9fYë\96\17¢\83~¯!\99N0à±/¤o®ïú~ã¡Í×<XÁk»¾\80î98ãîîÁòݵ{n<üÃ\8bù§ÆÃk\8b\89dóçÆ\ 3û;\e\ f_]ÍO\v¨\1fÒ\10³\8asý× \f\82oÎPý\814?\ 2Cã".\16è\1fÇ\11~*0Ð\1f\8a¯ï\92³\ 1pI\81\9fÂúê\83Ú\b\81\91©\13ùDÃ-S\1f8WäDå\9bo'jAq4l´®\18+Æßÿ̬ÅÞ?\7f@ëÃ4í\1a$u\83Ö\ 6\ 4XnM\88\80½·6\v@ábÃ#\8aÜÐ\bÂ,Ï¢¥öÎ\93R\93\rµo-R9;J)Á¥P< ±\1d±\9a?\7f÷i\ 5FY
+Í6\82Ð\8c²MVg\866_\8b-n¨ÇLý°T8<\etÏþ'Ðβ>:Awé*d×=y\81ÌÙé\83C\9fG\9bW@\f\1fD\ 6E§ÕéÊpÖÂÂ;\1að¯\18î üÇÀ\1a\ 5\9e¸<\82¥,\80~\82WÛ9@O\1eÃí
+\1c-KÂ\1dEm:ç'j<\18ýj©}§Ô\86Wº\ 3h?ô\19ÓÅ\1dø9~Ü^së5Fys\82\99Ū=Ú°A\ e¢¬Ï\98\91±\97O\e~Þ\13\9b³\802Æ\91Pøý, M\83ÉB\93ê\ fTjU\ 4j\1e×ö\96\96`~°¼û\998¶ó\89:1½\ fVð`p
+Mmè½8\86Áñ$!L¶y\96:\ 6º\84V\1c\8eñn:T|С\14*^þ\96\ 3Z¼¾dþ\89\a\11\a¬îv#\96aSÞxÓÍ\9f!Í1ãKNT|ÞíDÜó\0XÉC\99:k¾N\93\8aù\1e\87#Àº=Æ<×\11Z»¨\9c\80Qê\8f©-`v\96Ö§ç R\9b¥º®hb{ßÎTdC!ì\12éÚTX\10ô\9fÉ»5\96ùç\98)]µí6¸L$\10\97éÊÐÆK9S\8b:\ax;S×§p~c9}òi^¾ç\16Ý\ 36°êJºÁÝ¿tþ~Þü8o\8b%\9d\ 4Ö\e%ÌÓ'\9d
+¨\1c§à¿?yñû\8b/Þ'øa=ú\ 3@\87\8cpÊ\90\15!6n³\86\1a/\14¦À\18õb&uñPTÁ¬îDÛ\ 2áD]\ 2ÁR \ 6\8c4\81\ 3ȤY¦\81;\v\ 4·\ 5\ 2\82\9d\82ðY\a\15É
+Kº\8cÎ,m\v\84\13u \ 4K%\ 6>¼¶\90ÓAñpøè\ 2Ñ@´\93A;\16W>\10¢P\18Ý\81z\1e\80=¢\b\9dÒ×á¶¹\9eh\9bI\¨\94é·\13\15¥\17a<ö·ç\99\1dÒÇa¹òü\13ÓSÚ\8aÕ\9f\8d ÛÆê\a?äË&MIBqé¯Rçv¢\ 2ú1#\ 3\ 2ÂmH\8d\ 2|\ e\f\83\80&ÊjDT\12\92v0 \èÊý\80;ûÂ/\81@,D\8déâò8°\9a\ f¶Þ\ 4\96ÐÖtõ"+þ;\11\15®Efçf-\vHXËLÇ\9f\18\15 .ÊÄ\19\8dJY\9cyu¶iFB\9d\88KBmjDåw|'\8bÎÌ|]+bæ\9f¿ÅÄåHÛm\0D3!\1d\ej_uY\87ò¯¼+F\8aEe\ 5Ê\ 3Õ5\90_H±FLæÓ<ù¾óbûq\99»%\9eîfôF)\ 3`\873\87þïDíG¤x\89-$\88\15\1e\9bã,\17\8e-\17\10¸R\19Q²\e1Ä\802fw¶iV0lª\15\f\9b\1a\ 6z
+ß31ZëY0\8c?¹ì\98\92ãÜh\7fÙîlÓ¬À¼\9f\99ï\80(Éâøô0\19¶\r\e\0÷Eâ\ 2ó0ß\99F?\95®þñ³ÝR\ 2\vBa\90\8bïê¥\17ßÙP\9f¾x3è/Ý\7f{\16Ò\94\vË{¿À&;G±h\93wþ¢b,Úb,Ú\8b÷©YÈIõ?\X*à)\17Vt\16sÒ«èßê\84\7f\ e\17\96©äÂÒï5¤Ý \a¼¾ë/¸°<\8b7\9d]XHÓí,Õ?hùVPtú¹\ fkwùþ\95./N¬1³ô{ø~(\8dßûSE\bý9\1d\82³\84Ämþ^.\8bÝ \1d\1aÚ\19ò{hfå÷\88\87E0dº¹éD\7fj\97ð÷Ø%ü½\87´;á\80µ3è÷ØßõíN,ïæk\1eáµa_Âò\1c\85r÷÷h\ 1ï\1a>ucýËËù\87n¬\97\97Ó}\ 2J©\ eÏ~¬/¯ç§\8e,à`(ûÚd\8dxT£v\8dJÔ¤z\8f+Â,?\81òe\91G,½\19ÑçG\8d¬÷\8dÐ3§HC\94\9eÄD#[y j\87Y\14ÓÒªÄ9\9f^Ô8bó\b3¢àCZã`±ÀÚ\18ÐÕ\93\86\873jGй²[\16\J\91q£\9aUä\1eì\86Ƹx#ê\86\8a\86£Üv\144\1drv\9b6¢'\84¡\1c
+\0\9a\16±¦\91®¢J"0\ e\80Q\92\14\b\ 2\b0àdrrU±}Ñú0ÃÁüÔd[\ 6DbF¥òöù\ 3¼¸\ f\ eµS\94\1cì\91í]ù´K&µ88LQpea®ä\91«\11\1cÂN)\11Q\8e\11É\9e}Î4b\14$Ç^C\86®cÉ?<Ý\bî\16hÔÄjh\98`Ä\9dV^\82®\96\98t\ 5\81\ 2\85\9eÖ\ 5²§\19VGë§A\17\1e\ec|6J\9dÐ\1d\80Üö\11d\aDqºu6\r¡ÓDÈÄê\9c¨Ì½¸\9d¨Hªaa\r¾'Mð\0UÜÃ\88F,/n\82á\9b\1aûEn\ 5\80\8e²\82*\97v¤\9cÌPõ>\198\rªº¾\92\89úT" ¡\96SKÜ\18G\85Hô\1e\19n
+\9c¸\10\19ã\8deÔV\rÀD\19Å\0«Ò\9cBÎ3H¾÷ì\b¦ºipAf'øLe\81\9aÛ\89ÚOª\ 36º^S\18\16\88Kq¦n\ 4\\9f\13¯\ 1\17Ô¥Êp\f\0.\10@\ fJ\1d\82Ãp\v\1dEPT\8b\vÜó\8bé\fì\ 3Á¥ñÈ\13¢\9e\rVÒÒ´\12&µÓ\ e\15hU@9\93g|E,f\1dÞ\1eÞX\8f\1d7ª xdr\ 3Y\ 1Ìi'ñ\10\82Ñ\92¼pt~ýïD\ 5\12¼<\\86
+$\r\96\ eÆk\84cªÌ\1er\8e\8a}Dÿt?\f}/Ñ\95È¡gb\11u\952Ó½\ 2X\13?²Ç\93B\99¹gÆ¥ý¤qÏø £´["s\87Õ\11PKGÎaCs^¼\bën¨A©j·\13ÕÃ@\ 18\v\8ey\9fßӤ߯ÎßN8éßR?N8Á½º\84ØÓG]\1f·{5ãäÑ\9bß_}óó\94\93\13W\18\ 3¤ä\ 4¬\87%R\ 4\r\98 \84úK\95\3Î\94z\96\f ⯸üFdºj\1eÑèðqÅ\13û4|Û\866\99!Yd»2Î\9b¥\12Ú\80\brx\ f\93x7¡\f\0O\86E)P \19¼Dj\1f»\13T\b\9d"غ\1eÏHÚÀ\8dr\95\17\93ÆíÞÙ!=z¦%\12\1fäw\a\ 2¬§¬
+ý°dÕ¥\ 2p\ 6\99J§Â\8e*£Ï\83Æ=\11 Të\ 3ÊG"ã\ 4»ÌB²ÎB\1cû-I\17\ 5o\11gþ#\80BT©\15Î\96;\19=iä;\90\99.\9eZv±UôÝq¦ÝQ½\10\18
+ØjaD\9f\at\8e¤0¨¡°\8a\ e©)Æ\81¸ÍJd¤\1e£ð,n,¤ª@Õʹ\rÔ\8b{\95çØ*\ f Ä\ e©<«eòK\87Jª eiVÛ2Ô¾ó°!°5tá\ 6UM/$\ eLfá\14\94¢;\82äyqCR"ØH%ÙÀG\ fU'\9bAóVbìä\11\ f ©ª\v·Õ2¤\9dõعcÅ%\9c¡MY\87q¢R.Þ,\15I ¼¹\vøÂ,é\83+1êZ\0KãÚ²\1e\1a\127~k· ;\8b§\94Ý@¯ÊJgZ§ùÁ±\9f\99'\96éw6@öN ¸´¦I%\9b\18«ÞÆ=°\94nA®ö'J\1dJ
+ÀÛt\86Z\e¥eúÀ\97\bë§\89©ò\866\85\1dwb¼
+ÆÛ\99Ú\ 6ä\1dß3bHÓ¸¹ä\8eoã~)\87±i\90\ 1ÃHº4À\81\81\9b7D7\94\99«´\19$\9eIÜ\1f°\9aÀn\bi4ÄW\19\0;\866\ 5Ýà\a\17¡x³T\bdèoX·</0×\8c?X\9b¿\9aµâ\85ÇôAÖÊ2à\9e=Ø\8dC\ 2î½\90¶òè\ fÌÆ§\ f¾\96·âY¨wøíú\92.¿]L\16føÎI\16\8c \1f\8c \7fq¹%\v3¬þ\87ßN\ 5\82å·ãÍÄöÛ©¨èê\84\7f\ e×\ 4\7f\ f×\84~¯!íN8àõ]\7fÃo\17Ã\1dÌ0ÒÚ\8e(\0ÖKË·\82\84¼Oüv«Ë÷¯tyõÛifåèAýnãè\89ñìU\99\15@°r³2ÈmþÞ>\9ad±iÇÎ\90\1e«\99ÕñEq'ãè\11«^\9dèOí\12þ\1e»\84¿÷\90v'\1c°v\86\1c=뻾ßo\17çk\1eáµa_Bÿ\1cix÷÷h\ 1ï\1a>÷ÛýÃËù§~»\17\97\13 Ïývìðì·ûòz~ê·K\b\ e\16¬\9añÛ!\91\9dÚ\90±Ø\91)\1a\ 3\83Ô]\12z¨O¸w\vRz\1d¼%\94ìH!ð\87\9cP\f·éCk\88Õ¦8A\91\ 6F\8d\19ZETf'\9f¨Ú@\8b\800+æÄð\r\ 1¹ÐÌwï[\f®Òþ¿\87#\b
+\92=
+µ1\fº\12&\10\81÷D7ñHx?FzÕt¸\0Åd\96\8eÜ®\19\0uPMµ-\ 1©á\89l\ 2<\94!"\ 1H{«¿\9a¨"ýi\16È£ç\f\83,é\18aTNµ;\8fé4Ú4\cw5\9bºÿ\89Êͽ \100\80ýç+ʨN\9ceÀq0G[U\9d£æ\ 1ʳÒ\91\19.\au\v_G0J³Æ÷»ayeöÿ-P\16ì\14 [`È\9bÚ'8÷\95`\88(àTèCä+ó\19ª""8,$w\17áÑ8\198\1ep+1p\1dQº\96~\88M³St¢b\8a\f¡Û\7fG\86\97\a¯H\82ñè\96\ fs&<RòGeÃÔ\99\ 52Á1\188Ø\98¹Eì\ 3æo\ 2¡1s¦\97\8buo\15ë\8c%\8a\81ÊÖî\96%*õ\9c=& \1cyB ¨\9a Ð\14ò¡åAz~¬ÃDÍ@\0&\1fKB²*iD\93\18\9a92\96ªyØ\ 4\ 4X°|%^\11ó\84a\15`c*Ue\97¸(\87Ó¾í[«kõ\82iÈ(+J-¡\8c²Ì{\95ï÷Ã7;\82àvmÖ¥"Sò\ 3?P_Ä71ÅgO\ 2µñ^\17~ý½ï/¾÷\13'PÆ\15S%\84\19Y/\81wQqy\14qGn\9fòèR\81_ß\9flIË½Üæ^À\ed%wÓ\12\98 Ã\81\r .\98Æ \8e\87 \9aÀoðô\81<}FâÁWrÀï\14\99K8!·\ 4\ f²iÃÝb c\8fÞNTÜÿÐ\85ÃW(¦\a\974,\fâ\ 4gA|ÑP\8a\ e&p#\9b ?g\r\13|\1cÐCÝo¸\97ñ\10`Âôɦ%,Mé\bÌI#\a=\80\ 52^M3\14<ÜMÏ\a½*ÄÂðkIs\15þ\90¥i\12N\ 41¬\9b¥"`e\94nÅ=\f=/8m^\fè~7,ß\80a?Ó£\84\9d\82Ë\8a\92²õ3A\88ûÅ\92\ 4P\94B\9fr?Ëø¨¸j\9f_$\931\1e\r\e\85\82\8c(Z\83\95â\17\ 6mhúÊ\13a}å¦Â\11}øÊ}Wæ\17¡`\ 1å5\82i\83@Æ\82\0\9f(\11&\ 20¸JH\92'E@\e\e\8bæÄ}\16j\8d\aFÌØÞ»%B¿K\99Ñ`f¸vã\9d
+Þ\9cÚ¡}\82ÒjÊísqì·Dô_\ eû\0T\eîR6mÎ\82!ì\ro¨\10\ 3TL\0½uÐÿ\85\90\96 .\9ffÈ~\1aÕ\97)\ fÜÜÝ}é2AK\12]\84õ¼Ä÷\9bá;\9d\11Ø\90'vF4\9aô\81/b)¥O\9eëún½Ç}zõ\9d\ f\14ágϽæ\88À\96\f\87\90ÏËø |\9c\ 1\14Ë¿\91É\12P¥KùoüË\v¯\1cf\7ff\ 2(\7f\862\91fOhµÐ
+å\13à \90«#d\v\10«0\86ù¼þÊx\a~òu·ñs\8ec=Ï1®ïøP*{÷%\8bõ\81\93\0HË\1cä®uÕ5\8bÊÐùK»\9ft\v½uåçÓ
+G³Ó÷O;Õ\87YÀ\f<ê\99¶\98\16\98¨G\91\1aÌf\f«øÌ\9cDü\1c\93¨\9fqÄx¬ç\ 3\11\9d¹\ 3XáQóI\î\90\ 6\88(ÿFÕèý¼þâf`9im\ 6ý\9cãXÏs\8cÚ\ 1\9ei/ó;>6K[ý³¬¨ù\92\a+vn¶\16,\7fRÑhöø`¹.Í8MO\02þ\99ÅûÓ\94¶×\17ïø¬\82\11»ìröåÕû\10\10\ 37P@¸Â´\ 5U\95\87fÒå9\83]\17Ñ3"\a\82¶â&ë\80\8cܤ\8aKÎX¤I\ ebc\8eS\92;\0à\9fà£\r\81Òݰ\90\8fx¨-(ÑØ\ 2\82ÌQU\91·
+ %*X¸¿ã\ 5Ò"1\8af\ îvtt@^#ù\8dï5¤\ 6¼>=:\89¡\7f\1f@´xã\ 6\94Í\1f¼kNL\b$R^\9fü\80¨ÿ\\93,6@mqw\ 2M,\13Z\ 2D\9a]$F@æCet
+ýîÄ0âð\91Î2HÀ\15`ô|ÓÝã&ýÚ˱\89½?\84ÇÃ9`\1en\87\14\95\80L:ÔÍ0\14ä\7fu\ 5\ 6ÝMâ^¢\9b%®¥\84»ü\80\1e½\17ü~c|,\93\8eøJi\16bµ¾ár\19;~ü_\7fQW´Æ\17ÌÏ<\1d\9d7nô'Ï9çq\19\19ò½\99øÊKß_zé\9e\1eãPß«\b@ZôÓ\ fÕ^ïI¤Ï´\9b{Å\19"îâ\ 3À\ 3¹´ýõt\95þt(¼ÃýXZe\84\v\12Çà#\11±°6\b
+\93\1cÐ\8dû.@¡^\165A±\a\86êubRy\ fÖ\ 3\eÇ\80ZkܤóqYD\\8aÃ\17\85Ëb\9a}\rþ\8fË\19\9d$8\14aªÀÇdÚEYc\8d\b\8epôPQFà\16Ní\fÆ#2#üOx'Ë>Ü\fÑîäM\ 4\vq,.\14F]±\8a+êËN\9e¤><<@m5«kEWg\9bd8\õ×\83v³D¸\15+\93Ôú\ 2¸h7Á\83}ñDÏû\8aÎ0\8a>ps§rÚ£¼Ö\1d\8b·>ò^\16}ðT\9fÔ7øDï\8eÓ\8b/¼\97T\1f?µgåsÐ\v \98\ f\85\1f·\86Cá\8fG2
+ÿEÑ®[M¨[M8)ìëyª´¼\8e\94ÂOÀt)ü\bxØ
+¿î?æóú\8bê\ e~\ euG?ç8Öó\1cãú\8e¿ ð#Sè¢ðwU¨ÆtÜ·{K(úû\×_ý½\7fÞßE××TR]\8cÎ\19u1´\93\9aÖ¶ÁÔ¶ÁÔ¬º·\9e§\8a£Å§º¨©¤ºÈªcK]Ìá0Ïë/î\83\1c\8e¹\ fôs\8ec=Ï1jñ©.®ïøv]?Ì\97<X¬K³¾Vþyå\88ÕÙ\83\95º4{®æÿCëö\87jþKëÖEÄs\r_½\9d4ü/.Ü\87\1a~,ðoKOáuE_J\«\85\1a\f±KÑQ&½²°d?½\86T\81mÏXaClP»\80\8f\b(tðÑUĵbÕ£ª´CIÀu\10²\18û:Cù8 i´8Âvnÿ\83ßQ·\19\r\89\885v\ 1ÁÔ~Z\v¸ü9úà\r *k\1f\87¥\14¹Ý\92O*\13@ý\82qº@ÝÎ2<&©?
+Í\88e\fw»ã\18\ eÌ\ 6|\8càú\84´\99¬ÐX$\82AL}¦\84
+\8e\91\15ÔÂ\8bÕ\8f4Ï6á}#®±\18ÞµHýIDð±NÅn\97\10J\89þ\9dâÏ\17\ 1AʺdÚ¤"Ïh\84Ê㥥9\ 4æ\95\1fXM9£\eBÇZÖû\0t\9d\83´\94ìSêã\8aºÏ¢\8e\12½\8b\1c=\8b§Qô2\82±?\8a\9a\ 6\87\8cj'ìpUÞHÃ|\89¨Á\ 1§?±\907©O-BŤó¬v(V\a\98\91\80ìíØ\ 5ý\ f\ 2\1d#î»\93\ e\15·ì\8f\ 2ü¬QF\1f#@\1c\80âG ²\8dTaT\ 11$\ 4Ö\ 6Þ¥\9d\89Ü\157KD\10,J"\0\9e_\85¾\1aÝØý{PÔ 1\14uÖÑO\eØ\vТ\8f\86[\96v\ 4¥ÉöþàéìÏ\10¡m²\à"Â\9b-\88\8aÚ\b_è,©\ 6å\8eôïÝÄ\82\18îNܽc¹ßºH¿îOô\87Lí%ìÏ:\12Eß\9c\1f×\r+>\fw¢\1cë^Ö\13·{#\83zö`ç®e<y5Í^zíûk¯ÝS´\19¥\99Òή¸fÿu\9eÐ\85S \150\89àM¨/Iî\81d\b\17
+÷A·\97À ú&\82uR»\9cé'zl5\¬#\ e×\90æ\96ìûêDäæ½YbE\16FvܧBEl¨#\89OK¬4Ø\92\8eó<m( èxPûæuàÊ`\8bùhÃȼ\1eÔI\ 2\ f\8c\8aÊØÄ\88â :\80¸J\ 1ÆwTuJ¾µ)\83¤³\aTÿ\ 3\ 6\ eÉ\ 3¡0¨êÓÅ\13&ª\8dp\9f\98\ 1\95.f\f$;â\98\90 \16º/ja\96{Ìqð7\ÙÕf\b\9b\aN\12 "P¬'"\1a\9dq\ 2`ÍW\9e;I\1ai£`Úíp\0Y\ 1\15\82¤³÷>Ò\9aF\x+Iý\82\a\ 2ÄÐMÖSÁ\ 2Ã\b\91m@×½H\97I\82`J£ÂÀn\17ò\94U\15\11ìPM6i
+´MA\11Y¨\19à¦D\84íûÊ ;6¹CÀúbaÀ/Õ´
+õ\80,GÐ\r}#õ\9f¸ûª\88\9dn\81ByÊó¢+jK2"~\11\91+\87*\ f\8\14\1a¥a'\85a2¡IøeOÖ$⼠ȣ\1c\87\83HV?XßÿÉ»\96ô8Z\1dº\82\7f\ fÙ\80ó\15o\98:ÓÞ\85ÇÙÿôr\8e\ 4\88ªv·;×\19eÖ\96)\8aâ!ô<ÊH\ 6\8b\96dX¤!6\82Ð\98ÎÆ1½s\9c¿C§\8eÂ\95\1c1A,oÁ\ 5<fG¿ç*ù=x¬\v\81¥^8᫯¼\8a\87\ f\1e[gü¹^]c\1dz5<¥ªWÓõ9õê\93>\e\97\\1e\97\¾ëÅÙ"Q2ôVôjÆd\8b^]\8b\ 5\7fÄ&^ÏË_Ô/ªÚAñ\ 4\7f\8eqÌç9Æù\1d\7fA¯Î¡\9eõê.\9aÔrÜi÷\96º\9cüD¯\9eý½?ïï¤WËTR?C\88ÆÒÏrÚô¢´ì\12iÙ%Ò¦_\8dçE÷ââS?\93©¤~Vs5úYÙ</\7fq\1fà§î\ 3ù9Æ1\9fç\18eñ©\9fÍïøv½:\8f\97ÜY¬S³¾Võ1ÂüììÎJ\9d\9a=Ö«ÿ¡uûC½úµuóOÀ䥷M¯þâÂ}ªW\17\18s\99)\ 4!\93\ 5u\7fÿ\87\84> þ\9aDd¹&½9KêW&"U$t\v÷p\96zÃ\88ï\93¸/\×]²K?\10n\14\18\vQ\11\15\ 1üéEj]`¥o ?º\88H\8dA!)\96²;\10¸ÙPE/ü\90\8aNT\e\85Ð\1fë\ 2\84§\11`´ \0DÄÄ5ß'ÄõÇ\ 1©%ùæ\8d\0T\ 1ê\96àla\7f48(`A½ý\87\18ZA~\ 11EBd\ 3\ 5_js·\ 3E\9fûãÀ5\96t1hL,¸\8d\89dXͤôÁ\95¤Ù°¦Y\93¼¹N\8a\12\88S |³b\15úo\85\91Ì\ 5\15\83\9cèdM\92Æ\80ÿ.iB\98!ïsÞHÈxjØÿ\96\98%\9fý¶\11QR»\1f\872ñ51u\94[\vÒÚ\13Ââ\1a#©
+?BuðN\83D\8f9.\ 3\1e¦±øuß\7f%k\bÑ"õ\91¤\91Ç>\89\98ã,"«yxV,j¡\b^§!1ÿ\90AV\86\98\82 E\15ÜÐ\rYs}}\19}\1d(|\ 6q\aõ1d\rú¡Ø\8a\ 2A\18\ 3Ê\93Ëh\r±ÏÂ0³(\11¹[\99Ѻ\803£7i\92¨ÃÔ\83\ 1\8f\86\b=%vasöFµ\8f\15§ç[\17©s+\ 4g"\8ej\11;ßBÖ\9e\8f\86VQb\fÑÂ\14\83º¤\10,éШø\8fÿ&Ñ\ 3\12.ÇØ\9by¸V\93\88ò\80zï'N\81\ 6 Õ\1c®ð<@î\fQM;Ô"û8h÷B*Q#Àcï¥Òþ\ 5\86\ 1S\17«9VìPçiý\8a\12³\88\81ty]^\8bzÞ ²\8dÇ\88øh\80¸Û\ f\9f!±>\ 5ñèvb\8c\ 4 5ÄÎ4BߣxC$ª\e8PBéÚÚù\8fÄ\1dÖR\ 4d¯/Në\87Õ\1d45t\99\15\1e\ 2lýHKÙbpWFø]\9eb\82\87u\ 5?Ø01\8c¿É\17UÞn\8972ö\aÏu\8a\19\9fÇ¥bÂK/}\7fé¥kzÖíRÁÊ\18i\ 1\88ç\163̳¥Õ©÷\ 1·ÿB]\8b\83À³\8duwû\v\80÷_2dIZN\11ôÑ7\80Sø^\98\ 2Cór$²\96\18ÁÆv\15w>}Pr\0\ e1\ 5ZÒ:\13\8b\88<|\87C\81¤L\1eºÞ\1c°u\ e\aé×\7fæÄ\ e"øD\11z\11\81ì0ο\93j\1f\86døÄ ÒÄ\10JçP³7²\18á:\8b;\r\12¸ºSt¸IÄÕ\84b\85\88ÛÅìåBèEIÇ'\1fK\1a÷\81ʾ\83qâ2kÞ\92\f\835D\8fÀÜÎïPÈ$p|¨_Mv½Øú \81ÏÎ\v`\10ûP ^3\9e\7f=\8cÄ\16O¾\10¢ÔcÆÝäY\1a¸!fÝ9Ê\ 3È\8an\88Öŵ\93|ìóÒâ¸Ã\0\9fçûýkHã®\ 3+\8bç[ñf\89H\7f)}+\97æç\1dË\88óε+D\ eÚLaÑ£\ 2\8fò\13\92ÀR±ó|ß¿¸\13\1d«T@]ßïÿIù\90ûO´f³¾8.E*ú\18Fçc\88\17\1eB\aØ\97KÜyEóÚA\f\85Ê%ï?'v^\0`0ø\82\ 51\19wDÁ ¶t\94Ã\914ë\86¸ÕMp\12Â\ao; \ 3\1fmú\ 4\ e©\f²^\17 -i j\93\88*it\8f£´1KäÊw\82_\0uPò\*\80@%Ï\ eã\12ñ¢"ý\ 3Ø¥ÜÁLÑ\87dyæÄ\83$\8b\90Ä´9ÛÁO\83\14êNê\97."éÁ\88Ä\ 3ÂX_ 2¯\ e¢\f\ 3!\10\ 4\9dº\80\80\ep\&\03oÑ\92Æ¥\ 3FÔÎ×ÓÍ\12Á\14ÁØð\8a0}Bý«ïpÄO££_\8a\91 ['\ 4·åÎ\14ÆÓ6\8bW\85ãó§ºê\81àüÓEòâ\v¯:ÉçO-ÎùÜ\96ã\90\f¨Æ\9c\16ã0æ4W\8c1çdDiK\19lK\19Ü\8c1óyÚ,б\1asø¾Q|Ä\ 5\v\84(Ìb\ 5VË\9f\12\17êT\84ãSü=c´g'\12À=¿ç/\18uj\8bg£Nãìøk»·\8cÌ\80ÇF\9dÙßûóþNF\1d\99R\1a\a:#3Æ\ 19²C)\97¿8\87ø©S(?\87r?\9f§V+\9b\80Æ\ 1\9dKZ\a\1c<(Ë<Ð5voºÐ?%RÞE?6\85þ\9e\91¾³\13 \ 3\96½@#Áü\9eo7î´ñ\92;\8bvjÖ×,<®\02;»³b§f\8f\8d;ÿàúý¡\91ç¥õ;Ê\93¢\1fÒÛfäùâ\ 2>˸v`Iâ¥\83\10\7f \8f÷w§¢ºs=\9a¡º\ 3µ¼§_\97\17´¥\ 1%\1cóÙ×ÂP\99vÄ\0N8¹F|Å"Âý\82äèE¤\1aÀ¤:ZCºnfIP¥+\93\88\r\11\99ÍH6j )f±\89|Èà\v¸\9c2Aç\1aà§\ 3Ù9\88µ&\15.\89\vÃ7»\9f\fA\81¾\9e ç\92\18Ep¦\93?UTÇ=\90\ 5W¢\ 6\b4\84F#ëçgÌ\86òÑ\9f¥»k£öëï\90\9cF±
+°\82\89¡\1dQjÀa\12\a\95B±\93\8a#\a<êâK3DÔB«GYÄ®Ù:©ÅÞg"A\ 6ÝipïE\16\6D¼ÛãófwsMÌ{'m\e¢YRK\1d{b§®ÝC\9dt\84\ 5è.»îÇ\91ómöÕøÐß\e\11\15'\19>ë\88i\7fø²ÏÓåñï /\80}\8c\99º}_°\9cæ\12\96\88\1e\8fé][`c\bo<Ã\ f\9ft\ e°Ô\84¥¿jô¯¼øýÅ\17¯\ 5¸\97#l·"\12bu1\0E.\9bV\897C\û{§ºQ'ð@\12zhªF\9fNÖ `×"\9d»²µÃ§àPw\1a\128!V¡Ä\aÊ>I<N?Ò\9e§¿jÎ;ÇXb #Ò:\93$R!\0±ÿ_hоû¤7@¶)Ó\81¿ºl$Ã\9c\16ñ\0fk\ 1'jÃ
+G0F°ºÉ\12' §jit\83z³ÔíT-*òE\0ó.\93ÓT+º\1cªAÃ,\ 2Uµ\84á\?ÓߢY\1e¿VÚ\8erm\8a\8dª1\1e\8bJ.3\18O\95º\ 4\96f8Ô"z\80T\ 6°¨Õ¡n³;Ûq\14Z\80m¨Ë\ 1eߨk\92\ 1g\10¤\9cª¡Îí{}üs®ñ\8aÖÆ£\v\9b\9a=\7fé\a-Ü9sU®"Ä\83Ǻ4Ñ\8e\v»xõ\95W9ãÁcë\10~$|ÈÇPÞ\9c?\8e¡½Áti\93ZÏ\1aS2Â^2ÂÞIÿ*\16\9f\8bý\ f%\ eï\1dJ\¨\16\15ËÅcÏ\8e=Vr_<Vv\9fü\9eC\9a\9dÈ\80çwý\8d\14W\97\8e\93\16\17ûynÞÕ;\rß2D\96'ù³Ç÷/ôxÎp\95y\95,IW\9aM\93$\16§\91¾³Q\88³Q\88ó.Ë\8fNDÒ\97}!\92\90Ì«Ü\1a¡\1eV!\bmË·\fm¥>\87¶r\9få·IÝ<¬B ûB\92&çw}\7fÊ«\e¯¹³\82çvo´Ç>Ìw\9dÝÝY¾s»'\19¯ÿðbþi
+ì\8b\8b\19\9e ák\7fVÃûòj~^\12ÞñìG*\9f:ò\1dÒë\9a\87×dR\1drÚú\1dL¡á\10\88\ f\87ì%ÆÈ\89á´\158Î:Õ+~Ee¤#VÊû\91µ
+Ã.ËÏm´&eìøôÌouÀÁÀ\ 22\13OÍÚ¨ñÕPI\f\ 1 \8cÆ\984<\rÛc\v[Ãt(ô4"Yûô\90\16´\1e=Ä\bFGb3¤¨ø¾\14.\80§\vT\84ì\15 \9c\8evV=\ 6\ 4¬dÚM\17=§²¸h½û\18\10\ 2\10\8f¶5\ 4 \97F\ 64-Ýmh\88\14¯´#\9f¨£j\97¡zâ\8c`.[P8S(.\15Y\9a\ e\bþ©DKÃ\80°z\a\9d³«eNZ9\1e.Ö\94
+1\v\9c\16ʦZ<V\a°»B\85\15\ehê\9d\96\ 4`\95®ù\10ÙcrZ®nÒtu¤\92\97i PÚ,Î\9e\ 30¨è\11n\9f\1cønxÜ\92,\ f`n\9aèä}\ f1\82Ø!\1d:\89C\ 2A\0-\ 6Ù\96\82,Û%QÄ\1agݪ\92\95\81
+î\95\8e:>]=\9dr\88çm¢\1aúà$2\9fb\v\8bkp\98\8c3]\1eP~$\11\9dgÞ\ 1û¹æ\93kÞ\11¿¹m\8e}GÐ|õ\13vÑ+\86°Ñà]r\84zYTºñrÁ´\a?½n,0\86\ eÇ«' ß\98áx\by\11¹©«Bs#\1cÛ\ 1¿\vÔ.!k\82\ 5 µ\1aÏ\1e4\10q>\16¨Ä`1¾\8eBæ\93Æ\9e\87Sv¶\fN§ÒC¹¡gµ\ fÜi¡o\84\aà\a¿0(
+qëç5ÄÆùé\9b>ȶ\ 4~uÜHЮ\82\1cÜ\9dzdÙ\1a\86zðÑþ\ 6¦¾ ¢\96)î\ eI\9eÁIlo¿\8f<ÓGdÐQ\80QP\93\1cë\82\8fs1§\8d%^\99ç÷;ÿY$`JÔ.D'\1fuÇý\8fóôÆ\váá\93ý,t^þ4\0àù\8bß_|ñ½ \0\aÈbMLAjL\10¡?\10®\8b|Sl\18Øu\bÒ\97øuhÝç\9d8h\1fº\8f\1dcíWË\8c:\10\fùÊL»\ 2\9fAn9+B@S))\b"Nÿݧ\82\87Í\8f\ 3c\8e\96!ö\9d,\bß\83\b´¶yR«\14\ 3\´ýL/*\ f %\95Þa:b3®.ËOV\88\81å=+ÆÀ!Ë|\ fPèëÑ\b\9aÈ·dxÉ\1d\12å«ä\96`<%\aá\85iDü ò"\88ÆE8\b\89\82\8bô^cÿ\84B¸Jºûû-IéÀ\rÎ\ eFYªHWÑÑ\95Çt\91VEÕç\18)\1e4¸°¹\ e\84`f\0\19PÔÎ7È ñþéÛ\8b°ü¶eÒÊ\98¸\ 2\98âÏ{ªóý,/\81©\82O\ 3o\88 õ\1c%b\7fÈ 5ý\rU\84Ï7ç \91¿%ìÞh[\ 2X_ïbÜI\0\f³´qk\83GmTÞð·\8d*\17\10®\1a±\94Ú \0#\\98@\ 1²v\11XLKT\0\92(ÕÆ\e\9a«S\15`\1c\96\94"\85uIÕXFX ¢HÜ\9dýϰGÀ\85¢\82'°I¢Z]Ü\1dùË-ù\vA(YÂ
+fK_\87D\87\ 2Ôñh\96¶Ë~\8b\9aÄ&FÙ¯ø¦~xFt8\80:\b de)jý\9c¬8Þ\88â\12\8b\1f\16\ª\82N\87³åÚ+P\80ÌűÖëj &$e\86aêê\12/\16\17\1eýÆÄy$P\ 2ÚIÏrb¸\vÄÛR!¿\87àæõ\93\ 5ÊÁÒÆEÅëË\9d/µÛF\85-:\85*\9c$Ó.É\90\eªDWþùÍ1\ 3'v\ eÈ\18]¤KÔÀÔH\1e=×\95\1d\ 4s>\8e\exþÒ«\1aôè¹\97b\a²[\88j1\19H5¿aª\9dl=Ó\f¤&¡¡\8d\9e-G~\ 3VCÿÃü\94Ý\84Vs¨inÌO9[¬\ 6ýS´lü\1eZ¶ü\9eC\9a\9dÈ\80çwý\róS<Î\10k¨\8fÙ\8fé\19\r\r\rßrNOáÕf\8fï_èñl~\92y\15\8bE\f\eJ\17«N-ó\80ü©¦<gLyn36ÌNÄ\14!ûB,\162¯Â?\ 1Æi,\16\82\8b2;\19h;|*M$\ eý=\874;\91\ 1˾\10\8bÅü®ï7?Åñ\9a;+xn×\170>\81[\9bÝÝY¾s»'æ§\7fx1ÿÔüôÚbªPþÀü$ým槯®æÓ\b\83Ä¢OÄ2B<¨`º»\84ËÐÓó?¨\8e8
+\82mÑå6\7f\bP%\9cy\w\ípÇõ+\19 °Qf\1dîJD\8c:äê\8a\88À\8cwà\ 1XZ\97hØ#\16f£²>÷m£fM\ eá{¤$"Ôë\0P7\a\ 4x\ e¨5\f¨R)\11\1c\ 17\84s\b±üÄ\9cèáôI\12\ e\1c°¾ »hx\1ayÑjï\9c- Îà\14¬\80ÕbºÒ\13\ 4¶H\10ݪh´}yå#\b\8d\95\12\16\18Ø®¥Q×\0T,Ü\9d\8b&p
+\ 2ü`©\88§\84íDÞ£¦\82Ø¿±\8b|\ eiý
+\8f5hx:³´üÖ0G\8dÔf\b&\176£r\17\14¥\8afó\vÏ\8e
+VDÔ\8b¢v\81\9a<ã\97\91N\8a\8d\ 3jW\r\ 2òÊ9Ê\96Ù+R\92\9cäTg\ 1\91p\89U±hF\1a4\8c2 ²¥¯[KX\87¦\85Åaµ\91\16¯\ 3\ 2\18=\8a)áa¤½ÐÈ\81ü\ 1$À8à(H\91(~6q_±ÚÄÚ\17X\8dHh=vIH)¦C÷9Åì"ä\95iA°ÃxÎYW¡T±\1c4n\väU¸¼µ\94*îLh©(ø\84WW\18UøÑ© î¾.,Á(\88\13\91
+7U\eµ¤\1a±îáu54h4EÄÖ\9dJ¹ä¶Q\19$\9b\93l+æ|P^w\87l QJ\fQ½\915>9ô\9aD¶\ 1K\80Ì\fÄ\8c\94$;o²\81+Ã\98! ɤ\ 5EÉþ\a3éÒtQS©\9cù\90%HÝ\v 3׿±\88\81\93áÉ\18\17ªE\15uð\ 6ièÊl襨\9c¥\ 1\8cOò±OÔ\10Å\8ak¨]û¢\9f\9c\ 3b ,#§\19·\ f¹_ã\9a'\r\ 3\ 2Ô$\ 1²MË\84ÀÙ¨Z\1eßci®NC·¥v\r\12\93qÛ¨HÛ+d\12\fðm\9b¶ë\ 4\7f\8fÙëó²\86.£Ì^Ý\98âv¯½ñ"zødW\10[{µ\9eâ½\17¿¿øâµGïFÉt\8e98\1fj>ÅFµ#夵:`\0\v\99ܹÿß» Ásf\v\83F\86T\fV\8f4tY
+è\90Öu\a4 \969\83êH\8e\8aÍqÀ^,\r\8b\18Ü`#S·J©\1as\84B%Rj\fyoH¼ü\10^\96%\85\0\b=@\ 3é#\84 ßÉ\95raÁ\83¦{:k®Îl\89p\1f\ 2X¡Cú\8085Al×\15¦1\17äªH#\1f\12fn\80\9aÞ\84\9a=½\v\15Y-,\réXû\82~+\\15~^¦\8eQ\94\80߸\h\83\86qâÆ\17kÕjITG¹"Á\9a Å\1a\9a½L\r\15&g\ 4«ô»\90a6ý&öR¿\85/9\88%\a»\10\92c\7fɸ\89¯Á\0&BÍò\ 6H\85ÎUW®"Ä qqÂ\80\94Y-û\ eàJ\10åDÌÃÄ!gd'Æ]\ f \ 5\ 2\1eJ\8drA:\96<è$7Å!'\85¥-m\bN\10§6*\85¬ÛFíûëÀÍÈ×$¢sÑ|
+~\83c\v»#¤OÉ\ eù\90]*õ;\91Æ\11Ú1xwcöH9®7Å ©Lr\84à·\96m\9eWl5\0\8d\18Ú¼âxñ\1dçëð¶QC\902*.qÄ\8c\f\8aHq¡\14p=ï£V\ 2/\ 5¢Ïðòup\8bQ\10ö
+ÿ/fËBYB«\84Ã\16yáË\83ö!b\91Ô±1-éï\8bê_s(\ 4iiãNÐSuº?n\eõ\b\83\97Àú\14%\95)\î®Iã>têÇ3-\8f6oà Øc\966îMeO§;ö¶Q\ 1eË«\vu\1fÕ\ 4\8cº\97%ü¸7¿ßa,û´*¡h\aj\94<Îõ\a\86þôè¹®g\1f\8fë\ f|é¥W¥íÑs\8bA|-\«\96 HÚÅÉ\89HÚ%f\vIz1Ne£>g£>\9fL]5m\85\bÜ\ 4&å{\87½\füÂØË\9a·\18,ú§\98\ 5ð{\98\ 5ä÷\1cÒìD\ 6<¿ëoØËr>#\94ƾ\9c}\9b\1ew\1a¾±në\13{Ùìñý\v=^
+\12¸\89véP[Ö\98XrÙí\19ÅØ\1e\8b±=\96Ý:Ò,æ¥î\v1±È¼\8a\89\ 5V}cbiÎâ{è\9f²Gð{ì\11ù=\874;\91\ 1˾P\8cûñ]ßo/Ëã5wVðÜî\8dåt\1fÚËfww\96ïÜîY\81\82\7fw1ÿÔ^öÚbÂuøØ^&ýmö²¯®æçáZ\ 5Î\ fqî!|Ü\a\86k\ 1W¤\86h\88\ e ²Eò&P\92\eQ¹\96\86jÕ\89Xà\eµ\b.\9eCöv£½\ fÑK\19A\e\ 5õ¤\191E\ fW`½o\94EÔôz ¯1o¿¯gaé¬\16Eè\86rA*z\10´PKí¢j\11h¹AuHøÕ\0\11d\ 1;8Z'me\b`ð\8b\8a:\¥\v\15ì\91\95ÇX\81 \95ì~¬w/\1avnÐà\81EÅ\1e\8e^,Aæù
+o{\11Çz\17·=äEC#\16ºX
+,õ\90\9cþÞ#ò\ eÄ\1eØ\15| Íu\1aÒÓi\8fhD\95åtv\11Râ°àpÌIBÎ\91è\9e\9c+bó¤ÙÈ\ 1\10\86\bxvͯ\9bã[ôr\14®B\0FWr½à¸.\91¡"\98J>wLÖv~Þ¸á\1f>é¤V\1c2+Nzù\8b/~\7fñÅk\9aÌ5höD_iöûû?»\7f\ 6\95{7\vVå¢vÚ1w$\ 2ÛbÞhvï\ e*¡)$\f\10=J´`óã0¬c3hغΩ\97\7fR1 Ü·\9c\1e\\9a\86Û¤z\81W\82JFx"2\8d$9ïpþW\9e\92:Y\ 1ªQƶÓ,Ó\98ÔR43§\10±°\ 5a9\97-9hxºoîP]ÝZV`\920o¸ \96\1cN\18²÷\1dËíU\18[³
+}ñ\18!\88\bÈȵȩuÃj\ 1\ 4\e\ f³#¯\94y\16\19\7f²ÑÌ©]T u\17(D\10\1e\e\0\0ÌêÞÙ\1dß\ 1¸\184¬ôÈçÍ
+\94\aÙ$sª®÷Ó£çúU\95Êåt½üÒë%öè¹5;Ï\9dí^\8a\91\89òÐò\84]t-ZÜų¤>\85x\15è§,q\92û£\ 5_dÿª<x)w&%Û]²ø\8b^
+#\8dNôOÊH^\8bàD>U,|Àê\84\ 3^ßõ7\94\87æÎ0\8cð:t¥ý^÷âÊ3\1cÆÕãû\17z<+\ f2¯"o"NÌÈ\9bm\ 3©×?U\11\vF\11\v»¨\18-°\9fî\vÊ\9b:¯\947a\f5ò¦wÙæ\8fë\9f^Ö-OD\aý=\86´:á\80u_\88¼9¿ëû\95\876^sg\ 5Ïíú\ 2æÇà\8c«»;Ëwn÷Dyø\87\17óO\95\87\17\17óx\82بýmÊÃWWói\ 1õC$D/Ź~w\ 2\83à\9b3TOqºJÌ.
+µBþ8èÏ«"\9c2¾¾ß\9c\94^£ÄÃ%&dº6\11\ 2aN)±dKkÀÐê\ 3ç\8alT¾ù¶Q=\8a£a£A\9ca\1ciý\99Y\8b\1d>kBë3.5öË\86\1d¶\ 1\ 1\96\92 \ 2ºF×wS_Hö\88"74\820\8beÑRËO\9f$5yR)0\90ÊÙaJ \9dBñ\80ÄvÄjþüèÓ
+\8c²\14\9am\84K3\8an2;\9b´õZlqCÍ#õÃRûǤ\ 6ßeÿ\13hgY>:Avé"$\9c\1db1¦RÇcs´é\ 2bª'vò\ 14&1åö£Ö\ 5¡\f\1a¬Ú\f÷D!«À\1a\ 5\9e¸<\ 2KIôLXµ\1d*s\vò\95giä\8d\ 4\1fEmrÙnÔx0úÕP±Sº²\89s\ e±\8c\11Ý\95\98ð\81\9fãÕ{Í×\18åÍ f\16«ìÑ\86\rr\10e}Ä\8cè^Þ6üð\13¯³\80]Æ\ 2ó<\vHÓ`²Ð ú\ 3¿¼¤\12«ÛÞÒ\1cÔ\ f\96wß\89º\9d7ê¡\98Þ\a+x\ 4:z\8b\84¿ò\18\ 6Çðb¬ró,u\ft ]ñ\ 3)>`\f\a<+\9e \8bý\14\94\ 3R¼|Éø\13\ f"\ eX»\9b\8dX\86MòÆ\93xþ\fi\8c\19_²Qñy·\8d¸æ\81\0\8fôC¯ùÚ&\15ó$\0¶µCç¹jhí¤r\ 2Xê\8f\1e¦z\80Ù\19\1aVþ RÛFíë\85í}Û¨}¤!#ì\12éÚ\94l\10ô\9fÉ»e,ãO\9d©\83LcµÉi\0q®\16m¼\943µ¨:ÀÛF]\9f\82\1a\8a\12о>y\9b\97ïñ¢#4]21\90\ 1ç¦\80\8eÛ\10%\82pÞ\16KÚ.¬7Þ0\ f\9ftR@åØ\8c\99\7fòâ÷\17_¼NðÝzô\a\80\ e+£\7f"\10"bã6kÈd Ó\12\18£^\98I\9d<\14U0«ÛhëBبóB°TÄ\13°|Þ\81ò\f\99ê\0\0ÂÌ\850þÄ>sMò\14\16\15É
+ãÎ\19\9dYÚº\106ê¼\10,\15\9b\97µ\fqO\a ?ÃG\17\\rD;\11\1a¦G¹2Ôâ\$º\ 3`¬\88A¡ÉMo_z\9bëF[LâDå\9d~³T\18\16\12\94GÏ\ 2;"$\94cãÊãOLOi3V\7f4Âݦ«_«Þ/\934o\12^\97þ|ëÜ6*\Ã\19\19\10¸ÜäÖ\80[0r\18\ 44Ñ\Ç"I;\18\10\1cº4?ÀíZ
+¿\ 4\80È\85æJ\80>C\1e½·õ\ 6°\84lMWOwÅï\8d\88ÒM\0·ð\84\17ò#FÉ2Óñ'F\95\ 1V8pk´\11ÂÎ\943ÏÎ\16ÍÜP\eqÞP\8bz ò;¾\13\98·iäë\9a+fþù!L\\fi«\rrE\a¤cCí+Ï\13/i\10\a\8cŬ@yà\ 6iY=ÈÄd¶S\82\88(\98kNs7¯§Ë\8cÞxË\0Øaçп7j\9fºâåÚB\82\18\91¸SÞî\85ñ'?/H>\82mÄ\10\ 3¹cfg\8bf/\ 6C5\17âVEOá{\ 6FkÜ.\86ñ'\97½KbR¬i5Z_¶:3s`.ÌëÌ|\aDI\16\8e\ fW²eÛÐ\ 1à/\12.0\ eóE5ú)éê\9f?Û5%\87ÛÂ_|ß/½ø¢C=}ñbÐ_ò\7f{)¯I\13\96÷~\82Mv\8ebÑ&/ö¢b4Úb4Ú\93õ©YÈIö?LXRÀSLXÑYÌI/Eÿf'ò§\98°¤ü \98°ä÷\1cÒìD\ 6<¿ë/\98°¼+gÐÉ\18\91Ã㣿Óò 9ø±\rkuùþ\95.OF,\9dYÚ=¼?,va?\12»\91aÔ\8aÀÊUc\10Ü\8aK¬NÄ !;Cì\1e2³b÷\88\87E0dº¹éDþ\94]\82ßc\97Èï9¤Ù\89\fXv\ 6í\1e뻾Ý\88åÝxͽ5<7ìKè\1e£P®þî-à¹ác3Ö¿¼\9c\7fhÆzu9\ 1\9aøÐ\8e¥\1dnv¬/¯çSC\16p0$ûÚd\8dxT£v\8d¹¡\83ê=\82É³Ø $_\16yÄ"7#úü¨\91õ¾c\91\10·>d\8f<ê>xd+\v¢6ÁLX\14ÓÐZ\94ë\9cO\ f*\95kH/\84\19að!\ 2\1c+\9dcÀÚ\10èêIÃÃ@GH4®¬\96\85àz^¤\9c\1c¹\aQ\95\8c\8e·FÈx)\1a\8erÛQ é\90³Û\88¢î\91Åì\ eZ\0\b\ 6.D\14\9b\93t\15V\12Áî\ 2FIb \b\ 1»\81\93ÉÉeÅöEëÃ\f|¦%Û2 \123Jzoÿ\À\8bû\0Ñ<\8bI¢"Û»òi\97Ljqp\98¢àÊÄ\ñ\9a«\11ºxW\8fÂÏI?s#\92=û\1cÀ0(H\8e½\86\f]w0Ò\80ÕoqÕ\ 5*5±\1a\1a&\18Ñ\ 5\95¡õ³%&]
+\7f@\9e¤v\81ìi\86ÕQûi\90\85ucèg#Æ\92æ\0ä¶kðjr
+ gh¹\bB&Vg£2÷â¶Q\91TÃÂ\1a|O\1aà\ 1Rq\ f#ÒXÞ>\95´Mé~¡Y\81 £¬ Ê¥eÊÉ
+Uï\93\81ÓÀªë+\99¨O%\ 2\12jÙZ"\96?\8a\8b»ÿ\97á¦ÈÓ\r±\14y·\97\1a\0Ú¡Å\0£¤9\85\9cGè+\82[ ¦jhý«²\13©x§²@Ím£ú\0û\1d\96\11¯)\99\eÐ+`@\88Uñ\1aà .U\14Ç\0à\ 2\ 2ô@äkà0ÜBG\11(ªÉ\ 5®üb\18\ 3û@ÜÏ<ò\84(g\83\95t\1dFµ\84Aí4-Ð*\ 1åL\9eñ($ÂT\16X{è±Ö\1d§UP
+ f\81¬\0æ´\92x\bÁhH]ç"\8eίÿ6*\90àÅÂe©HvÊ|ùÄ1ef\ f9\a"y\12\98\8c\9f\17S"\87\9e\19]\0\14\ 5\9aW\0kâ5{ÜI(3÷\8cfö\ f\1a÷\8c\1f0J«%2_¤:Bߥb\1c64`Ì´C$UCm\92ªvÛ¨\88g9\0Î\82cÞçw\9bôëêüí\84\93þ-õó\84\13øÕå\12{ø(ÒõË«\19'÷Þüþê\9b\1f§\9cX®0\ 2}ys\ 2ÖÃ\12y\ 5U\89Ps(\19ZÉ5ãH©GYPh\10Ø\p~WBLÀ\98B¥ÃÇ6Y\9cSÛ¶¡\rfH\16ÙÎ\8có¶Q\11\Nd9¼\87ÉVôMH\ 6\80ïÓ)w\11ÂÙkör¥\ 2ØH Bh\14ÁÖõ0µÊm\ 3¤Ðó}1hÜîH"á\1d´Zú$\99\89\82\0ëyW\85~X²`\9côÍ\9cÉT:\15zTÑ>\ f*÷D\80ÒZ_\bV'ãì¬Öe\ 1\81õ\828ö!7]\14x\8b6Ò\r\ 1\14"\95Zal9ßÑ\93F¾Ó~2Zض¬¨¿&@!EÓî(^\b\18
+¢\92
+#ú< s4cò ñÐ\89(á\7f¦\18\15q\9b\95ÈH=FáÙ#«¨\82\1d\9fQ\19]Ê\9e\9dE\9eAã\8e©£t÷j\89`'\95¡\9cÔ\842´MÚ2Ô>ר\10Ø\1at¸QT\93\17\12\a&³pJ\8d\92ZÃá49\13ÁFR\92\r|ô\10ýy\ 4ÍÛ\ec%\8fx\0IU:ÜVË\90VÖ#"³à\843´q×aklTÞ\8b·\8dZ4õ3à\v3÷PC¥pÊZ\0KkÌøÅ~AâÆ\87ì6bgÉ)e7\90«² ½ÏÓ|çØ\8fÌ\13Ëô»\12BöÎ\epJM\83J6¡«\1eÕ\ f,B·ÔÄa8©
+)0_Ë\19B\9a*óÂ|\99Hf\19 )î4½ì¸\13ãùb¼mTäý\10\91\89ïÑ\18R§\9eKîø¦þ¥\1ctÓ@j tå\14\1c\18¸yzuC\989Ý6\83Ä3\891\10\12h5\84\ 1Y®¯\1a\14`ÇÐÆE§üàt)Þ6*2û|åºå\91V7güÎÚüÕ¬\15/xL\9fdL\ 5îÑ\83]9DÉÇWÒVî½õ\8eÚøèÁ\17óV¼\94ï\15»]_Òi·\8bÉÂ\f_\8cdÁ¨ðÁ¨ð'\93[²0Ãì\7fØí¤@°Øír¶0Ã^\8a\8aÎNäO1MHyS1MÈï9¤Ù\89\fx~×ß°ÛÅp\81\19FZÛ\11ñ\r\97\96o%×g8ëË÷¯ty¶ÛÉÌ\8a¡\aõ»\8d¡'ÆÝª2*\80`墱\82ÆÝF\93,6î\f1ôÈÌ\8a¡'g\8bMëÁªM'ò§ì\12rqÝ%ò{\ eiv"\ 3\96\9d!\86\9eù]ßo·\8bñ\82M»&üܰ/ay\8c4¼ú»·\80ç\86Oìvÿðrþ©ÝîÕåtO°\86µÃÍn÷åõ|j·K\88ë\17X5c·C"{\96Â;ScG¦h\f\fR/NÐC}\ 2\82] ÐK-\97uo»¦ÐE\80C\8cP¨r\8bÝÑ\10«M©\13I\0\8c\1a3´¾dÙ3;y£Ê\ 6Z\ 4\ 4r0"\1fo\bÈ\85f¾{ßb\11cA!T\96\9e@²G¡4\86A×T\15\99\91è&\1e ï\87¦W\r\83\vPLF ×e\9a\ 1P\aÅTÛ\12\90\1aþP\103A\ 5È\ eÐ\8aE«X\12U¤?\9dQçF,g\b\9eb|Yîz¢\93ÂsÀ\14`,\8a¡¡øm!,ÄNåæ^\ 4ø-\ 1ûÏW\14NìE\81ã`\8e6«:G\99\a\bÏR\0\11â6\1dÕø:\80QÚ5¾î\86i\95Yÿ\9b ,Ø)]0æ\90\17µOpW@¤\10\aê"Ó\86\86I×ÌgTTÎ\89Bi"ª \85Å\DÁñ\80[\89\81`6)«\1dÂÐÌ\14mTL\91!ô_G\86\95\a¯H\ 2ãÑ÷\ 2s&<Rò¥²!¬\97Ì\ 4Ç` A\13Èæ@\89 ð\1d|]ÉÜgÓÄ:·Êf\8c%\8a\ 1·\97iY¢¤\9e³Ç\ 4\84#O(\ 1©fâ¼ 3r£\ 1\96¦ª\8a\9a\81\0Üi\90Îhô\rN£I\fÍ\1c\19K\95yX\84\ 4=\17,
+¯\88yÀ°
+`cB G\1a®°(]_á¾M\0¯\91\8a\9f\15\8b{PJ(j\9d]«|Ý\ fßl\b\82M¡Y\93JFmÑø\89\1d¨/â\9b0ÅGOº\0ä\85Çf ¯¼÷ýÅ÷>1\ 2e¸\98*W¬%\ 1tÇá\82Í \91S\1dMòèúêt¬úM\974Üké\92}?{©än[\ 2\13D\rØ\r0£Ø\92.i\19x¼\9bà7xZê©zÑã\9aÈÞÌ%\1c\90[\ 2\ fbhQ.\7fCÐ=zÛ¨H\11£ \87¯\90\98\1e8ip¤0\96\83\92\ 4¢LK\91\83 ÜÈ&Ð\9fUK\9fàã\80\1ejõ~ý\8c\85\0\13ÆO¶-¡i\8a(\ 3¿\f}=X\82ÒôÕTCÁÃ17¡¨\ 5å\80©9{7ùp\14ü!K\93IØ\b°n\e\15ÙnDJÏ\8cª \v\87\9f\8b\fèÎn\98¶\81Å~¦E ;\ 5Î\8a\92²µ3á\12÷\93% @QB\91P?ÊøHqÕ>¿\15\85\82É\ e\81A\83Ï%\8a\96²RÀ bÐ\86&_¹\11æW\1a*\829}å¾+ã\8b\0yÏû\1aÁ´A@Æ\9a\0>ñF\98\bÀ\15Ejå>)\ 2´±°h,÷Y¨5\1e\181²Ö¦%B¿\ 5l
+\ 6G03¸Ý\ 4Â\ 3\18uí\90}\82Òj\92ÛGô\99ÄË>MF
+\84(øR\fMgÁ\10Ö\867Ôp\88`â\ 1½uÄ ó\1c\83pù¤!ûtÎ\1dz/Âuá\8b"Je\82\96$\9a\bë¾Ä×Íð\9dÆ\b\84\roì\8ch4é\13[Ä\14J\1f<×å]\7fµÂ¿úÎ;\82ð\83ç^4D`K\ 6\84©"ÕT\7f\ 2\1fg ÍâofÊÐ
+Ìü7üå»F\ 1àãþÓù\83àÍPRZ\18H³\eZm\99د|\9d\98:B¶\0±\12Æ0\9eç_è¸?\81\9fxÝM~Îq¬ç\ 3ǧ\83ÿôV\8e\7f\9cñæuÌ«ÔU\17,*#çOí~Ò*ô\96 [<Iz\e\9d¾?íT¾ËâeàÑ*X]\13K´\ 2\90\99kÐfí\991\87ü)sÈ\9fð;H~Ô|> ¦\8d\eÀÕ±NøÙg=\r Rü\8d¢Ñëyþ%{\81?e/ðç\1cÇz\9e RA\aÿk}ǧZiøÒ\92]s¢Æ;î,ØÞl®\97{RÏhôxgµÎÍ0K»\89!\9a\f·\7ffíþ8¡íåÅýø8§\r]ºè^_½Oá0à\7f\ 2¾Uï\17\90U\b\9e\87\Òos\84º."ü\88\12Úà\0lxà\86\$T \81ÊJ9R\89\9e\19N©R\8c\ 4&=Ø!±í]\rb!\16¡%\10\8a> Ä\1c5\15áS )Q¼\ 2Ì\1dÜG\8bÄ\18\1au\9f®v4sÀ\8cÀ\82 x¯!\ 1\8b#Ë£\8b\b\ 4ÔFßG\ 6Ææ\ fz\9a\13Ó\ 6¡ß\ 257°ÒOM¢¯õÿr» ((dî\19\10©t\91\18\ 1\98\ f\81ÑIàw N>£ða\ 3\11\12ä\1a\ e\8f©@)\1aÒ/³\1c\93ØûCp<L\ 3æa8ì\88\9d\f?\\91ÊJ\83B¬\82ÌÕ\98ĹD7K\9cKY\91\8fÒ¥h³à×\8dñé\8d\94\8eWê²\10¨õ\r\9ee\14'Ñÿ1Wb|ÀøÊíä¼q\9f?x®\1fT8¶B¾ê\88¯¼ôý¥\97®Ù1Öôµ\88@£E?ýLå\1eD\1aL»®W\9c!Â\11\1f\80\1cÈ\95í¯§ùþ§CÕ\1dnÇÒ*Ã[\905\ 6\ 3\89\10\v\v\83 *É\ 1Á8 \e'\15MxF\98}\89\8dÉÚ\1e,\ 6¦G£@d\8d\eÉ\9c\96I\8c\89F)\9cjÂ9\ 6\9cÌó\11\1d$X\13}×SZÛÚEªb¤\94\ 6+\ f:-Hef$\97FâáH!1\8eïdÍ\87\9b!Ú\8dl\88\1e`;If\ fEÅúÞ.\97\8d<H}x¥ß\aÚfu®èìÌ\90\16\83\9bÄyÎn\e±÷\87ê´p¨ö\1di7Á\9d}ñ¹\90W¾^e\82{\eëh¶(]ººvó\e¯7Ñ'Oõ9í×QÎ\97Óôâ\v¯÷Ô\83§æ¤<\a¼\0z¹
+ûô$\8a°\1f\8fd\84ý\93\90]\97\90P\97\90° ëëyȳ⢤°Ï×\89°\9f\9dE·\13ßÇx\9e\7f\89°Ã\9f"ìðç\1cÇz\1ec\9cßñýÂ~¨þ,ìw9¨Æt\Û½¥P\9eU\92\98ý½?ïï$çËLRV\8cÎ\19Y1´MFkKWjKWjVÖ[ÏC¾\91µ§¬(3IY1;odÅ\1c\ eó<ÿ\92mÀ\9f²\røs\8ec=\8f1ÊÚSV\9cßñÝr~\18︳V§f}©òã\9a\11³³;\vunöPÄÿw\96íOEü×ÖíxR\1e\82½íÒý\17\17îSé>\16X¶EH¡£¢/e\86\9cS\83!ö+T
+¤S \f¨énH\ 1¨ö\8c\126Ä\88\92@ýv\8f\b%t\90\7f\1d"Z±êp\15³Jd'eDÇCxfÍ\89\83ÚYË\12°sû\ f\16Gú1\0\0\ 6l©~=0©\9f\9a\ 2Ü>G\1f¼%uÞÙÇa(\80Þ\85Á-!<\11f%
+\17\8cÐM¬?zxCê\8f"Ø]D©Ù\ e\9b\f¦Ë\0é)s\83¦\884\85\0Ý@Q§ûL\11\ f\9c#+¨\82\17é&£P?\80}cÉ\12صHýIÄî±BÅj\97\10D\89¾\8aD\9eO\ 2òAŽ4I1\88M4BÞñ"\8d\15\84ä\95\1fXM\9a¡\ 3J´2\e\14ïCÒ1\89\19VÛ\94~@2¦'\8b\ 2Jô.rô,\9bÆ\8b\97±\8býQT3à:y)ÃÐO\12kn$U]"ªoÀÜO\14äEêS\8b\b:\11xf;\94©\ 3ÀHï\r.\8aÐ\17\18Q¨\85S\9b³\94µì\8f\ 2ö¬ñ\86\86\9e\8eÐp@\89\1fáàB!\9f¶\vº\86ä\ 1ÖH/ÚN䮸Yâ\81zs\19ï-Râ«oÀC$\1c\943h\bB\v\ ePÖ\a¡Û\81\13}´\8cv}\1f{\81F\86?±\7fTØ\89\105Y(p\12aÇ\16tp\97\b\è,)h\91\93þ½\8b\88\1c;Ñô6\8e¥yë ýº\9eèO\99Ú+JY?\ 1È\10}s^ý\f30\fÎP\19ê\Õ\8dÙ½\91?=z\10µâõɳZöÒkß_{í\9a¡Å'í::Y²ß\9d%tF\13\84_¹¹¸,, æáà\rv¡p\etõ\89ö'× \99ÔÜ\97ÍÏ\9dV\ 5ºÏ\90Æ\8eìÛj#rïÞ,\11\b\9eH\f`\89\1aÂ!"8\97\9f\96Xb\90F\91¼\ e\e*\a2\ 1\13µ\17\1d\982¸b>\9a*\98çs:H`\81QÂ1\161\ 2£^Î\1fT\14\80{\ 3C^x=\v\eÃ\11Ó¹\ 3Ì\19\99\9a\1e\ 2OQ\18\aå|:+Å\11O\1aç\13¡74áÅ\80°#\80 y`IUØ\19ÒÛc\8eÊÞ\10¥\Û"\18\168Ið±\81i¡.\v\ 2\ 4È\99Ï,w\90d¤\8d÷ÒjW\11ôX\9bÜ#\9d»÷\91Ö$\ 1á\ 1å\8aÙ/X PPÝà<\90%\10£\8fØØ\0CÖår©órA\96~\15\rw´\vy\U\80TEª\98!\8dûlQ\90É\ 5)\ 3Ì\94P°}_\15\ 1\8dMî\10D}á`Qd\9b\9c´¤29\8e`6DT»¨(H\0ÿ\fR\8ep'\8f\9b[}Ó\86doøEôRÞ\81\v\87
+£ÔêD^\18<h\10~Ù\935\888/¸íÄf¨Drze\87\1eY`q#-\ e¹\88ØC\ eÜpv6\8eé\9dãü\rút\14¦ä\8ezb-¸~\87\98¤\9fs\95û\1e<ö\96\98«sb\84¯¾ò*\1c>zl\1eñç:5\82£U§fd¬èÔ9;£S\9ftÙ¸¤ò¸¤ò]'Î\16\81RBn©Sóu¢S#\81`éÔØÃëyþ%ÚEU\v(\9eÀÏ9\8eõ<Æ8¿ãûuê\1cêY§îrI-Ç\9dvoýF\7f\866?û{\7fÞßI§\96\99¤r\96s1ÊYN\9bR\94\96I"-\93DÚ\94«ù<\15/®=\953\99I*g,â=\95³Z³y\9e\7fÉ6àOÙ\ 6ü9DZ\9eÇ\18eíÉÀæw|·N\9dÇ;î¬Õ©Y_*ÿ\18W~vvg¡ÎÍ\1eêÔÿβý©NýÒº¥ü\ 4B\9e½í:õ\17\17îS\9dº@Dbn!$L\96Ñýý_A\91<\86|MbÁí®×fIý¾,À\8f:ÈÏ\10p"U\86\vÐB\18íÅX\8aعw\81$É\b\b\97\80;ßÿiIE\9c\ 2ýÑEDB\fÊG\15\84L\1c\8eb+\92I9\88\92i\93\15B\7f\8c~9\1a\0´\rîÿ\ 6o\97\83(\ 5\17r\89Z\9a±\93ºB\88´ù_ÿ\81ÈZ×\9d\b]¿"h±@F"Þ\v\88)\12\18\eØ÷¢Z\12ѬõÇ\ 1\95Í$1jK,³\8d\89D0Í¢ôÁ!Ê\94¥\17M³&Ùr\ 1
+\ 3Ão
+\14oÔ\87bÿ0~¹ N\90£\ 6\ 5\89\15J;Pßikà\fuI0[\12>¢4(}\96è%\8bý¶\11QG¬\1f\872P59u\14Z\v²¥RÀWT\8e\8e\1f1ôo\a\99\13\85\ 3ðrE9\96¼îû¯ ²\90µë'©\8f$iöú"b\8e³È«æáQ§\b*\87 t.\92gÖ!C«,± FTáMùµþÀò!@´\13\9aø\81ú\18²FZRfEY \8c\ 1\8eÛC¼2\8bèý\94\82\95X\0³Pèê\8fMÜH\86\84R\94\aÃ\1c\r\11\ eÌØ%MÓ\e\81Ì\1d¾i¾u\90:·B)p\86MNbç[ÈÕóÑÐ*ê\89\1fIõ\9c.'\ 4KÊ\1a\vÿñ\9f!"¥;ÆÞÌÃ¥\9aD\8e\aÀ{\85.y\88£
+\11·\85ç\ 1J`\88jÖ¡
+ÙÇq\1c\92±Þ\89\ 4Iê\ fÓö\ 5\86\ 13\17k8Và=8OË×!\91\8a\18\b
+\90òµ\0fM\90l<BÁÉk`}\ 2s6$V¥
+ÝN\8c\91Ð \86ȧ}$p~\13B\10\1c(¡\0Gíïg´a\97¾\83@ëõÅ\ 1\8e\9e;(â#ü¸\v2Øú\91V²Åà®\8cð\9b<ÄD\fëÊ}°±a\18~Ó\ f\9a\8b¼]\12oäë\ f\9eëã¬×ªé/¿ôý¥\97®ÙY\97K\85\ eÎ\0\v\0â´\98!u£äÇÐù\0ÑÛ\7f¡\98Å!
+7\8bíö\17\0ä¿ä\94Õh\8aX\8f¾þN0{i\ 5\fÍË\89ÈRW\84ûºs¢~$è|\92\9eÅ
+hHæH\18b¿P\1cÎ\ 4à yæ\10«Éóµ\8eá ý²lb\10Á&ÊШ\a±x7yB\91\12\1f\96´ØÄ"\12\87±3(Ó[lÊt\fsR\12\98º\16õ\DÜL\88\11\rQf/\17â-âòV\e\86Óp\8f\ 2p_å\9b\ 5¹¯~#-þ:\89®1\1a·³;T/ \18\9fC\11\1erëÅÕ\a lvòÿAìCÁýÃx\92õ0²Y<]Ú\0\9f@\11f\M\1eõ\80;[\80=ÛQ\1c\0\8at\ 3\vÄ\93úG÷í\13ç\15\ 6\1cÉ~ýZ\92^uàdñ|)Þ,\119/¥oåÒü¼b\91DÝ7W©\908\8a\18ûÛAå\1d5'\82L
+v^g\99?p%ºHO\11§g¿þݼþ1Q\8cÎZÍúâ¸\14)\11`\18\9d\8d¡F\82^Ã\19&r\97¸ó\8a$³\93\18
+3Cyý\89\19!\ 3õ\82A\17\ 5Ñ=\81c\86Ü\ 43:jà0·ºOÀq\96\9b\ e\95\9b`\19Fì÷lãò\94¿\90\a\92£%\199Í\10£øÅ\v2¡\ fZhð\9dà\17Å\1f\92Ü\ 2L\1fä\9fp\8fÀH"ÒE\88\ 2XÊ\1d\1c£\9a\ 4Î\8cx\90d\11\92\985g»~a1oº÷\ 6,\83~7\83\11\89ó\ 3Æ\97"\91åÕ!Ä;Óø\82MÝå\ 3\\80ã.i\0'\88\964î\1c0¢v¾\9dn\96\88°i06¼"LwPÿê;\1cñÓ\90èWb#ÈÕ »m\993Eñ´MâUÝøü©®xôót¾G^|áU#yðÔd\9cÏí8\ e \80jÈA¨»\1ar\18»>\r9'\ 3J[ª`[ªàf\88YÏÃ`Á\8eÅ\90#ïÓ\82#.XðCá\15+\98ZX\87D\83:\15àø\14~¯¸ìÕ \83¶ç÷|¿A§¶x6è4Ú\9cüµÝ[_´g\15@f\7fïÏû;\19tdFi\19@ªÍ²\fðÀN\8d\\8e/§\90?e\ 6ùsjöëy¨´²\ah\19Щ¤iÀA´[¶\81®®{\e\93Ë?58ÞE?ö\84ü^Ὣ\13ÆþÊV \85`~Ïw\evÚxÇ\9d5;5ëKV\1f×ü\98\9dÝY°s³\87\86\9d\7foùþÔÀóÚúù'e>ØÛnàùâ\ 2>˱v\80\86\10÷\1c$ø\ 3\99»¿;5T©ì¼¨î\80Ooúsy;[\1a\12º$éÈR\13<N\8cÚ\ 4ʰZù\r\11~\97P\8a!"±\96itb éz\99%\11+\84iÃ\96X%½\b¸f]\82n"\1c2è\ 2Ø19P\ 6©(\11BX\r\10«¸\8ej\11¬²\e¾\19B\8a\13]=AÈ%1\ e©¹À\8d\86z¸\a\12ÐKÔÀ\80\86phäùü\8cÙP>ú³Ð·üFí\97ß!Y\8cb\11`Í\12CC\fl\90j\99\8b
+\89ØI\8d\91\83\9e\ ezl\r\11ÕÏêQ\16±kµNª¯÷/t\10@w\1aâ½#K,\e"Þíñy«»±&ö½\83¶\ fq-©¥\8e=±S×î¡B:Â\ 1t\97]÷ãÈò¶ûJ?ô·%Âøã\183ë\88b\7fø²ÏÓåño +\80i\8c©¹\b\9f\85\19lIJ\84\8bçìÎ\1d°ñ\837\1eá\87O:\8f câÐ_µùW^üþâ\8b×üßK
+¶;\ 2\90Nº\16À\1e\97EVâÍ\12çö>QGaÀ\ 3\18\84¡©
+}:X\83\82M\8b\f
+ïÊÖ\ e\9fÂ3MÄK\84w9Ôô@\9d' Ãé'\9a<\1fa0Hr\971\96\18È\87´ô\1d\89T\ 6@Dü\17µ#X\15û¤33Vy\ eÒÿËNZ¼i\113@Z\v\18QSk\83#ú"8\9dá\88m\1dª¥Í\rêm£ÚCe¨^pÝer\9ajD\9735h\98Å>Ûµ\84áZ¿Õ\9f¡\19\16¿¨v\94\86MXê\88í\98T2\99Áw¢\14"°4à \f1£\82<8ÔêP·Ù\9dí8*+°ffneߨsâ\10\13\91\83ÔO5Ó9·ïõñO\99Æ+\1a\eO.Ìiöø¥¾KüØ8cQ®\ 2Ä\83Ǻ,\11â\85[¼úÊ«\94ñè±y\ 6¿V\ 2>äc¦°úã\989¬®\ 4\9bÄzÖ\96\92\11õ\92\11õNºW±x\Ò¿*p|¯*p¡Z\14,\17\8f=\eöXé|ü
+\1c\7f¯!N8àù]\7f!¥Õ¥ã¤ÁÅ~\9a\9bwõN÷\8c|î'ù¬³Ç÷/ôxÎh\95i\95´HðF\93\17éò.zg£\vg£\vç]\90\9f\9dPÌ\97m!Ú\80L«h\ 3¡\1eV\e\bmK°\fme:\87¶R\9dùÛæj\1eV\e\90m!Y\92ó»¾=ÅÕ\8d·ÜYÀs»¾~á1úýêîÎê]Ú=Îpýw×ò\8fS^_[L\b \8fó]ÙߦÝ}y5?/\0ϤL?r÷Ô\81ï \815\ fwɤ:È\97ý\ 2æâf\ 1ôp\88Øf`\9cXL[\81ìS½ U\ 4)
+\1c(\9e\8e,UXtYlÎÒ\0ñã\9a>=©\88\9d,X@\ 6\8f\8a=\eåf`^u\88Y'\88å¢áiX\1d[Ø\1av±F\8a+"|µO\ fiA\ 2 )C0$\12\9b\ 1&éÔÔòMô\` ¶O¤\e\ evÖ8\86V¦©uÃ5Ï©,\14#\8d\ fß\ 1\v\9f\ 1¦¦!à·4" i¡nCCtx¥\ 1ùD\1d5º\fµK=\a\95Mà\8e\12¼\94JKEZ¦C\16n*ÑÒ0 |Ú\ 1§¬i\89 \ 1F©Âµ\9aR!D\81\93²Ø¢\12\8fÕ\ 1È®RÓÏ\fìôNK\ 2§J\97|\88ì\11\9a^£ÛcÐtuX·Ë¶\ 4\ 4m¦\97§BÒä×\ 4Êp|\vtõ$ËÓ©©\89>\ e)\99ê8Ò\9f\93x"àüo1ȶ$\8el\1fÕ\81\0ã¬[\95\99\18Ðÿº\1eá¤K\94*¥ÿ\fA¼MÔB\b{\8cƧÐÂR\1a\1c¦\ 4\97N×'?\92øÍÖ#ï\80ô\óÉ%ï\88ÖÜ6\87¾#D¾:\b»\96\16CØhp+9\ 2»Xj\84U\ 1Ó\8e\1eÕ\aÇrbèp½ZIøÆ\f\8fCÈ\8bÈM]\15\88\egË\ 1\vTd\1d\8a)Â7É pÈ\ eU¯#âpÉbð R¶|Ò¸ÕóðÆÎ\96ÁÍ©ìÃ¥Kµ\ fÜiYo\84\ 5à\a¿0(æ°?P$ q~\10\1eÎm\89\14cTZ5$¨VA\ eîN=²l\rCí,QÞÀt\17¦m"¥Ý!\b\15ª\ 5\18\18ÂY\982"\83\8e\ 2\83Â\1a\1cØS\r%ç²uaßc\9eßîôgE\80)N»\10\9d~ÓÕí\8fãôÆûàá\93\8e@VO\1dÿÏ_üþâ\8bï9ÿ\1dð\89%\17\ 5þf\17¤n{ £\99qù\ eÁdä¹\bÌ×\98u\7fÝ\88\83ö¡ÛØ1¾~µ\84w´0\1eÝ\83'd°\19\18\1aÀÂ\18´R\12\93^ÈïûT8\89xÑóbOÖ"ö\8d\1c4Ù»ê d®\ 4\ fj\8aRùÏÒì\916TxÁ(¨ô\ eÓ\11\9bñqÙ7¯Ð\ 2ËzVl\81C\90þ\1e\98Ð×£\11!\91oÉ\8e²\16¬¶¢Õb<%\aa\85i\ 4ú â"\88
+Dô\a\ 6¿Á\15Ùïnì\9fP~\8a1\16û¨\92\84\90'aì\rÈí\95\ 5\90\89>ÁP-\14ï«¢æs\8c"\1dô\ 5=¸\ eÄ[¦g\97\85yO\17È ñú\ 1\8f§Ù´LZ\ 6\137\0SúyMu¶\9få%¨ò˧3\15YG\89\90\1f2Buú\ 2ÞírqÖuq6¤OÉ7\8e\96PóÆU\8c²Î@^0´qi\83EmT^ð·\8d*÷\ fn\1a¢nE\e\f°É\16nÉ\16@\ 4\17yeµD\99^\11\8b\12/h®N\154qZQ\8aTÑ%UC\18a}\8abpëÜ\7fD;f`\83¢\'²T¢ZaÊUü\1a4\8c\bÁ'Y fK\18rU £5¨m´Mô[T'ö0\8a~Å7õ¿3\92Ã\11#%\16åäpöÿ\92\81\vh7\82·ÄÚ\87\ 5g Ðåi¶L{\ 5\b\90¹¸à«m &Ä\9aÂ4su\81\17\8b\vÀTf\a9äL\ 2ÈIÏr\920\17@¾T\88ï]\ 4\9f·\8f\17è\ 6K\e÷\14o/w¾Ón\e\15fè\14ªp\92ÌÃ\f\80NÀäÞã\9fß\e+pâæH!Ò5ºD\vL}äÑs]ÕA\1dÔÇñ\ 2Ï_zU\82\1e>÷JÌ@v\v=-&\ 3\9fæ7ü´\93\9dg\9a\80\869HuѳÕÈo jì_MO|¯\9a\9er´8jý(Zl\ 6ùSulþV\1d\9b¿×\90V'\1cðü®¿`z\8aÇ\19N\r¥0û!=#\9f¡á[\86«ì\89éiöøþ\85\1eϦ'\99V1WİAr¡À\94±\rðÏaÅsÆ\8aç6KÃê\84v\bÙ\16b®\90i\15sE\ e\16\9aË\11\ 5eu2°uøT\9aÀ\eò{\riuÂ\ 1˶\10sÅü®o7=Åñ\96;\vxn÷Æ\18À\87¦§ÙÝ\9dÕ»´{lzúw×ò\8fMO/.fx\ 6µÆþvÓÓWWóidAB¬bcè'ªæ z»K]H\17Ô±IuÄMHâ³êBÝ!\90\94¡\8b.\w\80dÃ\ f×ïcd¼FÎ:îc\86\89:$çª|\90\19ÈW6\1aê\96\1d\87,ÌFe%î\9b¥"=\80"\12ßÃ$MªÖ\ 1\0n\ eXï²ù\12\ 6T©\91\bn\80\e\929$X~b\16$\84ª¥M\1cP½\ 5ÛxÒð4CÖÅÖ9[\ 2è*8\ 5'`]\98®ñ\ 4\ 1)\12ô¶*Úl¢dÊ\88\ 5àC',0P\K£¢\ 1$7ø97Ú1\80\1e,\15©1°\9bÈ{ÄL\0ëK¿x1\1e?°°\ 6\rO£\80\18\93\85WC8ò\18\9e͸K.,£i¡\bQÔ\9a_xö\90ZU\82\9e\17Eç\ 25y\ 6-\ 3|\17\e\aÔ\84òuüÆ\80L\vö\8a4$'YÕ^@#\1cRÅ»Ø_\f\r£\f¨aI\ 4ÔÕ\12\96¡i]qXmäÁ\8f\ 1\ 1ÍÙQh%T0\r\1c\90}\91ôâ\80\9b \85\13ùÙDxÅj\13U_`4"aôØ%\ 1¤\98ÿÜç\14³\e¤`\93Ø`<ç\fÖUÑ\15\a\8dÛ\ 2¹\14.o-á?¦\95Ö\ 3\ e Aü\azp\90\8fvI\10öua\15|\ 2Èî\85\9bª\8dRqýë\ 4\8cÙÒ Î\14\91Yw*¥\92ÛFedlN²\98çAaÝ\1d²\81\9c\14\rc(od5O\ e½&\91lPñ\r\ 23\102R¢\8e²ØÀ\95aÌÐ\8fdR\81\ eI÷\a3ÁNS\95S©\9cù\90)²×*ÐÍ\·þÆ"ÆMÆ$c\°Z\14õì\ 6ièÊh\b¤ÃÆe3´(*\væi£\86(\16\CÍQ\1cä\1c\90`Ø9\82+6Ì]¨#\98yÐ0 è\18\8dÖÑÕ2!\6ª\8aÇ÷XZ\89ÓÈm©°ú¶*\ahR\81ã_È$\18SáÛ6m× þ\16\93×çõ\v]>\ eÝT\93ûm×Ú\eï¡\87Ov!¥W\v'Þ{ñû\8b/^[ôntLBuSa|GCظ@È"Å@o\1a@Û\909£ \97\9b\88;\17®à\16W\0ÞÜ©a×\11\15ªÂ\151¬;\80ÿ\14ÆÐ8e¨Ø\e\aLÅl\bO>\8cm°\8f\89G\ 5üVb\8dP\91\845Å\98ê\86\Ë\ fae9H²[\11ô\8f>B$Ê8¹Q.\1cxÐtKgÍÏ\99-Yj\94ùx@\86\87û\87S\13Äl\8d~p~\7fÉ\84I
+$-ÜÀ/½ 5{Â^ÀÅ 5 \1d\8b\Ðe\85\9bÂÏ»Ô1*\12¦±ë}V×}\86\v\9f\96*Ó²ÆqCÂÝ\85qX\9a½K\r\15Öf\ 4©ô«PÂkX)øàÒÀ5Ê\e\126!äÃþ\92q+\9eFVTY^\0©ÐÏQÂU\82\184.N\18\102«eß\ 1º\12Øp4\r\13p\\07\13î? \ 1\ 2þI¥=\1c¦?Ô6è$7¥¡"\15¤\rmÊM\90¦6*e¬ÛF%>\91çóx\8aÉ-QPL`oü \9b#\84OÉ\bù\90]ÊB\9dLÝ\bí\18¬» Àr¾^\14\83¦"ÉÁ4OÓ²Íó\8a\ 6`\11K\e7\1cï½ã|\eÞ6jmR/Å\ 1\15ß\ 1õ\9eÆ\1a\16h¹wÞGQ\ 4Þ D\9báÝëà\11£\1cì\ 5ç_M\96\85¢Dc9pÚ!¯lYi\1f"\15±`\8dmIW_T×\9aCÅGK\eW\82\9eªÓõqÛ¨(_ ¼\ 48V\91\83\84s÷|u\r\1a÷¡\e.¼Õ\92ÕKc\19=RdY´qm*{:]±·\8d\8at@Þ\Î\ fó/r\1cQ½ýÞü~\83¡ìÓê\83¢\eÈ\ e\1fûìª\8d=z®+fñq\9d\81/½ôª²=|nò\87¯\85iÕ2ÁG»09ÑG»¼láG/\86©l\94çl\94ç\93\99«¦à\80\9b ¤ò^µ\95uNameÍ[Ì\15ùS\8d\ 2üF\ 1þ^CZ\9dpÀó»þ\82,ç3\1aiì«Ù7éq§á[Îé\19\1céêñý\v=^
+\ f¸ méºÂ`í+¹ìÆ\8cbÌ\8eÅ\98\1dËn\1ai\16àR·\85ØWdZž\82\1a5ƾÒ\9c\ 5ô\90?u\8bð·n\11þ^CZ\9dpÀ²-\14Ì~|×·ÛÊòxË\9d\ 5<·ëë\17\1fc\94®îî¬Þ¥Ý\93B\ 4ÿìZþ±ìµÅTïõ\ 3[\19ûÛme_]ÍÏô
+â\8dÄÛ\86úß]t%ÃM\bp\88\86è
+Ë%K\94V\95X\KC\10K"è÷F\r\ 2\82ç\90®ÝÄÖ\aÐj\ 4k\14T\8d\96H)¨\9d\81U½QüPóé\ 1µÆDý¾\9e\85\ 5²\88º×_\84"뤢\aA\ 6µT ü)\8e\9cR\1d2|50\ 4i¿\ e\1eVC\ei\ 1\18ü¢\16ÈÈ]¢`\8f¬/ÆJ\ 3d÷þ{аsÃ\8c\1a\18Tìáè\87\15h>_\13{÷ò\9eä!,\1a\1aAÏÅJ`¨)K\12\7fï\11É\ 6b\vôý¿\88i©¸½%\8e(\12\98\8cÓÙ\8e\11\7fÕ?,'\893Gf{r\84éôQLF\ e\00\84»³k~Ý\1cß¡\93C\18CàEWp½@¶.y¡öõ\1fó¢sµ\1d\9f7î÷\87O:)\b\87l\8a\93Nþâ\8bß_|ñ\9a%s Ú-á¤ßßÛÖ\1dTnÝ<p)\aµÓ\8e¹MQA£\1f\98\8df¶î¢² sfË,A\82ðÉëY0§FiعΩw\7fR1 ìC=·H\8dqmR½ )Q±Jr\1a\19§\0"\9cþ\95\87¤NN\80\92\93±í4Ë3&5\ 4ÍÆ)D'dÈ%j°]v¤ÒðtéóV]ÝZ2\98\88X\b}\ 5ZÅ\ 1C¶¾;$Ñ\1fþ[&ãõ\83shä!BCB®E\ e\e\16\v\84\86xX\1cY=w\1eEÆ\9dX\9a=´\86\8a¤\ 6(C¨\95Ý\98ð¿V÷Îîø\ 6pÅ Á¤]\ 6=íU\80:È\1e\993u½\9d\1e=×¥\8eÃ]\ e×Ë/½^a\ f\9f\9b\93óÜÉî¥ü\98(\ e-O\88E×¢ÅX<KéS\80\1fÂü\90$N2\7f´@\8bÒ¿(\ eò^-Ë\ e;\83©r.å\8fF'ò§HHò[$$ù=\87d:Á\80×wý\ 5Å¡¹3ä"Ü\r]]¿×ð-ÃAñDq\98=¾\7f¡Ç³â Ó*Âf\8b\16À¯³\83M²kÁè`Áè`a\97\13£EñÓmAaS§\95Â&Ì FØô̽\9b\9dÈ\9f²Eä·l\11ù=\87d:Á\80u[\88°9¿ëÛ\15\876Þrg\ 1Ïíúú\1d\8f\81\18WwwVïÒî±âðï®å\1f+\ e¯-&\82\r\1f+\ eìoW\1c¾º\9aOK¤\1fdë@²B\ 1®ß\9dÀÀ÷æ\fÕ\1f(\K\ 4h8àbA\1dÑã\b?%\1a°\v¦\8c©ï×f\ 3º\92D{òúí\97@[h\80 ²jç\91\96\86@Å>p®ÈFå\9bo\eµ¢\0\1a6\1a\1cL\f\1e\8d?3«\1f\80\82\13\bý\ 3\ºP0hmà}9'è\7f½·6ª<\ 13Ë#rÜÐ\88¶,&EK\85¯Br\91\r\15ÕIYö\1c³#i$R \f5Ü\8fXÍ\9f\1f}Za\81L¡ÙF¸2£è%³3C\e¯Å\167T?Ò=,\95ÖSÔ@î\7f\ 2Ú,ËG'\b.]~ìó$\8eã\83
+\1d+»\1emú~\103\88¬\89N«jÃE~D\97\822h]W)\8cñìÿ%jß\aÞ]\ 6\ 4%T\94\80rYΡFÄ¡öV\80fY\12\9c\13\95s{¢Æ\83!¯\96\9a\80´\8e{É\ 1D,\89±Ø\89\13½\ fÈ«×\9a[¯1´\9b\13̼UÙ£\rÅÞ\ e©\8fX\11ÝËÛ\86\1fþas\16P¨8\12ó¾Ï\16R3\98 4¨þ\80ùTÂN\8bºë--C÷`\ 1÷\9d¨Ûy£fñ¼tZ\1dA)9HÌ+\8f!<®?$6¶y\163\ 6\9a\84¬8t¡®7T|Ð!iStú\96\ 3å\85åKÆ\9fx\10Á¿ÒÝjÄZk\ 2ûE(\89\9dÔÆ\f\9d¨ø¼ÛF\ó\80jk\87dçÌùÚ&\15ó\87\83åÄ\ f\9dçªñ´\93Ê Ðr~ta\80ÙY\1aìø\84eÛ¨È\1f9X&ÞP=\\83\a¦
+\12<µnDØ\90wËXÆ\9f:Sâc[màE\14ÔÕÕ¢\8d\97r¦\16U\axÛ©óSà o±l\9f¼ÍË·xÏ= \ 2«¸¢\eìüSàïÇÍëq\9b\1ci»¯ÞxÁ<|ÒI\9d\94c\13GþäÅï/¾x\1dà»\ 5ç\ f\80\1aJ`Ó\81ji±q\975\94r¡\19\ap¢^xI\9d,\14û¥º\8d¶î\83\8d:ï\ 3KE\1c\ 1Käumñg\9f\97,.\13{\1f\8c?±Í\ÓÜ\84IE\82¸\Fg\96¶î\83\8d:ï\ 3KÅÞe½B\ÓA¢ÎðÑÅcï\ 1ÜDh\98\1eeÊ\aB\13\8a\ 4uô\v\r(G¼AÇå\eàe®\emñ\88\13\95Wúm£Æ\88`\ 2L\ 5\107EF@p¼aÊãOL\ fª¦k|þh\84«MW¿w&×Ë"\8d\8b\84·¥?_:·\8d\8a,\8e\8c\ 2ä¸ÛôÒ\0\8e1\86á `"\89\8c\18=\12u0 Æ\eMÝ¥ðKðL¡¥òÀ&Eá÷;[o\0IÈÖDØÇvUüÞ\88x\1c`\16\9ehB~\84&Y^:þĨ2\80 \aL\8d6BI"aÌ«³E3\17ÔF\9c\17\94¡ö\8frøÎ\µ\82\13-½æ\86\19\7f~\b\ f\17#Új\ 3ÃÍ\80ol(qÕç\ 4\15^é#&î*«L\1e^\8b2ñV#üò6OýÎ\83©æ4wóvºÌè\8d\97\8c\1c+Ë \7foT¼ÔË\85¤°Â#â·kaüÉÏ\v\92\84`\e1´@®\98ÙÙ¢Ù{ÁPͽ°¨QÑRø\1eÅcEv²¹\17Æ\9f\ö.\12°&\93i´¾lufæÀÜ\97×\99ù\ 6H\92,\f\1f.d˵¡\ 1ÀS$L`\9cå\8bbôS\12Ô?\7f¶ëI 'Ü_|Þ/½ø¢A=}ñâÏ_ò{{)¨Ió\95÷~\ 2Kv\86b\91%/¶¢bôÙbôÙ\93å©YxIé_ÍWR¤SÌWÑY|I/¥ýf'1L\1c\ 6ùæ+)88\87´:á\80çw}¿ùʳDÓn¾\8aHÛñÑßiùÖ\ fë3\88ÉÕåûWº<\19°tbiôðÐ\99\96Ñûº[\18ª±\ 5Vc\vܪH\98NhÍ\90\8d!F\ f\99X1zÄÃÂ\152¿ÜtÂ?u\93ð·n\12þ^CZ\9dpÀ²1hôXßõÝ\ 6,ïÆ[î-á¹a_Áü\18qrõwoý.\r\1f\9a°þáÕüS\13ÖËËy<\ 1 \94\ ew\eÖ\97×ó©\11\v¸\17\92nm2E<ÊM»F jP=ô\15Áî\r\92 ëá\1d\12¡\19\11çG\8d,è\1d\8bĵubEâ4*\7fÇ8 ³á+A4\9a¥%U7ùô¤B±\86èBX\11\898,\a ¯\ 3Æ\92\ 6Fõ áá\f\18v\1aVVË\ 2o\14Ù¶@6`\ fBë\16\8f\e±á¥*8R>¢àÐ!I·\11.Ý#mÙ\1dbL\0ê·\10\11ÉÎ\14\15©\18\ 2Í\0\98$I\ 2@\80Ì\rLLN®\94d\9f´>Ì\0$êÐ\92m\19\10~\19%K·KbÀ\11ï\12\ 6j¤H60Ó»+\9fvÉä\12CdDË2r\96\ 1A\81ü\8cNC>uÑb*¹\11²\9e}\8e¼aT\1cÇ^CJ®c]?Çj<¸è\ 25\9aX\r\r\13\\91÷Mïçl\89I\97ÈÏ\12\ 5îÝ3ê\16ÁtT}\1a\ 4aÝ\18úÙÈ/¢)\80¥ù$DîPü7Kó\8a\86\89Õ٨̷¸mÔ \ 54ä=i \ 5°¬\1eG¤\ 1¼\10ûa\97ÒýB\93\ 2\ 1FY%\95K«i&#>½O\ 6N\ 3m,+\81¨O%\ 2\11jÙZ\ 2R$\8ao\ePè\ 5\v\ 1Ïvd`w\96¨o<\f«¥Dj$Imê¤<"ã\ 3Ê@¦²Ñ`3v"\12ïT\16¢¹Y*` \1c@Ðå5\85Á\80}\ 6\88\10ÐÇS\15 \ 1\9eéREk\f@*\10@\1eÔ3\ 4\87á\16:\18
+m¸À\95_\fC`\1f\bìÂ\9a\eD!\e¬¤kĪ"\fj§\1dR\84U¢È\vùAE\ 4fUK\ f]Õºã´ÚI\0¬¬ÃÓ\9d9Ä\1dà-n¤(¸9¿þÛ¨\90Rźe¨HB\ 1R-_#\98¥\92ÍCÎQ±\8fh\9bv\0+\123"\87\9e\19V\80¸~ÚV\0câ%]\1c»¸ðV\801Y\82
+\ 6\8d{Æ\ f{÷j\89\9a},\83\80\9a94\f[\1aJ\187bõoÔ$éi·\8d
+\\89®\ 5 ëèó»Múuuþr\92Iÿ\94úy\92 \1cêr\87=|´\9f\ 3\1f^Í2¹÷æ÷Wßü8ÍÄ2\85\11ÝË\8b\130\1e\96È\eHQ\81е«d\9aqäÐ\ 37\19ê\ 3ö\16¼Þ\88F\97ÒFÔ8ðkp¸"fmK\e¼\90\1c²\9dùæm£\ 2Ê\0\80q|\ fó«è\96`Ô¿G\1a#¯"\86°×ìåF-\ 4ÿðà \92q{¢6\88\ 2zåëu1hÜí\9d\ef¹\82fK\9f\14c\85h¯\9eW\154ì,å§j¿Üª\88\83\ 4é/Úç\ 1Å\9eO7©éÑ%\80ÎäÉ¥\80µD\10MpùLì ¹<\ 5Î\ 25Î\10ìî© \89/\ eAdç+zÐÈvÚOºúmKì$\ 5\ 6 \92i'Ò\85\80\9f \1a©0\90Ï#\1dU\92$A\r\85ÕrHM1*¸6\v\8e\91zhqY\18~)©PÒʹ)ÊÅEâ\194î\98ªÕ¹MK\ 49©`U¤ôÓF3ÂÖ¢"\98 ®Il\rñµARã\vù\92\90Y \ 5þ\92#Èu^\9c^\94\b2bå5²ÑC\8a\90\8dHy{a¬\84\11\ fܨJ_Ûj\19ÒJtì̱Âÿ¶hóªÃÖØ¨¼\16o\e\15a\9a¼{ñ\85Y.\1fÔH¡¨\85+\87kK©\0É\1a\1f²Û\14*k0\0\8aUYR\98æi¾sìG¶\89áù\8e\8e¿ÃÉ\ 58\85¦A%\9bÐ\92Â\87º\80Eæ\16¬Õ\ 3ò©Ê(HD\16\8b¸sRB¦Ó&pY\1fá\81ìxK\ew\1dwb<ß\8b·\8d\8a\\1fà É{D \81£\ 5<Qv|S×R\ eºiúñ/\8c +\ 2\ 4ì\ 1\93§77d\99Óe3H<\93}+xÂÅ\86(Ý·W\13@\1dK\e÷\9cò\83Ó\9dxÛ¨\10¡}åºåá»\9c3~gmþf¦\8a\97|½O2U¦úöèÁ®\1aºk~åËo½£4>|ðµ\\15/\ 5{Åf×WtÚìb²\90Â\17\ 3Y0
+|0
+üÉÜ\96,¤°ô¯6;)\ 2,6»\9c-¤°\97Ò¡³\13þ©\86 þVÃ\84\144\9dCZ\9dpÀó»þ\82Í.\86\v¤0\12Ù\8eØê\9d\96o\ 5lé\89Ínvùþ\95.Ï6;\99X±ò B·±òĸ\9bT¢1\80Fc\0\8d»\81&Y ZÝ\18bå\91\89\15+OÎ\16\88Ö\93Q¯N\84oË&áoÝ$ü½\86´:á\80ec\88\95g~×·Ûìâx˽%<7ì+è\1e£
+¯þîߥác\9bÝ¿»\9a\7fl³{q9¡\9b?¶Ù±ÃÝf÷åõ|j³K\89ø+Ö:×\97\1a\99ë\14\85\8c¶\8eÔÐ\18\18\99î\8b \85ö«·K¼A$Þ\0K ¯õØúý\7f\88\ 1\8aNÁ>4@ÙJI1\18Á\18-fh}ɲg:²¡\ 2úù¶\110\ 2\84áó\r\ 1ÉÏLpï[,b,HI!è \12<
+E1\fº\12\13\90\98\93\89\1f\82\80yM©\1aÆ\16 \96\8c2Ë,\ 3`\ eʨ¶% 4ü¡\90e\84\ 1èú:p\14\8b\96ª$\8aH\7f:{¯V3\f²0®,\ 3ÌU
+tbd\8cA1´\ 3">a v*7÷$Ðq\ e\80\7f¾¢h\ 5â*Ú\e\as´Y¹9Ê<@r\96ücÂ\ f@ÖÂ×\11yÒ¬ñu7L\8bÌúß\ 4aÁNéR1\87¼¨}\82¡c14\14\11E°\9fqÒ%Õ\19rb×@(\91\ 2ØE]÷H\80\87vã\ 1¯\12\ 3×ÑyµA\18\9a\99¢\8d\8a)Z\ 4(\7fG\86\85\a¯H\ 2ÛÑÅR&Jø4\92Õi¹dê7\ 6\ 3±\9eÙZ,6\ 49\1a_Wr(Ö¼º¶\8a5Ä\12¶@JÓ®\96%J®9{L@4òÄ\ e\90²%¹
+\14#7\1aj2VÕO3Ð~;\r²\19ÏV-\1aFbhæÈ,ê\98\87Eppù\83Eá\151\ fÌU¢3z\14\ 6dy%.Êádß&Hm,ë\89å\v\14yñyRzyòu?|¯\11\88\11XÖ\9c\92aË\8c\9fØ\80ú\1a¾ O|ô$\8aTµ'& ¯¼÷ýÅ÷>1\0ex\97*\17\fÕÈ\1dAvQTYë´Ccgê\_\9cÒ[úM\8f4Ìké\91};{-ÖnZ\ 2\ 3Dm× \90¢Ø\91.i¥w¼\9bX7xú\0:\91À@õ7\8aÌÌôÁ\81°E8\10K;äî\9f\84¹Eo\e\15ia4ßð\15\12Ë\ 3ÿ\f4G\8cå \11±ó\8a\9cK\80D6\81ùÔz<ü8 \85Z\9dß0/c\1dÀ\84É'\9b\96Ð2)\84 Gºy¸\ 4¥é«©\82\82\85cnBQëÉQÑÎÏ%%l\93ppgx5\99·;³ôÛFE\86\e@Ñù\ 6±ºà°ÁèÿãÞn\98v\ 1Ã}\865 ;\ 5~
+ A\19\e\13îp?9\12ñ\88:O¹\1fåz¤\80j\9f_\16\ 3&ó (\12\80\86\0ÍRN
+ÈS\980\16M¿r#̯4T\a°°Ê}WÆ\17\11!5ÊP¤z.LÍÄwâ\850Ð~ÁTB\92ë¤\b°ÆÂ\9e±Ìg¡Ôx`Âèö^-\11ñ]Ê\bj\ 5/\83Ç\8d\90\1dxsj\87ì\13TP\93|¾±ß:-M>
+d6¸Q\fMga\12ì\867TD·@.ñ@Ú:hûB,K\10&\9fF¤>\1c:\87^\8b\9dÍèîNÀLm¼8`\1e¬û\12_7Ã7\1a"p\6nFð\99ô\89\1db\8a¤\ f\9eëÒnq\ fÍ\10_yç\1d1øÑs/\1a!À\b\81üø\eY,ò\931b\12[Í¿\11U\19"àpQ¤Pþ
+\92;\ 1]'IÌ%~"\18OCÓõy\89:\9a8¯|\9d\989è¶eÕC \8e=ÌóòWÂ;ø3²°\99ü\1cãXÏc\8có;>½\93³ÿâ\86`U$oг\9ajý«¤U\17+*âåÏí~Ò"ôÖ\ f÷9ÏñÓNß\9fv*ßeL\ e\9cÎ@\9f \90ò\b>\88¿\1dÀ}\80nO\92ü\95d\9dÊ\98Cù /\16Üõëy®\9al\07Ö)\12Ë\10f\1eñíse\0È>\9f\97¿¸\17øSö\82ü\1cãXÏc\8c²\ 1B\90\f*ùù©Nú¥#\fc\1eN\84_&9\ 62¢ç;+vj·Vl\v%yÔé\9d\15»´ÃTíV\86d¬\fÿÌ\ 2~ͨð]KØ\85Ï-§-þ@ñ\98{ý\ 2wÿ\ fÖñS<\fx\0 \8cÖ'\10º\94\13«BÑÚ~\93\b¯Q\85Ö×Ið\ 4úfI\99áÊYD\r%F\14\au4Ü\10³\81êU<\14×\ 2Ä\ 3øïM\88]á¡¡A1üA\92\97t\19O<z\93\ 4»E\90\94\93Õ\fü×±\19¢\8d\9dD~M\12d\9a a8\93\bdQJP\88& ¤$DU\ 3\88\17Á\v0&D`¤GáÿÀУ\90\16¡*Ô(ÂCÖ¨{\10»\16,r\15ðG³\12\89\15\86tµA\82×\93F®>Qµ\14CúeVc\12i³\96^ÌÃ%(n\eFÈ*\9c\96\84ª\e\81gi\12ç\12Ý,q.%^AßÐZðëÆøô\82*åKJcüñ\ 6\11\ fV\907`þå4\11æñIi\8c\7f|åv\80Þ¸Ï\1f<\a/w\96\a·\93ôÚ;ß_zç\9a\esÉ5ôU:ýý\9fYíAÄÂ\ egê$"0@\9c\8fXXU$«z\9b¹\e!:Ò\92 Îq!¢gènH\14N|8\0y4\88YW3\14ã\88\9e\87x=\ eAgï¹+v\86d\ e\8b!Æ\9fÕ\a:g¤\ 6\bÏÙù\84\ e\12-\8b?É\ 4f+TD\8däÙ@\94kTSP=\ 6\125ÏlvN\8fY\1d¯Ìjc\1e4»\89'\rÎðTeæ\18\ 6\18Pã¼\85\95\ 4M1\v\ e¢iÖæjj_\8bb8Û$Î\ 3vÛ\88I\ɬ|«ë5Võº%>?Kî+÷NøQ\86=ñØ6'\8cË\87®ÚüÂëMôÙS\95·Q½\1c£×Þw½\9f\1e<5§ä9Ô\ 5¬Ç*ò\87\18\87È\ fgð\12ùO¢ö\90ÁU\1cW)a\17Ùçó\14çã\fÛ\8f+\e!¢°ñ\14ùáT]ÏË_\94vøS¤\1dù9Ʊ\9eÇ\18çw|¿È\1f\ 6ºÄZó~£U¢\82\9eÛ½E0\93ÇÒþìïýy\7f'i_f\92Â"\ 2?\96°\18ü&¤ù´4¦´4¦MØ\9bÏË:Ç!,êL:.Q4Âb\84ö>\9f\97¿\82,Q\18Û@~\8eq¬ç1FY{
+\8bó;¾]Ú\ f°.ï¢â\9cÜs»¾X;`Ú£þî,Ö¥ÝCAÿßY»?\17ô_\= E=\93ñ¥Ë\93\8cÿÕ%üTÆ\ f\88;d\14\19Ä\95R",\91\81ñ]Í\19bH¨\0\11\8b\b\86âvY$X~+£\81,\918\17?Àùý\91©
+\8cD\0:W\10Z\15ÊÑe\81\ 4\8e\8aò±ô®\84Ð4\14ºo\97Qæ!´* Ï¡u©\81U\11â\81º;\10\e\f B+\86aH\90Ðú\a\0ç¢\ 4\95($á\ f&D\963\98¤þ$Â\1aå\8a\9eí\80>_\e\ 5\ fD\97#^°ËÉ\8dÿ\8bG\92\80©þh\819;ÊÈj\85í\b"\80Èö\87û\89át\ 1à`È\9f\12úS\88ýc²çh\83 öÚµ@íM
+Þ_iÛ74\96\9b\blÅ0ÍNê\97mÅüÂs{\ 4'¢[h´\87sµâ\10V\ 2;\ 1Üp)CÑq\88fF\14?Ó¹p \1f5óQøÂ¸F\11È&\ 5Ú\r òJ\91\ 3Þ?\16×l\9fׯ\9cÈIÂ\8a\ 4\ 5\v\9eÄ\bX\fÚ±#++¸ò\ 3\9f,à(\18\b\90Ðú£H\9e\93\98SȤ\8cSÅG÷¥Ï"\v\1eG×½\fé@%U\84\88í4&\95Þ\f1\10ó¤\8b\17ø¯\0rwq¹oHD sYÂ\95\10lJ\ê\0Øi:ø`\ 1Í\8euL\91S¤Õ\91,±i¹ÕIÄ@\81\15-çÀ\ 1»Î\92\9cTUÅ×N"T0lbÓÛ8\8fæ\83ôëÞaþü^zE/\8b(ªòF\bº¾ç§Ü\17\11VÇ¡Î5ÝøÝ\eyÓ\83ç\_á(\ f^ô²¯¿óý¥w®¹YìÑÌ&ë7öåê\\10\ ezI-\1dD0$'@Ùp(õ¾3%À\ 3nG\82/WZ)\ 2\97ll2¼¸\15C\9a\9bñ×\7f;\11»öfiN`ëñ¿\9c±\19#"&ñaq\86/ÒZ1\ e\1929hý@\9d\vBb\0à\851\ 38Ççó9H\1fd¿\9e\a\7fµ\ 3"{ljI8\12¸/ \a£ô\16Åy\b\86\ 2\0m¯\f%E8\ 3sÔø\8a\882>¼~³\13\ eÄ#Û¤ö2\99\1f½B8\95â3BÜ´OCó\83\82°(\8býMZçïÎ!1\1e\99çð\10\90o\9exm\1a¼¶ß@Ìà\98m\1aÐA\93L¿8PQò\87Ì\1eµ\e*ýJ\98 ©÷Bv\ 3ÿRAl\rßÖ7Öå:Éó:ÁµÃü\9fÕ®åq7\ 1\82#CqZ¤u\83-Ò!%EÁ\92Äy\14Xé\13üº\86Îà \17\fÆ\85Ê6:©\8e7)8M\8btL ´¹QTCÅ\ 6ÖØÅ5¬wuÐJä\86dîôI¤`pÈ\92¤ä\8b(v"!\18æ\93\ 6G²l*\r\8e\84\89%äФ\91Ãëá\ 4,Rßé\86dyã""\93³+O³¯qFï\9cåïP¨É\8eRÞ¸\8a§p3¦F¿å*ñ}þÔ\e\80I/üïµ÷]\85Á\aOͳý\¡NÜîT¨cñC¡\8e©\1a\85ú¤È\ e\rW\95Ý!\8do
+ñ|\9eÊòÂ\7fçëD¡fñ\83©P'ràñ¼üE\82?E«\90\9fc\1cëy\8cq~Ç÷+Ô1æ\8bBÝ~Ô\98\8ek»·\ 4\19ý±B=û{\7fÞßI¡\96\99¤R\16³3J\19#á\972\94´Gè\1dÊEÝ\94ªù<\17LÖÞ\8d%\12¥,eo\942T²_ÏË_A\96È\8dm ?Ç8Öó\18£¬=\95²ù\1dß®P˦ÛU²1¹çvo\ 4\84~¬PÏþî,Ö¥ÝC\85úßY»?W¨_[½\ 3¡sÏ\14jéò¬P\7fq ?U¨\13´\v\ 1\8f\84ý\1fQ\1f¿ÿK\80 æý:\89\11\1ajnz]ÖÒïã\88Z6\89Æ\väÞ9jk\117<\1d\ 1¸· &\14\91\17Äl\16¤&F\ 4\15\eR9DiÄ£\8bØe\ f`²°ÆPâå\88è\14$\17a \ 2È>IýÑ.`8Ç·®v\88?¢òS\ f ·DÝ Â`KÈÊGa\9d(\10\ 5<;\14"ÄÁï\95\80éİÞ@H$ʹ]iEùi>\8eܼ.\b±Z\12«ÏCÒ$v\ f&Ô\11pq\92>þC\88\19=y¶\9d¦\1f\ 5èá\8c1AM9I®å\v*óåY"P®\91®Íf|\1aâ\8b%Õ \13Õ¥º°\91\80TM¸=KìR§g¨\94%"\9c©¢?\b`qÌ2dØä\0ßLxÖêGX\e*\86\89&\ e9\8e^\ e|Þ}\bõDÔ-B¢û\82&CêC¡
+Q,ñÆm&2ì$"\82¦\1d4\1d¡\0\1fò½\f å¸\91Ø\86\ 5_Dõ[F¦¾´ÆpZ, \e\86\fº\850\86&YW\14diÃèü¨÷YÓ\90ß\a±6ci!1ö\11JÔ*\ 4cz\95\f \19ÌÇ!û\7f\115AÚôF¸T~Ó|ë õñ1nÓgCìs\14²¦bN"\ 2\89é\88\12S\aB
+-É\8fè2CtZõ\ 1áy\ 1.V~\85o½_\14\89\92\84Iè
+é`ôu\82\aÈ\155ò\1c\8eU6\11²Gã\17E|x>P\ eSÅjd¡¢\12\1d¢¡óAݲ\15Ikí# ÈS¤Ø\v\1c>lD\f\8eCê\v\9dE\107$X°h\11ÙiT0n\eñ\90Àe¼Ar\ 2À\8b\10R\89*s]bi"£×L\90Z\84\ 4
+d{\80"\8fJ©Øü%´`xÝ\1d\9eø=þâ,u®\83\80ÓOñ¹óPý\9e¹ÆÛµñF\16ÿà¹~ýT}ðb\97øú;ß_zç\9a\9buË`?°\96[ 9ª\ 4Hã\89ÊxUÓ\ 2L\ e?\90\11ÏênÜ7\84Ú\ 2ÃQ¶\ eÓi*<\10\88\8eUk ky\9c\87#\8bq\130\90®r\a\8fͯF\ 1KZçÁ\10\93Ä8KhêðoòpC8H¿,\93\18Dp\ e7\94ìA\8cµÎÃß\ f\10ïÈz\8fGL"R¿kííVg(ËH\8ec8\93\92ú\94¸ª9Ü\93(\17Sg£z\fk`ñÎÄ\ 4Vp\1d\1cDF~\80)\ e¦\99$ÙÚ\92&sµD ¡%ðS@ÓÑ>Tëàó\8b¥×Åç\17ó¯\93ÏÃDÈ\92´ëaD¦#\ f\81\86\0\ 2à²~d\10£f\92¸W\1cØ å\bqå\14T\r\ 6oÒ\v¬"©#l¤qÑ \ f;]\89·\8d\18%\13\1f¡Ã\87^°^\8ce\92À\13\920\18Â\1fâö\83W^¼\1a
+\ fÃ\12\9a\85¹f¹\®ÿ<\8b³rª\1coÓÙ\ e÷R¡
+äB\94\96\80Ä2\84\8e.ÎÐSÏ{\ epCBÃúÜôò£x\8dè\r\15¬ S"rL\16H\1fì Cì|}\ 6ÎÒÓ }ðº;\ 4æj¶«yÊb\80î q#\19\99m\12\81]\ 4×i\97[~:\9d'\88µØíGeò\1d ¢\9e§(Ò\ 5\80ý\10·Í=\üp½\9fÙ°\92d\15\ 4\92aµ\ 3¦\82j\eE2°Á\88Ä\ 5\ 2k\f\93Áqþ\93H2\1cÈás$\9f\187 j\96¦\8d¢\17ίÿvb\14ipÑxå\83\854Ö\1e.!\8atW\8eøi°ô\vÖ\1d2u|¿áÍ"£èb\8c¹¹ª\1f\9f?Õõ\90\16/·Èkï»j&\ f\9e\9a|ó¹u'×cXwòq\fëNªÙXwNV\95anQËËP\r7ëÌ|\1eV\fv,Ö\9d¼\12Áû]c¬;å\88æyù\8b\8c¹¨ÿ¨?!?Ç8Öó\18ãü\8eï·î¤\81e¸Ö¼oÅ
+\\8bK»·~f\8e'Ö\9dÙßûóþNÖ\1d\99IZ\bXg~Z\bRÝ4óêÆô%\r\14ä¢n\1aþ|\1e\13®kïÆ\12\89\85 Ãë:-\ 4Ä\1d\99ÏË_Ü\ 6YB¥<\9fhf\1cëy\8cQÖ\9e\16\82ù\1dßnÝIð!ìö\819¹çv}±ö2\11\8fú»³X\97v\ f;ÿÎÚý¹uçÅÕ\ 3"×3ë\8ety²î|u \9f%\ç4]È rf\ 1®KFúV\14\ e¦ÄÜg^\ 5\8b\94å:6$ø5PÏ·Ï!ª/¯\8bËêkÛ\88\87B«Lb×\ eÕÏEÃGWÂ6\92\86Z|üg\88\80\8aïÒQoÇ\9cT\11\ 6»è\9f:eÔ6\80ÐÈTS,}× bP"B\fú@ºÞ¢!¦DK\ 2\ 5BÖ1ÜùHUÃ\94TfÞA)b\95û\8cdÜp$CêC\83sÊ\råIÚuMɳ\828õ~\fÖP¼À-õ¡M"äÞ#1j$#\vË\8býÅ\10Gµ\91IÌ\88â 0 \8c2¬êaH\85H\90p;Y"ÞÜç|u6\97a½t\90¶á\9954DÝ\ 2\eqn\15Ì
+U§µ¡®\eo¤v\9b=4¾ï·%¢BI!SÉ\10«\88÷g§çúø÷Ä\ e\10\12þhÕÈ)\ 4å.iË\9cÎ%ß\ eÿ\e\ fê\83ç°Õ\ eyð¢£\7fý\9dï/½sÍú½\ 4`»íÂ\\ 1À¹é\ 6\rs²'qnå\9dØO\19\fÁ\19®¼<¢ÀÏçg\90ú\ 6\8dÓ\e=Û\ 1u\95g\16¡\0\ 4õÊ\11yÃ\12Ò\ 3a*ól»>\80@\e)Æ\a½\ 2\Æ)\1c#\89\90ì\85x\bÍ\89\11\19Ìhp\94CÀ"\fÉp\1eC\8c¨,ÐO\v\10\14i;\90dB\1c Åï\ 6 \9cq©fn\1e E4\ah\11\89lYÁk\9bzº!O_\ e\90\92À~ à\9dÚÍe\9b½-\92áÜ\8bhÆ·6\82%\16\rØX_\fMUùJ\14P/KZüg\11\11\18SûÑ5½\8dmugû\8dj È~(\12ïhvæ\9c°H¨Õ\16öY4Ûõúøç¼áëJ\17O)\8bôl\87í¨c³\8cŸJ\ 5\9f?ÕÅ\ 3ï/láµ÷]\ 5\86\aOÍ\13÷¥ÌTÄ\93¨ÞU|\1dzWqÑè]»¾3\15!Õ\89Dh;éMóyêT«8"_'zW\85\9fbê]\92Á0\9e×\f\a¼c¤¼à\89`3d×ó\18ãü\8eï×»ÊÀ\b[ËÞ¥àZÐöÜî¯W}¢wÍþÞ\9f÷wÒ»d&)»\17W\8cì^\ e+3Ë_ª¶¶¥¶ZÙ{=Ï\ 5\93µwc\89Dvï\82\97\91Ý«·9\91ò\17·Aõel\ 3ù9Ʊ\9eÇ\18eí)»Ïïøv½\8b5`vÉ}Nî¹\1d\16+<Ñ»f\7fw\16ëÒî¡Þõï¬Ý\9fë]/®\1eEþ'z\97tyÒ»¾º\84\9fzÕ\v¤gÑT\96W\1du\92\ 5\ e}\12\vr˦53\0\99 \ 5Ë+cÖhº\94\18èB¿]\1d¡o\ä µÊ`Ììïò\96Ò~2\12nQ\8aâ½\17æÁ\89=¹I ÷\ 28íÆ<\83AêO¦c\88"³\1dª»\8b\r´\89C\aÁ°\12Ö\87Ë\9f\96Ò\92\92ØßE\1eèó\85Ý\89zuÒ\f\15$»ðVàW\92\f·á\ fÇ\94 î\8cñ\9b\97þ@\9f\vëL/èW½ð¸EêFirAô\81lÄ\16è84Ä
+0\96®ò\158Õ\19{NG\ 46 Fâ+Mó\83ÔG\92\11\ f~ÔÝ¡0\1apaRæb)l7|\18:\93E\ 3Ui'F\8diL\92\84Ç\82ä`ÐÀäJ\19¤I\92EP÷Âl\a\88\9aà\9c¾\0Èh(\13\1e Î\83adÏ\ 2O¬\1dNp0\10\8bT,+ý@ø\Õ\ fS\11ÿ\82Ý\963!ï\9a§e\9bûO\92\1d \82Eb\97âI)u&!³%jw¹Ð\1fì«DÆcx\87\v#\13\18¶]|\99Ô«7®îÂÁ\9f\ݨw/u\12ÖÃï[u¼\15©ÌeI\b\15¦\9bÈ\10»T^CB»áÄb\96&\9cÞæ\83Ô\87\82tV¿µ»\91(81\91\90Ëü\ÄhK¾\ 2Âïq0\v
+\18\88#ï@¾jW°\vB\<Û\83\84m\9cÕë²ÚÕ9yG\14\ feé\8bÒ2ý\93Ì4à¶\83\13\90Uåá²sÜîM\v\19b\11\ 1\1eo\bð:Ð[½Ñ\8e ó;hXxtÌü\ 6\84¦2E¼Ô¦ÑØðÊ0"·\ f\80ã$Ã\0è6\Qø\1a©H±øØ\95ß}³Ç\9ckº¤cÔnsõÇ=\87ygÞoäÞ\9f?Ö÷j¨ÏüåÏÞøþÊ\eïyËKÅ® g\80ç\ fZu¿$ ¬:&>\1fj\18(\88k\ f\12ô\1d®»,Ì]\86\r*ÖøÕ\ e>ÕÊv\9e\99IàPR\12\ 1\91\1d\0,üEþ¬\98\ 6Ðiõ\b\98Ãb\88\88Ê.Á\10\v2\fôè5Æ\9a\e\8a=¡\8b\b_\11Uã¦\1fȼs9ß\r\ 3YÎw°F·5,\84óqú\82\8a·\82$¥E9\90 \9c1 Ê\80\84#89Û\80I\90È0 taTà \19®ù 9\14±\90»)?\ 6ÊL`\r:\103ñµ\90LÁ\9c/\1d\1eç\9d98\bu(Ø\0råõï¾0ýº\98~\14´wÛ.I\0\vIÌ{ÇâR\bò\ 2\17\83\5M®!\19_\1f(ù\98øA\9b»Ün\83\ 4\ 6¥þ;Ó®ºyWff\18\18ʸR\7fý·\13\8b\b\97\96è\ 5ô\fo\90¤\8bé\ 277þr\95cÄY\ 4\88Ù\ e\10\1e\92\b\89z'À\1aï\v¤G\ 2B@ i\ 3´a°\80{\99\0\16\98u¯!\7fIL9\855
+Åd\91®"P\9a"P\8c#ÉjµóC\9eRëç¢L\99kQ\0aÇ\17¢LgRQÍ\83M¢ï\bg°$\ 6x=\86ý°¦¢Éû¼ °¢\915*§\87Õ²Úé\15Ç쪧\7f¶\ 3j sé\ 2«ÚâJ\ 4ª\1a\13d ð²4\88\1cL\9fia\1aU\83J\vã¢\bâÓ_\94q\9dà\8a §kçfi\9d£!¼\81çÞ\11ʦÁb\v\85æÊ÷¾Ó'n\190&ÿÐ帺Ä\87\98ÿéC]\87HÇc\8fø³·]\95\8aÏ\1fzÁ\1fÞB\1ev\99\9aò°ËÔh\11ÃNö\90a(Q\9b\89*u»]%ZÄ0v,v\19¾Nì2-Zİ\96-ü\80üEå\94?E9\95\9fc\1cëy\8cq~Ç÷Ûej¸ \86uÑ·"róÒî-Á>üØ.3û{\7fÞßÉ.#3IݾF\8b5UæS\87\895UÃÄ\9a\92\9fS7\8f\16kJ×Þ\8d%\12öÛ¢Å\9a\ 2>Éz^þâ6hibMÉÏ1\8eõ<Æ(kOÝ~~Ç·Ûej¸ MÍÉ=·Ãb=à \9býÝY¬K»\87v\99\7fgíþÜ.óÚêÅò\ 5\880éòl\97ùâ\12>ó\87W\ 4Ð5\95ÊY9®/.´)"eMbE\8a?åbè>\ e\11Ï\15Q\83^lp\r ZðwT\É>ë\15Jð÷\8a\84R¹Ë\vcÍ\9a%µCz뫲\11)²,\12$tJ¥x\ 1S
+©£2·¼B\ 294\84\94`^}\1cÌmOC*\86\10\89¯
+>),\14o÷\8a\18ÑCM|Búø¯1cWã-\84ØPd#Ë£\a·ûvBŸ\\15"¨_ö\90Ø\1aàÀéX\bâZo¨ÔB¨SÄã²\ e\8c!!±_ð\a,\11àb}-å\ 5^}<>¡7Ô\14£¼:IýQ¨ê\8e\v¿Ú\1dDã\14ïPWoû6Ö\0á \19ÊtÐ\81ØeI%:\1f`\18\ 1Qê\9fE\961d\91Ä\ 6¤à¬£ëÚ>:ì?\b\9bË\9c|\80\18`2)j.R_\87®ªK\81\1eÓ.H\ 1c® Ê1V\bÚ2\10¸\e\eµ¤\8aMp(h\1c±ç*Åû8¾\14\ 5\9a¸S³ä`')ëÞ7\12Ä8\82\1a13\18sX\11eÉZS4XÀ¦X[\191Å\83\84µG¸¼U\89\98_\89²\84u" \0·O¤Ô\87b\8eE©üR,¡à\1f |¸\80Ç´\813G\19°ÀßaHT\1c\84çmDU\1c,\11ñ\98\81;ÇKXk?\17\1c&F\92BT;\85\ f¬$\85\11S\8e\ e\81å6Á.\ f D\8cÈ~9Ñ\97\83?Â\11ªI<!4\19\8a³cÕ¤Bâ$b\9eY\9a\8cjQ_ÀÀ%\124
+\98éúÞæY\ 4|º¨\8f5Àp\83vYA\81\19¸\8cZ\85\86Ô'!d&ÿîDÚ|n\e\11~Ó.7b(\ 2\9cÆ\1cpD\85c}5dv\90°¾8ÑÙ¶ãq\8fEõ'¾Â\92\9a\18swR\8eÌ\1f2D\16ÓìG¹±Úý\bÐÐiºLçw\18\84\14Ç÷mT\8a\9c\12yC\1d<n\9cÉ¿¶»è\8d÷Æ\83ç\1cpOäÁ\93Iè\95w¾¿ôε\vï\85g4\84\8d\892Õ\10i\1f!ì\83Ë\11\17]ÒìQ\ f\83|JÂ$°ÐçcîÇ1ÇvÉ~k\ 6³µ\0!ÀÖT\1dx\8b\e{\ 5õ4À\13±!§\89ô\b\12I_\91ûGÿ\08&kp\80-¥J\10L\9cE\97\93¾\14(Ó?\ 4ä\ 5¸\12`KÙëUpa¢e0QîZ×\82!bë±ì\13;£\e\ 3ó\91k\18ð7\81µVA,Ì£\13\93.\85\1e\10Y\9fU\88ñ\10âp¶\80ÉS§k\8c:\97\14)w¹\82\ 6 \f§¨=gµë×ݸÐ\82\14iµ$sñ-b\13Û\16.> é\88ô[÷e\85\13\8f@\f°¸\8b ÃUt\ 6\9få~\0\93+uàñ\9d/øA\ 2?BöB
+¶]E\96§äÃDªí\95y\972\1d0\9d±îmÿð¾:®ÉE\95p'¡À\\1a\9b\90Î\82ER9\ 6¢M=Ë;7KDa\f\97!R9¹¸aBa\8cBEÎå\10ÿ\10áóÁ-\98#SH\0N\ e t²]±\9eÁétbïJ\91\8bAê\82LbCÙ\ f9\80ÈQE)\ 6CZ>¤\9dÈ{ëf\89\95é\fXM\8dk@xòØ\95\97£;°ôqæ4e\ eI¿Õ9Ê\9eM\11\83Äp\17À@ýOM%p\17\96:H\1f\14R¸Ñ\16\91GB\19t\96àKC\1a\8c\NÉÆðo\eÉ CÀþ:4Å%_.\99Aú ø\Äá4Û¡N^Yìm£èÍ&Üåt\aÞ,\11\99m Ì*N\8bg\92\12\bwæòÿ7$)nû(Å8ÿQÁÇÕ:§ûèªí|þ\14Ô\9ez¹_^{ßU\11zðÔ<æ_\8aóqLÙ\14\83\92\80ÞÐ Ô\8aÅ£<\19ròÄ£\9cv\1f5ö,\83P±x\94ìX\fJò>±(¹£XDJwT\8bÀ¡\7f
+\ 2÷Q'(¥þ\9e\80ø«\13¢åÏïù~ÃRK\17\J(d-ûk»·~C<Ã¥\9cý½?ïïdX\92\19¥q¢\15\8bm(Wø4
+ä\89mÈ\9fÃ.·\19\17\8aÅ6Ô=àæR\89|ÞgÙ¢\e:ÆWÎ.ôÏ K5\ 1\ eõ÷\84T_\9d`¨º\15h¤\98ßóí\ 6¦\96/\b\87s\92Ïíú¢ùgø\94³¿;\8bvi÷ÐÀôïá\9f\e\9a^[ÅÔ¾\80S)]\9e\fM_]ÊO\ 3\80ÜÑ%À,.% ÆCÆûÝ©\a\ðÅ\10;©Ë\13\12o\81°^çÜFC\ 5 _ \10oÔ\800\93(-\85\7f\0%\vÙ³\9d\14\81\1d\11ä&¦ß\10K\89(\83Ü4e\83á;XÔ®oGÏb\ 60,Id²ôP\ 6¦¤R\e¤Êì\82!6\18\18$`\ 1\89°\a.\85E\1a\91â]H1Ä"uÑ\1a\93¼%ÖCc·ík\a\r\ 3Gè\89¸º\a\15C\8c\90\98hbYÏÃQ\1c(¦#Ë\ 3\88\85\eM\91®1\93\86
+\9c\88\84\86¨O&6\9b
+ß.\1fvZ\88\rú\ 6\11©0 \14'\97°\1fÀ\8bù&\87\8ab{Ò8 \1aeú\1e("üÙå¾î\8bÿW1î[\9d1ZY\ 2\10(Í\7fõ\8fHã[ÇLm\87ç\8d\eýÑ\83Î3w\15On¢Ë\8bo}\7fík~Öq³\9b\81Å\9dj\90S57Î r\17\ 3Ëäð\86\8a]76bbi9K1ûu\12\91nϲÃè\8c\81h\ 4fÄîß\8e\89Ò°=\ 2ªWSÏ\1eT\ e¦j91\1cÔ\80C9¨9*X\ ebynÂ#Äj\85jYH\84 i\9d|\86\13l4Ë#&\15²!\922\1còNd"\98ªsÙ\86JÃÓ\181O\95m9j^Có"\9ai§5©]\1f\0¬wT'wL¬\ 3\92\11ºq\8dÂbb\9dñUÈÕ
+\89å\93Ìù\8b\8dßchæ¤\1aª\96Tì4äÄSú\e\v{ocüÿ(zN¶wJÛ&Ŧɺ?æ4]ï£Ï\9fzCÉÌ;çé\95÷]¯ª\aOÍ)yîWvRX\8az@¿\8a&\8e^_V\v¤w\11¾\87\>dô)4ì¢|³hzÒ¿ê\ 3RºJô\ 1ÔÓ1ú\80V¸\19\9dÈ\9f¢\ fH\1dÑ\aä÷\1cÒê\84\ 3\9eßõ\17JS\1dõ\82«×¯Ôv´ãN÷\84è«'u©f\8fï_èñ¤\13è´R tî°\0mîh»\10×&D\9bü\1eªUÛDÂÕ \17@·\85\9b˦r%ê\8d\19¹R\90\92g'ògÐe\9bXmú{\ eiuÂ\ 1kE3J\ 2󻾿TÕÑ.pms¾/\rû
+¦gh{«Ç;+xmøPAø\87\17ôÿ(]õê\92ú/@ði§geá«ëúÌ-Mä\15:\ 5<¬\98XmÆ]Gg¨Î¡~¤T\ f\bð¯aR}ûY\83J¤ãêt\80Î\91\8b{\848wÚDz\ 3^z\89\e U\80Å'v¢²dÓm£Ö>°Ü¿\9c¯ iÄ?2ȲӪVü\84äXb\93.\15Í \9e\ 5"»u\12\Ç\ 2y¬e7Z\15l\18>l©p\1fÜ6"D\ 6\94rÄää\91\98]p\rʤÎ?11\99e^·6pÈ1&põ´HúF\fc#FÉ*ب\18\11*D¢â¬\13Ý\12@\84°Ð\ 3=üg\7fiÕi\91óV\86\ f\86ñqp\b;Ô\8cvb\86EñÎÆ\95#\86QR\830aØ>äÍ\8a+\bÔ\1dd³w\1a°\ 3 \85\ 6Óé\81\93ah\ 5^®¨_c©\8c\89¼mÔ¾Gb$î9ªv+Ì\8f\16Eë#\8aÃ!\9cT¸ÕÉ\1d²
+\96¾b*\89\9a]Û¶\8b·>¼°æ\14ÀkÚ'\9d\87 ©U_i\9d¢ \8f\8c=\14eËÐ
+\0ú\9a°\98\8d:÷±¡¦\ 1í\8eB\12Ä\81ôyö\18\80\84>Â=c\96c\ 5 CÃG\1d<pl9â\aàae\ 5Ðѽþ\89\a!>\1fÍo\8dXKKbVÕI»ÑtÈø\90\8dÊÏ»mÔ5\11\b÷<¼\9d.;¡\9cj9\13\80ªBä2ç¸ÌÊ\vJå÷{)ÖF¯c\f\e\rºK×ùe\96\17µ`în;\r)6\ax\ 5$÷¤ÇÝì\83ù§N\13\11ËM\e\94\9cã'\99®\f\8d¯ä\1c-\9a\ eî¶Q×g \ 2^ËmûÜmN¾Ç[ÍHjx\80\e²Ç\96\96ë\10èÎ36yÐvM½ñByô`_J¯O^üÕ/¼õýµ·®\13{ÏcÍÃO\17\10\8agdÖ\13'\9b\10\ f°\0B
+ë(\86az ´n4Ã÷7êàû\8b\88x¡J\ e×GíBÐd$ËùÇ\9fØ[Àìb ½i\84dq¹DVg\8bfxÿF\9c¼ßP5&\89×q.#ÀÙÕ¬\17\93S\1aÌxÊ\81\11§\15h5\82\7föà>ì÷äºdéîµ4Ë\136*¯îÛFE\86=ØR\7f{\1e^<\94·±\1c8\93\87\80õ\19l®\8dà\1aÔË \8eËdÑÆµÁ\95jç+æ¶QqIÖèõ*\93+¢\82\97\8eˤåCS!\ 4pÏ¡b5_I·h¨\19_RF\9c\13ïF^xç]7`\ 4dO\86r¾\17~oÔª¡NäXZ\87\80\97éâ\9cò×\87ð\92Xs°M`dU\16<{Z4{\17mÔy\17\19*>H\18Þ¼\8brÞî\93ñç\87°ìPö6\10\17Y\94\82É\a@Ãé4Ôë\1cQB\84ÎäI¨ZÝ\82\81V\89·\98\99©¾q"¬2ûìÍ\8dw\9dÓ\e¯\15¤\92Y¦ü{§y Lë\8fvI\11¥S Xi·ãø\93ß\17%"Ã6Byy½Tfg\866o\ 2C37Á¢\ 2¶\18\992|Ë\0Ô,ûM \7fòNBTàá·Fë»Vgæ[Ííx\9e\95ÿ\1f\8c"\b\8fG\9aÈ\89S#XD\ eÿ8ÃWýçÁc]\11
+ñr¼øÆ«jôè±É\8a¿æ¨\962\88b êk2\rTÞ[,À\8b5h\18\8a\86Ñh*«»mÉ[@@é_\rTRhQ\fTý k ÒÊl£\13ùS\94p©\11'J¸ü\9eCZ\9dpÀó»þ\82\81Ê»34`d\1c\9a»×ð-Õö\f\epõøþ\85\1eÏ\ 6*\99V±gxo1æú\9f»ñÀO\949ù=l}~7Ex\v47¶\85\9b˦ö\fTÇ4ö\8c\10,h\82þ)[$\84 7§¿ç\90V'\1c°Öß$\83\9fßõý\ 6*Æ_mÖ\8c5ß\97\86}\ 5ë3ÀÀÕã\9d\15¼6|l úw\17ôÿ0P½º¤é\v(\82Úén úúº>5PyX&Z±!ÕXr\ 4îµ\9a\rÕ¡ ´T\1c\84\1d\80\19\9d]\\8a*+#p\eù©ýnõý\11f»"U\19ú+j)G\81<\ 6Ö\ 5\f'\96T¦\80`¨P\9e\v$ ¼Bl\ 5\85ÚvÁH\80¢à\83¡áaÌ\91\14T6-ãð=B\84EÚ½CT°:Ô\90#+\95\9dI-¡*\ 23m$ØÄô¬\v"\18\90\80Å\99\ 1\88zænH\9d\87\8cN\19õ\15Ô\14Ð"_^´øõ¢a\98#·Ò¶D,¤ÿ\1fyW\92\1dG®\ 3Oà;ô\ 5Ô/9\93[y[·ðºï¿ý\88\0H"+K%\95¿µòƯ\ 43\99L\ e ÆÀ,Ö7\ 6
+\86\8bd-\ 3\8a\86\8a\11´Ð\99PWZ3í\1c\8d-ëL°E´çÁñ\10Ò"Û\14\11o\e\1f)}*\1c\0\84< !\b Õ&ó,ÑÑx8[W³ß¦ýÒ϶òZ»%r{ÕÂ2\14%DÖ\vÙÈÁð»\ 6\8aHÙ\9ehúÕÀD@To@mî\19NZ\14óËÑXÒn\1cvj=\95\99
+·\13\15Q´\85Ü\bï\893\107\ 4.¸\8c(Yôlþ7ÛV«Q-\aÄ\8a$´\96.¬ffÌðo¡á$´sn\r§wÌÚ¯³å`ê\86¡O\8e,\v\16\12\9cÌMuجáÕòtbŸ`\81ÐÈù \85åòÄ\93(µ\9dhÐ\83ää)ß;QY=äv¢bAa\9aÓ×hÊz3Ð\0¡E\ 3\vÀQ¤Ò\8aÏ\ 1xü,\92\9deþt\ 31ÃÕs\80+¯\98f>î\99¾Ê\81R´\ 6\1fi\80å\1fÙQyTètÖ°mèÊBCL~6\8b\ e\1dѶãfy\8a\8eøó\7fÈ\98ÒJwa@\88'eu\8bÿüq¢\ 2_çÐKÉQ\ 1\93\ 2[&÷µ\82Q2\r&7\eOT¨\80®\11ê\1cO²\ 2z,QB©7¢^\8bbÜc\13'=?c&\9fOÚ/=|aBõ[C\ 4<+výÀníÑÓð9dD<¹\9eÊÔÛ\99\8a\14øÐ\94o̰\97=å\97ÅùÖÜ\rÙ\8eéÃä\r\^o¼½\9e=(KU\8eײ7\1e½õýµ·>ÏßðÌ`Æâr\93Ãj\\8b£òâ\19
+7\13YÖ1èµeYáÈÛ\bÊI¨b%\8b¸"X\ e\f\81\8b±\1dH±\88'Úd\81Ø\16'*ÙåÍS\99\8e_ôÂ-\9a DoCÈ<L\ 5|\8aöë\8eûÀX5îÌ¡p\150\7fði0\10½b\80ÿx\7fKL\9a]PÂøû©å8\fï\83è\8dp\12
+\rÅ)Ô&Vÿ\8d\89Å\1a\85
+\r*Y\9fj:ÁÓ\1a\1cBx¨F~Áèp³u\10\93Ê\ e\98H\ 5\94<,%\90×[\1c\169w¹\96'\8dg;β\14»eEÊ\9e"WX\82\9aÎNìvù³*ñO\9d3^¼¤\ 6\rÅ\ 3Qº\9dõ *ËU\b5-(RDþP8®Zª@á´.2NÚ2N\99F}×r¢ø$\9dÓÇ\89v\12¯6\15\89t\94\19\81RÖ\f\86\8c/äKB\ f\16\87\14\8bí
+«\eà ¡Ôø\16\98\9f\8e \y½#VÆ\ 6W{äê©Â4wfà¡H±\9e6/7\y'*/Â\9b§â*`Z¤Ð\10)\99-9)4Î\ f88W\16ç.iQ3î´\14\15°¶N\96\83ÚdÖ²_ïÿ\9dz£ÆÈ\13\9f\ fÊÒíÎ39iRy~\8a.º¼\97þ\\95±µz\ 1$\87¡>^È¡5©G\11\82@\1dd\85ëÖ\92]\91x?;\9aÝoÜ\87åþ.¼\9d©M±Ñô=&\83\1cê\87Ôý®ñÇ`\88Áv\r\8e\18ÝÁ\8c\99ì<V8\89v_·\a\97\8cÑLR¢\8bÀ·Ä)×k\v\89¸i\9cHó~\9bìà|\17Þ<\15×p\r9éÒ\1dê\90t\93~Y\9eïK&¡îòQ6ÉÒ×\9e<&ú`\8d¯¤\93<zãUC|öØ\8b %Z]Uít©.èØ\80ðXg§»7\8aM{Ù´\9dM\9dýÎÄV<\80¬öov:ߪv:\94\97tv:+ø8;Ñ?\95ihéIµEèï5¤Ý \a¼¾ë\eìt\9aÔ|¶Ó\8d\7f\88´tmøVá\1aùÄN·z|ÿB\8f÷v:\9dV5ë\80\8f;³NÊg\eJ^¨¤ú{\99<Ï\16\99â\81Iç¶\bkÙ̬\83¢»Î¬\93«\aѰ?u\8bð·m\11ý½\86´;á\80¬/\19Åú®?o§Kù\1e¡tÏ÷¥!Vð3\80ÙÝã\83\15¼6|n§û{\17ôÿ°Ó½¶¤eô/ ÎZ§÷vº¯®ë§v::\9aJòú8\96\1c\81WGn^K\87\81¥iQ,\18\18\81C\19\187T\9b©ý4\90À\ eA\1fs0\94øÀ\8b\94r¥¢.t íÓ\10±i\ 3X\86\87\9am\1dUwÒ"0h\8aÙ,|E\99(\19-BôÇ`ÊÑh\149´X\1e\ 6\ 3»\90&®À\85Þø)¨%\98\92Ç: ôÃ\9a\9aÓ \83Hô3(J@\8ct
+«N\ 1Rìå\v\93\ 1¼²°`Õ\0 \9c\86\19Ë0Häè\ 6ìe\15¿ñ-\1ab²ipT\87Î\9cÛ3\95\9b|\13è G¾\ 5Þ\90ê¬\16\e¡½q,EK\9c\ 2d2&ÊK\18µÕZ\ 3à\18üÑL_!\ eâ^ä\aÛa\99böÿ-°\92ÿ@\85Â5\8a£\ 6\96\ 2Õ\95@Æ{¤\b\8dT æ\1fSXLľ\b\10Q\9b\81\91$h»h\b\1c\ f\9eSxsi|ð´=E'*wÊ&@nKÜ¢x\83VÏ\ 5H\ f²\1f8\96¢\85æZÕDlL\11Ó@\9aªU,\15Ã\8fK=,]\ 2rÿÞ(Þü\8a\ f\9dõ}WK\91k\ f\836l\r\127dÕ¢5)\bôJ¸\85À=Ó´
+ÁÁ¢´\ 1*\85Ù}{±\\bGsÇÅSu\9f8\ 2\9cÈ\15ò\fÞ\90¢\ 1~\12O\90cÉaZ\ 6Qõ\98\9f\91ÕÇÏ\95\v\9dL\18\80\a\9a¼²\17ø²\15þ¤á\a`\82§Z¢òW\9eçæ\81ágHç`\87Ï\1e\84\ 6yM«~ùﯽõ\13Ã\ fð\92\98ÔB-¦#F\1fG
+ \v,ªÍ_E\17\ 1V\9cà¥kϲ¶\ e\19`òÓºÚ»%Sþ\97©zDÞãÝj±ðÝ-ª^Å\1dHPQêo\ 5;\85~\ fcÀA¡6\1c\rÛ\8el»Ý3óÛ\89
+\f \9amø\8a#ÌPF\84Á°\8eg$+Bt\16K\ 1sЪ"«\13(\93s˯\9a\8bWø=ÏÚ¦\ 1Â;\1f\13ýÒZ"°¸iø³ô\ 3§\ e\97 iÊ,07»ú\9a2¢\83k\9fÖ\14À]\v/\ 6\1c\15¨ÇÓt\1aN\ 4åT7O\ 5Ûg\ 5M¾¢Y %nIÄ,=Ø\ fË*àøÎ´$ý§LËüK˾\84s_ãäE]IÅ.-Fì\1cv7"0*j$\16¶
+û,H©<\14U0YÄoÓl±=a}¥§\ 2F\vv-ªÈúE\80 â==\8a5\83uy\0\18é\97\8a\1c
+@ËÈÊVì\1e!öúFv9±\9e\ 5\ 1C¾e\e|·d¡`\1e#ôx\14å\83\95ð\194l\8fbü×\90ò9Fn¹@Ø2ã¢\1d\0\13ýLÓÅv\84½ç\1dUfPîÁ¤;ïÐ\rÞL\8câ`,ì\1e\9e¸C\ 3ÇX¬Xw8\16\ f%zùuåÎÜø`;ü1+D-÷\f\8dÎËØüiº
+¹O\1e\13iw\Íî/¾ñ*ÿ>{ì5+D\ 4Ë+\ 4Öf¤\8f"¹#%E\aø\9b\19)¥Y0\8eþU\ fl\ 4î¨~`õù³ZpÐ~\1e
+³\86\16Ñ Àש\9d#\1d\1eæT\83\16æóúWÇ;ø\13¯»ÙÏ9\8eý<Ƹ¾ãÃû8\94/í\86G6\82a\81G;P¬ô\7fä>È\97vÿR#yËðQ~bx\98\9d¾\7fÚ©~Ø^N\9dÏ
+ë(røL½\94¿é\10ÎÕ"Cô¯®\vÕæ$êÏf\11\1dûy\14MÔ\1d@\10p\9dÏ6¸P\130\93\85\15q\98×óú\177\ 3\7fêfÐ\9fs\1cûy\8cQw@\85\f·¾ãc¥4õßUJ)\99×ðhÍîÚí5ûÔÔ0;}°f\97v\98¬\ f\r\r\7fÑ\12þ¾]á7\96ðø\8ai\81ýÂ\87ö\eëø!\9e\ 5ýP\f\97É@\90\ 2&¸¬-2Z
+\ 3['\11ÎÄ®a\r@\aDÅ<O\ 2\8a\16á*7±0\96¸CÉ\ 1Që\10\88\80ª\91\0 \1e*Ã\90\98«H\10\11uò\12ì? éK²è¡\19\8e¤EúõCd\10u¡îf0þ\ 66Ë\87fNy\12²²\13\84\aG,\87\16R\89\19¾CR\88Ú/L\19E\ 3\88\18[à\16Ë´?Gd\96\0\8eU\88\ 3>ËÀo¨¦\7f\81\18\ 3q^#jÅ0È\eD\86VÃ\8dg$ùE\13@d\86Ok\8eôÓÆ"J\7f\f\83\87\85`?\8cÛ\842\vFȪ\a\9et¨oIú[ĵD·\13q.%^¡\89\17kÁ¯\eãã;*×\17J\7fÐ\80ð\ 6\11»z´t8Ìì\ 3æg\9eNÐ\e7ú\93ç\90\86\97õÁKñ\8f¯¿óý¥wîÉq÷Ü^D\96Íì\88\81qË=\89XÙ`ºß"Â\19_\aÌ\10XY\ 6$a?\1dE÷\13<\844ò\90¨\a\1dDô,ýe¤X\15>,¢xc\1c@\14å628\ f\e\83.ýÈbQz4ði©\9cHû´8bTÛ\14ÎF\84\12È\83v\7fD' \8fâ<øVòr*f$%\80[\93\ 3$\98áxh5\ 4\8fGj¾\923{Û4¿\8b7M¸Gé:s\8aÛ\88Ò6w{x\92dd"e\ 2"ïfc\1d\bëËQ6k[ÄuÂn'bÒ*¹xA±õ\9a«zÝ\12\1f\1f¦X¿\\1aAmqÇiwÊE\87Ì\90ÐüL\ï¢\8f\9eê¸\8fÂq9G¯½ïzC=yjÍÉç0\16Ä_Q¹\9f\9eC\95û\11é»åþ;y{
+â&\93\9b\9cp\96Û\93GÃSW%å~\85{¡Ü\9f\93\87¡S'È|^ÿ¢¼Ã\9f*ïèÏ9\8eý<Ƹ¾ã\eäþ\14ú½Ü_\81c\1fãµÝ\9bìøÏê#¬þÞ?ïïNäש¤¼\88¬\88-/¦x\92ÓbÙzSÙzÓIÞ[Ïk\9dô<åE\9dJÊ\8b9e'/20s=¯\7fU]£4÷\81þ\9cãØÏc\8cºø\94\17×w|\83È\9fhg:É\8bkzïÛa¹>«\90°ú{°\\97vO¥ý¿hõ~[Ú\7fqõÒ\17*$h\97w\82þW\97ðCA\1fi\9e\867\ f \ø/dY\ 1t¦u½'\11QýDD£t¨QË\8e\84ÐX\96CrÄ\ 1i\9c\92È¿ñ Ë\b¡\ 1wl±ÚÛBê\1aÄ+Ë\ 1ÇNA:f\81».²\8a3\8c\91to\14T §\ 5rD+#]pw\1c\10\1d\1c \92+\86áH\0Å\95\ f\90\9eÔj\f©B\ 3u\11\8d\98\8eàHò$CÞkõíZ7£f\81§. \7f\17\98\ 1ü¿\92ÒÄyft\1f7®\8c¬wØ\90 \ 6¨\80\1f\89¹\v+\9fÆ÷\19A\9eb,\1f¼\93³\8dÜ{\8c\94B×\14õ\1ceL\7fÓ¦Ác\ eS)(ZL¡ R#\8b\¢88Ó\10ß\92\16\17EæEËS`Iì\84\11\7fmj;\ 4õB04kzá\1ef(#¾0\8bÌÉ5*\88~\84\8aÃ"\14M\ f¸|,nÊ\8e\80}
+«\93\84\15ArïÔuHÔ²\87\81â\ f|\17¡ýCÓ-\v\f` ¡\11ö\ 2>\f\85K\86\Êèp:¬X'\1dòà\ 1Ü)GJ\80·FÂõ\99Ö"Ã\13\1c1F\94¦\8bÿ°\10\ 2KT\95`ærbà\rNþ!\1fÍ\b:\16wËľ\1a¨hOèbºN\99·z"ÊO\rl\9bD\98\7f\83"r£´#¢Ó\1d éà\836tO´\8aé®·y\1eÝ['éç£Ãü1o{I9ËÈÔxCJ8,ðKö#ä\1dǺ\16õÄðÞÈ\9c\9e<'\8c³G}ð¢\9c}ý\9dï/½sOÎæ\8f~\11\8b®\97°A9÷%4O\ 4G
+æZ+¨íyÔÎåN\88ÆÄ\8e\a\14^\92\85Ô\1a$ºË° £yÒÜ\8d?\7f\9c\89ض7O\13\1e\ 4u\86ù\fÄô+¹ê\871#\9a\89ä´YÌSÖ¦g\11¥÷\18`Ä\ 3¨0ÙTÌû\ 3:I¿~hY7\9e\81Õ\8eÉNÃì G\ 1ûmV\1cQHPÄ\98x\840b-öG]2#X\19Um¢òÖf÷o\r\96\83\8e3;:\8b\86\92û!\8e\84|l0\99½\1e\93³Aý\83\92°(\8eÿmZErº\8cHtiº!È8ÏÌV :Ò\81Bx»\8d\1c-\ 6>`úÓ\81\85\ 5\88µr{¸\80\8eNÆ\a4B2ið\eä§@Ãg\88lAq¿ûû$¯û\ 4÷\ e1üw»Qçå\94\11½\ eåi\93ö\15¶H\80W\82\88\ 1\9eD(W!%+ÅÜQ\17\b\1eer®\98Ã\9cT-Ë\vV3XQ\84\0\91\83²\1a¢§YÌ\ 1÷°]ÖÁ\9cÕ\9bä/õM\84Nvè\92(\16;\94;\15\116÷\99¤\9fþ`M"ö7\f\89þY²xcz\b×\96\9dîI\8e9."à\93䢨}Í3úà,ÿ\11\9aü¨Ô\13[á\96_sc\1fs\95ù>~
+Â_¿0À×Þw\15\a\9f<µ\ e÷çZuá~§VÍ\18YÕª\11\97·µê;mvª¹¦ñNyü¤\15\17\8f,©Á·Ôªù:ÕªKõ`\8e\f\83_Ïë_Ô+øSõ
+ý9DZ\9fÇ\18×w|\83V\9ds½hÕ\ 3\95ß\8ek»·<Ægàð«¿÷Ïû»Óªu*©\97!\86yëe¹\9cô¡\92\96UÂnQ®êI¯ZÏSçââS/Ó©¤^VjtzYAòÐz^ÿªºFaî\ 3ý9DZ\9fÇ\18uñ©\97ïø\ 6Z÷ÝY/\9bÓ{ßN\96«\7f\ 6\v¿ú{°\\97vOµê¿hõ~[«~qõÊ\17ààµË{ú\8bKø¡V]XT\88ÙG\10\13\1a£|Ê1ïØEÄ%ÆÔ/2óÞäNΨ´¤\ 1]\8cF¡Ê\86ÿµh0 "7+3z\89!\12\0þ\ 5h¤'uÕ\1cñè$\16fÉ\ 4ÙCÈdB\ 1T!\r\ 5öÁ@´bý"É£\10\1e\ 2ý\10»\1dÀªéî:\0;\87\v\18y±L:\97.ÿ=Z@\14!\88\8arT\80}\8cX0ÙA¢ï\1dÄ\80\ 1±5ʺ¢¹ÊWRÏ\94ùÉH\ 3+¬èÇÊR@ô\87;\ 3\13\1aX\1fg\91~ý\80Ä£h\88®]³8Q¼,"BGè
+æ§/\90\8eñ(\90-õÎ\101\9a©d\ 5\88îL\1cÂD\89d\97N¤¢\85°äH8bÕ¼ÇÛ\89\882Ð\1dýMðLÎ\1eäX\186FDÌT 6:|E\9dê8C4E\1fÆ×Úõ\85*W\b\1dd\1f\aåÝI\92¡\1cÕòÙ\17ñÆm¦rì"æUJ\b/#\16§#\ 1\ 1³\13øÈ\13-\82\94!È\ 5ÁÒ8ôPا5\83þ!\8cah\80\ e\85Y\1a2\84\1f\8dl\ 5É<\91x¡ÓÜB"4Ü\8eãFá\98î%G\ 2Þ\83Ö+÷D$£\1fØì«·j5\9bÝ['IÆ\97\82EX-¢Ì\11üÍáÔ\12ê\a=Rjï@\rsO:4V^\96k\13sU\98UÕJ \83\16:Õ¤_x¹\eSU¡/\14Ø'°s°_\9bYz\8eи\Ñ,`\14óá\ 1¡]\8b¢5\8c^\rÅ\10K\92MÊ\9a\eè#T\86V\16\11\1ce\rØîP\8c\a\fNÁ×K0aÜ\91\10ö@³È\99F%ãæ\88à\1eµ6|\85\88j\89\0\82\ 3\15;eS' Jòhv+6\81Ã\84òsÌ\ 1\842\8fÊ\80\18QK#9^÷\80'þ!Ï1QÃÞf
+ê\12¡a\ 5³¯\9c\8b|º7ÞÈã\9f<\a|Õk9ðWßùþÒ;÷äìk\ 6\e"ª\14\1f¡#'Ä\17cÒ§.(\8ak\925\81RÈb\ 1Ü8\aB\r\v£'ã4 \12è\83Æ\87a6AbÖê\81 V\1cw5k\99\15z¦t£\eп#¹\ 3á\88ò\11EX9ÞPãôtòtíS8I?=\97\98D°\8e05íIÌrmÏÓ\9fX£ÕS\1c\93XÄÜ4sÄuÆXnÞ`\9b5\19I¦\ 4u\1f\88
+·\88z3 \1fµsÈ\18Nå®f×\88\16\ 4\ 2®8¹fÒÀjOZÜÕ\11åJbÄ.^QÔÐ\13êdô\9b§×Íè7÷¯\8bÑã\883Ag?\fËy=\9aZ\ 32\ 2l±e\14\82\ 2\aPNiã\89M\96Ë\8c;§Ua6ø\9cy\83É\85\892(\9ed7\9d2±»;ñv"\8aZ\8elkìÊÃnX\vFÇPza\15_¤\91(ê#æÂr\80\ 6,õ`\9e¨.CôJH \97û¿¬û\1fS¥!È«\1db\8d\e%U¤M Â"~L©#\11rè§^tÌu'\rës³Û\8f\92ô\ 1\1c\8c¤7YQ\16¬â\13\þØA\87\1aû\8er\15\9fÊ\12\9f`-\ e½úvÂ4§0&\9c²¥ìH'¡m\13e+Ã\85\9aûLýáÇò\b\1cÌ~ÁxJ¶ó\94)^ 1\11K¹\875d\1d>ø;><Iº
+V\0xµ\935\1d¦nàÎ\85\9a\80Àv\8dî\96oë
+|\ 2+\19E\19\ eä\885\93OÌ«d\10»`SÖ\8dóóÇ\99\98U\1cÜ4d[\91\ 1Jµë\89è&Ó]9â\87aÓ¯\98xÈÕ\91Yå\98³J)¶\1asr®
+ÈÇO\89&Rëå\1ayí}WÝäÉS\8bq~nâ©ÝâqÿûQ\ fû)\8bЫ3ñÜ\99V¦ÍÅÌ/S9<\99hºÇfdÇjâáëÔÄS\87\87Cl,B:\9f׿¨ä6s#É\13ús\8ec?\8f1®ïø\ 6\13OiùÞÄ#\9bQ.º\aíÞ
+tÆç&\9eÕßûçýÝ\99xt*i$(}8#Aé'å¼\87e"³¨A®êIÉ_ÏC§Õŧ\91@§\92F\82:\ eg$¨ê¹5\92þÅ} uä¹\ fôç\1cÇ~\1ecÔŧ\91`}Ç7\98x4\92àd$XÓ{ßîXÁ©¯ô÷`¹.í\9e\9axþ¢Õûm\13Ïk«wô/TñÐ.ïL<_]ÂÏR¯k\99Îd\bîD\13\14V
+\97\97ÖU\9eÄ
+\97×1½º¼\92=ih\1d^\99ÛM\84ä\ 1§\9a¬K¨æt;\11\ fö»\89õX\ e/X?D\13;\91\8a\ 6]üúá\89(ù \17LE:o4\81PÄÿ"\94®æ'
+\8e¹2H\ 3D\82ñ\90\88`\ 3\19\bp´U3odR\8a\16§PÇ>0\0%\9dxPP\8cX1B¤>Ñ\11\8fâH24x©ÂT ´]\ 5¢\v\85Z(ÿ\18¬£\1cZÅM\86¶\89\81ÎJxkkÍÓ\89æ\89Ã*8/bE<\aë\13\16V\18\97µp$ä¼A&\91á9"Þ,s¾:Û˰^ºH~x~\r7qn\813qn\15Ì\8aæ\88®\ruÝx3Ç{ï¡õ}ÿy"\0ã\e¥Û
+Ñ\8aèv~z®\8fÿ¡(\ 2¢Í¿\ 1Ä\12bî\12\84j+sRç\9a\9fNÿ\eOê\93çB\ 4¾y¾«âúê;ß_zç\9eöG9Á~ß\85µ\ 4H\ 6°\1d\1aÖloâÜËgbÒüÞÊhØ\19\14~\7f\80&Ivh^~éÕ.·yh\vó\86»\90\0î Ñ=\90£*\ f7J§3¯\9dã\83r\ 16cõ\1c\95\bñ^\89,\10Kë\1fLÉàF\93¥ æHt;OÚ¬Ç\11£ÖGÁk\e\r\b4%ó\ 49\867Ö Êu±Æ±NÐ&º\13ä\88U±Ú9-ôyC¦¾?A\93\ 4þ\ 3÷ó]»±ÎãìÍ\916ëÞD7>Ç\v\1c±YèÆþba#\93±À' ò´'m\ 6ä\88\88J\93³»{[ÛêÁö\9bE\12*l\8a\1aiévæ\9a0([4aøYôÛõúøÇÌá\ 5Í\8bÇ´¦ûÓ\ 6'\ 3wËZ\8d«\ðñS" ÌR´÷\9a×\97ßw\15\19\9e<µ\8eÜ\97²U\11ZbÊW\8b}*_-d§|\9d\95\9e¥\r\99b¤bÛ\9dò\14<à\16;Vå\8b¯Så«G\8fq¥\19\róyËoÀ;f
+\f\9eH>kv?\8f1®ïø\ 6å«\1dñ^ù\12A¸·£^Û½\95X>C²_ý½\7fÞß\9dò¥SIñ½\85æÄw\96yYb³þeÊëØÊ«\17¿÷ó\906uñ)¾ëTR|\17ÙË\89ï=ú,Iý\8bû Ç6÷\81þ\9cãØÏc\8cºø\14ß×w|\83òÕÈþNâû\9aÞûv²\ù3ØúÕß\83庴{ª|ýE«÷ÛÊ×\8b«\17¾\80P¯]Þ)__]Â\ fýë\r\ 1\87TW\9c\7f½\ 10¬fï`jH7[fÍ\ 4$\8e\ 67WUæ Ï%ýë\8d\1e¼>\ 3á¸È©\e\1e¯\!ò®è),ë\82Ç\8c\ 23+\9foL\8dSò4j\19/ì\ 64¹Hò$`\165\ 4oµCÀ³\1aCͳ\83¼E\rò\83\0@\93i\ 3\8a\ 2¡v)\13$V]j(¯£Í\ 26\8dìi8\984émzÆ1e]MOÛ\83Þ\84¡W-s½Ú\ 1\0×üñ\91Ű=¥é\1d!\ 39\11\87VÇrÄ`\98\1få\19\8a\ e\8f\ 46 FBà«M\92\91\0pü8ú©Ýap\ðtPîÂ\12ktºê¤\9cÉ6ÃVa0\8eE\16\ 1¶Q\r\96EézX5\9a&ñ\ eGÒEP?Ãn\97\ 1[Ì\90t¼ \89\1e,k#rV´aȦÃI\a\91iÂ$JG\\a\94À«Ý\1c2\1d\910Ømµ2\0\1f\95¯CÑýÇÜ\aêaù(ì\ eu?\8f\15@Û²uW\e=Ã\8cõ\97Qax\a\ 3;\97{\11_¦ðÉÎéÝPÀ-Ý9½\e \92Gñ\1eó6&ö+ÓJQ"Â\93\80ðC\7f\91#fxâ\vÚ-o\16\127áþvo\9d$\19Ê,Fº\897\123\ 1°á*4¹\a\11Û\9a¾ 4\1eÌ\ 6»¹zô\12@¸DËn\ 4o¦\95{\92°\8dët¿¬v}M^\8aêªlÀ\90c\1d2xÚ\91¨\81\ fËZø\81¾»Àí\8eÓÍ\94\93PY£}\13 Ù\ 4úO´#Ùü.Úñ\ f;fº\ 3|CL\eoÂo46\eî\19ÆçÊ\08N\96æèQñ\97ñ5G[YÄäcW~÷§}ç\Ô-!\8faßru\9d\v÷~#ûþø1\14Vºº<^|ãû+o|ä7o\9dèl\𢪵Ü\12\1dQUL\86\8e]Õ\80\860÷¤1àáºÍÂÚfØ¡j\95ßí¬v\ 2s~\90©\ 4\16¥5\14\10ä\ 1ðì\9fdÐ\ 6t\90ó:\ 3î´8"\82´[rÄ\86\84\ 3;{Z*ÓQü\11ÝDl)\FÀz<yÒÝ;·\eÞq\90í\86\ao\f§\86-\ 3q:Ø\v:Þ
+RV\r\11\ 3IÆ\1a\rz@\ 3\13\82\1eî<+\93ÀaG\a;XhíL\10\vCµ}°·É\90q¬\ 6o\1a\14ò@ 6æV0\aÌ\86§ó\ e¤(\ 4=´\12ìÎÃÁ½pýº¹¾\9cLMàØí\8aÕ\89¤ë\19¹ð¸VB!þ\ 3KÀ%½k\86ÞC:>\19(\19\99¦\86\85q½ÞƺÞPL¦\11édµëa]\96\99 \a\8e2ïÔ\9f?ÎĦ\b«\9e\88û¢\ enbÍÁXÎp\7få/§9F¬õ`v;àzhb$K5WLf\9cG\ 2i&´o\80fv\ 6\98n"Q-0ëÑ¢ÿ\92Ús t)jD!øø\9d\f\94\96\f\84«D\8fçn\17§@\15Ô\96²([èÚ\14d±ð\85rÅÔb²Z\ 4\9fDß\ 4HÔ<\81hÇ0hQ\1c\1arx\15`E3k`.W«ãµÛ?\8eÙU\9fÿn\aÈAE~#¼8îDä.0_\ 6\12o.\ 4\10ÅÁ\8c\95f&Ü \b\95kÈ-Ó\9b"¨wßQì>Á\1d\93îî\9d\9b£Á4\8b@\a\9eûÀc\19q#§ôÏ\ 3¾÷G½ã\9e\ 3cö\ f[\8f«s|
+ú\1f>$ZD\8cÏ}ã\9f½íªV|üÐ\v\9eñ\91,Àþ¿\1f½ØOQÒ²\87\12»3\8aLk\89\19NL;\eW²\87\12cÇj\9cáëÔ83²\87\12\eÕC\12è_TOùSÕSý9DZ\9fÇ\18×w|\83q¦§\v\94\98H¿½§|m÷VRû\fElõ÷þy\7fwÆ\19\9dJª÷={\bª\9eNjuZ\10T=-\b*ý¹Ôóì\rendstream\rendobj\r363 0 obj\r<</Length 65536>>stream\r
+!¨tñy³éTR½\1fÙCP\8dâ\93Úõ/î\83Q\16\ 4\95þ\9cãØÏc\8cºøTï×w|\83q\86EDîÔû9½÷í°\\9f\ 1\88þ\1e,×¥ÝSãÌ_´z¿m\9cyqõò\17°Ã´Ë{ãÌ\17\97ð3ÏxG8Ý0ÉÜ É{ÇMF(ÐIìHû§lÌL\ 5\ 4@w\14\87\8ej\88C\18u\87ã£ãZ\8eÕ®Qb\87vä\98ò>g\8avDhÔ&\89\84ÆÞdUND\8a-\8e\14-}\ 1/ÐÂ}PT\99oÞÁR\ f\v(%Ê\97\8c\83ùîeJÆ\10$ñU\89øâÐ]xÃ\8búj¸µ\8bôëÇ`\12¯E^(q\ 4C\ f`B=+\9b\f\94%¯Ý \83äÂ\87Ô6Pü\9d\ e\86 Nö\ 1Ùz0(Nd«\ 6ü\ fO*\13\93À\11\13PÇd-õ\ 5Ñ\9c=± 7\18XTf\9d$y4X\81sß\ eèhÖ¬\ 3\85]\14k\r\17&°Û\11è©\ 3\91\15\96\14í-&XG@dur\12£\9c\1f\123\ 3z9º\81Ú<\ 3Y2,\96\84\80tbÀb2)nn\92¬\ 3r;\a]×»\1d$Ðij8pA\8bp4\a"rÕ ¦Ô\ 1p{\18\9a\1cAé:4sf®òK\9b¼\8a;µjZvBå>zPÆ,FÎdaÌa\87\83)5Ë\1f¦a±C\88VMl\92°ö\ 5(\rÝ\111¿\1as \13\ 5\8b\10\rlÚ¦&\8a¦u¼t \r\13\ 1»\0<fÄYÝ\br`ÃÍêHT\1eh¥;\13MyØD\8dÎLÜ91¨?2ê01\92¢EBä\fÆÄ2â\18ñPXVà@\ f°Ë\ 3\136\ 3ýõD_\ eþ\fLè.\ f\85\90e\ 3<\ 1U\9bzo\8e\88y\ e]\1då\bi\95C\89%2\84\8a\80úe\ 4\9e\97§\96
+\19\14˹#ôPÛ!\8c\195Í<I¾¼2\1føL¤áçv"\ 2\95@DG\få0\8cE\8b\11ÇúZ\0í$a}ã¬\8e4\89<î¹\99\ eÅWxRS\8bî\99T3Ó\89\1cQ¾6Ênú\a/hi\86jØ4]¦ó\8fX\85>¬¡7`ÑÐí4\19Øé2zãÅñä9a\ 5S\aújݾ\aï|\7fé\9d{\e>
+Ô\18pb(ÿ\ 2¬8|æÿý\0\9b\e\87Þ\ e¨\90\140ýy\ 6L\0Üåþ\9c\1fó\9cc¿Ôxj\86 \ 1\ 5G\80Á©\a0\97`\9b\85\81ó`\8aØ\91ËP\9a\82\ 6Öwä\ 2ª\97 !˽è]Ã\ 2\9e\8a\1d\10X3´S\adD:lÆÀ\9a\0_ªÑî\82\v\17-\93\8brÛ\86\91\1c\11{\8f5-Ù\19\9d\19\831Qibâ >ëONRÓ¼:\1avY\8e\ 5ÄN\84r\12ó¡Äér\ 1\97§^7\18\84N#Q\1a×;hì;¨M£Îj\17\8fuÍ\91 \85\13ÉÝ|\9bØÔÀ\85\9bO\83;
+u$YV¸ò\bÎ\0»»\1a\9c0\Cl\80©\b\17\ 4¸\ë\13¨ïþ\86\9f$0$$3\94äÛ\81Sê´\97Hݽ£@.£\ 31Ú,Ü\85b\ 5n*:\8e\0+\89K©ö%¢tu\198\92
+2\90mú½ÀsóDàé\ 4\bÒ¨,2,/\82Á
+½A¦1ù\ f±>¿¸\ 5k&\b.Ê
+\88\90¥|\97&4(Üwü}Rôf8\98\1a¸\88#®z\9bÈY=dÓl\92ó$\9d\89¼¸n\9e\18\98Ý\80Õ´\98=üB±\8f\aGwÂìãÌY
+\1d\1aõ@Í\ 2·¼Â\bÑz\97ÀAµ¢\8b\9a ïyª\91~QJáFÛD\1e ãÐYã0\1dirr=%'\8e\7fs$Ü¿d\bØ_\87e¼äë-\93ç-\83ÓßF\e¾\1dÊpòβÞ\1ce]mÊ]î.Á\9b'"Ñ\80YåeöÄ
+P\19¸Ìå\1f°&}T·®\83\91\9b\8d.ÝAÔ/Õäã§DñyP\18öµ÷]U¡'Osþµ*y\9aÃI«\92"áЪ4\9a\aª¼³æÔ\ 5T¹\8c?fñÙV¡æ\81*Ù±Z\95ô}V\89ïh\1eª2\1cÝ£rØ\9f
+ÎÍß\86ο\17\þî\84Xúë{¾Áº4Ê\ 5°\12:Ù¨ñÚî\94ã3ÀÊÕßûçýÝY\97tJi\9f\18ÍC\1eªÄ·ì\ 2uA\1eêínÖ¹\93}¡yÈCÝ\ 4´OØ\Ò@!ÓìA\ f\83ÆZÎ.ìÏjkµp\ fí÷\82[ß\9d\10\8b]÷\ 2í\14ë{¾ÁÊ4ê\ 5úpMó};,ÛgÀ\95«¿\aËvi÷ÔÊô\17®âo[\9b^[Åܾ\0`©]ÞY\9b¾º\94\1f\86\ 2\85\ 3\89\bô-eT\85\86\9c÷\9fP!K\84æ\88BBM{\ 6ÑË-\97C\b'\1aÊ] ®Ø¯\1f'j°Zu )\a\ 1z\16\12j\85\ 4@/½z³:\10±\94\aä\81a\19\1c\fäÁ¢F\94P¢\ 3\10Ö%\8dSÖ\1eÚ\ 4\9b4ê\80dYCrÄ1ÃX5?\19U\95\1diÆ\8d\8b â\88\0,\13i\0½YÀ0
+z#\92Û¿vÒ0ð<+ô-*\86\98!5QïÜÏ\17\v\8eÕ¤\ f@\19\9eh\ 6\83\8d\99ÜT¸\0å\f )Z z¤\9aË\ eàÃÈB¦\1d7\e~(\ 6\84\90\fÇ\a\8f\16ÄWÎ$bO\8bELÐ2#{ ©\0è\97ûº/þoí\18õÅ\86Æ\87½\11»;»0`ù\8a²¦À¦êtzÞ¸Ó\9f=\88âì\16n\7f\12_^|ëûkoÝ\13ä\8aÁúÝP´ÛÿN\evR¹\8d\83\96\93ÞTl»¹\13å0Éýê)nÃ.b®\8c6ÓÎ\18\93\86½Îí\7f:'FÃþ\0>ª"\ 5O*\a\ 3_³¦ À¸Zã¢Öl\b:q\18±)Ò\1fÌ^\19y\11$í£ÏÀ\82\13Í3\89EíUs4\ 2ð"t"\98ºsÙ\87FÃÓ\88=à±ò-aGV\9b[Q\9cS¡É=P\18àÂ\84o\82áËôô\19ô&*¤L¥ò\18¡ÎP«jå\ 6q|÷\ 1dU2OóGÕQ\93ò\ e¡ÁO®Õ-Ê<ü×\8dñ\aàõ,ê²\94Ó.Å®±\88ú=O×\eéã§p5µ\a\aê\95÷]/«'O9ùÜÃ\1c´ö\14\95\ 1¹\8c\16À\9e¬«GØ»HàS8\9f\82ú\12\eÎòüð0{Ú¿)\ 5ZÝJ\95\ 2ÔÛqJ\81UÀ\99\9dè\9fª\14h-\1eU
+¬.Ï\1cÒî\84\ 3^ßõ\1dÕ«\10Ã{¯\154ég\1c\ f\1a¾\95\9a>CÜÛ=¾\7f¡Ç;ÅÀæ\952e\b\87Çm\93\158Ëqc!·éï©`\8d\93T¸;¡Ì¨ûBEK«\6tÝ<~\9b¡(¯NôÏjë¶ Üì÷\1aÒî\84\ 3¶ªgä0뻾£\9aÕ1.8nkÆ/\re\rãg0|»Ç\akxmøTKø\9b\97ô÷«[½¸¤e|\ 1\9bÏ:½×\18¾º®\9fVÍ\ eÅbl#Ì\99Xm\86açà¨AnÑ\7f\15\8e\ f>
+\ 4EÈ<Âmfbé¼>\ 3 uôòF\8dDâG\85\ 5\ 1\a«kjÙ\93
+=
+ô\8eÝQYÕév¢\86 ÷\v
+Fâ5©ÌhH\86\
+ÿ[u\7f jpÖ\9d\15'ÊS,
+ù&$8\91\15\ f\19fú\δª\981|ØSáG¸\9d\88E±\9799u&k7Ü\84:©ëOLLí\f\83õmPúZ#\ 4WO\9bdoÄ0NĬI\ 6'*\90\9a\v¦\0>\1eU\e£\99êQ÷éß\94Y¨\0Ó¢g mg\fr\83!p\86ÖTx$í\18\¹FS´Y\86\89ÏöK߬\80\830\852Ã]h²g:ã\89\83UÄõ´\ 3î®l_ã©\8c\90¼y*öHÎ
+\8a~,ø\9fC=\102¢l®aî:\b¸6¹S\ÁÒwL%!µû8íâÓV\9fþØ}
+è?\95Iç!(jÞ\9f4¡\84\7fÙÑMãò4d©\fª\90gêÚÇ\8e\9a&î{\8e³2\ 2\1cþì\11ÿ7fðgÖêë\18\8d.6\81ô{`Ë\19I\0_«Ì]\99\1f8ÿÄ\83\bj=F<5bµ-\8d`=Ô\ 3w¢Ù\90ñ!'*?ïv¦®\89@¼÷\11ýtù åT+\ 5³\808fÎq[u\19\8cÊï\8f:ñ©[QyO\ 3zý¡ÜÂQ\væîv¦E\99§\ 3¼\ 2Ò{±ãîöÁúÓ¦\89pæ®Í<§¾+Gã+9G\9bf\83»\9d©ë3P$Oã°÷ç\9eæä\ fù\19X\r_ð@6ÙVu\ 3ô)=zsx§{ê\8d7ʳ\aE\93)öäÅsýÂ[ß_{ë>²\ f\v\8f\a\96\0Tþ\96j\8bÜZ-O_0¡"\95w4Ç1#ð[O4ÇøOÔÉø7\11(\1e\9d,\ e\15¾S²ä$Ïúç\9fØ\\0óÒ¸úÝ\b äz\8bìÎ6Í1ÿ\13q1\7fG=4<\89÷qm3Þ9ôj7S0\1aÊ\ e\18\v\8eHïâ\91\80cùàFD\1aÖºeéøõ4Ï\14NTÞÝ7OU4_hò\ 1p\8aêÏëéÄ\82ç\9fäÝMóO|#D\97Ùm\10çm²hëÞàJ\8dû;æv¦\ e\83®w\99*§À\95=æm2êa\99\11\8aÄ'Äd%Ý\156\12µÌC[!O¸\1cyãÝïº - {\92õ=O\17Ã\7f'*Â\ 6\10õD\96¥U
+ô6ݬSÿú¥ÌD®»ä\9bÔ:yðîiÓüet¢®ËÈQñAÊñæe¤è\90îBÉûBÉ\10áÎm /²d\ 5s\11\0\91#4Ôô\9c\ 1CÄÔäIèVû\821W\85×\98\9b)y\7f\86iæ<{kã]çôÆ{¥æ3WþïL;4FM\1e\1d"4\ eò\84zº æ\9fü¾¬±\19¾Q\1aëVY\9d9Úº
+\1cÍ]\ 5\9b
+Ð\$Îð-\13i³\9c¯\ 2û\93\97\12B·\8exj´¿kwæ¾Õ]\8f÷³ò\a\0*\922y¹ëïYµ\bÅvúç!¾j@O\1e\13íö¨\97{åÅ7^\95£g\8f-^ü5\97µVJT+\95,Ê?ÓJ\15£\a ¼\98\84¦µhZ\8e\96ºz60E\8f\14¨ý\9b\95Jk1ª\95
+uâ\9c\95Ê*·ÍNôOUÃ\15\9aDÕp«'7\87´;á\80×w}\87\95*\86{ÌÀÌ\98´ð¨á[A¾à'VªÕãû\17z¼·R鼪I#F\ f='\7f\9eí\aq\81Ïéïiñ\8bgkÄêDm\15y\ 1ÐÙ¼ªI\ 3\154\9dI#%\ f£`\7fê\1eáoÛ#ú{\riwÂ\ 1[\8dN^\82뻾ÃJÅh¬\93IcÏø¥¡¬aù\fIp÷ø`\r¯\r\9f[©þâ%ý}+Õ«K\1a¿\0/h\9d\9eT__×OT\11æ ¦\ 4»D\8a\80\ 2Ã"»TG\r¨\eE a\f`\92§\88LÙäeÄq#eUî×X¨r\13\ 1\ 3I¾\ 1%\97\99{®ø\17=\9cIe \9bJ\rºA
+Â+ô\96\aJÅ\ 1+UdMÃ\98\1c\r\ f\8b\98U´Ü±k\99§×é°TüÀÜq\85H8Ò,\0MjKÝà\99i(Á&®\0Ë`a#"9SÆ\8b²\1f-\95\83U *:e\bX2{ÀÈ|9ð*úÂ^Î6L\16B\eíÔ\12\91\91qÖó\e\ 3uÅEº\96\ 1ECÊ\bZ
+M¨+Ó\99Æ\8eÆ\96Õrn "}p<\80h>²M\11Á¸ñ\91\1dp\bSÐ\ 3B\82\90Pß1Ï\ 2\1e\8d×fëjûÛ´_úÙ\96ư["ÝWÍ,M\91Cd½\90 \1c\f×k Ê\94í\89\164CY\14RÄø\ 6\94ð\9e!¨I±À<\rUK\aSUï¨L\¸\9d©\ 3õ\10°Iñ\9e8ÃrCà\82Ë\88\92ÅÒÆ\7f³mµ\1aÕ|@\10I"néÂê\17Î`p¡á$´sª\r§wÌò°³%P,Z4XÊ!\aBX\ f¼ÍZÍT^Í`ky:Á[lÅÝ
+S\80B
+aF¤Â"\Û\99\ 6hó\83XòwTÖ\16¹\9d¨ÇPû\9c¾&uC\8cã/¡EÃ\ fÀQ¤â\8aÏ\19e\965\87Ê\11\9bn æ¼z\ epå\15ÓÖÇ=ÓWÅP\8a×à#M:VÕ`RyTè}Ö nèËBòf3ëÐ#m;Î\8aW\88\0> Õ\801¥\95ýÂÐ\10O\8aê\1fÿùãD\857ö\88z\9e\17\15Z}\85A\93ûZQ*\99\15\93\9b\8d'2õ#Z¼:Ç\93¬Ä\1e\v\98Pð\8dN\0|lâ¤çgÌ|ôIû¥\87/L\1c\7fk\88ðg\ 5¶\8fØ=\9ehò9dD<¹\9eÊL®Û\99*C?BS¾1\ 3`ö\94_\16ç{S9d?¦\ fs9p{½ñúzö v[\7f-\99ãÑ[ß_{ëót\ eÏ\rfd.w¹\1cÄ^\8b£òæ\19\8aASXù1è½¥\89â\80\8b\84®BÎ\88û/Yð\15\11t\10§³8\exÜ\88g\9añ@ì\8b\13\95üòv¢F\ 6\89±Ï¢ Kô9\84ÌÓ\84\90\1eÀ\190\ãÕ¸4\87BXÀ\ 6§[XÈPýÁ5Ñ÷5\812\95=õSK\88/\8a\ 1\ 2XG¸
+\85&Ç¡«a,ÿ\e\13ë9
+\15ZT²>Õ~\82§-L\ 4YJ\8d\f\ 3\187ÓàA *;a"\16Ð\88R53\8f÷[\1c\16Dw½\97ó¾\97[´¢\15®eE\19bE³¨\9a°¦³\13»Ýþ¬\üSç,k^!ª\18iT\1e\88Òí,\17UYÌB¨ia\94"\ 6\88Ò±ÈV\9a\ 4\v\8c\8b\90\13¶\90S\96i\7f·,yÉR(ÓÇ\99æå«M\95yn\14\1aKQ\a\1a«\99´h\17fèÁ"\92b±]aUe\18>\94\1aßÒp\84& åå\92Ø \1c\í\91«§
+×Ü\99\82\86ûìhëvÃ\9dw¢ò&¼\9d¨ÉÒ$\85\86 Él¹J¡q~¤÷¤åHòPÈ\98_ºÓ\92b3á\80*ËAÕ!m¹\ fòõÈÏ<\10ÏèåL\91§Û¥g\82Ò¤òü\14«Ì\1dÔ««B¶\16<\80Ûu¨§\17\82hUÓw\84$P\a½\ 3ëÚBâ$/èM\9b\17\1c÷a¹¿\fogjQÀ4}\8f
+!ð¤À\e©û]C\913r¾l× (¯:\85\11>Ùy¬Z\9e\176D\98Ë-c4\13\95è'ð-±ûìÞÂ\f\8d3É.¸É\ eÎ\97áíD\95{¸\86\9cté\ eÍ\s\93~Y\9eoÌ-¡öòQrÉÒØ\9e<&\1aaº¦/¾øÆ«\8eøì±\17óK´\0«\1aëR]\98²!\15\ f*{±\8cM£Ù4 MýÎÎV<²¬öoÆ:-ñªÆ:\94\9ftÆ:+\b9;Ñ?Õ\1a¡¥)Õ\1aae*ç\90v'\1cðú®ï0Öi\9aóÙX7þ!þÒµá[\91åøÌX·z|ÿB\8f÷Æ:\9dWµì ò²³ì¤|6£ä\ 5Vª¿\97áól\94)\1e¯Ôö\85Zv¬|/-;(Ìë,;¹zX\rûS÷\b\7fÛ\1eÑßkH»\13\ eØJÿR\81_ßõ\1dƺ\94ï¡K÷\8c_\1aÊ\1aöÏ\90gw\8f\ fÖðÚð¹±î/^Òß7Ö½º¤å\vp´Öé½±î«ëú©±\ eÕÈ\89Mr2Ö%d\8a\1f¹yU=!\95SËf\ 1j\1c\0\95B\8bêQÕ¼\13XI`\8chÀê\ f\ 6!\1fx\99¦¶\82°\ f`\vr\13l\1a\10>¡K´©QwÒ& |\8aÉ-|E\99È\19-BüÇ`ÊÑè©ëZN\ f\83\ 1\88¦æ±\0þ¤ñSàèLÉã\9fÈDtWvsZe2Ò\96˹!Ð(Â*b\80¬{ùÂ4\91_\19꣡@9\8di1Ë\aÓve/Æ)\82§Ã\82M\1c-BÐ\1fv*\1c\95\9b|\13è)Gö\ 5Þ\90ê,(\e¡Áq,%k}\ f\14ÈL\94\990j«Æ\ 6\1c28¦ñm\añ\11÷"?Ø\ eË\1e³ÿo\ 1\98ü\a*\94®Q\1cUhòKW\ 2\1eÕH1\1a\89\13\9a\92\f\811\11\ fC¨0>VÃ\10\0\14m\0àBd\91<ºui\81ð´=E'*wÊ&\88\ 2x$nQ¼Á
+ì"O\1dñ\90\18\v3Èiwdn6¦\88I!MU+\16\92áÇ¥\1e\96>\ 1Ù\7fo\14o\83Í\80\f°\12À«% ï\fò°5HÝ\19ÙûZ°\82=\13\81A:\13\95¨Q¤A\94\16Y\18\ 2\0\15\9f-$Ë\8cð´}\\1cÕö\89#À\9b,Ó¡oPËo
+\8a3ȱä0Í\83(\8cÌϰ2º\¹Ð)\0±Êo=/ðe+üQëOKªîl\ 13³ÌeôæÑ\13\97}#?|ö \94þúÔúó¥·¾¿öÖO¬?\19~¥\11Méé\bØÇ\99\8aÙ
+o\13\82¡è*\0Ä x Ûó¬HÊî\1eV{{·L0Í.\83õ\88 §\0\90 %\9b͸EU®dS*H\94*q\ 5[E\94ùÅ\92\87Âo\9chzùoÂÜ\9e·\13õ@J\18Åò~̰\1dúdª\8e\ 5øìj* ,\17ÌA«\9e¬® LÖ-·GÍÅký\8ei9û\0&Lñ.\KÄ\187\8d\84\96\1eáÚá\12$\ 3ÂÉ\1a\81DÞ]Ôî¡&\15\0a\vÏÝ\80´©Fæ½i:\r'\82²ªÛ\89*¯c\91M¾Bñ8yÖÀz\1eí\87e\1að\8cÇÌIÿ)×R/Ó62áú®q2£®¤2o-Äî\1cv9\8e¨u]Yв\ f򿂱\98¨(7\81Uþ6Í\16Û\13ÖWz*k\98FÝyC¿\b¸T¼¨a?Òf \11e9éXÚD¦E\90e+v\91\10\95}£½\9cxÏ\82\85!ã²\r¾[2(\8cÇ\b=\1eE\19aUH\r\98·G1\ 6\9c4»\8acä\96\13ZYl\94 KýLÓÅÞ\ 4·ç=5á"Lºó\ enp-\ 2Û\8d+k\ 4>ýq\87\86\90aÔEw8\16\ fU|ùuåÎæø`;ü9SD-÷\1c-\ 1s:6\7f\9c®bî\93ÇDÞE0ò\87¦\88/½ñ*\ 1?{ì5SD\ 4Ïk\ 1N&ÆüàçíG<&þ)þfvJ;LÓç_\95\95ÒõçAg.w×0ËÃ~\1eJ³\ 6\19Ñ*Àש±#\1d\1eÿTc\17æóü\v\1dÿü¡?é0æÏ5\8eý<Ƹ¾ãã\e¹\95ßµ<\f\vAÚ!c¥ÿ#\17B¾´û\97:É\9b¨C\9f\1a\1ff§ï\9fvª\1f¶\97Óæ\13¨lHé3\ 5\13\\8c\ 2ÿ0\9d\93\7fé$êOõºóç0]q?\8f04Ý\ 1\84\8dÒù<\1a\17jÂh²ö\aNóz^ÿâfÐ\9fÜ\fü¹Æ±\9fÇ\18m\a@\94]ßñ±ZZ\8fßUK)ûöñhÍîÚ5;>56ÌN\1f¬Ù¥\1d&ëCSÃ_´\84¿oYx} Kû\8aq\ 1ýVÜ7¿±\8e\1f\ 2\Ð\eŨ\19Öè\ 4Z¸¬-²[Ê\11\1d\11.E¦
+%\14Ô\8b(¨çIÈg"\88¥#\82ÛÃ¥}#Q+\14 t\1c\ 3\ 2@<T\88!1W\11!"ü¢ \16 \96\98ãK\90W\9eáNZ¤_?D\bQGên\96`ïÐf]³¨\1c e5\91R'O:b×\1a+\11®\ e`RUè\16£
+ã\87\84M\1cÙÚÍ/\8c\ f«
+Ò*D¸Çrà7TÓÀ@\8c\81è¯\11ed\18ï\r"£¬áÌ\9b¤®F\80Èl\9fÖ\1cé§_\8dI\94þ\18\11?º\7f\18\96l
+-\18!ë!8Rëêa\92þ6q.ÑíD\9cK\89W0\ac/øuc||GõôBQ\10\9a\10Þ cW\ f£\ e·Ùü&ûÌÓ zãF\7fò\9cl6Z¸ú%\89æ\95w¾¿ôÎ=9î\9es\8b\98µS9Rn¹ó^Ù`Êß"Â%_\a\f\11XYÆ%a?\1dE7\ fü\844ó\90¨,\ 1Dô,ý±\84\a4\84\8aò¡\8dÑ\0Q´ÛÈ\18=l\f:ö#ëHé)¨òi©\9cHû´8â¡Ö)\9c\8d\b-\90\aírDû>¢Hlô\0Ë\91É©\91² Èkr\80\ 4)\8a\87V#ñx¤æ+9³7Gs»xÓ\84{\94®3G0GÔ\ f½ßÃ\93$#«r)À§ï\9a\8du ¬/GÙ¬m\13ç »y"¢"!âã\ 5ÅÖk®êuK<9LíË5\13Ô\1aw\9cv§\88±°²ê²ÍO¼ÞE\1f=Õq\1f=8G¯½ïzC={jÎÉç¨\16ÄcQ¹\9fîC\95û\11ð»åþ;y{
+âS&?\96L¾åöä\11òÔ_I¹_á_(÷çä¡éÔ\r2\9fç_*ïèOÊ;ü¹Æ±\9fÇ\18×w|\83Ü\9fB¿\97û+«IÄk»·\8cèÄç"ÿêïýóþîD~\9bJÈ\8bÈ\8fØòb\8a'9-\967\957\9dä½õ¼\16ýËS^Ô©¤¼\98Svò"ã3×óúW×5Js\1fh\fç\1cÇ~\1ec´Å\87¼¸¾ã\eDþDCÓI^\Ó{ß\ eËõYÝ\84Õß\83庴{*íÿE«÷ÛÒþ\8b«w|¡n\ 2»¼\17ô¿º\84\1f
+úÒ\83E%Adið`Ȳ\96ne¿\171\15\83H£thÁË\9b\84\bY\16JrÄ\88rÝt±ý\e\ føK*Lt\81Ñ\82ÍÊ\11¢²3cye9P\93¡ 3\135 \19È#Ûeh\81³T\19ï\ f\13$ò]\89º\86úôå\80è°IÈ©\84\ 5Î\93\80\8c'\1f0\ e3\eCªÐx]D¬¥#8\92<ÉÈ÷Z}»Öͪɪ×\ 1©¼\94\86\ e\8a-a\82?'¹
+Qá\8f#ë\9dæ¤a9\9eµ\10\88W\9a[\94\9f\11ä)FôÁ?9Û°ð¢u=´@㢴éqr4\80u\1dôoX\89\85ÊÈSú\14ºÅ\ 5B|KZwT\96Kî§)°$í¤\18Ð=µ\1d\82|!&\9aÕ¾p\ f3 \11_(?u\8d\10\13ר\9e£4EÓ\ 3.\1f\8bê\ 5\1d5²TX5\12V\ 4y¾S×!1#&\92\10"\15ù\v1Èñ\ 6&1Ë\ e` ¡\11\ 2#\a+\8dA¹\94Aâ9Ì2ê\95Á\86Â\ 2\1c Aü\ 1¹×gZ\8bD¿pDD<5\9102,ç,^U³ÙË1Þ1¨ì&QS\19G\97ú\90Õ£²\17\e"ÌÈ\9fà<e
+ë\89\888rJº\93\bû/a(x\ e\ 2\82Ô\1d)X\1d\10|í&Ú&v½ÍóèÞ:I?\1f\1dæ\8fyÛKÊYFÂÆ\eJ\11Â\ 4¿d?øgl¬sQO\fï\8dÌéÉs\8039ôÁ\8bröõw¾¿ôÎ=9\9b?úELº^Â\ 6¡\18\85æ\89àHÁ|k\15e?\8fÊ\e\a\f\9c\95Ú* ñ\92,$Ölî²\b\8c\91æIs7þüq&bÛÞN´Nu&³\8a\vwc³\ fËǬ\8cG\9bÅ<eÝÊ}Êùÿ÷\18`ÄÌéϦb^\ eh^\8f2\ 3\89g`µ\83\19>\ f³'\1c\ 5ì\17Q\9fÊßQVSó\8f\12Êä\10à\86ºdFÈ2jÝDòVtÂû\17\9c\92éè8³£³\9e(¹\1f"IÈÇ\ 6óÚë19\eÔ?( \9b²ùߦeä©óÆQ7\ 4\19ç\99Ù*AG:
+/£Ù\ 6\0/T\98+æI\8c
+ÐX+ü\1aG'ã\ 3l%\99t;\14»\ 4¥?\19([[¼Ü'\93ô\8b7\98\ 2ûïv£®Ë Õa¡<9ÒºÂ\16©0&Wy\12±]\85\14¬J3Ò±\ f¨7ä\1\879©\ 49 «\19¬3\82» \ e^\80\88¡Ö
+\ fmÝàcz«Û£K}\13¡\93\1dº$
+Ð\ eåNE\84Í}&é§?X\93\88ý\rC¢\7f\96,Þ\98\1e\82¶e§{\92c\8e\8b\b(%¹(v_ó\8c>8Ë\7fD«&?Bü\91c+t对±\8f¹Ê|\1f?%Âß\ 3\ 6øÚû®âà³§æáþ\«.%N\9a\81²ªU#2okÕwÚìTs§Æ{,\8dwkÅÅ\ 3Mj\ 4.µj¾NµêR=¶£\ 6ÃÏçù\97ê\15ú\93z\ 5\7f®qìç1Æõ\1dß Uç\/Zõ@=¸ãÚî-÷ú\19^üêïýóþî´j\9bJèe\bdÞzY.'}¨¤9\7fÙnQ®êI¯ZÏSçââS/Ó©¤^VjtzYA
+Ñz^ÿêºFaî\ 3þ\ãØÏc\8c¶øÐËÖw|\83Vmûn<Z®ûvX®ÏpâW\7f\ f\96ëÒî©Vý\17ÞokÕ/®^ú\ 2><»¼hÕ_\Â\ fµjÆ\8c°\8e
+\1d\ 1\8da>Ä\9cã\1d»\88
+Þ4ìÊìMîd¤Q\ 5FtU\86£Pe#è\8az\ 4\10\19\88\f-\16.$\_\8dY\ 1$=©ªæ\88G\17\91¹2Aö\10t·Â\vrbü\10ø\89Åì\17I\1e\1dpÕñ»\1d\WÔ\80\806\85\88CDjî¹È½ÿ\1e- \8e\90\80C*\9c&\16\ fÆ~`f\1cÑ`@l\8d².\12Ö»ê\99Q4I$\83!k\ã0¡<±Z4&4°hÎ"ýú\ 1x&EFtí\9aE\8aÖ\b´j\19)±\14³Ú\1f\80SÕ Ï±\9e\8f^\1féÐ\842d`iú\10&J$»t"%\8e%GÂ\11³f?ÞNDÈÖ\1dýM MÎ\1eäX \\8dX9+6:|E\9dê8
+UÁÝÁ -^_\15¥¯\10;\88È;F\17m\92\f\ 5aHLk_Ä\e·\99ʱ\8b\98W}¡\8aò×Àåt$ avb ybT\ f&\83\90+\92\ 1qè¡°Ok\ 6ýC\18ÃÐ\0\1d
+³4d\b?"ZÕ\94á'±\ fgn!\11p×\1dÇ\8dÂ1ÝK\9eÔg%sG\84cSîù\7f\o¬\84ÉoZo\9d$\19_
+\16bµ\882G(Â\18N-\99\ 2\r\8f\94Ú;PÝÜ\91è"£&à\89Y!W\11ú\97X|\1e_\11\87ôËÈ4&¬B_(\872Ó\88ýÚÌÒs\84Æåâ>-]Å|x@\10]h¢5r\9fP"\91Éo,ÂQ\vl\a\8cd\12pâk\ 1y\80\8d\88Á)\18{ÍQ\85qG\82!\94f\913\8dJÆÍ\13#\94Í\86¯\10Q-Ñq\18PÇS6µ\9c\83À¨DÈé\84ÙÃaBMºB.\86\18ea1Øü-\8däxÝ\ 3\9eø\87<Ç\ 4\10{\9b\89¨K\84fZ¢~Ð\äÓ½ñF\1eÿä¹\10\89 vW'üÕw¾¿ôÎ=9û\9a!~"¥ø\9a¡#'\ 4\183:ÓtAáÝ ·°¨;,\1eÀ\8ds ÖP1õâ4 \12ï\ 3i±\ 4é\85M\90øµz \b\eÇ]Í\ 2g,\98j\e½ªeÀ\93ö\81ØDT\18,ÂÊ Â\10§§\93§Ë\9dÂ<\8f¦?¯y\1eMæ\e«¦=\89(B0O\7f`åVGñLb\13\8bæ\8e¸ÎZ4\96³_:I2%ÁÊgn¢ÞLÂGí\1c2\88S¹«Ù5\8a\ 5\81\80+N®\194²Ú\93\16wuD8ä\11²\8bW\145ôä<\19ýæéy3úÍýóbô0\142Eg?\8cT\97z\90%$!¥À;L\91(j\86e\9bÕh±S4£\19wN\93ëó\1f\16\85´\eL\16\14uQ<Én:ebwwâíD\94\8fDÎ5rp5\8d\1971-fÌÒ.4\ e \87É
+\0\89ëY³\80 Ç\14dµ\10\1d\92@\96Pà/÷\7fZ÷?£py\9d®v\b6n\14Z\918\81²\8b¬=h÷p òÐO½è\98ñN\1aÖçf·\1f%é\ 48\8c¤7YQ\16¬â\13\þØA\87\1aûÀ\rïŧ´Ä'X\8bC¯¾\1dP\94M\18C¾HÊ\9eä\85¶M\94\f\17*\82Ý\83Í\13¼EZ\99\83»\1d {ÙÎSVñB$#\82\97r\ f·8}ðw|x\92t\15´,ðn\87 TÅ\ 2é+\rÞLæ\b \10Ñ\88\7fÂêÅA\8dâ\88D¯\99|b^%\8d\b\ 6\8e2o\9c\9f?ÎĬâà¦e\86\81àe®=\1cC\94é®\1cñã¸é\17L<äê"ìxæ¬R\8aÆ\9c\9c«\ 2òñSÐD®×Èkï»ê&Ï\9e\9a\8cós\13OíÇ4ñÔã\98&\9eÒ«3ñÜ\99V¦Íe\9a_\8ee~Ù&\9aîQ\1aÙ±\9axø:5ñÔá\81\11\es¬æóM\r\8cxG37\92<Á\9fk\1cûy\8cq}Ç7\98xJË÷&\1eÙ\8crÑ=h÷\96Çø¬öÇêïýóþîL<6\950\12È¿ÎHPúI9ïaÎ_±¨A®êIÉ_ÏC§Õŧ\91@§\92F\82:\ eg$`\11ùõ¼þÅ} ?¹\ f´Ðü\1cÇ~\1ec´ÅÇ%²¾ã\eL<\85Ð3'#Á\9aÞûv²\ý³2\1f«¿\aËui÷ÔÄó\17Þo\9bx^\½ò\85\8a\1eìòÞÄóÕ%ü,ù\1aR ¹ê\8e¦ \82ÂJs³bË\8b\b}Ì\84\vT-Æ\95ìIM\8bóÊÜnbLêT\93u\11\81È\9cn\9exh àM\ 4ª¯9¼ U\8a&æI"\840èâ×\ fOÄH\a¶\10ÒÍL \14ñ¿\b¥«ù\89\82c®\fÒ\0\91\90<$"Ø@\ 6\ 2HmÕÌ[+äíÙ
+U¨c\1fH.\98\92NT((F¬\1e\ 1½¥¥£8\92\f\r^ª0\15(mWáØ¢P\vå\1f\83Ý\94Öµª\9b\fm\133\9d\95<\ 35O'\9a'\ e+ë¼\88\8cneÁBXf*¤\rO\ 2&P\84ÿÉ\11#Þ,s¾;[˰_:I§á¹5ÜĹ\ 5ÎĹU0+ª>\ruÝx3ËÛí¡ù}ÿyb\81\8aCé\16Æ*\ 5¹óÓs}ü\ fE\11\10xþYTË\12\84 ®Ù¤Î5?\9dþ7\9eÔ'Ï\ 1ÑÙj¡]\14õ¯¿óý¥wîi\7f\94\14ì¶@\1ak \800®\v;\897O\9c{ùD\84Æ\vs0¬C\16\93Õóõ\0åu\80òòK¯v¹ÍCÛ\998Üÿ\81$-\1f\90õ\ 5Qø\b¶(¶\e3Û9>(\17`3V\eR\89\10ï\95x(©)\19Üh²\14dü\8bnçI\9bõ8⡵RðÚ¦\ 6\84hq\ 4\9eáµu\82òÒÏ&ñæ\89î\ 49bVØvN\v}Þ\18ûý \9a$ð\1f\94}¸k·\16cõæH\9buo¢\e\9fã\ 5\8eØfèÆúbD?\18·\ 1(\9cÈÓ\9e´\19\90#ÊH»\9c]×ÛÜV\ f¶ß¬\97\0-³1ôÑïÌ=a5© ã4\8bn»^\1f\7fÂ\1c¾®yñ\98Öt\7fÚ\80ö§»e®ÆU.øø)\11\10\1eð\85×Þw\15\19\9e=5\8fÜ\97²U\11ZbÊW\8b}*_-d§|\9d\95\9e¥\rMÅèX\8aÑV\9e\82GÝbǪ|ñuª|õè\81®4Íy>où+xÇL\81Á\13ÉgÍîç1Æõ\1dß |µ#Þ+_"\b÷vÔk»·\ 2iî¹òµú{ÿ¼¿;å˦\12â{\vÍ\89ïZñe\8aÍük*¯c+¯^üÞÏCÚÔŧø®SIñ]d/'¾÷è³$õ/î\ 3ýÉ}À\9fk\1cûy\8cÑ\16\1fâûú\8eoP¾\18Æ}\16ß×ôÞ·{+Vý÷+ý=X®K»§Ê×_´z¿|½¶zGÿ\ 2P}ÓKò¬|}u ?ô¯7\ 4\1cªº²ýë\r\90a5{\aSCºÙ2k&@q4¸¹4\82\r6L\r\89nôàõ\19\bÇENÝ\92IQ\81Pþñ\14VxÁc\93\92\82>ß\98\1a§\86eiÔ2^Ø\rnr\91äID\1e«8²ÚÁ³§ÆP«àÞà²Ñd6\11\0h2m¥\18à.e\82Ä\ 2L\r\95vØ\f\ eî&\ 2\\83\83I\93Þ¦g\1cSFç\8c÷ 7Qg*Ë^ïv\80ÁU\7f<Ó\9fú\89Rô\8e\90\81\9c\88C\veyâPÐ\8fÖ²\85¢Ó#\81M\82\91\10új\93d$\15ááG?µ;\f\90\v\1a å.,±E§g\8bèl\80¾5\12\92\11\8b,\ 2l£\1a,\8bZö°j`rµ\18Ü"é"\98\9faµË\0obH:^\90D\ f\96µ\119+Ú0d\9ex
+a\89\1eTg±âåà: \ 2³vsÈtDÂ`·ÕÊ\0|¤C\86¢ûOs\1f \87声;Ô\0=V\0mËÖ]mô\f\13#\F\85á\1d\1aØ9Ý\8bø2\ 5QvNï\86ZnéÎéÝ\0\98<\8a÷\98·1\11`\99V\8aJ\11\8e\84ì\80\83þ"O\8c0è£Ýòf!q\13îo÷ÖI\92¡ Ã5\9eÚÝHÌ\84ÁF¸«Ê$\r\11Û\9a¾@\90\11\b/¨É \1e=¢#\8b\96Ý\90\94Ad\90EÂ6®Óý²Úõ5y\88T\85«²\ 1E\8e%É*s'¸í\86Õ\7f ï.p»\ f\0ÿw]DÔlß\ 4h6\81~ë\13íH6¿\93\16Ñ\v à\19+\ 1W8ÒÆ\e
+_hlv(\1a\9f+\ 3à8É0\82U¹À×\1cme\11\93\8f]ùÝ\9fö\9dsQ·\84<\86}ËÕu.Üû\8dìûãÇ\84\8f\8dü\99çü³7¾¿òÆG~óÖ±-È\1a êU"Ô68©\ 3c\1ad\17P\rh\88PO\f\1a*ã²Í&é\97îPe¡»]°b
+0Ñ S ,JK) È\ 3\10Ú?É \rè Åu\ 6öiñD\ 4i·ä\88\r \avö
+CÏ=Å\1dÑE\84É á2\ 2ÚãÉ\93îùÂrÃ{\ e²Üð\8d5r}Ã\96\11ó\13ì\ 5\1do\ 5)«\868AßÁË\8aB\ fh`BÐÃ\9dg\81\12(ât°\83\85ÖÎx\7f\14¹\83¶\ fö6\192\8eÕàM\83à\96Ìè\12\16\89¥\ 6Íáé¼\ 3*
+A\ f\84yçÉÁ½pý¼¹>xó¨§vÅJF\82Ä\x\+¡\10ÿ\81Õà\92Þ5Cï!\1d\9f\f\94\8cL=¢\9c\8b»ëëM\96\8e»Óµëa^\96¸BFò\94y§þüq&òö½y"\90¿\11¬\847X\ eÆt\86û+\7f9Í1b-\v³Û!ï\8c\89\91\95e\9b+&3Î#\ 1h5Ú7@\9bv\ 6aU\91¨\16\98õhÑ\7fAí9\10º\f5\82\10äw2PX2\10.I=\9e»]\9c"\96ÙR\1ce
+]\9b\82ò0|¡Ü\17µ\98¬\16Á'Ñ7!\125O Ú1\fZ\e\87\86\1c^\ 5XÑÌr\98ËÕêxíö\8fcvÍç¿Ú!SNsë\0T\89¤50\1cË\97\81ø^\b!\8a\83\19+ÍLÑÀ³ÚHó¦\18êÝß\94y\9fà\8eIw÷ÎÍÑ`\9aE \ 3Ï}à±Ì(}\9bÒ?\ føÞ\1fõ\8e{\ e\8cÙ?l=®Îñ)è\7fø\90h\11\ f.\8a\97ÞvU+\9e<ôuÏøHu\1agz©Ó8Ó³\87\12»3\8aLkÉ4\9c\1cËp²\8d+ÙC\89±c5Îðu*\b\8dì¡ÄFõ\90\ 4üKÕSýIõ\94?×8öó\18ãú\8eo0Îôt\81\12\13é·÷\94¯íÞänú\fElõ÷þy\7fwÆ\19\9bJ¨÷={\bª\9eNjuZ\10T=-\b*ý¹Ôóì!¨tñ©ÞëTR½\1fÙCP\8dâ\93Úõ/î\ 3ýÉ}À\9fk\1cûy\8cÑ\16\1f·çú\8eo0Îh)\91³z?§÷¾\9d,Wþ\f@lõ÷`¹.í\9e\1agþ¢ÕûmãÌ\8b«\17¾\80\1dÆ./Æ\99/.ág\9eñ\8epºa\92¹\81\92wdì*\84Ö$v¤ý«l\8cÜ>\ 4@wÔ\89\8e¼¿ä+D \86ã£ãZÖTú\18\15<´#ÇTïóÄȳáI²FìMVåD¤ØâH"üP2Å\v´~\1f\14Uæ\9bw@b\1d\16PJ\94/\19\aóÝË\94\8c!Hvj,Åà¢xÃwÀ~\1efç\9b¨¾\83I¼\16y¡Ä\81
+S*º \\1fê\9b\f¤}ÔnÐAráCj\e0Bq C\9dì"Lý\9b\ 6\83âD]lÈTò¤41 \1c\11\138d-õ\ 5Ñ\9c=± 78¶Tf\9d$y4DuîÛ¡\92»5ëÀa\1f\0äV\89¤\8a\88\14è©\ 3\91u\96\14í-&XG@d¡r\12£\9c\1f\123\ 3z9º\81
+=\ 3Y2,\99TY\bG.kL&ÅÍM\92u\18"Q\ fº®w;X\8e¦©áÀ\ 5+ÂÑ\1c\88ÈU\83\9aR\aÂíahr\ 4¥ëÐÌ5s\15_ÚäUÜ©*µ!m¹1l\14Ýi]r&\vc\ eû°\1aCjµ\80a±\ 3xß\92\1f\8c\84µ/@iè\8e\88ùµ\98Ëzh)"\99È\7fCS\13EÑj^º\84\86\89 ZO\ 3\8f\19qÖ8\82\1cØRë\9eDå\81Vº3Ñ\94\aGdtfâÎ\89\1aäʼ\18\19&FÂÊV<\831±¢8F<T+\ 6\10ô\0»<\80\1c1\ 3ýõD_\ eþ\fLè.\ f\85\90edø\ 3Pu½9"æ9t\rå\88XÀÄ%2\84\8a\8c25\84\9e\97§¦
+ ôåÆv\ 4ú5×4+\9byRù\17
+\18\96òD¤áçv"")WDG\fÅ\0ÕàùD\8c8Ö×\ 2h' ë\eFÒ"ò¸çf:\14_áIE-ºgRÍL'rDùÚ(»é\1f¼ ¥\19ªaÓt\99Î?b\15ú°\92Þ\10uÅvÎd`§Ëè\8d\17Ç\93çP\82î
+ üê;ß_zçÞ\86\8f\ 25\ 6îIå_\88¦\80Ïü¿\1f`sãÐÛ\ 1ýB\8c\ 6£Ò\80 \80»Ü\9dóIúE\16Qã©\99lª¨\8a9\fN=\80¹\84¹YJR¦\88\1d¹\f¥eh`}G. z \84eæRô®a\1dOÅ\ e\b,\1dÚ©\ 3R;\ 5ò\v°&À\97j´»à\9e\8bN\92mÛ0\92#bï±´%;£3\ 3óQ{\9a\988Iå)T\ 1Ô¼:\1av\13ÌF öpL8¿|(q¹\pÇf»÷È\8eIºÜAmßAm\1auV»x¬\e\8dL(x\92¿ù6±¨\81\v7\9f\ 5w4&ü\83þ\8b\823\80ßÑà\84á\1abC7ÔRp¹Ö'Pßå\86Ïó\86\a\97ª\86M2Ûud}jzÌAݽ\ 3ÄF£\ 3Q\15E¸\vÅ
+ÜT´\ 3\ 3'\10\97RíKD©ê2p$\15d Ûô{\81çæ\89ÀB\ f\152U°\9b\e¥\1f\11¬Ð\eRÔLþC¬Ï/nÁ\9a\99Q"ëSEÈR¾«&´\10îùû¤èÍphjà$\8e\98Ö5\ 3K $íMÚ\9e¤3\91\17×Í\133³\e°\9a3f¯k¹\8f\aGwâìãÌY
+\1d\82\13{\b\14>Ç\84\11¢õ.\81\83Æ\7f-³ ]yª\91~QJáFÛD\1e ãÐQã0\1dirr=%'\8e\7fó¤Ø\94!`\7f\1d\96ñ\12¯·L\9c·\fN\7fS·Ój×ã¼³´7O\99W\9br\97»Kðv"Êi-`Vy\99=\ 1ôBeà2\97\7fÀ\9aôQñº\ eFn6ºp\aQ¿T\93\8f\9f\12ÅçÁ\ 5óÚû®ªÐ³§z~\ 1\9f>0\87SJDÂQ«Òh\1e¨òÎ\9aS\17På2þ\98Åg[\85\9a\aªdÇjUÒ÷Y9¾£y¨Êpt\8fÊ¡\7f\1a8·þVtnþÞpù»\13bé¯ïù\ 6ëÒ(\17ÀJèd£Æk»·\ 2\19ø¹uiõ÷þy\7fwÖ%\9bR\88«£yÈC\8a¹ì\ 2uA\1eêO³Î\9dì\vÍC\1eê&à}jsI\ 3\85L³\a=\f\1ak9»°?»ÕÂ=Ôß\en}wB,vÛ\väJó{¾ÁÊ4ê\ 5úpMó};,ÛgÀ\95«¿\aËvi÷ÔÊô\17®âo[\9b^\Åü\ 5\0ËQ\1f\0X~u)?\f\ 5
+\aE\95¨Ñ\90¨"Í\92:\a*Ì\84æ\88B\82\92D\9f¦H+9\84p¦I;T\16ûõãD\1dV\ e4r\ 6¢g!¡VH¨*¬WoT\a"\96\12åÈ4\95:\1a\\17\165¢\86\12\1d\80°.i\9c²öÐ&ؤQ\a$Ë\1a\92#\8eaq¥\9a\9f\8cÚÊ\9eÔ§\93Ç\11Qß\ f\1e\11ô6\ 3Ý\9bFrû×N\1a\ 6\9eg\8d¾EÅ\103¤&ê\9dûyx\8c\93¢ÄÈÅ
+(CO\9b0Ø\98IG\15ñTÎ\90\90¢U¢Gª¹ì\0>,\12b¥\1dWäT\ 2Ua@\0/Ó\0 À\8eA|åLâ.*\161AË\8cì\81¦\ 2 _îë¾ø¿µc\14\18³ø°7bwg\17\ 6,_QÖ´ØT\9dNÏ\ewú³\aQ\e|è\93'ñåÅ·¾¿öÖ=A® ¬ß\rI»ýï´a'\95Û8hQéMŶ\9b;\11\85\14¢§ø\r»\89\99ÑfÚ\99Ƥ\ 1O\15Ûß¿vÒ°?\90\80®~ëIå``½Õ4\ 1@³Ö¸¨5\e\82\ eÂznÊ$Ôv\15áÐN|{sG\9f\81\ 5'\9ag\12\9b\9a5G#\0ÌÒ&\82
+ÑÝ>\9c4<\r4J=V®%ìÈjsK\8as*4 »RÉ (eM0|\99\9e>\83Þ\10Á׳ò\18¡\9a\ 5\ 1Ð$,8\88ã»\ f Ë\92\9dhî¨n* pÁ;\84\86<y\95\ 6Ó<ü×\8dñ\aàõ\82îïRN»\14»¦Î\r2çéz#}ü\14®¦G\aê\95÷]/«gOÍ9ùÜÃ\1c´\12\15\95\ 1¹\8c\16À\9e¬«GØ»HàS8_\82ú±\ 5u'Ï\ f\ f³§ý\9bR ÕT)@½\1d§\14h\ 5\9cÕ ÿ4¥@\7f«R`uyæ\90v'\1cðú®ï¨^\85\18Þ{@$°c\1c\ f\1a¾\95r|\86¸·{|ÿB\8fw\8aÁ\9c×Á5<<n\9b¬ÀY\8e\e\v¹Í~\9b\825NRáî\842£î\v\15-rYÓuóøm\86¢¼:1Pe[·\ 5ᦿ÷\90v'\1c°í\vÖe]ßõ\1dÕ¬\8eqÁq[3~i\885ü\f\86o÷ø`\r¯\r\9fj \7fó\92þ~u«\17\974·/`ói§\17\8dá«ëúiÝìP,Æ6Â\9c\89Õf\18v\ e\8e\1a\ 2*ëjm\ 1àÜ¡\ ed@\ 1Õdbé¼>\ 3 uìò¶kXh\v\ 2.\16\11Uó\89DL¯¡\1cùDeU§Û\99:ä~AÅH¼&\95\19\rÉ\90K¡\ 1þK\83Öe\8cYW;N\94' ò#æIHè[Áç\91Û\9dË\89\86r[\1asxG\85\1fáv"Bl@ùiLN\9dÉÚ\r7¡Mêü\13\13\ 3GÀ,hem\90sª\11\82«§M²7b\18'bÖ$\ 3OE:\0@\80å\9a\1e
+eÅÏ¥©^h2A9u\9b\16
+N¡-g\f¢åà\1a\16ZSá\91´cpå\1aêû\14³\f\13\9fí\97¾Ù\0\asÒ\fw¡É\9eé\8c'\86\r\15%qO4X#³}\8d§2Bòv¢F m\ 3\14=ôc\ 1Àtõ@È\88òt\rc×AÀµÉ5Á\ 3ÛS:\92\96\84Ôîã´\8bO[}úcÝ)\80ÿT&\9d\87 \98yßhB ÿÎfÕ4.O\ 3rß
+y¦®}ì¨Ápß\ 3R:,\9cc °\93\87/\941\83?³Ö_Çhl±\ 1¤ß\ 3[®H\82\b$Kîc\rÿ´?ñ \82Z\8f\11O\8dXmKýÜ]=p\9e6\87\8c\ f9Qùy·3uM\ 4â½\8fè§ËO(§Z)\15A\ 6Åæ¸Íº\f\93Êï\8f:ñµZYyO\83aþPnᨠsw;Óà¬ãE\ 3齨q÷û`þiÓD8s×\ 6Uéô\93vW\8eÆWr\8e6Í\ 6w;S×g H\9e:\91öç\9eæä\ fù\19X\r_ðÀU°UÝ\80¸w=d\93 \9dî©7Þ(Ï\1e\f¢ñØ\93\17Ïõ\vo}\7fíûÈ>¬<\1eX\ 2Pù\et`n-Ö\aØP\91Ê;\9aã\98\11ø\9eæ\19ÿ\89:\19ÿ&6Äö\93ÅɨCJ\96\9ctbýy³~ \ 3h\ýn\84ð\b»EVg\9bæ\98ÿ\89¸\98ÿ¦¢H\ru\ÜǵÍxçЫÝLAi\98\9cÉ\82\ 1E\97x$P§áàF\ 4ìܺeéø=Ñ\1cS8QywßNÔx(_\92·×éÏ\vátôæ\9fäÝMóO|#D\97ÙmpÌÛdÓæ½Á\95\1a÷wÌíLmZ\b]ï2½#\80]zÌÛdÔÃ2#\14\89O\88ÉjºÃA\9a:\8a\99\87¶B\9ep9òÆ»ßu\13Z@÷ä\84
+Þ\9có¿3µkÔ\13Y\96U)àmº\98\82ýõK\99Iî5ù&µ.\1e¼zr4w\19\9d¨ë2ÚT ¸\1cÊñöe\14Ï\17JÜ\17
+\¿íÜ\ 6ò¢\96¬@.\ 2 r\84\86\9a\9e3`\88\98\9a< }Ö¾ X*¯17'²q2L3çÙ[\eï:§7Þ+5\9f¹ò\7f'\1a«8Q\9aA\82ha!\8d\92Ï7AÞÛQ6BÕ² »Q\1aóVÙ\9dmÚ¾
+\1cÍ]\ 5\8ej\893|ËDÚL§«`þÉK \ 2À\11O\8dÜ·®Î\1cÍ]\8f÷³ò\a\0*,%U&á\9eU\ 3|QOÿ<ÄW\rèÉcP\85®÷Ê\8bo¼*GO\1f\9b¼øk.k\9b¨V*Y\94e¥\8aÑ\83\ 4^LBÓZ´,GǶ\1c9\ 3SôH\81Ú¿Y©´\16£Z©P'ÎY©´rÛêDáHT\r×ߪ\86[=¹9¤Ý \a¼¾ë;¬T1Üc\ 6fƤ\85G\rßJM\9f\81\ 6î\1eß¿Ðã½\95Êæ\95&\8d\18=ô\9cüy¶\1fÄ\ 5>g¿Íâ\17ÏÖ\88èñçl_¨IÃêl6]7\ fA'\7fz\18\ 5ûS÷\88þÖ=Âß{H»\13\ eØö\ 5\95Üõ]ßa¥b4Öɤ±güÒPÖ0~\86$¸{|°\86×\86ÏT\7fñ\92þ¾\95êÅ%-ã\vð\82Úé\9d\95êëëú©\95*Â<¡)Á;\91" À°È.ÕQ\ 3êF[QB\14\8cC\92§\88LyÊË¡0eUî×\88êQ¼@\1a\93|\ 3J.gÅC\ 6þ\ 5¬'\8e\14Ó\12\12<\15\96 HA\91¥\19\rûXTnl\1eÖ4\8cÉÑð0rýµÜ±k\99§× b,Rñ\ 3ÀÜ̳\96Â,\0MjKÝà\99i(Á&®\80A'R\18\91\9cug£F´¦r\10]¿¢S\86\80%³\a\8cÌ\97\ 3¯¢/ìålÃd!´ÑN-\11\19\19g=¿1PW<â\1eMÑ\902\82\96B\13êÊtN\96n*´:sn\ 1"}p<\1dö\89lSD0n|¤ô©\10\ 1\10ô\80\90 $ÀvçYÀ£ñÚ\9céÖ\9böK?ÛÒ\18vK¤ûR²M\86\1c"ë\ 5Í \18®×@\95)Û\13M¿ZD´\91\94\aì\10Ô X`'Ú\0°BÒSë©L\¸\9d¨\95õ\10°Iñ\9e8ÃrCà\82#SÞbie\7fÙVC9<\9d \94«\ 3:\86.¬~á\f\ 6\17\1aNB;§ÚpzÇ,\ f;[\ 2Å¢E\83¥\1c¹\83\7fÁÛÜT\8f=4ØZ\9eNð\16[q7M\ 1
+ \02ybL\94ÚÎ4Ñ\85ää1\0äLem\91Û\89*Ò<ísú\1aÍb\97]Å_B\8b\13? \98â\8aÏ\91¡÷YJ;Ëüé\ 6bΫç\0W^1m}Ü3}U\f¥x\r>\ 2%\U\83IåQ¡÷Y\83¸¡/\v\r\11úÙÌ:ôHÛ\8e³â\15r\8e\a´\1a0¦´²_\18\1aâIæ\1fÿùÃS\11ï\ eÀÛ\99Údç É}(\95Ì\8aÉÍÆ\13©z ûI
+E®#W\ e\88\ 2&\14|#\ 2O\14\0\1f\9b8éù\193\1f}Ò~éá\v\13Çß\1a"üY\81í\81¼\ 3Û¯§A=\ 5#âÉõTfrÝÎT\19ú\11\9aò\r\v\80qS~Y\9cïMå\90ý\98>ÌåÀíõÆëëÙ\83²)Q6õ\95d\8eGo}\7fíÏÓ9NÜÀ"s¹ËQ\10·\16GåÍ3\14\83¦³òcÐ{K\13Å\eàp\83²\12\140\1eÉ\82¯\88 \83<\96ÅÙ\10
+<â\896y öÅ\89J~y;S\19$Æ>\8b&,Ñç\102O\13\8e\86"
+\0\955\19¯®\86Ra6\10>ÝÂB\86ª\ f®\89º¯ \94©ì©\9fZ\8ecb\80\0Ö1P£\13\ 5+tÅÎ\8dÿÆÄz\8eB\85\16\95¬Oµ\9fài\v\13\ 1fT#Ã\0:Ø4x\10¨ÊN\98\88\ 54¢dÍÌãý\16\87\ 5Ñ]ïå¸ïe@\ fY©ÇÕ\92õQ\15Í"kÂ\9aÎNìvû³rñO\9d³¬y\85B\r\1a\95\a¢t;ËEU\16³\10jZ0Ê\88\ 1¢t,²\95¦Ë\ 2cë^È\994î\96eÚß-K^R\13R@û8Ó¼|µ©2-\8dB#ª/5Ã&ã\vù\92Ð\83E$Åb»"ÍË\11\87¥ñ-¬\8e<\ 1-/\97ÄNààj\8f\=U¸æÎ\14¬
+!ëióvÃ\9dw¢ò&¼\9d¨\ 4|B(WbÐd¶\¥Ð8?£kþ#Ï]Ò\9agÜiI±\99p@\95å t\99¶Ü\aùzäg\1e\88gô¹)O·KÏ\ 4¥Iåù)ºè\88x\84WW\85lrPP»V=½\10D«\9a¾\vËþb\9eë\ 2È*r=&^Ð\8ef\17\1c÷a¹¿\fogjRÀ4}\8f
+!p\11À\e©û]C\91Y\9fÛv\r\8aòªS\18á\93\9dÇ
+ñtzaC\84¹¿e&ÍD¥ Õ¥wK\9cr»·0CãL²\vn²\83óex;QÁèBNºt\87º%ݤ_\96ç\esK¨½|\94\²4¶'\8f\89\92ÿàÆ{ñ\8dW\1dñéc¯å\97h9V5Ö¥º0eC*\1eTöb\19\9bF³e@;¶\ 1ÍÙÙ\8aG\96ÕþÍX§%^ÕX\87ò\93ÎX§\ 5!W'üÓ¬\11ú[u6+S9\87´;á\80×w}\87±\8eiÎwÆ:À:äú á[\81pþ\89±nõøþ\85\1eï\8du6¯´ì ò²³ì¤|6£ä\ 5Vj¿§áól\94)\1e¯Ôö\85Zv¬|/-;(Ìë,;¹zX\rûS÷\88þÖ=Âß{H»\13\ eØö\ 5-;뻾ÃX\97ò=té\9eñKCYÃò\19òìîñÁ\1a^\e>7ÖýÅKúûƺW\974~\ 1\8eV;½\18뾺®\9f\1aëP\8d\9cØ$'c]B¦ø\91\9bWÕ\13B\ 2´l\16 Æ\ 1P)´¨\1eUÍ;\81\95\ 4Æ\88\ 6¬þ`\10ò\81\97ij+\b;5¹Vi\8dØ4\14Û\bÄ>9Qu'm\82¢©b0xE\99È\19-ò\8eèÈ4iôÔU-§\87Á\0DSóX\0\7fÒø)²£\8e\94<þ\89LDwe7§U&\9b´ê\eB=\b«\88\ 1²îå\vÓD~E¼VÕP \8c ¸c\ 2´ mWöb\9c"8<^\f6q4 Îu¦á\9e©Üä\9b\90\f°\8foHu\16\94\8dÐà8\96¢UP\81\9b\12\13e&\8cÚª±\ 1\87\f\8ei|Û¡ø\88k\91\1fl\87e\8fqÿ7\ 1Lþ\ 3\15J×(\8e*´ \9b\92+\81$øH1\1a§XS\92!0&âa\b\15ÆÇj\18\ 2\80¢\r\0â\8cZ$\ fn]Z \1cÍMÑ\89Ê\9dâ\b¨\fÁ-\8a7h\81Ý\84<uÄCb,EKÑ¥¨¹Ù\98"&\854UXH\86\1f\97zXú\ 4d\7f·Q\9c\r6³\1cr\1f§\964`k\7fAêÎÈÞ·\82\15À&$\ 2\83t\86ÒzZ¢ ²n\90Â4þ\ 2~\97Q#\9e¶\8f\8b§ê>Ù\84\ 2o²L\87¾A-¿À\ f\ 4Î Ç\92Ã4\ f¢02?#«³\9f+\17:\ 5 l\18MùÚ\v|Ù
+\7fÔúC'º/7*\7få¹û\1fX\7f\86t\ e~øìAQäR~jýùÒ[ß_{ë'Ö\9f\f¿Ò\88¦ôt\ 4ìãLÅ<\vo\ 3\82¡è*\0Ä x ûij\96")»{ÌÚÛ«e\ 2àÆ2X\8f\980\1f½h\16\10ßÝ¢*W²)\15$J\95¸\82"ÊüâÀMá7<-ëåï\b¶=o'ªpAÛ\r_q\84\19Õ\88\80\18\8c\ 5\10`ÿÐT\12X.\98\836=\99')\93uË~«¹xßíFg\1fÀ\84\19ÞÅn\89\18ã¦\91ÐH\89éä¡\80ݨöjF \91w\17µ{¨I\ 5@ØBë\8b\ 3wEïñ4\9d\86\13AYÕíDEø%¬9|\85áqâ¬\81õ<Ú\ fË4à\19\8f\99\93þS®e^¦edÂõ]ãdF]IeÞZ,Ei\97ã\88Z×5U\9e\rÊw@\9b2&**M`\95?GÓÅö\84õ\95\8e\8a\8c£\0ã\16\16qè\17\ 1\97\8a\17õ(³Y-\88iN:\966\91i\11dÙ\8a]$Deßh/~µ7,\f\19\97mðÝ\92µ\84y\8cÐãQ\94\11V\85Ô\80y{\14cÀI³«8Fn9¡\95ÅF±iZ?Ñl±\1daïyOåE\98tç\1dºÁQÍ\18r\14\ac\11øðÇ\1d\1aB\86Q\17ÝáX<Tñå×\95;\9bã\83íðçL\11µÜs´\ 4ÌéØüqº\8a¹O\1e\13y÷\ 1û}ñ\8dW øéc/\99""x^Ï\87\1c*Æüàçí\aÒSÔ\84\80¿\99\9dÒ£Á\95ê_\81\ 1eL\8bI´Ñòg´ÇöóP\9a5æ\88V\ 1¾N\8d\1déðø§\1a»0\9f׿\12ÞÁ\9fxÝÍ~Îqìç1Æõ\1d\1fÞÈ1|Ik¥\9d\0?ïà&°8¤\1d7Vú?r+äK»\7f©\98¼\89\ 6vµ@<ëùýÓ\9eù\89ÚÅ^]\9b^ðEdø\99¾ \ 1\12ò\7f\8bFÒ¿\92®[\9bsª?£\ 1eîçaD×\r\91Ê\·N\80ÀtLTM\1aÚq¸×óú\17÷\ 6\7fêÞÐ\9fs\1cûy\8cÑ6\ 4Tâõ\1d\1fk©£ÿ®\96
+Q¸\9d²R×\1cßµ[«×>µ=ÌN\1f,Ü¥\1d&ëCËÃ_´\84¿ohø\8d%Ì_±5°ß\OÙk_]Ç\ fñ.è\9cb\10M\83L\ 5ðpY[$»\14\96¬\9aDx\18\999\94\80~\1dQ_Ï\93\80´ELKG\1cI=Ü7\12µ`A\ 3BVa¤;\8cÒ\94iHÌ¢\ eý\13á\ 2J48 I_\82:'\19Þ¥Eúõ#\ 2\1czõn\ 6ÇeÐfU\93ª6©\ 3\ 3\14\19vò¤#ZÉ\95\bdªDÊ@ZI\16JÑ\12\e²¿,Ê\ 2\1fV\15³U\88( \9e\ 3¿¡\9aB\ 6b\f\ 4\83\8d°\830ü\eD\ 6]÷7IUm\ 2\91É?9ÒO·\1a\8b(ý1@~tÿ0<+\94a0B\96Gp¤£ªÃIú[ĵD·\13q.%^Á\94\8c½à×\8dññ\95uä\17j\84Тð\ 6\91»zTuxÑæ7Ùg\9eNÐ\e7ú\93ç\90@wè\83\97*!_\7fçûKïÜ\93ãî9·\88Q;\95#å\96;î\95\r¦\v."<ôuÀ.\81\95e\98\12öÓQtóÀmH«\ f\89zÐADÏÒ_Fö\15\14\86\8ej¢\8dÁ\ 1\91ug(\7fÈÆ \9f?²¬\94\9e\ 2 Ë\80\ 1;Ò>-\8bØ\0"\ 3c\15ÎFì,á.\aírDë>¢"õ\ 4ßJ\8e;\155\92\12\10°É\ 1\12Á\8eph50\8fGj¾\923{s4·\8b7M¸Gé:sÄvDùË\1e6\92\8c\f5\1cáâwÍÆ:\10Ö\97£lÖ¶\88ë\84ÝNÄ¡Eu##\9at½æª^·Ä\13ùïKÂ\ 3\8b\1a¨qî8íN\91j\913¢Ë6?ñz\17}ôTÇ}\84\18¨»sôÚû®7Ô\93§Ö\9c|\ erAx\16U\ 3èMT5 ¥Ã©\ 1wâ÷\94ËMD79á,Æ'\ f\98§ÞLª\ 1|\9dª\ 19y¤:õ\8aÌçõ/Ê;ü©ò\8eþ\9cãØÏc\8cë;¾K\rÀ"Ü©\ 1\95¥9\1f´{Ë5\k)<ëôýóN\1fi\06³\10\1f\91=±ÅÇ\14Ob[,[«*[«:\89\7fëy\8a\869OñQg\96âcNÙ\89\8f\8cÞ\Ïë_A\97,Ím¡?ç8öó\18£í\ 5\88\8fë;¾A\ 3H0C\9dÅÇ5Ç÷ídá\8eϪ*¬þ\1e¬Ù¥ÝSáÿ/Z½ß\16þ_[½Ò¾PUA»¼\93û¿º\84\1fÊý \19n\8cY\82\ 4Óàß\90eeVÞ\b\8e\98\0÷ÀÒÙ\10\165´Ù\91`Jc\19%ODu2 "Õ\1eÞ\14\14J\1a\ 1W.ìÓ\8cÄGÕ,FúÊr bCAÞ&\8a;2ÌG¶Ë8ÔýÑPb\9c\ 6J\88úÄdC=¢r@\92Ø$\986a\9fó$àèÊ\a\8cÃ\8cÊ\1024\9a\17\11\8bé\b\8e$O2.¾Vß®u³y²`a(\14\1a,'\ 2å÷\f\1a:\ 1.\8cû\vád\9döËa\19 ,\91FÓ¥Å\0\1aA\9eb¼\1f¼\97³\rË\bZ×\94ü6\ 5ïW\7f\94£5`ë'¶Ò\ 2\f¨^§Õ1\91\97Mã5¤¹¤UIS\ 5\10õ\94_\92\ 6n\15\83Á§ò£\10`Ãj\81áZf¸#¾0\8b\b\9a(½¢È\ 1Õg¸ª\9a\1epùXÔ6@\18ü¡²«\91°"È\ 2\9eª\ f\89ù8´þ¤\90àÚÀñ\ 4b1\8b\12` ¡\11 #\ 3þ\8cæ`\88©\f!Ïa\16Y\87xx\0¤Ê\93\80\88M6r¢ K\80¨æ\88²°Uv\96¼¶ZͰÖÌ\9a\8eñ\8eAÝ\17Ñ»\8c²K\1dN\ 6âf¡\16h Ú1]«Lp=\11e\ 5\18ü¶\88°\ e\13¤\82ç \84Ý\91\907>hb÷ÄC7±ëm\9eG÷ÖIúùè0\7fÈÛ^ÓÕ2Ò9ÞP¨\10\ 6ú%
+Â{£c]\8bzbxodNO\9e\93å\17¥\8a\ f^tµ¯¿óý¥wîÉÙüÑ/bÐõ\126\bðöÐ<\11\1c)\98ç\rµeEÊé\nFlâè\ 38/ÉBbÍl\97!\ 3\ 4àù\8e4wãÏ\1fg"¶ííDSí&³ÆËÁ#\10õÃò1ëæÑ\841OY·b ]\ eÍ1À\88\aÂгi\9c\97\ 3\1a×£ÌO:\86o\a#}\1ef^8JdT\99\16U\94æÐË\98\9d\94\90\86Cø\eª\96\99\ 1Í@\8ÈyÒ\ 4Y4\16Ä3;:«\8d\92û!Î\84|lhÖû19\e\vÛdOÙüoÓ"²Ø\19\11 N
+2Î;f;&³\85[\8a\97Ñl\ 3VI\93Ú\80¿\93\v{(|#jà5ÔÈ\ 6ã\ 3¨%\994øMæ\9daa´ý8îï\93EúÅ\eLaÿw;èÂv9\ 1\b\11º\94#+l\91zÆ«\94'\11ùU¶Ù°\1aÎ\1d\89D\84þ\ 2ç\8a9ÌI%\ 4\ 2YÍ`È\ 1î\82:x\ 1¼Æú\ f¸\87í²næËv$w©o"T´C\97DáÛ¡ë©\88à¸Ï\98,Éó©1Y\12\9c\83\8c¶^4²xcz\bé\96\9dîI\8e9nb'
+Íîk\9eÑ\agù\8f(ÙäG¥\9eØJ¤xcs3?æ*ó}ü\94\b\7f=^\18àkï»\8a\83O\9eZ\87ûs%»`¿«\92Í0ZU²\11··\95ì;åvj½¦\0Oyü¤$\17\ fC©ñ¹T²ù:U²KõÈ\8f\f\95_Ïë_Ô+øSõ
+ý9DZ\9fÇ\18×wü\11%û¬âæ\/úõ@µ¸ãÚî-Cl~\1eã»ú{ÿ¼?~\93»Ãt*qs!Ìyëe¹\9cô¡\92\96\91ÂnQ®êI¯ZÏSçââS/Ó©¤^VjtzYA\82Ñz^ÿ
+ºFaî\ 3ý9DZ\9fÇ\18mñqT×w|\83Vmû®=Z®ûvX®ÏPäW\7f\ f\96ëÒî©Vý\17ÞokÕ/®Þñ\ 5ôxíò^«þâ\12~¨U\17Ö!\8a]eMÖ\93ýïG\81A\9dwì"f¨©\f{\ 43ïMîä\8câL\8c÷j\fV¡Ê\96qËÓAÀ*ÈÈßÊrm(\98\1f\8b*\ 3^Ò\93²j\8ext\11\99I\13d\ fA=-¼ \11\98\81\+\fDKÝ/\92<:ð\93oÝí\0mM\rHnû\ 3ñ\88y\fËLG\rè£\ 5D\19\82¨pH(e>\ 2c¹\8b\b@\a±b@\14y\85\eQV©SÏÔzÑ"\f\15¹Ò5J\13Ê\13kIcB\ 3Kê,Ò/\99åb¸\89®]³8ÒVPÝXF*t\85ýÓ\17HÇx\94\ 5éT´ï\9anV\90\19Çä"L\94HvéD
+Z;K\8e\84#FÍ\8d¼\9d\88(\1fÝÑß\84ÙäìA\8e-\ 1QÎ\fª¯6:|E5u\1c%¢éýÀ×Úõ\a FD\16\16¨Ã\aåÝI\92¡\88´Iï\8bxã639v\12óª>Ô\90ì\bÔNOBh\18\11\92\1cQ\94\ 1:4\19¢Üdûa\85±\80aZ3è.Â\18\86\86ïP\98¥!CøÑÈVÃÌ\13a)Yæ\16\123b\7fpÜ(\1cÓÛäIuÖ9wDFð\1eØì³7ºìô\9bæ[\17IÆ\a¸\ 4\ 6`-¢ÌQª\96±¶\88\ 5atpP©½\ 3µÏ\1d\89\1e3j\ 2\9eh\95Õ
+â»Y\9a\1e_\11\87ô[\12\81 \86ê\vå`6\84\fM¶Z3KÏ\11\1a\97\8bP\12¬\rÓq¢d©Ó\12QH \ 5\14\v\81á¨_vØ\ e\18yY\12\140\8a¾Í\80 08\85jo\13´Á\91À²i\169Ó¨dÜ<± zfÃW\88¨\86úMäE¢h \ 5xi<\9aÙjSà0\ 1{¬\90\8bÉÇ \9a 6\7fK#9^÷\80'þ!G2áÅÞf\9aê\12¡\85\89Ú\aE>Ý\eoäñO\9e\ 3\8cT½T\11\7fõ\9dï/½sOξf
+cAi\8a\ 2æ\1e®ãÿ8é¦\v"P7É\9a\14\14\ 6ITÒ;"Feú\v\83+ã4 \12\r¤$\83ð\85M\90è¶z \b*Ç]Íòg\85\8e*ÝèY-\ 3\9e´\ f\84#
++(ÂÊñ\86\1a§ã\93§Ë\9dÂ8\8f¦?¯q\1eÍ<\82iÚ\8b\98\11Õm,a°®«§8&±\89I3K\g\87YYÝK'I¦D¦Iáã\16Qo&á£v\ e\19â©ÜUí\1a8\89\8c \ 1W\9c¬thܵ'-îê\89E\ 3zñ\8ab¦È8\19ýâé\93¤LÖ¸ÿ$ÊP`(d\ 2Ï~\18\890õhj\rÈ\88¿Åͤ8\15r/
+_aZì\14ÍwÆ\9d#L@\8e§0§y\83É/TMñ$»é\94\89ÝÝ\897ODÂ\f2²\vBií\86j1ÃPzaÉgä£+<$®gÍ\11\82\1cS\90ó\82\e±\10æ\12
+üåþ\ fëþÇT1By·C(r£¤\8a´
+\14e\84ÈbRG\19Ä%ú©\17\1dóáIÃúÜìöS\ 3-D\86¤7YQ\16¬â\13"\0°\83\ e5öÕp\15\9fÂ\12\9f`-\ e½úv"yM MVª¥|"9¡m\13åÃáGÍ}¦\ 6ñcy\ 4\ efÇ´r \94¡\9e§¬â\ 5\10$\11xË=ÜâtÉßóa#é*hÑàÝ.\ 2ÌFM-¸sÛàÍd\8e\90\fà\18¢£È\82ª(Ã\81\1c±fò\89y\95\14â\e8ʼq~þ8\13³\8a\83\8e\86ã\f¶\ 6\88!]{8\86(Ó]9â\87QÕ¯\98xÈÕa°wÌY¥\14[\8d99W\ 5äã§D\13A<ÒÝ5òÚû®ºÉ\93§\16ãüÜÄSû1M<õ8¦\89§ôêL<w¦\95is1óËT\ eO&\9aî1\1cÙ±\9axø:5ñÔáa\13\eL\8aëyý\8bJn37\92<¡?ç8öó\18ãú\8eo0ñ\94fÁ\1f{Ñe3ÊE÷ Ý\9b\9cÜÏ*\83¬þÞ?ïïÎÄcSIm²\ fg$(ý¤\9c÷0ç¯X\10!Wõ¤ä¯çq>uñ)ÐëTÒHPÇá\8c\ 4,1¿\9e׿¸\ fªFQU>1Ü8öó\18£->D\90õ\1dß`â)t&\9c\8c\ 4kzïÛa¹>+\ 2²ú{°\\97vOM<\7fÑêý¶\89çÅÕK_¨÷¡]Þ\99x¾º\84\9f¥f\13gI%¸duÏ\84\95æf¥\98\17\918KÇôêòJö¤¢¥{en7\11\88vpªÉº@\97P\9b¿'\1eZ x\13\ 1#b\ e/X?D\13ó$@\r!èâ×\ fO¤\87O\96÷@2\9a \84"þcSY~-\ 5Ç\\19¤\ 1"\ 1{HD°\81\f\84U\1a©\99\8b`\9bI)ZÆB\1dûÀyaæ\151£ \18±¶\ 4Ë+§£8\92\f\8dæ\98©@i»
+Ô\97£\99ò\8fÁn
+¾¤\12,d\13!û\1e\85ñ#À\8f3'\9a'\ e+ú¼\88HGÓr\86\8d a²\16\9e$\92>d\12\19Þ&\16¼Yæ|w¶\96a¿t\92NÃsk¸\89s\v\9c\89s«`V¨>í\ruÝx3\aÜí¡ù}ÿy"\ 2m\1a¥[¢7\12\ 2ÏOÏõñ?\14E@Xú·fñÌK\10\ 2b£NêZóÓé\7fãI}ò\9cì\97Y¡ò¢¨\7fý\9dï/½sOû£\94a·\ 5\88$ªK\0µB\17v\12o\8e¸öò\9984ý\17\0P\1a\93\ 5ñîr\80â:@yù¥W;8wyh\11\140P\90\10Hürä³¾
+\1fÁ\16\85á\8byï\1c\1f\94\v°\99 \95ç\94\bñ^\89\87Ò\8a\9a\92Á\8d&K\ 1\1e\80èv\9e´YÏ&\ 2ÿ\ 3\95TðÚF\ 3B#\ e#N\90cxe\9d ¼õ³²NÐ&º\13ä\88QAÝëòyC¦¾\9c #\81ÿÈnHwíÖ²Þ\1ci³îMtãs¼À\11\9b\85nì/®c1\16èð"O;\92c@\8e\bÄ39»®·¹\1el¿YM\ 1éªMC\1fÝÎÜ\136\82\9a0N³è¶ëõñ\8f\99Ã\v\9a\17\8f)LççÓ\86
+¢º[æj\å\82\8f\9f\82\80Ð/|áµ÷]E\86'O#÷¥\V\84\96\98òÕb\9fÊW\vÙ)_g¥giC¦\18©Øv§<\ 5\8fÉÅ\8eUùâëTùêÑÃ`i\82Ã|ÞÒYð\8e\99\11\83'\92Ï©ÝÏc\8cë;¾AùjG¼W¾D\10îí¨×voy\8cÏ\0ïW\7fï\9f÷w§|ÙTâ¼´Ð\9cøÎz0KlÖ¿Ly\1d[yõâ÷~\1eÒ¦.>Åw\9dJ\8aï"{9ñ½G\9f4©\7fq\1fôØæ>Ð\9fs\1cûy\8cÑ\16\1f|`}Ç7(_\8dìï$¾¯é½o'ËÕ?ö_ý=X®K»§Ê×_´z¿|½¸zå\v0öÚå\9dòõÕ%üп¾¬ÖÞ¿N\81¢fï`\82·<.³f\ 2P\a\8d\99\8c`£\rSC¢ù¿Ä ` \1c\179uË--\aÞ\15=\85õ_ðØ¢Øó\8d\99r4,ã\9a\90\ fÿ\a\81j
+F¹Hò$\90\18U\1cYí`éUçEùÑ ¬¹m"\0Ðd
+yAáx)\13$\96gâÛÙ\f\ enù\8f\7fÐ\85åÀMÏ8¦¬«éi{Ð\19ʢػ\1d¡Rµ]gélG\91nyGÈ@NÄ¡e´<±)$\bL¶\1a\8aN\8f\ 46 þ\8fÀX\9b$#©\b\ f?ú©Ýap]pfRîj
+-6¦NÊ\99l\16¶J\83q,²\b°\8dV\rÝF!j\99.L®\96\8a[$]\ 4ó3¬v\19ÐÆ!Ø\v\92èÁؼ¹G\e\86l:xA@dÖ0\89Ò\11×\ 1Åòj7\87LG$\fv[E\86 }´0qsÿiî\ 3ô°|\14v\87
+¡Ç
+ mÙº«\88\80§XÁ@y\fï\bi&\vÃÆ\8b/S\88eçôf&Aºsz3¾x\14ï1g<yà\10\9c"\e×\91\90\1dpÐ_ä\89ÈÕ,h·¼YÈã\84û{¿u\91d(5N\83þ$ÞHÌ\ 4ÉF7
+ð y6Yú¡\a\13ºx¢G\ fbé\81X\ 4Æ4\107d\91°\8dët¿¬v}N^\ 3S\82«\12?´`Y#";·\1d¼\81\ 4\ 3\86ï.p»\ f\1a@t\11QÑ}\13 U\aúO´#ÙüN\9aè\14ì\98é\ eX3f\91#âXc³Û,Q&\ 3à8É0(ªb\ 5\1aª¼¤bò±+¿ûÓ¾s.ê\96\90ÇÐoyà:\17îýFöýñc\0"\8f\9fyÎ?{ãû+o|ä7G\1aNÒ¬\8e\1eTµ\96[¢CÁaL\ 3\0ó¡\ 6À\1d\9b\13\83\86Püàn\9bMÒ/Ý¡ÊBw»`¥\16ð2d*\81Ei¡\ 5\1c\a\0lÿ$\83VÜ\ 3\1c\9fy\ 6ö\19õD\ 4i·ä\88ØÒóì%\86\9e{\8a;¢\9b\b§\11.#`A\9e<é\9e/,7¼ç Ë\r\ fÞ\18N\rq3\16\ 2\11ÒÏ\8f·\82\94©!r ÉXcQ$\ 2\rL\bz¸ó,_\82;\82\ ev°Ð
+'=ÝáÔöqT\8c!#Ñ(\rÞ4¨ö\91\19]\ 2ãÛ \ 6Íáé¼7\vz`°·ÞyÈúãú\93\ 4®/'S\138v»b\ 5%Abj<®\95PRÒ\17\84\9cô®±\12q:>\19(\19\99zD±\89²®·f»ÓµCü\80^\96\96pà(óNýùãLäí{óDà\82#X ýj\ eÆr\86û+\7f9Í1b-\1a³Û1ð\8e7\1c\8b:WLf\9cG\ 2¹\80´o\806\168\1d\ 4¹@'Q\17¶\fµç0DQA$\bP~\96\81&IF\92óLºÚíâ\14¨\9aÚR\1ce
+]\9b\82â1|!B\91\8aÉj\11|\12}\13@Qó\ 4¢\1dC«\9cCC\ e¯\ 2\ e\9aÅ2\97«ÕóÚå\1fgÄ\86úüW; \122·NG\84;\11<\80ù2\14\1a
+\ 1Fq0cÕl\9aCCå\0\89b7ESïþ¦Ìû\ 4wLº»wn\8e\ 6Ó,\ 2\1dxî\ 3ñ\14\1aì5)ýó\80ïýQï¸çÀ\98ýÃÖãê\1c\9f\82þ\87\ f\89\16ñ Äꥷ]Õ\8a\8f\1fzÁ3>R\9dÆ\99^ê4Îôì\81Æî\8c"ÓZb\86\13SëÎÆ\95ì\81ÆØ±\1agø:5Î\8cì\81ÆFõ\b\ 5ú\17ÕSþTõT\7fÎqìç1Æõ\1dß`\9céé\821&Òoï)_Û½\15h{Ï\8d3«¿÷Ïû»3ÎØTB\ fìÙ#RõtR«ÓB¤êi!RéÏ¥\9e¯ç©º\97:Õ{\9dJª÷#{D*\80\98ìçõ/î\83Q\16"\95þ\9cãØÏc\8c¶øàQë;¾Á8Ã\1cû;õ~Nï}»7J\ 4Ï\8d3«¿\aËui÷Ô8ó\17Þo\eg^[½£\7f\ 1JL»¼7Î|q ?ó\8cw\84Ó\r\93Ì\r²¼w\ 4;3,z\12;´`Å\ 4\ 3\+\ 2 ;ªHGÞ_¢(\89°\ 1ÇGǵ¬©ôåPhÑ\8e\1cS½Ï+#Ï\86'µ¬½Éª\9c\88\14[\1ci\16ÖÃ\v´º\1f\14Uæ\9bw«ÒFÉ\9b _2\ eæ»\97)\19C\90ÄW¥X\f=\8a7|\aNÒav¾\89ù;\98Äk\91\17J\1c(©SõѬÕO\ 6ðÀ\89\16®@d RÛÀ\ 5À\814u²\8b0õo\1aL»?P\91ED\rO
+\13\93`\13¡Ã\8bf]ì\ 5Ñ\9c=± 7y¹É¬\93$\8fâû\ 2·Èn\87øvkÖ\81Ò.\8aµ\86\v\13çí\bôÔ\81È*L
+þ\16õÐ\1d]Ë\98\93\18åü\90\98\19ÐËÑ\rÔï\19È\92aA%èÓ\84\88ÅdRÜÜ$Y\87\81¤Pº®w;\94\7f\9c¦\86CÄ\9e.Ã\9c\ 3\11¹jPSê\83кÿ(\b\1d0ê:4sÍ\Å\976y\15wªJmH4h\f\eEwZµ\9cÉÂ\98Ã\ eÇsú\1f{W\92\1dG®\ 3Oà;ô\ 5äÇyØÊÛº\85×}ÿíg\ 4\0\ e\95%\95Ê^õßø©`&\93É\ 1\13\81@Õüa:\16\e`ù5ùAIXû\f\94\86¶\111¿\1asÙ´PÑ\98È\9f¾\8a\8b"J/YBÁD@0q\ 5\8féÁ* A\ f¬£õN¢ñ@/ÝITãa#RS\8aÜ9A\82\a\81a\98\18I\962"ðjEÖ\eÇ\88»XÅ\80\89î`\97\ eÈ\11\16è/'úrð-0¡mI'D0Cå
+¬Z\13ß«\111ϾI(\87Ã\ 2F.\91 TÀ4\1f{\9bgq095!\81Í\Ù®\0\ 6X¯¦Y÷l'á´1\1fø$ÒñsÛ\89¸\84\ 5Ö6\86"øj°\e\19#\8eõÕ\0Z#a}\83VP\9aD\1e÷TÕ\86â+6Òx+í»\93T\12Ó\89vâ\18ÈØM\7fá\ 55Z¨\86NÓe:¿Å+ôa\9d½>TLÙ9\93\81\1dÂè\8d\82ã\93çP\90ʽVÛïÁ;ß_zçÚ\86\8f\ 25ºÏÆ¿\0\ f\88;ó¿\7f\80Íu'Ò\ 1îk¨á`T®\1a¸ËÝ97Òo²\88\12\8efã\8f \869\1cNÍ\83¹xÛ,¨RWDwhÓQÚª\ 4Ö7ä\ 2Ê-\ 1X[Î"kXåS°\ 3<\v\8b6Ú\80´N\81ü\ 2¬ ð¥\12T\16ÜqÑIÒmë{Ü\88Ø{±Ò\ 5\8eÌ>\f`>J\8b\86\89\13Y\11\ 6Ä*yutìF¸\8d@l\ 40'19!Î+\170í¤r\8fì\98¤\8b\fÊK\ 6UsêÌvÁM\89F&ä7Ò!ù\16Q\1d\\90|\12ÜÑÀ¶pªp\95'à\f¨¯F\87\13\86«\88\rø\1a\b\bp¹Á¤5øæ"á\83Ixp©¢Ø$Ö®Á±.ÓÞh»7Ü\ 40:\10£M\83»P\80¤¢\1f¸\ 3E\1cÚM\9b*J\92+\83\8d$\8a\ft\9bv¯ðÜv"\90Ò}\81NåUrgBØ*RÔTÿC¬ÏonÁ\92\98Q\82{\8b¡d ß\15\17Zì\17þÞ\rÇ\1f\92ÁIj \11{°Ò\9aâ\10\1a\9bf#\9b¤\93HÁuÛ\89\95Ù\rXM\8bÙ+R\fäÁÑ5\14~\9c9M¡Cý½æ=\95Ï®0Bâ½\8bà á§f\16ä+OUÒoj)Üh\8bÈ#!\1cºj\1cæF2N.§äàø·\9d\94³0\ 4ì/§\19/î*e\9cI\19\9cþ*×N³\1dr\ 4Uf±·\9db¢M¸Ë\9d\10¼\1dÄqZ3\98U2·'ð\9f\12\8d\81Ë\~\837é£Òv\8duOkØ6ÒÕÞùø©aøôÏðë¿ò¾«)ôÉSó\9c\7f\90\1es8Å«D$\1cñ*õºãVÞysÊÄ\9cÎ\1fõø,¯PÝq+\ 5b\87^%y\9f\16ësuG®ô®í¨\1cúS°º]\9bà\95ú÷\ 4Ó_\9d\10i\7f~Ï¿à]êù\ 2] \9b¬\97pm÷6äð\15ºò\83þÞ\9f÷wç]Ò)\85\7f¢×\1dòP\84øô\v\94 yÈ?Í;wø\17ê\ ey(\9b\80þ \9dKÚJc\9awÐCÏXËÙ\85þôºV\13÷Pÿ\9eèë«\13B³ë^ ì¶ïù\17¼L½\ \ fç4ß·\eË\96\9e\ 1WÎþ\1e,ۥݧ^¦ÿà*þ±·éÅUô_\0°\94.ï¼M_]Ê\ fC\81¼\eªd\91»%$1{®ïP\84p\19_7â \rÁ'\91\17 ¨\92Þ\9f´Ñ\ euÇ~ÿ8¨UkÙ\81&\1c\84àô\ e¼\905\87Eô:¹@ÄR\12J»k\ 6\a\ 3y°¨\ 1\15\96x\ 1\bï\92Ä)K\ fÕÀ&\95Ú¡Y\16\1f7b·ðvÉOFåå\9dTì\92g#¢ú\1fnDÐ\9b\ 5ºg\89äÞ^;i\18x²
+~\93\8a!¢l1ý,Ûó¸1\8e\82\123te@\19î4CÅÆLnÔ¡Y\14\9c\82\1c´N=RÍÇ\ eàÃè\86Þ]\0\87$\9aècÎpóÊM\ eØ1¨¯\9cI:£4b\82\9e\99±\aª(\80ûr_÷Å?¶\8eQ~¬K|Ø\e¡¼Ó\16\ 6<¾"ÏiÑ©:NÏ\ewúg\ f¢\88v\95'\ fõåÅ·¾¿öÖ5A[¹Ø}7h\ 6Àß?\8e\9dã×\1eaM>\176*¶\9dmO\0u\84\83²mØE\f\8c6\93Î\18\93\86½Îí¿¿ÖhØ\1fq\1cIA
+6*\a\83»f þ\a4k \93Z\92"è ¬ç&LB|W\80®G^\ 4Iëè3°à íLbQ\83ähx\14\1e\90\89à\95ãý>4\1a\9e\ 6\1a¥¸/·\96ð#\8bÏÍ\vÎé !i\9fFN\82\e\90Øøcz\9aa5\ 2\8f %á1©\19ø\ 4ÍzÊ\9cÔ·\ 3È¢e\am;ª\eµ\vï\184äÉ\8b6èíð_7Æ7ÀëyÙß9\1f»\14»F³sÖ<]%ÒÇO\rÑ\14ü\83\ 3õÊû®Âê\93§æ\9c<¿aöR\99\8aÆÀ\10F\13`o¬ë\8e°wÑÀM97E}ª\r§>ßw\98=é_\8d\ 2©}%FAp;Ò\9e\97\828³\13ù)F\81\94æ\11£@þ\9eCZ\9dpÀó»þ\ 5£À»v\ 1Ü\eRµ»î\1e4|Ëp\8d?©ª={|ÿB\8fw\86\81Í+u\ eïvܶ±\ 2§\1e×'r\9büm\ 6V?´ÂÕ uFÙ\17¢Zʼ\8aj\89\8ae\9bj)(ʳ\13\ 5UÖu\9b\10nú÷\1cÒê\84\ 3Ö}AÙ;¿ëß(nåú\ 5ÇmÎø¥!Öð\19\fßêñÁ\1a^\e~j%ü\97\97ôÏ\8b]½º¤é\vØ|Úé½ÅðÕu}ZUÛg\8d±\rpgbµ\19\86\9düFõ\1ei\9eR[ â¦mH@?\18_\8bª\96\9aøô\80ÔQá]\14?Ê/\b¸¡\a\8fÿ8H\bo\97Û±;*\8b<ÝNê°\1e
+êIâ51[4$C.=\8at\14Ù\aðé¦.]*Ê\13\ 3^\11ó4H¸D\16<dà\9f¥|ÐP}Kb\ e器G¸íDª\r(N\8dÉ)\96¬]Y'ÄÛ=8\7fbbJc\18ìÞ\ 6·\1e\8c\10\=M\92½\11Ã8\88I\92\fv*îë\0\ 2<Ät\17(+~.]õ\83\86°ÒØtZ¨8ù:/c\10-\87«áA«¢<\92æ:W\ ejxÌê\19&>Ûoy³\ 2\ e\ e\ 5\82\19î\836öLc<1|¨(\98{ÐpÝ\95ôkv*#$o\auì\91\ 4À\9dAs\ 6\0\83½\84\e\881¢dWÃØuPpurU]Áö\1c\1d\8d\96\84ÔnýØÅÇV·ûØí\14àþtL:\ fAV÷¾Ò\ 6Eá\8b\18\89(\16×N\ 3r_§ yRç>^T -\11÷Ý#\95VÃ9*\ 2;yø|î\16ü\99¤:;F£\8b\8d¬\ e0ÀA\9b\91\ 4\88åÍÜÇÒ½þÄ\83\bju=\1c\8dX|K"X\8bÜÀí4\e2>ä òón'uN\ 4â½]اk\9fPNµP:¶YÖ9®Z\97aRùýA&~XñRt~§\8dE\1f\86¿Ìò¢zÌÝí !\84\1c\97ç\83V\b\91Ís²ï\ 3û©Ó$pæ«\rw'?iuµhòJÎÑ¢éàn'u~\ 6jæÉ%ÒúÜcN¾éÞ\9a\81Õ¸\vîÈ&[¦®GÜ;\ fÙdB\87\9cz£DùìÁÁó\9d>y¹¹~áﯽu\1dÙ\87uÉ=+\ 2
+\7f\8b¥\ 6n\9aì.\98P\91Â;êÆ1\ 3ð[wÚÎø\ fª1þIÄMêàÜ$\83qǨÉI\aë\ f\8bõ\ 3Ì\8bqõ[#$\90«\14\99\9dMÚÎü\ fâdþ\8b\8a(gÚ¸\90Ç¥Z¼³oE%\93\17\1a&ÇXp@z\97\84Ò ó\8d\eq\bÊ%eyñ{Ð6¦pP)»o\aÕøÒx{±û¼ØO\16Ü×Ñ\ 3ÒÊ\8c=×F\88.\93\95G&\9aH\93E3¹Á\95ê÷2ævR³\94I\17Y&2\ 2åh\9cI\93^\9cfF\b\12ß Fø\8e\vÒØPêÜ×\19ò\ 4áH\89w¿ë\fZ@öd¬÷\82áï\93Z$ê\89,K«\14P\9aN¦ ¿~\v3IĽI)\93\aÏ\9e6Ú&\8c\ eê\14F\8b
+\ 4\17'\1co #w
+\14·\ 4ÊàÙ±\9em /²d\ 5s\11\0\913h¸\8b¶\80!bjò$4«}\81\98«L1¶æ\ 4ÑF ®\99söæÆ»Îé\8dreH¡\83+ÿ}Ðp@
+µ\19$\88¢Ú*\91,\ fI\10ÖvLIb3öF¶1÷Î\16m\89\82\8d¶\89\82\8dZ%q\86o1¤M¿\8b\82ù\93B ø\8b.\1c\8d¶o\9d\9dm´M<ÞÏÊ7\0TDaò\0·¼cÕC)ÖÓo_{µ\80>yl\98BÙ]äÊ\8bo¼\1aG\9f=6yñ×®¬¥p¢x©B\9a\18\81\0ÇݽT÷.!ó\16\99çh\9a«§\83)ìH\81Ò¿z©¤4£x©P'nóR þÈìD~\8a\19.5äÄ\f\97¿ç\90V'\1cðü®\7fÃK\15ü=f`bL\9a\7fÔð-g÷\f4põøþ\85\1eï½T:¯ti\84°CÏ\8d\9f§ÿ Lð9ùÛ<~áôF\84\1d\7fN÷\85¸4d^Å¥\81\82\9a\9bK#Æ\1dFA\7fÊ\1e\89q¢ÐéßsH«\13\ eX÷\ 5]\1aó»þ\r/\95Dcí.\8d5ã\97\86XÃgH\82«Ç\akxmø¹\97ê?¼¤\7fî¥zqISý\ 2¼ vzz©¾¾®O½T\ 1î\89^÷\bk,ùPå\86îR6ªG\19i-J\18«$y\ e\95)\99¾\8cbé\89zy ¶ò\17\110\90äëQ\819 \1e2ð/à=ÙHHñT%a§Â3\ 1-\b¯P\87\ 1l!x©\ 2k\1a\86¸ÑððP³²\94aÞZ&»\84\84\1a\8bT|OÔu-\ fÙ\1e4©56\85g¦£\ 4\9b\98(T\82\14\ 6$gêx\ 1@\r\92ÊÁ*\10\ 5\9d2\ 4,ª? '¾\1c\1al\9bØËI\87ÉBh½\1e-\11\19\19¬\9e_ï,3ÞÆÔÆ H\19^J¡\rêÌt¦³£²e±\9c[(´\8eãiðO$\9d"\82qã#G\9f\ 2\11\0E\ f\b \83\84\82\94É
+xT\8aÍÚÄ÷·h¿å³5\8daµDº/\ f\1ab\ 1uK AÙ+®WG\95)Ý\13U¾\1aðX\88ñõ¨èmÁ¥]°Àv\1aR\8c:SUï¨L\¸\1dT$\9fdr#¼'XX®÷\ð1¢(±´È\1cÑV\82¸\ f\b"IÄ-YX~á\f\ 6\1f4\9c\84z¦Úpz»\95\87µ\96@±¨Aa){j`=P0YÍ\14¯f°õx:âo-îæ\99\ 2ä£÷\16\91
+PùROÚØIãä\89ârPY[ävP\87eFÿ\9c¼F²Ø\81ë\12e@Áð\ 3\92\1a®ø\9c\9eµÊyDúQ¨²\81\98óºs\80+¯0_\1f÷L\9b\15C©^\83\8fT\98#=mT\1e\15Þ>K\107ìåA\83[5©[\877Òºã´xÅPÀ;¬\1a0¦8³_\18\1a²\91Z\93ûñ_?\ e*0w\9cÜGnT ¸À¡É}-(\95Ì\8aIUÇ\13hz\8d£\19\ 5\8a\F®eY\a7¡â\ej1\0|lâ(ç§[>ºÑ~Ëáó\86ã¯\r\11þ,Àö\r»µ\85\93Ö\84\11ñäîTfrÝ\ ej\1fCw\14ÏH\ 3HþnÊ/\8bóï¦r\8cý\18?Ìå\80ôz£øúìÁ1©ñ\1akûò[ß_{ëçé\1c\a7ÐÈ\îrDI\94¼Q)yÈa\19æ\1fq\81D¹%\89â\ e\17\e^X
+\18÷¨ÁWDÐ\ 1¾ÉälÈ$ìá \19\ fľ8¨ä\97·\93Ê 1ö© K¼sð\89§ È\b\82(P!\10\94WChv)ñ\ 3\1f\b\9f¦\83¤+\0çUL¤%&\80KÒb;Z\ 2\86\87\18 \84uô4ÆÆ\97ù&عã\98GÖs\1cTXQQû\14ÿ \9e\960\11\ 24U2\f|9<\bT¥'l¨\ 5\94ìA2ó(ßB× º«\vK.\13T)×£%0\9fª Y\ 4IX\93Ù M¥?+\17ÿ\929K\92W\88ÊÉ\12\95\aâèÖÊE\95.\17±%N\8cRðXjÇ\10ÒRº¢^\95\1c£q·L×þj\89r\17ª5!ß±õ\93¶ëW\93\8a0¥J¥1\v\8e\f\ 5\ 2_È\97øæ5")dÝ\15ZU\86áCÈ[\14Öé\9c\ 1Z^\85ÄLààj÷Tvê8à+S0 \84ìN3é\ 6\99wP) o\a\15XâH\93\1c4\ 4M&ÍUò\95óÓ5ÿ\91ç.JÍ3î´\18\ 4ÉÖYþ\18..¥å:È×#oy \a£ÏÂÓUè©¢dT\9e\9f,\8b\8eùÁ®(ÙRÚ`ô\13»ÜôB\11-t}ãìæR0Ï%O±\ 5\85\96\ 2z£©\80ã>Ì÷ÂðvP\91@Ö¨\94ã=^â@\93ÜFÊ~\97\0å\ e¬5Ý5Hÿ\93Ka«»6hI\ 56U\98;)3iª*ñ\9e`o\89S®r\v3Ô\ f\92 8c\a§0¼\9dT\87\12¬Q\96Îɵä6é\97åù\17sKh½|\94\2-¶O\1e\83EØ^É.yôÆ«\8døÙc/æ\97H\ 1VqÖÅ21e}Ì;¨ìÅ3fN3s \99Õ~çgË;²¬ô¯Î:)ñ*Î:\94\9fÜ\9cuR\10rv"?Å\e!¥)Å\e!\7fÏ!N8àù]ÿ\86³NÒ\9cOg]ÿ\8bøK×\86o¹Äg ³«Ç÷/ôxï¬Óy¥g\a\95\977ÏNL§\e%M°Rù{:>O§LÞñJu_\88gGæU<;(Ì»yvRÙa5ô§ì\11þ{Dþ\9eCZ\9dpÀº/hÛÎïú7\9cu1ÝC\97®\19¿4\1ck\18\9e!Ï®\1e\1f¬áµáçκÿð\92þ¹³îÅ%\1d
+ñ\17\9cuÒé½³î«ëúÔY\87jäÄ&9\9cu\11\99â.ÕÝT\8fHå\94²Y\80\1a\a@å \ 5¹Q\95¼\13xIà\8c@uG©ó\ 6/\ 1\85i¬\16\84\ro\82kôF,\1a\8czOì\93\83*;i\11\10>Åä\16¾"\erF\rdïc0ÙUzF\92\94ÓÃ`\0¢É<\16Â\9fT~ÊPß\\8c;þÉ\98\88¶\95Ý4¯LB}º|6\ 4\1a\85\9fE\f\90u?¾0*ò+K\ f\16 \ 5Jp}8\ 3hAÚîØ\8bÁTðV4Ød£ÁòoLÃ=©Üä\8bÀ\9brd_à\r±XAÙ\0\v\8ecÉR\ 5\15%LB¤Î\84Qk56à\90áb\1aßæ\88\8f¸\16ùÁv\98þ\98íÿ\fÀäoP1×=oÔA\e&"W\82Ið\81j4\12'$%\19
+c$\1eÆ ÂùX\14C\0P´\1e\951\82\14Éõ.=\10\em\9b¢\83Ê\9d²\11\1cPé°Eñ\ 6)°K3\vñ\90\18K\96Rt0\89\1cëPpÔ\9e\9c\ 4\9ebèôü¸Øü´' û¯\8d²û`\13˼¶~´ôc§+äá\18!\94\ 4dïkÁ
+ e\12\81at\ 6´`)Q\90X·v\90¼9\7fK×Ì\88\8d¶\1d\97\9d*ûd\11\90É?\8c·¿ä\râù\85\17\17l\93cIÞÜ\83(\8cÌÏHrÙÏ\95ó\8d
+\90÷ê\91Ý\16ø²\15¾ÕûC\ 4˽Üèø\95t÷?òþôÑ9øág\ fúÈh¸O¼?_zëûko}âýI¸WB\8e\vM\99\86\80}\9c©\90´ð6!\18²¬\ 2@\fü®a\1f<k\1a\92cww½½ZF\0nL\87u\ f\11ó\ 1\7f%#\85ñî\1aĸ\8aÀ@\15´Q\18q\19[elÉ\81³Àoì´*Â\7f#èö¼\1dÔÁµ:}7|\85ó\16Õ\88\80\18\8c\ 5I\99\7fÑUâY.\98\83\16;Y®\82\12Y÷°pKʻտ3å\1fÀ\84 ÞÅÖ\121ÆU"¡\91^ÖÈC\ 1»QôÕ\8c@"ïÎâ÷\10\97
+\80°\aM\ e\\ 4½g§É4\1c\ 4aU·\83
+«\12Þ\1c¾Bñ8Y·\1cÑK\ föÃt\rì\8cGÝI\7f\vײ[&s2A|\97`̨ )«Ôbì\8eSáØ\83ÔueAËÖéã\aÚ\940QD_yVù[4]ì\9d0¿r£6`kÁ¹\85E$\ 6®àRQPC(H3 \83\ 2-é·è\1c\8aL\8b Ë\9aU\90\10\95}¡½l«½ÁÂ\90qÙ\ 6\9f-YK\98·\15èÑea\84E 5àÞîY\19p\94ì*\8e\91[nÐòd£\ 4\9dh\aM\17{#¬=¿Qá\8fq\109ØyN6x ¢Gq0\1a\81\8fû8'!d\18u\96\1d\8eÅC\15_~]¾ó9>Ø\ eßç\8a(ù\9e£EÀ\0\87º\1f§«\9aûÉcÃ\84qå\13WÄ\97ÞxÕ\80?{ì5WD\0Ïë\ 5y\15\8cùÁ\9f·\1fÁ\19þ)~3;¥gE\94\90_âefZ\fKMÉ\9fY\ 1.Öó0\9a%È\88^\ 1¾N\9c\1dÑíø§\12»`ÏË/z\84ù'^wÓ?m\1cëy\8cq~Ç\87\129ý±ã¡k\ 4Ò\8a\18Ëí¯!\ fÒ¥ÝO\9a$o \18-O|\ fÖéûÓNå»Öjêt"B\1d\19}j_â\8a\9fú~VÈ\ 3ù%^uü)s(\7ffÍÓ]Ï#)C7@´u\92\9aãÑ\19\8a&\137p\98çóò\8b{\81\7fÊ^\90?m\1cëy\8cQ7\0Làù\1d\1fZ¥ñKKöÈ(\85æ\8b®\1f,Ù]»¹dé©«Á:}°d\97v\98«ÓÑ\90\96\rúßYÁ\7fàWø\83%ô_q-°ß\9a~þÉ:~\boÁ»(ÆÌ4\ï\0+|¬-n\962ãc\8d\88\vÅ&±\r\856vßI\0Î\8f\84°\Ä\8eÂð¸Ð¾\91(õ \0³Åp\0\10\9d¨0$¦2\14\88@è\vø\7f@\92\97 s>á2i\92~ÿ\bÐ\ 6aF¯f\11Þ\ ei\96$\87j'õ\9f\1d uãÉE\8cI*¬\ 4\fER\90?¶Q@1\ 1¢Èö¨ \7fø°"\10cÓ¡V|òü\86¢ö\17\88Á\13û5à\8e\92ÑÞ 2Æ\1aWyFJâ\ 2\bÌõ©u#ýÚVc\12G\7f\8c\87ïm\7f\18À±TY0BVCØIIî\97F\7f\938\97è¶\13çRâ\15\92\811\17üº1>\94PÙ½P\11\84þ\837(ØeÇPÇ\9d\99\8eß¾ò8@oÜç\9f<ç\ 3\83àñà¥&È×ßùþÒ;×ÜlRn[C'\9d\8e\13µ¶[\vëÕò\9bDÜÇ\97\ e/\ 4\16\96AIØN.sï`7vúxH\94sÎÒR\15.Ò\0D\89\94ùð`®\95¡\0!a\9fSÛ\88z«\1fXDJ\ eA\18\9f\16óNÚ\ eËF,â\9aÂÑ\b0\ 1yÎ.'4\13
+[do5N;Ͳ(\88Á9\93Ô"¼p<³\12\86Ç\13e¯äÌÞ\16mßÄ\8b6\98Gn2sDr$Ðòý\16VÒ\18Ù°\ 5\131\92W³>\ f\89öµQ\16g\9bÄyÀn\a±J ]¼ ËzÍU½n\89\8fµ½úåz â\89sÇæ\1c*,\12D¸jó\v¯\92裧\1a¤Q(\97côÚû®òé\93§æ\94<G´ \16\8bèü¼:\14\9d\1fÁ¾Kç¿ÓµM W}\µ\84Sg\8f;:\9eÜURç\17è\17êü)î°tr\ 5bÏË/j;üS´\1dùÓÆ±\9eÇ\18çw|¿Î\1f}»×ù\v\80íC¸¶{\ec|V2aö÷þ¼¿;u_g\12Ê"R#\96²\18á¤\85¼L¦¼L¦CÙ\9bÏS\11LÉ\94E\9dÉÈ%J\9b²ÈÐÌù¼üJ²DѶ\81üiãXÏc\8cºöP\16çw|¿º\1fé«<tÅ9»÷íÆjÕg\15\13f\7f\ fVëÒîSMÿ¿³x\7f®é¿¸zé\v\15\13¤Ë;%ÿ«Kø¡\92?zÐx$è+\15w\17cYQxI
+~\e1¢<\13ËbC3\94°åE¢ë\87%\92v"
+y\8f\8eq\9få
+m\ 1è-\10°\83÷I!BÀÀ2\8aw,\aª1däd\ 2\19\9a!<c» x\8bü\ 3¸Øt>ö õ¥\81Ú\9c\9dè\r\93\ 4\15ÃX$ Y 'yô$\ ec¨\14\12©\8bhÄèüF\1aO2æ½\94½]mêÏ$6°\17\08Íw\0\8c³Â>G\14õâÆÅÝK\83÷\b:\80(÷\9e\10¼qh\0\12ß§\84ñ\14cùp3im²\0S°kêy\8b\82÷Ë]ÓF#¼\7fd+)®\0\98}©|I\ fqô¢»E©8\1a\v@¦M[\89ì\ 4÷\90µ\9a¥Cx/DC³ÎWg £ÂG\81^,k\84ÂWU®\97ÆñªrÀÇDz<EþÙ\1d5U#aE\90ákv\ e\89 Ði\ 4\ fé ×\16¾\ eRÖ\82\ 3\18\88¯\ 4¿H\806£«\17J)ÃÃ\93·\ 2êP\ 6\1d\0¨6\92\aÚ5\8eøI«\81¸\17\e\11X÷u\bº\ 4\87&ËVµ®\9er\8c·w\1aºM`\16°EûX=\82`¡v¢'\921¯M\99¼z\10\91=B\ 3Ø\88ðüz\ 1èFè\19ÂÓwR\94´\11|í$Â\ 6Ã&Þz³ó¸½ÕH¿\1e\1dæ\ fyÛK\86YB¦Æ\e®4á{\9f\8a\1f.fd¨sM\ f~÷FÞôÉsHÂ,òàÅ0ûú;ß_zç\9a\9bÅ\1e·Ù\1ckÃå\1a\p\1cûìëN\ 4Còz©Æò\f\8ejf\ 2Ê{\11&\83\eñ±\8eX2Ûd\rà"u'Ùfüõã$b×ÞvÚ`A0e\12Ë·8\9e\0'\1f\96\9c\95Ä£»Â\ eYÓ:\9f\1dõ\81;øðà\84\91\ 1 8Ç\97ó鿣L=Â\11Xíà\7fO]] .óêÇK½ÄA\82\11ÆÄ£\bð\ 2"ÛÐ\8eL\88UF\91\9b@Ö\1a½\8a_T\rîbÓ\15d\92WîX\0ÆÔ.l¬3¡½8cl0ý`!,Êb\7f\8bæ\90 >F\84Û\18æ\16\81oÞñÚj¼\167N\90E³ÍXYÆ<`ú£ãm©\94D\8c\80ì¯(\7f\r¾\a¼Jòh°\eÉOÑ\bÙ\1eÚU\9c´)N v\88è¿Úõ2e\13 \10JÜIK\82-RÀ«\84%\11ÔutZµ<sC\99 Þ%\83q\85ämR¥T/\83\Y`\ 4¢ tªj\b\9efi\a\88a\95ÕY¯©7Ò&Ó\17\11\ 6\99\93%\11dv\16G¢\86°1\9fj\1cigSÕ8\12îý$\90ÚhäðÊ\b\11=vúNÚxã"
+ÀÌêËÎè\83³ü\1d\165ÙQ.\aW TnL-Òo¹j|\1f?5T¿\9c.üïµ÷]\95ÁO\9e\9agû¹E\9d¹ÝiQ3@V,ê\94ÛfQßY²f⪵kÚøa\11ç\1d`R"oiQóubQç²c:2\b~>/¿hUðO±*äO\eÇz\1ec\9cßñý\16uJåbQw\94\81s×vo©øg0ñ³¿÷çýÝYÔ:\930Ê\10¿¼\8c²\94\ fc(Çé\90P\19ÊE=\8cªù<\r.YûhK$FY.a3Ê22\87æóò+É\12yÛ\ 6ò§\8dc=\8f1êÚSc³ïø~\8bZw]~´Z÷íÆj¹gèð³¿\a«ui÷©EýßY¼?·¨_[½\¿\80
+/]Þ[Ô_\Â\ f-êÌúBÌ3Ä\r@epOFi9\89\ 33b\82\89ÊpF°ò!ÏÆkPtIâ¸\18\84Bs-AÄK\10\18°\ 4\91\97\95\86Õ, }(aHØÈ\9d\14ÄjÄ£\8b\bO¼\1f{\bYL\99Ò\11õñ\90C\85\81H ûI\1a\8f2\90\89o]íp Fë\aÁF\883L(ÓÄ\8csT¶sÕÓwc\89@\11eo:BÀÆ\ e\1a¶\9e\13\f\98A¬\95\8an\ 6\f\17mL\94\9bJH\ 1Ë®jô%\f'Ö\88Æ\84z\96Ê\99¤ßc\96³â!níªÆ\87¢\94L@`Î \v\9c\9f¼`t\8cGá\11\109\82äx|Z\ 6°;\93\860QC\8b\a©KM¬q$\16±;Éy¼\1dD\14\10lèÏà39{Pb3ÔûÀ`ù®£ÃW\145ÅYS\10÷\1cøZ\15~@vFÄ`v]b\8a\16i\f\ 5\98p\92ÌnÄ\e·\99(±\93\98fU¡¡ò\v\1açNBÈ\17\91\8fvb\93\9bK\86\1e£$\15V\18\vèÍ\93Á\8b!\8c¡KX\ e5Y:1\ 6?B\15\9cl
+¼\11\1116]-$&\94\96Âq£fÌ{¥\8d\ 4§\9dÔ/ß\89ãuÕa³ÏÞp9'ß4ßj¤1¾è5°j\12Ç\1cÅ¢\99h\93\98\93\97«(ñu ¦ùFâÝ\18Í\80\9dè\ 4h5ó\8e-Wù\8a0¬\98ABu+Þ\11\aÔ\8bj\8d;\aûµª\97ÇùÊåÂ#Ìag\11«ñA9\9a^Í\1ag(\8c\98ãPÿ\9d\18\97ð\e0¢2GæÁÑY\96\ 4à\ 1\83S\bvX\81ÐÄw\12ø\ 4×ì ѸíD M\94\8a¯\18\8aZ$\82 Ê»\ f+0GÀ8ðhV9\81Ã\84Jt,\\vK\1eU\ 2±ùkìqãu\ fxâ÷Ü\18\135ìͲO§þ<x¨~Ï\ãCl¼\91Å\7fò\9c\ f\88@¿/\ eþê;ß_zç\9a\9b%e°\1f\ 2UxÔéê\b÷þ\9bsnv ²¬Ç\92\f¹,\15\ 3¸o\1c\ 2\f3c&\83ùN ò\91£"óÂ\1dèU\e\0` \8b\86`S³ªYæ\95\94ìó ^\81\9d´ÎÃFÄ6\18\9c\1co(Án8y¸¶CèìdîÇÕÙÉL\b_\17+Û\88i°c;ü\95åZwÊÆ#\16ÑKÂÈÖYhÊq6Τ¤1%ðÅ\10\15n\12E0\r6ªÇ\90\91\9bÂ\Õ§á4ö\ 3LÑ\98f\95pê\9d4\99ëN\8c\12§\9bY\19P\1cDÎø¼±ôI\12\1e+Ì\7f\12ÇPà#d^Îz\18\8e\83âªx\ 2\12Âj!\98\ 4~\ 2\15ÝÆ!<°ÑÒ\98\99O1x\rx\93 °!|P\fe'© \13\1ev'\12o\aqH\10$ZgDȪ\80Mâ-ÃP\86þ\98\85Á$A}\84t\96Ô\1fVbF*\v\ 4b&z%\8c÷{ño¤ß"ý\18x¼Ú!¸RQE¶\ 4j-Bc1¥£\12nè\97È9¦¹\93\86õ¹©ð£zÝ\80\81\11E\90eáÀ¢=áª\1f;ÈÑÑÇ\8a~wÚ\93\91~SÜ14|k×ÊÔÅ\ 6£¬1\1d¤Mg[D,ß8\8e©YÆ\ f?\96GÀ1é¥ÁE\99ô<%Ñ.PÍ\11ñ´ÜÃ\92ñ\80Ë÷{6¬$Y\ 5©\ 5¼ÚÁ\17§Ö\ 6Dní\14Lr\a\ 2wL\13Ð\93\f\88X&\92a .\94D>a\92$\12¶`£\98Àùõã$&Ñ\ 67ZAø\aÞ\9auíy'D\95îÊ\11?\f\96~Á½C¦\ e\98ç\8d7\8b\8e¢\8bass5?>~jØ!H«»\93"¯½ïj\99|òÔä\9bÏÝ;¥9sï\14ç̽\93[ÙÜ;wn\15ó·¨ëÅLÃÃ=ÓvdFv,î\1d¾NÜ;¥ï`\88\95ÕHíyùE\13·ê\ 5ÒxBþ´q¬ç1Æù\1dßïÞÉ5Ý»wÆV\1cbîA»·\84+ÑÏÝ;³¿÷çýݹwt&á!Èo\1e\82Ü\ e˼ùé\1dÓPA.êaáÏç!ÿuí£-\91è\ 4¥»ÍCÀºñóyùÅm \ 5å¹\räO\eÇz\1ecÔµ\87ö9¿ãûÝ;\99Eê\ f\aÁ\9cÝûvXg\85=f\7f\ fVëÒîS÷Î\7fgñþܽóâê¹/Ôð\90.ïÜ;_]ÂgéÖ%Û%2´vÂ\b\ eF\9aª\95W6bIÁ4\8bÒD\1eo$ÜlHE±\9dØå6m¬\8b/zÛv\10µèï""\1fGnºèù\18VØAê\12lñûÇFDQo$\1a\r\8dñg ª\r\ eÝ\7f,8Ì\7fÏþ\91ÇU\18\9c\ 1"AxHD\90Á\18\b\v©Ð*¯5s\1f\11ÔÑÙ\85>°[0%\8d8P°\8aX/b¨|Ã>ty#\8d¡ázÊ\9bõ$í
+\90\\UÃ\1f\83Ý(Iê¸\8d¡M"\14_\97\197R\80®\14Ä\ 1³\11»\16r\9eÄ\828\ e)Q\b0-¨\1a\e n\ 6($cx\e\11o\1es¾:\9b˰^j¤cxÛ\1anDÝ\ 2\aqn\15Ì\8a¤\85Î\ruÝx\96×½í!û¾¿7"\8cÅ\©Ú\16èU\84µÛ§çúø÷D\ f\10iþ\ruÏ âN-¨àÒ\91s:\97ü8üo<¨\9f<\a(³ \ f^\8cô¯¿óý¥w®Y\7f\94\ 5¼o»<W\0\90âºAó\9cìI\9c[ù$VÉè-¸Ì+\16\b~9?n\9e\9f4ï£g;à©òÌ"\18 £Æ`IÀs zAÓ\9djS\81ï\89©ì\1c\1f\f\vp\19-&'Ä rb\10¥tì`\1fô"\83\19\19GA\8aÿ°ë6ÒÆy6b\91â(xm¥ó \11Z\11\ahñ;#\813.Û,Î\ 3´\88Û\ 1Ú\88NpÚ9-¼ë\86B}9@J\ 2û\19£\8awíæ²ÍÞ6ÒâÜ\8b¸\8dom\84\9dX5dc}ñà"ÆW\80\ 27\94é\9d´øÏ"¢"E\eGwëͶÕ\83íg\ 5\12
+ÐÎ%âqÛ\99sÂ\10ë@÷Å1\8bÛv½>þ!oxÁêâ)-ñþ°\rF¥\9bÅ\16ãª\15|üÔP\ f¼»°\85×ÞwU\18>yj\9e¸/e§"¢D\r¯\1a\9a\19^Õ§Íð:\r\9ei ©Q$JÛ\9dáäw\94-v,\86\17_'\86W\v;°\95$1Øó\9a²\82wXÖ\v\9e\88{\96ìz\1ec\9cßñý\86WuáÞð\1aZð8\86åÚî-µò\fÁ~ö÷þ¼¿;ÃKg\12º{õuÓÝYàeêÌòKíÖ¾ìÖ]÷^ÏCÕÔµ\8f¶D¢»\ fÅkÓÝ[ØÓ"å\17·A\vÕ¶\81üiãXÏc\8cºöàRó;¾ßðªä}\87ê>g÷¾\1dVë\19VýìïÁj]Ú}jxýw\16ïÏ\r¯\17W/~\ 1\96^º¼3¼¾º\84\1fÞ«³D\92\98*ë^\1dp\v©¤ýb\89è¥Ó\9f\19\ 1¼\ 1PÒÆ°5:/%\fºòæ®Yô\e\17\19A\93¼S®\rï
+\e\85\b<|lRª<_\99\vG\8f2î\7fkÂ\v\9b\82KNÒx2;ÓEf»\1c\ 5ö\99Á¤¸Ò!æ\90Dö\réO_)¡·\b¯K\85 r\1f\0á=J³\8cM3$\0&@²ÜìF\1cSÖÄë´nÎ¥üTÚ¯ÓYNIïá\vKao\94îEB\8c\81\1cÄ.e±vb\16\88\ f\94p\92ðs^E`\93`$\ 4ºZ¤1\92\82\90p×\8evÎà·z\13¥\8b¸¾Þn1t&«Õ \86§8ä±\bð\8aJ\1dpT®\87G\ 3\93+¥ß&I\16A/\18f;\94»\8a¬q\8a\17\8cóø\17PÚR\v:\8c±épýA¼ÛN§\ 2
+\1cgÇu@roiz\13Ó\10\ 1\83ÝV
+\83î\ 18ë³ì?æ;Ð\ 6K\8e\87\9a\15?Ý\8c\9aI»+\957ÂI\83ã1<ç£e\ 3û\8b/\13Èäí²\e\80>¼¤Ø/»\ 1~KØèíánx¯Ì#E]\88\9d\ 4ð\15^\14mÄ\80Ûµ\8cvó\1a\v\99\9a¸öÞÞj¤1\14¤´\86£Ý\8dÄDÐkĸf\1a<DÉ\92\94\ 5ßä`²\94¥\åyDÛ\ f\v»¢Ò$q@& Û¸ÌëMk׿äá\1a w\94@\86\95\ 2d¸aGr\ 6>,Iµ\a^Úyn÷\8eL\8b&\8b\88
+í\93@³Æó¾ú ¹¨ók4\f\1d\1d3Å\ 1Ñ©L\13\a
+\8d\ 4dã^\86A¹c\0\1c'\19\ 62Nq\19Å
+gu¦\r\93\8f]ùÝ7ß\99sM\97zÜ»ÎÁõÊ|0ï7rï\8f\1f\ 3\8e°{vcþì\8dﯼñÑ}9k\851\91\ 3w´4«\87\90@\19ZÏäg¯6\0@~R\94¸ï|Ýeyî2lPñǯv^+' Í\aÉIàPR7\ 1±\1dÀËþEþl¸\ 6m\1e\81í°lD\ 4f׸\11\81ãfçÑ3Ü|§l't\11q[\ 4Y\ 4hÇã\ 6}g\vóú}g óú\9dx]GC¢~\13W\90÷ûx+HILF\f$*gÌ\824 \ 1 ^Îv²j$¸¨ãÅ:8hÁå<¯Áié\83» ?Æ\r\9f\e3ÈþàöÊl§\98S:<\99wàB!Ø\ 1ðå"ò:£\93\ e¦?I`úã`2ick\97µ>$HÌ}\87Tñ\99p\ f,ý\16EÔt\11C2¾1Pò1É\ 6sñ^ºM\12\18T\96ݹµ\e\eÑdec\92ÁNQ\91úëÇI¤ð½íDÀ|#F o\90¼\8by ¾IüuY\8e\11K\r\98Õ\ e0\1e\92\vÉ\1aÍ\ 5\93\19ôH@ \88ôm\80f\1e\8bÁ©\ 2A,\b\1a/A\7fM\vÝBçR\90\bâ\8d\9f*\90\91ÆHR²<«Õ.\98>\95Å\8f²QLç\9a\14Ö\82á\v\87\84)YUµ\06\89¾\89\87(¹\ 1A\8f¡\97B8tâP\12°\84\ fk_Î;Ö\9dÕÎ{qÌ®ÞõÏv\0\18d:\1dzc\9e\1a\18\8eäÈ@áM\99x¡8\98\83\1d\16\19\1d#ä\88\8f&\82"Ëþ¢\988\81\88\89wbç¶Ó\ 6KA\80\ 3Ͻç±t¨s\eã_\ føÞwÞ\8aï\f\18\93ït9®\97â¦æ\7fø\10l\88öù\9dø³·]\8d\8a\8f\1fzáF¼Çb\8e\99\96\8b9fZÚaÃî\1c"æ)Q§\89\1au§c%í°aìX\1c3|\9d8fzÚaÃzÙ!\bä\17\8dSþ)Æ©üiãXÏc\8có;¾ß1Óâ\ 56l¨¾Åtm÷\96z\7f\86\186û{\7fÞß\9dcFg\12¶ýøw³í[<lê8ñ¦Z\9cxSòç´ÍÓ\8e7¥k\1fm\89ĶïiÇ\9bêyÏb\97_Ü\ 6=O¼)ùÓÆ±\9eÇ\18uíÁbçw|¿c\86ECîL{\9bÝûvcµÚ3°°Ùß\83Õº´ûÔ1óßY¼?w̼¸zù\v8aÒå½cæ\8bKøìF\1cö4¡¨ \96+ü8\ 2ç\ 2á²&\91¡~T\8caüx\ 4=cD=P+@iÜpãÁü¶PT\86\12&´!©T\84yc¸YßHPÏØÛX\95\83H\9de#\r\15\9dj)Å +õÁHe~9¼C\1c\aÔn"z\8dq0¿=\9bZ\f-\12o\8f!+6\14Å;ô9\81¨\9d¤ß?\98^n\11\17B¤\81PäÑ \95LxõR\9aâ\ 4\ri\ f\95£h\ 5\a\92år] \91\18 \17\91ç:ô\8c\8d\84ä~Á Ø\89Ð\84ÇZÊ\v\82Þò\84\8cÞ\86å¢
+«\91Æ£@U÷\øÕ\ eæ°6k@\§\ 3C\8c¶0´pÏ+:\10YQI\90Ý\ 2+\0\80È\92ä$\86DLkF«\17\1d]G-\1ejø,\8e\84\f`½b2©k.ÒX\a$Ht\9f\8evЫÍÍà\86Î\ 3}Ù\ 62\94ªN3\89a\87N\91ã\b@Ç L¦ªòKëx\15wj\91<l\14Ûf¬(º\93
+äÌ\ eÆ\1c"L\80Õ\84Äc\ 1§"¼F\1aVl$¬=Q\19ÚFÄüJ eç=ç\18\1cþÏWqOx©Û%K¨\18\b\88r\ 5\8f\ 1 \83Ö.cÆMm\aÉKý\9a±\10\aQ-\87\8dÈ\90ÌÈ\9d\13$²µ\16\19&}2R\12\84e×Y;\Ìe GDéI°K\a¤\b\vî\97\13}9ø\16\90ÐfN \86\1dû8
+\83'àîXü®FÄ`}\93\erî¤È%\12D
+t2ö6Ï"\91å[\16_#a\9bé°ÔvQj\98í¤¡(\17&\0\9fD:}n;\11·¯Àͦ#Vð\14\ 1\16\8cÀp¬¯FÍ\1a ë\e´\1aÒ$ò¸§ª\ 6\14_±\91°3\vÏÊN*\89)D;q\fd즿ð\82\1a-DC§é2\9dßá\11ú°d\1eÙ
+7Îä_\87,z£Üøä9Ôûº\16-zõ\9dï/½síÂG\ 1\1aðâ(ûrÀ`Hȧ`~\84\13á0\98ró\98ýd\81\12Àr¹?æÉ\8e9×0\1cͰ\93\ 4\f\ 1§§yð\16¯{\ 5Æ\19y"6äô\91ú,Áô4\r\93pG\8f¨~\115,Ø)X\ 1\9e5B¹=3\82\0ô\ 2l F/\ 5\15\ 5\17&Ú\8d\89r×ú\1e7"¶\1ekX²3Þc`>J\8b\ 6\81\83z¬¿8I\95©tâÓ\8dT¬\90\1dA,r\12\93\13¢Ý¶\80ÉÓ¨cÎS\97,©x\11AF\ 2éæÐ\99í\82\9b\ 2\8d<È\1f¤MðM"î¨àÜ\ 2s\97 \8eÎúëcYq\8bG0\ 6¸ÜÅÙDÎ+\b\r±\89|\0\93«Í@ù.\ 2Þ\99\80\a\93*\8aEbíà³\90i\8f\85v;X¬\ 4\ 5b´i0\17j\15\10T¾\8b Ê\90I¥M\r%ÈmÁF\12=\ 6ªM»×wn\e±1ï @¥ò"¸1\1eF)0yÔÔ?Äøüæ\16,\89x·\80Á\18:\96°]¹3)õÂÞ«Aò3]\8dÙ\80\93Hl\ e9\80x\93\e\9bf#K¤\93H¹u;\88Ìh j\13£ëp\12Y×ãÁÑ5@}\9c9E£@%\9eæ=uÏn¨AôÜE0ÐðS³ â=K\9d¤ßTR¸Ñ\16\91GB\19t\93ðË\9d¤\8c\NÉÁðo;©Ea\bØ_N³\ÚEÈ\18é7Õç*7N³\9d@ØÇÙÛN1É&ÜåN\ 6Þ\ e"ÜÚ`VI]\9ex\7fL´\ 5.sùÏ=I\1f\15©\83 ;×öÑÕÚùø©aö\94Ï\90è¿ò¾«!ôÉSó\98\7f$\9edmÒ£$À7ô(õº\83RÞyrÊ\ 4¥\9c\8e\1fõö,\8fPÝA)Ù±x\94ä}ZvÏÕ\1d\96Ò»¶£pèO\81ávm"Sêß\13\16\7fuBÌüù=ßïYêù\ 2N \83¬\97pm÷\96av|îY\9aý½?ïïγ¤3
+çD¯;¾¡¨{Ó)P&¾¡ÈvuÌ\1dÎ\85ù<\1d\ fmâ\eÚTFYª\1dáÐ3Ârv¡?\93.Õ\ 49Ô¿'®úê\84 ëº\15à¤\98ßóý\1e&¢6\9e>\8a9Ë÷íÞ(\93?÷0Íþ\1e¬Ú¥Ý§\1e¦ÿÞ"þ¹§éµUtí\v`\95Òå\9d§é«Kùa\b\90w\1ePPAb Q+\9a\85s\1cа|Ý\88\83\ 4Á-\81óC\ föÞ\1f4À\18¢~Øï\1f\a5kM:Ð\84\81\0*\v\19´\83\ 40HA\95nrs\88¥\84rRºfm0\80\a\8b\1aP)\897\7fð,Ip²ôP\rXR©\1djeñq#ö®\81é\92\90\8c
+Ê\eÉ\82Å\87\96²\11\87 Æ]\bz³èö(áÛûk\8d\86\81'«Ä7©\18b\82ÊD\1fËz>k¼»$z\0¶ð )Þ5fr£\ eÝ´`\ 3ç õæ\91[>v\0\1f\1eº`¡\ f7(®\18\ 6\14PyK²ZpcÓ½Ì$"N³FJÐ+3ö@\15ío_îë¾ø§\961ª\88u \v{#FwÚb\7fÇGdûV\9b©ãð¼q£\7fö *\97gyòÐ]^|ëûko]ó³U}Ý6\ 3"\82ÐíßÇ~5*w±\97ÊÑ\8b\8a]g\eq(\91Cºî\94m¿.¢c\90\99tÆP4luîþã\98(\rÛc\18p]@\81\8dÊÁà\8eY\ 2þ\81ÂZ¤\96¤\809\88æ¹ \8f\10·\15Ì1äB\90´N>\ 3
+\ eÚÎ#\16ÕI^ÆØrN'\82Ù:\97m¨4<\räI\9eª½%\È´\0\86éEHÓA\eÇ8ó¦·â¾\9b ÷cz\9aá2\ 6`\15&a1\83ªÞ\ 3 \91°ª Nï:\7f¬=vж\93ºQ«°\8eAC^<Õ?[ØG\eã\9fCéyÙÞ9\1f\9b\14\9b¦èþ\98Ót\95G\1f?5\ 4S\8f\ fÎÓ+ï»\8aªO\9e\9aSòüfÙK})\1a\ 2C\14M0½±¬;\9aÞEû6ÅÜ\94ô©4\9cº|ß!õ¤\7f5\b¤\82\95\18\ 4¨ª³\19\ 4Rçfv"?Å \90\8a;b\10ÈßsH«\13\ ex~׿P¡Êµ\v¸Þ\10©Ýu÷ á[\ eù\19ºÞêñý\v=Þ\19\ 56\99Kèv\90¶±\0§\12×'L\9büm¶U?TÂÕ \15FÝ\16q.\9bê\95(;¶é\95\ 2\97<;Qôd]¶\89צ\7fÏ!N8`Ý\16ä¬ó»þ\85\8aU®_0Ûæ\84_\1a\8e%LÏ ÷V\8f\ f\96ðÚðS\vá?¼¢ÿ \82Õ«Kê¿\80ç\9dÞ[\v_]×§\95±}Ö¸Ú\0?&V\9b¡×ÉoTï#£×ÿâUWEhý\98Çþ³EUIMvzàç\88ä®IÁ¢ü\82{C\94^M'©ý,r+vGeå¦ÛAíyH\17Ô\84Äkb¶\10HÆY\ e\1abѹ?à N]º4H'\80±!Òi\90py,ÀÇc\88\9e\edÑPRK\ 2\r器@¸\1dDè\f(0\8dÉ)\96\9c]!\aeRçOLÌ\90¢Ñ\8aVi\9b1\e\81a\81«§EÒ7b\18\a1IbÁNEr\eÐ~\87\90VÜ*~.}ô\83\96\7fÆ\14\9bN\vµ&_ç-\f\9c¹¸\12\1e´*\9a#i®så\ 6Ǭ.ab±ý\967+¸`ï\92Ñ>hcÏ4â¡Áy\8a¢·;\r\0T]ÏßAeXäí¤ú\9f è:\83æ\fî\ 5{ W\ fcDI¯\84¹ë Ýêä\9a²\82¥o\98Jbg·~ìâc«Û=ìv
+po\1a\84奬~}¥\r\8aÿiÍ\82Z[\e\r¡ô\88{Å'\1eÔ¹\8f7jU\80w\9f\82V@ÀíVg\8f\11xè\16ñ\99¤Â:F\134\824â\ e\8e--\82\80\97e\99ûXº×\9fx0k\fêÞ\88%µ$l5ÉÕÛAÓ!ãC\ e*?ïvP×Dd©\ 2°M×>¡\9cj9\13\ 1·xYç¸Îú\vJå÷\a©Ù\16\82\16\8eßi@¸vÂ-\16u\98\ 6]\ eÅFÃ\1d¨\ 3¯H\82\85Ís²í\83ùS§\89¸å[\eT\9e\13$¥ÕÕFã+9G\93f\83»\9dÔù\19(\84'Á×ës\8f9ù\9eûj\ 6Sã\ e¸#\81l\99¹\9e \9f9m<è\10So\14(\9f=è£\8búäåÆú\85·¾¿öÖub\1f\96\16÷¬ò'ì-\96\1a¸³j²;`¢B
+ë¨\eÃ\f\80jÝi;ß?¨Æ÷\171ú±ÿÉá\10£\15£æ#\1d\9cß-Î\8fä\0\89¥_\8d\900®Bdv¶h\eï?\88\93÷/*ÊAÓ¾\858.Õb\9c}+*\98¼ÒÆä\18\aF"E\94\b\9aÁÉ\1d÷!pG§\90å\85ïNÛyÂA¥è¾\1dTÈ\16°¥ñöb÷xÈ\0Ø9p]'\ f5\af¼¹6BP\99¬<Ò\98D\98,\9a\89\r®T¿\171·\83\8a¨\17T:\17Q&"¢c!M\98ôâ4\eBP÷\ 61jÑöÎ\1a\12¨Vîë\8ct\82l¤À»ßu\ 6% {\12åYN¹ð÷A\1dB\92ÁNäXZ\8d\80ÂtqNùõ[xIj%îMp±§,xö´h»,:¨S\16mT|\900¼)\8bàÃÝä\89ýü-,;Ö³\rÔE\96¦`þ\ 1\10q\ 6\re;-N\88ø\99< Mk\0Ô*S\8am356N\82[æ\9c½¹ñ®sz£X)édÊ\7f\9f4Í¡\e\8fö¡3vF£¸S\10¸µ\1d\a\8fbLÆÞ(ö)Tfg\emJ\82EÛ%ÁFÍ\92,÷\18ªf?%\81þ¤L\ 2:³\vG£õ]«³\8d¶IÇûYùç\80\14\9a¦3$ý=§F\90\86\1c~;ÃWûç\93Ç\86!\ 4¥úN¬¼øÆ«iôÙc\93\15\7fíªZª!\8a\87*¤\89\a\88\ 2=»\87êÞ\1dd\9e"ó\1aMcõt.\85\1d\15PúW\ f\95Ô[\14\ fU\8c;0 \17¸\91Ù\89ü\14#\*Å\89\11.\7fÏ!N8àù]ÿ\82\87*ø{|ÀÄH4ÿ¨á[FÔæ\13\ fÕìñý\v=Þ{¨tZ©x\86°ãÌ\8d\9f§ó L¤9ùÛ\9c}átE\84\1dlζE\9c˦þ\f\14ÉÜü\191î¸ úS¶H\8c\13rNÿ\9eCZ\9dpÀº-(Íçwý\v\1e*\86`\1dî\8c5á\97\86XÂg¨\81«Ç\aKxmø¹\87ê¿»¢ÿÀCõê\92¦/@ j§§\87êëëúÔC\15à\9aèu\8fªÆ\92\97þs(.e£z\14\86\96Â\83p\ 40«sèKI\95e\84ý!Gu\b×\90\99<IÄ\vdõzÔTN\ 2|\f¼\8bæOR\9f\1aÂF\85õ\¹Ý\0KÑ\15äx\98Û\15#\ 1\92B\88\e\r\ f\ f\1d+Kaåe²ÛGè°H½÷¨û¦Wj\bê\96
+Ï¤ÖØ\14\87\99N\12lâ\ 2¼s\81\ 5\ 3d³\b&ÜÄ1}Cª=p?3ð+ª/ '¾\1c7\83m\82,'\1d&«\9dõz´D8d°\9a}½³pøè»Æ È\18^ê\9d\rª¥6\8b££²e±$[ E;\8e\87ù±I§\88¨ÛøHäï6Óò\80\880H(:\99¬PG¥Ð¬Mü~\8bö[>[«l\96ÈïåAC\0 n d${\ 5ñê¨%¥{¢zIIvãÕ°øQ£Û"J«\0\7fí4\ 6]27õ\8eÊd\85ÛAEÂI&7Â{\82ÅâzÏ\ 5Ï\0c Z9.éV+ê: `$ñµda%9Ã"À\a\r'¡\9eé5\9cÞn%`%P+jP\bÊ\9eÆ\82\r\9bÞkÅR¼\9a\11Öãé\88kbàÖ\99öã#j]$Ã\94È¥\9e´a\b\8d\93ÇÀ\8f\93Ê\1a"·\9d
+³\8c¾9y\rÓÖ±«ø× \ 5\ 5\fÀQ¤Õ\8aÏ\19CoV,;\8dù\93\rÄ,×\9d\ 3\y\85ùù¸gÚ¬
+JÝ\1a|\ 4ÅdÄ.0*\8f
+¯\9d%r\eÆò !,?©K\87WѺã´HÅо;L\1a0¦83^\18\12²\93\8a\\8cÿúqP\81±ã\82\9cçE\8dcçÂ\99É}MDJÉ\84IUÇ\13\b\170L\95(\98ã2r©£\a¤Rª½¡\16Eºç&\8er~º& OÚo9|Þ\0ûµ!b\9e\83ÔÜÀnmá¤\15aD<¹;\95Ù[·\83\1a\90\1fî«ð\r\r|Ù¦ü²8ÿjúÆØ\8eñÃü\r\b¯7J¯Ï\1e\1c\7fÁ\15úJ\ 2Ç£·¾¿öÖÏS8\ ef á¸Üä~tXòF¥àé\ 29\13YÝÑ\8bØ\92Ìða(\14\18*d\8ccAzÔ\98+\ 2æ\0\t26üÕÃA3\16\88mqPÉ.o\aÕ16\8c}fÉQâu\83O<LÃ
+î\82 \80ð¨¬\1a2³K%\1fø?øtõ\ 6\ 4\ 5\10È{)a4\15PC\8c¶£ew\8aùA\bGÜ\12\ eÚ8\rM\9cbíg\88jÉ\11`=j\9fâ;ÁÓ\12\1e"ISä\17\88\ 44g\aq©ô\80\r\80\82ÝI2\1eÅ[è\1a;w\11ËFãÙ\ eV\9cbµ,ÈÊ\10Áê$GMf'4\15þÎ\14ß\92Dð\92ê%\18\ fÄÑU\85*,Z1¨qâ\91"ö\87ÊñP$C\16~Ù\8b\8e\93\97\8e\93Í«¿µ\84z¬J\13¤që\aíP¯\16uôS©3æ,wg\90\a|!_â\9b×H¤\90uWhõ\18\86\rÅÊ·\0\8aÂ\19zåUF̤\r®vOe§\ e¦¹\92\ 3\83ÀÅn´)Ü ò\ e*\ 5áí \ 2½\ e\99\91\83\86XɤùI¾r~ÆþbÊ#Ï]\94ÒfÜiQ \98p@%g\f\15ʤå:È×#o¹\1f\a\9f\8fÂÒUæi\8a§Qy~² v\8e/à\85®èØRÙ\80A^rÉ\v=´\88ÛÛA\11(\98ç2ñ°ü\90\8e\91òy£©|ã>Ì÷²ðvR»à£É{T\a r\11)û]"\90\87\98\88^w\r
+ïÊ}0¢&\e\8fÕØ\18&¯û\ 3!£4Õ\94xG°·Ä)W±\85\19ê\aÉä\9b±\83S\16Þ\ eª\ 3tw\8a²tN²Õ¶I¿,Ï¿\97OBÛå£\84\92i¯}òذ\a³{%£äÑ\e¯\16âg\8f½\98S"EVÅQ\17ËÄ\8fõ1ï\0²\17¯\989ÌÌyf6û\9d\8f-ï(²Ò¿:ê¤\8c«8êPdrsÔIÙÇÙ\89ü\14\96,\ 5(Å\17!\7fÏ!N8àù]ÿ\82£Nò\9aOG]ÿ\8bhK×\86o9»g\80²«Ç÷/ôxï¨Ói¥[\aµ\957·NL§\ f%MdRù{ú<O\8fLÞÁIm[ĹlêÖAíÝÍ\93Ê\8e£¡?e\8bðoÝ"ò÷\1cÒê\84\ 3ÖmA·Îü®\7fÁQ\17Ó=Lé\9aðKC,á3\94ÙÕã\83%¼6üÜQ÷ß]Ñ\7fà¨{qISý\ 2ô¬vzï¨ûêº>uÔ¡Ü8±H\ eG]Dj¸Ku7Ó#.ö¤6\16@Å\ 1F9hA®R%×\ 4\1e\128"*@ù½bÅ{JÒX-ò\1a\9e\ 4×è\89\98´Îº©Ä:9¨²\93\16\ 1aSLhá+²!eÔ\0Ý\1f\83É®Ò+\12¤f\1e\ 6\ 3\9f\94ä®\0î¤òS\86îæbÜñNÆD´´¦yd\12«×\9f\r\81>ágµ\ 2¤Ù\8f/\8c\8aòÊú\82EB\80Rìê-à \91§;öbPý\eß"A&\e\r\95Þ\eónO*7ù$È\159R.ð\86X¬hl\80ùƱä$u<\86Z\e"\15&\8cZK®\ 1&\ 67Òø6G0ĵÈ\ f¶ÃôŬÿ\9b\80%\7f\83Ê1ç\8d:h~lJ®\ 4²Þ\ 3uhdKH\ e2´ÅHü\8bA\85ã±(h\0`g}d5Yò\aÜçÒû°Ñ¶):¨Ü)\93иÂÜ¢,
+È{í\8eÄtÄAb,YêÍáÄ9\16\9cà¨=9 ¼ÄPèùq±ùiL@ñ_\ee÷¿&`\ 4h\99ßÙ\92\b\9bÒ_P¹\13Òõ¥2\ 5 w\1a!\17Fg(Ç µ\b\ 2kÓ\ e\927Ç/\8e"ÃE\16m?.;UöÉFÀ52u\11¼!\ 6Eý$¨ Ç\92¼¹\ 6Qü\98\9f\91ä\96\9f+ç\eÕ\1fïÅ\e»/ðe+|§ç\a\1eþ£¤èø\95ì4<ðüôÑ9Øág\ f\ e-¦_\15á\97ßúþÚ[\9fx~\12®\94zP\83§!L\1fG
+È\18¬MÈ\85,\8b\0Ð\ 2¿«×\aË\9aFäØÜ]Ëk¯\96\119óÓW=\96\16ó1L}fþðÝ5\88a5ö¤`B\89\ 1\97±S\86!?\19p\14¸\8d\9d&Ñ\v;Awçm§\82iuúmø
+ç-\98\11\810\18\vB«ÅMâY\11\98\83\16\eYn\81\1297À SÞ-þ\9dg-ß\0&Lð-¶\96\90\15U\ 2 G\8f¸Õá\12DÉ\9a\ 5ðf\93˦\84øàÒÌ\9d\ 2ÌëAk\93\ 1'\ 1ëÙh:\r\aA8Õí ú$\854ù\8aª¡\94\90\92\88Zz°\1f¦[`ã;æJú[\98\96^0M\aSdE+ãEMHY\85\16cv\9cÊFxÃ\82D]a«Ð½\ fp)å¡\0%g-¿I³ÅÞ ó+7*êêx8¶°\88]¾\b0T\94Ó=[³\0l\91\14e,ÕPh\11[Y³Ê\11\ 2°/t\97\83õL\18\18ò-Ýà«%ë\ 5ó\18¡G\97\85\ f\16\81Ð\0\97ìYùo\94\94*\8e\91[nвqQàÄÔÚ\ e\9a.öFX{~Q\89\81á q°ó\9clðîD\8dâ`4ð\1eWqNBÇ0ê,;\1c\8b\87J½üº|ço|°\1d¾Í\rQò=C\8b\80\97\ eu?MW%÷\93Ç í^\81\93^|ãUÿýì±×Ü\10a°¡ä"®\97àëå\9f·\1f\b/`´4\7f\87!@\93\v¸\16É~Á\97\10(Y\9bã\13ø\13\ 1\89xl>O\8b9,\1cÓP'\1e«ÜÒVmÂ\f¹ù8\7f5¾büÉ·ÝìO\e\86>.#´¯øP\1a\97ðµ0\f«1\9cù3\ 4µúW\94Xn\7f\rQpiö\93¶È[
+án©?êñýY\8fòEk\15e\1a«û\99¹Xã8 (\1f)\88Ì\82.
+O"Èö[&\91?l\1aíÇàF` ³§A\ 2ô¤l\ 3þùK·\a\7f`\ 1¼<b-!½ö\9eì·,\¶\ 1Üæ\8f9:ëÉF_ç§ýÚ¿óCkõ\8b\a{(wCÇÞ&5É0Ð÷\83\15½oj+z\17Xòy¿\ fÖõÒT'ðôCäe¢þ\7f©_vL|×b\ 3\92êXíq\ eqmó°oä½üá\8a\7f\88\8d\81kD"\9a\8d¡£\96[\ 6Öb@B\ 6±\12&\91×O\92ñÔP\11c¨r; ñâô3MbB>}Î\ 4d\0Ñ%!\11á\ 2¤(\0è$ÒjÂÍg\ 3T=Iú
+\84^sß\18é÷\8f\804ôä÷f\b¾Æ\95bBz=/lwR\80N_ùä"B¦\rM\8cq(\80\16MÈ·g)\11øØ \86\9f\80\19QªOü®"\17g\89ùö\0\14»\91HLx\12\8b£\9f\8c\11+%F!6À\80\8d&FB$r\e\83Ǽ'\\9b-Ò¯µ\18\8b8úCá\0çö\96¸\9c$\ 2\eGØÇ\94\1e$TcôÜðF\+t;\88¶\92ã\15zÇ´Öû²/>\94vµ~Éö\ 4ð\96\13GÊ\e\0:Úòxã\93\8a\8dß¾ò8EoÜé\9f<\87\98E(ɱ\9cÇéµw¾¿ôÎ57\9bÜ\k\b\94Vtú÷\8fmµ\8d\88\8dÒäVv\11±wx\89)\v\v\9b\14$\17È\e±\e;ë¹\90\88\vv%FÙ\8dÈ#\ eY¶@m¼iÅffö"\89¼LÆù±S\00E°Í\8d´\9d\96Eô\0Ã)<\1a%ñ<zw9¢F\1a\8f"\88Á\91\v¬vq|\873R\1fª>y\80\9735\16)º¢\a\8dè\8b|kÄäÞ\16ñØÈ\e\11þ¯.Ó\17\bÀ(µ[\8e}l¤1<Þ!íJ\98gB»Ú(\8b¹\19q\1d²ÛA,\12¦Èþ«¬Y[çýn[||\9eüWDÐPì\8aìl_ï7¨ñ¹õ\85W\91ôÑS¨\84\19Põèr\94^yßUJ}üÔ\9a\92ç\98\1819³ ¢sÓ\82@@@\8dª\9eßiîmi\ emé\r\87\ 5 \8fSS\8en\86þÇ\95Ñ\10SYöC¤¯Ú\9e\96_Ô\87ð§jCú§\8eÂ\1eç\0ç7|»ý`\0\14kµ\ 1êÉê¥wÍÆ\1aw÷¹é0Ñ,\9evvg:È\f\9a>ÙÓ©O"\9ehרô·è\93üaú¤ý0-ÐzRíFÖ_õI\99SÕ'cÊ\87>\19¡1l=Íß\3þÐ}a?lt³'\1d½ì\bÕ'·ïünÓ\81WT\17mrÎÿ¥éXÎ{|µÏ;}°¨\97¦Ïì\86ÿ¯ó7Ø\r\7f°Ò5|ÅhÐ\8eï\8d\86\17\96ûC£!¢,·8Z¡\0µ*ì¸jPà$F\82(0±\ 1Ù\8e¼\vÚHI\12S\7fÿØ\89Ã\86L\90Í\b!s¬*\80píÑ«+\1a\85Ö\81ÐëXA,ââ\90д\1d\19 \b\89\1ak\e¤\1cC\ 2\1e\9f\\86\ 1$\ fá»\83\84é8)UóIwZS\18\bÀi Ó\95\1a\8a$\1d¹YòFùÍaT\95÷Ö\fâ.\89\95\ 2´gÜ\1eâ.²;\9a<E"¹ð(\90Ψ´\8d¡%\86¥\ 3MÜÓZpH#ø\vñáN\14;!`Æ\9a\NÎ6£KëGo3v\12p\9ay\r¶\11éq\85[ÚA\8f\12\ 5fHï\84¸2L\8a\13R\10_®¼³!\9aZ¬'âm\ 3¤\18±é¢û0Ð\f\ fàs)Õ\1dÝÎ\11ÚR¨j\12\89Í\b8>=º\ eÓÞ8³=»°\91dQJ\8eg;ܨ:Õ\9b[Aµ\84è\88ÂÂad\{\8f'#ÀÃ{Q5\97á³\80ïÆ\8d)¿tÌ\ÚIã\9b\87êÍ\ 3\7f\10\99Øz;\88\80V\81ç?zÃèÆe\80\ 3 ·JR9\93A°Pó"±º\19J\85|\ eÇ\92\16\18²«.Þ\11á\8c&T\8b\11cÌr\87Â\83À}´Q\92Ô\ eÅ×.b\90m¼u6\ fäz©\91~=:Í\1f\8b³WL½±e\87¢\ 1\b\97¼¸\rV¡ÊP×\92\1e\8cï\8düé\93ç\86©\87û+\1c\91\8b©÷õw¾¿ôÎ57\9b\9e³-a\95Õ\1al\10\a?\8b¦Yçº\ 2Ѿ2\ 2\a\19\1e.&\12»Ýk\0Î\93Eúb\98{,h!È\8d¤{ñ×\8f\93È]{Û\89(dOË(b§:\1eÙ(Ð*x+\ 3+å\14Û)Ãg\8au\ 2À\ f\f\ 5Ü0\a³aî\ e¨\91\84÷y5õ¬\1dÌO¸\8fØ[\ e\80\9bðZ»\94'4ú.lÁËÝ\81ئ\15\1770\ 4½\9cí¨Wn\88\13íô\14Á\fí\ 48 ÿCð)¿\959ï -Î\16!:\16eg\80\8bØ4\86ס,\ 6Ç\81Ê)'Ã-Êp=\0\ 1[ÞÚ\ 4A!\15 \92±¸ÈDè\94\r\83¤7Å\9c\8cR\95»Ò\ 2Æ\16aULr×{©\12¦T Qr\92öfÅD\14\96\98(S\8b´I²EÓ²\9fXN^n\91{\8d]8HôY1¥\1fÜËËÎÂÄæ¢Û7ã\96îöC¢µ\19\16\86(k\ 4»P\1c«È\ 6@OJ\ai\13í\8b\88P\a|\ 4^Q\8bY\8bäK\8b\ 5\19é×q¼¼ñ%ìhMî\99\ f\83Ñ+ë\8bZ f#m,r\11Q\98«Ëù°ÞªñÛË¡þ\ eC\9d|)º{ö²)>ú5W\1dðã§ \v\96\a\8cð\95÷]5Ã\8f\9fZGü¹¡\9eè±\14C½$3Ô\11 8\rõ;\13Ùlg1£MQ¿3µëf¨/Xy\91Á4Ô\13T\123ÔÕI§O«;\ao0¯\1f\1f(Û(ìq\ ep~Ãw\eê1»\8b¡\8eºuCå¼oö\96Pqá3C}vöþ´³{C\9d3¨\ 6\DÁôÍ\80CP÷a"éout¤eÀÍ\1ffCYOf\96qýÕ\80\939U\ 3.¡°ÍfÀ\rÝóèiþ\965\8bË\80³\1fuÚ\8aý0àdG\98\ 1·¾ó\9b\rõ±=\1f\9ao6ÿ\97¦Xλ\80ÔÏ;}°¨\97¦O\rõÿ¯ó?6Ôÿd¥\a\1f~n¨[Ç\17CýëËý±¡n5\9fE}\8dı\8c\88d)TF\8d\18\81\1e\18IB!¢\b\89\88\ fÌ9\84\80wb\ 2¢à\8f¤GA\11hÐ'\91 %É;¨\85\87jl\e¥£\1e\95×'\95\88\1aÅlÇbFÌ\10îc\98ÔÄ0\ eA\927Òx\14Ém\99Ár«\1dî꺶s\b-E\f\c\904Tl\173ä6\88\8aÿÝ\11gÇ,>|¿ÆÍ¢°\8f\94S\8f,\11Í\ 4O\84\ e\ 5\ 6ºy)°Åï\10X"Ìgg\82\97\91ÆøZ\96 ²½\9dÁH¡7\86ÕDà\15PÃAÿ\89\98Z\88\9a\96ªx\9d¡\83Ä\8fj\96Ú\ 5û1\97{R/¼\ 1Ú\89\11Áz¸&9\89\9d%«ð\8a\m\92\ 5\8dÊ ¨\ 1B(\81|±Ír^H'ÇU\f¾U\ 4)jË1-\1f¡ßR\9cÐH\18\88\97»ÍE\94)Ö¨Çù0\0Ô³Wk'!g\7f\92¨\93²\8c\11V{\11\83î\8fZÅ\99S \82bõ\9a9G\9a\97É@0p6ÿK\13\9b\8b1J¹Ý\11Ãæ½iÜJ\8e\ 1ºT²\13ëA,
+À%E\17_4Íÿ^=\ 5Ct_/4Ò\18\1aì½êãF\1c£\0\1a82N·\87{S½\ 3^\13Iá\98\14\Ü1\88n£E)OÁ(Ä\1eõæNËÀ\8dÍÇ)óL\95J\1c\86\93=ÊiË\8e`\18\bLDí\10!:Çhû(º9ç;²$|× ?.Hn¢Ö£î\93çÝ\8d\83ÅÆ4\94ÁVdH\bÈSm~\92à\93\93\rs\10i¦Üvâ8CÄÈÀ\eä<ã|ñø'\8dÙ\83\9e?¸+\8f\10"\1f%\12\11F\94\91åãÉyu\1díÜ\9e|ð\9bn³\81\9cû\16£ úN\8d9\ 1'Ã{¿-ð!2ÞÈÙ?ynÌJ
+òàõ6ûËï|\7fé\9dkn6\r±O'\1a\9a5&\10bÎÍ\96Ä ÉÝ\86D\1aV\83ì\e§\80\87ÂËÅ\ f\vÛ\19\8b\ fà\8a¬\86n\ 6\9c\8c\1c\a'ê¿\a %\11\18í¾\f\97ú.ç\9d²\1d\87I+\16Ë\8d\bÜ`Þ\b8a'ÐH¿\ eæÐæ±D\9c¤\9aêöð8åzîÇ¡\8apL/ÊÆ\1d&m¼«#Øtë*\18£Y¯T\128\17\f\9aÞ7¢È¢\9cxo\89\99ó\8cû\8dÌÐ¥gdL:£R@Zü³#¡ü$M\96Ú&ëÅ2\81©WH*\11\v͸ûbämq÷ÅòÛäî\8dÙ\bçÃÕ\904ú,À\8c\10[â\9bö"±½\903Ýê\1cBÎ\10jf°&\13ZCâDA\98¼\17nÂÂîÄàí ¢p^\93\87]è*iYØN²\93\8a\8aí1`\11¾\b\16 ü(d¤ Þ\14+.ÙêUâ×%ñý¼ï¶v¨´'ù\0xY\81\86\8a"¹ªg\8c\ 3Ã\b\ 2J7A!\ 1\rësS\91Ç`kÖ\ 5õ&¾\9að_(L\0*\8a¬7"\ eÃpU\98ÂR\98à\bìíhç§ú5Ød,u'mjÚFäòu¶ËUæIjAVÖE\94ß¡êi
+>¨\93§zXèØÃÌÁ¡§á\8e \eIW¡Å¶·\ 3fD¥æ\ 1¹ÎÀô(\97)\12\8c\11³\88 ,(«\1c\87ó\9c\97²I\91!ËóN2ióëÇI¤\º\1dÄ\82SÇLh[|\/ÉË.\fñÃ\80ðWâ8ÀÓ\91\8cp°æ]\93ÖɹZ\1e\1f?5,\90ä\1e\b\91WÞwµG>~j±Í/¸\87à\9d\11÷\10à\eÔ=\84¬ªé\1eºwÌ\94e \96e\1e\1e\ e\1e}\|?af\86§\95ð\9ejÚÜCÍíOó\97¸\87\9a\9bî!ùÓF¡\8fË\0í\e¾Á=ô\93+³ûk\92a5nK^Ç\12\f%î¾Ù[\82ô¹ó\11}ÒãûÓ\1eñYÒÁZJ\99Põ"$\0\93n^\ 4&TüµÙéú[½mmy\11æ\ f³ý'ó\rp;\98\17¡Ì\1fX»xz\11j={²ß|'\7fØ6Ñ\1fstÖ\93\8d¾ÌOûµ\7fç?÷\16é*Ä}zËCG\82Ä¥)V÷®\1cÆ\17z~°Æ\97¦2\8fç*ß¹\8eþ¿è\7fä:ú\9ee\1f\12æ¡ÿè\83®/\1e¤\97\16þY\12{ÊÉÔ\19(\8f\85Y\94\89\90}®nÄ\94ºi3\bú\80\ e°\93Pü$BiØ\89¸-ó0\ 5\12\90öª\PlD\ 5+_Ä\14õ\86N\94<h\80;)H¨Èï\1f;1é¥$\80å=#K\88q8ä\16ê\9e±\16\ 45ÕÈ\92Ù$V¯þ\8fæ\19ë\891K,-´\16Þ\8d¥<\16tE#\f\14sÒ%¬\95 Á`§9IÁñE\1ac#´a)G»>ÔY§¡ç=!\8cb#AýK\107\93Hu\9b7¬c$ÅéÅÿA\9cUY\8c\98\0oV«N\0K ì¤ °\9ac|\eqì\9f\889^½Í\95Xo5Ò1¾m\197¢î\82\93h»\ 5ó"èNsO]÷\9e%ÌoÛÈ>ðïE¤±\14Z)\¼l\8aì6?×Ç¿'øAªËE\8dâ^ç\97õ\1cjÞ\16ý`\ 6o<±\9f<\a\14Ü"\ f^<\ 3_\7fçûKï\³þ(¿zßwy®@®s\87æ9ÙF\{ù$âr\19AM¹H(\19ÏÔý 2\12NP\98\17é³\1dîé½FÐ\130\r¤è¢º Êà$<ÞÈ\10fvPg\ 5§¬\8c¦\vº%\88^tR"=xá =ÀË\88\8bäÉTPmô mÌg\11Q\93\88Ì'iµ#Ä÷\b'[\1c¯¯óã'oìëüø{.z\12\81\13\8a8 Ì
+ïè¡Åß\9f\1f#aöÆ>ò\1díæªÞêý©ýµ¯î6¾\8d\13lD¯µ-×\17\ 3½Uù\8a\972!;iã?\8b\88\0®!e¶ÞlW=Ø}VqbèMæBÜ7¦\9f¬¡\8aÓä\98Åm·^\1fÿ\985|ÝÔ\13ß{<ÎÚ!Ðl1®JÂÇOAYH\ f¸Â+ï»*\ e\1f?µ\ eÜ\97ò~s\fÓÚëaZ{\80\9b\9cÖÞig\99\ 1&¶\98itwöZÞ¬½UR2Ç`Ö^\8emY{9íIÃò\8b\9a*þT=UÿÔQØã\1càü\86ï\ e\ 6Hµ]\f½þW\e\8aÅ¥ÙXæ\16>\r\ 6\98\9d½?íì.\18@fÐ4} uî\9a~\v§.¿ÕZ\ e\9b¦o?L?·\9eL\7fçú«¦/sª\9a~\1e\ 2h×ô\aÓ=z\9a¿eÍüÒôí\87\8dnö¤£\97\1da\9aþúÎo\ e\ 6HÍ=Tñmþ/MÇrÖþ$\18àèôÁ¢^\9a>\v\ 6øÿ:ÿó`\80?YiÔ\9dy\1a\f`\1d_L¹¯/÷\87Á\0\19á\96Í\9dÁ\0C+0Ì"#fÜ/DsÉò\1a7õ ïE\84j\ 6\ 3$^=\8a#XK\92\83$åâp¯\81wm\14Ô&ÒÇ\84\ 2gwgïÝ@JY\8byðt\8cÁu¢¹\1aé÷\18+`_c8ÚáNÐ룼\94Ê\88£W%. Rsl¢AÒ\9bCª\17\10ùøp\ 5~Æ\85<7\1eKa6ÕºèÖÇ\9céÅÒºðÏ\80o\12\18\94Õ®h\90?oò!;6JD\91F\98,'±\97\8a»Ï\9d\98\7fÖ¡pd\ f»\8c\17!¸MÁVÁ@\98y¹H\98\10¤\16\98\19(í\9cU\b\a\89\1a\1c¾Ô¦W£Y3\12\10\9c\91\92\1f\9a\ fæ¨!T\98$@×`n\99\10=)²\ 4zC2[á
+°hç\9eï\eÊnò:\84Èôiм@·\81F\87;\96½HÐ "\ 2P\\1dû¬\91W8'~yî¼Tô®\91°Ç¿ø$+\9dià0éAl\80´\96+t\98äÜE®ì7òø¨\9as?.és\0ZÌÑn,K\88¬7°=;8T©Ù¢\0P m'!'\82÷m;Q.\ 6Ù\97\Ë1ù5àÉùN#ýâ\82&¹Ã5â\8dÄ -\9d\15¦ÏøïF\978\ 2Àq ±Cf«\1c\86\91\9eq¥è\19$m¤ßÜmv-;ÛÍ\99\83i\89»Õ\1cÆÀ\9b·Ð\80\12ô³\18·Á»ÅܰÉ\83\95\90ìÀÉ);\ 1\96\11\11ä\ eÚ\98&ÏÉ\9d4ÇI\1cÊ\b\19I\19[µt¾?K}ZÜ(å"ç\ eãÌz=\81\10\1d|\8c\93\8aô\93{]¹Ü7_õ#÷\7fjÄ\19ÀïÇv:ÄÁ\e¹ö\87O\rc¾>º¡yå}ï/¼ïÑ\15\7f\ ecßt\81g\b\ 2\94>ÄÂ8B\f\87âúÓ\84\0Sb\15\10f*]6X^\e\f·®íh\a(\88Ò-ÿ
+çÆi\85
+ö_\1a\83\ 3@Ì\16É¢{\7f;%\e1\föØÊFÌL°Èv\ 5\8f(û\9d´\1dÍEÄ\85~\97\1e\8fKÿý¥3b`c\1c+b\0ìÐr\ eìa§Hw\12\94àB\13\92\8b\968\ 5À3ôç\ 47]\82(²\1cëAd\10\e\19`E8\0\1eÖ2Åà\97u\88êL\9f\960á>NT\97É\e\9f\11\82^ßw¤½Ùøº\12Çi\ 1\9f\8f&ä\80ÞxÇçÛäóY@ø·VÙ\8a"àÒ¿SQ(Ó¡\ 6ä5\16þ \eá\12\ e.x\8aU½½%ß¾\93f}J3\9fí\ 2xµkS4VÉØI*B\7fý8\89\14¶·\83èDJð\15\9d)\ fvq¿KøyÁ\8f!G\9fòÞ\ ei\1fâé\86&#"3i5 :2ZͺO\14¸\1cN\9f¡aê:\f\85UÕ\83
+O\10Ö«es\ e]\94\1e¿\94\1e7sÌ\94\bI§\1a\94S×Ù¤,-«/MlpôÂ6)\ 6ýv\94Íø\v}kùNdD\94(\e3j)&\86YA\b`M«Þïû\v\9b]\97ù\98Þ\1cÍó¤í\9aA]¶È°\ 1ð\9b à2Ðr×±\8cA£,\88\15\9f\91H§\12B\ 2\116\8aÊ\11È\96t'on;\r8 \b+È¢D8\bâú×\ 3®÷\9d÷ø\a÷Ýtàë-¾*ö\1f=\ 3á}~\87ÿä]W#â£g^¹¿Ï}"¹å<\91Ü2 CÌ£sçK1'\8bø[¦Ewúdúòè [óèô\89ãVÜ\86ãÆÔÏù´ü¢¥\8a?ÕNÕ?u\14ö¸\fоá»=:ÙÐÛ×:\8f³ßP§è¾Ù[ÂÙüÌ£3;{\7fÚÙ\9dGGfP-ý\9cO\¯ñÚÓ\96N\e®\97ü\98>±\13×ködö{Þp½dNÕÒ/îÄõ*îÄõ\9a¿eÍ6\/ûa£\9b=Ùèû\86ëµ}ç7{trz\88ê5çÿÒ\14Ëù\f¿íèôÁ¢^\9a>óèü\7f\9dÿ¹GçOV:|\ 5¼Í:¾÷è¼°ÜÏnæ3â\a»j÷¬\a8¶AÕØîE\1cFÔO\93á\ e\96í\90ªCè;\rÛ#®ö\10Å(g$a \10Å\0lÍ\ 5ÖH³\9cv\14åÞI]z\eës\10=ñÿ'\8d\8a~\83ï\85oHUA\15\18L\97\81Iæ\92¦ý¶Ê\9c\84\&D\0ä\12\ 29ùU%h\8c³è À>v>m¤ñ(\ 24cÞ\9b!\9b¡\11cÔC·\83D\82f\14£\ 17u"We\84\9f÷¤xY¼ãÏ\880Ð\ 4ä$µ~vR0(\87\8d\bG\12¢\9cå\15f¦\ fÁ3´\98\ 6乸\93ðVM<ßÛE©m-÷TÈC\19º¬DG\v¶\9e#&\e\89ÐÍ\84X\18§\0"ÃqI,\81:(\0¡£\8e\8e`Á\19\89@r\156\16"\ 3¢\18³\19¼ë\ei\8c\ e¡¨\8aJ6Û¡\8a¶94P;4#âYÇ\81\1d!ß\ 5Ðn\175Ù\1a_\8d\15$F³|)®\9a¸¨\91\ 1@ÄÅ(<ë\15\1a³\18 ¬h\857d¹¯\14\9fG\84}P\11÷\9dwÒo~(\81-¶v-Ia3¾b(â\9dK3ì\1a\85 \19F\81×%tI\93¤Yg4ÃI)׳\80\88GZÁN¢\ 5"*ÊN4\vd\11\19\8f
+ó\85ù@<\97\b6Æ01\92PªªÈÅ÷¢;\82
+9\18%k¨â³\ 6¡ì'úrð-*"oÙ6ê\19\ 4OHVørº\v+
+Nvõ4\ ek¥s9Ì\80\83\92)¾\9f\8a3+Vh\16T\7f\90\14ø\19qÛa¬òN\8ar,~ý8\89t\eÝ\ e"Ò6PÌ\1cC\91¨e\9cA\ 4Åã+,bXI\18
+°ôhÖÍv8îêôDü2\ f÷"Eõ\ 2\1f¤\16\88\8f·\13\8b@=ã\ 5\f5اé2\9dßãT¢1ú\165\fgþWî\13.Á\18Ø!\93Þ(:>yÎ\87aÒÈ\83\17ÇÒ×ßùþÒ;×.|\14%\ 2¾W\95y\ 5Á±\18;\12\16¦^Æ\8f\13\9a\9cls\8dÖ\80\ fâþ\94çyÊk\94\8ae{;8\99\9d&9%àøCæI\18\15³&À\12!§¦\97\15N\rd\12df;F\85#e\89\15\9c\83\80X'ÁZÈM_jà6^ÜåàJ\96q\12®L4,&ÚÍ{:Û!c©e\85:lC»Á|DÍ$aùTÙ·\ 6nG\9f°8\140qÎ2Þ|\11Ã\17õ\87\83xèp\93áDìåT\95+_\ 4P_\ 2¨\88Whoצ\8c3\ eÔ\1eH½\8d\18ÅC\ 6\86V\85Q{p\ 6|\172@\9c¡P\16ñXQé\b
+:BáÐ\9càFPâß\8bw#ý¦r££\9dí°ÐÅ)ÀHÂ(J\91<S\8e\96Â
+:\ 5¤\94Óù\bÅA\1d \9b\86\92p×0IS\91Á¦ ÷\1aÏí *øJfEAÅm\82Ç\89\91´jJ`\8fÔ3P\881\bÌD\10u\88\8c7\19\8aâ\1d\837\8aH\ 67cy¤YëSÎ\0\86É\95\9d´]?\1dDJ®ÛAd>\aVT7>üCÙç¿\1e\1c^«\98\80C§h\1e`\8dÝeÕ>¥\f©8\ 1\ 3\15\ 6\96yÜ\9c{\eS]N@Tÿ<}\80ØþóF\8bq ;I9¹\1e\93\9dãßv\12ä/\19\ 2\8b\81Z\8aÏEÊÔ%eÆwvKñ\91vX²fw\81DòÚH&Û\84½ÜIÁÛADá\ 588P\81Sݧ\ 5ð@ñ¯\a\93ù\1d^)qyú\83qû]\87·\8dt5|>~j\18@\b\91½\88\98WÞw5\87>~j\9dõ/\85\1c\952\81BK\98@¡Åo@¡÷®¡ \14:=I·\1fw.&¿\ 1\85¢[uPáeæ *\eP¨D\8fͧë\ 4
+\15\1f¿8¨ê\8e\82b\8fË\0Ë¿\ 4\14ZÜ\ 5(t\1cÍ\86\84Àûfo©øÏ\81BggïO;»sPÉ\fªã¢ø\13@²ø\13@Ò~Ëüù\r@rþ0w\83?\ 1$eýÕq!sj\8e\8br\ 2H\96r\ 2HÎß|gÙ\0$íÇ\1c\9dõd£/\e\80äö\9dßì *î!|ä\9cÿKÓ±\9cî\19PèÑé\83E½4}æ úÿ:ÿs\aÕ\1f¬tî_\ 1
+µ\8e/\ eª¯/÷\87!G%&+ÊÜÐ «\v\94Áãå~Æh%\0\9e¨2\14ÜÐ\84wR\16\9fÓï\1f'\91p\93 \11\97MT\1f\9fáQs3[´
+NÀX\1a\10[Ö\1c\12\ 6
+\8dÅM~h\83IÕmW\19QÍ\96ÑÀ<\8d\18èI¨\e±póx½¯\1e:H:H\1aß\8eA/bE\91¼¿Ø\99Äãû.\ 1çûK\954Æ\8cl\13¹^7â\18 `º8cìá\9c4|[òRB<H\8aT>F²\11Qþ\1c\e\81U?\9d"Jð*¹ä\88Äl\ 5Éì(µ\83é\e+^E\93\8aÃÞH\853ÕÄT @÷pÜ\14H\7f\819\99\8b{Ý\ 3ß`;\8fñ0â\f¡\ eÔç¦ÂPP¼B¿R'è8.oÜÕ\9f<7\8c¹¡|ñÁÓv~é\9dï/½sÍÍ&\1d·å×ñü}ìÎ:÷D@¥Eç7"ö\98íºÂÂ\82;eÛ\9c\8b\18\19·Æ¾rP³IvúöN%as";Èíí°#\82\15\opåEoDñ× n\82ì\1coÅÊá\ 5\83Û ¤u¶\19ªp\92\8c\alDh÷\15í¢be2\87è~Ó) \8f\16»__íf\85óAª\89½UÅÅE¬£K\8c8é3\94K\98k\ 4-\ 1Ñ¢µ`\8e\971U9lG,$|ÅFÚ\8eâ"\16a
+HAh)íkxÝ\0ÿ\1c\8aP#5ÁÁÏhljMÎUÊ|ü\14¤M~ph^yßUö|üÔ\9a\92çwÕ5L(ÂÒ&\14a©\e\14á\9d\12nÚ¹(ê¦
+Ü)ó\e\14ai\13\8a°\86 EXã\ 6EXã\9e©.¿¨âÔ8¡\bõO\1d\85=Î\ 1ÎoøvS ^ \bÇÄ·\92Â¥ÙÐ\1dëçP\84³³÷§\9dÝ\9b\ 2m\83¨+õ\84¨+õ\84¨³ßjJm\10uó\87)võ\84¨\93õW\15QæTUÄ\1aN\88º\1aO\88ºù[Öl\83¨³\1f6ºÙ\93\8e^v\84©\88ë;¿Û\14¨\ f\ 1êæü_\9ab9\9fA\11\1e\9d>XÔKÓ§¦Àÿ×ù\9f\9b\ 2\7f°Òù+P\84ÖñÅ\14øúr?»«®N¯¤\vü\9ac\vÐÍW7Za\10¼\97i\1fÊd\eû\09\95Ü&\88!S Ê\eµ ø\84\14ÃeaÝ\ 1\b\ f\ fnèwágt¼!»#vúÎw"\8ae§1\10:F©Ì\0v\ra\9b\18\88ÂS#R³Ò3\º3L+\87q\12u\ 3·ÈÕ.'P½|'5T|\8d\1cÊNä5Âm'Ba@x)æ\84)è¼\9b\89yHÂj\15Áøë÷\8fêµ\1aûÖ\ 4\ 1\90.ì\1dm${áØå\a\91C»\1dD`v\r5¿zE\84æ\87¶>D\14Ê\89Ë\9d\11æ#KoeÞÂ0%\19Í\8aX\ f$9xçA¢\ 3ZÂZ\1do!ðNERDè^á7\8cý\91\82&GøìúA\82\ 3\923y\12YÌì¶\13\enu\860Å+\fâ&óÒ¡R+Ë\1a\ 5AíUfÓ´\13.ô\98oõ\8a¯\9dzîe»z]»\1c7¥\98ô¿ÇoÜ ô\8dV\101\9b«\82Z\8aí´\91\0E\98
+7×N´Íº\11\ 1Î4þ*¬\7f\11\15õª7\12²(Å\88\12¥Ç\1eÃà\9aÒ\83ÝpÝV]0à. @\85±S«åõò\17\9e*\92m±7Á\1d¬\ 4¹:¹\8dÝI:б*\a\91\9ft;\88úé\15áàÎoósÎ æV6<\@54Îé0\ 4´F\85\12ñÍÌ\87áíNÊ\83;줱ò\95W\ 5;±þäMÎN*¸\89\1c\92`¼\80(á<\ 1ÞV|ý\92©ÉRÔl5iRÚ{ïh\91ø:LÌ"é°n\aQ\87\8f\17ð\1ab}ä9\ fßs\r]žÍb\81Ìÿª(ß\9cBØxÊ!nÞ(\15>yÎ\87\82\e2|Óå\1aúëï|\7fé\9dëD>º\86ÆÁÖø\1e\1c\ 6Ô8\e[\89 \ 2vK\9c\a§%\7fZìo¬l:H\93\83\9fDåà\eq\18\86=\91iùÁ\81\8bÞcn\1cÜ~\r\89\ 6\02\8dGRbA2\99\8a\ 2íh#-\ e~\12\95\83ïDÖk\11AÊ\f\1aùÐñ6\8a\96¬q0(Û-r È E£ÿ\99ê\ 6!·ä#¯mwÒ<ñwDHÜÛND\rîÈÏ\98\99;H2\ìÔ~\81\aû!",bM\9aÀ\83¦\f½\984¨÷\8c\1f«RïEÄí ¢\ 4f\90UîÍk\8aÛà&\9eâÀ\10ú\9a$\9ca(i&Ú¡|FÄnX\ 1JÜ\84\10®\97½eP\ 4Øzøä;þþ÷AÌ\12£D\95HJ0P
+.n¨¿~\93S\84\14ÃÞ\ 4Å1\92A#°£\9d4\ 5ÊIT\81²\13ñ1©\93\9f«@\81\17u\13\fu \ 6\ f-+oD\8e=v}jXö\9dbMÃi\86øp\91\97Ø\ 5É\89R"\9e\88\90(HµÍ\84ÿ94;ÿ×9cs\87]¦ñ\ 6ñ\80¢\1f;\93ýû e\89!\83 )µ+\9eðÎÓãâé\9a{µ\88\18 \aíh')OßI\93§oDÖJê\18\83Û0?w\9e®¿0\ 6D\ 1:¿7Y\1f3;Ú¾oʶË<|\af\ 5yuô\aË=õm= Wkäã§\86URÜ\ 3áðÊû®6ÊÇO-¶ú¥\väÚ&BaM\13¡°¦\r¡ðÞ_3\11
+§{çöãÎï\936\84B)\b$^£6\11
+kß\10
+\9bÛ\11/ä\17áæ&B¡þi£è\eBáü\86ïö\1aÕx\ 1'lþ¯6Ô\95K³·Á}/à\84\8f;{\7fÚÙ\9d×HfP½ \83·\1fÞ\84ñÚÓ^\8f\e:\9dü\98~·\13\9dnöd>\82´¡ÓÉ\9c\9a7¡\9fètµ\9fètó7ßÙ7t:û1G×Ot:Ù\11êMؾó\9b½Fc{>ò%Ìù¿4År>@#ü¸Ó\a\8bziúÌkôÿuþç^£?Yéð\ 1\0áÃ\8eï½F/,÷S¯Q)\0\vßc\9fÇ>\18¦\ 5a²\17±æ&\81Yb¶\ 3\96¾æ,Z0Í{ØTC¼fÀGPÇC|ä\18 (!:ý\fv±\93êÔI\17\11\86/.*ð\ 2\89ÑÃu;ìd\8c"´â7\12\9eì\83Øwb\1dâ/Èí\1f4\19?æjl\91¡\17\15ųnR\12\eD\ 5´Gö(Ü\187\12s¨Ú2K ðZ\10?*.+Ä\99\ fñ\16d÷zN\91jÂK\8aÔ\fX¤1>¤\19*\9còl×ÅÛ¥\ 1oe\90*ª©\17\8b´.¬ã\ 6¢\95Þ\80;¢¡\9d·\ 4Z W#ù\19¤ê\82N\0AÀ\7fñÑ`\932ô\81!\14\vjiV\85ù\ e\10\96µTÉ\9a^¤ßüT-20Ûe\94\ ePÔð\¸ø¸qtª]\8f]Pt\r\87Á£ùΩd<¹b@\11\9c\0I½\91²\80\1e\8eá\1eD&\rÜ\ ebgå\ 5¾¡°h%²Ñ\87¶*#Év\1f+\99ò\18/|j&DÚâ\ 2\86 \95!\18í\86¯W4ø\95à\82É$FöÖ®æ¡\8d[!¾Î\ 5¬MbõùR\87øæñ(®Û²U\9fcÖMm3ô\e\99¾\b±ÜI\ eiì4v\ f¢Ö6\9cD\9aUc¢Æ\9eÃ+$í\1cu\ 1ðW]\12þyÀhfâ+\90S^\f\84\f\99Èø°ì{Þ\ fõõð\9b¯\rs£\854X·Ëyò\85laÐFÄ!àå®\86K7NtëA}-¡ò\82\18D+\88Ñ\18ò\r\1e£x\ 1@Q\ 1øÌN*rïüëÇNÄ\8dgN<\8d\8b8\ e!\8cFnÚ\12þÒ¤\13ì3\f¤$37\1a±Íe¼Î\8a \8cÇ9\v®HV\8b\17×)w\86\84\82\18I\ e£+t\15Ïv\b,&D*^\91s÷\a aÒ\84q?\89Ì\91º\1dÄ&±Åx\85\ 5\8dÌ ¾,Ä¿\9a Q[þ8A\ 2Á©\94<\9f<ç\87µZ^K\90xðÎ÷\97Þùy\82ÄvÎ-ÐõoîHæÝ,"¤\ 69%¯À=à\99 p4\81;I\91\b0\97\8c`\v\8dXH½\82¥¥\8dQÅÐO\9224p¹tÏún\a1H\0\15_\11´ør®ð&ç*\9c\87~\89ñvîH\88¹ÞÛî\99(q\ 22¥+\93O\93ÉW¸¤¬\1e\94´\ 3\8asÎæKGÜ\0Ø\88ë\ 6\97ä=«GÖ ôÎ
+Q\10\ 65\8aiH1\15ɨ!\93Ì\v\81ÜDye,D\9f\85áèq}1DR\91Ê:L\89¼\13¡u\89Ðô3Iq\8bÕn̽Ö\90jÈò2©\1fUF#Ûì\97L\91\8bê¬wR\16\ 2D©Ô@a\ e¤¤\eeF\9eÀÇÙCÖBéñZkê¢\80¸¥\80\14ñ\97ïíòTqXu'\1f¤MëYÄÑI̺ö©ÂTñ2¼ w \9dÎ?}(*â\9a \924¤\8c\8c\99 \ ft\8a\11qÏàW\9a\ 3\165i\15\bk×öt:\823OÒ\92H\10Sþ^vÝ\ eb\95<ÂÚ\10(\184\9b\87ipCó\90ô@I]É\ 4:ãV*\92º\83ÿ\1eû±²vYèǹ¼\9c_Ë\91\98\8c\9a'\85<YÄT®v|\94¡Gà\7f©\ 31ã¢\93Jî¬ÛÊÀ§ß¢\10ú¢à\15¬!\8cͲdM@À×NR\99$;íNzÝ\ eb\95
+à|\85@ëâ.BF\17äªGx|a¾\ 6\86ÌKR\89\16L<.Yr'EÁ¸\17\ fJ\12\1d\86¾ö\1dfZ\85M\97̬\9d¤BI\ f÷)¾n\a\11®ç*:§K\82~Ýï\84æ"ý{)\16S5|\94baöÑÇOÁ\ 2{\94Å÷Êû®öØÇO½\98bÑòDum~¢º6·¡º\9e¾©é´\12ÿ\95ZÈ÷>®\rÕµù\89ê*±»ô\90µ¼¡º¶²#\88È/ñ\90\95\89êª\7fÚ(ò\86ê:¿áÛ=dý\82ê:\8cþ!tÜ¥Ù[jîsT×ÙÙûÓÎî<d2\83ê9iîDûlîDû´ßêaÜÐ>ç\ fõwÌ\9eÔ\94\97õWÏ\89Ì©zNZ>Ñ>[9Ñ>çoY³\ríÓ~ÌÑå\13íSv\84zN¶ïüf\ fYs\ f±>çü_\9a\8eSÛ\9f¡º\1e\9d>XÔKÓg\1e²ÿ¯ó?÷\90ýÉJ·¯ ºZÇ\17\ fÙ×\97û\99\87¬!©¢\96ÓCÖB\11õg\11\eÐîÄù\ 1\93\eX\8fÍ÷awF\ 5äj%B"6?\84s\9a\8d\9fó\10¦\ré6>ª\86>ì\8e~\90P?\95ùÊ\93\b-\ 6ë»ýÎ\82DÊÞCQU"\16'£\b9ªæå:ÃÓ1ÚT\92!ñA}l\ 1ž¬j\ 6\85UC\80ù¬±©\9aWCdw8\9a% ÙfÅ\13\19êö\10\17 \90öI¡=\bB1\9eLU\1cU\92øÍ`äÔE¡\96x.ølv\12Tvz%\ e">Ý~ë\953_YåjXl\8eñ\ e\8eÂ"Î3j\90\15\8eb\95]ó\92é\8eOb\19\8em9¯Ën¾\91ù_\vµcì\88¨c]Ä\86\80\7f\17-EÜ\8fåÇ\1c\87dê \14M,\ 5ö\86Üw\ 3\ e$ Y\16\1f£¸.\86*v\90Ö¬ìDÌ\8aý¦½æP6\92½kÁÜ$æ\11\aÑÍ¿\97\19ôDZ6\v;BÉ\16|\90\16À3·åÜ\ e»{³\ 1\12s\16óÕvÙ\M\88àCrnÃÝc±»eâÃáÑ6í°±I\ 4\1cß|ª\88Ùpw¤u\12\8ch\1f¾ý\ eC#\8f\89Ï\8d\ 5×i\11\1a\r/@Í\197\94\7f\8ea\16\8f\1c\8bĺ\81ø¢\16ã¾\92×\15ÿV'L\13{eþWËÞvû\ 3'L\84C\ 4Qã\1f?çCíîs'Ì\17ÞùþÒ;?w´\14%k\836I\87u>\ e\rK«$\ 5\reæ\16Ö(õ²«Ì\e\17Zö\1f61\vfoí\bFh\9e`V(iãS¤ð ³K\8al;\ 3=\12\v\fë
+¶i\9c4Ií\8a\9dDÉj¿×>¼\1dÄ$\18\92ì]#ZÀä\1a\aQ\8bS L\1e]\8c?Ú\1d\voO\820à\1cÃnÀo\h\19ð\9c"çw8\ 3LdlE\ 3y\a³\aï\e\9c£7ÍËó\89÷3-eºKÅÇ\81ø:pMc¤\b×$\94aÝxí¯\1fÇo\19ÿí \8eç\\87\18È\82H)G)·ò×\83U7Ó}g&êÓù\9bl¨É\85\8c\11!j\9b"\86*>\rx\1aå\8d\ 4´¸$\1c\fØ\95AÁ\ 1\bÜ\8c96v\b\17Më\8bdß¶ÿ\9eß¶\11\ 1\9d\ 3Ö\11¢@¿Ò.&ä%G¡\0\91áÉNÆhY\83\8E«\9db\80a×\v\9fdç'\13Ç\ 4\9cÈgK{Ôv\bæIÆ\8a\90<\ 6¶¶BS\1aîßð¨&ÐqtÜV\8d'ÝkÝ`áÁ\eIÖÕÝsÖÛA,"¾@\1aï×\99¥\8e\83Q$\89\11ÇmUö¦\18\84\16ÔéÇêºø¦PRÙ×óºîßç&H÷Ìi©Q\ fÜ\ 4ª$~ü\14ÔÐö\99\9bà\vï»*¥\1f?õ¢\9b \10\¹ãà\84¨\7fÞ~\84е\8c\v~\a¦h0PyXèò\8bu\9aäÏ\94ø\ 4ã?ª<¶=?\f^é\98f¼¼\8e®\88Ð6´Ï ±0ö8\7f±6ºüÙø
+þ9\871\1fÇ\bí+>\14©ãTü\91§ \ 4uA¬5Ïp}ôK3 3|KÐ\17>s\17Ì\1eß\9fõ(\9f´\96Qç1Ñ\8c\fq\ 2@\92\12\82\ÞG͵±ß2\8búCæÑ~h\86ÌÖ\13®fu¹ø§-\18\7f`\ 5&\94¤´lùìÉ~ËÊe\eÀmþ\98£[=Éèëü´_ûw~lFÆöGf䨧2\90t\98\91s\ 5î\9bê\9aæg>\83£ß\a+û i\8f\9fù\fþ¿ØÿÜgð\87\8b\9d¾â6°¾aDþá\8a\7f\88Ì\10°Ý \80\8dî\ 1¤Fd\86\80,1ÖÈ\9cÄ\0\80\80Ȩ\82T`Pç\83\ 4\8d\82\85Í7"\12ÃpÇ|#\91\91\83\94\ 2+\r\13_´\1e\12Yy& ^\9d¯ÚN_1þO\96ÍH¿\7f\841\ f\99:Ël\96ªÔa\1f¤ô3ºñÒ\9dT\0ùTùä"\ 2ÏkhXüEV<w\97\13øû\90\9dT\\1f$Þ\15q×\8d)\89\95Å<¡²â\9eíF¢Zc\b~p¬\f\17P¶R\82>\0l\86`åÑd\92\90é2\ 6\8fyO\ 2ûo¤_ûb\18qôWôæ\7f{\180©R\b»ñ²¥ï$DXàÊhô·\88¶B·\83h+Y4b~_ï˾øXà¥òJý\f8\ fÞ\0þ\8eûªyù\10p\93ªß¤\9fy\1c£7nõO\9eó!Ô&\ e¬k\r\8d/¿óý¥w®ÉÙDç¶\88A:ýûǾÜa®,. Ä(4"6\8fB¬be\11
+\ 4\92\vdiØ\8e½Wî\14$JÑÍOb\94íèÅ4ã\1e¨\8d\81çØÍ>U%òþ\1d\aÈ\8e\ 1.\88Á77Òv\\16\91©\95\85g£\bhà8i\973\9aæ\19ÍA
+\vííP\ 5Ó\19©#\1fL@*äâÜJ\94\e\ fUä\89$¤bîvÒ\84¸íä\8d8ty\9c\ 2L\9fÜ`Áº»ßÈJ\1aÃ+þ§lwk\85\10\1d]Qíj£,î¶\88vÊn;\11,\ 4\15kÙ\7f\955\vëÀßm\8b\8f\ fT(_¯4\80íëý\ e]\9cÎ>ñ*\94>zªS2=:K¯¼ï*§>{Êæä9\8aCLÎÌ\88èÜ4#º\ 1ºuSê\97úÞ\96îÐ\96æp\98\ 1}Ã\83\93niDÈËhDÄ´!²E¹.Ô§å\175"ù\93ú\90üi£X\8f\ 3\ eѾáû\8d\88Vî\8d\88âaü·K³·44¶Ïí\aëìýigwö\83N¡ª\94=\9d*ew§Ò¦¿E¥Ô\1f¢RÚ\ fS\ 4WOTpt\ 3\88J©\93**eLùP)cêGOó7\17M\7fpcØ\ f\eÝÖ\13G¯[BTÊí;¿ß~hí\91J9WàÒ\14\vú¬èÀÑé\83e}Ðôsãáÿ+ý\rÆÃ\1f¬´ûJÑ\ 1ëøÞrxa¹?´\1c"\ 1Ð\18¢\f%¨Õ@\8e\b·\11#\Ô\81\ 1W©\88Ëv'5Aúýýc#\ e%#'Ķ9ø, \e\8frÞ\83oºbU\03Ct¡\95FÜâU2oÄí"òg¬í8 \81\97'\b9\82+t\98\18R z\900\1d\a\ 5\88Ñ̨ÜiAý\83!\8a·\9aZJ@8n\f\b|Ê\eå7\87QEæÏf\90xâ^5Àèè\93¤\15\f\923ìd\10µ|\18 © Í\8eP(O\93\ 1\81ð Ì\92ËBÀ\8c5©ÿ5Û \94Kú\19\9dS{ÜIc\br\93µ\13íÊÑA\97\12Í&Kè\17×R\12ë+¢\1c\19\ 3\87w\8eWzÑ\80X« 2\ f\91\85Þ\9a\134>\8e^\12©\11\ 2N?z\ 4¾B¨j\17ÑFÄühe\87Æio\9cÙ\9e]ØH²(%dz\9dÖvä\e\1aáY#¶M\94aÐ\97=\9e\ 4$X§ÿ\19ª.B¿cÔ\1aèüR\aV°\93P\0\9c\ 5¼N"±\8eo;\11Ñm\11qªÈ4L´ÏP\95\1cn{\8c·wÖ¥\1c*ªc0mD%Ã@\/d\ 5HÌ<\86<\96*Þ\11\91\9cÍ)6b\8cc¤\95z-t|ì£EÁ\11JLÄÝ\89E«¡¯Îæ\81\/5Ò¯G§ùc6÷\92½7ö,.ð´°ÅÔý".±e¬¶¦\aç{#\83úä¹ñu)HjòÅÞûú;ß_zç\9a\9cMÕÙÖÐËr\r>\88\93\9f©b\1aQxR\91\9b¼a§dÇr¥1t\89Ü\1cÛGý\1fX3Ûd\1a\9b¹\91l3þúq\12¹mo\a1\89y\84\1d\1a#³\88\11ÖÊ«¨Ð¥:\9d\1cc;føL1Q\10/\89¡\80\1dæ`\86Ìý \róQ\#\8a½7Û¡N¤8\91p¹\10\10\91çgÞ\bÐý}\17¾àåzB\fT"þ \18Dàuªr\bð\9d"ðò°E;«¾\91\ 1ö¨öco]Ú-Ö\86Ú/;eã\80\8b\884\18\9c1ÄÂë8Ü\1dÇ\15\82\8c\95(£«\rP\0\19G\ 1\11\92\11¹\0\0Å.ÂA¿L\98\1f\ 3
+\84éÀ\fÆ\16i\12Y[ËE¬\94)V\ 2C\1aýѬL\195\96\987¤\ei\89²I\eâ\81A¼XN\8d"FrLGô¹\aì\ e?\eìËËÎÂÄæ¢Û\97X?7ÊöaÅT\11Ð\8d\ 5\98!\8fU\90#\886¥\83´ÉöE\84\82\80\8fÀ+j1\8b\91\8ciãAy2¦\8d[ecLØÑ5´¼?\fN¯g\14qÝX\89\8d´ñÈIÌNp]¶Þì°>8Ôßb\931!Tåä/\9b>¤\9fsÕ\ 2?~jh\83þ\11'|å}WÝð³§ì\8c?·ÖE0\8aµ^ôO\98ÆuYëwv²\19ÐfK§eK/{{\83l\94niËËh'¿\81&\8asÆ\9eV§\ eÞ`¾?>P¶Q¬Ç©;èÀ¿ÝZ\8fYÝ\vÛrãº:\84K³±ÈýsüõÙÙûÓÎîu\99B±ábn\87\r\17s:$ýî\8e´l¸ùÃ,¯Õ\93Xf²\ 1Ä\86ÓI\15\e.¹~ØpÉÇ£§ù[\16-.\eÎ~ÄõªÃ\86Ó-¡6ÜúÎo·Öc\ e\ fm8[\81KÓ± í\19\ 2ûÑé\83e}Ðô\89µþÿ\95þÇÖú\9f¬tý
+\ 2»u|±Ö¿¾Ü\1f[ë,\0Ä\14`¨°\91À8\11\85ß$ Í\88\11¾ù($$å"³\8b5\91hfBÈ;±\ 3K·»\v(\ 3\r:eé\ 2©7HÈõ®\a\ 5\ 5\9e\98\7f¶\13µ2Od\16\15ïѲ!Úñ\8e\80áEF\1a\8f\ eÝ)KÅÉÕ\ eÁ-]Û\8dy\1dÖWV<\e·$1\83q\83Ȭ$¾µçN]¹â\11êÊ\838>\82jNíVò\1c8é(/\1fq\17\13\89\0\97£\94\81æ|v&d\1ai\8c\ fqÓ\8eÞÐÕ®H@+{\93Äz$ÔQËAÿp\ fàIhCTÌ\80S@\15\ 4Ø\95\92Æ\ 4#2\97{\12Ó¢~ýØ\89ãs\v³4ObÇui\ø7\98<,,"\9a
+\93×r\97±a$¸è\14ë³\vò\0¾U\84!Ò\13Q\13+6Üí²P\8a\910\10o·\9cF\94).b\95Ï\87Þ\ f-\1eÖÂÚIYò\1e±Ú\8b¨÷¬\91 f¥2G\93«×ÌC\82[,\8c!\8ceÎæ\84ibwÕ\194»\13ÃæÂiÜJî§ÔÜbµ%0ÀE\19GR
+\13-\1a7\ 5\,³'\18\95\85\9f3_h¤14\1cU\89\v5â\18E/\96\107\1fî\96\96\ 4×I\90ÜR¥ð\ 6\8fáw\e
+êi\ 4ÂT\8fz\85ç%Oµ\10\87\80FGÈÂÇ»³=Z\10ðÝ\1a\87\11,á½4\89.ÂpU?/¸¥a©B\®ËF(\88¿¦j\8f\82ì\9ew8%\ 1ë\81Ñd\88^§_Ê\e8Ã$!«ÃÉ\869\884Un\a1"\17\95\1f\16å<'ÔÓ,\1c\bÓ\86©ë³²\ 3\ 6\82*\ 5üÚÁ¹¼\87¹Ó\9a\0flüíÊ\a¿ë^\eXa\80ög\9eëÔ\9a\13ROå{l\85\ f\99ñö?ö®\1cÉ\8e\\a\9e@w\98\vHÁ¥¸¹\92Û·\90=÷w?3\ 1\90à«×\9b¦¿'C\11ý \16\8bÅ\ 5\e\81\ 4Yû\eÏÅióÕ'\95¿?÷Î\9f\9fzç\9e\1c§$\8eåJ«0¶+%\b\80>Ô Ä ÉÞÆ\8f\12Y#¸"ª\1fá\94\bé\15f\ eo,\fh¬~1¸ÜƼߨç!\88²\8fâyR\1eÄ.Î\9aú\18\1cÅ\9d\a£¡Lfb\81U\90\ fæ\8a\1c}\ 4Ó:\97î°¦u.QÅTìõõ0\82WäàÏ\13\94á\9e^\14Ï\1e\16\rù¥\0"Û]Á\80\17N³\19\92\92Àº\9aÁÁ\19Q\84\91&\13cæ"QúÀøº¸G\10\88\80\0\15\906\ 3eDøIZ<u\13ç\0\0\19±\ 2"\17j2ö¾9yÚì}óü´Ø;
+2\9cD.¶Ô\9c°«Un\15Á¬¨¨ÉÚDX\ eA\7f\11AÓ\19c\e\96Ô\9aì-3\99=<J7áa\ frðå ¢\9eq\97\87\83ìN\b_¢*Í¡\8cTUn'\ 4ÛÿæÔwIC\82æÂ¡ôj¾õ\12ï"?n\91\1fí
+{µ\ 3\ 6y'×\99½\8d
+ý\18;\\15\8dB ¡_"Þ:W\114Éõ\17\99ÇB\98\ 4U\88&¿4 \1aS\84Ï\1d^$©â[ê]cª[cJRLÕ·\8bKÿ*\9aÐâH[OsÄ\84å\elW\ 4¶\84\1fË\13 ur\91VÑô4i\19b¤O\ 1\81\94{8W\8bÀxäÂJÒU\90⼫\1d0\8c\ 5Þæ\ 2(ê\10±$W*\bËÈEd\10î\89\86.B\88\ 4ĬN\8cLa^\ e\92\8a\9b_ßN"\ 5Ó\8b'\ 2d#2M®Øâ\13\1c\86¤\eC|54üS\11\1d`êi<ðf§6ÛìÜm\8f×\9f\82\ròL\8a|æ}w\8bä§\8co~ÀGÄãH\1fÑ\95ôÏi兩}D\8fÞ\19uÛ\98\açÚ\1e\9cååI\ e Qº\15\1fQ]\18\8eWs\10\89ó(ú§ùK|DüS|Düs\8db=\8e\ 1Ú7|\85\8fè\a\97Æ;m®¨\9e-·æÌ®¨·f߯i\9d?:\8aÞèñç»=>x\8bt2Å\87p¥tø\10¦ì;týî¶¾}\bë\87\99ñ»'ñ\fÈVP\1fB]?°nùô!´vöd¿ùNý![D\7f¬Ñí\9edôu}Ú/ÿ\9d_á-Ò%È~nëSG\82-Ã)\96öI¥\8ewz~²ÀO\9ab&Ãq\\1f\G\7f\97ý\8f\G_³ìù\95²\1d¯t}ó }jáßË1¿Êº\ 4¿²\94¯\9a;\ 2\1a\81\94Y6âu\rSf\10ùA\15À\91:î\90 38".[¦äÅ\9aÍO\8erWè\89Y*ÿnâ\95×-\1dt<*\80\8e¤ñ"¿¿yb×\8bIT\1f\8b\12^2X\8aðB%ÛÀ[F(ª\99Ø\84$¶¨þ\ f\96ßxá\98\19T\8b¤ìÎû±\va+;$\ 1Às\88Z\91øÖ~i½*ÀgU½ã\10Ò\1c\eî3BG;ä`\a\rB\97Òå\9bD\10½\8bâl\13«Þ²Î\91\01Joþ\1c1 \86×&^Ð[¤\0! \13\89/æH¨\17\17¡
+zâ%©ç®·µ\12ûF:Æç\96q\13m\17\9cDÛ-\98\97\14³ßS÷½g\89în\eÙ\aþ{\10¡ÑWª\16W1=ÖÍÏýñ/\8a\80 \8fí{n\12\91³\ fð\1c\90ΪúÁ\r¾óȾñ\L\17`3ñàÍ3ðñwþüÔ;÷´?K\9bö[`¬%\98«h[`¬ÙÞDÛÌ\a±[&ôÜ\85\1aPÖÓý\b¥}\84\92ݦïv¸¬\8f\1aKÏ\ 4k\90òTòä\ 55\89¨ÈHÅ¥\81\8eñM\19«\9c\86eå\84\18EaDå'¡Á\8a\84\9b\11·É\8b«D¢E8\92ã>\9b8\r¤@î3?\83î*Dù\b+Û,/ï\ 3\14\17sÌû\0ÅG6z\12a\82\83\8daV\12ÍÄ«Ü\ f\90\920{U Ð|»µ\16»·öxl\7f\1d«»Ççö\81#"S!ù\96à"ÆX`\8b\92\ 1¥g\fh\13\11Æ\ 51ãz\eÆÎn»Ïê.\À[×;\ 1·1×\84\ 1F5\8c\87Yt»õþøë¼á\13¦\1eO)v\9a;l\87H³Õ¸« ¯?5Õ\85ë\19[øÌûîªÃ[OÙ\89ûP\1apÉ\9am:\17`è\9f0\8a³öN;Ë\f0³Å®m\8bm{Í\81\8dI·´öäe<¼%;¸¯rù\1cbùE]Uþ¤¦*\7fÚ(öãs\80ë\e¾<"àjj\9eº\15GN{ ·fß/8\1aß\8a\bX\9dý|·³G\eO¦P\95ý^Oe¿§S\9dÖßj.'§ìÛ\ fSÑwO¢ÂË\ 6\10e_'U\94ý\92Û¡ì\97+\1e=ß²hq+ûöÃFçzâèuK¨²¿¿óË#\ 2®\1e\9eêù¶\ 2·¦XÐ÷ õ\8fN\9f,ë\93¦oG\ 4ü]éÿ\1e\11ð'+\1d>\ 2©o\1dßì¹\8f/÷«\11\ 1\ 5q\97=\9c\11\ 1\ 5\98¨Y°\16\948mÌ\1f5\9b[VîrqG'ÈÚpÂ^\8c\b¸xÿHgðeø\1e\80uºÔ®Ë|צ\0øH\1fSJÑçÇ\10t0¹»\ 6J\rÆ\10\ 4áÚH¿çX³ qûv¸\18\8cú(/¦
+\80ºT\91«?XÕ
+$½>¤\8a\ 1±\8f\ f¯½ª\89Ã\90Ó\ 2\14wI&´ÛüÂJè½9Ò\1c\aÀ\96åZt·«\16ÿ\8eë|\88\ fGi¨\9b\ 5Ùq\12Gey*O\1c\80\81\9dÏ\ 2J\9a\97J¸QÁVÁ@4\ fÓH\98\90U»nµCm0\ 16CE\ 1hqøR\9dÞªa\ 5 1ÁHW\9cÚ\ fæ¨KÌð$\85^8·]JÐ)E\96À2\10¬\15ܾU;\8f|_\9c\1a[Ô!dfS\83\16¯®#ÍtºcÙ«D\9e , aÇ¡ê\98\84F_â\9bçÎ\93\ 4\10\98s-ÈÑ\1e\82c¬\11Ä\8c«\ 6±ç¦\9eh¦
+p\17\85ê¯åñQ\94áHst@@\8aG»¹,)Ï}t<\vD\1dAË\85\89^çöv$fGðÎÍ\13+/\aÙ\97ÜÂñÒ&áÉõN#ýâ\82jaq#¾\90\98´å\9cÙÁÁ\ 1;KªF\94¼zì\90Õª Ð@A-KÁm1Òoî6½5ÚíÖ̱*C\99»\17ø{=Z|@MúY\fÞàýbAmÌ\92ª¸Q°\82¸øÝ\ 4ZG¬ÛuÐÂÔ\938¹\8bvq\12'/¥\1a\8fÊ\7fuðýE"Óq«Tª\9c»aEì\98¸\15yÈXLÎq¯;\97ûêû~`\ 1,x.¹~É\93Ûþi\91\93m¿úT\9c6åõÞ]ÿ;ïûù\89÷=»ç/)
+â\9dDyÀ2\9fr\ 1¥$$(ªv1#À\95æ\ 1§[lÜv\98\91~ËÞlýh\17ºT\83\90T,\1c\1c\14þÌ]S\99\b(þ\8b<¹X<\8bn~wL\1c\11µ%{uÄÂT\8bb÷ð\88·÷$w6\17\91·úCöz>nþ=?Xa\ 3\9es¬°\ 1ðCM+X\ fOV×zÔ´¤\11R\17RÈ\96C\ 5°{ô7ÿW\10\ 2\10IQä\\87`¡l¨\ 4\81\98\0<,\9eº@Èí)«Á×\8c\vÏ÷\ 3Ê\10ý%« \ 2ã\19\19p6¾¡Äy\Àè³I¹Izdôi1zD,\18s\96VŪTâæ\7fPS¨Ë\86ó\1a9Ã\10¬\92\1d\86Á¥H¹ªW¸À9\7f\14gy\89³¨÷\8e¾]7Ù\b¹\81,\vG2\19úëÛI¤´}9\88\97\88 ¾Br>ìöÞ\8bøuË\8f!³\8c\8dk\aD\ñwC\95\11\999»\95\13\ 1oFoE÷\89fÚÀó3UL]\87\1a\9bê\a\rî ¬W/æ!ºi=ek=ÁÒÍ\8c\bQ§*Ô¥¾\98MYjÖØªØdé\95m®\9côÛ#\9cºè;åª\9cw\8aYÙ\98\b\9a±Ä
+J\ 1¬iÓKþrç³ëF\1fÓ[²¹\9f´]7Ô½«1v\0ü&)ØÌÜ\18ûX椡\16\84\18+È©S\11!Ñ\b\8e¢\82\ 4Âåz\108/\8e\ 6¿.|\19ì¾\88\16qA\12·\7f\9ep½/½Ì?ØïÖy\9f\å«jÿÚ30\1d\9e\89\88\8f¿ënF¼þÌÇ/ñ%,\97n\9dR\16º[\ 1\84\88¹u\1e\1c*æi1§Ëµ\9d.Û13¶[Gº\15·ÎXØn58l·\1a<¨\83ü¢*\7fÒR\95?m\14ûq\fоáËÝ:åºa»5\82\91Þ\9b}'hä[n\9dÕÙÏw;{pëè\14\8a±_Ê\89ô5\99ÂiN_\ eéË~¨gìDúr=\89 _\1cÒ\97Nª\18û5\9cH_5\9cH_ë·,\9aCú²\1f6:×\93\8c~8¤/÷\9d_îÖ\99;ô\99±¿VàÖt.h{\ fÓíèôɲ>iú¶[çïJÿw·Î\9f¬tý\b \9buüèÖùÄr¿wG_\18î\1a¾ÂÀ\97¶¢¼\8d8-©\1f&Ç\ 3ÌÛ)Y§à\ f\1a¿×\81x6Åñ\14\9cZÇ\ eâ\18P°\ 5%{Õ9R\11r×< \9aÞESë$B\85z9h\0Ðx6"AS1\16\18UW\80S\16¨s!¡£1;¡Ô\8d\18\90$¢\93_U\93\ 6;\8b®\80\98ø\10/G\9a\8f"R3\17ß\fy\r\9d\1aPÏRR¦ Zµhµ\84\83#\98UAQ$©çÝ\86Üö\17TbÒtä>ÿ\13Ú\9f#UCvðDÜy\95¢¯0[}Ê\9e©É N\92¢j) oÕ4tß\8eSX\84Ä\8c\94\82»\17Ñn\18êI\9c6\12E?\ 3±2b\ 1D\8dËEÂBâñF\1avÖÑÍaN!\8b\94 ½\13»\ 4Ö\17³\99b\18\8e4GG\94\88Ò\8evsï\aój\84\v\9deÓ\13\ev\84|WCü$\17\ 2±Òó«±\82¥YòrÅ\95\13\17U\14@ÂdT\9eõ¶J#É\19%
+ÃM»¥ÀgØ\b\00Óàj%ýæ\87\12çµ\9bó\9b%Ü´\ 5)ö\84¥\99¶\8d¢\86°
+\9a,¡Ä¸Z=£2V )\1e\8c\11=I¬\10îý\83hV\88#Â*\87 Ã\1a\9d\12ß\eP\83Pöa\92 qÔ \88£ê\8e R\ eFù\83\16Wg ðêOôíà[|Dqù4ê\1e\ 4O\98=]WvDL3\8b`\914-\96Áå0#.HÅ\ 6,d´\9at¸\14\ 5°\vH\ 4o\96\0î4WÙ\93\9a\1c\8b_ßN"}G/\a\11 \1cá\92¡hør\96èx|\85\86\ e\e C\19V\92jµÃq\17Ïg\ 1R8\ f÷&5u\ 5\1f¤\9e\b\99ç\88¸Q¾°äó\ 5\1as°§é6\9d_äYz¥î`\19\e=áz\84Ù\9f¢ã;eÇ\eÏÅTÆ3|èϽóç§Þ¹·á³x\110¾¦¶Y\15X\8b¹%\ 1\ f£\818@\ f\ f²Ï5n\ 3\09\ fÇÜHÂ[z\@:Ò\ e®æ ùN×\0Ó¨]#ª\98?\ 1\9e\bAµ|UK\8e\15&>fÅ(mHnÀAH\12ö\ 4è\ 5Ö5,\86í#Ð9p\9a\97¶rO°]\1f¹hÝ\t\98\ fuµëQª\7fJoS½Á|¨û\1f©j±ÈÆ5À:\vû\7f\91\89\v\96ü\16«X¿\93¨w5\98\1c\98\88\85Ñ÷MÙòM\ 2å-\81ª¹\86v»¾ä\99± þDì9b\137\198ZSN\rÖ\80ïª\93'\a\15«©\8aÛ
+\98©\ 2w\81 \1dH\a
+bCɼÉ÷´ä{K6ÚÕ\ e\v-ÊÌìäÂ(ª¦\9cr´\94VP* ¦\82ÎGBí\83R\93SQ.Ü8x\92h2Ø4éQåyñÄ¢i\1fxC\15Á\8d\
+DM`$½\99\1682\15\r\14ZN\82uQE\1f"ç½\fXñ\91Ã\17+²\80%\r+ªG\9a¡¬L3<-\16lõ¤} u\10)º^<\91P\96\fÝø¸\8bA\19\96'\87ת%àÐYò ª\v\85¢êgÑ| FCQc`]\1dçás\u{\ 2±z§#\10Û\7fÝk1$Ô\91\8c\95ë1ñ,ÿå Aé\ 1CÀÕi¶d\9f\9b\98\89[ÌÌ\95\1d\96ì#í°dÝn\ 4\89ìåI*Ü\84½<\88Á\97\838¦
+R;y\8eV\ 6f1F8Èî\93ù%®©ç¥\ 3\9drn;énú¼þ\14L 7k\10|à}w\83è§ì°\7f(ø¨Ö\ 5\1eZÓ\ 2\ fÑ\81\87>ú\87\16xèr'\99\ fiù\99¢\ 3\ f\95né¥\92\97\89\97ª:ðPq诧Û\ 2\ f\95?ÅKÕ<(Ê~\1c\ 3¬ÿ/ðÐ\1anࡨq\83äÀÇfß/ø\90ßòRÎ~¾ÛÙ\83\97J§P|\175\9e\90\925\9e\90\92ö[&0:HÉõÃ<\ eñ\84\94Ô\r ¾\v\9dTõ]Ô\13R²Ö\13Rrýæ;«\83\94´\1fktõ\84\94Ô-!¾\v÷\9d_á)¤äZ\81[S,è{à¡G§O\96õIÓ·½T\7fWú¿{©þd¥ÓGÀCã\9b\97êãËýjðQ\9d£U÷Á\ 5Í\85e\a*ê\f\95áh5\r©uL\85(M}ê \rq<ýþv\12 A \92BµAý\89\ 5nµ`\17\8fpc\ 16`.\r\88RÁ²h.û\Ük
+Úx©Ê=µB\84\b±e6\80O#&\0\10\84æ\88\95¥.£^\O=ä:H\1aí\8eA/"J0V|n\93²btH1üܽÔHsÌH>\91{v#Î\91@³\94ÛÂõ0B\99\18Ì-i*SCs$C0\9f#qD`j`# \8eC\v
+0Á;å\8a¨í\1e\158s \f\ f¦\ f%ß©M!L\1cÅ\930S]Ì\ 5\81b\80÷¦B\ 1\10Ô\93µ¸÷=ð\15\ 6´\15\97BÐ\ 3\95º¥4T\ 4\80étè\f\1dçå;·õ\eÏMíjj`|ð4 ?õÎ\9f\9fzç\9e\1c' ÝúëxþõÛÓ\88Ø\9e\80z Ñ\11±ÉlÛ\ 1n°z\8aß\9d\9bØ\18ÂÆ¾JRÛI¶º;\12JÂîD¶Pðí°%p\97Ý\14<°ö\1c\8d(^\e\94\15\90\13Åí*¾08\9f@Ú\87\9bA\v'É\98\80#"o¨¡]\16üLÉ)zÜuJ£ÕnÚw»fnå\vEÒØ[3'â5\8fÉÅà3\1c;E¾\ 4\14ÑE\10\13\10-p\8b\15ÏçT\95äÎ\18«Ìy\92;\8b\8b\b\9f%¸\ 2\98U¿.¿\86÷\rð\ 5ð\84E61*Î\9e{q3*\9b\9d»\9cyý©ïpæ<95\9fyß]ú¼õT߯{çÖº¥\ 5OXû\82'¬ÍÁ\13>h⦢\9b¶~mm}kô\ e\9ePº¥= /£=в\83'lÙ'®Ë/*9ò'U\1cùÓF±\1f\9f\ 3\ßðõö@»Á\136VZO·fßç\86~\e\9epuöóÝÎ\1eí\81î@ëj;Aëj;Aëì·\1aT\ e´ný0Ý®\9d uº\ 1DKÔI\15-±¥\13´®å\13´ný\96Es uöÃFçzâèuK¨\96¸¿óëí\81ö\14´nÀé\Ðð\1e<áÑé\93e}Òô\1d{àïJÿw{àó+]ÆGà ã\9b=ðñå~ïÖº\ 5½\9c®ppÎ-ÀÈîæhu\14+O\8a\9aݵÏ}0\10\7f×Dì\9b\14\ 5¸PL\8aYHQ\\1dþ]úÁ\a\1d\ 5UÎyWö@\1ct¢{â\1cQ¾æ@è!\15<:à¿õÁ\81(lu\9dckt\11WÔ\94\16\98+äÐFÂpà>¹Ù-Eh\a 7\f\91\97S'\91÷ /\aqH°)æ\84i鼤Ée
+ÃfõÂøë÷·\ 6\80àÞ\8f&\b\87\fÉwäIú¹Ë\ f"\87öâ\89\95ã\19óá&HÑüÐ>¦\94\8ae9\91/Xeì®ë\18Üf&4«fB\0¨\ 4nz\90è\89\96 ×Àë\b¼Ó\90ë"2íñ\rs5®¤¹\12±\84q\90ê\8fëâL\9eD\96:{9\88¸Þ\99ò\14¯0Ð\9bÁÛ\a|\83^ cwáûd6MAáBÏù^îqÛ©ç^¶KؽËqg\8aIÿwþ\ e?Æ\18\8eV\87Â[J\1c#\r(G\82ÿÿªÜ\\9eh\9bÕ\11\91ç>ÿÂ9\8aRM¢\0ª\88\ 4µ\v\103J×=\86¡k
+K\ f÷n-¬\98\ 1\0C¥¹S\9b¥úò\17\9eª\96|±\9bà6VB^/¹\97õ$\1dè\\95\83ÈOz9\88úé\rÁá!ºù9g\10s+\14ðý\96:ç\14µ\18buD|³¦Ç4Ü0NîàI¨óË;\ 3O\8c?x¥ãI\ 1W\92S\12\84(èá<\ 1q¯¸ý\92©)Rñl7Yõ\90wG\9bÄ×ab6I\87õr\10uøx\81ÞGØG\9eóðE\17ÒM\8cÜ"fÈú¯\96¢\1d c*\87¼ùN±ðÆsqî\96*\1fu»\90þø;\7f~ê\9dûH>»\90ÆÉÖP\1f\84\1f¡\0ÚÜK\11¥®í¾¸LVK\ 6µùß\ÚË\936\v?\89ÊÂ=\11¨´äZq²àª7\9a\9e\85'cá\15 d\1a\9a¤Ä:â\92\ 5Ú\91'-\16~\12\95\85;be%\17\91¤\9aQ\83\ f\9do£l)\1a\123'd\88`\ 2\hÕd\0¦¾AÊm\ 1É\v\OZGþ\81\18XÀÜ\13\83ð\9b:v&O9ø©þ\ 2\13FÒ\95\ 5¯I\13Ô\93Q\8e\1eL\1c´GÎ\8fUi\8f2âå ¢.c\92U\1e\9aö\ 4ÞÈ\85/\86Ú\87´\87ÆË¸\16¯\95x\872ö\19»aÅ* ú\16¤ëmo\19<\ 1¶\1e>ù\81Áÿ{\10\87\84+Q'\92Ú\f\14\83\8b\1dÚ¯ßd\15éÊÉ7\89q±UíÈ\93\96D9\89*Q<\11\1fs\r2t\93(ñ\90\fqK\86\b5«8"Ç\9e\87>5z\1a\94k\1aY\83\ 2\91\99×Ùs\9fYü\0nUYªÊÍÄ<\8e \1aÝ1ck\87ݦñ\ 5ò\ 1%E<\97ý×\93p\0\10N\ 6ISÛP\90aÏÔÛfêÁîè\8d\88ÑÚòkG\8edLÝ\93\16S÷Ä\v¡\\18Cp8 \9e©ë/\8c\ 1\bÒ!ú&îû¬#GZÂí6\ f_\82cAf\9dãÁs\ f\8dÛNèÝ\1eyý)Ø%ϤÃgÞw·RÞzÊøê\87®\92[_¨\85RÓ\87®£v9ÔÂG§ÍB-\>\1esì,çÏåP\v¥[q\1dõ\85ZØ\86C-ìÁ£`È/ÚÃò'aùs\8db8ÔÂõ\r_î:jù\ 6XØã?}j,·f߯i¯¿é:Z\9dý|·³\a×\91N¡8\14&w?\1c
+-\9f uö[}o\ e´ný07Àu\82Öé\ 6P\87Bw um\9c u\93¹\9c=\r\aZg?dc\8c\13´Îõ$£ï\ e´Î}ç\97»\8eæ\ e}æPX+pk\8a\ 5}\ 2Søz§O\96õIÓ·]G\7fWú¿»\8eþd¥Ë+È\84O;~t\1d}b¹ßu\1dQcí>\14zî\ 3ä¡
+|¶\11\e »¤\0#lwàÕ7`4\88&|!Y\98\ e\13è\1d¢ç]\9d\88Í ¤\1cô3Ø\85#\95¸ôRGÔð6¼@"ö\8a\1aË\18Eê5:\12\9e\9cÓ£ÀÑÖ\ eE\13ä6\bÚL\9csÕ\0ä ×\¥H\81\86¹+\90\ e+H÷H(\85/ã\85Ä"\15\17\8b¢\17\83\88hR¹\88CA\8a¹\1d\e¼3#jÙ\8a«]xIµb\ 2F\9aã«]\90\8f}»a./\86¿ÕI\82a[«\ 5^W\16y\ 3ÑjrÀ'ÑÑ.®\9cZÜíçHR#\86\1a¡Ó\12A\10\1aA\b\94vÕÉð1\8e&\ 5?ñ$äe\83.VWQ\91ÌTY|ªÖ\13[í üfE\13/\95\8b\8fZîA5ì¹\vª®á4z4\ 5znr<¹C=Ë\8fQ ¬\1di\b\1aâ\1cîAd\ eÁ\8b'"\b·5n\1dM©A\82úÔXe$Å.f%y\1e㥩Oå\84\0\\@Iì¶\90l|½nó\9dï\82ÉTììÕ®Mµ¨[\95¾Á\ 5l]B÷ùÒ\80hçù(\103\8a\95¦c\12Në+ \e\8b\84\80KG\ 2>d \9eöIÔÂ\87\8e\bìÍ1¹\1e_!\99ès&\b\ 6ÐxùÜÕgKS\13_\814s©ñ>76\92\93ña%Òó²\ eõýð\9bÃ\rssI\85\râ5\87H¾PVP´\12q\bxË«ÁÓ\9d\13ÝGR\87Kj¼)nDÿnªÅ#\0\1c<Æp\ 5¢\0ÒxR\90\vè_ß\1c\11\ 1æ½\90õ;"°N®\7fdÓJ\0h\93÷s õ2\93£\13ó\Æ\eÔ)qM£\8c³\10\14f¿\88ÿ\94;C.¶\8d$\871\bJÎj\870c\ 1ÏÇ\13eDO L\84w?\89L\99z9\88I"\8dñ
+\v\1fY\13|[\88ÿo¾Dëåõ| \84ªRô¼ñ\Lm\84ÏåK<yçÏO½óí| \7fÐ5ìõ_nIÍÃ1"Ä\ 6Y%ïÂ#0\9b q$§ÛªG\80»ÀL²\82\93×hài\97ãT9\8d\83d\1c\rlîzä}/\a±J,\15_!(\14\80\11\80O\19QæíR7þ|;·$äÜ\18ê?\12÷\ 4\1eP\94¦~çò}qy$\88JQÒ\ eçU°9à#F\0\ 1øH\18\86¡\14#kK¶\85àÎÚQ\90\ 6pJ¬\ 5\94\ 2rjð;sE WQ^\99«\94\9a`¦ÝE\99¤SÉ\14É\a\19\1a·\f\9dÛB«^¬vH\83\e\9a\1c\90æ6P±\9fUH#ûì\97L\91 \86\80&õ"@d \a\91æ\80Oz¡Ð(\v\12¹D\b[h=üz\84z=j ×Ö@ªyÍw»²Ô\19Öã)\aÉ©=\9b\88¤´¢k/\97N\88WÁËð\822$\90zü\88©ª\8cë"Ð.d\90Ì\99 \13\f\8a\eqãð+ë\ 1\8bziy\bk×}z\1da\9b\1dÉD\12äT|\14^/\9e\88\98{d«4\8aâ¤É=L\8bk(¢Û$«\11\88"D?ãVªR\157\ 2ÅõâÆÑ¥Þçòv~-eÂsê,LYä\94fF\1a\11S3\19®z\11\v®;©å®ª®\f\81ú-\1aa¬
+hÁ
+Ã\8d\19\ 5&l\12B¿<I\85\92ì´\añõr\10£\14\bç+´\82í\9ck\19]²D<\9b\10\91\99zU
+i~ñ¸h.¥h\18\8fòAI¢ÄÐáîÚ¡c\956Y\12µ<I¥\92\1eîS~½x"rVB\13¥s\9a\ 2ã\98ãÛZü\1f3.\9crxϸ0\véõ§¦\rV\9fI©Ï¼ïn\91½õÔ§2.$´\96n²\1e\17Üë´¬¶\9bìtP-Ï\959±®íÄÚ\8e.\a÷*ÝÒM&/£\9b¬\17\a÷Ú«G\15\91_â&«\vîUþ\£(\ eîu}Ã׻ɯ\rîuÚýSì\84[³ïWËoý®Î~¾ÛÙ\83\9bL§P\9c'=\9c =\9c ö[ý\8c\ e\ 4týP\97\87ë\89Ö¼n\0q\9eè¤\8aó¤\97\13\ 4´×\13\ 4tý\96Es öc\8d®\9c º%Äyâ¾óËÝds\87>u\9eØ
+Ü\9abAß\83{=:}²¬O\9a¾í&û»ÒÿÝMö'+\9d>\ 2÷j\1dßÜd\1f_î÷Üd\1d¡¸\9en²\ eøÅ\90²#v à\89\aäb\9açd\89\11\97[Y\81ºzÍ\90\8a=B\8c\ 6ÍÐ/e
+Ô\8eì\e NF¡Ñ©Úz\12\ 4j`
+³'r}ÝoE\80eïR\98\ 1ô?È(Rɪ}\85Á`u\8cö\92B¶@¹\80
+Ù\13Ò\16¬¦\ 6åUG¸ùªÀ©ÚWG\9cw:\9a]S\v,E1F¦Ê=\ 5\0\\85\923\8a"\84\99·p\1dP\94â²<Ö\8e\95\13¥ºªãÆ\93 ¶Ó5q\10ñéû7ï\9eùÊ&wÄbw\!r\14\16\7f\8eð¶X9\8aU\93\r\0_¸ðÇ'I\91\8e½\9c÷e7\a\89û/Cò\98;"\a\19ë&v\84ÿ\87lYã\93Mr\8e\ 5\14\10*!\94M,EAX^\92)訦\ 3\12\1d\8dâ¿\bS½ð¤=+\9e\88Yq¿QÖÈsVN·\8b\89ÄA\fsò\15\86ÿq¬Ý\ 2\90PÐ\ 5\1fdÕñÔwé¶Ãöqv@e®R¿Ú®\98¿ ö-òu;î «]2\137\ e\8föe\8bÍ¿\ 48ß\1c«\15Ø\8f\ f¤}\12\1c\91\1fî~#\ 2!_|n.¸NkËS s\10Á<rÓ\0à\18veÉ,E\ 5ñE=g¿\92÷\15ÿZOL\17£eýWGu@ÙÞO<1\19^\11\84\90¿þ\L½\o{b>ðÎ\9f\9fzçÛ\9e\98~eIâ a2`¢ÏSÃÂ+\97¢\892\93\v\8bt\8dêÕfÏ\86\96\11\88]¬õ´W;¢\14\9a?\98õKz²²(L6©²ïb\17$$1ð°à\9bÆJ»T¶ð$\8aV÷[7â\8b'Âa\0pIö.\11
+¼Îè\1cD«A\112yv1þ¼nZ\9ax\1fðI%'oÅ{6´¬xN\91 9¬vÀ»íUcz'·\aóCdM×<½xñ\96¦\13ÓPÇÆP;°Mã¤È©!ÄasÌö×·ã·\8cÿå ¢f×\80\1c(\ 6U\89³Tzýçɪ\9býî¹\89:vþ%\1fêz-£DÈÚ®×\1eYle05\158\bm \97°0T¥I
+\18@Hg̱ñC\84#õq\90ømþ÷ú6G\9c³ \ 4l\90\86lK¸Ïp¿ÅQH«\86²¥\91ü$U)Q.¬¢·A9 \11Ø\86Yâ\19ÊÂ6\ 1+\8aÅÒ µ\1dÂz.ãEÈ%\ 3_ÛA*\1d·pxÔ\0ä1:n«Î\93\1eµª°0aG\92u\r\8f¬õå \ 6\91_ \85\18tf©ä`\14\97\84\8bãΪDÓ\fROêùcí]|SªWõëy_÷/ô\15\\8fÜiëHO|\ 5ª&¾þ\14\14Ñg|ô3ﻫ¥o=õ)_A\82D\8d5Ì\93\93²þùò-¥¡E^ð\ei§WdÐò4Óå×\85ø*ù3t>Á?£<¶\9f\87Ñ\9bòÂøäëÄ\1f1×y\9bû ll?.¿ø
+þI\1f«ü¹\86a\8fs\84ö\15¯\vÕVþÈ[\90\92ú!ö\9aOQßQ\9fö¡\99D\1cNñ8Þv\19¬\1e\7f¾×£|Ò^F\9dÇNC2å\r\v JJ¼Ã\8fA\83'ÖoY(ù!ó¨?\8a\86<ì\9e"nhe¹äO]0ù\81\150XHmÙËÙ\93þ\96Í¡?d{Ø\ f\e]ßP\95\1c}[\9föË\7fçë\86d\r\7fdHÎ}*6\?\fɵ\ 2\8fMmMßó\1a\1cý>YÙ{S\99ÂW½\ 6\7f\17û¿{\rþp±ûG\1c\a¶\8a1\9f\8e\83O¬ø«P\r ·IÐÀæ\1c6\0) 1+!@\85 Ý\8b\98¨\1e\16\ e#À¤.\a *\ 5ë\9e;""}pÕüB"tL\90®ÄBl\89ê\11.Þ@dQ\9a\84rv±i;}\ 5ÊÎsß\18é÷·\84<q(-»\192Âi\11F(\1ca¾Ô\91.äßÄÆ'7\11 _SÅ\9a\ 6.²ä¹»\14\18?\11P\8bã¸xo{ñ»ê\14\18¸\9c\8cÐYqÛöB¢Øc V1ï\12Ô\ eÆ~\80Ø\11·<\9b,\12²^æà1ï\17\v\ 2,Ò/¿\18F\9cýáÒ%\ 4ß2!Â\9c\ 5±1Â1§ô eÉ\93\9bým¢ÐËA´\95\ 4¦\19ÑéÝzßöÅë\ 2¯çÏTÖ\80ûà;`áqkµn \12îSõ\ 3ô3\8fcô\9d[ý\8dçbÊW\12\17Ö½ºÆ\87ßùóSïÜ\93ãD§[Ä*\9dþûÍ/w]+KoÐU\1c\11\9bGð\v¸²\88\b\ 2)$2GlÇ1\1aw
+\92¦F7b\96í\18õf\18{ uÆ c7Ï\8d¨DÞÂã\0Ù1@m ðMGrÇe\113Ó,+Ï\86\94rÀI»\9dѾÎ(\920\83°\81Õ\ e°pÁH\ 3YþÔ¼y¨pn%Ø\8d\87\8a1AxkÆä¾x¢ÛÉ\8e\88*\ 3C¦\8f×X\11å\9d\1e7²\92æð\0+W|+Dêè¡Ð®\1ces·M´Sör\10áH\9cÖ\ 2ûo²fu\1fø\87mñÆ\81j\1f/A\80\1dÛã\ eÝ\9cÎ>ñ.\94^{jP2]OÎÒgÞw\97So=esò>¨C¾\82\99\119\84eF\fEi£\8eþ ¾÷;ô9\1cfÀp\18q9,\b6¾L\8c\88|9\94¶\8cÛ\88õ´þÂ\eäOêCò§\8db=\8e\ 1®oøz#¢×G#¢FXÿýÖìû\ 5\8fã\9bö\83uöóÝÎ\1eì\a\9dBU)Çuª\94#\9cJ\9býæ\12é\ fQ)õÇR\ 4WO¢àÈ\ 6P\95R&UUÊ|\95C¥Ì×8z²ßÜ\16ö\83\ecýÐÑí\9edôº%D¥tßùõöCïÏTʵ\ 2·¦sAË{¥\b\8eN\9f,ë½é;ÆÃß\95þ\ 2ãá\ fVúúH)\ 2[ÂGËá\13Ëýªå\90cÐøk*A½%rä¦\ 5½\171\87ëÇH\b»\82¾I\9f'%\81ÿýýÍ\13\81`\9c°èpZf~\ 1BY'AknO\ 2î\9a\1a´Ò\1cû\14¶äýi\12\11ÿ3×6e\96\1eC¹CqÑO\13CëGÇ\8cé8)H:ä(\1c\8a\83\10]\89»\1aZJBTnNÀÖ*\8eò\9bÃh"óW3H¼KL\95&(Ò9^\9a \10óe\80Ê Ja1\fí\ 2`{\8e\88º¥É\90\13 ms´\82ÌJÀ\8cu\ffmB]ý\¢=z\12*xòNÁ\13»\:\82t±n\ 1´.\ 6\80q-\83è5\bÂd$\1cÞ9_\19Õ\84\82k\19\eAàã©ÿàf\97£gN5\ 4»8Ò3°\16\98¯\0»\886"æGê=Pÿ\8e©sfG É\91dQjÉg».e\1fù\86\ eÈÖ©?þ`ýR\f\83Îìù$ Â\88JLU\17\11à\19\ eM\82)ãK\ 3¢\ f<©ü\98ê7\ füA$\0ò\8b'Âï\98;
+nG-Ù\15ÅÇ>¸±Æ\0jBL8_Põ2\8a\1c&Ä\9ebëjè<\86\1cZÈ\ fDäis\8a\8d\98ç\b\ 2«tá p\1f9J\ 2\984\17Ç\11µXºël\1dÈýR#ýzv\9a_gs\9f²÷æ\9eÅ\r\9e\96»Xº_Æ5¶\8cÕÖôà|ßÉ Þx.Î#V%Kùfï}ü\9d??õÎ=9NÕqkXd¹&\1fÄÉ/T1\8d(<©ò*/N\93²\ 4V2ÍiHüæ$Vñ\7f`Ílç\ 5\89Ðô$Ý\8c¿¾\9dDnÛ\97\83ØÅ<Â\ eͬö\1a/Ä\8b\97¹-æ[¥n\1d\8f±\1d3|¦\98((\18\83¡\80\1d\96d\86Ìã ëQÜ#\8a½·Ú¡\82¤8\91p¹\90*\80\9e-S\ 4G4Ç!|!j\95>\1a¨¸{Âf\94¼#\f\98\1c\ 2|\87,HlÑÁzpd\80#«ý8ú\90v\9bµ¡"\8c§8\ e¸\89\93A!£<£
+ \8c#_\8f\1c÷R\8e\vT\ 2Â\8e®68|WS\11R®Î\8fdíB\92øeÂü$¤\80L\afpæá\16S?<\8a\15£üæ¦É\84ÌwÍê\92Qs\89qEêI[\94mZ\92P^,§Ä\12\83}\8d\91')\8eÉ´øÙ`_Qv\16&\96(\ 4ä7ÀÅy¡l\9fVL\13\ 1Ý\91
+Cy¬2\e¡´×u\90\9clßD\14@ÀGà\15Ä=§ÅHÆäxÐX\8cÉq«a\8c ;º¥^üÃàôÊû\10Ý\8d\95p$Ç#7ñ\12\8c\17×\9b\1dÖ'\87úK¬u2&\ 4«\9cüe«>ö9w-ðõ§¾+;{ä\84\9fyß]7|ë);ãï[ë"\18ÅZ¯ú'Lã¶õ\a;Ù\fh³¥Ã¶¥·½í\10\1cs]\0\89|\99XëWt\18\8aêª\8bë¢ñ\1f5AÌ÷Ç\aª\eÅz<\12èY\aþåÖz.áfã¾:¥[³ïWJoC²¯Î~¾ÛÙ£µ.S(6\.ý°ár¹N+É~Ë\12]Û\86³\1fËòZ=©eÆ\r 6\9cLªÚpW\18\87\r79ÖÑ\93ý¾dÑò¶áÖ\8f\9dÈ}Øpº%Ô\86ÛßùåÖz.é©\rg+pk\8a\ 5}\ f\92ýèôɲÞ\9b¾gÿ]éÿlÿÉJ\87\8f@²Û\12Þ¬õ\8f/÷ëÖ:«\ 2Õ¡*l&FNF98F´-bn\9ahFÑ0ò\94\8a\99\85\92hfBÈ\a±\ 3ë°»\v(\ 3\1d:%B«\b¯\17#R¾ÛA\99&_a\16\9a#¦ åz2s©x\8f\ 6+\89Ú\98\15>Ú¤ù(\92´X ÒµCpËÐvs^§õ\85\82\82ÌF\87\9a\1dr¡#\97\10ZTx©¿\ eêÊ\881Vk.à#¨æ´¡ÅÐ#,zT\9eÏ]ëññ;X \9aó\89k\97M\9aãëE1\f]»ª!1j~ý4\95%i\92ýÃ=\80'¡\rQ1\9búX¦
+2I\92ÌD#²ÔG\12\93£~}óDÀ\8c1Wó$\ e\\97æ\85\84ÃÉÃÂÎ\81°Øû¤d\19\eF\82\8bN\1a\8c)\v\0\ 1¾U\84áT\1f\13
+eå\8eé\ fÝ\910\90h·\9cF\94)®b\95¯\87W\11 X<,\90åIC²\1f±Ú\8b8u\11î\8fܨiGfjrõºyHp\8b\851¤¹ÌÅ\9c0]ì®fa³\a19\17NçV
+?X\88\v\8aö\85+0G\817IôñMCî:\,«'ha\95\9f³^h¤94Äò3\94l\11ç(FÕ´¸ýðÐÜ$ºN\12\94ûMÁ\r\1eãï\1c-
+\ 2j\ 6ØÔÈz\85\17\91\8aÞ»L\19Âê\99è1M\1cÛ£´\14;ùù°Ú¡ \ 6\ 4'`¸ª\9fÃ|Ä}x\1eÓh\v|)\-]TûùÚiýñ`u@>\f\8ewDÙBE4zO\8aà\rÜ0\a\91¦Ê\8b'Î3\94ùù¸Pçy\8eÈÙ¯\1c\88$\ fC×g©\a\f\ 4¥ÝùµD/\83¹Ó»âflþvç\83_u¯\rØ0@ý3ÛuiÍ\17à?å{l\85\ f\99ñ\9d¬ý\8dçæ¹A\ 5Ë[IðϽóç§Þ¹'Ç)\89c¹Ò\12\8cíJ 2¢\19\94°\17*Ù\e`üK\95\8d\13æF$£Qf\ eg\19\fh¬~Qè\ì×É+£\9e\87 &@\94Ò§ éNW,~GqçaÑ`¥ô¹øÃªôÑ\\91£µ\8f`]çÒ\1dÖºÎ%j\9b\8a½¾\1e\ 6"\84\1cü)ð2ÜÓ\9bâØÃ¢Í\99Aþ\8aï*\18§Ù¯T\12XWSd¸E\14a$\81×\9c¹HÀ¾l9þ\9ct\ 6¨\80´\19(CÂOÒâ©\9b85\aD ã\15MåB5ö¾9yÝì}óüºØ{G@m8\1fn\8a*\8bÓ?\r.\91[\85Ð\15\10\ 25\11\96C@`DÐtx\9c\91\9f©R\v%Iç<z\92J7áa\ frðÅ\13§\b½j\97\87\83ìN\8b¢ÇPFª*·\13¢í\7fsê;\13\91¨¹p(½\9ao\1d®\9bG\91_¶È\8fv\85½Ú\ 1\8f\9c@?\91@ÇÐ\8f[5§\\1cÄ\eú%â\8d\18D¤Iƿȼ\1c\85XS4ù¥\ 1IÐ\98"|î\0<Èâ5\fw\8d)l\8d)i\89U×..¥lHJ\8b'm=Í\11+\96o°\9dd#ÉÇò\ 4°z.~\13B$³doROO\ 3\18)÷0Ü
+âmxäÂJÒU`ÉÞÝn. ÜÀ¡\rO\1fÅ\92\© ,#\17\91Ap¼\ f]\84\10á\99\ 2\9eê\12#S\98\17O2qóëÛI¤`z9\88\17NÝEn¢\8b\8fK&êqw\86øzløg":ÀÔÓxàÍNm¶Ù¹Û\1e¯?5m\10\80\84ߤÈgÞw·HÞzÊøæ\a|D<\8eô\11!¡L}DsÀÛGôè\9dQ·\8dypÂöà,/OrP\8dìV}Du¡9^Í\81%Σè\9f\96_|\ 3ÿ\14\1f\11ÿ\£°Ç9@û\86¯ð\11ýàÒx§Í\15¯\9b£\88é\15õÖl®ô¸Õêx£Ç\9fïöøà-ÒÉ\14\1fÂ\95ÒáC\98²ï´Òí·,Vß>\ 4û±,ÿÕ\93z\ 6¸\15Ì\87P×\ f¬[>}\b\9d=éoÙ úC¶\88ý°W\9etôµo\1f\82ûίð\16é\12d?·õ©#Á\96áÖt.m\7fRµã\9d\9e\9f,ð½é;~£¿kþG~£¯YóöJý\8eç]ßÝG\1f_õ÷ò˯²®¿§\81ÀBVs;\14\\9f\84æ\88\17ê+¨\1a3ßIáïH(åÌbb\9e\88»²\b\eàBX·Ü\12zb\96BÀ\9bxåu?\aí\8eªß&A1¼\88\95ã\89I¯$Q\87,2°\ 4©rÀ\92ÊIR\89EEÍ\ 4'$±Eõ|°\bÇ\vÇ,á´HVæÍØU\ 2*VX0\ 2\90ç\0\80-\91W×j\12H/®z»!¤96Üd\84Z\8fvSñ\8bAÃÏ¥\92¹#e)á6\a·\89IïWçHj°;?OL\82áµ\89\17`\91X\8b\10\13@,\18OÂ5d\84\12è\88(\9eÁ´óÝÛZ\89ýV#\1dãsËè\88º\vN¢í\16ÌK\8aÙï©ûÞ³$w·\8dì\ 3ÿõD\16\81¬\14ù¸\8a\16\rÖÍÏýñ/\8a} wí{n\12\8b³O/ò¾eVmÕ\ fVð\9dçõ\8dçæ8ó%\ fÞ|\ 2\1f\7fçÏO½sOû³\8ci¿ñòZ\ 2\14ÃÖ-\9a×lo¢mæ\93xi\12t©\16J\86ê \8fG¨î#\94Ö=új\87kú¨QôÌ\ 6)\87¬\ e\82\9a\b@redáÒ4g\82s.ÊiX_N\88\91xC JÎÉd!#ÁÁ\98³ã*\91H\11\8eä¸Ï"\ 2Û"\90ûÌÏ £
+!\0ÂÊ6Ëkû\0ÅÅ\1cÛ>@ñ\91\8d\9eÄiÙ\0\1e\9e³\92h Nõýv\80\94\84Ù«\ 2\85æÛµØ½µÇcû˯\99\e\9fc\ 5\8e\88Ú\8dÉ·\ 4\171Æ\ 2+\94\f(=c@\9b\88\0.\88\99Ý\9bíª'»Ï\8a/\À\×Û\0·1×\84¡Na\18\ f³èvëýñ7xÃÇ\8d<\9eRì4wØ\ e\91f«q×\11^\7f
+ºB}Â\16>ó¾»ÞðÖS×~Ýû À%k\9eé\\80¡\7f¨*ÎÎ;-,3½Ì
+\vÛ
+Û\96\9aÃ\1ac·bçñebç\95ìоÊå³\87õ\17Þ \7fRM\95?m\14ëq\fp}Ã\97Ç\ 2\ßL<¤³\97pkö}rª·1õWg?ßíìѺ\93)TM¿×SÓïéÔ¥í·,Qr\9a¾þXúùêIõwn\0ÕôeRUÓ/¹\1d\9a~¹âÑ\93ý¾dÑâÖô×\ f\1dÝîIF¯[B5ýý\9d_\1e\v0wèS%ßVàÖ\14\vú\1e¦þÑé\93e½7}Ϧû»Òÿ9\16àOV:\7f\ 4Sß\96ðfÌ}|¹_\8d\ 5(\88¸ìá\8c\ 5\98\9a\81¤ánâ40\7fÔl\ eY¹ÅÅí\1c¡µé~½\18\vpñæQÜÀY¡=&)\j×e¾kS\0z¤\8f)eèóC\91ÁäÖ\1a\05\18\83Ôn^¤ßs¬Y ¸};\ F}\94WR%\0\97ÿÒ(l\96¶\ 2I/\ e©b@ìãÃk¯jâ0Ø´Àã)i\84v\8f\8f9ãµ\92¿ï/\b}\90\vÑÝ®Zä;.ò!>6e\8e¬CêÌ\81\1cÄQY£Ê\13 \ 3;\9f\ 5\944¯\93p\97\82\82\81h\ 6¦\910!VÁn·CA9\82\9a\81D-\ e_jÓ«\ 1%TËÓ¤§{j?\98£.ÑÂ\0©é\85sËÌèE\91%Ðû\91Õ
+þåª\9dG¾/N\8d-ê\102ó¨A\9b\aZG\9aénDzW\899A@@Â\8e\eÀKç\93]¼òÜy\92ú\ 1s®\ 59ÚCË\13Jì0#ªA칩\ f\9aI\ 2ÜE¡ú\vy|T#\8a´»£/Ø(ñh7\97e.Æ5\8eg\11)Û\8a\ 5\ 1Ô¹½= y\11¼móD\89\1a`_\1aÓ\80$Ø\84'×;\8dô\8b\v*%Æ\17ñ\85Ĥ-Ë\8f488\ 4úwÉÛ(\92Q\8f\1d²Z\15T\1a(¨h\19%NZI¿¹ÛìRvµ[3\aó\127«\ 5Ø{=Zd@MúY\fÛàÍbA\85Ì\ 2\8cAN&\82\8e§\8dã\b°\8eX¼ë \85X"'×h\9c\9dÙqà½cDù¿:øþ"1é¸O*UÎÝÐJv\91A`\91\87L*Êmîuçr_}Ó\ f\14\80¥\15\17\\ 2\1dûé\90\aßɶ_}j\9e\86Ñß»å\7fç}??ñ¾g7ü\ 5×bC\80\1a¦D\81e>åBì\16\ e\ 5o\18Ì\bp¥yÀ\19\a\92ï;,ï\1d6÷fëG»Ð¥\1c\84$aáà ü'ëB \7f\ 2\8aÿ"O.\16É¢\9bß\1dMGL\93?öê\88\85I\16Ånà\11iïIîln"îó\87ìõ|Üùû\97®\80\ 1Ï9VÀ\0ø¡&\14¬\87\ 3JiDMH\1a!u!\11å\9d#\ 1Ø=ú\83³ ë´Ç"ç:\84\15Ä\86ëä9,<,\9e:\AV\94\9c\ 6_3.\f@Ì!\93\97´\84\b\ e#qÀl|C\89ó¸\80Ñg\93r\93ôÈèëbô\88U0æ,\8a\96ªä\9dÿ ¦P\97[\r\7fEÎ0\ 4«ä\85ap)R®êåmjwqÖ\968\83Ã0\8f~´ëK6\16ɯð$\95¡¿¾\9dDJÛ\17Od®`¾¸\875ëÄîí½\88_÷û\18²Ô±Ùí\80\86+þn¨2"3'»\94\13A\18ÕVt\9fh\8e\r<?\93¥é:ÔØT?hp\aa½z1\ fÑ£Öc¤ßÜ\12\9ahfD\88:U¡ºúb6e©Yc«b\93¥W¶¹rÒo\8fpê¢ï\94«rÞ)fec"\ÆR*(\ 5°¦M®÷íVØóÙu\97\8fé-ÙÜOÚ®+à\1ezCÔ\0øM\92\f!¨¹ûXæ¤A\16\ 4\17+ȦS\11!q\b\9bb\82\ 4Âåz\108/\9e\86áô*¬ ð;\13#aÚ?O¸Þ\97^ã\1fìwë¼O.ñUµ\7fí\99i:\Ï\ 2Á>þ®»\19ñú3\1f¿¾\97\80\ºuJY¸n\ 5à!æÖyp¨\98§Å\9c.a;]¶cfl·\ e»U·ÎX¨n58T·\1a<\9c\83þbaΰPÝäO\eÅz\9c\ 3´oør·N¹n¨n\8d8¤÷fß/¨\88o¹uVg?ßíìÁ£S(Æ~)'Æ×d
+§9}9\8c/û¡\9e±\13ãk÷¤&|q\18_2©jì×pb|Õpb|ÙïK\16Ía|\1f:ºÝ\93\8e~8\8c/÷\9d_îÖ)×S\8c¯µ\ 2·¦XÐ÷ÐÜ\8eN\9f,ë½é;n\9d¿+ýßÝ:\7f²Òá#Pn¶\84\8fn\9dO,÷{wô\85Å\9eTÃW\bøÒV|·\11\v\8aĨÐ\ e0o§d\9d\82?hä^\aÖÙ\14Ç5j!;\8ac À\96\1a´T\bó\12bn\a©Ios}\ e"T¨\17OC^:\1c0|ÃÕ\14]\81ñt\ 5\beAp±0\12æ%\94º±\ 2ªÄrò«jÒ0gÑ\15ZS´áE\9a\8f"F3\17߬+ö\ 2±\bXRf\9a±¦Õ\12\b\8e0V¥\ f-ê\r}\9d·ýe\ 4-^\8dxä< ý9R0L\aG̸ó*E_a¶ú\94=S\93éS\ 1S<-%á\9a\80îÛ\ 1¯Nð´\8aä¢\14À×\8bv\ 3¤½@\846\12E?\ 3±2b\ 1D\8dÈÍ\88\92¦\1eÚçJd\1dÝ\1cæÔ°\91\f¤wb]\10}1\9b)\86áHst\88F\15\88²Ý\ eå¤Ì«\11.t\96MODîü%ßÕ\90eÂ\85ÈDîâ
+J\ 5$~)®\9c¸¨¢\0\12 £ò¬7«·Îôf\94\7f(\f4í\96ü\9ea#\0µYó<\94ô\9b\1f*°ú»]¿¤\b\19_ÁbOX\9aiÛ(^\b« É\12Jt+°\1ePϨ\f+!\15 \84?âA\8aRM\büÐ\13Í
+ÙD\86¤Â\84Á&\91s9Õî\84ab$IÂÅa\1aÅQuGP)\a£üA\8b«\ 3tcT\7f¢o\aßâ#\8aK¯Q÷ xÂT\8e¯+;"¦\99E°H\9a\16Ëàr\98\11wIµ\ 6,dÔ\9at¼\14\ 5¤\vHÄm\96Ðí4WÙ\93¢\1c\8b_ßN"}G/\9e\bó v\f\87"\81ËQãâñ\15\1a4l$\fehIªÝ\ eÇ]<\9f\11Ѩ<Ü\8b\94¢º\82\ fRO\ 4ËóÄ\v0䨢Ãb\ eö4ݦó\8b<K¯Ô\1d,cã&ôG\84ý):¾Sv¼ñÜ´Êkz\eaÿ\ 3ïüù©wîmø,^\ 4\8c¯)÷
+\ 2h1·dÏëZ\1e\8e\9d û\ã6\0\8dóxÌó:樼\1a\17\84\8e´\83«9h¦Ó5À4\80\97/»\ 5\99\13à\89\10TÛת%Ç
+S\1e³¢\936¤5à $ {\ 2è\ 2ë\1a\92-\89_\ 1 9p\9a\83-YÖI¸qQ#é¾\15\1fêj\87Òr]xüìmª7\98\ fuÿ#I-\16Ù¸\86tGϰx\150qÁÒÞb\15ëw\12õ®\ 6\12\b&baÜ}S¶|\93@mK j®¡Ý®/yf,¨?\11{\8e\18ÅM\ 6\8eÖ\84S_`\rø®9©-¨XMUÜV\1dµs\93¢\8fP:ô \0\12\14ù7ù^\97|\a¶¼\8cvµÃB\8b23¥ù\85QÔ*ɦ\1c-¥\15\94
+\88© ó\91Pö ÔäT\94\v7\ e\8e¤\9a\f6MzTy^\ eb\90X\e¼¡\8aàFÈ%¢&0\92ÞL\v\1c\99\8a\ 6jâ$Á\9b\b¢\ f\91ó^\ 6©øÈá\87ÕWÀ\92\86\15Õ#ͦÖb\82æ\92\8a\8eä.¡\ e"E×ËAdN\aVT7>îbP\82åÉáµB 8t\9a6\bÞ8BQõ³h¦\ 4<\81\89\1a\ 3kê8\ f\9fãªÛ\13\88Ú\18§#\10Û\7fÝk1$Ô\93\94\95ë1ñ,ÿÅ\93 \80É\10pu\9a-Íç&fÊ\163Ðõ,ÍGÚaɺÝ\b\12ÓË\91L¸ {y\10\83/\aq*Evò\9c >Ô\v8Aù\9f'\93ù%®©ç\95\ 3\9drn;énú¼þ\14L 7«\ f|à}w\83è§ì°\7f(ø¨Ö\ 5\eZÓ\82\rÑÁ\86>ú\87\16lèr'\99\ fiù\99¢\83\re·â¥âËÔKU\1dl¨8ô×ÓmÁ\86Ê\9fâ¥j\1e\ ee=Î\ 1Öÿ\17lh\r7ØP\94·AZàc³ïT·ÞòRÎ~¾ÛÙ\83\97J§P|\175\9e`\925\9e`\92ë7'0:0Iû±<\ eñ\ 4\93\94\r ¾\v\99Tó]Ô\13L²Ö\13LÒ~˶¨\ eLrý°ÑÕ\13LR·\84ø.Üw~¹\97ª\86§`\92k\ 5nMç\82¶÷`C\8fN\9f,ë½é;^ª¿+ýß½T\7f²Òõ#°¡¶\847/ÕÇ\97ûÕà£:Mnu\1f\0\83-°à@E\89¡2\1c¦!µ\8e©\10¥PêAÊâxúýí$\12|\12$\ 5i\83ú3Yé\1cpXY£E\0\ 3æÒ0- hJ C\86æâBk\8d\97ªÜ¡1¾\9a-³A{\1a1\ 1Å24G¬ÐHrÔ\8bë©\87\\aI£Ý1èM\ 4.\1c>·IE1:¤\18~î^j¤9f$\9fÈ=»\11çH\80\ 5#·\85ëa\14ø®]Á÷z\9f\1a\9a')vù\1c\89#¦IÄF@\ 5\87\16\14Z\82wʵ0A[!3\a
+ð`úæ1h¢M!à䢴\93XYUQ#¼7\15
+\80à\9d¬Å½ï\81¯0 ®\14\82\1e¨Ô-¥¡¢ \85~¦ÎÐq^¾s[¿ñÜT?ç\9añÁÓ\80þÔ;\7f~ê\9d{r\9c\80të¯ãù×oO#b{¢Hb\88\8e\88MfÛ\ eå»ëAq»s\13#CØØWIj;ÉVwïT\12v'²\85\82o\87-\81»\rendstream\rendobj\r364 0 obj\r<</Length 24682>>stream\r
+즰\81µçhDñÚ \1a\85l\9d(nWñ\85Áù\ 4Ò>Ü\fZ8IÆ\ 4\1c\11\ e\9c\86vY\903%§èa×\19 \8fÖuÓ¾Ú5s+OR»Ø[3'bDÆ;\83Ïpì\fó\126\eáK@Tg\ 2\80YP\14\12¤}ÆX`Î\93ÜYÜÄK¸\ 22\12úuù5¼o\80/\0&,²\89\11ÍuîÅͨlvîræõ§ oÚ\93Só\99÷Ý¥Ï[O]û\90¾skÝÒ\ 2&¬}\ 1\13Öæ\80 \1f4qSÑM[\ f[[ß\1a½\ 3&d·b\ fðeb\ f´ì\80 [ö)ëú\vo\90?©âÈ\9f6\8aõ8\ 6¸¾áëí\81v\ 3&\9c3ßë\95n;_\88)yÓ\1eh7`Â×:{´\aº\83««í\84««í\84«[¿e\89\1c\\9dýXº];áêd\ 3¨\96(\93ªZbK'\]Ë'\\9dý¾dÑ\1c\Ýú¡£Û=ÉèuK¨\96¸¿óëí\81ö\14®nÀ)\16ô=`£Ó'Ëzoú\9e=ðw¥ÿ»=ð\a+\9d>\ 2LhKx³\a>¾ÜïÝZ· \97Ó\15\ eι\ 5\18ÙÝ\1c\8e¢\95I¡\17õÚç>\18 Ð."öM\8a\ 2V(&E+¤(®\eù\ e\11öxÐaáá~\81we\ fÄA'º'æ\1f-_s ô\90R¡I³;\ 4qb
+X\8d\9a°\8d.â:\82\ 1\eàj\11\80\ 3\17\89Ín)B;IHÅäåÔIä}Â\8b'^\1al\8a9aZ:/ir\99°Y¥0þúý\ 1ö¥÷£ \82\ 5Cò\1d9\92½pîò\83È¡½\1cD\0]O]¿Å&\18ÑüÐ>¦\94\8ae9\91\11õ'½U»\8eAè\1d®¡AR\13\ 2pþpÓ7B&5\vr\r¼\8eÀ;\15³\ e\81|\95ß0÷Ç\954W"\960\ e\12"%9\93'\91EÎ^<\11%\91Ó\94§x\85¡\1deÞ>à\eôJ\18»\vß'³©ª\ 6\v!Ìo\bË=n;õÜËv »w9îL1éÿÎß(¶5\1câð\96¦\10\97b@9\12¼á\17=\8c\aÑ6ë&\ 2RªÍ¿p\8e¢Ô\91@ w'Aí\ 2¬$]÷\18\86®)òsqïÖÂ\8a\19\0$Ô4\7fô³ì\17\9eª\96|±\9bà6VB^»ÜË:\92\rt®ÊAä'½\1cDýô\86àð\10Ýü\9c3\88¹\15\8aTúî\9cÓi\fHÙ
+#â\9b5=&\ 3ßjr\aO\9a\16@ã\9d\81'BEå\94nÒ\85+É) B\14Üp\9e\80¸WÜ~ÉÔ\14u¶\9aX)d×Ñ&ñu\98\98MÒa½\1cD\1d>^ ÷\11ö\91ç<|Ñ\85t\13#·\88\19²þ«áJE\ e\901\95CÞ|§Xxã¹y¸Á\1dñQ·\vé\8f¿óç§Þ¹\8fä³\vi\9cl\rõ\99¼¨¢ôÙÜK\88\8f.v_\&«%\83Úüo.íu\90\16\v?\89ÊÂ\1dqZ\87ã"×\ 2¬]Õ\eMÏ«±ð
+82\rMRb\1dqÉ\ 2íÈ\916\v?\89ÊÂ=\915\D\92jF\r>t¾\8d²¥\bÿÃ\84\f\11L\0
+\9a\fÀÔ7H¹- y\81ëIëÈ?\10\ 3k\97;b¼\84ßÔ±3yÆÁOõ\17\980n+-xM\9a ÿN9úeâ =r~¬J{\94\11/\a\11w®IVyHÚ\13.ã\ 2\17¾\18^\1fÒ\1e\1a/ã\1aÜ\17\9ax\a\8cË\8cݰb\95 Ô\80¥údo\19<\ 1¶\1e>ù\81Áÿ{\10³\84+Q'\92ª\f\14\83\9b\1dê¯ßd\15éÊÉ7Aìþep ìÈ\93\96D9\89*Q\1c\11\ 22\\83\fÝ$J9$CÙ\92\ 1\17\9d8"Ç\9e\87>5z\1a\94k\1aY\13\91\ 3Äëì¹Ï,~\0·ª,Rµg\ 2ÑA \1aÝ1ck\87ݦñ\ 5ò!\86\93Ëþ{\90²\84\93AÒÔ6\14^Ø3õ¸\99z°;z#b´&\1d´#OR¦îI\8b©{bG(\17Æ\10\1c\ 2¨cêö\vc@8F\88¾\89û\18ëÈ\91\96p»ÍÃ\97àX\90YçxðÜCã¶\13z·G^\7fjÚ%\8cÿy\94\ e\9fyßÝJyë)ã«\1fºJn}á\15J5\1fº\8eÚåð
+\1f\9d6\v¯pùx̱³\9c?ö8ýB×Â+äËÔu4\1c^a\ f\1e\ 5C\7fá\rò'aùs\8db8¼Âõ\r_î:BvÕ\83ë¨Ç\7fúÔXn;_5Þ
+\9fwöóÝÎ\1e\G:\85âP\98Üýp(´|"Öß²D\ e±Î~,7Àu"ÖÉ\ 60\87Bw\88um\9c\88u\93¹\9c=\r\87Xg?dcØ\ f\eÝ8\11ëtK\88CÁ}ç\97»\8eZ~
+V·VàÖt.hx\ 2Pøz§O\96õÞô\1d×Ñß\95þﮣ?Xé2^\81%|º\84\8f®£O,÷»®£Z\ 1\1fîC¡ç>¨É\80³\8dØJ·Ò\8b°Ý\81TßJ1M8"Y\98\ e\93\ 2\f\vÁeNÄjn\È \9fÁ.<©,½Ô\11»\84·á\ 5\12±\87Lb\18Ë\18Eê5:\12\9e\1c\938<±Õ©\1aËm\10´\998çjn\91©\eUE¸îR.\eDŸ\87W\ 3¾\8c\17\12\8bÔZ$¶4Ë\83·\8ahR¹\88C)\8ai=¶\8aT\87¨\ 5+®vá%ÕÊ\b\18i\8e¯jí
+ßn\98Ë\8báou\92\1a\82\ 1«\ 5^W\96w\ 3Q\13\99é\93èh\17-§\16xÖÈ\87\ 6©\11C\8dÐi\89 \bx4Ù¤\u2|\8c£i©OÜ?οZm\92H½I¿ù©ZIlµ+¨×¨8â¥rñQÅ=¨\86=wAÕ5\9cF\8f¦@_µàÉ\1dÕ9~\8c\ 2a½ISï#\1aâ\1cîAd\ eÁËAl,ÆÀ7HJ\r\12Ô§Æ*#)v1+Éó\18/M}*'\ 4àâ\ 2Jb·\85dãëu\9bï|\17L¦¢f¯vmîÒnõù\ 6\17°u ÝçK\ 3¢\9dç£=ý\bÅ\8aÒ1 §õ\15Ð=õÆ\86\80KG\ 2\9c@ \92öIÔ\92\87\9eHØÈ¹çð
+ÉD\87ß\10\7fµ6\f\ 3\0ÆÓ\905lHtá}0°É\90\9c\8c\ f+\91\9e\97u¨ï\87ß\1cn\98\eÁ¨\84\10É\17Ê
+\8aV"\ e\ 1oy5xºs¢ûHêpI\8d7Å Z\8d\8cÊ\0pð\18\85\10@\18<\0i<é\92\vè_ß<\11¼¥\<\8d\9b\bÛûúG6-\8f\ f¯Â±Ï0\90z\99ÉÑ\89v.ã\rV\17e\1ae\9c\85 \0ûCü§Ü\19
+\9c£$9\8cAQr¬\1dÂ\8c\ 56?c;\8ex\90P³\85Àî'\91)S/\a±J¤1^¡á#{\82o\vñÿÍ\97h½¼\9e/\81PU\8a\9e7\9e\9b;¸<\8beýÜ;\7f~ê\9doçKø\83®a¯ÿrKj\1e\8e\11!6È*y\17\1e\81Ù\ 4\89£9ÝIêF\80»@jY©Ék4ð´Ëqª\9cÆIR\8e\ 66w=ò¾\97\83\18$\96\8a¯\10\16<\87ÞàS\9e\82\9d¬\87Î\89ùvnIȹ1Ô\7f$î\89\9a\17JSºsù´¸|CYb«\11%í\0î,Ø\1cð\11#\80\0|$\fÃP\8a\91U%ÛÂngÕ(H\83ù¤ÆZ\0¸\89\9c\1aBÉ\\11ÈU\94Wæ*E&àOÃ%Æ\94I:\95L\91|\90¡eËй£¤ÞÅn\97¦\9a049 Ím b?«\90FöÙ/\99"A\r\ 1M*E\80Èâ\r"ͳ谨ÿ¾ \91K\84°\85Öï\aºÕ\83\ 6b$l\88j^óÝ®,u\86\95xÊArjÏ&ÎYÍE×^.\9d&Cox\19^P\ 6£§')¦ª2®\8b@C½Å>g\82L0(nÄ\8dï¬\a,ê%"nµë>½\8e°Í\8ed" r*>
+¯\17OÌ\9aWØ:b\ 6\93&÷0-nª\1e\92.(\99,\85ègÜJU2y
+P\/n\1c]ê}.oç×R&<§nÂ\94ENif¤\1115\93áª\17±àº\93ZîªçÊ\10¨ß¢\11ƪ\80\16¬-\8cͲ\85MBè\97'©P\92\9dö ¾^\ eb\91Òà|\85`îâFBF\97,\11\ fL¾2}\ 3CÖ«R\ 4Ê]<.Er)EÃx\90\ fF\12%\86\ ew×\ e3Ò¦I¢\96'©TÒÃ}ʯ\97\83\bÿs\13¥3\\92ÙÒîR³\99Ôü¿e\8åð\9eqa\16ÒëOÁ\ 6«\9fɸxò¾»EöÖS\9fʸ\90ÐZºÉz\p¯Ó²Ún²ÓAµ<WæÄ
+Û\89µ\1d]\ eî\95Ý\8a\9b\8c/\137Y/\ eîµW\8f*¢¿ø\86ºà^åÏ5\8aâà^×7|½\9blÜà^§Ý?ÅN¸5û>\ fØÛp¯«³\9fïvöà&Ó)\14çI\ f'\bh\ f'\bèú-Kä@@í\87¹<vObÍË\ 6Pç\89Lª:Oz9A@{=A@í·l\8bê@@×\ f\e]9A@uK\88óÄ}ç\97»Éæ\ e}ê<±\15¸5Å\82¾\a÷ztúdYïMßq\93ý]éÿî&û\93\95.\1f\81{µ%¼¹É>¾Üï¹É:r,Z=Ýd\1d\bq!eGì@Á\13\ f\bìn\80@v\82\9ae\ 5êê5C*ö©²æ\104C¿\94)P;²o$8\19°\8dSµ=HS \ 6¦0{"×wÿFL\11\928Ø»\94d˸&\f2\8aT²j_a0X\1d£½¤\84-`A BvBáYM\rÊ«\8epóU{Sµ¯\8e8ït4»¦\16X\8ab\8cL\95{J\f\96#¸\14î\83À\14óÉ«\99·*«£¯_Ã\94jDvÁqãH¸\b\1etM\1cD|ºû\9d\ 4 \ f½W\9dm\ 4,\84ÈQXü9\0\1dcå(V56\0|áÂ\1f\9f$E:örÞ\97Ý\1c$î¿\fÉcî\88©\1dq¬\9bØ¡n\86lYã\93Î9\16P@¨\84P6±\14\80Ä\10\r\10viB³"\8eFñ_\84©^8\92\9b\15OĬ¸ß(èVä9-¤\vc\ f&\12\a1ÌÉW\18þDZv\v@BA\17|\90â\9c\9aïÒm\87íãìP\83W\91_mWÌß4{c¾nÇ\1ddµKfâÆáÑn¶\18"\97\ 48ß\1c«À \v\ f¤}\12\1c\91\1f¾\7f#f\10n!v\1e«NkËS s\10Á<rÓ\0à\18v\91Û&å\ 4ñE=g¿\92÷\15ÿZOL\17£eýW/Ѷ÷\13OL\86W\ 4!ä¯?7í\9aØßöÄ|à\9d??õη=1\1d\90\ 5WUÃdÀD\9f§\86\85W.E\13e&\17\16é\1aÕ«Í\9e\r-#\10»X+i¯vD)4\7f0ë\97t\14¨fY\14&\9bTÙwVÕRÌ0,,ø¦±Ò$\95-\1c\89\81aþ·nÄ\97\83\98\ 4\\92½K\84\ 2¯3:\aÑjP\84L\9e]\8c?\9beË;\94$\1c¸ääxÏ\86\96\15Ï)\124\87Õ\ ex·½jLïäö`~y\1e´®yzñâ-MGZ[Ö±1Ô\ elÓ8)rj\bqØ\1c³ýõíø-ã\7fñDä\f\85\ 19P\fª\12g©ôúÏ\93U7ûÝs\13uìüK>ÔõZF\89\90µ]¡D\9bØÊ`j*p bÃ%,\fUi\92\ 2\ 6\10Ò¹³>·!p×ÐÇAâ·ùßëÛ6\11Î] `\834d[\ 2_ ÷[\1c\85¶Bôm$?\99£m\922\89\93ÒÛ \1cÐ\blÃ,q˺±MÀ\8ab±4Hm\87°\9eËx\11rÉÀ×v\90JÇ-\1c\1eÕ|:\8e\8eÛªó¤G',Lx\93t]Ã#k}9\88\97È/\90B\f:³Tr0\8aKÃÅÇ\8fP¢i\ 6©'õü±ê.¾)Õ«úõ¼¯û\17ú
+®Gî´u¤'¾\ 2U\13_\7fj*¢ð\f¿î+øÀûîjé[O}ÊW\90 Q\91Wúï·\94õÏ\97o ¸[RÌsþÆ¿yø»\98éú\vÎ\þ ¿î\8bþ \17\13\1eÛÏÃèeÇbËóuâ\8f\98ë¼Íý$Q1ö8\7fÑ_Ì?ñ¶\17ûÓ\86a\8fs\84ö\15¯
+Õ\14?hb>\18ø)©\1fb¯ù\14õ\1d\95i\1f\9aIÄá\14\8fùm\97Áêñç{=Ê'íeÔyL4$S^°\90¤¤$wøUBû-³(?t\1eí\87Úr»§\84\eÚ\7ft\1fD\1au:³\91F]ê\ 6\v©-{9{²ß²rÅ\ 6ð²~¬Ñ\9etôm}Ú/ÿ\9d¯\e\92£ÿ\91!\99\92ä)±÷'kúØÔÖô=¯ÁÑï\93\95½7\95)|Õkðw±ÿ»×à\ f\17;~Äq`}\ 3cì\ fWüU¨\86\84Û¤L\1d\ 6\80\7f\91P\r þ\f\ 1í6bÂ]ifp\ 1j\90§Z\ e\12T
+V<ßÄ\ 4\17\ 6®\9a_H\84\8e Ò\95X\88m\1aù¢ö\90È¢4 åìàÝ'I_1Í@Ù7Fúý-Ms\9auúv3\0|Ò"LÀÅ\ fó¥\9et\ 1\aªñÉM\ 4È×T±¦\81\8b,y\8e·\v0~*AK±§@\9c¬\8bßU§ÀÀåd\82Î\8aÛ¶\17\12Å\1e\ 3±\ 6\16\8eK(kÉØ\ f\10;â\96g\93EBÖË\1c<æýbA\80Eúå\16c\11g\7f¸t Á·L\0Oe)l\8cpÌ)=HMòäf\7f\8b¸Vèå ÚJ\ 2ÓLÐé÷zßöÅë\ 2/\\9f©¬\ 1÷ÁwÀÂãÖjÝ@$ܧÊ\aØg\1eÇè;·ú\eÏM\r0TqaÝ«k|ø\9d??õÎ=9NtºE\fÒé¿ßür\87µ²¸\85 U¸\88Ø<\82_À\95ED\10H!\919b;\8eѸS\904\ 5W¿\10³lGµÍ¸\aZg\f:vs¼\9a\12y\v\8f\ 3dÇ ÎO\ 3ßt$w\6\91i\96\95gCJ9à¤ÝÎhZgt\12¥æ\90k\87"\99ÁH\ 3Yþ`\ 2¬ Ës+Án<TYNdþ\911¹/\8eèw²#NÍ\1d§\0Ó'×XÄ\8a|ØÈJ\9aëñ\87lwk\85H\1d]QíÊQ6w[ÄuÊ^\ eâd!¨hËþ\e×l¯ìm[¼¡A~Hã\90²\0ØÚ\10\94ç\ e]\9cn}â](½ö\14,\89\0Ï×í,}æ}w9õÆSkNÞ\auÈW03"\87°Ì\88¡(mÔÑ\1fÔ÷¾u\87¾5\87Ã\f\18\ e#\8eÝ\8a\11Á\97\89\11\91/\87Ò\96åÎP\9f\96_Ô\88ø§èCú§\8eb=\8e\ 1®oøz#¢×G#¢FXÿýÖì;î8Þ¶\1f¬³\9fïvö`?è\14ªJ9®S¥\1cáTÚô·¨\94òCUJûa\8aàêI\14\1cÝ\0¢Rê¤\8aJ\99¯r¨\94ù\1aGOë7\17M~ÈÆ°\1f6ºÝ\93\8c^·\84¨\94î;¿Þ~èý\99J¹VàÖ\14\vú^)\82£Ó'Ëzoú\8eñðw¥¿Àxø\83\95î\1f)E`\1d?Z\ e\9fXîW-\87\fô\1e\89^\82\12Ô["GnVÐÛ\88\19
+EbØU»ÄgëIUà\7f\7f\7fóÄ9\92©WÏvpZ\12L¾!\94u\12ª\15\b\ 4\902\90\ 3æÊ°Þ\13\99÷\98DÄÿ̵MRzlÒ\8a¸è3о¥~ôÀt\9c\14$\1dr\14\8bF»\ 4\ eÂÌ\98ÅÚDKI\88Êͬ,Y\1cå7\87ÑDæ¯fØ\83\97\98*QP¤s¼,Aat\ 3T\ 6Q\v\8b\rx\8d¯¹k#¢ny±3* ms\\ 5\99\85\80\19ëV\19LÛ\84ºúé¢=n\12\87 wY\9e\98äÒ\11¤+\8b\12\93%\0\8ck\19\84tAñLúÎùʨ&\14\ËØ\b\ 2\1fOý\a7»\1c=sª!ØÅ\91\9eq\9dÀ|\ 5ØE´\111?Rï\81ú7\1c½\98ÙQBr$Y\94ZòÙ®KÙG¾¡\ 3²5#*õÊ2\f:³ç\93p÷\13\95\98ª."Às¶\12éøÒiX]\8e\84\8d0Õo\1eø\83H\0ä\97\838wEî(¸\1dd\17@Cà·ÇxÇ j\ 2\91\9b¡êeÜ\96'Æ\9eΫ¡ó\18rh!?\10\11+Ψ8#æ<çNªt\ 1Æ\13ûÈQ*À¤¹8\8e¨ÛØu¶\ eä~©\91~=;ͯ²¹ÏÙ{sÏâ\ 6OË],Ý/ã\1a\9bc]kzp¾ïdPo<7í½\16$Kùfï}ü\9d??õÎ=9NÕqÓ9d¹&\1fÄÉ/¢m\8eµ°,GÈ«<¸\ 2+\99æ4$~sî¨ þ\ f¬\99m2\8dÐô$Ý\8c¿¾\9dDnÛ\17GÄÙ¦y\84\1d\9aYíu\9a_óÓÊÜ\16óR·\8eÇØ\8e\19>\93&
+\vÆ`(`\87%\99!óxBÃz\94ÙF¥øv¨¥G'\12z+©\ 2èÙ2EpDs\1cÂ\17¢Vé£\81\8a»'lFÉ;Â\80É!ÀwÈ\82Ä\16\1d¬\aG\ 68²Ú\8f£\ fi·Y\e*Âx\8aã\80\9b8\97\ f\19å\19U\0¥Zàè\8f\1c·+Ç\ 5*\81À\8eZ\9by¼.FR@\84\94«ó#³`\1c¢H-z\14æ'!\ 5d:0\83±Ez\10Sÿº\89\95k\89\15H\1fBæ»fuÉ(TnÍ\97#yQ¶iUBy±\9c\1aK<pE\98' \85\99\ 3?\eì+ÊÎÂÄ
+
+\ 1ø\rpq^(Û§\15ÓD@w¤ÂP\1e«ÌF(íu\1d$'Û7\11µ]ð\11x\85à\9e·¬\8cÉñ ¼\18\93;^Ù\18\13vtK½ø\87Áéõ\8c"º\e+áH\8eGnb\17\8c\17ßÛ0\86{;Ô_b\931±\ 2èÁ_\9cê£\9fs×\ 2_\7f
+Úàõ\84\13~æ}wÝð\8d§Ö\19\7fßZ§`Tk½^fçÒ¶µþ`'\9b\ 1¶´ªê\ fö¶Cpd·b\8b\14¦µ~E\87¡(n\1c{Z\9d:x\83ùþø@u£X\8fó²Ñ¾áËõ\ÂÍZÇ}uJ·fßa\1e¼i¯Î~¾ÛÙ£µ.S(6\.ý°ár¹N+I\7f«»ãÚ6Üúa\96×êI-3Ù\0bÃé¤\8a\rw\85qØpWÌGOë·,ZÞ6\9cý¨;Öõ°átK¨\r·¿óËõ\ÒS\eÎVàÖt.hy\ f\92ýèôɲÞ\9b¾gÿ]éÿlÿÉJ_\1f\81d·\8eoÖúÇ\97ûuk\9dU\81\98 \f\156\13#'£\1c\9cD´\191ÃpÈBB¬ä\94\8a\99\85\92hfBÈ\a±\ 3ë°\886(\ 3\1d:e\1d\ 6¯\87´ªÐ\ eÊ4\92
+³Ð<ñ\92r=\99¹T\8ckì\8aïÃqHD§\91æ£S²\17©C¹ÛAÉ\18ÚnÎë´¾æ(5\e}ªÙ!\17Èn\10\87\80\1cu\16\f¦®Ü\80wD\ 5z\12çGPÍ\81«Ap«û4\8eQy>ÏÑkØh\8fR \9aó9\98\96i¤9¾ù>Å0Üíª\85´ö$ùõÓTÖ¤Iô\ f÷\0\9e\846DÅ\f\ 5l¨\82ônÉL0"K}$19ê×7O\9c\9f[\99«y\12\a®KóFÂÁäaa{\93bï\93Òdl\18 .:Åúl\ 2@\80o\15Y\8a.P(+Ï\91\97¸p#a Qo9\17Q¦¸Ò*ß\ fï"@#H\81,OÊ\92ý\88ÕÞÄKöGf\9aÙ(ÌÔäêuó\90à\16\vc\98v\0"\92Ä ÓÅîj\166{\10\93sátn%\8c¦\8b¢}á
+ÌQæ\91\94jE\8e6÷I\86\8beõ\ 4£²òsÖ\v\8d4\876Pi;fG\9c£@r\17ÓâöÃCs\93è:IPî\17\857x\8c¿s´"\b¨\19`SLHÅø#²UÑ;\92\it$\14_Æ0\82íQ`iÍ\93Èa¬Ú¡\80fCp\ 2\86«úù\9cï\8cûð<\97!\an\84ùWé¢Ú\ f\14×äÍ\ f\ 1RçöÃØ\86à£O\93\82\1a½'\15ð\ 6n\98\83HSåå Âl½øaYÎ3N6Ü\80x½$\ f7-õ\80\81 ´;7\bjPF\98;½\enÆâow>øU÷Ú\80\r\ 3Ô?³]\97Ö\8c\9a±ò=k\85\ f\99ñ\9d¬ý\8dç¦1\a\87Ä$øçÞùóSïÜ\93ã\94Äa®4,ôè\95\12dÄePb\90doS«\89¬\1c<\10×\7fU2\1aeæðÆÂ\80Æê\17\85ÎÅ~\9d¼2êy\bb\ 2Ì}ÍÒ§ éN¯âcp\14w\1e\16mî\9fy\9eÿaÿ¬ÒGsE\8eÖ>\82a\9dKwXÃ:\97¨m*öúz¸%;øSàe¸§7ű\87E\9b²
+ù+®+\18ðÂi6CR\12X\97Ö¶ÜD\11F\1ax\8d\99\8b\ 4ì\ 3ãë\ 2Ë\ 2¸/\ 4¨\80´\19(CÂOÒâ©\9b\b\9c\8d\84v@\1c\14/R0ö¾8¹\91\84µ*Ï7â\v%^8\89\lA\95í\0«Q¹U\ 4º¢\13ÜE\84å\10\10\18\114\1d\1eçÙ\87I¹\9c\93\1c$\95nÂÃ\1eäàËAÌS®uy8Èî\84ð\85ë\rC\19©ªÜN\88¶ÿÍ©ï\92\88\ 4Í\85CéÕ|ë\9c\9fSä\eé·\b=½ø¶vÀ#\17 \9fÙÛ¨Ð\8fQoN\15\8dL¼¡_"Þ\ 4\83\b4Éø\17\99G\18\0 ª¤hòK\ 2\92¨1EøÜ\ 1x µ}1ªG\8déÚ\1aS²\12«»]\úW\96\94\16OÚz\9a#\ 6,ß`;ÍFâÇò\ 4HõÜù\9b\10"\99Î\97¤\9e\9e\ 60Rîá\-\ 2ã\91\v+IWAJö®vs\ 1\15å\ 6\95ló\10±$!ë\bËÈEd\10î\89\86.B\88ðL\ 1Ou\89\91)ÌËARqóëÛI¤`z9\88\b\1d\aWÃͪ,>.\99¨ÇÝ\19⫱á\9f\8aè\0SOã\817;µÙfçn{¼þÔw&ÊÜ¥ÈgÞw·HÞxjñÍ\ fø\88p\1cÅG\84\842õ\11])n\1fÑ£w¦n\13±n\ 3ñðò$\aÕÈnÕGT\17\9aãÕ\1cXâ<\8aþiþ\12\1f\11þT\1f\91üi£°Ç9@û\86¯ð\11ýàÒx§Í\15Õ³åÖ\9cé\15õÖìû\1cÆVÇ\e=þ|·Ç\ao\91N¦ø\10®\94\ e\1fÂ\15ûi¥ëou·õíCX?Úr\b\1c>\ 4Ý
+êC¨ë\aÖ-\9f>\84ÖÎ\9eì7ß)?t\8bè\8f5ºÕ\93\8e¾®Oûå¿ó+¼Eº\ 4ÙÏm}êH°e¸5ÅÒ>©ÚñNÏO\16øÞô\1d¿Ñß5ÿ#¿Ñ׬yx¥~Ç+]ßÜG\1f_õ÷ò˯²®¿\81\9b\ 4è¹\1d
+®O\98qeÄë\1a¦Æ æ\83Âß\91Px\9aÅÄ<\11we\116À5eR\14\9c\1eOÌR\bx\13¯¼îç ÝQõs¤K"E~\7fóD\8bk\aøZd`ÉT:X\95\10\85 \ 3\81 ¢f\82\13\92Ø¢z>X\84ã\85c\96pÚ\81«\13¨\9eW\81\82´\82\11\80<W t\88\1c´j\12\80Ϫz»!¤96Üd\84Z\8fv¸\86\v\1a~.\95Ì\1d©I ·9¸E\84\9eÍûÕ9\92\1aìÎÏ\13\93`xm"jD\ e©E\b³\83øb\8e\ 4´£\b%Ð\13\93¦\9dïÞÖJì·\1aé\18\9f[FGÔ]p\12m·`^RÌ~OÝ÷\9e%¹»md\1fø¯'\ eØSµrñ\8ai°n~î\8f\7fQì\ 3½kß\ 1d\ 4\9dz\9fÞZuVת\1f¬à;Ïë\eÏM³vtyðæ\13øø;\7f~ê\9d{Ú\9feLû\8d×Ö\12\94¶¶h[³½\88k3\9fÄ®IÐ¥j(\19\ eÕí\b\85}\84\92Ý£ïv¸¦\8f\1aEÏÜj\90rÈê ¨\93\95ð|#\v\97)B\18ß\95\8br\1aÖ\97\13"\8c !\16¡á&\e\ eFÜ#/®\12\89\14áH\8eûl"BÒÈ}ægÐQ\85ø\1eae\8bå\19é\17ùªm˸\ fP|d£'qZ6\80\87ç¬$\1a\88ô?<\1c %aöª@¡ùvkÕvoíñØþ:Vw\8fÏí\ 3GDàEò-ÁE\8c±À
+%\ 3JÏ\18Ð&"\80\vbÆõÖ\8c\9dÝv\9f\15_¸\80¹®·\ 1nc® \eCÜ%Ç,ºÝz\7füuÞð #\8f§\14;Í\1d¶C¤ÙjÜu\84×\9fúîÎöï?|ß]oxã©uâ>\94\0\rZvÞHËÎëÅÙy§\85e¦\97ZaªÐ=Xj\ ek\8cÝ\8a\9dÇ\97\89\9dW²Cû*\97Ï\1e\96_TTù§¨©ú§\8eb=\8e\ 1®oøòX\80«õ\9b\89\87tö\12nÍæ:\8f·1õWg?ßíìѺ\93)TM¿×SÓïéÔ¥õ·\1aÊÉiúöÃôóÕ\93êï²\ 1DÓ×I\15M¿ävhúå\8aGOë·,ZÜ\9a¾ý°Ñí\9edôº%TÓßßùå±\0W\ fO\95|[\81[Ó¹ ý=Lý£Ó'Ëzoú\9eM÷w¥ÿs,À\9f¬tû\b¦¾u|3æ>¾Ü¯Æ\ 2\14D\öpÆ\ 2\14ÜadAYPâ40\7fÔl\ eY¹ÅÅí\9c@kÃýz1\16àâÍ£¸\81\9bB{L\92à\117\0íâ]\8b\ 2§x×Ç\94\92õyĶ\16f\14ãÖ\1a\05\18\83Ön6Òï9Ö,Pܾ\1d®\ 4£>Ê+©\82\9bQUä®\1f,m\ 5\92^\1cRÅ\80ØÇ\87×^ÕÄa°i\81i'i\84v\8f\8f9ãµ\92¿ï/¨=/\17¢»]ÕÈw^äC|8JAñ,Ø-'qTÖ¨òDÔ¢NóY@I\13Ù\17w)Ø*\18\88d`.\12&dU°[í\10a+ f\93D-\ e_jÓ«\ 1%TÍÓ\14O÷Ô~0G\9dÑ \85^8·]
+Ñ)E\96@ïGV+\5Ví<ò}qjlQ\87\90\99G\rZ¼º\8e4ÓÝ\8ee¯\12s\82\80\80\84\1d7xÇö\ f]ëôÊsçIê\a̹\16äh\ f-O(±Ã\8c¨\ 6±ç¦>h& p\17\85ê/äñQ\8d(Òî\8e¾\0ü(\1eíæ²$\ 4\1c\1fÏ\ 2L§\15\v\ 2¨s{{\12ò"xÛæ\89\17¯\ 5Ù\17ïß$ 6áÉõN#ýâ\82J\89ñE|!1Ie¶ù\89ippL\9c¤ç\e1à8\90Ø!«UA¥\81\ 2P\10[\8cô\9b»Í.eW;\9b9\847ófµ\0{O\8a¤\r&\8dèg1l\837\8b\ 5\152\v0\ 6 É=\90n\\1d\81Ö\11\8bw\1d´\10Kää.\9aÌë\15xïØPþ¯\ e¾¿´¡¦\r+£aèÃ*ÙÑ\99\17yÈ´¢Üâ^w.÷Õ7ý@\ 1XZ1Êì\8ec?\1dòà;Ùö«OÅTkzï\96ÿ\9d÷ýüÄû\9eÝð\97\14\ 5íNâ;`\99O¹\80\92¢\12\ e5Ô\8c\0W\9a\a\9cq í¾ÃÚÞas/´~´Cj\8e\14\86@\12\16\ e\ e\9d\0]\93\98\b(þ\8b<¹X$\8bn~wL\1c\11%ÄzuÄÂ$\8bb7ð\88´÷$w67\11¼fÈ^ÏÇ\9d¿ç\a+`Às\8e\150\0~¨ \ 5ëáÉêZ\8f\9a\904BêB"Ê;G\ 2°{ô7\ 5"±\ 1\18CQä\\87UR\ 55x\10\r\80\87ÅS\87+È\8a\92ÓEb\97¢\90\ 2`\fÑ_²\12"¸>Eî\9b\8do(q\1e\170úlR\ e÷ä'£WÊo\8aÌ+\19s\96VÅJU\ eÅõ\87\18Q·\1azo\913\fÁ\9aeùa0FÊU½¼\1dñ&Î\8c\84\8dSdoúv}ÉÆ!ù\15\9e¤2ô×·\93Hiûr\10\93\88 ¾B²=ìÞÞ\89ø}¿\8f!k\1d\9bÕ\ eh¸âï\86*#2\13÷ò<\11ðfôVt\9fDõSL.5UL]\87\1a\9bê\a\rî ¬W/æ!ºi=yk=a%\9a)\11¢NU¨¤¾\98MYjÖØªØdé\95m®\9côÛ#\9cº\85 ,U9ï\14³²1\11.c)\15\94\ 2XÓ¦×ûùÎg×]>¦·ds?i»n\80{\b^\98ê\1eøMR\98\99É\fö±ÌI\83,\b.VÒµD\84Ä!8\8a
+\12\b\97ëAà¼x\1aB\10z\15VPD\8bH\90Äí\9f'\ïK¯ñ\ föëôâû%¾ªö¯=\ 3Ó¡¾}\85ÿλîfÄ«Ï|âú\9e\ 1¹âÖ)eáº\15\80\87\98[çÁ¡b\9e\16uº\98Mw:fÆvë°[uë\8c\85êV\83Cu«ÁÃ9È/ÚªüS,UýSG±\1eç\0í\e¾ÜS®\eª[#\ eé½Ù÷+\97·\ 1ÝVg?ßíìÁ£S(Æ~)'Æ×d
+§9}9\8c/ýa\9e±\13ãk÷¤&|q\18_:©bì×pb|Õpb|ß²h\ eãË~ØèvO:úá0¾Üw~¹[gîÐgÆþZ\81[S,è{hnG§O\96õÞô\1d·Îß\95þïn\9d?Yéü\11(7ëøÑó\89å~ï\8e¾ \84p¨\86¯\10ð¥øn#NKê\87Éñ\0óvJÖ)ø\83Fîu`\9dMq\£\15²\838\ 6
+l©ÁJ\85 /!ææIÐô.\9aZ'\11*ÔËA«³ã\8ag#R3\15]\81ñt\ 5\be\81¸XðE4æ%\94º±\ 2\82Ärò«jÒ0gÑ\15ZS´áE\9a\8f2\90¼øfðþt\89\12\8bRR¦ \10 gCq\1a\84±*Ô5e$Mnû\v\f\MD\9e\82w@ûs¤Ë0\1d<\11w^¥è+ÌV\9f²gj2\88DTõWIx«& ûv¨CO?\r.¬\90\8bR Ê\8a\ 1\b¤½@\846\12©\9f\91X\19±\0¢Dä\82XE<Oõ\90ú\19F7\8795l$\ 3\95¬.\a"úb6çl\ fG\9a£ÃîP\88²ÕnZDÁ¼\1aáBgYõDô\1f.ù.Äå\13Î\83@\80ó«±\82Z\ 1\89> ì\87¦\10ü
+\90QyÖÛª·\8eôf\94\7f(ØÅ%ÕYØ\bJ5ñMúÍ\ fUXýÕnÎo\96@ÓÑ¥Ø\13\96fÚ6\8a\17Â*h²\84\12Ý
+¬\aÔ3*c\95\90\9a;\83ØÏ\9eT¤\9a\10ø¡'\9a\15â\88\88\ e\81 \83M¢ç\12 @Eöa\12ðyÔs\9cçDw\ 4\95r0Ê\1f´¸:@7Fõ'úvð->¢ìL\1as\ f\82'à\8eúÊ\8e\88if\11,\92æÑ\18\\ e5â\90L\91Ä\ 1\ 4ß\81X¢¸¶\0¤\vHÄm\96Ðí4WÙ\93\8a\1c\8b_ßN"}G/\a\11©\eá\92¡hàr\94¸x|\85\ 6\r\e C\19V\92jµÃ\1fêù\ 4H8\ f÷&\15u\ 5\1f¤\9e\b\96ç\89\1d0䨢Ã*ØïiºMç\17y\96^©;XÆÂM0\ ev\b¥ï\94\1do<\17SKϪH}î\9d??õν\r\9fÅ\8b\80ñ5õ\18^\ 2h1·$\ 2÷õZ~òÖ+È>\97¸\rBã<\1eó¶\8e9aç\16\84\8e´\83Ø \9aét\r0\8dÚ5¢\8a\99\13à\89\10TækÅ£Ì&(LyÌ\8aNÚ\90Ö\80\83\90\18öDÐ\ 5Ö5$[\12\98\eøRà4\a[Ò¬\13ÜH<rÑksÑ¡>ÔÝ®kùOémª7\98\ fqÿ3I-\16Ù¸\86tGϰx\150qÁÒÞb\15ë\17^\ 2ÞÕP\ 2ÁD,\8c»oÊ\96\1f$Ð"\81ßTu\r¹v}É3cAý\89ØsÄ"n2p´FN\r\89Yq¦pEØ\82\8aÕTÅm5\87Û\15èb\88tèA\0$(òoò=,ùÞ\92\8dvµÃB× H#\17FQ«$\9br´\94VP* ¦\82ÎGBÙ\83R\93SQ.Ü8x\92h2Ø4éQåyñÄ®±6xC\15Á\8d[:DM`$½\99\1682\15\rTZN\827q\89>DÎ{\19¤â#\87ÏV_¡\10aÈ¢z¤Y\1fë\bv©ØêHî\12ê Rt½\1cDæt`Eeãó.\ 6%X\9e\1c^+\94\80C§i\83à\8d#\14U?\8bfJ0t\84\1a\ 3kê8\ f\9fK÷Ü\9eÀ\1eäîe7Ãö_÷Z\f õ$eåzL<Ë\7f9HPzÀ\10°(ÙÒ|\1eÅ\8c\91d\8båai>Ò\ eKÖíF\90\98^\9e¤ÂMØË\83\18|9\88¨7Y;y\8e\96\ 6Fòn\83\83ì>\99_â\9az^9Ð)ç¶\93î¦ÏëOM\13èz³úÀ\aÞw7\88Þxj\1dö\ f\ 5\1fÕº`CkZ°¡5:ØÐGÿÐ\82\r]î$õ!m?St°¡ìV¼Tµ.ØÐZ\1dl¨8ô×ÓmÁ\86òOõR5\ f\87²\1eç\0ëÿ\v6´\86\el(ÊÛ -ð±Ù÷\v\12é-/Õêìç»\9d=x©t
+ÅwQã &Yã &i¿e\ 2£\ 3\93\?Ìã\10O0IÝ\0â»ÐIUßE=Á$k=Á$×o¾³:0Iû±FWO0IÝ\12â»pßùå^ª\1a\9e\82I®\15¸5Å\82¾\a\eztúdYïMßñRý]éÿî¥ú\93\95\ e\1f\81\rµ\8eo^ª\8f/÷«ÁG5_ê>\80)\e\ 2\v\ eT\94\18*ÃѪÕ:¦B4uÉz\90\9a8\9e~\7f;\89\ 4\9f\ 4IAÚ\98(]àV\v+kt\b`À\\1a\10¥z%2T\1124\17÷\9az\ 6ÀÃÄ\95Ñ\18_Í\96Ù =\8d\98hg4G¬©h\0:S¸\vX¶#i´;\ 6½\89S®W|n\93\8abtH1üܽÔHsÌH>á=û"Î\91\0\vfH\ 4¼=\.\ræ\964\95©¡y\92b\97Ï\918b\9dDl\ 4TphA¡%x§\\vP¢Bf\ e\91@\15\15³\9bdäL\13\ 2u\930S]Ì\ 5\ 1a\80÷¦B\ 1\10¼\93µ¸÷=ð\15\ 6´Õ\95BÐ\ 3\95º¥4°@§|¦ÍÐq^¾s[¿ñÜ4 \91®>\ 4¡üOßùóSïÜ\93ã\ 4ä^ÿ ãù÷Ø\9ecm
+\16I\fÑ\11±ÉlÛ±êÅAq»s\13\vCØØWIj;ÉVwïT\12v'²\85\82o\87-\ 1·nSØÀÚs4"ípÐtëDq»\8a/\fÎ'\90öáfÐÂI2&à\88sÄÈ\1e©H»àç3§èq×) \8fV»ißí\9aº\95Aj\17{kæD\9cÖA¸\18|\86c§\98\97\88\9b¸\b_\ 2¢\ 5n!\98©Î©*É\9d1\16\98ó$w\167±\vW@FB¿.¿\86÷\rð\ 5À\84E6q\1a\8f{q1ª5;w9óúS\907ùÉ©ùÌûîÒç\8d§Ö\9c¼\7fkÝÒ\ 2&¬}\ 1\13Öæ\80 \1f4qSÑU[WeàA£wÀ\84ìVì\81\96\160aË\ e\98°e\9f².¿¨äðOQqôO\1dÅz\1c\ 3\ßðõö@»\ 1\13Î\99ïõJ·fßé~}Ó\1eh7`Â×:{´\aº\83««í\84«\9b&ò©\875\aW§?̤:áêvOªûu\aW§\93*ZbK'\]Ë'\Ýú-\8bæàêì\87\8dn÷$£×-¡Zâþί·\aÚS¸ºµ\ 2·¦sAÛ{À\84G§O\96õÞô={àïJÿw{à\ fVº~\ 4\98Ð:¾Ù\ 3\1f_î÷n[ÐËé
+\açÜ\ 2\8cìn\8eVG±Ê¤ð÷Ö>÷\ 1pW¸M\10Q¦R\14z\9a\14û\84¯\18¢¸:ä»É=ñ £\0Ó\8cwe\ fÄA'º'â\ 2ú\9a\ 3¡\87T\90è\80×Ü\a\a\92\15\91i\8eÑE\çÿ
+À\15¼¤#\12\80\ 3÷ÉÍn)Bó$\16\1c\88¼\9c:\89¼Ox9\88M\82M1'LKç%M.S\186«\14Æ_¿¿5V¶êG\13\b\93\90|G\9e¤/\9c»ü rh/\8e\88O\98ã\19óá&\18ÑüÐ>¦`\8aÅ\9cÈ\98\8f"½Õu\1d\83zî\90_@!\10\13bàÞ¸\f\92è\89\96 ×Àë\b¼Óp\15\a2íñ\rs\7f\Is%b ã M\13æâL\9eD\169{9\88¸Þ\99ò\14¯0¸\9bÆÛ\a|\83^ cwáûd6MAáBÏù^îqÛ©ç^¶KؽËqg\8aIÿwþF\80îp´:ºÀ4I\1c#\r(G\ 20áU¹¹<Ñ6«#"tsþ\85s\14¥\8e\ 4 \11; b\170f\94®{\fC×\14ù¹¸wk!-\14/\80sÎ\9dÚ,Õ\97¿ðTÕä\v×\ 4·±\12ò\9aä^Ö\93t sU\ e"?éå ê§7ìÏ\10Ýü\9c3\88¹\95\r\1f\18HÐ9§Ø7±:"¾YÒcpÍs\95É\1d< ~wÞ\19l"£,:§t\93PËxr8¼\80¸á<\ 1q¯¸ý\92©aè¹o²J!ï\8e6\89¯ÃÄ\18i\rëå êð\ecOºÿòs\1e¾èBº\89\91[Ä\fYÿÕ&w\97\ 3´\98Ê!o¾S,¼ñ\L\1d¹üø¨Û\85ôÇßùóSïÜGòÙ\854N¶\84ú\80\17U\94>\9b{ ÅÈ\8bÝ\17\97ÉjÉ 6ÿ\9bK{9\92cá'QY¸'N\eè"×\8a\93\ 5W½Ñô,<\18\v¯\80#\93Ð$#ÖÉ\1cM\16hG\9e´XøIT\16¾\89ü\84RE\92jFÍ Ê]¦l)\1a\123'd\88`\ 2PhÕd\0¦¾AÊm\ 1É\v\OZGþ\81\18X»Ü\11§¢F~SÇÎäÉ\a?Õ_`ÂqÊ\b\v^\93&¨$£\8bÜM\1c´GÎ\8fUi\8f2âå ¢°c\92U\1e\92ö\84˸À\85/\86×\87Q7^Ƶx-ö\800ò\8cݰc\95´Ró\93½eð\ 4Øzøä\a\ 6ÿïAl\12®D\9dHª2P\fnv¨¿~\93U¤+'ß\ 4Õv.\83K`G\9e´$ÊIT\89â\89ø\98k\90¡«D\81/uK\ 6ûõ[X°^q+\91cÏC\9f\1a=\rÊ5\8b¬\89p>Ñ\95\83\1d9\86ÝѲH\95\9b\89ücªvñ\9fsÆÖ\ e»Mã\vä\ 3Î\8cç²ÿ\1e¤&ád\904µ\r\85\17öL½l¦\1eì\8eÞ\88\18-¿väIÊÔ7É1uOD\88ÕÀ\18\82C\0õL]\7fa\fÀ\8e\ eÑ7Y\1f³;r¤%Ünóð%8\16dÖ9\1e<÷иí\84Þí\91×\9f\82]Ò\9fH\87ϼïn¥¼ñÔâ«\1fºJn}á\15²\9a\8f¸\8eÚåð
+\1f\9d6\v¯pùxÔ±³\9d?\97Ã+\94"Aâ:ê\v¯°\r\87WØ\83GÁ\90_´\87ù§XÃú§\8db8¼Âõ\r_î:jù\ 6UØã?}j,·fß/¤#½å:Z\9dý|·³\a×\91N¡8\14&w?\1c
+-\9f\88uö[}o\ e±ný07Àu"Öé\ 6P\87Bw\88um\9c\88um\9c\88uë7ß9\1cb\9dýX£\e'b\9dn q(¸ïür×ÑÜ¡Ï\1c
+k\ 5nM± O\0
+_ïôɲÞ\9b¾ã:ú»ÒÿÝuô'+\9d^\81%|Úñ£ëè\13Ëý®ëhÎ^\19Ý\87BÏ}\80/\11àl#¶Òô"lw Õ·RL\13Fi\89D\87IAr%õ<D\82Í\ 1\82\92rÐÏ`\17\9e4\96^º\89°~qa\81\17HÄ\1e (`,c\14©×èHx\12¡lÃ\13[\9dJ¦\\ 3B\9b\89s®æ\16\99ºQU\84ë.å²AT\8c{$\94Â\97ñBbaEÁ\96fyðV\11M*¸c¸¹\9aÖc«ð×D-Xqµ\v/©ZF`\91æøj\17Ìcßn\98Ë\8báou\92\1a*W\v¼®,ï\ 6¢Uã`:)ÚEË©\ 5\9e5ò¡AjÄP#tZ"\b\ 2\1eM6)W\9d\f\1fãhRê\13OB^¶ª\89Ô\9bô\9b\9fª\95ÄV»9Å9+\8ex©\|(ûA5ì¹\vª®á4z4\ 5úª\ 5OîPO@aAX;R\134Ä9Ü\83È\1c\82\17Gd\10nkÜ:\92RÃ\ 4õ©±ÊH\8a]ÌJò<ÆKS\9fÊ \ 1¸¸\80)i±\b\86¾áëe\9b»|\17L¦ fïvÈ%èV\9fop\ 1Qe\15¡û|i@´ó|\14Z~±¢tLÂi}\ 5tC\87GÀ¥'%d¶Óà=\88ZòÐ\11\11ó;.h\1eÉ2ÑçÆ!\18@\ 3j·`\0´&¦&¾\ 2iær\1f<76\92\93ña%Òó²\ eõýð\9bÃ\rs£µ5\98ê\19"ùBYAÑJÄ!à-¯\ 6OwNt\1fI\1d.©ñ¦\18DÉÕ`öJA³¤\10\ 2,Ê\b@\1aOêr\ 1ýë\9b'\ 2\1f§P]tÄú\ 35üdÓJ\12}\91÷s õ2\93£\13í\Æ\e¬.Ê4Ê8\vA\0ö±Eá?åÎ\90\8bm#Éa\f\82\92³Ú!ÌX`ó\a«ëÄ\83\84\9a-\ 4v?\89L\99zqDÌ #\8dñ
+\v\1fY\13|[\88ÿo¾Dëåõ| \84ªRô¼ñ\\9cl§\7f._âÉ;\7f~ê\9doçKø\83®a¯ÿrKJ\1eÎ"Bl\90Uò.<\ 2³ \12GrºC\95º\11à.\ 5a\17\1a»p\8d\ 6\9ev9N\95Óð¤ÅÑÀæ®GÞ÷r\10µÄ$_!©]¨\1a\0\9friÂzè\9c\98oç\96¬\8a!áÜ\135/\94¦zçòuqù¹Õêª\11%í\80\aS\8ayÔ\11@Ðè½7\f¥¨\9aß\82~gÕ(H\83ù¤ÄZ\10¸\89\9c\1aBÉ\\11ÈU\94Wæ*E&àO\83%U»N¥¤H\9e2ÔHrl/©w±ÛAM\18\9a\1c\90æ6P±\9fUH#ûì\97LQÈê²\ fR)\ 2D\16o\10i\ eø¤\17
+\8d² \91K\84°\85Ö#_\9fî\1aHÚ\1aHU¯¹kW\96:ÃJ<Å\93¼Ú³\89s*rѵï]5¦\86\97á\ 5eH õ\ËTUÆuA*Ázô9\13d\82Aq#n\1c~e=`Q/-\faíºO¯#l³#\99H\82\9c\8a\8fÂëå \ eÉ+lX\12ñ7\aM\8bk\18y\93¬FHl¢\9fq+UÉä\19@q½¸qd©Ý¹¼\9d_K\99ð\9c:
+S\169e\99\91Ñ8z\ 6(\98z\11\v®;©å®z®\f\81ú-\1aa¬
+hÁÚÂØ,[Ø$\84~y\92
+%Ùi\ fâëå \ e)\rÎWhíÚù©2:½ð\11&_\99¾\81!ËU)\ 3\a/\1e\97"¹\94¢a<Ê\a%\89\12C\87»k\87\99Vi\13%Qk\93\96TÒÃ}ʯ\97\83\bÿs\13¥3\\92Ù\12ïR3\9aÔü¿e\8\8dñ\9eqa\16ÒëOM\e,§Ïd\<yßÝ"{ã©Ïe\0´VÜd=.¸×\1e\1cÜëé Z\9e+ub\89\8düèèrp¯ìVÜd\12ÇK7Y/\ eîµW\8f*"¿ÄMV\17Ü«þi£(\ eîu}Ã׻ɯ\rîuÚýSì\84[³ïW\8doý®Î~¾ÛÙ\83\9bL§P\9c'=\9c =\9c ö[ý\8c\ e\ 4týP\97ÇîI¬yÝ\0â<ÑI\15çI/'\bh¯'\bèú-\8bæ@@íÇ\1aÝêIG_\1c\b¨ûÎ/w\93õð\14\ 4tÀé\Ðð\1eÜëÑé\93e½7}ÇMöw¥ÿ»\9bì\ fVº\8c\8fÀ½ZÇ77ÙÇ\97û=7YG\8eE«§\9b¬\ 3~1¤ì\88\1d(xâ\ 1\81Ý\r\10È\1e\ 1º\90\15¨«×\f©Ø#\8aÊ\aÍÐ/e
+Ô\8eì\eA\ 1D\89Ñ©Úz\12\ 4j`
+³'r}Ýo\85(eï,É\ 6u"× £H%«ö\15\ 6\83Õ1Ú\8b%l \v\ 2\15²'\ 4\86[M\rÊ«\8epóU{Sµ¯\9eE\ fuÍ®©\ 5\96¢\18#Se\99\12c®UgÎ(Ë\ ffÞÂõ«©·\8a¹à\8cL¾\86)Õ\88ì\82ãÆ\93 ¶Ó5q\10ñéû7ï\9eùÊ&wÄbw\!r\14\16\7fÞP\9a¬r\14»\1a\9b&¿ã\93¤HÇ^Îû²\9b\83dÿ×Bò\98;"\a\19ë&v\84ÿ\87lYãq.?æXA\ 1§J\be\13KQ\10\96\97ÔZD)\1d\90èh\14ÿE\98ê\85'íYñDÌÊþ\8d
+¢¨&ÉÞµ\90n\15\13\89\83\18æä+\fÿãX»\ 5 ¡ \v>Èêâ©ïro\açãì\80Ê\E~µ]1\7fÓì\8dùº\1dw\90Õ.\99\89\e\87Gû²Å\80ÐFàüåX\ 5öãIr'Á\11ùáî÷5µò|ñ¹\18«NkËS s\10Á<rÓ\0à\18vMÉ(å\ 4ñE=g¿\92÷\15ÿZOL\17£eýW/Q·÷3OL\86W\ 4!ä¯?\17ÓèÏtÜϽóç§Þù¶'¦_Y\928h\98\f\98èóÔ°ðÊ¥h¢ÌäÂ"]£zµÙ³¡e\ 4b\17K%íÝ\8e(\85æ\ ffý\92\9e\82\96Ea²I\95}\17» !\89\19\86\85\ 5ß4VZ¥²\85'Q´ºßº\11_<\11\15N\0.ÉÞ\15T\1a\®s\10\ 6EÈäÙÅøóºi)â}À'\95\9c¼\15ïÙвâ9E!z\88\ 3LdîUcz'·\aóËó uÍÓ\8b\17oiúUè4\15G\aBíÀ6\8d\93"§\86\10\87Í1Û_ß\8eß2þ\97ÿµ÷-;\96äHv_\90ÿP\9bZFÁé|/\15\89\110À\ 54\8bÙ\v\85Ta$@Ù-t7$Ìß\8bç\98\19i¼~ã\95\15½ËM"®%\9dNçÃ^4;¶\11\11mØ!\a²BUò,åV~y°êf¿;nb\8e\9dïäCMK\ f+\11²¶éµG\10[\19LM\ 4\ eC[\8e$,\f°Z§\ 2\ 6\10Ò\19slü\10áH{\92|\9bÿ=¿Í\11Çl\ 2\ 1\e$bÂ
+¾\12î·8\8a£©g»c»}£fÀâäÂ*Zí\94\ 3\12\81=1K<C\99Ø&`E![\1a¤¶CXO2^\84\2ðµ\15¤Òp\v\87G5\9f\8e£ã¶j<éAë \v\13v$Y×ã\9eµÞ<±©ü\ 2é\b\87Î,\95\1c\8c"I¸8î¬r0Íàl§zþÀe)
+Î\92\8a_Ïëº\7f¢¯ Ýs§¥#=ð\15¨\9aøòSPD\1f!\0}ä}Wµô\95§>æ+8 »Üàù:£þyûr\9eÝ\8ay\8e߬\ fs2hy\98éò\8b\1e=ù3\16>Á@\10}Ì=?èÒ1myy\1dý\11Ú¡6\91k}{\9c¿\18¬'\7fòJKþ\9cÃ\98\8fc\84ö\15/
+ÕôcÎ\82óT7ÄZò!é\e
+ÓÞ5\93\80çØëë\1e\83Ùãó[=Ê\17UÔi,´#ϸP!A\91\7fÓ$Ïß²NòC¦Q\7f4\85xt=á\82VW\8b\7fÚzñ\a\16`âKJË\96÷\9eô·ì\rý!»Ã~ØèVO2ú:?í«ÿÎ\17íÈøÎå¼3#Ǽ\8b\ 5W63r.À}S]Òò\96Ï`ë÷ÁÂ>hÚòÅg\90\96Ýøsÿ¼Ïà\a\17;¿Çm`}\ fKðüÁ\15\7f\11¨áÄ]\12ô¯1\87È2"PÃ\99\82æ$\9eÀ\v\88\f-\80¥r\96ìI
+\ 5ë\9d;bIrÑ|#\91!®¼\1cc\19¶aâ\8bÒC"KÒ\9c(f\17ª¶ÓW\9c¿\9d²lFúöå\1cÆ4«ôf©jyö³À]1^êI\b\b
+\95ON"Qã\86\825Ì[äÈsw\9d\ 2\8b\7fæC\v±\9f\95q\r\94%cJbe©Oh¬¸k»\91¨Ö\18"/\ e\96\8d;QÔR"?\80¡\89¨åÑd\92Xîp\8c\ f\81\1f,\a0I_ýb\18qô\87+\97ãð-ñá%Qs¼pé\e)H\96Üèo\11m\85n\9e8W\12\88fĦwë}Ù\17/\8a»||¤¬\ 6|\aOÀ\84Ç\95Õ¼~ÀÂÙøõ+·SôÄ\9dþÊsa,î!þ«ki\8dw¿óùCï\sã\ 4§[Ã$\9d~ÿâW;Í\85Å\15\84\98\84FÄÞQÔÕªõø@:Nr4ìÆÞ+7
+m\98fÄ(»1èµ0¶@m\f@Çf\ e©*\91Wð8?v
+\80\8d\ 2¶¹Hþ´,"s,\v\8f\86ÔqÀ\1c\\8eh\99Gt\10¥à\90k\87
+\99\87\91:RüÁ\ 3¤|.\8eDºñL1 \bo\8d\98Ü\9b'º\8d¼\88Ã\9eÀE,§Oî°\86n\7fÙÇJ\1aÃ+䤮\15ÂttEµ«EqÌm\11í\90Ý6"\10
+\87©Àþ«¬YZçýn[¼¬>Ö÷\97\1fÀÎ\86k}ß \8bÏÙ\17^EÒKOuÊ¥òà(}ä}W)õÚS6%o\ 3:Ät\98 \11\8fc\9a\10Ý\0Þ \9fß©îmi\ emé\r\9b Ð\1d>\9ctK\ 3B^F\ 3"&\87Ð\16åÂC\9f\96_Ô\87äOjCò§\8db=>^<¿áÓ\r\88Vî\r\88\12`ø·K³Á\16ãëU\bfgÏovvg;è\fª>ÙÓ®Oöcרì7WH\7f\88>©?¦\16¸z¢v£ë/ú¤Î©è\931åM\9f\8c©o=Ùoî
+ûÁ}1\7fèè\O\1c½î\bÑ'Ýw~ºíÐÚ#ur.À¥)Öó"\ 4[§\ fVõAÓ×\r\87\9f\vý \86Ã\ f¬txO\11\ 2ëøÞjøÀr¿h5D\94ÜcÜ\125 VOòãj¥¼\8d\18áE=\19.\19\9bxk\1d))ðï·/\9e\88\88þ\13\8b\ e\8d\9a0ò A¬\83P´4à\99poT¡\91Æ\0@u²î<\88\88ü\19k{F\16\1dKT»à\ 5\1dæ\85V\8e\16Ñ¿S\90nÈQ8Z\12× º\12G5T\94\13ñ¸ñ\ 4\1cDv\94o\1cF\15\81?\9bAÞ\89gµdÁ\8f\8e!ij\ 2u\ 6\81R\ 6QK\8a\15ø\8bÓØµ\ 1ñ¶4\17Ê\ 1PÛ\18f)f!`Æ\9aÖ\ 4³6G\99ý\9c¢:zÒ\18\82Übyb\91ëF\90\12+\16@åbè\17×RÒë\11øØ\19\ 3\87w\8eW\ 6Q\7fX»\0\eA\80ã©üàN\97£\17¸l ;Ñ\85\1e\81²ÀL\ 5ØD´\ f1?Zé\ 1Êw8\eg¶çãt$Y\94\92ãÞ®IÁG¾¡\ 1¬u(\8f¿±r)\86A7öx\12à`Ä#¦\9e\8bØï\188:¾t\18Ui#\ 1\97\9cE½v"¡\8fo\9e\b\13/6\94Ú\ eZ¬\vº,=ö\18oï,V9LË\83Á´\11å\rO"|áÎA\82æ1ä£\1eñ\8e\88\fmN±\11ã8L\aësá p\1f9Ê\ 1\18i.Î"ò*q\fÙu6\ fäz©\91¾>:Í/²¹\ fÙzcËâêNë\LÅ/âþZ\86jKº1¾'ò§W\9e\eÇ\15ÿ\89#r±õÞÿÎç\ f½sÍ\8dStÜ\12FYÁ\ 6qð3õK#
+K*r\87\aÁs°\84i<»\ 4n&8HèúÀ\92Ù\1eÓÐLG²½øõËN䮽mD5\8d°A#˼\9e\ 5\81âyì\8añV)XÇSl§\f\9f)æ *Å`(à\86ù4#æþ\80¦ù(.\10ÅÖ\9bíP:RüG¸U\18Üt\90f¡\ 1\80l\87.l!hy>\1a§¸tÂ^\94\84#\f\98\f\ 2l§\bØ<ìÐÎBpä\7f=ªíØ[\97v\8b³¡\14\8c§8\ 6¸\88\83?!\95<¢ü\9f\8c£\9c÷\f÷T\86\v8\ 2â\8dÎ6ãt%\86P@\82äÔø\91,ZH\12¿Lx\9fÄ\12\90çÀ\ 4Æ\16i\12X\8bú<wR¥M©\ 2á#Xù«Y\99"j,1îF=iI²E;$\86\17Ë)AÄà^½ÇA
+}ð,~6¸W\90\9d\85\89%ü\0Ù\r\0qn\14íÃ\84©"\9f\er`(\8eUd#\866¥\8däDû$FÄ\17á#ð
+\ 2\9eÓ\$_r,¨N¾ä\98U5¾\84\1d]Ï\96ýÃ`ôzF\11Ö\8d\95X$Ï"\17ñ\14p\17×\9b\1dÖ\a\87ú3,uò%\ 4©ììÅ)Hú5W\1dðå§\ 6Ã\eûæÊ\b?ò¾«føÚSvÄß¶ÔE,\8a¥^ôO\98ÅuYêw6²\19ÏfGÇeG/[Û!7J·´Ôåe´ÔSpØ\89â\97\99\17\84âáÁ\eÌíÇ\a\8a\eÅz\1c,ܾá³-õ\98Õ³àV\e×Ôçyi6Ö¸¿\8eÄ>;{~³³{K]fP\f¸\98ÛfÀÅ\9cv\13É~Ë
+¥eÀÙ\8fiv\9eÄ,\93õ\17\ 3NçT\f¸tôÍ\80\eºçÖ\93ý®²fq\19pó\87]2\9eä\1eê\98\9föÕ\7fçg[ê1\9f\ fí7[\80KS¬ç[@ì[§\ fVõAÓ7,õ\9f\vý§-õ\1fYéö\1e vëøb©¿\7f¹_¶ÔY\v\88ù¿QË-\8f\r\80"p\12ÇfÄ\bÆ\1e\85\84úuC$F\96G¢\89 \7f\88\rXº]Z@\13hP(\aI@õN|ÛQ7Ê0÷2sÏ<±I\91\9eÈ\f*Þ\9fåCP}8\ eÆqNÒx´2gµlí\10ÒÒµÝ\98×ay1j\99ø½ \99Æ\99Û\17\91´\846Â[{îT\94+,3*Ê\838>\82:\ e\10\8b\88V=4ס\14Ä!÷\90óÎ`Q|\aËBs>;\931\8d4Æ\87\824D.tí\8a\ 6²¢7fÕ\ f3YR%Ù?\\ 3x\12ª\10µ2xé\7f öKò\9f`@ærObJÔ×/\9e8>·0Cs'v\\93Æ\85\7f\83ÉÃÂ\8e\81°Ä{Â\95\11Ç\86\91à\82\93Æb\ e\ 2;\80o\15QÈ;\9e\8a'\11ÖÅ\92)FÂ@\82Ýn\1aQ¦¸\88E>\1f\9e¥\7fxI\f¤LOª\92ó\88Õ^Ä&û#2¹,wægrõ\9ayGp}\851\9cc\99³9`\9ap«:\83e=ñtî\9bÆtà\1aJ´ì\84»¯E\81Y"5\8a\1c\r\11Äp¯Ì\9e¬`³{¡\91ÆÐ:\0\11BtÄ1
+\84iI2Ü|¸[F\12Ü&'4ûEÁÕ\1d£î\16Íê\99E@L1\r\15ã\ fÈQEï\8dSV`\8b&Þe\10Ê\8d{´ \90¤hcÝ*\86\82x (\ 1ÃUå\1cX
+¸\a\8fL¥\93\8dÀ¸kêõ\88á\ f¼½ÁÕ8p60¶.¨èY\91\19\1c !ð\87l\98\8dH;å¶\113òPùaQÏ3Aã9\10I\19\86¢Ï\ 2\ f\18\b\10Äøµ\b?\f°uPİÌËëhçvç\83\9ft\9f\r¬0àû3ÅuªÌ(Á¡\9fc\v¼\89\8c'röW\9e\e\86\1cÊV^ê\80\7fì\9dÏ\1fzç\9a\e§"öéEË0´\v\ 5\b\92½Õ\98Ä ÉÝúo9°\pF0\7f*ä3ÆË\11:Ùdñ³âåb»\8eo\fz\1c\ eÑôǶf½S\90tó\1fâ_p\14w\1c&m0\80q\9c\7faÿR\9a\ f¢DNÖ:\81i\1eKwVÓ<\96È\85\11[}>\O;÷ð¦Á3½(\8e;\18\rec\90´âº*Í\18ÍâGJ\ 2çª\ 6\agD\91E\9aG\8c\99\vDé\8b¬sB×\b"\a\10\97\ 2Òâ\9f\8c\ 3ßI\93¥."\92\1dN´CR\81\88\85dÜ}1ò´¸ûbùir÷!ð\8e\9dÈÅ\96ò³\19\b5*¶2ñ* \ 3j"+» ¿\88\9cip6\ 3`Y\84\16â\v\ 6Wñ$\13nÂÂîÄàm#B¬5yø\90Ý Ù\v·\e\86ÒÏ¢bûD\88ý7N}\93ì#(.\1cJ+æV\1fÆÿEâÇ%ñ\83Ý]Ïv\0!'º\ fzë\ 5ê1 \85TϨ\ 4\19ú*Ò\8dÀC¤I\9a¿\88<VåEZÐ\19L|i\1c\12\14¦\0w;P\ e¤ oj\17\85ÉH²\1d¥®ªk\17¦úU%\8fÅ\93\96\9aæ\88à¶8\8aÕR\90äcy\ 2X2\17¿\89\e\12Y§÷T/O\ 5\ 2)÷p,\16yqÏ\84\95¤«À:½«]?\fÚ&6h`"\95ä6\ 5á\181\8b\bÂ\15Q×E8\ 2¼RH\87\98RdÈò¼\91TÚ|ý²\13)\97n\9eÈú\1eàj0Õdñq¿D5îÊ\10_\f\bÿH$\axúÙïX³S\9amr®\96ÇËOÁ\ 2I\ f\84ÈGÞwµG^{ª®×½å\1fâi¤\7f\bIdê\1fJgXþ¡{Ï\8cºlÌ{\13\97÷f\85\80;xFéVüCe"8¦ê\0\12ÇIôOó\97ø\87ø§ø\87øç\1cÅ|\1c\ 3´oø\ 4ÿÐo\\19ï°IA\9dZnÉ\99QQ.Í\9e\90zï$z¥Çç7{¼ó\14é\\8a\ 3aü±9\10\86äÛMtû-kÕ\96\ 3Á~¸0ÝÍ\81 ;A\1d\beþÀ²ÅÝ\81PëÞ\93þ\96ý¡?d\87Ø\ f\eÝêIF_æ§}õßù \9e"]\81è§¶<t"Ø*\\9a\8e\95Í\ fêt¼Ñó\83õ}Ðôu\9fÑÏ%ÿ!\9fÑç¬yz¡bÇ\v]_\Gï_õ·2ÊS\9e×Þ1K骱\1d2îM\88ÿeÄ\94ºé0\88õ ä_$ÜÂ\9c,\1fæ\89¸$\v0\0R\84¢&WG\8e\18¥ôï"¦8/æ ÚQïs¤&\11"ß¾8b>ô.\12\95Ç\ 2\ 3J²Ö!\8c\9a<,úi$\1c!\895¨×\83e7n\1c³ÄТD\1e¯Ä\12\9c)+\b\ 1XsèVÂYkÑú\11\0Ì*z¯!¤16Üa\1c¥líúPb\ f\r9\97Úå\8e\14¤hÛ\18Ü"f½X\1d#\ 1F\94\öyâ)¨]\8b\88*0]ª\ ffE\7fq$ÆÁ\ah\80\9eX4Ñ|õ6Wb½ÕHÛøÜ2:¢î\82\8d8w\væå\fÑï©ëÞ³´v·\8dì\ 3¿oDÂ_\91\19¤lê«\9b\9fëã\9f\13ó@ÇÚ\13|¨Ð§×áÅ-µLª-úÆ \9ex\_y.\f\8bJ«\92\ü\ 1ï\7fçó\87Þ¹fýQ\8a´ßwa®ÀXDÛ¡aNö"Ú^Þ\89§f=3ì8©ù}9Ai\9d ÓîÏW;\Ï\a\8d\9cg25Hñ\88ê\1c(\83\93ðx#í\96f9Æ\97bVFÃ\82rB\84!!DI3\19'½\9fð-âþx2\95@h\88EòÌg\11ë0.È|ÆgÐG\85°\1eád\8bãåu~Âä\8dy\9d\9fpÏE7"®Õ\81\aÏY9i\1c¢\90áýùQ\12f¯\bö\99o7×bõVïOíW¿fn|\8e\138"\8a5\9e¾%\98\88ñ\15X ä?ç#þ3\89\19q[\902«7ÛU\ fv\9fU[H\0Y\17Ç¡ß\98sÂJ\14WÉ6\8bn·^\1f\7f\915|ÀÀã!\8dq;k\9b@³Å¸j\b/?\ 5M¡=à
+\1fyßUkxí);pïJøÍQ\13KÇüwý\13\ 6Uv6Þn]\99Ùe\16X\\16زÒ\1c¶\98tK\eO^F\e/G\87î\95\93Ï\16\96_TSåO*©ò§\8db=>\ 68¿á³c\0RU\9bÔ-8²×óqiö\ 4åñÕ\18\80ÙÙó\9b\9dÝ[v2\83ªæ·²«ùíÜ\15iû-+t:5_\7fLå|õ$Ê»¬¿¨ù:§¢æçX75?§°õd¿«¬YXjþü¡£s=qôº#TÍ_ßùÙ1\0c\7f>Tðm\ 1.M±\9eo!èo\9d>XÕ\aMß°ç~.ô\9f\8e\ 1ø\91\95>Þ\83 o\1d_\f¹÷/÷\8b1\0\19a\96íØc\0\86Z i·\8b\98YYÆ<±r{\8b[9\ 1Ò\86ß51\ 6 ñÆQü¿A\81<\0ª\92Ô¦\8b|×¢\0âH\1fS\8a=\ f@í,\19Ä]àh0\ 6©Ô<I߯X£\0oûvpN\a}\94wQ\19¥\98E\8b\e2\91\85¬@Ò\vCê\17\90ùøðÒ\8a\9a7\8c0ͨ\9e.y\83v\7f\8f9ã}\92¿çÏ!I9,ß®X´;.ð!<\1c¥£T\16wóFì\85\15©\1c\11æôÐ8r\0p4ï\91p\89\82\82\81hÊ¥\910!³®Ýl\87òq\ 2a6HTáð¥:½Y£X3\10m\ f#¥0T\1fÌQ\93\10á\8crÝ\99sÛ¤ì\9cRd ôbd¶\ 2\8czÑÎ\ 3ß76o
+:\84ȼiÐ\86\8a¢#\8dô³cÙ\8bÄ\9a \10àÄ\8e\eûL#¡\8b¸ã¹ó$Ý\ 3¦\=ähw-F(\ 1Ã\f£\ 6±ÅªÞg&\ 6p\17\1dÅ_Äã£*1£ÝÝ|\ 6ÔQØÚ\8de\19¬9õíY@çÔl\97ÿeloOB.\ 4¯Ù\1c\11¡\ 4c\1dÙ\97\¼1ëõÄ\93ó\9dFúÊ\ 5Õ\82âF¼\91xjË1û\84\ eËÄ¿\93Ä\fÍ Ç\ e\992ê
+dÔ¯\14|\16#}ãnÓ\8b¢ÕnÎ\1clK\©f íµ`\11\ 1åÔÏb¸\ 6¯\143êaf
+r2Ç
+â®×\11`\1a±T×F;B\ e\9c\£ñ!\14Oç\85cB\ 6zé|\7f\96@ô¨uÐ0ô®uëN2þÀC&õã\16÷ºr¹O¾áGÒÿT\89Q\18¥oÛi\13\aOäÚ/>\15\86IZÞºÝ\7fã}Ï\1fxߣ\9bý|\ 6\81¶\93°\ eXåC,\84fQPE\1d\v`Jã|3\9c$\7XX\el¬|m[»£Ií\aɻ¹AO\16\81@ÿD\ fÿJ\96\9c-\80E÷¾;%\8e8vIjÅ\113\13+²Ý¼#ºÞ\91üÑ\DÜãwÙêq»ë÷ì`\ 6
+xÆ1\ 3\ 5À\ e5\89`>| é>h\ eR?Î&$Bºs$@¶G\7f\10¤Q§=d9Ö\87ÕO!ö\ 6¢\0ð°8épõXP_\1alÍ\98p\1e'ªËä\9dV/$'\ 1ý²ñu%\8eÓ\ 2>\1fMÈ\ 1\8eã\8eϧÉç\11£`¼YZe«K\89»þNE¡L\8f\1a°¡\ 2g\18rURÁ0¸3P¬ê¥í \¤Y\9eÒ,èÞôíÚ\14\8d\9aSáH&B¿~Ù\89\14¶·\8dXDJð\15\92áa÷õ^ÂÏ{}\fY\8aÖ¬v\80¾\15W74\19\11\99c"äDÀ\93ÑjÖ}¢y5ðú\f\rSס\84ªêA\85+\bëÕ²y\87.JO]JÏa¹eF\84¤S\rª¨\1ffQ¦\96Õ\97&ÖQy\r\94\14Oýö\0\7f.ú>cQÆ;¤¬lLVîQÖK!\805z_¯lvÞáczs4×\93¶k\86®\17;£\ 5ÀoNÉ
+\82\96»\8ee<5¸\82Hb\19 t*!$þ`QL\8e@¶¤;ysó´ñ%pd°û,J\ 4\83
+ë/\ f¸Þg^ßoÜwi¼\ f.ïU±\7fé\99'âZ¾zuÿÆ»®FÄËϼÿÚ^ÂpéÒÉyb¸e`\85\98KçÎ\99b^\16s¸ÄåpYN\99¾\:Ò¸túDp+\87Cp+\87\87o\90_´TåOÚ©ò§\8db=\8e\ 1Ú7|¶K'§\v\82[%äèµÙXßþ:xÛììùÍÎî\::\83béç¼\ 3zå´\ 3zÍß²B\ eÐË~Lû<ï\80^ºþjéw\aèU\8e\1dЫ\1c; \97ý®²f\ eÐkþÐW¹\9edôÝ\ 1z¹ïül\97NN\ fñ¼æ\ 2\\9a\8eõlo!·m\9d>XÕ\aM_wéü\è?ïÒù\91\95®ï\81m³\8eï]:\1fXî·îæ3â\ 6»ª÷
+ö\9eë\8cé6bFd©Jì\ 3¦í\10«Cê\1f\1a®×\80k6dñPѵd\1dd1ð^3²GÕ1Ò\10aW= j^¢\99µ\13¡?Ý<@¹-x6 \17SÑ\14\18D\97\8b\16 £þÞ*s\11rYØ\0I\ 28ùUåÔØfQ\14jU\áI\1a\8f²\88QöÍ\90ÅШþÔ,Åc2*\ 1\8aJKÐ7bVåÖµ|7\94uÞòç~h\99j\ 4!Ç\ eÕo\91\0\8c \18\ e\9e\b=3g}\85ÙéCò\f5¦aj¢'á\9aqîÛELa\16\12óO\862+QÑ\82ªw\10\8d\8dDQÎ\8a:Ãn$j\18.fVnCÚ\18|ÔÑ\8da\ eõ\1a @z\19V\ 4»\17³y\86£;Ò\18\1dBP\ 5\8flµCéJóh\1c \9dES\12\vv\84|W\ 5&1\17\ 2 \7f㫱\82Rë\88_\8aË&.ªh\7f\ 4Ä(<ëÕ*«3\9f\19\85\1e2£K\9be»G\18\bµHÝðEúÆ\ f\15\0ýÕ\ e\95Ã%ºt¼\82e\9d2\81£³â\83°Þ\99,¡\84´"
+\ 1\95\8br·bQ'k9öàIb\82pïoD3A\1c\11q¨°_°Iä\\ e\9dûÄ01\92SbÄ#Â!zÑ\1dA\8d\1c\8cò7\9a[\rQѽø\13}9ø\16\17\91]ö\8cº\ 6Á\13\86f\9cRtDL3Ë]\914Ì\95Îå0\vî\94º\fXÈ`Õçp\e
+\b\17\90\88Ð,ñÚc\b\9e4&\81Çâë\97\9dH¿Ñm#"]ãH2\14\8dVÎ\12\f\8f¯ÐHa#a(Ý\8aOÍv8îâõLXU\1eîEêê\ 6ÞHí$2\9e#\8e¯\r K>^ Á\ 6k\9a.Óù9^¥\17
+\fæ¾p\12Ê=\94þ\90\1cO\14\1d¯<\17\ 6\v9^\87Ò\7fÇ;\9f?ôε\v\1fÅ\89\80ïUµË\9a\0X\8c\1dÙâ¼\8eGÅúC¶¹Æk\0 çþ\94\87yÊ\ e\86o\a/ó¡ÉM©\83g\0ÈP6\v²%À\12!§\96\9bUk\8bef9F\ 5"HeÀ98%Ú \v,`H®$>\ 5`äÀ_\9eëÌ4A&Ë=\13m\8b\89vs\9fÎvcï\ 5)Ô\8aÞ\86v\83ùPÏ?òÒB\96}k¸tE}·7\99¸Ã2ÝB\11Ëw\10õ\9a\ 6\ 2\böaf¬}U®|\11@y bn¡Õ®Mqf\1c¨=\90z\8eØÅE\ 6\86V\85Q£j#\8e\14n\aë¡Ru4Ìú]M\80-\10¬\ 3áÐ\140\82\12ÿ"ÞÓ\14ï\f\15jÁ·ÃB\8b.\83$\1c\8c\ 23(\1e\eT\12\86°\82N\ 1)uè|\9c¨o\90Ëé4\94\84Ë\ 6GRE\ 6\9bæ¼×xn\9e\88\f\vÄØà\rEä6´9\84K`$\9a\12Ø#õ\f\94T>\ 5Õ¢\89:DÆ\9b\f?ñ\9eÁW+¤\80%=f4\8f4\eJ\8bÉ\99SJ³zÒº\7fÚ\88\94\7OÌÌãÀ\8aêÆÇ5\fj<8¼V\11!ó
+¦Ø%T?²j\9fY³#à\ 5<©0°x\8eóî9¦º¼\80íÐk\97Ù\fÛ\7f^i1\12Ô\91\8c\93ë1ñ\1cÿ¶\91 ó\80!àÖ4ZjÏEÊÄ%eÆÊvKí\91vX²f\97\81\84ðò$\95mÂ^î¤àÍ\13\91m[K#Ï9Ô\7f\8aúÀp\8e]'ó3ÜR\8f+\ 4:ÕÜ6ÒÕðyù©'''ÞU\91ðÁû®æÐkOÙY\7fWÐQ)\13"´\9c\13"´\ 4\a\11zï\e\9a\10¡Ó\95dþ£éc
+\ e"Tº¥\87J^&\1eªâ BÅ\97?\9f®\13"Tþ\14\ fUõð'ëq\f°ü\93 BËq\81\bE\15\e$\ 2Þ7{J1¿\ e\11:;{~³³;\ f\95Î 8.JØ\91#KØ\91#çoÎ_pÈ\91öcº\eÂ\8e\1c©ë/\8e\v\9dSu\\94\1d9²\94\1d9Ò~Ë®(\ e9rþ°Ñ\95\1d9Rw\848.Üw~¶\87ª\1c\ f\81#ç\ 2\\9ab=ß\82\bÝ:}°ª\ f\9a¾î¡ú¹Ð\7fÞCõ#+\1dß\ 3\11j\1d_<Tï_î\17\83\8eJLæ:\88(¾ÍÂ\ 2%\ 6»\8eVZ\19,\92\15\8d©\r\9dÇP\85\1di\f\8cN§o_v"\81&ARD6è>!Ã¥vÌ4Ñ(\0\ 1ci@\94\1a\95@4C¨ÐXÜÑK\rIõí£2¨\9a-£Áx\1añ¬02ª#\963kÔ9s¶3EÂ$Y\88;\ 6½\88È\ 6ÇçV©\eFg\14cÎÝK\8d4Æ\fEF.Ø\8d8F\ 2ì\17¹&\9c\ fç¤\11Ü\92\9a2Ô3OR\90ò1\12G\1cKÚ°\11\10{S\ f\85\92àer\81££\ 5\85Çì*áâ8\ 6\95ª\14bÃQ\1d 3ÕÄV\10Ð\ 5xn
+Ä¿à\9bÌŽî\81O0\9ex\14\82\1d¨ÐM\8d¡àî\¿R'h;.OÜÕ¯<\17Æ>ÑT\80ÝxþÐ;\9f?ôÎ57N<ºå×ñ|÷»Ó\88Ø\9d@ä8\82#b\8fÙ®\ 3BIÙ(nsN"4Th è+\9fj7ÉNw'BIØ\9cH\10:|;ì\bÜaW\85\b,-\ 6#\8aÃ\ 6\16\8eì\9c \1eWq\83Áï\ 4Ò:Û\fVØIÆ\ 3\161Â\86ªh\17\ 5%SÒ\88î7\9d\92ðh±\eöÕ®\9aGy\90jboÕü\87¨!\96\18s\86S§ø\96\ 5ö\1aÑJ
+£ç\82âj&T~\ 4i\1d1V\91ó$w\14\17ñ\14¦\80,\84\96\92_Ãë\ 6øó \84YöðÙï·âbS69W)óòS\906ýÁ¡ùÈû®²çµ§ê:£oÜV×s\82\10\966A\bKu \84wZ¸©ç¦©Ç¥©/mÞ\81\10J·ä\94ò2Ú\ 25:\10Â\1a}\8aºü¢\8a#\7fRÁ\91?m\14ëñ1Àù\r\9fn\vÔ\v\bá\98øVÒyiö\94à\9bzÕ\16¨\17\10Â\97:»·\ 5\9aæ+uǦ\eÆñ®\84U\87Mg?Ô\9aÚ±é\O¢ø5\87M§s**b=wlº\1awl:û]eÍ\1c6Ýü¡£s=qôº#TE\ßùé¶@}\bM7\17àÒ\14ëù\16\báÖé\83U}Ðô\r[àçBÿy[à\aVúx\ f\b¡u|±\ 5Þ¿ÜoÝV×C/¥\v<\9bc\v0\9a»:ZéÙj\8fR\9blc\1fô\138."óM\84\ 2C\88å<1\Êá²Pî\12î{ëFi¿Å\83wdwÄNï¹#"\ e?¦1\10ºF\ 5unt\87ÈM\fD\91©3¼ºô\r\97~\18\9aU\ 6~\19ñ6p\8f\ízâ¨; \91\83¼\94Ú\89¼H¸y"4\ 6D\98bN\98\86N¯[ÌC\14V«\ 6Æ_ß¾TD\8aµ¶5A\fäqú\8e\1cÉ^8vùFäÐn\e1`<}<\\ 5\f\9a\1fÚú\90Q!Oïq\81EÆÞ\8aÝÃdf ¢Y1ó!ã¾8w\92è\82\96ÈÖ\83÷\10x§âÓ!z¯ð\eÆþH§æG\84|tO\1aë\97\12gr'²\90Ùm#â^gHS¼Â \8d\ 2¯\1dð\rz\15\8cÝ\85ï\93Ù4õ\84\v=æ{úÅm§î{Ù._×.\87§\ 5\93þ}ü>~ë½;Zé\8aÉ$Á\8b4\9e\16 ßÕ\13¹ÞF´Íê\88\15ø\9cC\1fé]0 \192Ù\e j\14°î\10|ö\18\86®)\12rqáV\8f\19+\0ü§¡\8eêgÙ/<U,áb5Á-¬Ä¹\16¹\8fõ$\1dèX\95\8dÈOºy¢}zEDø\11Üüì3\88¹\15
+B\10êÙ8§Ã\12Ðò\14JÄ7kJ\f\82[òà\ e\9e\94\86\9dÂË\ 2O\8c¿ñ.Ç\93\10`>8\e¥í®' ¬\15·_25Y\v\9aÍ&³Øñêh\91ø:LÌ"é°n\eQ\87\8f\17èE\84}ä>\ f\9fs\11]ÅÀÍb\82Ìÿªg°óc<e\137O\94
+¯<\17Î\1eô\9b.\17Ñï\7fçó\87Þ¹Nä£\8bh\1cl\8dð\19¬¨ ¾ÙØJ\ 1e¬í\9e8\ fNKþ´ØßXÙ´\91&\aß\89ÊÁ=qH©D¦\ 5\ e\ô&Ósðd\1c¼\0zL#\92\94Xz\98òA;ò¤ÉÁw¢rpOd©\16\11¤\9aD\83\ f\1do£hÉ\1a 3FÝE.\ 1\13´h\ 2\0³Ý ä\96|äÅ#\13\7fG<X\9cÜ\13\95Ý\94¾\92wêÆNõ\17x0®ç-fM\9a `\8c2ôÓ¤A½güX\95z/"n\9eÈ\12\86§¬r\97L'V+äÂgÃæCªCå%\\riæÚ\8d\ 2¤Õ\1af\88\12d\1a`S\1fì-\83#ÀÖÃ'ßñ÷ï\9e\b¨
+D)Q%\92ê\v\94\82\8b\eê¯oä\14g\8a§o\12ÂäªÚ\91#-\81²\13U x">&uòs\13(q\13\fq \86\0-+;"Ç\1e»>ÕÛÙ)Ö4 &\ 1¹\90רc\9fYÜ\0nSY\8bÊMÏøÏ\13
+Ý6cs\87]¦ñ\ 6ñ\80¢!\9eÉ~ßHA¢È hJí\8a$ìxºý\12!©wóFÄhM8hG\9e¤<Ý\93&O÷Ä\82\b.\8cáph\9f\9e§ë/\8c\ 1\b\90GðMÜÇXG\8e4eÛe\1e>\ 3·\82¼:\86\8dånú¶\1dЫ5òòS°JÒ\ 3áð\91÷]m\94×\9e2¶ú®+äÚ&6¡\14í¡Û¨&\87Mxï°\99Ø\84Ó¿cN\9déøI\ e\9bPº\15·Q\9bØ\84µ;lÂvxÔ\vùE¶"\7fÒ\16\96?ç(ºÃ&\9cßðÙn£\1a/°\84-üÒ\86ºriöDõð5·ÑììùÍÎîÜF:\83âM\18¼}ó&Ô¸ÃÓÍß²B\ e\9eÎ~L\1f@ÚáétýÕ\9bÐ\1c<]í;<Ý`-{OÝÁÓÙ\ fÙ\17}\87§s=Éè\9b\83§sßùÙn£±?\1f9\13æ\ 2\\9a\8eõ¬\ fÀ\b_îôÁª>húºÛèçBÿy·Ñ\8f¬ty\ 1\82ðaÇ÷n£\ f,÷\9bn#Ø;½ùðç±\ fÊi\bÙF¬ðÀHyEØí@¤¯9\9b\1a\8c[Ì\93Î\12Üð)\0óAPfPÆ\12ég°\vO\8aS)uÄ"1mx\81\84é\ 1r\ 2\86r\15à¹àHx²\ fb÷ÄZ\86^,×@PeÂ\98«
+\ 5C/½ª\94`\18»\ 2\1e\18Á²G\ 6)ü\187\12³ÔS$\884ë\7fW\94\87\93ì
+\96\9c\18\96c-Èð\rZ\98"Õ\84\97\14+\17`¤1>¤S+\92òl×ÍÝÅ\98·2HH\82(Å\82\vk¸\81hU7à\8fhh\17f\12-îôc ©\1e§N\0ñ¿¿òÑÓ&%\95Áï1\8e*å< k5þª¥Jæô"}ã§j¹°Ù\ eÕ
+¢\ 2\86çÂÅG\99öCÕë±\v\8a®á°x4ç9\95\8c'W|' ð ª\17iÌ4\91\ fÇp7"ó\ 6n\e1³è\ 2ß i4\b \19êª\8c$Û\8d¬dËc¼4ó©\9a\10n\8b\v(\99Ü\16_\87¯×m¾r\0\99
+\8f=ÛÕa÷6+Â×¹\80µI¸>_z Äy<:T\85#[å9&ÞÔ6£¸\11"\8b(KG\ 2ÄõAÈì\9d¨u\r=ñÀD\8d=\87WHê9\80\17ñWÝ\92þS\10;\13_\81¼r)ß\8et\1f\1cD\0\8d\az]桾\1e~s¶an´\86\ 6Cç\8e@¾\90g$´\12q\bx½«\11Ó\8d\13Ýú©Î\96³ò\8a\18D«\85\91\18õ\r\1ecØ\ 2
+@ãI§Ü<\7fýâ\89ÀÃÉTå\1cq\9c\10X\8dÜ´\12õÙåý\1cHIfo4Â\9aËx\ f«\7f2,2ΡHúU|§Ü\19r£m$9\8c\87 âÌv\88\ 1Pp}lÇ\1e< °\1f'\11Üw"Ó¤n\e1Ix1^aa#s\82/\vñOÍ\91¨-¿\9c#\81øTJ\9eW\9e\vç°N?\96#ñà\9dÏ\1fzçë9\12þ\9ck¬ëwîHM½1b%(GQ$\9a\0\88&\b\1cMâ>¤>\ 4\98\vÜ`VN2õ
+\96\96\1c£\8agßIÊÐÀåÒ=ë»y"|G\b¡â+\ 4u\ 2ðªp'cËÕ¤\1eüñvîH\88¹ÞÕw$® ÀÏ\b(\13ð\1dï\98¼\91d3\97Y
+JÚ\ 1ÇY°8à\1eFä\0ØÈÑ\r2)\ 4V\8e¬\13¤\9dÅ¡ \f\90h 1\16Ài"£\86L27\ 4Ò\13å\95±H1 øÒ`¨\81OÊT2+òN\84Æ%B\ 1etöÝØdZ>*!Ñˤ~T\19\8d\84³¯2E\82\12\ 2\9aT\84\0\91E\1aD\98\ 3-éF\99\91'úq\ e\90µ¼vjB¹( e) Å\1cæ«]\9eÚ\f\vîä\8dä´\9eED~XÖµ\97û&\84ÑáexAî\f\99\1e¤p\16\15qMä\19ÂÅÚ\98 òÀCq".\f~f:`Q\93\16\80°vÍgÔ\11¡Ù\91L"AL\85{ÙuóD )\ 5\9aÇ\bÒ95¡\87\99pCó\90\fAÉ^É\ 4;ãV*Ró6\ 2±5qãèR¯sy9¿\96&á\19u\16\9e,bJ\93!\8d\88©\19üV=\88\197\9dTrgÍV\86>}\13\850\14\ 5°`ý`l\96%kN\84|y\92Ê$ÙiwÒë¶\11£Tÿæ+´>-\12\85«ÈBͽÃî/LÙÀ\90õ\96´h\995|XTÑÚ®âAI¢ÃÐÙîÚa¦UØdIÎò$\15Jz¸wñuóDä©\1cUtÎ#I6K¾
+ÍlBó\9f\95eáTÃk\96\85ÙG/?\ 5\v¬}$ËâÁû®öØkO}(ËB\ 2jé"kaB»\ e»j¹ÈvçÔôZ\99\ 3+.\aÖrr9hWé\96.2y\19]d-;h×V<\8a\88ü\12\17Y\99Юòç\1cEvЮó\e>ÝEÖ/ЮÃè\1fBç¸4{JÀèyÕEf\9d=¿ÙÙ\9d\8bLgP<'íØ\11?Û±#~Îß²B\ eñÓ~\98¿ÃõDS^×_<':§â9iyGüleGü´ß²+\8aCü\9c?ltyGüÔ\1d!\9e\13÷\9d\9fí"\eûó¡ãÄ\16àÒ\14ëù\16´ëÖé\83U}Ðôu\17ÙÏ\85þó.²\1fYéó=ЮÖñÅEöþå~ËEÖ\90WQËî"k§ê?\8bØ\0y'Þ\ fØÜ\0|l\ 1\86gTT®V"Db\veÈÐC3òs\1eÒ´!ãF"\92Qùbèµ\eiHÓ\839Ë\9eÈõ]¿¡U q\83½Kݵ¡KÄrÈ(\86þ®ª×Ñ\19¡\8eÑ&)S\v\18\10è\8fí¬¿\1dÁjgPZ5Ä\98Ïú\9aªz5\ 4w\9f[3x\1erVL\91¡o\ fy1ÖªI\92(j\fF^¿5â´\9dê- \93¯¡D\98hÔ\88è\82ÓÆ\91p\ 3Üé\96Ø\88øt÷û\10Ø;ô^t¶a¢\1d\81£° s\14\10 \85£\98%×\0ç\85\9b~|\92\14ãXËy]vs\8e¸ÿ2ä\8e±#â!c]Ä\86\98ÿ#Z\9ax\18Ë\8f9\16\ 4@è\83Ð4±\14\19áx§LA\e\e\14¥âÅÉ(¾\8bc(\17\9e´fÅ\131+î7ª¶eyN\8båfµ\8f8\88n\ e¾Ì°?\8eµYà\11
+·à\83¬ø\9dú-ÝvXþÍ\16£+ä«í²ù\9aFoLÐm¸},v»L\908<ÚÌ\10CÄ\92@ä\9bS5\ 3èñ\8e´N\82#òÃÝïa´Á%ÄÎCÑiqÈs\ eâ0oÜÐþ9\86U82KÍ@|Q\8bѯäuÅ?Õ\vÓÄ`\99ÿÕ\86\ 5®»û\81\17&Â#\82Àñ\97\9f\vñH\8fÒ\88?öÎç\ f½óu/LC9ÃTÔ(é0ÏÇ¡a\81\95¤È¡LÞÂ\1a¥^¼Îì¹Ð4\0±\89µXölGDBs\ 5³NI;\ f-\7fÂ\ 4\93"Û.4\ 1>\12\13\fë
+¶i\9cô\90
+\16\8eÄj×þ·îÃÛF<\ 4H\92½Kd\ 2o2\1a\aQË¡h\98<º\18\7f\9c\97,êyÀ'åxz\vÞs¡iÁs\8a\ 4½a¶\ 3¶m+\1aÊ;\98=xß0©{ÓÔ¼\90xAÓ\10\9f\18ul\8c°\ 3×4F\8a<\1aâ\19VÇk¿~Ù~Ëøo\9e8\8e×qt\88\81l°\948J¹\95_\1e¬ºÙî\9e\99¨Sç;ÙPÓ\e\19%BÔ6½ñÈb'\83§©¼AHË\91\84\83¡úÌ©\0\ 1DoÆ\1c\e;D\18Rë\e\89ßæ\7fÏosÄ1\9b\0»\ 6©Ë¶\84ó\19W[\1c\85´BU'l·oT\fªdI\82S´Ú)\ 64ðÚ0J<?\99X&àD![棶C8O2V\84ü1°µ\15\9cÒp\ 1\87G5\87\8e£ã¶j<éAk\ 6\v\ fv$Y×ã\9e³Þ6â)â\v¤#\1c:³Ôq0\8a¤QâCtæ`\8aÁ0\ 6ÕëÇʺø¦³¤â×óºî\9fç'H÷ÌiiH\ fü\ 4ª$¾üÔPCã#göGÞwUJ_{êÝ~\82Ûó\97_ÿË¿æÿþ/\7fù\1f·ßÿó\8f¿==}ùõ×\7fûý?þø÷¿ýþ¿þ÷\1f\7fûò\1f\7fÿýÿþñËï\7fùË_ÿñû?þø?ã\7fƼþñ÷\7füõo\7füò÷ÿù×ÿ\aÊxÄ\9aÿúë¿ü·ÿúåÿ\ 3\ 3H!^\rendstream\rendobj\r320 0 obj\r[/ICCBased 327 0 R]\rendobj\r5 0 obj\r<</Intent 49 0 R/Name(Layer 1)/Type/OCG/Usage 50 0 R>>\rendobj\r65 0 obj\r<</Intent 108 0 R/Name(Layer 1)/Type/OCG/Usage 109 0 R>>\rendobj\r124 0 obj\r<</Intent 167 0 R/Name(Layer 1)/Type/OCG/Usage 168 0 R>>\rendobj\r183 0 obj\r<</Intent 226 0 R/Name(Layer 1)/Type/OCG/Usage 227 0 R>>\rendobj\r242 0 obj\r<</Intent 285 0 R/Name(Layer 1)/Type/OCG/Usage 286 0 R>>\rendobj\r285 0 obj\r[/View/Design]\rendobj\r286 0 obj\r<</CreatorInfo<</Creator(Adobe Illustrator 16.0)/Subtype/Artwork>>>>\rendobj\r226 0 obj\r[/View/Design]\rendobj\r227 0 obj\r<</CreatorInfo<</Creator(Adobe Illustrator 16.0)/Subtype/Artwork>>>>\rendobj\r167 0 obj\r[/View/Design]\rendobj\r168 0 obj\r<</CreatorInfo<</Creator(Adobe Illustrator 16.0)/Subtype/Artwork>>>>\rendobj\r108 0 obj\r[/View/Design]\rendobj\r109 0 obj\r<</CreatorInfo<</Creator(Adobe Illustrator 16.0)/Subtype/Artwork>>>>\rendobj\r49 0 obj\r[/View/Design]\rendobj\r50 0 obj\r<</CreatorInfo<</Creator(Adobe Illustrator 16.0)/Subtype/Artwork>>>>\rendobj\r305 0 obj\r[304 0 R]\rendobj\r365 0 obj\r<</CreationDate(D:20121126230053Z)/Creator(Adobe Illustrator CS6 \(Macintosh\))/ModDate(D:20121126232020Z)/Producer(Adobe PDF library 10.01)/Title(Letter_Blocks_01)>>\rendobj\rxref\r0 366\r0000000004 65535 f\r
+0000000016 00000 n\r
+0000000224 00000 n\r
+0000070523 00000 n\r
+0000000006 00000 f\r
+0000525099 00000 n\r
+0000000008 00000 f\r
+0000070574 00000 n\r
+0000000009 00000 f\r
+0000000010 00000 f\r
+0000000011 00000 f\r
+0000000012 00000 f\r
+0000000013 00000 f\r
+0000000014 00000 f\r
+0000000015 00000 f\r
+0000000016 00000 f\r
+0000000017 00000 f\r
+0000000018 00000 f\r
+0000000019 00000 f\r
+0000000020 00000 f\r
+0000000021 00000 f\r
+0000000022 00000 f\r
+0000000023 00000 f\r
+0000000024 00000 f\r
+0000000025 00000 f\r
+0000000026 00000 f\r
+0000000027 00000 f\r
+0000000028 00000 f\r
+0000000029 00000 f\r
+0000000030 00000 f\r
+0000000031 00000 f\r
+0000000032 00000 f\r
+0000000033 00000 f\r
+0000000034 00000 f\r
+0000000035 00000 f\r
+0000000036 00000 f\r
+0000000037 00000 f\r
+0000000038 00000 f\r
+0000000039 00000 f\r
+0000000040 00000 f\r
+0000000041 00000 f\r
+0000000042 00000 f\r
+0000000043 00000 f\r
+0000000044 00000 f\r
+0000000045 00000 f\r
+0000000046 00000 f\r
+0000000047 00000 f\r
+0000000048 00000 f\r
+0000000051 00000 f\r
+0000525936 00000 n\r
+0000525967 00000 n\r
+0000000052 00000 f\r
+0000000053 00000 f\r
+0000000054 00000 f\r
+0000000055 00000 f\r
+0000000056 00000 f\r
+0000000057 00000 f\r
+0000000058 00000 f\r
+0000000059 00000 f\r
+0000000060 00000 f\r
+0000000061 00000 f\r
+0000000062 00000 f\r
+0000000063 00000 f\r
+0000000064 00000 f\r
+0000000066 00000 f\r
+0000525169 00000 n\r
+0000000067 00000 f\r
+0000000068 00000 f\r
+0000000069 00000 f\r
+0000000070 00000 f\r
+0000000071 00000 f\r
+0000000072 00000 f\r
+0000000073 00000 f\r
+0000000074 00000 f\r
+0000000075 00000 f\r
+0000000076 00000 f\r
+0000000077 00000 f\r
+0000000078 00000 f\r
+0000000079 00000 f\r
+0000000080 00000 f\r
+0000000081 00000 f\r
+0000000082 00000 f\r
+0000000083 00000 f\r
+0000000084 00000 f\r
+0000000085 00000 f\r
+0000000086 00000 f\r
+0000000087 00000 f\r
+0000000088 00000 f\r
+0000000089 00000 f\r
+0000000090 00000 f\r
+0000000091 00000 f\r
+0000000092 00000 f\r
+0000000093 00000 f\r
+0000000094 00000 f\r
+0000000095 00000 f\r
+0000000096 00000 f\r
+0000000097 00000 f\r
+0000000098 00000 f\r
+0000000099 00000 f\r
+0000000100 00000 f\r
+0000000101 00000 f\r
+0000000102 00000 f\r
+0000000103 00000 f\r
+0000000104 00000 f\r
+0000000105 00000 f\r
+0000000106 00000 f\r
+0000000107 00000 f\r
+0000000110 00000 f\r
+0000525818 00000 n\r
+0000525850 00000 n\r
+0000000111 00000 f\r
+0000000112 00000 f\r
+0000000113 00000 f\r
+0000000114 00000 f\r
+0000000115 00000 f\r
+0000000116 00000 f\r
+0000000117 00000 f\r
+0000000118 00000 f\r
+0000000119 00000 f\r
+0000000120 00000 f\r
+0000000121 00000 f\r
+0000000122 00000 f\r
+0000000123 00000 f\r
+0000000125 00000 f\r
+0000525242 00000 n\r
+0000000126 00000 f\r
+0000000127 00000 f\r
+0000000128 00000 f\r
+0000000129 00000 f\r
+0000000130 00000 f\r
+0000000131 00000 f\r
+0000000132 00000 f\r
+0000000133 00000 f\r
+0000000134 00000 f\r
+0000000135 00000 f\r
+0000000136 00000 f\r
+0000000137 00000 f\r
+0000000138 00000 f\r
+0000000139 00000 f\r
+0000000140 00000 f\r
+0000000141 00000 f\r
+0000000142 00000 f\r
+0000000143 00000 f\r
+0000000144 00000 f\r
+0000000145 00000 f\r
+0000000146 00000 f\r
+0000000147 00000 f\r
+0000000148 00000 f\r
+0000000149 00000 f\r
+0000000150 00000 f\r
+0000000151 00000 f\r
+0000000152 00000 f\r
+0000000153 00000 f\r
+0000000154 00000 f\r
+0000000155 00000 f\r
+0000000156 00000 f\r
+0000000157 00000 f\r
+0000000158 00000 f\r
+0000000159 00000 f\r
+0000000160 00000 f\r
+0000000161 00000 f\r
+0000000162 00000 f\r
+0000000163 00000 f\r
+0000000164 00000 f\r
+0000000165 00000 f\r
+0000000166 00000 f\r
+0000000169 00000 f\r
+0000525700 00000 n\r
+0000525732 00000 n\r
+0000000170 00000 f\r
+0000000171 00000 f\r
+0000000172 00000 f\r
+0000000173 00000 f\r
+0000000174 00000 f\r
+0000000175 00000 f\r
+0000000176 00000 f\r
+0000000177 00000 f\r
+0000000178 00000 f\r
+0000000179 00000 f\r
+0000000180 00000 f\r
+0000000181 00000 f\r
+0000000182 00000 f\r
+0000000184 00000 f\r
+0000525316 00000 n\r
+0000000185 00000 f\r
+0000000186 00000 f\r
+0000000187 00000 f\r
+0000000188 00000 f\r
+0000000189 00000 f\r
+0000000190 00000 f\r
+0000000191 00000 f\r
+0000000192 00000 f\r
+0000000193 00000 f\r
+0000000194 00000 f\r
+0000000195 00000 f\r
+0000000196 00000 f\r
+0000000197 00000 f\r
+0000000198 00000 f\r
+0000000199 00000 f\r
+0000000200 00000 f\r
+0000000201 00000 f\r
+0000000202 00000 f\r
+0000000203 00000 f\r
+0000000204 00000 f\r
+0000000205 00000 f\r
+0000000206 00000 f\r
+0000000207 00000 f\r
+0000000208 00000 f\r
+0000000209 00000 f\r
+0000000210 00000 f\r
+0000000211 00000 f\r
+0000000212 00000 f\r
+0000000213 00000 f\r
+0000000214 00000 f\r
+0000000215 00000 f\r
+0000000216 00000 f\r
+0000000217 00000 f\r
+0000000218 00000 f\r
+0000000219 00000 f\r
+0000000220 00000 f\r
+0000000221 00000 f\r
+0000000222 00000 f\r
+0000000223 00000 f\r
+0000000224 00000 f\r
+0000000225 00000 f\r
+0000000228 00000 f\r
+0000525582 00000 n\r
+0000525614 00000 n\r
+0000000229 00000 f\r
+0000000230 00000 f\r
+0000000231 00000 f\r
+0000000232 00000 f\r
+0000000233 00000 f\r
+0000000234 00000 f\r
+0000000235 00000 f\r
+0000000236 00000 f\r
+0000000237 00000 f\r
+0000000238 00000 f\r
+0000000239 00000 f\r
+0000000240 00000 f\r
+0000000241 00000 f\r
+0000000000 00000 f\r
+0000525390 00000 n\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000525464 00000 n\r
+0000525496 00000 n\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000000000 00000 f\r
+0000080048 00000 n\r
+0000526052 00000 n\r
+0000071059 00000 n\r
+0000072049 00000 n\r
+0000081247 00000 n\r
+0000074171 00000 n\r
+0000078136 00000 n\r
+0000080240 00000 n\r
+0000080354 00000 n\r
+0000078250 00000 n\r
+0000078396 00000 n\r
+0000078542 00000 n\r
+0000078688 00000 n\r
+0000078834 00000 n\r
+0000073469 00000 n\r
+0000072113 00000 n\r
+0000525062 00000 n\r
+0000072905 00000 n\r
+0000072955 00000 n\r
+0000073961 00000 n\r
+0000077160 00000 n\r
+0000074025 00000 n\r
+0000074208 00000 n\r
+0000074511 00000 n\r
+0000074325 00000 n\r
+0000074416 00000 n\r
+0000077277 00000 n\r
+0000077332 00000 n\r
+0000077638 00000 n\r
+0000077716 00000 n\r
+0000077865 00000 n\r
+0000077982 00000 n\r
+0000078057 00000 n\r
+0000079830 00000 n\r
+0000079612 00000 n\r
+0000079390 00000 n\r
+0000079183 00000 n\r
+0000078980 00000 n\r
+0000079077 00000 n\r
+0000079280 00000 n\r
+0000079487 00000 n\r
+0000079709 00000 n\r
+0000079927 00000 n\r
+0000080122 00000 n\r
+0000080154 00000 n\r
+0000080471 00000 n\r
+0000080526 00000 n\r
+0000080844 00000 n\r
+0000080922 00000 n\r
+0000081071 00000 n\r
+0000081168 00000 n\r
+0000081317 00000 n\r
+0000081633 00000 n\r
+0000082644 00000 n\r
+0000106793 00000 n\r
+0000172382 00000 n\r
+0000237971 00000 n\r
+0000303560 00000 n\r
+0000369149 00000 n\r
+0000434738 00000 n\r
+0000500327 00000 n\r
+0000526079 00000 n\r
+trailer\r<</Size 366/Root 1 0 R/Info 365 0 R/ID[<557A79798ED641E4AB064E25C2CDB2EE><2B21A53879304D89994F45A7C395020F>]>>\rstartxref\r526263\r%%EOF\r
\ No newline at end of file
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dldt2lj5y3175"
+path="res://.godot/imported/Number_Blocks_01_Set_1_128x128_0.png-0a54a4b9cdd65b336c16cf4881085e27.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_128x128_0.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_128x128_0.png-0a54a4b9cdd65b336c16cf4881085e27.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://y6ds68qkxryw"
+path="res://.godot/imported/Number_Blocks_01_Set_1_128x128_1.png-d5344d473dae3395574ec32c04a0b95e.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_128x128_1.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_128x128_1.png-d5344d473dae3395574ec32c04a0b95e.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bkht6kukfo1k2"
+path="res://.godot/imported/Number_Blocks_01_Set_1_128x128_2.png-feaada4e775aa89c9651c4de26e00a2b.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_128x128_2.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_128x128_2.png-feaada4e775aa89c9651c4de26e00a2b.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bbhednd0juakr"
+path="res://.godot/imported/Number_Blocks_01_Set_1_128x128_3.png-5e162598aae8597c35e1807c90768539.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_128x128_3.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_128x128_3.png-5e162598aae8597c35e1807c90768539.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://kohlnk3fcpf6"
+path="res://.godot/imported/Number_Blocks_01_Set_1_128x128_4.png-22bc24405b38b1254207864ecf6721e5.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_128x128_4.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_128x128_4.png-22bc24405b38b1254207864ecf6721e5.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://4l7vws601ty1"
+path="res://.godot/imported/Number_Blocks_01_Set_1_128x128_5.png-1eeadd77145fd191bdd7fdfc90d0251b.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_128x128_5.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_128x128_5.png-1eeadd77145fd191bdd7fdfc90d0251b.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://eapipwj5fcg0"
+path="res://.godot/imported/Number_Blocks_01_Set_1_128x128_6.png-c7352f33b6acd339033ae7aaa3e0fd37.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_128x128_6.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_128x128_6.png-c7352f33b6acd339033ae7aaa3e0fd37.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://fnydjkbmdsel"
+path="res://.godot/imported/Number_Blocks_01_Set_1_128x128_7.png-cbf5edb600eeb1f4eadea9f60dc18ae6.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_128x128_7.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_128x128_7.png-cbf5edb600eeb1f4eadea9f60dc18ae6.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cjqli335jqjly"
+path="res://.godot/imported/Number_Blocks_01_Set_1_128x128_8.png-9ccc3c1b2a2101359e027b7f19c73493.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_128x128_8.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_128x128_8.png-9ccc3c1b2a2101359e027b7f19c73493.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dvrcabmedyc44"
+path="res://.godot/imported/Number_Blocks_01_Set_1_128x128_9.png-1123b3017922f65e94c245c2f0b58d38.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_128x128_9.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_128x128_9.png-1123b3017922f65e94c245c2f0b58d38.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b0s7apgwdy4wp"
+path="res://.godot/imported/Number_Blocks_01_Set_1_256x256_0.png-eee631564920a982bc54aef258a49f79.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_256x256_0.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_256x256_0.png-eee631564920a982bc54aef258a49f79.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dyy7dvxsg34ab"
+path="res://.godot/imported/Number_Blocks_01_Set_1_256x256_1.png-b1577c3721eb684421dd8011b79dcd3f.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_256x256_1.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_256x256_1.png-b1577c3721eb684421dd8011b79dcd3f.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://5w7157w57iji"
+path="res://.godot/imported/Number_Blocks_01_Set_1_256x256_2.png-82e0352ec92287e867a540d5720ea631.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_256x256_2.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_256x256_2.png-82e0352ec92287e867a540d5720ea631.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://x3sga6h87nf4"
+path="res://.godot/imported/Number_Blocks_01_Set_1_256x256_3.png-162411b3dd5b62354be0e0611f7ee9c4.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_256x256_3.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_256x256_3.png-162411b3dd5b62354be0e0611f7ee9c4.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dk7a70rnh41xg"
+path="res://.godot/imported/Number_Blocks_01_Set_1_256x256_4.png-edfe0874a71d6eb69c8729adda915a64.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_256x256_4.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_256x256_4.png-edfe0874a71d6eb69c8729adda915a64.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bbs3olaehepc3"
+path="res://.godot/imported/Number_Blocks_01_Set_1_256x256_5.png-ecf52b58c2df3c4d7ad84dd5b7125927.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_256x256_5.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_256x256_5.png-ecf52b58c2df3c4d7ad84dd5b7125927.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cp3qvtxwh5rp5"
+path="res://.godot/imported/Number_Blocks_01_Set_1_256x256_6.png-d20bd7c0fbc56220218a718fd9b58e90.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_256x256_6.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_256x256_6.png-d20bd7c0fbc56220218a718fd9b58e90.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://ce3ivq180yx7x"
+path="res://.godot/imported/Number_Blocks_01_Set_1_256x256_7.png-be7500d146be9debb3d815419de65ddb.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_256x256_7.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_256x256_7.png-be7500d146be9debb3d815419de65ddb.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bn2qfnkxotd4s"
+path="res://.godot/imported/Number_Blocks_01_Set_1_256x256_8.png-ea536274bfe1e35b03312a01c4c83afa.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_256x256_8.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_256x256_8.png-ea536274bfe1e35b03312a01c4c83afa.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cycnix0pkla1l"
+path="res://.godot/imported/Number_Blocks_01_Set_1_256x256_9.png-6aa87eb3af9671fd432c705c6e311c09.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_256x256_9.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_256x256_9.png-6aa87eb3af9671fd432c705c6e311c09.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dcp6jucnmefnu"
+path="res://.godot/imported/Number_Blocks_01_Set_1_512x512_0.png-a819b7e2d1e3f8ff613e70acb9a8d371.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_512x512_0.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_512x512_0.png-a819b7e2d1e3f8ff613e70acb9a8d371.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bddwh1sl7oaqi"
+path="res://.godot/imported/Number_Blocks_01_Set_1_512x512_1.png-0354cd8916951ec222a0d1cab61b82e9.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_512x512_1.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_512x512_1.png-0354cd8916951ec222a0d1cab61b82e9.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dosdpx48q3dum"
+path="res://.godot/imported/Number_Blocks_01_Set_1_512x512_2.png-99ba66e75d7fa760516627e3bcd094ae.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_512x512_2.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_512x512_2.png-99ba66e75d7fa760516627e3bcd094ae.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cr0tdewvcjsa2"
+path="res://.godot/imported/Number_Blocks_01_Set_1_512x512_3.png-4de0743d1b6c63fed9d26c05817413c7.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_512x512_3.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_512x512_3.png-4de0743d1b6c63fed9d26c05817413c7.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://deiqha5s2admv"
+path="res://.godot/imported/Number_Blocks_01_Set_1_512x512_4.png-369855fb99c89a0fd0e16d765b757d4b.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_512x512_4.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_512x512_4.png-369855fb99c89a0fd0e16d765b757d4b.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dufqf34d42kec"
+path="res://.godot/imported/Number_Blocks_01_Set_1_512x512_5.png-f25e72f562e0104cf8bf8384d4b4125d.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_512x512_5.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_512x512_5.png-f25e72f562e0104cf8bf8384d4b4125d.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dxfcyayjxofkp"
+path="res://.godot/imported/Number_Blocks_01_Set_1_512x512_6.png-2fe99e6e1cb0ab34bbd1d0578d77757d.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_512x512_6.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_512x512_6.png-2fe99e6e1cb0ab34bbd1d0578d77757d.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://ckpkcrbyd23ug"
+path="res://.godot/imported/Number_Blocks_01_Set_1_512x512_7.png-94e006c4c085a43c9c9d333fd45f7599.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_512x512_7.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_512x512_7.png-94e006c4c085a43c9c9d333fd45f7599.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cgo8b7jloyu3m"
+path="res://.godot/imported/Number_Blocks_01_Set_1_512x512_8.png-95b5f0ea42058f513b89f31a972d2ead.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_512x512_8.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_512x512_8.png-95b5f0ea42058f513b89f31a972d2ead.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c0uhtxinwwjv1"
+path="res://.godot/imported/Number_Blocks_01_Set_1_512x512_9.png-7e4b421cebeeb21095f7124b277f7ffe.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_512x512_9.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_512x512_9.png-7e4b421cebeeb21095f7124b277f7ffe.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://d2q81r36fqwh"
+path="res://.godot/imported/Number_Blocks_01_Set_1_64x64_0.png-9e9aaf3583611b7b2e5d3b12110891c4.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_64x64_0.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_64x64_0.png-9e9aaf3583611b7b2e5d3b12110891c4.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bk04x64tlsg5c"
+path="res://.godot/imported/Number_Blocks_01_Set_1_64x64_1.png-584a8fac03dd5ffe542b0813d4dc7334.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_64x64_1.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_64x64_1.png-584a8fac03dd5ffe542b0813d4dc7334.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b8mnelboedu4n"
+path="res://.godot/imported/Number_Blocks_01_Set_1_64x64_2.png-faf01fc3cfc5ca57a00e288c6fa38eb8.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_64x64_2.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_64x64_2.png-faf01fc3cfc5ca57a00e288c6fa38eb8.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bi3fcm8wlc0qv"
+path="res://.godot/imported/Number_Blocks_01_Set_1_64x64_3.png-638c1a67a63f7f1f50eb1d2b52689799.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_64x64_3.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_64x64_3.png-638c1a67a63f7f1f50eb1d2b52689799.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://crhmko2n2o1lq"
+path="res://.godot/imported/Number_Blocks_01_Set_1_64x64_4.png-ce284a26576b42cffd3f62756eb94f41.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_64x64_4.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_64x64_4.png-ce284a26576b42cffd3f62756eb94f41.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cg2rbe8ofbh1n"
+path="res://.godot/imported/Number_Blocks_01_Set_1_64x64_5.png-f953b3f2edb4cc13b9a66e5063cd3ed5.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_64x64_5.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_64x64_5.png-f953b3f2edb4cc13b9a66e5063cd3ed5.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cr5k8tj70qsaa"
+path="res://.godot/imported/Number_Blocks_01_Set_1_64x64_6.png-7af6c52ba2501e0af18643fbda287849.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_64x64_6.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_64x64_6.png-7af6c52ba2501e0af18643fbda287849.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://p06ywc0ea2pn"
+path="res://.godot/imported/Number_Blocks_01_Set_1_64x64_7.png-82bcee0b4e1587e26887b7b611f05012.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_64x64_7.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_64x64_7.png-82bcee0b4e1587e26887b7b611f05012.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bja5i6r7xxdvk"
+path="res://.godot/imported/Number_Blocks_01_Set_1_64x64_8.png-634672a7241b4b0bc87d47255b6d7f1b.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_64x64_8.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_64x64_8.png-634672a7241b4b0bc87d47255b6d7f1b.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bdta4ym1cnwpk"
+path="res://.godot/imported/Number_Blocks_01_Set_1_64x64_9.png-727e5002eabc9277cfdd5eb2e5a4f3bb.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_1_64x64_9.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_64x64_9.png-727e5002eabc9277cfdd5eb2e5a4f3bb.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://y2ufv2vrvomp"
+path="res://.godot/imported/Number_Blocks_01_Set_2_128x128_0.png-b17db191db334b6e0e000c1af1b5d035.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_128x128_0.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_128x128_0.png-b17db191db334b6e0e000c1af1b5d035.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://btgox5hjpve8a"
+path="res://.godot/imported/Number_Blocks_01_Set_2_128x128_1.png-3f4f5e0268c125bfaf6f88996fdeb0cb.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_128x128_1.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_128x128_1.png-3f4f5e0268c125bfaf6f88996fdeb0cb.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cl3a6opwuclpm"
+path="res://.godot/imported/Number_Blocks_01_Set_2_128x128_2.png-c358fb86588507a541f000430fc05c53.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_128x128_2.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_128x128_2.png-c358fb86588507a541f000430fc05c53.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b7dw252upaw5v"
+path="res://.godot/imported/Number_Blocks_01_Set_2_128x128_3.png-2f0c5beae3504e1e0e6c8c4d3a17065e.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_128x128_3.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_128x128_3.png-2f0c5beae3504e1e0e6c8c4d3a17065e.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dapvp1l2fu00u"
+path="res://.godot/imported/Number_Blocks_01_Set_2_128x128_4.png-3f7c595d709d4e016d07fa3590c5759b.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_128x128_4.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_128x128_4.png-3f7c595d709d4e016d07fa3590c5759b.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://32lusu3okj5a"
+path="res://.godot/imported/Number_Blocks_01_Set_2_128x128_5.png-7b895be34563c2f6de684714b764dfa4.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_128x128_5.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_128x128_5.png-7b895be34563c2f6de684714b764dfa4.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dkr0bhsah0qv5"
+path="res://.godot/imported/Number_Blocks_01_Set_2_128x128_6.png-55ab2514d871d8385de051b4731fb163.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_128x128_6.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_128x128_6.png-55ab2514d871d8385de051b4731fb163.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bwapgkw8ij146"
+path="res://.godot/imported/Number_Blocks_01_Set_2_128x128_7.png-29b698f583770406138cc7e38de7db24.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_128x128_7.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_128x128_7.png-29b698f583770406138cc7e38de7db24.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dookske74wc18"
+path="res://.godot/imported/Number_Blocks_01_Set_2_128x128_8.png-e12f3f6520016350636c44455a6aa49d.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_128x128_8.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_128x128_8.png-e12f3f6520016350636c44455a6aa49d.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cdtaadaugnitk"
+path="res://.godot/imported/Number_Blocks_01_Set_2_128x128_9.png-6bdac62b6960e29f7a6dc996c12ada33.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_128x128_9.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_128x128_9.png-6bdac62b6960e29f7a6dc996c12ada33.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://t5xxbocen1ww"
+path="res://.godot/imported/Number_Blocks_01_Set_2_256x256_0.png-160903072c2385aa6011658e5f1bf3ee.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_256x256_0.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_256x256_0.png-160903072c2385aa6011658e5f1bf3ee.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cuchrph1u8ksi"
+path="res://.godot/imported/Number_Blocks_01_Set_2_256x256_1.png-ad4dd211e6c14576643865550de43d6c.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_256x256_1.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_256x256_1.png-ad4dd211e6c14576643865550de43d6c.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://0sosa0qccao7"
+path="res://.godot/imported/Number_Blocks_01_Set_2_256x256_2.png-09fd4f95b395d2ffaa0df5f4ae8539d8.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_256x256_2.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_256x256_2.png-09fd4f95b395d2ffaa0df5f4ae8539d8.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dr2i7lnk0d6op"
+path="res://.godot/imported/Number_Blocks_01_Set_2_256x256_3.png-ff0d956ff9baff78a4a3e812bc77e468.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_256x256_3.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_256x256_3.png-ff0d956ff9baff78a4a3e812bc77e468.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://nvf3mw0b1tc"
+path="res://.godot/imported/Number_Blocks_01_Set_2_256x256_4.png-22e4805511332881fb1194f1d4b30289.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_256x256_4.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_256x256_4.png-22e4805511332881fb1194f1d4b30289.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://f8jxxg4boxj7"
+path="res://.godot/imported/Number_Blocks_01_Set_2_256x256_5.png-0e815097ff7f70836009ff0d6773a11c.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_256x256_5.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_256x256_5.png-0e815097ff7f70836009ff0d6773a11c.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://csdksnnuyxgxi"
+path="res://.godot/imported/Number_Blocks_01_Set_2_256x256_6.png-023fe35d252132c5310e6da36310123c.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_256x256_6.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_256x256_6.png-023fe35d252132c5310e6da36310123c.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dgc017fl1iw7v"
+path="res://.godot/imported/Number_Blocks_01_Set_2_256x256_7.png-2a8b38cb657bec55cd1223b045547e43.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_256x256_7.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_256x256_7.png-2a8b38cb657bec55cd1223b045547e43.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://6da6i58launb"
+path="res://.godot/imported/Number_Blocks_01_Set_2_256x256_8.png-f8dada64b1fbcb787d174061af7e8616.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_256x256_8.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_256x256_8.png-f8dada64b1fbcb787d174061af7e8616.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://byv7fda4vjscy"
+path="res://.godot/imported/Number_Blocks_01_Set_2_256x256_9.png-df0fada68129a891797fe58fb3a03a9b.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_256x256_9.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_256x256_9.png-df0fada68129a891797fe58fb3a03a9b.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://ccysrctugture"
+path="res://.godot/imported/Number_Blocks_01_Set_2_512x512_0.png-539118e1d555f1ad4a1ffcd82ea43364.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_512x512_0.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_512x512_0.png-539118e1d555f1ad4a1ffcd82ea43364.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bp8xuq3gmgnce"
+path="res://.godot/imported/Number_Blocks_01_Set_2_512x512_1.png-e8ba9c800a7562ba4dd69661bad8c104.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_512x512_1.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_512x512_1.png-e8ba9c800a7562ba4dd69661bad8c104.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cuoktbhqywm0a"
+path="res://.godot/imported/Number_Blocks_01_Set_2_512x512_2.png-f1647fc943d3b2e91a6b4a995f17ae8c.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_512x512_2.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_512x512_2.png-f1647fc943d3b2e91a6b4a995f17ae8c.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://vcsk74b8l5n7"
+path="res://.godot/imported/Number_Blocks_01_Set_2_512x512_3.png-676d82fce189ccf9cb052b13389dac86.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_512x512_3.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_512x512_3.png-676d82fce189ccf9cb052b13389dac86.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c3pjmiugaenh5"
+path="res://.godot/imported/Number_Blocks_01_Set_2_512x512_4.png-814d808ea64d8f6d403f0aae4b45a0f6.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_512x512_4.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_512x512_4.png-814d808ea64d8f6d403f0aae4b45a0f6.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://32fki45est7l"
+path="res://.godot/imported/Number_Blocks_01_Set_2_512x512_5.png-2affbb215003a3670c7308e7c801c3c3.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_512x512_5.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_512x512_5.png-2affbb215003a3670c7308e7c801c3c3.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://drsywad5v60fa"
+path="res://.godot/imported/Number_Blocks_01_Set_2_512x512_6.png-27851b6a93220da978b4e22d307545d1.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_512x512_6.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_512x512_6.png-27851b6a93220da978b4e22d307545d1.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://rcd0fubjkak8"
+path="res://.godot/imported/Number_Blocks_01_Set_2_512x512_7.png-4598fa47fa0372ac0800f7c92bef546b.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_512x512_7.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_512x512_7.png-4598fa47fa0372ac0800f7c92bef546b.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://6ekyc6q7lj7a"
+path="res://.godot/imported/Number_Blocks_01_Set_2_512x512_8.png-b3705b546c861da71d9d954cb0489cc7.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_512x512_8.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_512x512_8.png-b3705b546c861da71d9d954cb0489cc7.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cfb7kqup0fm5u"
+path="res://.godot/imported/Number_Blocks_01_Set_2_512x512_9.png-7aa2815cb5677e1255e3bc84e152f0a4.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_512x512_9.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_512x512_9.png-7aa2815cb5677e1255e3bc84e152f0a4.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://o5hjqhqsynff"
+path="res://.godot/imported/Number_Blocks_01_Set_2_64x64_0.png-b4239fae58f3fc6cf4f6cae13519aecd.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_64x64_0.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_64x64_0.png-b4239fae58f3fc6cf4f6cae13519aecd.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cemrxyqfqyxof"
+path="res://.godot/imported/Number_Blocks_01_Set_2_64x64_1.png-faf9c8c61d4d09740b1b8ee2400f47b2.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_64x64_1.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_64x64_1.png-faf9c8c61d4d09740b1b8ee2400f47b2.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b6tjukmbqd0u2"
+path="res://.godot/imported/Number_Blocks_01_Set_2_64x64_2.png-caccd1247999dfaffbaacf42acde1bb3.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_64x64_2.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_64x64_2.png-caccd1247999dfaffbaacf42acde1bb3.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cmp242sr0ck3i"
+path="res://.godot/imported/Number_Blocks_01_Set_2_64x64_3.png-e86de25526443d4604e7c15f3449bf79.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_64x64_3.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_64x64_3.png-e86de25526443d4604e7c15f3449bf79.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bivgemtn7lb8r"
+path="res://.godot/imported/Number_Blocks_01_Set_2_64x64_4.png-00206b56de83d3e04564b7afc74d3420.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_64x64_4.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_64x64_4.png-00206b56de83d3e04564b7afc74d3420.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dqyueosta7ngq"
+path="res://.godot/imported/Number_Blocks_01_Set_2_64x64_5.png-f93905d30b517a86bb7e7ca5c67bf1d4.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_64x64_5.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_64x64_5.png-f93905d30b517a86bb7e7ca5c67bf1d4.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://ckfwd77jy1xyj"
+path="res://.godot/imported/Number_Blocks_01_Set_2_64x64_6.png-23ec846a7ecca32a4cf5d7192d4a99dc.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_64x64_6.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_64x64_6.png-23ec846a7ecca32a4cf5d7192d4a99dc.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dckvrpsqnr141"
+path="res://.godot/imported/Number_Blocks_01_Set_2_64x64_7.png-371ad71059f638c6d07428b4a811e3ac.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_64x64_7.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_64x64_7.png-371ad71059f638c6d07428b4a811e3ac.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dghpwfipig156"
+path="res://.godot/imported/Number_Blocks_01_Set_2_64x64_8.png-b799798f485b2819836c3bcb82245aa7.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_64x64_8.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_64x64_8.png-b799798f485b2819836c3bcb82245aa7.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bsyrainjdm8qi"
+path="res://.godot/imported/Number_Blocks_01_Set_2_64x64_9.png-ad804b4ebce2eab565b592a3b5d280fd.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_2_64x64_9.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_64x64_9.png-ad804b4ebce2eab565b592a3b5d280fd.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dum2gpnjd8tmc"
+path="res://.godot/imported/Number_Blocks_01_Set_3_128x128_0.png-9c28b104fcad7106b33ac7526671dda5.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_128x128_0.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_128x128_0.png-9c28b104fcad7106b33ac7526671dda5.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://d2ps1vprrimca"
+path="res://.godot/imported/Number_Blocks_01_Set_3_128x128_1.png-668c9b9333b265a66b10862073a8a620.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_128x128_1.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_128x128_1.png-668c9b9333b265a66b10862073a8a620.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cdcfmrsg5xorj"
+path="res://.godot/imported/Number_Blocks_01_Set_3_128x128_2.png-19d9eec0385fff9d2237003ffbeac118.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_128x128_2.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_128x128_2.png-19d9eec0385fff9d2237003ffbeac118.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://6ywjtpy42rou"
+path="res://.godot/imported/Number_Blocks_01_Set_3_128x128_3.png-9cd534be086364f14d7f66a861bb4d36.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_128x128_3.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_128x128_3.png-9cd534be086364f14d7f66a861bb4d36.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cfi2oymhah7dt"
+path="res://.godot/imported/Number_Blocks_01_Set_3_128x128_4.png-7d8a8608f82817d9d244fb99afd9eb81.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_128x128_4.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_128x128_4.png-7d8a8608f82817d9d244fb99afd9eb81.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dcxwdw56ley2d"
+path="res://.godot/imported/Number_Blocks_01_Set_3_128x128_5.png-ab35d630220821971e806783888ceeec.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_128x128_5.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_128x128_5.png-ab35d630220821971e806783888ceeec.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://ch51xfkn2y4xt"
+path="res://.godot/imported/Number_Blocks_01_Set_3_128x128_6.png-3abe19797deb42684d97227f19326012.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_128x128_6.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_128x128_6.png-3abe19797deb42684d97227f19326012.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://xrb67wtmp8s"
+path="res://.godot/imported/Number_Blocks_01_Set_3_128x128_7.png-f82ee1327340abb42e2d4f756f4e4644.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_128x128_7.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_128x128_7.png-f82ee1327340abb42e2d4f756f4e4644.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://byc1lqdvxkvdv"
+path="res://.godot/imported/Number_Blocks_01_Set_3_128x128_8.png-d7473973f151ee229d0aa841e3f10486.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_128x128_8.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_128x128_8.png-d7473973f151ee229d0aa841e3f10486.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cmlof7vqsqx8s"
+path="res://.godot/imported/Number_Blocks_01_Set_3_128x128_9.png-c3272de4a02049e213428be7067dcb9f.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_128x128_9.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_128x128_9.png-c3272de4a02049e213428be7067dcb9f.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c3onl3yxic4wq"
+path="res://.godot/imported/Number_Blocks_01_Set_3_256x256_0.png-49c3104dfdf5eeb1696aede325b94e41.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_256x256_0.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_256x256_0.png-49c3104dfdf5eeb1696aede325b94e41.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://crwm4yjvh6bkp"
+path="res://.godot/imported/Number_Blocks_01_Set_3_256x256_1.png-48f80ef6ad479e9baff986afe146446c.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_256x256_1.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_256x256_1.png-48f80ef6ad479e9baff986afe146446c.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://foqbytdww0j8"
+path="res://.godot/imported/Number_Blocks_01_Set_3_256x256_2.png-dd78f3fd5593af7efca2328a40209e27.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_256x256_2.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_256x256_2.png-dd78f3fd5593af7efca2328a40209e27.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://ddkfmqw7e8nbb"
+path="res://.godot/imported/Number_Blocks_01_Set_3_256x256_3.png-3285450958b7a444eec7366ed844640c.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_256x256_3.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_256x256_3.png-3285450958b7a444eec7366ed844640c.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c8hf00ybjgmm4"
+path="res://.godot/imported/Number_Blocks_01_Set_3_256x256_4.png-77f0fa2c714ff87a84608f19edb6f63b.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_256x256_4.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_256x256_4.png-77f0fa2c714ff87a84608f19edb6f63b.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b208us0ettddm"
+path="res://.godot/imported/Number_Blocks_01_Set_3_256x256_5.png-01f7aee8b7cb7f78e93c1693c64e67d1.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_256x256_5.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_256x256_5.png-01f7aee8b7cb7f78e93c1693c64e67d1.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://86ow5ux64sdw"
+path="res://.godot/imported/Number_Blocks_01_Set_3_256x256_6.png-e5c50b5d947ebc83e0540ea7e9310f9b.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_256x256_6.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_256x256_6.png-e5c50b5d947ebc83e0540ea7e9310f9b.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://qseb2ch186iy"
+path="res://.godot/imported/Number_Blocks_01_Set_3_256x256_7.png-f29cb37a961435970f03e49bdaeb594c.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_256x256_7.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_256x256_7.png-f29cb37a961435970f03e49bdaeb594c.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dcn5r5lhli7ck"
+path="res://.godot/imported/Number_Blocks_01_Set_3_256x256_8.png-03e6c5f4c55a9485dcf179e8b007b073.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_256x256_8.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_256x256_8.png-03e6c5f4c55a9485dcf179e8b007b073.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bimtrjlm2pots"
+path="res://.godot/imported/Number_Blocks_01_Set_3_256x256_9.png-c2d4d86959e9d3b33201762a7ec659ce.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_256x256_9.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_256x256_9.png-c2d4d86959e9d3b33201762a7ec659ce.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://blu12vqmjj25c"
+path="res://.godot/imported/Number_Blocks_01_Set_3_512x512_0.png-7017f321270b8893a46044e2aaa31b27.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_512x512_0.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_512x512_0.png-7017f321270b8893a46044e2aaa31b27.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://gddnrimfr72p"
+path="res://.godot/imported/Number_Blocks_01_Set_3_512x512_1.png-865cf8c47225d4525c30c8d00e8d6a1a.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_512x512_1.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_512x512_1.png-865cf8c47225d4525c30c8d00e8d6a1a.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c4jijnhh18ib8"
+path="res://.godot/imported/Number_Blocks_01_Set_3_512x512_2.png-55f65d6821e9e516aa21a129ad91d20f.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_512x512_2.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_512x512_2.png-55f65d6821e9e516aa21a129ad91d20f.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cddkd2al244ra"
+path="res://.godot/imported/Number_Blocks_01_Set_3_512x512_3.png-4987a55964cedac33f19ec4de94b58a0.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_512x512_3.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_512x512_3.png-4987a55964cedac33f19ec4de94b58a0.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bviboccqqfvvp"
+path="res://.godot/imported/Number_Blocks_01_Set_3_512x512_4.png-243045f7b30982a19df355038b5db42f.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_512x512_4.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_512x512_4.png-243045f7b30982a19df355038b5db42f.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b4iysit0kq2ax"
+path="res://.godot/imported/Number_Blocks_01_Set_3_512x512_5.png-64363cfa689235f13ff6f40e63b26c42.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_512x512_5.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_512x512_5.png-64363cfa689235f13ff6f40e63b26c42.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dgvekrnsidghb"
+path="res://.godot/imported/Number_Blocks_01_Set_3_512x512_6.png-422e3ff0bedd2a99a5fcff1515652b33.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_512x512_6.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_512x512_6.png-422e3ff0bedd2a99a5fcff1515652b33.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bvvei3g833jnn"
+path="res://.godot/imported/Number_Blocks_01_Set_3_512x512_7.png-3349845554b88ecc2934979fee22e28a.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_512x512_7.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_512x512_7.png-3349845554b88ecc2934979fee22e28a.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://byop3ihb2h452"
+path="res://.godot/imported/Number_Blocks_01_Set_3_512x512_8.png-239bcf4f3cdf3327a1323e8658280cab.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_512x512_8.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_512x512_8.png-239bcf4f3cdf3327a1323e8658280cab.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dj3jlhcxmehyx"
+path="res://.godot/imported/Number_Blocks_01_Set_3_512x512_9.png-0b3f77106d39e10780d49539de7ff51f.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_512x512_9.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_512x512_9.png-0b3f77106d39e10780d49539de7ff51f.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cwmqdo1rhp75"
+path="res://.godot/imported/Number_Blocks_01_Set_3_64x64_0.png-73a861eebaeffe81d18149791c28ea91.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_64x64_0.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_64x64_0.png-73a861eebaeffe81d18149791c28ea91.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bkhy4inleensl"
+path="res://.godot/imported/Number_Blocks_01_Set_3_64x64_1.png-532f01eff811ddc40b0ede96bd220092.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_64x64_1.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_64x64_1.png-532f01eff811ddc40b0ede96bd220092.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://lpjbcmu5csjx"
+path="res://.godot/imported/Number_Blocks_01_Set_3_64x64_2.png-69ad3d0d6b31ea7269860edd190fdba2.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_64x64_2.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_64x64_2.png-69ad3d0d6b31ea7269860edd190fdba2.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://2nnpjouyxvq2"
+path="res://.godot/imported/Number_Blocks_01_Set_3_64x64_3.png-5f7333e6121c9d7cfea64e3b6df92a21.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_64x64_3.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_64x64_3.png-5f7333e6121c9d7cfea64e3b6df92a21.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bjiku3d6qqmjj"
+path="res://.godot/imported/Number_Blocks_01_Set_3_64x64_4.png-13dbdab91d86cc16189cfa253828d844.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_64x64_4.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_64x64_4.png-13dbdab91d86cc16189cfa253828d844.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b1ukt5jpoqtnv"
+path="res://.godot/imported/Number_Blocks_01_Set_3_64x64_5.png-22f97088a7d3ff65431c7dadbbe9bbd9.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_64x64_5.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_64x64_5.png-22f97088a7d3ff65431c7dadbbe9bbd9.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b5hcfgoykyiey"
+path="res://.godot/imported/Number_Blocks_01_Set_3_64x64_6.png-4ef947a23ed3f21f9d0c4c74116f076a.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_64x64_6.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_64x64_6.png-4ef947a23ed3f21f9d0c4c74116f076a.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://d1qi3bot1xa2y"
+path="res://.godot/imported/Number_Blocks_01_Set_3_64x64_7.png-c443e2f1d1eabcd87c0523da082de6a8.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_64x64_7.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_64x64_7.png-c443e2f1d1eabcd87c0523da082de6a8.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bmx25jymjtifr"
+path="res://.godot/imported/Number_Blocks_01_Set_3_64x64_8.png-482df3d0307ad24369ac20d538d17aa6.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_64x64_8.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_64x64_8.png-482df3d0307ad24369ac20d538d17aa6.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dxnp32orr4wcv"
+path="res://.godot/imported/Number_Blocks_01_Set_3_64x64_9.png-03ddda1d26a857b1824e2951c703f76b.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_3_64x64_9.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_64x64_9.png-03ddda1d26a857b1824e2951c703f76b.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://ckawnpg5bj5w2"
+path="res://.godot/imported/Number_Blocks_01_Set_4_128x128_0.png-d803d49b77ec09b6ec1bf215bb83d604.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_128x128_0.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_128x128_0.png-d803d49b77ec09b6ec1bf215bb83d604.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dpvaxhfxproqo"
+path="res://.godot/imported/Number_Blocks_01_Set_4_128x128_1.png-812fd80010d3efeada380734e1d260b7.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_128x128_1.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_128x128_1.png-812fd80010d3efeada380734e1d260b7.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dcwpkolj1vd2a"
+path="res://.godot/imported/Number_Blocks_01_Set_4_128x128_2.png-70091d706fa7152f1644f0bd1d3157e5.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_128x128_2.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_128x128_2.png-70091d706fa7152f1644f0bd1d3157e5.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://se3qiu7sopdq"
+path="res://.godot/imported/Number_Blocks_01_Set_4_128x128_3.png-e8f93cdef2842b8f5d46abbecc70c700.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_128x128_3.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_128x128_3.png-e8f93cdef2842b8f5d46abbecc70c700.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cn1pip0tomu2k"
+path="res://.godot/imported/Number_Blocks_01_Set_4_128x128_4.png-3fdca27a7ecf804e1c36beaf4b869de2.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_128x128_4.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_128x128_4.png-3fdca27a7ecf804e1c36beaf4b869de2.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dgdn6cl23q87g"
+path="res://.godot/imported/Number_Blocks_01_Set_4_128x128_5.png-dd3d9a3df7bdf6c3b00a2f31bc65ab97.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_128x128_5.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_128x128_5.png-dd3d9a3df7bdf6c3b00a2f31bc65ab97.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://chqvj147e3ej2"
+path="res://.godot/imported/Number_Blocks_01_Set_4_128x128_6.png-9fc04e91bb2e43de9d8be0aa569a0865.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_128x128_6.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_128x128_6.png-9fc04e91bb2e43de9d8be0aa569a0865.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://ceo30xwfj8u28"
+path="res://.godot/imported/Number_Blocks_01_Set_4_128x128_7.png-5648c124f154dd282fddfefd23780087.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_128x128_7.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_128x128_7.png-5648c124f154dd282fddfefd23780087.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://beuc66yp57ju3"
+path="res://.godot/imported/Number_Blocks_01_Set_4_128x128_8.png-5e415abc3c35a4726fddbd314a3c58cc.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_128x128_8.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_128x128_8.png-5e415abc3c35a4726fddbd314a3c58cc.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://wjw4hi7du14g"
+path="res://.godot/imported/Number_Blocks_01_Set_4_128x128_9.png-2130ac12ed824c13a9c2d3d3b61b1c59.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_128x128_9.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_128x128_9.png-2130ac12ed824c13a9c2d3d3b61b1c59.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cy3fbp8pvv14"
+path="res://.godot/imported/Number_Blocks_01_Set_4_256x256_0.png-0fbcf47d31e3d10ae9d878e98dff1023.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_256x256_0.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_256x256_0.png-0fbcf47d31e3d10ae9d878e98dff1023.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bphe3h3uya014"
+path="res://.godot/imported/Number_Blocks_01_Set_4_256x256_1.png-ff57c0f3828750cfd203d8dd04b7fc99.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_256x256_1.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_256x256_1.png-ff57c0f3828750cfd203d8dd04b7fc99.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://det2gaxl2rq35"
+path="res://.godot/imported/Number_Blocks_01_Set_4_256x256_2.png-f2caacb15aebe675d03950b87b860b69.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_256x256_2.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_256x256_2.png-f2caacb15aebe675d03950b87b860b69.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://btglpot1xch6e"
+path="res://.godot/imported/Number_Blocks_01_Set_4_256x256_3.png-7dc4d73c0682de24a711b87bdeb1d0eb.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_256x256_3.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_256x256_3.png-7dc4d73c0682de24a711b87bdeb1d0eb.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dj3v38t3b7nmi"
+path="res://.godot/imported/Number_Blocks_01_Set_4_256x256_4.png-c66810ec30d0b2642c6f667e73f23c09.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_256x256_4.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_256x256_4.png-c66810ec30d0b2642c6f667e73f23c09.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bxaquix03esoc"
+path="res://.godot/imported/Number_Blocks_01_Set_4_256x256_5.png-0f5521e9fa66dca58924f4f9a5dd5160.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_256x256_5.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_256x256_5.png-0f5521e9fa66dca58924f4f9a5dd5160.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bgksylt0xs2cm"
+path="res://.godot/imported/Number_Blocks_01_Set_4_256x256_6.png-e2539d8f5dee6528532543f6407cbdd4.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_256x256_6.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_256x256_6.png-e2539d8f5dee6528532543f6407cbdd4.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://ckvgaebfgpif0"
+path="res://.godot/imported/Number_Blocks_01_Set_4_256x256_7.png-c61ed0edbe86c01ca2b68b0fca50ed6a.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_256x256_7.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_256x256_7.png-c61ed0edbe86c01ca2b68b0fca50ed6a.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dsxgf0g2v7sof"
+path="res://.godot/imported/Number_Blocks_01_Set_4_256x256_8.png-eb2c58456e5d2d96528ce605a1ba7f99.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_256x256_8.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_256x256_8.png-eb2c58456e5d2d96528ce605a1ba7f99.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cc7q5oshdkdpq"
+path="res://.godot/imported/Number_Blocks_01_Set_4_256x256_9.png-a74a3ee5e6d79af549d146d813c9703c.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_256x256_9.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_256x256_9.png-a74a3ee5e6d79af549d146d813c9703c.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://o3y4p0xyhu2m"
+path="res://.godot/imported/Number_Blocks_01_Set_4_512x512_0.png-b9790b9a48c77a40bce32ee51e4e0ea4.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_512x512_0.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_512x512_0.png-b9790b9a48c77a40bce32ee51e4e0ea4.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://n0h5uyarx7ni"
+path="res://.godot/imported/Number_Blocks_01_Set_4_512x512_1.png-b85645ae0a68e0115b740b214e4e5294.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_512x512_1.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_512x512_1.png-b85645ae0a68e0115b740b214e4e5294.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cfvy1lacdgdfl"
+path="res://.godot/imported/Number_Blocks_01_Set_4_512x512_2.png-47023bdcc6d32fa0d6021eb25c999a8b.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_512x512_2.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_512x512_2.png-47023bdcc6d32fa0d6021eb25c999a8b.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c5ex3rk1wqgbc"
+path="res://.godot/imported/Number_Blocks_01_Set_4_512x512_3.png-41d47cafc7d32ff3907eba6cb3f9fe35.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_512x512_3.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_512x512_3.png-41d47cafc7d32ff3907eba6cb3f9fe35.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bgn0t7lr2b3le"
+path="res://.godot/imported/Number_Blocks_01_Set_4_512x512_4.png-136672aed08608c39c384b6bf7ed4a12.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_512x512_4.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_512x512_4.png-136672aed08608c39c384b6bf7ed4a12.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bih1pwfw3jmuj"
+path="res://.godot/imported/Number_Blocks_01_Set_4_512x512_5.png-898e2c0340b77d41ef97f9b3e1fb4bfc.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_512x512_5.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_512x512_5.png-898e2c0340b77d41ef97f9b3e1fb4bfc.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://du1m0w2qp1lyg"
+path="res://.godot/imported/Number_Blocks_01_Set_4_512x512_6.png-96882e4fa50d2a716191a089af6f861d.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_512x512_6.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_512x512_6.png-96882e4fa50d2a716191a089af6f861d.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bkxugnrxjpvti"
+path="res://.godot/imported/Number_Blocks_01_Set_4_512x512_7.png-16a468768acb9104f4eb84d4ad613830.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_512x512_7.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_512x512_7.png-16a468768acb9104f4eb84d4ad613830.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://coll8yedlbsee"
+path="res://.godot/imported/Number_Blocks_01_Set_4_512x512_8.png-000386f569208bf7e304d9d80d33f05e.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_512x512_8.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_512x512_8.png-000386f569208bf7e304d9d80d33f05e.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://tx0noduppx84"
+path="res://.godot/imported/Number_Blocks_01_Set_4_512x512_9.png-76d437ac4c69d4ad52149d6f829ae30e.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_512x512_9.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_512x512_9.png-76d437ac4c69d4ad52149d6f829ae30e.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://5txkllafv2w4"
+path="res://.godot/imported/Number_Blocks_01_Set_4_64x64_0.png-8eef156b38c0a08bd7837539518c9cbe.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_64x64_0.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_64x64_0.png-8eef156b38c0a08bd7837539518c9cbe.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cjtmreeuiqnhq"
+path="res://.godot/imported/Number_Blocks_01_Set_4_64x64_1.png-c955b119497ce7466fe66840f025255f.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_64x64_1.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_64x64_1.png-c955b119497ce7466fe66840f025255f.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bkrtlbygwbowl"
+path="res://.godot/imported/Number_Blocks_01_Set_4_64x64_2.png-4ae02da535f9a6d0befe4355b0c79272.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_64x64_2.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_64x64_2.png-4ae02da535f9a6d0befe4355b0c79272.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b4t1c804egll3"
+path="res://.godot/imported/Number_Blocks_01_Set_4_64x64_3.png-4890132d208d87e06c4d831fa460c24f.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_64x64_3.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_64x64_3.png-4890132d208d87e06c4d831fa460c24f.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dq8qk74hq07np"
+path="res://.godot/imported/Number_Blocks_01_Set_4_64x64_4.png-8da48946d7f10c9929909a32dad0d53d.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_64x64_4.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_64x64_4.png-8da48946d7f10c9929909a32dad0d53d.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://wm36aurgw1c1"
+path="res://.godot/imported/Number_Blocks_01_Set_4_64x64_5.png-c4690c475fbc768c0fe304f55f7bde12.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_64x64_5.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_64x64_5.png-c4690c475fbc768c0fe304f55f7bde12.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c4ax4sfqpc12u"
+path="res://.godot/imported/Number_Blocks_01_Set_4_64x64_6.png-6000fd00dba3dc8cd7693a81291c78b1.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_64x64_6.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_64x64_6.png-6000fd00dba3dc8cd7693a81291c78b1.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bawbw837i671g"
+path="res://.godot/imported/Number_Blocks_01_Set_4_64x64_7.png-2db0ca6a46891e3a99dea611bbe332d0.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_64x64_7.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_64x64_7.png-2db0ca6a46891e3a99dea611bbe332d0.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://oygtpqx5rkc"
+path="res://.godot/imported/Number_Blocks_01_Set_4_64x64_8.png-f91aae2094b0739809a02987e8d539b3.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_64x64_8.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_64x64_8.png-f91aae2094b0739809a02987e8d539b3.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://85blooa3ysch"
+path="res://.godot/imported/Number_Blocks_01_Set_4_64x64_9.png-005a28f5055782b3383ebcc70dc30df9.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_4_64x64_9.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_64x64_9.png-005a28f5055782b3383ebcc70dc30df9.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bomqpfup1ndga"
+path="res://.godot/imported/Number_Blocks_01_Set_5_128x128_0.png-464a95ce88c51823fabcf6ebabbf3998.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_128x128_0.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_128x128_0.png-464a95ce88c51823fabcf6ebabbf3998.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://0m1v47mat01c"
+path="res://.godot/imported/Number_Blocks_01_Set_5_128x128_1.png-8592abb2f38118f09a644e47ee30af7b.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_128x128_1.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_128x128_1.png-8592abb2f38118f09a644e47ee30af7b.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cu8tgbrafmf00"
+path="res://.godot/imported/Number_Blocks_01_Set_5_128x128_2.png-6361226256a2020864cc8242b7d7c745.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_128x128_2.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_128x128_2.png-6361226256a2020864cc8242b7d7c745.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://03pns4v88aog"
+path="res://.godot/imported/Number_Blocks_01_Set_5_128x128_3.png-81d643e2973320ad5b92ff77b7a4c35a.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_128x128_3.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_128x128_3.png-81d643e2973320ad5b92ff77b7a4c35a.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://4a18t71vupf4"
+path="res://.godot/imported/Number_Blocks_01_Set_5_128x128_4.png-fbe98d35fb020977c4484013e0c87999.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_128x128_4.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_128x128_4.png-fbe98d35fb020977c4484013e0c87999.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://st33u7mme4ws"
+path="res://.godot/imported/Number_Blocks_01_Set_5_128x128_5.png-a05eb8e67162e593c7bffb454784b92b.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_128x128_5.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_128x128_5.png-a05eb8e67162e593c7bffb454784b92b.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://oe63gcoihq3o"
+path="res://.godot/imported/Number_Blocks_01_Set_5_128x128_6.png-5ec6aab0c9e4e4af94d96f68b98c2214.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_128x128_6.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_128x128_6.png-5ec6aab0c9e4e4af94d96f68b98c2214.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://crrbqcb5uos6m"
+path="res://.godot/imported/Number_Blocks_01_Set_5_128x128_7.png-ae091248cdef1ef1e59be9bdd8278d83.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_128x128_7.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_128x128_7.png-ae091248cdef1ef1e59be9bdd8278d83.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bkvjvhh1mpxg4"
+path="res://.godot/imported/Number_Blocks_01_Set_5_128x128_8.png-ce7825cacc2ed4514b87d08adf86ffe4.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_128x128_8.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_128x128_8.png-ce7825cacc2ed4514b87d08adf86ffe4.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://2fgtj2jcdnmh"
+path="res://.godot/imported/Number_Blocks_01_Set_5_128x128_9.png-3c568133073ca509f171930e75f06929.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_128x128_9.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_128x128_9.png-3c568133073ca509f171930e75f06929.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cdcsrqgc7fqf8"
+path="res://.godot/imported/Number_Blocks_01_Set_5_256x256_0.png-aa0c1b4697cc8f928c2e66419d49b6e4.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_256x256_0.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_256x256_0.png-aa0c1b4697cc8f928c2e66419d49b6e4.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dab5qhmesdu8d"
+path="res://.godot/imported/Number_Blocks_01_Set_5_256x256_1.png-c584c94f48b856c0c050bec47a33d24f.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_256x256_1.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_256x256_1.png-c584c94f48b856c0c050bec47a33d24f.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://drdtigoltw7k6"
+path="res://.godot/imported/Number_Blocks_01_Set_5_256x256_2.png-5c437a8bdea9ec5712d580dbea07d49b.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_256x256_2.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_256x256_2.png-5c437a8bdea9ec5712d580dbea07d49b.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dvhlvbig5n3k3"
+path="res://.godot/imported/Number_Blocks_01_Set_5_256x256_3.png-717b1a7383d866965b643b86497a9975.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_256x256_3.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_256x256_3.png-717b1a7383d866965b643b86497a9975.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c884iprfg08c5"
+path="res://.godot/imported/Number_Blocks_01_Set_5_256x256_4.png-5bd59a5ccfc7207ef5a0476d2a6aa557.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_256x256_4.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_256x256_4.png-5bd59a5ccfc7207ef5a0476d2a6aa557.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cmkt77waqlos1"
+path="res://.godot/imported/Number_Blocks_01_Set_5_256x256_5.png-5082f3cd9cde323bf427fceae4d17c12.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_256x256_5.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_256x256_5.png-5082f3cd9cde323bf427fceae4d17c12.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://esq3hysyns3m"
+path="res://.godot/imported/Number_Blocks_01_Set_5_256x256_6.png-e1c0acd9ff8a997169564069b6fe3306.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_256x256_6.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_256x256_6.png-e1c0acd9ff8a997169564069b6fe3306.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://db8y22h0s7c27"
+path="res://.godot/imported/Number_Blocks_01_Set_5_256x256_7.png-58aa83f70701298e52275d56e368857d.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_256x256_7.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_256x256_7.png-58aa83f70701298e52275d56e368857d.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cd0k500d1gdhb"
+path="res://.godot/imported/Number_Blocks_01_Set_5_256x256_8.png-a5bdcc45b2349c0cb857ef3e346d7d9f.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_256x256_8.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_256x256_8.png-a5bdcc45b2349c0cb857ef3e346d7d9f.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://ve7eitxw2m02"
+path="res://.godot/imported/Number_Blocks_01_Set_5_256x256_9.png-3a0e2bcf8acbf807e7ebbdc0f54b869c.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_256x256_9.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_256x256_9.png-3a0e2bcf8acbf807e7ebbdc0f54b869c.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://6st60blul8uu"
+path="res://.godot/imported/Number_Blocks_01_Set_5_512x512_0.png-52f01d6993c616a41f726f78aa3417b4.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_512x512_0.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_512x512_0.png-52f01d6993c616a41f726f78aa3417b4.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://fohbnxi1scjw"
+path="res://.godot/imported/Number_Blocks_01_Set_5_512x512_1.png-343e02e44f5199c06376d4731e798838.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_512x512_1.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_512x512_1.png-343e02e44f5199c06376d4731e798838.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://n6pnkufobewn"
+path="res://.godot/imported/Number_Blocks_01_Set_5_512x512_2.png-4469cfc482ee1eb2214cfb5460318137.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_512x512_2.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_512x512_2.png-4469cfc482ee1eb2214cfb5460318137.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cqeerlpadbe0x"
+path="res://.godot/imported/Number_Blocks_01_Set_5_512x512_3.png-97b167150bf5d8e73c981c13afe257e1.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_512x512_3.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_512x512_3.png-97b167150bf5d8e73c981c13afe257e1.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://peagegtwvwn"
+path="res://.godot/imported/Number_Blocks_01_Set_5_512x512_4.png-d5e9e0645b4ac69142b28f3cd6d30658.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_512x512_4.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_512x512_4.png-d5e9e0645b4ac69142b28f3cd6d30658.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dr3lc10knshb5"
+path="res://.godot/imported/Number_Blocks_01_Set_5_512x512_5.png-34cc04f07548088e2ba2f0f11b8442be.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_512x512_5.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_512x512_5.png-34cc04f07548088e2ba2f0f11b8442be.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dyok22yccne72"
+path="res://.godot/imported/Number_Blocks_01_Set_5_512x512_6.png-355fa34ec45cda976a6740df8c9f57de.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_512x512_6.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_512x512_6.png-355fa34ec45cda976a6740df8c9f57de.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://ccgihi7sanlyx"
+path="res://.godot/imported/Number_Blocks_01_Set_5_512x512_7.png-b52c2cf0ba6d384d8af96d4e49e009c8.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_512x512_7.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_512x512_7.png-b52c2cf0ba6d384d8af96d4e49e009c8.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dsriecnf3wev6"
+path="res://.godot/imported/Number_Blocks_01_Set_5_512x512_8.png-a802bcc8db781866f39abbaceab2d76c.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_512x512_8.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_512x512_8.png-a802bcc8db781866f39abbaceab2d76c.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dr8jv1e0ir3rg"
+path="res://.godot/imported/Number_Blocks_01_Set_5_512x512_9.png-dcb4765d545403f1680f0a09cce68f0c.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_512x512_9.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_512x512_9.png-dcb4765d545403f1680f0a09cce68f0c.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://r7wchqm6txyg"
+path="res://.godot/imported/Number_Blocks_01_Set_5_64x64_0.png-19a260e9893a868044d932480fec104e.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_64x64_0.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_64x64_0.png-19a260e9893a868044d932480fec104e.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://5uua0c57xdu3"
+path="res://.godot/imported/Number_Blocks_01_Set_5_64x64_1.png-4388ad7cbd57434e8aaf7bf015b1250a.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_64x64_1.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_64x64_1.png-4388ad7cbd57434e8aaf7bf015b1250a.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dd00ws60y11fl"
+path="res://.godot/imported/Number_Blocks_01_Set_5_64x64_2.png-e1fe25f75927168be7e5587370fd8ece.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_64x64_2.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_64x64_2.png-e1fe25f75927168be7e5587370fd8ece.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://5hv2mrpjapdd"
+path="res://.godot/imported/Number_Blocks_01_Set_5_64x64_3.png-26485dca01bb2f34550ec250724b57a8.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_64x64_3.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_64x64_3.png-26485dca01bb2f34550ec250724b57a8.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dcrkvaglve5bp"
+path="res://.godot/imported/Number_Blocks_01_Set_5_64x64_4.png-b656267b7ca4f6bcbbdabc4ad9d72d33.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_64x64_4.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_64x64_4.png-b656267b7ca4f6bcbbdabc4ad9d72d33.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c00ydpask3vf3"
+path="res://.godot/imported/Number_Blocks_01_Set_5_64x64_5.png-9627e1b466fbc17dcf1316fa994cfc24.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_64x64_5.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_64x64_5.png-9627e1b466fbc17dcf1316fa994cfc24.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://btir7iabshkmc"
+path="res://.godot/imported/Number_Blocks_01_Set_5_64x64_6.png-773b12b7befa7b6b8a3cb1eb2c79ebfb.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_64x64_6.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_64x64_6.png-773b12b7befa7b6b8a3cb1eb2c79ebfb.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dq7ayrr0g0mhr"
+path="res://.godot/imported/Number_Blocks_01_Set_5_64x64_7.png-026163cefd5d86752de02006bb21598f.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_64x64_7.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_64x64_7.png-026163cefd5d86752de02006bb21598f.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://chgjyml6mosyh"
+path="res://.godot/imported/Number_Blocks_01_Set_5_64x64_8.png-b7f02a49e4ff414fde827605236b1d6e.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_64x64_8.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_64x64_8.png-b7f02a49e4ff414fde827605236b1d6e.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://g0idjm41dns"
+path="res://.godot/imported/Number_Blocks_01_Set_5_64x64_9.png-89c1b09d31d6eeab23911d720ca28535.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01/Number_Blocks_01_Set_5_64x64_9.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_64x64_9.png-89c1b09d31d6eeab23911d720ca28535.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://nibukqborixj"
+path="res://.godot/imported/Number_Blocks_01_Set_1_256x256_0.png-cd16fc1405c33e41e07f1863979f78eb.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_1_256x256_0.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_256x256_0.png-cd16fc1405c33e41e07f1863979f78eb.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c2qq3aoq4vwxf"
+path="res://.godot/imported/Number_Blocks_01_Set_1_256x256_1.png-6c90c226ccfa6e008f12c341b00af370.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_1_256x256_1.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_256x256_1.png-6c90c226ccfa6e008f12c341b00af370.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b2qxbkbcdf51k"
+path="res://.godot/imported/Number_Blocks_01_Set_1_256x256_2.png-bf13e44523f7ade7c3ac519d10dd7dbe.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_1_256x256_2.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_256x256_2.png-bf13e44523f7ade7c3ac519d10dd7dbe.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://75q8fv0qmhnl"
+path="res://.godot/imported/Number_Blocks_01_Set_1_256x256_3.png-880e88e39a5d8ca8e1284e10c268b7a5.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_1_256x256_3.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_256x256_3.png-880e88e39a5d8ca8e1284e10c268b7a5.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cncjuuckjx3qh"
+path="res://.godot/imported/Number_Blocks_01_Set_1_256x256_4.png-360414c9340aad1ca4f1a8ee0e29a4f3.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_1_256x256_4.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_256x256_4.png-360414c9340aad1ca4f1a8ee0e29a4f3.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dx3cuvrmc8dke"
+path="res://.godot/imported/Number_Blocks_01_Set_1_256x256_5.png-c6fc7405ef2580ed6093637cca7d7239.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_1_256x256_5.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_256x256_5.png-c6fc7405ef2580ed6093637cca7d7239.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dfu6q3ow86rge"
+path="res://.godot/imported/Number_Blocks_01_Set_1_256x256_6.png-da2e29731093d80afd551daa6cbe1087.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_1_256x256_6.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_256x256_6.png-da2e29731093d80afd551daa6cbe1087.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://8tbr7nc6vqm3"
+path="res://.godot/imported/Number_Blocks_01_Set_1_256x256_7.png-05675020e7dc96807132dc537fda11cb.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_1_256x256_7.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_256x256_7.png-05675020e7dc96807132dc537fda11cb.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://q48btb8eesj3"
+path="res://.godot/imported/Number_Blocks_01_Set_1_256x256_8.png-7d92305867b4c2060e43f8e8446f2c1e.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_1_256x256_8.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_256x256_8.png-7d92305867b4c2060e43f8e8446f2c1e.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b7m4ss1wtsfwr"
+path="res://.godot/imported/Number_Blocks_01_Set_1_256x256_9.png-6ed1eaa1a33ce8142e4a70bf78e67f97.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_1_256x256_9.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_1_256x256_9.png-6ed1eaa1a33ce8142e4a70bf78e67f97.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://8boxotsx87i4"
+path="res://.godot/imported/Number_Blocks_01_Set_2_256x256_0.png-7ec01751fd90f2030e8e8e53c33d4930.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_2_256x256_0.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_256x256_0.png-7ec01751fd90f2030e8e8e53c33d4930.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c8w3p5hcgc8k4"
+path="res://.godot/imported/Number_Blocks_01_Set_2_256x256_1.png-5f70a6f8ee3e437557891cb80f11b7ed.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_2_256x256_1.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_256x256_1.png-5f70a6f8ee3e437557891cb80f11b7ed.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://ctsfaqloksghv"
+path="res://.godot/imported/Number_Blocks_01_Set_2_256x256_2.png-7926c30010b819bb5284b8544de67623.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_2_256x256_2.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_256x256_2.png-7926c30010b819bb5284b8544de67623.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://hs6f11hy3v02"
+path="res://.godot/imported/Number_Blocks_01_Set_2_256x256_3.png-d9877bd739673fc0b4b8863c4359ecbb.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_2_256x256_3.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_256x256_3.png-d9877bd739673fc0b4b8863c4359ecbb.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cc7f5f68g2pyw"
+path="res://.godot/imported/Number_Blocks_01_Set_2_256x256_4.png-fda69ebcc3ac0f0d83085d3d8f8c0ca3.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_2_256x256_4.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_256x256_4.png-fda69ebcc3ac0f0d83085d3d8f8c0ca3.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://btak3cb0rc4sb"
+path="res://.godot/imported/Number_Blocks_01_Set_2_256x256_5.png-fe8715814e62a9caa124882fa8ae0cad.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_2_256x256_5.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_256x256_5.png-fe8715814e62a9caa124882fa8ae0cad.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dt55gwi4l6viy"
+path="res://.godot/imported/Number_Blocks_01_Set_2_256x256_6.png-6c0ecab5114ea49b8551831d46ab1ff0.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_2_256x256_6.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_256x256_6.png-6c0ecab5114ea49b8551831d46ab1ff0.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cktu5eitcmd8t"
+path="res://.godot/imported/Number_Blocks_01_Set_2_256x256_7.png-1e3527f00103c17f97647a7ea7680c1a.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_2_256x256_7.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_256x256_7.png-1e3527f00103c17f97647a7ea7680c1a.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c6ecotbr5ho4f"
+path="res://.godot/imported/Number_Blocks_01_Set_2_256x256_8.png-66634b0702e9e69613debc1c9a605d32.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_2_256x256_8.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_256x256_8.png-66634b0702e9e69613debc1c9a605d32.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c1x7082ghu0oc"
+path="res://.godot/imported/Number_Blocks_01_Set_2_256x256_9.png-82078a7d3a33040206e311b07f4cf3c4.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_2_256x256_9.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_2_256x256_9.png-82078a7d3a33040206e311b07f4cf3c4.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://hgbexi4xmej3"
+path="res://.godot/imported/Number_Blocks_01_Set_3_256x256_0.png-ede9ef28c34cdeeb9013955c85e63eb1.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_3_256x256_0.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_256x256_0.png-ede9ef28c34cdeeb9013955c85e63eb1.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bb1jatj54rocv"
+path="res://.godot/imported/Number_Blocks_01_Set_3_256x256_1.png-3f4c166121bf4c25c405dd799012fabe.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_3_256x256_1.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_256x256_1.png-3f4c166121bf4c25c405dd799012fabe.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dddfsfr68gw1h"
+path="res://.godot/imported/Number_Blocks_01_Set_3_256x256_2.png-06ed67ab949b70d0a6cf3ecfd73add00.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_3_256x256_2.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_256x256_2.png-06ed67ab949b70d0a6cf3ecfd73add00.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cpkc3obcalvkp"
+path="res://.godot/imported/Number_Blocks_01_Set_3_256x256_3.png-93275de36704d1261f9672f22091602f.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_3_256x256_3.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_256x256_3.png-93275de36704d1261f9672f22091602f.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://1u5omyrmirs1"
+path="res://.godot/imported/Number_Blocks_01_Set_3_256x256_4.png-486327ffc642bdfff4f1ccf3a463d2c2.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_3_256x256_4.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_256x256_4.png-486327ffc642bdfff4f1ccf3a463d2c2.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://htxlqyaj850b"
+path="res://.godot/imported/Number_Blocks_01_Set_3_256x256_5.png-376aca0c4a94f019275047994cec7f04.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_3_256x256_5.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_256x256_5.png-376aca0c4a94f019275047994cec7f04.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dil7o4glufcty"
+path="res://.godot/imported/Number_Blocks_01_Set_3_256x256_6.png-be50a83efbee097ddf1ea251d46643d6.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_3_256x256_6.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_256x256_6.png-be50a83efbee097ddf1ea251d46643d6.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cxnamhicwp5um"
+path="res://.godot/imported/Number_Blocks_01_Set_3_256x256_7.png-28ecb524f92edff88aebc82ef05ad140.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_3_256x256_7.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_256x256_7.png-28ecb524f92edff88aebc82ef05ad140.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://ctowmm0ermfpi"
+path="res://.godot/imported/Number_Blocks_01_Set_3_256x256_8.png-d11b596fd4c946a5d2daa0f932ff76c8.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_3_256x256_8.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_256x256_8.png-d11b596fd4c946a5d2daa0f932ff76c8.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://64as4c7850rg"
+path="res://.godot/imported/Number_Blocks_01_Set_3_256x256_9.png-24712771c08bdfc8aa5e1155645c06e7.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_3_256x256_9.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_3_256x256_9.png-24712771c08bdfc8aa5e1155645c06e7.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dqnul43fkad0u"
+path="res://.godot/imported/Number_Blocks_01_Set_4_256x256_0.png-3ba427e91ce394d3551fedb0fd46f57b.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_4_256x256_0.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_256x256_0.png-3ba427e91ce394d3551fedb0fd46f57b.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bnkpx3ctns8r3"
+path="res://.godot/imported/Number_Blocks_01_Set_4_256x256_1.png-89c14e1661b18bb7326919751c29c243.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_4_256x256_1.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_256x256_1.png-89c14e1661b18bb7326919751c29c243.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cxh1awkh821ca"
+path="res://.godot/imported/Number_Blocks_01_Set_4_256x256_2.png-344ff06d3eb991f60f38742e48caa134.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_4_256x256_2.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_256x256_2.png-344ff06d3eb991f60f38742e48caa134.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cnqj5nobd1aiq"
+path="res://.godot/imported/Number_Blocks_01_Set_4_256x256_3.png-c2a2e5c0358b3c250174b895d15fd9c3.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_4_256x256_3.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_256x256_3.png-c2a2e5c0358b3c250174b895d15fd9c3.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://d1nqvxchymiuh"
+path="res://.godot/imported/Number_Blocks_01_Set_4_256x256_4.png-e9f7ce92292fad2be954c7db6b91bb01.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_4_256x256_4.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_256x256_4.png-e9f7ce92292fad2be954c7db6b91bb01.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bklqhv4jcjukx"
+path="res://.godot/imported/Number_Blocks_01_Set_4_256x256_5.png-3b8e1d94756a35b88a77b4e6f15b9ed3.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_4_256x256_5.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_256x256_5.png-3b8e1d94756a35b88a77b4e6f15b9ed3.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bbpsspp4d6acx"
+path="res://.godot/imported/Number_Blocks_01_Set_4_256x256_6.png-aa9c8567912adccbe9dafdc71fbd200f.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_4_256x256_6.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_256x256_6.png-aa9c8567912adccbe9dafdc71fbd200f.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://015q13bvldn6"
+path="res://.godot/imported/Number_Blocks_01_Set_4_256x256_7.png-7a434cf5e2a0a8d97b60a3abbf134aee.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_4_256x256_7.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_256x256_7.png-7a434cf5e2a0a8d97b60a3abbf134aee.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://diiu2o3r2mdyf"
+path="res://.godot/imported/Number_Blocks_01_Set_4_256x256_8.png-d84070f1d19171bce05fccfb2030c328.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_4_256x256_8.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_256x256_8.png-d84070f1d19171bce05fccfb2030c328.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://belo77nw2u6fs"
+path="res://.godot/imported/Number_Blocks_01_Set_4_256x256_9.png-7907e33d9a7e845914d2fcf460adafb1.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_4_256x256_9.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_4_256x256_9.png-7907e33d9a7e845914d2fcf460adafb1.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bqh1r7s8us2qk"
+path="res://.godot/imported/Number_Blocks_01_Set_5_256x256_0.png-cf424ea5cf76e607f47b05a12f989eb5.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_5_256x256_0.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_256x256_0.png-cf424ea5cf76e607f47b05a12f989eb5.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://vhgfbaynmw50"
+path="res://.godot/imported/Number_Blocks_01_Set_5_256x256_1.png-819a8ab3ae81233393ff2be9ac4f5fbf.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_5_256x256_1.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_256x256_1.png-819a8ab3ae81233393ff2be9ac4f5fbf.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dt2kljvhh5rfn"
+path="res://.godot/imported/Number_Blocks_01_Set_5_256x256_2.png-d9855f56cc059eea92710681bd911e3c.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_5_256x256_2.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_256x256_2.png-d9855f56cc059eea92710681bd911e3c.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://copcfewfq2yxy"
+path="res://.godot/imported/Number_Blocks_01_Set_5_256x256_3.png-2601ce2fcf7c6cf99d9803bab97eb100.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_5_256x256_3.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_256x256_3.png-2601ce2fcf7c6cf99d9803bab97eb100.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://ft7tly2uufoc"
+path="res://.godot/imported/Number_Blocks_01_Set_5_256x256_4.png-1609ea662c28ad43286d7e7ebbedc840.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_5_256x256_4.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_256x256_4.png-1609ea662c28ad43286d7e7ebbedc840.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://sf2xwen1ndh4"
+path="res://.godot/imported/Number_Blocks_01_Set_5_256x256_5.png-fe23417cdc9b04948a01f84866f224d9.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_5_256x256_5.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_256x256_5.png-fe23417cdc9b04948a01f84866f224d9.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://c5afyomg73o80"
+path="res://.godot/imported/Number_Blocks_01_Set_5_256x256_6.png-b751286d80603c7c56632d7f64c5d66d.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_5_256x256_6.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_256x256_6.png-b751286d80603c7c56632d7f64c5d66d.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://lqmegxq8jrcu"
+path="res://.godot/imported/Number_Blocks_01_Set_5_256x256_7.png-81982116aa81f8baa17b8446d1ca78ee.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_5_256x256_7.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_256x256_7.png-81982116aa81f8baa17b8446d1ca78ee.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b4nslky5l7uus"
+path="res://.godot/imported/Number_Blocks_01_Set_5_256x256_8.png-a84b9de0ba77c5ff7d3d94a637ae1f5a.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_5_256x256_8.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_256x256_8.png-a84b9de0ba77c5ff7d3d94a637ae1f5a.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dicuiyybyu3bb"
+path="res://.godot/imported/Number_Blocks_01_Set_5_256x256_9.png-a2e0d23bb63e756812e85792978d462b.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://decks/numbers/Number_Blocks_01_Set_5_256x256_9.png"
+dest_files=["res://.godot/imported/Number_Blocks_01_Set_5_256x256_9.png-a2e0d23bb63e756812e85792978d462b.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[preset.0]
+
+name="Web"
+platform="Web"
+runnable=true
+advanced_options=true
+dedicated_server=false
+custom_features=""
+export_filter="all_resources"
+include_filter=""
+exclude_filter=""
+export_path="exports/encuentralo.offline.html"
+patches=PackedStringArray()
+encryption_include_filters=""
+encryption_exclude_filters=""
+seed=0
+encrypt_pck=false
+encrypt_directory=false
+script_export_mode=2
+
+[preset.0.options]
+
+custom_template/debug=""
+custom_template/release=""
+variant/extensions_support=false
+variant/thread_support=false
+vram_texture_compression/for_desktop=true
+vram_texture_compression/for_mobile=false
+html/export_icon=false
+html/custom_html_shell=""
+html/head_include="<script>
+var gd_callbacks = {
+ dataLoaded: null
+}
+
+function loadData() {
+ var input = document.createElement('input');
+ input.setAttribute('type', 'file');
+ input.setAttribute('webkitdirectory', true);
+ input.click();
+
+ input.addEventListener('change', evt => {
+ for (each of evt.target.files) {
+ if (each.name.match(/.*\\.(png|jpg|jpeg|bmp|gif)$/)) {
+ let reader = new FileReader();
+ reader.onloadend = function(evt) {
+ if (gd_callbacks.dataLoaded) {
+ gd_callbacks.dataLoaded(reader.result)
+ }
+ }
+
+ reader.onerror = function(evt) {
+ console.log('error');
+ }
+ // This read should be kicked off after any handlers are registered!
+ reader.readAsArrayBuffer(each);
+ //var promise = each.arrayBuffer();
+ //promise.then(gd_callbacks.dataLoaded, null)
+ }
+ }
+ });
+}
+</script>"
+html/canvas_resize_policy=2
+html/focus_canvas_on_start=true
+html/experimental_virtual_keyboard=false
+progressive_web_app/enabled=false
+progressive_web_app/ensure_cross_origin_isolation_headers=true
+progressive_web_app/offline_page="index.html"
+progressive_web_app/display=1
+progressive_web_app/orientation=0
+progressive_web_app/icon_144x144=""
+progressive_web_app/icon_180x180=""
+progressive_web_app/icon_512x512=""
+progressive_web_app/background_color=Color(0, 0, 0, 1)
+
+[preset.1]
+
+name="Windows Desktop"
+platform="Windows Desktop"
+runnable=true
+advanced_options=false
+dedicated_server=false
+custom_features=""
+export_filter="all_resources"
+include_filter=""
+exclude_filter=""
+export_path="exports/mount/encuentralo.exe"
+patches=PackedStringArray()
+encryption_include_filters=""
+encryption_exclude_filters=""
+seed=0
+encrypt_pck=false
+encrypt_directory=false
+script_export_mode=2
+
+[preset.1.options]
+
+custom_template/debug=""
+custom_template/release=""
+debug/export_console_wrapper=1
+binary_format/embed_pck=false
+texture_format/s3tc_bptc=true
+texture_format/etc2_astc=false
+binary_format/architecture="x86_64"
+codesign/enable=false
+codesign/timestamp=true
+codesign/timestamp_server_url=""
+codesign/digest_algorithm=1
+codesign/description=""
+codesign/custom_options=PackedStringArray()
+application/modify_resources=true
+application/icon=""
+application/console_wrapper_icon=""
+application/icon_interpolation=4
+application/file_version=""
+application/product_version=""
+application/company_name=""
+application/product_name=""
+application/file_description=""
+application/copyright=""
+application/trademarks=""
+application/export_angle=0
+application/export_d3d12=0
+application/d3d12_agility_sdk_multiarch=true
+ssh_remote_deploy/enabled=false
+ssh_remote_deploy/host="user@host_ip"
+ssh_remote_deploy/port="22"
+ssh_remote_deploy/extra_args_ssh=""
+ssh_remote_deploy/extra_args_scp=""
+ssh_remote_deploy/run_script="Expand-Archive -LiteralPath '{temp_dir}\\{archive_name}' -DestinationPath '{temp_dir}'
+$action = New-ScheduledTaskAction -Execute '{temp_dir}\\{exe_name}' -Argument '{cmd_args}'
+$trigger = New-ScheduledTaskTrigger -Once -At 00:00
+$settings = New-ScheduledTaskSettingsSet -AllowStartIfOnBatteries -DontStopIfGoingOnBatteries
+$task = New-ScheduledTask -Action $action -Trigger $trigger -Settings $settings
+Register-ScheduledTask godot_remote_debug -InputObject $task -Force:$true
+Start-ScheduledTask -TaskName godot_remote_debug
+while (Get-ScheduledTask -TaskName godot_remote_debug | ? State -eq running) { Start-Sleep -Milliseconds 100 }
+Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue"
+ssh_remote_deploy/cleanup_script="Stop-ScheduledTask -TaskName godot_remote_debug -ErrorAction:SilentlyContinue
+Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue
+Remove-Item -Recurse -Force '{temp_dir}'"
+
+[preset.2]
+
+name="Android"
+platform="Android"
+runnable=true
+advanced_options=false
+dedicated_server=false
+custom_features=""
+export_filter="all_resources"
+include_filter=""
+exclude_filter=""
+export_path=""
+patches=PackedStringArray()
+encryption_include_filters=""
+encryption_exclude_filters=""
+seed=0
+encrypt_pck=false
+encrypt_directory=false
+script_export_mode=2
+
+[preset.2.options]
+
+custom_template/debug=""
+custom_template/release=""
+gradle_build/use_gradle_build=false
+gradle_build/gradle_build_directory=""
+gradle_build/android_source_template=""
+gradle_build/compress_native_libraries=false
+gradle_build/export_format=0
+gradle_build/min_sdk=""
+gradle_build/target_sdk=""
+architectures/armeabi-v7a=false
+architectures/arm64-v8a=true
+architectures/x86=false
+architectures/x86_64=false
+version/code=1
+version/name=""
+package/unique_name="com.example.$genname"
+package/name=""
+package/signed=true
+package/app_category=2
+package/retain_data_on_uninstall=false
+package/exclude_from_recents=false
+package/show_in_android_tv=false
+package/show_in_app_library=true
+package/show_as_launcher_app=false
+launcher_icons/main_192x192=""
+launcher_icons/adaptive_foreground_432x432=""
+launcher_icons/adaptive_background_432x432=""
+launcher_icons/adaptive_monochrome_432x432=""
+graphics/opengl_debug=false
+xr_features/xr_mode=0
+gesture/swipe_to_dismiss=false
+screen/immersive_mode=true
+screen/support_small=true
+screen/support_normal=true
+screen/support_large=true
+screen/support_xlarge=true
+user_data_backup/allow=false
+command_line/extra_args=""
+apk_expansion/enable=false
+apk_expansion/SALT=""
+apk_expansion/public_key=""
+permissions/custom_permissions=PackedStringArray()
+permissions/access_checkin_properties=false
+permissions/access_coarse_location=false
+permissions/access_fine_location=false
+permissions/access_location_extra_commands=false
+permissions/access_media_location=false
+permissions/access_mock_location=false
+permissions/access_network_state=false
+permissions/access_surface_flinger=false
+permissions/access_wifi_state=false
+permissions/account_manager=false
+permissions/add_voicemail=false
+permissions/authenticate_accounts=false
+permissions/battery_stats=false
+permissions/bind_accessibility_service=false
+permissions/bind_appwidget=false
+permissions/bind_device_admin=false
+permissions/bind_input_method=false
+permissions/bind_nfc_service=false
+permissions/bind_notification_listener_service=false
+permissions/bind_print_service=false
+permissions/bind_remoteviews=false
+permissions/bind_text_service=false
+permissions/bind_vpn_service=false
+permissions/bind_wallpaper=false
+permissions/bluetooth=false
+permissions/bluetooth_admin=false
+permissions/bluetooth_privileged=false
+permissions/brick=false
+permissions/broadcast_package_removed=false
+permissions/broadcast_sms=false
+permissions/broadcast_sticky=false
+permissions/broadcast_wap_push=false
+permissions/call_phone=false
+permissions/call_privileged=false
+permissions/camera=false
+permissions/capture_audio_output=false
+permissions/capture_secure_video_output=false
+permissions/capture_video_output=false
+permissions/change_component_enabled_state=false
+permissions/change_configuration=false
+permissions/change_network_state=false
+permissions/change_wifi_multicast_state=false
+permissions/change_wifi_state=false
+permissions/clear_app_cache=false
+permissions/clear_app_user_data=false
+permissions/control_location_updates=false
+permissions/delete_cache_files=false
+permissions/delete_packages=false
+permissions/device_power=false
+permissions/diagnostic=false
+permissions/disable_keyguard=false
+permissions/dump=false
+permissions/expand_status_bar=false
+permissions/factory_test=false
+permissions/flashlight=false
+permissions/force_back=false
+permissions/get_accounts=false
+permissions/get_package_size=false
+permissions/get_tasks=false
+permissions/get_top_activity_info=false
+permissions/global_search=false
+permissions/hardware_test=false
+permissions/inject_events=false
+permissions/install_location_provider=false
+permissions/install_packages=false
+permissions/install_shortcut=false
+permissions/internal_system_window=false
+permissions/internet=false
+permissions/kill_background_processes=false
+permissions/location_hardware=false
+permissions/manage_accounts=false
+permissions/manage_app_tokens=false
+permissions/manage_documents=false
+permissions/manage_external_storage=false
+permissions/master_clear=false
+permissions/media_content_control=false
+permissions/modify_audio_settings=false
+permissions/modify_phone_state=false
+permissions/mount_format_filesystems=false
+permissions/mount_unmount_filesystems=false
+permissions/nfc=false
+permissions/persistent_activity=false
+permissions/post_notifications=false
+permissions/process_outgoing_calls=false
+permissions/read_calendar=false
+permissions/read_call_log=false
+permissions/read_contacts=false
+permissions/read_external_storage=false
+permissions/read_frame_buffer=false
+permissions/read_history_bookmarks=false
+permissions/read_input_state=false
+permissions/read_logs=false
+permissions/read_media_audio=false
+permissions/read_media_images=false
+permissions/read_media_video=false
+permissions/read_media_visual_user_selected=false
+permissions/read_phone_state=false
+permissions/read_profile=false
+permissions/read_sms=false
+permissions/read_social_stream=false
+permissions/read_sync_settings=false
+permissions/read_sync_stats=false
+permissions/read_user_dictionary=false
+permissions/reboot=false
+permissions/receive_boot_completed=false
+permissions/receive_mms=false
+permissions/receive_sms=false
+permissions/receive_wap_push=false
+permissions/record_audio=false
+permissions/reorder_tasks=false
+permissions/restart_packages=false
+permissions/send_respond_via_message=false
+permissions/send_sms=false
+permissions/set_activity_watcher=false
+permissions/set_alarm=false
+permissions/set_always_finish=false
+permissions/set_animation_scale=false
+permissions/set_debug_app=false
+permissions/set_orientation=false
+permissions/set_pointer_speed=false
+permissions/set_preferred_applications=false
+permissions/set_process_limit=false
+permissions/set_time=false
+permissions/set_time_zone=false
+permissions/set_wallpaper=false
+permissions/set_wallpaper_hints=false
+permissions/signal_persistent_processes=false
+permissions/status_bar=false
+permissions/subscribed_feeds_read=false
+permissions/subscribed_feeds_write=false
+permissions/system_alert_window=false
+permissions/transmit_ir=false
+permissions/uninstall_shortcut=false
+permissions/update_device_stats=false
+permissions/use_credentials=false
+permissions/use_sip=false
+permissions/vibrate=false
+permissions/wake_lock=false
+permissions/write_apn_settings=false
+permissions/write_calendar=false
+permissions/write_call_log=false
+permissions/write_contacts=false
+permissions/write_external_storage=false
+permissions/write_gservices=false
+permissions/write_history_bookmarks=false
+permissions/write_profile=false
+permissions/write_secure_settings=false
+permissions/write_settings=false
+permissions/write_sms=false
+permissions/write_social_stream=false
+permissions/write_sync_settings=false
+permissions/write_user_dictionary=false
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bs3coke8l8vvo"
+path="res://.godot/imported/encuentralo.apple-touch-icon.png-463a82bbb11e18716a58984be784ca8b.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://exports/encuentralo.apple-touch-icon.png"
+dest_files=["res://.godot/imported/encuentralo.apple-touch-icon.png-463a82bbb11e18716a58984be784ca8b.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+/**************************************************************************/
+/* godot.audio.position.worklet.js */
+/**************************************************************************/
+/* This file is part of: */
+/* GODOT ENGINE */
+/* https://godotengine.org */
+/**************************************************************************/
+/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
+/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
+/* */
+/* Permission is hereby granted, free of charge, to any person obtaining */
+/* a copy of this software and associated documentation files (the */
+/* "Software"), to deal in the Software without restriction, including */
+/* without limitation the rights to use, copy, modify, merge, publish, */
+/* distribute, sublicense, and/or sell copies of the Software, and to */
+/* permit persons to whom the Software is furnished to do so, subject to */
+/* the following conditions: */
+/* */
+/* The above copyright notice and this permission notice shall be */
+/* included in all copies or substantial portions of the Software. */
+/* */
+/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
+/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
+/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
+/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
+/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
+/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
+/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
+/**************************************************************************/
+
+const POST_THRESHOLD_S = 0.1;
+
+class GodotPositionReportingProcessor extends AudioWorkletProcessor {
+ constructor(...args) {
+ super(...args);
+ this.lastPostTime = currentTime;
+ this.position = 0;
+ this.ended = false;
+
+ this.port.onmessage = (event) => {
+ if (event?.data?.type === 'ended') {
+ this.ended = true;
+ }
+ };
+ }
+
+ process(inputs, _outputs, _parameters) {
+ if (this.ended) {
+ return false;
+ }
+
+ if (inputs.length > 0) {
+ const input = inputs[0];
+ if (input.length > 0) {
+ this.position += input[0].length;
+ }
+ }
+
+ // Posting messages is expensive. Let's limit the number of posts.
+ if (currentTime - this.lastPostTime > POST_THRESHOLD_S) {
+ this.lastPostTime = currentTime;
+ this.port.postMessage({ type: 'position', data: this.position });
+ }
+
+ return true;
+ }
+}
+
+registerProcessor('godot-position-reporting-processor', GodotPositionReportingProcessor);
--- /dev/null
+/**************************************************************************/
+/* audio.worklet.js */
+/**************************************************************************/
+/* This file is part of: */
+/* GODOT ENGINE */
+/* https://godotengine.org */
+/**************************************************************************/
+/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
+/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
+/* */
+/* Permission is hereby granted, free of charge, to any person obtaining */
+/* a copy of this software and associated documentation files (the */
+/* "Software"), to deal in the Software without restriction, including */
+/* without limitation the rights to use, copy, modify, merge, publish, */
+/* distribute, sublicense, and/or sell copies of the Software, and to */
+/* permit persons to whom the Software is furnished to do so, subject to */
+/* the following conditions: */
+/* */
+/* The above copyright notice and this permission notice shall be */
+/* included in all copies or substantial portions of the Software. */
+/* */
+/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
+/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
+/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
+/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
+/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
+/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
+/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
+/**************************************************************************/
+
+class RingBuffer {
+ constructor(p_buffer, p_state, p_threads) {
+ this.buffer = p_buffer;
+ this.avail = p_state;
+ this.threads = p_threads;
+ this.rpos = 0;
+ this.wpos = 0;
+ }
+
+ data_left() {
+ return this.threads ? Atomics.load(this.avail, 0) : this.avail;
+ }
+
+ space_left() {
+ return this.buffer.length - this.data_left();
+ }
+
+ read(output) {
+ const size = this.buffer.length;
+ let from = 0;
+ let to_write = output.length;
+ if (this.rpos + to_write > size) {
+ const high = size - this.rpos;
+ output.set(this.buffer.subarray(this.rpos, size));
+ from = high;
+ to_write -= high;
+ this.rpos = 0;
+ }
+ if (to_write) {
+ output.set(this.buffer.subarray(this.rpos, this.rpos + to_write), from);
+ }
+ this.rpos += to_write;
+ if (this.threads) {
+ Atomics.add(this.avail, 0, -output.length);
+ Atomics.notify(this.avail, 0);
+ } else {
+ this.avail -= output.length;
+ }
+ }
+
+ write(p_buffer) {
+ const to_write = p_buffer.length;
+ const mw = this.buffer.length - this.wpos;
+ if (mw >= to_write) {
+ this.buffer.set(p_buffer, this.wpos);
+ this.wpos += to_write;
+ if (mw === to_write) {
+ this.wpos = 0;
+ }
+ } else {
+ const high = p_buffer.subarray(0, mw);
+ const low = p_buffer.subarray(mw);
+ this.buffer.set(high, this.wpos);
+ this.buffer.set(low);
+ this.wpos = low.length;
+ }
+ if (this.threads) {
+ Atomics.add(this.avail, 0, to_write);
+ Atomics.notify(this.avail, 0);
+ } else {
+ this.avail += to_write;
+ }
+ }
+}
+
+class GodotProcessor extends AudioWorkletProcessor {
+ constructor() {
+ super();
+ this.threads = false;
+ this.running = true;
+ this.lock = null;
+ this.notifier = null;
+ this.output = null;
+ this.output_buffer = new Float32Array();
+ this.input = null;
+ this.input_buffer = new Float32Array();
+ this.port.onmessage = (event) => {
+ const cmd = event.data['cmd'];
+ const data = event.data['data'];
+ this.parse_message(cmd, data);
+ };
+ }
+
+ process_notify() {
+ if (this.notifier) {
+ Atomics.add(this.notifier, 0, 1);
+ Atomics.notify(this.notifier, 0);
+ }
+ }
+
+ parse_message(p_cmd, p_data) {
+ if (p_cmd === 'start' && p_data) {
+ const state = p_data[0];
+ let idx = 0;
+ this.threads = true;
+ this.lock = state.subarray(idx, ++idx);
+ this.notifier = state.subarray(idx, ++idx);
+ const avail_in = state.subarray(idx, ++idx);
+ const avail_out = state.subarray(idx, ++idx);
+ this.input = new RingBuffer(p_data[1], avail_in, true);
+ this.output = new RingBuffer(p_data[2], avail_out, true);
+ } else if (p_cmd === 'stop') {
+ this.running = false;
+ this.output = null;
+ this.input = null;
+ this.lock = null;
+ this.notifier = null;
+ } else if (p_cmd === 'start_nothreads') {
+ this.output = new RingBuffer(p_data[0], p_data[0].length, false);
+ } else if (p_cmd === 'chunk') {
+ this.output.write(p_data);
+ }
+ }
+
+ static array_has_data(arr) {
+ return arr.length && arr[0].length && arr[0][0].length;
+ }
+
+ process(inputs, outputs, parameters) {
+ if (!this.running) {
+ return false; // Stop processing.
+ }
+ if (this.output === null) {
+ return true; // Not ready yet, keep processing.
+ }
+ const process_input = GodotProcessor.array_has_data(inputs);
+ if (process_input) {
+ const input = inputs[0];
+ const chunk = input[0].length * input.length;
+ if (this.input_buffer.length !== chunk) {
+ this.input_buffer = new Float32Array(chunk);
+ }
+ if (!this.threads) {
+ GodotProcessor.write_input(this.input_buffer, input);
+ this.port.postMessage({ 'cmd': 'input', 'data': this.input_buffer });
+ } else if (this.input.space_left() >= chunk) {
+ GodotProcessor.write_input(this.input_buffer, input);
+ this.input.write(this.input_buffer);
+ } else {
+ // this.port.postMessage('Input buffer is full! Skipping input frame.'); // Uncomment this line to debug input buffer.
+ }
+ }
+ const process_output = GodotProcessor.array_has_data(outputs);
+ if (process_output) {
+ const output = outputs[0];
+ const chunk = output[0].length * output.length;
+ if (this.output_buffer.length !== chunk) {
+ this.output_buffer = new Float32Array(chunk);
+ }
+ if (this.output.data_left() >= chunk) {
+ this.output.read(this.output_buffer);
+ GodotProcessor.write_output(output, this.output_buffer);
+ if (!this.threads) {
+ this.port.postMessage({ 'cmd': 'read', 'data': chunk });
+ }
+ } else {
+ // this.port.postMessage('Output buffer has not enough frames! Skipping output frame.'); // Uncomment this line to debug output buffer.
+ }
+ }
+ this.process_notify();
+ return true;
+ }
+
+ static write_output(dest, source) {
+ const channels = dest.length;
+ for (let ch = 0; ch < channels; ch++) {
+ for (let sample = 0; sample < dest[ch].length; sample++) {
+ dest[ch][sample] = source[sample * channels + ch];
+ }
+ }
+ }
+
+ static write_input(dest, source) {
+ const channels = source.length;
+ for (let ch = 0; ch < channels; ch++) {
+ for (let sample = 0; sample < source[ch].length; sample++) {
+ dest[sample * channels + ch] = source[ch][sample];
+ }
+ }
+ }
+}
+
+registerProcessor('godot-processor', GodotProcessor);
--- /dev/null
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0">
+ <title>Encuentralo</title>
+ <style>
+html, body, #canvas {
+ margin: 0;
+ padding: 0;
+ border: 0;
+}
+
+body {
+ color: white;
+ background-color: black;
+ overflow: hidden;
+ touch-action: none;
+}
+
+#canvas {
+ display: block;
+}
+
+#canvas:focus {
+ outline: none;
+}
+
+#status, #status-splash, #status-progress {
+ position: absolute;
+ left: 0;
+ right: 0;
+}
+
+#status, #status-splash {
+ top: 0;
+ bottom: 0;
+}
+
+#status {
+ background-color: #242424;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ visibility: hidden;
+}
+
+#status-splash {
+ max-height: 100%;
+ max-width: 100%;
+ margin: auto;
+}
+
+#status-splash.show-image--false {
+ display: none;
+}
+
+#status-splash.fullsize--true {
+ height: 100%;
+ width: 100%;
+ object-fit: contain;
+}
+
+#status-splash.use-filter--false {
+ image-rendering: pixelated;
+}
+
+#status-progress, #status-notice {
+ display: none;
+}
+
+#status-progress {
+ bottom: 10%;
+ width: 50%;
+ margin: 0 auto;
+}
+
+#status-notice {
+ background-color: #5b3943;
+ border-radius: 0.5rem;
+ border: 1px solid #9b3943;
+ color: #e0e0e0;
+ font-family: 'Noto Sans', 'Droid Sans', Arial, sans-serif;
+ line-height: 1.3;
+ margin: 0 2rem;
+ overflow: hidden;
+ padding: 1rem;
+ text-align: center;
+ z-index: 1;
+}
+ </style>
+ <script>
+var gd_callbacks = {
+ dataLoaded: null
+}
+
+function loadData() {
+ var input = document.createElement('input');
+ input.setAttribute('type', 'file');
+ input.setAttribute('webkitdirectory', true);
+ input.click();
+
+ input.addEventListener('change', evt => {
+ for (each of evt.target.files) {
+ if (each.name.match(/.*\.(png|jpg|jpeg|bmp|gif)$/)) {
+ let reader = new FileReader();
+ reader.onloadend = function(evt) {
+ if (gd_callbacks.dataLoaded) {
+ gd_callbacks.dataLoaded(reader.result)
+ }
+ }
+
+ reader.onerror = function(evt) {
+ console.log('error');
+ }
+ // This read should be kicked off after any handlers are registered!
+ reader.readAsArrayBuffer(each);
+ //var promise = each.arrayBuffer();
+ //promise.then(gd_callbacks.dataLoaded, null)
+ }
+ }
+ });
+}
+</script>
+ </head>
+ <body>
+ <canvas id="canvas">
+ Your browser does not support the canvas tag.
+ </canvas>
+
+ <noscript>
+ Your browser does not support JavaScript.
+ </noscript>
+
+ <div id="status">
+ <img id="status-splash" class="show-image--true fullsize--true use-filter--true" src="encuentralo.png" alt="">
+ <progress id="status-progress"></progress>
+ <div id="status-notice"></div>
+ </div>
+
+ <script src="encuentralo.js"></script>
+ <script>
+const GODOT_CONFIG = {"args":[],"canvasResizePolicy":2,"ensureCrossOriginIsolationHeaders":true,"executable":"encuentralo","experimentalVK":false,"fileSizes":{"encuentralo.pck":5572976,"encuentralo.wasm":43682606},"focusCanvas":true,"gdextensionLibs":[]};
+const GODOT_THREADS_ENABLED = false;
+const engine = new Engine(GODOT_CONFIG);
+
+(function () {
+ const statusOverlay = document.getElementById('status');
+ const statusProgress = document.getElementById('status-progress');
+ const statusNotice = document.getElementById('status-notice');
+
+ let initializing = true;
+ let statusMode = '';
+
+ function setStatusMode(mode) {
+ if (statusMode === mode || !initializing) {
+ return;
+ }
+ if (mode === 'hidden') {
+ statusOverlay.remove();
+ initializing = false;
+ return;
+ }
+ statusOverlay.style.visibility = 'visible';
+ statusProgress.style.display = mode === 'progress' ? 'block' : 'none';
+ statusNotice.style.display = mode === 'notice' ? 'block' : 'none';
+ statusMode = mode;
+ }
+
+ function setStatusNotice(text) {
+ while (statusNotice.lastChild) {
+ statusNotice.removeChild(statusNotice.lastChild);
+ }
+ const lines = text.split('\n');
+ lines.forEach((line) => {
+ statusNotice.appendChild(document.createTextNode(line));
+ statusNotice.appendChild(document.createElement('br'));
+ });
+ }
+
+ function displayFailureNotice(err) {
+ console.error(err);
+ if (err instanceof Error) {
+ setStatusNotice(err.message);
+ } else if (typeof err === 'string') {
+ setStatusNotice(err);
+ } else {
+ setStatusNotice('An unknown error occurred.');
+ }
+ setStatusMode('notice');
+ initializing = false;
+ }
+
+ const missing = Engine.getMissingFeatures({
+ threads: GODOT_THREADS_ENABLED,
+ });
+
+ if (missing.length !== 0) {
+ if (GODOT_CONFIG['serviceWorker'] && GODOT_CONFIG['ensureCrossOriginIsolationHeaders'] && 'serviceWorker' in navigator) {
+ let serviceWorkerRegistrationPromise;
+ try {
+ serviceWorkerRegistrationPromise = navigator.serviceWorker.getRegistration();
+ } catch (err) {
+ serviceWorkerRegistrationPromise = Promise.reject(new Error('Service worker registration failed.'));
+ }
+ // There's a chance that installing the service worker would fix the issue
+ Promise.race([
+ serviceWorkerRegistrationPromise.then((registration) => {
+ if (registration != null) {
+ return Promise.reject(new Error('Service worker already exists.'));
+ }
+ return registration;
+ }).then(() => engine.installServiceWorker()),
+ // For some reason, `getRegistration()` can stall
+ new Promise((resolve) => {
+ setTimeout(() => resolve(), 2000);
+ }),
+ ]).then(() => {
+ // Reload if there was no error.
+ window.location.reload();
+ }).catch((err) => {
+ console.error('Error while registering service worker:', err);
+ });
+ } else {
+ // Display the message as usual
+ const missingMsg = 'Error\nThe following features required to run Godot projects on the Web are missing:\n';
+ displayFailureNotice(missingMsg + missing.join('\n'));
+ }
+ } else {
+ setStatusMode('progress');
+ engine.startGame({
+ 'onProgress': function (current, total) {
+ if (current > 0 && total > 0) {
+ statusProgress.value = current;
+ statusProgress.max = total;
+ } else {
+ statusProgress.removeAttribute('value');
+ statusProgress.removeAttribute('max');
+ }
+ },
+ }).then(() => {
+ setStatusMode('hidden');
+ }, displayFailureNotice);
+ }
+}());
+ </script>
+ </body>
+</html>
+
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bnlaq1b1n6o5h"
+path="res://.godot/imported/encuentralo.icon.png-0596398901f0adf464508b2356eaa67c.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://exports/encuentralo.icon.png"
+dest_files=["res://.godot/imported/encuentralo.icon.png-0596398901f0adf464508b2356eaa67c.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+
+var Godot = (() => {
+ var _scriptName = typeof document != 'undefined' ? document.currentScript?.src : undefined;
+
+ return (
+function(moduleArg = {}) {
+ var moduleRtn;
+
+var Module=moduleArg;var readyPromiseResolve,readyPromiseReject;var readyPromise=new Promise((resolve,reject)=>{readyPromiseResolve=resolve;readyPromiseReject=reject});["_memory","__Z14godot_web_mainiPPc","__emwebxr_on_input_event","__emwebxr_on_simple_event","___indirect_function_table","_main","onRuntimeInitialized"].forEach(prop=>{if(!Object.getOwnPropertyDescriptor(readyPromise,prop)){Object.defineProperty(readyPromise,prop,{get:()=>abort("You are getting "+prop+" on the Promise object, instead of the instance. Use .then() to get called back with the instance, see the MODULARIZE docs in src/settings.js"),set:()=>abort("You are setting "+prop+" on the Promise object, instead of the instance. Use .then() to get called back with the instance, see the MODULARIZE docs in src/settings.js")})}});var ENVIRONMENT_IS_WEB=typeof window=="object";var ENVIRONMENT_IS_WORKER=typeof importScripts=="function";var ENVIRONMENT_IS_NODE=typeof process=="object"&&typeof process.versions=="object"&&typeof process.versions.node=="string";var ENVIRONMENT_IS_SHELL=!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_NODE&&!ENVIRONMENT_IS_WORKER;if(Module["ENVIRONMENT"]){throw new Error("Module.ENVIRONMENT has been deprecated. To force the environment, use the ENVIRONMENT compile-time option (for example, -sENVIRONMENT=web or -sENVIRONMENT=node)")}var moduleOverrides=Object.assign({},Module);var arguments_=[];var thisProgram="./this.program";var quit_=(status,toThrow)=>{throw toThrow};var scriptDirectory="";function locateFile(path){if(Module["locateFile"]){return Module["locateFile"](path,scriptDirectory)}return scriptDirectory+path}var readAsync,readBinary;if(ENVIRONMENT_IS_SHELL){if(typeof process=="object"&&typeof require==="function"||typeof window=="object"||typeof importScripts=="function")throw new Error("not compiled for this environment (did you build to HTML and try to run it not on the web, or set ENVIRONMENT to something - like node - and run it someplace else - like on the web?)")}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href}else if(typeof document!="undefined"&&document.currentScript){scriptDirectory=document.currentScript.src}if(_scriptName){scriptDirectory=_scriptName}if(scriptDirectory.startsWith("blob:")){scriptDirectory=""}else{scriptDirectory=scriptDirectory.substr(0,scriptDirectory.replace(/[?#].*/,"").lastIndexOf("/")+1)}if(!(typeof window=="object"||typeof importScripts=="function"))throw new Error("not compiled for this environment (did you build to HTML and try to run it not on the web, or set ENVIRONMENT to something - like node - and run it someplace else - like on the web?)");{if(ENVIRONMENT_IS_WORKER){readBinary=url=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.responseType="arraybuffer";xhr.send(null);return new Uint8Array(xhr.response)}}readAsync=url=>{assert(!isFileURI(url),"readAsync does not work with file:// URLs");return fetch(url,{credentials:"same-origin"}).then(response=>{if(response.ok){return response.arrayBuffer()}return Promise.reject(new Error(response.status+" : "+response.url))})}}}else{throw new Error("environment detection error")}var out=Module["print"]||console.log.bind(console);var err=Module["printErr"]||console.error.bind(console);Object.assign(Module,moduleOverrides);moduleOverrides=null;checkIncomingModuleAPI();if(Module["arguments"])arguments_=Module["arguments"];legacyModuleProp("arguments","arguments_");if(Module["thisProgram"])thisProgram=Module["thisProgram"];legacyModuleProp("thisProgram","thisProgram");if(Module["quit"])quit_=Module["quit"];legacyModuleProp("quit","quit_");assert(typeof Module["memoryInitializerPrefixURL"]=="undefined","Module.memoryInitializerPrefixURL option was removed, use Module.locateFile instead");assert(typeof Module["pthreadMainPrefixURL"]=="undefined","Module.pthreadMainPrefixURL option was removed, use Module.locateFile instead");assert(typeof Module["cdInitializerPrefixURL"]=="undefined","Module.cdInitializerPrefixURL option was removed, use Module.locateFile instead");assert(typeof Module["filePackagePrefixURL"]=="undefined","Module.filePackagePrefixURL option was removed, use Module.locateFile instead");assert(typeof Module["read"]=="undefined","Module.read option was removed");assert(typeof Module["readAsync"]=="undefined","Module.readAsync option was removed (modify readAsync in JS)");assert(typeof Module["readBinary"]=="undefined","Module.readBinary option was removed (modify readBinary in JS)");assert(typeof Module["setWindowTitle"]=="undefined","Module.setWindowTitle option was removed (modify emscripten_set_window_title in JS)");assert(typeof Module["TOTAL_MEMORY"]=="undefined","Module.TOTAL_MEMORY has been renamed Module.INITIAL_MEMORY");legacyModuleProp("asm","wasmExports");legacyModuleProp("readAsync","readAsync");legacyModuleProp("readBinary","readBinary");legacyModuleProp("setWindowTitle","setWindowTitle");assert(!ENVIRONMENT_IS_NODE,"node environment detected but not enabled at build time. Add `node` to `-sENVIRONMENT` to enable.");assert(!ENVIRONMENT_IS_SHELL,"shell environment detected but not enabled at build time. Add `shell` to `-sENVIRONMENT` to enable.");var wasmBinary;if(Module["wasmBinary"])wasmBinary=Module["wasmBinary"];legacyModuleProp("wasmBinary","wasmBinary");if(typeof WebAssembly!="object"){err("no native wasm support detected")}var wasmMemory;var ABORT=false;var EXITSTATUS;function assert(condition,text){if(!condition){abort("Assertion failed"+(text?": "+text:""))}}var HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAP64,HEAPU64,HEAPF64;function updateMemoryViews(){var b=wasmMemory.buffer;Module["HEAP8"]=HEAP8=new Int8Array(b);Module["HEAP16"]=HEAP16=new Int16Array(b);Module["HEAPU8"]=HEAPU8=new Uint8Array(b);Module["HEAPU16"]=HEAPU16=new Uint16Array(b);Module["HEAP32"]=HEAP32=new Int32Array(b);Module["HEAPU32"]=HEAPU32=new Uint32Array(b);Module["HEAPF32"]=HEAPF32=new Float32Array(b);Module["HEAPF64"]=HEAPF64=new Float64Array(b);Module["HEAP64"]=HEAP64=new BigInt64Array(b);Module["HEAPU64"]=HEAPU64=new BigUint64Array(b)}assert(!Module["STACK_SIZE"],"STACK_SIZE can no longer be set at runtime. Use -sSTACK_SIZE at link time");assert(typeof Int32Array!="undefined"&&typeof Float64Array!=="undefined"&&Int32Array.prototype.subarray!=undefined&&Int32Array.prototype.set!=undefined,"JS engine does not provide full typed array support");assert(!Module["wasmMemory"],"Use of `wasmMemory` detected. Use -sIMPORTED_MEMORY to define wasmMemory externally");assert(!Module["INITIAL_MEMORY"],"Detected runtime INITIAL_MEMORY setting. Use -sIMPORTED_MEMORY to define wasmMemory dynamically");function writeStackCookie(){var max=_emscripten_stack_get_end();assert((max&3)==0);if(max==0){max+=4}HEAPU32[max>>2]=34821223;HEAPU32[max+4>>2]=2310721022;HEAPU32[0>>2]=1668509029}function checkStackCookie(){if(ABORT)return;var max=_emscripten_stack_get_end();if(max==0){max+=4}var cookie1=HEAPU32[max>>2];var cookie2=HEAPU32[max+4>>2];if(cookie1!=34821223||cookie2!=2310721022){abort(`Stack overflow! Stack cookie has been overwritten at ${ptrToString(max)}, expected hex dwords 0x89BACDFE and 0x2135467, but received ${ptrToString(cookie2)} ${ptrToString(cookie1)}`)}if(HEAPU32[0>>2]!=1668509029){abort("Runtime error: The application has corrupted its heap memory area (address zero)!")}}(function(){var h16=new Int16Array(1);var h8=new Int8Array(h16.buffer);h16[0]=25459;if(h8[0]!==115||h8[1]!==99)throw"Runtime error: expected the system to be little-endian! (Run with -sSUPPORT_BIG_ENDIAN to bypass)"})();var __ATPRERUN__=[];var __ATINIT__=[];var __ATMAIN__=[];var __ATEXIT__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;var runtimeExited=false;function preRun(){if(Module["preRun"]){if(typeof Module["preRun"]=="function")Module["preRun"]=[Module["preRun"]];while(Module["preRun"].length){addOnPreRun(Module["preRun"].shift())}}callRuntimeCallbacks(__ATPRERUN__)}function initRuntime(){assert(!runtimeInitialized);runtimeInitialized=true;checkStackCookie();if(!Module["noFSInit"]&&!FS.init.initialized)FS.init();FS.ignorePermissions=false;TTY.init();callRuntimeCallbacks(__ATINIT__)}function preMain(){checkStackCookie();callRuntimeCallbacks(__ATMAIN__)}function exitRuntime(){assert(!runtimeExited);checkStackCookie();___funcs_on_exit();callRuntimeCallbacks(__ATEXIT__);FS.quit();TTY.shutdown();IDBFS.quit();runtimeExited=true}function postRun(){checkStackCookie();if(Module["postRun"]){if(typeof Module["postRun"]=="function")Module["postRun"]=[Module["postRun"]];while(Module["postRun"].length){addOnPostRun(Module["postRun"].shift())}}callRuntimeCallbacks(__ATPOSTRUN__)}function addOnPreRun(cb){__ATPRERUN__.unshift(cb)}function addOnInit(cb){__ATINIT__.unshift(cb)}function addOnPostRun(cb){__ATPOSTRUN__.unshift(cb)}assert(Math.imul,"This browser does not support Math.imul(), build with LEGACY_VM_SUPPORT or POLYFILL_OLD_MATH_FUNCTIONS to add in a polyfill");assert(Math.fround,"This browser does not support Math.fround(), build with LEGACY_VM_SUPPORT or POLYFILL_OLD_MATH_FUNCTIONS to add in a polyfill");assert(Math.clz32,"This browser does not support Math.clz32(), build with LEGACY_VM_SUPPORT or POLYFILL_OLD_MATH_FUNCTIONS to add in a polyfill");assert(Math.trunc,"This browser does not support Math.trunc(), build with LEGACY_VM_SUPPORT or POLYFILL_OLD_MATH_FUNCTIONS to add in a polyfill");var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;var runDependencyTracking={};function getUniqueRunDependency(id){var orig=id;while(1){if(!runDependencyTracking[id])return id;id=orig+Math.random()}}function addRunDependency(id){runDependencies++;Module["monitorRunDependencies"]?.(runDependencies);if(id){assert(!runDependencyTracking[id]);runDependencyTracking[id]=1;if(runDependencyWatcher===null&&typeof setInterval!="undefined"){runDependencyWatcher=setInterval(()=>{if(ABORT){clearInterval(runDependencyWatcher);runDependencyWatcher=null;return}var shown=false;for(var dep in runDependencyTracking){if(!shown){shown=true;err("still waiting on run dependencies:")}err(`dependency: ${dep}`)}if(shown){err("(end of list)")}},1e4)}}else{err("warning: run dependency added without ID")}}function removeRunDependency(id){runDependencies--;Module["monitorRunDependencies"]?.(runDependencies);if(id){assert(runDependencyTracking[id]);delete runDependencyTracking[id]}else{err("warning: run dependency removed without ID")}if(runDependencies==0){if(runDependencyWatcher!==null){clearInterval(runDependencyWatcher);runDependencyWatcher=null}if(dependenciesFulfilled){var callback=dependenciesFulfilled;dependenciesFulfilled=null;callback()}}}function abort(what){Module["onAbort"]?.(what);what="Aborted("+what+")";err(what);ABORT=true;EXITSTATUS=1;var e=new WebAssembly.RuntimeError(what);readyPromiseReject(e);throw e}var dataURIPrefix="data:application/octet-stream;base64,";var isDataURI=filename=>filename.startsWith(dataURIPrefix);var isFileURI=filename=>filename.startsWith("file://");function createExportWrapper(name,nargs){return(...args)=>{assert(runtimeInitialized,`native function \`${name}\` called before runtime initialization`);assert(!runtimeExited,`native function \`${name}\` called after runtime exit (use NO_EXIT_RUNTIME to keep it alive after main() exits)`);var f=wasmExports[name];assert(f,`exported native function \`${name}\` not found`);assert(args.length<=nargs,`native function \`${name}\` called with ${args.length} args but expects ${nargs}`);return f(...args)}}function findWasmBinary(){var f="godot.web.template_release.wasm32.nothreads.wasm";if(!isDataURI(f)){return locateFile(f)}return f}var wasmBinaryFile;function getBinarySync(file){if(file==wasmBinaryFile&&wasmBinary){return new Uint8Array(wasmBinary)}if(readBinary){return readBinary(file)}throw"both async and sync fetching of the wasm failed"}function getBinaryPromise(binaryFile){if(!wasmBinary){return readAsync(binaryFile).then(response=>new Uint8Array(response),()=>getBinarySync(binaryFile))}return Promise.resolve().then(()=>getBinarySync(binaryFile))}function instantiateArrayBuffer(binaryFile,imports,receiver){return getBinaryPromise(binaryFile).then(binary=>WebAssembly.instantiate(binary,imports)).then(receiver,reason=>{err(`failed to asynchronously prepare wasm: ${reason}`);if(isFileURI(wasmBinaryFile)){err(`warning: Loading from a file URI (${wasmBinaryFile}) is not supported in most browsers. See https://emscripten.org/docs/getting_started/FAQ.html#how-do-i-run-a-local-webserver-for-testing-why-does-my-program-stall-in-downloading-or-preparing`)}abort(reason)})}function instantiateAsync(binary,binaryFile,imports,callback){if(!binary&&typeof WebAssembly.instantiateStreaming=="function"&&!isDataURI(binaryFile)&&typeof fetch=="function"){return fetch(binaryFile,{credentials:"same-origin"}).then(response=>{var result=WebAssembly.instantiateStreaming(response,imports);return result.then(callback,function(reason){err(`wasm streaming compile failed: ${reason}`);err("falling back to ArrayBuffer instantiation");return instantiateArrayBuffer(binaryFile,imports,callback)})})}return instantiateArrayBuffer(binaryFile,imports,callback)}function getWasmImports(){return{env:wasmImports,wasi_snapshot_preview1:wasmImports}}function createWasm(){var info=getWasmImports();function receiveInstance(instance,module){wasmExports=instance.exports;wasmMemory=wasmExports["memory"];assert(wasmMemory,"memory not found in wasm exports");updateMemoryViews();wasmTable=wasmExports["__indirect_function_table"];assert(wasmTable,"table not found in wasm exports");addOnInit(wasmExports["__wasm_call_ctors"]);removeRunDependency("wasm-instantiate");return wasmExports}addRunDependency("wasm-instantiate");var trueModule=Module;function receiveInstantiationResult(result){assert(Module===trueModule,"the Module object should not be replaced during async compilation - perhaps the order of HTML elements is wrong?");trueModule=null;receiveInstance(result["instance"])}if(Module["instantiateWasm"]){try{return Module["instantiateWasm"](info,receiveInstance)}catch(e){err(`Module.instantiateWasm callback failed with error: ${e}`);readyPromiseReject(e)}}if(!wasmBinaryFile)wasmBinaryFile=findWasmBinary();instantiateAsync(wasmBinary,wasmBinaryFile,info,receiveInstantiationResult).catch(readyPromiseReject);return{}}function legacyModuleProp(prop,newName,incoming=true){if(!Object.getOwnPropertyDescriptor(Module,prop)){Object.defineProperty(Module,prop,{configurable:true,get(){let extra=incoming?" (the initial value can be provided on Module, but after startup the value is only looked for on a local variable of that name)":"";abort(`\`Module.${prop}\` has been replaced by \`${newName}\``+extra)}})}}function ignoredModuleProp(prop){if(Object.getOwnPropertyDescriptor(Module,prop)){abort(`\`Module.${prop}\` was supplied but \`${prop}\` not included in INCOMING_MODULE_JS_API`)}}function isExportedByForceFilesystem(name){return name==="FS_createPath"||name==="FS_createDataFile"||name==="FS_createPreloadedFile"||name==="FS_unlink"||name==="addRunDependency"||name==="FS_createLazyFile"||name==="FS_createDevice"||name==="removeRunDependency"}function missingGlobal(sym,msg){if(typeof globalThis!="undefined"){Object.defineProperty(globalThis,sym,{configurable:true,get(){warnOnce(`\`${sym}\` is not longer defined by emscripten. ${msg}`);return undefined}})}}missingGlobal("buffer","Please use HEAP8.buffer or wasmMemory.buffer");missingGlobal("asm","Please use wasmExports instead");function missingLibrarySymbol(sym){if(typeof globalThis!="undefined"&&!Object.getOwnPropertyDescriptor(globalThis,sym)){Object.defineProperty(globalThis,sym,{configurable:true,get(){var msg=`\`${sym}\` is a library symbol and not included by default; add it to your library.js __deps or to DEFAULT_LIBRARY_FUNCS_TO_INCLUDE on the command line`;var librarySymbol=sym;if(!librarySymbol.startsWith("_")){librarySymbol="$"+sym}msg+=` (e.g. -sDEFAULT_LIBRARY_FUNCS_TO_INCLUDE='${librarySymbol}')`;if(isExportedByForceFilesystem(sym)){msg+=". Alternatively, forcing filesystem support (-sFORCE_FILESYSTEM) can export this for you"}warnOnce(msg);return undefined}})}unexportedRuntimeSymbol(sym)}function unexportedRuntimeSymbol(sym){if(!Object.getOwnPropertyDescriptor(Module,sym)){Object.defineProperty(Module,sym,{configurable:true,get(){var msg=`'${sym}' was not exported. add it to EXPORTED_RUNTIME_METHODS (see the Emscripten FAQ)`;if(isExportedByForceFilesystem(sym)){msg+=". Alternatively, forcing filesystem support (-sFORCE_FILESYSTEM) can export this for you"}abort(msg)}})}}function ExitStatus(status){this.name="ExitStatus";this.message=`Program terminated with exit(${status})`;this.status=status}var callRuntimeCallbacks=callbacks=>{while(callbacks.length>0){callbacks.shift()(Module)}};function getValue(ptr,type="i8"){if(type.endsWith("*"))type="*";switch(type){case"i1":return HEAP8[ptr];case"i8":return HEAP8[ptr];case"i16":return HEAP16[ptr>>1];case"i32":return HEAP32[ptr>>2];case"i64":return HEAP64[ptr>>3];case"float":return HEAPF32[ptr>>2];case"double":return HEAPF64[ptr>>3];case"*":return HEAPU32[ptr>>2];default:abort(`invalid type for getValue: ${type}`)}}var noExitRuntime=Module["noExitRuntime"]||false;var ptrToString=ptr=>{assert(typeof ptr==="number");ptr>>>=0;return"0x"+ptr.toString(16).padStart(8,"0")};function setValue(ptr,value,type="i8"){if(type.endsWith("*"))type="*";switch(type){case"i1":HEAP8[ptr]=value;break;case"i8":HEAP8[ptr]=value;break;case"i16":HEAP16[ptr>>1]=value;break;case"i32":HEAP32[ptr>>2]=value;break;case"i64":HEAP64[ptr>>3]=BigInt(value);break;case"float":HEAPF32[ptr>>2]=value;break;case"double":HEAPF64[ptr>>3]=value;break;case"*":HEAPU32[ptr>>2]=value;break;default:abort(`invalid type for setValue: ${type}`)}}var warnOnce=text=>{warnOnce.shown||={};if(!warnOnce.shown[text]){warnOnce.shown[text]=1;err(text)}};var UTF8Decoder=typeof TextDecoder!="undefined"?new TextDecoder:undefined;var UTF8ArrayToString=(heapOrArray,idx,maxBytesToRead)=>{var endIdx=idx+maxBytesToRead;var endPtr=idx;while(heapOrArray[endPtr]&&!(endPtr>=endIdx))++endPtr;if(endPtr-idx>16&&heapOrArray.buffer&&UTF8Decoder){return UTF8Decoder.decode(heapOrArray.subarray(idx,endPtr))}var str="";while(idx<endPtr){var u0=heapOrArray[idx++];if(!(u0&128)){str+=String.fromCharCode(u0);continue}var u1=heapOrArray[idx++]&63;if((u0&224)==192){str+=String.fromCharCode((u0&31)<<6|u1);continue}var u2=heapOrArray[idx++]&63;if((u0&240)==224){u0=(u0&15)<<12|u1<<6|u2}else{if((u0&248)!=240)warnOnce("Invalid UTF-8 leading byte "+ptrToString(u0)+" encountered when deserializing a UTF-8 string in wasm memory to a JS string!");u0=(u0&7)<<18|u1<<12|u2<<6|heapOrArray[idx++]&63}if(u0<65536){str+=String.fromCharCode(u0)}else{var ch=u0-65536;str+=String.fromCharCode(55296|ch>>10,56320|ch&1023)}}return str};var UTF8ToString=(ptr,maxBytesToRead)=>{assert(typeof ptr=="number",`UTF8ToString expects a number (got ${typeof ptr})`);return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):""};var ___assert_fail=(condition,filename,line,func)=>{abort(`Assertion failed: ${UTF8ToString(condition)}, at: `+[filename?UTF8ToString(filename):"unknown filename",line,func?UTF8ToString(func):"unknown function"])};var wasmTable;var getWasmTableEntry=funcPtr=>wasmTable.get(funcPtr);var ___call_sighandler=(fp,sig)=>getWasmTableEntry(fp)(sig);var PATH={isAbs:path=>path.charAt(0)==="/",splitPath:filename=>{var splitPathRe=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/;return splitPathRe.exec(filename).slice(1)},normalizeArray:(parts,allowAboveRoot)=>{var up=0;for(var i=parts.length-1;i>=0;i--){var last=parts[i];if(last==="."){parts.splice(i,1)}else if(last===".."){parts.splice(i,1);up++}else if(up){parts.splice(i,1);up--}}if(allowAboveRoot){for(;up;up--){parts.unshift("..")}}return parts},normalize:path=>{var isAbsolute=PATH.isAbs(path),trailingSlash=path.substr(-1)==="/";path=PATH.normalizeArray(path.split("/").filter(p=>!!p),!isAbsolute).join("/");if(!path&&!isAbsolute){path="."}if(path&&trailingSlash){path+="/"}return(isAbsolute?"/":"")+path},dirname:path=>{var result=PATH.splitPath(path),root=result[0],dir=result[1];if(!root&&!dir){return"."}if(dir){dir=dir.substr(0,dir.length-1)}return root+dir},basename:path=>{if(path==="/")return"/";path=PATH.normalize(path);path=path.replace(/\/$/,"");var lastSlash=path.lastIndexOf("/");if(lastSlash===-1)return path;return path.substr(lastSlash+1)},join:(...paths)=>PATH.normalize(paths.join("/")),join2:(l,r)=>PATH.normalize(l+"/"+r)};var initRandomFill=()=>{if(typeof crypto=="object"&&typeof crypto["getRandomValues"]=="function"){return view=>crypto.getRandomValues(view)}else abort("no cryptographic support found for randomDevice. consider polyfilling it if you want to use something insecure like Math.random(), e.g. put this in a --pre-js: var crypto = { getRandomValues: (array) => { for (var i = 0; i < array.length; i++) array[i] = (Math.random()*256)|0 } };")};var randomFill=view=>(randomFill=initRandomFill())(view);var PATH_FS={resolve:(...args)=>{var resolvedPath="",resolvedAbsolute=false;for(var i=args.length-1;i>=-1&&!resolvedAbsolute;i--){var path=i>=0?args[i]:FS.cwd();if(typeof path!="string"){throw new TypeError("Arguments to path.resolve must be strings")}else if(!path){return""}resolvedPath=path+"/"+resolvedPath;resolvedAbsolute=PATH.isAbs(path)}resolvedPath=PATH.normalizeArray(resolvedPath.split("/").filter(p=>!!p),!resolvedAbsolute).join("/");return(resolvedAbsolute?"/":"")+resolvedPath||"."},relative:(from,to)=>{from=PATH_FS.resolve(from).substr(1);to=PATH_FS.resolve(to).substr(1);function trim(arr){var start=0;for(;start<arr.length;start++){if(arr[start]!=="")break}var end=arr.length-1;for(;end>=0;end--){if(arr[end]!=="")break}if(start>end)return[];return arr.slice(start,end-start+1)}var fromParts=trim(from.split("/"));var toParts=trim(to.split("/"));var length=Math.min(fromParts.length,toParts.length);var samePartsLength=length;for(var i=0;i<length;i++){if(fromParts[i]!==toParts[i]){samePartsLength=i;break}}var outputParts=[];for(var i=samePartsLength;i<fromParts.length;i++){outputParts.push("..")}outputParts=outputParts.concat(toParts.slice(samePartsLength));return outputParts.join("/")}};var FS_stdin_getChar_buffer=[];var lengthBytesUTF8=str=>{var len=0;for(var i=0;i<str.length;++i){var c=str.charCodeAt(i);if(c<=127){len++}else if(c<=2047){len+=2}else if(c>=55296&&c<=57343){len+=4;++i}else{len+=3}}return len};var stringToUTF8Array=(str,heap,outIdx,maxBytesToWrite)=>{assert(typeof str==="string",`stringToUTF8Array expects a string (got ${typeof str})`);if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i<str.length;++i){var u=str.charCodeAt(i);if(u>=55296&&u<=57343){var u1=str.charCodeAt(++i);u=65536+((u&1023)<<10)|u1&1023}if(u<=127){if(outIdx>=endIdx)break;heap[outIdx++]=u}else if(u<=2047){if(outIdx+1>=endIdx)break;heap[outIdx++]=192|u>>6;heap[outIdx++]=128|u&63}else if(u<=65535){if(outIdx+2>=endIdx)break;heap[outIdx++]=224|u>>12;heap[outIdx++]=128|u>>6&63;heap[outIdx++]=128|u&63}else{if(outIdx+3>=endIdx)break;if(u>1114111)warnOnce("Invalid Unicode code point "+ptrToString(u)+" encountered when serializing a JS string to a UTF-8 string in wasm memory! (Valid unicode code points should be in range 0-0x10FFFF).");heap[outIdx++]=240|u>>18;heap[outIdx++]=128|u>>12&63;heap[outIdx++]=128|u>>6&63;heap[outIdx++]=128|u&63}}heap[outIdx]=0;return outIdx-startIdx};function intArrayFromString(stringy,dontAddNull,length){var len=length>0?length:lengthBytesUTF8(stringy)+1;var u8array=new Array(len);var numBytesWritten=stringToUTF8Array(stringy,u8array,0,u8array.length);if(dontAddNull)u8array.length=numBytesWritten;return u8array}var FS_stdin_getChar=()=>{if(!FS_stdin_getChar_buffer.length){var result=null;if(typeof window!="undefined"&&typeof window.prompt=="function"){result=window.prompt("Input: ");if(result!==null){result+="\n"}}else{}if(!result){return null}FS_stdin_getChar_buffer=intArrayFromString(result,true)}return FS_stdin_getChar_buffer.shift()};var TTY={ttys:[],init(){},shutdown(){},register(dev,ops){TTY.ttys[dev]={input:[],output:[],ops:ops};FS.registerDevice(dev,TTY.stream_ops)},stream_ops:{open(stream){var tty=TTY.ttys[stream.node.rdev];if(!tty){throw new FS.ErrnoError(43)}stream.tty=tty;stream.seekable=false},close(stream){stream.tty.ops.fsync(stream.tty)},fsync(stream){stream.tty.ops.fsync(stream.tty)},read(stream,buffer,offset,length,pos){if(!stream.tty||!stream.tty.ops.get_char){throw new FS.ErrnoError(60)}var bytesRead=0;for(var i=0;i<length;i++){var result;try{result=stream.tty.ops.get_char(stream.tty)}catch(e){throw new FS.ErrnoError(29)}if(result===undefined&&bytesRead===0){throw new FS.ErrnoError(6)}if(result===null||result===undefined)break;bytesRead++;buffer[offset+i]=result}if(bytesRead){stream.node.timestamp=Date.now()}return bytesRead},write(stream,buffer,offset,length,pos){if(!stream.tty||!stream.tty.ops.put_char){throw new FS.ErrnoError(60)}try{for(var i=0;i<length;i++){stream.tty.ops.put_char(stream.tty,buffer[offset+i])}}catch(e){throw new FS.ErrnoError(29)}if(length){stream.node.timestamp=Date.now()}return i}},default_tty_ops:{get_char(tty){return FS_stdin_getChar()},put_char(tty,val){if(val===null||val===10){out(UTF8ArrayToString(tty.output,0));tty.output=[]}else{if(val!=0)tty.output.push(val)}},fsync(tty){if(tty.output&&tty.output.length>0){out(UTF8ArrayToString(tty.output,0));tty.output=[]}},ioctl_tcgets(tty){return{c_iflag:25856,c_oflag:5,c_cflag:191,c_lflag:35387,c_cc:[3,28,127,21,4,0,1,0,17,19,26,0,18,15,23,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}},ioctl_tcsets(tty,optional_actions,data){return 0},ioctl_tiocgwinsz(tty){return[24,80]}},default_tty1_ops:{put_char(tty,val){if(val===null||val===10){err(UTF8ArrayToString(tty.output,0));tty.output=[]}else{if(val!=0)tty.output.push(val)}},fsync(tty){if(tty.output&&tty.output.length>0){err(UTF8ArrayToString(tty.output,0));tty.output=[]}}}};var mmapAlloc=size=>{abort("internal error: mmapAlloc called but `emscripten_builtin_memalign` native symbol not exported")};var MEMFS={ops_table:null,mount(mount){return MEMFS.createNode(null,"/",16384|511,0)},createNode(parent,name,mode,dev){if(FS.isBlkdev(mode)||FS.isFIFO(mode)){throw new FS.ErrnoError(63)}MEMFS.ops_table||={dir:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr,lookup:MEMFS.node_ops.lookup,mknod:MEMFS.node_ops.mknod,rename:MEMFS.node_ops.rename,unlink:MEMFS.node_ops.unlink,rmdir:MEMFS.node_ops.rmdir,readdir:MEMFS.node_ops.readdir,symlink:MEMFS.node_ops.symlink},stream:{llseek:MEMFS.stream_ops.llseek}},file:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr},stream:{llseek:MEMFS.stream_ops.llseek,read:MEMFS.stream_ops.read,write:MEMFS.stream_ops.write,allocate:MEMFS.stream_ops.allocate,mmap:MEMFS.stream_ops.mmap,msync:MEMFS.stream_ops.msync}},link:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr,readlink:MEMFS.node_ops.readlink},stream:{}},chrdev:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr},stream:FS.chrdev_stream_ops}};var node=FS.createNode(parent,name,mode,dev);if(FS.isDir(node.mode)){node.node_ops=MEMFS.ops_table.dir.node;node.stream_ops=MEMFS.ops_table.dir.stream;node.contents={}}else if(FS.isFile(node.mode)){node.node_ops=MEMFS.ops_table.file.node;node.stream_ops=MEMFS.ops_table.file.stream;node.usedBytes=0;node.contents=null}else if(FS.isLink(node.mode)){node.node_ops=MEMFS.ops_table.link.node;node.stream_ops=MEMFS.ops_table.link.stream}else if(FS.isChrdev(node.mode)){node.node_ops=MEMFS.ops_table.chrdev.node;node.stream_ops=MEMFS.ops_table.chrdev.stream}node.timestamp=Date.now();if(parent){parent.contents[name]=node;parent.timestamp=node.timestamp}return node},getFileDataAsTypedArray(node){if(!node.contents)return new Uint8Array(0);if(node.contents.subarray)return node.contents.subarray(0,node.usedBytes);return new Uint8Array(node.contents)},expandFileStorage(node,newCapacity){var prevCapacity=node.contents?node.contents.length:0;if(prevCapacity>=newCapacity)return;var CAPACITY_DOUBLING_MAX=1024*1024;newCapacity=Math.max(newCapacity,prevCapacity*(prevCapacity<CAPACITY_DOUBLING_MAX?2:1.125)>>>0);if(prevCapacity!=0)newCapacity=Math.max(newCapacity,256);var oldContents=node.contents;node.contents=new Uint8Array(newCapacity);if(node.usedBytes>0)node.contents.set(oldContents.subarray(0,node.usedBytes),0)},resizeFileStorage(node,newSize){if(node.usedBytes==newSize)return;if(newSize==0){node.contents=null;node.usedBytes=0}else{var oldContents=node.contents;node.contents=new Uint8Array(newSize);if(oldContents){node.contents.set(oldContents.subarray(0,Math.min(newSize,node.usedBytes)))}node.usedBytes=newSize}},node_ops:{getattr(node){var attr={};attr.dev=FS.isChrdev(node.mode)?node.id:1;attr.ino=node.id;attr.mode=node.mode;attr.nlink=1;attr.uid=0;attr.gid=0;attr.rdev=node.rdev;if(FS.isDir(node.mode)){attr.size=4096}else if(FS.isFile(node.mode)){attr.size=node.usedBytes}else if(FS.isLink(node.mode)){attr.size=node.link.length}else{attr.size=0}attr.atime=new Date(node.timestamp);attr.mtime=new Date(node.timestamp);attr.ctime=new Date(node.timestamp);attr.blksize=4096;attr.blocks=Math.ceil(attr.size/attr.blksize);return attr},setattr(node,attr){if(attr.mode!==undefined){node.mode=attr.mode}if(attr.timestamp!==undefined){node.timestamp=attr.timestamp}if(attr.size!==undefined){MEMFS.resizeFileStorage(node,attr.size)}},lookup(parent,name){throw FS.genericErrors[44]},mknod(parent,name,mode,dev){return MEMFS.createNode(parent,name,mode,dev)},rename(old_node,new_dir,new_name){if(FS.isDir(old_node.mode)){var new_node;try{new_node=FS.lookupNode(new_dir,new_name)}catch(e){}if(new_node){for(var i in new_node.contents){throw new FS.ErrnoError(55)}}}delete old_node.parent.contents[old_node.name];old_node.parent.timestamp=Date.now();old_node.name=new_name;new_dir.contents[new_name]=old_node;new_dir.timestamp=old_node.parent.timestamp},unlink(parent,name){delete parent.contents[name];parent.timestamp=Date.now()},rmdir(parent,name){var node=FS.lookupNode(parent,name);for(var i in node.contents){throw new FS.ErrnoError(55)}delete parent.contents[name];parent.timestamp=Date.now()},readdir(node){var entries=[".",".."];for(var key of Object.keys(node.contents)){entries.push(key)}return entries},symlink(parent,newname,oldpath){var node=MEMFS.createNode(parent,newname,511|40960,0);node.link=oldpath;return node},readlink(node){if(!FS.isLink(node.mode)){throw new FS.ErrnoError(28)}return node.link}},stream_ops:{read(stream,buffer,offset,length,position){var contents=stream.node.contents;if(position>=stream.node.usedBytes)return 0;var size=Math.min(stream.node.usedBytes-position,length);assert(size>=0);if(size>8&&contents.subarray){buffer.set(contents.subarray(position,position+size),offset)}else{for(var i=0;i<size;i++)buffer[offset+i]=contents[position+i]}return size},write(stream,buffer,offset,length,position,canOwn){assert(!(buffer instanceof ArrayBuffer));if(buffer.buffer===HEAP8.buffer){canOwn=false}if(!length)return 0;var node=stream.node;node.timestamp=Date.now();if(buffer.subarray&&(!node.contents||node.contents.subarray)){if(canOwn){assert(position===0,"canOwn must imply no weird position inside the file");node.contents=buffer.subarray(offset,offset+length);node.usedBytes=length;return length}else if(node.usedBytes===0&&position===0){node.contents=buffer.slice(offset,offset+length);node.usedBytes=length;return length}else if(position+length<=node.usedBytes){node.contents.set(buffer.subarray(offset,offset+length),position);return length}}MEMFS.expandFileStorage(node,position+length);if(node.contents.subarray&&buffer.subarray){node.contents.set(buffer.subarray(offset,offset+length),position)}else{for(var i=0;i<length;i++){node.contents[position+i]=buffer[offset+i]}}node.usedBytes=Math.max(node.usedBytes,position+length);return length},llseek(stream,offset,whence){var position=offset;if(whence===1){position+=stream.position}else if(whence===2){if(FS.isFile(stream.node.mode)){position+=stream.node.usedBytes}}if(position<0){throw new FS.ErrnoError(28)}return position},allocate(stream,offset,length){MEMFS.expandFileStorage(stream.node,offset+length);stream.node.usedBytes=Math.max(stream.node.usedBytes,offset+length)},mmap(stream,length,position,prot,flags){if(!FS.isFile(stream.node.mode)){throw new FS.ErrnoError(43)}var ptr;var allocated;var contents=stream.node.contents;if(!(flags&2)&&contents.buffer===HEAP8.buffer){allocated=false;ptr=contents.byteOffset}else{if(position>0||position+length<contents.length){if(contents.subarray){contents=contents.subarray(position,position+length)}else{contents=Array.prototype.slice.call(contents,position,position+length)}}allocated=true;ptr=mmapAlloc(length);if(!ptr){throw new FS.ErrnoError(48)}HEAP8.set(contents,ptr)}return{ptr:ptr,allocated:allocated}},msync(stream,buffer,offset,length,mmapFlags){MEMFS.stream_ops.write(stream,buffer,0,length,offset,false);return 0}}};var asyncLoad=(url,onload,onerror,noRunDep)=>{var dep=!noRunDep?getUniqueRunDependency(`al ${url}`):"";readAsync(url).then(arrayBuffer=>{assert(arrayBuffer,`Loading data file "${url}" failed (no arrayBuffer).`);onload(new Uint8Array(arrayBuffer));if(dep)removeRunDependency(dep)},err=>{if(onerror){onerror()}else{throw`Loading data file "${url}" failed.`}});if(dep)addRunDependency(dep)};var FS_createDataFile=(parent,name,fileData,canRead,canWrite,canOwn)=>{FS.createDataFile(parent,name,fileData,canRead,canWrite,canOwn)};var preloadPlugins=Module["preloadPlugins"]||[];var FS_handledByPreloadPlugin=(byteArray,fullname,finish,onerror)=>{if(typeof Browser!="undefined")Browser.init();var handled=false;preloadPlugins.forEach(plugin=>{if(handled)return;if(plugin["canHandle"](fullname)){plugin["handle"](byteArray,fullname,finish,onerror);handled=true}});return handled};var FS_createPreloadedFile=(parent,name,url,canRead,canWrite,onload,onerror,dontCreateFile,canOwn,preFinish)=>{var fullname=name?PATH_FS.resolve(PATH.join2(parent,name)):parent;var dep=getUniqueRunDependency(`cp ${fullname}`);function processData(byteArray){function finish(byteArray){preFinish?.();if(!dontCreateFile){FS_createDataFile(parent,name,byteArray,canRead,canWrite,canOwn)}onload?.();removeRunDependency(dep)}if(FS_handledByPreloadPlugin(byteArray,fullname,finish,()=>{onerror?.();removeRunDependency(dep)})){return}finish(byteArray)}addRunDependency(dep);if(typeof url=="string"){asyncLoad(url,processData,onerror)}else{processData(url)}};var FS_modeStringToFlags=str=>{var flagModes={r:0,"r+":2,w:512|64|1,"w+":512|64|2,a:1024|64|1,"a+":1024|64|2};var flags=flagModes[str];if(typeof flags=="undefined"){throw new Error(`Unknown file open mode: ${str}`)}return flags};var FS_getMode=(canRead,canWrite)=>{var mode=0;if(canRead)mode|=292|73;if(canWrite)mode|=146;return mode};var IDBFS={dbs:{},indexedDB:()=>{if(typeof indexedDB!="undefined")return indexedDB;var ret=null;if(typeof window=="object")ret=window.indexedDB||window.mozIndexedDB||window.webkitIndexedDB||window.msIndexedDB;assert(ret,"IDBFS used, but indexedDB not supported");return ret},DB_VERSION:21,DB_STORE_NAME:"FILE_DATA",queuePersist:mount=>{function onPersistComplete(){if(mount.idbPersistState==="again")startPersist();else mount.idbPersistState=0}function startPersist(){mount.idbPersistState="idb";IDBFS.syncfs(mount,false,onPersistComplete)}if(!mount.idbPersistState){mount.idbPersistState=setTimeout(startPersist,0)}else if(mount.idbPersistState==="idb"){mount.idbPersistState="again"}},mount:mount=>{var mnt=MEMFS.mount(mount);if(mount?.opts?.autoPersist){mnt.idbPersistState=0;var memfs_node_ops=mnt.node_ops;mnt.node_ops=Object.assign({},mnt.node_ops);mnt.node_ops.mknod=(parent,name,mode,dev)=>{var node=memfs_node_ops.mknod(parent,name,mode,dev);node.node_ops=mnt.node_ops;node.idbfs_mount=mnt.mount;node.memfs_stream_ops=node.stream_ops;node.stream_ops=Object.assign({},node.stream_ops);node.stream_ops.write=(stream,buffer,offset,length,position,canOwn)=>{stream.node.isModified=true;return node.memfs_stream_ops.write(stream,buffer,offset,length,position,canOwn)};node.stream_ops.close=stream=>{var n=stream.node;if(n.isModified){IDBFS.queuePersist(n.idbfs_mount);n.isModified=false}if(n.memfs_stream_ops.close)return n.memfs_stream_ops.close(stream)};return node};mnt.node_ops.mkdir=(...args)=>(IDBFS.queuePersist(mnt.mount),memfs_node_ops.mkdir(...args));mnt.node_ops.rmdir=(...args)=>(IDBFS.queuePersist(mnt.mount),memfs_node_ops.rmdir(...args));mnt.node_ops.symlink=(...args)=>(IDBFS.queuePersist(mnt.mount),memfs_node_ops.symlink(...args));mnt.node_ops.unlink=(...args)=>(IDBFS.queuePersist(mnt.mount),memfs_node_ops.unlink(...args));mnt.node_ops.rename=(...args)=>(IDBFS.queuePersist(mnt.mount),memfs_node_ops.rename(...args))}return mnt},syncfs:(mount,populate,callback)=>{IDBFS.getLocalSet(mount,(err,local)=>{if(err)return callback(err);IDBFS.getRemoteSet(mount,(err,remote)=>{if(err)return callback(err);var src=populate?remote:local;var dst=populate?local:remote;IDBFS.reconcile(src,dst,callback)})})},quit:()=>{Object.values(IDBFS.dbs).forEach(value=>value.close());IDBFS.dbs={}},getDB:(name,callback)=>{var db=IDBFS.dbs[name];if(db){return callback(null,db)}var req;try{req=IDBFS.indexedDB().open(name,IDBFS.DB_VERSION)}catch(e){return callback(e)}if(!req){return callback("Unable to connect to IndexedDB")}req.onupgradeneeded=e=>{var db=e.target.result;var transaction=e.target.transaction;var fileStore;if(db.objectStoreNames.contains(IDBFS.DB_STORE_NAME)){fileStore=transaction.objectStore(IDBFS.DB_STORE_NAME)}else{fileStore=db.createObjectStore(IDBFS.DB_STORE_NAME)}if(!fileStore.indexNames.contains("timestamp")){fileStore.createIndex("timestamp","timestamp",{unique:false})}};req.onsuccess=()=>{db=req.result;IDBFS.dbs[name]=db;callback(null,db)};req.onerror=e=>{callback(e.target.error);e.preventDefault()}},getLocalSet:(mount,callback)=>{var entries={};function isRealDir(p){return p!=="."&&p!==".."}function toAbsolute(root){return p=>PATH.join2(root,p)}var check=FS.readdir(mount.mountpoint).filter(isRealDir).map(toAbsolute(mount.mountpoint));while(check.length){var path=check.pop();var stat;try{stat=FS.stat(path)}catch(e){return callback(e)}if(FS.isDir(stat.mode)){check.push(...FS.readdir(path).filter(isRealDir).map(toAbsolute(path)))}entries[path]={timestamp:stat.mtime}}return callback(null,{type:"local",entries:entries})},getRemoteSet:(mount,callback)=>{var entries={};IDBFS.getDB(mount.mountpoint,(err,db)=>{if(err)return callback(err);try{var transaction=db.transaction([IDBFS.DB_STORE_NAME],"readonly");transaction.onerror=e=>{callback(e.target.error);e.preventDefault()};var store=transaction.objectStore(IDBFS.DB_STORE_NAME);var index=store.index("timestamp");index.openKeyCursor().onsuccess=event=>{var cursor=event.target.result;if(!cursor){return callback(null,{type:"remote",db:db,entries:entries})}entries[cursor.primaryKey]={timestamp:cursor.key};cursor.continue()}}catch(e){return callback(e)}})},loadLocalEntry:(path,callback)=>{var stat,node;try{var lookup=FS.lookupPath(path);node=lookup.node;stat=FS.stat(path)}catch(e){return callback(e)}if(FS.isDir(stat.mode)){return callback(null,{timestamp:stat.mtime,mode:stat.mode})}else if(FS.isFile(stat.mode)){node.contents=MEMFS.getFileDataAsTypedArray(node);return callback(null,{timestamp:stat.mtime,mode:stat.mode,contents:node.contents})}else{return callback(new Error("node type not supported"))}},storeLocalEntry:(path,entry,callback)=>{try{if(FS.isDir(entry["mode"])){FS.mkdirTree(path,entry["mode"])}else if(FS.isFile(entry["mode"])){FS.writeFile(path,entry["contents"],{canOwn:true})}else{return callback(new Error("node type not supported"))}FS.chmod(path,entry["mode"]);FS.utime(path,entry["timestamp"],entry["timestamp"])}catch(e){return callback(e)}callback(null)},removeLocalEntry:(path,callback)=>{try{var stat=FS.stat(path);if(FS.isDir(stat.mode)){FS.rmdir(path)}else if(FS.isFile(stat.mode)){FS.unlink(path)}}catch(e){return callback(e)}callback(null)},loadRemoteEntry:(store,path,callback)=>{var req=store.get(path);req.onsuccess=event=>callback(null,event.target.result);req.onerror=e=>{callback(e.target.error);e.preventDefault()}},storeRemoteEntry:(store,path,entry,callback)=>{try{var req=store.put(entry,path)}catch(e){callback(e);return}req.onsuccess=event=>callback();req.onerror=e=>{callback(e.target.error);e.preventDefault()}},removeRemoteEntry:(store,path,callback)=>{var req=store.delete(path);req.onsuccess=event=>callback();req.onerror=e=>{callback(e.target.error);e.preventDefault()}},reconcile:(src,dst,callback)=>{var total=0;var create=[];Object.keys(src.entries).forEach(function(key){var e=src.entries[key];var e2=dst.entries[key];if(!e2||e["timestamp"].getTime()!=e2["timestamp"].getTime()){create.push(key);total++}});var remove=[];Object.keys(dst.entries).forEach(function(key){if(!src.entries[key]){remove.push(key);total++}});if(!total){return callback(null)}var errored=false;var db=src.type==="remote"?src.db:dst.db;var transaction=db.transaction([IDBFS.DB_STORE_NAME],"readwrite");var store=transaction.objectStore(IDBFS.DB_STORE_NAME);function done(err){if(err&&!errored){errored=true;return callback(err)}}transaction.onerror=transaction.onabort=e=>{done(e.target.error);e.preventDefault()};transaction.oncomplete=e=>{if(!errored){callback(null)}};create.sort().forEach(path=>{if(dst.type==="local"){IDBFS.loadRemoteEntry(store,path,(err,entry)=>{if(err)return done(err);IDBFS.storeLocalEntry(path,entry,done)})}else{IDBFS.loadLocalEntry(path,(err,entry)=>{if(err)return done(err);IDBFS.storeRemoteEntry(store,path,entry,done)})}});remove.sort().reverse().forEach(path=>{if(dst.type==="local"){IDBFS.removeLocalEntry(path,done)}else{IDBFS.removeRemoteEntry(store,path,done)}})}};var strError=errno=>UTF8ToString(_strerror(errno));var ERRNO_CODES={EPERM:63,ENOENT:44,ESRCH:71,EINTR:27,EIO:29,ENXIO:60,E2BIG:1,ENOEXEC:45,EBADF:8,ECHILD:12,EAGAIN:6,EWOULDBLOCK:6,ENOMEM:48,EACCES:2,EFAULT:21,ENOTBLK:105,EBUSY:10,EEXIST:20,EXDEV:75,ENODEV:43,ENOTDIR:54,EISDIR:31,EINVAL:28,ENFILE:41,EMFILE:33,ENOTTY:59,ETXTBSY:74,EFBIG:22,ENOSPC:51,ESPIPE:70,EROFS:69,EMLINK:34,EPIPE:64,EDOM:18,ERANGE:68,ENOMSG:49,EIDRM:24,ECHRNG:106,EL2NSYNC:156,EL3HLT:107,EL3RST:108,ELNRNG:109,EUNATCH:110,ENOCSI:111,EL2HLT:112,EDEADLK:16,ENOLCK:46,EBADE:113,EBADR:114,EXFULL:115,ENOANO:104,EBADRQC:103,EBADSLT:102,EDEADLOCK:16,EBFONT:101,ENOSTR:100,ENODATA:116,ETIME:117,ENOSR:118,ENONET:119,ENOPKG:120,EREMOTE:121,ENOLINK:47,EADV:122,ESRMNT:123,ECOMM:124,EPROTO:65,EMULTIHOP:36,EDOTDOT:125,EBADMSG:9,ENOTUNIQ:126,EBADFD:127,EREMCHG:128,ELIBACC:129,ELIBBAD:130,ELIBSCN:131,ELIBMAX:132,ELIBEXEC:133,ENOSYS:52,ENOTEMPTY:55,ENAMETOOLONG:37,ELOOP:32,EOPNOTSUPP:138,EPFNOSUPPORT:139,ECONNRESET:15,ENOBUFS:42,EAFNOSUPPORT:5,EPROTOTYPE:67,ENOTSOCK:57,ENOPROTOOPT:50,ESHUTDOWN:140,ECONNREFUSED:14,EADDRINUSE:3,ECONNABORTED:13,ENETUNREACH:40,ENETDOWN:38,ETIMEDOUT:73,EHOSTDOWN:142,EHOSTUNREACH:23,EINPROGRESS:26,EALREADY:7,EDESTADDRREQ:17,EMSGSIZE:35,EPROTONOSUPPORT:66,ESOCKTNOSUPPORT:137,EADDRNOTAVAIL:4,ENETRESET:39,EISCONN:30,ENOTCONN:53,ETOOMANYREFS:141,EUSERS:136,EDQUOT:19,ESTALE:72,ENOTSUP:138,ENOMEDIUM:148,EILSEQ:25,EOVERFLOW:61,ECANCELED:11,ENOTRECOVERABLE:56,EOWNERDEAD:62,ESTRPIPE:135};var FS={root:null,mounts:[],devices:{},streams:[],nextInode:1,nameTable:null,currentPath:"/",initialized:false,ignorePermissions:true,ErrnoError:class extends Error{constructor(errno){super(runtimeInitialized?strError(errno):"");this.name="ErrnoError";this.errno=errno;for(var key in ERRNO_CODES){if(ERRNO_CODES[key]===errno){this.code=key;break}}}},genericErrors:{},filesystems:null,syncFSRequests:0,FSStream:class{constructor(){this.shared={}}get object(){return this.node}set object(val){this.node=val}get isRead(){return(this.flags&2097155)!==1}get isWrite(){return(this.flags&2097155)!==0}get isAppend(){return this.flags&1024}get flags(){return this.shared.flags}set flags(val){this.shared.flags=val}get position(){return this.shared.position}set position(val){this.shared.position=val}},FSNode:class{constructor(parent,name,mode,rdev){if(!parent){parent=this}this.parent=parent;this.mount=parent.mount;this.mounted=null;this.id=FS.nextInode++;this.name=name;this.mode=mode;this.node_ops={};this.stream_ops={};this.rdev=rdev;this.readMode=292|73;this.writeMode=146}get read(){return(this.mode&this.readMode)===this.readMode}set read(val){val?this.mode|=this.readMode:this.mode&=~this.readMode}get write(){return(this.mode&this.writeMode)===this.writeMode}set write(val){val?this.mode|=this.writeMode:this.mode&=~this.writeMode}get isFolder(){return FS.isDir(this.mode)}get isDevice(){return FS.isChrdev(this.mode)}},lookupPath(path,opts={}){path=PATH_FS.resolve(path);if(!path)return{path:"",node:null};var defaults={follow_mount:true,recurse_count:0};opts=Object.assign(defaults,opts);if(opts.recurse_count>8){throw new FS.ErrnoError(32)}var parts=path.split("/").filter(p=>!!p);var current=FS.root;var current_path="/";for(var i=0;i<parts.length;i++){var islast=i===parts.length-1;if(islast&&opts.parent){break}current=FS.lookupNode(current,parts[i]);current_path=PATH.join2(current_path,parts[i]);if(FS.isMountpoint(current)){if(!islast||islast&&opts.follow_mount){current=current.mounted.root}}if(!islast||opts.follow){var count=0;while(FS.isLink(current.mode)){var link=FS.readlink(current_path);current_path=PATH_FS.resolve(PATH.dirname(current_path),link);var lookup=FS.lookupPath(current_path,{recurse_count:opts.recurse_count+1});current=lookup.node;if(count++>40){throw new FS.ErrnoError(32)}}}}return{path:current_path,node:current}},getPath(node){var path;while(true){if(FS.isRoot(node)){var mount=node.mount.mountpoint;if(!path)return mount;return mount[mount.length-1]!=="/"?`${mount}/${path}`:mount+path}path=path?`${node.name}/${path}`:node.name;node=node.parent}},hashName(parentid,name){var hash=0;for(var i=0;i<name.length;i++){hash=(hash<<5)-hash+name.charCodeAt(i)|0}return(parentid+hash>>>0)%FS.nameTable.length},hashAddNode(node){var hash=FS.hashName(node.parent.id,node.name);node.name_next=FS.nameTable[hash];FS.nameTable[hash]=node},hashRemoveNode(node){var hash=FS.hashName(node.parent.id,node.name);if(FS.nameTable[hash]===node){FS.nameTable[hash]=node.name_next}else{var current=FS.nameTable[hash];while(current){if(current.name_next===node){current.name_next=node.name_next;break}current=current.name_next}}},lookupNode(parent,name){var errCode=FS.mayLookup(parent);if(errCode){throw new FS.ErrnoError(errCode)}var hash=FS.hashName(parent.id,name);for(var node=FS.nameTable[hash];node;node=node.name_next){var nodeName=node.name;if(node.parent.id===parent.id&&nodeName===name){return node}}return FS.lookup(parent,name)},createNode(parent,name,mode,rdev){assert(typeof parent=="object");var node=new FS.FSNode(parent,name,mode,rdev);FS.hashAddNode(node);return node},destroyNode(node){FS.hashRemoveNode(node)},isRoot(node){return node===node.parent},isMountpoint(node){return!!node.mounted},isFile(mode){return(mode&61440)===32768},isDir(mode){return(mode&61440)===16384},isLink(mode){return(mode&61440)===40960},isChrdev(mode){return(mode&61440)===8192},isBlkdev(mode){return(mode&61440)===24576},isFIFO(mode){return(mode&61440)===4096},isSocket(mode){return(mode&49152)===49152},flagsToPermissionString(flag){var perms=["r","w","rw"][flag&3];if(flag&512){perms+="w"}return perms},nodePermissions(node,perms){if(FS.ignorePermissions){return 0}if(perms.includes("r")&&!(node.mode&292)){return 2}else if(perms.includes("w")&&!(node.mode&146)){return 2}else if(perms.includes("x")&&!(node.mode&73)){return 2}return 0},mayLookup(dir){if(!FS.isDir(dir.mode))return 54;var errCode=FS.nodePermissions(dir,"x");if(errCode)return errCode;if(!dir.node_ops.lookup)return 2;return 0},mayCreate(dir,name){try{var node=FS.lookupNode(dir,name);return 20}catch(e){}return FS.nodePermissions(dir,"wx")},mayDelete(dir,name,isdir){var node;try{node=FS.lookupNode(dir,name)}catch(e){return e.errno}var errCode=FS.nodePermissions(dir,"wx");if(errCode){return errCode}if(isdir){if(!FS.isDir(node.mode)){return 54}if(FS.isRoot(node)||FS.getPath(node)===FS.cwd()){return 10}}else{if(FS.isDir(node.mode)){return 31}}return 0},mayOpen(node,flags){if(!node){return 44}if(FS.isLink(node.mode)){return 32}else if(FS.isDir(node.mode)){if(FS.flagsToPermissionString(flags)!=="r"||flags&512){return 31}}return FS.nodePermissions(node,FS.flagsToPermissionString(flags))},MAX_OPEN_FDS:4096,nextfd(){for(var fd=0;fd<=FS.MAX_OPEN_FDS;fd++){if(!FS.streams[fd]){return fd}}throw new FS.ErrnoError(33)},getStreamChecked(fd){var stream=FS.getStream(fd);if(!stream){throw new FS.ErrnoError(8)}return stream},getStream:fd=>FS.streams[fd],createStream(stream,fd=-1){assert(fd>=-1);stream=Object.assign(new FS.FSStream,stream);if(fd==-1){fd=FS.nextfd()}stream.fd=fd;FS.streams[fd]=stream;return stream},closeStream(fd){FS.streams[fd]=null},dupStream(origStream,fd=-1){var stream=FS.createStream(origStream,fd);stream.stream_ops?.dup?.(stream);return stream},chrdev_stream_ops:{open(stream){var device=FS.getDevice(stream.node.rdev);stream.stream_ops=device.stream_ops;stream.stream_ops.open?.(stream)},llseek(){throw new FS.ErrnoError(70)}},major:dev=>dev>>8,minor:dev=>dev&255,makedev:(ma,mi)=>ma<<8|mi,registerDevice(dev,ops){FS.devices[dev]={stream_ops:ops}},getDevice:dev=>FS.devices[dev],getMounts(mount){var mounts=[];var check=[mount];while(check.length){var m=check.pop();mounts.push(m);check.push(...m.mounts)}return mounts},syncfs(populate,callback){if(typeof populate=="function"){callback=populate;populate=false}FS.syncFSRequests++;if(FS.syncFSRequests>1){err(`warning: ${FS.syncFSRequests} FS.syncfs operations in flight at once, probably just doing extra work`)}var mounts=FS.getMounts(FS.root.mount);var completed=0;function doCallback(errCode){assert(FS.syncFSRequests>0);FS.syncFSRequests--;return callback(errCode)}function done(errCode){if(errCode){if(!done.errored){done.errored=true;return doCallback(errCode)}return}if(++completed>=mounts.length){doCallback(null)}}mounts.forEach(mount=>{if(!mount.type.syncfs){return done(null)}mount.type.syncfs(mount,populate,done)})},mount(type,opts,mountpoint){if(typeof type=="string"){throw type}var root=mountpoint==="/";var pseudo=!mountpoint;var node;if(root&&FS.root){throw new FS.ErrnoError(10)}else if(!root&&!pseudo){var lookup=FS.lookupPath(mountpoint,{follow_mount:false});mountpoint=lookup.path;node=lookup.node;if(FS.isMountpoint(node)){throw new FS.ErrnoError(10)}if(!FS.isDir(node.mode)){throw new FS.ErrnoError(54)}}var mount={type:type,opts:opts,mountpoint:mountpoint,mounts:[]};var mountRoot=type.mount(mount);mountRoot.mount=mount;mount.root=mountRoot;if(root){FS.root=mountRoot}else if(node){node.mounted=mount;if(node.mount){node.mount.mounts.push(mount)}}return mountRoot},unmount(mountpoint){var lookup=FS.lookupPath(mountpoint,{follow_mount:false});if(!FS.isMountpoint(lookup.node)){throw new FS.ErrnoError(28)}var node=lookup.node;var mount=node.mounted;var mounts=FS.getMounts(mount);Object.keys(FS.nameTable).forEach(hash=>{var current=FS.nameTable[hash];while(current){var next=current.name_next;if(mounts.includes(current.mount)){FS.destroyNode(current)}current=next}});node.mounted=null;var idx=node.mount.mounts.indexOf(mount);assert(idx!==-1);node.mount.mounts.splice(idx,1)},lookup(parent,name){return parent.node_ops.lookup(parent,name)},mknod(path,mode,dev){var lookup=FS.lookupPath(path,{parent:true});var parent=lookup.node;var name=PATH.basename(path);if(!name||name==="."||name===".."){throw new FS.ErrnoError(28)}var errCode=FS.mayCreate(parent,name);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.mknod){throw new FS.ErrnoError(63)}return parent.node_ops.mknod(parent,name,mode,dev)},create(path,mode){mode=mode!==undefined?mode:438;mode&=4095;mode|=32768;return FS.mknod(path,mode,0)},mkdir(path,mode){mode=mode!==undefined?mode:511;mode&=511|512;mode|=16384;return FS.mknod(path,mode,0)},mkdirTree(path,mode){var dirs=path.split("/");var d="";for(var i=0;i<dirs.length;++i){if(!dirs[i])continue;d+="/"+dirs[i];try{FS.mkdir(d,mode)}catch(e){if(e.errno!=20)throw e}}},mkdev(path,mode,dev){if(typeof dev=="undefined"){dev=mode;mode=438}mode|=8192;return FS.mknod(path,mode,dev)},symlink(oldpath,newpath){if(!PATH_FS.resolve(oldpath)){throw new FS.ErrnoError(44)}var lookup=FS.lookupPath(newpath,{parent:true});var parent=lookup.node;if(!parent){throw new FS.ErrnoError(44)}var newname=PATH.basename(newpath);var errCode=FS.mayCreate(parent,newname);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.symlink){throw new FS.ErrnoError(63)}return parent.node_ops.symlink(parent,newname,oldpath)},rename(old_path,new_path){var old_dirname=PATH.dirname(old_path);var new_dirname=PATH.dirname(new_path);var old_name=PATH.basename(old_path);var new_name=PATH.basename(new_path);var lookup,old_dir,new_dir;lookup=FS.lookupPath(old_path,{parent:true});old_dir=lookup.node;lookup=FS.lookupPath(new_path,{parent:true});new_dir=lookup.node;if(!old_dir||!new_dir)throw new FS.ErrnoError(44);if(old_dir.mount!==new_dir.mount){throw new FS.ErrnoError(75)}var old_node=FS.lookupNode(old_dir,old_name);var relative=PATH_FS.relative(old_path,new_dirname);if(relative.charAt(0)!=="."){throw new FS.ErrnoError(28)}relative=PATH_FS.relative(new_path,old_dirname);if(relative.charAt(0)!=="."){throw new FS.ErrnoError(55)}var new_node;try{new_node=FS.lookupNode(new_dir,new_name)}catch(e){}if(old_node===new_node){return}var isdir=FS.isDir(old_node.mode);var errCode=FS.mayDelete(old_dir,old_name,isdir);if(errCode){throw new FS.ErrnoError(errCode)}errCode=new_node?FS.mayDelete(new_dir,new_name,isdir):FS.mayCreate(new_dir,new_name);if(errCode){throw new FS.ErrnoError(errCode)}if(!old_dir.node_ops.rename){throw new FS.ErrnoError(63)}if(FS.isMountpoint(old_node)||new_node&&FS.isMountpoint(new_node)){throw new FS.ErrnoError(10)}if(new_dir!==old_dir){errCode=FS.nodePermissions(old_dir,"w");if(errCode){throw new FS.ErrnoError(errCode)}}FS.hashRemoveNode(old_node);try{old_dir.node_ops.rename(old_node,new_dir,new_name);old_node.parent=new_dir}catch(e){throw e}finally{FS.hashAddNode(old_node)}},rmdir(path){var lookup=FS.lookupPath(path,{parent:true});var parent=lookup.node;var name=PATH.basename(path);var node=FS.lookupNode(parent,name);var errCode=FS.mayDelete(parent,name,true);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.rmdir){throw new FS.ErrnoError(63)}if(FS.isMountpoint(node)){throw new FS.ErrnoError(10)}parent.node_ops.rmdir(parent,name);FS.destroyNode(node)},readdir(path){var lookup=FS.lookupPath(path,{follow:true});var node=lookup.node;if(!node.node_ops.readdir){throw new FS.ErrnoError(54)}return node.node_ops.readdir(node)},unlink(path){var lookup=FS.lookupPath(path,{parent:true});var parent=lookup.node;if(!parent){throw new FS.ErrnoError(44)}var name=PATH.basename(path);var node=FS.lookupNode(parent,name);var errCode=FS.mayDelete(parent,name,false);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.unlink){throw new FS.ErrnoError(63)}if(FS.isMountpoint(node)){throw new FS.ErrnoError(10)}parent.node_ops.unlink(parent,name);FS.destroyNode(node)},readlink(path){var lookup=FS.lookupPath(path);var link=lookup.node;if(!link){throw new FS.ErrnoError(44)}if(!link.node_ops.readlink){throw new FS.ErrnoError(28)}return PATH_FS.resolve(FS.getPath(link.parent),link.node_ops.readlink(link))},stat(path,dontFollow){var lookup=FS.lookupPath(path,{follow:!dontFollow});var node=lookup.node;if(!node){throw new FS.ErrnoError(44)}if(!node.node_ops.getattr){throw new FS.ErrnoError(63)}return node.node_ops.getattr(node)},lstat(path){return FS.stat(path,true)},chmod(path,mode,dontFollow){var node;if(typeof path=="string"){var lookup=FS.lookupPath(path,{follow:!dontFollow});node=lookup.node}else{node=path}if(!node.node_ops.setattr){throw new FS.ErrnoError(63)}node.node_ops.setattr(node,{mode:mode&4095|node.mode&~4095,timestamp:Date.now()})},lchmod(path,mode){FS.chmod(path,mode,true)},fchmod(fd,mode){var stream=FS.getStreamChecked(fd);FS.chmod(stream.node,mode)},chown(path,uid,gid,dontFollow){var node;if(typeof path=="string"){var lookup=FS.lookupPath(path,{follow:!dontFollow});node=lookup.node}else{node=path}if(!node.node_ops.setattr){throw new FS.ErrnoError(63)}node.node_ops.setattr(node,{timestamp:Date.now()})},lchown(path,uid,gid){FS.chown(path,uid,gid,true)},fchown(fd,uid,gid){var stream=FS.getStreamChecked(fd);FS.chown(stream.node,uid,gid)},truncate(path,len){if(len<0){throw new FS.ErrnoError(28)}var node;if(typeof path=="string"){var lookup=FS.lookupPath(path,{follow:true});node=lookup.node}else{node=path}if(!node.node_ops.setattr){throw new FS.ErrnoError(63)}if(FS.isDir(node.mode)){throw new FS.ErrnoError(31)}if(!FS.isFile(node.mode)){throw new FS.ErrnoError(28)}var errCode=FS.nodePermissions(node,"w");if(errCode){throw new FS.ErrnoError(errCode)}node.node_ops.setattr(node,{size:len,timestamp:Date.now()})},ftruncate(fd,len){var stream=FS.getStreamChecked(fd);if((stream.flags&2097155)===0){throw new FS.ErrnoError(28)}FS.truncate(stream.node,len)},utime(path,atime,mtime){var lookup=FS.lookupPath(path,{follow:true});var node=lookup.node;node.node_ops.setattr(node,{timestamp:Math.max(atime,mtime)})},open(path,flags,mode){if(path===""){throw new FS.ErrnoError(44)}flags=typeof flags=="string"?FS_modeStringToFlags(flags):flags;if(flags&64){mode=typeof mode=="undefined"?438:mode;mode=mode&4095|32768}else{mode=0}var node;if(typeof path=="object"){node=path}else{path=PATH.normalize(path);try{var lookup=FS.lookupPath(path,{follow:!(flags&131072)});node=lookup.node}catch(e){}}var created=false;if(flags&64){if(node){if(flags&128){throw new FS.ErrnoError(20)}}else{node=FS.mknod(path,mode,0);created=true}}if(!node){throw new FS.ErrnoError(44)}if(FS.isChrdev(node.mode)){flags&=~512}if(flags&65536&&!FS.isDir(node.mode)){throw new FS.ErrnoError(54)}if(!created){var errCode=FS.mayOpen(node,flags);if(errCode){throw new FS.ErrnoError(errCode)}}if(flags&512&&!created){FS.truncate(node,0)}flags&=~(128|512|131072);var stream=FS.createStream({node:node,path:FS.getPath(node),flags:flags,seekable:true,position:0,stream_ops:node.stream_ops,ungotten:[],error:false});if(stream.stream_ops.open){stream.stream_ops.open(stream)}if(Module["logReadFiles"]&&!(flags&1)){if(!FS.readFiles)FS.readFiles={};if(!(path in FS.readFiles)){FS.readFiles[path]=1}}return stream},close(stream){if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if(stream.getdents)stream.getdents=null;try{if(stream.stream_ops.close){stream.stream_ops.close(stream)}}catch(e){throw e}finally{FS.closeStream(stream.fd)}stream.fd=null},isClosed(stream){return stream.fd===null},llseek(stream,offset,whence){if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if(!stream.seekable||!stream.stream_ops.llseek){throw new FS.ErrnoError(70)}if(whence!=0&&whence!=1&&whence!=2){throw new FS.ErrnoError(28)}stream.position=stream.stream_ops.llseek(stream,offset,whence);stream.ungotten=[];return stream.position},read(stream,buffer,offset,length,position){assert(offset>=0);if(length<0||position<0){throw new FS.ErrnoError(28)}if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if((stream.flags&2097155)===1){throw new FS.ErrnoError(8)}if(FS.isDir(stream.node.mode)){throw new FS.ErrnoError(31)}if(!stream.stream_ops.read){throw new FS.ErrnoError(28)}var seeking=typeof position!="undefined";if(!seeking){position=stream.position}else if(!stream.seekable){throw new FS.ErrnoError(70)}var bytesRead=stream.stream_ops.read(stream,buffer,offset,length,position);if(!seeking)stream.position+=bytesRead;return bytesRead},write(stream,buffer,offset,length,position,canOwn){assert(offset>=0);if(length<0||position<0){throw new FS.ErrnoError(28)}if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if((stream.flags&2097155)===0){throw new FS.ErrnoError(8)}if(FS.isDir(stream.node.mode)){throw new FS.ErrnoError(31)}if(!stream.stream_ops.write){throw new FS.ErrnoError(28)}if(stream.seekable&&stream.flags&1024){FS.llseek(stream,0,2)}var seeking=typeof position!="undefined";if(!seeking){position=stream.position}else if(!stream.seekable){throw new FS.ErrnoError(70)}var bytesWritten=stream.stream_ops.write(stream,buffer,offset,length,position,canOwn);if(!seeking)stream.position+=bytesWritten;return bytesWritten},allocate(stream,offset,length){if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if(offset<0||length<=0){throw new FS.ErrnoError(28)}if((stream.flags&2097155)===0){throw new FS.ErrnoError(8)}if(!FS.isFile(stream.node.mode)&&!FS.isDir(stream.node.mode)){throw new FS.ErrnoError(43)}if(!stream.stream_ops.allocate){throw new FS.ErrnoError(138)}stream.stream_ops.allocate(stream,offset,length)},mmap(stream,length,position,prot,flags){if((prot&2)!==0&&(flags&2)===0&&(stream.flags&2097155)!==2){throw new FS.ErrnoError(2)}if((stream.flags&2097155)===1){throw new FS.ErrnoError(2)}if(!stream.stream_ops.mmap){throw new FS.ErrnoError(43)}return stream.stream_ops.mmap(stream,length,position,prot,flags)},msync(stream,buffer,offset,length,mmapFlags){assert(offset>=0);if(!stream.stream_ops.msync){return 0}return stream.stream_ops.msync(stream,buffer,offset,length,mmapFlags)},ioctl(stream,cmd,arg){if(!stream.stream_ops.ioctl){throw new FS.ErrnoError(59)}return stream.stream_ops.ioctl(stream,cmd,arg)},readFile(path,opts={}){opts.flags=opts.flags||0;opts.encoding=opts.encoding||"binary";if(opts.encoding!=="utf8"&&opts.encoding!=="binary"){throw new Error(`Invalid encoding type "${opts.encoding}"`)}var ret;var stream=FS.open(path,opts.flags);var stat=FS.stat(path);var length=stat.size;var buf=new Uint8Array(length);FS.read(stream,buf,0,length,0);if(opts.encoding==="utf8"){ret=UTF8ArrayToString(buf,0)}else if(opts.encoding==="binary"){ret=buf}FS.close(stream);return ret},writeFile(path,data,opts={}){opts.flags=opts.flags||577;var stream=FS.open(path,opts.flags,opts.mode);if(typeof data=="string"){var buf=new Uint8Array(lengthBytesUTF8(data)+1);var actualNumBytes=stringToUTF8Array(data,buf,0,buf.length);FS.write(stream,buf,0,actualNumBytes,undefined,opts.canOwn)}else if(ArrayBuffer.isView(data)){FS.write(stream,data,0,data.byteLength,undefined,opts.canOwn)}else{throw new Error("Unsupported data type")}FS.close(stream)},cwd:()=>FS.currentPath,chdir(path){var lookup=FS.lookupPath(path,{follow:true});if(lookup.node===null){throw new FS.ErrnoError(44)}if(!FS.isDir(lookup.node.mode)){throw new FS.ErrnoError(54)}var errCode=FS.nodePermissions(lookup.node,"x");if(errCode){throw new FS.ErrnoError(errCode)}FS.currentPath=lookup.path},createDefaultDirectories(){FS.mkdir("/tmp");FS.mkdir("/home");FS.mkdir("/home/web_user")},createDefaultDevices(){FS.mkdir("/dev");FS.registerDevice(FS.makedev(1,3),{read:()=>0,write:(stream,buffer,offset,length,pos)=>length});FS.mkdev("/dev/null",FS.makedev(1,3));TTY.register(FS.makedev(5,0),TTY.default_tty_ops);TTY.register(FS.makedev(6,0),TTY.default_tty1_ops);FS.mkdev("/dev/tty",FS.makedev(5,0));FS.mkdev("/dev/tty1",FS.makedev(6,0));var randomBuffer=new Uint8Array(1024),randomLeft=0;var randomByte=()=>{if(randomLeft===0){randomLeft=randomFill(randomBuffer).byteLength}return randomBuffer[--randomLeft]};FS.createDevice("/dev","random",randomByte);FS.createDevice("/dev","urandom",randomByte);FS.mkdir("/dev/shm");FS.mkdir("/dev/shm/tmp")},createSpecialDirectories(){FS.mkdir("/proc");var proc_self=FS.mkdir("/proc/self");FS.mkdir("/proc/self/fd");FS.mount({mount(){var node=FS.createNode(proc_self,"fd",16384|511,73);node.node_ops={lookup(parent,name){var fd=+name;var stream=FS.getStreamChecked(fd);var ret={parent:null,mount:{mountpoint:"fake"},node_ops:{readlink:()=>stream.path}};ret.parent=ret;return ret}};return node}},{},"/proc/self/fd")},createStandardStreams(){if(Module["stdin"]){FS.createDevice("/dev","stdin",Module["stdin"])}else{FS.symlink("/dev/tty","/dev/stdin")}if(Module["stdout"]){FS.createDevice("/dev","stdout",null,Module["stdout"])}else{FS.symlink("/dev/tty","/dev/stdout")}if(Module["stderr"]){FS.createDevice("/dev","stderr",null,Module["stderr"])}else{FS.symlink("/dev/tty1","/dev/stderr")}var stdin=FS.open("/dev/stdin",0);var stdout=FS.open("/dev/stdout",1);var stderr=FS.open("/dev/stderr",1);assert(stdin.fd===0,`invalid handle for stdin (${stdin.fd})`);assert(stdout.fd===1,`invalid handle for stdout (${stdout.fd})`);assert(stderr.fd===2,`invalid handle for stderr (${stderr.fd})`)},staticInit(){[44].forEach(code=>{FS.genericErrors[code]=new FS.ErrnoError(code);FS.genericErrors[code].stack="<generic error, no stack>"});FS.nameTable=new Array(4096);FS.mount(MEMFS,{},"/");FS.createDefaultDirectories();FS.createDefaultDevices();FS.createSpecialDirectories();FS.filesystems={MEMFS:MEMFS,IDBFS:IDBFS}},init(input,output,error){assert(!FS.init.initialized,"FS.init was previously called. If you want to initialize later with custom parameters, remove any earlier calls (note that one is automatically added to the generated code)");FS.init.initialized=true;Module["stdin"]=input||Module["stdin"];Module["stdout"]=output||Module["stdout"];Module["stderr"]=error||Module["stderr"];FS.createStandardStreams()},quit(){FS.init.initialized=false;_fflush(0);for(var i=0;i<FS.streams.length;i++){var stream=FS.streams[i];if(!stream){continue}FS.close(stream)}},findObject(path,dontResolveLastLink){var ret=FS.analyzePath(path,dontResolveLastLink);if(!ret.exists){return null}return ret.object},analyzePath(path,dontResolveLastLink){try{var lookup=FS.lookupPath(path,{follow:!dontResolveLastLink});path=lookup.path}catch(e){}var ret={isRoot:false,exists:false,error:0,name:null,path:null,object:null,parentExists:false,parentPath:null,parentObject:null};try{var lookup=FS.lookupPath(path,{parent:true});ret.parentExists=true;ret.parentPath=lookup.path;ret.parentObject=lookup.node;ret.name=PATH.basename(path);lookup=FS.lookupPath(path,{follow:!dontResolveLastLink});ret.exists=true;ret.path=lookup.path;ret.object=lookup.node;ret.name=lookup.node.name;ret.isRoot=lookup.path==="/"}catch(e){ret.error=e.errno}return ret},createPath(parent,path,canRead,canWrite){parent=typeof parent=="string"?parent:FS.getPath(parent);var parts=path.split("/").reverse();while(parts.length){var part=parts.pop();if(!part)continue;var current=PATH.join2(parent,part);try{FS.mkdir(current)}catch(e){}parent=current}return current},createFile(parent,name,properties,canRead,canWrite){var path=PATH.join2(typeof parent=="string"?parent:FS.getPath(parent),name);var mode=FS_getMode(canRead,canWrite);return FS.create(path,mode)},createDataFile(parent,name,data,canRead,canWrite,canOwn){var path=name;if(parent){parent=typeof parent=="string"?parent:FS.getPath(parent);path=name?PATH.join2(parent,name):parent}var mode=FS_getMode(canRead,canWrite);var node=FS.create(path,mode);if(data){if(typeof data=="string"){var arr=new Array(data.length);for(var i=0,len=data.length;i<len;++i)arr[i]=data.charCodeAt(i);data=arr}FS.chmod(node,mode|146);var stream=FS.open(node,577);FS.write(stream,data,0,data.length,0,canOwn);FS.close(stream);FS.chmod(node,mode)}},createDevice(parent,name,input,output){var path=PATH.join2(typeof parent=="string"?parent:FS.getPath(parent),name);var mode=FS_getMode(!!input,!!output);if(!FS.createDevice.major)FS.createDevice.major=64;var dev=FS.makedev(FS.createDevice.major++,0);FS.registerDevice(dev,{open(stream){stream.seekable=false},close(stream){if(output?.buffer?.length){output(10)}},read(stream,buffer,offset,length,pos){var bytesRead=0;for(var i=0;i<length;i++){var result;try{result=input()}catch(e){throw new FS.ErrnoError(29)}if(result===undefined&&bytesRead===0){throw new FS.ErrnoError(6)}if(result===null||result===undefined)break;bytesRead++;buffer[offset+i]=result}if(bytesRead){stream.node.timestamp=Date.now()}return bytesRead},write(stream,buffer,offset,length,pos){for(var i=0;i<length;i++){try{output(buffer[offset+i])}catch(e){throw new FS.ErrnoError(29)}}if(length){stream.node.timestamp=Date.now()}return i}});return FS.mkdev(path,mode,dev)},forceLoadFile(obj){if(obj.isDevice||obj.isFolder||obj.link||obj.contents)return true;if(typeof XMLHttpRequest!="undefined"){throw new Error("Lazy loading should have been performed (contents set) in createLazyFile, but it was not. Lazy loading only works in web workers. Use --embed-file or --preload-file in emcc on the main thread.")}else{try{obj.contents=readBinary(obj.url);obj.usedBytes=obj.contents.length}catch(e){throw new FS.ErrnoError(29)}}},createLazyFile(parent,name,url,canRead,canWrite){class LazyUint8Array{constructor(){this.lengthKnown=false;this.chunks=[]}get(idx){if(idx>this.length-1||idx<0){return undefined}var chunkOffset=idx%this.chunkSize;var chunkNum=idx/this.chunkSize|0;return this.getter(chunkNum)[chunkOffset]}setDataGetter(getter){this.getter=getter}cacheLength(){var xhr=new XMLHttpRequest;xhr.open("HEAD",url,false);xhr.send(null);if(!(xhr.status>=200&&xhr.status<300||xhr.status===304))throw new Error("Couldn't load "+url+". Status: "+xhr.status);var datalength=Number(xhr.getResponseHeader("Content-length"));var header;var hasByteServing=(header=xhr.getResponseHeader("Accept-Ranges"))&&header==="bytes";var usesGzip=(header=xhr.getResponseHeader("Content-Encoding"))&&header==="gzip";var chunkSize=1024*1024;if(!hasByteServing)chunkSize=datalength;var doXHR=(from,to)=>{if(from>to)throw new Error("invalid range ("+from+", "+to+") or no bytes requested!");if(to>datalength-1)throw new Error("only "+datalength+" bytes available! programmer error!");var xhr=new XMLHttpRequest;xhr.open("GET",url,false);if(datalength!==chunkSize)xhr.setRequestHeader("Range","bytes="+from+"-"+to);xhr.responseType="arraybuffer";if(xhr.overrideMimeType){xhr.overrideMimeType("text/plain; charset=x-user-defined")}xhr.send(null);if(!(xhr.status>=200&&xhr.status<300||xhr.status===304))throw new Error("Couldn't load "+url+". Status: "+xhr.status);if(xhr.response!==undefined){return new Uint8Array(xhr.response||[])}return intArrayFromString(xhr.responseText||"",true)};var lazyArray=this;lazyArray.setDataGetter(chunkNum=>{var start=chunkNum*chunkSize;var end=(chunkNum+1)*chunkSize-1;end=Math.min(end,datalength-1);if(typeof lazyArray.chunks[chunkNum]=="undefined"){lazyArray.chunks[chunkNum]=doXHR(start,end)}if(typeof lazyArray.chunks[chunkNum]=="undefined")throw new Error("doXHR failed!");return lazyArray.chunks[chunkNum]});if(usesGzip||!datalength){chunkSize=datalength=1;datalength=this.getter(0).length;chunkSize=datalength;out("LazyFiles on gzip forces download of the whole file when length is accessed")}this._length=datalength;this._chunkSize=chunkSize;this.lengthKnown=true}get length(){if(!this.lengthKnown){this.cacheLength()}return this._length}get chunkSize(){if(!this.lengthKnown){this.cacheLength()}return this._chunkSize}}if(typeof XMLHttpRequest!="undefined"){if(!ENVIRONMENT_IS_WORKER)throw"Cannot do synchronous binary XHRs outside webworkers in modern browsers. Use --embed-file or --preload-file in emcc";var lazyArray=new LazyUint8Array;var properties={isDevice:false,contents:lazyArray}}else{var properties={isDevice:false,url:url}}var node=FS.createFile(parent,name,properties,canRead,canWrite);if(properties.contents){node.contents=properties.contents}else if(properties.url){node.contents=null;node.url=properties.url}Object.defineProperties(node,{usedBytes:{get:function(){return this.contents.length}}});var stream_ops={};var keys=Object.keys(node.stream_ops);keys.forEach(key=>{var fn=node.stream_ops[key];stream_ops[key]=(...args)=>{FS.forceLoadFile(node);return fn(...args)}});function writeChunks(stream,buffer,offset,length,position){var contents=stream.node.contents;if(position>=contents.length)return 0;var size=Math.min(contents.length-position,length);assert(size>=0);if(contents.slice){for(var i=0;i<size;i++){buffer[offset+i]=contents[position+i]}}else{for(var i=0;i<size;i++){buffer[offset+i]=contents.get(position+i)}}return size}stream_ops.read=(stream,buffer,offset,length,position)=>{FS.forceLoadFile(node);return writeChunks(stream,buffer,offset,length,position)};stream_ops.mmap=(stream,length,position,prot,flags)=>{FS.forceLoadFile(node);var ptr=mmapAlloc(length);if(!ptr){throw new FS.ErrnoError(48)}writeChunks(stream,HEAP8,ptr,length,position);return{ptr:ptr,allocated:true}};node.stream_ops=stream_ops;return node},absolutePath(){abort("FS.absolutePath has been removed; use PATH_FS.resolve instead")},createFolder(){abort("FS.createFolder has been removed; use FS.mkdir instead")},createLink(){abort("FS.createLink has been removed; use FS.symlink instead")},joinPath(){abort("FS.joinPath has been removed; use PATH.join instead")},mmapAlloc(){abort("FS.mmapAlloc has been replaced by the top level function mmapAlloc")},standardizePath(){abort("FS.standardizePath has been removed; use PATH.normalize instead")}};var SYSCALLS={DEFAULT_POLLMASK:5,calculateAt(dirfd,path,allowEmpty){if(PATH.isAbs(path)){return path}var dir;if(dirfd===-100){dir=FS.cwd()}else{var dirstream=SYSCALLS.getStreamFromFD(dirfd);dir=dirstream.path}if(path.length==0){if(!allowEmpty){throw new FS.ErrnoError(44)}return dir}return PATH.join2(dir,path)},doStat(func,path,buf){var stat=func(path);HEAP32[buf>>2]=stat.dev;HEAP32[buf+4>>2]=stat.mode;HEAPU32[buf+8>>2]=stat.nlink;HEAP32[buf+12>>2]=stat.uid;HEAP32[buf+16>>2]=stat.gid;HEAP32[buf+20>>2]=stat.rdev;HEAP64[buf+24>>3]=BigInt(stat.size);HEAP32[buf+32>>2]=4096;HEAP32[buf+36>>2]=stat.blocks;var atime=stat.atime.getTime();var mtime=stat.mtime.getTime();var ctime=stat.ctime.getTime();HEAP64[buf+40>>3]=BigInt(Math.floor(atime/1e3));HEAPU32[buf+48>>2]=atime%1e3*1e3;HEAP64[buf+56>>3]=BigInt(Math.floor(mtime/1e3));HEAPU32[buf+64>>2]=mtime%1e3*1e3;HEAP64[buf+72>>3]=BigInt(Math.floor(ctime/1e3));HEAPU32[buf+80>>2]=ctime%1e3*1e3;HEAP64[buf+88>>3]=BigInt(stat.ino);return 0},doMsync(addr,stream,len,flags,offset){if(!FS.isFile(stream.node.mode)){throw new FS.ErrnoError(43)}if(flags&2){return 0}var buffer=HEAPU8.slice(addr,addr+len);FS.msync(stream,buffer,offset,len,flags)},getStreamFromFD(fd){var stream=FS.getStreamChecked(fd);return stream},varargs:undefined,getStr(ptr){var ret=UTF8ToString(ptr);return ret}};function ___syscall_chdir(path){try{path=SYSCALLS.getStr(path);FS.chdir(path);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_chmod(path,mode){try{path=SYSCALLS.getStr(path);FS.chmod(path,mode);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_faccessat(dirfd,path,amode,flags){try{path=SYSCALLS.getStr(path);assert(flags===0);path=SYSCALLS.calculateAt(dirfd,path);if(amode&~7){return-28}var lookup=FS.lookupPath(path,{follow:true});var node=lookup.node;if(!node){return-44}var perms="";if(amode&4)perms+="r";if(amode&2)perms+="w";if(amode&1)perms+="x";if(perms&&FS.nodePermissions(node,perms)){return-2}return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_fchmod(fd,mode){try{FS.fchmod(fd,mode);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function syscallGetVarargI(){assert(SYSCALLS.varargs!=undefined);var ret=HEAP32[+SYSCALLS.varargs>>2];SYSCALLS.varargs+=4;return ret}var syscallGetVarargP=syscallGetVarargI;function ___syscall_fcntl64(fd,cmd,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(fd);switch(cmd){case 0:{var arg=syscallGetVarargI();if(arg<0){return-28}while(FS.streams[arg]){arg++}var newStream;newStream=FS.dupStream(stream,arg);return newStream.fd}case 1:case 2:return 0;case 3:return stream.flags;case 4:{var arg=syscallGetVarargI();stream.flags|=arg;return 0}case 12:{var arg=syscallGetVarargP();var offset=0;HEAP16[arg+offset>>1]=2;return 0}case 13:case 14:return 0}return-28}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_fstat64(fd,buf){try{var stream=SYSCALLS.getStreamFromFD(fd);return SYSCALLS.doStat(FS.stat,stream.path,buf)}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}var INT53_MAX=9007199254740992;var INT53_MIN=-9007199254740992;var bigintToI53Checked=num=>num<INT53_MIN||num>INT53_MAX?NaN:Number(num);function ___syscall_ftruncate64(fd,length){length=bigintToI53Checked(length);try{if(isNaN(length))return 61;FS.ftruncate(fd,length);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}var stringToUTF8=(str,outPtr,maxBytesToWrite)=>{assert(typeof maxBytesToWrite=="number","stringToUTF8(str, outPtr, maxBytesToWrite) is missing the third parameter that specifies the length of the output buffer!");return stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite)};function ___syscall_getcwd(buf,size){try{if(size===0)return-28;var cwd=FS.cwd();var cwdLengthInBytes=lengthBytesUTF8(cwd)+1;if(size<cwdLengthInBytes)return-68;stringToUTF8(cwd,buf,size);return cwdLengthInBytes}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_getdents64(fd,dirp,count){try{var stream=SYSCALLS.getStreamFromFD(fd);stream.getdents||=FS.readdir(stream.path);var struct_size=280;var pos=0;var off=FS.llseek(stream,0,1);var idx=Math.floor(off/struct_size);while(idx<stream.getdents.length&&pos+struct_size<=count){var id;var type;var name=stream.getdents[idx];if(name==="."){id=stream.node.id;type=4}else if(name===".."){var lookup=FS.lookupPath(stream.path,{parent:true});id=lookup.node.id;type=4}else{var child=FS.lookupNode(stream.node,name);id=child.id;type=FS.isChrdev(child.mode)?2:FS.isDir(child.mode)?4:FS.isLink(child.mode)?10:8}assert(id);HEAP64[dirp+pos>>3]=BigInt(id);HEAP64[dirp+pos+8>>3]=BigInt((idx+1)*struct_size);HEAP16[dirp+pos+16>>1]=280;HEAP8[dirp+pos+18]=type;stringToUTF8(name,dirp+pos+19,256);pos+=struct_size;idx+=1}FS.llseek(stream,idx*struct_size,0);return pos}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_ioctl(fd,op,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(fd);switch(op){case 21509:{if(!stream.tty)return-59;return 0}case 21505:{if(!stream.tty)return-59;if(stream.tty.ops.ioctl_tcgets){var termios=stream.tty.ops.ioctl_tcgets(stream);var argp=syscallGetVarargP();HEAP32[argp>>2]=termios.c_iflag||0;HEAP32[argp+4>>2]=termios.c_oflag||0;HEAP32[argp+8>>2]=termios.c_cflag||0;HEAP32[argp+12>>2]=termios.c_lflag||0;for(var i=0;i<32;i++){HEAP8[argp+i+17]=termios.c_cc[i]||0}return 0}return 0}case 21510:case 21511:case 21512:{if(!stream.tty)return-59;return 0}case 21506:case 21507:case 21508:{if(!stream.tty)return-59;if(stream.tty.ops.ioctl_tcsets){var argp=syscallGetVarargP();var c_iflag=HEAP32[argp>>2];var c_oflag=HEAP32[argp+4>>2];var c_cflag=HEAP32[argp+8>>2];var c_lflag=HEAP32[argp+12>>2];var c_cc=[];for(var i=0;i<32;i++){c_cc.push(HEAP8[argp+i+17])}return stream.tty.ops.ioctl_tcsets(stream.tty,op,{c_iflag:c_iflag,c_oflag:c_oflag,c_cflag:c_cflag,c_lflag:c_lflag,c_cc:c_cc})}return 0}case 21519:{if(!stream.tty)return-59;var argp=syscallGetVarargP();HEAP32[argp>>2]=0;return 0}case 21520:{if(!stream.tty)return-59;return-28}case 21531:{var argp=syscallGetVarargP();return FS.ioctl(stream,op,argp)}case 21523:{if(!stream.tty)return-59;if(stream.tty.ops.ioctl_tiocgwinsz){var winsize=stream.tty.ops.ioctl_tiocgwinsz(stream.tty);var argp=syscallGetVarargP();HEAP16[argp>>1]=winsize[0];HEAP16[argp+2>>1]=winsize[1]}return 0}case 21524:{if(!stream.tty)return-59;return 0}case 21515:{if(!stream.tty)return-59;return 0}default:return-28}}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_lstat64(path,buf){try{path=SYSCALLS.getStr(path);return SYSCALLS.doStat(FS.lstat,path,buf)}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_mkdirat(dirfd,path,mode){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);path=PATH.normalize(path);if(path[path.length-1]==="/")path=path.substr(0,path.length-1);FS.mkdir(path,mode,0);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_mknodat(dirfd,path,mode,dev){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);switch(mode&61440){case 32768:case 8192:case 24576:case 4096:case 49152:break;default:return-28}FS.mknod(path,mode,dev);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_newfstatat(dirfd,path,buf,flags){try{path=SYSCALLS.getStr(path);var nofollow=flags&256;var allowEmpty=flags&4096;flags=flags&~6400;assert(!flags,`unknown flags in __syscall_newfstatat: ${flags}`);path=SYSCALLS.calculateAt(dirfd,path,allowEmpty);return SYSCALLS.doStat(nofollow?FS.lstat:FS.stat,path,buf)}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_openat(dirfd,path,flags,varargs){SYSCALLS.varargs=varargs;try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);var mode=varargs?syscallGetVarargI():0;return FS.open(path,flags,mode).fd}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_readlinkat(dirfd,path,buf,bufsize){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);if(bufsize<=0)return-28;var ret=FS.readlink(path);var len=Math.min(bufsize,lengthBytesUTF8(ret));var endChar=HEAP8[buf+len];stringToUTF8(ret,buf,bufsize+1);HEAP8[buf+len]=endChar;return len}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_renameat(olddirfd,oldpath,newdirfd,newpath){try{oldpath=SYSCALLS.getStr(oldpath);newpath=SYSCALLS.getStr(newpath);oldpath=SYSCALLS.calculateAt(olddirfd,oldpath);newpath=SYSCALLS.calculateAt(newdirfd,newpath);FS.rename(oldpath,newpath);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_rmdir(path){try{path=SYSCALLS.getStr(path);FS.rmdir(path);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_stat64(path,buf){try{path=SYSCALLS.getStr(path);return SYSCALLS.doStat(FS.stat,path,buf)}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_statfs64(path,size,buf){try{path=SYSCALLS.getStr(path);assert(size===64);HEAP32[buf+4>>2]=4096;HEAP32[buf+40>>2]=4096;HEAP32[buf+8>>2]=1e6;HEAP32[buf+12>>2]=5e5;HEAP32[buf+16>>2]=5e5;HEAP32[buf+20>>2]=FS.nextInode;HEAP32[buf+24>>2]=1e6;HEAP32[buf+28>>2]=42;HEAP32[buf+44>>2]=2;HEAP32[buf+36>>2]=255;return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_symlink(target,linkpath){try{target=SYSCALLS.getStr(target);linkpath=SYSCALLS.getStr(linkpath);FS.symlink(target,linkpath);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_unlinkat(dirfd,path,flags){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);if(flags===0){FS.unlink(path)}else if(flags===512){FS.rmdir(path)}else{abort("Invalid flags passed to unlinkat")}return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}var __abort_js=()=>{abort("native code called abort()")};var nowIsMonotonic=1;var __emscripten_get_now_is_monotonic=()=>nowIsMonotonic;var __emscripten_runtime_keepalive_clear=()=>{noExitRuntime=false;runtimeKeepaliveCounter=0};function __gmtime_js(time,tmPtr){time=bigintToI53Checked(time);var date=new Date(time*1e3);HEAP32[tmPtr>>2]=date.getUTCSeconds();HEAP32[tmPtr+4>>2]=date.getUTCMinutes();HEAP32[tmPtr+8>>2]=date.getUTCHours();HEAP32[tmPtr+12>>2]=date.getUTCDate();HEAP32[tmPtr+16>>2]=date.getUTCMonth();HEAP32[tmPtr+20>>2]=date.getUTCFullYear()-1900;HEAP32[tmPtr+24>>2]=date.getUTCDay();var start=Date.UTC(date.getUTCFullYear(),0,1,0,0,0,0);var yday=(date.getTime()-start)/(1e3*60*60*24)|0;HEAP32[tmPtr+28>>2]=yday}var isLeapYear=year=>year%4===0&&(year%100!==0||year%400===0);var MONTH_DAYS_LEAP_CUMULATIVE=[0,31,60,91,121,152,182,213,244,274,305,335];var MONTH_DAYS_REGULAR_CUMULATIVE=[0,31,59,90,120,151,181,212,243,273,304,334];var ydayFromDate=date=>{var leap=isLeapYear(date.getFullYear());var monthDaysCumulative=leap?MONTH_DAYS_LEAP_CUMULATIVE:MONTH_DAYS_REGULAR_CUMULATIVE;var yday=monthDaysCumulative[date.getMonth()]+date.getDate()-1;return yday};function __localtime_js(time,tmPtr){time=bigintToI53Checked(time);var date=new Date(time*1e3);HEAP32[tmPtr>>2]=date.getSeconds();HEAP32[tmPtr+4>>2]=date.getMinutes();HEAP32[tmPtr+8>>2]=date.getHours();HEAP32[tmPtr+12>>2]=date.getDate();HEAP32[tmPtr+16>>2]=date.getMonth();HEAP32[tmPtr+20>>2]=date.getFullYear()-1900;HEAP32[tmPtr+24>>2]=date.getDay();var yday=ydayFromDate(date)|0;HEAP32[tmPtr+28>>2]=yday;HEAP32[tmPtr+36>>2]=-(date.getTimezoneOffset()*60);var start=new Date(date.getFullYear(),0,1);var summerOffset=new Date(date.getFullYear(),6,1).getTimezoneOffset();var winterOffset=start.getTimezoneOffset();var dst=(summerOffset!=winterOffset&&date.getTimezoneOffset()==Math.min(winterOffset,summerOffset))|0;HEAP32[tmPtr+32>>2]=dst}var __tzset_js=(timezone,daylight,std_name,dst_name)=>{var currentYear=(new Date).getFullYear();var winter=new Date(currentYear,0,1);var summer=new Date(currentYear,6,1);var winterOffset=winter.getTimezoneOffset();var summerOffset=summer.getTimezoneOffset();var stdTimezoneOffset=Math.max(winterOffset,summerOffset);HEAPU32[timezone>>2]=stdTimezoneOffset*60;HEAP32[daylight>>2]=Number(winterOffset!=summerOffset);var extractZone=timezoneOffset=>{var sign=timezoneOffset>=0?"-":"+";var absOffset=Math.abs(timezoneOffset);var hours=String(Math.floor(absOffset/60)).padStart(2,"0");var minutes=String(absOffset%60).padStart(2,"0");return`UTC${sign}${hours}${minutes}`};var winterName=extractZone(winterOffset);var summerName=extractZone(summerOffset);assert(winterName);assert(summerName);assert(lengthBytesUTF8(winterName)<=16,`timezone name truncated to fit in TZNAME_MAX (${winterName})`);assert(lengthBytesUTF8(summerName)<=16,`timezone name truncated to fit in TZNAME_MAX (${summerName})`);if(summerOffset<winterOffset){stringToUTF8(winterName,std_name,17);stringToUTF8(summerName,dst_name,17)}else{stringToUTF8(winterName,dst_name,17);stringToUTF8(summerName,std_name,17)}};var runtimeKeepaliveCounter=0;var runtimeKeepalivePush=()=>{runtimeKeepaliveCounter+=1};var _emscripten_set_main_loop_timing=(mode,value)=>{Browser.mainLoop.timingMode=mode;Browser.mainLoop.timingValue=value;if(!Browser.mainLoop.func){err("emscripten_set_main_loop_timing: Cannot set timing mode for main loop since a main loop does not exist! Call emscripten_set_main_loop first to set one up.");return 1}if(!Browser.mainLoop.running){runtimeKeepalivePush();Browser.mainLoop.running=true}if(mode==0){Browser.mainLoop.scheduler=function Browser_mainLoop_scheduler_setTimeout(){var timeUntilNextTick=Math.max(0,Browser.mainLoop.tickStartTime+value-_emscripten_get_now())|0;setTimeout(Browser.mainLoop.runner,timeUntilNextTick)};Browser.mainLoop.method="timeout"}else if(mode==1){Browser.mainLoop.scheduler=function Browser_mainLoop_scheduler_rAF(){Browser.requestAnimationFrame(Browser.mainLoop.runner)};Browser.mainLoop.method="rAF"}else if(mode==2){if(typeof Browser.setImmediate=="undefined"){if(typeof setImmediate=="undefined"){var setImmediates=[];var emscriptenMainLoopMessageId="setimmediate";var Browser_setImmediate_messageHandler=event=>{if(event.data===emscriptenMainLoopMessageId||event.data.target===emscriptenMainLoopMessageId){event.stopPropagation();setImmediates.shift()()}};addEventListener("message",Browser_setImmediate_messageHandler,true);Browser.setImmediate=function Browser_emulated_setImmediate(func){setImmediates.push(func);if(ENVIRONMENT_IS_WORKER){Module["setImmediates"]??=[];Module["setImmediates"].push(func);postMessage({target:emscriptenMainLoopMessageId})}else postMessage(emscriptenMainLoopMessageId,"*")}}else{Browser.setImmediate=setImmediate}}Browser.mainLoop.scheduler=function Browser_mainLoop_scheduler_setImmediate(){Browser.setImmediate(Browser.mainLoop.runner)};Browser.mainLoop.method="immediate"}return 0};var _emscripten_get_now;_emscripten_get_now=()=>performance.now();var webgl_enable_ANGLE_instanced_arrays=ctx=>{var ext=ctx.getExtension("ANGLE_instanced_arrays");if(ext){ctx["vertexAttribDivisor"]=(index,divisor)=>ext["vertexAttribDivisorANGLE"](index,divisor);ctx["drawArraysInstanced"]=(mode,first,count,primcount)=>ext["drawArraysInstancedANGLE"](mode,first,count,primcount);ctx["drawElementsInstanced"]=(mode,count,type,indices,primcount)=>ext["drawElementsInstancedANGLE"](mode,count,type,indices,primcount);return 1}};var webgl_enable_OES_vertex_array_object=ctx=>{var ext=ctx.getExtension("OES_vertex_array_object");if(ext){ctx["createVertexArray"]=()=>ext["createVertexArrayOES"]();ctx["deleteVertexArray"]=vao=>ext["deleteVertexArrayOES"](vao);ctx["bindVertexArray"]=vao=>ext["bindVertexArrayOES"](vao);ctx["isVertexArray"]=vao=>ext["isVertexArrayOES"](vao);return 1}};var webgl_enable_WEBGL_draw_buffers=ctx=>{var ext=ctx.getExtension("WEBGL_draw_buffers");if(ext){ctx["drawBuffers"]=(n,bufs)=>ext["drawBuffersWEBGL"](n,bufs);return 1}};var webgl_enable_WEBGL_draw_instanced_base_vertex_base_instance=ctx=>!!(ctx.dibvbi=ctx.getExtension("WEBGL_draw_instanced_base_vertex_base_instance"));var webgl_enable_WEBGL_multi_draw_instanced_base_vertex_base_instance=ctx=>!!(ctx.mdibvbi=ctx.getExtension("WEBGL_multi_draw_instanced_base_vertex_base_instance"));var webgl_enable_WEBGL_multi_draw=ctx=>!!(ctx.multiDrawWebgl=ctx.getExtension("WEBGL_multi_draw"));var getEmscriptenSupportedExtensions=ctx=>{var supportedExtensions=["ANGLE_instanced_arrays","EXT_blend_minmax","EXT_disjoint_timer_query","EXT_frag_depth","EXT_shader_texture_lod","EXT_sRGB","OES_element_index_uint","OES_fbo_render_mipmap","OES_standard_derivatives","OES_texture_float","OES_texture_half_float","OES_texture_half_float_linear","OES_vertex_array_object","WEBGL_color_buffer_float","WEBGL_depth_texture","WEBGL_draw_buffers","EXT_color_buffer_float","EXT_conservative_depth","EXT_disjoint_timer_query_webgl2","EXT_texture_norm16","NV_shader_noperspective_interpolation","WEBGL_clip_cull_distance","EXT_color_buffer_half_float","EXT_depth_clamp","EXT_float_blend","EXT_texture_compression_bptc","EXT_texture_compression_rgtc","EXT_texture_filter_anisotropic","KHR_parallel_shader_compile","OES_texture_float_linear","WEBGL_blend_func_extended","WEBGL_compressed_texture_astc","WEBGL_compressed_texture_etc","WEBGL_compressed_texture_etc1","WEBGL_compressed_texture_s3tc","WEBGL_compressed_texture_s3tc_srgb","WEBGL_debug_renderer_info","WEBGL_debug_shaders","WEBGL_lose_context","WEBGL_multi_draw"];return(ctx.getSupportedExtensions()||[]).filter(ext=>supportedExtensions.includes(ext))};var GL={counter:1,buffers:[],programs:[],framebuffers:[],renderbuffers:[],textures:[],shaders:[],vaos:[],contexts:[],offscreenCanvases:{},queries:[],samplers:[],transformFeedbacks:[],syncs:[],stringCache:{},stringiCache:{},unpackAlignment:4,unpackRowLength:0,recordError:errorCode=>{if(!GL.lastError){GL.lastError=errorCode}},getNewId:table=>{var ret=GL.counter++;for(var i=table.length;i<ret;i++){table[i]=null}return ret},genObject:(n,buffers,createFunction,objectTable)=>{for(var i=0;i<n;i++){var buffer=GLctx[createFunction]();var id=buffer&&GL.getNewId(objectTable);if(buffer){buffer.name=id;objectTable[id]=buffer}else{GL.recordError(1282)}HEAP32[buffers+i*4>>2]=id}},getSource:(shader,count,string,length)=>{var source="";for(var i=0;i<count;++i){var len=length?HEAPU32[length+i*4>>2]:undefined;source+=UTF8ToString(HEAPU32[string+i*4>>2],len)}return source},createContext:(canvas,webGLContextAttributes)=>{if(webGLContextAttributes.renderViaOffscreenBackBuffer)webGLContextAttributes["preserveDrawingBuffer"]=true;var ctx=webGLContextAttributes.majorVersion>1?canvas.getContext("webgl2",webGLContextAttributes):canvas.getContext("webgl",webGLContextAttributes);if(!ctx)return 0;var handle=GL.registerContext(ctx,webGLContextAttributes);return handle},enableOffscreenFramebufferAttributes:webGLContextAttributes=>{webGLContextAttributes.renderViaOffscreenBackBuffer=true;webGLContextAttributes.preserveDrawingBuffer=true},createOffscreenFramebuffer:context=>{var gl=context.GLctx;var fbo=gl.createFramebuffer();gl.bindFramebuffer(36160,fbo);context.defaultFbo=fbo;context.defaultFboForbidBlitFramebuffer=false;if(gl.getContextAttributes().antialias){context.defaultFboForbidBlitFramebuffer=true}context.defaultColorTarget=gl.createTexture();context.defaultDepthTarget=gl.createRenderbuffer();GL.resizeOffscreenFramebuffer(context);gl.bindTexture(3553,context.defaultColorTarget);gl.texParameteri(3553,10241,9728);gl.texParameteri(3553,10240,9728);gl.texParameteri(3553,10242,33071);gl.texParameteri(3553,10243,33071);gl.texImage2D(3553,0,6408,gl.canvas.width,gl.canvas.height,0,6408,5121,null);gl.framebufferTexture2D(36160,36064,3553,context.defaultColorTarget,0);gl.bindTexture(3553,null);var depthTarget=gl.createRenderbuffer();gl.bindRenderbuffer(36161,context.defaultDepthTarget);gl.renderbufferStorage(36161,33189,gl.canvas.width,gl.canvas.height);gl.framebufferRenderbuffer(36160,36096,36161,context.defaultDepthTarget);gl.bindRenderbuffer(36161,null);var vertices=[-1,-1,-1,1,1,-1,1,1];var vb=gl.createBuffer();gl.bindBuffer(34962,vb);gl.bufferData(34962,new Float32Array(vertices),35044);gl.bindBuffer(34962,null);context.blitVB=vb;var vsCode="attribute vec2 pos;"+"varying lowp vec2 tex;"+"void main() { tex = pos * 0.5 + vec2(0.5,0.5); gl_Position = vec4(pos, 0.0, 1.0); }";var vs=gl.createShader(35633);gl.shaderSource(vs,vsCode);gl.compileShader(vs);var fsCode="varying lowp vec2 tex;"+"uniform sampler2D sampler;"+"void main() { gl_FragColor = texture2D(sampler, tex); }";var fs=gl.createShader(35632);gl.shaderSource(fs,fsCode);gl.compileShader(fs);var blitProgram=gl.createProgram();gl.attachShader(blitProgram,vs);gl.attachShader(blitProgram,fs);gl.linkProgram(blitProgram);context.blitProgram=blitProgram;context.blitPosLoc=gl.getAttribLocation(blitProgram,"pos");gl.useProgram(blitProgram);gl.uniform1i(gl.getUniformLocation(blitProgram,"sampler"),0);gl.useProgram(null);context.defaultVao=undefined;if(gl.createVertexArray){context.defaultVao=gl.createVertexArray();gl.bindVertexArray(context.defaultVao);gl.enableVertexAttribArray(context.blitPosLoc);gl.bindVertexArray(null)}},resizeOffscreenFramebuffer:context=>{var gl=context.GLctx;if(context.defaultColorTarget){var prevTextureBinding=gl.getParameter(32873);gl.bindTexture(3553,context.defaultColorTarget);gl.texImage2D(3553,0,6408,gl.drawingBufferWidth,gl.drawingBufferHeight,0,6408,5121,null);gl.bindTexture(3553,prevTextureBinding)}if(context.defaultDepthTarget){var prevRenderBufferBinding=gl.getParameter(36007);gl.bindRenderbuffer(36161,context.defaultDepthTarget);gl.renderbufferStorage(36161,33189,gl.drawingBufferWidth,gl.drawingBufferHeight);gl.bindRenderbuffer(36161,prevRenderBufferBinding)}},blitOffscreenFramebuffer:context=>{var gl=context.GLctx;var prevScissorTest=gl.getParameter(3089);if(prevScissorTest)gl.disable(3089);var prevFbo=gl.getParameter(36006);if(gl.blitFramebuffer&&!context.defaultFboForbidBlitFramebuffer){gl.bindFramebuffer(36008,context.defaultFbo);gl.bindFramebuffer(36009,null);gl.blitFramebuffer(0,0,gl.canvas.width,gl.canvas.height,0,0,gl.canvas.width,gl.canvas.height,16384,9728)}else{gl.bindFramebuffer(36160,null);var prevProgram=gl.getParameter(35725);gl.useProgram(context.blitProgram);var prevVB=gl.getParameter(34964);gl.bindBuffer(34962,context.blitVB);var prevActiveTexture=gl.getParameter(34016);gl.activeTexture(33984);var prevTextureBinding=gl.getParameter(32873);gl.bindTexture(3553,context.defaultColorTarget);var prevBlend=gl.getParameter(3042);if(prevBlend)gl.disable(3042);var prevCullFace=gl.getParameter(2884);if(prevCullFace)gl.disable(2884);var prevDepthTest=gl.getParameter(2929);if(prevDepthTest)gl.disable(2929);var prevStencilTest=gl.getParameter(2960);if(prevStencilTest)gl.disable(2960);function draw(){gl.vertexAttribPointer(context.blitPosLoc,2,5126,false,0,0);gl.drawArrays(5,0,4)}if(context.defaultVao){var prevVAO=gl.getParameter(34229);gl.bindVertexArray(context.defaultVao);draw();gl.bindVertexArray(prevVAO)}else{var prevVertexAttribPointer={buffer:gl.getVertexAttrib(context.blitPosLoc,34975),size:gl.getVertexAttrib(context.blitPosLoc,34339),stride:gl.getVertexAttrib(context.blitPosLoc,34340),type:gl.getVertexAttrib(context.blitPosLoc,34341),normalized:gl.getVertexAttrib(context.blitPosLoc,34922),pointer:gl.getVertexAttribOffset(context.blitPosLoc,34373)};var maxVertexAttribs=gl.getParameter(34921);var prevVertexAttribEnables=[];for(var i=0;i<maxVertexAttribs;++i){var prevEnabled=gl.getVertexAttrib(i,34338);var wantEnabled=i==context.blitPosLoc;if(prevEnabled&&!wantEnabled){gl.disableVertexAttribArray(i)}if(!prevEnabled&&wantEnabled){gl.enableVertexAttribArray(i)}prevVertexAttribEnables[i]=prevEnabled}draw();for(var i=0;i<maxVertexAttribs;++i){var prevEnabled=prevVertexAttribEnables[i];var nowEnabled=i==context.blitPosLoc;if(prevEnabled&&!nowEnabled){gl.enableVertexAttribArray(i)}if(!prevEnabled&&nowEnabled){gl.disableVertexAttribArray(i)}}gl.bindBuffer(34962,prevVertexAttribPointer.buffer);gl.vertexAttribPointer(context.blitPosLoc,prevVertexAttribPointer.size,prevVertexAttribPointer.type,prevVertexAttribPointer.normalized,prevVertexAttribPointer.stride,prevVertexAttribPointer.offset)}if(prevStencilTest)gl.enable(2960);if(prevDepthTest)gl.enable(2929);if(prevCullFace)gl.enable(2884);if(prevBlend)gl.enable(3042);gl.bindTexture(3553,prevTextureBinding);gl.activeTexture(prevActiveTexture);gl.bindBuffer(34962,prevVB);gl.useProgram(prevProgram)}gl.bindFramebuffer(36160,prevFbo);if(prevScissorTest)gl.enable(3089)},registerContext:(ctx,webGLContextAttributes)=>{var handle=GL.getNewId(GL.contexts);var context={handle:handle,attributes:webGLContextAttributes,version:webGLContextAttributes.majorVersion,GLctx:ctx};if(ctx.canvas)ctx.canvas.GLctxObject=context;GL.contexts[handle]=context;if(typeof webGLContextAttributes.enableExtensionsByDefault=="undefined"||webGLContextAttributes.enableExtensionsByDefault){GL.initExtensions(context)}if(webGLContextAttributes.renderViaOffscreenBackBuffer)GL.createOffscreenFramebuffer(context);return handle},makeContextCurrent:contextHandle=>{GL.currentContext=GL.contexts[contextHandle];Module.ctx=GLctx=GL.currentContext?.GLctx;return!(contextHandle&&!GLctx)},getContext:contextHandle=>GL.contexts[contextHandle],deleteContext:contextHandle=>{if(GL.currentContext===GL.contexts[contextHandle]){GL.currentContext=null}if(typeof JSEvents=="object"){JSEvents.removeAllHandlersOnTarget(GL.contexts[contextHandle].GLctx.canvas)}if(GL.contexts[contextHandle]&&GL.contexts[contextHandle].GLctx.canvas){GL.contexts[contextHandle].GLctx.canvas.GLctxObject=undefined}GL.contexts[contextHandle]=null},initExtensions:context=>{context||=GL.currentContext;if(context.initExtensionsDone)return;context.initExtensionsDone=true;var GLctx=context.GLctx;webgl_enable_ANGLE_instanced_arrays(GLctx);webgl_enable_OES_vertex_array_object(GLctx);webgl_enable_WEBGL_draw_buffers(GLctx);webgl_enable_WEBGL_draw_instanced_base_vertex_base_instance(GLctx);webgl_enable_WEBGL_multi_draw_instanced_base_vertex_base_instance(GLctx);if(context.version>=2){GLctx.disjointTimerQueryExt=GLctx.getExtension("EXT_disjoint_timer_query_webgl2")}if(context.version<2||!GLctx.disjointTimerQueryExt){GLctx.disjointTimerQueryExt=GLctx.getExtension("EXT_disjoint_timer_query")}webgl_enable_WEBGL_multi_draw(GLctx);getEmscriptenSupportedExtensions(GLctx).forEach(ext=>{if(!ext.includes("lose_context")&&!ext.includes("debug")){GLctx.getExtension(ext)}})}};var _emscripten_webgl_do_commit_frame=()=>{if(!GL.currentContext||!GL.currentContext.GLctx){return-3}if(GL.currentContext.defaultFbo){GL.blitOffscreenFramebuffer(GL.currentContext);return 0}if(!GL.currentContext.attributes.explicitSwapControl){return-3}return 0};var _emscripten_webgl_commit_frame=_emscripten_webgl_do_commit_frame;var keepRuntimeAlive=()=>noExitRuntime||runtimeKeepaliveCounter>0;var _proc_exit=code=>{EXITSTATUS=code;if(!keepRuntimeAlive()){Module["onExit"]?.(code);ABORT=true}quit_(code,new ExitStatus(code))};var exitJS=(status,implicit)=>{EXITSTATUS=status;if(!keepRuntimeAlive()){exitRuntime()}if(keepRuntimeAlive()&&!implicit){var msg=`program exited (with status: ${status}), but keepRuntimeAlive() is set (counter=${runtimeKeepaliveCounter}) due to an async operation, so halting execution but not exiting the runtime or preventing further async execution (you can use emscripten_force_exit, if you want to force a true shutdown)`;readyPromiseReject(msg);err(msg)}_proc_exit(status)};var _exit=exitJS;var handleException=e=>{if(e instanceof ExitStatus||e=="unwind"){return EXITSTATUS}checkStackCookie();if(e instanceof WebAssembly.RuntimeError){if(_emscripten_stack_get_current()<=0){err("Stack overflow detected. You can try increasing -sSTACK_SIZE (currently set to 5242880)")}}quit_(1,e)};var maybeExit=()=>{if(runtimeExited){return}if(!keepRuntimeAlive()){try{_exit(EXITSTATUS)}catch(e){handleException(e)}}};var runtimeKeepalivePop=()=>{assert(runtimeKeepaliveCounter>0);runtimeKeepaliveCounter-=1};var setMainLoop=(browserIterationFunc,fps,simulateInfiniteLoop,arg,noSetTiming)=>{assert(!Browser.mainLoop.func,"emscripten_set_main_loop: there can only be one main loop function at once: call emscripten_cancel_main_loop to cancel the previous one before setting a new one with different parameters.");Browser.mainLoop.func=browserIterationFunc;Browser.mainLoop.arg=arg;var thisMainLoopId=Browser.mainLoop.currentlyRunningMainloop;function checkIsRunning(){if(thisMainLoopId<Browser.mainLoop.currentlyRunningMainloop){runtimeKeepalivePop();maybeExit();return false}return true}Browser.mainLoop.running=false;Browser.mainLoop.runner=function Browser_mainLoop_runner(){if(ABORT)return;if(Browser.mainLoop.queue.length>0){var start=Date.now();var blocker=Browser.mainLoop.queue.shift();blocker.func(blocker.arg);if(Browser.mainLoop.remainingBlockers){var remaining=Browser.mainLoop.remainingBlockers;var next=remaining%1==0?remaining-1:Math.floor(remaining);if(blocker.counted){Browser.mainLoop.remainingBlockers=next}else{next=next+.5;Browser.mainLoop.remainingBlockers=(8*remaining+next)/9}}Browser.mainLoop.updateStatus();if(!checkIsRunning())return;setTimeout(Browser.mainLoop.runner,0);return}if(!checkIsRunning())return;Browser.mainLoop.currentFrameNumber=Browser.mainLoop.currentFrameNumber+1|0;if(Browser.mainLoop.timingMode==1&&Browser.mainLoop.timingValue>1&&Browser.mainLoop.currentFrameNumber%Browser.mainLoop.timingValue!=0){Browser.mainLoop.scheduler();return}else if(Browser.mainLoop.timingMode==0){Browser.mainLoop.tickStartTime=_emscripten_get_now()}if(Browser.mainLoop.method==="timeout"&&Module.ctx){warnOnce("Looks like you are rendering without using requestAnimationFrame for the main loop. You should use 0 for the frame rate in emscripten_set_main_loop in order to use requestAnimationFrame, as that can greatly improve your frame rates!");Browser.mainLoop.method=""}Browser.mainLoop.runIter(browserIterationFunc);checkStackCookie();if(!checkIsRunning())return;if(typeof SDL=="object")SDL.audio?.queueNewAudioData?.();Browser.mainLoop.scheduler()};if(!noSetTiming){if(fps&&fps>0){_emscripten_set_main_loop_timing(0,1e3/fps)}else{_emscripten_set_main_loop_timing(1,1)}Browser.mainLoop.scheduler()}if(simulateInfiniteLoop){throw"unwind"}};var callUserCallback=func=>{if(runtimeExited||ABORT){err("user callback triggered after runtime exited or application aborted. Ignoring.");return}try{func();maybeExit()}catch(e){handleException(e)}};var safeSetTimeout=(func,timeout)=>{runtimeKeepalivePush();return setTimeout(()=>{runtimeKeepalivePop();callUserCallback(func)},timeout)};var Browser={mainLoop:{running:false,scheduler:null,method:"",currentlyRunningMainloop:0,func:null,arg:0,timingMode:0,timingValue:0,currentFrameNumber:0,queue:[],pause(){Browser.mainLoop.scheduler=null;Browser.mainLoop.currentlyRunningMainloop++},resume(){Browser.mainLoop.currentlyRunningMainloop++;var timingMode=Browser.mainLoop.timingMode;var timingValue=Browser.mainLoop.timingValue;var func=Browser.mainLoop.func;Browser.mainLoop.func=null;setMainLoop(func,0,false,Browser.mainLoop.arg,true);_emscripten_set_main_loop_timing(timingMode,timingValue);Browser.mainLoop.scheduler()},updateStatus(){if(Module["setStatus"]){var message=Module["statusMessage"]||"Please wait...";var remaining=Browser.mainLoop.remainingBlockers;var expected=Browser.mainLoop.expectedBlockers;if(remaining){if(remaining<expected){Module["setStatus"](`{message} ({expected - remaining}/{expected})`)}else{Module["setStatus"](message)}}else{Module["setStatus"]("")}}},runIter(func){if(ABORT)return;if(Module["preMainLoop"]){var preRet=Module["preMainLoop"]();if(preRet===false){return}}callUserCallback(func);Module["postMainLoop"]?.()}},isFullscreen:false,pointerLock:false,moduleContextCreatedCallbacks:[],workers:[],init(){if(Browser.initted)return;Browser.initted=true;var imagePlugin={};imagePlugin["canHandle"]=function imagePlugin_canHandle(name){return!Module.noImageDecoding&&/\.(jpg|jpeg|png|bmp)$/i.test(name)};imagePlugin["handle"]=function imagePlugin_handle(byteArray,name,onload,onerror){var b=new Blob([byteArray],{type:Browser.getMimetype(name)});if(b.size!==byteArray.length){b=new Blob([new Uint8Array(byteArray).buffer],{type:Browser.getMimetype(name)})}var url=URL.createObjectURL(b);assert(typeof url=="string","createObjectURL must return a url as a string");var img=new Image;img.onload=()=>{assert(img.complete,`Image ${name} could not be decoded`);var canvas=document.createElement("canvas");canvas.width=img.width;canvas.height=img.height;var ctx=canvas.getContext("2d");ctx.drawImage(img,0,0);preloadedImages[name]=canvas;URL.revokeObjectURL(url);onload?.(byteArray)};img.onerror=event=>{err(`Image ${url} could not be decoded`);onerror?.()};img.src=url};preloadPlugins.push(imagePlugin);var audioPlugin={};audioPlugin["canHandle"]=function audioPlugin_canHandle(name){return!Module.noAudioDecoding&&name.substr(-4)in{".ogg":1,".wav":1,".mp3":1}};audioPlugin["handle"]=function audioPlugin_handle(byteArray,name,onload,onerror){var done=false;function finish(audio){if(done)return;done=true;preloadedAudios[name]=audio;onload?.(byteArray)}var b=new Blob([byteArray],{type:Browser.getMimetype(name)});var url=URL.createObjectURL(b);assert(typeof url=="string","createObjectURL must return a url as a string");var audio=new Audio;audio.addEventListener("canplaythrough",()=>finish(audio),false);audio.onerror=function audio_onerror(event){if(done)return;err(`warning: browser could not fully decode audio ${name}, trying slower base64 approach`);function encode64(data){var BASE="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";var PAD="=";var ret="";var leftchar=0;var leftbits=0;for(var i=0;i<data.length;i++){leftchar=leftchar<<8|data[i];leftbits+=8;while(leftbits>=6){var curr=leftchar>>leftbits-6&63;leftbits-=6;ret+=BASE[curr]}}if(leftbits==2){ret+=BASE[(leftchar&3)<<4];ret+=PAD+PAD}else if(leftbits==4){ret+=BASE[(leftchar&15)<<2];ret+=PAD}return ret}audio.src="data:audio/x-"+name.substr(-3)+";base64,"+encode64(byteArray);finish(audio)};audio.src=url;safeSetTimeout(()=>{finish(audio)},1e4)};preloadPlugins.push(audioPlugin);function pointerLockChange(){Browser.pointerLock=document["pointerLockElement"]===Module["canvas"]||document["mozPointerLockElement"]===Module["canvas"]||document["webkitPointerLockElement"]===Module["canvas"]||document["msPointerLockElement"]===Module["canvas"]}var canvas=Module["canvas"];if(canvas){canvas.requestPointerLock=canvas["requestPointerLock"]||canvas["mozRequestPointerLock"]||canvas["webkitRequestPointerLock"]||canvas["msRequestPointerLock"]||(()=>{});canvas.exitPointerLock=document["exitPointerLock"]||document["mozExitPointerLock"]||document["webkitExitPointerLock"]||document["msExitPointerLock"]||(()=>{});canvas.exitPointerLock=canvas.exitPointerLock.bind(document);document.addEventListener("pointerlockchange",pointerLockChange,false);document.addEventListener("mozpointerlockchange",pointerLockChange,false);document.addEventListener("webkitpointerlockchange",pointerLockChange,false);document.addEventListener("mspointerlockchange",pointerLockChange,false);if(Module["elementPointerLock"]){canvas.addEventListener("click",ev=>{if(!Browser.pointerLock&&Module["canvas"].requestPointerLock){Module["canvas"].requestPointerLock();ev.preventDefault()}},false)}}},createContext(canvas,useWebGL,setInModule,webGLContextAttributes){if(useWebGL&&Module.ctx&&canvas==Module.canvas)return Module.ctx;var ctx;var contextHandle;if(useWebGL){var contextAttributes={antialias:false,alpha:false,majorVersion:typeof WebGL2RenderingContext!="undefined"?2:1};if(webGLContextAttributes){for(var attribute in webGLContextAttributes){contextAttributes[attribute]=webGLContextAttributes[attribute]}}if(typeof GL!="undefined"){contextHandle=GL.createContext(canvas,contextAttributes);if(contextHandle){ctx=GL.getContext(contextHandle).GLctx}}}else{ctx=canvas.getContext("2d")}if(!ctx)return null;if(setInModule){if(!useWebGL)assert(typeof GLctx=="undefined","cannot set in module if GLctx is used, but we are a non-GL context that would replace it");Module.ctx=ctx;if(useWebGL)GL.makeContextCurrent(contextHandle);Module.useWebGL=useWebGL;Browser.moduleContextCreatedCallbacks.forEach(callback=>callback());Browser.init()}return ctx},destroyContext(canvas,useWebGL,setInModule){},fullscreenHandlersInstalled:false,lockPointer:undefined,resizeCanvas:undefined,requestFullscreen(lockPointer,resizeCanvas){Browser.lockPointer=lockPointer;Browser.resizeCanvas=resizeCanvas;if(typeof Browser.lockPointer=="undefined")Browser.lockPointer=true;if(typeof Browser.resizeCanvas=="undefined")Browser.resizeCanvas=false;var canvas=Module["canvas"];function fullscreenChange(){Browser.isFullscreen=false;var canvasContainer=canvas.parentNode;if((document["fullscreenElement"]||document["mozFullScreenElement"]||document["msFullscreenElement"]||document["webkitFullscreenElement"]||document["webkitCurrentFullScreenElement"])===canvasContainer){canvas.exitFullscreen=Browser.exitFullscreen;if(Browser.lockPointer)canvas.requestPointerLock();Browser.isFullscreen=true;if(Browser.resizeCanvas){Browser.setFullscreenCanvasSize()}else{Browser.updateCanvasDimensions(canvas)}}else{canvasContainer.parentNode.insertBefore(canvas,canvasContainer);canvasContainer.parentNode.removeChild(canvasContainer);if(Browser.resizeCanvas){Browser.setWindowedCanvasSize()}else{Browser.updateCanvasDimensions(canvas)}}Module["onFullScreen"]?.(Browser.isFullscreen);Module["onFullscreen"]?.(Browser.isFullscreen)}if(!Browser.fullscreenHandlersInstalled){Browser.fullscreenHandlersInstalled=true;document.addEventListener("fullscreenchange",fullscreenChange,false);document.addEventListener("mozfullscreenchange",fullscreenChange,false);document.addEventListener("webkitfullscreenchange",fullscreenChange,false);document.addEventListener("MSFullscreenChange",fullscreenChange,false)}var canvasContainer=document.createElement("div");canvas.parentNode.insertBefore(canvasContainer,canvas);canvasContainer.appendChild(canvas);canvasContainer.requestFullscreen=canvasContainer["requestFullscreen"]||canvasContainer["mozRequestFullScreen"]||canvasContainer["msRequestFullscreen"]||(canvasContainer["webkitRequestFullscreen"]?()=>canvasContainer["webkitRequestFullscreen"](Element["ALLOW_KEYBOARD_INPUT"]):null)||(canvasContainer["webkitRequestFullScreen"]?()=>canvasContainer["webkitRequestFullScreen"](Element["ALLOW_KEYBOARD_INPUT"]):null);canvasContainer.requestFullscreen()},requestFullScreen(){abort("Module.requestFullScreen has been replaced by Module.requestFullscreen (without a capital S)")},exitFullscreen(){if(!Browser.isFullscreen){return false}var CFS=document["exitFullscreen"]||document["cancelFullScreen"]||document["mozCancelFullScreen"]||document["msExitFullscreen"]||document["webkitCancelFullScreen"]||(()=>{});CFS.apply(document,[]);return true},nextRAF:0,fakeRequestAnimationFrame(func){var now=Date.now();if(Browser.nextRAF===0){Browser.nextRAF=now+1e3/60}else{while(now+2>=Browser.nextRAF){Browser.nextRAF+=1e3/60}}var delay=Math.max(Browser.nextRAF-now,0);setTimeout(func,delay)},requestAnimationFrame(func){if(typeof requestAnimationFrame=="function"){requestAnimationFrame(func);return}var RAF=Browser.fakeRequestAnimationFrame;RAF(func)},safeSetTimeout(func,timeout){return safeSetTimeout(func,timeout)},safeRequestAnimationFrame(func){runtimeKeepalivePush();return Browser.requestAnimationFrame(()=>{runtimeKeepalivePop();callUserCallback(func)})},getMimetype(name){return{jpg:"image/jpeg",jpeg:"image/jpeg",png:"image/png",bmp:"image/bmp",ogg:"audio/ogg",wav:"audio/wav",mp3:"audio/mpeg"}[name.substr(name.lastIndexOf(".")+1)]},getUserMedia(func){window.getUserMedia||=navigator["getUserMedia"]||navigator["mozGetUserMedia"];window.getUserMedia(func)},getMovementX(event){return event["movementX"]||event["mozMovementX"]||event["webkitMovementX"]||0},getMovementY(event){return event["movementY"]||event["mozMovementY"]||event["webkitMovementY"]||0},getMouseWheelDelta(event){var delta=0;switch(event.type){case"DOMMouseScroll":delta=event.detail/3;break;case"mousewheel":delta=event.wheelDelta/120;break;case"wheel":delta=event.deltaY;switch(event.deltaMode){case 0:delta/=100;break;case 1:delta/=3;break;case 2:delta*=80;break;default:throw"unrecognized mouse wheel delta mode: "+event.deltaMode}break;default:throw"unrecognized mouse wheel event: "+event.type}return delta},mouseX:0,mouseY:0,mouseMovementX:0,mouseMovementY:0,touches:{},lastTouches:{},calculateMouseCoords(pageX,pageY){var rect=Module["canvas"].getBoundingClientRect();var cw=Module["canvas"].width;var ch=Module["canvas"].height;var scrollX=typeof window.scrollX!="undefined"?window.scrollX:window.pageXOffset;var scrollY=typeof window.scrollY!="undefined"?window.scrollY:window.pageYOffset;assert(typeof scrollX!="undefined"&&typeof scrollY!="undefined","Unable to retrieve scroll position, mouse positions likely broken.");var adjustedX=pageX-(scrollX+rect.left);var adjustedY=pageY-(scrollY+rect.top);adjustedX=adjustedX*(cw/rect.width);adjustedY=adjustedY*(ch/rect.height);return{x:adjustedX,y:adjustedY}},setMouseCoords(pageX,pageY){const{x:x,y:y}=Browser.calculateMouseCoords(pageX,pageY);Browser.mouseMovementX=x-Browser.mouseX;Browser.mouseMovementY=y-Browser.mouseY;Browser.mouseX=x;Browser.mouseY=y},calculateMouseEvent(event){if(Browser.pointerLock){if(event.type!="mousemove"&&"mozMovementX"in event){Browser.mouseMovementX=Browser.mouseMovementY=0}else{Browser.mouseMovementX=Browser.getMovementX(event);Browser.mouseMovementY=Browser.getMovementY(event)}Browser.mouseX+=Browser.mouseMovementX;Browser.mouseY+=Browser.mouseMovementY}else{if(event.type==="touchstart"||event.type==="touchend"||event.type==="touchmove"){var touch=event.touch;if(touch===undefined){return}var coords=Browser.calculateMouseCoords(touch.pageX,touch.pageY);if(event.type==="touchstart"){Browser.lastTouches[touch.identifier]=coords;Browser.touches[touch.identifier]=coords}else if(event.type==="touchend"||event.type==="touchmove"){var last=Browser.touches[touch.identifier];last||=coords;Browser.lastTouches[touch.identifier]=last;Browser.touches[touch.identifier]=coords}return}Browser.setMouseCoords(event.pageX,event.pageY)}},resizeListeners:[],updateResizeListeners(){var canvas=Module["canvas"];Browser.resizeListeners.forEach(listener=>listener(canvas.width,canvas.height))},setCanvasSize(width,height,noUpdates){var canvas=Module["canvas"];Browser.updateCanvasDimensions(canvas,width,height);if(!noUpdates)Browser.updateResizeListeners()},windowedWidth:0,windowedHeight:0,setFullscreenCanvasSize(){if(typeof SDL!="undefined"){var flags=HEAPU32[SDL.screen>>2];flags=flags|8388608;HEAP32[SDL.screen>>2]=flags}Browser.updateCanvasDimensions(Module["canvas"]);Browser.updateResizeListeners()},setWindowedCanvasSize(){if(typeof SDL!="undefined"){var flags=HEAPU32[SDL.screen>>2];flags=flags&~8388608;HEAP32[SDL.screen>>2]=flags}Browser.updateCanvasDimensions(Module["canvas"]);Browser.updateResizeListeners()},updateCanvasDimensions(canvas,wNative,hNative){if(wNative&&hNative){canvas.widthNative=wNative;canvas.heightNative=hNative}else{wNative=canvas.widthNative;hNative=canvas.heightNative}var w=wNative;var h=hNative;if(Module["forcedAspectRatio"]&&Module["forcedAspectRatio"]>0){if(w/h<Module["forcedAspectRatio"]){w=Math.round(h*Module["forcedAspectRatio"])}else{h=Math.round(w/Module["forcedAspectRatio"])}}if((document["fullscreenElement"]||document["mozFullScreenElement"]||document["msFullscreenElement"]||document["webkitFullscreenElement"]||document["webkitCurrentFullScreenElement"])===canvas.parentNode&&typeof screen!="undefined"){var factor=Math.min(screen.width/w,screen.height/h);w=Math.round(w*factor);h=Math.round(h*factor)}if(Browser.resizeCanvas){if(canvas.width!=w)canvas.width=w;if(canvas.height!=h)canvas.height=h;if(typeof canvas.style!="undefined"){canvas.style.removeProperty("width");canvas.style.removeProperty("height")}}else{if(canvas.width!=wNative)canvas.width=wNative;if(canvas.height!=hNative)canvas.height=hNative;if(typeof canvas.style!="undefined"){if(w!=wNative||h!=hNative){canvas.style.setProperty("width",w+"px","important");canvas.style.setProperty("height",h+"px","important")}else{canvas.style.removeProperty("width");canvas.style.removeProperty("height")}}}}};var _emscripten_cancel_main_loop=()=>{Browser.mainLoop.pause();Browser.mainLoop.func=null};var _emscripten_date_now=()=>Date.now();var _emscripten_err=str=>err(UTF8ToString(str));var _emscripten_force_exit=status=>{__emscripten_runtime_keepalive_clear();_exit(status)};var getHeapMax=()=>2147483648;var _emscripten_get_heap_max=()=>getHeapMax();var growMemory=size=>{var b=wasmMemory.buffer;var pages=(size-b.byteLength+65535)/65536;try{wasmMemory.grow(pages);updateMemoryViews();return 1}catch(e){err(`growMemory: Attempted to grow heap from ${b.byteLength} bytes to ${size} bytes, but got error: ${e}`)}};var _emscripten_resize_heap=requestedSize=>{var oldSize=HEAPU8.length;requestedSize>>>=0;assert(requestedSize>oldSize);var maxHeapSize=getHeapMax();if(requestedSize>maxHeapSize){err(`Cannot enlarge memory, requested ${requestedSize} bytes, but the limit is ${maxHeapSize} bytes!`);return false}var alignUp=(x,multiple)=>x+(multiple-x%multiple)%multiple;for(var cutDown=1;cutDown<=4;cutDown*=2){var overGrownHeapSize=oldSize*(1+.2/cutDown);overGrownHeapSize=Math.min(overGrownHeapSize,requestedSize+100663296);var newSize=Math.min(maxHeapSize,alignUp(Math.max(requestedSize,overGrownHeapSize),65536));var replacement=growMemory(newSize);if(replacement){return true}}err(`Failed to grow the heap from ${oldSize} bytes to ${newSize} bytes, not enough memory!`);return false};var JSEvents={removeAllEventListeners(){while(JSEvents.eventHandlers.length){JSEvents._removeHandler(JSEvents.eventHandlers.length-1)}JSEvents.deferredCalls=[]},registerRemoveEventListeners(){if(!JSEvents.removeEventListenersRegistered){__ATEXIT__.push(JSEvents.removeAllEventListeners);JSEvents.removeEventListenersRegistered=true}},inEventHandler:0,deferredCalls:[],deferCall(targetFunction,precedence,argsList){function arraysHaveEqualContent(arrA,arrB){if(arrA.length!=arrB.length)return false;for(var i in arrA){if(arrA[i]!=arrB[i])return false}return true}for(var call of JSEvents.deferredCalls){if(call.targetFunction==targetFunction&&arraysHaveEqualContent(call.argsList,argsList)){return}}JSEvents.deferredCalls.push({targetFunction:targetFunction,precedence:precedence,argsList:argsList});JSEvents.deferredCalls.sort((x,y)=>x.precedence<y.precedence)},removeDeferredCalls(targetFunction){JSEvents.deferredCalls=JSEvents.deferredCalls.filter(call=>call.targetFunction!=targetFunction)},canPerformEventHandlerRequests(){if(navigator.userActivation){return navigator.userActivation.isActive}return JSEvents.inEventHandler&&JSEvents.currentEventHandler.allowsDeferredCalls},runDeferredCalls(){if(!JSEvents.canPerformEventHandlerRequests()){return}var deferredCalls=JSEvents.deferredCalls;JSEvents.deferredCalls=[];for(var call of deferredCalls){call.targetFunction(...call.argsList)}},eventHandlers:[],removeAllHandlersOnTarget:(target,eventTypeString)=>{for(var i=0;i<JSEvents.eventHandlers.length;++i){if(JSEvents.eventHandlers[i].target==target&&(!eventTypeString||eventTypeString==JSEvents.eventHandlers[i].eventTypeString)){JSEvents._removeHandler(i--)}}},_removeHandler(i){var h=JSEvents.eventHandlers[i];h.target.removeEventListener(h.eventTypeString,h.eventListenerFunc,h.useCapture);JSEvents.eventHandlers.splice(i,1)},registerOrRemoveHandler(eventHandler){if(!eventHandler.target){err("registerOrRemoveHandler: the target element for event handler registration does not exist, when processing the following event handler registration:");console.dir(eventHandler);return-4}if(eventHandler.callbackfunc){eventHandler.eventListenerFunc=function(event){++JSEvents.inEventHandler;JSEvents.currentEventHandler=eventHandler;JSEvents.runDeferredCalls();eventHandler.handlerFunc(event);JSEvents.runDeferredCalls();--JSEvents.inEventHandler};eventHandler.target.addEventListener(eventHandler.eventTypeString,eventHandler.eventListenerFunc,eventHandler.useCapture);JSEvents.eventHandlers.push(eventHandler);JSEvents.registerRemoveEventListeners()}else{for(var i=0;i<JSEvents.eventHandlers.length;++i){if(JSEvents.eventHandlers[i].target==eventHandler.target&&JSEvents.eventHandlers[i].eventTypeString==eventHandler.eventTypeString){JSEvents._removeHandler(i--)}}}return 0},getNodeNameForTarget(target){if(!target)return"";if(target==window)return"#window";if(target==screen)return"#screen";return target?.nodeName||""},fullscreenEnabled(){return document.fullscreenEnabled||document.webkitFullscreenEnabled}};var maybeCStringToJsString=cString=>cString>2?UTF8ToString(cString):cString;var specialHTMLTargets=[0,typeof document!="undefined"?document:0,typeof window!="undefined"?window:0];var findEventTarget=target=>{target=maybeCStringToJsString(target);var domElement=specialHTMLTargets[target]||(typeof document!="undefined"?document.querySelector(target):undefined);return domElement};var findCanvasEventTarget=findEventTarget;var _emscripten_set_canvas_element_size=(target,width,height)=>{var canvas=findCanvasEventTarget(target);if(!canvas)return-4;canvas.width=width;canvas.height=height;if(canvas.GLctxObject)GL.resizeOffscreenFramebuffer(canvas.GLctxObject);return 0};var _emscripten_set_main_loop=(func,fps,simulateInfiniteLoop)=>{var browserIterationFunc=getWasmTableEntry(func);setMainLoop(browserIterationFunc,fps,simulateInfiniteLoop)};var webglPowerPreferences=["default","low-power","high-performance"];var _emscripten_webgl_do_create_context=(target,attributes)=>{assert(attributes);var attr32=attributes>>2;var powerPreference=HEAP32[attr32+(8>>2)];var contextAttributes={alpha:!!HEAP8[attributes+0],depth:!!HEAP8[attributes+1],stencil:!!HEAP8[attributes+2],antialias:!!HEAP8[attributes+3],premultipliedAlpha:!!HEAP8[attributes+4],preserveDrawingBuffer:!!HEAP8[attributes+5],powerPreference:webglPowerPreferences[powerPreference],failIfMajorPerformanceCaveat:!!HEAP8[attributes+12],majorVersion:HEAP32[attr32+(16>>2)],minorVersion:HEAP32[attr32+(20>>2)],enableExtensionsByDefault:HEAP8[attributes+24],explicitSwapControl:HEAP8[attributes+25],proxyContextToMainThread:HEAP32[attr32+(28>>2)],renderViaOffscreenBackBuffer:HEAP8[attributes+32]};var canvas=findCanvasEventTarget(target);if(!canvas){return 0}if(contextAttributes.explicitSwapControl&&!contextAttributes.renderViaOffscreenBackBuffer){contextAttributes.renderViaOffscreenBackBuffer=true}var contextHandle=GL.createContext(canvas,contextAttributes);return contextHandle};var _emscripten_webgl_create_context=_emscripten_webgl_do_create_context;var _emscripten_webgl_destroy_context=contextHandle=>{if(GL.currentContext==contextHandle)GL.currentContext=0;GL.deleteContext(contextHandle)};var _emscripten_webgl_enable_extension=(contextHandle,extension)=>{var context=GL.getContext(contextHandle);var extString=UTF8ToString(extension);if(extString.startsWith("GL_"))extString=extString.substr(3);if(extString=="ANGLE_instanced_arrays")webgl_enable_ANGLE_instanced_arrays(GLctx);if(extString=="OES_vertex_array_object")webgl_enable_OES_vertex_array_object(GLctx);if(extString=="WEBGL_draw_buffers")webgl_enable_WEBGL_draw_buffers(GLctx);if(extString=="WEBGL_draw_instanced_base_vertex_base_instance")webgl_enable_WEBGL_draw_instanced_base_vertex_base_instance(GLctx);if(extString=="WEBGL_multi_draw_instanced_base_vertex_base_instance")webgl_enable_WEBGL_multi_draw_instanced_base_vertex_base_instance(GLctx);if(extString=="WEBGL_multi_draw")webgl_enable_WEBGL_multi_draw(GLctx);var ext=context.GLctx.getExtension(extString);return!!ext};var stringToNewUTF8=str=>{var size=lengthBytesUTF8(str)+1;var ret=_malloc(size);if(ret)stringToUTF8(str,ret,size);return ret};var _emscripten_webgl_get_supported_extensions=()=>stringToNewUTF8(GLctx.getSupportedExtensions().join(" "));var _emscripten_webgl_make_context_current=contextHandle=>{var success=GL.makeContextCurrent(contextHandle);return success?0:-5};var ENV={};var getExecutableName=()=>thisProgram||"./this.program";var getEnvStrings=()=>{if(!getEnvStrings.strings){var lang=(typeof navigator=="object"&&navigator.languages&&navigator.languages[0]||"C").replace("-","_")+".UTF-8";var env={USER:"web_user",LOGNAME:"web_user",PATH:"/",PWD:"/",HOME:"/home/web_user",LANG:lang,_:getExecutableName()};for(var x in ENV){if(ENV[x]===undefined)delete env[x];else env[x]=ENV[x]}var strings=[];for(var x in env){strings.push(`${x}=${env[x]}`)}getEnvStrings.strings=strings}return getEnvStrings.strings};var stringToAscii=(str,buffer)=>{for(var i=0;i<str.length;++i){assert(str.charCodeAt(i)===(str.charCodeAt(i)&255));HEAP8[buffer++]=str.charCodeAt(i)}HEAP8[buffer]=0};var _environ_get=(__environ,environ_buf)=>{var bufSize=0;getEnvStrings().forEach((string,i)=>{var ptr=environ_buf+bufSize;HEAPU32[__environ+i*4>>2]=ptr;stringToAscii(string,ptr);bufSize+=string.length+1});return 0};var _environ_sizes_get=(penviron_count,penviron_buf_size)=>{var strings=getEnvStrings();HEAPU32[penviron_count>>2]=strings.length;var bufSize=0;strings.forEach(string=>bufSize+=string.length+1);HEAPU32[penviron_buf_size>>2]=bufSize;return 0};function _fd_close(fd){try{var stream=SYSCALLS.getStreamFromFD(fd);FS.close(stream);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}function _fd_fdstat_get(fd,pbuf){try{var rightsBase=0;var rightsInheriting=0;var flags=0;{var stream=SYSCALLS.getStreamFromFD(fd);var type=stream.tty?2:FS.isDir(stream.mode)?3:FS.isLink(stream.mode)?7:4}HEAP8[pbuf]=type;HEAP16[pbuf+2>>1]=flags;HEAP64[pbuf+8>>3]=BigInt(rightsBase);HEAP64[pbuf+16>>3]=BigInt(rightsInheriting);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}var doReadv=(stream,iov,iovcnt,offset)=>{var ret=0;for(var i=0;i<iovcnt;i++){var ptr=HEAPU32[iov>>2];var len=HEAPU32[iov+4>>2];iov+=8;var curr=FS.read(stream,HEAP8,ptr,len,offset);if(curr<0)return-1;ret+=curr;if(curr<len)break;if(typeof offset!="undefined"){offset+=curr}}return ret};function _fd_read(fd,iov,iovcnt,pnum){try{var stream=SYSCALLS.getStreamFromFD(fd);var num=doReadv(stream,iov,iovcnt);HEAPU32[pnum>>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}function _fd_seek(fd,offset,whence,newOffset){offset=bigintToI53Checked(offset);try{if(isNaN(offset))return 61;var stream=SYSCALLS.getStreamFromFD(fd);FS.llseek(stream,offset,whence);HEAP64[newOffset>>3]=BigInt(stream.position);if(stream.getdents&&offset===0&&whence===0)stream.getdents=null;return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}var doWritev=(stream,iov,iovcnt,offset)=>{var ret=0;for(var i=0;i<iovcnt;i++){var ptr=HEAPU32[iov>>2];var len=HEAPU32[iov+4>>2];iov+=8;var curr=FS.write(stream,HEAP8,ptr,len,offset);if(curr<0)return-1;ret+=curr;if(typeof offset!="undefined"){offset+=curr}}return ret};function _fd_write(fd,iov,iovcnt,pnum){try{var stream=SYSCALLS.getStreamFromFD(fd);var num=doWritev(stream,iov,iovcnt);HEAPU32[pnum>>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}var _glActiveTexture=x0=>GLctx.activeTexture(x0);var _glAttachShader=(program,shader)=>{GLctx.attachShader(GL.programs[program],GL.shaders[shader])};var _glBeginTransformFeedback=x0=>GLctx.beginTransformFeedback(x0);var _glBindBuffer=(target,buffer)=>{if(target==35051){GLctx.currentPixelPackBufferBinding=buffer}else if(target==35052){GLctx.currentPixelUnpackBufferBinding=buffer}GLctx.bindBuffer(target,GL.buffers[buffer])};var _glBindBufferBase=(target,index,buffer)=>{GLctx.bindBufferBase(target,index,GL.buffers[buffer])};var _glBindBufferRange=(target,index,buffer,offset,ptrsize)=>{GLctx.bindBufferRange(target,index,GL.buffers[buffer],offset,ptrsize)};var _glBindFramebuffer=(target,framebuffer)=>{GLctx.bindFramebuffer(target,framebuffer?GL.framebuffers[framebuffer]:GL.currentContext.defaultFbo)};var _glBindRenderbuffer=(target,renderbuffer)=>{GLctx.bindRenderbuffer(target,GL.renderbuffers[renderbuffer])};var _glBindTexture=(target,texture)=>{GLctx.bindTexture(target,GL.textures[texture])};var _glBindVertexArray=vao=>{GLctx.bindVertexArray(GL.vaos[vao])};var _glBlendColor=(x0,x1,x2,x3)=>GLctx.blendColor(x0,x1,x2,x3);var _glBlendEquation=x0=>GLctx.blendEquation(x0);var _glBlendFunc=(x0,x1)=>GLctx.blendFunc(x0,x1);var _glBlendFuncSeparate=(x0,x1,x2,x3)=>GLctx.blendFuncSeparate(x0,x1,x2,x3);var _glBlitFramebuffer=(x0,x1,x2,x3,x4,x5,x6,x7,x8,x9)=>GLctx.blitFramebuffer(x0,x1,x2,x3,x4,x5,x6,x7,x8,x9);var _glBufferData=(target,size,data,usage)=>{if(GL.currentContext.version>=2){if(data&&size){GLctx.bufferData(target,HEAPU8,usage,data,size)}else{GLctx.bufferData(target,size,usage)}return}GLctx.bufferData(target,data?HEAPU8.subarray(data,data+size):size,usage)};var _glBufferSubData=(target,offset,size,data)=>{if(GL.currentContext.version>=2){size&&GLctx.bufferSubData(target,offset,HEAPU8,data,size);return}GLctx.bufferSubData(target,offset,HEAPU8.subarray(data,data+size))};var _glCheckFramebufferStatus=x0=>GLctx.checkFramebufferStatus(x0);var _glClear=x0=>GLctx.clear(x0);var _glClearBufferfv=(buffer,drawbuffer,value)=>{GLctx.clearBufferfv(buffer,drawbuffer,HEAPF32,value>>2)};var _glClearColor=(x0,x1,x2,x3)=>GLctx.clearColor(x0,x1,x2,x3);var _glClearDepthf=x0=>GLctx.clearDepth(x0);var _glColorMask=(red,green,blue,alpha)=>{GLctx.colorMask(!!red,!!green,!!blue,!!alpha)};var _glCompileShader=shader=>{GLctx.compileShader(GL.shaders[shader])};var _glCompressedTexImage2D=(target,level,internalFormat,width,height,border,imageSize,data)=>{if(GL.currentContext.version>=2){if(GLctx.currentPixelUnpackBufferBinding||!imageSize){GLctx.compressedTexImage2D(target,level,internalFormat,width,height,border,imageSize,data);return}GLctx.compressedTexImage2D(target,level,internalFormat,width,height,border,HEAPU8,data,imageSize);return}GLctx.compressedTexImage2D(target,level,internalFormat,width,height,border,data?HEAPU8.subarray(data,data+imageSize):null)};var _glCompressedTexImage3D=(target,level,internalFormat,width,height,depth,border,imageSize,data)=>{if(GLctx.currentPixelUnpackBufferBinding){GLctx.compressedTexImage3D(target,level,internalFormat,width,height,depth,border,imageSize,data)}else{GLctx.compressedTexImage3D(target,level,internalFormat,width,height,depth,border,HEAPU8,data,imageSize)}};var _glCompressedTexSubImage3D=(target,level,xoffset,yoffset,zoffset,width,height,depth,format,imageSize,data)=>{if(GLctx.currentPixelUnpackBufferBinding){GLctx.compressedTexSubImage3D(target,level,xoffset,yoffset,zoffset,width,height,depth,format,imageSize,data)}else{GLctx.compressedTexSubImage3D(target,level,xoffset,yoffset,zoffset,width,height,depth,format,HEAPU8,data,imageSize)}};var _glCopyBufferSubData=(x0,x1,x2,x3,x4)=>GLctx.copyBufferSubData(x0,x1,x2,x3,x4);var _glCreateProgram=()=>{var id=GL.getNewId(GL.programs);var program=GLctx.createProgram();program.name=id;program.maxUniformLength=program.maxAttributeLength=program.maxUniformBlockNameLength=0;program.uniformIdCounter=1;GL.programs[id]=program;return id};var _glCreateShader=shaderType=>{var id=GL.getNewId(GL.shaders);GL.shaders[id]=GLctx.createShader(shaderType);return id};var _glCullFace=x0=>GLctx.cullFace(x0);var _glDeleteBuffers=(n,buffers)=>{for(var i=0;i<n;i++){var id=HEAP32[buffers+i*4>>2];var buffer=GL.buffers[id];if(!buffer)continue;GLctx.deleteBuffer(buffer);buffer.name=0;GL.buffers[id]=null;if(id==GLctx.currentPixelPackBufferBinding)GLctx.currentPixelPackBufferBinding=0;if(id==GLctx.currentPixelUnpackBufferBinding)GLctx.currentPixelUnpackBufferBinding=0}};var _glDeleteFramebuffers=(n,framebuffers)=>{for(var i=0;i<n;++i){var id=HEAP32[framebuffers+i*4>>2];var framebuffer=GL.framebuffers[id];if(!framebuffer)continue;GLctx.deleteFramebuffer(framebuffer);framebuffer.name=0;GL.framebuffers[id]=null}};var _glDeleteProgram=id=>{if(!id)return;var program=GL.programs[id];if(!program){GL.recordError(1281);return}GLctx.deleteProgram(program);program.name=0;GL.programs[id]=null};var _glDeleteQueries=(n,ids)=>{for(var i=0;i<n;i++){var id=HEAP32[ids+i*4>>2];var query=GL.queries[id];if(!query)continue;GLctx.deleteQuery(query);GL.queries[id]=null}};var _glDeleteRenderbuffers=(n,renderbuffers)=>{for(var i=0;i<n;i++){var id=HEAP32[renderbuffers+i*4>>2];var renderbuffer=GL.renderbuffers[id];if(!renderbuffer)continue;GLctx.deleteRenderbuffer(renderbuffer);renderbuffer.name=0;GL.renderbuffers[id]=null}};var _glDeleteShader=id=>{if(!id)return;var shader=GL.shaders[id];if(!shader){GL.recordError(1281);return}GLctx.deleteShader(shader);GL.shaders[id]=null};var _glDeleteSync=id=>{if(!id)return;var sync=GL.syncs[id];if(!sync){GL.recordError(1281);return}GLctx.deleteSync(sync);sync.name=0;GL.syncs[id]=null};var _glDeleteTextures=(n,textures)=>{for(var i=0;i<n;i++){var id=HEAP32[textures+i*4>>2];var texture=GL.textures[id];if(!texture)continue;GLctx.deleteTexture(texture);texture.name=0;GL.textures[id]=null}};var _glDeleteVertexArrays=(n,vaos)=>{for(var i=0;i<n;i++){var id=HEAP32[vaos+i*4>>2];GLctx.deleteVertexArray(GL.vaos[id]);GL.vaos[id]=null}};var _glDepthFunc=x0=>GLctx.depthFunc(x0);var _glDepthMask=flag=>{GLctx.depthMask(!!flag)};var _glDisable=x0=>GLctx.disable(x0);var _glDisableVertexAttribArray=index=>{GLctx.disableVertexAttribArray(index)};var _glDrawArrays=(mode,first,count)=>{GLctx.drawArrays(mode,first,count)};var _glDrawArraysInstanced=(mode,first,count,primcount)=>{GLctx.drawArraysInstanced(mode,first,count,primcount)};var tempFixedLengthArray=[];var _glDrawBuffers=(n,bufs)=>{var bufArray=tempFixedLengthArray[n];for(var i=0;i<n;i++){bufArray[i]=HEAP32[bufs+i*4>>2]}GLctx.drawBuffers(bufArray)};var _glDrawElements=(mode,count,type,indices)=>{GLctx.drawElements(mode,count,type,indices)};var _glDrawElementsInstanced=(mode,count,type,indices,primcount)=>{GLctx.drawElementsInstanced(mode,count,type,indices,primcount)};var _glEnable=x0=>GLctx.enable(x0);var _glEnableVertexAttribArray=index=>{GLctx.enableVertexAttribArray(index)};var _glEndTransformFeedback=()=>GLctx.endTransformFeedback();var _glFenceSync=(condition,flags)=>{var sync=GLctx.fenceSync(condition,flags);if(sync){var id=GL.getNewId(GL.syncs);sync.name=id;GL.syncs[id]=sync;return id}return 0};var _glFinish=()=>GLctx.finish();var _glFramebufferRenderbuffer=(target,attachment,renderbuffertarget,renderbuffer)=>{GLctx.framebufferRenderbuffer(target,attachment,renderbuffertarget,GL.renderbuffers[renderbuffer])};var _glFramebufferTexture2D=(target,attachment,textarget,texture,level)=>{GLctx.framebufferTexture2D(target,attachment,textarget,GL.textures[texture],level)};var _glFramebufferTextureLayer=(target,attachment,texture,level,layer)=>{GLctx.framebufferTextureLayer(target,attachment,GL.textures[texture],level,layer)};var _glFrontFace=x0=>GLctx.frontFace(x0);var _glGenBuffers=(n,buffers)=>{GL.genObject(n,buffers,"createBuffer",GL.buffers)};var _glGenFramebuffers=(n,ids)=>{GL.genObject(n,ids,"createFramebuffer",GL.framebuffers)};var _glGenQueries=(n,ids)=>{GL.genObject(n,ids,"createQuery",GL.queries)};var _glGenRenderbuffers=(n,renderbuffers)=>{GL.genObject(n,renderbuffers,"createRenderbuffer",GL.renderbuffers)};var _glGenTextures=(n,textures)=>{GL.genObject(n,textures,"createTexture",GL.textures)};var _glGenVertexArrays=(n,arrays)=>{GL.genObject(n,arrays,"createVertexArray",GL.vaos)};var _glGenerateMipmap=x0=>GLctx.generateMipmap(x0);var readI53FromI64=ptr=>HEAPU32[ptr>>2]+HEAP32[ptr+4>>2]*4294967296;var readI53FromU64=ptr=>HEAPU32[ptr>>2]+HEAPU32[ptr+4>>2]*4294967296;var writeI53ToI64=(ptr,num)=>{HEAPU32[ptr>>2]=num;var lower=HEAPU32[ptr>>2];HEAPU32[ptr+4>>2]=(num-lower)/4294967296;var deserialized=num>=0?readI53FromU64(ptr):readI53FromI64(ptr);var offset=ptr>>2;if(deserialized!=num)warnOnce(`writeI53ToI64() out of range: serialized JS Number ${num} to Wasm heap as bytes lo=${ptrToString(HEAPU32[offset])}, hi=${ptrToString(HEAPU32[offset+1])}, which deserializes back to ${deserialized} instead!`)};var webglGetExtensions=function $webglGetExtensions(){var exts=getEmscriptenSupportedExtensions(GLctx);exts=exts.concat(exts.map(e=>"GL_"+e));return exts};var emscriptenWebGLGet=(name_,p,type)=>{if(!p){GL.recordError(1281);return}var ret=undefined;switch(name_){case 36346:ret=1;break;case 36344:if(type!=0&&type!=1){GL.recordError(1280)}return;case 34814:case 36345:ret=0;break;case 34466:var formats=GLctx.getParameter(34467);ret=formats?formats.length:0;break;case 33309:if(GL.currentContext.version<2){GL.recordError(1282);return}ret=webglGetExtensions().length;break;case 33307:case 33308:if(GL.currentContext.version<2){GL.recordError(1280);return}ret=name_==33307?3:0;break}if(ret===undefined){var result=GLctx.getParameter(name_);switch(typeof result){case"number":ret=result;break;case"boolean":ret=result?1:0;break;case"string":GL.recordError(1280);return;case"object":if(result===null){switch(name_){case 34964:case 35725:case 34965:case 36006:case 36007:case 32873:case 34229:case 36662:case 36663:case 35053:case 35055:case 36010:case 35097:case 35869:case 32874:case 36389:case 35983:case 35368:case 34068:{ret=0;break}default:{GL.recordError(1280);return}}}else if(result instanceof Float32Array||result instanceof Uint32Array||result instanceof Int32Array||result instanceof Array){for(var i=0;i<result.length;++i){switch(type){case 0:HEAP32[p+i*4>>2]=result[i];break;case 2:HEAPF32[p+i*4>>2]=result[i];break;case 4:HEAP8[p+i]=result[i]?1:0;break}}return}else{try{ret=result.name|0}catch(e){GL.recordError(1280);err(`GL_INVALID_ENUM in glGet${type}v: Unknown object returned from WebGL getParameter(${name_})! (error: ${e})`);return}}break;default:GL.recordError(1280);err(`GL_INVALID_ENUM in glGet${type}v: Native code calling glGet${type}v(${name_}) and it returns ${result} of type ${typeof result}!`);return}}switch(type){case 1:writeI53ToI64(p,ret);break;case 0:HEAP32[p>>2]=ret;break;case 2:HEAPF32[p>>2]=ret;break;case 4:HEAP8[p]=ret?1:0;break}};var _glGetFloatv=(name_,p)=>emscriptenWebGLGet(name_,p,2);var _glGetInteger64v=(name_,p)=>{emscriptenWebGLGet(name_,p,1)};var _glGetIntegerv=(name_,p)=>emscriptenWebGLGet(name_,p,0);var _glGetProgramInfoLog=(program,maxLength,length,infoLog)=>{var log=GLctx.getProgramInfoLog(GL.programs[program]);if(log===null)log="(unknown error)";var numBytesWrittenExclNull=maxLength>0&&infoLog?stringToUTF8(log,infoLog,maxLength):0;if(length)HEAP32[length>>2]=numBytesWrittenExclNull};var _glGetProgramiv=(program,pname,p)=>{if(!p){GL.recordError(1281);return}if(program>=GL.counter){GL.recordError(1281);return}program=GL.programs[program];if(pname==35716){var log=GLctx.getProgramInfoLog(program);if(log===null)log="(unknown error)";HEAP32[p>>2]=log.length+1}else if(pname==35719){if(!program.maxUniformLength){for(var i=0;i<GLctx.getProgramParameter(program,35718);++i){program.maxUniformLength=Math.max(program.maxUniformLength,GLctx.getActiveUniform(program,i).name.length+1)}}HEAP32[p>>2]=program.maxUniformLength}else if(pname==35722){if(!program.maxAttributeLength){for(var i=0;i<GLctx.getProgramParameter(program,35721);++i){program.maxAttributeLength=Math.max(program.maxAttributeLength,GLctx.getActiveAttrib(program,i).name.length+1)}}HEAP32[p>>2]=program.maxAttributeLength}else if(pname==35381){if(!program.maxUniformBlockNameLength){for(var i=0;i<GLctx.getProgramParameter(program,35382);++i){program.maxUniformBlockNameLength=Math.max(program.maxUniformBlockNameLength,GLctx.getActiveUniformBlockName(program,i).length+1)}}HEAP32[p>>2]=program.maxUniformBlockNameLength}else{HEAP32[p>>2]=GLctx.getProgramParameter(program,pname)}};var _glGetShaderInfoLog=(shader,maxLength,length,infoLog)=>{var log=GLctx.getShaderInfoLog(GL.shaders[shader]);if(log===null)log="(unknown error)";var numBytesWrittenExclNull=maxLength>0&&infoLog?stringToUTF8(log,infoLog,maxLength):0;if(length)HEAP32[length>>2]=numBytesWrittenExclNull};var _glGetShaderiv=(shader,pname,p)=>{if(!p){GL.recordError(1281);return}if(pname==35716){var log=GLctx.getShaderInfoLog(GL.shaders[shader]);if(log===null)log="(unknown error)";var logLength=log?log.length+1:0;HEAP32[p>>2]=logLength}else if(pname==35720){var source=GLctx.getShaderSource(GL.shaders[shader]);var sourceLength=source?source.length+1:0;HEAP32[p>>2]=sourceLength}else{HEAP32[p>>2]=GLctx.getShaderParameter(GL.shaders[shader],pname)}};var _glGetString=name_=>{var ret=GL.stringCache[name_];if(!ret){switch(name_){case 7939:ret=stringToNewUTF8(webglGetExtensions().join(" "));break;case 7936:case 7937:case 37445:case 37446:var s=GLctx.getParameter(name_);if(!s){GL.recordError(1280)}ret=s?stringToNewUTF8(s):0;break;case 7938:var glVersion=GLctx.getParameter(7938);if(GL.currentContext.version>=2)glVersion=`OpenGL ES 3.0 (${glVersion})`;else{glVersion=`OpenGL ES 2.0 (${glVersion})`}ret=stringToNewUTF8(glVersion);break;case 35724:var glslVersion=GLctx.getParameter(35724);var ver_re=/^WebGL GLSL ES ([0-9]\.[0-9][0-9]?)(?:$| .*)/;var ver_num=glslVersion.match(ver_re);if(ver_num!==null){if(ver_num[1].length==3)ver_num[1]=ver_num[1]+"0";glslVersion=`OpenGL ES GLSL ES ${ver_num[1]} (${glslVersion})`}ret=stringToNewUTF8(glslVersion);break;default:GL.recordError(1280)}GL.stringCache[name_]=ret}return ret};var _glGetSynciv=(sync,pname,bufSize,length,values)=>{if(bufSize<0){GL.recordError(1281);return}if(!values){GL.recordError(1281);return}var ret=GLctx.getSyncParameter(GL.syncs[sync],pname);if(ret!==null){HEAP32[values>>2]=ret;if(length)HEAP32[length>>2]=1}};var _glGetUniformBlockIndex=(program,uniformBlockName)=>GLctx.getUniformBlockIndex(GL.programs[program],UTF8ToString(uniformBlockName));var jstoi_q=str=>parseInt(str);var webglGetLeftBracePos=name=>name.slice(-1)=="]"&&name.lastIndexOf("[");var webglPrepareUniformLocationsBeforeFirstUse=program=>{var uniformLocsById=program.uniformLocsById,uniformSizeAndIdsByName=program.uniformSizeAndIdsByName,i,j;if(!uniformLocsById){program.uniformLocsById=uniformLocsById={};program.uniformArrayNamesById={};for(i=0;i<GLctx.getProgramParameter(program,35718);++i){var u=GLctx.getActiveUniform(program,i);var nm=u.name;var sz=u.size;var lb=webglGetLeftBracePos(nm);var arrayName=lb>0?nm.slice(0,lb):nm;var id=program.uniformIdCounter;program.uniformIdCounter+=sz;uniformSizeAndIdsByName[arrayName]=[sz,id];for(j=0;j<sz;++j){uniformLocsById[id]=j;program.uniformArrayNamesById[id++]=arrayName}}}};var _glGetUniformLocation=(program,name)=>{name=UTF8ToString(name);if(program=GL.programs[program]){webglPrepareUniformLocationsBeforeFirstUse(program);var uniformLocsById=program.uniformLocsById;var arrayIndex=0;var uniformBaseName=name;var leftBrace=webglGetLeftBracePos(name);if(leftBrace>0){arrayIndex=jstoi_q(name.slice(leftBrace+1))>>>0;uniformBaseName=name.slice(0,leftBrace)}var sizeAndId=program.uniformSizeAndIdsByName[uniformBaseName];if(sizeAndId&&arrayIndex<sizeAndId[0]){arrayIndex+=sizeAndId[1];if(uniformLocsById[arrayIndex]=uniformLocsById[arrayIndex]||GLctx.getUniformLocation(program,name)){return arrayIndex}}}else{GL.recordError(1281)}return-1};var _glLinkProgram=program=>{program=GL.programs[program];GLctx.linkProgram(program);program.uniformLocsById=0;program.uniformSizeAndIdsByName={}};var _glPixelStorei=(pname,param)=>{if(pname==3317){GL.unpackAlignment=param}else if(pname==3314){GL.unpackRowLength=param}GLctx.pixelStorei(pname,param)};var _glReadBuffer=x0=>GLctx.readBuffer(x0);var computeUnpackAlignedImageSize=(width,height,sizePerPixel)=>{function roundedToNextMultipleOf(x,y){return x+y-1&-y}var plainRowSize=(GL.unpackRowLength||width)*sizePerPixel;var alignedRowSize=roundedToNextMultipleOf(plainRowSize,GL.unpackAlignment);return height*alignedRowSize};var colorChannelsInGlTextureFormat=format=>{var colorChannels={5:3,6:4,8:2,29502:3,29504:4,26917:2,26918:2,29846:3,29847:4};return colorChannels[format-6402]||1};var heapObjectForWebGLType=type=>{type-=5120;if(type==0)return HEAP8;if(type==1)return HEAPU8;if(type==2)return HEAP16;if(type==4)return HEAP32;if(type==6)return HEAPF32;if(type==5||type==28922||type==28520||type==30779||type==30782)return HEAPU32;return HEAPU16};var toTypedArrayIndex=(pointer,heap)=>pointer>>>31-Math.clz32(heap.BYTES_PER_ELEMENT);var emscriptenWebGLGetTexPixelData=(type,format,width,height,pixels,internalFormat)=>{var heap=heapObjectForWebGLType(type);var sizePerPixel=colorChannelsInGlTextureFormat(format)*heap.BYTES_PER_ELEMENT;var bytes=computeUnpackAlignedImageSize(width,height,sizePerPixel);return heap.subarray(toTypedArrayIndex(pixels,heap),toTypedArrayIndex(pixels+bytes,heap))};var _glReadPixels=(x,y,width,height,format,type,pixels)=>{if(GL.currentContext.version>=2){if(GLctx.currentPixelPackBufferBinding){GLctx.readPixels(x,y,width,height,format,type,pixels);return}var heap=heapObjectForWebGLType(type);var target=toTypedArrayIndex(pixels,heap);GLctx.readPixels(x,y,width,height,format,type,heap,target);return}var pixelData=emscriptenWebGLGetTexPixelData(type,format,width,height,pixels,format);if(!pixelData){GL.recordError(1280);return}GLctx.readPixels(x,y,width,height,format,type,pixelData)};var _glRenderbufferStorage=(x0,x1,x2,x3)=>GLctx.renderbufferStorage(x0,x1,x2,x3);var _glRenderbufferStorageMultisample=(x0,x1,x2,x3,x4)=>GLctx.renderbufferStorageMultisample(x0,x1,x2,x3,x4);var _glScissor=(x0,x1,x2,x3)=>GLctx.scissor(x0,x1,x2,x3);var _glShaderSource=(shader,count,string,length)=>{var source=GL.getSource(shader,count,string,length);GLctx.shaderSource(GL.shaders[shader],source)};var _glTexImage2D=(target,level,internalFormat,width,height,border,format,type,pixels)=>{if(GL.currentContext.version>=2){if(GLctx.currentPixelUnpackBufferBinding){GLctx.texImage2D(target,level,internalFormat,width,height,border,format,type,pixels);return}if(pixels){var heap=heapObjectForWebGLType(type);var index=toTypedArrayIndex(pixels,heap);GLctx.texImage2D(target,level,internalFormat,width,height,border,format,type,heap,index);return}}var pixelData=pixels?emscriptenWebGLGetTexPixelData(type,format,width,height,pixels,internalFormat):null;GLctx.texImage2D(target,level,internalFormat,width,height,border,format,type,pixelData)};var _glTexImage3D=(target,level,internalFormat,width,height,depth,border,format,type,pixels)=>{if(GLctx.currentPixelUnpackBufferBinding){GLctx.texImage3D(target,level,internalFormat,width,height,depth,border,format,type,pixels)}else if(pixels){var heap=heapObjectForWebGLType(type);GLctx.texImage3D(target,level,internalFormat,width,height,depth,border,format,type,heap,toTypedArrayIndex(pixels,heap))}else{GLctx.texImage3D(target,level,internalFormat,width,height,depth,border,format,type,null)}};var _glTexParameterf=(x0,x1,x2)=>GLctx.texParameterf(x0,x1,x2);var _glTexParameteri=(x0,x1,x2)=>GLctx.texParameteri(x0,x1,x2);var _glTexStorage2D=(x0,x1,x2,x3,x4)=>GLctx.texStorage2D(x0,x1,x2,x3,x4);var _glTexSubImage3D=(target,level,xoffset,yoffset,zoffset,width,height,depth,format,type,pixels)=>{if(GLctx.currentPixelUnpackBufferBinding){GLctx.texSubImage3D(target,level,xoffset,yoffset,zoffset,width,height,depth,format,type,pixels)}else if(pixels){var heap=heapObjectForWebGLType(type);GLctx.texSubImage3D(target,level,xoffset,yoffset,zoffset,width,height,depth,format,type,heap,toTypedArrayIndex(pixels,heap))}else{GLctx.texSubImage3D(target,level,xoffset,yoffset,zoffset,width,height,depth,format,type,null)}};var _glTransformFeedbackVaryings=(program,count,varyings,bufferMode)=>{program=GL.programs[program];var vars=[];for(var i=0;i<count;i++)vars.push(UTF8ToString(HEAP32[varyings+i*4>>2]));GLctx.transformFeedbackVaryings(program,vars,bufferMode)};var webglGetUniformLocation=location=>{var p=GLctx.currentProgram;if(p){var webglLoc=p.uniformLocsById[location];if(typeof webglLoc=="number"){p.uniformLocsById[location]=webglLoc=GLctx.getUniformLocation(p,p.uniformArrayNamesById[location]+(webglLoc>0?`[${webglLoc}]`:""))}return webglLoc}else{GL.recordError(1282)}};var _glUniform1f=(location,v0)=>{GLctx.uniform1f(webglGetUniformLocation(location),v0)};var _glUniform1i=(location,v0)=>{GLctx.uniform1i(webglGetUniformLocation(location),v0)};var miniTempWebGLIntBuffers=[];var _glUniform1iv=(location,count,value)=>{if(GL.currentContext.version>=2){count&&GLctx.uniform1iv(webglGetUniformLocation(location),HEAP32,value>>2,count);return}if(count<=288){var view=miniTempWebGLIntBuffers[count];for(var i=0;i<count;++i){view[i]=HEAP32[value+4*i>>2]}}else{var view=HEAP32.subarray(value>>2,value+count*4>>2)}GLctx.uniform1iv(webglGetUniformLocation(location),view)};var _glUniform1ui=(location,v0)=>{GLctx.uniform1ui(webglGetUniformLocation(location),v0)};var _glUniform1uiv=(location,count,value)=>{count&&GLctx.uniform1uiv(webglGetUniformLocation(location),HEAPU32,value>>2,count)};var _glUniform2f=(location,v0,v1)=>{GLctx.uniform2f(webglGetUniformLocation(location),v0,v1)};var miniTempWebGLFloatBuffers=[];var _glUniform2fv=(location,count,value)=>{if(GL.currentContext.version>=2){count&&GLctx.uniform2fv(webglGetUniformLocation(location),HEAPF32,value>>2,count*2);return}if(count<=144){var view=miniTempWebGLFloatBuffers[2*count];for(var i=0;i<2*count;i+=2){view[i]=HEAPF32[value+4*i>>2];view[i+1]=HEAPF32[value+(4*i+4)>>2]}}else{var view=HEAPF32.subarray(value>>2,value+count*8>>2)}GLctx.uniform2fv(webglGetUniformLocation(location),view)};var _glUniform2iv=(location,count,value)=>{if(GL.currentContext.version>=2){count&&GLctx.uniform2iv(webglGetUniformLocation(location),HEAP32,value>>2,count*2);return}if(count<=144){var view=miniTempWebGLIntBuffers[2*count];for(var i=0;i<2*count;i+=2){view[i]=HEAP32[value+4*i>>2];view[i+1]=HEAP32[value+(4*i+4)>>2]}}else{var view=HEAP32.subarray(value>>2,value+count*8>>2)}GLctx.uniform2iv(webglGetUniformLocation(location),view)};var _glUniform3fv=(location,count,value)=>{if(GL.currentContext.version>=2){count&&GLctx.uniform3fv(webglGetUniformLocation(location),HEAPF32,value>>2,count*3);return}if(count<=96){var view=miniTempWebGLFloatBuffers[3*count];for(var i=0;i<3*count;i+=3){view[i]=HEAPF32[value+4*i>>2];view[i+1]=HEAPF32[value+(4*i+4)>>2];view[i+2]=HEAPF32[value+(4*i+8)>>2]}}else{var view=HEAPF32.subarray(value>>2,value+count*12>>2)}GLctx.uniform3fv(webglGetUniformLocation(location),view)};var _glUniform4f=(location,v0,v1,v2,v3)=>{GLctx.uniform4f(webglGetUniformLocation(location),v0,v1,v2,v3)};var _glUniform4fv=(location,count,value)=>{if(GL.currentContext.version>=2){count&&GLctx.uniform4fv(webglGetUniformLocation(location),HEAPF32,value>>2,count*4);return}if(count<=72){var view=miniTempWebGLFloatBuffers[4*count];var heap=HEAPF32;value=value>>2;for(var i=0;i<4*count;i+=4){var dst=value+i;view[i]=heap[dst];view[i+1]=heap[dst+1];view[i+2]=heap[dst+2];view[i+3]=heap[dst+3]}}else{var view=HEAPF32.subarray(value>>2,value+count*16>>2)}GLctx.uniform4fv(webglGetUniformLocation(location),view)};var _glUniformBlockBinding=(program,uniformBlockIndex,uniformBlockBinding)=>{program=GL.programs[program];GLctx.uniformBlockBinding(program,uniformBlockIndex,uniformBlockBinding)};var _glUniformMatrix3fv=(location,count,transpose,value)=>{if(GL.currentContext.version>=2){count&&GLctx.uniformMatrix3fv(webglGetUniformLocation(location),!!transpose,HEAPF32,value>>2,count*9);return}if(count<=32){var view=miniTempWebGLFloatBuffers[9*count];for(var i=0;i<9*count;i+=9){view[i]=HEAPF32[value+4*i>>2];view[i+1]=HEAPF32[value+(4*i+4)>>2];view[i+2]=HEAPF32[value+(4*i+8)>>2];view[i+3]=HEAPF32[value+(4*i+12)>>2];view[i+4]=HEAPF32[value+(4*i+16)>>2];view[i+5]=HEAPF32[value+(4*i+20)>>2];view[i+6]=HEAPF32[value+(4*i+24)>>2];view[i+7]=HEAPF32[value+(4*i+28)>>2];view[i+8]=HEAPF32[value+(4*i+32)>>2]}}else{var view=HEAPF32.subarray(value>>2,value+count*36>>2)}GLctx.uniformMatrix3fv(webglGetUniformLocation(location),!!transpose,view)};var _glUniformMatrix4fv=(location,count,transpose,value)=>{if(GL.currentContext.version>=2){count&&GLctx.uniformMatrix4fv(webglGetUniformLocation(location),!!transpose,HEAPF32,value>>2,count*16);return}if(count<=18){var view=miniTempWebGLFloatBuffers[16*count];var heap=HEAPF32;value=value>>2;for(var i=0;i<16*count;i+=16){var dst=value+i;view[i]=heap[dst];view[i+1]=heap[dst+1];view[i+2]=heap[dst+2];view[i+3]=heap[dst+3];view[i+4]=heap[dst+4];view[i+5]=heap[dst+5];view[i+6]=heap[dst+6];view[i+7]=heap[dst+7];view[i+8]=heap[dst+8];view[i+9]=heap[dst+9];view[i+10]=heap[dst+10];view[i+11]=heap[dst+11];view[i+12]=heap[dst+12];view[i+13]=heap[dst+13];view[i+14]=heap[dst+14];view[i+15]=heap[dst+15]}}else{var view=HEAPF32.subarray(value>>2,value+count*64>>2)}GLctx.uniformMatrix4fv(webglGetUniformLocation(location),!!transpose,view)};var _glUseProgram=program=>{program=GL.programs[program];GLctx.useProgram(program);GLctx.currentProgram=program};var _glVertexAttrib4f=(x0,x1,x2,x3,x4)=>GLctx.vertexAttrib4f(x0,x1,x2,x3,x4);var _glVertexAttribDivisor=(index,divisor)=>{GLctx.vertexAttribDivisor(index,divisor)};var _glVertexAttribI4ui=(x0,x1,x2,x3,x4)=>GLctx.vertexAttribI4ui(x0,x1,x2,x3,x4);var _glVertexAttribIPointer=(index,size,type,stride,ptr)=>{GLctx.vertexAttribIPointer(index,size,type,stride,ptr)};var _glVertexAttribPointer=(index,size,type,normalized,stride,ptr)=>{GLctx.vertexAttribPointer(index,size,type,!!normalized,stride,ptr)};var _glViewport=(x0,x1,x2,x3)=>GLctx.viewport(x0,x1,x2,x3);var GodotRuntime={get_func:function(ptr){return wasmTable.get(ptr)},error:function(){err.apply(null,Array.from(arguments))},print:function(){out.apply(null,Array.from(arguments))},malloc:function(p_size){return _malloc(p_size)},free:function(p_ptr){_free(p_ptr)},getHeapValue:function(p_ptr,p_type){return getValue(p_ptr,p_type)},setHeapValue:function(p_ptr,p_value,p_type){setValue(p_ptr,p_value,p_type)},heapSub:function(p_heap,p_ptr,p_len){const bytes=p_heap.BYTES_PER_ELEMENT;return p_heap.subarray(p_ptr/bytes,p_ptr/bytes+p_len)},heapSlice:function(p_heap,p_ptr,p_len){const bytes=p_heap.BYTES_PER_ELEMENT;return p_heap.slice(p_ptr/bytes,p_ptr/bytes+p_len)},heapCopy:function(p_dst,p_src,p_ptr){const bytes=p_src.BYTES_PER_ELEMENT;return p_dst.set(p_src,p_ptr/bytes)},parseString:function(p_ptr){return UTF8ToString(p_ptr)},parseStringArray:function(p_ptr,p_size){const strings=[];const ptrs=GodotRuntime.heapSub(HEAP32,p_ptr,p_size);ptrs.forEach(function(ptr){strings.push(GodotRuntime.parseString(ptr))});return strings},strlen:function(p_str){return lengthBytesUTF8(p_str)},allocString:function(p_str){const length=GodotRuntime.strlen(p_str)+1;const c_str=GodotRuntime.malloc(length);stringToUTF8(p_str,c_str,length);return c_str},allocStringArray:function(p_strings){const size=p_strings.length;const c_ptr=GodotRuntime.malloc(size*4);for(let i=0;i<size;i++){HEAP32[(c_ptr>>2)+i]=GodotRuntime.allocString(p_strings[i])}return c_ptr},freeStringArray:function(p_ptr,p_len){for(let i=0;i<p_len;i++){GodotRuntime.free(HEAP32[(p_ptr>>2)+i])}GodotRuntime.free(p_ptr)},stringToHeap:function(p_str,p_ptr,p_len){return stringToUTF8Array(p_str,HEAP8,p_ptr,p_len)}};var GodotConfig={canvas:null,locale:"en",canvas_resize_policy:2,virtual_keyboard:false,persistent_drops:false,on_execute:null,on_exit:null,init_config:function(p_opts){GodotConfig.canvas_resize_policy=p_opts["canvasResizePolicy"];GodotConfig.canvas=p_opts["canvas"];GodotConfig.locale=p_opts["locale"]||GodotConfig.locale;GodotConfig.virtual_keyboard=p_opts["virtualKeyboard"];GodotConfig.persistent_drops=!!p_opts["persistentDrops"];GodotConfig.on_execute=p_opts["onExecute"];GodotConfig.on_exit=p_opts["onExit"];if(p_opts["focusCanvas"]){GodotConfig.canvas.focus()}},locate_file:function(file){return Module["locateFile"](file)},clear:function(){GodotConfig.canvas=null;GodotConfig.locale="en";GodotConfig.canvas_resize_policy=2;GodotConfig.virtual_keyboard=false;GodotConfig.persistent_drops=false;GodotConfig.on_execute=null;GodotConfig.on_exit=null}};var GodotFS={ENOENT:44,_idbfs:false,_syncing:false,_mount_points:[],is_persistent:function(){return GodotFS._idbfs?1:0},init:function(persistentPaths){GodotFS._idbfs=false;if(!Array.isArray(persistentPaths)){return Promise.reject(new Error("Persistent paths must be an array"))}if(!persistentPaths.length){return Promise.resolve()}GodotFS._mount_points=persistentPaths.slice();function createRecursive(dir){try{FS.stat(dir)}catch(e){if(e.errno!==GodotFS.ENOENT){GodotRuntime.error(e)}FS.mkdirTree(dir)}}GodotFS._mount_points.forEach(function(path){createRecursive(path);FS.mount(IDBFS,{},path)});return new Promise(function(resolve,reject){FS.syncfs(true,function(err){if(err){GodotFS._mount_points=[];GodotFS._idbfs=false;GodotRuntime.print(`IndexedDB not available: ${err.message}`)}else{GodotFS._idbfs=true}resolve(err)})})},deinit:function(){GodotFS._mount_points.forEach(function(path){try{FS.unmount(path)}catch(e){GodotRuntime.print("Already unmounted",e)}if(GodotFS._idbfs&&IDBFS.dbs[path]){IDBFS.dbs[path].close();delete IDBFS.dbs[path]}});GodotFS._mount_points=[];GodotFS._idbfs=false;GodotFS._syncing=false},sync:function(){if(GodotFS._syncing){GodotRuntime.error("Already syncing!");return Promise.resolve()}GodotFS._syncing=true;return new Promise(function(resolve,reject){FS.syncfs(false,function(error){if(error){GodotRuntime.error(`Failed to save IDB file system: ${error.message}`)}GodotFS._syncing=false;resolve(error)})})},copy_to_fs:function(path,buffer){const idx=path.lastIndexOf("/");let dir="/";if(idx>0){dir=path.slice(0,idx)}try{FS.stat(dir)}catch(e){if(e.errno!==GodotFS.ENOENT){GodotRuntime.error(e)}FS.mkdirTree(dir)}FS.writeFile(path,new Uint8Array(buffer))}};var GodotOS={request_quit:function(){},_async_cbs:[],_fs_sync_promise:null,atexit:function(p_promise_cb){GodotOS._async_cbs.push(p_promise_cb)},cleanup:function(exit_code){const cb=GodotConfig.on_exit;GodotFS.deinit();GodotConfig.clear();if(cb){cb(exit_code)}},finish_async:function(callback){GodotOS._fs_sync_promise.then(function(err){const promises=[];GodotOS._async_cbs.forEach(function(cb){promises.push(new Promise(cb))});return Promise.all(promises)}).then(function(){return GodotFS.sync()}).then(function(err){setTimeout(function(){callback()},0)})}};var GodotAudio={MAX_VOLUME_CHANNELS:8,GodotChannel:{CHANNEL_L:0,CHANNEL_R:1,CHANNEL_C:3,CHANNEL_LFE:4,CHANNEL_RL:5,CHANNEL_RR:6,CHANNEL_SL:7,CHANNEL_SR:8},WebChannel:{CHANNEL_L:0,CHANNEL_R:1,CHANNEL_SL:2,CHANNEL_SR:3,CHANNEL_C:4,CHANNEL_LFE:5},samples:null,Sample:class Sample{static getSample(id){if(!GodotAudio.samples.has(id)){throw new ReferenceError(`Could not find sample "${id}"`)}return GodotAudio.samples.get(id)}static getSampleOrNull(id){return GodotAudio.samples.get(id)??null}static create(params,options={}){const sample=new GodotAudio.Sample(params,options);GodotAudio.samples.set(params.id,sample);return sample}static delete(id){GodotAudio.samples.delete(id)}constructor(params,options={}){this.id=params.id;this._audioBuffer=null;this.numberOfChannels=options.numberOfChannels??2;this.sampleRate=options.sampleRate??44100;this.loopMode=options.loopMode??"disabled";this.loopBegin=options.loopBegin??0;this.loopEnd=options.loopEnd??0;this.setAudioBuffer(params.audioBuffer)}getAudioBuffer(){return this._duplicateAudioBuffer()}setAudioBuffer(val){this._audioBuffer=val}clear(){this.setAudioBuffer(null);GodotAudio.Sample.delete(this.id)}_duplicateAudioBuffer(){if(this._audioBuffer==null){throw new Error("couldn't duplicate a null audioBuffer")}const channels=new Array(this._audioBuffer.numberOfChannels);for(let i=0;i<this._audioBuffer.numberOfChannels;i++){const channel=new Float32Array(this._audioBuffer.getChannelData(i));channels[i]=channel}const buffer=GodotAudio.ctx.createBuffer(this.numberOfChannels,this._audioBuffer.length,this._audioBuffer.sampleRate);for(let i=0;i<channels.length;i++){buffer.copyToChannel(channels[i],i,0)}return buffer}},SampleNodeBus:class SampleNodeBus{static create(bus){return new GodotAudio.SampleNodeBus(bus)}constructor(bus){const NUMBER_OF_WEB_CHANNELS=6;this._bus=bus;this._channelSplitter=GodotAudio.ctx.createChannelSplitter(NUMBER_OF_WEB_CHANNELS);this._l=GodotAudio.ctx.createGain();this._r=GodotAudio.ctx.createGain();this._sl=GodotAudio.ctx.createGain();this._sr=GodotAudio.ctx.createGain();this._c=GodotAudio.ctx.createGain();this._lfe=GodotAudio.ctx.createGain();this._channelMerger=GodotAudio.ctx.createChannelMerger(NUMBER_OF_WEB_CHANNELS);this._channelSplitter.connect(this._l,GodotAudio.WebChannel.CHANNEL_L).connect(this._channelMerger,GodotAudio.WebChannel.CHANNEL_L,GodotAudio.WebChannel.CHANNEL_L);this._channelSplitter.connect(this._r,GodotAudio.WebChannel.CHANNEL_R).connect(this._channelMerger,GodotAudio.WebChannel.CHANNEL_L,GodotAudio.WebChannel.CHANNEL_R);this._channelSplitter.connect(this._sl,GodotAudio.WebChannel.CHANNEL_SL).connect(this._channelMerger,GodotAudio.WebChannel.CHANNEL_L,GodotAudio.WebChannel.CHANNEL_SL);this._channelSplitter.connect(this._sr,GodotAudio.WebChannel.CHANNEL_SR).connect(this._channelMerger,GodotAudio.WebChannel.CHANNEL_L,GodotAudio.WebChannel.CHANNEL_SR);this._channelSplitter.connect(this._c,GodotAudio.WebChannel.CHANNEL_C).connect(this._channelMerger,GodotAudio.WebChannel.CHANNEL_L,GodotAudio.WebChannel.CHANNEL_C);this._channelSplitter.connect(this._lfe,GodotAudio.WebChannel.CHANNEL_L).connect(this._channelMerger,GodotAudio.WebChannel.CHANNEL_L,GodotAudio.WebChannel.CHANNEL_LFE);this._channelMerger.connect(this._bus.getInputNode())}getInputNode(){return this._channelSplitter}getOutputNode(){return this._channelMerger}setVolume(volume){if(volume.length!==GodotAudio.MAX_VOLUME_CHANNELS){throw new Error(`Volume length isn't "${GodotAudio.MAX_VOLUME_CHANNELS}", is ${volume.length} instead`)}this._l.gain.value=volume[GodotAudio.GodotChannel.CHANNEL_L]??0;this._r.gain.value=volume[GodotAudio.GodotChannel.CHANNEL_R]??0;this._sl.gain.value=volume[GodotAudio.GodotChannel.CHANNEL_SL]??0;this._sr.gain.value=volume[GodotAudio.GodotChannel.CHANNEL_SR]??0;this._c.gain.value=volume[GodotAudio.GodotChannel.CHANNEL_C]??0;this._lfe.gain.value=volume[GodotAudio.GodotChannel.CHANNEL_LFE]??0}clear(){this._bus=null;this._channelSplitter.disconnect();this._channelSplitter=null;this._l.disconnect();this._l=null;this._r.disconnect();this._r=null;this._sl.disconnect();this._sl=null;this._sr.disconnect();this._sr=null;this._c.disconnect();this._c=null;this._lfe.disconnect();this._lfe=null;this._channelMerger.disconnect();this._channelMerger=null}},sampleNodes:null,SampleNode:class SampleNode{static getSampleNode(id){if(!GodotAudio.sampleNodes.has(id)){throw new ReferenceError(`Could not find sample node "${id}"`)}return GodotAudio.sampleNodes.get(id)}static getSampleNodeOrNull(id){return GodotAudio.sampleNodes.get(id)??null}static stopSampleNode(id){const sampleNode=GodotAudio.SampleNode.getSampleNodeOrNull(id);if(sampleNode==null){return}sampleNode.stop()}static pauseSampleNode(id,enable){const sampleNode=GodotAudio.SampleNode.getSampleNodeOrNull(id);if(sampleNode==null){return}sampleNode.pause(enable)}static create(params,options={}){const sampleNode=new GodotAudio.SampleNode(params,options);GodotAudio.sampleNodes.set(params.id,sampleNode);return sampleNode}static delete(id){GodotAudio.sampleNodes.delete(id)}constructor(params,options={}){this.id=params.id;this.streamObjectId=params.streamObjectId;this.offset=options.offset??0;this._playbackPosition=options.offset;this.startTime=options.startTime??0;this.isPaused=false;this.isStarted=false;this.isCanceled=false;this.pauseTime=0;this._playbackRate=44100;this.loopMode=options.loopMode??this.getSample().loopMode??"disabled";this._pitchScale=options.pitchScale??1;this._sourceStartTime=0;this._sampleNodeBuses=new Map;this._source=GodotAudio.ctx.createBufferSource();this._onended=null;this._positionWorklet=null;this.setPlaybackRate(options.playbackRate??44100);this._source.buffer=this.getSample().getAudioBuffer();this._addEndedListener();const bus=GodotAudio.Bus.getBus(params.busIndex);const sampleNodeBus=this.getSampleNodeBus(bus);sampleNodeBus.setVolume(options.volume);this.connectPositionWorklet(options.start).catch(err=>{const newErr=new Error("Failed to create PositionWorklet.");newErr.cause=err;GodotRuntime.error(newErr)})}getPlaybackRate(){return this._playbackRate}getPlaybackPosition(){return this._playbackPosition}setPlaybackRate(val){this._playbackRate=val;this._syncPlaybackRate()}getPitchScale(){return this._pitchScale}setPitchScale(val){this._pitchScale=val;this._syncPlaybackRate()}getSample(){return GodotAudio.Sample.getSample(this.streamObjectId)}getOutputNode(){return this._source}start(){if(this.isStarted){return}this._resetSourceStartTime();this._source.start(this.startTime,this.offset);this.isStarted=true}stop(){this.clear()}restart(){this.isPaused=false;this.pauseTime=0;this._resetSourceStartTime();this._restart()}pause(enable=true){if(enable){this._pause();return}this._unpause()}connect(node){return this.getOutputNode().connect(node)}setVolumes(buses,volumes){for(let busIdx=0;busIdx<buses.length;busIdx++){const sampleNodeBus=this.getSampleNodeBus(buses[busIdx]);sampleNodeBus.setVolume(volumes.slice(busIdx*GodotAudio.MAX_VOLUME_CHANNELS,busIdx*GodotAudio.MAX_VOLUME_CHANNELS+GodotAudio.MAX_VOLUME_CHANNELS))}}getSampleNodeBus(bus){if(!this._sampleNodeBuses.has(bus)){const sampleNodeBus=GodotAudio.SampleNodeBus.create(bus);this._sampleNodeBuses.set(bus,sampleNodeBus);this._source.connect(sampleNodeBus.getInputNode())}return this._sampleNodeBuses.get(bus)}async connectPositionWorklet(start){await GodotAudio.audioPositionWorkletPromise;if(this.isCanceled){return}this._source.connect(this.getPositionWorklet());if(start){this.start()}}getPositionWorklet(){if(this._positionWorklet!=null){return this._positionWorklet}this._positionWorklet=new AudioWorkletNode(GodotAudio.ctx,"godot-position-reporting-processor");this._positionWorklet.port.onmessage=event=>{switch(event.data["type"]){case"position":this._playbackPosition=parseInt(event.data.data,10)/this.getSample().sampleRate+this.offset;break;default:}};return this._positionWorklet}clear(){this.isCanceled=true;this.isPaused=false;this.pauseTime=0;if(this._source!=null){this._source.removeEventListener("ended",this._onended);this._onended=null;if(this.isStarted){this._source.stop()}this._source.disconnect();this._source=null}for(const sampleNodeBus of this._sampleNodeBuses.values()){sampleNodeBus.clear()}this._sampleNodeBuses.clear();if(this._positionWorklet){this._positionWorklet.disconnect();this._positionWorklet.port.onmessage=null;this._positionWorklet.port.postMessage({type:"ended"});this._positionWorklet=null}GodotAudio.SampleNode.delete(this.id)}_resetSourceStartTime(){this._sourceStartTime=GodotAudio.ctx.currentTime}_syncPlaybackRate(){this._source.playbackRate.value=this.getPlaybackRate()*this.getPitchScale()}_restart(){if(this._source!=null){this._source.disconnect()}this._source=GodotAudio.ctx.createBufferSource();this._source.buffer=this.getSample().getAudioBuffer();for(const sampleNodeBus of this._sampleNodeBuses.values()){this.connect(sampleNodeBus.getInputNode())}this._addEndedListener();const pauseTime=this.isPaused?this.pauseTime:0;if(this._positionWorklet!=null){this._positionWorklet.port.postMessage({type:"clear"});this._source.connect(this._positionWorklet)}this._source.start(this.startTime,this.offset+pauseTime);this.isStarted=true}_pause(){if(!this.isStarted){return}this.isPaused=true;this.pauseTime=(GodotAudio.ctx.currentTime-this._sourceStartTime)/this.getPlaybackRate();this._source.stop()}_unpause(){this._restart();this.isPaused=false;this.pauseTime=0}_addEndedListener(){if(this._onended!=null){this._source.removeEventListener("ended",this._onended)}const self=this;this._onended=_=>{if(self.isPaused){return}switch(self.getSample().loopMode){case"disabled":{const id=this.id;self.stop();if(GodotAudio.sampleFinishedCallback!=null){const idCharPtr=GodotRuntime.allocString(id);GodotAudio.sampleFinishedCallback(idCharPtr);GodotRuntime.free(idCharPtr)}}break;case"forward":case"backward":self.restart();break;default:}};this._source.addEventListener("ended",this._onended)}},buses:null,busSolo:null,Bus:class Bus{static getCount(){return GodotAudio.buses.length}static setCount(val){const buses=GodotAudio.buses;if(val===buses.length){return}if(val<buses.length){const deletedBuses=buses.slice(val);for(let i=0;i<deletedBuses.length;i++){const deletedBus=deletedBuses[i];deletedBus.clear()}GodotAudio.buses=buses.slice(0,val);return}for(let i=GodotAudio.buses.length;i<val;i++){GodotAudio.Bus.create()}}static getBus(index){if(index<0||index>=GodotAudio.buses.length){throw new ReferenceError(`invalid bus index "${index}"`)}return GodotAudio.buses[index]}static getBusOrNull(index){if(index<0||index>=GodotAudio.buses.length){return null}return GodotAudio.buses[index]}static move(fromIndex,toIndex){const movedBus=GodotAudio.Bus.getBusOrNull(fromIndex);if(movedBus==null){return}const buses=GodotAudio.buses.filter((_,i)=>i!==fromIndex);buses.splice(toIndex-1,0,movedBus);GodotAudio.buses=buses}static addAt(index){const newBus=GodotAudio.Bus.create();if(index!==newBus.getId()){GodotAudio.Bus.move(newBus.getId(),index)}}static create(){const newBus=new GodotAudio.Bus;const isFirstBus=GodotAudio.buses.length===0;GodotAudio.buses.push(newBus);if(isFirstBus){newBus.setSend(null)}else{newBus.setSend(GodotAudio.Bus.getBus(0))}return newBus}constructor(){this._sampleNodes=new Set;this.isSolo=false;this._send=null;this._gainNode=GodotAudio.ctx.createGain();this._soloNode=GodotAudio.ctx.createGain();this._muteNode=GodotAudio.ctx.createGain();this._gainNode.connect(this._soloNode).connect(this._muteNode)}getId(){return GodotAudio.buses.indexOf(this)}getVolumeDb(){return GodotAudio.linear_to_db(this._gainNode.gain.value)}setVolumeDb(val){const linear=GodotAudio.db_to_linear(val);if(isFinite(linear)){this._gainNode.gain.value=linear}}getSend(){return this._send}setSend(val){this._send=val;if(val==null){if(this.getId()==0){this.getOutputNode().connect(GodotAudio.ctx.destination);return}throw new Error(`Cannot send to "${val}" without the bus being at index 0 (current index: ${this.getId()})`)}this.connect(val)}getInputNode(){return this._gainNode}getOutputNode(){return this._muteNode}mute(enable){this._muteNode.gain.value=enable?0:1}solo(enable){if(this.isSolo===enable){return}if(enable){if(GodotAudio.busSolo!=null&&GodotAudio.busSolo!==this){GodotAudio.busSolo._disableSolo()}this._enableSolo();return}this._disableSolo()}addSampleNode(sampleNode){this._sampleNodes.add(sampleNode);sampleNode.getOutputNode().connect(this.getInputNode())}removeSampleNode(sampleNode){this._sampleNodes.delete(sampleNode);sampleNode.getOutputNode().disconnect()}connect(bus){if(bus==null){throw new Error("cannot connect to null bus")}this.getOutputNode().disconnect();this.getOutputNode().connect(bus.getInputNode());return bus}clear(){GodotAudio.buses=GodotAudio.buses.filter(v=>v!==this)}_syncSampleNodes(){const sampleNodes=Array.from(this._sampleNodes);for(let i=0;i<sampleNodes.length;i++){const sampleNode=sampleNodes[i];sampleNode.getOutputNode().disconnect();sampleNode.getOutputNode().connect(this.getInputNode())}}_enableSolo(){this.isSolo=true;GodotAudio.busSolo=this;this._soloNode.gain.value=1;const otherBuses=GodotAudio.buses.filter(otherBus=>otherBus!==this);for(let i=0;i<otherBuses.length;i++){const otherBus=otherBuses[i];otherBus._soloNode.gain.value=0}}_disableSolo(){this.isSolo=false;GodotAudio.busSolo=null;this._soloNode.gain.value=1;const otherBuses=GodotAudio.buses.filter(otherBus=>otherBus!==this);for(let i=0;i<otherBuses.length;i++){const otherBus=otherBuses[i];otherBus._soloNode.gain.value=1}}},sampleFinishedCallback:null,ctx:null,input:null,driver:null,interval:0,audioPositionWorkletPromise:null,linear_to_db:function(linear){return Math.log(linear)*8.685889638065037},db_to_linear:function(db){return Math.exp(db*.11512925464970228)},init:function(mix_rate,latency,onstatechange,onlatencyupdate){GodotAudio.samples=new Map;GodotAudio.sampleNodes=new Map;GodotAudio.buses=[];GodotAudio.busSolo=null;const opts={};if(mix_rate){GodotAudio.sampleRate=mix_rate;opts["sampleRate"]=mix_rate}const ctx=new(window.AudioContext||window.webkitAudioContext)(opts);GodotAudio.ctx=ctx;ctx.onstatechange=function(){let state=0;switch(ctx.state){case"suspended":state=0;break;case"running":state=1;break;case"closed":state=2;break;default:}onstatechange(state)};ctx.onstatechange();GodotAudio.interval=setInterval(function(){let computed_latency=0;if(ctx.baseLatency){computed_latency+=GodotAudio.ctx.baseLatency}if(ctx.outputLatency){computed_latency+=GodotAudio.ctx.outputLatency}onlatencyupdate(computed_latency)},1e3);GodotOS.atexit(GodotAudio.close_async);const path=GodotConfig.locate_file("godot.audio.position.worklet.js");GodotAudio.audioPositionWorkletPromise=ctx.audioWorklet.addModule(path);return ctx.destination.channelCount},create_input:function(callback){if(GodotAudio.input){return 0}function gotMediaInput(stream){try{GodotAudio.input=GodotAudio.ctx.createMediaStreamSource(stream);callback(GodotAudio.input)}catch(e){GodotRuntime.error("Failed creating input.",e)}}if(navigator.mediaDevices&&navigator.mediaDevices.getUserMedia){navigator.mediaDevices.getUserMedia({audio:true}).then(gotMediaInput,function(e){GodotRuntime.error("Error getting user media.",e)})}else{if(!navigator.getUserMedia){navigator.getUserMedia=navigator.webkitGetUserMedia||navigator.mozGetUserMedia}if(!navigator.getUserMedia){GodotRuntime.error("getUserMedia not available.");return 1}navigator.getUserMedia({audio:true},gotMediaInput,function(e){GodotRuntime.print(e)})}return 0},close_async:function(resolve,reject){const ctx=GodotAudio.ctx;GodotAudio.ctx=null;if(!ctx){resolve();return}if(GodotAudio.interval){clearInterval(GodotAudio.interval);GodotAudio.interval=0}if(GodotAudio.input){GodotAudio.input.disconnect();GodotAudio.input=null}let closed=Promise.resolve();if(GodotAudio.driver){closed=GodotAudio.driver.close()}closed.then(function(){return ctx.close()}).then(function(){ctx.onstatechange=null;resolve()}).catch(function(e){ctx.onstatechange=null;GodotRuntime.error("Error closing AudioContext",e);resolve()})},start_sample:function(playbackObjectId,streamObjectId,busIndex,startOptions){GodotAudio.SampleNode.stopSampleNode(playbackObjectId);GodotAudio.SampleNode.create({busIndex:busIndex,id:playbackObjectId,streamObjectId:streamObjectId},startOptions)},stop_sample:function(playbackObjectId){GodotAudio.SampleNode.stopSampleNode(playbackObjectId)},sample_set_pause:function(playbackObjectId,pause){GodotAudio.SampleNode.pauseSampleNode(playbackObjectId,pause)},update_sample_pitch_scale:function(playbackObjectId,pitchScale){const sampleNode=GodotAudio.SampleNode.getSampleNodeOrNull(playbackObjectId);if(sampleNode==null){return}sampleNode.setPitchScale(pitchScale)},sample_set_volumes_linear:function(playbackObjectId,busIndexes,volumes){const sampleNode=GodotAudio.SampleNode.getSampleNodeOrNull(playbackObjectId);if(sampleNode==null){return}const buses=busIndexes.map(busIndex=>GodotAudio.Bus.getBus(busIndex));sampleNode.setVolumes(buses,volumes)},set_sample_bus_count:function(count){GodotAudio.Bus.setCount(count)},remove_sample_bus:function(index){const bus=GodotAudio.Bus.getBusOrNull(index);if(bus==null){return}bus.clear()},add_sample_bus:function(atPos){GodotAudio.Bus.addAt(atPos)},move_sample_bus:function(busIndex,toPos){GodotAudio.Bus.move(busIndex,toPos)},set_sample_bus_send:function(busIndex,sendIndex){const bus=GodotAudio.Bus.getBusOrNull(busIndex);if(bus==null){return}let targetBus=GodotAudio.Bus.getBusOrNull(sendIndex);if(targetBus==null){targetBus=GodotAudio.Bus.getBus(0)}bus.setSend(targetBus)},set_sample_bus_volume_db:function(busIndex,volumeDb){const bus=GodotAudio.Bus.getBusOrNull(busIndex);if(bus==null){return}bus.setVolumeDb(volumeDb)},set_sample_bus_solo:function(busIndex,enable){const bus=GodotAudio.Bus.getBusOrNull(busIndex);if(bus==null){return}bus.solo(enable)},set_sample_bus_mute:function(busIndex,enable){const bus=GodotAudio.Bus.getBusOrNull(busIndex);if(bus==null){return}bus.mute(enable)}};function _godot_audio_get_sample_playback_position(playbackObjectIdStrPtr){const playbackObjectId=GodotRuntime.parseString(playbackObjectIdStrPtr);const sampleNode=GodotAudio.SampleNode.getSampleNodeOrNull(playbackObjectId);if(sampleNode==null){return 0}return sampleNode.getPlaybackPosition()}function _godot_audio_has_script_processor(){return GodotAudio.ctx&&GodotAudio.ctx.createScriptProcessor?1:0}function _godot_audio_has_worklet(){return GodotAudio.ctx&&GodotAudio.ctx.audioWorklet?1:0}function _godot_audio_init(p_mix_rate,p_latency,p_state_change,p_latency_update){const statechange=GodotRuntime.get_func(p_state_change);const latencyupdate=GodotRuntime.get_func(p_latency_update);const mix_rate=GodotRuntime.getHeapValue(p_mix_rate,"i32");const channels=GodotAudio.init(mix_rate,p_latency,statechange,latencyupdate);GodotRuntime.setHeapValue(p_mix_rate,GodotAudio.ctx.sampleRate,"i32");return channels}function _godot_audio_input_start(){return GodotAudio.create_input(function(input){input.connect(GodotAudio.driver.get_node())})}function _godot_audio_input_stop(){if(GodotAudio.input){const tracks=GodotAudio.input["mediaStream"]["getTracks"]();for(let i=0;i<tracks.length;i++){tracks[i]["stop"]()}GodotAudio.input.disconnect();GodotAudio.input=null}}function _godot_audio_is_available(){if(!(window.AudioContext||window.webkitAudioContext)){return 0}return 1}function _godot_audio_resume(){if(GodotAudio.ctx&&GodotAudio.ctx.state!=="running"){GodotAudio.ctx.resume()}}function _godot_audio_sample_bus_add(atPos){GodotAudio.add_sample_bus(atPos)}function _godot_audio_sample_bus_move(fromPos,toPos){GodotAudio.move_sample_bus(fromPos,toPos)}function _godot_audio_sample_bus_remove(index){GodotAudio.remove_sample_bus(index)}function _godot_audio_sample_bus_set_count(count){GodotAudio.set_sample_bus_count(count)}function _godot_audio_sample_bus_set_mute(bus,enable){GodotAudio.set_sample_bus_mute(bus,Boolean(enable))}function _godot_audio_sample_bus_set_send(bus,sendIndex){GodotAudio.set_sample_bus_send(bus,sendIndex)}function _godot_audio_sample_bus_set_solo(bus,enable){GodotAudio.set_sample_bus_solo(bus,Boolean(enable))}function _godot_audio_sample_bus_set_volume_db(bus,volumeDb){GodotAudio.set_sample_bus_volume_db(bus,volumeDb)}function _godot_audio_sample_is_active(playbackObjectIdStrPtr){const playbackObjectId=GodotRuntime.parseString(playbackObjectIdStrPtr);return Number(GodotAudio.sampleNodes.has(playbackObjectId))}function _godot_audio_sample_register_stream(streamObjectIdStrPtr,framesPtr,framesTotal,loopModeStrPtr,loopBegin,loopEnd){const BYTES_PER_FLOAT32=4;const streamObjectId=GodotRuntime.parseString(streamObjectIdStrPtr);const loopMode=GodotRuntime.parseString(loopModeStrPtr);const numberOfChannels=2;const sampleRate=GodotAudio.ctx.sampleRate;const subLeft=GodotRuntime.heapSub(HEAPF32,framesPtr,framesTotal);const subRight=GodotRuntime.heapSub(HEAPF32,framesPtr+framesTotal*BYTES_PER_FLOAT32,framesTotal);const audioBuffer=GodotAudio.ctx.createBuffer(numberOfChannels,framesTotal,sampleRate);audioBuffer.copyToChannel(new Float32Array(subLeft),0,0);audioBuffer.copyToChannel(new Float32Array(subRight),1,0);GodotAudio.Sample.create({id:streamObjectId,audioBuffer:audioBuffer},{loopBegin:loopBegin,loopEnd:loopEnd,loopMode:loopMode,numberOfChannels:numberOfChannels,sampleRate:sampleRate})}function _godot_audio_sample_set_finished_callback(callbackPtr){GodotAudio.sampleFinishedCallback=GodotRuntime.get_func(callbackPtr)}function _godot_audio_sample_set_pause(playbackObjectIdStrPtr,pause){const playbackObjectId=GodotRuntime.parseString(playbackObjectIdStrPtr);GodotAudio.sample_set_pause(playbackObjectId,Boolean(pause))}function _godot_audio_sample_set_volumes_linear(playbackObjectIdStrPtr,busesPtr,busesSize,volumesPtr,volumesSize){const playbackObjectId=GodotRuntime.parseString(playbackObjectIdStrPtr);const buses=GodotRuntime.heapSub(HEAP32,busesPtr,busesSize);const volumes=GodotRuntime.heapSub(HEAPF32,volumesPtr,volumesSize);GodotAudio.sample_set_volumes_linear(playbackObjectId,Array.from(buses),volumes)}function _godot_audio_sample_start(playbackObjectIdStrPtr,streamObjectIdStrPtr,busIndex,offset,pitchScale,volumePtr){const playbackObjectId=GodotRuntime.parseString(playbackObjectIdStrPtr);const streamObjectId=GodotRuntime.parseString(streamObjectIdStrPtr);const volume=GodotRuntime.heapSub(HEAPF32,volumePtr,8);const startOptions={offset:offset,volume:volume,playbackRate:1,pitchScale:pitchScale,start:true};GodotAudio.start_sample(playbackObjectId,streamObjectId,busIndex,startOptions)}function _godot_audio_sample_stop(playbackObjectIdStrPtr){const playbackObjectId=GodotRuntime.parseString(playbackObjectIdStrPtr);GodotAudio.stop_sample(playbackObjectId)}function _godot_audio_sample_stream_is_registered(streamObjectIdStrPtr){const streamObjectId=GodotRuntime.parseString(streamObjectIdStrPtr);return Number(GodotAudio.Sample.getSampleOrNull(streamObjectId)!=null)}function _godot_audio_sample_unregister_stream(streamObjectIdStrPtr){const streamObjectId=GodotRuntime.parseString(streamObjectIdStrPtr);const sample=GodotAudio.Sample.getSampleOrNull(streamObjectId);if(sample!=null){sample.clear()}}function _godot_audio_sample_update_pitch_scale(playbackObjectIdStrPtr,pitchScale){const playbackObjectId=GodotRuntime.parseString(playbackObjectIdStrPtr);GodotAudio.update_sample_pitch_scale(playbackObjectId,pitchScale)}var GodotAudioScript={script:null,create:function(buffer_length,channel_count){GodotAudioScript.script=GodotAudio.ctx.createScriptProcessor(buffer_length,2,channel_count);GodotAudio.driver=GodotAudioScript;return GodotAudioScript.script.bufferSize},start:function(p_in_buf,p_in_size,p_out_buf,p_out_size,onprocess){GodotAudioScript.script.onaudioprocess=function(event){const inb=GodotRuntime.heapSub(HEAPF32,p_in_buf,p_in_size);const input=event.inputBuffer;if(GodotAudio.input){const inlen=input.getChannelData(0).length;for(let ch=0;ch<2;ch++){const data=input.getChannelData(ch);for(let s=0;s<inlen;s++){inb[s*2+ch]=data[s]}}}onprocess();const outb=GodotRuntime.heapSub(HEAPF32,p_out_buf,p_out_size);const output=event.outputBuffer;const channels=output.numberOfChannels;for(let ch=0;ch<channels;ch++){const data=output.getChannelData(ch);for(let sample=0;sample<data.length;sample++){data[sample]=outb[sample*channels+ch]}}};GodotAudioScript.script.connect(GodotAudio.ctx.destination)},get_node:function(){return GodotAudioScript.script},close:function(){return new Promise(function(resolve,reject){GodotAudioScript.script.disconnect();GodotAudioScript.script.onaudioprocess=null;GodotAudioScript.script=null;resolve()})}};function _godot_audio_script_create(buffer_length,channel_count){const buf_len=GodotRuntime.getHeapValue(buffer_length,"i32");try{const out_len=GodotAudioScript.create(buf_len,channel_count);GodotRuntime.setHeapValue(buffer_length,out_len,"i32")}catch(e){GodotRuntime.error("Error starting AudioDriverScriptProcessor",e);return 1}return 0}function _godot_audio_script_start(p_in_buf,p_in_size,p_out_buf,p_out_size,p_cb){const onprocess=GodotRuntime.get_func(p_cb);GodotAudioScript.start(p_in_buf,p_in_size,p_out_buf,p_out_size,onprocess)}var GodotAudioWorklet={promise:null,worklet:null,ring_buffer:null,create:function(channels){const path=GodotConfig.locate_file("godot.audio.worklet.js");GodotAudioWorklet.promise=GodotAudio.ctx.audioWorklet.addModule(path).then(function(){GodotAudioWorklet.worklet=new AudioWorkletNode(GodotAudio.ctx,"godot-processor",{outputChannelCount:[channels]});return Promise.resolve()});GodotAudio.driver=GodotAudioWorklet},start:function(in_buf,out_buf,state){GodotAudioWorklet.promise.then(function(){const node=GodotAudioWorklet.worklet;node.connect(GodotAudio.ctx.destination);node.port.postMessage({cmd:"start",data:[state,in_buf,out_buf]});node.port.onmessage=function(event){GodotRuntime.error(event.data)}})},start_no_threads:function(p_out_buf,p_out_size,out_callback,p_in_buf,p_in_size,in_callback){function RingBuffer(){let wpos=0;let rpos=0;let pending_samples=0;const wbuf=new Float32Array(p_out_size);function send(port){if(pending_samples===0){return}const buffer=GodotRuntime.heapSub(HEAPF32,p_out_buf,p_out_size);const size=buffer.length;const tot_sent=pending_samples;out_callback(wpos,pending_samples);if(wpos+pending_samples>=size){const high=size-wpos;wbuf.set(buffer.subarray(wpos,size));pending_samples-=high;wpos=0}if(pending_samples>0){wbuf.set(buffer.subarray(wpos,wpos+pending_samples),tot_sent-pending_samples)}port.postMessage({cmd:"chunk",data:wbuf.subarray(0,tot_sent)});wpos+=pending_samples;pending_samples=0}this.receive=function(recv_buf){const buffer=GodotRuntime.heapSub(HEAPF32,p_in_buf,p_in_size);const from=rpos;let to_write=recv_buf.length;let high=0;if(rpos+to_write>=p_in_size){high=p_in_size-rpos;buffer.set(recv_buf.subarray(0,high),rpos);to_write-=high;rpos=0}if(to_write){buffer.set(recv_buf.subarray(high,to_write),rpos)}in_callback(from,recv_buf.length);rpos+=to_write};this.consumed=function(size,port){pending_samples+=size;send(port)}}GodotAudioWorklet.ring_buffer=new RingBuffer;GodotAudioWorklet.promise.then(function(){const node=GodotAudioWorklet.worklet;const buffer=GodotRuntime.heapSlice(HEAPF32,p_out_buf,p_out_size);node.connect(GodotAudio.ctx.destination);node.port.postMessage({cmd:"start_nothreads",data:[buffer,p_in_size]});node.port.onmessage=function(event){if(!GodotAudioWorklet.worklet){return}if(event.data["cmd"]==="read"){const read=event.data["data"];GodotAudioWorklet.ring_buffer.consumed(read,GodotAudioWorklet.worklet.port)}else if(event.data["cmd"]==="input"){const buf=event.data["data"];if(buf.length>p_in_size){GodotRuntime.error("Input chunk is too big");return}GodotAudioWorklet.ring_buffer.receive(buf)}else{GodotRuntime.error(event.data)}}})},get_node:function(){return GodotAudioWorklet.worklet},close:function(){return new Promise(function(resolve,reject){if(GodotAudioWorklet.promise===null){return}const p=GodotAudioWorklet.promise;p.then(function(){GodotAudioWorklet.worklet.port.postMessage({cmd:"stop",data:null});GodotAudioWorklet.worklet.disconnect();GodotAudioWorklet.worklet.port.onmessage=null;GodotAudioWorklet.worklet=null;GodotAudioWorklet.promise=null;resolve()}).catch(function(err){GodotRuntime.error(err)})})}};function _godot_audio_worklet_create(channels){try{GodotAudioWorklet.create(channels)}catch(e){GodotRuntime.error("Error starting AudioDriverWorklet",e);return 1}return 0}function _godot_audio_worklet_start_no_threads(p_out_buf,p_out_size,p_out_callback,p_in_buf,p_in_size,p_in_callback){const out_callback=GodotRuntime.get_func(p_out_callback);const in_callback=GodotRuntime.get_func(p_in_callback);GodotAudioWorklet.start_no_threads(p_out_buf,p_out_size,out_callback,p_in_buf,p_in_size,in_callback)}function _godot_js_config_canvas_id_get(p_ptr,p_ptr_max){GodotRuntime.stringToHeap(`#${GodotConfig.canvas.id}`,p_ptr,p_ptr_max)}function _godot_js_config_locale_get(p_ptr,p_ptr_max){GodotRuntime.stringToHeap(GodotConfig.locale,p_ptr,p_ptr_max)}var GodotDisplayCursor={shape:"default",visible:true,cursors:{},set_style:function(style){GodotConfig.canvas.style.cursor=style},set_shape:function(shape){GodotDisplayCursor.shape=shape;let css=shape;if(shape in GodotDisplayCursor.cursors){const c=GodotDisplayCursor.cursors[shape];css=`url("${c.url}") ${c.x} ${c.y}, default`}if(GodotDisplayCursor.visible){GodotDisplayCursor.set_style(css)}},clear:function(){GodotDisplayCursor.set_style("");GodotDisplayCursor.shape="default";GodotDisplayCursor.visible=true;Object.keys(GodotDisplayCursor.cursors).forEach(function(key){URL.revokeObjectURL(GodotDisplayCursor.cursors[key]);delete GodotDisplayCursor.cursors[key]})},lockPointer:function(){const canvas=GodotConfig.canvas;if(canvas.requestPointerLock){canvas.requestPointerLock()}},releasePointer:function(){if(document.exitPointerLock){document.exitPointerLock()}},isPointerLocked:function(){return document.pointerLockElement===GodotConfig.canvas}};var GodotEventListeners={handlers:[],has:function(target,event,method,capture){return GodotEventListeners.handlers.findIndex(function(e){return e.target===target&&e.event===event&&e.method===method&&e.capture===capture})!==-1},add:function(target,event,method,capture){if(GodotEventListeners.has(target,event,method,capture)){return}function Handler(p_target,p_event,p_method,p_capture){this.target=p_target;this.event=p_event;this.method=p_method;this.capture=p_capture}GodotEventListeners.handlers.push(new Handler(target,event,method,capture));target.addEventListener(event,method,capture)},clear:function(){GodotEventListeners.handlers.forEach(function(h){h.target.removeEventListener(h.event,h.method,h.capture)});GodotEventListeners.handlers.length=0}};var _emscripten_webgl_do_get_current_context=()=>GL.currentContext?GL.currentContext.handle:0;var _emscripten_webgl_get_current_context=_emscripten_webgl_do_get_current_context;var GodotDisplayScreen={desired_size:[0,0],hidpi:true,getPixelRatio:function(){return GodotDisplayScreen.hidpi?window.devicePixelRatio||1:1},isFullscreen:function(){const elem=document.fullscreenElement||document.mozFullscreenElement||document.webkitFullscreenElement||document.msFullscreenElement;if(elem){return elem===GodotConfig.canvas}return document.fullscreen||document.mozFullScreen||document.webkitIsFullscreen},hasFullscreen:function(){return document.fullscreenEnabled||document.mozFullScreenEnabled||document.webkitFullscreenEnabled},requestFullscreen:function(){if(!GodotDisplayScreen.hasFullscreen()){return 1}const canvas=GodotConfig.canvas;try{const promise=(canvas.requestFullscreen||canvas.msRequestFullscreen||canvas.mozRequestFullScreen||canvas.mozRequestFullscreen||canvas.webkitRequestFullscreen).call(canvas);if(promise){promise.catch(function(){})}}catch(e){return 1}return 0},exitFullscreen:function(){if(!GodotDisplayScreen.isFullscreen()){return 0}try{const promise=document.exitFullscreen();if(promise){promise.catch(function(){})}}catch(e){return 1}return 0},_updateGL:function(){const gl_context_handle=_emscripten_webgl_get_current_context();const gl=GL.getContext(gl_context_handle);if(gl){GL.resizeOffscreenFramebuffer(gl)}},updateSize:function(){const isFullscreen=GodotDisplayScreen.isFullscreen();const wantsFullWindow=GodotConfig.canvas_resize_policy===2;const noResize=GodotConfig.canvas_resize_policy===0;const dWidth=GodotDisplayScreen.desired_size[0];const dHeight=GodotDisplayScreen.desired_size[1];const canvas=GodotConfig.canvas;let width=dWidth;let height=dHeight;if(noResize){if(canvas.width!==width||canvas.height!==height){GodotDisplayScreen.desired_size=[canvas.width,canvas.height];GodotDisplayScreen._updateGL();return 1}return 0}const scale=GodotDisplayScreen.getPixelRatio();if(isFullscreen||wantsFullWindow){width=window.innerWidth*scale;height=window.innerHeight*scale}const csw=`${width/scale}px`;const csh=`${height/scale}px`;if(canvas.style.width!==csw||canvas.style.height!==csh||canvas.width!==width||canvas.height!==height){canvas.width=width;canvas.height=height;canvas.style.width=csw;canvas.style.height=csh;GodotDisplayScreen._updateGL();return 1}return 0}};var GodotDisplayVK={textinput:null,textarea:null,available:function(){return GodotConfig.virtual_keyboard&&"ontouchstart"in window},init:function(input_cb){function create(what){const elem=document.createElement(what);elem.style.display="none";elem.style.position="absolute";elem.style.zIndex="-1";elem.style.background="transparent";elem.style.padding="0px";elem.style.margin="0px";elem.style.overflow="hidden";elem.style.width="0px";elem.style.height="0px";elem.style.border="0px";elem.style.outline="none";elem.readonly=true;elem.disabled=true;GodotEventListeners.add(elem,"input",function(evt){const c_str=GodotRuntime.allocString(elem.value);input_cb(c_str,elem.selectionEnd);GodotRuntime.free(c_str)},false);GodotEventListeners.add(elem,"blur",function(evt){elem.style.display="none";elem.readonly=true;elem.disabled=true},false);GodotConfig.canvas.insertAdjacentElement("beforebegin",elem);return elem}GodotDisplayVK.textinput=create("input");GodotDisplayVK.textarea=create("textarea");GodotDisplayVK.updateSize()},show:function(text,type,start,end){if(!GodotDisplayVK.textinput||!GodotDisplayVK.textarea){return}if(GodotDisplayVK.textinput.style.display!==""||GodotDisplayVK.textarea.style.display!==""){GodotDisplayVK.hide()}GodotDisplayVK.updateSize();let elem=GodotDisplayVK.textinput;switch(type){case 0:elem.type="text";elem.inputmode="";break;case 1:elem=GodotDisplayVK.textarea;break;case 2:elem.type="text";elem.inputmode="numeric";break;case 3:elem.type="text";elem.inputmode="decimal";break;case 4:elem.type="tel";elem.inputmode="";break;case 5:elem.type="email";elem.inputmode="";break;case 6:elem.type="password";elem.inputmode="";break;case 7:elem.type="url";elem.inputmode="";break;default:elem.type="text";elem.inputmode="";break}elem.readonly=false;elem.disabled=false;elem.value=text;elem.style.display="block";elem.focus();elem.setSelectionRange(start,end)},hide:function(){if(!GodotDisplayVK.textinput||!GodotDisplayVK.textarea){return}[GodotDisplayVK.textinput,GodotDisplayVK.textarea].forEach(function(elem){elem.blur();elem.style.display="none";elem.value=""})},updateSize:function(){if(!GodotDisplayVK.textinput||!GodotDisplayVK.textarea){return}const rect=GodotConfig.canvas.getBoundingClientRect();function update(elem){elem.style.left=`${rect.left}px`;elem.style.top=`${rect.top}px`;elem.style.width=`${rect.width}px`;elem.style.height=`${rect.height}px`}update(GodotDisplayVK.textinput);update(GodotDisplayVK.textarea)},clear:function(){if(GodotDisplayVK.textinput){GodotDisplayVK.textinput.remove();GodotDisplayVK.textinput=null}if(GodotDisplayVK.textarea){GodotDisplayVK.textarea.remove();GodotDisplayVK.textarea=null}}};var GodotDisplay={window_icon:"",getDPI:function(){const dpi=Math.round(window.devicePixelRatio*96);return dpi>=96?dpi:96}};function _godot_js_display_alert(p_text){window.alert(GodotRuntime.parseString(p_text))}function _godot_js_display_canvas_focus(){GodotConfig.canvas.focus()}function _godot_js_display_canvas_is_focused(){return document.activeElement===GodotConfig.canvas}function _godot_js_display_clipboard_get(callback){const func=GodotRuntime.get_func(callback);try{navigator.clipboard.readText().then(function(result){const ptr=GodotRuntime.allocString(result);func(ptr);GodotRuntime.free(ptr)}).catch(function(e){})}catch(e){}}function _godot_js_display_clipboard_set(p_text){const text=GodotRuntime.parseString(p_text);if(!navigator.clipboard||!navigator.clipboard.writeText){return 1}navigator.clipboard.writeText(text).catch(function(e){GodotRuntime.error("Setting OS clipboard is only possible from an input callback for the Web platform. Exception:",e)});return 0}function _godot_js_display_cursor_is_hidden(){return!GodotDisplayCursor.visible}function _godot_js_display_cursor_is_locked(){return GodotDisplayCursor.isPointerLocked()?1:0}function _godot_js_display_cursor_lock_set(p_lock){if(p_lock){GodotDisplayCursor.lockPointer()}else{GodotDisplayCursor.releasePointer()}}function _godot_js_display_cursor_set_custom_shape(p_shape,p_ptr,p_len,p_hotspot_x,p_hotspot_y){const shape=GodotRuntime.parseString(p_shape);const old_shape=GodotDisplayCursor.cursors[shape];if(p_len>0){const png=new Blob([GodotRuntime.heapSlice(HEAPU8,p_ptr,p_len)],{type:"image/png"});const url=URL.createObjectURL(png);GodotDisplayCursor.cursors[shape]={url:url,x:p_hotspot_x,y:p_hotspot_y}}else{delete GodotDisplayCursor.cursors[shape]}if(shape===GodotDisplayCursor.shape){GodotDisplayCursor.set_shape(GodotDisplayCursor.shape)}if(old_shape){URL.revokeObjectURL(old_shape.url)}}function _godot_js_display_cursor_set_shape(p_string){GodotDisplayCursor.set_shape(GodotRuntime.parseString(p_string))}function _godot_js_display_cursor_set_visible(p_visible){const visible=p_visible!==0;if(visible===GodotDisplayCursor.visible){return}GodotDisplayCursor.visible=visible;if(visible){GodotDisplayCursor.set_shape(GodotDisplayCursor.shape)}else{GodotDisplayCursor.set_style("none")}}function _godot_js_display_desired_size_set(width,height){GodotDisplayScreen.desired_size=[width,height];GodotDisplayScreen.updateSize()}function _godot_js_display_fullscreen_cb(callback){const canvas=GodotConfig.canvas;const func=GodotRuntime.get_func(callback);function change_cb(evt){if(evt.target===canvas){func(GodotDisplayScreen.isFullscreen())}}GodotEventListeners.add(document,"fullscreenchange",change_cb,false);GodotEventListeners.add(document,"mozfullscreenchange",change_cb,false);GodotEventListeners.add(document,"webkitfullscreenchange",change_cb,false)}function _godot_js_display_fullscreen_exit(){return GodotDisplayScreen.exitFullscreen()}function _godot_js_display_fullscreen_request(){return GodotDisplayScreen.requestFullscreen()}function _godot_js_display_has_webgl(p_version){if(p_version!==1&&p_version!==2){return false}try{return!!document.createElement("canvas").getContext(p_version===2?"webgl2":"webgl")}catch(e){}return false}function _godot_js_display_is_swap_ok_cancel(){const win=["Windows","Win64","Win32","WinCE"];const plat=navigator.platform||"";if(win.indexOf(plat)!==-1){return 1}return 0}function _godot_js_display_notification_cb(callback,p_enter,p_exit,p_in,p_out){const canvas=GodotConfig.canvas;const func=GodotRuntime.get_func(callback);const notif=[p_enter,p_exit,p_in,p_out];["mouseover","mouseleave","focus","blur"].forEach(function(evt_name,idx){GodotEventListeners.add(canvas,evt_name,function(){func(notif[idx])},true)})}function _godot_js_display_pixel_ratio_get(){return GodotDisplayScreen.getPixelRatio()}function _godot_js_display_screen_dpi_get(){return GodotDisplay.getDPI()}function _godot_js_display_screen_size_get(width,height){const scale=GodotDisplayScreen.getPixelRatio();GodotRuntime.setHeapValue(width,window.screen.width*scale,"i32");GodotRuntime.setHeapValue(height,window.screen.height*scale,"i32")}function _godot_js_display_setup_canvas(p_width,p_height,p_fullscreen,p_hidpi){const canvas=GodotConfig.canvas;GodotEventListeners.add(canvas,"contextmenu",function(ev){ev.preventDefault()},false);GodotEventListeners.add(canvas,"webglcontextlost",function(ev){alert("WebGL context lost, please reload the page");ev.preventDefault()},false);GodotDisplayScreen.hidpi=!!p_hidpi;switch(GodotConfig.canvas_resize_policy){case 0:GodotDisplayScreen.desired_size=[canvas.width,canvas.height];break;case 1:GodotDisplayScreen.desired_size=[p_width,p_height];break;default:canvas.style.position="absolute";canvas.style.top=0;canvas.style.left=0;break}GodotDisplayScreen.updateSize();if(p_fullscreen){GodotDisplayScreen.requestFullscreen()}}function _godot_js_display_size_update(){const updated=GodotDisplayScreen.updateSize();if(updated){GodotDisplayVK.updateSize()}return updated}function _godot_js_display_touchscreen_is_available(){return"ontouchstart"in window}function _godot_js_display_tts_available(){return"speechSynthesis"in window}function _godot_js_display_vk_available(){return GodotDisplayVK.available()}function _godot_js_display_vk_cb(p_input_cb){const input_cb=GodotRuntime.get_func(p_input_cb);if(GodotDisplayVK.available()){GodotDisplayVK.init(input_cb)}}function _godot_js_display_vk_hide(){GodotDisplayVK.hide()}function _godot_js_display_vk_show(p_text,p_type,p_start,p_end){const text=GodotRuntime.parseString(p_text);const start=p_start>0?p_start:0;const end=p_end>0?p_end:start;GodotDisplayVK.show(text,p_type,start,end)}function _godot_js_display_window_blur_cb(callback){const func=GodotRuntime.get_func(callback);GodotEventListeners.add(window,"blur",function(){func()},false)}function _godot_js_display_window_icon_set(p_ptr,p_len){let link=document.getElementById("-gd-engine-icon");const old_icon=GodotDisplay.window_icon;if(p_ptr){if(link===null){link=document.createElement("link");link.rel="icon";link.id="-gd-engine-icon";document.head.appendChild(link)}const png=new Blob([GodotRuntime.heapSlice(HEAPU8,p_ptr,p_len)],{type:"image/png"});GodotDisplay.window_icon=URL.createObjectURL(png);link.href=GodotDisplay.window_icon}else{if(link){link.remove()}GodotDisplay.window_icon=null}if(old_icon){URL.revokeObjectURL(old_icon)}}function _godot_js_display_window_size_get(p_width,p_height){GodotRuntime.setHeapValue(p_width,GodotConfig.canvas.width,"i32");GodotRuntime.setHeapValue(p_height,GodotConfig.canvas.height,"i32")}function _godot_js_display_window_title_set(p_data){document.title=GodotRuntime.parseString(p_data)}function _godot_js_eval(p_js,p_use_global_ctx,p_union_ptr,p_byte_arr,p_byte_arr_write,p_callback){const js_code=GodotRuntime.parseString(p_js);let eval_ret=null;try{if(p_use_global_ctx){const global_eval=eval;eval_ret=global_eval(js_code)}else{eval_ret=eval(js_code)}}catch(e){GodotRuntime.error(e)}switch(typeof eval_ret){case"boolean":GodotRuntime.setHeapValue(p_union_ptr,eval_ret,"i32");return 1;case"number":GodotRuntime.setHeapValue(p_union_ptr,eval_ret,"double");return 3;case"string":GodotRuntime.setHeapValue(p_union_ptr,GodotRuntime.allocString(eval_ret),"*");return 4;case"object":if(eval_ret===null){break}if(ArrayBuffer.isView(eval_ret)&&!(eval_ret instanceof Uint8Array)){eval_ret=new Uint8Array(eval_ret.buffer)}else if(eval_ret instanceof ArrayBuffer){eval_ret=new Uint8Array(eval_ret)}if(eval_ret instanceof Uint8Array){const func=GodotRuntime.get_func(p_callback);const bytes_ptr=func(p_byte_arr,p_byte_arr_write,eval_ret.length);HEAPU8.set(eval_ret,bytes_ptr);return 29}break}return 0}var IDHandler={_last_id:0,_references:{},get:function(p_id){return IDHandler._references[p_id]},add:function(p_data){const id=++IDHandler._last_id;IDHandler._references[id]=p_data;return id},remove:function(p_id){delete IDHandler._references[p_id]}};var GodotFetch={onread:function(id,result){const obj=IDHandler.get(id);if(!obj){return}if(result.value){obj.chunks.push(result.value)}obj.reading=false;obj.done=result.done},onresponse:function(id,response){const obj=IDHandler.get(id);if(!obj){return}let chunked=false;response.headers.forEach(function(value,header){const v=value.toLowerCase().trim();const h=header.toLowerCase().trim();if(h==="transfer-encoding"&&v==="chunked"){chunked=true}});obj.status=response.status;obj.response=response;obj.reader=response.body?.getReader();obj.chunked=chunked},onerror:function(id,err){GodotRuntime.error(err);const obj=IDHandler.get(id);if(!obj){return}obj.error=err},create:function(method,url,headers,body){const obj={request:null,response:null,reader:null,error:null,done:false,reading:false,status:0,chunks:[]};const id=IDHandler.add(obj);const init={method:method,headers:headers,body:body};obj.request=fetch(url,init);obj.request.then(GodotFetch.onresponse.bind(null,id)).catch(GodotFetch.onerror.bind(null,id));return id},free:function(id){const obj=IDHandler.get(id);if(!obj){return}IDHandler.remove(id);if(!obj.request){return}obj.request.then(function(response){response.abort()}).catch(function(e){})},read:function(id){const obj=IDHandler.get(id);if(!obj){return}if(obj.reader&&!obj.reading){if(obj.done){obj.reader=null;return}obj.reading=true;obj.reader.read().then(GodotFetch.onread.bind(null,id)).catch(GodotFetch.onerror.bind(null,id))}else if(obj.reader==null&&obj.response.body==null){obj.reading=true;GodotFetch.onread(id,{value:undefined,done:true})}}};function _godot_js_fetch_create(p_method,p_url,p_headers,p_headers_size,p_body,p_body_size){const method=GodotRuntime.parseString(p_method);const url=GodotRuntime.parseString(p_url);const headers=GodotRuntime.parseStringArray(p_headers,p_headers_size);const body=p_body_size?GodotRuntime.heapSlice(HEAP8,p_body,p_body_size):null;return GodotFetch.create(method,url,headers.map(function(hv){const idx=hv.indexOf(":");if(idx<=0){return[]}return[hv.slice(0,idx).trim(),hv.slice(idx+1).trim()]}).filter(function(v){return v.length===2}),body)}function _godot_js_fetch_free(id){GodotFetch.free(id)}function _godot_js_fetch_http_status_get(p_id){const obj=IDHandler.get(p_id);if(!obj||!obj.response){return 0}return obj.status}function _godot_js_fetch_is_chunked(p_id){const obj=IDHandler.get(p_id);if(!obj||!obj.response){return-1}return obj.chunked?1:0}function _godot_js_fetch_read_chunk(p_id,p_buf,p_buf_size){const obj=IDHandler.get(p_id);if(!obj||!obj.response){return 0}let to_read=p_buf_size;const chunks=obj.chunks;while(to_read&&chunks.length){const chunk=obj.chunks[0];if(chunk.length>to_read){GodotRuntime.heapCopy(HEAP8,chunk.slice(0,to_read),p_buf);chunks[0]=chunk.slice(to_read);to_read=0}else{GodotRuntime.heapCopy(HEAP8,chunk,p_buf);to_read-=chunk.length;chunks.pop()}}if(!chunks.length){GodotFetch.read(p_id)}return p_buf_size-to_read}function _godot_js_fetch_read_headers(p_id,p_parse_cb,p_ref){const obj=IDHandler.get(p_id);if(!obj||!obj.response){return 1}const cb=GodotRuntime.get_func(p_parse_cb);const arr=[];obj.response.headers.forEach(function(v,h){arr.push(`${h}:${v}`)});const c_ptr=GodotRuntime.allocStringArray(arr);cb(arr.length,c_ptr,p_ref);GodotRuntime.freeStringArray(c_ptr,arr.length);return 0}function _godot_js_fetch_state_get(p_id){const obj=IDHandler.get(p_id);if(!obj){return-1}if(obj.error){return-1}if(!obj.response){return 0}if(obj.reader||obj.response.body==null&&!obj.done){return 1}if(obj.done){return 2}return-1}var GodotInputGamepads={samples:[],get_pads:function(){try{const pads=navigator.getGamepads();if(pads){return pads}return[]}catch(e){return[]}},get_samples:function(){return GodotInputGamepads.samples},get_sample:function(index){const samples=GodotInputGamepads.samples;return index<samples.length?samples[index]:null},sample:function(){const pads=GodotInputGamepads.get_pads();const samples=[];for(let i=0;i<pads.length;i++){const pad=pads[i];if(!pad){samples.push(null);continue}const s={standard:pad.mapping==="standard",buttons:[],axes:[],connected:pad.connected};for(let b=0;b<pad.buttons.length;b++){s.buttons.push(pad.buttons[b].value)}for(let a=0;a<pad.axes.length;a++){s.axes.push(pad.axes[a])}samples.push(s)}GodotInputGamepads.samples=samples},init:function(onchange){GodotInputGamepads.samples=[];function add(pad){const guid=GodotInputGamepads.get_guid(pad);const c_id=GodotRuntime.allocString(pad.id);const c_guid=GodotRuntime.allocString(guid);onchange(pad.index,1,c_id,c_guid);GodotRuntime.free(c_id);GodotRuntime.free(c_guid)}const pads=GodotInputGamepads.get_pads();for(let i=0;i<pads.length;i++){if(pads[i]){add(pads[i])}}GodotEventListeners.add(window,"gamepadconnected",function(evt){if(evt.gamepad){add(evt.gamepad)}},false);GodotEventListeners.add(window,"gamepaddisconnected",function(evt){if(evt.gamepad){onchange(evt.gamepad.index,0)}},false)},get_guid:function(pad){if(pad.mapping){return pad.mapping}const ua=navigator.userAgent;let os="Unknown";if(ua.indexOf("Android")>=0){os="Android"}else if(ua.indexOf("Linux")>=0){os="Linux"}else if(ua.indexOf("iPhone")>=0){os="iOS"}else if(ua.indexOf("Macintosh")>=0){os="MacOSX"}else if(ua.indexOf("Windows")>=0){os="Windows"}const id=pad.id;const exp1=/vendor: ([0-9a-f]{4}) product: ([0-9a-f]{4})/i;const exp2=/^([0-9a-f]+)-([0-9a-f]+)-/i;let vendor="";let product="";if(exp1.test(id)){const match=exp1.exec(id);vendor=match[1].padStart(4,"0");product=match[2].padStart(4,"0")}else if(exp2.test(id)){const match=exp2.exec(id);vendor=match[1].padStart(4,"0");product=match[2].padStart(4,"0")}if(!vendor||!product){return`${os}Unknown`}return os+vendor+product}};var GodotInputDragDrop={promises:[],pending_files:[],add_entry:function(entry){if(entry.isDirectory){GodotInputDragDrop.add_dir(entry)}else if(entry.isFile){GodotInputDragDrop.add_file(entry)}else{GodotRuntime.error("Unrecognized entry...",entry)}},add_dir:function(entry){GodotInputDragDrop.promises.push(new Promise(function(resolve,reject){const reader=entry.createReader();reader.readEntries(function(entries){for(let i=0;i<entries.length;i++){GodotInputDragDrop.add_entry(entries[i])}resolve()})}))},add_file:function(entry){GodotInputDragDrop.promises.push(new Promise(function(resolve,reject){entry.file(function(file){const reader=new FileReader;reader.onload=function(){const f={path:file.relativePath||file.webkitRelativePath,name:file.name,type:file.type,size:file.size,data:reader.result};if(!f["path"]){f["path"]=f["name"]}GodotInputDragDrop.pending_files.push(f);resolve()};reader.onerror=function(){GodotRuntime.print("Error reading file");reject()};reader.readAsArrayBuffer(file)},function(err){GodotRuntime.print("Error!");reject()})}))},process:function(resolve,reject){if(GodotInputDragDrop.promises.length===0){resolve();return}GodotInputDragDrop.promises.pop().then(function(){setTimeout(function(){GodotInputDragDrop.process(resolve,reject)},0)})},_process_event:function(ev,callback){ev.preventDefault();if(ev.dataTransfer.items){for(let i=0;i<ev.dataTransfer.items.length;i++){const item=ev.dataTransfer.items[i];let entry=null;if("getAsEntry"in item){entry=item.getAsEntry()}else if("webkitGetAsEntry"in item){entry=item.webkitGetAsEntry()}if(entry){GodotInputDragDrop.add_entry(entry)}}}else{GodotRuntime.error("File upload not supported")}new Promise(GodotInputDragDrop.process).then(function(){const DROP=`/tmp/drop-${parseInt(Math.random()*(1<<30),10)}/`;const drops=[];const files=[];FS.mkdir(DROP.slice(0,-1));GodotInputDragDrop.pending_files.forEach(elem=>{const path=elem["path"];GodotFS.copy_to_fs(DROP+path,elem["data"]);let idx=path.indexOf("/");if(idx===-1){drops.push(DROP+path)}else{const sub=path.substr(0,idx);idx=sub.indexOf("/");if(idx<0&&drops.indexOf(DROP+sub)===-1){drops.push(DROP+sub)}}files.push(DROP+path)});GodotInputDragDrop.promises=[];GodotInputDragDrop.pending_files=[];callback(drops);if(GodotConfig.persistent_drops){GodotOS.atexit(function(resolve,reject){GodotInputDragDrop.remove_drop(files,DROP);resolve()})}else{GodotInputDragDrop.remove_drop(files,DROP)}})},remove_drop:function(files,drop_path){const dirs=[drop_path.substr(0,drop_path.length-1)];files.forEach(function(file){FS.unlink(file);let dir=file.replace(drop_path,"");let idx=dir.lastIndexOf("/");while(idx>0){dir=dir.substr(0,idx);if(dirs.indexOf(drop_path+dir)===-1){dirs.push(drop_path+dir)}idx=dir.lastIndexOf("/")}});dirs.sort(function(a,b){const al=(a.match(/\//g)||[]).length;const bl=(b.match(/\//g)||[]).length;if(al>bl){return-1}else if(al<bl){return 1}return 0}).forEach(function(dir){FS.rmdir(dir)})},handler:function(callback){return function(ev){GodotInputDragDrop._process_event(ev,callback)}}};var GodotIME={ime:null,active:false,focusTimerIntervalId:-1,getModifiers:function(evt){return evt.shiftKey+0+(evt.altKey+0<<1)+(evt.ctrlKey+0<<2)+(evt.metaKey+0<<3)},ime_active:function(active){function clearFocusTimerInterval(){clearInterval(GodotIME.focusTimerIntervalId);GodotIME.focusTimerIntervalId=-1}function focusTimer(){if(GodotIME.ime==null){clearFocusTimerInterval();return}GodotIME.ime.focus()}if(GodotIME.focusTimerIntervalId>-1){clearFocusTimerInterval()}if(GodotIME.ime==null){return}GodotIME.active=active;if(active){GodotIME.ime.style.display="block";GodotIME.focusTimerIntervalId=setInterval(focusTimer,100)}else{GodotIME.ime.style.display="none";GodotConfig.canvas.focus()}},ime_position:function(x,y){if(GodotIME.ime==null){return}const canvas=GodotConfig.canvas;const rect=canvas.getBoundingClientRect();const rw=canvas.width/rect.width;const rh=canvas.height/rect.height;const clx=x/rw+rect.x;const cly=y/rh+rect.y;GodotIME.ime.style.left=`${clx}px`;GodotIME.ime.style.top=`${cly}px`},init:function(ime_cb,key_cb,code,key){function key_event_cb(pressed,evt){const modifiers=GodotIME.getModifiers(evt);GodotRuntime.stringToHeap(evt.code,code,32);GodotRuntime.stringToHeap(evt.key,key,32);key_cb(pressed,evt.repeat,modifiers);evt.preventDefault()}function ime_event_cb(event){if(GodotIME.ime==null){return}switch(event.type){case"compositionstart":ime_cb(0,null);GodotIME.ime.innerHTML="";break;case"compositionupdate":{const ptr=GodotRuntime.allocString(event.data);ime_cb(1,ptr);GodotRuntime.free(ptr)}break;case"compositionend":{const ptr=GodotRuntime.allocString(event.data);ime_cb(2,ptr);GodotRuntime.free(ptr);GodotIME.ime.innerHTML=""}break;default:}}const ime=document.createElement("div");ime.className="ime";ime.style.background="none";ime.style.opacity=0;ime.style.position="fixed";ime.style.textAlign="left";ime.style.fontSize="1px";ime.style.left="0px";ime.style.top="0px";ime.style.width="100%";ime.style.height="40px";ime.style.pointerEvents="none";ime.style.display="none";ime.contentEditable="true";GodotEventListeners.add(ime,"compositionstart",ime_event_cb,false);GodotEventListeners.add(ime,"compositionupdate",ime_event_cb,false);GodotEventListeners.add(ime,"compositionend",ime_event_cb,false);GodotEventListeners.add(ime,"keydown",key_event_cb.bind(null,1),false);GodotEventListeners.add(ime,"keyup",key_event_cb.bind(null,0),false);ime.onblur=function(){this.style.display="none";GodotConfig.canvas.focus();GodotIME.active=false};GodotConfig.canvas.parentElement.appendChild(ime);GodotIME.ime=ime},clear:function(){if(GodotIME.ime==null){return}if(GodotIME.focusTimerIntervalId>-1){clearInterval(GodotIME.focusTimerIntervalId);GodotIME.focusTimerIntervalId=-1}GodotIME.ime.remove();GodotIME.ime=null}};var GodotInput={getModifiers:function(evt){return evt.shiftKey+0+(evt.altKey+0<<1)+(evt.ctrlKey+0<<2)+(evt.metaKey+0<<3)},computePosition:function(evt,rect){const canvas=GodotConfig.canvas;const rw=canvas.width/rect.width;const rh=canvas.height/rect.height;const x=(evt.clientX-rect.x)*rw;const y=(evt.clientY-rect.y)*rh;return[x,y]}};function _godot_js_input_drop_files_cb(callback){const func=GodotRuntime.get_func(callback);const dropFiles=function(files){const args=files||[];if(!args.length){return}const argc=args.length;const argv=GodotRuntime.allocStringArray(args);func(argv,argc);GodotRuntime.freeStringArray(argv,argc)};const canvas=GodotConfig.canvas;GodotEventListeners.add(canvas,"dragover",function(ev){ev.preventDefault()},false);GodotEventListeners.add(canvas,"drop",GodotInputDragDrop.handler(dropFiles))}function _godot_js_input_gamepad_cb(change_cb){const onchange=GodotRuntime.get_func(change_cb);GodotInputGamepads.init(onchange)}function _godot_js_input_gamepad_sample(){GodotInputGamepads.sample();return 0}function _godot_js_input_gamepad_sample_count(){return GodotInputGamepads.get_samples().length}function _godot_js_input_gamepad_sample_get(p_index,r_btns,r_btns_num,r_axes,r_axes_num,r_standard){const sample=GodotInputGamepads.get_sample(p_index);if(!sample||!sample.connected){return 1}const btns=sample.buttons;const btns_len=btns.length<16?btns.length:16;for(let i=0;i<btns_len;i++){GodotRuntime.setHeapValue(r_btns+(i<<2),btns[i],"float")}GodotRuntime.setHeapValue(r_btns_num,btns_len,"i32");const axes=sample.axes;const axes_len=axes.length<10?axes.length:10;for(let i=0;i<axes_len;i++){GodotRuntime.setHeapValue(r_axes+(i<<2),axes[i],"float")}GodotRuntime.setHeapValue(r_axes_num,axes_len,"i32");const is_standard=sample.standard?1:0;GodotRuntime.setHeapValue(r_standard,is_standard,"i32");return 0}function _godot_js_input_key_cb(callback,code,key){const func=GodotRuntime.get_func(callback);function key_cb(pressed,evt){const modifiers=GodotInput.getModifiers(evt);GodotRuntime.stringToHeap(evt.code,code,32);GodotRuntime.stringToHeap(evt.key,key,32);func(pressed,evt.repeat,modifiers);evt.preventDefault()}GodotEventListeners.add(GodotConfig.canvas,"keydown",key_cb.bind(null,1),false);GodotEventListeners.add(GodotConfig.canvas,"keyup",key_cb.bind(null,0),false)}function _godot_js_input_mouse_button_cb(callback){const func=GodotRuntime.get_func(callback);const canvas=GodotConfig.canvas;function button_cb(p_pressed,evt){const rect=canvas.getBoundingClientRect();const pos=GodotInput.computePosition(evt,rect);const modifiers=GodotInput.getModifiers(evt);if(p_pressed){GodotConfig.canvas.focus()}if(func(p_pressed,evt.button,pos[0],pos[1],modifiers)){evt.preventDefault()}}GodotEventListeners.add(canvas,"mousedown",button_cb.bind(null,1),false);GodotEventListeners.add(window,"mouseup",button_cb.bind(null,0),false)}function _godot_js_input_mouse_move_cb(callback){const func=GodotRuntime.get_func(callback);const canvas=GodotConfig.canvas;function move_cb(evt){const rect=canvas.getBoundingClientRect();const pos=GodotInput.computePosition(evt,rect);const rw=canvas.width/rect.width;const rh=canvas.height/rect.height;const rel_pos_x=evt.movementX*rw;const rel_pos_y=evt.movementY*rh;const modifiers=GodotInput.getModifiers(evt);func(pos[0],pos[1],rel_pos_x,rel_pos_y,modifiers)}GodotEventListeners.add(window,"mousemove",move_cb,false)}function _godot_js_input_mouse_wheel_cb(callback){const func=GodotRuntime.get_func(callback);function wheel_cb(evt){if(func(evt["deltaX"]||0,evt["deltaY"]||0)){evt.preventDefault()}}GodotEventListeners.add(GodotConfig.canvas,"wheel",wheel_cb,false)}function _godot_js_input_paste_cb(callback){const func=GodotRuntime.get_func(callback);GodotEventListeners.add(window,"paste",function(evt){const text=evt.clipboardData.getData("text");const ptr=GodotRuntime.allocString(text);func(ptr);GodotRuntime.free(ptr)},false)}function _godot_js_input_touch_cb(callback,ids,coords){const func=GodotRuntime.get_func(callback);const canvas=GodotConfig.canvas;function touch_cb(type,evt){if(type===0){GodotConfig.canvas.focus()}const rect=canvas.getBoundingClientRect();const touches=evt.changedTouches;for(let i=0;i<touches.length;i++){const touch=touches[i];const pos=GodotInput.computePosition(touch,rect);GodotRuntime.setHeapValue(coords+i*2*8,pos[0],"double");GodotRuntime.setHeapValue(coords+(i*2+1)*8,pos[1],"double");GodotRuntime.setHeapValue(ids+i*4,touch.identifier,"i32")}func(type,touches.length);if(evt.cancelable){evt.preventDefault()}}GodotEventListeners.add(canvas,"touchstart",touch_cb.bind(null,0),false);GodotEventListeners.add(canvas,"touchend",touch_cb.bind(null,1),false);GodotEventListeners.add(canvas,"touchcancel",touch_cb.bind(null,1),false);GodotEventListeners.add(canvas,"touchmove",touch_cb.bind(null,2),false)}function _godot_js_input_vibrate_handheld(p_duration_ms){if(typeof navigator.vibrate!=="function"){GodotRuntime.print("This browser does not support vibration.")}else{navigator.vibrate(p_duration_ms)}}function _godot_js_is_ime_focused(){return GodotIME.active}function _godot_js_os_download_buffer(p_ptr,p_size,p_name,p_mime){const buf=GodotRuntime.heapSlice(HEAP8,p_ptr,p_size);const name=GodotRuntime.parseString(p_name);const mime=GodotRuntime.parseString(p_mime);const blob=new Blob([buf],{type:mime});const url=window.URL.createObjectURL(blob);const a=document.createElement("a");a.href=url;a.download=name;a.style.display="none";document.body.appendChild(a);a.click();a.remove();window.URL.revokeObjectURL(url)}function _godot_js_os_execute(p_json){const json_args=GodotRuntime.parseString(p_json);const args=JSON.parse(json_args);if(GodotConfig.on_execute){GodotConfig.on_execute(args);return 0}return 1}function _godot_js_os_finish_async(p_callback){const func=GodotRuntime.get_func(p_callback);GodotOS.finish_async(func)}function _godot_js_os_fs_is_persistent(){return GodotFS.is_persistent()}function _godot_js_os_fs_sync(callback){const func=GodotRuntime.get_func(callback);GodotOS._fs_sync_promise=GodotFS.sync();GodotOS._fs_sync_promise.then(function(err){func()})}function _godot_js_os_has_feature(p_ftr){const ftr=GodotRuntime.parseString(p_ftr);const ua=navigator.userAgent;if(ftr==="web_macos"){return ua.indexOf("Mac")!==-1?1:0}if(ftr==="web_windows"){return ua.indexOf("Windows")!==-1?1:0}if(ftr==="web_android"){return ua.indexOf("Android")!==-1?1:0}if(ftr==="web_ios"){return ua.indexOf("iPhone")!==-1||ua.indexOf("iPad")!==-1||ua.indexOf("iPod")!==-1?1:0}if(ftr==="web_linuxbsd"){return ua.indexOf("CrOS")!==-1||ua.indexOf("BSD")!==-1||ua.indexOf("Linux")!==-1||ua.indexOf("X11")!==-1?1:0}return 0}function _godot_js_os_hw_concurrency_get(){const concurrency=navigator.hardwareConcurrency||1;return concurrency<2?concurrency:2}function _godot_js_os_request_quit_cb(p_callback){GodotOS.request_quit=GodotRuntime.get_func(p_callback)}function _godot_js_os_shell_open(p_uri){window.open(GodotRuntime.parseString(p_uri),"_blank")}var GodotPWA={hasUpdate:false,updateState:function(cb,reg){if(!reg){return}if(!reg.active){return}if(reg.waiting){GodotPWA.hasUpdate=true;cb()}GodotEventListeners.add(reg,"updatefound",function(){const installing=reg.installing;GodotEventListeners.add(installing,"statechange",function(){if(installing.state==="installed"){GodotPWA.hasUpdate=true;cb()}})})}};function _godot_js_pwa_cb(p_update_cb){if("serviceWorker"in navigator){try{const cb=GodotRuntime.get_func(p_update_cb);navigator.serviceWorker.getRegistration().then(GodotPWA.updateState.bind(null,cb))}catch(e){GodotRuntime.error("Failed to assign PWA callback",e)}}}function _godot_js_pwa_update(){if("serviceWorker"in navigator&&GodotPWA.hasUpdate){try{navigator.serviceWorker.getRegistration().then(function(reg){if(!reg||!reg.waiting){return}reg.waiting.postMessage("update")})}catch(e){GodotRuntime.error(e);return 1}return 0}return 1}var GodotRTCDataChannel={connect:function(p_id,p_on_open,p_on_message,p_on_error,p_on_close){const ref=IDHandler.get(p_id);if(!ref){return}ref.binaryType="arraybuffer";ref.onopen=function(event){p_on_open()};ref.onclose=function(event){p_on_close()};ref.onerror=function(event){p_on_error()};ref.onmessage=function(event){let buffer;let is_string=0;if(event.data instanceof ArrayBuffer){buffer=new Uint8Array(event.data)}else if(event.data instanceof Blob){GodotRuntime.error("Blob type not supported");return}else if(typeof event.data==="string"){is_string=1;const enc=new TextEncoder("utf-8");buffer=new Uint8Array(enc.encode(event.data))}else{GodotRuntime.error("Unknown message type");return}const len=buffer.length*buffer.BYTES_PER_ELEMENT;const out=GodotRuntime.malloc(len);HEAPU8.set(buffer,out);p_on_message(out,len,is_string);GodotRuntime.free(out)}},close:function(p_id){const ref=IDHandler.get(p_id);if(!ref){return}ref.onopen=null;ref.onmessage=null;ref.onerror=null;ref.onclose=null;ref.close()},get_prop:function(p_id,p_prop,p_def){const ref=IDHandler.get(p_id);return ref&&ref[p_prop]!==undefined?ref[p_prop]:p_def}};function _godot_js_rtc_datachannel_close(p_id){const ref=IDHandler.get(p_id);if(!ref){return}GodotRTCDataChannel.close(p_id)}function _godot_js_rtc_datachannel_connect(p_id,p_ref,p_on_open,p_on_message,p_on_error,p_on_close){const onopen=GodotRuntime.get_func(p_on_open).bind(null,p_ref);const onmessage=GodotRuntime.get_func(p_on_message).bind(null,p_ref);const onerror=GodotRuntime.get_func(p_on_error).bind(null,p_ref);const onclose=GodotRuntime.get_func(p_on_close).bind(null,p_ref);GodotRTCDataChannel.connect(p_id,onopen,onmessage,onerror,onclose)}function _godot_js_rtc_datachannel_destroy(p_id){GodotRTCDataChannel.close(p_id);IDHandler.remove(p_id)}function _godot_js_rtc_datachannel_get_buffered_amount(p_id){return GodotRTCDataChannel.get_prop(p_id,"bufferedAmount",0)}function _godot_js_rtc_datachannel_id_get(p_id){return GodotRTCDataChannel.get_prop(p_id,"id",65535)}function _godot_js_rtc_datachannel_is_negotiated(p_id){return GodotRTCDataChannel.get_prop(p_id,"negotiated",65535)}function _godot_js_rtc_datachannel_is_ordered(p_id){return GodotRTCDataChannel.get_prop(p_id,"ordered",true)}function _godot_js_rtc_datachannel_label_get(p_id){const ref=IDHandler.get(p_id);if(!ref||!ref.label){return 0}return GodotRuntime.allocString(ref.label)}function _godot_js_rtc_datachannel_max_packet_lifetime_get(p_id){const ref=IDHandler.get(p_id);if(!ref){return 65535}if(ref["maxPacketLifeTime"]!==undefined){return ref["maxPacketLifeTime"]}else if(ref["maxRetransmitTime"]!==undefined){return ref["maxRetransmitTime"]}return 65535}function _godot_js_rtc_datachannel_max_retransmits_get(p_id){return GodotRTCDataChannel.get_prop(p_id,"maxRetransmits",65535)}function _godot_js_rtc_datachannel_protocol_get(p_id){const ref=IDHandler.get(p_id);if(!ref||!ref.protocol){return 0}return GodotRuntime.allocString(ref.protocol)}function _godot_js_rtc_datachannel_ready_state_get(p_id){const ref=IDHandler.get(p_id);if(!ref){return 3}switch(ref.readyState){case"connecting":return 0;case"open":return 1;case"closing":return 2;case"closed":default:return 3}}function _godot_js_rtc_datachannel_send(p_id,p_buffer,p_length,p_raw){const ref=IDHandler.get(p_id);if(!ref){return 1}const bytes_array=new Uint8Array(p_length);for(let i=0;i<p_length;i++){bytes_array[i]=GodotRuntime.getHeapValue(p_buffer+i,"i8")}if(p_raw){ref.send(bytes_array.buffer)}else{const string=new TextDecoder("utf-8").decode(bytes_array);ref.send(string)}return 0}var GodotRTCPeerConnection={ConnectionState:{new:0,connecting:1,connected:2,disconnected:3,failed:4,closed:5},ConnectionStateCompat:{new:0,checking:1,connected:2,completed:2,disconnected:3,failed:4,closed:5},IceGatheringState:{new:0,gathering:1,complete:2},SignalingState:{stable:0,"have-local-offer":1,"have-remote-offer":2,"have-local-pranswer":3,"have-remote-pranswer":4,closed:5},create:function(config,onConnectionChange,onSignalingChange,onIceGatheringChange,onIceCandidate,onDataChannel){let conn=null;try{conn=new RTCPeerConnection(config)}catch(e){GodotRuntime.error(e);return 0}const id=IDHandler.add(conn);if("connectionState"in conn&&conn["connectionState"]!==undefined){conn.onconnectionstatechange=function(event){if(!IDHandler.get(id)){return}onConnectionChange(GodotRTCPeerConnection.ConnectionState[conn.connectionState]||0)}}else{conn.oniceconnectionstatechange=function(event){if(!IDHandler.get(id)){return}onConnectionChange(GodotRTCPeerConnection.ConnectionStateCompat[conn.iceConnectionState]||0)}}conn.onicegatheringstatechange=function(event){if(!IDHandler.get(id)){return}onIceGatheringChange(GodotRTCPeerConnection.IceGatheringState[conn.iceGatheringState]||0)};conn.onsignalingstatechange=function(event){if(!IDHandler.get(id)){return}onSignalingChange(GodotRTCPeerConnection.SignalingState[conn.signalingState]||0)};conn.onicecandidate=function(event){if(!IDHandler.get(id)){return}const c=event.candidate;if(!c||!c.candidate){return}const candidate_str=GodotRuntime.allocString(c.candidate);const mid_str=GodotRuntime.allocString(c.sdpMid);onIceCandidate(mid_str,c.sdpMLineIndex,candidate_str);GodotRuntime.free(candidate_str);GodotRuntime.free(mid_str)};conn.ondatachannel=function(event){if(!IDHandler.get(id)){return}const cid=IDHandler.add(event.channel);onDataChannel(cid)};return id},destroy:function(p_id){const conn=IDHandler.get(p_id);if(!conn){return}conn.onconnectionstatechange=null;conn.oniceconnectionstatechange=null;conn.onicegatheringstatechange=null;conn.onsignalingstatechange=null;conn.onicecandidate=null;conn.ondatachannel=null;IDHandler.remove(p_id)},onsession:function(p_id,callback,session){if(!IDHandler.get(p_id)){return}const type_str=GodotRuntime.allocString(session.type);const sdp_str=GodotRuntime.allocString(session.sdp);callback(type_str,sdp_str);GodotRuntime.free(type_str);GodotRuntime.free(sdp_str)},onerror:function(p_id,callback,error){const ref=IDHandler.get(p_id);if(!ref){return}GodotRuntime.error(error);callback()}};function _godot_js_rtc_pc_close(p_id){const ref=IDHandler.get(p_id);if(!ref){return}ref.close()}function _godot_js_rtc_pc_create(p_config,p_ref,p_on_connection_state_change,p_on_ice_gathering_state_change,p_on_signaling_state_change,p_on_ice_candidate,p_on_datachannel){const wrap=function(p_func){return GodotRuntime.get_func(p_func).bind(null,p_ref)};return GodotRTCPeerConnection.create(JSON.parse(GodotRuntime.parseString(p_config)),wrap(p_on_connection_state_change),wrap(p_on_signaling_state_change),wrap(p_on_ice_gathering_state_change),wrap(p_on_ice_candidate),wrap(p_on_datachannel))}function _godot_js_rtc_pc_datachannel_create(p_id,p_label,p_config){try{const ref=IDHandler.get(p_id);if(!ref){return 0}const label=GodotRuntime.parseString(p_label);const config=JSON.parse(GodotRuntime.parseString(p_config));const channel=ref.createDataChannel(label,config);return IDHandler.add(channel)}catch(e){GodotRuntime.error(e);return 0}}function _godot_js_rtc_pc_destroy(p_id){GodotRTCPeerConnection.destroy(p_id)}function _godot_js_rtc_pc_ice_candidate_add(p_id,p_mid_name,p_mline_idx,p_sdp){const ref=IDHandler.get(p_id);if(!ref){return}const sdpMidName=GodotRuntime.parseString(p_mid_name);const sdpName=GodotRuntime.parseString(p_sdp);ref.addIceCandidate(new RTCIceCandidate({candidate:sdpName,sdpMid:sdpMidName,sdpMlineIndex:p_mline_idx}))}function _godot_js_rtc_pc_local_description_set(p_id,p_type,p_sdp,p_obj,p_on_error){const ref=IDHandler.get(p_id);if(!ref){return}const type=GodotRuntime.parseString(p_type);const sdp=GodotRuntime.parseString(p_sdp);const onerror=GodotRuntime.get_func(p_on_error).bind(null,p_obj);ref.setLocalDescription({sdp:sdp,type:type}).catch(function(error){GodotRTCPeerConnection.onerror(p_id,onerror,error)})}function _godot_js_rtc_pc_offer_create(p_id,p_obj,p_on_session,p_on_error){const ref=IDHandler.get(p_id);if(!ref){return}const onsession=GodotRuntime.get_func(p_on_session).bind(null,p_obj);const onerror=GodotRuntime.get_func(p_on_error).bind(null,p_obj);ref.createOffer().then(function(session){GodotRTCPeerConnection.onsession(p_id,onsession,session)}).catch(function(error){GodotRTCPeerConnection.onerror(p_id,onerror,error)})}function _godot_js_rtc_pc_remote_description_set(p_id,p_type,p_sdp,p_obj,p_session_created,p_on_error){const ref=IDHandler.get(p_id);if(!ref){return}const type=GodotRuntime.parseString(p_type);const sdp=GodotRuntime.parseString(p_sdp);const onerror=GodotRuntime.get_func(p_on_error).bind(null,p_obj);const onsession=GodotRuntime.get_func(p_session_created).bind(null,p_obj);ref.setRemoteDescription({sdp:sdp,type:type}).then(function(){if(type!=="offer"){return Promise.resolve()}return ref.createAnswer().then(function(session){GodotRTCPeerConnection.onsession(p_id,onsession,session)})}).catch(function(error){GodotRTCPeerConnection.onerror(p_id,onerror,error)})}function _godot_js_set_ime_active(p_active){GodotIME.ime_active(p_active)}function _godot_js_set_ime_cb(p_ime_cb,p_key_cb,code,key){const ime_cb=GodotRuntime.get_func(p_ime_cb);const key_cb=GodotRuntime.get_func(p_key_cb);GodotIME.init(ime_cb,key_cb,code,key)}function _godot_js_set_ime_position(p_x,p_y){GodotIME.ime_position(p_x,p_y)}function _godot_js_tts_get_voices(p_callback){const func=GodotRuntime.get_func(p_callback);try{const arr=[];const voices=window.speechSynthesis.getVoices();for(let i=0;i<voices.length;i++){arr.push(`${voices[i].lang};${voices[i].name}`)}const c_ptr=GodotRuntime.allocStringArray(arr);func(arr.length,c_ptr);GodotRuntime.freeStringArray(c_ptr,arr.length)}catch(e){}}function _godot_js_tts_is_paused(){return window.speechSynthesis.paused}function _godot_js_tts_is_speaking(){return window.speechSynthesis.speaking}function _godot_js_tts_pause(){window.speechSynthesis.pause()}function _godot_js_tts_resume(){window.speechSynthesis.resume()}function _godot_js_tts_speak(p_text,p_voice,p_volume,p_pitch,p_rate,p_utterance_id,p_callback){const func=GodotRuntime.get_func(p_callback);function listener_end(evt){evt.currentTarget.cb(1,evt.currentTarget.id,0)}function listener_start(evt){evt.currentTarget.cb(0,evt.currentTarget.id,0)}function listener_error(evt){evt.currentTarget.cb(2,evt.currentTarget.id,0)}function listener_bound(evt){evt.currentTarget.cb(3,evt.currentTarget.id,evt.charIndex)}const utterance=new SpeechSynthesisUtterance(GodotRuntime.parseString(p_text));utterance.rate=p_rate;utterance.pitch=p_pitch;utterance.volume=p_volume/100;utterance.addEventListener("end",listener_end);utterance.addEventListener("start",listener_start);utterance.addEventListener("error",listener_error);utterance.addEventListener("boundary",listener_bound);utterance.id=p_utterance_id;utterance.cb=func;const voice=GodotRuntime.parseString(p_voice);const voices=window.speechSynthesis.getVoices();for(let i=0;i<voices.length;i++){if(voices[i].name===voice){utterance.voice=voices[i];break}}window.speechSynthesis.resume();window.speechSynthesis.speak(utterance)}function _godot_js_tts_stop(){window.speechSynthesis.cancel();window.speechSynthesis.resume()}var GodotWebMidi={abortControllers:[],isListening:false};function _godot_js_webmidi_close_midi_inputs(){for(const abortController of GodotWebMidi.abortControllers){abortController.abort()}GodotWebMidi.abortControllers=[];GodotWebMidi.isListening=false}function _godot_js_webmidi_open_midi_inputs(pSetInputNamesCb,pOnMidiMessageCb,pDataBuffer,dataBufferLen){if(GodotWebMidi.is_listening){return 0}if(!navigator.requestMIDIAccess){return 2}const setInputNamesCb=GodotRuntime.get_func(pSetInputNamesCb);const onMidiMessageCb=GodotRuntime.get_func(pOnMidiMessageCb);GodotWebMidi.isListening=true;navigator.requestMIDIAccess().then(midi=>{const inputs=[...midi.inputs.values()];const inputNames=inputs.map(input=>input.name);const c_ptr=GodotRuntime.allocStringArray(inputNames);setInputNamesCb(inputNames.length,c_ptr);GodotRuntime.freeStringArray(c_ptr,inputNames.length);inputs.forEach((input,i)=>{const abortController=new AbortController;GodotWebMidi.abortControllers.push(abortController);input.addEventListener("midimessage",event=>{const status=event.data[0];const data=event.data.slice(1);const size=data.length;if(size>dataBufferLen){throw new Error(`data too big ${size} > ${dataBufferLen}`)}HEAPU8.set(data,pDataBuffer);onMidiMessageCb(i,status,pDataBuffer,data.length)},{signal:abortController.signal})})});return 0}var GodotWebSocket={_onopen:function(p_id,callback,event){const ref=IDHandler.get(p_id);if(!ref){return}const c_str=GodotRuntime.allocString(ref.protocol);callback(c_str);GodotRuntime.free(c_str)},_onmessage:function(p_id,callback,event){const ref=IDHandler.get(p_id);if(!ref){return}let buffer;let is_string=0;if(event.data instanceof ArrayBuffer){buffer=new Uint8Array(event.data)}else if(event.data instanceof Blob){GodotRuntime.error("Blob type not supported");return}else if(typeof event.data==="string"){is_string=1;const enc=new TextEncoder("utf-8");buffer=new Uint8Array(enc.encode(event.data))}else{GodotRuntime.error("Unknown message type");return}const len=buffer.length*buffer.BYTES_PER_ELEMENT;const out=GodotRuntime.malloc(len);HEAPU8.set(buffer,out);callback(out,len,is_string);GodotRuntime.free(out)},_onerror:function(p_id,callback,event){const ref=IDHandler.get(p_id);if(!ref){return}callback()},_onclose:function(p_id,callback,event){const ref=IDHandler.get(p_id);if(!ref){return}const c_str=GodotRuntime.allocString(event.reason);callback(event.code,c_str,event.wasClean?1:0);GodotRuntime.free(c_str)},send:function(p_id,p_data){const ref=IDHandler.get(p_id);if(!ref||ref.readyState!==ref.OPEN){return 1}ref.send(p_data);return 0},bufferedAmount:function(p_id){const ref=IDHandler.get(p_id);if(!ref){return 0}return ref.bufferedAmount},create:function(socket,p_on_open,p_on_message,p_on_error,p_on_close){const id=IDHandler.add(socket);socket.onopen=GodotWebSocket._onopen.bind(null,id,p_on_open);socket.onmessage=GodotWebSocket._onmessage.bind(null,id,p_on_message);socket.onerror=GodotWebSocket._onerror.bind(null,id,p_on_error);socket.onclose=GodotWebSocket._onclose.bind(null,id,p_on_close);return id},close:function(p_id,p_code,p_reason){const ref=IDHandler.get(p_id);if(ref&&ref.readyState<ref.CLOSING){const code=p_code;const reason=p_reason;ref.close(code,reason)}},destroy:function(p_id){const ref=IDHandler.get(p_id);if(!ref){return}GodotWebSocket.close(p_id,3001,"destroyed");IDHandler.remove(p_id);ref.onopen=null;ref.onmessage=null;ref.onerror=null;ref.onclose=null}};function _godot_js_websocket_buffered_amount(p_id){return GodotWebSocket.bufferedAmount(p_id)}function _godot_js_websocket_close(p_id,p_code,p_reason){const code=p_code;const reason=GodotRuntime.parseString(p_reason);GodotWebSocket.close(p_id,code,reason)}function _godot_js_websocket_create(p_ref,p_url,p_proto,p_on_open,p_on_message,p_on_error,p_on_close){const on_open=GodotRuntime.get_func(p_on_open).bind(null,p_ref);const on_message=GodotRuntime.get_func(p_on_message).bind(null,p_ref);const on_error=GodotRuntime.get_func(p_on_error).bind(null,p_ref);const on_close=GodotRuntime.get_func(p_on_close).bind(null,p_ref);const url=GodotRuntime.parseString(p_url);const protos=GodotRuntime.parseString(p_proto);let socket=null;try{if(protos){socket=new WebSocket(url,protos.split(","))}else{socket=new WebSocket(url)}}catch(e){return 0}socket.binaryType="arraybuffer";return GodotWebSocket.create(socket,on_open,on_message,on_error,on_close)}function _godot_js_websocket_destroy(p_id){GodotWebSocket.destroy(p_id)}function _godot_js_websocket_send(p_id,p_buf,p_buf_len,p_raw){const bytes_array=new Uint8Array(p_buf_len);let i=0;for(i=0;i<p_buf_len;i++){bytes_array[i]=GodotRuntime.getHeapValue(p_buf+i,"i8")}let out=bytes_array.buffer;if(!p_raw){out=new TextDecoder("utf-8").decode(bytes_array)}return GodotWebSocket.send(p_id,out)}var GodotJSWrapper={proxies:null,cb_ret:null,MyProxy:function(val){const id=IDHandler.add(this);GodotJSWrapper.proxies.set(val,id);let refs=1;this.ref=function(){refs++};this.unref=function(){refs--;if(refs===0){IDHandler.remove(id);GodotJSWrapper.proxies.delete(val)}};this.get_val=function(){return val};this.get_id=function(){return id}},get_proxied:function(val){const id=GodotJSWrapper.proxies.get(val);if(id===undefined){const proxy=new GodotJSWrapper.MyProxy(val);return proxy.get_id()}IDHandler.get(id).ref();return id},get_proxied_value:function(id){const proxy=IDHandler.get(id);if(proxy===undefined){return undefined}return proxy.get_val()},variant2js:function(type,val){switch(type){case 0:return null;case 1:return Boolean(GodotRuntime.getHeapValue(val,"i64"));case 2:{const heap_value=GodotRuntime.getHeapValue(val,"i64");return heap_value>=Number.MIN_SAFE_INTEGER&&heap_value<=Number.MAX_SAFE_INTEGER?Number(heap_value):heap_value}case 3:return Number(GodotRuntime.getHeapValue(val,"double"));case 4:return GodotRuntime.parseString(GodotRuntime.getHeapValue(val,"*"));case 24:return GodotJSWrapper.get_proxied_value(GodotRuntime.getHeapValue(val,"i64"));default:return undefined}},js2variant:function(p_val,p_exchange){if(p_val===undefined||p_val===null){return 0}const type=typeof p_val;if(type==="boolean"){GodotRuntime.setHeapValue(p_exchange,p_val,"i64");return 1}else if(type==="number"){if(Number.isInteger(p_val)){GodotRuntime.setHeapValue(p_exchange,p_val,"i64");return 2}GodotRuntime.setHeapValue(p_exchange,p_val,"double");return 3}else if(type==="bigint"){GodotRuntime.setHeapValue(p_exchange,p_val,"i64");return 2}else if(type==="string"){const c_str=GodotRuntime.allocString(p_val);GodotRuntime.setHeapValue(p_exchange,c_str,"*");return 4}const id=GodotJSWrapper.get_proxied(p_val);GodotRuntime.setHeapValue(p_exchange,id,"i64");return 24},isBuffer:function(obj){return obj instanceof ArrayBuffer||ArrayBuffer.isView(obj)}};function _godot_js_wrapper_create_cb(p_ref,p_func){const func=GodotRuntime.get_func(p_func);let id=0;const cb=function(){if(!GodotJSWrapper.get_proxied_value(id)){return undefined}GodotJSWrapper.cb_ret=null;const args=Array.from(arguments);const argsProxy=new GodotJSWrapper.MyProxy(args);func(p_ref,argsProxy.get_id(),args.length);argsProxy.unref();const ret=GodotJSWrapper.cb_ret;GodotJSWrapper.cb_ret=null;return ret};id=GodotJSWrapper.get_proxied(cb);return id}function _godot_js_wrapper_create_object(p_object,p_args,p_argc,p_convert_callback,p_exchange,p_lock,p_free_lock_callback){const name=GodotRuntime.parseString(p_object);if(typeof window[name]==="undefined"){return-1}const convert=GodotRuntime.get_func(p_convert_callback);const freeLock=GodotRuntime.get_func(p_free_lock_callback);const args=new Array(p_argc);for(let i=0;i<p_argc;i++){const type=convert(p_args,i,p_exchange,p_lock);const lock=GodotRuntime.getHeapValue(p_lock,"*");args[i]=GodotJSWrapper.variant2js(type,p_exchange);if(lock){freeLock(p_lock,type)}}try{const res=new window[name](...args);return GodotJSWrapper.js2variant(res,p_exchange)}catch(e){GodotRuntime.error(`Error calling constructor ${name} with args:`,args,"error:",e);return-1}}function _godot_js_wrapper_interface_get(p_name){const name=GodotRuntime.parseString(p_name);if(typeof window[name]!=="undefined"){return GodotJSWrapper.get_proxied(window[name])}return 0}function _godot_js_wrapper_object_call(p_id,p_method,p_args,p_argc,p_convert_callback,p_exchange,p_lock,p_free_lock_callback){const obj=GodotJSWrapper.get_proxied_value(p_id);if(obj===undefined){return-1}const method=GodotRuntime.parseString(p_method);const convert=GodotRuntime.get_func(p_convert_callback);const freeLock=GodotRuntime.get_func(p_free_lock_callback);const args=new Array(p_argc);for(let i=0;i<p_argc;i++){const type=convert(p_args,i,p_exchange,p_lock);const lock=GodotRuntime.getHeapValue(p_lock,"*");args[i]=GodotJSWrapper.variant2js(type,p_exchange);if(lock){freeLock(p_lock,type)}}try{const res=obj[method](...args);return GodotJSWrapper.js2variant(res,p_exchange)}catch(e){GodotRuntime.error(`Error calling method ${method} on:`,obj,"error:",e);return-1}}function _godot_js_wrapper_object_get(p_id,p_exchange,p_prop){const obj=GodotJSWrapper.get_proxied_value(p_id);if(obj===undefined){return 0}if(p_prop){const prop=GodotRuntime.parseString(p_prop);try{return GodotJSWrapper.js2variant(obj[prop],p_exchange)}catch(e){GodotRuntime.error(`Error getting variable ${prop} on object`,obj);return 0}}return GodotJSWrapper.js2variant(obj,p_exchange)}function _godot_js_wrapper_object_getvar(p_id,p_type,p_exchange){const obj=GodotJSWrapper.get_proxied_value(p_id);if(obj===undefined){return-1}const prop=GodotJSWrapper.variant2js(p_type,p_exchange);if(prop===undefined||prop===null){return-1}try{return GodotJSWrapper.js2variant(obj[prop],p_exchange)}catch(e){GodotRuntime.error(`Error getting variable ${prop} on object`,obj,e);return-1}}function _godot_js_wrapper_object_is_buffer(p_id){const obj=GodotJSWrapper.get_proxied_value(p_id);return GodotJSWrapper.isBuffer(obj)?1:0}function _godot_js_wrapper_object_set(p_id,p_name,p_type,p_exchange){const obj=GodotJSWrapper.get_proxied_value(p_id);if(obj===undefined){return}const name=GodotRuntime.parseString(p_name);try{obj[name]=GodotJSWrapper.variant2js(p_type,p_exchange)}catch(e){GodotRuntime.error(`Error setting variable ${name} on object`,obj)}}function _godot_js_wrapper_object_set_cb_ret(p_val_type,p_val_ex){GodotJSWrapper.cb_ret=GodotJSWrapper.variant2js(p_val_type,p_val_ex)}function _godot_js_wrapper_object_setvar(p_id,p_key_type,p_key_ex,p_val_type,p_val_ex){const obj=GodotJSWrapper.get_proxied_value(p_id);if(obj===undefined){return-1}const key=GodotJSWrapper.variant2js(p_key_type,p_key_ex);try{obj[key]=GodotJSWrapper.variant2js(p_val_type,p_val_ex);return 0}catch(e){GodotRuntime.error(`Error setting variable ${key} on object`,obj);return-1}}function _godot_js_wrapper_object_transfer_buffer(p_id,p_byte_arr,p_byte_arr_write,p_callback){let obj=GodotJSWrapper.get_proxied_value(p_id);if(!GodotJSWrapper.isBuffer(obj)){return}if(ArrayBuffer.isView(obj)&&!(obj instanceof Uint8Array)){obj=new Uint8Array(obj.buffer)}else if(obj instanceof ArrayBuffer){obj=new Uint8Array(obj)}const resizePackedByteArrayAndOpenWrite=GodotRuntime.get_func(p_callback);const bytesPtr=resizePackedByteArrayAndOpenWrite(p_byte_arr,p_byte_arr_write,obj.length);HEAPU8.set(obj,bytesPtr)}function _godot_js_wrapper_object_unref(p_id){const proxy=IDHandler.get(p_id);if(proxy!==undefined){proxy.unref()}}function _godot_webgl2_glFramebufferTextureMultisampleMultiviewOVR(target,attachment,texture,level,samples,base_view_index,num_views){const context=GL.currentContext;if(typeof context.oculusMultiviewExt==="undefined"){const ext=context.GLctx.getExtension("OCULUS_multiview");if(!ext){GodotRuntime.error("Trying to call glFramebufferTextureMultisampleMultiviewOVR() without the OCULUS_multiview extension");return}context.oculusMultiviewExt=ext}const ext=context.oculusMultiviewExt;ext.framebufferTextureMultisampleMultiviewOVR(target,attachment,GL.textures[texture],level,samples,base_view_index,num_views)}function _godot_webgl2_glFramebufferTextureMultiviewOVR(target,attachment,texture,level,base_view_index,num_views){const context=GL.currentContext;if(typeof context.multiviewExt==="undefined"){const ext=context.GLctx.getExtension("OVR_multiview2");if(!ext){GodotRuntime.error("Trying to call glFramebufferTextureMultiviewOVR() without the OVR_multiview2 extension");return}context.multiviewExt=ext}const ext=context.multiviewExt;ext.framebufferTextureMultiviewOVR(target,attachment,GL.textures[texture],level,base_view_index,num_views)}function _godot_webgl2_glGetBufferSubData(target,offset,size,data){const gl_context_handle=_emscripten_webgl_get_current_context();const gl=GL.getContext(gl_context_handle);if(gl){gl.GLctx["getBufferSubData"](target,offset,HEAPU8,data,size)}}var GodotWebXR={gl:null,session:null,gl_binding:null,layer:null,space:null,frame:null,pose:null,view_count:1,input_sources:[,,,,,,,,,,,,,,,],touches:[,,,,],onsimpleevent:null,orig_requestAnimationFrame:null,requestAnimationFrame:callback=>{if(GodotWebXR.session&&GodotWebXR.space){const onFrame=function(time,frame){GodotWebXR.frame=frame;GodotWebXR.pose=frame.getViewerPose(GodotWebXR.space);callback(time);GodotWebXR.frame=null;GodotWebXR.pose=null};GodotWebXR.session.requestAnimationFrame(onFrame)}else{GodotWebXR.orig_requestAnimationFrame(callback)}},monkeyPatchRequestAnimationFrame:enable=>{if(GodotWebXR.orig_requestAnimationFrame===null){GodotWebXR.orig_requestAnimationFrame=Browser.requestAnimationFrame}Browser.requestAnimationFrame=enable?GodotWebXR.requestAnimationFrame:GodotWebXR.orig_requestAnimationFrame},pauseResumeMainLoop:()=>{Browser.mainLoop.pause();runtimeKeepalivePush();window.setTimeout(function(){runtimeKeepalivePop();Browser.mainLoop.resume()},0)},getLayer:()=>{const new_view_count=GodotWebXR.pose?GodotWebXR.pose.views.length:1;let layer=GodotWebXR.layer;if(layer&&GodotWebXR.view_count===new_view_count){return layer}if(!GodotWebXR.session||!GodotWebXR.gl_binding){return null}const gl=GodotWebXR.gl;layer=GodotWebXR.gl_binding.createProjectionLayer({textureType:new_view_count>1?"texture-array":"texture",colorFormat:gl.RGBA8,depthFormat:gl.DEPTH_COMPONENT24});GodotWebXR.session.updateRenderState({layers:[layer]});GodotWebXR.layer=layer;GodotWebXR.view_count=new_view_count;return layer},getSubImage:()=>{if(!GodotWebXR.pose){return null}const layer=GodotWebXR.getLayer();if(layer===null){return null}return GodotWebXR.gl_binding.getViewSubImage(layer,GodotWebXR.pose.views[0])},getTextureId:texture=>{if(texture.name!==undefined){return texture.name}const id=GL.getNewId(GL.textures);texture.name=id;GL.textures[id]=texture;return id},addInputSource:input_source=>{let name=-1;if(input_source.targetRayMode==="tracked-pointer"&&input_source.handedness==="left"){name=0}else if(input_source.targetRayMode==="tracked-pointer"&&input_source.handedness==="right"){name=1}else{for(let i=2;i<16;i++){if(!GodotWebXR.input_sources[i]){name=i;break}}}if(name>=0){GodotWebXR.input_sources[name]=input_source;input_source.name=name;if(input_source.targetRayMode==="screen"){let touch_index=-1;for(let i=0;i<5;i++){if(!GodotWebXR.touches[i]){touch_index=i;break}}if(touch_index>=0){GodotWebXR.touches[touch_index]=input_source;input_source.touch_index=touch_index}}}return name},removeInputSource:input_source=>{if(input_source.name!==undefined){const name=input_source.name;if(name>=0&&name<16){GodotWebXR.input_sources[name]=null}if(input_source.touch_index!==undefined){const touch_index=input_source.touch_index;if(touch_index>=0&&touch_index<5){GodotWebXR.touches[touch_index]=null}}return name}return-1},getInputSourceId:input_source=>{if(input_source!==undefined){return input_source.name}return-1},getTouchIndex:input_source=>{if(input_source.touch_index!==undefined){return input_source.touch_index}return-1}};function _godot_webxr_get_bounds_geometry(r_points){if(!GodotWebXR.space||!GodotWebXR.space.boundsGeometry){return 0}const point_count=GodotWebXR.space.boundsGeometry.length;if(point_count===0){return 0}const buf=GodotRuntime.malloc(point_count*3*4);for(let i=0;i<point_count;i++){const point=GodotWebXR.space.boundsGeometry[i];GodotRuntime.setHeapValue(buf+(i*3+0)*4,point.x,"float");GodotRuntime.setHeapValue(buf+(i*3+1)*4,point.y,"float");GodotRuntime.setHeapValue(buf+(i*3+2)*4,point.z,"float")}GodotRuntime.setHeapValue(r_points,buf,"i32");return point_count}function _godot_webxr_get_color_texture(){const subimage=GodotWebXR.getSubImage();if(subimage===null){return 0}return GodotWebXR.getTextureId(subimage.colorTexture)}function _godot_webxr_get_depth_texture(){const subimage=GodotWebXR.getSubImage();if(subimage===null){return 0}if(!subimage.depthStencilTexture){return 0}return GodotWebXR.getTextureId(subimage.depthStencilTexture)}function _godot_webxr_get_frame_rate(){if(!GodotWebXR.session||GodotWebXR.session.frameRate===undefined){return 0}return GodotWebXR.session.frameRate}function _godot_webxr_get_projection_for_view(p_view,r_transform){if(!GodotWebXR.session||!GodotWebXR.pose){return false}const matrix=GodotWebXR.pose.views[p_view].projectionMatrix;for(let i=0;i<16;i++){GodotRuntime.setHeapValue(r_transform+i*4,matrix[i],"float")}return true}function _godot_webxr_get_render_target_size(r_size){const subimage=GodotWebXR.getSubImage();if(subimage===null){return false}GodotRuntime.setHeapValue(r_size+0,subimage.viewport.width,"i32");GodotRuntime.setHeapValue(r_size+4,subimage.viewport.height,"i32");return true}function _godot_webxr_get_supported_frame_rates(r_frame_rates){if(!GodotWebXR.session||GodotWebXR.session.supportedFrameRates===undefined){return 0}const frame_rate_count=GodotWebXR.session.supportedFrameRates.length;if(frame_rate_count===0){return 0}const buf=GodotRuntime.malloc(frame_rate_count*4);for(let i=0;i<frame_rate_count;i++){GodotRuntime.setHeapValue(buf+i*4,GodotWebXR.session.supportedFrameRates[i],"float")}GodotRuntime.setHeapValue(r_frame_rates,buf,"i32");return frame_rate_count}function _godot_webxr_get_transform_for_view(p_view,r_transform){if(!GodotWebXR.session||!GodotWebXR.pose){return false}const views=GodotWebXR.pose.views;let matrix;if(p_view>=0){matrix=views[p_view].transform.matrix}else{matrix=GodotWebXR.pose.transform.matrix}for(let i=0;i<16;i++){GodotRuntime.setHeapValue(r_transform+i*4,matrix[i],"float")}return true}function _godot_webxr_get_velocity_texture(){const subimage=GodotWebXR.getSubImage();if(subimage===null){return 0}if(!subimage.motionVectorTexture){return 0}return GodotWebXR.getTextureId(subimage.motionVectorTexture)}function _godot_webxr_get_view_count(){if(!GodotWebXR.session||!GodotWebXR.pose){return 1}const view_count=GodotWebXR.pose.views.length;return view_count>0?view_count:1}function _godot_webxr_get_visibility_state(){if(!GodotWebXR.session||!GodotWebXR.session.visibilityState){return 0}return GodotRuntime.allocString(GodotWebXR.session.visibilityState)}var _godot_webxr_initialize=function(p_session_mode,p_required_features,p_optional_features,p_requested_reference_spaces,p_on_session_started,p_on_session_ended,p_on_session_failed,p_on_input_event,p_on_simple_event){GodotWebXR.monkeyPatchRequestAnimationFrame(true);const session_mode=GodotRuntime.parseString(p_session_mode);const required_features=GodotRuntime.parseString(p_required_features).split(",").map(s=>s.trim()).filter(s=>s!=="");const optional_features=GodotRuntime.parseString(p_optional_features).split(",").map(s=>s.trim()).filter(s=>s!=="");const requested_reference_space_types=GodotRuntime.parseString(p_requested_reference_spaces).split(",").map(s=>s.trim());const onstarted=GodotRuntime.get_func(p_on_session_started);const onended=GodotRuntime.get_func(p_on_session_ended);const onfailed=GodotRuntime.get_func(p_on_session_failed);const oninputevent=GodotRuntime.get_func(p_on_input_event);const onsimpleevent=GodotRuntime.get_func(p_on_simple_event);const session_init={};if(required_features.length>0){session_init["requiredFeatures"]=required_features}if(optional_features.length>0){session_init["optionalFeatures"]=optional_features}navigator.xr.requestSession(session_mode,session_init).then(function(session){GodotWebXR.session=session;session.addEventListener("end",function(evt){onended()});session.addEventListener("inputsourceschange",function(evt){evt.added.forEach(GodotWebXR.addInputSource);evt.removed.forEach(GodotWebXR.removeInputSource)});["selectstart","selectend","squeezestart","squeezeend"].forEach((input_event,index)=>{session.addEventListener(input_event,function(evt){GodotWebXR.frame=evt.frame;oninputevent(index,GodotWebXR.getInputSourceId(evt.inputSource));GodotWebXR.frame=null})});session.addEventListener("visibilitychange",function(evt){const c_str=GodotRuntime.allocString("visibility_state_changed");onsimpleevent(c_str);GodotRuntime.free(c_str)});GodotWebXR.onsimpleevent=onsimpleevent;const gl_context_handle=_emscripten_webgl_get_current_context();const gl=GL.getContext(gl_context_handle).GLctx;GodotWebXR.gl=gl;gl.makeXRCompatible().then(function(){GodotWebXR.gl_binding=new XRWebGLBinding(session,gl);GodotWebXR.getLayer();function onReferenceSpaceSuccess(reference_space,reference_space_type){GodotWebXR.space=reference_space;reference_space.onreset=function(evt){const c_str=GodotRuntime.allocString("reference_space_reset");onsimpleevent(c_str);GodotRuntime.free(c_str)};GodotWebXR.pauseResumeMainLoop();window.setTimeout(function(){const reference_space_c_str=GodotRuntime.allocString(reference_space_type);const enabled_features="enabledFeatures"in session?Array.from(session.enabledFeatures):[];const enabled_features_c_str=GodotRuntime.allocString(enabled_features.join(","));const environment_blend_mode="environmentBlendMode"in session?session.environmentBlendMode:"";const environment_blend_mode_c_str=GodotRuntime.allocString(environment_blend_mode);onstarted(reference_space_c_str,enabled_features_c_str,environment_blend_mode_c_str);GodotRuntime.free(reference_space_c_str);GodotRuntime.free(enabled_features_c_str);GodotRuntime.free(environment_blend_mode_c_str)},0)}function requestReferenceSpace(){const reference_space_type=requested_reference_space_types.shift();session.requestReferenceSpace(reference_space_type).then(refSpace=>{onReferenceSpaceSuccess(refSpace,reference_space_type)}).catch(()=>{if(requested_reference_space_types.length===0){const c_str=GodotRuntime.allocString("Unable to get any of the requested reference space types");onfailed(c_str);GodotRuntime.free(c_str)}else{requestReferenceSpace()}})}requestReferenceSpace()}).catch(function(error){const c_str=GodotRuntime.allocString(`Unable to make WebGL context compatible with WebXR: ${error}`);onfailed(c_str);GodotRuntime.free(c_str)})}).catch(function(error){const c_str=GodotRuntime.allocString(`Unable to start session: ${error}`);onfailed(c_str);GodotRuntime.free(c_str)})};function _godot_webxr_is_session_supported(p_session_mode,p_callback){const session_mode=GodotRuntime.parseString(p_session_mode);const cb=GodotRuntime.get_func(p_callback);if(navigator.xr){navigator.xr.isSessionSupported(session_mode).then(function(supported){const c_str=GodotRuntime.allocString(session_mode);cb(c_str,supported?1:0);GodotRuntime.free(c_str)})}else{const c_str=GodotRuntime.allocString(session_mode);cb(c_str,0);GodotRuntime.free(c_str)}}function _godot_webxr_is_supported(){return!!navigator.xr}var _godot_webxr_uninitialize=function(){if(GodotWebXR.session){GodotWebXR.session.end().catch(e=>{})}GodotWebXR.session=null;GodotWebXR.gl_binding=null;GodotWebXR.layer=null;GodotWebXR.space=null;GodotWebXR.frame=null;GodotWebXR.pose=null;GodotWebXR.view_count=1;GodotWebXR.input_sources=new Array(16);GodotWebXR.touches=new Array(5);GodotWebXR.onsimpleevent=null;GodotWebXR.monkeyPatchRequestAnimationFrame(false);GodotWebXR.pauseResumeMainLoop()};function _godot_webxr_update_input_source(p_input_source_id,r_target_pose,r_target_ray_mode,r_touch_index,r_has_grip_pose,r_grip_pose,r_has_standard_mapping,r_button_count,r_buttons,r_axes_count,r_axes,r_has_hand_data,r_hand_joints,r_hand_radii){if(!GodotWebXR.session||!GodotWebXR.frame){return 0}if(p_input_source_id<0||p_input_source_id>=GodotWebXR.input_sources.length||!GodotWebXR.input_sources[p_input_source_id]){return false}const input_source=GodotWebXR.input_sources[p_input_source_id];const frame=GodotWebXR.frame;const space=GodotWebXR.space;const target_pose=frame.getPose(input_source.targetRaySpace,space);if(!target_pose){return false}const target_pose_matrix=target_pose.transform.matrix;for(let i=0;i<16;i++){GodotRuntime.setHeapValue(r_target_pose+i*4,target_pose_matrix[i],"float")}let target_ray_mode=0;switch(input_source.targetRayMode){case"gaze":target_ray_mode=1;break;case"tracked-pointer":target_ray_mode=2;break;case"screen":target_ray_mode=3;break;default:}GodotRuntime.setHeapValue(r_target_ray_mode,target_ray_mode,"i32");GodotRuntime.setHeapValue(r_touch_index,GodotWebXR.getTouchIndex(input_source),"i32");let has_grip_pose=false;if(input_source.gripSpace){const grip_pose=frame.getPose(input_source.gripSpace,space);if(grip_pose){const grip_pose_matrix=grip_pose.transform.matrix;for(let i=0;i<16;i++){GodotRuntime.setHeapValue(r_grip_pose+i*4,grip_pose_matrix[i],"float")}has_grip_pose=true}}GodotRuntime.setHeapValue(r_has_grip_pose,has_grip_pose?1:0,"i32");let has_standard_mapping=false;let button_count=0;let axes_count=0;if(input_source.gamepad){if(input_source.gamepad.mapping==="xr-standard"){has_standard_mapping=true}button_count=Math.min(input_source.gamepad.buttons.length,10);for(let i=0;i<button_count;i++){GodotRuntime.setHeapValue(r_buttons+i*4,input_source.gamepad.buttons[i].value,"float")}axes_count=Math.min(input_source.gamepad.axes.length,10);for(let i=0;i<axes_count;i++){GodotRuntime.setHeapValue(r_axes+i*4,input_source.gamepad.axes[i],"float")}}GodotRuntime.setHeapValue(r_has_standard_mapping,has_standard_mapping?1:0,"i32");GodotRuntime.setHeapValue(r_button_count,button_count,"i32");GodotRuntime.setHeapValue(r_axes_count,axes_count,"i32");let has_hand_data=false;if(input_source.hand&&r_hand_joints!==0&&r_hand_radii!==0){const hand_joint_array=new Float32Array(25*16);const hand_radii_array=new Float32Array(25);if(frame.fillPoses(input_source.hand.values(),space,hand_joint_array)&&frame.fillJointRadii(input_source.hand.values(),hand_radii_array)){GodotRuntime.heapCopy(HEAPF32,hand_joint_array,r_hand_joints);GodotRuntime.heapCopy(HEAPF32,hand_radii_array,r_hand_radii);has_hand_data=true}}GodotRuntime.setHeapValue(r_has_hand_data,has_hand_data?1:0,"i32");return true}function _godot_webxr_update_target_frame_rate(p_frame_rate){if(!GodotWebXR.session||GodotWebXR.session.updateTargetFrameRate===undefined){return}GodotWebXR.session.updateTargetFrameRate(p_frame_rate).then(()=>{const c_str=GodotRuntime.allocString("display_refresh_rate_changed");GodotWebXR.onsimpleevent(c_str);GodotRuntime.free(c_str)})}var stackAlloc=sz=>__emscripten_stack_alloc(sz);var stringToUTF8OnStack=str=>{var size=lengthBytesUTF8(str)+1;var ret=stackAlloc(size);stringToUTF8(str,ret,size);return ret};var getCFunc=ident=>{var func=Module["_"+ident];assert(func,"Cannot call unknown function "+ident+", make sure it is exported");return func};var writeArrayToMemory=(array,buffer)=>{assert(array.length>=0,"writeArrayToMemory array must have a length (should be an array or typed array)");HEAP8.set(array,buffer)};var stackSave=()=>_emscripten_stack_get_current();var stackRestore=val=>__emscripten_stack_restore(val);var ccall=(ident,returnType,argTypes,args,opts)=>{var toC={string:str=>{var ret=0;if(str!==null&&str!==undefined&&str!==0){ret=stringToUTF8OnStack(str)}return ret},array:arr=>{var ret=stackAlloc(arr.length);writeArrayToMemory(arr,ret);return ret}};function convertReturnValue(ret){if(returnType==="string"){return UTF8ToString(ret)}if(returnType==="boolean")return Boolean(ret);return ret}var func=getCFunc(ident);var cArgs=[];var stack=0;assert(returnType!=="array",'Return type should not be "array".');if(args){for(var i=0;i<args.length;i++){var converter=toC[argTypes[i]];if(converter){if(stack===0)stack=stackSave();cArgs[i]=converter(args[i])}else{cArgs[i]=args[i]}}}var ret=func(...cArgs);function onDone(ret){if(stack!==0)stackRestore(stack);return convertReturnValue(ret)}ret=onDone(ret);return ret};var cwrap=(ident,returnType,argTypes,opts)=>(...args)=>ccall(ident,returnType,argTypes,args,opts);FS.createPreloadedFile=FS_createPreloadedFile;FS.staticInit();Module["requestFullscreen"]=Browser.requestFullscreen;Module["requestFullScreen"]=Browser.requestFullScreen;Module["requestAnimationFrame"]=Browser.requestAnimationFrame;Module["setCanvasSize"]=Browser.setCanvasSize;Module["pauseMainLoop"]=Browser.mainLoop.pause;Module["resumeMainLoop"]=Browser.mainLoop.resume;Module["getUserMedia"]=Browser.getUserMedia;Module["createContext"]=Browser.createContext;var preloadedImages={};var preloadedAudios={};var GLctx;for(var i=0;i<32;++i)tempFixedLengthArray.push(new Array(i));var miniTempWebGLIntBuffersStorage=new Int32Array(288);for(var i=0;i<=288;++i){miniTempWebGLIntBuffers[i]=miniTempWebGLIntBuffersStorage.subarray(0,i)}var miniTempWebGLFloatBuffersStorage=new Float32Array(288);for(var i=0;i<=288;++i){miniTempWebGLFloatBuffers[i]=miniTempWebGLFloatBuffersStorage.subarray(0,i)}Module["request_quit"]=function(){GodotOS.request_quit()};Module["onExit"]=GodotOS.cleanup;GodotOS._fs_sync_promise=Promise.resolve();Module["initConfig"]=GodotConfig.init_config;Module["initFS"]=GodotFS.init;Module["copyToFS"]=GodotFS.copy_to_fs;GodotOS.atexit(function(resolve,reject){GodotDisplayCursor.clear();resolve()});GodotOS.atexit(function(resolve,reject){GodotEventListeners.clear();resolve()});GodotOS.atexit(function(resolve,reject){GodotDisplayVK.clear();resolve()});GodotOS.atexit(function(resolve,reject){GodotIME.clear();resolve()});GodotJSWrapper.proxies=new Map;function checkIncomingModuleAPI(){ignoredModuleProp("fetchSettings")}var wasmImports={__assert_fail:___assert_fail,__call_sighandler:___call_sighandler,__syscall_chdir:___syscall_chdir,__syscall_chmod:___syscall_chmod,__syscall_faccessat:___syscall_faccessat,__syscall_fchmod:___syscall_fchmod,__syscall_fcntl64:___syscall_fcntl64,__syscall_fstat64:___syscall_fstat64,__syscall_ftruncate64:___syscall_ftruncate64,__syscall_getcwd:___syscall_getcwd,__syscall_getdents64:___syscall_getdents64,__syscall_ioctl:___syscall_ioctl,__syscall_lstat64:___syscall_lstat64,__syscall_mkdirat:___syscall_mkdirat,__syscall_mknodat:___syscall_mknodat,__syscall_newfstatat:___syscall_newfstatat,__syscall_openat:___syscall_openat,__syscall_readlinkat:___syscall_readlinkat,__syscall_renameat:___syscall_renameat,__syscall_rmdir:___syscall_rmdir,__syscall_stat64:___syscall_stat64,__syscall_statfs64:___syscall_statfs64,__syscall_symlink:___syscall_symlink,__syscall_unlinkat:___syscall_unlinkat,_abort_js:__abort_js,_emscripten_get_now_is_monotonic:__emscripten_get_now_is_monotonic,_emscripten_runtime_keepalive_clear:__emscripten_runtime_keepalive_clear,_gmtime_js:__gmtime_js,_localtime_js:__localtime_js,_tzset_js:__tzset_js,emscripten_cancel_main_loop:_emscripten_cancel_main_loop,emscripten_date_now:_emscripten_date_now,emscripten_err:_emscripten_err,emscripten_force_exit:_emscripten_force_exit,emscripten_get_heap_max:_emscripten_get_heap_max,emscripten_get_now:_emscripten_get_now,emscripten_resize_heap:_emscripten_resize_heap,emscripten_set_canvas_element_size:_emscripten_set_canvas_element_size,emscripten_set_main_loop:_emscripten_set_main_loop,emscripten_webgl_commit_frame:_emscripten_webgl_commit_frame,emscripten_webgl_create_context:_emscripten_webgl_create_context,emscripten_webgl_destroy_context:_emscripten_webgl_destroy_context,emscripten_webgl_enable_extension:_emscripten_webgl_enable_extension,emscripten_webgl_get_supported_extensions:_emscripten_webgl_get_supported_extensions,emscripten_webgl_make_context_current:_emscripten_webgl_make_context_current,environ_get:_environ_get,environ_sizes_get:_environ_sizes_get,exit:_exit,fd_close:_fd_close,fd_fdstat_get:_fd_fdstat_get,fd_read:_fd_read,fd_seek:_fd_seek,fd_write:_fd_write,glActiveTexture:_glActiveTexture,glAttachShader:_glAttachShader,glBeginTransformFeedback:_glBeginTransformFeedback,glBindBuffer:_glBindBuffer,glBindBufferBase:_glBindBufferBase,glBindBufferRange:_glBindBufferRange,glBindFramebuffer:_glBindFramebuffer,glBindRenderbuffer:_glBindRenderbuffer,glBindTexture:_glBindTexture,glBindVertexArray:_glBindVertexArray,glBlendColor:_glBlendColor,glBlendEquation:_glBlendEquation,glBlendFunc:_glBlendFunc,glBlendFuncSeparate:_glBlendFuncSeparate,glBlitFramebuffer:_glBlitFramebuffer,glBufferData:_glBufferData,glBufferSubData:_glBufferSubData,glCheckFramebufferStatus:_glCheckFramebufferStatus,glClear:_glClear,glClearBufferfv:_glClearBufferfv,glClearColor:_glClearColor,glClearDepthf:_glClearDepthf,glColorMask:_glColorMask,glCompileShader:_glCompileShader,glCompressedTexImage2D:_glCompressedTexImage2D,glCompressedTexImage3D:_glCompressedTexImage3D,glCompressedTexSubImage3D:_glCompressedTexSubImage3D,glCopyBufferSubData:_glCopyBufferSubData,glCreateProgram:_glCreateProgram,glCreateShader:_glCreateShader,glCullFace:_glCullFace,glDeleteBuffers:_glDeleteBuffers,glDeleteFramebuffers:_glDeleteFramebuffers,glDeleteProgram:_glDeleteProgram,glDeleteQueries:_glDeleteQueries,glDeleteRenderbuffers:_glDeleteRenderbuffers,glDeleteShader:_glDeleteShader,glDeleteSync:_glDeleteSync,glDeleteTextures:_glDeleteTextures,glDeleteVertexArrays:_glDeleteVertexArrays,glDepthFunc:_glDepthFunc,glDepthMask:_glDepthMask,glDisable:_glDisable,glDisableVertexAttribArray:_glDisableVertexAttribArray,glDrawArrays:_glDrawArrays,glDrawArraysInstanced:_glDrawArraysInstanced,glDrawBuffers:_glDrawBuffers,glDrawElements:_glDrawElements,glDrawElementsInstanced:_glDrawElementsInstanced,glEnable:_glEnable,glEnableVertexAttribArray:_glEnableVertexAttribArray,glEndTransformFeedback:_glEndTransformFeedback,glFenceSync:_glFenceSync,glFinish:_glFinish,glFramebufferRenderbuffer:_glFramebufferRenderbuffer,glFramebufferTexture2D:_glFramebufferTexture2D,glFramebufferTextureLayer:_glFramebufferTextureLayer,glFrontFace:_glFrontFace,glGenBuffers:_glGenBuffers,glGenFramebuffers:_glGenFramebuffers,glGenQueries:_glGenQueries,glGenRenderbuffers:_glGenRenderbuffers,glGenTextures:_glGenTextures,glGenVertexArrays:_glGenVertexArrays,glGenerateMipmap:_glGenerateMipmap,glGetFloatv:_glGetFloatv,glGetInteger64v:_glGetInteger64v,glGetIntegerv:_glGetIntegerv,glGetProgramInfoLog:_glGetProgramInfoLog,glGetProgramiv:_glGetProgramiv,glGetShaderInfoLog:_glGetShaderInfoLog,glGetShaderiv:_glGetShaderiv,glGetString:_glGetString,glGetSynciv:_glGetSynciv,glGetUniformBlockIndex:_glGetUniformBlockIndex,glGetUniformLocation:_glGetUniformLocation,glLinkProgram:_glLinkProgram,glPixelStorei:_glPixelStorei,glReadBuffer:_glReadBuffer,glReadPixels:_glReadPixels,glRenderbufferStorage:_glRenderbufferStorage,glRenderbufferStorageMultisample:_glRenderbufferStorageMultisample,glScissor:_glScissor,glShaderSource:_glShaderSource,glTexImage2D:_glTexImage2D,glTexImage3D:_glTexImage3D,glTexParameterf:_glTexParameterf,glTexParameteri:_glTexParameteri,glTexStorage2D:_glTexStorage2D,glTexSubImage3D:_glTexSubImage3D,glTransformFeedbackVaryings:_glTransformFeedbackVaryings,glUniform1f:_glUniform1f,glUniform1i:_glUniform1i,glUniform1iv:_glUniform1iv,glUniform1ui:_glUniform1ui,glUniform1uiv:_glUniform1uiv,glUniform2f:_glUniform2f,glUniform2fv:_glUniform2fv,glUniform2iv:_glUniform2iv,glUniform3fv:_glUniform3fv,glUniform4f:_glUniform4f,glUniform4fv:_glUniform4fv,glUniformBlockBinding:_glUniformBlockBinding,glUniformMatrix3fv:_glUniformMatrix3fv,glUniformMatrix4fv:_glUniformMatrix4fv,glUseProgram:_glUseProgram,glVertexAttrib4f:_glVertexAttrib4f,glVertexAttribDivisor:_glVertexAttribDivisor,glVertexAttribI4ui:_glVertexAttribI4ui,glVertexAttribIPointer:_glVertexAttribIPointer,glVertexAttribPointer:_glVertexAttribPointer,glViewport:_glViewport,godot_audio_get_sample_playback_position:_godot_audio_get_sample_playback_position,godot_audio_has_script_processor:_godot_audio_has_script_processor,godot_audio_has_worklet:_godot_audio_has_worklet,godot_audio_init:_godot_audio_init,godot_audio_input_start:_godot_audio_input_start,godot_audio_input_stop:_godot_audio_input_stop,godot_audio_is_available:_godot_audio_is_available,godot_audio_resume:_godot_audio_resume,godot_audio_sample_bus_add:_godot_audio_sample_bus_add,godot_audio_sample_bus_move:_godot_audio_sample_bus_move,godot_audio_sample_bus_remove:_godot_audio_sample_bus_remove,godot_audio_sample_bus_set_count:_godot_audio_sample_bus_set_count,godot_audio_sample_bus_set_mute:_godot_audio_sample_bus_set_mute,godot_audio_sample_bus_set_send:_godot_audio_sample_bus_set_send,godot_audio_sample_bus_set_solo:_godot_audio_sample_bus_set_solo,godot_audio_sample_bus_set_volume_db:_godot_audio_sample_bus_set_volume_db,godot_audio_sample_is_active:_godot_audio_sample_is_active,godot_audio_sample_register_stream:_godot_audio_sample_register_stream,godot_audio_sample_set_finished_callback:_godot_audio_sample_set_finished_callback,godot_audio_sample_set_pause:_godot_audio_sample_set_pause,godot_audio_sample_set_volumes_linear:_godot_audio_sample_set_volumes_linear,godot_audio_sample_start:_godot_audio_sample_start,godot_audio_sample_stop:_godot_audio_sample_stop,godot_audio_sample_stream_is_registered:_godot_audio_sample_stream_is_registered,godot_audio_sample_unregister_stream:_godot_audio_sample_unregister_stream,godot_audio_sample_update_pitch_scale:_godot_audio_sample_update_pitch_scale,godot_audio_script_create:_godot_audio_script_create,godot_audio_script_start:_godot_audio_script_start,godot_audio_worklet_create:_godot_audio_worklet_create,godot_audio_worklet_start_no_threads:_godot_audio_worklet_start_no_threads,godot_js_config_canvas_id_get:_godot_js_config_canvas_id_get,godot_js_config_locale_get:_godot_js_config_locale_get,godot_js_display_alert:_godot_js_display_alert,godot_js_display_canvas_focus:_godot_js_display_canvas_focus,godot_js_display_canvas_is_focused:_godot_js_display_canvas_is_focused,godot_js_display_clipboard_get:_godot_js_display_clipboard_get,godot_js_display_clipboard_set:_godot_js_display_clipboard_set,godot_js_display_cursor_is_hidden:_godot_js_display_cursor_is_hidden,godot_js_display_cursor_is_locked:_godot_js_display_cursor_is_locked,godot_js_display_cursor_lock_set:_godot_js_display_cursor_lock_set,godot_js_display_cursor_set_custom_shape:_godot_js_display_cursor_set_custom_shape,godot_js_display_cursor_set_shape:_godot_js_display_cursor_set_shape,godot_js_display_cursor_set_visible:_godot_js_display_cursor_set_visible,godot_js_display_desired_size_set:_godot_js_display_desired_size_set,godot_js_display_fullscreen_cb:_godot_js_display_fullscreen_cb,godot_js_display_fullscreen_exit:_godot_js_display_fullscreen_exit,godot_js_display_fullscreen_request:_godot_js_display_fullscreen_request,godot_js_display_has_webgl:_godot_js_display_has_webgl,godot_js_display_is_swap_ok_cancel:_godot_js_display_is_swap_ok_cancel,godot_js_display_notification_cb:_godot_js_display_notification_cb,godot_js_display_pixel_ratio_get:_godot_js_display_pixel_ratio_get,godot_js_display_screen_dpi_get:_godot_js_display_screen_dpi_get,godot_js_display_screen_size_get:_godot_js_display_screen_size_get,godot_js_display_setup_canvas:_godot_js_display_setup_canvas,godot_js_display_size_update:_godot_js_display_size_update,godot_js_display_touchscreen_is_available:_godot_js_display_touchscreen_is_available,godot_js_display_tts_available:_godot_js_display_tts_available,godot_js_display_vk_available:_godot_js_display_vk_available,godot_js_display_vk_cb:_godot_js_display_vk_cb,godot_js_display_vk_hide:_godot_js_display_vk_hide,godot_js_display_vk_show:_godot_js_display_vk_show,godot_js_display_window_blur_cb:_godot_js_display_window_blur_cb,godot_js_display_window_icon_set:_godot_js_display_window_icon_set,godot_js_display_window_size_get:_godot_js_display_window_size_get,godot_js_display_window_title_set:_godot_js_display_window_title_set,godot_js_eval:_godot_js_eval,godot_js_fetch_create:_godot_js_fetch_create,godot_js_fetch_free:_godot_js_fetch_free,godot_js_fetch_http_status_get:_godot_js_fetch_http_status_get,godot_js_fetch_is_chunked:_godot_js_fetch_is_chunked,godot_js_fetch_read_chunk:_godot_js_fetch_read_chunk,godot_js_fetch_read_headers:_godot_js_fetch_read_headers,godot_js_fetch_state_get:_godot_js_fetch_state_get,godot_js_input_drop_files_cb:_godot_js_input_drop_files_cb,godot_js_input_gamepad_cb:_godot_js_input_gamepad_cb,godot_js_input_gamepad_sample:_godot_js_input_gamepad_sample,godot_js_input_gamepad_sample_count:_godot_js_input_gamepad_sample_count,godot_js_input_gamepad_sample_get:_godot_js_input_gamepad_sample_get,godot_js_input_key_cb:_godot_js_input_key_cb,godot_js_input_mouse_button_cb:_godot_js_input_mouse_button_cb,godot_js_input_mouse_move_cb:_godot_js_input_mouse_move_cb,godot_js_input_mouse_wheel_cb:_godot_js_input_mouse_wheel_cb,godot_js_input_paste_cb:_godot_js_input_paste_cb,godot_js_input_touch_cb:_godot_js_input_touch_cb,godot_js_input_vibrate_handheld:_godot_js_input_vibrate_handheld,godot_js_is_ime_focused:_godot_js_is_ime_focused,godot_js_os_download_buffer:_godot_js_os_download_buffer,godot_js_os_execute:_godot_js_os_execute,godot_js_os_finish_async:_godot_js_os_finish_async,godot_js_os_fs_is_persistent:_godot_js_os_fs_is_persistent,godot_js_os_fs_sync:_godot_js_os_fs_sync,godot_js_os_has_feature:_godot_js_os_has_feature,godot_js_os_hw_concurrency_get:_godot_js_os_hw_concurrency_get,godot_js_os_request_quit_cb:_godot_js_os_request_quit_cb,godot_js_os_shell_open:_godot_js_os_shell_open,godot_js_pwa_cb:_godot_js_pwa_cb,godot_js_pwa_update:_godot_js_pwa_update,godot_js_rtc_datachannel_close:_godot_js_rtc_datachannel_close,godot_js_rtc_datachannel_connect:_godot_js_rtc_datachannel_connect,godot_js_rtc_datachannel_destroy:_godot_js_rtc_datachannel_destroy,godot_js_rtc_datachannel_get_buffered_amount:_godot_js_rtc_datachannel_get_buffered_amount,godot_js_rtc_datachannel_id_get:_godot_js_rtc_datachannel_id_get,godot_js_rtc_datachannel_is_negotiated:_godot_js_rtc_datachannel_is_negotiated,godot_js_rtc_datachannel_is_ordered:_godot_js_rtc_datachannel_is_ordered,godot_js_rtc_datachannel_label_get:_godot_js_rtc_datachannel_label_get,godot_js_rtc_datachannel_max_packet_lifetime_get:_godot_js_rtc_datachannel_max_packet_lifetime_get,godot_js_rtc_datachannel_max_retransmits_get:_godot_js_rtc_datachannel_max_retransmits_get,godot_js_rtc_datachannel_protocol_get:_godot_js_rtc_datachannel_protocol_get,godot_js_rtc_datachannel_ready_state_get:_godot_js_rtc_datachannel_ready_state_get,godot_js_rtc_datachannel_send:_godot_js_rtc_datachannel_send,godot_js_rtc_pc_close:_godot_js_rtc_pc_close,godot_js_rtc_pc_create:_godot_js_rtc_pc_create,godot_js_rtc_pc_datachannel_create:_godot_js_rtc_pc_datachannel_create,godot_js_rtc_pc_destroy:_godot_js_rtc_pc_destroy,godot_js_rtc_pc_ice_candidate_add:_godot_js_rtc_pc_ice_candidate_add,godot_js_rtc_pc_local_description_set:_godot_js_rtc_pc_local_description_set,godot_js_rtc_pc_offer_create:_godot_js_rtc_pc_offer_create,godot_js_rtc_pc_remote_description_set:_godot_js_rtc_pc_remote_description_set,godot_js_set_ime_active:_godot_js_set_ime_active,godot_js_set_ime_cb:_godot_js_set_ime_cb,godot_js_set_ime_position:_godot_js_set_ime_position,godot_js_tts_get_voices:_godot_js_tts_get_voices,godot_js_tts_is_paused:_godot_js_tts_is_paused,godot_js_tts_is_speaking:_godot_js_tts_is_speaking,godot_js_tts_pause:_godot_js_tts_pause,godot_js_tts_resume:_godot_js_tts_resume,godot_js_tts_speak:_godot_js_tts_speak,godot_js_tts_stop:_godot_js_tts_stop,godot_js_webmidi_close_midi_inputs:_godot_js_webmidi_close_midi_inputs,godot_js_webmidi_open_midi_inputs:_godot_js_webmidi_open_midi_inputs,godot_js_websocket_buffered_amount:_godot_js_websocket_buffered_amount,godot_js_websocket_close:_godot_js_websocket_close,godot_js_websocket_create:_godot_js_websocket_create,godot_js_websocket_destroy:_godot_js_websocket_destroy,godot_js_websocket_send:_godot_js_websocket_send,godot_js_wrapper_create_cb:_godot_js_wrapper_create_cb,godot_js_wrapper_create_object:_godot_js_wrapper_create_object,godot_js_wrapper_interface_get:_godot_js_wrapper_interface_get,godot_js_wrapper_object_call:_godot_js_wrapper_object_call,godot_js_wrapper_object_get:_godot_js_wrapper_object_get,godot_js_wrapper_object_getvar:_godot_js_wrapper_object_getvar,godot_js_wrapper_object_is_buffer:_godot_js_wrapper_object_is_buffer,godot_js_wrapper_object_set:_godot_js_wrapper_object_set,godot_js_wrapper_object_set_cb_ret:_godot_js_wrapper_object_set_cb_ret,godot_js_wrapper_object_setvar:_godot_js_wrapper_object_setvar,godot_js_wrapper_object_transfer_buffer:_godot_js_wrapper_object_transfer_buffer,godot_js_wrapper_object_unref:_godot_js_wrapper_object_unref,godot_webgl2_glFramebufferTextureMultisampleMultiviewOVR:_godot_webgl2_glFramebufferTextureMultisampleMultiviewOVR,godot_webgl2_glFramebufferTextureMultiviewOVR:_godot_webgl2_glFramebufferTextureMultiviewOVR,godot_webgl2_glGetBufferSubData:_godot_webgl2_glGetBufferSubData,godot_webxr_get_bounds_geometry:_godot_webxr_get_bounds_geometry,godot_webxr_get_color_texture:_godot_webxr_get_color_texture,godot_webxr_get_depth_texture:_godot_webxr_get_depth_texture,godot_webxr_get_frame_rate:_godot_webxr_get_frame_rate,godot_webxr_get_projection_for_view:_godot_webxr_get_projection_for_view,godot_webxr_get_render_target_size:_godot_webxr_get_render_target_size,godot_webxr_get_supported_frame_rates:_godot_webxr_get_supported_frame_rates,godot_webxr_get_transform_for_view:_godot_webxr_get_transform_for_view,godot_webxr_get_velocity_texture:_godot_webxr_get_velocity_texture,godot_webxr_get_view_count:_godot_webxr_get_view_count,godot_webxr_get_visibility_state:_godot_webxr_get_visibility_state,godot_webxr_initialize:_godot_webxr_initialize,godot_webxr_is_session_supported:_godot_webxr_is_session_supported,godot_webxr_is_supported:_godot_webxr_is_supported,godot_webxr_uninitialize:_godot_webxr_uninitialize,godot_webxr_update_input_source:_godot_webxr_update_input_source,godot_webxr_update_target_frame_rate:_godot_webxr_update_target_frame_rate,proc_exit:_proc_exit};var wasmExports=createWasm();var ___wasm_call_ctors=createExportWrapper("__wasm_call_ctors",0);var _free=createExportWrapper("free",1);var __Z14godot_web_mainiPPc=Module["__Z14godot_web_mainiPPc"]=createExportWrapper("_Z14godot_web_mainiPPc",2);var _main=Module["_main"]=createExportWrapper("__main_argc_argv",2);var _malloc=createExportWrapper("malloc",1);var _fflush=createExportWrapper("fflush",1);var __emwebxr_on_input_event=Module["__emwebxr_on_input_event"]=createExportWrapper("_emwebxr_on_input_event",2);var __emwebxr_on_simple_event=Module["__emwebxr_on_simple_event"]=createExportWrapper("_emwebxr_on_simple_event",1);var _strerror=createExportWrapper("strerror",1);var ___funcs_on_exit=createExportWrapper("__funcs_on_exit",0);var _emscripten_stack_init=()=>(_emscripten_stack_init=wasmExports["emscripten_stack_init"])();var _emscripten_stack_get_free=()=>(_emscripten_stack_get_free=wasmExports["emscripten_stack_get_free"])();var _emscripten_stack_get_base=()=>(_emscripten_stack_get_base=wasmExports["emscripten_stack_get_base"])();var _emscripten_stack_get_end=()=>(_emscripten_stack_get_end=wasmExports["emscripten_stack_get_end"])();var __emscripten_stack_restore=a0=>(__emscripten_stack_restore=wasmExports["_emscripten_stack_restore"])(a0);var __emscripten_stack_alloc=a0=>(__emscripten_stack_alloc=wasmExports["_emscripten_stack_alloc"])(a0);var _emscripten_stack_get_current=()=>(_emscripten_stack_get_current=wasmExports["emscripten_stack_get_current"])();Module["callMain"]=callMain;Module["cwrap"]=cwrap;var missingLibrarySymbols=["writeI53ToI64Clamped","writeI53ToI64Signaling","writeI53ToU64Clamped","writeI53ToU64Signaling","convertI32PairToI53","convertI32PairToI53Checked","convertU32PairToI53","getTempRet0","setTempRet0","arraySum","addDays","inetPton4","inetNtop4","inetPton6","inetNtop6","readSockaddr","writeSockaddr","emscriptenLog","readEmAsmArgs","listenOnce","autoResumeAudioContext","getDynCaller","dynCall","setWasmTableEntry","asmjsMangle","HandleAllocator","getNativeTypeSize","STACK_SIZE","STACK_ALIGN","POINTER_SIZE","ASSERTIONS","uleb128Encode","sigToWasmTypes","generateFuncType","convertJsFunctionToWasm","getEmptyTableSlot","updateTableMap","getFunctionAddress","addFunction","removeFunction","reallyNegative","unSign","strLen","reSign","formatString","intArrayToString","AsciiToString","UTF16ToString","stringToUTF16","lengthBytesUTF16","UTF32ToString","stringToUTF32","lengthBytesUTF32","registerKeyEventCallback","getBoundingClientRect","fillMouseEventData","registerMouseEventCallback","registerWheelEventCallback","registerUiEventCallback","registerFocusEventCallback","fillDeviceOrientationEventData","registerDeviceOrientationEventCallback","fillDeviceMotionEventData","registerDeviceMotionEventCallback","screenOrientation","fillOrientationChangeEventData","registerOrientationChangeEventCallback","fillFullscreenChangeEventData","registerFullscreenChangeEventCallback","JSEvents_requestFullscreen","JSEvents_resizeCanvasForFullscreen","registerRestoreOldStyle","hideEverythingExceptGivenElement","restoreHiddenElements","setLetterbox","softFullscreenResizeWebGLRenderTarget","doRequestFullscreen","fillPointerlockChangeEventData","registerPointerlockChangeEventCallback","registerPointerlockErrorEventCallback","requestPointerLock","fillVisibilityChangeEventData","registerVisibilityChangeEventCallback","registerTouchEventCallback","fillGamepadEventData","registerGamepadEventCallback","registerBeforeUnloadEventCallback","fillBatteryEventData","battery","registerBatteryEventCallback","setCanvasElementSize","getCanvasElementSize","jsStackTrace","getCallstack","convertPCtoSourceLocation","checkWasiClock","wasiRightsToMuslOFlags","wasiOFlagsToMuslOFlags","createDyncallWrapper","setImmediateWrapped","clearImmediateWrapped","polyfillSetImmediate","getPromise","makePromise","idsToPromises","makePromiseCallback","Browser_asyncPrepareDataCounter","getSocketFromFD","getSocketAddress","FS_unlink","FS_mkdirTree","_setNetworkCallback","emscriptenWebGLGetUniform","emscriptenWebGLGetVertexAttrib","__glGetActiveAttribOrUniform","writeGLArray","registerWebGlEventCallback","runAndAbortIfError","emscriptenWebGLGetIndexed","ALLOC_NORMAL","ALLOC_STACK","allocate","writeStringToMemory","writeAsciiToMemory","setErrNo","demangle","stackTrace"];missingLibrarySymbols.forEach(missingLibrarySymbol);var unexportedSymbols=["run","addOnPreRun","addOnInit","addOnPreMain","addOnExit","addOnPostRun","addRunDependency","removeRunDependency","out","err","abort","wasmMemory","wasmExports","writeStackCookie","checkStackCookie","writeI53ToI64","readI53FromI64","readI53FromU64","INT53_MAX","INT53_MIN","bigintToI53Checked","stackSave","stackRestore","stackAlloc","ptrToString","zeroMemory","exitJS","getHeapMax","growMemory","ENV","MONTH_DAYS_REGULAR","MONTH_DAYS_LEAP","MONTH_DAYS_REGULAR_CUMULATIVE","MONTH_DAYS_LEAP_CUMULATIVE","isLeapYear","ydayFromDate","ERRNO_CODES","strError","DNS","Protocols","Sockets","initRandomFill","randomFill","timers","warnOnce","readEmAsmArgsArray","jstoi_q","jstoi_s","getExecutableName","getWasmTableEntry","handleException","keepRuntimeAlive","runtimeKeepalivePush","runtimeKeepalivePop","callUserCallback","maybeExit","asyncLoad","alignMemory","mmapAlloc","wasmTable","noExitRuntime","getCFunc","ccall","freeTableIndexes","functionsInTableMap","setValue","getValue","PATH","PATH_FS","UTF8Decoder","UTF8ArrayToString","UTF8ToString","stringToUTF8Array","stringToUTF8","lengthBytesUTF8","intArrayFromString","stringToAscii","UTF16Decoder","stringToNewUTF8","stringToUTF8OnStack","writeArrayToMemory","JSEvents","specialHTMLTargets","maybeCStringToJsString","findEventTarget","findCanvasEventTarget","currentFullscreenStrategy","restoreOldWindowedStyle","UNWIND_CACHE","ExitStatus","getEnvStrings","doReadv","doWritev","safeSetTimeout","promiseMap","Browser","setMainLoop","getPreloadedImageData__data","wget","SYSCALLS","preloadPlugins","FS_createPreloadedFile","FS_modeStringToFlags","FS_getMode","FS_stdin_getChar_buffer","FS_stdin_getChar","FS_createPath","FS_createDevice","FS_readFile","FS","FS_createDataFile","FS_createLazyFile","MEMFS","TTY","PIPEFS","SOCKFS","tempFixedLengthArray","miniTempWebGLFloatBuffers","miniTempWebGLIntBuffers","heapObjectForWebGLType","toTypedArrayIndex","webgl_enable_ANGLE_instanced_arrays","webgl_enable_OES_vertex_array_object","webgl_enable_WEBGL_draw_buffers","webgl_enable_WEBGL_multi_draw","GL","emscriptenWebGLGet","computeUnpackAlignedImageSize","colorChannelsInGlTextureFormat","emscriptenWebGLGetTexPixelData","webglGetUniformLocation","webglPrepareUniformLocationsBeforeFirstUse","webglGetLeftBracePos","AL","GLUT","EGL","GLEW","IDBStore","SDL","SDL_gfx","webgl_enable_WEBGL_draw_instanced_base_vertex_base_instance","webgl_enable_WEBGL_multi_draw_instanced_base_vertex_base_instance","allocateUTF8","allocateUTF8OnStack","print","printErr","GodotWebXR","GodotWebSocket","GodotRTCDataChannel","GodotRTCPeerConnection","GodotAudio","GodotAudioWorklet","GodotAudioScript","GodotDisplayVK","GodotDisplayCursor","GodotDisplayScreen","GodotDisplay","GodotFetch","GodotWebMidi","IDHandler","GodotConfig","GodotFS","GodotOS","GodotEventListeners","GodotPWA","GodotRuntime","GodotIME","GodotInputGamepads","GodotInputDragDrop","GodotInput","GodotWebGL2","GodotJSWrapper","IDBFS"];unexportedSymbols.forEach(unexportedRuntimeSymbol);var calledRun;dependenciesFulfilled=function runCaller(){if(!calledRun)run();if(!calledRun)dependenciesFulfilled=runCaller};function callMain(args=[]){assert(runDependencies==0,'cannot call main when async dependencies remain! (listen on Module["onRuntimeInitialized"])');assert(__ATPRERUN__.length==0,"cannot call main when preRun functions remain to be called");var entryFunction=_main;args.unshift(thisProgram);var argc=args.length;var argv=stackAlloc((argc+1)*4);var argv_ptr=argv;args.forEach(arg=>{HEAPU32[argv_ptr>>2]=stringToUTF8OnStack(arg);argv_ptr+=4});HEAPU32[argv_ptr>>2]=0;try{var ret=entryFunction(argc,argv);exitJS(ret,true);return ret}catch(e){return handleException(e)}}function stackCheckInit(){_emscripten_stack_init();writeStackCookie()}function run(args=arguments_){if(runDependencies>0){return}stackCheckInit();preRun();if(runDependencies>0){return}function doRun(){if(calledRun)return;calledRun=true;Module["calledRun"]=true;if(ABORT)return;initRuntime();preMain();readyPromiseResolve(Module);Module["onRuntimeInitialized"]?.();if(shouldRunNow)callMain(args);postRun()}if(Module["setStatus"]){Module["setStatus"]("Running...");setTimeout(function(){setTimeout(function(){Module["setStatus"]("")},1);doRun()},1)}else{doRun()}checkStackCookie()}if(Module["preInit"]){if(typeof Module["preInit"]=="function")Module["preInit"]=[Module["preInit"]];while(Module["preInit"].length>0){Module["preInit"].pop()()}}var shouldRunNow=false;if(Module["noInitialRun"])shouldRunNow=false;run();moduleRtn=readyPromise;for(const prop of Object.keys(Module)){if(!(prop in moduleArg)){Object.defineProperty(moduleArg,prop,{configurable:true,get(){abort(`Access to module property ('${prop}') is no longer possible via the module constructor argument; Instead, use the result of the module constructor.`)}})}}
+
+
+ return moduleRtn;
+}
+);
+})();
+if (typeof exports === 'object' && typeof module === 'object')
+ module.exports = Godot;
+else if (typeof define === 'function' && define['amd'])
+ define([], () => Godot);
+
+const Features = {
+ /**
+ * Check whether WebGL is available. Optionally, specify a particular version of WebGL to check for.
+ *
+ * @param {number=} [majorVersion=1] The major WebGL version to check for.
+ * @returns {boolean} If the given major version of WebGL is available.
+ * @function Engine.isWebGLAvailable
+ */
+ isWebGLAvailable: function (majorVersion = 1) {
+ try {
+ return !!document.createElement('canvas').getContext(['webgl', 'webgl2'][majorVersion - 1]);
+ } catch (e) { /* Not available */ }
+ return false;
+ },
+
+ /**
+ * Check whether the Fetch API available and supports streaming responses.
+ *
+ * @returns {boolean} If the Fetch API is available and supports streaming responses.
+ * @function Engine.isFetchAvailable
+ */
+ isFetchAvailable: function () {
+ return 'fetch' in window && 'Response' in window && 'body' in window.Response.prototype;
+ },
+
+ /**
+ * Check whether the engine is running in a Secure Context.
+ *
+ * @returns {boolean} If the engine is running in a Secure Context.
+ * @function Engine.isSecureContext
+ */
+ isSecureContext: function () {
+ return window['isSecureContext'] === true;
+ },
+
+ /**
+ * Check whether the engine is cross origin isolated.
+ * This value is dependent on Cross-Origin-Opener-Policy and Cross-Origin-Embedder-Policy headers sent by the server.
+ *
+ * @returns {boolean} If the engine is running in a Secure Context.
+ * @function Engine.isSecureContext
+ */
+ isCrossOriginIsolated: function () {
+ return window['crossOriginIsolated'] === true;
+ },
+
+ /**
+ * Check whether SharedBufferArray is available.
+ *
+ * Most browsers require the page to be running in a secure context, and the
+ * the server to provide specific CORS headers for SharedArrayBuffer to be available.
+ *
+ * @returns {boolean} If SharedArrayBuffer is available.
+ * @function Engine.isSharedArrayBufferAvailable
+ */
+ isSharedArrayBufferAvailable: function () {
+ return 'SharedArrayBuffer' in window;
+ },
+
+ /**
+ * Check whether the AudioContext supports AudioWorkletNodes.
+ *
+ * @returns {boolean} If AudioWorkletNode is available.
+ * @function Engine.isAudioWorkletAvailable
+ */
+ isAudioWorkletAvailable: function () {
+ return 'AudioContext' in window && 'audioWorklet' in AudioContext.prototype;
+ },
+
+ /**
+ * Return an array of missing required features (as string).
+ *
+ * @returns {Array<string>} A list of human-readable missing features.
+ * @function Engine.getMissingFeatures
+ * @param {{threads: (boolean|undefined)}} supportedFeatures
+ */
+ getMissingFeatures: function (supportedFeatures = {}) {
+ const {
+ // Quotes are needed for the Closure compiler.
+ 'threads': supportsThreads = true,
+ } = supportedFeatures;
+
+ const missing = [];
+ if (!Features.isWebGLAvailable(2)) {
+ missing.push('WebGL2 - Check web browser configuration and hardware support');
+ }
+ if (!Features.isFetchAvailable()) {
+ missing.push('Fetch - Check web browser version');
+ }
+ if (!Features.isSecureContext()) {
+ missing.push('Secure Context - Check web server configuration (use HTTPS)');
+ }
+
+ if (supportsThreads) {
+ if (!Features.isCrossOriginIsolated()) {
+ missing.push('Cross-Origin Isolation - Check that the web server configuration sends the correct headers.');
+ }
+ if (!Features.isSharedArrayBufferAvailable()) {
+ missing.push('SharedArrayBuffer - Check that the web server configuration sends the correct headers.');
+ }
+ }
+
+ // Audio is normally optional since we have a dummy fallback.
+ return missing;
+ },
+};
+
+const Preloader = /** @constructor */ function () { // eslint-disable-line no-unused-vars
+ function getTrackedResponse(response, load_status) {
+ function onloadprogress(reader, controller) {
+ return reader.read().then(function (result) {
+ if (load_status.done) {
+ return Promise.resolve();
+ }
+ if (result.value) {
+ controller.enqueue(result.value);
+ load_status.loaded += result.value.length;
+ }
+ if (!result.done) {
+ return onloadprogress(reader, controller);
+ }
+ load_status.done = true;
+ return Promise.resolve();
+ });
+ }
+ const reader = response.body.getReader();
+ return new Response(new ReadableStream({
+ start: function (controller) {
+ onloadprogress(reader, controller).then(function () {
+ controller.close();
+ });
+ },
+ }), { headers: response.headers });
+ }
+
+ function loadFetch(file, tracker, fileSize, raw) {
+ tracker[file] = {
+ total: fileSize || 0,
+ loaded: 0,
+ done: false,
+ };
+ return fetch(file).then(function (response) {
+ if (!response.ok) {
+ return Promise.reject(new Error(`Failed loading file '${file}'`));
+ }
+ const tr = getTrackedResponse(response, tracker[file]);
+ if (raw) {
+ return Promise.resolve(tr);
+ }
+ return tr.arrayBuffer();
+ });
+ }
+
+ function retry(func, attempts = 1) {
+ function onerror(err) {
+ if (attempts <= 1) {
+ return Promise.reject(err);
+ }
+ return new Promise(function (resolve, reject) {
+ setTimeout(function () {
+ retry(func, attempts - 1).then(resolve).catch(reject);
+ }, 1000);
+ });
+ }
+ return func().catch(onerror);
+ }
+
+ const DOWNLOAD_ATTEMPTS_MAX = 4;
+ const loadingFiles = {};
+ const lastProgress = { loaded: 0, total: 0 };
+ let progressFunc = null;
+
+ const animateProgress = function () {
+ let loaded = 0;
+ let total = 0;
+ let totalIsValid = true;
+ let progressIsFinal = true;
+
+ Object.keys(loadingFiles).forEach(function (file) {
+ const stat = loadingFiles[file];
+ if (!stat.done) {
+ progressIsFinal = false;
+ }
+ if (!totalIsValid || stat.total === 0) {
+ totalIsValid = false;
+ total = 0;
+ } else {
+ total += stat.total;
+ }
+ loaded += stat.loaded;
+ });
+ if (loaded !== lastProgress.loaded || total !== lastProgress.total) {
+ lastProgress.loaded = loaded;
+ lastProgress.total = total;
+ if (typeof progressFunc === 'function') {
+ progressFunc(loaded, total);
+ }
+ }
+ if (!progressIsFinal) {
+ requestAnimationFrame(animateProgress);
+ }
+ };
+
+ this.animateProgress = animateProgress;
+
+ this.setProgressFunc = function (callback) {
+ progressFunc = callback;
+ };
+
+ this.loadPromise = function (file, fileSize, raw = false) {
+ return retry(loadFetch.bind(null, file, loadingFiles, fileSize, raw), DOWNLOAD_ATTEMPTS_MAX);
+ };
+
+ this.preloadedFiles = [];
+ this.preload = function (pathOrBuffer, destPath, fileSize) {
+ let buffer = null;
+ if (typeof pathOrBuffer === 'string') {
+ const me = this;
+ return this.loadPromise(pathOrBuffer, fileSize).then(function (buf) {
+ me.preloadedFiles.push({
+ path: destPath || pathOrBuffer,
+ buffer: buf,
+ });
+ return Promise.resolve();
+ });
+ } else if (pathOrBuffer instanceof ArrayBuffer) {
+ buffer = new Uint8Array(pathOrBuffer);
+ } else if (ArrayBuffer.isView(pathOrBuffer)) {
+ buffer = new Uint8Array(pathOrBuffer.buffer);
+ }
+ if (buffer) {
+ this.preloadedFiles.push({
+ path: destPath,
+ buffer: pathOrBuffer,
+ });
+ return Promise.resolve();
+ }
+ return Promise.reject(new Error('Invalid object for preloading'));
+ };
+};
+
+/**
+ * An object used to configure the Engine instance based on godot export options, and to override those in custom HTML
+ * templates if needed.
+ *
+ * @header Engine configuration
+ * @summary The Engine configuration object. This is just a typedef, create it like a regular object, e.g.:
+ *
+ * ``const MyConfig = { executable: 'godot', unloadAfterInit: false }``
+ *
+ * @typedef {Object} EngineConfig
+ */
+const EngineConfig = {}; // eslint-disable-line no-unused-vars
+
+/**
+ * @struct
+ * @constructor
+ * @ignore
+ */
+const InternalConfig = function (initConfig) { // eslint-disable-line no-unused-vars
+ const cfg = /** @lends {InternalConfig.prototype} */ {
+ /**
+ * Whether to unload the engine automatically after the instance is initialized.
+ *
+ * @memberof EngineConfig
+ * @default
+ * @type {boolean}
+ */
+ unloadAfterInit: true,
+ /**
+ * The HTML DOM Canvas object to use.
+ *
+ * By default, the first canvas element in the document will be used is none is specified.
+ *
+ * @memberof EngineConfig
+ * @default
+ * @type {?HTMLCanvasElement}
+ */
+ canvas: null,
+ /**
+ * The name of the WASM file without the extension. (Set by Godot Editor export process).
+ *
+ * @memberof EngineConfig
+ * @default
+ * @type {string}
+ */
+ executable: '',
+ /**
+ * An alternative name for the game pck to load. The executable name is used otherwise.
+ *
+ * @memberof EngineConfig
+ * @default
+ * @type {?string}
+ */
+ mainPack: null,
+ /**
+ * Specify a language code to select the proper localization for the game.
+ *
+ * The browser locale will be used if none is specified. See complete list of
+ * :ref:`supported locales <doc_locales>`.
+ *
+ * @memberof EngineConfig
+ * @type {?string}
+ * @default
+ */
+ locale: null,
+ /**
+ * The canvas resize policy determines how the canvas should be resized by Godot.
+ *
+ * ``0`` means Godot won't do any resizing. This is useful if you want to control the canvas size from
+ * javascript code in your template.
+ *
+ * ``1`` means Godot will resize the canvas on start, and when changing window size via engine functions.
+ *
+ * ``2`` means Godot will adapt the canvas size to match the whole browser window.
+ *
+ * @memberof EngineConfig
+ * @type {number}
+ * @default
+ */
+ canvasResizePolicy: 2,
+ /**
+ * The arguments to be passed as command line arguments on startup.
+ *
+ * See :ref:`command line tutorial <doc_command_line_tutorial>`.
+ *
+ * **Note**: :js:meth:`startGame <Engine.prototype.startGame>` will always add the ``--main-pack`` argument.
+ *
+ * @memberof EngineConfig
+ * @type {Array<string>}
+ * @default
+ */
+ args: [],
+ /**
+ * When enabled, the game canvas will automatically grab the focus when the engine starts.
+ *
+ * @memberof EngineConfig
+ * @type {boolean}
+ * @default
+ */
+ focusCanvas: true,
+ /**
+ * When enabled, this will turn on experimental virtual keyboard support on mobile.
+ *
+ * @memberof EngineConfig
+ * @type {boolean}
+ * @default
+ */
+ experimentalVK: false,
+ /**
+ * The progressive web app service worker to install.
+ * @memberof EngineConfig
+ * @default
+ * @type {string}
+ */
+ serviceWorker: '',
+ /**
+ * @ignore
+ * @type {Array.<string>}
+ */
+ persistentPaths: ['/userfs'],
+ /**
+ * @ignore
+ * @type {boolean}
+ */
+ persistentDrops: false,
+ /**
+ * @ignore
+ * @type {Array.<string>}
+ */
+ gdextensionLibs: [],
+ /**
+ * @ignore
+ * @type {Array.<string>}
+ */
+ fileSizes: [],
+ /**
+ * A callback function for handling Godot's ``OS.execute`` calls.
+ *
+ * This is for example used in the Web Editor template to switch between project manager and editor, and for running the game.
+ *
+ * @callback EngineConfig.onExecute
+ * @param {string} path The path that Godot's wants executed.
+ * @param {Array.<string>} args The arguments of the "command" to execute.
+ */
+ /**
+ * @ignore
+ * @type {?function(string, Array.<string>)}
+ */
+ onExecute: null,
+ /**
+ * A callback function for being notified when the Godot instance quits.
+ *
+ * **Note**: This function will not be called if the engine crashes or become unresponsive.
+ *
+ * @callback EngineConfig.onExit
+ * @param {number} status_code The status code returned by Godot on exit.
+ */
+ /**
+ * @ignore
+ * @type {?function(number)}
+ */
+ onExit: null,
+ /**
+ * A callback function for displaying download progress.
+ *
+ * The function is called once per frame while downloading files, so the usage of ``requestAnimationFrame()``
+ * is not necessary.
+ *
+ * If the callback function receives a total amount of bytes as 0, this means that it is impossible to calculate.
+ * Possible reasons include:
+ *
+ * - Files are delivered with server-side chunked compression
+ * - Files are delivered with server-side compression on Chromium
+ * - Not all file downloads have started yet (usually on servers without multi-threading)
+ *
+ * @callback EngineConfig.onProgress
+ * @param {number} current The current amount of downloaded bytes so far.
+ * @param {number} total The total amount of bytes to be downloaded.
+ */
+ /**
+ * @ignore
+ * @type {?function(number, number)}
+ */
+ onProgress: null,
+ /**
+ * A callback function for handling the standard output stream. This method should usually only be used in debug pages.
+ *
+ * By default, ``console.log()`` is used.
+ *
+ * @callback EngineConfig.onPrint
+ * @param {...*} [var_args] A variadic number of arguments to be printed.
+ */
+ /**
+ * @ignore
+ * @type {?function(...*)}
+ */
+ onPrint: function () {
+ console.log.apply(console, Array.from(arguments)); // eslint-disable-line no-console
+ },
+ /**
+ * A callback function for handling the standard error stream. This method should usually only be used in debug pages.
+ *
+ * By default, ``console.error()`` is used.
+ *
+ * @callback EngineConfig.onPrintError
+ * @param {...*} [var_args] A variadic number of arguments to be printed as errors.
+ */
+ /**
+ * @ignore
+ * @type {?function(...*)}
+ */
+ onPrintError: function (var_args) {
+ console.error.apply(console, Array.from(arguments)); // eslint-disable-line no-console
+ },
+ };
+
+ /**
+ * @ignore
+ * @struct
+ * @constructor
+ * @param {EngineConfig} opts
+ */
+ function Config(opts) {
+ this.update(opts);
+ }
+
+ Config.prototype = cfg;
+
+ /**
+ * @ignore
+ * @param {EngineConfig} opts
+ */
+ Config.prototype.update = function (opts) {
+ const config = opts || {};
+ // NOTE: We must explicitly pass the default, accessing it via
+ // the key will fail due to closure compiler renames.
+ function parse(key, def) {
+ if (typeof (config[key]) === 'undefined') {
+ return def;
+ }
+ return config[key];
+ }
+ // Module config
+ this.unloadAfterInit = parse('unloadAfterInit', this.unloadAfterInit);
+ this.onPrintError = parse('onPrintError', this.onPrintError);
+ this.onPrint = parse('onPrint', this.onPrint);
+ this.onProgress = parse('onProgress', this.onProgress);
+
+ // Godot config
+ this.canvas = parse('canvas', this.canvas);
+ this.executable = parse('executable', this.executable);
+ this.mainPack = parse('mainPack', this.mainPack);
+ this.locale = parse('locale', this.locale);
+ this.canvasResizePolicy = parse('canvasResizePolicy', this.canvasResizePolicy);
+ this.persistentPaths = parse('persistentPaths', this.persistentPaths);
+ this.persistentDrops = parse('persistentDrops', this.persistentDrops);
+ this.experimentalVK = parse('experimentalVK', this.experimentalVK);
+ this.focusCanvas = parse('focusCanvas', this.focusCanvas);
+ this.serviceWorker = parse('serviceWorker', this.serviceWorker);
+ this.gdextensionLibs = parse('gdextensionLibs', this.gdextensionLibs);
+ this.fileSizes = parse('fileSizes', this.fileSizes);
+ this.args = parse('args', this.args);
+ this.onExecute = parse('onExecute', this.onExecute);
+ this.onExit = parse('onExit', this.onExit);
+ };
+
+ /**
+ * @ignore
+ * @param {string} loadPath
+ * @param {Response} response
+ */
+ Config.prototype.getModuleConfig = function (loadPath, response) {
+ let r = response;
+ const gdext = this.gdextensionLibs;
+ return {
+ 'print': this.onPrint,
+ 'printErr': this.onPrintError,
+ 'thisProgram': this.executable,
+ 'noExitRuntime': false,
+ 'dynamicLibraries': [`${loadPath}.side.wasm`].concat(this.gdextensionLibs),
+ 'instantiateWasm': function (imports, onSuccess) {
+ function done(result) {
+ onSuccess(result['instance'], result['module']);
+ }
+ if (typeof (WebAssembly.instantiateStreaming) !== 'undefined') {
+ WebAssembly.instantiateStreaming(Promise.resolve(r), imports).then(done);
+ } else {
+ r.arrayBuffer().then(function (buffer) {
+ WebAssembly.instantiate(buffer, imports).then(done);
+ });
+ }
+ r = null;
+ return {};
+ },
+ 'locateFile': function (path) {
+ if (!path.startsWith('godot.')) {
+ return path;
+ } else if (path.endsWith('.audio.worklet.js')) {
+ return `${loadPath}.audio.worklet.js`;
+ } else if (path.endsWith('.audio.position.worklet.js')) {
+ return `${loadPath}.audio.position.worklet.js`;
+ } else if (path.endsWith('.js')) {
+ return `${loadPath}.js`;
+ } else if (path in gdext) {
+ return path;
+ } else if (path.endsWith('.side.wasm')) {
+ return `${loadPath}.side.wasm`;
+ } else if (path.endsWith('.wasm')) {
+ return `${loadPath}.wasm`;
+ }
+ return path;
+ },
+ };
+ };
+
+ /**
+ * @ignore
+ * @param {function()} cleanup
+ */
+ Config.prototype.getGodotConfig = function (cleanup) {
+ // Try to find a canvas
+ if (!(this.canvas instanceof HTMLCanvasElement)) {
+ const nodes = document.getElementsByTagName('canvas');
+ if (nodes.length && nodes[0] instanceof HTMLCanvasElement) {
+ const first = nodes[0];
+ this.canvas = /** @type {!HTMLCanvasElement} */ (first);
+ }
+ if (!this.canvas) {
+ throw new Error('No canvas found in page');
+ }
+ }
+ // Canvas can grab focus on click, or key events won't work.
+ if (this.canvas.tabIndex < 0) {
+ this.canvas.tabIndex = 0;
+ }
+
+ // Browser locale, or custom one if defined.
+ let locale = this.locale;
+ if (!locale) {
+ locale = navigator.languages ? navigator.languages[0] : navigator.language;
+ locale = locale.split('.')[0];
+ }
+ locale = locale.replace('-', '_');
+ const onExit = this.onExit;
+
+ // Godot configuration.
+ return {
+ 'canvas': this.canvas,
+ 'canvasResizePolicy': this.canvasResizePolicy,
+ 'locale': locale,
+ 'persistentDrops': this.persistentDrops,
+ 'virtualKeyboard': this.experimentalVK,
+ 'focusCanvas': this.focusCanvas,
+ 'onExecute': this.onExecute,
+ 'onExit': function (p_code) {
+ cleanup(); // We always need to call the cleanup callback to free memory.
+ if (typeof (onExit) === 'function') {
+ onExit(p_code);
+ }
+ },
+ };
+ };
+ return new Config(initConfig);
+};
+
+/**
+ * Projects exported for the Web expose the :js:class:`Engine` class to the JavaScript environment, that allows
+ * fine control over the engine's start-up process.
+ *
+ * This API is built in an asynchronous manner and requires basic understanding
+ * of `Promises <https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Using_promises>`__.
+ *
+ * @module Engine
+ * @header Web export JavaScript reference
+ */
+const Engine = (function () {
+ const preloader = new Preloader();
+
+ let loadPromise = null;
+ let loadPath = '';
+ let initPromise = null;
+
+ /**
+ * @classdesc The ``Engine`` class provides methods for loading and starting exported projects on the Web. For default export
+ * settings, this is already part of the exported HTML page. To understand practical use of the ``Engine`` class,
+ * see :ref:`Custom HTML page for Web export <doc_customizing_html5_shell>`.
+ *
+ * @description Create a new Engine instance with the given configuration.
+ *
+ * @global
+ * @constructor
+ * @param {EngineConfig} initConfig The initial config for this instance.
+ */
+ function Engine(initConfig) { // eslint-disable-line no-shadow
+ this.config = new InternalConfig(initConfig);
+ this.rtenv = null;
+ }
+
+ /**
+ * Load the engine from the specified base path.
+ *
+ * @param {string} basePath Base path of the engine to load.
+ * @param {number=} [size=0] The file size if known.
+ * @returns {Promise} A Promise that resolves once the engine is loaded.
+ *
+ * @function Engine.load
+ */
+ Engine.load = function (basePath, size) {
+ if (loadPromise == null) {
+ loadPath = basePath;
+ loadPromise = preloader.loadPromise(`${loadPath}.wasm`, size, true);
+ requestAnimationFrame(preloader.animateProgress);
+ }
+ return loadPromise;
+ };
+
+ /**
+ * Unload the engine to free memory.
+ *
+ * This method will be called automatically depending on the configuration. See :js:attr:`unloadAfterInit`.
+ *
+ * @function Engine.unload
+ */
+ Engine.unload = function () {
+ loadPromise = null;
+ };
+
+ /**
+ * Safe Engine constructor, creates a new prototype for every new instance to avoid prototype pollution.
+ * @ignore
+ * @constructor
+ */
+ function SafeEngine(initConfig) {
+ const proto = /** @lends Engine.prototype */ {
+ /**
+ * Initialize the engine instance. Optionally, pass the base path to the engine to load it,
+ * if it hasn't been loaded yet. See :js:meth:`Engine.load`.
+ *
+ * @param {string=} basePath Base path of the engine to load.
+ * @return {Promise} A ``Promise`` that resolves once the engine is loaded and initialized.
+ */
+ init: function (basePath) {
+ if (initPromise) {
+ return initPromise;
+ }
+ if (loadPromise == null) {
+ if (!basePath) {
+ initPromise = Promise.reject(new Error('A base path must be provided when calling `init` and the engine is not loaded.'));
+ return initPromise;
+ }
+ Engine.load(basePath, this.config.fileSizes[`${basePath}.wasm`]);
+ }
+ const me = this;
+ function doInit(promise) {
+ // Care! Promise chaining is bogus with old emscripten versions.
+ // This caused a regression with the Mono build (which uses an older emscripten version).
+ // Make sure to test that when refactoring.
+ return new Promise(function (resolve, reject) {
+ promise.then(function (response) {
+ const cloned = new Response(response.clone().body, { 'headers': [['content-type', 'application/wasm']] });
+ Godot(me.config.getModuleConfig(loadPath, cloned)).then(function (module) {
+ const paths = me.config.persistentPaths;
+ module['initFS'](paths).then(function (err) {
+ me.rtenv = module;
+ if (me.config.unloadAfterInit) {
+ Engine.unload();
+ }
+ resolve();
+ });
+ });
+ });
+ });
+ }
+ preloader.setProgressFunc(this.config.onProgress);
+ initPromise = doInit(loadPromise);
+ return initPromise;
+ },
+
+ /**
+ * Load a file so it is available in the instance's file system once it runs. Must be called **before** starting the
+ * instance.
+ *
+ * If not provided, the ``path`` is derived from the URL of the loaded file.
+ *
+ * @param {string|ArrayBuffer} file The file to preload.
+ *
+ * If a ``string`` the file will be loaded from that path.
+ *
+ * If an ``ArrayBuffer`` or a view on one, the buffer will used as the content of the file.
+ *
+ * @param {string=} path Path by which the file will be accessible. Required, if ``file`` is not a string.
+ *
+ * @returns {Promise} A Promise that resolves once the file is loaded.
+ */
+ preloadFile: function (file, path) {
+ return preloader.preload(file, path, this.config.fileSizes[file]);
+ },
+
+ /**
+ * Start the engine instance using the given override configuration (if any).
+ * :js:meth:`startGame <Engine.prototype.startGame>` can be used in typical cases instead.
+ *
+ * This will initialize the instance if it is not initialized. For manual initialization, see :js:meth:`init <Engine.prototype.init>`.
+ * The engine must be loaded beforehand.
+ *
+ * Fails if a canvas cannot be found on the page, or not specified in the configuration.
+ *
+ * @param {EngineConfig} override An optional configuration override.
+ * @return {Promise} Promise that resolves once the engine started.
+ */
+ start: function (override) {
+ this.config.update(override);
+ const me = this;
+ return me.init().then(function () {
+ if (!me.rtenv) {
+ return Promise.reject(new Error('The engine must be initialized before it can be started'));
+ }
+
+ let config = {};
+ try {
+ config = me.config.getGodotConfig(function () {
+ me.rtenv = null;
+ });
+ } catch (e) {
+ return Promise.reject(e);
+ }
+ // Godot configuration.
+ me.rtenv['initConfig'](config);
+
+ // Preload GDExtension libraries.
+ if (me.config.gdextensionLibs.length > 0 && !me.rtenv['loadDynamicLibrary']) {
+ return Promise.reject(new Error('GDExtension libraries are not supported by this engine version. '
+ + 'Enable "Extensions Support" for your export preset and/or build your custom template with "dlink_enabled=yes".'));
+ }
+ return new Promise(function (resolve, reject) {
+ for (const file of preloader.preloadedFiles) {
+ me.rtenv['copyToFS'](file.path, file.buffer);
+ }
+ preloader.preloadedFiles.length = 0; // Clear memory
+ me.rtenv['callMain'](me.config.args);
+ initPromise = null;
+ me.installServiceWorker();
+ resolve();
+ });
+ });
+ },
+
+ /**
+ * Start the game instance using the given configuration override (if any).
+ *
+ * This will initialize the instance if it is not initialized. For manual initialization, see :js:meth:`init <Engine.prototype.init>`.
+ *
+ * This will load the engine if it is not loaded, and preload the main pck.
+ *
+ * This method expects the initial config (or the override) to have both the :js:attr:`executable` and :js:attr:`mainPack`
+ * properties set (normally done by the editor during export).
+ *
+ * @param {EngineConfig} override An optional configuration override.
+ * @return {Promise} Promise that resolves once the game started.
+ */
+ startGame: function (override) {
+ this.config.update(override);
+ // Add main-pack argument.
+ const exe = this.config.executable;
+ const pack = this.config.mainPack || `${exe}.pck`;
+ this.config.args = ['--main-pack', pack].concat(this.config.args);
+ // Start and init with execName as loadPath if not inited.
+ const me = this;
+ return Promise.all([
+ this.init(exe),
+ this.preloadFile(pack, pack),
+ ]).then(function () {
+ return me.start.apply(me);
+ });
+ },
+
+ /**
+ * Create a file at the specified ``path`` with the passed as ``buffer`` in the instance's file system.
+ *
+ * @param {string} path The location where the file will be created.
+ * @param {ArrayBuffer} buffer The content of the file.
+ */
+ copyToFS: function (path, buffer) {
+ if (this.rtenv == null) {
+ throw new Error('Engine must be inited before copying files');
+ }
+ this.rtenv['copyToFS'](path, buffer);
+ },
+
+ /**
+ * Request that the current instance quit.
+ *
+ * This is akin the user pressing the close button in the window manager, and will
+ * have no effect if the engine has crashed, or is stuck in a loop.
+ *
+ */
+ requestQuit: function () {
+ if (this.rtenv) {
+ this.rtenv['request_quit']();
+ }
+ },
+
+ /**
+ * Install the progressive-web app service worker.
+ * @returns {Promise} The service worker registration promise.
+ */
+ installServiceWorker: function () {
+ if (this.config.serviceWorker && 'serviceWorker' in navigator) {
+ try {
+ return navigator.serviceWorker.register(this.config.serviceWorker);
+ } catch (e) {
+ return Promise.reject(e);
+ }
+ }
+ return Promise.resolve();
+ },
+ };
+
+ Engine.prototype = proto;
+ // Closure compiler exported instance methods.
+ Engine.prototype['init'] = Engine.prototype.init;
+ Engine.prototype['preloadFile'] = Engine.prototype.preloadFile;
+ Engine.prototype['start'] = Engine.prototype.start;
+ Engine.prototype['startGame'] = Engine.prototype.startGame;
+ Engine.prototype['copyToFS'] = Engine.prototype.copyToFS;
+ Engine.prototype['requestQuit'] = Engine.prototype.requestQuit;
+ Engine.prototype['installServiceWorker'] = Engine.prototype.installServiceWorker;
+ // Also expose static methods as instance methods
+ Engine.prototype['load'] = Engine.load;
+ Engine.prototype['unload'] = Engine.unload;
+ return new Engine(initConfig);
+ }
+
+ // Closure compiler exported static methods.
+ SafeEngine['load'] = Engine.load;
+ SafeEngine['unload'] = Engine.unload;
+
+ // Feature-detection utilities.
+ SafeEngine['isWebGLAvailable'] = Features.isWebGLAvailable;
+ SafeEngine['isFetchAvailable'] = Features.isFetchAvailable;
+ SafeEngine['isSecureContext'] = Features.isSecureContext;
+ SafeEngine['isCrossOriginIsolated'] = Features.isCrossOriginIsolated;
+ SafeEngine['isSharedArrayBufferAvailable'] = Features.isSharedArrayBufferAvailable;
+ SafeEngine['isAudioWorkletAvailable'] = Features.isAudioWorkletAvailable;
+ SafeEngine['getMissingFeatures'] = Features.getMissingFeatures;
+
+ return SafeEngine;
+}());
+if (typeof window !== 'undefined') {
+ window['Engine'] = Engine;
+}
--- /dev/null
+/**************************************************************************/
+/* godot.audio.position.worklet.js */
+/**************************************************************************/
+/* This file is part of: */
+/* GODOT ENGINE */
+/* https://godotengine.org */
+/**************************************************************************/
+/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
+/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
+/* */
+/* Permission is hereby granted, free of charge, to any person obtaining */
+/* a copy of this software and associated documentation files (the */
+/* "Software"), to deal in the Software without restriction, including */
+/* without limitation the rights to use, copy, modify, merge, publish, */
+/* distribute, sublicense, and/or sell copies of the Software, and to */
+/* permit persons to whom the Software is furnished to do so, subject to */
+/* the following conditions: */
+/* */
+/* The above copyright notice and this permission notice shall be */
+/* included in all copies or substantial portions of the Software. */
+/* */
+/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
+/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
+/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
+/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
+/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
+/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
+/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
+/**************************************************************************/
+
+const POST_THRESHOLD_S = 0.1;
+
+class GodotPositionReportingProcessor extends AudioWorkletProcessor {
+ constructor(...args) {
+ super(...args);
+ this.lastPostTime = currentTime;
+ this.position = 0;
+ this.ended = false;
+
+ this.port.onmessage = (event) => {
+ if (event?.data?.type === 'ended') {
+ this.ended = true;
+ }
+ };
+ }
+
+ process(inputs, _outputs, _parameters) {
+ if (this.ended) {
+ return false;
+ }
+
+ if (inputs.length > 0) {
+ const input = inputs[0];
+ if (input.length > 0) {
+ this.position += input[0].length;
+ }
+ }
+
+ // Posting messages is expensive. Let's limit the number of posts.
+ if (currentTime - this.lastPostTime > POST_THRESHOLD_S) {
+ this.lastPostTime = currentTime;
+ this.port.postMessage({ type: 'position', data: this.position });
+ }
+
+ return true;
+ }
+}
+
+registerProcessor('godot-position-reporting-processor', GodotPositionReportingProcessor);
--- /dev/null
+/**************************************************************************/
+/* audio.worklet.js */
+/**************************************************************************/
+/* This file is part of: */
+/* GODOT ENGINE */
+/* https://godotengine.org */
+/**************************************************************************/
+/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
+/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
+/* */
+/* Permission is hereby granted, free of charge, to any person obtaining */
+/* a copy of this software and associated documentation files (the */
+/* "Software"), to deal in the Software without restriction, including */
+/* without limitation the rights to use, copy, modify, merge, publish, */
+/* distribute, sublicense, and/or sell copies of the Software, and to */
+/* permit persons to whom the Software is furnished to do so, subject to */
+/* the following conditions: */
+/* */
+/* The above copyright notice and this permission notice shall be */
+/* included in all copies or substantial portions of the Software. */
+/* */
+/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
+/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
+/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
+/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
+/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
+/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
+/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
+/**************************************************************************/
+
+class RingBuffer {
+ constructor(p_buffer, p_state, p_threads) {
+ this.buffer = p_buffer;
+ this.avail = p_state;
+ this.threads = p_threads;
+ this.rpos = 0;
+ this.wpos = 0;
+ }
+
+ data_left() {
+ return this.threads ? Atomics.load(this.avail, 0) : this.avail;
+ }
+
+ space_left() {
+ return this.buffer.length - this.data_left();
+ }
+
+ read(output) {
+ const size = this.buffer.length;
+ let from = 0;
+ let to_write = output.length;
+ if (this.rpos + to_write > size) {
+ const high = size - this.rpos;
+ output.set(this.buffer.subarray(this.rpos, size));
+ from = high;
+ to_write -= high;
+ this.rpos = 0;
+ }
+ if (to_write) {
+ output.set(this.buffer.subarray(this.rpos, this.rpos + to_write), from);
+ }
+ this.rpos += to_write;
+ if (this.threads) {
+ Atomics.add(this.avail, 0, -output.length);
+ Atomics.notify(this.avail, 0);
+ } else {
+ this.avail -= output.length;
+ }
+ }
+
+ write(p_buffer) {
+ const to_write = p_buffer.length;
+ const mw = this.buffer.length - this.wpos;
+ if (mw >= to_write) {
+ this.buffer.set(p_buffer, this.wpos);
+ this.wpos += to_write;
+ if (mw === to_write) {
+ this.wpos = 0;
+ }
+ } else {
+ const high = p_buffer.subarray(0, mw);
+ const low = p_buffer.subarray(mw);
+ this.buffer.set(high, this.wpos);
+ this.buffer.set(low);
+ this.wpos = low.length;
+ }
+ if (this.threads) {
+ Atomics.add(this.avail, 0, to_write);
+ Atomics.notify(this.avail, 0);
+ } else {
+ this.avail += to_write;
+ }
+ }
+}
+
+class GodotProcessor extends AudioWorkletProcessor {
+ constructor() {
+ super();
+ this.threads = false;
+ this.running = true;
+ this.lock = null;
+ this.notifier = null;
+ this.output = null;
+ this.output_buffer = new Float32Array();
+ this.input = null;
+ this.input_buffer = new Float32Array();
+ this.port.onmessage = (event) => {
+ const cmd = event.data['cmd'];
+ const data = event.data['data'];
+ this.parse_message(cmd, data);
+ };
+ }
+
+ process_notify() {
+ if (this.notifier) {
+ Atomics.add(this.notifier, 0, 1);
+ Atomics.notify(this.notifier, 0);
+ }
+ }
+
+ parse_message(p_cmd, p_data) {
+ if (p_cmd === 'start' && p_data) {
+ const state = p_data[0];
+ let idx = 0;
+ this.threads = true;
+ this.lock = state.subarray(idx, ++idx);
+ this.notifier = state.subarray(idx, ++idx);
+ const avail_in = state.subarray(idx, ++idx);
+ const avail_out = state.subarray(idx, ++idx);
+ this.input = new RingBuffer(p_data[1], avail_in, true);
+ this.output = new RingBuffer(p_data[2], avail_out, true);
+ } else if (p_cmd === 'stop') {
+ this.running = false;
+ this.output = null;
+ this.input = null;
+ this.lock = null;
+ this.notifier = null;
+ } else if (p_cmd === 'start_nothreads') {
+ this.output = new RingBuffer(p_data[0], p_data[0].length, false);
+ } else if (p_cmd === 'chunk') {
+ this.output.write(p_data);
+ }
+ }
+
+ static array_has_data(arr) {
+ return arr.length && arr[0].length && arr[0][0].length;
+ }
+
+ process(inputs, outputs, parameters) {
+ if (!this.running) {
+ return false; // Stop processing.
+ }
+ if (this.output === null) {
+ return true; // Not ready yet, keep processing.
+ }
+ const process_input = GodotProcessor.array_has_data(inputs);
+ if (process_input) {
+ const input = inputs[0];
+ const chunk = input[0].length * input.length;
+ if (this.input_buffer.length !== chunk) {
+ this.input_buffer = new Float32Array(chunk);
+ }
+ if (!this.threads) {
+ GodotProcessor.write_input(this.input_buffer, input);
+ this.port.postMessage({ 'cmd': 'input', 'data': this.input_buffer });
+ } else if (this.input.space_left() >= chunk) {
+ GodotProcessor.write_input(this.input_buffer, input);
+ this.input.write(this.input_buffer);
+ } else {
+ // this.port.postMessage('Input buffer is full! Skipping input frame.'); // Uncomment this line to debug input buffer.
+ }
+ }
+ const process_output = GodotProcessor.array_has_data(outputs);
+ if (process_output) {
+ const output = outputs[0];
+ const chunk = output[0].length * output.length;
+ if (this.output_buffer.length !== chunk) {
+ this.output_buffer = new Float32Array(chunk);
+ }
+ if (this.output.data_left() >= chunk) {
+ this.output.read(this.output_buffer);
+ GodotProcessor.write_output(output, this.output_buffer);
+ if (!this.threads) {
+ this.port.postMessage({ 'cmd': 'read', 'data': chunk });
+ }
+ } else {
+ // this.port.postMessage('Output buffer has not enough frames! Skipping output frame.'); // Uncomment this line to debug output buffer.
+ }
+ }
+ this.process_notify();
+ return true;
+ }
+
+ static write_output(dest, source) {
+ const channels = dest.length;
+ for (let ch = 0; ch < channels; ch++) {
+ for (let sample = 0; sample < dest[ch].length; sample++) {
+ dest[ch][sample] = source[sample * channels + ch];
+ }
+ }
+ }
+
+ static write_input(dest, source) {
+ const channels = source.length;
+ for (let ch = 0; ch < channels; ch++) {
+ for (let sample = 0; sample < source[ch].length; sample++) {
+ dest[sample * channels + ch] = source[ch][sample];
+ }
+ }
+ }
+}
+
+registerProcessor('godot-processor', GodotProcessor);
--- /dev/null
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0">
+ <title>Encuentralo</title>
+ <style>
+html, body, #canvas {
+ margin: 0;
+ padding: 0;
+ border: 0;
+}
+
+body {
+ color: white;
+ background-color: black;
+ overflow: hidden;
+ touch-action: none;
+}
+
+#canvas {
+ display: block;
+}
+
+#canvas:focus {
+ outline: none;
+}
+
+#status, #status-splash, #status-progress {
+ position: absolute;
+ left: 0;
+ right: 0;
+}
+
+#status, #status-splash {
+ top: 0;
+ bottom: 0;
+}
+
+#status {
+ background-color: #242424;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ visibility: hidden;
+}
+
+#status-splash {
+ max-height: 100%;
+ max-width: 100%;
+ margin: auto;
+}
+
+#status-splash.show-image--false {
+ display: none;
+}
+
+#status-splash.fullsize--true {
+ height: 100%;
+ width: 100%;
+ object-fit: contain;
+}
+
+#status-splash.use-filter--false {
+ image-rendering: pixelated;
+}
+
+#status-progress, #status-notice {
+ display: none;
+}
+
+#status-progress {
+ bottom: 10%;
+ width: 50%;
+ margin: 0 auto;
+}
+
+#status-notice {
+ background-color: #5b3943;
+ border-radius: 0.5rem;
+ border: 1px solid #9b3943;
+ color: #e0e0e0;
+ font-family: 'Noto Sans', 'Droid Sans', Arial, sans-serif;
+ line-height: 1.3;
+ margin: 0 2rem;
+ overflow: hidden;
+ padding: 1rem;
+ text-align: center;
+ z-index: 1;
+}
+ </style>
+ <script>
+var gd_callbacks = {
+ dataLoaded: null
+}
+
+function loadData() {
+ var input = document.createElement('input');
+ input.setAttribute('type', 'file');
+ input.setAttribute('webkitdirectory', true);
+ input.click();
+
+ input.addEventListener('change', evt => {
+ for (each of evt.target.files) {
+ if (each.name.match(/.*\.(png|jpg|jpeg|bmp|gif)$/)) {
+ let reader = new FileReader();
+ reader.onloadend = function(evt) {
+ if (gd_callbacks.dataLoaded) {
+ gd_callbacks.dataLoaded(reader.result)
+ }
+ }
+
+ reader.onerror = function(evt) {
+ console.log('error');
+ }
+ // This read should be kicked off after any handlers are registered!
+ reader.readAsArrayBuffer(each);
+ //var promise = each.arrayBuffer();
+ //promise.then(gd_callbacks.dataLoaded, null)
+ }
+ }
+ });
+}
+</script>
+ </head>
+ <body>
+ <canvas id="canvas">
+ Your browser does not support the canvas tag.
+ </canvas>
+
+ <noscript>
+ Your browser does not support JavaScript.
+ </noscript>
+
+ <div id="status">
+ <img id="status-splash" class="show-image--true fullsize--true use-filter--true" src="encuentralo.offline.png" alt="">
+ <progress id="status-progress"></progress>
+ <div id="status-notice"></div>
+ </div>
+
+ <script src="encuentralo.offline.js"></script>
+ <script>
+const GODOT_CONFIG = {"args":[],"canvasResizePolicy":2,"ensureCrossOriginIsolationHeaders":true,"executable":"encuentralo.offline","experimentalVK":false,"fileSizes":{"encuentralo.offline.pck":5572976,"encuentralo.offline.wasm":43682606},"focusCanvas":true,"gdextensionLibs":[]};
+const GODOT_THREADS_ENABLED = false;
+const engine = new Engine(GODOT_CONFIG);
+
+(function () {
+ const statusOverlay = document.getElementById('status');
+ const statusProgress = document.getElementById('status-progress');
+ const statusNotice = document.getElementById('status-notice');
+
+ let initializing = true;
+ let statusMode = '';
+
+ function setStatusMode(mode) {
+ if (statusMode === mode || !initializing) {
+ return;
+ }
+ if (mode === 'hidden') {
+ statusOverlay.remove();
+ initializing = false;
+ return;
+ }
+ statusOverlay.style.visibility = 'visible';
+ statusProgress.style.display = mode === 'progress' ? 'block' : 'none';
+ statusNotice.style.display = mode === 'notice' ? 'block' : 'none';
+ statusMode = mode;
+ }
+
+ function setStatusNotice(text) {
+ while (statusNotice.lastChild) {
+ statusNotice.removeChild(statusNotice.lastChild);
+ }
+ const lines = text.split('\n');
+ lines.forEach((line) => {
+ statusNotice.appendChild(document.createTextNode(line));
+ statusNotice.appendChild(document.createElement('br'));
+ });
+ }
+
+ function displayFailureNotice(err) {
+ console.error(err);
+ if (err instanceof Error) {
+ setStatusNotice(err.message);
+ } else if (typeof err === 'string') {
+ setStatusNotice(err);
+ } else {
+ setStatusNotice('An unknown error occurred.');
+ }
+ setStatusMode('notice');
+ initializing = false;
+ }
+
+ const missing = Engine.getMissingFeatures({
+ threads: GODOT_THREADS_ENABLED,
+ });
+
+ if (missing.length !== 0) {
+ if (GODOT_CONFIG['serviceWorker'] && GODOT_CONFIG['ensureCrossOriginIsolationHeaders'] && 'serviceWorker' in navigator) {
+ let serviceWorkerRegistrationPromise;
+ try {
+ serviceWorkerRegistrationPromise = navigator.serviceWorker.getRegistration();
+ } catch (err) {
+ serviceWorkerRegistrationPromise = Promise.reject(new Error('Service worker registration failed.'));
+ }
+ // There's a chance that installing the service worker would fix the issue
+ Promise.race([
+ serviceWorkerRegistrationPromise.then((registration) => {
+ if (registration != null) {
+ return Promise.reject(new Error('Service worker already exists.'));
+ }
+ return registration;
+ }).then(() => engine.installServiceWorker()),
+ // For some reason, `getRegistration()` can stall
+ new Promise((resolve) => {
+ setTimeout(() => resolve(), 2000);
+ }),
+ ]).then(() => {
+ // Reload if there was no error.
+ window.location.reload();
+ }).catch((err) => {
+ console.error('Error while registering service worker:', err);
+ });
+ } else {
+ // Display the message as usual
+ const missingMsg = 'Error\nThe following features required to run Godot projects on the Web are missing:\n';
+ displayFailureNotice(missingMsg + missing.join('\n'));
+ }
+ } else {
+ setStatusMode('progress');
+ engine.startGame({
+ 'onProgress': function (current, total) {
+ if (current > 0 && total > 0) {
+ statusProgress.value = current;
+ statusProgress.max = total;
+ } else {
+ statusProgress.removeAttribute('value');
+ statusProgress.removeAttribute('max');
+ }
+ },
+ }).then(() => {
+ setStatusMode('hidden');
+ }, displayFailureNotice);
+ }
+}());
+ </script>
+ </body>
+</html>
+
--- /dev/null
+
+var Godot = (() => {
+ var _scriptName = typeof document != 'undefined' ? document.currentScript?.src : undefined;
+
+ return (
+function(moduleArg = {}) {
+ var moduleRtn;
+
+var Module=moduleArg;var readyPromiseResolve,readyPromiseReject;var readyPromise=new Promise((resolve,reject)=>{readyPromiseResolve=resolve;readyPromiseReject=reject});["_memory","__Z14godot_web_mainiPPc","__emwebxr_on_input_event","__emwebxr_on_simple_event","___indirect_function_table","_main","onRuntimeInitialized"].forEach(prop=>{if(!Object.getOwnPropertyDescriptor(readyPromise,prop)){Object.defineProperty(readyPromise,prop,{get:()=>abort("You are getting "+prop+" on the Promise object, instead of the instance. Use .then() to get called back with the instance, see the MODULARIZE docs in src/settings.js"),set:()=>abort("You are setting "+prop+" on the Promise object, instead of the instance. Use .then() to get called back with the instance, see the MODULARIZE docs in src/settings.js")})}});var ENVIRONMENT_IS_WEB=typeof window=="object";var ENVIRONMENT_IS_WORKER=typeof importScripts=="function";var ENVIRONMENT_IS_NODE=typeof process=="object"&&typeof process.versions=="object"&&typeof process.versions.node=="string";var ENVIRONMENT_IS_SHELL=!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_NODE&&!ENVIRONMENT_IS_WORKER;if(Module["ENVIRONMENT"]){throw new Error("Module.ENVIRONMENT has been deprecated. To force the environment, use the ENVIRONMENT compile-time option (for example, -sENVIRONMENT=web or -sENVIRONMENT=node)")}var moduleOverrides=Object.assign({},Module);var arguments_=[];var thisProgram="./this.program";var quit_=(status,toThrow)=>{throw toThrow};var scriptDirectory="";function locateFile(path){if(Module["locateFile"]){return Module["locateFile"](path,scriptDirectory)}return scriptDirectory+path}var readAsync,readBinary;if(ENVIRONMENT_IS_SHELL){if(typeof process=="object"&&typeof require==="function"||typeof window=="object"||typeof importScripts=="function")throw new Error("not compiled for this environment (did you build to HTML and try to run it not on the web, or set ENVIRONMENT to something - like node - and run it someplace else - like on the web?)")}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href}else if(typeof document!="undefined"&&document.currentScript){scriptDirectory=document.currentScript.src}if(_scriptName){scriptDirectory=_scriptName}if(scriptDirectory.startsWith("blob:")){scriptDirectory=""}else{scriptDirectory=scriptDirectory.substr(0,scriptDirectory.replace(/[?#].*/,"").lastIndexOf("/")+1)}if(!(typeof window=="object"||typeof importScripts=="function"))throw new Error("not compiled for this environment (did you build to HTML and try to run it not on the web, or set ENVIRONMENT to something - like node - and run it someplace else - like on the web?)");{if(ENVIRONMENT_IS_WORKER){readBinary=url=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.responseType="arraybuffer";xhr.send(null);return new Uint8Array(xhr.response)}}readAsync=url=>{assert(!isFileURI(url),"readAsync does not work with file:// URLs");return fetch(url,{credentials:"same-origin"}).then(response=>{if(response.ok){return response.arrayBuffer()}return Promise.reject(new Error(response.status+" : "+response.url))})}}}else{throw new Error("environment detection error")}var out=Module["print"]||console.log.bind(console);var err=Module["printErr"]||console.error.bind(console);Object.assign(Module,moduleOverrides);moduleOverrides=null;checkIncomingModuleAPI();if(Module["arguments"])arguments_=Module["arguments"];legacyModuleProp("arguments","arguments_");if(Module["thisProgram"])thisProgram=Module["thisProgram"];legacyModuleProp("thisProgram","thisProgram");if(Module["quit"])quit_=Module["quit"];legacyModuleProp("quit","quit_");assert(typeof Module["memoryInitializerPrefixURL"]=="undefined","Module.memoryInitializerPrefixURL option was removed, use Module.locateFile instead");assert(typeof Module["pthreadMainPrefixURL"]=="undefined","Module.pthreadMainPrefixURL option was removed, use Module.locateFile instead");assert(typeof Module["cdInitializerPrefixURL"]=="undefined","Module.cdInitializerPrefixURL option was removed, use Module.locateFile instead");assert(typeof Module["filePackagePrefixURL"]=="undefined","Module.filePackagePrefixURL option was removed, use Module.locateFile instead");assert(typeof Module["read"]=="undefined","Module.read option was removed");assert(typeof Module["readAsync"]=="undefined","Module.readAsync option was removed (modify readAsync in JS)");assert(typeof Module["readBinary"]=="undefined","Module.readBinary option was removed (modify readBinary in JS)");assert(typeof Module["setWindowTitle"]=="undefined","Module.setWindowTitle option was removed (modify emscripten_set_window_title in JS)");assert(typeof Module["TOTAL_MEMORY"]=="undefined","Module.TOTAL_MEMORY has been renamed Module.INITIAL_MEMORY");legacyModuleProp("asm","wasmExports");legacyModuleProp("readAsync","readAsync");legacyModuleProp("readBinary","readBinary");legacyModuleProp("setWindowTitle","setWindowTitle");assert(!ENVIRONMENT_IS_NODE,"node environment detected but not enabled at build time. Add `node` to `-sENVIRONMENT` to enable.");assert(!ENVIRONMENT_IS_SHELL,"shell environment detected but not enabled at build time. Add `shell` to `-sENVIRONMENT` to enable.");var wasmBinary;if(Module["wasmBinary"])wasmBinary=Module["wasmBinary"];legacyModuleProp("wasmBinary","wasmBinary");if(typeof WebAssembly!="object"){err("no native wasm support detected")}var wasmMemory;var ABORT=false;var EXITSTATUS;function assert(condition,text){if(!condition){abort("Assertion failed"+(text?": "+text:""))}}var HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAP64,HEAPU64,HEAPF64;function updateMemoryViews(){var b=wasmMemory.buffer;Module["HEAP8"]=HEAP8=new Int8Array(b);Module["HEAP16"]=HEAP16=new Int16Array(b);Module["HEAPU8"]=HEAPU8=new Uint8Array(b);Module["HEAPU16"]=HEAPU16=new Uint16Array(b);Module["HEAP32"]=HEAP32=new Int32Array(b);Module["HEAPU32"]=HEAPU32=new Uint32Array(b);Module["HEAPF32"]=HEAPF32=new Float32Array(b);Module["HEAPF64"]=HEAPF64=new Float64Array(b);Module["HEAP64"]=HEAP64=new BigInt64Array(b);Module["HEAPU64"]=HEAPU64=new BigUint64Array(b)}assert(!Module["STACK_SIZE"],"STACK_SIZE can no longer be set at runtime. Use -sSTACK_SIZE at link time");assert(typeof Int32Array!="undefined"&&typeof Float64Array!=="undefined"&&Int32Array.prototype.subarray!=undefined&&Int32Array.prototype.set!=undefined,"JS engine does not provide full typed array support");assert(!Module["wasmMemory"],"Use of `wasmMemory` detected. Use -sIMPORTED_MEMORY to define wasmMemory externally");assert(!Module["INITIAL_MEMORY"],"Detected runtime INITIAL_MEMORY setting. Use -sIMPORTED_MEMORY to define wasmMemory dynamically");function writeStackCookie(){var max=_emscripten_stack_get_end();assert((max&3)==0);if(max==0){max+=4}HEAPU32[max>>2]=34821223;HEAPU32[max+4>>2]=2310721022;HEAPU32[0>>2]=1668509029}function checkStackCookie(){if(ABORT)return;var max=_emscripten_stack_get_end();if(max==0){max+=4}var cookie1=HEAPU32[max>>2];var cookie2=HEAPU32[max+4>>2];if(cookie1!=34821223||cookie2!=2310721022){abort(`Stack overflow! Stack cookie has been overwritten at ${ptrToString(max)}, expected hex dwords 0x89BACDFE and 0x2135467, but received ${ptrToString(cookie2)} ${ptrToString(cookie1)}`)}if(HEAPU32[0>>2]!=1668509029){abort("Runtime error: The application has corrupted its heap memory area (address zero)!")}}(function(){var h16=new Int16Array(1);var h8=new Int8Array(h16.buffer);h16[0]=25459;if(h8[0]!==115||h8[1]!==99)throw"Runtime error: expected the system to be little-endian! (Run with -sSUPPORT_BIG_ENDIAN to bypass)"})();var __ATPRERUN__=[];var __ATINIT__=[];var __ATMAIN__=[];var __ATEXIT__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;var runtimeExited=false;function preRun(){if(Module["preRun"]){if(typeof Module["preRun"]=="function")Module["preRun"]=[Module["preRun"]];while(Module["preRun"].length){addOnPreRun(Module["preRun"].shift())}}callRuntimeCallbacks(__ATPRERUN__)}function initRuntime(){assert(!runtimeInitialized);runtimeInitialized=true;checkStackCookie();if(!Module["noFSInit"]&&!FS.init.initialized)FS.init();FS.ignorePermissions=false;TTY.init();callRuntimeCallbacks(__ATINIT__)}function preMain(){checkStackCookie();callRuntimeCallbacks(__ATMAIN__)}function exitRuntime(){assert(!runtimeExited);checkStackCookie();___funcs_on_exit();callRuntimeCallbacks(__ATEXIT__);FS.quit();TTY.shutdown();IDBFS.quit();runtimeExited=true}function postRun(){checkStackCookie();if(Module["postRun"]){if(typeof Module["postRun"]=="function")Module["postRun"]=[Module["postRun"]];while(Module["postRun"].length){addOnPostRun(Module["postRun"].shift())}}callRuntimeCallbacks(__ATPOSTRUN__)}function addOnPreRun(cb){__ATPRERUN__.unshift(cb)}function addOnInit(cb){__ATINIT__.unshift(cb)}function addOnPostRun(cb){__ATPOSTRUN__.unshift(cb)}assert(Math.imul,"This browser does not support Math.imul(), build with LEGACY_VM_SUPPORT or POLYFILL_OLD_MATH_FUNCTIONS to add in a polyfill");assert(Math.fround,"This browser does not support Math.fround(), build with LEGACY_VM_SUPPORT or POLYFILL_OLD_MATH_FUNCTIONS to add in a polyfill");assert(Math.clz32,"This browser does not support Math.clz32(), build with LEGACY_VM_SUPPORT or POLYFILL_OLD_MATH_FUNCTIONS to add in a polyfill");assert(Math.trunc,"This browser does not support Math.trunc(), build with LEGACY_VM_SUPPORT or POLYFILL_OLD_MATH_FUNCTIONS to add in a polyfill");var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;var runDependencyTracking={};function getUniqueRunDependency(id){var orig=id;while(1){if(!runDependencyTracking[id])return id;id=orig+Math.random()}}function addRunDependency(id){runDependencies++;Module["monitorRunDependencies"]?.(runDependencies);if(id){assert(!runDependencyTracking[id]);runDependencyTracking[id]=1;if(runDependencyWatcher===null&&typeof setInterval!="undefined"){runDependencyWatcher=setInterval(()=>{if(ABORT){clearInterval(runDependencyWatcher);runDependencyWatcher=null;return}var shown=false;for(var dep in runDependencyTracking){if(!shown){shown=true;err("still waiting on run dependencies:")}err(`dependency: ${dep}`)}if(shown){err("(end of list)")}},1e4)}}else{err("warning: run dependency added without ID")}}function removeRunDependency(id){runDependencies--;Module["monitorRunDependencies"]?.(runDependencies);if(id){assert(runDependencyTracking[id]);delete runDependencyTracking[id]}else{err("warning: run dependency removed without ID")}if(runDependencies==0){if(runDependencyWatcher!==null){clearInterval(runDependencyWatcher);runDependencyWatcher=null}if(dependenciesFulfilled){var callback=dependenciesFulfilled;dependenciesFulfilled=null;callback()}}}function abort(what){Module["onAbort"]?.(what);what="Aborted("+what+")";err(what);ABORT=true;EXITSTATUS=1;var e=new WebAssembly.RuntimeError(what);readyPromiseReject(e);throw e}var dataURIPrefix="data:application/octet-stream;base64,";var isDataURI=filename=>filename.startsWith(dataURIPrefix);var isFileURI=filename=>filename.startsWith("file://");function createExportWrapper(name,nargs){return(...args)=>{assert(runtimeInitialized,`native function \`${name}\` called before runtime initialization`);assert(!runtimeExited,`native function \`${name}\` called after runtime exit (use NO_EXIT_RUNTIME to keep it alive after main() exits)`);var f=wasmExports[name];assert(f,`exported native function \`${name}\` not found`);assert(args.length<=nargs,`native function \`${name}\` called with ${args.length} args but expects ${nargs}`);return f(...args)}}function findWasmBinary(){var f="godot.web.template_release.wasm32.nothreads.wasm";if(!isDataURI(f)){return locateFile(f)}return f}var wasmBinaryFile;function getBinarySync(file){if(file==wasmBinaryFile&&wasmBinary){return new Uint8Array(wasmBinary)}if(readBinary){return readBinary(file)}throw"both async and sync fetching of the wasm failed"}function getBinaryPromise(binaryFile){if(!wasmBinary){return readAsync(binaryFile).then(response=>new Uint8Array(response),()=>getBinarySync(binaryFile))}return Promise.resolve().then(()=>getBinarySync(binaryFile))}function instantiateArrayBuffer(binaryFile,imports,receiver){return getBinaryPromise(binaryFile).then(binary=>WebAssembly.instantiate(binary,imports)).then(receiver,reason=>{err(`failed to asynchronously prepare wasm: ${reason}`);if(isFileURI(wasmBinaryFile)){err(`warning: Loading from a file URI (${wasmBinaryFile}) is not supported in most browsers. See https://emscripten.org/docs/getting_started/FAQ.html#how-do-i-run-a-local-webserver-for-testing-why-does-my-program-stall-in-downloading-or-preparing`)}abort(reason)})}function instantiateAsync(binary,binaryFile,imports,callback){if(!binary&&typeof WebAssembly.instantiateStreaming=="function"&&!isDataURI(binaryFile)&&typeof fetch=="function"){return fetch(binaryFile,{credentials:"same-origin"}).then(response=>{var result=WebAssembly.instantiateStreaming(response,imports);return result.then(callback,function(reason){err(`wasm streaming compile failed: ${reason}`);err("falling back to ArrayBuffer instantiation");return instantiateArrayBuffer(binaryFile,imports,callback)})})}return instantiateArrayBuffer(binaryFile,imports,callback)}function getWasmImports(){return{env:wasmImports,wasi_snapshot_preview1:wasmImports}}function createWasm(){var info=getWasmImports();function receiveInstance(instance,module){wasmExports=instance.exports;wasmMemory=wasmExports["memory"];assert(wasmMemory,"memory not found in wasm exports");updateMemoryViews();wasmTable=wasmExports["__indirect_function_table"];assert(wasmTable,"table not found in wasm exports");addOnInit(wasmExports["__wasm_call_ctors"]);removeRunDependency("wasm-instantiate");return wasmExports}addRunDependency("wasm-instantiate");var trueModule=Module;function receiveInstantiationResult(result){assert(Module===trueModule,"the Module object should not be replaced during async compilation - perhaps the order of HTML elements is wrong?");trueModule=null;receiveInstance(result["instance"])}if(Module["instantiateWasm"]){try{return Module["instantiateWasm"](info,receiveInstance)}catch(e){err(`Module.instantiateWasm callback failed with error: ${e}`);readyPromiseReject(e)}}if(!wasmBinaryFile)wasmBinaryFile=findWasmBinary();instantiateAsync(wasmBinary,wasmBinaryFile,info,receiveInstantiationResult).catch(readyPromiseReject);return{}}function legacyModuleProp(prop,newName,incoming=true){if(!Object.getOwnPropertyDescriptor(Module,prop)){Object.defineProperty(Module,prop,{configurable:true,get(){let extra=incoming?" (the initial value can be provided on Module, but after startup the value is only looked for on a local variable of that name)":"";abort(`\`Module.${prop}\` has been replaced by \`${newName}\``+extra)}})}}function ignoredModuleProp(prop){if(Object.getOwnPropertyDescriptor(Module,prop)){abort(`\`Module.${prop}\` was supplied but \`${prop}\` not included in INCOMING_MODULE_JS_API`)}}function isExportedByForceFilesystem(name){return name==="FS_createPath"||name==="FS_createDataFile"||name==="FS_createPreloadedFile"||name==="FS_unlink"||name==="addRunDependency"||name==="FS_createLazyFile"||name==="FS_createDevice"||name==="removeRunDependency"}function missingGlobal(sym,msg){if(typeof globalThis!="undefined"){Object.defineProperty(globalThis,sym,{configurable:true,get(){warnOnce(`\`${sym}\` is not longer defined by emscripten. ${msg}`);return undefined}})}}missingGlobal("buffer","Please use HEAP8.buffer or wasmMemory.buffer");missingGlobal("asm","Please use wasmExports instead");function missingLibrarySymbol(sym){if(typeof globalThis!="undefined"&&!Object.getOwnPropertyDescriptor(globalThis,sym)){Object.defineProperty(globalThis,sym,{configurable:true,get(){var msg=`\`${sym}\` is a library symbol and not included by default; add it to your library.js __deps or to DEFAULT_LIBRARY_FUNCS_TO_INCLUDE on the command line`;var librarySymbol=sym;if(!librarySymbol.startsWith("_")){librarySymbol="$"+sym}msg+=` (e.g. -sDEFAULT_LIBRARY_FUNCS_TO_INCLUDE='${librarySymbol}')`;if(isExportedByForceFilesystem(sym)){msg+=". Alternatively, forcing filesystem support (-sFORCE_FILESYSTEM) can export this for you"}warnOnce(msg);return undefined}})}unexportedRuntimeSymbol(sym)}function unexportedRuntimeSymbol(sym){if(!Object.getOwnPropertyDescriptor(Module,sym)){Object.defineProperty(Module,sym,{configurable:true,get(){var msg=`'${sym}' was not exported. add it to EXPORTED_RUNTIME_METHODS (see the Emscripten FAQ)`;if(isExportedByForceFilesystem(sym)){msg+=". Alternatively, forcing filesystem support (-sFORCE_FILESYSTEM) can export this for you"}abort(msg)}})}}function ExitStatus(status){this.name="ExitStatus";this.message=`Program terminated with exit(${status})`;this.status=status}var callRuntimeCallbacks=callbacks=>{while(callbacks.length>0){callbacks.shift()(Module)}};function getValue(ptr,type="i8"){if(type.endsWith("*"))type="*";switch(type){case"i1":return HEAP8[ptr];case"i8":return HEAP8[ptr];case"i16":return HEAP16[ptr>>1];case"i32":return HEAP32[ptr>>2];case"i64":return HEAP64[ptr>>3];case"float":return HEAPF32[ptr>>2];case"double":return HEAPF64[ptr>>3];case"*":return HEAPU32[ptr>>2];default:abort(`invalid type for getValue: ${type}`)}}var noExitRuntime=Module["noExitRuntime"]||false;var ptrToString=ptr=>{assert(typeof ptr==="number");ptr>>>=0;return"0x"+ptr.toString(16).padStart(8,"0")};function setValue(ptr,value,type="i8"){if(type.endsWith("*"))type="*";switch(type){case"i1":HEAP8[ptr]=value;break;case"i8":HEAP8[ptr]=value;break;case"i16":HEAP16[ptr>>1]=value;break;case"i32":HEAP32[ptr>>2]=value;break;case"i64":HEAP64[ptr>>3]=BigInt(value);break;case"float":HEAPF32[ptr>>2]=value;break;case"double":HEAPF64[ptr>>3]=value;break;case"*":HEAPU32[ptr>>2]=value;break;default:abort(`invalid type for setValue: ${type}`)}}var warnOnce=text=>{warnOnce.shown||={};if(!warnOnce.shown[text]){warnOnce.shown[text]=1;err(text)}};var UTF8Decoder=typeof TextDecoder!="undefined"?new TextDecoder:undefined;var UTF8ArrayToString=(heapOrArray,idx,maxBytesToRead)=>{var endIdx=idx+maxBytesToRead;var endPtr=idx;while(heapOrArray[endPtr]&&!(endPtr>=endIdx))++endPtr;if(endPtr-idx>16&&heapOrArray.buffer&&UTF8Decoder){return UTF8Decoder.decode(heapOrArray.subarray(idx,endPtr))}var str="";while(idx<endPtr){var u0=heapOrArray[idx++];if(!(u0&128)){str+=String.fromCharCode(u0);continue}var u1=heapOrArray[idx++]&63;if((u0&224)==192){str+=String.fromCharCode((u0&31)<<6|u1);continue}var u2=heapOrArray[idx++]&63;if((u0&240)==224){u0=(u0&15)<<12|u1<<6|u2}else{if((u0&248)!=240)warnOnce("Invalid UTF-8 leading byte "+ptrToString(u0)+" encountered when deserializing a UTF-8 string in wasm memory to a JS string!");u0=(u0&7)<<18|u1<<12|u2<<6|heapOrArray[idx++]&63}if(u0<65536){str+=String.fromCharCode(u0)}else{var ch=u0-65536;str+=String.fromCharCode(55296|ch>>10,56320|ch&1023)}}return str};var UTF8ToString=(ptr,maxBytesToRead)=>{assert(typeof ptr=="number",`UTF8ToString expects a number (got ${typeof ptr})`);return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):""};var ___assert_fail=(condition,filename,line,func)=>{abort(`Assertion failed: ${UTF8ToString(condition)}, at: `+[filename?UTF8ToString(filename):"unknown filename",line,func?UTF8ToString(func):"unknown function"])};var wasmTable;var getWasmTableEntry=funcPtr=>wasmTable.get(funcPtr);var ___call_sighandler=(fp,sig)=>getWasmTableEntry(fp)(sig);var PATH={isAbs:path=>path.charAt(0)==="/",splitPath:filename=>{var splitPathRe=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/;return splitPathRe.exec(filename).slice(1)},normalizeArray:(parts,allowAboveRoot)=>{var up=0;for(var i=parts.length-1;i>=0;i--){var last=parts[i];if(last==="."){parts.splice(i,1)}else if(last===".."){parts.splice(i,1);up++}else if(up){parts.splice(i,1);up--}}if(allowAboveRoot){for(;up;up--){parts.unshift("..")}}return parts},normalize:path=>{var isAbsolute=PATH.isAbs(path),trailingSlash=path.substr(-1)==="/";path=PATH.normalizeArray(path.split("/").filter(p=>!!p),!isAbsolute).join("/");if(!path&&!isAbsolute){path="."}if(path&&trailingSlash){path+="/"}return(isAbsolute?"/":"")+path},dirname:path=>{var result=PATH.splitPath(path),root=result[0],dir=result[1];if(!root&&!dir){return"."}if(dir){dir=dir.substr(0,dir.length-1)}return root+dir},basename:path=>{if(path==="/")return"/";path=PATH.normalize(path);path=path.replace(/\/$/,"");var lastSlash=path.lastIndexOf("/");if(lastSlash===-1)return path;return path.substr(lastSlash+1)},join:(...paths)=>PATH.normalize(paths.join("/")),join2:(l,r)=>PATH.normalize(l+"/"+r)};var initRandomFill=()=>{if(typeof crypto=="object"&&typeof crypto["getRandomValues"]=="function"){return view=>crypto.getRandomValues(view)}else abort("no cryptographic support found for randomDevice. consider polyfilling it if you want to use something insecure like Math.random(), e.g. put this in a --pre-js: var crypto = { getRandomValues: (array) => { for (var i = 0; i < array.length; i++) array[i] = (Math.random()*256)|0 } };")};var randomFill=view=>(randomFill=initRandomFill())(view);var PATH_FS={resolve:(...args)=>{var resolvedPath="",resolvedAbsolute=false;for(var i=args.length-1;i>=-1&&!resolvedAbsolute;i--){var path=i>=0?args[i]:FS.cwd();if(typeof path!="string"){throw new TypeError("Arguments to path.resolve must be strings")}else if(!path){return""}resolvedPath=path+"/"+resolvedPath;resolvedAbsolute=PATH.isAbs(path)}resolvedPath=PATH.normalizeArray(resolvedPath.split("/").filter(p=>!!p),!resolvedAbsolute).join("/");return(resolvedAbsolute?"/":"")+resolvedPath||"."},relative:(from,to)=>{from=PATH_FS.resolve(from).substr(1);to=PATH_FS.resolve(to).substr(1);function trim(arr){var start=0;for(;start<arr.length;start++){if(arr[start]!=="")break}var end=arr.length-1;for(;end>=0;end--){if(arr[end]!=="")break}if(start>end)return[];return arr.slice(start,end-start+1)}var fromParts=trim(from.split("/"));var toParts=trim(to.split("/"));var length=Math.min(fromParts.length,toParts.length);var samePartsLength=length;for(var i=0;i<length;i++){if(fromParts[i]!==toParts[i]){samePartsLength=i;break}}var outputParts=[];for(var i=samePartsLength;i<fromParts.length;i++){outputParts.push("..")}outputParts=outputParts.concat(toParts.slice(samePartsLength));return outputParts.join("/")}};var FS_stdin_getChar_buffer=[];var lengthBytesUTF8=str=>{var len=0;for(var i=0;i<str.length;++i){var c=str.charCodeAt(i);if(c<=127){len++}else if(c<=2047){len+=2}else if(c>=55296&&c<=57343){len+=4;++i}else{len+=3}}return len};var stringToUTF8Array=(str,heap,outIdx,maxBytesToWrite)=>{assert(typeof str==="string",`stringToUTF8Array expects a string (got ${typeof str})`);if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i<str.length;++i){var u=str.charCodeAt(i);if(u>=55296&&u<=57343){var u1=str.charCodeAt(++i);u=65536+((u&1023)<<10)|u1&1023}if(u<=127){if(outIdx>=endIdx)break;heap[outIdx++]=u}else if(u<=2047){if(outIdx+1>=endIdx)break;heap[outIdx++]=192|u>>6;heap[outIdx++]=128|u&63}else if(u<=65535){if(outIdx+2>=endIdx)break;heap[outIdx++]=224|u>>12;heap[outIdx++]=128|u>>6&63;heap[outIdx++]=128|u&63}else{if(outIdx+3>=endIdx)break;if(u>1114111)warnOnce("Invalid Unicode code point "+ptrToString(u)+" encountered when serializing a JS string to a UTF-8 string in wasm memory! (Valid unicode code points should be in range 0-0x10FFFF).");heap[outIdx++]=240|u>>18;heap[outIdx++]=128|u>>12&63;heap[outIdx++]=128|u>>6&63;heap[outIdx++]=128|u&63}}heap[outIdx]=0;return outIdx-startIdx};function intArrayFromString(stringy,dontAddNull,length){var len=length>0?length:lengthBytesUTF8(stringy)+1;var u8array=new Array(len);var numBytesWritten=stringToUTF8Array(stringy,u8array,0,u8array.length);if(dontAddNull)u8array.length=numBytesWritten;return u8array}var FS_stdin_getChar=()=>{if(!FS_stdin_getChar_buffer.length){var result=null;if(typeof window!="undefined"&&typeof window.prompt=="function"){result=window.prompt("Input: ");if(result!==null){result+="\n"}}else{}if(!result){return null}FS_stdin_getChar_buffer=intArrayFromString(result,true)}return FS_stdin_getChar_buffer.shift()};var TTY={ttys:[],init(){},shutdown(){},register(dev,ops){TTY.ttys[dev]={input:[],output:[],ops:ops};FS.registerDevice(dev,TTY.stream_ops)},stream_ops:{open(stream){var tty=TTY.ttys[stream.node.rdev];if(!tty){throw new FS.ErrnoError(43)}stream.tty=tty;stream.seekable=false},close(stream){stream.tty.ops.fsync(stream.tty)},fsync(stream){stream.tty.ops.fsync(stream.tty)},read(stream,buffer,offset,length,pos){if(!stream.tty||!stream.tty.ops.get_char){throw new FS.ErrnoError(60)}var bytesRead=0;for(var i=0;i<length;i++){var result;try{result=stream.tty.ops.get_char(stream.tty)}catch(e){throw new FS.ErrnoError(29)}if(result===undefined&&bytesRead===0){throw new FS.ErrnoError(6)}if(result===null||result===undefined)break;bytesRead++;buffer[offset+i]=result}if(bytesRead){stream.node.timestamp=Date.now()}return bytesRead},write(stream,buffer,offset,length,pos){if(!stream.tty||!stream.tty.ops.put_char){throw new FS.ErrnoError(60)}try{for(var i=0;i<length;i++){stream.tty.ops.put_char(stream.tty,buffer[offset+i])}}catch(e){throw new FS.ErrnoError(29)}if(length){stream.node.timestamp=Date.now()}return i}},default_tty_ops:{get_char(tty){return FS_stdin_getChar()},put_char(tty,val){if(val===null||val===10){out(UTF8ArrayToString(tty.output,0));tty.output=[]}else{if(val!=0)tty.output.push(val)}},fsync(tty){if(tty.output&&tty.output.length>0){out(UTF8ArrayToString(tty.output,0));tty.output=[]}},ioctl_tcgets(tty){return{c_iflag:25856,c_oflag:5,c_cflag:191,c_lflag:35387,c_cc:[3,28,127,21,4,0,1,0,17,19,26,0,18,15,23,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}},ioctl_tcsets(tty,optional_actions,data){return 0},ioctl_tiocgwinsz(tty){return[24,80]}},default_tty1_ops:{put_char(tty,val){if(val===null||val===10){err(UTF8ArrayToString(tty.output,0));tty.output=[]}else{if(val!=0)tty.output.push(val)}},fsync(tty){if(tty.output&&tty.output.length>0){err(UTF8ArrayToString(tty.output,0));tty.output=[]}}}};var mmapAlloc=size=>{abort("internal error: mmapAlloc called but `emscripten_builtin_memalign` native symbol not exported")};var MEMFS={ops_table:null,mount(mount){return MEMFS.createNode(null,"/",16384|511,0)},createNode(parent,name,mode,dev){if(FS.isBlkdev(mode)||FS.isFIFO(mode)){throw new FS.ErrnoError(63)}MEMFS.ops_table||={dir:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr,lookup:MEMFS.node_ops.lookup,mknod:MEMFS.node_ops.mknod,rename:MEMFS.node_ops.rename,unlink:MEMFS.node_ops.unlink,rmdir:MEMFS.node_ops.rmdir,readdir:MEMFS.node_ops.readdir,symlink:MEMFS.node_ops.symlink},stream:{llseek:MEMFS.stream_ops.llseek}},file:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr},stream:{llseek:MEMFS.stream_ops.llseek,read:MEMFS.stream_ops.read,write:MEMFS.stream_ops.write,allocate:MEMFS.stream_ops.allocate,mmap:MEMFS.stream_ops.mmap,msync:MEMFS.stream_ops.msync}},link:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr,readlink:MEMFS.node_ops.readlink},stream:{}},chrdev:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr},stream:FS.chrdev_stream_ops}};var node=FS.createNode(parent,name,mode,dev);if(FS.isDir(node.mode)){node.node_ops=MEMFS.ops_table.dir.node;node.stream_ops=MEMFS.ops_table.dir.stream;node.contents={}}else if(FS.isFile(node.mode)){node.node_ops=MEMFS.ops_table.file.node;node.stream_ops=MEMFS.ops_table.file.stream;node.usedBytes=0;node.contents=null}else if(FS.isLink(node.mode)){node.node_ops=MEMFS.ops_table.link.node;node.stream_ops=MEMFS.ops_table.link.stream}else if(FS.isChrdev(node.mode)){node.node_ops=MEMFS.ops_table.chrdev.node;node.stream_ops=MEMFS.ops_table.chrdev.stream}node.timestamp=Date.now();if(parent){parent.contents[name]=node;parent.timestamp=node.timestamp}return node},getFileDataAsTypedArray(node){if(!node.contents)return new Uint8Array(0);if(node.contents.subarray)return node.contents.subarray(0,node.usedBytes);return new Uint8Array(node.contents)},expandFileStorage(node,newCapacity){var prevCapacity=node.contents?node.contents.length:0;if(prevCapacity>=newCapacity)return;var CAPACITY_DOUBLING_MAX=1024*1024;newCapacity=Math.max(newCapacity,prevCapacity*(prevCapacity<CAPACITY_DOUBLING_MAX?2:1.125)>>>0);if(prevCapacity!=0)newCapacity=Math.max(newCapacity,256);var oldContents=node.contents;node.contents=new Uint8Array(newCapacity);if(node.usedBytes>0)node.contents.set(oldContents.subarray(0,node.usedBytes),0)},resizeFileStorage(node,newSize){if(node.usedBytes==newSize)return;if(newSize==0){node.contents=null;node.usedBytes=0}else{var oldContents=node.contents;node.contents=new Uint8Array(newSize);if(oldContents){node.contents.set(oldContents.subarray(0,Math.min(newSize,node.usedBytes)))}node.usedBytes=newSize}},node_ops:{getattr(node){var attr={};attr.dev=FS.isChrdev(node.mode)?node.id:1;attr.ino=node.id;attr.mode=node.mode;attr.nlink=1;attr.uid=0;attr.gid=0;attr.rdev=node.rdev;if(FS.isDir(node.mode)){attr.size=4096}else if(FS.isFile(node.mode)){attr.size=node.usedBytes}else if(FS.isLink(node.mode)){attr.size=node.link.length}else{attr.size=0}attr.atime=new Date(node.timestamp);attr.mtime=new Date(node.timestamp);attr.ctime=new Date(node.timestamp);attr.blksize=4096;attr.blocks=Math.ceil(attr.size/attr.blksize);return attr},setattr(node,attr){if(attr.mode!==undefined){node.mode=attr.mode}if(attr.timestamp!==undefined){node.timestamp=attr.timestamp}if(attr.size!==undefined){MEMFS.resizeFileStorage(node,attr.size)}},lookup(parent,name){throw FS.genericErrors[44]},mknod(parent,name,mode,dev){return MEMFS.createNode(parent,name,mode,dev)},rename(old_node,new_dir,new_name){if(FS.isDir(old_node.mode)){var new_node;try{new_node=FS.lookupNode(new_dir,new_name)}catch(e){}if(new_node){for(var i in new_node.contents){throw new FS.ErrnoError(55)}}}delete old_node.parent.contents[old_node.name];old_node.parent.timestamp=Date.now();old_node.name=new_name;new_dir.contents[new_name]=old_node;new_dir.timestamp=old_node.parent.timestamp},unlink(parent,name){delete parent.contents[name];parent.timestamp=Date.now()},rmdir(parent,name){var node=FS.lookupNode(parent,name);for(var i in node.contents){throw new FS.ErrnoError(55)}delete parent.contents[name];parent.timestamp=Date.now()},readdir(node){var entries=[".",".."];for(var key of Object.keys(node.contents)){entries.push(key)}return entries},symlink(parent,newname,oldpath){var node=MEMFS.createNode(parent,newname,511|40960,0);node.link=oldpath;return node},readlink(node){if(!FS.isLink(node.mode)){throw new FS.ErrnoError(28)}return node.link}},stream_ops:{read(stream,buffer,offset,length,position){var contents=stream.node.contents;if(position>=stream.node.usedBytes)return 0;var size=Math.min(stream.node.usedBytes-position,length);assert(size>=0);if(size>8&&contents.subarray){buffer.set(contents.subarray(position,position+size),offset)}else{for(var i=0;i<size;i++)buffer[offset+i]=contents[position+i]}return size},write(stream,buffer,offset,length,position,canOwn){assert(!(buffer instanceof ArrayBuffer));if(buffer.buffer===HEAP8.buffer){canOwn=false}if(!length)return 0;var node=stream.node;node.timestamp=Date.now();if(buffer.subarray&&(!node.contents||node.contents.subarray)){if(canOwn){assert(position===0,"canOwn must imply no weird position inside the file");node.contents=buffer.subarray(offset,offset+length);node.usedBytes=length;return length}else if(node.usedBytes===0&&position===0){node.contents=buffer.slice(offset,offset+length);node.usedBytes=length;return length}else if(position+length<=node.usedBytes){node.contents.set(buffer.subarray(offset,offset+length),position);return length}}MEMFS.expandFileStorage(node,position+length);if(node.contents.subarray&&buffer.subarray){node.contents.set(buffer.subarray(offset,offset+length),position)}else{for(var i=0;i<length;i++){node.contents[position+i]=buffer[offset+i]}}node.usedBytes=Math.max(node.usedBytes,position+length);return length},llseek(stream,offset,whence){var position=offset;if(whence===1){position+=stream.position}else if(whence===2){if(FS.isFile(stream.node.mode)){position+=stream.node.usedBytes}}if(position<0){throw new FS.ErrnoError(28)}return position},allocate(stream,offset,length){MEMFS.expandFileStorage(stream.node,offset+length);stream.node.usedBytes=Math.max(stream.node.usedBytes,offset+length)},mmap(stream,length,position,prot,flags){if(!FS.isFile(stream.node.mode)){throw new FS.ErrnoError(43)}var ptr;var allocated;var contents=stream.node.contents;if(!(flags&2)&&contents.buffer===HEAP8.buffer){allocated=false;ptr=contents.byteOffset}else{if(position>0||position+length<contents.length){if(contents.subarray){contents=contents.subarray(position,position+length)}else{contents=Array.prototype.slice.call(contents,position,position+length)}}allocated=true;ptr=mmapAlloc(length);if(!ptr){throw new FS.ErrnoError(48)}HEAP8.set(contents,ptr)}return{ptr:ptr,allocated:allocated}},msync(stream,buffer,offset,length,mmapFlags){MEMFS.stream_ops.write(stream,buffer,0,length,offset,false);return 0}}};var asyncLoad=(url,onload,onerror,noRunDep)=>{var dep=!noRunDep?getUniqueRunDependency(`al ${url}`):"";readAsync(url).then(arrayBuffer=>{assert(arrayBuffer,`Loading data file "${url}" failed (no arrayBuffer).`);onload(new Uint8Array(arrayBuffer));if(dep)removeRunDependency(dep)},err=>{if(onerror){onerror()}else{throw`Loading data file "${url}" failed.`}});if(dep)addRunDependency(dep)};var FS_createDataFile=(parent,name,fileData,canRead,canWrite,canOwn)=>{FS.createDataFile(parent,name,fileData,canRead,canWrite,canOwn)};var preloadPlugins=Module["preloadPlugins"]||[];var FS_handledByPreloadPlugin=(byteArray,fullname,finish,onerror)=>{if(typeof Browser!="undefined")Browser.init();var handled=false;preloadPlugins.forEach(plugin=>{if(handled)return;if(plugin["canHandle"](fullname)){plugin["handle"](byteArray,fullname,finish,onerror);handled=true}});return handled};var FS_createPreloadedFile=(parent,name,url,canRead,canWrite,onload,onerror,dontCreateFile,canOwn,preFinish)=>{var fullname=name?PATH_FS.resolve(PATH.join2(parent,name)):parent;var dep=getUniqueRunDependency(`cp ${fullname}`);function processData(byteArray){function finish(byteArray){preFinish?.();if(!dontCreateFile){FS_createDataFile(parent,name,byteArray,canRead,canWrite,canOwn)}onload?.();removeRunDependency(dep)}if(FS_handledByPreloadPlugin(byteArray,fullname,finish,()=>{onerror?.();removeRunDependency(dep)})){return}finish(byteArray)}addRunDependency(dep);if(typeof url=="string"){asyncLoad(url,processData,onerror)}else{processData(url)}};var FS_modeStringToFlags=str=>{var flagModes={r:0,"r+":2,w:512|64|1,"w+":512|64|2,a:1024|64|1,"a+":1024|64|2};var flags=flagModes[str];if(typeof flags=="undefined"){throw new Error(`Unknown file open mode: ${str}`)}return flags};var FS_getMode=(canRead,canWrite)=>{var mode=0;if(canRead)mode|=292|73;if(canWrite)mode|=146;return mode};var IDBFS={dbs:{},indexedDB:()=>{if(typeof indexedDB!="undefined")return indexedDB;var ret=null;if(typeof window=="object")ret=window.indexedDB||window.mozIndexedDB||window.webkitIndexedDB||window.msIndexedDB;assert(ret,"IDBFS used, but indexedDB not supported");return ret},DB_VERSION:21,DB_STORE_NAME:"FILE_DATA",queuePersist:mount=>{function onPersistComplete(){if(mount.idbPersistState==="again")startPersist();else mount.idbPersistState=0}function startPersist(){mount.idbPersistState="idb";IDBFS.syncfs(mount,false,onPersistComplete)}if(!mount.idbPersistState){mount.idbPersistState=setTimeout(startPersist,0)}else if(mount.idbPersistState==="idb"){mount.idbPersistState="again"}},mount:mount=>{var mnt=MEMFS.mount(mount);if(mount?.opts?.autoPersist){mnt.idbPersistState=0;var memfs_node_ops=mnt.node_ops;mnt.node_ops=Object.assign({},mnt.node_ops);mnt.node_ops.mknod=(parent,name,mode,dev)=>{var node=memfs_node_ops.mknod(parent,name,mode,dev);node.node_ops=mnt.node_ops;node.idbfs_mount=mnt.mount;node.memfs_stream_ops=node.stream_ops;node.stream_ops=Object.assign({},node.stream_ops);node.stream_ops.write=(stream,buffer,offset,length,position,canOwn)=>{stream.node.isModified=true;return node.memfs_stream_ops.write(stream,buffer,offset,length,position,canOwn)};node.stream_ops.close=stream=>{var n=stream.node;if(n.isModified){IDBFS.queuePersist(n.idbfs_mount);n.isModified=false}if(n.memfs_stream_ops.close)return n.memfs_stream_ops.close(stream)};return node};mnt.node_ops.mkdir=(...args)=>(IDBFS.queuePersist(mnt.mount),memfs_node_ops.mkdir(...args));mnt.node_ops.rmdir=(...args)=>(IDBFS.queuePersist(mnt.mount),memfs_node_ops.rmdir(...args));mnt.node_ops.symlink=(...args)=>(IDBFS.queuePersist(mnt.mount),memfs_node_ops.symlink(...args));mnt.node_ops.unlink=(...args)=>(IDBFS.queuePersist(mnt.mount),memfs_node_ops.unlink(...args));mnt.node_ops.rename=(...args)=>(IDBFS.queuePersist(mnt.mount),memfs_node_ops.rename(...args))}return mnt},syncfs:(mount,populate,callback)=>{IDBFS.getLocalSet(mount,(err,local)=>{if(err)return callback(err);IDBFS.getRemoteSet(mount,(err,remote)=>{if(err)return callback(err);var src=populate?remote:local;var dst=populate?local:remote;IDBFS.reconcile(src,dst,callback)})})},quit:()=>{Object.values(IDBFS.dbs).forEach(value=>value.close());IDBFS.dbs={}},getDB:(name,callback)=>{var db=IDBFS.dbs[name];if(db){return callback(null,db)}var req;try{req=IDBFS.indexedDB().open(name,IDBFS.DB_VERSION)}catch(e){return callback(e)}if(!req){return callback("Unable to connect to IndexedDB")}req.onupgradeneeded=e=>{var db=e.target.result;var transaction=e.target.transaction;var fileStore;if(db.objectStoreNames.contains(IDBFS.DB_STORE_NAME)){fileStore=transaction.objectStore(IDBFS.DB_STORE_NAME)}else{fileStore=db.createObjectStore(IDBFS.DB_STORE_NAME)}if(!fileStore.indexNames.contains("timestamp")){fileStore.createIndex("timestamp","timestamp",{unique:false})}};req.onsuccess=()=>{db=req.result;IDBFS.dbs[name]=db;callback(null,db)};req.onerror=e=>{callback(e.target.error);e.preventDefault()}},getLocalSet:(mount,callback)=>{var entries={};function isRealDir(p){return p!=="."&&p!==".."}function toAbsolute(root){return p=>PATH.join2(root,p)}var check=FS.readdir(mount.mountpoint).filter(isRealDir).map(toAbsolute(mount.mountpoint));while(check.length){var path=check.pop();var stat;try{stat=FS.stat(path)}catch(e){return callback(e)}if(FS.isDir(stat.mode)){check.push(...FS.readdir(path).filter(isRealDir).map(toAbsolute(path)))}entries[path]={timestamp:stat.mtime}}return callback(null,{type:"local",entries:entries})},getRemoteSet:(mount,callback)=>{var entries={};IDBFS.getDB(mount.mountpoint,(err,db)=>{if(err)return callback(err);try{var transaction=db.transaction([IDBFS.DB_STORE_NAME],"readonly");transaction.onerror=e=>{callback(e.target.error);e.preventDefault()};var store=transaction.objectStore(IDBFS.DB_STORE_NAME);var index=store.index("timestamp");index.openKeyCursor().onsuccess=event=>{var cursor=event.target.result;if(!cursor){return callback(null,{type:"remote",db:db,entries:entries})}entries[cursor.primaryKey]={timestamp:cursor.key};cursor.continue()}}catch(e){return callback(e)}})},loadLocalEntry:(path,callback)=>{var stat,node;try{var lookup=FS.lookupPath(path);node=lookup.node;stat=FS.stat(path)}catch(e){return callback(e)}if(FS.isDir(stat.mode)){return callback(null,{timestamp:stat.mtime,mode:stat.mode})}else if(FS.isFile(stat.mode)){node.contents=MEMFS.getFileDataAsTypedArray(node);return callback(null,{timestamp:stat.mtime,mode:stat.mode,contents:node.contents})}else{return callback(new Error("node type not supported"))}},storeLocalEntry:(path,entry,callback)=>{try{if(FS.isDir(entry["mode"])){FS.mkdirTree(path,entry["mode"])}else if(FS.isFile(entry["mode"])){FS.writeFile(path,entry["contents"],{canOwn:true})}else{return callback(new Error("node type not supported"))}FS.chmod(path,entry["mode"]);FS.utime(path,entry["timestamp"],entry["timestamp"])}catch(e){return callback(e)}callback(null)},removeLocalEntry:(path,callback)=>{try{var stat=FS.stat(path);if(FS.isDir(stat.mode)){FS.rmdir(path)}else if(FS.isFile(stat.mode)){FS.unlink(path)}}catch(e){return callback(e)}callback(null)},loadRemoteEntry:(store,path,callback)=>{var req=store.get(path);req.onsuccess=event=>callback(null,event.target.result);req.onerror=e=>{callback(e.target.error);e.preventDefault()}},storeRemoteEntry:(store,path,entry,callback)=>{try{var req=store.put(entry,path)}catch(e){callback(e);return}req.onsuccess=event=>callback();req.onerror=e=>{callback(e.target.error);e.preventDefault()}},removeRemoteEntry:(store,path,callback)=>{var req=store.delete(path);req.onsuccess=event=>callback();req.onerror=e=>{callback(e.target.error);e.preventDefault()}},reconcile:(src,dst,callback)=>{var total=0;var create=[];Object.keys(src.entries).forEach(function(key){var e=src.entries[key];var e2=dst.entries[key];if(!e2||e["timestamp"].getTime()!=e2["timestamp"].getTime()){create.push(key);total++}});var remove=[];Object.keys(dst.entries).forEach(function(key){if(!src.entries[key]){remove.push(key);total++}});if(!total){return callback(null)}var errored=false;var db=src.type==="remote"?src.db:dst.db;var transaction=db.transaction([IDBFS.DB_STORE_NAME],"readwrite");var store=transaction.objectStore(IDBFS.DB_STORE_NAME);function done(err){if(err&&!errored){errored=true;return callback(err)}}transaction.onerror=transaction.onabort=e=>{done(e.target.error);e.preventDefault()};transaction.oncomplete=e=>{if(!errored){callback(null)}};create.sort().forEach(path=>{if(dst.type==="local"){IDBFS.loadRemoteEntry(store,path,(err,entry)=>{if(err)return done(err);IDBFS.storeLocalEntry(path,entry,done)})}else{IDBFS.loadLocalEntry(path,(err,entry)=>{if(err)return done(err);IDBFS.storeRemoteEntry(store,path,entry,done)})}});remove.sort().reverse().forEach(path=>{if(dst.type==="local"){IDBFS.removeLocalEntry(path,done)}else{IDBFS.removeRemoteEntry(store,path,done)}})}};var strError=errno=>UTF8ToString(_strerror(errno));var ERRNO_CODES={EPERM:63,ENOENT:44,ESRCH:71,EINTR:27,EIO:29,ENXIO:60,E2BIG:1,ENOEXEC:45,EBADF:8,ECHILD:12,EAGAIN:6,EWOULDBLOCK:6,ENOMEM:48,EACCES:2,EFAULT:21,ENOTBLK:105,EBUSY:10,EEXIST:20,EXDEV:75,ENODEV:43,ENOTDIR:54,EISDIR:31,EINVAL:28,ENFILE:41,EMFILE:33,ENOTTY:59,ETXTBSY:74,EFBIG:22,ENOSPC:51,ESPIPE:70,EROFS:69,EMLINK:34,EPIPE:64,EDOM:18,ERANGE:68,ENOMSG:49,EIDRM:24,ECHRNG:106,EL2NSYNC:156,EL3HLT:107,EL3RST:108,ELNRNG:109,EUNATCH:110,ENOCSI:111,EL2HLT:112,EDEADLK:16,ENOLCK:46,EBADE:113,EBADR:114,EXFULL:115,ENOANO:104,EBADRQC:103,EBADSLT:102,EDEADLOCK:16,EBFONT:101,ENOSTR:100,ENODATA:116,ETIME:117,ENOSR:118,ENONET:119,ENOPKG:120,EREMOTE:121,ENOLINK:47,EADV:122,ESRMNT:123,ECOMM:124,EPROTO:65,EMULTIHOP:36,EDOTDOT:125,EBADMSG:9,ENOTUNIQ:126,EBADFD:127,EREMCHG:128,ELIBACC:129,ELIBBAD:130,ELIBSCN:131,ELIBMAX:132,ELIBEXEC:133,ENOSYS:52,ENOTEMPTY:55,ENAMETOOLONG:37,ELOOP:32,EOPNOTSUPP:138,EPFNOSUPPORT:139,ECONNRESET:15,ENOBUFS:42,EAFNOSUPPORT:5,EPROTOTYPE:67,ENOTSOCK:57,ENOPROTOOPT:50,ESHUTDOWN:140,ECONNREFUSED:14,EADDRINUSE:3,ECONNABORTED:13,ENETUNREACH:40,ENETDOWN:38,ETIMEDOUT:73,EHOSTDOWN:142,EHOSTUNREACH:23,EINPROGRESS:26,EALREADY:7,EDESTADDRREQ:17,EMSGSIZE:35,EPROTONOSUPPORT:66,ESOCKTNOSUPPORT:137,EADDRNOTAVAIL:4,ENETRESET:39,EISCONN:30,ENOTCONN:53,ETOOMANYREFS:141,EUSERS:136,EDQUOT:19,ESTALE:72,ENOTSUP:138,ENOMEDIUM:148,EILSEQ:25,EOVERFLOW:61,ECANCELED:11,ENOTRECOVERABLE:56,EOWNERDEAD:62,ESTRPIPE:135};var FS={root:null,mounts:[],devices:{},streams:[],nextInode:1,nameTable:null,currentPath:"/",initialized:false,ignorePermissions:true,ErrnoError:class extends Error{constructor(errno){super(runtimeInitialized?strError(errno):"");this.name="ErrnoError";this.errno=errno;for(var key in ERRNO_CODES){if(ERRNO_CODES[key]===errno){this.code=key;break}}}},genericErrors:{},filesystems:null,syncFSRequests:0,FSStream:class{constructor(){this.shared={}}get object(){return this.node}set object(val){this.node=val}get isRead(){return(this.flags&2097155)!==1}get isWrite(){return(this.flags&2097155)!==0}get isAppend(){return this.flags&1024}get flags(){return this.shared.flags}set flags(val){this.shared.flags=val}get position(){return this.shared.position}set position(val){this.shared.position=val}},FSNode:class{constructor(parent,name,mode,rdev){if(!parent){parent=this}this.parent=parent;this.mount=parent.mount;this.mounted=null;this.id=FS.nextInode++;this.name=name;this.mode=mode;this.node_ops={};this.stream_ops={};this.rdev=rdev;this.readMode=292|73;this.writeMode=146}get read(){return(this.mode&this.readMode)===this.readMode}set read(val){val?this.mode|=this.readMode:this.mode&=~this.readMode}get write(){return(this.mode&this.writeMode)===this.writeMode}set write(val){val?this.mode|=this.writeMode:this.mode&=~this.writeMode}get isFolder(){return FS.isDir(this.mode)}get isDevice(){return FS.isChrdev(this.mode)}},lookupPath(path,opts={}){path=PATH_FS.resolve(path);if(!path)return{path:"",node:null};var defaults={follow_mount:true,recurse_count:0};opts=Object.assign(defaults,opts);if(opts.recurse_count>8){throw new FS.ErrnoError(32)}var parts=path.split("/").filter(p=>!!p);var current=FS.root;var current_path="/";for(var i=0;i<parts.length;i++){var islast=i===parts.length-1;if(islast&&opts.parent){break}current=FS.lookupNode(current,parts[i]);current_path=PATH.join2(current_path,parts[i]);if(FS.isMountpoint(current)){if(!islast||islast&&opts.follow_mount){current=current.mounted.root}}if(!islast||opts.follow){var count=0;while(FS.isLink(current.mode)){var link=FS.readlink(current_path);current_path=PATH_FS.resolve(PATH.dirname(current_path),link);var lookup=FS.lookupPath(current_path,{recurse_count:opts.recurse_count+1});current=lookup.node;if(count++>40){throw new FS.ErrnoError(32)}}}}return{path:current_path,node:current}},getPath(node){var path;while(true){if(FS.isRoot(node)){var mount=node.mount.mountpoint;if(!path)return mount;return mount[mount.length-1]!=="/"?`${mount}/${path}`:mount+path}path=path?`${node.name}/${path}`:node.name;node=node.parent}},hashName(parentid,name){var hash=0;for(var i=0;i<name.length;i++){hash=(hash<<5)-hash+name.charCodeAt(i)|0}return(parentid+hash>>>0)%FS.nameTable.length},hashAddNode(node){var hash=FS.hashName(node.parent.id,node.name);node.name_next=FS.nameTable[hash];FS.nameTable[hash]=node},hashRemoveNode(node){var hash=FS.hashName(node.parent.id,node.name);if(FS.nameTable[hash]===node){FS.nameTable[hash]=node.name_next}else{var current=FS.nameTable[hash];while(current){if(current.name_next===node){current.name_next=node.name_next;break}current=current.name_next}}},lookupNode(parent,name){var errCode=FS.mayLookup(parent);if(errCode){throw new FS.ErrnoError(errCode)}var hash=FS.hashName(parent.id,name);for(var node=FS.nameTable[hash];node;node=node.name_next){var nodeName=node.name;if(node.parent.id===parent.id&&nodeName===name){return node}}return FS.lookup(parent,name)},createNode(parent,name,mode,rdev){assert(typeof parent=="object");var node=new FS.FSNode(parent,name,mode,rdev);FS.hashAddNode(node);return node},destroyNode(node){FS.hashRemoveNode(node)},isRoot(node){return node===node.parent},isMountpoint(node){return!!node.mounted},isFile(mode){return(mode&61440)===32768},isDir(mode){return(mode&61440)===16384},isLink(mode){return(mode&61440)===40960},isChrdev(mode){return(mode&61440)===8192},isBlkdev(mode){return(mode&61440)===24576},isFIFO(mode){return(mode&61440)===4096},isSocket(mode){return(mode&49152)===49152},flagsToPermissionString(flag){var perms=["r","w","rw"][flag&3];if(flag&512){perms+="w"}return perms},nodePermissions(node,perms){if(FS.ignorePermissions){return 0}if(perms.includes("r")&&!(node.mode&292)){return 2}else if(perms.includes("w")&&!(node.mode&146)){return 2}else if(perms.includes("x")&&!(node.mode&73)){return 2}return 0},mayLookup(dir){if(!FS.isDir(dir.mode))return 54;var errCode=FS.nodePermissions(dir,"x");if(errCode)return errCode;if(!dir.node_ops.lookup)return 2;return 0},mayCreate(dir,name){try{var node=FS.lookupNode(dir,name);return 20}catch(e){}return FS.nodePermissions(dir,"wx")},mayDelete(dir,name,isdir){var node;try{node=FS.lookupNode(dir,name)}catch(e){return e.errno}var errCode=FS.nodePermissions(dir,"wx");if(errCode){return errCode}if(isdir){if(!FS.isDir(node.mode)){return 54}if(FS.isRoot(node)||FS.getPath(node)===FS.cwd()){return 10}}else{if(FS.isDir(node.mode)){return 31}}return 0},mayOpen(node,flags){if(!node){return 44}if(FS.isLink(node.mode)){return 32}else if(FS.isDir(node.mode)){if(FS.flagsToPermissionString(flags)!=="r"||flags&512){return 31}}return FS.nodePermissions(node,FS.flagsToPermissionString(flags))},MAX_OPEN_FDS:4096,nextfd(){for(var fd=0;fd<=FS.MAX_OPEN_FDS;fd++){if(!FS.streams[fd]){return fd}}throw new FS.ErrnoError(33)},getStreamChecked(fd){var stream=FS.getStream(fd);if(!stream){throw new FS.ErrnoError(8)}return stream},getStream:fd=>FS.streams[fd],createStream(stream,fd=-1){assert(fd>=-1);stream=Object.assign(new FS.FSStream,stream);if(fd==-1){fd=FS.nextfd()}stream.fd=fd;FS.streams[fd]=stream;return stream},closeStream(fd){FS.streams[fd]=null},dupStream(origStream,fd=-1){var stream=FS.createStream(origStream,fd);stream.stream_ops?.dup?.(stream);return stream},chrdev_stream_ops:{open(stream){var device=FS.getDevice(stream.node.rdev);stream.stream_ops=device.stream_ops;stream.stream_ops.open?.(stream)},llseek(){throw new FS.ErrnoError(70)}},major:dev=>dev>>8,minor:dev=>dev&255,makedev:(ma,mi)=>ma<<8|mi,registerDevice(dev,ops){FS.devices[dev]={stream_ops:ops}},getDevice:dev=>FS.devices[dev],getMounts(mount){var mounts=[];var check=[mount];while(check.length){var m=check.pop();mounts.push(m);check.push(...m.mounts)}return mounts},syncfs(populate,callback){if(typeof populate=="function"){callback=populate;populate=false}FS.syncFSRequests++;if(FS.syncFSRequests>1){err(`warning: ${FS.syncFSRequests} FS.syncfs operations in flight at once, probably just doing extra work`)}var mounts=FS.getMounts(FS.root.mount);var completed=0;function doCallback(errCode){assert(FS.syncFSRequests>0);FS.syncFSRequests--;return callback(errCode)}function done(errCode){if(errCode){if(!done.errored){done.errored=true;return doCallback(errCode)}return}if(++completed>=mounts.length){doCallback(null)}}mounts.forEach(mount=>{if(!mount.type.syncfs){return done(null)}mount.type.syncfs(mount,populate,done)})},mount(type,opts,mountpoint){if(typeof type=="string"){throw type}var root=mountpoint==="/";var pseudo=!mountpoint;var node;if(root&&FS.root){throw new FS.ErrnoError(10)}else if(!root&&!pseudo){var lookup=FS.lookupPath(mountpoint,{follow_mount:false});mountpoint=lookup.path;node=lookup.node;if(FS.isMountpoint(node)){throw new FS.ErrnoError(10)}if(!FS.isDir(node.mode)){throw new FS.ErrnoError(54)}}var mount={type:type,opts:opts,mountpoint:mountpoint,mounts:[]};var mountRoot=type.mount(mount);mountRoot.mount=mount;mount.root=mountRoot;if(root){FS.root=mountRoot}else if(node){node.mounted=mount;if(node.mount){node.mount.mounts.push(mount)}}return mountRoot},unmount(mountpoint){var lookup=FS.lookupPath(mountpoint,{follow_mount:false});if(!FS.isMountpoint(lookup.node)){throw new FS.ErrnoError(28)}var node=lookup.node;var mount=node.mounted;var mounts=FS.getMounts(mount);Object.keys(FS.nameTable).forEach(hash=>{var current=FS.nameTable[hash];while(current){var next=current.name_next;if(mounts.includes(current.mount)){FS.destroyNode(current)}current=next}});node.mounted=null;var idx=node.mount.mounts.indexOf(mount);assert(idx!==-1);node.mount.mounts.splice(idx,1)},lookup(parent,name){return parent.node_ops.lookup(parent,name)},mknod(path,mode,dev){var lookup=FS.lookupPath(path,{parent:true});var parent=lookup.node;var name=PATH.basename(path);if(!name||name==="."||name===".."){throw new FS.ErrnoError(28)}var errCode=FS.mayCreate(parent,name);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.mknod){throw new FS.ErrnoError(63)}return parent.node_ops.mknod(parent,name,mode,dev)},create(path,mode){mode=mode!==undefined?mode:438;mode&=4095;mode|=32768;return FS.mknod(path,mode,0)},mkdir(path,mode){mode=mode!==undefined?mode:511;mode&=511|512;mode|=16384;return FS.mknod(path,mode,0)},mkdirTree(path,mode){var dirs=path.split("/");var d="";for(var i=0;i<dirs.length;++i){if(!dirs[i])continue;d+="/"+dirs[i];try{FS.mkdir(d,mode)}catch(e){if(e.errno!=20)throw e}}},mkdev(path,mode,dev){if(typeof dev=="undefined"){dev=mode;mode=438}mode|=8192;return FS.mknod(path,mode,dev)},symlink(oldpath,newpath){if(!PATH_FS.resolve(oldpath)){throw new FS.ErrnoError(44)}var lookup=FS.lookupPath(newpath,{parent:true});var parent=lookup.node;if(!parent){throw new FS.ErrnoError(44)}var newname=PATH.basename(newpath);var errCode=FS.mayCreate(parent,newname);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.symlink){throw new FS.ErrnoError(63)}return parent.node_ops.symlink(parent,newname,oldpath)},rename(old_path,new_path){var old_dirname=PATH.dirname(old_path);var new_dirname=PATH.dirname(new_path);var old_name=PATH.basename(old_path);var new_name=PATH.basename(new_path);var lookup,old_dir,new_dir;lookup=FS.lookupPath(old_path,{parent:true});old_dir=lookup.node;lookup=FS.lookupPath(new_path,{parent:true});new_dir=lookup.node;if(!old_dir||!new_dir)throw new FS.ErrnoError(44);if(old_dir.mount!==new_dir.mount){throw new FS.ErrnoError(75)}var old_node=FS.lookupNode(old_dir,old_name);var relative=PATH_FS.relative(old_path,new_dirname);if(relative.charAt(0)!=="."){throw new FS.ErrnoError(28)}relative=PATH_FS.relative(new_path,old_dirname);if(relative.charAt(0)!=="."){throw new FS.ErrnoError(55)}var new_node;try{new_node=FS.lookupNode(new_dir,new_name)}catch(e){}if(old_node===new_node){return}var isdir=FS.isDir(old_node.mode);var errCode=FS.mayDelete(old_dir,old_name,isdir);if(errCode){throw new FS.ErrnoError(errCode)}errCode=new_node?FS.mayDelete(new_dir,new_name,isdir):FS.mayCreate(new_dir,new_name);if(errCode){throw new FS.ErrnoError(errCode)}if(!old_dir.node_ops.rename){throw new FS.ErrnoError(63)}if(FS.isMountpoint(old_node)||new_node&&FS.isMountpoint(new_node)){throw new FS.ErrnoError(10)}if(new_dir!==old_dir){errCode=FS.nodePermissions(old_dir,"w");if(errCode){throw new FS.ErrnoError(errCode)}}FS.hashRemoveNode(old_node);try{old_dir.node_ops.rename(old_node,new_dir,new_name);old_node.parent=new_dir}catch(e){throw e}finally{FS.hashAddNode(old_node)}},rmdir(path){var lookup=FS.lookupPath(path,{parent:true});var parent=lookup.node;var name=PATH.basename(path);var node=FS.lookupNode(parent,name);var errCode=FS.mayDelete(parent,name,true);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.rmdir){throw new FS.ErrnoError(63)}if(FS.isMountpoint(node)){throw new FS.ErrnoError(10)}parent.node_ops.rmdir(parent,name);FS.destroyNode(node)},readdir(path){var lookup=FS.lookupPath(path,{follow:true});var node=lookup.node;if(!node.node_ops.readdir){throw new FS.ErrnoError(54)}return node.node_ops.readdir(node)},unlink(path){var lookup=FS.lookupPath(path,{parent:true});var parent=lookup.node;if(!parent){throw new FS.ErrnoError(44)}var name=PATH.basename(path);var node=FS.lookupNode(parent,name);var errCode=FS.mayDelete(parent,name,false);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.unlink){throw new FS.ErrnoError(63)}if(FS.isMountpoint(node)){throw new FS.ErrnoError(10)}parent.node_ops.unlink(parent,name);FS.destroyNode(node)},readlink(path){var lookup=FS.lookupPath(path);var link=lookup.node;if(!link){throw new FS.ErrnoError(44)}if(!link.node_ops.readlink){throw new FS.ErrnoError(28)}return PATH_FS.resolve(FS.getPath(link.parent),link.node_ops.readlink(link))},stat(path,dontFollow){var lookup=FS.lookupPath(path,{follow:!dontFollow});var node=lookup.node;if(!node){throw new FS.ErrnoError(44)}if(!node.node_ops.getattr){throw new FS.ErrnoError(63)}return node.node_ops.getattr(node)},lstat(path){return FS.stat(path,true)},chmod(path,mode,dontFollow){var node;if(typeof path=="string"){var lookup=FS.lookupPath(path,{follow:!dontFollow});node=lookup.node}else{node=path}if(!node.node_ops.setattr){throw new FS.ErrnoError(63)}node.node_ops.setattr(node,{mode:mode&4095|node.mode&~4095,timestamp:Date.now()})},lchmod(path,mode){FS.chmod(path,mode,true)},fchmod(fd,mode){var stream=FS.getStreamChecked(fd);FS.chmod(stream.node,mode)},chown(path,uid,gid,dontFollow){var node;if(typeof path=="string"){var lookup=FS.lookupPath(path,{follow:!dontFollow});node=lookup.node}else{node=path}if(!node.node_ops.setattr){throw new FS.ErrnoError(63)}node.node_ops.setattr(node,{timestamp:Date.now()})},lchown(path,uid,gid){FS.chown(path,uid,gid,true)},fchown(fd,uid,gid){var stream=FS.getStreamChecked(fd);FS.chown(stream.node,uid,gid)},truncate(path,len){if(len<0){throw new FS.ErrnoError(28)}var node;if(typeof path=="string"){var lookup=FS.lookupPath(path,{follow:true});node=lookup.node}else{node=path}if(!node.node_ops.setattr){throw new FS.ErrnoError(63)}if(FS.isDir(node.mode)){throw new FS.ErrnoError(31)}if(!FS.isFile(node.mode)){throw new FS.ErrnoError(28)}var errCode=FS.nodePermissions(node,"w");if(errCode){throw new FS.ErrnoError(errCode)}node.node_ops.setattr(node,{size:len,timestamp:Date.now()})},ftruncate(fd,len){var stream=FS.getStreamChecked(fd);if((stream.flags&2097155)===0){throw new FS.ErrnoError(28)}FS.truncate(stream.node,len)},utime(path,atime,mtime){var lookup=FS.lookupPath(path,{follow:true});var node=lookup.node;node.node_ops.setattr(node,{timestamp:Math.max(atime,mtime)})},open(path,flags,mode){if(path===""){throw new FS.ErrnoError(44)}flags=typeof flags=="string"?FS_modeStringToFlags(flags):flags;if(flags&64){mode=typeof mode=="undefined"?438:mode;mode=mode&4095|32768}else{mode=0}var node;if(typeof path=="object"){node=path}else{path=PATH.normalize(path);try{var lookup=FS.lookupPath(path,{follow:!(flags&131072)});node=lookup.node}catch(e){}}var created=false;if(flags&64){if(node){if(flags&128){throw new FS.ErrnoError(20)}}else{node=FS.mknod(path,mode,0);created=true}}if(!node){throw new FS.ErrnoError(44)}if(FS.isChrdev(node.mode)){flags&=~512}if(flags&65536&&!FS.isDir(node.mode)){throw new FS.ErrnoError(54)}if(!created){var errCode=FS.mayOpen(node,flags);if(errCode){throw new FS.ErrnoError(errCode)}}if(flags&512&&!created){FS.truncate(node,0)}flags&=~(128|512|131072);var stream=FS.createStream({node:node,path:FS.getPath(node),flags:flags,seekable:true,position:0,stream_ops:node.stream_ops,ungotten:[],error:false});if(stream.stream_ops.open){stream.stream_ops.open(stream)}if(Module["logReadFiles"]&&!(flags&1)){if(!FS.readFiles)FS.readFiles={};if(!(path in FS.readFiles)){FS.readFiles[path]=1}}return stream},close(stream){if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if(stream.getdents)stream.getdents=null;try{if(stream.stream_ops.close){stream.stream_ops.close(stream)}}catch(e){throw e}finally{FS.closeStream(stream.fd)}stream.fd=null},isClosed(stream){return stream.fd===null},llseek(stream,offset,whence){if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if(!stream.seekable||!stream.stream_ops.llseek){throw new FS.ErrnoError(70)}if(whence!=0&&whence!=1&&whence!=2){throw new FS.ErrnoError(28)}stream.position=stream.stream_ops.llseek(stream,offset,whence);stream.ungotten=[];return stream.position},read(stream,buffer,offset,length,position){assert(offset>=0);if(length<0||position<0){throw new FS.ErrnoError(28)}if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if((stream.flags&2097155)===1){throw new FS.ErrnoError(8)}if(FS.isDir(stream.node.mode)){throw new FS.ErrnoError(31)}if(!stream.stream_ops.read){throw new FS.ErrnoError(28)}var seeking=typeof position!="undefined";if(!seeking){position=stream.position}else if(!stream.seekable){throw new FS.ErrnoError(70)}var bytesRead=stream.stream_ops.read(stream,buffer,offset,length,position);if(!seeking)stream.position+=bytesRead;return bytesRead},write(stream,buffer,offset,length,position,canOwn){assert(offset>=0);if(length<0||position<0){throw new FS.ErrnoError(28)}if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if((stream.flags&2097155)===0){throw new FS.ErrnoError(8)}if(FS.isDir(stream.node.mode)){throw new FS.ErrnoError(31)}if(!stream.stream_ops.write){throw new FS.ErrnoError(28)}if(stream.seekable&&stream.flags&1024){FS.llseek(stream,0,2)}var seeking=typeof position!="undefined";if(!seeking){position=stream.position}else if(!stream.seekable){throw new FS.ErrnoError(70)}var bytesWritten=stream.stream_ops.write(stream,buffer,offset,length,position,canOwn);if(!seeking)stream.position+=bytesWritten;return bytesWritten},allocate(stream,offset,length){if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if(offset<0||length<=0){throw new FS.ErrnoError(28)}if((stream.flags&2097155)===0){throw new FS.ErrnoError(8)}if(!FS.isFile(stream.node.mode)&&!FS.isDir(stream.node.mode)){throw new FS.ErrnoError(43)}if(!stream.stream_ops.allocate){throw new FS.ErrnoError(138)}stream.stream_ops.allocate(stream,offset,length)},mmap(stream,length,position,prot,flags){if((prot&2)!==0&&(flags&2)===0&&(stream.flags&2097155)!==2){throw new FS.ErrnoError(2)}if((stream.flags&2097155)===1){throw new FS.ErrnoError(2)}if(!stream.stream_ops.mmap){throw new FS.ErrnoError(43)}return stream.stream_ops.mmap(stream,length,position,prot,flags)},msync(stream,buffer,offset,length,mmapFlags){assert(offset>=0);if(!stream.stream_ops.msync){return 0}return stream.stream_ops.msync(stream,buffer,offset,length,mmapFlags)},ioctl(stream,cmd,arg){if(!stream.stream_ops.ioctl){throw new FS.ErrnoError(59)}return stream.stream_ops.ioctl(stream,cmd,arg)},readFile(path,opts={}){opts.flags=opts.flags||0;opts.encoding=opts.encoding||"binary";if(opts.encoding!=="utf8"&&opts.encoding!=="binary"){throw new Error(`Invalid encoding type "${opts.encoding}"`)}var ret;var stream=FS.open(path,opts.flags);var stat=FS.stat(path);var length=stat.size;var buf=new Uint8Array(length);FS.read(stream,buf,0,length,0);if(opts.encoding==="utf8"){ret=UTF8ArrayToString(buf,0)}else if(opts.encoding==="binary"){ret=buf}FS.close(stream);return ret},writeFile(path,data,opts={}){opts.flags=opts.flags||577;var stream=FS.open(path,opts.flags,opts.mode);if(typeof data=="string"){var buf=new Uint8Array(lengthBytesUTF8(data)+1);var actualNumBytes=stringToUTF8Array(data,buf,0,buf.length);FS.write(stream,buf,0,actualNumBytes,undefined,opts.canOwn)}else if(ArrayBuffer.isView(data)){FS.write(stream,data,0,data.byteLength,undefined,opts.canOwn)}else{throw new Error("Unsupported data type")}FS.close(stream)},cwd:()=>FS.currentPath,chdir(path){var lookup=FS.lookupPath(path,{follow:true});if(lookup.node===null){throw new FS.ErrnoError(44)}if(!FS.isDir(lookup.node.mode)){throw new FS.ErrnoError(54)}var errCode=FS.nodePermissions(lookup.node,"x");if(errCode){throw new FS.ErrnoError(errCode)}FS.currentPath=lookup.path},createDefaultDirectories(){FS.mkdir("/tmp");FS.mkdir("/home");FS.mkdir("/home/web_user")},createDefaultDevices(){FS.mkdir("/dev");FS.registerDevice(FS.makedev(1,3),{read:()=>0,write:(stream,buffer,offset,length,pos)=>length});FS.mkdev("/dev/null",FS.makedev(1,3));TTY.register(FS.makedev(5,0),TTY.default_tty_ops);TTY.register(FS.makedev(6,0),TTY.default_tty1_ops);FS.mkdev("/dev/tty",FS.makedev(5,0));FS.mkdev("/dev/tty1",FS.makedev(6,0));var randomBuffer=new Uint8Array(1024),randomLeft=0;var randomByte=()=>{if(randomLeft===0){randomLeft=randomFill(randomBuffer).byteLength}return randomBuffer[--randomLeft]};FS.createDevice("/dev","random",randomByte);FS.createDevice("/dev","urandom",randomByte);FS.mkdir("/dev/shm");FS.mkdir("/dev/shm/tmp")},createSpecialDirectories(){FS.mkdir("/proc");var proc_self=FS.mkdir("/proc/self");FS.mkdir("/proc/self/fd");FS.mount({mount(){var node=FS.createNode(proc_self,"fd",16384|511,73);node.node_ops={lookup(parent,name){var fd=+name;var stream=FS.getStreamChecked(fd);var ret={parent:null,mount:{mountpoint:"fake"},node_ops:{readlink:()=>stream.path}};ret.parent=ret;return ret}};return node}},{},"/proc/self/fd")},createStandardStreams(){if(Module["stdin"]){FS.createDevice("/dev","stdin",Module["stdin"])}else{FS.symlink("/dev/tty","/dev/stdin")}if(Module["stdout"]){FS.createDevice("/dev","stdout",null,Module["stdout"])}else{FS.symlink("/dev/tty","/dev/stdout")}if(Module["stderr"]){FS.createDevice("/dev","stderr",null,Module["stderr"])}else{FS.symlink("/dev/tty1","/dev/stderr")}var stdin=FS.open("/dev/stdin",0);var stdout=FS.open("/dev/stdout",1);var stderr=FS.open("/dev/stderr",1);assert(stdin.fd===0,`invalid handle for stdin (${stdin.fd})`);assert(stdout.fd===1,`invalid handle for stdout (${stdout.fd})`);assert(stderr.fd===2,`invalid handle for stderr (${stderr.fd})`)},staticInit(){[44].forEach(code=>{FS.genericErrors[code]=new FS.ErrnoError(code);FS.genericErrors[code].stack="<generic error, no stack>"});FS.nameTable=new Array(4096);FS.mount(MEMFS,{},"/");FS.createDefaultDirectories();FS.createDefaultDevices();FS.createSpecialDirectories();FS.filesystems={MEMFS:MEMFS,IDBFS:IDBFS}},init(input,output,error){assert(!FS.init.initialized,"FS.init was previously called. If you want to initialize later with custom parameters, remove any earlier calls (note that one is automatically added to the generated code)");FS.init.initialized=true;Module["stdin"]=input||Module["stdin"];Module["stdout"]=output||Module["stdout"];Module["stderr"]=error||Module["stderr"];FS.createStandardStreams()},quit(){FS.init.initialized=false;_fflush(0);for(var i=0;i<FS.streams.length;i++){var stream=FS.streams[i];if(!stream){continue}FS.close(stream)}},findObject(path,dontResolveLastLink){var ret=FS.analyzePath(path,dontResolveLastLink);if(!ret.exists){return null}return ret.object},analyzePath(path,dontResolveLastLink){try{var lookup=FS.lookupPath(path,{follow:!dontResolveLastLink});path=lookup.path}catch(e){}var ret={isRoot:false,exists:false,error:0,name:null,path:null,object:null,parentExists:false,parentPath:null,parentObject:null};try{var lookup=FS.lookupPath(path,{parent:true});ret.parentExists=true;ret.parentPath=lookup.path;ret.parentObject=lookup.node;ret.name=PATH.basename(path);lookup=FS.lookupPath(path,{follow:!dontResolveLastLink});ret.exists=true;ret.path=lookup.path;ret.object=lookup.node;ret.name=lookup.node.name;ret.isRoot=lookup.path==="/"}catch(e){ret.error=e.errno}return ret},createPath(parent,path,canRead,canWrite){parent=typeof parent=="string"?parent:FS.getPath(parent);var parts=path.split("/").reverse();while(parts.length){var part=parts.pop();if(!part)continue;var current=PATH.join2(parent,part);try{FS.mkdir(current)}catch(e){}parent=current}return current},createFile(parent,name,properties,canRead,canWrite){var path=PATH.join2(typeof parent=="string"?parent:FS.getPath(parent),name);var mode=FS_getMode(canRead,canWrite);return FS.create(path,mode)},createDataFile(parent,name,data,canRead,canWrite,canOwn){var path=name;if(parent){parent=typeof parent=="string"?parent:FS.getPath(parent);path=name?PATH.join2(parent,name):parent}var mode=FS_getMode(canRead,canWrite);var node=FS.create(path,mode);if(data){if(typeof data=="string"){var arr=new Array(data.length);for(var i=0,len=data.length;i<len;++i)arr[i]=data.charCodeAt(i);data=arr}FS.chmod(node,mode|146);var stream=FS.open(node,577);FS.write(stream,data,0,data.length,0,canOwn);FS.close(stream);FS.chmod(node,mode)}},createDevice(parent,name,input,output){var path=PATH.join2(typeof parent=="string"?parent:FS.getPath(parent),name);var mode=FS_getMode(!!input,!!output);if(!FS.createDevice.major)FS.createDevice.major=64;var dev=FS.makedev(FS.createDevice.major++,0);FS.registerDevice(dev,{open(stream){stream.seekable=false},close(stream){if(output?.buffer?.length){output(10)}},read(stream,buffer,offset,length,pos){var bytesRead=0;for(var i=0;i<length;i++){var result;try{result=input()}catch(e){throw new FS.ErrnoError(29)}if(result===undefined&&bytesRead===0){throw new FS.ErrnoError(6)}if(result===null||result===undefined)break;bytesRead++;buffer[offset+i]=result}if(bytesRead){stream.node.timestamp=Date.now()}return bytesRead},write(stream,buffer,offset,length,pos){for(var i=0;i<length;i++){try{output(buffer[offset+i])}catch(e){throw new FS.ErrnoError(29)}}if(length){stream.node.timestamp=Date.now()}return i}});return FS.mkdev(path,mode,dev)},forceLoadFile(obj){if(obj.isDevice||obj.isFolder||obj.link||obj.contents)return true;if(typeof XMLHttpRequest!="undefined"){throw new Error("Lazy loading should have been performed (contents set) in createLazyFile, but it was not. Lazy loading only works in web workers. Use --embed-file or --preload-file in emcc on the main thread.")}else{try{obj.contents=readBinary(obj.url);obj.usedBytes=obj.contents.length}catch(e){throw new FS.ErrnoError(29)}}},createLazyFile(parent,name,url,canRead,canWrite){class LazyUint8Array{constructor(){this.lengthKnown=false;this.chunks=[]}get(idx){if(idx>this.length-1||idx<0){return undefined}var chunkOffset=idx%this.chunkSize;var chunkNum=idx/this.chunkSize|0;return this.getter(chunkNum)[chunkOffset]}setDataGetter(getter){this.getter=getter}cacheLength(){var xhr=new XMLHttpRequest;xhr.open("HEAD",url,false);xhr.send(null);if(!(xhr.status>=200&&xhr.status<300||xhr.status===304))throw new Error("Couldn't load "+url+". Status: "+xhr.status);var datalength=Number(xhr.getResponseHeader("Content-length"));var header;var hasByteServing=(header=xhr.getResponseHeader("Accept-Ranges"))&&header==="bytes";var usesGzip=(header=xhr.getResponseHeader("Content-Encoding"))&&header==="gzip";var chunkSize=1024*1024;if(!hasByteServing)chunkSize=datalength;var doXHR=(from,to)=>{if(from>to)throw new Error("invalid range ("+from+", "+to+") or no bytes requested!");if(to>datalength-1)throw new Error("only "+datalength+" bytes available! programmer error!");var xhr=new XMLHttpRequest;xhr.open("GET",url,false);if(datalength!==chunkSize)xhr.setRequestHeader("Range","bytes="+from+"-"+to);xhr.responseType="arraybuffer";if(xhr.overrideMimeType){xhr.overrideMimeType("text/plain; charset=x-user-defined")}xhr.send(null);if(!(xhr.status>=200&&xhr.status<300||xhr.status===304))throw new Error("Couldn't load "+url+". Status: "+xhr.status);if(xhr.response!==undefined){return new Uint8Array(xhr.response||[])}return intArrayFromString(xhr.responseText||"",true)};var lazyArray=this;lazyArray.setDataGetter(chunkNum=>{var start=chunkNum*chunkSize;var end=(chunkNum+1)*chunkSize-1;end=Math.min(end,datalength-1);if(typeof lazyArray.chunks[chunkNum]=="undefined"){lazyArray.chunks[chunkNum]=doXHR(start,end)}if(typeof lazyArray.chunks[chunkNum]=="undefined")throw new Error("doXHR failed!");return lazyArray.chunks[chunkNum]});if(usesGzip||!datalength){chunkSize=datalength=1;datalength=this.getter(0).length;chunkSize=datalength;out("LazyFiles on gzip forces download of the whole file when length is accessed")}this._length=datalength;this._chunkSize=chunkSize;this.lengthKnown=true}get length(){if(!this.lengthKnown){this.cacheLength()}return this._length}get chunkSize(){if(!this.lengthKnown){this.cacheLength()}return this._chunkSize}}if(typeof XMLHttpRequest!="undefined"){if(!ENVIRONMENT_IS_WORKER)throw"Cannot do synchronous binary XHRs outside webworkers in modern browsers. Use --embed-file or --preload-file in emcc";var lazyArray=new LazyUint8Array;var properties={isDevice:false,contents:lazyArray}}else{var properties={isDevice:false,url:url}}var node=FS.createFile(parent,name,properties,canRead,canWrite);if(properties.contents){node.contents=properties.contents}else if(properties.url){node.contents=null;node.url=properties.url}Object.defineProperties(node,{usedBytes:{get:function(){return this.contents.length}}});var stream_ops={};var keys=Object.keys(node.stream_ops);keys.forEach(key=>{var fn=node.stream_ops[key];stream_ops[key]=(...args)=>{FS.forceLoadFile(node);return fn(...args)}});function writeChunks(stream,buffer,offset,length,position){var contents=stream.node.contents;if(position>=contents.length)return 0;var size=Math.min(contents.length-position,length);assert(size>=0);if(contents.slice){for(var i=0;i<size;i++){buffer[offset+i]=contents[position+i]}}else{for(var i=0;i<size;i++){buffer[offset+i]=contents.get(position+i)}}return size}stream_ops.read=(stream,buffer,offset,length,position)=>{FS.forceLoadFile(node);return writeChunks(stream,buffer,offset,length,position)};stream_ops.mmap=(stream,length,position,prot,flags)=>{FS.forceLoadFile(node);var ptr=mmapAlloc(length);if(!ptr){throw new FS.ErrnoError(48)}writeChunks(stream,HEAP8,ptr,length,position);return{ptr:ptr,allocated:true}};node.stream_ops=stream_ops;return node},absolutePath(){abort("FS.absolutePath has been removed; use PATH_FS.resolve instead")},createFolder(){abort("FS.createFolder has been removed; use FS.mkdir instead")},createLink(){abort("FS.createLink has been removed; use FS.symlink instead")},joinPath(){abort("FS.joinPath has been removed; use PATH.join instead")},mmapAlloc(){abort("FS.mmapAlloc has been replaced by the top level function mmapAlloc")},standardizePath(){abort("FS.standardizePath has been removed; use PATH.normalize instead")}};var SYSCALLS={DEFAULT_POLLMASK:5,calculateAt(dirfd,path,allowEmpty){if(PATH.isAbs(path)){return path}var dir;if(dirfd===-100){dir=FS.cwd()}else{var dirstream=SYSCALLS.getStreamFromFD(dirfd);dir=dirstream.path}if(path.length==0){if(!allowEmpty){throw new FS.ErrnoError(44)}return dir}return PATH.join2(dir,path)},doStat(func,path,buf){var stat=func(path);HEAP32[buf>>2]=stat.dev;HEAP32[buf+4>>2]=stat.mode;HEAPU32[buf+8>>2]=stat.nlink;HEAP32[buf+12>>2]=stat.uid;HEAP32[buf+16>>2]=stat.gid;HEAP32[buf+20>>2]=stat.rdev;HEAP64[buf+24>>3]=BigInt(stat.size);HEAP32[buf+32>>2]=4096;HEAP32[buf+36>>2]=stat.blocks;var atime=stat.atime.getTime();var mtime=stat.mtime.getTime();var ctime=stat.ctime.getTime();HEAP64[buf+40>>3]=BigInt(Math.floor(atime/1e3));HEAPU32[buf+48>>2]=atime%1e3*1e3;HEAP64[buf+56>>3]=BigInt(Math.floor(mtime/1e3));HEAPU32[buf+64>>2]=mtime%1e3*1e3;HEAP64[buf+72>>3]=BigInt(Math.floor(ctime/1e3));HEAPU32[buf+80>>2]=ctime%1e3*1e3;HEAP64[buf+88>>3]=BigInt(stat.ino);return 0},doMsync(addr,stream,len,flags,offset){if(!FS.isFile(stream.node.mode)){throw new FS.ErrnoError(43)}if(flags&2){return 0}var buffer=HEAPU8.slice(addr,addr+len);FS.msync(stream,buffer,offset,len,flags)},getStreamFromFD(fd){var stream=FS.getStreamChecked(fd);return stream},varargs:undefined,getStr(ptr){var ret=UTF8ToString(ptr);return ret}};function ___syscall_chdir(path){try{path=SYSCALLS.getStr(path);FS.chdir(path);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_chmod(path,mode){try{path=SYSCALLS.getStr(path);FS.chmod(path,mode);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_faccessat(dirfd,path,amode,flags){try{path=SYSCALLS.getStr(path);assert(flags===0);path=SYSCALLS.calculateAt(dirfd,path);if(amode&~7){return-28}var lookup=FS.lookupPath(path,{follow:true});var node=lookup.node;if(!node){return-44}var perms="";if(amode&4)perms+="r";if(amode&2)perms+="w";if(amode&1)perms+="x";if(perms&&FS.nodePermissions(node,perms)){return-2}return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_fchmod(fd,mode){try{FS.fchmod(fd,mode);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function syscallGetVarargI(){assert(SYSCALLS.varargs!=undefined);var ret=HEAP32[+SYSCALLS.varargs>>2];SYSCALLS.varargs+=4;return ret}var syscallGetVarargP=syscallGetVarargI;function ___syscall_fcntl64(fd,cmd,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(fd);switch(cmd){case 0:{var arg=syscallGetVarargI();if(arg<0){return-28}while(FS.streams[arg]){arg++}var newStream;newStream=FS.dupStream(stream,arg);return newStream.fd}case 1:case 2:return 0;case 3:return stream.flags;case 4:{var arg=syscallGetVarargI();stream.flags|=arg;return 0}case 12:{var arg=syscallGetVarargP();var offset=0;HEAP16[arg+offset>>1]=2;return 0}case 13:case 14:return 0}return-28}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_fstat64(fd,buf){try{var stream=SYSCALLS.getStreamFromFD(fd);return SYSCALLS.doStat(FS.stat,stream.path,buf)}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}var INT53_MAX=9007199254740992;var INT53_MIN=-9007199254740992;var bigintToI53Checked=num=>num<INT53_MIN||num>INT53_MAX?NaN:Number(num);function ___syscall_ftruncate64(fd,length){length=bigintToI53Checked(length);try{if(isNaN(length))return 61;FS.ftruncate(fd,length);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}var stringToUTF8=(str,outPtr,maxBytesToWrite)=>{assert(typeof maxBytesToWrite=="number","stringToUTF8(str, outPtr, maxBytesToWrite) is missing the third parameter that specifies the length of the output buffer!");return stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite)};function ___syscall_getcwd(buf,size){try{if(size===0)return-28;var cwd=FS.cwd();var cwdLengthInBytes=lengthBytesUTF8(cwd)+1;if(size<cwdLengthInBytes)return-68;stringToUTF8(cwd,buf,size);return cwdLengthInBytes}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_getdents64(fd,dirp,count){try{var stream=SYSCALLS.getStreamFromFD(fd);stream.getdents||=FS.readdir(stream.path);var struct_size=280;var pos=0;var off=FS.llseek(stream,0,1);var idx=Math.floor(off/struct_size);while(idx<stream.getdents.length&&pos+struct_size<=count){var id;var type;var name=stream.getdents[idx];if(name==="."){id=stream.node.id;type=4}else if(name===".."){var lookup=FS.lookupPath(stream.path,{parent:true});id=lookup.node.id;type=4}else{var child=FS.lookupNode(stream.node,name);id=child.id;type=FS.isChrdev(child.mode)?2:FS.isDir(child.mode)?4:FS.isLink(child.mode)?10:8}assert(id);HEAP64[dirp+pos>>3]=BigInt(id);HEAP64[dirp+pos+8>>3]=BigInt((idx+1)*struct_size);HEAP16[dirp+pos+16>>1]=280;HEAP8[dirp+pos+18]=type;stringToUTF8(name,dirp+pos+19,256);pos+=struct_size;idx+=1}FS.llseek(stream,idx*struct_size,0);return pos}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_ioctl(fd,op,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(fd);switch(op){case 21509:{if(!stream.tty)return-59;return 0}case 21505:{if(!stream.tty)return-59;if(stream.tty.ops.ioctl_tcgets){var termios=stream.tty.ops.ioctl_tcgets(stream);var argp=syscallGetVarargP();HEAP32[argp>>2]=termios.c_iflag||0;HEAP32[argp+4>>2]=termios.c_oflag||0;HEAP32[argp+8>>2]=termios.c_cflag||0;HEAP32[argp+12>>2]=termios.c_lflag||0;for(var i=0;i<32;i++){HEAP8[argp+i+17]=termios.c_cc[i]||0}return 0}return 0}case 21510:case 21511:case 21512:{if(!stream.tty)return-59;return 0}case 21506:case 21507:case 21508:{if(!stream.tty)return-59;if(stream.tty.ops.ioctl_tcsets){var argp=syscallGetVarargP();var c_iflag=HEAP32[argp>>2];var c_oflag=HEAP32[argp+4>>2];var c_cflag=HEAP32[argp+8>>2];var c_lflag=HEAP32[argp+12>>2];var c_cc=[];for(var i=0;i<32;i++){c_cc.push(HEAP8[argp+i+17])}return stream.tty.ops.ioctl_tcsets(stream.tty,op,{c_iflag:c_iflag,c_oflag:c_oflag,c_cflag:c_cflag,c_lflag:c_lflag,c_cc:c_cc})}return 0}case 21519:{if(!stream.tty)return-59;var argp=syscallGetVarargP();HEAP32[argp>>2]=0;return 0}case 21520:{if(!stream.tty)return-59;return-28}case 21531:{var argp=syscallGetVarargP();return FS.ioctl(stream,op,argp)}case 21523:{if(!stream.tty)return-59;if(stream.tty.ops.ioctl_tiocgwinsz){var winsize=stream.tty.ops.ioctl_tiocgwinsz(stream.tty);var argp=syscallGetVarargP();HEAP16[argp>>1]=winsize[0];HEAP16[argp+2>>1]=winsize[1]}return 0}case 21524:{if(!stream.tty)return-59;return 0}case 21515:{if(!stream.tty)return-59;return 0}default:return-28}}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_lstat64(path,buf){try{path=SYSCALLS.getStr(path);return SYSCALLS.doStat(FS.lstat,path,buf)}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_mkdirat(dirfd,path,mode){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);path=PATH.normalize(path);if(path[path.length-1]==="/")path=path.substr(0,path.length-1);FS.mkdir(path,mode,0);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_mknodat(dirfd,path,mode,dev){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);switch(mode&61440){case 32768:case 8192:case 24576:case 4096:case 49152:break;default:return-28}FS.mknod(path,mode,dev);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_newfstatat(dirfd,path,buf,flags){try{path=SYSCALLS.getStr(path);var nofollow=flags&256;var allowEmpty=flags&4096;flags=flags&~6400;assert(!flags,`unknown flags in __syscall_newfstatat: ${flags}`);path=SYSCALLS.calculateAt(dirfd,path,allowEmpty);return SYSCALLS.doStat(nofollow?FS.lstat:FS.stat,path,buf)}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_openat(dirfd,path,flags,varargs){SYSCALLS.varargs=varargs;try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);var mode=varargs?syscallGetVarargI():0;return FS.open(path,flags,mode).fd}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_readlinkat(dirfd,path,buf,bufsize){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);if(bufsize<=0)return-28;var ret=FS.readlink(path);var len=Math.min(bufsize,lengthBytesUTF8(ret));var endChar=HEAP8[buf+len];stringToUTF8(ret,buf,bufsize+1);HEAP8[buf+len]=endChar;return len}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_renameat(olddirfd,oldpath,newdirfd,newpath){try{oldpath=SYSCALLS.getStr(oldpath);newpath=SYSCALLS.getStr(newpath);oldpath=SYSCALLS.calculateAt(olddirfd,oldpath);newpath=SYSCALLS.calculateAt(newdirfd,newpath);FS.rename(oldpath,newpath);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_rmdir(path){try{path=SYSCALLS.getStr(path);FS.rmdir(path);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_stat64(path,buf){try{path=SYSCALLS.getStr(path);return SYSCALLS.doStat(FS.stat,path,buf)}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_statfs64(path,size,buf){try{path=SYSCALLS.getStr(path);assert(size===64);HEAP32[buf+4>>2]=4096;HEAP32[buf+40>>2]=4096;HEAP32[buf+8>>2]=1e6;HEAP32[buf+12>>2]=5e5;HEAP32[buf+16>>2]=5e5;HEAP32[buf+20>>2]=FS.nextInode;HEAP32[buf+24>>2]=1e6;HEAP32[buf+28>>2]=42;HEAP32[buf+44>>2]=2;HEAP32[buf+36>>2]=255;return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_symlink(target,linkpath){try{target=SYSCALLS.getStr(target);linkpath=SYSCALLS.getStr(linkpath);FS.symlink(target,linkpath);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_unlinkat(dirfd,path,flags){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);if(flags===0){FS.unlink(path)}else if(flags===512){FS.rmdir(path)}else{abort("Invalid flags passed to unlinkat")}return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}var __abort_js=()=>{abort("native code called abort()")};var nowIsMonotonic=1;var __emscripten_get_now_is_monotonic=()=>nowIsMonotonic;var __emscripten_runtime_keepalive_clear=()=>{noExitRuntime=false;runtimeKeepaliveCounter=0};function __gmtime_js(time,tmPtr){time=bigintToI53Checked(time);var date=new Date(time*1e3);HEAP32[tmPtr>>2]=date.getUTCSeconds();HEAP32[tmPtr+4>>2]=date.getUTCMinutes();HEAP32[tmPtr+8>>2]=date.getUTCHours();HEAP32[tmPtr+12>>2]=date.getUTCDate();HEAP32[tmPtr+16>>2]=date.getUTCMonth();HEAP32[tmPtr+20>>2]=date.getUTCFullYear()-1900;HEAP32[tmPtr+24>>2]=date.getUTCDay();var start=Date.UTC(date.getUTCFullYear(),0,1,0,0,0,0);var yday=(date.getTime()-start)/(1e3*60*60*24)|0;HEAP32[tmPtr+28>>2]=yday}var isLeapYear=year=>year%4===0&&(year%100!==0||year%400===0);var MONTH_DAYS_LEAP_CUMULATIVE=[0,31,60,91,121,152,182,213,244,274,305,335];var MONTH_DAYS_REGULAR_CUMULATIVE=[0,31,59,90,120,151,181,212,243,273,304,334];var ydayFromDate=date=>{var leap=isLeapYear(date.getFullYear());var monthDaysCumulative=leap?MONTH_DAYS_LEAP_CUMULATIVE:MONTH_DAYS_REGULAR_CUMULATIVE;var yday=monthDaysCumulative[date.getMonth()]+date.getDate()-1;return yday};function __localtime_js(time,tmPtr){time=bigintToI53Checked(time);var date=new Date(time*1e3);HEAP32[tmPtr>>2]=date.getSeconds();HEAP32[tmPtr+4>>2]=date.getMinutes();HEAP32[tmPtr+8>>2]=date.getHours();HEAP32[tmPtr+12>>2]=date.getDate();HEAP32[tmPtr+16>>2]=date.getMonth();HEAP32[tmPtr+20>>2]=date.getFullYear()-1900;HEAP32[tmPtr+24>>2]=date.getDay();var yday=ydayFromDate(date)|0;HEAP32[tmPtr+28>>2]=yday;HEAP32[tmPtr+36>>2]=-(date.getTimezoneOffset()*60);var start=new Date(date.getFullYear(),0,1);var summerOffset=new Date(date.getFullYear(),6,1).getTimezoneOffset();var winterOffset=start.getTimezoneOffset();var dst=(summerOffset!=winterOffset&&date.getTimezoneOffset()==Math.min(winterOffset,summerOffset))|0;HEAP32[tmPtr+32>>2]=dst}var __tzset_js=(timezone,daylight,std_name,dst_name)=>{var currentYear=(new Date).getFullYear();var winter=new Date(currentYear,0,1);var summer=new Date(currentYear,6,1);var winterOffset=winter.getTimezoneOffset();var summerOffset=summer.getTimezoneOffset();var stdTimezoneOffset=Math.max(winterOffset,summerOffset);HEAPU32[timezone>>2]=stdTimezoneOffset*60;HEAP32[daylight>>2]=Number(winterOffset!=summerOffset);var extractZone=timezoneOffset=>{var sign=timezoneOffset>=0?"-":"+";var absOffset=Math.abs(timezoneOffset);var hours=String(Math.floor(absOffset/60)).padStart(2,"0");var minutes=String(absOffset%60).padStart(2,"0");return`UTC${sign}${hours}${minutes}`};var winterName=extractZone(winterOffset);var summerName=extractZone(summerOffset);assert(winterName);assert(summerName);assert(lengthBytesUTF8(winterName)<=16,`timezone name truncated to fit in TZNAME_MAX (${winterName})`);assert(lengthBytesUTF8(summerName)<=16,`timezone name truncated to fit in TZNAME_MAX (${summerName})`);if(summerOffset<winterOffset){stringToUTF8(winterName,std_name,17);stringToUTF8(summerName,dst_name,17)}else{stringToUTF8(winterName,dst_name,17);stringToUTF8(summerName,std_name,17)}};var runtimeKeepaliveCounter=0;var runtimeKeepalivePush=()=>{runtimeKeepaliveCounter+=1};var _emscripten_set_main_loop_timing=(mode,value)=>{Browser.mainLoop.timingMode=mode;Browser.mainLoop.timingValue=value;if(!Browser.mainLoop.func){err("emscripten_set_main_loop_timing: Cannot set timing mode for main loop since a main loop does not exist! Call emscripten_set_main_loop first to set one up.");return 1}if(!Browser.mainLoop.running){runtimeKeepalivePush();Browser.mainLoop.running=true}if(mode==0){Browser.mainLoop.scheduler=function Browser_mainLoop_scheduler_setTimeout(){var timeUntilNextTick=Math.max(0,Browser.mainLoop.tickStartTime+value-_emscripten_get_now())|0;setTimeout(Browser.mainLoop.runner,timeUntilNextTick)};Browser.mainLoop.method="timeout"}else if(mode==1){Browser.mainLoop.scheduler=function Browser_mainLoop_scheduler_rAF(){Browser.requestAnimationFrame(Browser.mainLoop.runner)};Browser.mainLoop.method="rAF"}else if(mode==2){if(typeof Browser.setImmediate=="undefined"){if(typeof setImmediate=="undefined"){var setImmediates=[];var emscriptenMainLoopMessageId="setimmediate";var Browser_setImmediate_messageHandler=event=>{if(event.data===emscriptenMainLoopMessageId||event.data.target===emscriptenMainLoopMessageId){event.stopPropagation();setImmediates.shift()()}};addEventListener("message",Browser_setImmediate_messageHandler,true);Browser.setImmediate=function Browser_emulated_setImmediate(func){setImmediates.push(func);if(ENVIRONMENT_IS_WORKER){Module["setImmediates"]??=[];Module["setImmediates"].push(func);postMessage({target:emscriptenMainLoopMessageId})}else postMessage(emscriptenMainLoopMessageId,"*")}}else{Browser.setImmediate=setImmediate}}Browser.mainLoop.scheduler=function Browser_mainLoop_scheduler_setImmediate(){Browser.setImmediate(Browser.mainLoop.runner)};Browser.mainLoop.method="immediate"}return 0};var _emscripten_get_now;_emscripten_get_now=()=>performance.now();var webgl_enable_ANGLE_instanced_arrays=ctx=>{var ext=ctx.getExtension("ANGLE_instanced_arrays");if(ext){ctx["vertexAttribDivisor"]=(index,divisor)=>ext["vertexAttribDivisorANGLE"](index,divisor);ctx["drawArraysInstanced"]=(mode,first,count,primcount)=>ext["drawArraysInstancedANGLE"](mode,first,count,primcount);ctx["drawElementsInstanced"]=(mode,count,type,indices,primcount)=>ext["drawElementsInstancedANGLE"](mode,count,type,indices,primcount);return 1}};var webgl_enable_OES_vertex_array_object=ctx=>{var ext=ctx.getExtension("OES_vertex_array_object");if(ext){ctx["createVertexArray"]=()=>ext["createVertexArrayOES"]();ctx["deleteVertexArray"]=vao=>ext["deleteVertexArrayOES"](vao);ctx["bindVertexArray"]=vao=>ext["bindVertexArrayOES"](vao);ctx["isVertexArray"]=vao=>ext["isVertexArrayOES"](vao);return 1}};var webgl_enable_WEBGL_draw_buffers=ctx=>{var ext=ctx.getExtension("WEBGL_draw_buffers");if(ext){ctx["drawBuffers"]=(n,bufs)=>ext["drawBuffersWEBGL"](n,bufs);return 1}};var webgl_enable_WEBGL_draw_instanced_base_vertex_base_instance=ctx=>!!(ctx.dibvbi=ctx.getExtension("WEBGL_draw_instanced_base_vertex_base_instance"));var webgl_enable_WEBGL_multi_draw_instanced_base_vertex_base_instance=ctx=>!!(ctx.mdibvbi=ctx.getExtension("WEBGL_multi_draw_instanced_base_vertex_base_instance"));var webgl_enable_WEBGL_multi_draw=ctx=>!!(ctx.multiDrawWebgl=ctx.getExtension("WEBGL_multi_draw"));var getEmscriptenSupportedExtensions=ctx=>{var supportedExtensions=["ANGLE_instanced_arrays","EXT_blend_minmax","EXT_disjoint_timer_query","EXT_frag_depth","EXT_shader_texture_lod","EXT_sRGB","OES_element_index_uint","OES_fbo_render_mipmap","OES_standard_derivatives","OES_texture_float","OES_texture_half_float","OES_texture_half_float_linear","OES_vertex_array_object","WEBGL_color_buffer_float","WEBGL_depth_texture","WEBGL_draw_buffers","EXT_color_buffer_float","EXT_conservative_depth","EXT_disjoint_timer_query_webgl2","EXT_texture_norm16","NV_shader_noperspective_interpolation","WEBGL_clip_cull_distance","EXT_color_buffer_half_float","EXT_depth_clamp","EXT_float_blend","EXT_texture_compression_bptc","EXT_texture_compression_rgtc","EXT_texture_filter_anisotropic","KHR_parallel_shader_compile","OES_texture_float_linear","WEBGL_blend_func_extended","WEBGL_compressed_texture_astc","WEBGL_compressed_texture_etc","WEBGL_compressed_texture_etc1","WEBGL_compressed_texture_s3tc","WEBGL_compressed_texture_s3tc_srgb","WEBGL_debug_renderer_info","WEBGL_debug_shaders","WEBGL_lose_context","WEBGL_multi_draw"];return(ctx.getSupportedExtensions()||[]).filter(ext=>supportedExtensions.includes(ext))};var GL={counter:1,buffers:[],programs:[],framebuffers:[],renderbuffers:[],textures:[],shaders:[],vaos:[],contexts:[],offscreenCanvases:{},queries:[],samplers:[],transformFeedbacks:[],syncs:[],stringCache:{},stringiCache:{},unpackAlignment:4,unpackRowLength:0,recordError:errorCode=>{if(!GL.lastError){GL.lastError=errorCode}},getNewId:table=>{var ret=GL.counter++;for(var i=table.length;i<ret;i++){table[i]=null}return ret},genObject:(n,buffers,createFunction,objectTable)=>{for(var i=0;i<n;i++){var buffer=GLctx[createFunction]();var id=buffer&&GL.getNewId(objectTable);if(buffer){buffer.name=id;objectTable[id]=buffer}else{GL.recordError(1282)}HEAP32[buffers+i*4>>2]=id}},getSource:(shader,count,string,length)=>{var source="";for(var i=0;i<count;++i){var len=length?HEAPU32[length+i*4>>2]:undefined;source+=UTF8ToString(HEAPU32[string+i*4>>2],len)}return source},createContext:(canvas,webGLContextAttributes)=>{if(webGLContextAttributes.renderViaOffscreenBackBuffer)webGLContextAttributes["preserveDrawingBuffer"]=true;var ctx=webGLContextAttributes.majorVersion>1?canvas.getContext("webgl2",webGLContextAttributes):canvas.getContext("webgl",webGLContextAttributes);if(!ctx)return 0;var handle=GL.registerContext(ctx,webGLContextAttributes);return handle},enableOffscreenFramebufferAttributes:webGLContextAttributes=>{webGLContextAttributes.renderViaOffscreenBackBuffer=true;webGLContextAttributes.preserveDrawingBuffer=true},createOffscreenFramebuffer:context=>{var gl=context.GLctx;var fbo=gl.createFramebuffer();gl.bindFramebuffer(36160,fbo);context.defaultFbo=fbo;context.defaultFboForbidBlitFramebuffer=false;if(gl.getContextAttributes().antialias){context.defaultFboForbidBlitFramebuffer=true}context.defaultColorTarget=gl.createTexture();context.defaultDepthTarget=gl.createRenderbuffer();GL.resizeOffscreenFramebuffer(context);gl.bindTexture(3553,context.defaultColorTarget);gl.texParameteri(3553,10241,9728);gl.texParameteri(3553,10240,9728);gl.texParameteri(3553,10242,33071);gl.texParameteri(3553,10243,33071);gl.texImage2D(3553,0,6408,gl.canvas.width,gl.canvas.height,0,6408,5121,null);gl.framebufferTexture2D(36160,36064,3553,context.defaultColorTarget,0);gl.bindTexture(3553,null);var depthTarget=gl.createRenderbuffer();gl.bindRenderbuffer(36161,context.defaultDepthTarget);gl.renderbufferStorage(36161,33189,gl.canvas.width,gl.canvas.height);gl.framebufferRenderbuffer(36160,36096,36161,context.defaultDepthTarget);gl.bindRenderbuffer(36161,null);var vertices=[-1,-1,-1,1,1,-1,1,1];var vb=gl.createBuffer();gl.bindBuffer(34962,vb);gl.bufferData(34962,new Float32Array(vertices),35044);gl.bindBuffer(34962,null);context.blitVB=vb;var vsCode="attribute vec2 pos;"+"varying lowp vec2 tex;"+"void main() { tex = pos * 0.5 + vec2(0.5,0.5); gl_Position = vec4(pos, 0.0, 1.0); }";var vs=gl.createShader(35633);gl.shaderSource(vs,vsCode);gl.compileShader(vs);var fsCode="varying lowp vec2 tex;"+"uniform sampler2D sampler;"+"void main() { gl_FragColor = texture2D(sampler, tex); }";var fs=gl.createShader(35632);gl.shaderSource(fs,fsCode);gl.compileShader(fs);var blitProgram=gl.createProgram();gl.attachShader(blitProgram,vs);gl.attachShader(blitProgram,fs);gl.linkProgram(blitProgram);context.blitProgram=blitProgram;context.blitPosLoc=gl.getAttribLocation(blitProgram,"pos");gl.useProgram(blitProgram);gl.uniform1i(gl.getUniformLocation(blitProgram,"sampler"),0);gl.useProgram(null);context.defaultVao=undefined;if(gl.createVertexArray){context.defaultVao=gl.createVertexArray();gl.bindVertexArray(context.defaultVao);gl.enableVertexAttribArray(context.blitPosLoc);gl.bindVertexArray(null)}},resizeOffscreenFramebuffer:context=>{var gl=context.GLctx;if(context.defaultColorTarget){var prevTextureBinding=gl.getParameter(32873);gl.bindTexture(3553,context.defaultColorTarget);gl.texImage2D(3553,0,6408,gl.drawingBufferWidth,gl.drawingBufferHeight,0,6408,5121,null);gl.bindTexture(3553,prevTextureBinding)}if(context.defaultDepthTarget){var prevRenderBufferBinding=gl.getParameter(36007);gl.bindRenderbuffer(36161,context.defaultDepthTarget);gl.renderbufferStorage(36161,33189,gl.drawingBufferWidth,gl.drawingBufferHeight);gl.bindRenderbuffer(36161,prevRenderBufferBinding)}},blitOffscreenFramebuffer:context=>{var gl=context.GLctx;var prevScissorTest=gl.getParameter(3089);if(prevScissorTest)gl.disable(3089);var prevFbo=gl.getParameter(36006);if(gl.blitFramebuffer&&!context.defaultFboForbidBlitFramebuffer){gl.bindFramebuffer(36008,context.defaultFbo);gl.bindFramebuffer(36009,null);gl.blitFramebuffer(0,0,gl.canvas.width,gl.canvas.height,0,0,gl.canvas.width,gl.canvas.height,16384,9728)}else{gl.bindFramebuffer(36160,null);var prevProgram=gl.getParameter(35725);gl.useProgram(context.blitProgram);var prevVB=gl.getParameter(34964);gl.bindBuffer(34962,context.blitVB);var prevActiveTexture=gl.getParameter(34016);gl.activeTexture(33984);var prevTextureBinding=gl.getParameter(32873);gl.bindTexture(3553,context.defaultColorTarget);var prevBlend=gl.getParameter(3042);if(prevBlend)gl.disable(3042);var prevCullFace=gl.getParameter(2884);if(prevCullFace)gl.disable(2884);var prevDepthTest=gl.getParameter(2929);if(prevDepthTest)gl.disable(2929);var prevStencilTest=gl.getParameter(2960);if(prevStencilTest)gl.disable(2960);function draw(){gl.vertexAttribPointer(context.blitPosLoc,2,5126,false,0,0);gl.drawArrays(5,0,4)}if(context.defaultVao){var prevVAO=gl.getParameter(34229);gl.bindVertexArray(context.defaultVao);draw();gl.bindVertexArray(prevVAO)}else{var prevVertexAttribPointer={buffer:gl.getVertexAttrib(context.blitPosLoc,34975),size:gl.getVertexAttrib(context.blitPosLoc,34339),stride:gl.getVertexAttrib(context.blitPosLoc,34340),type:gl.getVertexAttrib(context.blitPosLoc,34341),normalized:gl.getVertexAttrib(context.blitPosLoc,34922),pointer:gl.getVertexAttribOffset(context.blitPosLoc,34373)};var maxVertexAttribs=gl.getParameter(34921);var prevVertexAttribEnables=[];for(var i=0;i<maxVertexAttribs;++i){var prevEnabled=gl.getVertexAttrib(i,34338);var wantEnabled=i==context.blitPosLoc;if(prevEnabled&&!wantEnabled){gl.disableVertexAttribArray(i)}if(!prevEnabled&&wantEnabled){gl.enableVertexAttribArray(i)}prevVertexAttribEnables[i]=prevEnabled}draw();for(var i=0;i<maxVertexAttribs;++i){var prevEnabled=prevVertexAttribEnables[i];var nowEnabled=i==context.blitPosLoc;if(prevEnabled&&!nowEnabled){gl.enableVertexAttribArray(i)}if(!prevEnabled&&nowEnabled){gl.disableVertexAttribArray(i)}}gl.bindBuffer(34962,prevVertexAttribPointer.buffer);gl.vertexAttribPointer(context.blitPosLoc,prevVertexAttribPointer.size,prevVertexAttribPointer.type,prevVertexAttribPointer.normalized,prevVertexAttribPointer.stride,prevVertexAttribPointer.offset)}if(prevStencilTest)gl.enable(2960);if(prevDepthTest)gl.enable(2929);if(prevCullFace)gl.enable(2884);if(prevBlend)gl.enable(3042);gl.bindTexture(3553,prevTextureBinding);gl.activeTexture(prevActiveTexture);gl.bindBuffer(34962,prevVB);gl.useProgram(prevProgram)}gl.bindFramebuffer(36160,prevFbo);if(prevScissorTest)gl.enable(3089)},registerContext:(ctx,webGLContextAttributes)=>{var handle=GL.getNewId(GL.contexts);var context={handle:handle,attributes:webGLContextAttributes,version:webGLContextAttributes.majorVersion,GLctx:ctx};if(ctx.canvas)ctx.canvas.GLctxObject=context;GL.contexts[handle]=context;if(typeof webGLContextAttributes.enableExtensionsByDefault=="undefined"||webGLContextAttributes.enableExtensionsByDefault){GL.initExtensions(context)}if(webGLContextAttributes.renderViaOffscreenBackBuffer)GL.createOffscreenFramebuffer(context);return handle},makeContextCurrent:contextHandle=>{GL.currentContext=GL.contexts[contextHandle];Module.ctx=GLctx=GL.currentContext?.GLctx;return!(contextHandle&&!GLctx)},getContext:contextHandle=>GL.contexts[contextHandle],deleteContext:contextHandle=>{if(GL.currentContext===GL.contexts[contextHandle]){GL.currentContext=null}if(typeof JSEvents=="object"){JSEvents.removeAllHandlersOnTarget(GL.contexts[contextHandle].GLctx.canvas)}if(GL.contexts[contextHandle]&&GL.contexts[contextHandle].GLctx.canvas){GL.contexts[contextHandle].GLctx.canvas.GLctxObject=undefined}GL.contexts[contextHandle]=null},initExtensions:context=>{context||=GL.currentContext;if(context.initExtensionsDone)return;context.initExtensionsDone=true;var GLctx=context.GLctx;webgl_enable_ANGLE_instanced_arrays(GLctx);webgl_enable_OES_vertex_array_object(GLctx);webgl_enable_WEBGL_draw_buffers(GLctx);webgl_enable_WEBGL_draw_instanced_base_vertex_base_instance(GLctx);webgl_enable_WEBGL_multi_draw_instanced_base_vertex_base_instance(GLctx);if(context.version>=2){GLctx.disjointTimerQueryExt=GLctx.getExtension("EXT_disjoint_timer_query_webgl2")}if(context.version<2||!GLctx.disjointTimerQueryExt){GLctx.disjointTimerQueryExt=GLctx.getExtension("EXT_disjoint_timer_query")}webgl_enable_WEBGL_multi_draw(GLctx);getEmscriptenSupportedExtensions(GLctx).forEach(ext=>{if(!ext.includes("lose_context")&&!ext.includes("debug")){GLctx.getExtension(ext)}})}};var _emscripten_webgl_do_commit_frame=()=>{if(!GL.currentContext||!GL.currentContext.GLctx){return-3}if(GL.currentContext.defaultFbo){GL.blitOffscreenFramebuffer(GL.currentContext);return 0}if(!GL.currentContext.attributes.explicitSwapControl){return-3}return 0};var _emscripten_webgl_commit_frame=_emscripten_webgl_do_commit_frame;var keepRuntimeAlive=()=>noExitRuntime||runtimeKeepaliveCounter>0;var _proc_exit=code=>{EXITSTATUS=code;if(!keepRuntimeAlive()){Module["onExit"]?.(code);ABORT=true}quit_(code,new ExitStatus(code))};var exitJS=(status,implicit)=>{EXITSTATUS=status;if(!keepRuntimeAlive()){exitRuntime()}if(keepRuntimeAlive()&&!implicit){var msg=`program exited (with status: ${status}), but keepRuntimeAlive() is set (counter=${runtimeKeepaliveCounter}) due to an async operation, so halting execution but not exiting the runtime or preventing further async execution (you can use emscripten_force_exit, if you want to force a true shutdown)`;readyPromiseReject(msg);err(msg)}_proc_exit(status)};var _exit=exitJS;var handleException=e=>{if(e instanceof ExitStatus||e=="unwind"){return EXITSTATUS}checkStackCookie();if(e instanceof WebAssembly.RuntimeError){if(_emscripten_stack_get_current()<=0){err("Stack overflow detected. You can try increasing -sSTACK_SIZE (currently set to 5242880)")}}quit_(1,e)};var maybeExit=()=>{if(runtimeExited){return}if(!keepRuntimeAlive()){try{_exit(EXITSTATUS)}catch(e){handleException(e)}}};var runtimeKeepalivePop=()=>{assert(runtimeKeepaliveCounter>0);runtimeKeepaliveCounter-=1};var setMainLoop=(browserIterationFunc,fps,simulateInfiniteLoop,arg,noSetTiming)=>{assert(!Browser.mainLoop.func,"emscripten_set_main_loop: there can only be one main loop function at once: call emscripten_cancel_main_loop to cancel the previous one before setting a new one with different parameters.");Browser.mainLoop.func=browserIterationFunc;Browser.mainLoop.arg=arg;var thisMainLoopId=Browser.mainLoop.currentlyRunningMainloop;function checkIsRunning(){if(thisMainLoopId<Browser.mainLoop.currentlyRunningMainloop){runtimeKeepalivePop();maybeExit();return false}return true}Browser.mainLoop.running=false;Browser.mainLoop.runner=function Browser_mainLoop_runner(){if(ABORT)return;if(Browser.mainLoop.queue.length>0){var start=Date.now();var blocker=Browser.mainLoop.queue.shift();blocker.func(blocker.arg);if(Browser.mainLoop.remainingBlockers){var remaining=Browser.mainLoop.remainingBlockers;var next=remaining%1==0?remaining-1:Math.floor(remaining);if(blocker.counted){Browser.mainLoop.remainingBlockers=next}else{next=next+.5;Browser.mainLoop.remainingBlockers=(8*remaining+next)/9}}Browser.mainLoop.updateStatus();if(!checkIsRunning())return;setTimeout(Browser.mainLoop.runner,0);return}if(!checkIsRunning())return;Browser.mainLoop.currentFrameNumber=Browser.mainLoop.currentFrameNumber+1|0;if(Browser.mainLoop.timingMode==1&&Browser.mainLoop.timingValue>1&&Browser.mainLoop.currentFrameNumber%Browser.mainLoop.timingValue!=0){Browser.mainLoop.scheduler();return}else if(Browser.mainLoop.timingMode==0){Browser.mainLoop.tickStartTime=_emscripten_get_now()}if(Browser.mainLoop.method==="timeout"&&Module.ctx){warnOnce("Looks like you are rendering without using requestAnimationFrame for the main loop. You should use 0 for the frame rate in emscripten_set_main_loop in order to use requestAnimationFrame, as that can greatly improve your frame rates!");Browser.mainLoop.method=""}Browser.mainLoop.runIter(browserIterationFunc);checkStackCookie();if(!checkIsRunning())return;if(typeof SDL=="object")SDL.audio?.queueNewAudioData?.();Browser.mainLoop.scheduler()};if(!noSetTiming){if(fps&&fps>0){_emscripten_set_main_loop_timing(0,1e3/fps)}else{_emscripten_set_main_loop_timing(1,1)}Browser.mainLoop.scheduler()}if(simulateInfiniteLoop){throw"unwind"}};var callUserCallback=func=>{if(runtimeExited||ABORT){err("user callback triggered after runtime exited or application aborted. Ignoring.");return}try{func();maybeExit()}catch(e){handleException(e)}};var safeSetTimeout=(func,timeout)=>{runtimeKeepalivePush();return setTimeout(()=>{runtimeKeepalivePop();callUserCallback(func)},timeout)};var Browser={mainLoop:{running:false,scheduler:null,method:"",currentlyRunningMainloop:0,func:null,arg:0,timingMode:0,timingValue:0,currentFrameNumber:0,queue:[],pause(){Browser.mainLoop.scheduler=null;Browser.mainLoop.currentlyRunningMainloop++},resume(){Browser.mainLoop.currentlyRunningMainloop++;var timingMode=Browser.mainLoop.timingMode;var timingValue=Browser.mainLoop.timingValue;var func=Browser.mainLoop.func;Browser.mainLoop.func=null;setMainLoop(func,0,false,Browser.mainLoop.arg,true);_emscripten_set_main_loop_timing(timingMode,timingValue);Browser.mainLoop.scheduler()},updateStatus(){if(Module["setStatus"]){var message=Module["statusMessage"]||"Please wait...";var remaining=Browser.mainLoop.remainingBlockers;var expected=Browser.mainLoop.expectedBlockers;if(remaining){if(remaining<expected){Module["setStatus"](`{message} ({expected - remaining}/{expected})`)}else{Module["setStatus"](message)}}else{Module["setStatus"]("")}}},runIter(func){if(ABORT)return;if(Module["preMainLoop"]){var preRet=Module["preMainLoop"]();if(preRet===false){return}}callUserCallback(func);Module["postMainLoop"]?.()}},isFullscreen:false,pointerLock:false,moduleContextCreatedCallbacks:[],workers:[],init(){if(Browser.initted)return;Browser.initted=true;var imagePlugin={};imagePlugin["canHandle"]=function imagePlugin_canHandle(name){return!Module.noImageDecoding&&/\.(jpg|jpeg|png|bmp)$/i.test(name)};imagePlugin["handle"]=function imagePlugin_handle(byteArray,name,onload,onerror){var b=new Blob([byteArray],{type:Browser.getMimetype(name)});if(b.size!==byteArray.length){b=new Blob([new Uint8Array(byteArray).buffer],{type:Browser.getMimetype(name)})}var url=URL.createObjectURL(b);assert(typeof url=="string","createObjectURL must return a url as a string");var img=new Image;img.onload=()=>{assert(img.complete,`Image ${name} could not be decoded`);var canvas=document.createElement("canvas");canvas.width=img.width;canvas.height=img.height;var ctx=canvas.getContext("2d");ctx.drawImage(img,0,0);preloadedImages[name]=canvas;URL.revokeObjectURL(url);onload?.(byteArray)};img.onerror=event=>{err(`Image ${url} could not be decoded`);onerror?.()};img.src=url};preloadPlugins.push(imagePlugin);var audioPlugin={};audioPlugin["canHandle"]=function audioPlugin_canHandle(name){return!Module.noAudioDecoding&&name.substr(-4)in{".ogg":1,".wav":1,".mp3":1}};audioPlugin["handle"]=function audioPlugin_handle(byteArray,name,onload,onerror){var done=false;function finish(audio){if(done)return;done=true;preloadedAudios[name]=audio;onload?.(byteArray)}var b=new Blob([byteArray],{type:Browser.getMimetype(name)});var url=URL.createObjectURL(b);assert(typeof url=="string","createObjectURL must return a url as a string");var audio=new Audio;audio.addEventListener("canplaythrough",()=>finish(audio),false);audio.onerror=function audio_onerror(event){if(done)return;err(`warning: browser could not fully decode audio ${name}, trying slower base64 approach`);function encode64(data){var BASE="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";var PAD="=";var ret="";var leftchar=0;var leftbits=0;for(var i=0;i<data.length;i++){leftchar=leftchar<<8|data[i];leftbits+=8;while(leftbits>=6){var curr=leftchar>>leftbits-6&63;leftbits-=6;ret+=BASE[curr]}}if(leftbits==2){ret+=BASE[(leftchar&3)<<4];ret+=PAD+PAD}else if(leftbits==4){ret+=BASE[(leftchar&15)<<2];ret+=PAD}return ret}audio.src="data:audio/x-"+name.substr(-3)+";base64,"+encode64(byteArray);finish(audio)};audio.src=url;safeSetTimeout(()=>{finish(audio)},1e4)};preloadPlugins.push(audioPlugin);function pointerLockChange(){Browser.pointerLock=document["pointerLockElement"]===Module["canvas"]||document["mozPointerLockElement"]===Module["canvas"]||document["webkitPointerLockElement"]===Module["canvas"]||document["msPointerLockElement"]===Module["canvas"]}var canvas=Module["canvas"];if(canvas){canvas.requestPointerLock=canvas["requestPointerLock"]||canvas["mozRequestPointerLock"]||canvas["webkitRequestPointerLock"]||canvas["msRequestPointerLock"]||(()=>{});canvas.exitPointerLock=document["exitPointerLock"]||document["mozExitPointerLock"]||document["webkitExitPointerLock"]||document["msExitPointerLock"]||(()=>{});canvas.exitPointerLock=canvas.exitPointerLock.bind(document);document.addEventListener("pointerlockchange",pointerLockChange,false);document.addEventListener("mozpointerlockchange",pointerLockChange,false);document.addEventListener("webkitpointerlockchange",pointerLockChange,false);document.addEventListener("mspointerlockchange",pointerLockChange,false);if(Module["elementPointerLock"]){canvas.addEventListener("click",ev=>{if(!Browser.pointerLock&&Module["canvas"].requestPointerLock){Module["canvas"].requestPointerLock();ev.preventDefault()}},false)}}},createContext(canvas,useWebGL,setInModule,webGLContextAttributes){if(useWebGL&&Module.ctx&&canvas==Module.canvas)return Module.ctx;var ctx;var contextHandle;if(useWebGL){var contextAttributes={antialias:false,alpha:false,majorVersion:typeof WebGL2RenderingContext!="undefined"?2:1};if(webGLContextAttributes){for(var attribute in webGLContextAttributes){contextAttributes[attribute]=webGLContextAttributes[attribute]}}if(typeof GL!="undefined"){contextHandle=GL.createContext(canvas,contextAttributes);if(contextHandle){ctx=GL.getContext(contextHandle).GLctx}}}else{ctx=canvas.getContext("2d")}if(!ctx)return null;if(setInModule){if(!useWebGL)assert(typeof GLctx=="undefined","cannot set in module if GLctx is used, but we are a non-GL context that would replace it");Module.ctx=ctx;if(useWebGL)GL.makeContextCurrent(contextHandle);Module.useWebGL=useWebGL;Browser.moduleContextCreatedCallbacks.forEach(callback=>callback());Browser.init()}return ctx},destroyContext(canvas,useWebGL,setInModule){},fullscreenHandlersInstalled:false,lockPointer:undefined,resizeCanvas:undefined,requestFullscreen(lockPointer,resizeCanvas){Browser.lockPointer=lockPointer;Browser.resizeCanvas=resizeCanvas;if(typeof Browser.lockPointer=="undefined")Browser.lockPointer=true;if(typeof Browser.resizeCanvas=="undefined")Browser.resizeCanvas=false;var canvas=Module["canvas"];function fullscreenChange(){Browser.isFullscreen=false;var canvasContainer=canvas.parentNode;if((document["fullscreenElement"]||document["mozFullScreenElement"]||document["msFullscreenElement"]||document["webkitFullscreenElement"]||document["webkitCurrentFullScreenElement"])===canvasContainer){canvas.exitFullscreen=Browser.exitFullscreen;if(Browser.lockPointer)canvas.requestPointerLock();Browser.isFullscreen=true;if(Browser.resizeCanvas){Browser.setFullscreenCanvasSize()}else{Browser.updateCanvasDimensions(canvas)}}else{canvasContainer.parentNode.insertBefore(canvas,canvasContainer);canvasContainer.parentNode.removeChild(canvasContainer);if(Browser.resizeCanvas){Browser.setWindowedCanvasSize()}else{Browser.updateCanvasDimensions(canvas)}}Module["onFullScreen"]?.(Browser.isFullscreen);Module["onFullscreen"]?.(Browser.isFullscreen)}if(!Browser.fullscreenHandlersInstalled){Browser.fullscreenHandlersInstalled=true;document.addEventListener("fullscreenchange",fullscreenChange,false);document.addEventListener("mozfullscreenchange",fullscreenChange,false);document.addEventListener("webkitfullscreenchange",fullscreenChange,false);document.addEventListener("MSFullscreenChange",fullscreenChange,false)}var canvasContainer=document.createElement("div");canvas.parentNode.insertBefore(canvasContainer,canvas);canvasContainer.appendChild(canvas);canvasContainer.requestFullscreen=canvasContainer["requestFullscreen"]||canvasContainer["mozRequestFullScreen"]||canvasContainer["msRequestFullscreen"]||(canvasContainer["webkitRequestFullscreen"]?()=>canvasContainer["webkitRequestFullscreen"](Element["ALLOW_KEYBOARD_INPUT"]):null)||(canvasContainer["webkitRequestFullScreen"]?()=>canvasContainer["webkitRequestFullScreen"](Element["ALLOW_KEYBOARD_INPUT"]):null);canvasContainer.requestFullscreen()},requestFullScreen(){abort("Module.requestFullScreen has been replaced by Module.requestFullscreen (without a capital S)")},exitFullscreen(){if(!Browser.isFullscreen){return false}var CFS=document["exitFullscreen"]||document["cancelFullScreen"]||document["mozCancelFullScreen"]||document["msExitFullscreen"]||document["webkitCancelFullScreen"]||(()=>{});CFS.apply(document,[]);return true},nextRAF:0,fakeRequestAnimationFrame(func){var now=Date.now();if(Browser.nextRAF===0){Browser.nextRAF=now+1e3/60}else{while(now+2>=Browser.nextRAF){Browser.nextRAF+=1e3/60}}var delay=Math.max(Browser.nextRAF-now,0);setTimeout(func,delay)},requestAnimationFrame(func){if(typeof requestAnimationFrame=="function"){requestAnimationFrame(func);return}var RAF=Browser.fakeRequestAnimationFrame;RAF(func)},safeSetTimeout(func,timeout){return safeSetTimeout(func,timeout)},safeRequestAnimationFrame(func){runtimeKeepalivePush();return Browser.requestAnimationFrame(()=>{runtimeKeepalivePop();callUserCallback(func)})},getMimetype(name){return{jpg:"image/jpeg",jpeg:"image/jpeg",png:"image/png",bmp:"image/bmp",ogg:"audio/ogg",wav:"audio/wav",mp3:"audio/mpeg"}[name.substr(name.lastIndexOf(".")+1)]},getUserMedia(func){window.getUserMedia||=navigator["getUserMedia"]||navigator["mozGetUserMedia"];window.getUserMedia(func)},getMovementX(event){return event["movementX"]||event["mozMovementX"]||event["webkitMovementX"]||0},getMovementY(event){return event["movementY"]||event["mozMovementY"]||event["webkitMovementY"]||0},getMouseWheelDelta(event){var delta=0;switch(event.type){case"DOMMouseScroll":delta=event.detail/3;break;case"mousewheel":delta=event.wheelDelta/120;break;case"wheel":delta=event.deltaY;switch(event.deltaMode){case 0:delta/=100;break;case 1:delta/=3;break;case 2:delta*=80;break;default:throw"unrecognized mouse wheel delta mode: "+event.deltaMode}break;default:throw"unrecognized mouse wheel event: "+event.type}return delta},mouseX:0,mouseY:0,mouseMovementX:0,mouseMovementY:0,touches:{},lastTouches:{},calculateMouseCoords(pageX,pageY){var rect=Module["canvas"].getBoundingClientRect();var cw=Module["canvas"].width;var ch=Module["canvas"].height;var scrollX=typeof window.scrollX!="undefined"?window.scrollX:window.pageXOffset;var scrollY=typeof window.scrollY!="undefined"?window.scrollY:window.pageYOffset;assert(typeof scrollX!="undefined"&&typeof scrollY!="undefined","Unable to retrieve scroll position, mouse positions likely broken.");var adjustedX=pageX-(scrollX+rect.left);var adjustedY=pageY-(scrollY+rect.top);adjustedX=adjustedX*(cw/rect.width);adjustedY=adjustedY*(ch/rect.height);return{x:adjustedX,y:adjustedY}},setMouseCoords(pageX,pageY){const{x:x,y:y}=Browser.calculateMouseCoords(pageX,pageY);Browser.mouseMovementX=x-Browser.mouseX;Browser.mouseMovementY=y-Browser.mouseY;Browser.mouseX=x;Browser.mouseY=y},calculateMouseEvent(event){if(Browser.pointerLock){if(event.type!="mousemove"&&"mozMovementX"in event){Browser.mouseMovementX=Browser.mouseMovementY=0}else{Browser.mouseMovementX=Browser.getMovementX(event);Browser.mouseMovementY=Browser.getMovementY(event)}Browser.mouseX+=Browser.mouseMovementX;Browser.mouseY+=Browser.mouseMovementY}else{if(event.type==="touchstart"||event.type==="touchend"||event.type==="touchmove"){var touch=event.touch;if(touch===undefined){return}var coords=Browser.calculateMouseCoords(touch.pageX,touch.pageY);if(event.type==="touchstart"){Browser.lastTouches[touch.identifier]=coords;Browser.touches[touch.identifier]=coords}else if(event.type==="touchend"||event.type==="touchmove"){var last=Browser.touches[touch.identifier];last||=coords;Browser.lastTouches[touch.identifier]=last;Browser.touches[touch.identifier]=coords}return}Browser.setMouseCoords(event.pageX,event.pageY)}},resizeListeners:[],updateResizeListeners(){var canvas=Module["canvas"];Browser.resizeListeners.forEach(listener=>listener(canvas.width,canvas.height))},setCanvasSize(width,height,noUpdates){var canvas=Module["canvas"];Browser.updateCanvasDimensions(canvas,width,height);if(!noUpdates)Browser.updateResizeListeners()},windowedWidth:0,windowedHeight:0,setFullscreenCanvasSize(){if(typeof SDL!="undefined"){var flags=HEAPU32[SDL.screen>>2];flags=flags|8388608;HEAP32[SDL.screen>>2]=flags}Browser.updateCanvasDimensions(Module["canvas"]);Browser.updateResizeListeners()},setWindowedCanvasSize(){if(typeof SDL!="undefined"){var flags=HEAPU32[SDL.screen>>2];flags=flags&~8388608;HEAP32[SDL.screen>>2]=flags}Browser.updateCanvasDimensions(Module["canvas"]);Browser.updateResizeListeners()},updateCanvasDimensions(canvas,wNative,hNative){if(wNative&&hNative){canvas.widthNative=wNative;canvas.heightNative=hNative}else{wNative=canvas.widthNative;hNative=canvas.heightNative}var w=wNative;var h=hNative;if(Module["forcedAspectRatio"]&&Module["forcedAspectRatio"]>0){if(w/h<Module["forcedAspectRatio"]){w=Math.round(h*Module["forcedAspectRatio"])}else{h=Math.round(w/Module["forcedAspectRatio"])}}if((document["fullscreenElement"]||document["mozFullScreenElement"]||document["msFullscreenElement"]||document["webkitFullscreenElement"]||document["webkitCurrentFullScreenElement"])===canvas.parentNode&&typeof screen!="undefined"){var factor=Math.min(screen.width/w,screen.height/h);w=Math.round(w*factor);h=Math.round(h*factor)}if(Browser.resizeCanvas){if(canvas.width!=w)canvas.width=w;if(canvas.height!=h)canvas.height=h;if(typeof canvas.style!="undefined"){canvas.style.removeProperty("width");canvas.style.removeProperty("height")}}else{if(canvas.width!=wNative)canvas.width=wNative;if(canvas.height!=hNative)canvas.height=hNative;if(typeof canvas.style!="undefined"){if(w!=wNative||h!=hNative){canvas.style.setProperty("width",w+"px","important");canvas.style.setProperty("height",h+"px","important")}else{canvas.style.removeProperty("width");canvas.style.removeProperty("height")}}}}};var _emscripten_cancel_main_loop=()=>{Browser.mainLoop.pause();Browser.mainLoop.func=null};var _emscripten_date_now=()=>Date.now();var _emscripten_err=str=>err(UTF8ToString(str));var _emscripten_force_exit=status=>{__emscripten_runtime_keepalive_clear();_exit(status)};var getHeapMax=()=>2147483648;var _emscripten_get_heap_max=()=>getHeapMax();var growMemory=size=>{var b=wasmMemory.buffer;var pages=(size-b.byteLength+65535)/65536;try{wasmMemory.grow(pages);updateMemoryViews();return 1}catch(e){err(`growMemory: Attempted to grow heap from ${b.byteLength} bytes to ${size} bytes, but got error: ${e}`)}};var _emscripten_resize_heap=requestedSize=>{var oldSize=HEAPU8.length;requestedSize>>>=0;assert(requestedSize>oldSize);var maxHeapSize=getHeapMax();if(requestedSize>maxHeapSize){err(`Cannot enlarge memory, requested ${requestedSize} bytes, but the limit is ${maxHeapSize} bytes!`);return false}var alignUp=(x,multiple)=>x+(multiple-x%multiple)%multiple;for(var cutDown=1;cutDown<=4;cutDown*=2){var overGrownHeapSize=oldSize*(1+.2/cutDown);overGrownHeapSize=Math.min(overGrownHeapSize,requestedSize+100663296);var newSize=Math.min(maxHeapSize,alignUp(Math.max(requestedSize,overGrownHeapSize),65536));var replacement=growMemory(newSize);if(replacement){return true}}err(`Failed to grow the heap from ${oldSize} bytes to ${newSize} bytes, not enough memory!`);return false};var JSEvents={removeAllEventListeners(){while(JSEvents.eventHandlers.length){JSEvents._removeHandler(JSEvents.eventHandlers.length-1)}JSEvents.deferredCalls=[]},registerRemoveEventListeners(){if(!JSEvents.removeEventListenersRegistered){__ATEXIT__.push(JSEvents.removeAllEventListeners);JSEvents.removeEventListenersRegistered=true}},inEventHandler:0,deferredCalls:[],deferCall(targetFunction,precedence,argsList){function arraysHaveEqualContent(arrA,arrB){if(arrA.length!=arrB.length)return false;for(var i in arrA){if(arrA[i]!=arrB[i])return false}return true}for(var call of JSEvents.deferredCalls){if(call.targetFunction==targetFunction&&arraysHaveEqualContent(call.argsList,argsList)){return}}JSEvents.deferredCalls.push({targetFunction:targetFunction,precedence:precedence,argsList:argsList});JSEvents.deferredCalls.sort((x,y)=>x.precedence<y.precedence)},removeDeferredCalls(targetFunction){JSEvents.deferredCalls=JSEvents.deferredCalls.filter(call=>call.targetFunction!=targetFunction)},canPerformEventHandlerRequests(){if(navigator.userActivation){return navigator.userActivation.isActive}return JSEvents.inEventHandler&&JSEvents.currentEventHandler.allowsDeferredCalls},runDeferredCalls(){if(!JSEvents.canPerformEventHandlerRequests()){return}var deferredCalls=JSEvents.deferredCalls;JSEvents.deferredCalls=[];for(var call of deferredCalls){call.targetFunction(...call.argsList)}},eventHandlers:[],removeAllHandlersOnTarget:(target,eventTypeString)=>{for(var i=0;i<JSEvents.eventHandlers.length;++i){if(JSEvents.eventHandlers[i].target==target&&(!eventTypeString||eventTypeString==JSEvents.eventHandlers[i].eventTypeString)){JSEvents._removeHandler(i--)}}},_removeHandler(i){var h=JSEvents.eventHandlers[i];h.target.removeEventListener(h.eventTypeString,h.eventListenerFunc,h.useCapture);JSEvents.eventHandlers.splice(i,1)},registerOrRemoveHandler(eventHandler){if(!eventHandler.target){err("registerOrRemoveHandler: the target element for event handler registration does not exist, when processing the following event handler registration:");console.dir(eventHandler);return-4}if(eventHandler.callbackfunc){eventHandler.eventListenerFunc=function(event){++JSEvents.inEventHandler;JSEvents.currentEventHandler=eventHandler;JSEvents.runDeferredCalls();eventHandler.handlerFunc(event);JSEvents.runDeferredCalls();--JSEvents.inEventHandler};eventHandler.target.addEventListener(eventHandler.eventTypeString,eventHandler.eventListenerFunc,eventHandler.useCapture);JSEvents.eventHandlers.push(eventHandler);JSEvents.registerRemoveEventListeners()}else{for(var i=0;i<JSEvents.eventHandlers.length;++i){if(JSEvents.eventHandlers[i].target==eventHandler.target&&JSEvents.eventHandlers[i].eventTypeString==eventHandler.eventTypeString){JSEvents._removeHandler(i--)}}}return 0},getNodeNameForTarget(target){if(!target)return"";if(target==window)return"#window";if(target==screen)return"#screen";return target?.nodeName||""},fullscreenEnabled(){return document.fullscreenEnabled||document.webkitFullscreenEnabled}};var maybeCStringToJsString=cString=>cString>2?UTF8ToString(cString):cString;var specialHTMLTargets=[0,typeof document!="undefined"?document:0,typeof window!="undefined"?window:0];var findEventTarget=target=>{target=maybeCStringToJsString(target);var domElement=specialHTMLTargets[target]||(typeof document!="undefined"?document.querySelector(target):undefined);return domElement};var findCanvasEventTarget=findEventTarget;var _emscripten_set_canvas_element_size=(target,width,height)=>{var canvas=findCanvasEventTarget(target);if(!canvas)return-4;canvas.width=width;canvas.height=height;if(canvas.GLctxObject)GL.resizeOffscreenFramebuffer(canvas.GLctxObject);return 0};var _emscripten_set_main_loop=(func,fps,simulateInfiniteLoop)=>{var browserIterationFunc=getWasmTableEntry(func);setMainLoop(browserIterationFunc,fps,simulateInfiniteLoop)};var webglPowerPreferences=["default","low-power","high-performance"];var _emscripten_webgl_do_create_context=(target,attributes)=>{assert(attributes);var attr32=attributes>>2;var powerPreference=HEAP32[attr32+(8>>2)];var contextAttributes={alpha:!!HEAP8[attributes+0],depth:!!HEAP8[attributes+1],stencil:!!HEAP8[attributes+2],antialias:!!HEAP8[attributes+3],premultipliedAlpha:!!HEAP8[attributes+4],preserveDrawingBuffer:!!HEAP8[attributes+5],powerPreference:webglPowerPreferences[powerPreference],failIfMajorPerformanceCaveat:!!HEAP8[attributes+12],majorVersion:HEAP32[attr32+(16>>2)],minorVersion:HEAP32[attr32+(20>>2)],enableExtensionsByDefault:HEAP8[attributes+24],explicitSwapControl:HEAP8[attributes+25],proxyContextToMainThread:HEAP32[attr32+(28>>2)],renderViaOffscreenBackBuffer:HEAP8[attributes+32]};var canvas=findCanvasEventTarget(target);if(!canvas){return 0}if(contextAttributes.explicitSwapControl&&!contextAttributes.renderViaOffscreenBackBuffer){contextAttributes.renderViaOffscreenBackBuffer=true}var contextHandle=GL.createContext(canvas,contextAttributes);return contextHandle};var _emscripten_webgl_create_context=_emscripten_webgl_do_create_context;var _emscripten_webgl_destroy_context=contextHandle=>{if(GL.currentContext==contextHandle)GL.currentContext=0;GL.deleteContext(contextHandle)};var _emscripten_webgl_enable_extension=(contextHandle,extension)=>{var context=GL.getContext(contextHandle);var extString=UTF8ToString(extension);if(extString.startsWith("GL_"))extString=extString.substr(3);if(extString=="ANGLE_instanced_arrays")webgl_enable_ANGLE_instanced_arrays(GLctx);if(extString=="OES_vertex_array_object")webgl_enable_OES_vertex_array_object(GLctx);if(extString=="WEBGL_draw_buffers")webgl_enable_WEBGL_draw_buffers(GLctx);if(extString=="WEBGL_draw_instanced_base_vertex_base_instance")webgl_enable_WEBGL_draw_instanced_base_vertex_base_instance(GLctx);if(extString=="WEBGL_multi_draw_instanced_base_vertex_base_instance")webgl_enable_WEBGL_multi_draw_instanced_base_vertex_base_instance(GLctx);if(extString=="WEBGL_multi_draw")webgl_enable_WEBGL_multi_draw(GLctx);var ext=context.GLctx.getExtension(extString);return!!ext};var stringToNewUTF8=str=>{var size=lengthBytesUTF8(str)+1;var ret=_malloc(size);if(ret)stringToUTF8(str,ret,size);return ret};var _emscripten_webgl_get_supported_extensions=()=>stringToNewUTF8(GLctx.getSupportedExtensions().join(" "));var _emscripten_webgl_make_context_current=contextHandle=>{var success=GL.makeContextCurrent(contextHandle);return success?0:-5};var ENV={};var getExecutableName=()=>thisProgram||"./this.program";var getEnvStrings=()=>{if(!getEnvStrings.strings){var lang=(typeof navigator=="object"&&navigator.languages&&navigator.languages[0]||"C").replace("-","_")+".UTF-8";var env={USER:"web_user",LOGNAME:"web_user",PATH:"/",PWD:"/",HOME:"/home/web_user",LANG:lang,_:getExecutableName()};for(var x in ENV){if(ENV[x]===undefined)delete env[x];else env[x]=ENV[x]}var strings=[];for(var x in env){strings.push(`${x}=${env[x]}`)}getEnvStrings.strings=strings}return getEnvStrings.strings};var stringToAscii=(str,buffer)=>{for(var i=0;i<str.length;++i){assert(str.charCodeAt(i)===(str.charCodeAt(i)&255));HEAP8[buffer++]=str.charCodeAt(i)}HEAP8[buffer]=0};var _environ_get=(__environ,environ_buf)=>{var bufSize=0;getEnvStrings().forEach((string,i)=>{var ptr=environ_buf+bufSize;HEAPU32[__environ+i*4>>2]=ptr;stringToAscii(string,ptr);bufSize+=string.length+1});return 0};var _environ_sizes_get=(penviron_count,penviron_buf_size)=>{var strings=getEnvStrings();HEAPU32[penviron_count>>2]=strings.length;var bufSize=0;strings.forEach(string=>bufSize+=string.length+1);HEAPU32[penviron_buf_size>>2]=bufSize;return 0};function _fd_close(fd){try{var stream=SYSCALLS.getStreamFromFD(fd);FS.close(stream);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}function _fd_fdstat_get(fd,pbuf){try{var rightsBase=0;var rightsInheriting=0;var flags=0;{var stream=SYSCALLS.getStreamFromFD(fd);var type=stream.tty?2:FS.isDir(stream.mode)?3:FS.isLink(stream.mode)?7:4}HEAP8[pbuf]=type;HEAP16[pbuf+2>>1]=flags;HEAP64[pbuf+8>>3]=BigInt(rightsBase);HEAP64[pbuf+16>>3]=BigInt(rightsInheriting);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}var doReadv=(stream,iov,iovcnt,offset)=>{var ret=0;for(var i=0;i<iovcnt;i++){var ptr=HEAPU32[iov>>2];var len=HEAPU32[iov+4>>2];iov+=8;var curr=FS.read(stream,HEAP8,ptr,len,offset);if(curr<0)return-1;ret+=curr;if(curr<len)break;if(typeof offset!="undefined"){offset+=curr}}return ret};function _fd_read(fd,iov,iovcnt,pnum){try{var stream=SYSCALLS.getStreamFromFD(fd);var num=doReadv(stream,iov,iovcnt);HEAPU32[pnum>>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}function _fd_seek(fd,offset,whence,newOffset){offset=bigintToI53Checked(offset);try{if(isNaN(offset))return 61;var stream=SYSCALLS.getStreamFromFD(fd);FS.llseek(stream,offset,whence);HEAP64[newOffset>>3]=BigInt(stream.position);if(stream.getdents&&offset===0&&whence===0)stream.getdents=null;return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}var doWritev=(stream,iov,iovcnt,offset)=>{var ret=0;for(var i=0;i<iovcnt;i++){var ptr=HEAPU32[iov>>2];var len=HEAPU32[iov+4>>2];iov+=8;var curr=FS.write(stream,HEAP8,ptr,len,offset);if(curr<0)return-1;ret+=curr;if(typeof offset!="undefined"){offset+=curr}}return ret};function _fd_write(fd,iov,iovcnt,pnum){try{var stream=SYSCALLS.getStreamFromFD(fd);var num=doWritev(stream,iov,iovcnt);HEAPU32[pnum>>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}var _glActiveTexture=x0=>GLctx.activeTexture(x0);var _glAttachShader=(program,shader)=>{GLctx.attachShader(GL.programs[program],GL.shaders[shader])};var _glBeginTransformFeedback=x0=>GLctx.beginTransformFeedback(x0);var _glBindBuffer=(target,buffer)=>{if(target==35051){GLctx.currentPixelPackBufferBinding=buffer}else if(target==35052){GLctx.currentPixelUnpackBufferBinding=buffer}GLctx.bindBuffer(target,GL.buffers[buffer])};var _glBindBufferBase=(target,index,buffer)=>{GLctx.bindBufferBase(target,index,GL.buffers[buffer])};var _glBindBufferRange=(target,index,buffer,offset,ptrsize)=>{GLctx.bindBufferRange(target,index,GL.buffers[buffer],offset,ptrsize)};var _glBindFramebuffer=(target,framebuffer)=>{GLctx.bindFramebuffer(target,framebuffer?GL.framebuffers[framebuffer]:GL.currentContext.defaultFbo)};var _glBindRenderbuffer=(target,renderbuffer)=>{GLctx.bindRenderbuffer(target,GL.renderbuffers[renderbuffer])};var _glBindTexture=(target,texture)=>{GLctx.bindTexture(target,GL.textures[texture])};var _glBindVertexArray=vao=>{GLctx.bindVertexArray(GL.vaos[vao])};var _glBlendColor=(x0,x1,x2,x3)=>GLctx.blendColor(x0,x1,x2,x3);var _glBlendEquation=x0=>GLctx.blendEquation(x0);var _glBlendFunc=(x0,x1)=>GLctx.blendFunc(x0,x1);var _glBlendFuncSeparate=(x0,x1,x2,x3)=>GLctx.blendFuncSeparate(x0,x1,x2,x3);var _glBlitFramebuffer=(x0,x1,x2,x3,x4,x5,x6,x7,x8,x9)=>GLctx.blitFramebuffer(x0,x1,x2,x3,x4,x5,x6,x7,x8,x9);var _glBufferData=(target,size,data,usage)=>{if(GL.currentContext.version>=2){if(data&&size){GLctx.bufferData(target,HEAPU8,usage,data,size)}else{GLctx.bufferData(target,size,usage)}return}GLctx.bufferData(target,data?HEAPU8.subarray(data,data+size):size,usage)};var _glBufferSubData=(target,offset,size,data)=>{if(GL.currentContext.version>=2){size&&GLctx.bufferSubData(target,offset,HEAPU8,data,size);return}GLctx.bufferSubData(target,offset,HEAPU8.subarray(data,data+size))};var _glCheckFramebufferStatus=x0=>GLctx.checkFramebufferStatus(x0);var _glClear=x0=>GLctx.clear(x0);var _glClearBufferfv=(buffer,drawbuffer,value)=>{GLctx.clearBufferfv(buffer,drawbuffer,HEAPF32,value>>2)};var _glClearColor=(x0,x1,x2,x3)=>GLctx.clearColor(x0,x1,x2,x3);var _glClearDepthf=x0=>GLctx.clearDepth(x0);var _glColorMask=(red,green,blue,alpha)=>{GLctx.colorMask(!!red,!!green,!!blue,!!alpha)};var _glCompileShader=shader=>{GLctx.compileShader(GL.shaders[shader])};var _glCompressedTexImage2D=(target,level,internalFormat,width,height,border,imageSize,data)=>{if(GL.currentContext.version>=2){if(GLctx.currentPixelUnpackBufferBinding||!imageSize){GLctx.compressedTexImage2D(target,level,internalFormat,width,height,border,imageSize,data);return}GLctx.compressedTexImage2D(target,level,internalFormat,width,height,border,HEAPU8,data,imageSize);return}GLctx.compressedTexImage2D(target,level,internalFormat,width,height,border,data?HEAPU8.subarray(data,data+imageSize):null)};var _glCompressedTexImage3D=(target,level,internalFormat,width,height,depth,border,imageSize,data)=>{if(GLctx.currentPixelUnpackBufferBinding){GLctx.compressedTexImage3D(target,level,internalFormat,width,height,depth,border,imageSize,data)}else{GLctx.compressedTexImage3D(target,level,internalFormat,width,height,depth,border,HEAPU8,data,imageSize)}};var _glCompressedTexSubImage3D=(target,level,xoffset,yoffset,zoffset,width,height,depth,format,imageSize,data)=>{if(GLctx.currentPixelUnpackBufferBinding){GLctx.compressedTexSubImage3D(target,level,xoffset,yoffset,zoffset,width,height,depth,format,imageSize,data)}else{GLctx.compressedTexSubImage3D(target,level,xoffset,yoffset,zoffset,width,height,depth,format,HEAPU8,data,imageSize)}};var _glCopyBufferSubData=(x0,x1,x2,x3,x4)=>GLctx.copyBufferSubData(x0,x1,x2,x3,x4);var _glCreateProgram=()=>{var id=GL.getNewId(GL.programs);var program=GLctx.createProgram();program.name=id;program.maxUniformLength=program.maxAttributeLength=program.maxUniformBlockNameLength=0;program.uniformIdCounter=1;GL.programs[id]=program;return id};var _glCreateShader=shaderType=>{var id=GL.getNewId(GL.shaders);GL.shaders[id]=GLctx.createShader(shaderType);return id};var _glCullFace=x0=>GLctx.cullFace(x0);var _glDeleteBuffers=(n,buffers)=>{for(var i=0;i<n;i++){var id=HEAP32[buffers+i*4>>2];var buffer=GL.buffers[id];if(!buffer)continue;GLctx.deleteBuffer(buffer);buffer.name=0;GL.buffers[id]=null;if(id==GLctx.currentPixelPackBufferBinding)GLctx.currentPixelPackBufferBinding=0;if(id==GLctx.currentPixelUnpackBufferBinding)GLctx.currentPixelUnpackBufferBinding=0}};var _glDeleteFramebuffers=(n,framebuffers)=>{for(var i=0;i<n;++i){var id=HEAP32[framebuffers+i*4>>2];var framebuffer=GL.framebuffers[id];if(!framebuffer)continue;GLctx.deleteFramebuffer(framebuffer);framebuffer.name=0;GL.framebuffers[id]=null}};var _glDeleteProgram=id=>{if(!id)return;var program=GL.programs[id];if(!program){GL.recordError(1281);return}GLctx.deleteProgram(program);program.name=0;GL.programs[id]=null};var _glDeleteQueries=(n,ids)=>{for(var i=0;i<n;i++){var id=HEAP32[ids+i*4>>2];var query=GL.queries[id];if(!query)continue;GLctx.deleteQuery(query);GL.queries[id]=null}};var _glDeleteRenderbuffers=(n,renderbuffers)=>{for(var i=0;i<n;i++){var id=HEAP32[renderbuffers+i*4>>2];var renderbuffer=GL.renderbuffers[id];if(!renderbuffer)continue;GLctx.deleteRenderbuffer(renderbuffer);renderbuffer.name=0;GL.renderbuffers[id]=null}};var _glDeleteShader=id=>{if(!id)return;var shader=GL.shaders[id];if(!shader){GL.recordError(1281);return}GLctx.deleteShader(shader);GL.shaders[id]=null};var _glDeleteSync=id=>{if(!id)return;var sync=GL.syncs[id];if(!sync){GL.recordError(1281);return}GLctx.deleteSync(sync);sync.name=0;GL.syncs[id]=null};var _glDeleteTextures=(n,textures)=>{for(var i=0;i<n;i++){var id=HEAP32[textures+i*4>>2];var texture=GL.textures[id];if(!texture)continue;GLctx.deleteTexture(texture);texture.name=0;GL.textures[id]=null}};var _glDeleteVertexArrays=(n,vaos)=>{for(var i=0;i<n;i++){var id=HEAP32[vaos+i*4>>2];GLctx.deleteVertexArray(GL.vaos[id]);GL.vaos[id]=null}};var _glDepthFunc=x0=>GLctx.depthFunc(x0);var _glDepthMask=flag=>{GLctx.depthMask(!!flag)};var _glDisable=x0=>GLctx.disable(x0);var _glDisableVertexAttribArray=index=>{GLctx.disableVertexAttribArray(index)};var _glDrawArrays=(mode,first,count)=>{GLctx.drawArrays(mode,first,count)};var _glDrawArraysInstanced=(mode,first,count,primcount)=>{GLctx.drawArraysInstanced(mode,first,count,primcount)};var tempFixedLengthArray=[];var _glDrawBuffers=(n,bufs)=>{var bufArray=tempFixedLengthArray[n];for(var i=0;i<n;i++){bufArray[i]=HEAP32[bufs+i*4>>2]}GLctx.drawBuffers(bufArray)};var _glDrawElements=(mode,count,type,indices)=>{GLctx.drawElements(mode,count,type,indices)};var _glDrawElementsInstanced=(mode,count,type,indices,primcount)=>{GLctx.drawElementsInstanced(mode,count,type,indices,primcount)};var _glEnable=x0=>GLctx.enable(x0);var _glEnableVertexAttribArray=index=>{GLctx.enableVertexAttribArray(index)};var _glEndTransformFeedback=()=>GLctx.endTransformFeedback();var _glFenceSync=(condition,flags)=>{var sync=GLctx.fenceSync(condition,flags);if(sync){var id=GL.getNewId(GL.syncs);sync.name=id;GL.syncs[id]=sync;return id}return 0};var _glFinish=()=>GLctx.finish();var _glFramebufferRenderbuffer=(target,attachment,renderbuffertarget,renderbuffer)=>{GLctx.framebufferRenderbuffer(target,attachment,renderbuffertarget,GL.renderbuffers[renderbuffer])};var _glFramebufferTexture2D=(target,attachment,textarget,texture,level)=>{GLctx.framebufferTexture2D(target,attachment,textarget,GL.textures[texture],level)};var _glFramebufferTextureLayer=(target,attachment,texture,level,layer)=>{GLctx.framebufferTextureLayer(target,attachment,GL.textures[texture],level,layer)};var _glFrontFace=x0=>GLctx.frontFace(x0);var _glGenBuffers=(n,buffers)=>{GL.genObject(n,buffers,"createBuffer",GL.buffers)};var _glGenFramebuffers=(n,ids)=>{GL.genObject(n,ids,"createFramebuffer",GL.framebuffers)};var _glGenQueries=(n,ids)=>{GL.genObject(n,ids,"createQuery",GL.queries)};var _glGenRenderbuffers=(n,renderbuffers)=>{GL.genObject(n,renderbuffers,"createRenderbuffer",GL.renderbuffers)};var _glGenTextures=(n,textures)=>{GL.genObject(n,textures,"createTexture",GL.textures)};var _glGenVertexArrays=(n,arrays)=>{GL.genObject(n,arrays,"createVertexArray",GL.vaos)};var _glGenerateMipmap=x0=>GLctx.generateMipmap(x0);var readI53FromI64=ptr=>HEAPU32[ptr>>2]+HEAP32[ptr+4>>2]*4294967296;var readI53FromU64=ptr=>HEAPU32[ptr>>2]+HEAPU32[ptr+4>>2]*4294967296;var writeI53ToI64=(ptr,num)=>{HEAPU32[ptr>>2]=num;var lower=HEAPU32[ptr>>2];HEAPU32[ptr+4>>2]=(num-lower)/4294967296;var deserialized=num>=0?readI53FromU64(ptr):readI53FromI64(ptr);var offset=ptr>>2;if(deserialized!=num)warnOnce(`writeI53ToI64() out of range: serialized JS Number ${num} to Wasm heap as bytes lo=${ptrToString(HEAPU32[offset])}, hi=${ptrToString(HEAPU32[offset+1])}, which deserializes back to ${deserialized} instead!`)};var webglGetExtensions=function $webglGetExtensions(){var exts=getEmscriptenSupportedExtensions(GLctx);exts=exts.concat(exts.map(e=>"GL_"+e));return exts};var emscriptenWebGLGet=(name_,p,type)=>{if(!p){GL.recordError(1281);return}var ret=undefined;switch(name_){case 36346:ret=1;break;case 36344:if(type!=0&&type!=1){GL.recordError(1280)}return;case 34814:case 36345:ret=0;break;case 34466:var formats=GLctx.getParameter(34467);ret=formats?formats.length:0;break;case 33309:if(GL.currentContext.version<2){GL.recordError(1282);return}ret=webglGetExtensions().length;break;case 33307:case 33308:if(GL.currentContext.version<2){GL.recordError(1280);return}ret=name_==33307?3:0;break}if(ret===undefined){var result=GLctx.getParameter(name_);switch(typeof result){case"number":ret=result;break;case"boolean":ret=result?1:0;break;case"string":GL.recordError(1280);return;case"object":if(result===null){switch(name_){case 34964:case 35725:case 34965:case 36006:case 36007:case 32873:case 34229:case 36662:case 36663:case 35053:case 35055:case 36010:case 35097:case 35869:case 32874:case 36389:case 35983:case 35368:case 34068:{ret=0;break}default:{GL.recordError(1280);return}}}else if(result instanceof Float32Array||result instanceof Uint32Array||result instanceof Int32Array||result instanceof Array){for(var i=0;i<result.length;++i){switch(type){case 0:HEAP32[p+i*4>>2]=result[i];break;case 2:HEAPF32[p+i*4>>2]=result[i];break;case 4:HEAP8[p+i]=result[i]?1:0;break}}return}else{try{ret=result.name|0}catch(e){GL.recordError(1280);err(`GL_INVALID_ENUM in glGet${type}v: Unknown object returned from WebGL getParameter(${name_})! (error: ${e})`);return}}break;default:GL.recordError(1280);err(`GL_INVALID_ENUM in glGet${type}v: Native code calling glGet${type}v(${name_}) and it returns ${result} of type ${typeof result}!`);return}}switch(type){case 1:writeI53ToI64(p,ret);break;case 0:HEAP32[p>>2]=ret;break;case 2:HEAPF32[p>>2]=ret;break;case 4:HEAP8[p]=ret?1:0;break}};var _glGetFloatv=(name_,p)=>emscriptenWebGLGet(name_,p,2);var _glGetInteger64v=(name_,p)=>{emscriptenWebGLGet(name_,p,1)};var _glGetIntegerv=(name_,p)=>emscriptenWebGLGet(name_,p,0);var _glGetProgramInfoLog=(program,maxLength,length,infoLog)=>{var log=GLctx.getProgramInfoLog(GL.programs[program]);if(log===null)log="(unknown error)";var numBytesWrittenExclNull=maxLength>0&&infoLog?stringToUTF8(log,infoLog,maxLength):0;if(length)HEAP32[length>>2]=numBytesWrittenExclNull};var _glGetProgramiv=(program,pname,p)=>{if(!p){GL.recordError(1281);return}if(program>=GL.counter){GL.recordError(1281);return}program=GL.programs[program];if(pname==35716){var log=GLctx.getProgramInfoLog(program);if(log===null)log="(unknown error)";HEAP32[p>>2]=log.length+1}else if(pname==35719){if(!program.maxUniformLength){for(var i=0;i<GLctx.getProgramParameter(program,35718);++i){program.maxUniformLength=Math.max(program.maxUniformLength,GLctx.getActiveUniform(program,i).name.length+1)}}HEAP32[p>>2]=program.maxUniformLength}else if(pname==35722){if(!program.maxAttributeLength){for(var i=0;i<GLctx.getProgramParameter(program,35721);++i){program.maxAttributeLength=Math.max(program.maxAttributeLength,GLctx.getActiveAttrib(program,i).name.length+1)}}HEAP32[p>>2]=program.maxAttributeLength}else if(pname==35381){if(!program.maxUniformBlockNameLength){for(var i=0;i<GLctx.getProgramParameter(program,35382);++i){program.maxUniformBlockNameLength=Math.max(program.maxUniformBlockNameLength,GLctx.getActiveUniformBlockName(program,i).length+1)}}HEAP32[p>>2]=program.maxUniformBlockNameLength}else{HEAP32[p>>2]=GLctx.getProgramParameter(program,pname)}};var _glGetShaderInfoLog=(shader,maxLength,length,infoLog)=>{var log=GLctx.getShaderInfoLog(GL.shaders[shader]);if(log===null)log="(unknown error)";var numBytesWrittenExclNull=maxLength>0&&infoLog?stringToUTF8(log,infoLog,maxLength):0;if(length)HEAP32[length>>2]=numBytesWrittenExclNull};var _glGetShaderiv=(shader,pname,p)=>{if(!p){GL.recordError(1281);return}if(pname==35716){var log=GLctx.getShaderInfoLog(GL.shaders[shader]);if(log===null)log="(unknown error)";var logLength=log?log.length+1:0;HEAP32[p>>2]=logLength}else if(pname==35720){var source=GLctx.getShaderSource(GL.shaders[shader]);var sourceLength=source?source.length+1:0;HEAP32[p>>2]=sourceLength}else{HEAP32[p>>2]=GLctx.getShaderParameter(GL.shaders[shader],pname)}};var _glGetString=name_=>{var ret=GL.stringCache[name_];if(!ret){switch(name_){case 7939:ret=stringToNewUTF8(webglGetExtensions().join(" "));break;case 7936:case 7937:case 37445:case 37446:var s=GLctx.getParameter(name_);if(!s){GL.recordError(1280)}ret=s?stringToNewUTF8(s):0;break;case 7938:var glVersion=GLctx.getParameter(7938);if(GL.currentContext.version>=2)glVersion=`OpenGL ES 3.0 (${glVersion})`;else{glVersion=`OpenGL ES 2.0 (${glVersion})`}ret=stringToNewUTF8(glVersion);break;case 35724:var glslVersion=GLctx.getParameter(35724);var ver_re=/^WebGL GLSL ES ([0-9]\.[0-9][0-9]?)(?:$| .*)/;var ver_num=glslVersion.match(ver_re);if(ver_num!==null){if(ver_num[1].length==3)ver_num[1]=ver_num[1]+"0";glslVersion=`OpenGL ES GLSL ES ${ver_num[1]} (${glslVersion})`}ret=stringToNewUTF8(glslVersion);break;default:GL.recordError(1280)}GL.stringCache[name_]=ret}return ret};var _glGetSynciv=(sync,pname,bufSize,length,values)=>{if(bufSize<0){GL.recordError(1281);return}if(!values){GL.recordError(1281);return}var ret=GLctx.getSyncParameter(GL.syncs[sync],pname);if(ret!==null){HEAP32[values>>2]=ret;if(length)HEAP32[length>>2]=1}};var _glGetUniformBlockIndex=(program,uniformBlockName)=>GLctx.getUniformBlockIndex(GL.programs[program],UTF8ToString(uniformBlockName));var jstoi_q=str=>parseInt(str);var webglGetLeftBracePos=name=>name.slice(-1)=="]"&&name.lastIndexOf("[");var webglPrepareUniformLocationsBeforeFirstUse=program=>{var uniformLocsById=program.uniformLocsById,uniformSizeAndIdsByName=program.uniformSizeAndIdsByName,i,j;if(!uniformLocsById){program.uniformLocsById=uniformLocsById={};program.uniformArrayNamesById={};for(i=0;i<GLctx.getProgramParameter(program,35718);++i){var u=GLctx.getActiveUniform(program,i);var nm=u.name;var sz=u.size;var lb=webglGetLeftBracePos(nm);var arrayName=lb>0?nm.slice(0,lb):nm;var id=program.uniformIdCounter;program.uniformIdCounter+=sz;uniformSizeAndIdsByName[arrayName]=[sz,id];for(j=0;j<sz;++j){uniformLocsById[id]=j;program.uniformArrayNamesById[id++]=arrayName}}}};var _glGetUniformLocation=(program,name)=>{name=UTF8ToString(name);if(program=GL.programs[program]){webglPrepareUniformLocationsBeforeFirstUse(program);var uniformLocsById=program.uniformLocsById;var arrayIndex=0;var uniformBaseName=name;var leftBrace=webglGetLeftBracePos(name);if(leftBrace>0){arrayIndex=jstoi_q(name.slice(leftBrace+1))>>>0;uniformBaseName=name.slice(0,leftBrace)}var sizeAndId=program.uniformSizeAndIdsByName[uniformBaseName];if(sizeAndId&&arrayIndex<sizeAndId[0]){arrayIndex+=sizeAndId[1];if(uniformLocsById[arrayIndex]=uniformLocsById[arrayIndex]||GLctx.getUniformLocation(program,name)){return arrayIndex}}}else{GL.recordError(1281)}return-1};var _glLinkProgram=program=>{program=GL.programs[program];GLctx.linkProgram(program);program.uniformLocsById=0;program.uniformSizeAndIdsByName={}};var _glPixelStorei=(pname,param)=>{if(pname==3317){GL.unpackAlignment=param}else if(pname==3314){GL.unpackRowLength=param}GLctx.pixelStorei(pname,param)};var _glReadBuffer=x0=>GLctx.readBuffer(x0);var computeUnpackAlignedImageSize=(width,height,sizePerPixel)=>{function roundedToNextMultipleOf(x,y){return x+y-1&-y}var plainRowSize=(GL.unpackRowLength||width)*sizePerPixel;var alignedRowSize=roundedToNextMultipleOf(plainRowSize,GL.unpackAlignment);return height*alignedRowSize};var colorChannelsInGlTextureFormat=format=>{var colorChannels={5:3,6:4,8:2,29502:3,29504:4,26917:2,26918:2,29846:3,29847:4};return colorChannels[format-6402]||1};var heapObjectForWebGLType=type=>{type-=5120;if(type==0)return HEAP8;if(type==1)return HEAPU8;if(type==2)return HEAP16;if(type==4)return HEAP32;if(type==6)return HEAPF32;if(type==5||type==28922||type==28520||type==30779||type==30782)return HEAPU32;return HEAPU16};var toTypedArrayIndex=(pointer,heap)=>pointer>>>31-Math.clz32(heap.BYTES_PER_ELEMENT);var emscriptenWebGLGetTexPixelData=(type,format,width,height,pixels,internalFormat)=>{var heap=heapObjectForWebGLType(type);var sizePerPixel=colorChannelsInGlTextureFormat(format)*heap.BYTES_PER_ELEMENT;var bytes=computeUnpackAlignedImageSize(width,height,sizePerPixel);return heap.subarray(toTypedArrayIndex(pixels,heap),toTypedArrayIndex(pixels+bytes,heap))};var _glReadPixels=(x,y,width,height,format,type,pixels)=>{if(GL.currentContext.version>=2){if(GLctx.currentPixelPackBufferBinding){GLctx.readPixels(x,y,width,height,format,type,pixels);return}var heap=heapObjectForWebGLType(type);var target=toTypedArrayIndex(pixels,heap);GLctx.readPixels(x,y,width,height,format,type,heap,target);return}var pixelData=emscriptenWebGLGetTexPixelData(type,format,width,height,pixels,format);if(!pixelData){GL.recordError(1280);return}GLctx.readPixels(x,y,width,height,format,type,pixelData)};var _glRenderbufferStorage=(x0,x1,x2,x3)=>GLctx.renderbufferStorage(x0,x1,x2,x3);var _glRenderbufferStorageMultisample=(x0,x1,x2,x3,x4)=>GLctx.renderbufferStorageMultisample(x0,x1,x2,x3,x4);var _glScissor=(x0,x1,x2,x3)=>GLctx.scissor(x0,x1,x2,x3);var _glShaderSource=(shader,count,string,length)=>{var source=GL.getSource(shader,count,string,length);GLctx.shaderSource(GL.shaders[shader],source)};var _glTexImage2D=(target,level,internalFormat,width,height,border,format,type,pixels)=>{if(GL.currentContext.version>=2){if(GLctx.currentPixelUnpackBufferBinding){GLctx.texImage2D(target,level,internalFormat,width,height,border,format,type,pixels);return}if(pixels){var heap=heapObjectForWebGLType(type);var index=toTypedArrayIndex(pixels,heap);GLctx.texImage2D(target,level,internalFormat,width,height,border,format,type,heap,index);return}}var pixelData=pixels?emscriptenWebGLGetTexPixelData(type,format,width,height,pixels,internalFormat):null;GLctx.texImage2D(target,level,internalFormat,width,height,border,format,type,pixelData)};var _glTexImage3D=(target,level,internalFormat,width,height,depth,border,format,type,pixels)=>{if(GLctx.currentPixelUnpackBufferBinding){GLctx.texImage3D(target,level,internalFormat,width,height,depth,border,format,type,pixels)}else if(pixels){var heap=heapObjectForWebGLType(type);GLctx.texImage3D(target,level,internalFormat,width,height,depth,border,format,type,heap,toTypedArrayIndex(pixels,heap))}else{GLctx.texImage3D(target,level,internalFormat,width,height,depth,border,format,type,null)}};var _glTexParameterf=(x0,x1,x2)=>GLctx.texParameterf(x0,x1,x2);var _glTexParameteri=(x0,x1,x2)=>GLctx.texParameteri(x0,x1,x2);var _glTexStorage2D=(x0,x1,x2,x3,x4)=>GLctx.texStorage2D(x0,x1,x2,x3,x4);var _glTexSubImage3D=(target,level,xoffset,yoffset,zoffset,width,height,depth,format,type,pixels)=>{if(GLctx.currentPixelUnpackBufferBinding){GLctx.texSubImage3D(target,level,xoffset,yoffset,zoffset,width,height,depth,format,type,pixels)}else if(pixels){var heap=heapObjectForWebGLType(type);GLctx.texSubImage3D(target,level,xoffset,yoffset,zoffset,width,height,depth,format,type,heap,toTypedArrayIndex(pixels,heap))}else{GLctx.texSubImage3D(target,level,xoffset,yoffset,zoffset,width,height,depth,format,type,null)}};var _glTransformFeedbackVaryings=(program,count,varyings,bufferMode)=>{program=GL.programs[program];var vars=[];for(var i=0;i<count;i++)vars.push(UTF8ToString(HEAP32[varyings+i*4>>2]));GLctx.transformFeedbackVaryings(program,vars,bufferMode)};var webglGetUniformLocation=location=>{var p=GLctx.currentProgram;if(p){var webglLoc=p.uniformLocsById[location];if(typeof webglLoc=="number"){p.uniformLocsById[location]=webglLoc=GLctx.getUniformLocation(p,p.uniformArrayNamesById[location]+(webglLoc>0?`[${webglLoc}]`:""))}return webglLoc}else{GL.recordError(1282)}};var _glUniform1f=(location,v0)=>{GLctx.uniform1f(webglGetUniformLocation(location),v0)};var _glUniform1i=(location,v0)=>{GLctx.uniform1i(webglGetUniformLocation(location),v0)};var miniTempWebGLIntBuffers=[];var _glUniform1iv=(location,count,value)=>{if(GL.currentContext.version>=2){count&&GLctx.uniform1iv(webglGetUniformLocation(location),HEAP32,value>>2,count);return}if(count<=288){var view=miniTempWebGLIntBuffers[count];for(var i=0;i<count;++i){view[i]=HEAP32[value+4*i>>2]}}else{var view=HEAP32.subarray(value>>2,value+count*4>>2)}GLctx.uniform1iv(webglGetUniformLocation(location),view)};var _glUniform1ui=(location,v0)=>{GLctx.uniform1ui(webglGetUniformLocation(location),v0)};var _glUniform1uiv=(location,count,value)=>{count&&GLctx.uniform1uiv(webglGetUniformLocation(location),HEAPU32,value>>2,count)};var _glUniform2f=(location,v0,v1)=>{GLctx.uniform2f(webglGetUniformLocation(location),v0,v1)};var miniTempWebGLFloatBuffers=[];var _glUniform2fv=(location,count,value)=>{if(GL.currentContext.version>=2){count&&GLctx.uniform2fv(webglGetUniformLocation(location),HEAPF32,value>>2,count*2);return}if(count<=144){var view=miniTempWebGLFloatBuffers[2*count];for(var i=0;i<2*count;i+=2){view[i]=HEAPF32[value+4*i>>2];view[i+1]=HEAPF32[value+(4*i+4)>>2]}}else{var view=HEAPF32.subarray(value>>2,value+count*8>>2)}GLctx.uniform2fv(webglGetUniformLocation(location),view)};var _glUniform2iv=(location,count,value)=>{if(GL.currentContext.version>=2){count&&GLctx.uniform2iv(webglGetUniformLocation(location),HEAP32,value>>2,count*2);return}if(count<=144){var view=miniTempWebGLIntBuffers[2*count];for(var i=0;i<2*count;i+=2){view[i]=HEAP32[value+4*i>>2];view[i+1]=HEAP32[value+(4*i+4)>>2]}}else{var view=HEAP32.subarray(value>>2,value+count*8>>2)}GLctx.uniform2iv(webglGetUniformLocation(location),view)};var _glUniform3fv=(location,count,value)=>{if(GL.currentContext.version>=2){count&&GLctx.uniform3fv(webglGetUniformLocation(location),HEAPF32,value>>2,count*3);return}if(count<=96){var view=miniTempWebGLFloatBuffers[3*count];for(var i=0;i<3*count;i+=3){view[i]=HEAPF32[value+4*i>>2];view[i+1]=HEAPF32[value+(4*i+4)>>2];view[i+2]=HEAPF32[value+(4*i+8)>>2]}}else{var view=HEAPF32.subarray(value>>2,value+count*12>>2)}GLctx.uniform3fv(webglGetUniformLocation(location),view)};var _glUniform4f=(location,v0,v1,v2,v3)=>{GLctx.uniform4f(webglGetUniformLocation(location),v0,v1,v2,v3)};var _glUniform4fv=(location,count,value)=>{if(GL.currentContext.version>=2){count&&GLctx.uniform4fv(webglGetUniformLocation(location),HEAPF32,value>>2,count*4);return}if(count<=72){var view=miniTempWebGLFloatBuffers[4*count];var heap=HEAPF32;value=value>>2;for(var i=0;i<4*count;i+=4){var dst=value+i;view[i]=heap[dst];view[i+1]=heap[dst+1];view[i+2]=heap[dst+2];view[i+3]=heap[dst+3]}}else{var view=HEAPF32.subarray(value>>2,value+count*16>>2)}GLctx.uniform4fv(webglGetUniformLocation(location),view)};var _glUniformBlockBinding=(program,uniformBlockIndex,uniformBlockBinding)=>{program=GL.programs[program];GLctx.uniformBlockBinding(program,uniformBlockIndex,uniformBlockBinding)};var _glUniformMatrix3fv=(location,count,transpose,value)=>{if(GL.currentContext.version>=2){count&&GLctx.uniformMatrix3fv(webglGetUniformLocation(location),!!transpose,HEAPF32,value>>2,count*9);return}if(count<=32){var view=miniTempWebGLFloatBuffers[9*count];for(var i=0;i<9*count;i+=9){view[i]=HEAPF32[value+4*i>>2];view[i+1]=HEAPF32[value+(4*i+4)>>2];view[i+2]=HEAPF32[value+(4*i+8)>>2];view[i+3]=HEAPF32[value+(4*i+12)>>2];view[i+4]=HEAPF32[value+(4*i+16)>>2];view[i+5]=HEAPF32[value+(4*i+20)>>2];view[i+6]=HEAPF32[value+(4*i+24)>>2];view[i+7]=HEAPF32[value+(4*i+28)>>2];view[i+8]=HEAPF32[value+(4*i+32)>>2]}}else{var view=HEAPF32.subarray(value>>2,value+count*36>>2)}GLctx.uniformMatrix3fv(webglGetUniformLocation(location),!!transpose,view)};var _glUniformMatrix4fv=(location,count,transpose,value)=>{if(GL.currentContext.version>=2){count&&GLctx.uniformMatrix4fv(webglGetUniformLocation(location),!!transpose,HEAPF32,value>>2,count*16);return}if(count<=18){var view=miniTempWebGLFloatBuffers[16*count];var heap=HEAPF32;value=value>>2;for(var i=0;i<16*count;i+=16){var dst=value+i;view[i]=heap[dst];view[i+1]=heap[dst+1];view[i+2]=heap[dst+2];view[i+3]=heap[dst+3];view[i+4]=heap[dst+4];view[i+5]=heap[dst+5];view[i+6]=heap[dst+6];view[i+7]=heap[dst+7];view[i+8]=heap[dst+8];view[i+9]=heap[dst+9];view[i+10]=heap[dst+10];view[i+11]=heap[dst+11];view[i+12]=heap[dst+12];view[i+13]=heap[dst+13];view[i+14]=heap[dst+14];view[i+15]=heap[dst+15]}}else{var view=HEAPF32.subarray(value>>2,value+count*64>>2)}GLctx.uniformMatrix4fv(webglGetUniformLocation(location),!!transpose,view)};var _glUseProgram=program=>{program=GL.programs[program];GLctx.useProgram(program);GLctx.currentProgram=program};var _glVertexAttrib4f=(x0,x1,x2,x3,x4)=>GLctx.vertexAttrib4f(x0,x1,x2,x3,x4);var _glVertexAttribDivisor=(index,divisor)=>{GLctx.vertexAttribDivisor(index,divisor)};var _glVertexAttribI4ui=(x0,x1,x2,x3,x4)=>GLctx.vertexAttribI4ui(x0,x1,x2,x3,x4);var _glVertexAttribIPointer=(index,size,type,stride,ptr)=>{GLctx.vertexAttribIPointer(index,size,type,stride,ptr)};var _glVertexAttribPointer=(index,size,type,normalized,stride,ptr)=>{GLctx.vertexAttribPointer(index,size,type,!!normalized,stride,ptr)};var _glViewport=(x0,x1,x2,x3)=>GLctx.viewport(x0,x1,x2,x3);var GodotRuntime={get_func:function(ptr){return wasmTable.get(ptr)},error:function(){err.apply(null,Array.from(arguments))},print:function(){out.apply(null,Array.from(arguments))},malloc:function(p_size){return _malloc(p_size)},free:function(p_ptr){_free(p_ptr)},getHeapValue:function(p_ptr,p_type){return getValue(p_ptr,p_type)},setHeapValue:function(p_ptr,p_value,p_type){setValue(p_ptr,p_value,p_type)},heapSub:function(p_heap,p_ptr,p_len){const bytes=p_heap.BYTES_PER_ELEMENT;return p_heap.subarray(p_ptr/bytes,p_ptr/bytes+p_len)},heapSlice:function(p_heap,p_ptr,p_len){const bytes=p_heap.BYTES_PER_ELEMENT;return p_heap.slice(p_ptr/bytes,p_ptr/bytes+p_len)},heapCopy:function(p_dst,p_src,p_ptr){const bytes=p_src.BYTES_PER_ELEMENT;return p_dst.set(p_src,p_ptr/bytes)},parseString:function(p_ptr){return UTF8ToString(p_ptr)},parseStringArray:function(p_ptr,p_size){const strings=[];const ptrs=GodotRuntime.heapSub(HEAP32,p_ptr,p_size);ptrs.forEach(function(ptr){strings.push(GodotRuntime.parseString(ptr))});return strings},strlen:function(p_str){return lengthBytesUTF8(p_str)},allocString:function(p_str){const length=GodotRuntime.strlen(p_str)+1;const c_str=GodotRuntime.malloc(length);stringToUTF8(p_str,c_str,length);return c_str},allocStringArray:function(p_strings){const size=p_strings.length;const c_ptr=GodotRuntime.malloc(size*4);for(let i=0;i<size;i++){HEAP32[(c_ptr>>2)+i]=GodotRuntime.allocString(p_strings[i])}return c_ptr},freeStringArray:function(p_ptr,p_len){for(let i=0;i<p_len;i++){GodotRuntime.free(HEAP32[(p_ptr>>2)+i])}GodotRuntime.free(p_ptr)},stringToHeap:function(p_str,p_ptr,p_len){return stringToUTF8Array(p_str,HEAP8,p_ptr,p_len)}};var GodotConfig={canvas:null,locale:"en",canvas_resize_policy:2,virtual_keyboard:false,persistent_drops:false,on_execute:null,on_exit:null,init_config:function(p_opts){GodotConfig.canvas_resize_policy=p_opts["canvasResizePolicy"];GodotConfig.canvas=p_opts["canvas"];GodotConfig.locale=p_opts["locale"]||GodotConfig.locale;GodotConfig.virtual_keyboard=p_opts["virtualKeyboard"];GodotConfig.persistent_drops=!!p_opts["persistentDrops"];GodotConfig.on_execute=p_opts["onExecute"];GodotConfig.on_exit=p_opts["onExit"];if(p_opts["focusCanvas"]){GodotConfig.canvas.focus()}},locate_file:function(file){return Module["locateFile"](file)},clear:function(){GodotConfig.canvas=null;GodotConfig.locale="en";GodotConfig.canvas_resize_policy=2;GodotConfig.virtual_keyboard=false;GodotConfig.persistent_drops=false;GodotConfig.on_execute=null;GodotConfig.on_exit=null}};var GodotFS={ENOENT:44,_idbfs:false,_syncing:false,_mount_points:[],is_persistent:function(){return GodotFS._idbfs?1:0},init:function(persistentPaths){GodotFS._idbfs=false;if(!Array.isArray(persistentPaths)){return Promise.reject(new Error("Persistent paths must be an array"))}if(!persistentPaths.length){return Promise.resolve()}GodotFS._mount_points=persistentPaths.slice();function createRecursive(dir){try{FS.stat(dir)}catch(e){if(e.errno!==GodotFS.ENOENT){GodotRuntime.error(e)}FS.mkdirTree(dir)}}GodotFS._mount_points.forEach(function(path){createRecursive(path);FS.mount(IDBFS,{},path)});return new Promise(function(resolve,reject){FS.syncfs(true,function(err){if(err){GodotFS._mount_points=[];GodotFS._idbfs=false;GodotRuntime.print(`IndexedDB not available: ${err.message}`)}else{GodotFS._idbfs=true}resolve(err)})})},deinit:function(){GodotFS._mount_points.forEach(function(path){try{FS.unmount(path)}catch(e){GodotRuntime.print("Already unmounted",e)}if(GodotFS._idbfs&&IDBFS.dbs[path]){IDBFS.dbs[path].close();delete IDBFS.dbs[path]}});GodotFS._mount_points=[];GodotFS._idbfs=false;GodotFS._syncing=false},sync:function(){if(GodotFS._syncing){GodotRuntime.error("Already syncing!");return Promise.resolve()}GodotFS._syncing=true;return new Promise(function(resolve,reject){FS.syncfs(false,function(error){if(error){GodotRuntime.error(`Failed to save IDB file system: ${error.message}`)}GodotFS._syncing=false;resolve(error)})})},copy_to_fs:function(path,buffer){const idx=path.lastIndexOf("/");let dir="/";if(idx>0){dir=path.slice(0,idx)}try{FS.stat(dir)}catch(e){if(e.errno!==GodotFS.ENOENT){GodotRuntime.error(e)}FS.mkdirTree(dir)}FS.writeFile(path,new Uint8Array(buffer))}};var GodotOS={request_quit:function(){},_async_cbs:[],_fs_sync_promise:null,atexit:function(p_promise_cb){GodotOS._async_cbs.push(p_promise_cb)},cleanup:function(exit_code){const cb=GodotConfig.on_exit;GodotFS.deinit();GodotConfig.clear();if(cb){cb(exit_code)}},finish_async:function(callback){GodotOS._fs_sync_promise.then(function(err){const promises=[];GodotOS._async_cbs.forEach(function(cb){promises.push(new Promise(cb))});return Promise.all(promises)}).then(function(){return GodotFS.sync()}).then(function(err){setTimeout(function(){callback()},0)})}};var GodotAudio={MAX_VOLUME_CHANNELS:8,GodotChannel:{CHANNEL_L:0,CHANNEL_R:1,CHANNEL_C:3,CHANNEL_LFE:4,CHANNEL_RL:5,CHANNEL_RR:6,CHANNEL_SL:7,CHANNEL_SR:8},WebChannel:{CHANNEL_L:0,CHANNEL_R:1,CHANNEL_SL:2,CHANNEL_SR:3,CHANNEL_C:4,CHANNEL_LFE:5},samples:null,Sample:class Sample{static getSample(id){if(!GodotAudio.samples.has(id)){throw new ReferenceError(`Could not find sample "${id}"`)}return GodotAudio.samples.get(id)}static getSampleOrNull(id){return GodotAudio.samples.get(id)??null}static create(params,options={}){const sample=new GodotAudio.Sample(params,options);GodotAudio.samples.set(params.id,sample);return sample}static delete(id){GodotAudio.samples.delete(id)}constructor(params,options={}){this.id=params.id;this._audioBuffer=null;this.numberOfChannels=options.numberOfChannels??2;this.sampleRate=options.sampleRate??44100;this.loopMode=options.loopMode??"disabled";this.loopBegin=options.loopBegin??0;this.loopEnd=options.loopEnd??0;this.setAudioBuffer(params.audioBuffer)}getAudioBuffer(){return this._duplicateAudioBuffer()}setAudioBuffer(val){this._audioBuffer=val}clear(){this.setAudioBuffer(null);GodotAudio.Sample.delete(this.id)}_duplicateAudioBuffer(){if(this._audioBuffer==null){throw new Error("couldn't duplicate a null audioBuffer")}const channels=new Array(this._audioBuffer.numberOfChannels);for(let i=0;i<this._audioBuffer.numberOfChannels;i++){const channel=new Float32Array(this._audioBuffer.getChannelData(i));channels[i]=channel}const buffer=GodotAudio.ctx.createBuffer(this.numberOfChannels,this._audioBuffer.length,this._audioBuffer.sampleRate);for(let i=0;i<channels.length;i++){buffer.copyToChannel(channels[i],i,0)}return buffer}},SampleNodeBus:class SampleNodeBus{static create(bus){return new GodotAudio.SampleNodeBus(bus)}constructor(bus){const NUMBER_OF_WEB_CHANNELS=6;this._bus=bus;this._channelSplitter=GodotAudio.ctx.createChannelSplitter(NUMBER_OF_WEB_CHANNELS);this._l=GodotAudio.ctx.createGain();this._r=GodotAudio.ctx.createGain();this._sl=GodotAudio.ctx.createGain();this._sr=GodotAudio.ctx.createGain();this._c=GodotAudio.ctx.createGain();this._lfe=GodotAudio.ctx.createGain();this._channelMerger=GodotAudio.ctx.createChannelMerger(NUMBER_OF_WEB_CHANNELS);this._channelSplitter.connect(this._l,GodotAudio.WebChannel.CHANNEL_L).connect(this._channelMerger,GodotAudio.WebChannel.CHANNEL_L,GodotAudio.WebChannel.CHANNEL_L);this._channelSplitter.connect(this._r,GodotAudio.WebChannel.CHANNEL_R).connect(this._channelMerger,GodotAudio.WebChannel.CHANNEL_L,GodotAudio.WebChannel.CHANNEL_R);this._channelSplitter.connect(this._sl,GodotAudio.WebChannel.CHANNEL_SL).connect(this._channelMerger,GodotAudio.WebChannel.CHANNEL_L,GodotAudio.WebChannel.CHANNEL_SL);this._channelSplitter.connect(this._sr,GodotAudio.WebChannel.CHANNEL_SR).connect(this._channelMerger,GodotAudio.WebChannel.CHANNEL_L,GodotAudio.WebChannel.CHANNEL_SR);this._channelSplitter.connect(this._c,GodotAudio.WebChannel.CHANNEL_C).connect(this._channelMerger,GodotAudio.WebChannel.CHANNEL_L,GodotAudio.WebChannel.CHANNEL_C);this._channelSplitter.connect(this._lfe,GodotAudio.WebChannel.CHANNEL_L).connect(this._channelMerger,GodotAudio.WebChannel.CHANNEL_L,GodotAudio.WebChannel.CHANNEL_LFE);this._channelMerger.connect(this._bus.getInputNode())}getInputNode(){return this._channelSplitter}getOutputNode(){return this._channelMerger}setVolume(volume){if(volume.length!==GodotAudio.MAX_VOLUME_CHANNELS){throw new Error(`Volume length isn't "${GodotAudio.MAX_VOLUME_CHANNELS}", is ${volume.length} instead`)}this._l.gain.value=volume[GodotAudio.GodotChannel.CHANNEL_L]??0;this._r.gain.value=volume[GodotAudio.GodotChannel.CHANNEL_R]??0;this._sl.gain.value=volume[GodotAudio.GodotChannel.CHANNEL_SL]??0;this._sr.gain.value=volume[GodotAudio.GodotChannel.CHANNEL_SR]??0;this._c.gain.value=volume[GodotAudio.GodotChannel.CHANNEL_C]??0;this._lfe.gain.value=volume[GodotAudio.GodotChannel.CHANNEL_LFE]??0}clear(){this._bus=null;this._channelSplitter.disconnect();this._channelSplitter=null;this._l.disconnect();this._l=null;this._r.disconnect();this._r=null;this._sl.disconnect();this._sl=null;this._sr.disconnect();this._sr=null;this._c.disconnect();this._c=null;this._lfe.disconnect();this._lfe=null;this._channelMerger.disconnect();this._channelMerger=null}},sampleNodes:null,SampleNode:class SampleNode{static getSampleNode(id){if(!GodotAudio.sampleNodes.has(id)){throw new ReferenceError(`Could not find sample node "${id}"`)}return GodotAudio.sampleNodes.get(id)}static getSampleNodeOrNull(id){return GodotAudio.sampleNodes.get(id)??null}static stopSampleNode(id){const sampleNode=GodotAudio.SampleNode.getSampleNodeOrNull(id);if(sampleNode==null){return}sampleNode.stop()}static pauseSampleNode(id,enable){const sampleNode=GodotAudio.SampleNode.getSampleNodeOrNull(id);if(sampleNode==null){return}sampleNode.pause(enable)}static create(params,options={}){const sampleNode=new GodotAudio.SampleNode(params,options);GodotAudio.sampleNodes.set(params.id,sampleNode);return sampleNode}static delete(id){GodotAudio.sampleNodes.delete(id)}constructor(params,options={}){this.id=params.id;this.streamObjectId=params.streamObjectId;this.offset=options.offset??0;this._playbackPosition=options.offset;this.startTime=options.startTime??0;this.isPaused=false;this.isStarted=false;this.isCanceled=false;this.pauseTime=0;this._playbackRate=44100;this.loopMode=options.loopMode??this.getSample().loopMode??"disabled";this._pitchScale=options.pitchScale??1;this._sourceStartTime=0;this._sampleNodeBuses=new Map;this._source=GodotAudio.ctx.createBufferSource();this._onended=null;this._positionWorklet=null;this.setPlaybackRate(options.playbackRate??44100);this._source.buffer=this.getSample().getAudioBuffer();this._addEndedListener();const bus=GodotAudio.Bus.getBus(params.busIndex);const sampleNodeBus=this.getSampleNodeBus(bus);sampleNodeBus.setVolume(options.volume);this.connectPositionWorklet(options.start).catch(err=>{const newErr=new Error("Failed to create PositionWorklet.");newErr.cause=err;GodotRuntime.error(newErr)})}getPlaybackRate(){return this._playbackRate}getPlaybackPosition(){return this._playbackPosition}setPlaybackRate(val){this._playbackRate=val;this._syncPlaybackRate()}getPitchScale(){return this._pitchScale}setPitchScale(val){this._pitchScale=val;this._syncPlaybackRate()}getSample(){return GodotAudio.Sample.getSample(this.streamObjectId)}getOutputNode(){return this._source}start(){if(this.isStarted){return}this._resetSourceStartTime();this._source.start(this.startTime,this.offset);this.isStarted=true}stop(){this.clear()}restart(){this.isPaused=false;this.pauseTime=0;this._resetSourceStartTime();this._restart()}pause(enable=true){if(enable){this._pause();return}this._unpause()}connect(node){return this.getOutputNode().connect(node)}setVolumes(buses,volumes){for(let busIdx=0;busIdx<buses.length;busIdx++){const sampleNodeBus=this.getSampleNodeBus(buses[busIdx]);sampleNodeBus.setVolume(volumes.slice(busIdx*GodotAudio.MAX_VOLUME_CHANNELS,busIdx*GodotAudio.MAX_VOLUME_CHANNELS+GodotAudio.MAX_VOLUME_CHANNELS))}}getSampleNodeBus(bus){if(!this._sampleNodeBuses.has(bus)){const sampleNodeBus=GodotAudio.SampleNodeBus.create(bus);this._sampleNodeBuses.set(bus,sampleNodeBus);this._source.connect(sampleNodeBus.getInputNode())}return this._sampleNodeBuses.get(bus)}async connectPositionWorklet(start){await GodotAudio.audioPositionWorkletPromise;if(this.isCanceled){return}this._source.connect(this.getPositionWorklet());if(start){this.start()}}getPositionWorklet(){if(this._positionWorklet!=null){return this._positionWorklet}this._positionWorklet=new AudioWorkletNode(GodotAudio.ctx,"godot-position-reporting-processor");this._positionWorklet.port.onmessage=event=>{switch(event.data["type"]){case"position":this._playbackPosition=parseInt(event.data.data,10)/this.getSample().sampleRate+this.offset;break;default:}};return this._positionWorklet}clear(){this.isCanceled=true;this.isPaused=false;this.pauseTime=0;if(this._source!=null){this._source.removeEventListener("ended",this._onended);this._onended=null;if(this.isStarted){this._source.stop()}this._source.disconnect();this._source=null}for(const sampleNodeBus of this._sampleNodeBuses.values()){sampleNodeBus.clear()}this._sampleNodeBuses.clear();if(this._positionWorklet){this._positionWorklet.disconnect();this._positionWorklet.port.onmessage=null;this._positionWorklet.port.postMessage({type:"ended"});this._positionWorklet=null}GodotAudio.SampleNode.delete(this.id)}_resetSourceStartTime(){this._sourceStartTime=GodotAudio.ctx.currentTime}_syncPlaybackRate(){this._source.playbackRate.value=this.getPlaybackRate()*this.getPitchScale()}_restart(){if(this._source!=null){this._source.disconnect()}this._source=GodotAudio.ctx.createBufferSource();this._source.buffer=this.getSample().getAudioBuffer();for(const sampleNodeBus of this._sampleNodeBuses.values()){this.connect(sampleNodeBus.getInputNode())}this._addEndedListener();const pauseTime=this.isPaused?this.pauseTime:0;if(this._positionWorklet!=null){this._positionWorklet.port.postMessage({type:"clear"});this._source.connect(this._positionWorklet)}this._source.start(this.startTime,this.offset+pauseTime);this.isStarted=true}_pause(){if(!this.isStarted){return}this.isPaused=true;this.pauseTime=(GodotAudio.ctx.currentTime-this._sourceStartTime)/this.getPlaybackRate();this._source.stop()}_unpause(){this._restart();this.isPaused=false;this.pauseTime=0}_addEndedListener(){if(this._onended!=null){this._source.removeEventListener("ended",this._onended)}const self=this;this._onended=_=>{if(self.isPaused){return}switch(self.getSample().loopMode){case"disabled":{const id=this.id;self.stop();if(GodotAudio.sampleFinishedCallback!=null){const idCharPtr=GodotRuntime.allocString(id);GodotAudio.sampleFinishedCallback(idCharPtr);GodotRuntime.free(idCharPtr)}}break;case"forward":case"backward":self.restart();break;default:}};this._source.addEventListener("ended",this._onended)}},buses:null,busSolo:null,Bus:class Bus{static getCount(){return GodotAudio.buses.length}static setCount(val){const buses=GodotAudio.buses;if(val===buses.length){return}if(val<buses.length){const deletedBuses=buses.slice(val);for(let i=0;i<deletedBuses.length;i++){const deletedBus=deletedBuses[i];deletedBus.clear()}GodotAudio.buses=buses.slice(0,val);return}for(let i=GodotAudio.buses.length;i<val;i++){GodotAudio.Bus.create()}}static getBus(index){if(index<0||index>=GodotAudio.buses.length){throw new ReferenceError(`invalid bus index "${index}"`)}return GodotAudio.buses[index]}static getBusOrNull(index){if(index<0||index>=GodotAudio.buses.length){return null}return GodotAudio.buses[index]}static move(fromIndex,toIndex){const movedBus=GodotAudio.Bus.getBusOrNull(fromIndex);if(movedBus==null){return}const buses=GodotAudio.buses.filter((_,i)=>i!==fromIndex);buses.splice(toIndex-1,0,movedBus);GodotAudio.buses=buses}static addAt(index){const newBus=GodotAudio.Bus.create();if(index!==newBus.getId()){GodotAudio.Bus.move(newBus.getId(),index)}}static create(){const newBus=new GodotAudio.Bus;const isFirstBus=GodotAudio.buses.length===0;GodotAudio.buses.push(newBus);if(isFirstBus){newBus.setSend(null)}else{newBus.setSend(GodotAudio.Bus.getBus(0))}return newBus}constructor(){this._sampleNodes=new Set;this.isSolo=false;this._send=null;this._gainNode=GodotAudio.ctx.createGain();this._soloNode=GodotAudio.ctx.createGain();this._muteNode=GodotAudio.ctx.createGain();this._gainNode.connect(this._soloNode).connect(this._muteNode)}getId(){return GodotAudio.buses.indexOf(this)}getVolumeDb(){return GodotAudio.linear_to_db(this._gainNode.gain.value)}setVolumeDb(val){const linear=GodotAudio.db_to_linear(val);if(isFinite(linear)){this._gainNode.gain.value=linear}}getSend(){return this._send}setSend(val){this._send=val;if(val==null){if(this.getId()==0){this.getOutputNode().connect(GodotAudio.ctx.destination);return}throw new Error(`Cannot send to "${val}" without the bus being at index 0 (current index: ${this.getId()})`)}this.connect(val)}getInputNode(){return this._gainNode}getOutputNode(){return this._muteNode}mute(enable){this._muteNode.gain.value=enable?0:1}solo(enable){if(this.isSolo===enable){return}if(enable){if(GodotAudio.busSolo!=null&&GodotAudio.busSolo!==this){GodotAudio.busSolo._disableSolo()}this._enableSolo();return}this._disableSolo()}addSampleNode(sampleNode){this._sampleNodes.add(sampleNode);sampleNode.getOutputNode().connect(this.getInputNode())}removeSampleNode(sampleNode){this._sampleNodes.delete(sampleNode);sampleNode.getOutputNode().disconnect()}connect(bus){if(bus==null){throw new Error("cannot connect to null bus")}this.getOutputNode().disconnect();this.getOutputNode().connect(bus.getInputNode());return bus}clear(){GodotAudio.buses=GodotAudio.buses.filter(v=>v!==this)}_syncSampleNodes(){const sampleNodes=Array.from(this._sampleNodes);for(let i=0;i<sampleNodes.length;i++){const sampleNode=sampleNodes[i];sampleNode.getOutputNode().disconnect();sampleNode.getOutputNode().connect(this.getInputNode())}}_enableSolo(){this.isSolo=true;GodotAudio.busSolo=this;this._soloNode.gain.value=1;const otherBuses=GodotAudio.buses.filter(otherBus=>otherBus!==this);for(let i=0;i<otherBuses.length;i++){const otherBus=otherBuses[i];otherBus._soloNode.gain.value=0}}_disableSolo(){this.isSolo=false;GodotAudio.busSolo=null;this._soloNode.gain.value=1;const otherBuses=GodotAudio.buses.filter(otherBus=>otherBus!==this);for(let i=0;i<otherBuses.length;i++){const otherBus=otherBuses[i];otherBus._soloNode.gain.value=1}}},sampleFinishedCallback:null,ctx:null,input:null,driver:null,interval:0,audioPositionWorkletPromise:null,linear_to_db:function(linear){return Math.log(linear)*8.685889638065037},db_to_linear:function(db){return Math.exp(db*.11512925464970228)},init:function(mix_rate,latency,onstatechange,onlatencyupdate){GodotAudio.samples=new Map;GodotAudio.sampleNodes=new Map;GodotAudio.buses=[];GodotAudio.busSolo=null;const opts={};if(mix_rate){GodotAudio.sampleRate=mix_rate;opts["sampleRate"]=mix_rate}const ctx=new(window.AudioContext||window.webkitAudioContext)(opts);GodotAudio.ctx=ctx;ctx.onstatechange=function(){let state=0;switch(ctx.state){case"suspended":state=0;break;case"running":state=1;break;case"closed":state=2;break;default:}onstatechange(state)};ctx.onstatechange();GodotAudio.interval=setInterval(function(){let computed_latency=0;if(ctx.baseLatency){computed_latency+=GodotAudio.ctx.baseLatency}if(ctx.outputLatency){computed_latency+=GodotAudio.ctx.outputLatency}onlatencyupdate(computed_latency)},1e3);GodotOS.atexit(GodotAudio.close_async);const path=GodotConfig.locate_file("godot.audio.position.worklet.js");GodotAudio.audioPositionWorkletPromise=ctx.audioWorklet.addModule(path);return ctx.destination.channelCount},create_input:function(callback){if(GodotAudio.input){return 0}function gotMediaInput(stream){try{GodotAudio.input=GodotAudio.ctx.createMediaStreamSource(stream);callback(GodotAudio.input)}catch(e){GodotRuntime.error("Failed creating input.",e)}}if(navigator.mediaDevices&&navigator.mediaDevices.getUserMedia){navigator.mediaDevices.getUserMedia({audio:true}).then(gotMediaInput,function(e){GodotRuntime.error("Error getting user media.",e)})}else{if(!navigator.getUserMedia){navigator.getUserMedia=navigator.webkitGetUserMedia||navigator.mozGetUserMedia}if(!navigator.getUserMedia){GodotRuntime.error("getUserMedia not available.");return 1}navigator.getUserMedia({audio:true},gotMediaInput,function(e){GodotRuntime.print(e)})}return 0},close_async:function(resolve,reject){const ctx=GodotAudio.ctx;GodotAudio.ctx=null;if(!ctx){resolve();return}if(GodotAudio.interval){clearInterval(GodotAudio.interval);GodotAudio.interval=0}if(GodotAudio.input){GodotAudio.input.disconnect();GodotAudio.input=null}let closed=Promise.resolve();if(GodotAudio.driver){closed=GodotAudio.driver.close()}closed.then(function(){return ctx.close()}).then(function(){ctx.onstatechange=null;resolve()}).catch(function(e){ctx.onstatechange=null;GodotRuntime.error("Error closing AudioContext",e);resolve()})},start_sample:function(playbackObjectId,streamObjectId,busIndex,startOptions){GodotAudio.SampleNode.stopSampleNode(playbackObjectId);GodotAudio.SampleNode.create({busIndex:busIndex,id:playbackObjectId,streamObjectId:streamObjectId},startOptions)},stop_sample:function(playbackObjectId){GodotAudio.SampleNode.stopSampleNode(playbackObjectId)},sample_set_pause:function(playbackObjectId,pause){GodotAudio.SampleNode.pauseSampleNode(playbackObjectId,pause)},update_sample_pitch_scale:function(playbackObjectId,pitchScale){const sampleNode=GodotAudio.SampleNode.getSampleNodeOrNull(playbackObjectId);if(sampleNode==null){return}sampleNode.setPitchScale(pitchScale)},sample_set_volumes_linear:function(playbackObjectId,busIndexes,volumes){const sampleNode=GodotAudio.SampleNode.getSampleNodeOrNull(playbackObjectId);if(sampleNode==null){return}const buses=busIndexes.map(busIndex=>GodotAudio.Bus.getBus(busIndex));sampleNode.setVolumes(buses,volumes)},set_sample_bus_count:function(count){GodotAudio.Bus.setCount(count)},remove_sample_bus:function(index){const bus=GodotAudio.Bus.getBusOrNull(index);if(bus==null){return}bus.clear()},add_sample_bus:function(atPos){GodotAudio.Bus.addAt(atPos)},move_sample_bus:function(busIndex,toPos){GodotAudio.Bus.move(busIndex,toPos)},set_sample_bus_send:function(busIndex,sendIndex){const bus=GodotAudio.Bus.getBusOrNull(busIndex);if(bus==null){return}let targetBus=GodotAudio.Bus.getBusOrNull(sendIndex);if(targetBus==null){targetBus=GodotAudio.Bus.getBus(0)}bus.setSend(targetBus)},set_sample_bus_volume_db:function(busIndex,volumeDb){const bus=GodotAudio.Bus.getBusOrNull(busIndex);if(bus==null){return}bus.setVolumeDb(volumeDb)},set_sample_bus_solo:function(busIndex,enable){const bus=GodotAudio.Bus.getBusOrNull(busIndex);if(bus==null){return}bus.solo(enable)},set_sample_bus_mute:function(busIndex,enable){const bus=GodotAudio.Bus.getBusOrNull(busIndex);if(bus==null){return}bus.mute(enable)}};function _godot_audio_get_sample_playback_position(playbackObjectIdStrPtr){const playbackObjectId=GodotRuntime.parseString(playbackObjectIdStrPtr);const sampleNode=GodotAudio.SampleNode.getSampleNodeOrNull(playbackObjectId);if(sampleNode==null){return 0}return sampleNode.getPlaybackPosition()}function _godot_audio_has_script_processor(){return GodotAudio.ctx&&GodotAudio.ctx.createScriptProcessor?1:0}function _godot_audio_has_worklet(){return GodotAudio.ctx&&GodotAudio.ctx.audioWorklet?1:0}function _godot_audio_init(p_mix_rate,p_latency,p_state_change,p_latency_update){const statechange=GodotRuntime.get_func(p_state_change);const latencyupdate=GodotRuntime.get_func(p_latency_update);const mix_rate=GodotRuntime.getHeapValue(p_mix_rate,"i32");const channels=GodotAudio.init(mix_rate,p_latency,statechange,latencyupdate);GodotRuntime.setHeapValue(p_mix_rate,GodotAudio.ctx.sampleRate,"i32");return channels}function _godot_audio_input_start(){return GodotAudio.create_input(function(input){input.connect(GodotAudio.driver.get_node())})}function _godot_audio_input_stop(){if(GodotAudio.input){const tracks=GodotAudio.input["mediaStream"]["getTracks"]();for(let i=0;i<tracks.length;i++){tracks[i]["stop"]()}GodotAudio.input.disconnect();GodotAudio.input=null}}function _godot_audio_is_available(){if(!(window.AudioContext||window.webkitAudioContext)){return 0}return 1}function _godot_audio_resume(){if(GodotAudio.ctx&&GodotAudio.ctx.state!=="running"){GodotAudio.ctx.resume()}}function _godot_audio_sample_bus_add(atPos){GodotAudio.add_sample_bus(atPos)}function _godot_audio_sample_bus_move(fromPos,toPos){GodotAudio.move_sample_bus(fromPos,toPos)}function _godot_audio_sample_bus_remove(index){GodotAudio.remove_sample_bus(index)}function _godot_audio_sample_bus_set_count(count){GodotAudio.set_sample_bus_count(count)}function _godot_audio_sample_bus_set_mute(bus,enable){GodotAudio.set_sample_bus_mute(bus,Boolean(enable))}function _godot_audio_sample_bus_set_send(bus,sendIndex){GodotAudio.set_sample_bus_send(bus,sendIndex)}function _godot_audio_sample_bus_set_solo(bus,enable){GodotAudio.set_sample_bus_solo(bus,Boolean(enable))}function _godot_audio_sample_bus_set_volume_db(bus,volumeDb){GodotAudio.set_sample_bus_volume_db(bus,volumeDb)}function _godot_audio_sample_is_active(playbackObjectIdStrPtr){const playbackObjectId=GodotRuntime.parseString(playbackObjectIdStrPtr);return Number(GodotAudio.sampleNodes.has(playbackObjectId))}function _godot_audio_sample_register_stream(streamObjectIdStrPtr,framesPtr,framesTotal,loopModeStrPtr,loopBegin,loopEnd){const BYTES_PER_FLOAT32=4;const streamObjectId=GodotRuntime.parseString(streamObjectIdStrPtr);const loopMode=GodotRuntime.parseString(loopModeStrPtr);const numberOfChannels=2;const sampleRate=GodotAudio.ctx.sampleRate;const subLeft=GodotRuntime.heapSub(HEAPF32,framesPtr,framesTotal);const subRight=GodotRuntime.heapSub(HEAPF32,framesPtr+framesTotal*BYTES_PER_FLOAT32,framesTotal);const audioBuffer=GodotAudio.ctx.createBuffer(numberOfChannels,framesTotal,sampleRate);audioBuffer.copyToChannel(new Float32Array(subLeft),0,0);audioBuffer.copyToChannel(new Float32Array(subRight),1,0);GodotAudio.Sample.create({id:streamObjectId,audioBuffer:audioBuffer},{loopBegin:loopBegin,loopEnd:loopEnd,loopMode:loopMode,numberOfChannels:numberOfChannels,sampleRate:sampleRate})}function _godot_audio_sample_set_finished_callback(callbackPtr){GodotAudio.sampleFinishedCallback=GodotRuntime.get_func(callbackPtr)}function _godot_audio_sample_set_pause(playbackObjectIdStrPtr,pause){const playbackObjectId=GodotRuntime.parseString(playbackObjectIdStrPtr);GodotAudio.sample_set_pause(playbackObjectId,Boolean(pause))}function _godot_audio_sample_set_volumes_linear(playbackObjectIdStrPtr,busesPtr,busesSize,volumesPtr,volumesSize){const playbackObjectId=GodotRuntime.parseString(playbackObjectIdStrPtr);const buses=GodotRuntime.heapSub(HEAP32,busesPtr,busesSize);const volumes=GodotRuntime.heapSub(HEAPF32,volumesPtr,volumesSize);GodotAudio.sample_set_volumes_linear(playbackObjectId,Array.from(buses),volumes)}function _godot_audio_sample_start(playbackObjectIdStrPtr,streamObjectIdStrPtr,busIndex,offset,pitchScale,volumePtr){const playbackObjectId=GodotRuntime.parseString(playbackObjectIdStrPtr);const streamObjectId=GodotRuntime.parseString(streamObjectIdStrPtr);const volume=GodotRuntime.heapSub(HEAPF32,volumePtr,8);const startOptions={offset:offset,volume:volume,playbackRate:1,pitchScale:pitchScale,start:true};GodotAudio.start_sample(playbackObjectId,streamObjectId,busIndex,startOptions)}function _godot_audio_sample_stop(playbackObjectIdStrPtr){const playbackObjectId=GodotRuntime.parseString(playbackObjectIdStrPtr);GodotAudio.stop_sample(playbackObjectId)}function _godot_audio_sample_stream_is_registered(streamObjectIdStrPtr){const streamObjectId=GodotRuntime.parseString(streamObjectIdStrPtr);return Number(GodotAudio.Sample.getSampleOrNull(streamObjectId)!=null)}function _godot_audio_sample_unregister_stream(streamObjectIdStrPtr){const streamObjectId=GodotRuntime.parseString(streamObjectIdStrPtr);const sample=GodotAudio.Sample.getSampleOrNull(streamObjectId);if(sample!=null){sample.clear()}}function _godot_audio_sample_update_pitch_scale(playbackObjectIdStrPtr,pitchScale){const playbackObjectId=GodotRuntime.parseString(playbackObjectIdStrPtr);GodotAudio.update_sample_pitch_scale(playbackObjectId,pitchScale)}var GodotAudioScript={script:null,create:function(buffer_length,channel_count){GodotAudioScript.script=GodotAudio.ctx.createScriptProcessor(buffer_length,2,channel_count);GodotAudio.driver=GodotAudioScript;return GodotAudioScript.script.bufferSize},start:function(p_in_buf,p_in_size,p_out_buf,p_out_size,onprocess){GodotAudioScript.script.onaudioprocess=function(event){const inb=GodotRuntime.heapSub(HEAPF32,p_in_buf,p_in_size);const input=event.inputBuffer;if(GodotAudio.input){const inlen=input.getChannelData(0).length;for(let ch=0;ch<2;ch++){const data=input.getChannelData(ch);for(let s=0;s<inlen;s++){inb[s*2+ch]=data[s]}}}onprocess();const outb=GodotRuntime.heapSub(HEAPF32,p_out_buf,p_out_size);const output=event.outputBuffer;const channels=output.numberOfChannels;for(let ch=0;ch<channels;ch++){const data=output.getChannelData(ch);for(let sample=0;sample<data.length;sample++){data[sample]=outb[sample*channels+ch]}}};GodotAudioScript.script.connect(GodotAudio.ctx.destination)},get_node:function(){return GodotAudioScript.script},close:function(){return new Promise(function(resolve,reject){GodotAudioScript.script.disconnect();GodotAudioScript.script.onaudioprocess=null;GodotAudioScript.script=null;resolve()})}};function _godot_audio_script_create(buffer_length,channel_count){const buf_len=GodotRuntime.getHeapValue(buffer_length,"i32");try{const out_len=GodotAudioScript.create(buf_len,channel_count);GodotRuntime.setHeapValue(buffer_length,out_len,"i32")}catch(e){GodotRuntime.error("Error starting AudioDriverScriptProcessor",e);return 1}return 0}function _godot_audio_script_start(p_in_buf,p_in_size,p_out_buf,p_out_size,p_cb){const onprocess=GodotRuntime.get_func(p_cb);GodotAudioScript.start(p_in_buf,p_in_size,p_out_buf,p_out_size,onprocess)}var GodotAudioWorklet={promise:null,worklet:null,ring_buffer:null,create:function(channels){const path=GodotConfig.locate_file("godot.audio.worklet.js");GodotAudioWorklet.promise=GodotAudio.ctx.audioWorklet.addModule(path).then(function(){GodotAudioWorklet.worklet=new AudioWorkletNode(GodotAudio.ctx,"godot-processor",{outputChannelCount:[channels]});return Promise.resolve()});GodotAudio.driver=GodotAudioWorklet},start:function(in_buf,out_buf,state){GodotAudioWorklet.promise.then(function(){const node=GodotAudioWorklet.worklet;node.connect(GodotAudio.ctx.destination);node.port.postMessage({cmd:"start",data:[state,in_buf,out_buf]});node.port.onmessage=function(event){GodotRuntime.error(event.data)}})},start_no_threads:function(p_out_buf,p_out_size,out_callback,p_in_buf,p_in_size,in_callback){function RingBuffer(){let wpos=0;let rpos=0;let pending_samples=0;const wbuf=new Float32Array(p_out_size);function send(port){if(pending_samples===0){return}const buffer=GodotRuntime.heapSub(HEAPF32,p_out_buf,p_out_size);const size=buffer.length;const tot_sent=pending_samples;out_callback(wpos,pending_samples);if(wpos+pending_samples>=size){const high=size-wpos;wbuf.set(buffer.subarray(wpos,size));pending_samples-=high;wpos=0}if(pending_samples>0){wbuf.set(buffer.subarray(wpos,wpos+pending_samples),tot_sent-pending_samples)}port.postMessage({cmd:"chunk",data:wbuf.subarray(0,tot_sent)});wpos+=pending_samples;pending_samples=0}this.receive=function(recv_buf){const buffer=GodotRuntime.heapSub(HEAPF32,p_in_buf,p_in_size);const from=rpos;let to_write=recv_buf.length;let high=0;if(rpos+to_write>=p_in_size){high=p_in_size-rpos;buffer.set(recv_buf.subarray(0,high),rpos);to_write-=high;rpos=0}if(to_write){buffer.set(recv_buf.subarray(high,to_write),rpos)}in_callback(from,recv_buf.length);rpos+=to_write};this.consumed=function(size,port){pending_samples+=size;send(port)}}GodotAudioWorklet.ring_buffer=new RingBuffer;GodotAudioWorklet.promise.then(function(){const node=GodotAudioWorklet.worklet;const buffer=GodotRuntime.heapSlice(HEAPF32,p_out_buf,p_out_size);node.connect(GodotAudio.ctx.destination);node.port.postMessage({cmd:"start_nothreads",data:[buffer,p_in_size]});node.port.onmessage=function(event){if(!GodotAudioWorklet.worklet){return}if(event.data["cmd"]==="read"){const read=event.data["data"];GodotAudioWorklet.ring_buffer.consumed(read,GodotAudioWorklet.worklet.port)}else if(event.data["cmd"]==="input"){const buf=event.data["data"];if(buf.length>p_in_size){GodotRuntime.error("Input chunk is too big");return}GodotAudioWorklet.ring_buffer.receive(buf)}else{GodotRuntime.error(event.data)}}})},get_node:function(){return GodotAudioWorklet.worklet},close:function(){return new Promise(function(resolve,reject){if(GodotAudioWorklet.promise===null){return}const p=GodotAudioWorklet.promise;p.then(function(){GodotAudioWorklet.worklet.port.postMessage({cmd:"stop",data:null});GodotAudioWorklet.worklet.disconnect();GodotAudioWorklet.worklet.port.onmessage=null;GodotAudioWorklet.worklet=null;GodotAudioWorklet.promise=null;resolve()}).catch(function(err){GodotRuntime.error(err)})})}};function _godot_audio_worklet_create(channels){try{GodotAudioWorklet.create(channels)}catch(e){GodotRuntime.error("Error starting AudioDriverWorklet",e);return 1}return 0}function _godot_audio_worklet_start_no_threads(p_out_buf,p_out_size,p_out_callback,p_in_buf,p_in_size,p_in_callback){const out_callback=GodotRuntime.get_func(p_out_callback);const in_callback=GodotRuntime.get_func(p_in_callback);GodotAudioWorklet.start_no_threads(p_out_buf,p_out_size,out_callback,p_in_buf,p_in_size,in_callback)}function _godot_js_config_canvas_id_get(p_ptr,p_ptr_max){GodotRuntime.stringToHeap(`#${GodotConfig.canvas.id}`,p_ptr,p_ptr_max)}function _godot_js_config_locale_get(p_ptr,p_ptr_max){GodotRuntime.stringToHeap(GodotConfig.locale,p_ptr,p_ptr_max)}var GodotDisplayCursor={shape:"default",visible:true,cursors:{},set_style:function(style){GodotConfig.canvas.style.cursor=style},set_shape:function(shape){GodotDisplayCursor.shape=shape;let css=shape;if(shape in GodotDisplayCursor.cursors){const c=GodotDisplayCursor.cursors[shape];css=`url("${c.url}") ${c.x} ${c.y}, default`}if(GodotDisplayCursor.visible){GodotDisplayCursor.set_style(css)}},clear:function(){GodotDisplayCursor.set_style("");GodotDisplayCursor.shape="default";GodotDisplayCursor.visible=true;Object.keys(GodotDisplayCursor.cursors).forEach(function(key){URL.revokeObjectURL(GodotDisplayCursor.cursors[key]);delete GodotDisplayCursor.cursors[key]})},lockPointer:function(){const canvas=GodotConfig.canvas;if(canvas.requestPointerLock){canvas.requestPointerLock()}},releasePointer:function(){if(document.exitPointerLock){document.exitPointerLock()}},isPointerLocked:function(){return document.pointerLockElement===GodotConfig.canvas}};var GodotEventListeners={handlers:[],has:function(target,event,method,capture){return GodotEventListeners.handlers.findIndex(function(e){return e.target===target&&e.event===event&&e.method===method&&e.capture===capture})!==-1},add:function(target,event,method,capture){if(GodotEventListeners.has(target,event,method,capture)){return}function Handler(p_target,p_event,p_method,p_capture){this.target=p_target;this.event=p_event;this.method=p_method;this.capture=p_capture}GodotEventListeners.handlers.push(new Handler(target,event,method,capture));target.addEventListener(event,method,capture)},clear:function(){GodotEventListeners.handlers.forEach(function(h){h.target.removeEventListener(h.event,h.method,h.capture)});GodotEventListeners.handlers.length=0}};var _emscripten_webgl_do_get_current_context=()=>GL.currentContext?GL.currentContext.handle:0;var _emscripten_webgl_get_current_context=_emscripten_webgl_do_get_current_context;var GodotDisplayScreen={desired_size:[0,0],hidpi:true,getPixelRatio:function(){return GodotDisplayScreen.hidpi?window.devicePixelRatio||1:1},isFullscreen:function(){const elem=document.fullscreenElement||document.mozFullscreenElement||document.webkitFullscreenElement||document.msFullscreenElement;if(elem){return elem===GodotConfig.canvas}return document.fullscreen||document.mozFullScreen||document.webkitIsFullscreen},hasFullscreen:function(){return document.fullscreenEnabled||document.mozFullScreenEnabled||document.webkitFullscreenEnabled},requestFullscreen:function(){if(!GodotDisplayScreen.hasFullscreen()){return 1}const canvas=GodotConfig.canvas;try{const promise=(canvas.requestFullscreen||canvas.msRequestFullscreen||canvas.mozRequestFullScreen||canvas.mozRequestFullscreen||canvas.webkitRequestFullscreen).call(canvas);if(promise){promise.catch(function(){})}}catch(e){return 1}return 0},exitFullscreen:function(){if(!GodotDisplayScreen.isFullscreen()){return 0}try{const promise=document.exitFullscreen();if(promise){promise.catch(function(){})}}catch(e){return 1}return 0},_updateGL:function(){const gl_context_handle=_emscripten_webgl_get_current_context();const gl=GL.getContext(gl_context_handle);if(gl){GL.resizeOffscreenFramebuffer(gl)}},updateSize:function(){const isFullscreen=GodotDisplayScreen.isFullscreen();const wantsFullWindow=GodotConfig.canvas_resize_policy===2;const noResize=GodotConfig.canvas_resize_policy===0;const dWidth=GodotDisplayScreen.desired_size[0];const dHeight=GodotDisplayScreen.desired_size[1];const canvas=GodotConfig.canvas;let width=dWidth;let height=dHeight;if(noResize){if(canvas.width!==width||canvas.height!==height){GodotDisplayScreen.desired_size=[canvas.width,canvas.height];GodotDisplayScreen._updateGL();return 1}return 0}const scale=GodotDisplayScreen.getPixelRatio();if(isFullscreen||wantsFullWindow){width=window.innerWidth*scale;height=window.innerHeight*scale}const csw=`${width/scale}px`;const csh=`${height/scale}px`;if(canvas.style.width!==csw||canvas.style.height!==csh||canvas.width!==width||canvas.height!==height){canvas.width=width;canvas.height=height;canvas.style.width=csw;canvas.style.height=csh;GodotDisplayScreen._updateGL();return 1}return 0}};var GodotDisplayVK={textinput:null,textarea:null,available:function(){return GodotConfig.virtual_keyboard&&"ontouchstart"in window},init:function(input_cb){function create(what){const elem=document.createElement(what);elem.style.display="none";elem.style.position="absolute";elem.style.zIndex="-1";elem.style.background="transparent";elem.style.padding="0px";elem.style.margin="0px";elem.style.overflow="hidden";elem.style.width="0px";elem.style.height="0px";elem.style.border="0px";elem.style.outline="none";elem.readonly=true;elem.disabled=true;GodotEventListeners.add(elem,"input",function(evt){const c_str=GodotRuntime.allocString(elem.value);input_cb(c_str,elem.selectionEnd);GodotRuntime.free(c_str)},false);GodotEventListeners.add(elem,"blur",function(evt){elem.style.display="none";elem.readonly=true;elem.disabled=true},false);GodotConfig.canvas.insertAdjacentElement("beforebegin",elem);return elem}GodotDisplayVK.textinput=create("input");GodotDisplayVK.textarea=create("textarea");GodotDisplayVK.updateSize()},show:function(text,type,start,end){if(!GodotDisplayVK.textinput||!GodotDisplayVK.textarea){return}if(GodotDisplayVK.textinput.style.display!==""||GodotDisplayVK.textarea.style.display!==""){GodotDisplayVK.hide()}GodotDisplayVK.updateSize();let elem=GodotDisplayVK.textinput;switch(type){case 0:elem.type="text";elem.inputmode="";break;case 1:elem=GodotDisplayVK.textarea;break;case 2:elem.type="text";elem.inputmode="numeric";break;case 3:elem.type="text";elem.inputmode="decimal";break;case 4:elem.type="tel";elem.inputmode="";break;case 5:elem.type="email";elem.inputmode="";break;case 6:elem.type="password";elem.inputmode="";break;case 7:elem.type="url";elem.inputmode="";break;default:elem.type="text";elem.inputmode="";break}elem.readonly=false;elem.disabled=false;elem.value=text;elem.style.display="block";elem.focus();elem.setSelectionRange(start,end)},hide:function(){if(!GodotDisplayVK.textinput||!GodotDisplayVK.textarea){return}[GodotDisplayVK.textinput,GodotDisplayVK.textarea].forEach(function(elem){elem.blur();elem.style.display="none";elem.value=""})},updateSize:function(){if(!GodotDisplayVK.textinput||!GodotDisplayVK.textarea){return}const rect=GodotConfig.canvas.getBoundingClientRect();function update(elem){elem.style.left=`${rect.left}px`;elem.style.top=`${rect.top}px`;elem.style.width=`${rect.width}px`;elem.style.height=`${rect.height}px`}update(GodotDisplayVK.textinput);update(GodotDisplayVK.textarea)},clear:function(){if(GodotDisplayVK.textinput){GodotDisplayVK.textinput.remove();GodotDisplayVK.textinput=null}if(GodotDisplayVK.textarea){GodotDisplayVK.textarea.remove();GodotDisplayVK.textarea=null}}};var GodotDisplay={window_icon:"",getDPI:function(){const dpi=Math.round(window.devicePixelRatio*96);return dpi>=96?dpi:96}};function _godot_js_display_alert(p_text){window.alert(GodotRuntime.parseString(p_text))}function _godot_js_display_canvas_focus(){GodotConfig.canvas.focus()}function _godot_js_display_canvas_is_focused(){return document.activeElement===GodotConfig.canvas}function _godot_js_display_clipboard_get(callback){const func=GodotRuntime.get_func(callback);try{navigator.clipboard.readText().then(function(result){const ptr=GodotRuntime.allocString(result);func(ptr);GodotRuntime.free(ptr)}).catch(function(e){})}catch(e){}}function _godot_js_display_clipboard_set(p_text){const text=GodotRuntime.parseString(p_text);if(!navigator.clipboard||!navigator.clipboard.writeText){return 1}navigator.clipboard.writeText(text).catch(function(e){GodotRuntime.error("Setting OS clipboard is only possible from an input callback for the Web platform. Exception:",e)});return 0}function _godot_js_display_cursor_is_hidden(){return!GodotDisplayCursor.visible}function _godot_js_display_cursor_is_locked(){return GodotDisplayCursor.isPointerLocked()?1:0}function _godot_js_display_cursor_lock_set(p_lock){if(p_lock){GodotDisplayCursor.lockPointer()}else{GodotDisplayCursor.releasePointer()}}function _godot_js_display_cursor_set_custom_shape(p_shape,p_ptr,p_len,p_hotspot_x,p_hotspot_y){const shape=GodotRuntime.parseString(p_shape);const old_shape=GodotDisplayCursor.cursors[shape];if(p_len>0){const png=new Blob([GodotRuntime.heapSlice(HEAPU8,p_ptr,p_len)],{type:"image/png"});const url=URL.createObjectURL(png);GodotDisplayCursor.cursors[shape]={url:url,x:p_hotspot_x,y:p_hotspot_y}}else{delete GodotDisplayCursor.cursors[shape]}if(shape===GodotDisplayCursor.shape){GodotDisplayCursor.set_shape(GodotDisplayCursor.shape)}if(old_shape){URL.revokeObjectURL(old_shape.url)}}function _godot_js_display_cursor_set_shape(p_string){GodotDisplayCursor.set_shape(GodotRuntime.parseString(p_string))}function _godot_js_display_cursor_set_visible(p_visible){const visible=p_visible!==0;if(visible===GodotDisplayCursor.visible){return}GodotDisplayCursor.visible=visible;if(visible){GodotDisplayCursor.set_shape(GodotDisplayCursor.shape)}else{GodotDisplayCursor.set_style("none")}}function _godot_js_display_desired_size_set(width,height){GodotDisplayScreen.desired_size=[width,height];GodotDisplayScreen.updateSize()}function _godot_js_display_fullscreen_cb(callback){const canvas=GodotConfig.canvas;const func=GodotRuntime.get_func(callback);function change_cb(evt){if(evt.target===canvas){func(GodotDisplayScreen.isFullscreen())}}GodotEventListeners.add(document,"fullscreenchange",change_cb,false);GodotEventListeners.add(document,"mozfullscreenchange",change_cb,false);GodotEventListeners.add(document,"webkitfullscreenchange",change_cb,false)}function _godot_js_display_fullscreen_exit(){return GodotDisplayScreen.exitFullscreen()}function _godot_js_display_fullscreen_request(){return GodotDisplayScreen.requestFullscreen()}function _godot_js_display_has_webgl(p_version){if(p_version!==1&&p_version!==2){return false}try{return!!document.createElement("canvas").getContext(p_version===2?"webgl2":"webgl")}catch(e){}return false}function _godot_js_display_is_swap_ok_cancel(){const win=["Windows","Win64","Win32","WinCE"];const plat=navigator.platform||"";if(win.indexOf(plat)!==-1){return 1}return 0}function _godot_js_display_notification_cb(callback,p_enter,p_exit,p_in,p_out){const canvas=GodotConfig.canvas;const func=GodotRuntime.get_func(callback);const notif=[p_enter,p_exit,p_in,p_out];["mouseover","mouseleave","focus","blur"].forEach(function(evt_name,idx){GodotEventListeners.add(canvas,evt_name,function(){func(notif[idx])},true)})}function _godot_js_display_pixel_ratio_get(){return GodotDisplayScreen.getPixelRatio()}function _godot_js_display_screen_dpi_get(){return GodotDisplay.getDPI()}function _godot_js_display_screen_size_get(width,height){const scale=GodotDisplayScreen.getPixelRatio();GodotRuntime.setHeapValue(width,window.screen.width*scale,"i32");GodotRuntime.setHeapValue(height,window.screen.height*scale,"i32")}function _godot_js_display_setup_canvas(p_width,p_height,p_fullscreen,p_hidpi){const canvas=GodotConfig.canvas;GodotEventListeners.add(canvas,"contextmenu",function(ev){ev.preventDefault()},false);GodotEventListeners.add(canvas,"webglcontextlost",function(ev){alert("WebGL context lost, please reload the page");ev.preventDefault()},false);GodotDisplayScreen.hidpi=!!p_hidpi;switch(GodotConfig.canvas_resize_policy){case 0:GodotDisplayScreen.desired_size=[canvas.width,canvas.height];break;case 1:GodotDisplayScreen.desired_size=[p_width,p_height];break;default:canvas.style.position="absolute";canvas.style.top=0;canvas.style.left=0;break}GodotDisplayScreen.updateSize();if(p_fullscreen){GodotDisplayScreen.requestFullscreen()}}function _godot_js_display_size_update(){const updated=GodotDisplayScreen.updateSize();if(updated){GodotDisplayVK.updateSize()}return updated}function _godot_js_display_touchscreen_is_available(){return"ontouchstart"in window}function _godot_js_display_tts_available(){return"speechSynthesis"in window}function _godot_js_display_vk_available(){return GodotDisplayVK.available()}function _godot_js_display_vk_cb(p_input_cb){const input_cb=GodotRuntime.get_func(p_input_cb);if(GodotDisplayVK.available()){GodotDisplayVK.init(input_cb)}}function _godot_js_display_vk_hide(){GodotDisplayVK.hide()}function _godot_js_display_vk_show(p_text,p_type,p_start,p_end){const text=GodotRuntime.parseString(p_text);const start=p_start>0?p_start:0;const end=p_end>0?p_end:start;GodotDisplayVK.show(text,p_type,start,end)}function _godot_js_display_window_blur_cb(callback){const func=GodotRuntime.get_func(callback);GodotEventListeners.add(window,"blur",function(){func()},false)}function _godot_js_display_window_icon_set(p_ptr,p_len){let link=document.getElementById("-gd-engine-icon");const old_icon=GodotDisplay.window_icon;if(p_ptr){if(link===null){link=document.createElement("link");link.rel="icon";link.id="-gd-engine-icon";document.head.appendChild(link)}const png=new Blob([GodotRuntime.heapSlice(HEAPU8,p_ptr,p_len)],{type:"image/png"});GodotDisplay.window_icon=URL.createObjectURL(png);link.href=GodotDisplay.window_icon}else{if(link){link.remove()}GodotDisplay.window_icon=null}if(old_icon){URL.revokeObjectURL(old_icon)}}function _godot_js_display_window_size_get(p_width,p_height){GodotRuntime.setHeapValue(p_width,GodotConfig.canvas.width,"i32");GodotRuntime.setHeapValue(p_height,GodotConfig.canvas.height,"i32")}function _godot_js_display_window_title_set(p_data){document.title=GodotRuntime.parseString(p_data)}function _godot_js_eval(p_js,p_use_global_ctx,p_union_ptr,p_byte_arr,p_byte_arr_write,p_callback){const js_code=GodotRuntime.parseString(p_js);let eval_ret=null;try{if(p_use_global_ctx){const global_eval=eval;eval_ret=global_eval(js_code)}else{eval_ret=eval(js_code)}}catch(e){GodotRuntime.error(e)}switch(typeof eval_ret){case"boolean":GodotRuntime.setHeapValue(p_union_ptr,eval_ret,"i32");return 1;case"number":GodotRuntime.setHeapValue(p_union_ptr,eval_ret,"double");return 3;case"string":GodotRuntime.setHeapValue(p_union_ptr,GodotRuntime.allocString(eval_ret),"*");return 4;case"object":if(eval_ret===null){break}if(ArrayBuffer.isView(eval_ret)&&!(eval_ret instanceof Uint8Array)){eval_ret=new Uint8Array(eval_ret.buffer)}else if(eval_ret instanceof ArrayBuffer){eval_ret=new Uint8Array(eval_ret)}if(eval_ret instanceof Uint8Array){const func=GodotRuntime.get_func(p_callback);const bytes_ptr=func(p_byte_arr,p_byte_arr_write,eval_ret.length);HEAPU8.set(eval_ret,bytes_ptr);return 29}break}return 0}var IDHandler={_last_id:0,_references:{},get:function(p_id){return IDHandler._references[p_id]},add:function(p_data){const id=++IDHandler._last_id;IDHandler._references[id]=p_data;return id},remove:function(p_id){delete IDHandler._references[p_id]}};var GodotFetch={onread:function(id,result){const obj=IDHandler.get(id);if(!obj){return}if(result.value){obj.chunks.push(result.value)}obj.reading=false;obj.done=result.done},onresponse:function(id,response){const obj=IDHandler.get(id);if(!obj){return}let chunked=false;response.headers.forEach(function(value,header){const v=value.toLowerCase().trim();const h=header.toLowerCase().trim();if(h==="transfer-encoding"&&v==="chunked"){chunked=true}});obj.status=response.status;obj.response=response;obj.reader=response.body?.getReader();obj.chunked=chunked},onerror:function(id,err){GodotRuntime.error(err);const obj=IDHandler.get(id);if(!obj){return}obj.error=err},create:function(method,url,headers,body){const obj={request:null,response:null,reader:null,error:null,done:false,reading:false,status:0,chunks:[]};const id=IDHandler.add(obj);const init={method:method,headers:headers,body:body};obj.request=fetch(url,init);obj.request.then(GodotFetch.onresponse.bind(null,id)).catch(GodotFetch.onerror.bind(null,id));return id},free:function(id){const obj=IDHandler.get(id);if(!obj){return}IDHandler.remove(id);if(!obj.request){return}obj.request.then(function(response){response.abort()}).catch(function(e){})},read:function(id){const obj=IDHandler.get(id);if(!obj){return}if(obj.reader&&!obj.reading){if(obj.done){obj.reader=null;return}obj.reading=true;obj.reader.read().then(GodotFetch.onread.bind(null,id)).catch(GodotFetch.onerror.bind(null,id))}else if(obj.reader==null&&obj.response.body==null){obj.reading=true;GodotFetch.onread(id,{value:undefined,done:true})}}};function _godot_js_fetch_create(p_method,p_url,p_headers,p_headers_size,p_body,p_body_size){const method=GodotRuntime.parseString(p_method);const url=GodotRuntime.parseString(p_url);const headers=GodotRuntime.parseStringArray(p_headers,p_headers_size);const body=p_body_size?GodotRuntime.heapSlice(HEAP8,p_body,p_body_size):null;return GodotFetch.create(method,url,headers.map(function(hv){const idx=hv.indexOf(":");if(idx<=0){return[]}return[hv.slice(0,idx).trim(),hv.slice(idx+1).trim()]}).filter(function(v){return v.length===2}),body)}function _godot_js_fetch_free(id){GodotFetch.free(id)}function _godot_js_fetch_http_status_get(p_id){const obj=IDHandler.get(p_id);if(!obj||!obj.response){return 0}return obj.status}function _godot_js_fetch_is_chunked(p_id){const obj=IDHandler.get(p_id);if(!obj||!obj.response){return-1}return obj.chunked?1:0}function _godot_js_fetch_read_chunk(p_id,p_buf,p_buf_size){const obj=IDHandler.get(p_id);if(!obj||!obj.response){return 0}let to_read=p_buf_size;const chunks=obj.chunks;while(to_read&&chunks.length){const chunk=obj.chunks[0];if(chunk.length>to_read){GodotRuntime.heapCopy(HEAP8,chunk.slice(0,to_read),p_buf);chunks[0]=chunk.slice(to_read);to_read=0}else{GodotRuntime.heapCopy(HEAP8,chunk,p_buf);to_read-=chunk.length;chunks.pop()}}if(!chunks.length){GodotFetch.read(p_id)}return p_buf_size-to_read}function _godot_js_fetch_read_headers(p_id,p_parse_cb,p_ref){const obj=IDHandler.get(p_id);if(!obj||!obj.response){return 1}const cb=GodotRuntime.get_func(p_parse_cb);const arr=[];obj.response.headers.forEach(function(v,h){arr.push(`${h}:${v}`)});const c_ptr=GodotRuntime.allocStringArray(arr);cb(arr.length,c_ptr,p_ref);GodotRuntime.freeStringArray(c_ptr,arr.length);return 0}function _godot_js_fetch_state_get(p_id){const obj=IDHandler.get(p_id);if(!obj){return-1}if(obj.error){return-1}if(!obj.response){return 0}if(obj.reader||obj.response.body==null&&!obj.done){return 1}if(obj.done){return 2}return-1}var GodotInputGamepads={samples:[],get_pads:function(){try{const pads=navigator.getGamepads();if(pads){return pads}return[]}catch(e){return[]}},get_samples:function(){return GodotInputGamepads.samples},get_sample:function(index){const samples=GodotInputGamepads.samples;return index<samples.length?samples[index]:null},sample:function(){const pads=GodotInputGamepads.get_pads();const samples=[];for(let i=0;i<pads.length;i++){const pad=pads[i];if(!pad){samples.push(null);continue}const s={standard:pad.mapping==="standard",buttons:[],axes:[],connected:pad.connected};for(let b=0;b<pad.buttons.length;b++){s.buttons.push(pad.buttons[b].value)}for(let a=0;a<pad.axes.length;a++){s.axes.push(pad.axes[a])}samples.push(s)}GodotInputGamepads.samples=samples},init:function(onchange){GodotInputGamepads.samples=[];function add(pad){const guid=GodotInputGamepads.get_guid(pad);const c_id=GodotRuntime.allocString(pad.id);const c_guid=GodotRuntime.allocString(guid);onchange(pad.index,1,c_id,c_guid);GodotRuntime.free(c_id);GodotRuntime.free(c_guid)}const pads=GodotInputGamepads.get_pads();for(let i=0;i<pads.length;i++){if(pads[i]){add(pads[i])}}GodotEventListeners.add(window,"gamepadconnected",function(evt){if(evt.gamepad){add(evt.gamepad)}},false);GodotEventListeners.add(window,"gamepaddisconnected",function(evt){if(evt.gamepad){onchange(evt.gamepad.index,0)}},false)},get_guid:function(pad){if(pad.mapping){return pad.mapping}const ua=navigator.userAgent;let os="Unknown";if(ua.indexOf("Android")>=0){os="Android"}else if(ua.indexOf("Linux")>=0){os="Linux"}else if(ua.indexOf("iPhone")>=0){os="iOS"}else if(ua.indexOf("Macintosh")>=0){os="MacOSX"}else if(ua.indexOf("Windows")>=0){os="Windows"}const id=pad.id;const exp1=/vendor: ([0-9a-f]{4}) product: ([0-9a-f]{4})/i;const exp2=/^([0-9a-f]+)-([0-9a-f]+)-/i;let vendor="";let product="";if(exp1.test(id)){const match=exp1.exec(id);vendor=match[1].padStart(4,"0");product=match[2].padStart(4,"0")}else if(exp2.test(id)){const match=exp2.exec(id);vendor=match[1].padStart(4,"0");product=match[2].padStart(4,"0")}if(!vendor||!product){return`${os}Unknown`}return os+vendor+product}};var GodotInputDragDrop={promises:[],pending_files:[],add_entry:function(entry){if(entry.isDirectory){GodotInputDragDrop.add_dir(entry)}else if(entry.isFile){GodotInputDragDrop.add_file(entry)}else{GodotRuntime.error("Unrecognized entry...",entry)}},add_dir:function(entry){GodotInputDragDrop.promises.push(new Promise(function(resolve,reject){const reader=entry.createReader();reader.readEntries(function(entries){for(let i=0;i<entries.length;i++){GodotInputDragDrop.add_entry(entries[i])}resolve()})}))},add_file:function(entry){GodotInputDragDrop.promises.push(new Promise(function(resolve,reject){entry.file(function(file){const reader=new FileReader;reader.onload=function(){const f={path:file.relativePath||file.webkitRelativePath,name:file.name,type:file.type,size:file.size,data:reader.result};if(!f["path"]){f["path"]=f["name"]}GodotInputDragDrop.pending_files.push(f);resolve()};reader.onerror=function(){GodotRuntime.print("Error reading file");reject()};reader.readAsArrayBuffer(file)},function(err){GodotRuntime.print("Error!");reject()})}))},process:function(resolve,reject){if(GodotInputDragDrop.promises.length===0){resolve();return}GodotInputDragDrop.promises.pop().then(function(){setTimeout(function(){GodotInputDragDrop.process(resolve,reject)},0)})},_process_event:function(ev,callback){ev.preventDefault();if(ev.dataTransfer.items){for(let i=0;i<ev.dataTransfer.items.length;i++){const item=ev.dataTransfer.items[i];let entry=null;if("getAsEntry"in item){entry=item.getAsEntry()}else if("webkitGetAsEntry"in item){entry=item.webkitGetAsEntry()}if(entry){GodotInputDragDrop.add_entry(entry)}}}else{GodotRuntime.error("File upload not supported")}new Promise(GodotInputDragDrop.process).then(function(){const DROP=`/tmp/drop-${parseInt(Math.random()*(1<<30),10)}/`;const drops=[];const files=[];FS.mkdir(DROP.slice(0,-1));GodotInputDragDrop.pending_files.forEach(elem=>{const path=elem["path"];GodotFS.copy_to_fs(DROP+path,elem["data"]);let idx=path.indexOf("/");if(idx===-1){drops.push(DROP+path)}else{const sub=path.substr(0,idx);idx=sub.indexOf("/");if(idx<0&&drops.indexOf(DROP+sub)===-1){drops.push(DROP+sub)}}files.push(DROP+path)});GodotInputDragDrop.promises=[];GodotInputDragDrop.pending_files=[];callback(drops);if(GodotConfig.persistent_drops){GodotOS.atexit(function(resolve,reject){GodotInputDragDrop.remove_drop(files,DROP);resolve()})}else{GodotInputDragDrop.remove_drop(files,DROP)}})},remove_drop:function(files,drop_path){const dirs=[drop_path.substr(0,drop_path.length-1)];files.forEach(function(file){FS.unlink(file);let dir=file.replace(drop_path,"");let idx=dir.lastIndexOf("/");while(idx>0){dir=dir.substr(0,idx);if(dirs.indexOf(drop_path+dir)===-1){dirs.push(drop_path+dir)}idx=dir.lastIndexOf("/")}});dirs.sort(function(a,b){const al=(a.match(/\//g)||[]).length;const bl=(b.match(/\//g)||[]).length;if(al>bl){return-1}else if(al<bl){return 1}return 0}).forEach(function(dir){FS.rmdir(dir)})},handler:function(callback){return function(ev){GodotInputDragDrop._process_event(ev,callback)}}};var GodotIME={ime:null,active:false,focusTimerIntervalId:-1,getModifiers:function(evt){return evt.shiftKey+0+(evt.altKey+0<<1)+(evt.ctrlKey+0<<2)+(evt.metaKey+0<<3)},ime_active:function(active){function clearFocusTimerInterval(){clearInterval(GodotIME.focusTimerIntervalId);GodotIME.focusTimerIntervalId=-1}function focusTimer(){if(GodotIME.ime==null){clearFocusTimerInterval();return}GodotIME.ime.focus()}if(GodotIME.focusTimerIntervalId>-1){clearFocusTimerInterval()}if(GodotIME.ime==null){return}GodotIME.active=active;if(active){GodotIME.ime.style.display="block";GodotIME.focusTimerIntervalId=setInterval(focusTimer,100)}else{GodotIME.ime.style.display="none";GodotConfig.canvas.focus()}},ime_position:function(x,y){if(GodotIME.ime==null){return}const canvas=GodotConfig.canvas;const rect=canvas.getBoundingClientRect();const rw=canvas.width/rect.width;const rh=canvas.height/rect.height;const clx=x/rw+rect.x;const cly=y/rh+rect.y;GodotIME.ime.style.left=`${clx}px`;GodotIME.ime.style.top=`${cly}px`},init:function(ime_cb,key_cb,code,key){function key_event_cb(pressed,evt){const modifiers=GodotIME.getModifiers(evt);GodotRuntime.stringToHeap(evt.code,code,32);GodotRuntime.stringToHeap(evt.key,key,32);key_cb(pressed,evt.repeat,modifiers);evt.preventDefault()}function ime_event_cb(event){if(GodotIME.ime==null){return}switch(event.type){case"compositionstart":ime_cb(0,null);GodotIME.ime.innerHTML="";break;case"compositionupdate":{const ptr=GodotRuntime.allocString(event.data);ime_cb(1,ptr);GodotRuntime.free(ptr)}break;case"compositionend":{const ptr=GodotRuntime.allocString(event.data);ime_cb(2,ptr);GodotRuntime.free(ptr);GodotIME.ime.innerHTML=""}break;default:}}const ime=document.createElement("div");ime.className="ime";ime.style.background="none";ime.style.opacity=0;ime.style.position="fixed";ime.style.textAlign="left";ime.style.fontSize="1px";ime.style.left="0px";ime.style.top="0px";ime.style.width="100%";ime.style.height="40px";ime.style.pointerEvents="none";ime.style.display="none";ime.contentEditable="true";GodotEventListeners.add(ime,"compositionstart",ime_event_cb,false);GodotEventListeners.add(ime,"compositionupdate",ime_event_cb,false);GodotEventListeners.add(ime,"compositionend",ime_event_cb,false);GodotEventListeners.add(ime,"keydown",key_event_cb.bind(null,1),false);GodotEventListeners.add(ime,"keyup",key_event_cb.bind(null,0),false);ime.onblur=function(){this.style.display="none";GodotConfig.canvas.focus();GodotIME.active=false};GodotConfig.canvas.parentElement.appendChild(ime);GodotIME.ime=ime},clear:function(){if(GodotIME.ime==null){return}if(GodotIME.focusTimerIntervalId>-1){clearInterval(GodotIME.focusTimerIntervalId);GodotIME.focusTimerIntervalId=-1}GodotIME.ime.remove();GodotIME.ime=null}};var GodotInput={getModifiers:function(evt){return evt.shiftKey+0+(evt.altKey+0<<1)+(evt.ctrlKey+0<<2)+(evt.metaKey+0<<3)},computePosition:function(evt,rect){const canvas=GodotConfig.canvas;const rw=canvas.width/rect.width;const rh=canvas.height/rect.height;const x=(evt.clientX-rect.x)*rw;const y=(evt.clientY-rect.y)*rh;return[x,y]}};function _godot_js_input_drop_files_cb(callback){const func=GodotRuntime.get_func(callback);const dropFiles=function(files){const args=files||[];if(!args.length){return}const argc=args.length;const argv=GodotRuntime.allocStringArray(args);func(argv,argc);GodotRuntime.freeStringArray(argv,argc)};const canvas=GodotConfig.canvas;GodotEventListeners.add(canvas,"dragover",function(ev){ev.preventDefault()},false);GodotEventListeners.add(canvas,"drop",GodotInputDragDrop.handler(dropFiles))}function _godot_js_input_gamepad_cb(change_cb){const onchange=GodotRuntime.get_func(change_cb);GodotInputGamepads.init(onchange)}function _godot_js_input_gamepad_sample(){GodotInputGamepads.sample();return 0}function _godot_js_input_gamepad_sample_count(){return GodotInputGamepads.get_samples().length}function _godot_js_input_gamepad_sample_get(p_index,r_btns,r_btns_num,r_axes,r_axes_num,r_standard){const sample=GodotInputGamepads.get_sample(p_index);if(!sample||!sample.connected){return 1}const btns=sample.buttons;const btns_len=btns.length<16?btns.length:16;for(let i=0;i<btns_len;i++){GodotRuntime.setHeapValue(r_btns+(i<<2),btns[i],"float")}GodotRuntime.setHeapValue(r_btns_num,btns_len,"i32");const axes=sample.axes;const axes_len=axes.length<10?axes.length:10;for(let i=0;i<axes_len;i++){GodotRuntime.setHeapValue(r_axes+(i<<2),axes[i],"float")}GodotRuntime.setHeapValue(r_axes_num,axes_len,"i32");const is_standard=sample.standard?1:0;GodotRuntime.setHeapValue(r_standard,is_standard,"i32");return 0}function _godot_js_input_key_cb(callback,code,key){const func=GodotRuntime.get_func(callback);function key_cb(pressed,evt){const modifiers=GodotInput.getModifiers(evt);GodotRuntime.stringToHeap(evt.code,code,32);GodotRuntime.stringToHeap(evt.key,key,32);func(pressed,evt.repeat,modifiers);evt.preventDefault()}GodotEventListeners.add(GodotConfig.canvas,"keydown",key_cb.bind(null,1),false);GodotEventListeners.add(GodotConfig.canvas,"keyup",key_cb.bind(null,0),false)}function _godot_js_input_mouse_button_cb(callback){const func=GodotRuntime.get_func(callback);const canvas=GodotConfig.canvas;function button_cb(p_pressed,evt){const rect=canvas.getBoundingClientRect();const pos=GodotInput.computePosition(evt,rect);const modifiers=GodotInput.getModifiers(evt);if(p_pressed){GodotConfig.canvas.focus()}if(func(p_pressed,evt.button,pos[0],pos[1],modifiers)){evt.preventDefault()}}GodotEventListeners.add(canvas,"mousedown",button_cb.bind(null,1),false);GodotEventListeners.add(window,"mouseup",button_cb.bind(null,0),false)}function _godot_js_input_mouse_move_cb(callback){const func=GodotRuntime.get_func(callback);const canvas=GodotConfig.canvas;function move_cb(evt){const rect=canvas.getBoundingClientRect();const pos=GodotInput.computePosition(evt,rect);const rw=canvas.width/rect.width;const rh=canvas.height/rect.height;const rel_pos_x=evt.movementX*rw;const rel_pos_y=evt.movementY*rh;const modifiers=GodotInput.getModifiers(evt);func(pos[0],pos[1],rel_pos_x,rel_pos_y,modifiers)}GodotEventListeners.add(window,"mousemove",move_cb,false)}function _godot_js_input_mouse_wheel_cb(callback){const func=GodotRuntime.get_func(callback);function wheel_cb(evt){if(func(evt["deltaX"]||0,evt["deltaY"]||0)){evt.preventDefault()}}GodotEventListeners.add(GodotConfig.canvas,"wheel",wheel_cb,false)}function _godot_js_input_paste_cb(callback){const func=GodotRuntime.get_func(callback);GodotEventListeners.add(window,"paste",function(evt){const text=evt.clipboardData.getData("text");const ptr=GodotRuntime.allocString(text);func(ptr);GodotRuntime.free(ptr)},false)}function _godot_js_input_touch_cb(callback,ids,coords){const func=GodotRuntime.get_func(callback);const canvas=GodotConfig.canvas;function touch_cb(type,evt){if(type===0){GodotConfig.canvas.focus()}const rect=canvas.getBoundingClientRect();const touches=evt.changedTouches;for(let i=0;i<touches.length;i++){const touch=touches[i];const pos=GodotInput.computePosition(touch,rect);GodotRuntime.setHeapValue(coords+i*2*8,pos[0],"double");GodotRuntime.setHeapValue(coords+(i*2+1)*8,pos[1],"double");GodotRuntime.setHeapValue(ids+i*4,touch.identifier,"i32")}func(type,touches.length);if(evt.cancelable){evt.preventDefault()}}GodotEventListeners.add(canvas,"touchstart",touch_cb.bind(null,0),false);GodotEventListeners.add(canvas,"touchend",touch_cb.bind(null,1),false);GodotEventListeners.add(canvas,"touchcancel",touch_cb.bind(null,1),false);GodotEventListeners.add(canvas,"touchmove",touch_cb.bind(null,2),false)}function _godot_js_input_vibrate_handheld(p_duration_ms){if(typeof navigator.vibrate!=="function"){GodotRuntime.print("This browser does not support vibration.")}else{navigator.vibrate(p_duration_ms)}}function _godot_js_is_ime_focused(){return GodotIME.active}function _godot_js_os_download_buffer(p_ptr,p_size,p_name,p_mime){const buf=GodotRuntime.heapSlice(HEAP8,p_ptr,p_size);const name=GodotRuntime.parseString(p_name);const mime=GodotRuntime.parseString(p_mime);const blob=new Blob([buf],{type:mime});const url=window.URL.createObjectURL(blob);const a=document.createElement("a");a.href=url;a.download=name;a.style.display="none";document.body.appendChild(a);a.click();a.remove();window.URL.revokeObjectURL(url)}function _godot_js_os_execute(p_json){const json_args=GodotRuntime.parseString(p_json);const args=JSON.parse(json_args);if(GodotConfig.on_execute){GodotConfig.on_execute(args);return 0}return 1}function _godot_js_os_finish_async(p_callback){const func=GodotRuntime.get_func(p_callback);GodotOS.finish_async(func)}function _godot_js_os_fs_is_persistent(){return GodotFS.is_persistent()}function _godot_js_os_fs_sync(callback){const func=GodotRuntime.get_func(callback);GodotOS._fs_sync_promise=GodotFS.sync();GodotOS._fs_sync_promise.then(function(err){func()})}function _godot_js_os_has_feature(p_ftr){const ftr=GodotRuntime.parseString(p_ftr);const ua=navigator.userAgent;if(ftr==="web_macos"){return ua.indexOf("Mac")!==-1?1:0}if(ftr==="web_windows"){return ua.indexOf("Windows")!==-1?1:0}if(ftr==="web_android"){return ua.indexOf("Android")!==-1?1:0}if(ftr==="web_ios"){return ua.indexOf("iPhone")!==-1||ua.indexOf("iPad")!==-1||ua.indexOf("iPod")!==-1?1:0}if(ftr==="web_linuxbsd"){return ua.indexOf("CrOS")!==-1||ua.indexOf("BSD")!==-1||ua.indexOf("Linux")!==-1||ua.indexOf("X11")!==-1?1:0}return 0}function _godot_js_os_hw_concurrency_get(){const concurrency=navigator.hardwareConcurrency||1;return concurrency<2?concurrency:2}function _godot_js_os_request_quit_cb(p_callback){GodotOS.request_quit=GodotRuntime.get_func(p_callback)}function _godot_js_os_shell_open(p_uri){window.open(GodotRuntime.parseString(p_uri),"_blank")}var GodotPWA={hasUpdate:false,updateState:function(cb,reg){if(!reg){return}if(!reg.active){return}if(reg.waiting){GodotPWA.hasUpdate=true;cb()}GodotEventListeners.add(reg,"updatefound",function(){const installing=reg.installing;GodotEventListeners.add(installing,"statechange",function(){if(installing.state==="installed"){GodotPWA.hasUpdate=true;cb()}})})}};function _godot_js_pwa_cb(p_update_cb){if("serviceWorker"in navigator){try{const cb=GodotRuntime.get_func(p_update_cb);navigator.serviceWorker.getRegistration().then(GodotPWA.updateState.bind(null,cb))}catch(e){GodotRuntime.error("Failed to assign PWA callback",e)}}}function _godot_js_pwa_update(){if("serviceWorker"in navigator&&GodotPWA.hasUpdate){try{navigator.serviceWorker.getRegistration().then(function(reg){if(!reg||!reg.waiting){return}reg.waiting.postMessage("update")})}catch(e){GodotRuntime.error(e);return 1}return 0}return 1}var GodotRTCDataChannel={connect:function(p_id,p_on_open,p_on_message,p_on_error,p_on_close){const ref=IDHandler.get(p_id);if(!ref){return}ref.binaryType="arraybuffer";ref.onopen=function(event){p_on_open()};ref.onclose=function(event){p_on_close()};ref.onerror=function(event){p_on_error()};ref.onmessage=function(event){let buffer;let is_string=0;if(event.data instanceof ArrayBuffer){buffer=new Uint8Array(event.data)}else if(event.data instanceof Blob){GodotRuntime.error("Blob type not supported");return}else if(typeof event.data==="string"){is_string=1;const enc=new TextEncoder("utf-8");buffer=new Uint8Array(enc.encode(event.data))}else{GodotRuntime.error("Unknown message type");return}const len=buffer.length*buffer.BYTES_PER_ELEMENT;const out=GodotRuntime.malloc(len);HEAPU8.set(buffer,out);p_on_message(out,len,is_string);GodotRuntime.free(out)}},close:function(p_id){const ref=IDHandler.get(p_id);if(!ref){return}ref.onopen=null;ref.onmessage=null;ref.onerror=null;ref.onclose=null;ref.close()},get_prop:function(p_id,p_prop,p_def){const ref=IDHandler.get(p_id);return ref&&ref[p_prop]!==undefined?ref[p_prop]:p_def}};function _godot_js_rtc_datachannel_close(p_id){const ref=IDHandler.get(p_id);if(!ref){return}GodotRTCDataChannel.close(p_id)}function _godot_js_rtc_datachannel_connect(p_id,p_ref,p_on_open,p_on_message,p_on_error,p_on_close){const onopen=GodotRuntime.get_func(p_on_open).bind(null,p_ref);const onmessage=GodotRuntime.get_func(p_on_message).bind(null,p_ref);const onerror=GodotRuntime.get_func(p_on_error).bind(null,p_ref);const onclose=GodotRuntime.get_func(p_on_close).bind(null,p_ref);GodotRTCDataChannel.connect(p_id,onopen,onmessage,onerror,onclose)}function _godot_js_rtc_datachannel_destroy(p_id){GodotRTCDataChannel.close(p_id);IDHandler.remove(p_id)}function _godot_js_rtc_datachannel_get_buffered_amount(p_id){return GodotRTCDataChannel.get_prop(p_id,"bufferedAmount",0)}function _godot_js_rtc_datachannel_id_get(p_id){return GodotRTCDataChannel.get_prop(p_id,"id",65535)}function _godot_js_rtc_datachannel_is_negotiated(p_id){return GodotRTCDataChannel.get_prop(p_id,"negotiated",65535)}function _godot_js_rtc_datachannel_is_ordered(p_id){return GodotRTCDataChannel.get_prop(p_id,"ordered",true)}function _godot_js_rtc_datachannel_label_get(p_id){const ref=IDHandler.get(p_id);if(!ref||!ref.label){return 0}return GodotRuntime.allocString(ref.label)}function _godot_js_rtc_datachannel_max_packet_lifetime_get(p_id){const ref=IDHandler.get(p_id);if(!ref){return 65535}if(ref["maxPacketLifeTime"]!==undefined){return ref["maxPacketLifeTime"]}else if(ref["maxRetransmitTime"]!==undefined){return ref["maxRetransmitTime"]}return 65535}function _godot_js_rtc_datachannel_max_retransmits_get(p_id){return GodotRTCDataChannel.get_prop(p_id,"maxRetransmits",65535)}function _godot_js_rtc_datachannel_protocol_get(p_id){const ref=IDHandler.get(p_id);if(!ref||!ref.protocol){return 0}return GodotRuntime.allocString(ref.protocol)}function _godot_js_rtc_datachannel_ready_state_get(p_id){const ref=IDHandler.get(p_id);if(!ref){return 3}switch(ref.readyState){case"connecting":return 0;case"open":return 1;case"closing":return 2;case"closed":default:return 3}}function _godot_js_rtc_datachannel_send(p_id,p_buffer,p_length,p_raw){const ref=IDHandler.get(p_id);if(!ref){return 1}const bytes_array=new Uint8Array(p_length);for(let i=0;i<p_length;i++){bytes_array[i]=GodotRuntime.getHeapValue(p_buffer+i,"i8")}if(p_raw){ref.send(bytes_array.buffer)}else{const string=new TextDecoder("utf-8").decode(bytes_array);ref.send(string)}return 0}var GodotRTCPeerConnection={ConnectionState:{new:0,connecting:1,connected:2,disconnected:3,failed:4,closed:5},ConnectionStateCompat:{new:0,checking:1,connected:2,completed:2,disconnected:3,failed:4,closed:5},IceGatheringState:{new:0,gathering:1,complete:2},SignalingState:{stable:0,"have-local-offer":1,"have-remote-offer":2,"have-local-pranswer":3,"have-remote-pranswer":4,closed:5},create:function(config,onConnectionChange,onSignalingChange,onIceGatheringChange,onIceCandidate,onDataChannel){let conn=null;try{conn=new RTCPeerConnection(config)}catch(e){GodotRuntime.error(e);return 0}const id=IDHandler.add(conn);if("connectionState"in conn&&conn["connectionState"]!==undefined){conn.onconnectionstatechange=function(event){if(!IDHandler.get(id)){return}onConnectionChange(GodotRTCPeerConnection.ConnectionState[conn.connectionState]||0)}}else{conn.oniceconnectionstatechange=function(event){if(!IDHandler.get(id)){return}onConnectionChange(GodotRTCPeerConnection.ConnectionStateCompat[conn.iceConnectionState]||0)}}conn.onicegatheringstatechange=function(event){if(!IDHandler.get(id)){return}onIceGatheringChange(GodotRTCPeerConnection.IceGatheringState[conn.iceGatheringState]||0)};conn.onsignalingstatechange=function(event){if(!IDHandler.get(id)){return}onSignalingChange(GodotRTCPeerConnection.SignalingState[conn.signalingState]||0)};conn.onicecandidate=function(event){if(!IDHandler.get(id)){return}const c=event.candidate;if(!c||!c.candidate){return}const candidate_str=GodotRuntime.allocString(c.candidate);const mid_str=GodotRuntime.allocString(c.sdpMid);onIceCandidate(mid_str,c.sdpMLineIndex,candidate_str);GodotRuntime.free(candidate_str);GodotRuntime.free(mid_str)};conn.ondatachannel=function(event){if(!IDHandler.get(id)){return}const cid=IDHandler.add(event.channel);onDataChannel(cid)};return id},destroy:function(p_id){const conn=IDHandler.get(p_id);if(!conn){return}conn.onconnectionstatechange=null;conn.oniceconnectionstatechange=null;conn.onicegatheringstatechange=null;conn.onsignalingstatechange=null;conn.onicecandidate=null;conn.ondatachannel=null;IDHandler.remove(p_id)},onsession:function(p_id,callback,session){if(!IDHandler.get(p_id)){return}const type_str=GodotRuntime.allocString(session.type);const sdp_str=GodotRuntime.allocString(session.sdp);callback(type_str,sdp_str);GodotRuntime.free(type_str);GodotRuntime.free(sdp_str)},onerror:function(p_id,callback,error){const ref=IDHandler.get(p_id);if(!ref){return}GodotRuntime.error(error);callback()}};function _godot_js_rtc_pc_close(p_id){const ref=IDHandler.get(p_id);if(!ref){return}ref.close()}function _godot_js_rtc_pc_create(p_config,p_ref,p_on_connection_state_change,p_on_ice_gathering_state_change,p_on_signaling_state_change,p_on_ice_candidate,p_on_datachannel){const wrap=function(p_func){return GodotRuntime.get_func(p_func).bind(null,p_ref)};return GodotRTCPeerConnection.create(JSON.parse(GodotRuntime.parseString(p_config)),wrap(p_on_connection_state_change),wrap(p_on_signaling_state_change),wrap(p_on_ice_gathering_state_change),wrap(p_on_ice_candidate),wrap(p_on_datachannel))}function _godot_js_rtc_pc_datachannel_create(p_id,p_label,p_config){try{const ref=IDHandler.get(p_id);if(!ref){return 0}const label=GodotRuntime.parseString(p_label);const config=JSON.parse(GodotRuntime.parseString(p_config));const channel=ref.createDataChannel(label,config);return IDHandler.add(channel)}catch(e){GodotRuntime.error(e);return 0}}function _godot_js_rtc_pc_destroy(p_id){GodotRTCPeerConnection.destroy(p_id)}function _godot_js_rtc_pc_ice_candidate_add(p_id,p_mid_name,p_mline_idx,p_sdp){const ref=IDHandler.get(p_id);if(!ref){return}const sdpMidName=GodotRuntime.parseString(p_mid_name);const sdpName=GodotRuntime.parseString(p_sdp);ref.addIceCandidate(new RTCIceCandidate({candidate:sdpName,sdpMid:sdpMidName,sdpMlineIndex:p_mline_idx}))}function _godot_js_rtc_pc_local_description_set(p_id,p_type,p_sdp,p_obj,p_on_error){const ref=IDHandler.get(p_id);if(!ref){return}const type=GodotRuntime.parseString(p_type);const sdp=GodotRuntime.parseString(p_sdp);const onerror=GodotRuntime.get_func(p_on_error).bind(null,p_obj);ref.setLocalDescription({sdp:sdp,type:type}).catch(function(error){GodotRTCPeerConnection.onerror(p_id,onerror,error)})}function _godot_js_rtc_pc_offer_create(p_id,p_obj,p_on_session,p_on_error){const ref=IDHandler.get(p_id);if(!ref){return}const onsession=GodotRuntime.get_func(p_on_session).bind(null,p_obj);const onerror=GodotRuntime.get_func(p_on_error).bind(null,p_obj);ref.createOffer().then(function(session){GodotRTCPeerConnection.onsession(p_id,onsession,session)}).catch(function(error){GodotRTCPeerConnection.onerror(p_id,onerror,error)})}function _godot_js_rtc_pc_remote_description_set(p_id,p_type,p_sdp,p_obj,p_session_created,p_on_error){const ref=IDHandler.get(p_id);if(!ref){return}const type=GodotRuntime.parseString(p_type);const sdp=GodotRuntime.parseString(p_sdp);const onerror=GodotRuntime.get_func(p_on_error).bind(null,p_obj);const onsession=GodotRuntime.get_func(p_session_created).bind(null,p_obj);ref.setRemoteDescription({sdp:sdp,type:type}).then(function(){if(type!=="offer"){return Promise.resolve()}return ref.createAnswer().then(function(session){GodotRTCPeerConnection.onsession(p_id,onsession,session)})}).catch(function(error){GodotRTCPeerConnection.onerror(p_id,onerror,error)})}function _godot_js_set_ime_active(p_active){GodotIME.ime_active(p_active)}function _godot_js_set_ime_cb(p_ime_cb,p_key_cb,code,key){const ime_cb=GodotRuntime.get_func(p_ime_cb);const key_cb=GodotRuntime.get_func(p_key_cb);GodotIME.init(ime_cb,key_cb,code,key)}function _godot_js_set_ime_position(p_x,p_y){GodotIME.ime_position(p_x,p_y)}function _godot_js_tts_get_voices(p_callback){const func=GodotRuntime.get_func(p_callback);try{const arr=[];const voices=window.speechSynthesis.getVoices();for(let i=0;i<voices.length;i++){arr.push(`${voices[i].lang};${voices[i].name}`)}const c_ptr=GodotRuntime.allocStringArray(arr);func(arr.length,c_ptr);GodotRuntime.freeStringArray(c_ptr,arr.length)}catch(e){}}function _godot_js_tts_is_paused(){return window.speechSynthesis.paused}function _godot_js_tts_is_speaking(){return window.speechSynthesis.speaking}function _godot_js_tts_pause(){window.speechSynthesis.pause()}function _godot_js_tts_resume(){window.speechSynthesis.resume()}function _godot_js_tts_speak(p_text,p_voice,p_volume,p_pitch,p_rate,p_utterance_id,p_callback){const func=GodotRuntime.get_func(p_callback);function listener_end(evt){evt.currentTarget.cb(1,evt.currentTarget.id,0)}function listener_start(evt){evt.currentTarget.cb(0,evt.currentTarget.id,0)}function listener_error(evt){evt.currentTarget.cb(2,evt.currentTarget.id,0)}function listener_bound(evt){evt.currentTarget.cb(3,evt.currentTarget.id,evt.charIndex)}const utterance=new SpeechSynthesisUtterance(GodotRuntime.parseString(p_text));utterance.rate=p_rate;utterance.pitch=p_pitch;utterance.volume=p_volume/100;utterance.addEventListener("end",listener_end);utterance.addEventListener("start",listener_start);utterance.addEventListener("error",listener_error);utterance.addEventListener("boundary",listener_bound);utterance.id=p_utterance_id;utterance.cb=func;const voice=GodotRuntime.parseString(p_voice);const voices=window.speechSynthesis.getVoices();for(let i=0;i<voices.length;i++){if(voices[i].name===voice){utterance.voice=voices[i];break}}window.speechSynthesis.resume();window.speechSynthesis.speak(utterance)}function _godot_js_tts_stop(){window.speechSynthesis.cancel();window.speechSynthesis.resume()}var GodotWebMidi={abortControllers:[],isListening:false};function _godot_js_webmidi_close_midi_inputs(){for(const abortController of GodotWebMidi.abortControllers){abortController.abort()}GodotWebMidi.abortControllers=[];GodotWebMidi.isListening=false}function _godot_js_webmidi_open_midi_inputs(pSetInputNamesCb,pOnMidiMessageCb,pDataBuffer,dataBufferLen){if(GodotWebMidi.is_listening){return 0}if(!navigator.requestMIDIAccess){return 2}const setInputNamesCb=GodotRuntime.get_func(pSetInputNamesCb);const onMidiMessageCb=GodotRuntime.get_func(pOnMidiMessageCb);GodotWebMidi.isListening=true;navigator.requestMIDIAccess().then(midi=>{const inputs=[...midi.inputs.values()];const inputNames=inputs.map(input=>input.name);const c_ptr=GodotRuntime.allocStringArray(inputNames);setInputNamesCb(inputNames.length,c_ptr);GodotRuntime.freeStringArray(c_ptr,inputNames.length);inputs.forEach((input,i)=>{const abortController=new AbortController;GodotWebMidi.abortControllers.push(abortController);input.addEventListener("midimessage",event=>{const status=event.data[0];const data=event.data.slice(1);const size=data.length;if(size>dataBufferLen){throw new Error(`data too big ${size} > ${dataBufferLen}`)}HEAPU8.set(data,pDataBuffer);onMidiMessageCb(i,status,pDataBuffer,data.length)},{signal:abortController.signal})})});return 0}var GodotWebSocket={_onopen:function(p_id,callback,event){const ref=IDHandler.get(p_id);if(!ref){return}const c_str=GodotRuntime.allocString(ref.protocol);callback(c_str);GodotRuntime.free(c_str)},_onmessage:function(p_id,callback,event){const ref=IDHandler.get(p_id);if(!ref){return}let buffer;let is_string=0;if(event.data instanceof ArrayBuffer){buffer=new Uint8Array(event.data)}else if(event.data instanceof Blob){GodotRuntime.error("Blob type not supported");return}else if(typeof event.data==="string"){is_string=1;const enc=new TextEncoder("utf-8");buffer=new Uint8Array(enc.encode(event.data))}else{GodotRuntime.error("Unknown message type");return}const len=buffer.length*buffer.BYTES_PER_ELEMENT;const out=GodotRuntime.malloc(len);HEAPU8.set(buffer,out);callback(out,len,is_string);GodotRuntime.free(out)},_onerror:function(p_id,callback,event){const ref=IDHandler.get(p_id);if(!ref){return}callback()},_onclose:function(p_id,callback,event){const ref=IDHandler.get(p_id);if(!ref){return}const c_str=GodotRuntime.allocString(event.reason);callback(event.code,c_str,event.wasClean?1:0);GodotRuntime.free(c_str)},send:function(p_id,p_data){const ref=IDHandler.get(p_id);if(!ref||ref.readyState!==ref.OPEN){return 1}ref.send(p_data);return 0},bufferedAmount:function(p_id){const ref=IDHandler.get(p_id);if(!ref){return 0}return ref.bufferedAmount},create:function(socket,p_on_open,p_on_message,p_on_error,p_on_close){const id=IDHandler.add(socket);socket.onopen=GodotWebSocket._onopen.bind(null,id,p_on_open);socket.onmessage=GodotWebSocket._onmessage.bind(null,id,p_on_message);socket.onerror=GodotWebSocket._onerror.bind(null,id,p_on_error);socket.onclose=GodotWebSocket._onclose.bind(null,id,p_on_close);return id},close:function(p_id,p_code,p_reason){const ref=IDHandler.get(p_id);if(ref&&ref.readyState<ref.CLOSING){const code=p_code;const reason=p_reason;ref.close(code,reason)}},destroy:function(p_id){const ref=IDHandler.get(p_id);if(!ref){return}GodotWebSocket.close(p_id,3001,"destroyed");IDHandler.remove(p_id);ref.onopen=null;ref.onmessage=null;ref.onerror=null;ref.onclose=null}};function _godot_js_websocket_buffered_amount(p_id){return GodotWebSocket.bufferedAmount(p_id)}function _godot_js_websocket_close(p_id,p_code,p_reason){const code=p_code;const reason=GodotRuntime.parseString(p_reason);GodotWebSocket.close(p_id,code,reason)}function _godot_js_websocket_create(p_ref,p_url,p_proto,p_on_open,p_on_message,p_on_error,p_on_close){const on_open=GodotRuntime.get_func(p_on_open).bind(null,p_ref);const on_message=GodotRuntime.get_func(p_on_message).bind(null,p_ref);const on_error=GodotRuntime.get_func(p_on_error).bind(null,p_ref);const on_close=GodotRuntime.get_func(p_on_close).bind(null,p_ref);const url=GodotRuntime.parseString(p_url);const protos=GodotRuntime.parseString(p_proto);let socket=null;try{if(protos){socket=new WebSocket(url,protos.split(","))}else{socket=new WebSocket(url)}}catch(e){return 0}socket.binaryType="arraybuffer";return GodotWebSocket.create(socket,on_open,on_message,on_error,on_close)}function _godot_js_websocket_destroy(p_id){GodotWebSocket.destroy(p_id)}function _godot_js_websocket_send(p_id,p_buf,p_buf_len,p_raw){const bytes_array=new Uint8Array(p_buf_len);let i=0;for(i=0;i<p_buf_len;i++){bytes_array[i]=GodotRuntime.getHeapValue(p_buf+i,"i8")}let out=bytes_array.buffer;if(!p_raw){out=new TextDecoder("utf-8").decode(bytes_array)}return GodotWebSocket.send(p_id,out)}var GodotJSWrapper={proxies:null,cb_ret:null,MyProxy:function(val){const id=IDHandler.add(this);GodotJSWrapper.proxies.set(val,id);let refs=1;this.ref=function(){refs++};this.unref=function(){refs--;if(refs===0){IDHandler.remove(id);GodotJSWrapper.proxies.delete(val)}};this.get_val=function(){return val};this.get_id=function(){return id}},get_proxied:function(val){const id=GodotJSWrapper.proxies.get(val);if(id===undefined){const proxy=new GodotJSWrapper.MyProxy(val);return proxy.get_id()}IDHandler.get(id).ref();return id},get_proxied_value:function(id){const proxy=IDHandler.get(id);if(proxy===undefined){return undefined}return proxy.get_val()},variant2js:function(type,val){switch(type){case 0:return null;case 1:return Boolean(GodotRuntime.getHeapValue(val,"i64"));case 2:{const heap_value=GodotRuntime.getHeapValue(val,"i64");return heap_value>=Number.MIN_SAFE_INTEGER&&heap_value<=Number.MAX_SAFE_INTEGER?Number(heap_value):heap_value}case 3:return Number(GodotRuntime.getHeapValue(val,"double"));case 4:return GodotRuntime.parseString(GodotRuntime.getHeapValue(val,"*"));case 24:return GodotJSWrapper.get_proxied_value(GodotRuntime.getHeapValue(val,"i64"));default:return undefined}},js2variant:function(p_val,p_exchange){if(p_val===undefined||p_val===null){return 0}const type=typeof p_val;if(type==="boolean"){GodotRuntime.setHeapValue(p_exchange,p_val,"i64");return 1}else if(type==="number"){if(Number.isInteger(p_val)){GodotRuntime.setHeapValue(p_exchange,p_val,"i64");return 2}GodotRuntime.setHeapValue(p_exchange,p_val,"double");return 3}else if(type==="bigint"){GodotRuntime.setHeapValue(p_exchange,p_val,"i64");return 2}else if(type==="string"){const c_str=GodotRuntime.allocString(p_val);GodotRuntime.setHeapValue(p_exchange,c_str,"*");return 4}const id=GodotJSWrapper.get_proxied(p_val);GodotRuntime.setHeapValue(p_exchange,id,"i64");return 24},isBuffer:function(obj){return obj instanceof ArrayBuffer||ArrayBuffer.isView(obj)}};function _godot_js_wrapper_create_cb(p_ref,p_func){const func=GodotRuntime.get_func(p_func);let id=0;const cb=function(){if(!GodotJSWrapper.get_proxied_value(id)){return undefined}GodotJSWrapper.cb_ret=null;const args=Array.from(arguments);const argsProxy=new GodotJSWrapper.MyProxy(args);func(p_ref,argsProxy.get_id(),args.length);argsProxy.unref();const ret=GodotJSWrapper.cb_ret;GodotJSWrapper.cb_ret=null;return ret};id=GodotJSWrapper.get_proxied(cb);return id}function _godot_js_wrapper_create_object(p_object,p_args,p_argc,p_convert_callback,p_exchange,p_lock,p_free_lock_callback){const name=GodotRuntime.parseString(p_object);if(typeof window[name]==="undefined"){return-1}const convert=GodotRuntime.get_func(p_convert_callback);const freeLock=GodotRuntime.get_func(p_free_lock_callback);const args=new Array(p_argc);for(let i=0;i<p_argc;i++){const type=convert(p_args,i,p_exchange,p_lock);const lock=GodotRuntime.getHeapValue(p_lock,"*");args[i]=GodotJSWrapper.variant2js(type,p_exchange);if(lock){freeLock(p_lock,type)}}try{const res=new window[name](...args);return GodotJSWrapper.js2variant(res,p_exchange)}catch(e){GodotRuntime.error(`Error calling constructor ${name} with args:`,args,"error:",e);return-1}}function _godot_js_wrapper_interface_get(p_name){const name=GodotRuntime.parseString(p_name);if(typeof window[name]!=="undefined"){return GodotJSWrapper.get_proxied(window[name])}return 0}function _godot_js_wrapper_object_call(p_id,p_method,p_args,p_argc,p_convert_callback,p_exchange,p_lock,p_free_lock_callback){const obj=GodotJSWrapper.get_proxied_value(p_id);if(obj===undefined){return-1}const method=GodotRuntime.parseString(p_method);const convert=GodotRuntime.get_func(p_convert_callback);const freeLock=GodotRuntime.get_func(p_free_lock_callback);const args=new Array(p_argc);for(let i=0;i<p_argc;i++){const type=convert(p_args,i,p_exchange,p_lock);const lock=GodotRuntime.getHeapValue(p_lock,"*");args[i]=GodotJSWrapper.variant2js(type,p_exchange);if(lock){freeLock(p_lock,type)}}try{const res=obj[method](...args);return GodotJSWrapper.js2variant(res,p_exchange)}catch(e){GodotRuntime.error(`Error calling method ${method} on:`,obj,"error:",e);return-1}}function _godot_js_wrapper_object_get(p_id,p_exchange,p_prop){const obj=GodotJSWrapper.get_proxied_value(p_id);if(obj===undefined){return 0}if(p_prop){const prop=GodotRuntime.parseString(p_prop);try{return GodotJSWrapper.js2variant(obj[prop],p_exchange)}catch(e){GodotRuntime.error(`Error getting variable ${prop} on object`,obj);return 0}}return GodotJSWrapper.js2variant(obj,p_exchange)}function _godot_js_wrapper_object_getvar(p_id,p_type,p_exchange){const obj=GodotJSWrapper.get_proxied_value(p_id);if(obj===undefined){return-1}const prop=GodotJSWrapper.variant2js(p_type,p_exchange);if(prop===undefined||prop===null){return-1}try{return GodotJSWrapper.js2variant(obj[prop],p_exchange)}catch(e){GodotRuntime.error(`Error getting variable ${prop} on object`,obj,e);return-1}}function _godot_js_wrapper_object_is_buffer(p_id){const obj=GodotJSWrapper.get_proxied_value(p_id);return GodotJSWrapper.isBuffer(obj)?1:0}function _godot_js_wrapper_object_set(p_id,p_name,p_type,p_exchange){const obj=GodotJSWrapper.get_proxied_value(p_id);if(obj===undefined){return}const name=GodotRuntime.parseString(p_name);try{obj[name]=GodotJSWrapper.variant2js(p_type,p_exchange)}catch(e){GodotRuntime.error(`Error setting variable ${name} on object`,obj)}}function _godot_js_wrapper_object_set_cb_ret(p_val_type,p_val_ex){GodotJSWrapper.cb_ret=GodotJSWrapper.variant2js(p_val_type,p_val_ex)}function _godot_js_wrapper_object_setvar(p_id,p_key_type,p_key_ex,p_val_type,p_val_ex){const obj=GodotJSWrapper.get_proxied_value(p_id);if(obj===undefined){return-1}const key=GodotJSWrapper.variant2js(p_key_type,p_key_ex);try{obj[key]=GodotJSWrapper.variant2js(p_val_type,p_val_ex);return 0}catch(e){GodotRuntime.error(`Error setting variable ${key} on object`,obj);return-1}}function _godot_js_wrapper_object_transfer_buffer(p_id,p_byte_arr,p_byte_arr_write,p_callback){let obj=GodotJSWrapper.get_proxied_value(p_id);if(!GodotJSWrapper.isBuffer(obj)){return}if(ArrayBuffer.isView(obj)&&!(obj instanceof Uint8Array)){obj=new Uint8Array(obj.buffer)}else if(obj instanceof ArrayBuffer){obj=new Uint8Array(obj)}const resizePackedByteArrayAndOpenWrite=GodotRuntime.get_func(p_callback);const bytesPtr=resizePackedByteArrayAndOpenWrite(p_byte_arr,p_byte_arr_write,obj.length);HEAPU8.set(obj,bytesPtr)}function _godot_js_wrapper_object_unref(p_id){const proxy=IDHandler.get(p_id);if(proxy!==undefined){proxy.unref()}}function _godot_webgl2_glFramebufferTextureMultisampleMultiviewOVR(target,attachment,texture,level,samples,base_view_index,num_views){const context=GL.currentContext;if(typeof context.oculusMultiviewExt==="undefined"){const ext=context.GLctx.getExtension("OCULUS_multiview");if(!ext){GodotRuntime.error("Trying to call glFramebufferTextureMultisampleMultiviewOVR() without the OCULUS_multiview extension");return}context.oculusMultiviewExt=ext}const ext=context.oculusMultiviewExt;ext.framebufferTextureMultisampleMultiviewOVR(target,attachment,GL.textures[texture],level,samples,base_view_index,num_views)}function _godot_webgl2_glFramebufferTextureMultiviewOVR(target,attachment,texture,level,base_view_index,num_views){const context=GL.currentContext;if(typeof context.multiviewExt==="undefined"){const ext=context.GLctx.getExtension("OVR_multiview2");if(!ext){GodotRuntime.error("Trying to call glFramebufferTextureMultiviewOVR() without the OVR_multiview2 extension");return}context.multiviewExt=ext}const ext=context.multiviewExt;ext.framebufferTextureMultiviewOVR(target,attachment,GL.textures[texture],level,base_view_index,num_views)}function _godot_webgl2_glGetBufferSubData(target,offset,size,data){const gl_context_handle=_emscripten_webgl_get_current_context();const gl=GL.getContext(gl_context_handle);if(gl){gl.GLctx["getBufferSubData"](target,offset,HEAPU8,data,size)}}var GodotWebXR={gl:null,session:null,gl_binding:null,layer:null,space:null,frame:null,pose:null,view_count:1,input_sources:[,,,,,,,,,,,,,,,],touches:[,,,,],onsimpleevent:null,orig_requestAnimationFrame:null,requestAnimationFrame:callback=>{if(GodotWebXR.session&&GodotWebXR.space){const onFrame=function(time,frame){GodotWebXR.frame=frame;GodotWebXR.pose=frame.getViewerPose(GodotWebXR.space);callback(time);GodotWebXR.frame=null;GodotWebXR.pose=null};GodotWebXR.session.requestAnimationFrame(onFrame)}else{GodotWebXR.orig_requestAnimationFrame(callback)}},monkeyPatchRequestAnimationFrame:enable=>{if(GodotWebXR.orig_requestAnimationFrame===null){GodotWebXR.orig_requestAnimationFrame=Browser.requestAnimationFrame}Browser.requestAnimationFrame=enable?GodotWebXR.requestAnimationFrame:GodotWebXR.orig_requestAnimationFrame},pauseResumeMainLoop:()=>{Browser.mainLoop.pause();runtimeKeepalivePush();window.setTimeout(function(){runtimeKeepalivePop();Browser.mainLoop.resume()},0)},getLayer:()=>{const new_view_count=GodotWebXR.pose?GodotWebXR.pose.views.length:1;let layer=GodotWebXR.layer;if(layer&&GodotWebXR.view_count===new_view_count){return layer}if(!GodotWebXR.session||!GodotWebXR.gl_binding){return null}const gl=GodotWebXR.gl;layer=GodotWebXR.gl_binding.createProjectionLayer({textureType:new_view_count>1?"texture-array":"texture",colorFormat:gl.RGBA8,depthFormat:gl.DEPTH_COMPONENT24});GodotWebXR.session.updateRenderState({layers:[layer]});GodotWebXR.layer=layer;GodotWebXR.view_count=new_view_count;return layer},getSubImage:()=>{if(!GodotWebXR.pose){return null}const layer=GodotWebXR.getLayer();if(layer===null){return null}return GodotWebXR.gl_binding.getViewSubImage(layer,GodotWebXR.pose.views[0])},getTextureId:texture=>{if(texture.name!==undefined){return texture.name}const id=GL.getNewId(GL.textures);texture.name=id;GL.textures[id]=texture;return id},addInputSource:input_source=>{let name=-1;if(input_source.targetRayMode==="tracked-pointer"&&input_source.handedness==="left"){name=0}else if(input_source.targetRayMode==="tracked-pointer"&&input_source.handedness==="right"){name=1}else{for(let i=2;i<16;i++){if(!GodotWebXR.input_sources[i]){name=i;break}}}if(name>=0){GodotWebXR.input_sources[name]=input_source;input_source.name=name;if(input_source.targetRayMode==="screen"){let touch_index=-1;for(let i=0;i<5;i++){if(!GodotWebXR.touches[i]){touch_index=i;break}}if(touch_index>=0){GodotWebXR.touches[touch_index]=input_source;input_source.touch_index=touch_index}}}return name},removeInputSource:input_source=>{if(input_source.name!==undefined){const name=input_source.name;if(name>=0&&name<16){GodotWebXR.input_sources[name]=null}if(input_source.touch_index!==undefined){const touch_index=input_source.touch_index;if(touch_index>=0&&touch_index<5){GodotWebXR.touches[touch_index]=null}}return name}return-1},getInputSourceId:input_source=>{if(input_source!==undefined){return input_source.name}return-1},getTouchIndex:input_source=>{if(input_source.touch_index!==undefined){return input_source.touch_index}return-1}};function _godot_webxr_get_bounds_geometry(r_points){if(!GodotWebXR.space||!GodotWebXR.space.boundsGeometry){return 0}const point_count=GodotWebXR.space.boundsGeometry.length;if(point_count===0){return 0}const buf=GodotRuntime.malloc(point_count*3*4);for(let i=0;i<point_count;i++){const point=GodotWebXR.space.boundsGeometry[i];GodotRuntime.setHeapValue(buf+(i*3+0)*4,point.x,"float");GodotRuntime.setHeapValue(buf+(i*3+1)*4,point.y,"float");GodotRuntime.setHeapValue(buf+(i*3+2)*4,point.z,"float")}GodotRuntime.setHeapValue(r_points,buf,"i32");return point_count}function _godot_webxr_get_color_texture(){const subimage=GodotWebXR.getSubImage();if(subimage===null){return 0}return GodotWebXR.getTextureId(subimage.colorTexture)}function _godot_webxr_get_depth_texture(){const subimage=GodotWebXR.getSubImage();if(subimage===null){return 0}if(!subimage.depthStencilTexture){return 0}return GodotWebXR.getTextureId(subimage.depthStencilTexture)}function _godot_webxr_get_frame_rate(){if(!GodotWebXR.session||GodotWebXR.session.frameRate===undefined){return 0}return GodotWebXR.session.frameRate}function _godot_webxr_get_projection_for_view(p_view,r_transform){if(!GodotWebXR.session||!GodotWebXR.pose){return false}const matrix=GodotWebXR.pose.views[p_view].projectionMatrix;for(let i=0;i<16;i++){GodotRuntime.setHeapValue(r_transform+i*4,matrix[i],"float")}return true}function _godot_webxr_get_render_target_size(r_size){const subimage=GodotWebXR.getSubImage();if(subimage===null){return false}GodotRuntime.setHeapValue(r_size+0,subimage.viewport.width,"i32");GodotRuntime.setHeapValue(r_size+4,subimage.viewport.height,"i32");return true}function _godot_webxr_get_supported_frame_rates(r_frame_rates){if(!GodotWebXR.session||GodotWebXR.session.supportedFrameRates===undefined){return 0}const frame_rate_count=GodotWebXR.session.supportedFrameRates.length;if(frame_rate_count===0){return 0}const buf=GodotRuntime.malloc(frame_rate_count*4);for(let i=0;i<frame_rate_count;i++){GodotRuntime.setHeapValue(buf+i*4,GodotWebXR.session.supportedFrameRates[i],"float")}GodotRuntime.setHeapValue(r_frame_rates,buf,"i32");return frame_rate_count}function _godot_webxr_get_transform_for_view(p_view,r_transform){if(!GodotWebXR.session||!GodotWebXR.pose){return false}const views=GodotWebXR.pose.views;let matrix;if(p_view>=0){matrix=views[p_view].transform.matrix}else{matrix=GodotWebXR.pose.transform.matrix}for(let i=0;i<16;i++){GodotRuntime.setHeapValue(r_transform+i*4,matrix[i],"float")}return true}function _godot_webxr_get_velocity_texture(){const subimage=GodotWebXR.getSubImage();if(subimage===null){return 0}if(!subimage.motionVectorTexture){return 0}return GodotWebXR.getTextureId(subimage.motionVectorTexture)}function _godot_webxr_get_view_count(){if(!GodotWebXR.session||!GodotWebXR.pose){return 1}const view_count=GodotWebXR.pose.views.length;return view_count>0?view_count:1}function _godot_webxr_get_visibility_state(){if(!GodotWebXR.session||!GodotWebXR.session.visibilityState){return 0}return GodotRuntime.allocString(GodotWebXR.session.visibilityState)}var _godot_webxr_initialize=function(p_session_mode,p_required_features,p_optional_features,p_requested_reference_spaces,p_on_session_started,p_on_session_ended,p_on_session_failed,p_on_input_event,p_on_simple_event){GodotWebXR.monkeyPatchRequestAnimationFrame(true);const session_mode=GodotRuntime.parseString(p_session_mode);const required_features=GodotRuntime.parseString(p_required_features).split(",").map(s=>s.trim()).filter(s=>s!=="");const optional_features=GodotRuntime.parseString(p_optional_features).split(",").map(s=>s.trim()).filter(s=>s!=="");const requested_reference_space_types=GodotRuntime.parseString(p_requested_reference_spaces).split(",").map(s=>s.trim());const onstarted=GodotRuntime.get_func(p_on_session_started);const onended=GodotRuntime.get_func(p_on_session_ended);const onfailed=GodotRuntime.get_func(p_on_session_failed);const oninputevent=GodotRuntime.get_func(p_on_input_event);const onsimpleevent=GodotRuntime.get_func(p_on_simple_event);const session_init={};if(required_features.length>0){session_init["requiredFeatures"]=required_features}if(optional_features.length>0){session_init["optionalFeatures"]=optional_features}navigator.xr.requestSession(session_mode,session_init).then(function(session){GodotWebXR.session=session;session.addEventListener("end",function(evt){onended()});session.addEventListener("inputsourceschange",function(evt){evt.added.forEach(GodotWebXR.addInputSource);evt.removed.forEach(GodotWebXR.removeInputSource)});["selectstart","selectend","squeezestart","squeezeend"].forEach((input_event,index)=>{session.addEventListener(input_event,function(evt){GodotWebXR.frame=evt.frame;oninputevent(index,GodotWebXR.getInputSourceId(evt.inputSource));GodotWebXR.frame=null})});session.addEventListener("visibilitychange",function(evt){const c_str=GodotRuntime.allocString("visibility_state_changed");onsimpleevent(c_str);GodotRuntime.free(c_str)});GodotWebXR.onsimpleevent=onsimpleevent;const gl_context_handle=_emscripten_webgl_get_current_context();const gl=GL.getContext(gl_context_handle).GLctx;GodotWebXR.gl=gl;gl.makeXRCompatible().then(function(){GodotWebXR.gl_binding=new XRWebGLBinding(session,gl);GodotWebXR.getLayer();function onReferenceSpaceSuccess(reference_space,reference_space_type){GodotWebXR.space=reference_space;reference_space.onreset=function(evt){const c_str=GodotRuntime.allocString("reference_space_reset");onsimpleevent(c_str);GodotRuntime.free(c_str)};GodotWebXR.pauseResumeMainLoop();window.setTimeout(function(){const reference_space_c_str=GodotRuntime.allocString(reference_space_type);const enabled_features="enabledFeatures"in session?Array.from(session.enabledFeatures):[];const enabled_features_c_str=GodotRuntime.allocString(enabled_features.join(","));const environment_blend_mode="environmentBlendMode"in session?session.environmentBlendMode:"";const environment_blend_mode_c_str=GodotRuntime.allocString(environment_blend_mode);onstarted(reference_space_c_str,enabled_features_c_str,environment_blend_mode_c_str);GodotRuntime.free(reference_space_c_str);GodotRuntime.free(enabled_features_c_str);GodotRuntime.free(environment_blend_mode_c_str)},0)}function requestReferenceSpace(){const reference_space_type=requested_reference_space_types.shift();session.requestReferenceSpace(reference_space_type).then(refSpace=>{onReferenceSpaceSuccess(refSpace,reference_space_type)}).catch(()=>{if(requested_reference_space_types.length===0){const c_str=GodotRuntime.allocString("Unable to get any of the requested reference space types");onfailed(c_str);GodotRuntime.free(c_str)}else{requestReferenceSpace()}})}requestReferenceSpace()}).catch(function(error){const c_str=GodotRuntime.allocString(`Unable to make WebGL context compatible with WebXR: ${error}`);onfailed(c_str);GodotRuntime.free(c_str)})}).catch(function(error){const c_str=GodotRuntime.allocString(`Unable to start session: ${error}`);onfailed(c_str);GodotRuntime.free(c_str)})};function _godot_webxr_is_session_supported(p_session_mode,p_callback){const session_mode=GodotRuntime.parseString(p_session_mode);const cb=GodotRuntime.get_func(p_callback);if(navigator.xr){navigator.xr.isSessionSupported(session_mode).then(function(supported){const c_str=GodotRuntime.allocString(session_mode);cb(c_str,supported?1:0);GodotRuntime.free(c_str)})}else{const c_str=GodotRuntime.allocString(session_mode);cb(c_str,0);GodotRuntime.free(c_str)}}function _godot_webxr_is_supported(){return!!navigator.xr}var _godot_webxr_uninitialize=function(){if(GodotWebXR.session){GodotWebXR.session.end().catch(e=>{})}GodotWebXR.session=null;GodotWebXR.gl_binding=null;GodotWebXR.layer=null;GodotWebXR.space=null;GodotWebXR.frame=null;GodotWebXR.pose=null;GodotWebXR.view_count=1;GodotWebXR.input_sources=new Array(16);GodotWebXR.touches=new Array(5);GodotWebXR.onsimpleevent=null;GodotWebXR.monkeyPatchRequestAnimationFrame(false);GodotWebXR.pauseResumeMainLoop()};function _godot_webxr_update_input_source(p_input_source_id,r_target_pose,r_target_ray_mode,r_touch_index,r_has_grip_pose,r_grip_pose,r_has_standard_mapping,r_button_count,r_buttons,r_axes_count,r_axes,r_has_hand_data,r_hand_joints,r_hand_radii){if(!GodotWebXR.session||!GodotWebXR.frame){return 0}if(p_input_source_id<0||p_input_source_id>=GodotWebXR.input_sources.length||!GodotWebXR.input_sources[p_input_source_id]){return false}const input_source=GodotWebXR.input_sources[p_input_source_id];const frame=GodotWebXR.frame;const space=GodotWebXR.space;const target_pose=frame.getPose(input_source.targetRaySpace,space);if(!target_pose){return false}const target_pose_matrix=target_pose.transform.matrix;for(let i=0;i<16;i++){GodotRuntime.setHeapValue(r_target_pose+i*4,target_pose_matrix[i],"float")}let target_ray_mode=0;switch(input_source.targetRayMode){case"gaze":target_ray_mode=1;break;case"tracked-pointer":target_ray_mode=2;break;case"screen":target_ray_mode=3;break;default:}GodotRuntime.setHeapValue(r_target_ray_mode,target_ray_mode,"i32");GodotRuntime.setHeapValue(r_touch_index,GodotWebXR.getTouchIndex(input_source),"i32");let has_grip_pose=false;if(input_source.gripSpace){const grip_pose=frame.getPose(input_source.gripSpace,space);if(grip_pose){const grip_pose_matrix=grip_pose.transform.matrix;for(let i=0;i<16;i++){GodotRuntime.setHeapValue(r_grip_pose+i*4,grip_pose_matrix[i],"float")}has_grip_pose=true}}GodotRuntime.setHeapValue(r_has_grip_pose,has_grip_pose?1:0,"i32");let has_standard_mapping=false;let button_count=0;let axes_count=0;if(input_source.gamepad){if(input_source.gamepad.mapping==="xr-standard"){has_standard_mapping=true}button_count=Math.min(input_source.gamepad.buttons.length,10);for(let i=0;i<button_count;i++){GodotRuntime.setHeapValue(r_buttons+i*4,input_source.gamepad.buttons[i].value,"float")}axes_count=Math.min(input_source.gamepad.axes.length,10);for(let i=0;i<axes_count;i++){GodotRuntime.setHeapValue(r_axes+i*4,input_source.gamepad.axes[i],"float")}}GodotRuntime.setHeapValue(r_has_standard_mapping,has_standard_mapping?1:0,"i32");GodotRuntime.setHeapValue(r_button_count,button_count,"i32");GodotRuntime.setHeapValue(r_axes_count,axes_count,"i32");let has_hand_data=false;if(input_source.hand&&r_hand_joints!==0&&r_hand_radii!==0){const hand_joint_array=new Float32Array(25*16);const hand_radii_array=new Float32Array(25);if(frame.fillPoses(input_source.hand.values(),space,hand_joint_array)&&frame.fillJointRadii(input_source.hand.values(),hand_radii_array)){GodotRuntime.heapCopy(HEAPF32,hand_joint_array,r_hand_joints);GodotRuntime.heapCopy(HEAPF32,hand_radii_array,r_hand_radii);has_hand_data=true}}GodotRuntime.setHeapValue(r_has_hand_data,has_hand_data?1:0,"i32");return true}function _godot_webxr_update_target_frame_rate(p_frame_rate){if(!GodotWebXR.session||GodotWebXR.session.updateTargetFrameRate===undefined){return}GodotWebXR.session.updateTargetFrameRate(p_frame_rate).then(()=>{const c_str=GodotRuntime.allocString("display_refresh_rate_changed");GodotWebXR.onsimpleevent(c_str);GodotRuntime.free(c_str)})}var stackAlloc=sz=>__emscripten_stack_alloc(sz);var stringToUTF8OnStack=str=>{var size=lengthBytesUTF8(str)+1;var ret=stackAlloc(size);stringToUTF8(str,ret,size);return ret};var getCFunc=ident=>{var func=Module["_"+ident];assert(func,"Cannot call unknown function "+ident+", make sure it is exported");return func};var writeArrayToMemory=(array,buffer)=>{assert(array.length>=0,"writeArrayToMemory array must have a length (should be an array or typed array)");HEAP8.set(array,buffer)};var stackSave=()=>_emscripten_stack_get_current();var stackRestore=val=>__emscripten_stack_restore(val);var ccall=(ident,returnType,argTypes,args,opts)=>{var toC={string:str=>{var ret=0;if(str!==null&&str!==undefined&&str!==0){ret=stringToUTF8OnStack(str)}return ret},array:arr=>{var ret=stackAlloc(arr.length);writeArrayToMemory(arr,ret);return ret}};function convertReturnValue(ret){if(returnType==="string"){return UTF8ToString(ret)}if(returnType==="boolean")return Boolean(ret);return ret}var func=getCFunc(ident);var cArgs=[];var stack=0;assert(returnType!=="array",'Return type should not be "array".');if(args){for(var i=0;i<args.length;i++){var converter=toC[argTypes[i]];if(converter){if(stack===0)stack=stackSave();cArgs[i]=converter(args[i])}else{cArgs[i]=args[i]}}}var ret=func(...cArgs);function onDone(ret){if(stack!==0)stackRestore(stack);return convertReturnValue(ret)}ret=onDone(ret);return ret};var cwrap=(ident,returnType,argTypes,opts)=>(...args)=>ccall(ident,returnType,argTypes,args,opts);FS.createPreloadedFile=FS_createPreloadedFile;FS.staticInit();Module["requestFullscreen"]=Browser.requestFullscreen;Module["requestFullScreen"]=Browser.requestFullScreen;Module["requestAnimationFrame"]=Browser.requestAnimationFrame;Module["setCanvasSize"]=Browser.setCanvasSize;Module["pauseMainLoop"]=Browser.mainLoop.pause;Module["resumeMainLoop"]=Browser.mainLoop.resume;Module["getUserMedia"]=Browser.getUserMedia;Module["createContext"]=Browser.createContext;var preloadedImages={};var preloadedAudios={};var GLctx;for(var i=0;i<32;++i)tempFixedLengthArray.push(new Array(i));var miniTempWebGLIntBuffersStorage=new Int32Array(288);for(var i=0;i<=288;++i){miniTempWebGLIntBuffers[i]=miniTempWebGLIntBuffersStorage.subarray(0,i)}var miniTempWebGLFloatBuffersStorage=new Float32Array(288);for(var i=0;i<=288;++i){miniTempWebGLFloatBuffers[i]=miniTempWebGLFloatBuffersStorage.subarray(0,i)}Module["request_quit"]=function(){GodotOS.request_quit()};Module["onExit"]=GodotOS.cleanup;GodotOS._fs_sync_promise=Promise.resolve();Module["initConfig"]=GodotConfig.init_config;Module["initFS"]=GodotFS.init;Module["copyToFS"]=GodotFS.copy_to_fs;GodotOS.atexit(function(resolve,reject){GodotDisplayCursor.clear();resolve()});GodotOS.atexit(function(resolve,reject){GodotEventListeners.clear();resolve()});GodotOS.atexit(function(resolve,reject){GodotDisplayVK.clear();resolve()});GodotOS.atexit(function(resolve,reject){GodotIME.clear();resolve()});GodotJSWrapper.proxies=new Map;function checkIncomingModuleAPI(){ignoredModuleProp("fetchSettings")}var wasmImports={__assert_fail:___assert_fail,__call_sighandler:___call_sighandler,__syscall_chdir:___syscall_chdir,__syscall_chmod:___syscall_chmod,__syscall_faccessat:___syscall_faccessat,__syscall_fchmod:___syscall_fchmod,__syscall_fcntl64:___syscall_fcntl64,__syscall_fstat64:___syscall_fstat64,__syscall_ftruncate64:___syscall_ftruncate64,__syscall_getcwd:___syscall_getcwd,__syscall_getdents64:___syscall_getdents64,__syscall_ioctl:___syscall_ioctl,__syscall_lstat64:___syscall_lstat64,__syscall_mkdirat:___syscall_mkdirat,__syscall_mknodat:___syscall_mknodat,__syscall_newfstatat:___syscall_newfstatat,__syscall_openat:___syscall_openat,__syscall_readlinkat:___syscall_readlinkat,__syscall_renameat:___syscall_renameat,__syscall_rmdir:___syscall_rmdir,__syscall_stat64:___syscall_stat64,__syscall_statfs64:___syscall_statfs64,__syscall_symlink:___syscall_symlink,__syscall_unlinkat:___syscall_unlinkat,_abort_js:__abort_js,_emscripten_get_now_is_monotonic:__emscripten_get_now_is_monotonic,_emscripten_runtime_keepalive_clear:__emscripten_runtime_keepalive_clear,_gmtime_js:__gmtime_js,_localtime_js:__localtime_js,_tzset_js:__tzset_js,emscripten_cancel_main_loop:_emscripten_cancel_main_loop,emscripten_date_now:_emscripten_date_now,emscripten_err:_emscripten_err,emscripten_force_exit:_emscripten_force_exit,emscripten_get_heap_max:_emscripten_get_heap_max,emscripten_get_now:_emscripten_get_now,emscripten_resize_heap:_emscripten_resize_heap,emscripten_set_canvas_element_size:_emscripten_set_canvas_element_size,emscripten_set_main_loop:_emscripten_set_main_loop,emscripten_webgl_commit_frame:_emscripten_webgl_commit_frame,emscripten_webgl_create_context:_emscripten_webgl_create_context,emscripten_webgl_destroy_context:_emscripten_webgl_destroy_context,emscripten_webgl_enable_extension:_emscripten_webgl_enable_extension,emscripten_webgl_get_supported_extensions:_emscripten_webgl_get_supported_extensions,emscripten_webgl_make_context_current:_emscripten_webgl_make_context_current,environ_get:_environ_get,environ_sizes_get:_environ_sizes_get,exit:_exit,fd_close:_fd_close,fd_fdstat_get:_fd_fdstat_get,fd_read:_fd_read,fd_seek:_fd_seek,fd_write:_fd_write,glActiveTexture:_glActiveTexture,glAttachShader:_glAttachShader,glBeginTransformFeedback:_glBeginTransformFeedback,glBindBuffer:_glBindBuffer,glBindBufferBase:_glBindBufferBase,glBindBufferRange:_glBindBufferRange,glBindFramebuffer:_glBindFramebuffer,glBindRenderbuffer:_glBindRenderbuffer,glBindTexture:_glBindTexture,glBindVertexArray:_glBindVertexArray,glBlendColor:_glBlendColor,glBlendEquation:_glBlendEquation,glBlendFunc:_glBlendFunc,glBlendFuncSeparate:_glBlendFuncSeparate,glBlitFramebuffer:_glBlitFramebuffer,glBufferData:_glBufferData,glBufferSubData:_glBufferSubData,glCheckFramebufferStatus:_glCheckFramebufferStatus,glClear:_glClear,glClearBufferfv:_glClearBufferfv,glClearColor:_glClearColor,glClearDepthf:_glClearDepthf,glColorMask:_glColorMask,glCompileShader:_glCompileShader,glCompressedTexImage2D:_glCompressedTexImage2D,glCompressedTexImage3D:_glCompressedTexImage3D,glCompressedTexSubImage3D:_glCompressedTexSubImage3D,glCopyBufferSubData:_glCopyBufferSubData,glCreateProgram:_glCreateProgram,glCreateShader:_glCreateShader,glCullFace:_glCullFace,glDeleteBuffers:_glDeleteBuffers,glDeleteFramebuffers:_glDeleteFramebuffers,glDeleteProgram:_glDeleteProgram,glDeleteQueries:_glDeleteQueries,glDeleteRenderbuffers:_glDeleteRenderbuffers,glDeleteShader:_glDeleteShader,glDeleteSync:_glDeleteSync,glDeleteTextures:_glDeleteTextures,glDeleteVertexArrays:_glDeleteVertexArrays,glDepthFunc:_glDepthFunc,glDepthMask:_glDepthMask,glDisable:_glDisable,glDisableVertexAttribArray:_glDisableVertexAttribArray,glDrawArrays:_glDrawArrays,glDrawArraysInstanced:_glDrawArraysInstanced,glDrawBuffers:_glDrawBuffers,glDrawElements:_glDrawElements,glDrawElementsInstanced:_glDrawElementsInstanced,glEnable:_glEnable,glEnableVertexAttribArray:_glEnableVertexAttribArray,glEndTransformFeedback:_glEndTransformFeedback,glFenceSync:_glFenceSync,glFinish:_glFinish,glFramebufferRenderbuffer:_glFramebufferRenderbuffer,glFramebufferTexture2D:_glFramebufferTexture2D,glFramebufferTextureLayer:_glFramebufferTextureLayer,glFrontFace:_glFrontFace,glGenBuffers:_glGenBuffers,glGenFramebuffers:_glGenFramebuffers,glGenQueries:_glGenQueries,glGenRenderbuffers:_glGenRenderbuffers,glGenTextures:_glGenTextures,glGenVertexArrays:_glGenVertexArrays,glGenerateMipmap:_glGenerateMipmap,glGetFloatv:_glGetFloatv,glGetInteger64v:_glGetInteger64v,glGetIntegerv:_glGetIntegerv,glGetProgramInfoLog:_glGetProgramInfoLog,glGetProgramiv:_glGetProgramiv,glGetShaderInfoLog:_glGetShaderInfoLog,glGetShaderiv:_glGetShaderiv,glGetString:_glGetString,glGetSynciv:_glGetSynciv,glGetUniformBlockIndex:_glGetUniformBlockIndex,glGetUniformLocation:_glGetUniformLocation,glLinkProgram:_glLinkProgram,glPixelStorei:_glPixelStorei,glReadBuffer:_glReadBuffer,glReadPixels:_glReadPixels,glRenderbufferStorage:_glRenderbufferStorage,glRenderbufferStorageMultisample:_glRenderbufferStorageMultisample,glScissor:_glScissor,glShaderSource:_glShaderSource,glTexImage2D:_glTexImage2D,glTexImage3D:_glTexImage3D,glTexParameterf:_glTexParameterf,glTexParameteri:_glTexParameteri,glTexStorage2D:_glTexStorage2D,glTexSubImage3D:_glTexSubImage3D,glTransformFeedbackVaryings:_glTransformFeedbackVaryings,glUniform1f:_glUniform1f,glUniform1i:_glUniform1i,glUniform1iv:_glUniform1iv,glUniform1ui:_glUniform1ui,glUniform1uiv:_glUniform1uiv,glUniform2f:_glUniform2f,glUniform2fv:_glUniform2fv,glUniform2iv:_glUniform2iv,glUniform3fv:_glUniform3fv,glUniform4f:_glUniform4f,glUniform4fv:_glUniform4fv,glUniformBlockBinding:_glUniformBlockBinding,glUniformMatrix3fv:_glUniformMatrix3fv,glUniformMatrix4fv:_glUniformMatrix4fv,glUseProgram:_glUseProgram,glVertexAttrib4f:_glVertexAttrib4f,glVertexAttribDivisor:_glVertexAttribDivisor,glVertexAttribI4ui:_glVertexAttribI4ui,glVertexAttribIPointer:_glVertexAttribIPointer,glVertexAttribPointer:_glVertexAttribPointer,glViewport:_glViewport,godot_audio_get_sample_playback_position:_godot_audio_get_sample_playback_position,godot_audio_has_script_processor:_godot_audio_has_script_processor,godot_audio_has_worklet:_godot_audio_has_worklet,godot_audio_init:_godot_audio_init,godot_audio_input_start:_godot_audio_input_start,godot_audio_input_stop:_godot_audio_input_stop,godot_audio_is_available:_godot_audio_is_available,godot_audio_resume:_godot_audio_resume,godot_audio_sample_bus_add:_godot_audio_sample_bus_add,godot_audio_sample_bus_move:_godot_audio_sample_bus_move,godot_audio_sample_bus_remove:_godot_audio_sample_bus_remove,godot_audio_sample_bus_set_count:_godot_audio_sample_bus_set_count,godot_audio_sample_bus_set_mute:_godot_audio_sample_bus_set_mute,godot_audio_sample_bus_set_send:_godot_audio_sample_bus_set_send,godot_audio_sample_bus_set_solo:_godot_audio_sample_bus_set_solo,godot_audio_sample_bus_set_volume_db:_godot_audio_sample_bus_set_volume_db,godot_audio_sample_is_active:_godot_audio_sample_is_active,godot_audio_sample_register_stream:_godot_audio_sample_register_stream,godot_audio_sample_set_finished_callback:_godot_audio_sample_set_finished_callback,godot_audio_sample_set_pause:_godot_audio_sample_set_pause,godot_audio_sample_set_volumes_linear:_godot_audio_sample_set_volumes_linear,godot_audio_sample_start:_godot_audio_sample_start,godot_audio_sample_stop:_godot_audio_sample_stop,godot_audio_sample_stream_is_registered:_godot_audio_sample_stream_is_registered,godot_audio_sample_unregister_stream:_godot_audio_sample_unregister_stream,godot_audio_sample_update_pitch_scale:_godot_audio_sample_update_pitch_scale,godot_audio_script_create:_godot_audio_script_create,godot_audio_script_start:_godot_audio_script_start,godot_audio_worklet_create:_godot_audio_worklet_create,godot_audio_worklet_start_no_threads:_godot_audio_worklet_start_no_threads,godot_js_config_canvas_id_get:_godot_js_config_canvas_id_get,godot_js_config_locale_get:_godot_js_config_locale_get,godot_js_display_alert:_godot_js_display_alert,godot_js_display_canvas_focus:_godot_js_display_canvas_focus,godot_js_display_canvas_is_focused:_godot_js_display_canvas_is_focused,godot_js_display_clipboard_get:_godot_js_display_clipboard_get,godot_js_display_clipboard_set:_godot_js_display_clipboard_set,godot_js_display_cursor_is_hidden:_godot_js_display_cursor_is_hidden,godot_js_display_cursor_is_locked:_godot_js_display_cursor_is_locked,godot_js_display_cursor_lock_set:_godot_js_display_cursor_lock_set,godot_js_display_cursor_set_custom_shape:_godot_js_display_cursor_set_custom_shape,godot_js_display_cursor_set_shape:_godot_js_display_cursor_set_shape,godot_js_display_cursor_set_visible:_godot_js_display_cursor_set_visible,godot_js_display_desired_size_set:_godot_js_display_desired_size_set,godot_js_display_fullscreen_cb:_godot_js_display_fullscreen_cb,godot_js_display_fullscreen_exit:_godot_js_display_fullscreen_exit,godot_js_display_fullscreen_request:_godot_js_display_fullscreen_request,godot_js_display_has_webgl:_godot_js_display_has_webgl,godot_js_display_is_swap_ok_cancel:_godot_js_display_is_swap_ok_cancel,godot_js_display_notification_cb:_godot_js_display_notification_cb,godot_js_display_pixel_ratio_get:_godot_js_display_pixel_ratio_get,godot_js_display_screen_dpi_get:_godot_js_display_screen_dpi_get,godot_js_display_screen_size_get:_godot_js_display_screen_size_get,godot_js_display_setup_canvas:_godot_js_display_setup_canvas,godot_js_display_size_update:_godot_js_display_size_update,godot_js_display_touchscreen_is_available:_godot_js_display_touchscreen_is_available,godot_js_display_tts_available:_godot_js_display_tts_available,godot_js_display_vk_available:_godot_js_display_vk_available,godot_js_display_vk_cb:_godot_js_display_vk_cb,godot_js_display_vk_hide:_godot_js_display_vk_hide,godot_js_display_vk_show:_godot_js_display_vk_show,godot_js_display_window_blur_cb:_godot_js_display_window_blur_cb,godot_js_display_window_icon_set:_godot_js_display_window_icon_set,godot_js_display_window_size_get:_godot_js_display_window_size_get,godot_js_display_window_title_set:_godot_js_display_window_title_set,godot_js_eval:_godot_js_eval,godot_js_fetch_create:_godot_js_fetch_create,godot_js_fetch_free:_godot_js_fetch_free,godot_js_fetch_http_status_get:_godot_js_fetch_http_status_get,godot_js_fetch_is_chunked:_godot_js_fetch_is_chunked,godot_js_fetch_read_chunk:_godot_js_fetch_read_chunk,godot_js_fetch_read_headers:_godot_js_fetch_read_headers,godot_js_fetch_state_get:_godot_js_fetch_state_get,godot_js_input_drop_files_cb:_godot_js_input_drop_files_cb,godot_js_input_gamepad_cb:_godot_js_input_gamepad_cb,godot_js_input_gamepad_sample:_godot_js_input_gamepad_sample,godot_js_input_gamepad_sample_count:_godot_js_input_gamepad_sample_count,godot_js_input_gamepad_sample_get:_godot_js_input_gamepad_sample_get,godot_js_input_key_cb:_godot_js_input_key_cb,godot_js_input_mouse_button_cb:_godot_js_input_mouse_button_cb,godot_js_input_mouse_move_cb:_godot_js_input_mouse_move_cb,godot_js_input_mouse_wheel_cb:_godot_js_input_mouse_wheel_cb,godot_js_input_paste_cb:_godot_js_input_paste_cb,godot_js_input_touch_cb:_godot_js_input_touch_cb,godot_js_input_vibrate_handheld:_godot_js_input_vibrate_handheld,godot_js_is_ime_focused:_godot_js_is_ime_focused,godot_js_os_download_buffer:_godot_js_os_download_buffer,godot_js_os_execute:_godot_js_os_execute,godot_js_os_finish_async:_godot_js_os_finish_async,godot_js_os_fs_is_persistent:_godot_js_os_fs_is_persistent,godot_js_os_fs_sync:_godot_js_os_fs_sync,godot_js_os_has_feature:_godot_js_os_has_feature,godot_js_os_hw_concurrency_get:_godot_js_os_hw_concurrency_get,godot_js_os_request_quit_cb:_godot_js_os_request_quit_cb,godot_js_os_shell_open:_godot_js_os_shell_open,godot_js_pwa_cb:_godot_js_pwa_cb,godot_js_pwa_update:_godot_js_pwa_update,godot_js_rtc_datachannel_close:_godot_js_rtc_datachannel_close,godot_js_rtc_datachannel_connect:_godot_js_rtc_datachannel_connect,godot_js_rtc_datachannel_destroy:_godot_js_rtc_datachannel_destroy,godot_js_rtc_datachannel_get_buffered_amount:_godot_js_rtc_datachannel_get_buffered_amount,godot_js_rtc_datachannel_id_get:_godot_js_rtc_datachannel_id_get,godot_js_rtc_datachannel_is_negotiated:_godot_js_rtc_datachannel_is_negotiated,godot_js_rtc_datachannel_is_ordered:_godot_js_rtc_datachannel_is_ordered,godot_js_rtc_datachannel_label_get:_godot_js_rtc_datachannel_label_get,godot_js_rtc_datachannel_max_packet_lifetime_get:_godot_js_rtc_datachannel_max_packet_lifetime_get,godot_js_rtc_datachannel_max_retransmits_get:_godot_js_rtc_datachannel_max_retransmits_get,godot_js_rtc_datachannel_protocol_get:_godot_js_rtc_datachannel_protocol_get,godot_js_rtc_datachannel_ready_state_get:_godot_js_rtc_datachannel_ready_state_get,godot_js_rtc_datachannel_send:_godot_js_rtc_datachannel_send,godot_js_rtc_pc_close:_godot_js_rtc_pc_close,godot_js_rtc_pc_create:_godot_js_rtc_pc_create,godot_js_rtc_pc_datachannel_create:_godot_js_rtc_pc_datachannel_create,godot_js_rtc_pc_destroy:_godot_js_rtc_pc_destroy,godot_js_rtc_pc_ice_candidate_add:_godot_js_rtc_pc_ice_candidate_add,godot_js_rtc_pc_local_description_set:_godot_js_rtc_pc_local_description_set,godot_js_rtc_pc_offer_create:_godot_js_rtc_pc_offer_create,godot_js_rtc_pc_remote_description_set:_godot_js_rtc_pc_remote_description_set,godot_js_set_ime_active:_godot_js_set_ime_active,godot_js_set_ime_cb:_godot_js_set_ime_cb,godot_js_set_ime_position:_godot_js_set_ime_position,godot_js_tts_get_voices:_godot_js_tts_get_voices,godot_js_tts_is_paused:_godot_js_tts_is_paused,godot_js_tts_is_speaking:_godot_js_tts_is_speaking,godot_js_tts_pause:_godot_js_tts_pause,godot_js_tts_resume:_godot_js_tts_resume,godot_js_tts_speak:_godot_js_tts_speak,godot_js_tts_stop:_godot_js_tts_stop,godot_js_webmidi_close_midi_inputs:_godot_js_webmidi_close_midi_inputs,godot_js_webmidi_open_midi_inputs:_godot_js_webmidi_open_midi_inputs,godot_js_websocket_buffered_amount:_godot_js_websocket_buffered_amount,godot_js_websocket_close:_godot_js_websocket_close,godot_js_websocket_create:_godot_js_websocket_create,godot_js_websocket_destroy:_godot_js_websocket_destroy,godot_js_websocket_send:_godot_js_websocket_send,godot_js_wrapper_create_cb:_godot_js_wrapper_create_cb,godot_js_wrapper_create_object:_godot_js_wrapper_create_object,godot_js_wrapper_interface_get:_godot_js_wrapper_interface_get,godot_js_wrapper_object_call:_godot_js_wrapper_object_call,godot_js_wrapper_object_get:_godot_js_wrapper_object_get,godot_js_wrapper_object_getvar:_godot_js_wrapper_object_getvar,godot_js_wrapper_object_is_buffer:_godot_js_wrapper_object_is_buffer,godot_js_wrapper_object_set:_godot_js_wrapper_object_set,godot_js_wrapper_object_set_cb_ret:_godot_js_wrapper_object_set_cb_ret,godot_js_wrapper_object_setvar:_godot_js_wrapper_object_setvar,godot_js_wrapper_object_transfer_buffer:_godot_js_wrapper_object_transfer_buffer,godot_js_wrapper_object_unref:_godot_js_wrapper_object_unref,godot_webgl2_glFramebufferTextureMultisampleMultiviewOVR:_godot_webgl2_glFramebufferTextureMultisampleMultiviewOVR,godot_webgl2_glFramebufferTextureMultiviewOVR:_godot_webgl2_glFramebufferTextureMultiviewOVR,godot_webgl2_glGetBufferSubData:_godot_webgl2_glGetBufferSubData,godot_webxr_get_bounds_geometry:_godot_webxr_get_bounds_geometry,godot_webxr_get_color_texture:_godot_webxr_get_color_texture,godot_webxr_get_depth_texture:_godot_webxr_get_depth_texture,godot_webxr_get_frame_rate:_godot_webxr_get_frame_rate,godot_webxr_get_projection_for_view:_godot_webxr_get_projection_for_view,godot_webxr_get_render_target_size:_godot_webxr_get_render_target_size,godot_webxr_get_supported_frame_rates:_godot_webxr_get_supported_frame_rates,godot_webxr_get_transform_for_view:_godot_webxr_get_transform_for_view,godot_webxr_get_velocity_texture:_godot_webxr_get_velocity_texture,godot_webxr_get_view_count:_godot_webxr_get_view_count,godot_webxr_get_visibility_state:_godot_webxr_get_visibility_state,godot_webxr_initialize:_godot_webxr_initialize,godot_webxr_is_session_supported:_godot_webxr_is_session_supported,godot_webxr_is_supported:_godot_webxr_is_supported,godot_webxr_uninitialize:_godot_webxr_uninitialize,godot_webxr_update_input_source:_godot_webxr_update_input_source,godot_webxr_update_target_frame_rate:_godot_webxr_update_target_frame_rate,proc_exit:_proc_exit};var wasmExports=createWasm();var ___wasm_call_ctors=createExportWrapper("__wasm_call_ctors",0);var _free=createExportWrapper("free",1);var __Z14godot_web_mainiPPc=Module["__Z14godot_web_mainiPPc"]=createExportWrapper("_Z14godot_web_mainiPPc",2);var _main=Module["_main"]=createExportWrapper("__main_argc_argv",2);var _malloc=createExportWrapper("malloc",1);var _fflush=createExportWrapper("fflush",1);var __emwebxr_on_input_event=Module["__emwebxr_on_input_event"]=createExportWrapper("_emwebxr_on_input_event",2);var __emwebxr_on_simple_event=Module["__emwebxr_on_simple_event"]=createExportWrapper("_emwebxr_on_simple_event",1);var _strerror=createExportWrapper("strerror",1);var ___funcs_on_exit=createExportWrapper("__funcs_on_exit",0);var _emscripten_stack_init=()=>(_emscripten_stack_init=wasmExports["emscripten_stack_init"])();var _emscripten_stack_get_free=()=>(_emscripten_stack_get_free=wasmExports["emscripten_stack_get_free"])();var _emscripten_stack_get_base=()=>(_emscripten_stack_get_base=wasmExports["emscripten_stack_get_base"])();var _emscripten_stack_get_end=()=>(_emscripten_stack_get_end=wasmExports["emscripten_stack_get_end"])();var __emscripten_stack_restore=a0=>(__emscripten_stack_restore=wasmExports["_emscripten_stack_restore"])(a0);var __emscripten_stack_alloc=a0=>(__emscripten_stack_alloc=wasmExports["_emscripten_stack_alloc"])(a0);var _emscripten_stack_get_current=()=>(_emscripten_stack_get_current=wasmExports["emscripten_stack_get_current"])();Module["callMain"]=callMain;Module["cwrap"]=cwrap;var missingLibrarySymbols=["writeI53ToI64Clamped","writeI53ToI64Signaling","writeI53ToU64Clamped","writeI53ToU64Signaling","convertI32PairToI53","convertI32PairToI53Checked","convertU32PairToI53","getTempRet0","setTempRet0","arraySum","addDays","inetPton4","inetNtop4","inetPton6","inetNtop6","readSockaddr","writeSockaddr","emscriptenLog","readEmAsmArgs","listenOnce","autoResumeAudioContext","getDynCaller","dynCall","setWasmTableEntry","asmjsMangle","HandleAllocator","getNativeTypeSize","STACK_SIZE","STACK_ALIGN","POINTER_SIZE","ASSERTIONS","uleb128Encode","sigToWasmTypes","generateFuncType","convertJsFunctionToWasm","getEmptyTableSlot","updateTableMap","getFunctionAddress","addFunction","removeFunction","reallyNegative","unSign","strLen","reSign","formatString","intArrayToString","AsciiToString","UTF16ToString","stringToUTF16","lengthBytesUTF16","UTF32ToString","stringToUTF32","lengthBytesUTF32","registerKeyEventCallback","getBoundingClientRect","fillMouseEventData","registerMouseEventCallback","registerWheelEventCallback","registerUiEventCallback","registerFocusEventCallback","fillDeviceOrientationEventData","registerDeviceOrientationEventCallback","fillDeviceMotionEventData","registerDeviceMotionEventCallback","screenOrientation","fillOrientationChangeEventData","registerOrientationChangeEventCallback","fillFullscreenChangeEventData","registerFullscreenChangeEventCallback","JSEvents_requestFullscreen","JSEvents_resizeCanvasForFullscreen","registerRestoreOldStyle","hideEverythingExceptGivenElement","restoreHiddenElements","setLetterbox","softFullscreenResizeWebGLRenderTarget","doRequestFullscreen","fillPointerlockChangeEventData","registerPointerlockChangeEventCallback","registerPointerlockErrorEventCallback","requestPointerLock","fillVisibilityChangeEventData","registerVisibilityChangeEventCallback","registerTouchEventCallback","fillGamepadEventData","registerGamepadEventCallback","registerBeforeUnloadEventCallback","fillBatteryEventData","battery","registerBatteryEventCallback","setCanvasElementSize","getCanvasElementSize","jsStackTrace","getCallstack","convertPCtoSourceLocation","checkWasiClock","wasiRightsToMuslOFlags","wasiOFlagsToMuslOFlags","createDyncallWrapper","setImmediateWrapped","clearImmediateWrapped","polyfillSetImmediate","getPromise","makePromise","idsToPromises","makePromiseCallback","Browser_asyncPrepareDataCounter","getSocketFromFD","getSocketAddress","FS_unlink","FS_mkdirTree","_setNetworkCallback","emscriptenWebGLGetUniform","emscriptenWebGLGetVertexAttrib","__glGetActiveAttribOrUniform","writeGLArray","registerWebGlEventCallback","runAndAbortIfError","emscriptenWebGLGetIndexed","ALLOC_NORMAL","ALLOC_STACK","allocate","writeStringToMemory","writeAsciiToMemory","setErrNo","demangle","stackTrace"];missingLibrarySymbols.forEach(missingLibrarySymbol);var unexportedSymbols=["run","addOnPreRun","addOnInit","addOnPreMain","addOnExit","addOnPostRun","addRunDependency","removeRunDependency","out","err","abort","wasmMemory","wasmExports","writeStackCookie","checkStackCookie","writeI53ToI64","readI53FromI64","readI53FromU64","INT53_MAX","INT53_MIN","bigintToI53Checked","stackSave","stackRestore","stackAlloc","ptrToString","zeroMemory","exitJS","getHeapMax","growMemory","ENV","MONTH_DAYS_REGULAR","MONTH_DAYS_LEAP","MONTH_DAYS_REGULAR_CUMULATIVE","MONTH_DAYS_LEAP_CUMULATIVE","isLeapYear","ydayFromDate","ERRNO_CODES","strError","DNS","Protocols","Sockets","initRandomFill","randomFill","timers","warnOnce","readEmAsmArgsArray","jstoi_q","jstoi_s","getExecutableName","getWasmTableEntry","handleException","keepRuntimeAlive","runtimeKeepalivePush","runtimeKeepalivePop","callUserCallback","maybeExit","asyncLoad","alignMemory","mmapAlloc","wasmTable","noExitRuntime","getCFunc","ccall","freeTableIndexes","functionsInTableMap","setValue","getValue","PATH","PATH_FS","UTF8Decoder","UTF8ArrayToString","UTF8ToString","stringToUTF8Array","stringToUTF8","lengthBytesUTF8","intArrayFromString","stringToAscii","UTF16Decoder","stringToNewUTF8","stringToUTF8OnStack","writeArrayToMemory","JSEvents","specialHTMLTargets","maybeCStringToJsString","findEventTarget","findCanvasEventTarget","currentFullscreenStrategy","restoreOldWindowedStyle","UNWIND_CACHE","ExitStatus","getEnvStrings","doReadv","doWritev","safeSetTimeout","promiseMap","Browser","setMainLoop","getPreloadedImageData__data","wget","SYSCALLS","preloadPlugins","FS_createPreloadedFile","FS_modeStringToFlags","FS_getMode","FS_stdin_getChar_buffer","FS_stdin_getChar","FS_createPath","FS_createDevice","FS_readFile","FS","FS_createDataFile","FS_createLazyFile","MEMFS","TTY","PIPEFS","SOCKFS","tempFixedLengthArray","miniTempWebGLFloatBuffers","miniTempWebGLIntBuffers","heapObjectForWebGLType","toTypedArrayIndex","webgl_enable_ANGLE_instanced_arrays","webgl_enable_OES_vertex_array_object","webgl_enable_WEBGL_draw_buffers","webgl_enable_WEBGL_multi_draw","GL","emscriptenWebGLGet","computeUnpackAlignedImageSize","colorChannelsInGlTextureFormat","emscriptenWebGLGetTexPixelData","webglGetUniformLocation","webglPrepareUniformLocationsBeforeFirstUse","webglGetLeftBracePos","AL","GLUT","EGL","GLEW","IDBStore","SDL","SDL_gfx","webgl_enable_WEBGL_draw_instanced_base_vertex_base_instance","webgl_enable_WEBGL_multi_draw_instanced_base_vertex_base_instance","allocateUTF8","allocateUTF8OnStack","print","printErr","GodotWebXR","GodotWebSocket","GodotRTCDataChannel","GodotRTCPeerConnection","GodotAudio","GodotAudioWorklet","GodotAudioScript","GodotDisplayVK","GodotDisplayCursor","GodotDisplayScreen","GodotDisplay","GodotFetch","GodotWebMidi","IDHandler","GodotConfig","GodotFS","GodotOS","GodotEventListeners","GodotPWA","GodotRuntime","GodotIME","GodotInputGamepads","GodotInputDragDrop","GodotInput","GodotWebGL2","GodotJSWrapper","IDBFS"];unexportedSymbols.forEach(unexportedRuntimeSymbol);var calledRun;dependenciesFulfilled=function runCaller(){if(!calledRun)run();if(!calledRun)dependenciesFulfilled=runCaller};function callMain(args=[]){assert(runDependencies==0,'cannot call main when async dependencies remain! (listen on Module["onRuntimeInitialized"])');assert(__ATPRERUN__.length==0,"cannot call main when preRun functions remain to be called");var entryFunction=_main;args.unshift(thisProgram);var argc=args.length;var argv=stackAlloc((argc+1)*4);var argv_ptr=argv;args.forEach(arg=>{HEAPU32[argv_ptr>>2]=stringToUTF8OnStack(arg);argv_ptr+=4});HEAPU32[argv_ptr>>2]=0;try{var ret=entryFunction(argc,argv);exitJS(ret,true);return ret}catch(e){return handleException(e)}}function stackCheckInit(){_emscripten_stack_init();writeStackCookie()}function run(args=arguments_){if(runDependencies>0){return}stackCheckInit();preRun();if(runDependencies>0){return}function doRun(){if(calledRun)return;calledRun=true;Module["calledRun"]=true;if(ABORT)return;initRuntime();preMain();readyPromiseResolve(Module);Module["onRuntimeInitialized"]?.();if(shouldRunNow)callMain(args);postRun()}if(Module["setStatus"]){Module["setStatus"]("Running...");setTimeout(function(){setTimeout(function(){Module["setStatus"]("")},1);doRun()},1)}else{doRun()}checkStackCookie()}if(Module["preInit"]){if(typeof Module["preInit"]=="function")Module["preInit"]=[Module["preInit"]];while(Module["preInit"].length>0){Module["preInit"].pop()()}}var shouldRunNow=false;if(Module["noInitialRun"])shouldRunNow=false;run();moduleRtn=readyPromise;for(const prop of Object.keys(Module)){if(!(prop in moduleArg)){Object.defineProperty(moduleArg,prop,{configurable:true,get(){abort(`Access to module property ('${prop}') is no longer possible via the module constructor argument; Instead, use the result of the module constructor.`)}})}}
+
+
+ return moduleRtn;
+}
+);
+})();
+if (typeof exports === 'object' && typeof module === 'object')
+ module.exports = Godot;
+else if (typeof define === 'function' && define['amd'])
+ define([], () => Godot);
+
+const Features = {
+ /**
+ * Check whether WebGL is available. Optionally, specify a particular version of WebGL to check for.
+ *
+ * @param {number=} [majorVersion=1] The major WebGL version to check for.
+ * @returns {boolean} If the given major version of WebGL is available.
+ * @function Engine.isWebGLAvailable
+ */
+ isWebGLAvailable: function (majorVersion = 1) {
+ try {
+ return !!document.createElement('canvas').getContext(['webgl', 'webgl2'][majorVersion - 1]);
+ } catch (e) { /* Not available */ }
+ return false;
+ },
+
+ /**
+ * Check whether the Fetch API available and supports streaming responses.
+ *
+ * @returns {boolean} If the Fetch API is available and supports streaming responses.
+ * @function Engine.isFetchAvailable
+ */
+ isFetchAvailable: function () {
+ return 'fetch' in window && 'Response' in window && 'body' in window.Response.prototype;
+ },
+
+ /**
+ * Check whether the engine is running in a Secure Context.
+ *
+ * @returns {boolean} If the engine is running in a Secure Context.
+ * @function Engine.isSecureContext
+ */
+ isSecureContext: function () {
+ return window['isSecureContext'] === true;
+ },
+
+ /**
+ * Check whether the engine is cross origin isolated.
+ * This value is dependent on Cross-Origin-Opener-Policy and Cross-Origin-Embedder-Policy headers sent by the server.
+ *
+ * @returns {boolean} If the engine is running in a Secure Context.
+ * @function Engine.isSecureContext
+ */
+ isCrossOriginIsolated: function () {
+ return window['crossOriginIsolated'] === true;
+ },
+
+ /**
+ * Check whether SharedBufferArray is available.
+ *
+ * Most browsers require the page to be running in a secure context, and the
+ * the server to provide specific CORS headers for SharedArrayBuffer to be available.
+ *
+ * @returns {boolean} If SharedArrayBuffer is available.
+ * @function Engine.isSharedArrayBufferAvailable
+ */
+ isSharedArrayBufferAvailable: function () {
+ return 'SharedArrayBuffer' in window;
+ },
+
+ /**
+ * Check whether the AudioContext supports AudioWorkletNodes.
+ *
+ * @returns {boolean} If AudioWorkletNode is available.
+ * @function Engine.isAudioWorkletAvailable
+ */
+ isAudioWorkletAvailable: function () {
+ return 'AudioContext' in window && 'audioWorklet' in AudioContext.prototype;
+ },
+
+ /**
+ * Return an array of missing required features (as string).
+ *
+ * @returns {Array<string>} A list of human-readable missing features.
+ * @function Engine.getMissingFeatures
+ * @param {{threads: (boolean|undefined)}} supportedFeatures
+ */
+ getMissingFeatures: function (supportedFeatures = {}) {
+ const {
+ // Quotes are needed for the Closure compiler.
+ 'threads': supportsThreads = true,
+ } = supportedFeatures;
+
+ const missing = [];
+ if (!Features.isWebGLAvailable(2)) {
+ missing.push('WebGL2 - Check web browser configuration and hardware support');
+ }
+ if (!Features.isFetchAvailable()) {
+ missing.push('Fetch - Check web browser version');
+ }
+ if (!Features.isSecureContext()) {
+ missing.push('Secure Context - Check web server configuration (use HTTPS)');
+ }
+
+ if (supportsThreads) {
+ if (!Features.isCrossOriginIsolated()) {
+ missing.push('Cross-Origin Isolation - Check that the web server configuration sends the correct headers.');
+ }
+ if (!Features.isSharedArrayBufferAvailable()) {
+ missing.push('SharedArrayBuffer - Check that the web server configuration sends the correct headers.');
+ }
+ }
+
+ // Audio is normally optional since we have a dummy fallback.
+ return missing;
+ },
+};
+
+const Preloader = /** @constructor */ function () { // eslint-disable-line no-unused-vars
+ function getTrackedResponse(response, load_status) {
+ function onloadprogress(reader, controller) {
+ return reader.read().then(function (result) {
+ if (load_status.done) {
+ return Promise.resolve();
+ }
+ if (result.value) {
+ controller.enqueue(result.value);
+ load_status.loaded += result.value.length;
+ }
+ if (!result.done) {
+ return onloadprogress(reader, controller);
+ }
+ load_status.done = true;
+ return Promise.resolve();
+ });
+ }
+ const reader = response.body.getReader();
+ return new Response(new ReadableStream({
+ start: function (controller) {
+ onloadprogress(reader, controller).then(function () {
+ controller.close();
+ });
+ },
+ }), { headers: response.headers });
+ }
+
+ function loadFetch(file, tracker, fileSize, raw) {
+ tracker[file] = {
+ total: fileSize || 0,
+ loaded: 0,
+ done: false,
+ };
+ return fetch(file).then(function (response) {
+ if (!response.ok) {
+ return Promise.reject(new Error(`Failed loading file '${file}'`));
+ }
+ const tr = getTrackedResponse(response, tracker[file]);
+ if (raw) {
+ return Promise.resolve(tr);
+ }
+ return tr.arrayBuffer();
+ });
+ }
+
+ function retry(func, attempts = 1) {
+ function onerror(err) {
+ if (attempts <= 1) {
+ return Promise.reject(err);
+ }
+ return new Promise(function (resolve, reject) {
+ setTimeout(function () {
+ retry(func, attempts - 1).then(resolve).catch(reject);
+ }, 1000);
+ });
+ }
+ return func().catch(onerror);
+ }
+
+ const DOWNLOAD_ATTEMPTS_MAX = 4;
+ const loadingFiles = {};
+ const lastProgress = { loaded: 0, total: 0 };
+ let progressFunc = null;
+
+ const animateProgress = function () {
+ let loaded = 0;
+ let total = 0;
+ let totalIsValid = true;
+ let progressIsFinal = true;
+
+ Object.keys(loadingFiles).forEach(function (file) {
+ const stat = loadingFiles[file];
+ if (!stat.done) {
+ progressIsFinal = false;
+ }
+ if (!totalIsValid || stat.total === 0) {
+ totalIsValid = false;
+ total = 0;
+ } else {
+ total += stat.total;
+ }
+ loaded += stat.loaded;
+ });
+ if (loaded !== lastProgress.loaded || total !== lastProgress.total) {
+ lastProgress.loaded = loaded;
+ lastProgress.total = total;
+ if (typeof progressFunc === 'function') {
+ progressFunc(loaded, total);
+ }
+ }
+ if (!progressIsFinal) {
+ requestAnimationFrame(animateProgress);
+ }
+ };
+
+ this.animateProgress = animateProgress;
+
+ this.setProgressFunc = function (callback) {
+ progressFunc = callback;
+ };
+
+ this.loadPromise = function (file, fileSize, raw = false) {
+ return retry(loadFetch.bind(null, file, loadingFiles, fileSize, raw), DOWNLOAD_ATTEMPTS_MAX);
+ };
+
+ this.preloadedFiles = [];
+ this.preload = function (pathOrBuffer, destPath, fileSize) {
+ let buffer = null;
+ if (typeof pathOrBuffer === 'string') {
+ const me = this;
+ return this.loadPromise(pathOrBuffer, fileSize).then(function (buf) {
+ me.preloadedFiles.push({
+ path: destPath || pathOrBuffer,
+ buffer: buf,
+ });
+ return Promise.resolve();
+ });
+ } else if (pathOrBuffer instanceof ArrayBuffer) {
+ buffer = new Uint8Array(pathOrBuffer);
+ } else if (ArrayBuffer.isView(pathOrBuffer)) {
+ buffer = new Uint8Array(pathOrBuffer.buffer);
+ }
+ if (buffer) {
+ this.preloadedFiles.push({
+ path: destPath,
+ buffer: pathOrBuffer,
+ });
+ return Promise.resolve();
+ }
+ return Promise.reject(new Error('Invalid object for preloading'));
+ };
+};
+
+/**
+ * An object used to configure the Engine instance based on godot export options, and to override those in custom HTML
+ * templates if needed.
+ *
+ * @header Engine configuration
+ * @summary The Engine configuration object. This is just a typedef, create it like a regular object, e.g.:
+ *
+ * ``const MyConfig = { executable: 'godot', unloadAfterInit: false }``
+ *
+ * @typedef {Object} EngineConfig
+ */
+const EngineConfig = {}; // eslint-disable-line no-unused-vars
+
+/**
+ * @struct
+ * @constructor
+ * @ignore
+ */
+const InternalConfig = function (initConfig) { // eslint-disable-line no-unused-vars
+ const cfg = /** @lends {InternalConfig.prototype} */ {
+ /**
+ * Whether to unload the engine automatically after the instance is initialized.
+ *
+ * @memberof EngineConfig
+ * @default
+ * @type {boolean}
+ */
+ unloadAfterInit: true,
+ /**
+ * The HTML DOM Canvas object to use.
+ *
+ * By default, the first canvas element in the document will be used is none is specified.
+ *
+ * @memberof EngineConfig
+ * @default
+ * @type {?HTMLCanvasElement}
+ */
+ canvas: null,
+ /**
+ * The name of the WASM file without the extension. (Set by Godot Editor export process).
+ *
+ * @memberof EngineConfig
+ * @default
+ * @type {string}
+ */
+ executable: '',
+ /**
+ * An alternative name for the game pck to load. The executable name is used otherwise.
+ *
+ * @memberof EngineConfig
+ * @default
+ * @type {?string}
+ */
+ mainPack: null,
+ /**
+ * Specify a language code to select the proper localization for the game.
+ *
+ * The browser locale will be used if none is specified. See complete list of
+ * :ref:`supported locales <doc_locales>`.
+ *
+ * @memberof EngineConfig
+ * @type {?string}
+ * @default
+ */
+ locale: null,
+ /**
+ * The canvas resize policy determines how the canvas should be resized by Godot.
+ *
+ * ``0`` means Godot won't do any resizing. This is useful if you want to control the canvas size from
+ * javascript code in your template.
+ *
+ * ``1`` means Godot will resize the canvas on start, and when changing window size via engine functions.
+ *
+ * ``2`` means Godot will adapt the canvas size to match the whole browser window.
+ *
+ * @memberof EngineConfig
+ * @type {number}
+ * @default
+ */
+ canvasResizePolicy: 2,
+ /**
+ * The arguments to be passed as command line arguments on startup.
+ *
+ * See :ref:`command line tutorial <doc_command_line_tutorial>`.
+ *
+ * **Note**: :js:meth:`startGame <Engine.prototype.startGame>` will always add the ``--main-pack`` argument.
+ *
+ * @memberof EngineConfig
+ * @type {Array<string>}
+ * @default
+ */
+ args: [],
+ /**
+ * When enabled, the game canvas will automatically grab the focus when the engine starts.
+ *
+ * @memberof EngineConfig
+ * @type {boolean}
+ * @default
+ */
+ focusCanvas: true,
+ /**
+ * When enabled, this will turn on experimental virtual keyboard support on mobile.
+ *
+ * @memberof EngineConfig
+ * @type {boolean}
+ * @default
+ */
+ experimentalVK: false,
+ /**
+ * The progressive web app service worker to install.
+ * @memberof EngineConfig
+ * @default
+ * @type {string}
+ */
+ serviceWorker: '',
+ /**
+ * @ignore
+ * @type {Array.<string>}
+ */
+ persistentPaths: ['/userfs'],
+ /**
+ * @ignore
+ * @type {boolean}
+ */
+ persistentDrops: false,
+ /**
+ * @ignore
+ * @type {Array.<string>}
+ */
+ gdextensionLibs: [],
+ /**
+ * @ignore
+ * @type {Array.<string>}
+ */
+ fileSizes: [],
+ /**
+ * A callback function for handling Godot's ``OS.execute`` calls.
+ *
+ * This is for example used in the Web Editor template to switch between project manager and editor, and for running the game.
+ *
+ * @callback EngineConfig.onExecute
+ * @param {string} path The path that Godot's wants executed.
+ * @param {Array.<string>} args The arguments of the "command" to execute.
+ */
+ /**
+ * @ignore
+ * @type {?function(string, Array.<string>)}
+ */
+ onExecute: null,
+ /**
+ * A callback function for being notified when the Godot instance quits.
+ *
+ * **Note**: This function will not be called if the engine crashes or become unresponsive.
+ *
+ * @callback EngineConfig.onExit
+ * @param {number} status_code The status code returned by Godot on exit.
+ */
+ /**
+ * @ignore
+ * @type {?function(number)}
+ */
+ onExit: null,
+ /**
+ * A callback function for displaying download progress.
+ *
+ * The function is called once per frame while downloading files, so the usage of ``requestAnimationFrame()``
+ * is not necessary.
+ *
+ * If the callback function receives a total amount of bytes as 0, this means that it is impossible to calculate.
+ * Possible reasons include:
+ *
+ * - Files are delivered with server-side chunked compression
+ * - Files are delivered with server-side compression on Chromium
+ * - Not all file downloads have started yet (usually on servers without multi-threading)
+ *
+ * @callback EngineConfig.onProgress
+ * @param {number} current The current amount of downloaded bytes so far.
+ * @param {number} total The total amount of bytes to be downloaded.
+ */
+ /**
+ * @ignore
+ * @type {?function(number, number)}
+ */
+ onProgress: null,
+ /**
+ * A callback function for handling the standard output stream. This method should usually only be used in debug pages.
+ *
+ * By default, ``console.log()`` is used.
+ *
+ * @callback EngineConfig.onPrint
+ * @param {...*} [var_args] A variadic number of arguments to be printed.
+ */
+ /**
+ * @ignore
+ * @type {?function(...*)}
+ */
+ onPrint: function () {
+ console.log.apply(console, Array.from(arguments)); // eslint-disable-line no-console
+ },
+ /**
+ * A callback function for handling the standard error stream. This method should usually only be used in debug pages.
+ *
+ * By default, ``console.error()`` is used.
+ *
+ * @callback EngineConfig.onPrintError
+ * @param {...*} [var_args] A variadic number of arguments to be printed as errors.
+ */
+ /**
+ * @ignore
+ * @type {?function(...*)}
+ */
+ onPrintError: function (var_args) {
+ console.error.apply(console, Array.from(arguments)); // eslint-disable-line no-console
+ },
+ };
+
+ /**
+ * @ignore
+ * @struct
+ * @constructor
+ * @param {EngineConfig} opts
+ */
+ function Config(opts) {
+ this.update(opts);
+ }
+
+ Config.prototype = cfg;
+
+ /**
+ * @ignore
+ * @param {EngineConfig} opts
+ */
+ Config.prototype.update = function (opts) {
+ const config = opts || {};
+ // NOTE: We must explicitly pass the default, accessing it via
+ // the key will fail due to closure compiler renames.
+ function parse(key, def) {
+ if (typeof (config[key]) === 'undefined') {
+ return def;
+ }
+ return config[key];
+ }
+ // Module config
+ this.unloadAfterInit = parse('unloadAfterInit', this.unloadAfterInit);
+ this.onPrintError = parse('onPrintError', this.onPrintError);
+ this.onPrint = parse('onPrint', this.onPrint);
+ this.onProgress = parse('onProgress', this.onProgress);
+
+ // Godot config
+ this.canvas = parse('canvas', this.canvas);
+ this.executable = parse('executable', this.executable);
+ this.mainPack = parse('mainPack', this.mainPack);
+ this.locale = parse('locale', this.locale);
+ this.canvasResizePolicy = parse('canvasResizePolicy', this.canvasResizePolicy);
+ this.persistentPaths = parse('persistentPaths', this.persistentPaths);
+ this.persistentDrops = parse('persistentDrops', this.persistentDrops);
+ this.experimentalVK = parse('experimentalVK', this.experimentalVK);
+ this.focusCanvas = parse('focusCanvas', this.focusCanvas);
+ this.serviceWorker = parse('serviceWorker', this.serviceWorker);
+ this.gdextensionLibs = parse('gdextensionLibs', this.gdextensionLibs);
+ this.fileSizes = parse('fileSizes', this.fileSizes);
+ this.args = parse('args', this.args);
+ this.onExecute = parse('onExecute', this.onExecute);
+ this.onExit = parse('onExit', this.onExit);
+ };
+
+ /**
+ * @ignore
+ * @param {string} loadPath
+ * @param {Response} response
+ */
+ Config.prototype.getModuleConfig = function (loadPath, response) {
+ let r = response;
+ const gdext = this.gdextensionLibs;
+ return {
+ 'print': this.onPrint,
+ 'printErr': this.onPrintError,
+ 'thisProgram': this.executable,
+ 'noExitRuntime': false,
+ 'dynamicLibraries': [`${loadPath}.side.wasm`].concat(this.gdextensionLibs),
+ 'instantiateWasm': function (imports, onSuccess) {
+ function done(result) {
+ onSuccess(result['instance'], result['module']);
+ }
+ if (typeof (WebAssembly.instantiateStreaming) !== 'undefined') {
+ WebAssembly.instantiateStreaming(Promise.resolve(r), imports).then(done);
+ } else {
+ r.arrayBuffer().then(function (buffer) {
+ WebAssembly.instantiate(buffer, imports).then(done);
+ });
+ }
+ r = null;
+ return {};
+ },
+ 'locateFile': function (path) {
+ if (!path.startsWith('godot.')) {
+ return path;
+ } else if (path.endsWith('.audio.worklet.js')) {
+ return `${loadPath}.audio.worklet.js`;
+ } else if (path.endsWith('.audio.position.worklet.js')) {
+ return `${loadPath}.audio.position.worklet.js`;
+ } else if (path.endsWith('.js')) {
+ return `${loadPath}.js`;
+ } else if (path in gdext) {
+ return path;
+ } else if (path.endsWith('.side.wasm')) {
+ return `${loadPath}.side.wasm`;
+ } else if (path.endsWith('.wasm')) {
+ return `${loadPath}.wasm`;
+ }
+ return path;
+ },
+ };
+ };
+
+ /**
+ * @ignore
+ * @param {function()} cleanup
+ */
+ Config.prototype.getGodotConfig = function (cleanup) {
+ // Try to find a canvas
+ if (!(this.canvas instanceof HTMLCanvasElement)) {
+ const nodes = document.getElementsByTagName('canvas');
+ if (nodes.length && nodes[0] instanceof HTMLCanvasElement) {
+ const first = nodes[0];
+ this.canvas = /** @type {!HTMLCanvasElement} */ (first);
+ }
+ if (!this.canvas) {
+ throw new Error('No canvas found in page');
+ }
+ }
+ // Canvas can grab focus on click, or key events won't work.
+ if (this.canvas.tabIndex < 0) {
+ this.canvas.tabIndex = 0;
+ }
+
+ // Browser locale, or custom one if defined.
+ let locale = this.locale;
+ if (!locale) {
+ locale = navigator.languages ? navigator.languages[0] : navigator.language;
+ locale = locale.split('.')[0];
+ }
+ locale = locale.replace('-', '_');
+ const onExit = this.onExit;
+
+ // Godot configuration.
+ return {
+ 'canvas': this.canvas,
+ 'canvasResizePolicy': this.canvasResizePolicy,
+ 'locale': locale,
+ 'persistentDrops': this.persistentDrops,
+ 'virtualKeyboard': this.experimentalVK,
+ 'focusCanvas': this.focusCanvas,
+ 'onExecute': this.onExecute,
+ 'onExit': function (p_code) {
+ cleanup(); // We always need to call the cleanup callback to free memory.
+ if (typeof (onExit) === 'function') {
+ onExit(p_code);
+ }
+ },
+ };
+ };
+ return new Config(initConfig);
+};
+
+/**
+ * Projects exported for the Web expose the :js:class:`Engine` class to the JavaScript environment, that allows
+ * fine control over the engine's start-up process.
+ *
+ * This API is built in an asynchronous manner and requires basic understanding
+ * of `Promises <https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Using_promises>`__.
+ *
+ * @module Engine
+ * @header Web export JavaScript reference
+ */
+const Engine = (function () {
+ const preloader = new Preloader();
+
+ let loadPromise = null;
+ let loadPath = '';
+ let initPromise = null;
+
+ /**
+ * @classdesc The ``Engine`` class provides methods for loading and starting exported projects on the Web. For default export
+ * settings, this is already part of the exported HTML page. To understand practical use of the ``Engine`` class,
+ * see :ref:`Custom HTML page for Web export <doc_customizing_html5_shell>`.
+ *
+ * @description Create a new Engine instance with the given configuration.
+ *
+ * @global
+ * @constructor
+ * @param {EngineConfig} initConfig The initial config for this instance.
+ */
+ function Engine(initConfig) { // eslint-disable-line no-shadow
+ this.config = new InternalConfig(initConfig);
+ this.rtenv = null;
+ }
+
+ /**
+ * Load the engine from the specified base path.
+ *
+ * @param {string} basePath Base path of the engine to load.
+ * @param {number=} [size=0] The file size if known.
+ * @returns {Promise} A Promise that resolves once the engine is loaded.
+ *
+ * @function Engine.load
+ */
+ Engine.load = function (basePath, size) {
+ if (loadPromise == null) {
+ loadPath = basePath;
+ loadPromise = preloader.loadPromise(`${loadPath}.wasm`, size, true);
+ requestAnimationFrame(preloader.animateProgress);
+ }
+ return loadPromise;
+ };
+
+ /**
+ * Unload the engine to free memory.
+ *
+ * This method will be called automatically depending on the configuration. See :js:attr:`unloadAfterInit`.
+ *
+ * @function Engine.unload
+ */
+ Engine.unload = function () {
+ loadPromise = null;
+ };
+
+ /**
+ * Safe Engine constructor, creates a new prototype for every new instance to avoid prototype pollution.
+ * @ignore
+ * @constructor
+ */
+ function SafeEngine(initConfig) {
+ const proto = /** @lends Engine.prototype */ {
+ /**
+ * Initialize the engine instance. Optionally, pass the base path to the engine to load it,
+ * if it hasn't been loaded yet. See :js:meth:`Engine.load`.
+ *
+ * @param {string=} basePath Base path of the engine to load.
+ * @return {Promise} A ``Promise`` that resolves once the engine is loaded and initialized.
+ */
+ init: function (basePath) {
+ if (initPromise) {
+ return initPromise;
+ }
+ if (loadPromise == null) {
+ if (!basePath) {
+ initPromise = Promise.reject(new Error('A base path must be provided when calling `init` and the engine is not loaded.'));
+ return initPromise;
+ }
+ Engine.load(basePath, this.config.fileSizes[`${basePath}.wasm`]);
+ }
+ const me = this;
+ function doInit(promise) {
+ // Care! Promise chaining is bogus with old emscripten versions.
+ // This caused a regression with the Mono build (which uses an older emscripten version).
+ // Make sure to test that when refactoring.
+ return new Promise(function (resolve, reject) {
+ promise.then(function (response) {
+ const cloned = new Response(response.clone().body, { 'headers': [['content-type', 'application/wasm']] });
+ Godot(me.config.getModuleConfig(loadPath, cloned)).then(function (module) {
+ const paths = me.config.persistentPaths;
+ module['initFS'](paths).then(function (err) {
+ me.rtenv = module;
+ if (me.config.unloadAfterInit) {
+ Engine.unload();
+ }
+ resolve();
+ });
+ });
+ });
+ });
+ }
+ preloader.setProgressFunc(this.config.onProgress);
+ initPromise = doInit(loadPromise);
+ return initPromise;
+ },
+
+ /**
+ * Load a file so it is available in the instance's file system once it runs. Must be called **before** starting the
+ * instance.
+ *
+ * If not provided, the ``path`` is derived from the URL of the loaded file.
+ *
+ * @param {string|ArrayBuffer} file The file to preload.
+ *
+ * If a ``string`` the file will be loaded from that path.
+ *
+ * If an ``ArrayBuffer`` or a view on one, the buffer will used as the content of the file.
+ *
+ * @param {string=} path Path by which the file will be accessible. Required, if ``file`` is not a string.
+ *
+ * @returns {Promise} A Promise that resolves once the file is loaded.
+ */
+ preloadFile: function (file, path) {
+ return preloader.preload(file, path, this.config.fileSizes[file]);
+ },
+
+ /**
+ * Start the engine instance using the given override configuration (if any).
+ * :js:meth:`startGame <Engine.prototype.startGame>` can be used in typical cases instead.
+ *
+ * This will initialize the instance if it is not initialized. For manual initialization, see :js:meth:`init <Engine.prototype.init>`.
+ * The engine must be loaded beforehand.
+ *
+ * Fails if a canvas cannot be found on the page, or not specified in the configuration.
+ *
+ * @param {EngineConfig} override An optional configuration override.
+ * @return {Promise} Promise that resolves once the engine started.
+ */
+ start: function (override) {
+ this.config.update(override);
+ const me = this;
+ return me.init().then(function () {
+ if (!me.rtenv) {
+ return Promise.reject(new Error('The engine must be initialized before it can be started'));
+ }
+
+ let config = {};
+ try {
+ config = me.config.getGodotConfig(function () {
+ me.rtenv = null;
+ });
+ } catch (e) {
+ return Promise.reject(e);
+ }
+ // Godot configuration.
+ me.rtenv['initConfig'](config);
+
+ // Preload GDExtension libraries.
+ if (me.config.gdextensionLibs.length > 0 && !me.rtenv['loadDynamicLibrary']) {
+ return Promise.reject(new Error('GDExtension libraries are not supported by this engine version. '
+ + 'Enable "Extensions Support" for your export preset and/or build your custom template with "dlink_enabled=yes".'));
+ }
+ return new Promise(function (resolve, reject) {
+ for (const file of preloader.preloadedFiles) {
+ me.rtenv['copyToFS'](file.path, file.buffer);
+ }
+ preloader.preloadedFiles.length = 0; // Clear memory
+ me.rtenv['callMain'](me.config.args);
+ initPromise = null;
+ me.installServiceWorker();
+ resolve();
+ });
+ });
+ },
+
+ /**
+ * Start the game instance using the given configuration override (if any).
+ *
+ * This will initialize the instance if it is not initialized. For manual initialization, see :js:meth:`init <Engine.prototype.init>`.
+ *
+ * This will load the engine if it is not loaded, and preload the main pck.
+ *
+ * This method expects the initial config (or the override) to have both the :js:attr:`executable` and :js:attr:`mainPack`
+ * properties set (normally done by the editor during export).
+ *
+ * @param {EngineConfig} override An optional configuration override.
+ * @return {Promise} Promise that resolves once the game started.
+ */
+ startGame: function (override) {
+ this.config.update(override);
+ // Add main-pack argument.
+ const exe = this.config.executable;
+ const pack = this.config.mainPack || `${exe}.pck`;
+ this.config.args = ['--main-pack', pack].concat(this.config.args);
+ // Start and init with execName as loadPath if not inited.
+ const me = this;
+ return Promise.all([
+ this.init(exe),
+ this.preloadFile(pack, pack),
+ ]).then(function () {
+ return me.start.apply(me);
+ });
+ },
+
+ /**
+ * Create a file at the specified ``path`` with the passed as ``buffer`` in the instance's file system.
+ *
+ * @param {string} path The location where the file will be created.
+ * @param {ArrayBuffer} buffer The content of the file.
+ */
+ copyToFS: function (path, buffer) {
+ if (this.rtenv == null) {
+ throw new Error('Engine must be inited before copying files');
+ }
+ this.rtenv['copyToFS'](path, buffer);
+ },
+
+ /**
+ * Request that the current instance quit.
+ *
+ * This is akin the user pressing the close button in the window manager, and will
+ * have no effect if the engine has crashed, or is stuck in a loop.
+ *
+ */
+ requestQuit: function () {
+ if (this.rtenv) {
+ this.rtenv['request_quit']();
+ }
+ },
+
+ /**
+ * Install the progressive-web app service worker.
+ * @returns {Promise} The service worker registration promise.
+ */
+ installServiceWorker: function () {
+ if (this.config.serviceWorker && 'serviceWorker' in navigator) {
+ try {
+ return navigator.serviceWorker.register(this.config.serviceWorker);
+ } catch (e) {
+ return Promise.reject(e);
+ }
+ }
+ return Promise.resolve();
+ },
+ };
+
+ Engine.prototype = proto;
+ // Closure compiler exported instance methods.
+ Engine.prototype['init'] = Engine.prototype.init;
+ Engine.prototype['preloadFile'] = Engine.prototype.preloadFile;
+ Engine.prototype['start'] = Engine.prototype.start;
+ Engine.prototype['startGame'] = Engine.prototype.startGame;
+ Engine.prototype['copyToFS'] = Engine.prototype.copyToFS;
+ Engine.prototype['requestQuit'] = Engine.prototype.requestQuit;
+ Engine.prototype['installServiceWorker'] = Engine.prototype.installServiceWorker;
+ // Also expose static methods as instance methods
+ Engine.prototype['load'] = Engine.load;
+ Engine.prototype['unload'] = Engine.unload;
+ return new Engine(initConfig);
+ }
+
+ // Closure compiler exported static methods.
+ SafeEngine['load'] = Engine.load;
+ SafeEngine['unload'] = Engine.unload;
+
+ // Feature-detection utilities.
+ SafeEngine['isWebGLAvailable'] = Features.isWebGLAvailable;
+ SafeEngine['isFetchAvailable'] = Features.isFetchAvailable;
+ SafeEngine['isSecureContext'] = Features.isSecureContext;
+ SafeEngine['isCrossOriginIsolated'] = Features.isCrossOriginIsolated;
+ SafeEngine['isSharedArrayBufferAvailable'] = Features.isSharedArrayBufferAvailable;
+ SafeEngine['isAudioWorkletAvailable'] = Features.isAudioWorkletAvailable;
+ SafeEngine['getMissingFeatures'] = Features.getMissingFeatures;
+
+ return SafeEngine;
+}());
+if (typeof window !== 'undefined') {
+ window['Engine'] = Engine;
+}
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bl7si4bpm8ldj"
+path="res://.godot/imported/encuentralo.offline.png-ce1cbd4773e13f173d03d04add8a07ea.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://exports/encuentralo.offline.png"
+dest_files=["res://.godot/imported/encuentralo.offline.png-ce1cbd4773e13f173d03d04add8a07ea.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dkwkpwa3mhch1"
+path="res://.godot/imported/encuentralo.png-ebef951a18ebc9b62433ebb2b51f8074.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://exports/encuentralo.png"
+dest_files=["res://.godot/imported/encuentralo.png-ebef951a18ebc9b62433ebb2b51f8074.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+// This service worker is required to expose an exported Godot project as a
+// Progressive Web App. It provides an offline fallback page telling the user
+// that they need an Internet connection to run the project if desired.
+// Incrementing CACHE_VERSION will kick off the install event and force
+// previously cached resources to be updated from the network.
+/** @type {string} */
+const CACHE_VERSION = '1741828048|6101239422';
+/** @type {string} */
+const CACHE_PREFIX = 'Encuentralo-sw-cache-';
+const CACHE_NAME = CACHE_PREFIX + CACHE_VERSION;
+/** @type {string} */
+const OFFLINE_URL = 'encuentralo.offline.html';
+/** @type {boolean} */
+const ENSURE_CROSSORIGIN_ISOLATION_HEADERS = true;
+// Files that will be cached on load.
+/** @type {string[]} */
+const CACHED_FILES = ["encuentralo.html","encuentralo.js","encuentralo.offline.html","encuentralo.audio.worklet.js","encuentralo.audio.position.worklet.js"];
+// Files that we might not want the user to preload, and will only be cached on first load.
+/** @type {string[]} */
+const CACHEABLE_FILES = ["encuentralo.wasm","encuentralo.pck"];
+const FULL_CACHE = CACHED_FILES.concat(CACHEABLE_FILES);
+
+self.addEventListener('install', (event) => {
+ event.waitUntil(caches.open(CACHE_NAME).then((cache) => cache.addAll(CACHED_FILES)));
+});
+
+self.addEventListener('activate', (event) => {
+ event.waitUntil(caches.keys().then(
+ function (keys) {
+ // Remove old caches.
+ return Promise.all(keys.filter((key) => key.startsWith(CACHE_PREFIX) && key !== CACHE_NAME).map((key) => caches.delete(key)));
+ }
+ ).then(function () {
+ // Enable navigation preload if available.
+ return ('navigationPreload' in self.registration) ? self.registration.navigationPreload.enable() : Promise.resolve();
+ }));
+});
+
+/**
+ * Ensures that the response has the correct COEP/COOP headers
+ * @param {Response} response
+ * @returns {Response}
+ */
+function ensureCrossOriginIsolationHeaders(response) {
+ if (response.headers.get('Cross-Origin-Embedder-Policy') === 'require-corp'
+ && response.headers.get('Cross-Origin-Opener-Policy') === 'same-origin') {
+ return response;
+ }
+
+ const crossOriginIsolatedHeaders = new Headers(response.headers);
+ crossOriginIsolatedHeaders.set('Cross-Origin-Embedder-Policy', 'require-corp');
+ crossOriginIsolatedHeaders.set('Cross-Origin-Opener-Policy', 'same-origin');
+ const newResponse = new Response(response.body, {
+ status: response.status,
+ statusText: response.statusText,
+ headers: crossOriginIsolatedHeaders,
+ });
+
+ return newResponse;
+}
+
+/**
+ * Calls fetch and cache the result if it is cacheable
+ * @param {FetchEvent} event
+ * @param {Cache} cache
+ * @param {boolean} isCacheable
+ * @returns {Response}
+ */
+async function fetchAndCache(event, cache, isCacheable) {
+ // Use the preloaded response, if it's there
+ /** @type { Response } */
+ let response = await event.preloadResponse;
+ if (response == null) {
+ // Or, go over network.
+ response = await self.fetch(event.request);
+ }
+
+ if (ENSURE_CROSSORIGIN_ISOLATION_HEADERS) {
+ response = ensureCrossOriginIsolationHeaders(response);
+ }
+
+ if (isCacheable) {
+ // And update the cache
+ cache.put(event.request, response.clone());
+ }
+
+ return response;
+}
+
+self.addEventListener(
+ 'fetch',
+ /**
+ * Triggered on fetch
+ * @param {FetchEvent} event
+ */
+ (event) => {
+ const isNavigate = event.request.mode === 'navigate';
+ const url = event.request.url || '';
+ const referrer = event.request.referrer || '';
+ const base = referrer.slice(0, referrer.lastIndexOf('/') + 1);
+ const local = url.startsWith(base) ? url.replace(base, '') : '';
+ const isCacheable = FULL_CACHE.some((v) => v === local) || (base === referrer && base.endsWith(CACHED_FILES[0]));
+ if (isNavigate || isCacheable) {
+ event.respondWith((async () => {
+ // Try to use cache first
+ const cache = await caches.open(CACHE_NAME);
+ if (isNavigate) {
+ // Check if we have full cache during HTML page request.
+ /** @type {Response[]} */
+ const fullCache = await Promise.all(FULL_CACHE.map((name) => cache.match(name)));
+ const missing = fullCache.some((v) => v === undefined);
+ if (missing) {
+ try {
+ // Try network if some cached file is missing (so we can display offline page in case).
+ const response = await fetchAndCache(event, cache, isCacheable);
+ return response;
+ } catch (e) {
+ // And return the hopefully always cached offline page in case of network failure.
+ console.error('Network error: ', e); // eslint-disable-line no-console
+ return caches.match(OFFLINE_URL);
+ }
+ }
+ }
+ let cached = await cache.match(event.request);
+ if (cached != null) {
+ if (ENSURE_CROSSORIGIN_ISOLATION_HEADERS) {
+ cached = ensureCrossOriginIsolationHeaders(cached);
+ }
+ return cached;
+ }
+ // Try network if don't have it in cache.
+ const response = await fetchAndCache(event, cache, isCacheable);
+ return response;
+ })());
+ } else if (ENSURE_CROSSORIGIN_ISOLATION_HEADERS) {
+ event.respondWith((async () => {
+ let response = await fetch(event.request);
+ response = ensureCrossOriginIsolationHeaders(response);
+ return response;
+ })());
+ }
+ }
+);
+
+self.addEventListener('message', (event) => {
+ // No cross origin
+ if (event.origin !== self.origin) {
+ return;
+ }
+ const id = event.source.id || '';
+ const msg = event.data || '';
+ // Ensure it's one of our clients.
+ self.clients.get(id).then(function (client) {
+ if (!client) {
+ return; // Not a valid client.
+ }
+ if (msg === 'claim') {
+ self.skipWaiting().then(() => self.clients.claim());
+ } else if (msg === 'clear') {
+ caches.delete(CACHE_NAME);
+ } else if (msg === 'update') {
+ self.skipWaiting().then(() => self.clients.claim()).then(() => self.clients.matchAll()).then((all) => all.forEach((c) => c.navigate(c.url)));
+ }
+ });
+});
+
--- /dev/null
+extends Node
+
+var screen_dims : Vector2i
+var active_deck_path : String
+var deck: Array[Image]
+var ideal_symbol_size: Vector2
+var active_deck_name: String
+
+# game options
+# images per card
+@export var card_size : int = 7
+@export var maintain_aspect = false
+@export var dont_resize = false
+@export var random_rotation = false
+@export var card_layout_idx = 0
+
+signal new_card_requested
+
+# Called when the node enters the scene tree for the first time.
+func _ready():
+ add_user_signal("new_card_requested")
+ # peg this to a square
+ screen_dims = DisplayServer.window_get_size()
+ ideal_symbol_size.x = (screen_dims.x as float / 2 as float) / 8 as float
+ ideal_symbol_size.y = ideal_symbol_size.x
+ print(screen_dims)
+ print(ideal_symbol_size)
+
+
+# Called every frame. 'delta' is the elapsed time since the previous frame.
+func _process(delta):
+ pass
+
+func reset():
+ deck = []
+ active_deck_path = ""
--- /dev/null
+uid://c06vln5p7kpim
--- /dev/null
+<svg height="128" width="128" xmlns="http://www.w3.org/2000/svg"><rect x="2" y="2" width="124" height="124" rx="14" fill="#363d52" stroke="#212532" stroke-width="4"/><g transform="scale(.101) translate(122 122)"><g fill="#fff"><path d="M105 673v33q407 354 814 0v-33z"/><path fill="#478cbf" d="m105 673 152 14q12 1 15 14l4 67 132 10 8-61q2-11 15-15h162q13 4 15 15l8 61 132-10 4-67q3-13 15-14l152-14V427q30-39 56-81-35-59-83-108-43 20-82 47-40-37-88-64 7-51 8-102-59-28-123-42-26 43-46 89-49-7-98 0-20-46-46-89-64 14-123 42 1 51 8 102-48 27-88 64-39-27-82-47-48 49-83 108 26 42 56 81zm0 33v39c0 276 813 276 813 0v-39l-134 12-5 69q-2 10-14 13l-162 11q-12 0-16-11l-10-65H447l-10 65q-4 11-16 11l-162-11q-12-3-14-13l-5-69z"/><path d="M483 600c3 34 55 34 58 0v-86c-3-34-55-34-58 0z"/><circle cx="725" cy="526" r="90"/><circle cx="299" cy="526" r="90"/></g><g fill="#414042"><circle cx="307" cy="532" r="60"/><circle cx="717" cy="532" r="60"/></g></g></svg>
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b8n5cnkn7ocgu"
+path="res://.godot/imported/icon.svg-218a8f2b3041327d8a5756f3a245f83b.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://icon.svg"
+dest_files=["res://.godot/imported/icon.svg-218a8f2b3041327d8a5756f3a245f83b.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
+svg/scale=1.0
+editor/scale_with_editor_scale=false
+editor/convert_colors_with_editor_theme=false
--- /dev/null
+extends Control
+
+@onready var globals = get_node("/root/GlobalVars")
+@onready var play_button : Button = $HBoxContainer/VSplitContainer/HBoxContainer/VBoxContainer/play_button_container/PlayButton
+@onready var layout_option : OptionButton = $HBoxContainer/VSplitContainer/HBoxContainer/VBoxContainer2/VBoxContainer/OptionButton
+@onready var deck_picker = $HBoxContainer/VSplitContainer/HBoxContainer/VBoxContainer/add_deck_container/DeckAddButton/FileDialog
+
+var _on_data_loaded_callback = null
+var deck_select_menu_visible : bool = false
+var selected_deck_path : String = ""
+var item_list :ItemList
+var decks: Array
+
+# TODO:
+# - Deck validation on-load
+# - Move layout selection to its own scene
+# for reuse in the play scene, dynamic layout changes
+
+# Called when the node enters the scene tree for the first time.
+func _ready():
+ if (OS.get_name() == "Web"):
+ _on_data_loaded_callback = JavaScriptBridge.create_callback(_on_data_loaded)
+ var gdcallbacks: JavaScriptObject = JavaScriptBridge.get_interface("gd_callbacks")
+ gdcallbacks.dataLoaded = _on_data_loaded_callback
+
+ play_button.disabled = true
+ item_list = $ItemList
+ item_list.connect("item_selected", _on_deck_list_select)
+ deck_picker.set_file_mode(FileDialog.FileMode.FILE_MODE_OPEN_DIR)
+
+ var deck_src = "res://decks/"
+ var deck_dir = ResourceLoader.list_directory(deck_src)
+
+ print(deck_dir)
+ for each:String in deck_dir:
+ print(deck_src + each)
+ decks.push_back(deck_src + each)
+ item_list.add_item(each)
+ print(decks)
+
+# Called every frame. 'delta' is the elapsed time since the previous frame.
+func _process(_delta):
+ var _option_buttons = $HBoxContainer/VSplitContainer/HBoxContainer/VBoxContainer2
+ var maintain_aspect_button = $HBoxContainer/VSplitContainer/HBoxContainer/VBoxContainer2/maintain_aspect_button
+ var dont_resize_button = $HBoxContainer/VSplitContainer/HBoxContainer/VBoxContainer2/dont_resize_button
+ var rotation_button = $HBoxContainer/VSplitContainer/HBoxContainer/VBoxContainer2/rotation_button
+ globals.maintain_aspect = maintain_aspect_button.button_pressed
+ globals.dont_resize = dont_resize_button.button_pressed
+ globals.random_rotation = rotation_button.button_pressed
+ pass
+
+# pass the active deck(s) off to the play scene
+func _on_play_button_pressed():
+ if play_button.disabled:
+ pass
+ print("play button")
+ globals.active_deck_path = selected_deck_path
+ #globals.card_layout_idx = layout_option.get_item_index(layout_option.get_selected_id())
+ get_tree().change_scene_to_file("res://active_play.tscn")
+ pass # Replace with function body.
+
+
+func _on_deck_button_pressed():
+ print("deck select button")
+ $ItemList.visible = true
+ pass # Replace with function body.
+
+func _input(event):
+ if (event.is_action_released("close_deck_select_menu")):
+ $ItemList.visible = false
+ print("working deck selection is " + selected_deck_path)
+
+# grab the (for now) single selected deck
+# rebuild the full path name
+# save it for when we want to play
+func _on_deck_list_select(idx):
+ globals.active_deck_name = item_list.get_item_text(idx)
+ globals.active_deck_path = "res://decks/" + item_list.get_item_text(idx) + "/"
+ $HBoxContainer/VSplitContainer/HBoxContainer/VBoxContainer/play_button_container/PlayButton.text = "Play\n" + item_list.get_item_text(idx)
+ print("selected: " + selected_deck_path)
+ $ItemList.visible = false
+
+ generate_deck()
+ if globals.deck.size() > 0:
+ play_button.disabled = false
+
+func generate_deck():
+ globals.deck.clear()
+ print("Started play scene with active deck " + globals.active_deck_path)
+ var card_files = ResourceLoader.list_directory(globals.active_deck_path)
+ print("generating: ", card_files)
+ for each in card_files:
+ print(each)
+ if each.match("*.png"):
+ var img_base : CompressedTexture2D = load(globals.active_deck_path + each)
+ print(type_string(typeof(img_base)))
+ var img = img_base.get_image()
+
+ # hard compress to an "ideal" square, but it'll be nicer
+ # to have fuzzier support for non-1:1 images
+ var img_size = img.get_size()
+ var used = img.get_used_rect()
+
+ var new_size: Vector2 = img_size
+ var aspect: float = (used.size.y as float)/(used.size.x as float)
+
+ if !globals.dont_resize:
+ new_size = globals.ideal_symbol_size
+
+ if !globals.maintain_aspect:
+ new_size.x /= aspect
+ img.resize(new_size.x, new_size.y, Image.INTERPOLATE_TRILINEAR)
+
+ globals.deck.append(img)
+
+func _notification(what):
+ if what == NOTIFICATION_WM_CLOSE_REQUEST:
+ get_tree().quit() # default behavior
+
+func _on_quit_button_pressed() -> void:
+ _notification(NOTIFICATION_WM_CLOSE_REQUEST)
+ pass # Replace with function body.
+
+func _on_add_deck_button_pressed() -> void:
+ if (OS.get_name() == "Web"):
+ JavaScriptBridge.eval('loadData()')
+ else:
+ deck_picker.show()
+ pass # Replace with function body.
+
+func _on_file_dialog_file_selected(path: String) -> void:
+ if (OS.get_name() == "Web"):
+ pass
+ else:
+ print(path)
+ print(ProjectSettings.localize_path(path))
+ decks.push_back(path)
+ item_list.add_item(path)
+ deck_picker.hide()
+
+func _on_data_loaded(data: PackedByteArray) -> void:
+ if (data.size() == 0):
+ return
+ print(data.size())
+ var img:Image = Image.new()
+ img.load_png_from_buffer(data)
+ $HBoxContainer.add(img)
+ #load data here
--- /dev/null
+uid://cpfyqlxaueuxx
--- /dev/null
+[gd_scene load_steps=6 format=3 uid="uid://elb6fx1nerr2"]
+
+[ext_resource type="Script" uid="uid://cpfyqlxaueuxx" path="res://main_menu.gd" id="1_iseee"]
+[ext_resource type="PackedScene" uid="uid://vhcmu8n6wjb1" path="res://scenes/layouts/layout_picker.tscn" id="2_v5q73"]
+
+[sub_resource type="LabelSettings" id="LabelSettings_h8d6m"]
+font_size = 65
+
+[sub_resource type="CanvasItemMaterial" id="CanvasItemMaterial_wgaud"]
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_s7n6m"]
+bg_color = Color(0.0258714, 0.156889, 0.272457, 0.866667)
+
+[node name="Control" type="Control"]
+layout_mode = 3
+anchors_preset = 15
+anchor_right = 1.0
+anchor_bottom = 1.0
+grow_horizontal = 2
+grow_vertical = 2
+script = ExtResource("1_iseee")
+
+[node name="ColorRect" type="ColorRect" parent="."]
+layout_mode = 1
+anchors_preset = 15
+anchor_right = 1.0
+anchor_bottom = 1.0
+grow_horizontal = 2
+grow_vertical = 2
+size_flags_horizontal = 3
+color = Color(0.37, 0.6745, 1, 1)
+
+[node name="Camera2D" type="Camera2D" parent="."]
+anchor_mode = 0
+
+[node name="HBoxContainer" type="HBoxContainer" parent="."]
+layout_mode = 1
+anchors_preset = 15
+anchor_right = 1.0
+anchor_bottom = 1.0
+grow_horizontal = 2
+grow_vertical = 2
+alignment = 1
+
+[node name="VSplitContainer" type="VSplitContainer" parent="HBoxContainer"]
+layout_mode = 2
+size_flags_vertical = 4
+
+[node name="TitleLabel" type="Label" parent="HBoxContainer/VSplitContainer"]
+layout_mode = 2
+size_flags_vertical = 0
+text = "ENCUENTRALO"
+label_settings = SubResource("LabelSettings_h8d6m")
+horizontal_alignment = 1
+
+[node name="HBoxContainer" type="HBoxContainer" parent="HBoxContainer/VSplitContainer"]
+layout_mode = 2
+
+[node name="VBoxContainer" type="VBoxContainer" parent="HBoxContainer/VSplitContainer/HBoxContainer"]
+layout_mode = 2
+size_flags_horizontal = 4
+
+[node name="play_button_container" type="MarginContainer" parent="HBoxContainer/VSplitContainer/HBoxContainer/VBoxContainer"]
+custom_minimum_size = Vector2(200, 80)
+layout_mode = 2
+
+[node name="PlayButton" type="Button" parent="HBoxContainer/VSplitContainer/HBoxContainer/VBoxContainer/play_button_container"]
+layout_mode = 2
+text = "Play
+"
+
+[node name="deck_button_container" type="MarginContainer" parent="HBoxContainer/VSplitContainer/HBoxContainer/VBoxContainer"]
+custom_minimum_size = Vector2(200, 80)
+layout_mode = 2
+
+[node name="DeckSelectButton" type="Button" parent="HBoxContainer/VSplitContainer/HBoxContainer/VBoxContainer/deck_button_container"]
+layout_mode = 2
+text = "Select decks"
+
+[node name="add_deck_container" type="MarginContainer" parent="HBoxContainer/VSplitContainer/HBoxContainer/VBoxContainer"]
+custom_minimum_size = Vector2(200, 80)
+layout_mode = 2
+
+[node name="DeckAddButton" type="Button" parent="HBoxContainer/VSplitContainer/HBoxContainer/VBoxContainer/add_deck_container"]
+layout_mode = 2
+text = "Load a new deck"
+
+[node name="FileDialog" type="FileDialog" parent="HBoxContainer/VSplitContainer/HBoxContainer/VBoxContainer/add_deck_container/DeckAddButton"]
+title = "Select a deck folder"
+position = Vector2i(0, 36)
+access = 1
+use_native_dialog = true
+
+[node name="quit_button_container" type="MarginContainer" parent="HBoxContainer/VSplitContainer/HBoxContainer/VBoxContainer"]
+custom_minimum_size = Vector2(200, 80)
+layout_mode = 2
+
+[node name="quit_button" type="Button" parent="HBoxContainer/VSplitContainer/HBoxContainer/VBoxContainer/quit_button_container"]
+layout_mode = 2
+text = "Quit"
+
+[node name="VBoxContainer2" type="VBoxContainer" parent="HBoxContainer/VSplitContainer/HBoxContainer"]
+layout_direction = 2
+layout_mode = 2
+size_flags_horizontal = 3
+
+[node name="maintain_aspect_button" type="CheckButton" parent="HBoxContainer/VSplitContainer/HBoxContainer/VBoxContainer2"]
+layout_mode = 2
+tooltip_text = "Enable this to maintain the original aspect ratio of each image.
+Some images may be badly squished otherwise."
+text = "Maintain image aspect ratio"
+autowrap_mode = 2
+
+[node name="dont_resize_button" type="CheckButton" parent="HBoxContainer/VSplitContainer/HBoxContainer/VBoxContainer2"]
+layout_mode = 2
+tooltip_text = "Use the original size of each source image.
+If these are very different, this may look bad."
+text = "Don't resize images to fit"
+autowrap_mode = 2
+
+[node name="rotation_button" type="CheckButton" parent="HBoxContainer/VSplitContainer/HBoxContainer/VBoxContainer2"]
+layout_mode = 2
+tooltip_text = "Randomly rotate every image."
+button_pressed = true
+text = "Random rotation"
+autowrap_mode = 2
+
+[node name="HSeparator" type="HSeparator" parent="HBoxContainer/VSplitContainer/HBoxContainer/VBoxContainer2"]
+layout_mode = 2
+
+[node name="VBoxContainer" parent="HBoxContainer/VSplitContainer/HBoxContainer/VBoxContainer2" instance=ExtResource("2_v5q73")]
+layout_mode = 2
+
+[node name="ItemList" type="ItemList" parent="."]
+visible = false
+material = SubResource("CanvasItemMaterial_wgaud")
+layout_mode = 1
+anchors_preset = 8
+anchor_left = 0.5
+anchor_top = 0.5
+anchor_right = 0.5
+anchor_bottom = 0.5
+offset_left = -200.0
+offset_top = -150.0
+offset_right = 200.0
+offset_bottom = 150.0
+grow_horizontal = 2
+grow_vertical = 2
+theme_override_colors/guide_color = Color(0, 0, 0, 1)
+theme_override_colors/font_color = Color(0.775063, 0.775063, 0.775063, 1)
+theme_override_constants/v_separation = 0
+theme_override_constants/h_separation = 16
+theme_override_font_sizes/font_size = 24
+theme_override_styles/panel = SubResource("StyleBoxFlat_s7n6m")
+
+[node name="TextureRect" type="TextureRect" parent="."]
+layout_mode = 0
+offset_right = 40.0
+offset_bottom = 40.0
+
+[connection signal="pressed" from="HBoxContainer/VSplitContainer/HBoxContainer/VBoxContainer/play_button_container/PlayButton" to="." method="_on_play_button_pressed"]
+[connection signal="pressed" from="HBoxContainer/VSplitContainer/HBoxContainer/VBoxContainer/deck_button_container/DeckSelectButton" to="." method="_on_deck_button_pressed"]
+[connection signal="pressed" from="HBoxContainer/VSplitContainer/HBoxContainer/VBoxContainer/add_deck_container/DeckAddButton" to="." method="_on_add_deck_button_pressed"]
+[connection signal="dir_selected" from="HBoxContainer/VSplitContainer/HBoxContainer/VBoxContainer/add_deck_container/DeckAddButton/FileDialog" to="." method="_on_file_dialog_file_selected"]
+[connection signal="file_selected" from="HBoxContainer/VSplitContainer/HBoxContainer/VBoxContainer/add_deck_container/DeckAddButton/FileDialog" to="." method="_on_file_dialog_file_selected"]
+[connection signal="pressed" from="HBoxContainer/VSplitContainer/HBoxContainer/VBoxContainer/quit_button_container/quit_button" to="." method="_on_quit_button_pressed"]
--- /dev/null
+extends Control
+
+@onready var globals = get_node("/root/GlobalVars")
+@onready var layouts: Array[String] = ["scatter", "grid", "circle"]
+@onready var layout_subtree: Node
+@onready var item_slider: Range = $VBoxContainer/PanelContainer/MarginContainer/ControlContainer/VBoxContainer/HSlider
+@onready var slider_label: Label = $VBoxContainer/PanelContainer/MarginContainer/ControlContainer/VBoxContainer/Label
+@onready var deck_label: Label = $VBoxContainer/PanelContainer/MarginContainer/ControlContainer/MarginContainer/Label
+
+var local_deck: Array[Image]
+
+# TODO:
+# - Each image should become a button for in/correct selection
+# - Score that
+# - Tooltip for each with filename - ext would be handy too
+
+# Build up two distinct sets of symbols from the same source,
+# sharing only a single symbol between them.
+func new_card_set():
+ _on_clean_cards()
+ var left_card_set: Array[Image] = []
+ var right_card_set: Array[Image] = []
+
+ local_deck = globals.deck.duplicate()
+ local_deck.shuffle()
+ var shared_symbol: Image = local_deck.pop_back()
+ left_card_set.append(shared_symbol)
+ right_card_set.append(shared_symbol)
+
+ for n in range(globals.card_size-1):
+ left_card_set.append(local_deck.pop_back())
+ right_card_set.append(local_deck.pop_back())
+
+ layout_subtree.new_card_set(left_card_set, right_card_set)
+ local_deck.clear()
+
+# Called when the node enters the scene tree for the first time.
+func _ready():
+ globals.new_card_requested.connect(_on_new_card_requested)
+ _on_item_count_changed(false)
+ layout_subtree = load("res://scenes/layouts/"+layouts[globals.card_layout_idx]+".tscn").instantiate()
+ $VBoxContainer.add_child(layout_subtree)
+
+ deck_label.text = "Active deck: " + globals.active_deck_name
+ item_slider.value = globals.card_size
+ new_card_set()
+ pass # Replace with function body.
+
+func _on_clean_cards():
+ layout_subtree.clean_cards()
+
+ pass
+
+func _on_main_menu_jump_action():
+ globals.reset()
+ get_tree().change_scene_to_file("res://main_menu.tscn")
+
+# Called every frame. 'delta' is the elapsed time since the previous frame.
+func _process(_delta):
+ pass
+
+func _on_item_count_changed(changed: bool) -> void:
+ if changed:
+ globals.card_size = item_slider.value
+ new_card_set()
+ slider_label.text = "Items per card (" + String.num_int64(globals.card_size) + ")"
+ pass # Replace with function body.
+
+func card_layout_changed():
+ # replace CardContainer in the scene tree
+ #$VBoxContainer.remove_child(layout_subtree)
+ layout_subtree.free()
+ layout_subtree = load("res://scenes/layouts/"+layouts[globals.card_layout_idx]+".tscn").instantiate()
+ $VBoxContainer.add_child(layout_subtree)
+ new_card_set()
+
+func _on_new_card_requested():
+ new_card_set()
--- /dev/null
+uid://bt4c1ckn3st5d
--- /dev/null
+; Engine configuration file.
+; It's best edited using the editor UI and not directly,
+; since the parameters that go here are not all obvious.
+;
+; Format:
+; [section] ; section goes between []
+; param=value ; assign values to parameters
+
+config_version=5
+
+[application]
+
+config/name="Encuentralo"
+run/main_scene="res://main_menu.tscn"
+config/features=PackedStringArray("4.4", "Forward Plus")
+config/icon="res://icon.svg"
+
+[autoload]
+
+GlobalVars="*res://global_vars.gd"
+Global="*res://Global.tscn"
+
+[display]
+
+window/size/viewport_width=1400
+window/size/viewport_height=900
+
+[global_group]
+
+layout_subscribers="Anyone interested in a change to the layout."
+
+[input]
+
+close_deck_select_menu={
+"deadzone": 0.5,
+"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194305,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
+]
+}
+
+[rendering]
+
+textures/vram_compression/import_etc2_astc=true
--- /dev/null
+extends HBoxContainer
+@onready var globals = get_node("/root/GlobalVars")
+@export var radius = 200 #good for defaults for now
+
+# Called when the node enters the scene tree for the first time.
+func _ready() -> void:
+ $MarginContainer4.set_stretch_ratio(1.4)
+ pass # Replace with function body.
+
+# Called every frame. 'delta' is the elapsed time since the previous frame.
+func _process(_delta: float) -> void:
+ pass
+
+func new_card_set(left_card_set, right_card_set):
+ if globals.card_size >= 9:
+ radius = (globals.screen_dims.x/2) * 0.35
+ else: radius = (globals.screen_dims.x/2) * 0.3
+ new_card(left_card_set, $MarginContainer/LeftContainer)
+ new_card(right_card_set, $MarginContainer4/RightContainer)
+
+func new_card(card_set, container: Control):
+ # Create a list of TextureRects and associated images
+ # before adding to the scene tree, allowing an intermediary
+ # shuffle while maintaining the shared symbol and its connection
+ var local_deck = card_set.duplicate()
+ var texture_rects: Array[TextureRect]
+
+ for n in range(globals.card_size):
+ var tex_rect = TextureRect.new()
+ if n == 0:
+ tex_rect.connect("gui_input", _input_handler)
+ tex_rect.stretch_mode = TextureRect.STRETCH_KEEP_CENTERED
+ texture_rects.append(tex_rect)
+
+ var img: Image = local_deck.pop_front()
+ if globals.random_rotation:
+ for r in ((randi()%3)):
+ img.rotate_90(CLOCKWISE)
+
+ var img_tex : ImageTexture = ImageTexture.create_from_image(img)
+ tex_rect.set_texture(img_tex)
+
+ texture_rects.shuffle()
+ var n = 0
+ for t in texture_rects:
+ var angle = deg_to_rad(360.0/texture_rects.size() * n)
+ var new_pos : Vector2 = Vector2(sin(angle)*radius, cos(angle)*radius)
+ new_pos.y += globals.screen_dims.y * 0.35
+ t.set_position(new_pos)
+ container.add_child(t)
+ n+=1
+
+func _input_handler(event: InputEvent):
+ if event is InputEventMouseButton and event.pressed and event.button_index == MOUSE_BUTTON_LEFT:
+ globals.new_card_requested.emit()
+
+func clean_cards():
+ var left = $MarginContainer/LeftContainer
+ var right = $MarginContainer4/RightContainer
+
+ for c in left.get_children():
+ left.remove_child(c)
+ for c in right.get_children():
+ right.remove_child(c)
--- /dev/null
+uid://cftoau6g55mh2
--- /dev/null
+[gd_scene load_steps=2 format=3 uid="uid://bf5qc665tjgtf"]
+
+[ext_resource type="Script" uid="uid://cftoau6g55mh2" path="res://scenes/layouts/circle.gd" id="1_5a777"]
+
+[node name="HBoxContainer" type="HBoxContainer"]
+offset_right = 4.0
+size_flags_vertical = 3
+alignment = 1
+script = ExtResource("1_5a777")
+
+[node name="MarginContainer" type="MarginContainer" parent="."]
+layout_mode = 2
+size_flags_horizontal = 3
+
+[node name="LeftContainer" type="Control" parent="MarginContainer"]
+layout_mode = 2
+size_flags_horizontal = 4
+
+[node name="MarginContainer4" type="MarginContainer" parent="."]
+layout_mode = 2
+size_flags_horizontal = 3
+size_flags_stretch_ratio = 1.4
+
+[node name="RightContainer" type="Control" parent="MarginContainer4"]
+layout_mode = 2
+size_flags_horizontal = 4
--- /dev/null
+extends HBoxContainer
+@onready var globals = get_node("/root/GlobalVars")
+
+# Called when the node enters the scene tree for the first time.
+func _ready() -> void:
+ pass # Replace with function body.
+
+# Called every frame. 'delta' is the elapsed time since the previous frame.
+func _process(delta: float) -> void:
+ pass
+
+func new_card_set(left_card_set, right_card_set):
+ new_card(left_card_set, $LeftContainer)
+ new_card(right_card_set, $RightContainer)
+
+func new_card(card_set, container: Container):
+ # Create a list of TextureRects and associated images
+ # before adding to the scene tree, allowing an intermediary
+ # shuffle while maintaining the shared symbol and its connection
+ var local_deck = card_set.duplicate()
+ var texture_rects: Array[TextureRect]
+
+ # low symbol-count cards need tighter grids
+ # consider disabling grid play until this is nicer
+ if globals.card_size >= 9:
+ #spacers -= 2
+ #spacers = max(spacers, 1)
+ pass
+ elif globals.card_size <= 6:
+ #spacers += 2
+ pass
+ else:
+ #spacers = default_spacers
+ pass
+
+ for n in range(globals.card_size):
+ var tex_rect = TextureRect.new()
+ if n == 0:
+ tex_rect.connect("gui_input", _input_handler)
+ tex_rect.stretch_mode = TextureRect.STRETCH_KEEP_CENTERED
+ texture_rects.append(tex_rect)
+
+ var img: Image = local_deck.pop_front()
+ if globals.random_rotation:
+ for r in ((randi()%3)):
+ img.rotate_90(CLOCKWISE)
+
+ var img_tex : ImageTexture = ImageTexture.create_from_image(img)
+ tex_rect.set_texture(img_tex)
+
+ texture_rects.shuffle()
+ for t in texture_rects:
+ container.add_child(t)
+
+func _input_handler(event: InputEvent):
+ if event is InputEventMouseButton and event.pressed and event.button_index == MOUSE_BUTTON_LEFT:
+ globals.new_card_requested.emit()
+
+func clean_cards():
+ for c in $LeftContainer.get_children():
+ $LeftContainer.remove_child(c)
+ for c in $RightContainer.get_children():
+ $RightContainer.remove_child(c)
--- /dev/null
+uid://rd3ppvala8up
--- /dev/null
+[gd_scene load_steps=3 format=3 uid="uid://cxw3vnok35ewd"]
+
+[ext_resource type="Script" uid="uid://rd3ppvala8up" path="res://scenes/layouts/grid.gd" id="1_aahxk"]
+
+[sub_resource type="StyleBoxLine" id="StyleBoxLine_cqg5g"]
+color = Color(0, 0, 0, 0.588235)
+thickness = 10
+vertical = true
+
+[node name="HBoxContainer" type="HBoxContainer"]
+size_flags_vertical = 3
+script = ExtResource("1_aahxk")
+
+[node name="MarginContainer" type="MarginContainer" parent="."]
+layout_mode = 2
+theme_override_constants/margin_left = 0
+theme_override_constants/margin_right = 64
+
+[node name="LeftContainer" type="HFlowContainer" parent="."]
+layout_mode = 2
+size_flags_horizontal = 3
+size_flags_vertical = 4
+theme_override_constants/h_separation = 32
+theme_override_constants/v_separation = 32
+alignment = 2
+
+[node name="MarginContainer2" type="MarginContainer" parent="."]
+visible = false
+layout_mode = 2
+theme_override_constants/margin_left = 8
+theme_override_constants/margin_right = 8
+
+[node name="VSeparator" type="VSeparator" parent="."]
+layout_mode = 2
+size_flags_horizontal = 3
+size_flags_stretch_ratio = 0.2
+theme_override_styles/separator = SubResource("StyleBoxLine_cqg5g")
+
+[node name="MarginContainer3" type="MarginContainer" parent="."]
+visible = false
+layout_mode = 2
+theme_override_constants/margin_left = 8
+theme_override_constants/margin_right = 8
+
+[node name="RightContainer" type="HFlowContainer" parent="."]
+layout_mode = 2
+size_flags_horizontal = 3
+size_flags_vertical = 4
+theme_override_constants/h_separation = 32
+theme_override_constants/v_separation = 32
+
+[node name="MarginContainer4" type="MarginContainer" parent="."]
+layout_mode = 2
+theme_override_constants/margin_left = 64
+theme_override_constants/margin_right = 0
--- /dev/null
+extends VBoxContainer
+
+@onready var globals = get_node("/root/GlobalVars")
+
+# Called when the node enters the scene tree for the first time.
+func _ready() -> void:
+ $OptionButton.select(globals.card_layout_idx)
+ pass # Replace with function body.
+
+
+# Called every frame. 'delta' is the elapsed time since the previous frame.
+func _process(_delta: float) -> void:
+ pass
+
+func _on_option_button_item_selected(index: int) -> void:
+ globals.card_layout_idx = index
+ get_tree().call_group("layout_subscribers", "card_layout_changed")
+ pass # Replace with function body.
--- /dev/null
+uid://ckyunbkrck4y7
--- /dev/null
+[gd_scene load_steps=2 format=3 uid="uid://vhcmu8n6wjb1"]
+
+[ext_resource type="Script" uid="uid://ckyunbkrck4y7" path="res://scenes/layouts/layout_picker.gd" id="1_ktpdl"]
+
+[node name="VBoxContainer" type="VBoxContainer"]
+script = ExtResource("1_ktpdl")
+
+[node name="Label" type="Label" parent="."]
+layout_mode = 2
+text = "Card format:"
+
+[node name="OptionButton" type="OptionButton" parent="."]
+layout_mode = 2
+selected = 0
+allow_reselect = true
+item_count = 3
+popup/item_0/text = "Scatter"
+popup/item_0/id = 3
+popup/item_1/text = "Grid"
+popup/item_1/id = 1
+popup/item_2/text = "Circle"
+popup/item_2/id = 1
+
+[connection signal="item_selected" from="OptionButton" to="." method="_on_option_button_item_selected"]
--- /dev/null
+extends HBoxContainer
+@onready var globals = get_node("/root/GlobalVars")
+const default_spacers = 12
+@export var spacers = default_spacers
+
+# Called when the node enters the scene tree for the first time.
+func _ready() -> void:
+ pass # Replace with function body.
+
+# Called every frame. 'delta' is the elapsed time since the previous frame.
+func _process(delta: float) -> void:
+ pass
+
+func new_card_set(left_card_set, right_card_set):
+ new_card(left_card_set, $LeftContainer)
+ new_card(right_card_set, $RightContainer)
+
+func new_card(card_set, container: Container):
+
+ # TODO: Would be nice to use this same bit to
+ # increase margins between items, too.
+ # NOTE: 9 is definitely the current minimum for needing adjustments.
+ # NOTE: Decreasing spacer count is okay, but dimensions a bit bigger
+ # than current default can handle 12 items pretty nicely.
+ spacers = default_spacers
+ if globals.card_size >= 9:
+ spacers -= 1
+ spacers = max(spacers, 1)
+ pass
+ elif globals.card_size <= 6:
+ spacers += 2
+
+ # Create a list of TextureRects and associated images
+ # before adding to the scene tree, allowing an intermediary
+ # shuffle while maintaining the shared symbol and its connection
+ var local_deck = card_set.duplicate()
+ var texture_rects: Array[TextureRect]
+
+ for n in range(globals.card_size):
+ var tex_rect = TextureRect.new()
+ if n == 0:
+ tex_rect.connect("gui_input", _input_handler)
+ tex_rect.stretch_mode = TextureRect.STRETCH_KEEP_CENTERED
+ texture_rects.append(tex_rect)
+
+ var img: Image = local_deck.pop_front()
+ if globals.random_rotation:
+ for r in ((randi()%3)):
+ img.rotate_90(CLOCKWISE)
+
+ var img_tex : ImageTexture = ImageTexture.create_from_image(img)
+ tex_rect.set_texture(img_tex)
+
+ texture_rects.shuffle()
+ for t in texture_rects:
+ container.add_child(t)
+ if spacers > 0:
+ for r in randi()%spacers:
+ var empty = TextureRect.new()
+ var tex = ImageTexture.new()
+ #tex.set_size_override(globals.ideal_symbol_size)
+ #empty.stretch_mode = TextureRect.STRETCH_KEEP_CENTERED
+ #empty.set_texture(tex)
+ container.add_child(empty)
+
+func _input_handler(event: InputEvent):
+ if event is InputEventMouseButton and event.pressed and event.button_index == MOUSE_BUTTON_LEFT:
+ globals.new_card_requested.emit()
+
+func clean_cards():
+ for c in $LeftContainer.get_children():
+ $LeftContainer.remove_child(c)
+ for c in $RightContainer.get_children():
+ $RightContainer.remove_child(c)
--- /dev/null
+uid://dctx3ykcjhs4v
--- /dev/null
+[gd_scene load_steps=3 format=3 uid="uid://cn3tpm21fxf63"]
+
+[ext_resource type="Script" uid="uid://dctx3ykcjhs4v" path="res://scenes/layouts/scatter.gd" id="1_vdlms"]
+
+[sub_resource type="StyleBoxLine" id="StyleBoxLine_cqg5g"]
+color = Color(0, 0, 0, 0.588235)
+thickness = 10
+vertical = true
+
+[node name="HBoxContainer" type="HBoxContainer"]
+size_flags_vertical = 3
+script = ExtResource("1_vdlms")
+
+[node name="MarginContainer" type="MarginContainer" parent="."]
+layout_mode = 2
+theme_override_constants/margin_left = 0
+theme_override_constants/margin_right = 64
+
+[node name="LeftContainer" type="HFlowContainer" parent="."]
+layout_mode = 2
+size_flags_horizontal = 3
+size_flags_vertical = 4
+theme_override_constants/h_separation = 32
+theme_override_constants/v_separation = 32
+alignment = 1
+
+[node name="MarginContainer2" type="MarginContainer" parent="."]
+visible = false
+layout_mode = 2
+theme_override_constants/margin_left = 8
+theme_override_constants/margin_right = 8
+
+[node name="VSeparator" type="VSeparator" parent="."]
+layout_mode = 2
+size_flags_horizontal = 3
+size_flags_stretch_ratio = 0.36
+theme_override_styles/separator = SubResource("StyleBoxLine_cqg5g")
+
+[node name="MarginContainer3" type="MarginContainer" parent="."]
+visible = false
+layout_mode = 2
+theme_override_constants/margin_left = 8
+theme_override_constants/margin_right = 8
+
+[node name="RightContainer" type="HFlowContainer" parent="."]
+layout_mode = 2
+size_flags_horizontal = 3
+size_flags_vertical = 4
+theme_override_constants/h_separation = 32
+theme_override_constants/v_separation = 32
+alignment = 1
+
+[node name="MarginContainer4" type="MarginContainer" parent="."]
+layout_mode = 2
+theme_override_constants/margin_left = 64
+theme_override_constants/margin_right = 0
--- /dev/null
+extends HBoxContainer
+@onready var globals = get_node("/root/GlobalVars")
+const default_spacers = 6
+@export var spacers = default_spacers
+
+# Called when the node enters the scene tree for the first time.
+func _ready() -> void:
+ pass # Replace with function body.
+
+# Called every frame. 'delta' is the elapsed time since the previous frame.
+func _process(delta: float) -> void:
+ pass
+
+func new_card(card_set, container: Container):
+
+ # TODO: Would be nice to use this same bit to
+ # increase margins between items, too
+ if globals.card_size >= 10:
+ spacers -= globals.card_size-spacers
+ spacers = max(spacers, 1)
+ else:
+ spacers = default_spacers
+
+ var local_deck = card_set.duplicate()
+ for n in range(globals.card_size):
+ var img: Image = local_deck.pop_back()
+
+ if globals.random_rotation:
+ for rr in ((randi()%3)):
+ img.rotate_90(CLOCKWISE)
+
+ var img_tex : ImageTexture = ImageTexture.create_from_image(img)
+ var tex_rect : TextureRect = TextureRect.new()
+ tex_rect.stretch_mode = TextureRect.STRETCH_KEEP_CENTERED
+
+ tex_rect.set_texture(img_tex)
+ container.add_child(tex_rect)
+
+ if spacers > 0:
+ for r in randi()%spacers:
+ var empty = TextureRect.new()
+ var tex = ImageTexture.new()
+ #tex.set_size_override(globals.ideal_symbol_size)
+ #empty.stretch_mode = TextureRect.STRETCH_KEEP_CENTERED
+ #empty.set_texture(tex)
+ container.add_child(empty)
--- /dev/null
+uid://bgrh5x4r6i6y4
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bs3coke8l8vvo"
+path="res://.godot/imported/encuentralo.apple-touch-icon.png-e44702bd1397ca218b0d1e883b3b8a13.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://server/html/encuentralo.apple-touch-icon.png"
+dest_files=["res://.godot/imported/encuentralo.apple-touch-icon.png-e44702bd1397ca218b0d1e883b3b8a13.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+/**************************************************************************/
+/* godot.audio.position.worklet.js */
+/**************************************************************************/
+/* This file is part of: */
+/* GODOT ENGINE */
+/* https://godotengine.org */
+/**************************************************************************/
+/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
+/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
+/* */
+/* Permission is hereby granted, free of charge, to any person obtaining */
+/* a copy of this software and associated documentation files (the */
+/* "Software"), to deal in the Software without restriction, including */
+/* without limitation the rights to use, copy, modify, merge, publish, */
+/* distribute, sublicense, and/or sell copies of the Software, and to */
+/* permit persons to whom the Software is furnished to do so, subject to */
+/* the following conditions: */
+/* */
+/* The above copyright notice and this permission notice shall be */
+/* included in all copies or substantial portions of the Software. */
+/* */
+/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
+/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
+/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
+/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
+/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
+/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
+/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
+/**************************************************************************/
+
+const POST_THRESHOLD_S = 0.1;
+
+class GodotPositionReportingProcessor extends AudioWorkletProcessor {
+ constructor(...args) {
+ super(...args);
+ this.lastPostTime = currentTime;
+ this.position = 0;
+ this.ended = false;
+
+ this.port.onmessage = (event) => {
+ if (event?.data?.type === 'ended') {
+ this.ended = true;
+ }
+ };
+ }
+
+ process(inputs, _outputs, _parameters) {
+ if (this.ended) {
+ return false;
+ }
+
+ if (inputs.length > 0) {
+ const input = inputs[0];
+ if (input.length > 0) {
+ this.position += input[0].length;
+ }
+ }
+
+ // Posting messages is expensive. Let's limit the number of posts.
+ if (currentTime - this.lastPostTime > POST_THRESHOLD_S) {
+ this.lastPostTime = currentTime;
+ this.port.postMessage({ type: 'position', data: this.position });
+ }
+
+ return true;
+ }
+}
+
+registerProcessor('godot-position-reporting-processor', GodotPositionReportingProcessor);
--- /dev/null
+/**************************************************************************/
+/* audio.worklet.js */
+/**************************************************************************/
+/* This file is part of: */
+/* GODOT ENGINE */
+/* https://godotengine.org */
+/**************************************************************************/
+/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
+/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
+/* */
+/* Permission is hereby granted, free of charge, to any person obtaining */
+/* a copy of this software and associated documentation files (the */
+/* "Software"), to deal in the Software without restriction, including */
+/* without limitation the rights to use, copy, modify, merge, publish, */
+/* distribute, sublicense, and/or sell copies of the Software, and to */
+/* permit persons to whom the Software is furnished to do so, subject to */
+/* the following conditions: */
+/* */
+/* The above copyright notice and this permission notice shall be */
+/* included in all copies or substantial portions of the Software. */
+/* */
+/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
+/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
+/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
+/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
+/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
+/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
+/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
+/**************************************************************************/
+
+class RingBuffer {
+ constructor(p_buffer, p_state, p_threads) {
+ this.buffer = p_buffer;
+ this.avail = p_state;
+ this.threads = p_threads;
+ this.rpos = 0;
+ this.wpos = 0;
+ }
+
+ data_left() {
+ return this.threads ? Atomics.load(this.avail, 0) : this.avail;
+ }
+
+ space_left() {
+ return this.buffer.length - this.data_left();
+ }
+
+ read(output) {
+ const size = this.buffer.length;
+ let from = 0;
+ let to_write = output.length;
+ if (this.rpos + to_write > size) {
+ const high = size - this.rpos;
+ output.set(this.buffer.subarray(this.rpos, size));
+ from = high;
+ to_write -= high;
+ this.rpos = 0;
+ }
+ if (to_write) {
+ output.set(this.buffer.subarray(this.rpos, this.rpos + to_write), from);
+ }
+ this.rpos += to_write;
+ if (this.threads) {
+ Atomics.add(this.avail, 0, -output.length);
+ Atomics.notify(this.avail, 0);
+ } else {
+ this.avail -= output.length;
+ }
+ }
+
+ write(p_buffer) {
+ const to_write = p_buffer.length;
+ const mw = this.buffer.length - this.wpos;
+ if (mw >= to_write) {
+ this.buffer.set(p_buffer, this.wpos);
+ this.wpos += to_write;
+ if (mw === to_write) {
+ this.wpos = 0;
+ }
+ } else {
+ const high = p_buffer.subarray(0, mw);
+ const low = p_buffer.subarray(mw);
+ this.buffer.set(high, this.wpos);
+ this.buffer.set(low);
+ this.wpos = low.length;
+ }
+ if (this.threads) {
+ Atomics.add(this.avail, 0, to_write);
+ Atomics.notify(this.avail, 0);
+ } else {
+ this.avail += to_write;
+ }
+ }
+}
+
+class GodotProcessor extends AudioWorkletProcessor {
+ constructor() {
+ super();
+ this.threads = false;
+ this.running = true;
+ this.lock = null;
+ this.notifier = null;
+ this.output = null;
+ this.output_buffer = new Float32Array();
+ this.input = null;
+ this.input_buffer = new Float32Array();
+ this.port.onmessage = (event) => {
+ const cmd = event.data['cmd'];
+ const data = event.data['data'];
+ this.parse_message(cmd, data);
+ };
+ }
+
+ process_notify() {
+ if (this.notifier) {
+ Atomics.add(this.notifier, 0, 1);
+ Atomics.notify(this.notifier, 0);
+ }
+ }
+
+ parse_message(p_cmd, p_data) {
+ if (p_cmd === 'start' && p_data) {
+ const state = p_data[0];
+ let idx = 0;
+ this.threads = true;
+ this.lock = state.subarray(idx, ++idx);
+ this.notifier = state.subarray(idx, ++idx);
+ const avail_in = state.subarray(idx, ++idx);
+ const avail_out = state.subarray(idx, ++idx);
+ this.input = new RingBuffer(p_data[1], avail_in, true);
+ this.output = new RingBuffer(p_data[2], avail_out, true);
+ } else if (p_cmd === 'stop') {
+ this.running = false;
+ this.output = null;
+ this.input = null;
+ this.lock = null;
+ this.notifier = null;
+ } else if (p_cmd === 'start_nothreads') {
+ this.output = new RingBuffer(p_data[0], p_data[0].length, false);
+ } else if (p_cmd === 'chunk') {
+ this.output.write(p_data);
+ }
+ }
+
+ static array_has_data(arr) {
+ return arr.length && arr[0].length && arr[0][0].length;
+ }
+
+ process(inputs, outputs, parameters) {
+ if (!this.running) {
+ return false; // Stop processing.
+ }
+ if (this.output === null) {
+ return true; // Not ready yet, keep processing.
+ }
+ const process_input = GodotProcessor.array_has_data(inputs);
+ if (process_input) {
+ const input = inputs[0];
+ const chunk = input[0].length * input.length;
+ if (this.input_buffer.length !== chunk) {
+ this.input_buffer = new Float32Array(chunk);
+ }
+ if (!this.threads) {
+ GodotProcessor.write_input(this.input_buffer, input);
+ this.port.postMessage({ 'cmd': 'input', 'data': this.input_buffer });
+ } else if (this.input.space_left() >= chunk) {
+ GodotProcessor.write_input(this.input_buffer, input);
+ this.input.write(this.input_buffer);
+ } else {
+ // this.port.postMessage('Input buffer is full! Skipping input frame.'); // Uncomment this line to debug input buffer.
+ }
+ }
+ const process_output = GodotProcessor.array_has_data(outputs);
+ if (process_output) {
+ const output = outputs[0];
+ const chunk = output[0].length * output.length;
+ if (this.output_buffer.length !== chunk) {
+ this.output_buffer = new Float32Array(chunk);
+ }
+ if (this.output.data_left() >= chunk) {
+ this.output.read(this.output_buffer);
+ GodotProcessor.write_output(output, this.output_buffer);
+ if (!this.threads) {
+ this.port.postMessage({ 'cmd': 'read', 'data': chunk });
+ }
+ } else {
+ // this.port.postMessage('Output buffer has not enough frames! Skipping output frame.'); // Uncomment this line to debug output buffer.
+ }
+ }
+ this.process_notify();
+ return true;
+ }
+
+ static write_output(dest, source) {
+ const channels = dest.length;
+ for (let ch = 0; ch < channels; ch++) {
+ for (let sample = 0; sample < dest[ch].length; sample++) {
+ dest[ch][sample] = source[sample * channels + ch];
+ }
+ }
+ }
+
+ static write_input(dest, source) {
+ const channels = source.length;
+ for (let ch = 0; ch < channels; ch++) {
+ for (let sample = 0; sample < source[ch].length; sample++) {
+ dest[sample * channels + ch] = source[ch][sample];
+ }
+ }
+ }
+}
+
+registerProcessor('godot-processor', GodotProcessor);
--- /dev/null
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0">
+ <title>Encuentralo</title>
+ <style>
+html, body, #canvas {
+ margin: 0;
+ padding: 0;
+ border: 0;
+}
+
+body {
+ color: white;
+ background-color: black;
+ overflow: hidden;
+ touch-action: none;
+}
+
+#canvas {
+ display: block;
+}
+
+#canvas:focus {
+ outline: none;
+}
+
+#status, #status-splash, #status-progress {
+ position: absolute;
+ left: 0;
+ right: 0;
+}
+
+#status, #status-splash {
+ top: 0;
+ bottom: 0;
+}
+
+#status {
+ background-color: #242424;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ visibility: hidden;
+}
+
+#status-splash {
+ max-height: 100%;
+ max-width: 100%;
+ margin: auto;
+}
+
+#status-splash.show-image--false {
+ display: none;
+}
+
+#status-splash.fullsize--true {
+ height: 100%;
+ width: 100%;
+ object-fit: contain;
+}
+
+#status-splash.use-filter--false {
+ image-rendering: pixelated;
+}
+
+#status-progress, #status-notice {
+ display: none;
+}
+
+#status-progress {
+ bottom: 10%;
+ width: 50%;
+ margin: 0 auto;
+}
+
+#status-notice {
+ background-color: #5b3943;
+ border-radius: 0.5rem;
+ border: 1px solid #9b3943;
+ color: #e0e0e0;
+ font-family: 'Noto Sans', 'Droid Sans', Arial, sans-serif;
+ line-height: 1.3;
+ margin: 0 2rem;
+ overflow: hidden;
+ padding: 1rem;
+ text-align: center;
+ z-index: 1;
+}
+ </style>
+
+ </head>
+ <body>
+ <canvas id="canvas">
+ Your browser does not support the canvas tag.
+ </canvas>
+
+ <noscript>
+ Your browser does not support JavaScript.
+ </noscript>
+
+ <div id="status">
+ <img id="status-splash" class="show-image--true fullsize--true use-filter--true" src="encuentralo.png" alt="">
+ <progress id="status-progress"></progress>
+ <div id="status-notice"></div>
+ </div>
+
+ <script src="encuentralo.js"></script>
+ <script>
+const GODOT_CONFIG = {"args":[],"canvasResizePolicy":2,"ensureCrossOriginIsolationHeaders":true,"executable":"encuentralo","experimentalVK":false,"fileSizes":{"encuentralo.pck":3964800,"encuentralo.wasm":52106500},"focusCanvas":true,"gdextensionLibs":[]};
+const GODOT_THREADS_ENABLED = false;
+const engine = new Engine(GODOT_CONFIG);
+
+(function () {
+ const statusOverlay = document.getElementById('status');
+ const statusProgress = document.getElementById('status-progress');
+ const statusNotice = document.getElementById('status-notice');
+
+ let initializing = true;
+ let statusMode = '';
+
+ function setStatusMode(mode) {
+ if (statusMode === mode || !initializing) {
+ return;
+ }
+ if (mode === 'hidden') {
+ statusOverlay.remove();
+ initializing = false;
+ return;
+ }
+ statusOverlay.style.visibility = 'visible';
+ statusProgress.style.display = mode === 'progress' ? 'block' : 'none';
+ statusNotice.style.display = mode === 'notice' ? 'block' : 'none';
+ statusMode = mode;
+ }
+
+ function setStatusNotice(text) {
+ while (statusNotice.lastChild) {
+ statusNotice.removeChild(statusNotice.lastChild);
+ }
+ const lines = text.split('\n');
+ lines.forEach((line) => {
+ statusNotice.appendChild(document.createTextNode(line));
+ statusNotice.appendChild(document.createElement('br'));
+ });
+ }
+
+ function displayFailureNotice(err) {
+ console.error(err);
+ if (err instanceof Error) {
+ setStatusNotice(err.message);
+ } else if (typeof err === 'string') {
+ setStatusNotice(err);
+ } else {
+ setStatusNotice('An unknown error occurred.');
+ }
+ setStatusMode('notice');
+ initializing = false;
+ }
+
+ const missing = Engine.getMissingFeatures({
+ threads: GODOT_THREADS_ENABLED,
+ });
+
+ if (missing.length !== 0) {
+ if (GODOT_CONFIG['serviceWorker'] && GODOT_CONFIG['ensureCrossOriginIsolationHeaders'] && 'serviceWorker' in navigator) {
+ let serviceWorkerRegistrationPromise;
+ try {
+ serviceWorkerRegistrationPromise = navigator.serviceWorker.getRegistration();
+ } catch (err) {
+ serviceWorkerRegistrationPromise = Promise.reject(new Error('Service worker registration failed.'));
+ }
+ // There's a chance that installing the service worker would fix the issue
+ Promise.race([
+ serviceWorkerRegistrationPromise.then((registration) => {
+ if (registration != null) {
+ return Promise.reject(new Error('Service worker already exists.'));
+ }
+ return registration;
+ }).then(() => engine.installServiceWorker()),
+ // For some reason, `getRegistration()` can stall
+ new Promise((resolve) => {
+ setTimeout(() => resolve(), 2000);
+ }),
+ ]).then(() => {
+ // Reload if there was no error.
+ window.location.reload();
+ }).catch((err) => {
+ console.error('Error while registering service worker:', err);
+ });
+ } else {
+ // Display the message as usual
+ const missingMsg = 'Error\nThe following features required to run Godot projects on the Web are missing:\n';
+ displayFailureNotice(missingMsg + missing.join('\n'));
+ }
+ } else {
+ setStatusMode('progress');
+ engine.startGame({
+ 'onProgress': function (current, total) {
+ if (current > 0 && total > 0) {
+ statusProgress.value = current;
+ statusProgress.max = total;
+ } else {
+ statusProgress.removeAttribute('value');
+ statusProgress.removeAttribute('max');
+ }
+ },
+ }).then(() => {
+ setStatusMode('hidden');
+ }, displayFailureNotice);
+ }
+}());
+ </script>
+ </body>
+</html>
+
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://bnlaq1b1n6o5h"
+path="res://.godot/imported/encuentralo.icon.png-eef739054dde53b9daf06a0daa0438ad.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://server/html/encuentralo.icon.png"
+dest_files=["res://.godot/imported/encuentralo.icon.png-eef739054dde53b9daf06a0daa0438ad.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+
+var Godot = (() => {
+ var _scriptName = typeof document != 'undefined' ? document.currentScript?.src : undefined;
+
+ return (
+function(moduleArg = {}) {
+ var moduleRtn;
+
+var Module=moduleArg;var readyPromiseResolve,readyPromiseReject;var readyPromise=new Promise((resolve,reject)=>{readyPromiseResolve=resolve;readyPromiseReject=reject});var ENVIRONMENT_IS_WEB=typeof window=="object";var ENVIRONMENT_IS_WORKER=typeof importScripts=="function";var ENVIRONMENT_IS_NODE=typeof process=="object"&&typeof process.versions=="object"&&typeof process.versions.node=="string";var moduleOverrides=Object.assign({},Module);var arguments_=[];var thisProgram="./this.program";var quit_=(status,toThrow)=>{throw toThrow};var scriptDirectory="";function locateFile(path){if(Module["locateFile"]){return Module["locateFile"](path,scriptDirectory)}return scriptDirectory+path}var readAsync,readBinary;if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href}else if(typeof document!="undefined"&&document.currentScript){scriptDirectory=document.currentScript.src}if(_scriptName){scriptDirectory=_scriptName}if(scriptDirectory.startsWith("blob:")){scriptDirectory=""}else{scriptDirectory=scriptDirectory.substr(0,scriptDirectory.replace(/[?#].*/,"").lastIndexOf("/")+1)}{if(ENVIRONMENT_IS_WORKER){readBinary=url=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.responseType="arraybuffer";xhr.send(null);return new Uint8Array(xhr.response)}}readAsync=url=>fetch(url,{credentials:"same-origin"}).then(response=>{if(response.ok){return response.arrayBuffer()}return Promise.reject(new Error(response.status+" : "+response.url))})}}else{}var out=Module["print"]||console.log.bind(console);var err=Module["printErr"]||console.error.bind(console);Object.assign(Module,moduleOverrides);moduleOverrides=null;if(Module["arguments"])arguments_=Module["arguments"];if(Module["thisProgram"])thisProgram=Module["thisProgram"];if(Module["quit"])quit_=Module["quit"];var wasmBinary;if(Module["wasmBinary"])wasmBinary=Module["wasmBinary"];var wasmMemory;var ABORT=false;var EXITSTATUS;var HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAP64,HEAPU64,HEAPF64;function updateMemoryViews(){var b=wasmMemory.buffer;Module["HEAP8"]=HEAP8=new Int8Array(b);Module["HEAP16"]=HEAP16=new Int16Array(b);Module["HEAPU8"]=HEAPU8=new Uint8Array(b);Module["HEAPU16"]=HEAPU16=new Uint16Array(b);Module["HEAP32"]=HEAP32=new Int32Array(b);Module["HEAPU32"]=HEAPU32=new Uint32Array(b);Module["HEAPF32"]=HEAPF32=new Float32Array(b);Module["HEAPF64"]=HEAPF64=new Float64Array(b);Module["HEAP64"]=HEAP64=new BigInt64Array(b);Module["HEAPU64"]=HEAPU64=new BigUint64Array(b)}var __ATPRERUN__=[];var __ATINIT__=[];var __ATMAIN__=[];var __ATEXIT__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;var runtimeExited=false;function preRun(){if(Module["preRun"]){if(typeof Module["preRun"]=="function")Module["preRun"]=[Module["preRun"]];while(Module["preRun"].length){addOnPreRun(Module["preRun"].shift())}}callRuntimeCallbacks(__ATPRERUN__)}function initRuntime(){runtimeInitialized=true;if(!Module["noFSInit"]&&!FS.init.initialized)FS.init();FS.ignorePermissions=false;TTY.init();callRuntimeCallbacks(__ATINIT__)}function preMain(){callRuntimeCallbacks(__ATMAIN__)}function exitRuntime(){___funcs_on_exit();callRuntimeCallbacks(__ATEXIT__);FS.quit();TTY.shutdown();IDBFS.quit();runtimeExited=true}function postRun(){if(Module["postRun"]){if(typeof Module["postRun"]=="function")Module["postRun"]=[Module["postRun"]];while(Module["postRun"].length){addOnPostRun(Module["postRun"].shift())}}callRuntimeCallbacks(__ATPOSTRUN__)}function addOnPreRun(cb){__ATPRERUN__.unshift(cb)}function addOnInit(cb){__ATINIT__.unshift(cb)}function addOnPostRun(cb){__ATPOSTRUN__.unshift(cb)}var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;function getUniqueRunDependency(id){return id}function addRunDependency(id){runDependencies++;Module["monitorRunDependencies"]?.(runDependencies)}function removeRunDependency(id){runDependencies--;Module["monitorRunDependencies"]?.(runDependencies);if(runDependencies==0){if(runDependencyWatcher!==null){clearInterval(runDependencyWatcher);runDependencyWatcher=null}if(dependenciesFulfilled){var callback=dependenciesFulfilled;dependenciesFulfilled=null;callback()}}}function abort(what){Module["onAbort"]?.(what);what="Aborted("+what+")";err(what);ABORT=true;EXITSTATUS=1;what+=". Build with -sASSERTIONS for more info.";var e=new WebAssembly.RuntimeError(what);readyPromiseReject(e);throw e}var dataURIPrefix="data:application/octet-stream;base64,";var isDataURI=filename=>filename.startsWith(dataURIPrefix);function findWasmBinary(){var f="godot.web.template_debug.wasm32.nothreads.wasm";if(!isDataURI(f)){return locateFile(f)}return f}var wasmBinaryFile;function getBinarySync(file){if(file==wasmBinaryFile&&wasmBinary){return new Uint8Array(wasmBinary)}if(readBinary){return readBinary(file)}throw"both async and sync fetching of the wasm failed"}function getBinaryPromise(binaryFile){if(!wasmBinary){return readAsync(binaryFile).then(response=>new Uint8Array(response),()=>getBinarySync(binaryFile))}return Promise.resolve().then(()=>getBinarySync(binaryFile))}function instantiateArrayBuffer(binaryFile,imports,receiver){return getBinaryPromise(binaryFile).then(binary=>WebAssembly.instantiate(binary,imports)).then(receiver,reason=>{err(`failed to asynchronously prepare wasm: ${reason}`);abort(reason)})}function instantiateAsync(binary,binaryFile,imports,callback){if(!binary&&typeof WebAssembly.instantiateStreaming=="function"&&!isDataURI(binaryFile)&&typeof fetch=="function"){return fetch(binaryFile,{credentials:"same-origin"}).then(response=>{var result=WebAssembly.instantiateStreaming(response,imports);return result.then(callback,function(reason){err(`wasm streaming compile failed: ${reason}`);err("falling back to ArrayBuffer instantiation");return instantiateArrayBuffer(binaryFile,imports,callback)})})}return instantiateArrayBuffer(binaryFile,imports,callback)}function getWasmImports(){return{a:wasmImports}}function createWasm(){var info=getWasmImports();function receiveInstance(instance,module){wasmExports=instance.exports;wasmMemory=wasmExports["hf"];updateMemoryViews();wasmTable=wasmExports["rf"];addOnInit(wasmExports["jf"]);removeRunDependency("wasm-instantiate");return wasmExports}addRunDependency("wasm-instantiate");function receiveInstantiationResult(result){receiveInstance(result["instance"])}if(Module["instantiateWasm"]){try{return Module["instantiateWasm"](info,receiveInstance)}catch(e){err(`Module.instantiateWasm callback failed with error: ${e}`);readyPromiseReject(e)}}if(!wasmBinaryFile)wasmBinaryFile=findWasmBinary();instantiateAsync(wasmBinary,wasmBinaryFile,info,receiveInstantiationResult).catch(readyPromiseReject);return{}}function ExitStatus(status){this.name="ExitStatus";this.message=`Program terminated with exit(${status})`;this.status=status}var callRuntimeCallbacks=callbacks=>{while(callbacks.length>0){callbacks.shift()(Module)}};function getValue(ptr,type="i8"){if(type.endsWith("*"))type="*";switch(type){case"i1":return HEAP8[ptr];case"i8":return HEAP8[ptr];case"i16":return HEAP16[ptr>>1];case"i32":return HEAP32[ptr>>2];case"i64":return HEAP64[ptr>>3];case"float":return HEAPF32[ptr>>2];case"double":return HEAPF64[ptr>>3];case"*":return HEAPU32[ptr>>2];default:abort(`invalid type for getValue: ${type}`)}}var noExitRuntime=Module["noExitRuntime"]||false;function setValue(ptr,value,type="i8"){if(type.endsWith("*"))type="*";switch(type){case"i1":HEAP8[ptr]=value;break;case"i8":HEAP8[ptr]=value;break;case"i16":HEAP16[ptr>>1]=value;break;case"i32":HEAP32[ptr>>2]=value;break;case"i64":HEAP64[ptr>>3]=BigInt(value);break;case"float":HEAPF32[ptr>>2]=value;break;case"double":HEAPF64[ptr>>3]=value;break;case"*":HEAPU32[ptr>>2]=value;break;default:abort(`invalid type for setValue: ${type}`)}}var wasmTable;var getWasmTableEntry=funcPtr=>wasmTable.get(funcPtr);var ___call_sighandler=(fp,sig)=>getWasmTableEntry(fp)(sig);var PATH={isAbs:path=>path.charAt(0)==="/",splitPath:filename=>{var splitPathRe=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/;return splitPathRe.exec(filename).slice(1)},normalizeArray:(parts,allowAboveRoot)=>{var up=0;for(var i=parts.length-1;i>=0;i--){var last=parts[i];if(last==="."){parts.splice(i,1)}else if(last===".."){parts.splice(i,1);up++}else if(up){parts.splice(i,1);up--}}if(allowAboveRoot){for(;up;up--){parts.unshift("..")}}return parts},normalize:path=>{var isAbsolute=PATH.isAbs(path),trailingSlash=path.substr(-1)==="/";path=PATH.normalizeArray(path.split("/").filter(p=>!!p),!isAbsolute).join("/");if(!path&&!isAbsolute){path="."}if(path&&trailingSlash){path+="/"}return(isAbsolute?"/":"")+path},dirname:path=>{var result=PATH.splitPath(path),root=result[0],dir=result[1];if(!root&&!dir){return"."}if(dir){dir=dir.substr(0,dir.length-1)}return root+dir},basename:path=>{if(path==="/")return"/";path=PATH.normalize(path);path=path.replace(/\/$/,"");var lastSlash=path.lastIndexOf("/");if(lastSlash===-1)return path;return path.substr(lastSlash+1)},join:(...paths)=>PATH.normalize(paths.join("/")),join2:(l,r)=>PATH.normalize(l+"/"+r)};var initRandomFill=()=>{if(typeof crypto=="object"&&typeof crypto["getRandomValues"]=="function"){return view=>crypto.getRandomValues(view)}else abort("initRandomDevice")};var randomFill=view=>(randomFill=initRandomFill())(view);var PATH_FS={resolve:(...args)=>{var resolvedPath="",resolvedAbsolute=false;for(var i=args.length-1;i>=-1&&!resolvedAbsolute;i--){var path=i>=0?args[i]:FS.cwd();if(typeof path!="string"){throw new TypeError("Arguments to path.resolve must be strings")}else if(!path){return""}resolvedPath=path+"/"+resolvedPath;resolvedAbsolute=PATH.isAbs(path)}resolvedPath=PATH.normalizeArray(resolvedPath.split("/").filter(p=>!!p),!resolvedAbsolute).join("/");return(resolvedAbsolute?"/":"")+resolvedPath||"."},relative:(from,to)=>{from=PATH_FS.resolve(from).substr(1);to=PATH_FS.resolve(to).substr(1);function trim(arr){var start=0;for(;start<arr.length;start++){if(arr[start]!=="")break}var end=arr.length-1;for(;end>=0;end--){if(arr[end]!=="")break}if(start>end)return[];return arr.slice(start,end-start+1)}var fromParts=trim(from.split("/"));var toParts=trim(to.split("/"));var length=Math.min(fromParts.length,toParts.length);var samePartsLength=length;for(var i=0;i<length;i++){if(fromParts[i]!==toParts[i]){samePartsLength=i;break}}var outputParts=[];for(var i=samePartsLength;i<fromParts.length;i++){outputParts.push("..")}outputParts=outputParts.concat(toParts.slice(samePartsLength));return outputParts.join("/")}};var UTF8Decoder=typeof TextDecoder!="undefined"?new TextDecoder:undefined;var UTF8ArrayToString=(heapOrArray,idx,maxBytesToRead)=>{var endIdx=idx+maxBytesToRead;var endPtr=idx;while(heapOrArray[endPtr]&&!(endPtr>=endIdx))++endPtr;if(endPtr-idx>16&&heapOrArray.buffer&&UTF8Decoder){return UTF8Decoder.decode(heapOrArray.subarray(idx,endPtr))}var str="";while(idx<endPtr){var u0=heapOrArray[idx++];if(!(u0&128)){str+=String.fromCharCode(u0);continue}var u1=heapOrArray[idx++]&63;if((u0&224)==192){str+=String.fromCharCode((u0&31)<<6|u1);continue}var u2=heapOrArray[idx++]&63;if((u0&240)==224){u0=(u0&15)<<12|u1<<6|u2}else{u0=(u0&7)<<18|u1<<12|u2<<6|heapOrArray[idx++]&63}if(u0<65536){str+=String.fromCharCode(u0)}else{var ch=u0-65536;str+=String.fromCharCode(55296|ch>>10,56320|ch&1023)}}return str};var FS_stdin_getChar_buffer=[];var lengthBytesUTF8=str=>{var len=0;for(var i=0;i<str.length;++i){var c=str.charCodeAt(i);if(c<=127){len++}else if(c<=2047){len+=2}else if(c>=55296&&c<=57343){len+=4;++i}else{len+=3}}return len};var stringToUTF8Array=(str,heap,outIdx,maxBytesToWrite)=>{if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i<str.length;++i){var u=str.charCodeAt(i);if(u>=55296&&u<=57343){var u1=str.charCodeAt(++i);u=65536+((u&1023)<<10)|u1&1023}if(u<=127){if(outIdx>=endIdx)break;heap[outIdx++]=u}else if(u<=2047){if(outIdx+1>=endIdx)break;heap[outIdx++]=192|u>>6;heap[outIdx++]=128|u&63}else if(u<=65535){if(outIdx+2>=endIdx)break;heap[outIdx++]=224|u>>12;heap[outIdx++]=128|u>>6&63;heap[outIdx++]=128|u&63}else{if(outIdx+3>=endIdx)break;heap[outIdx++]=240|u>>18;heap[outIdx++]=128|u>>12&63;heap[outIdx++]=128|u>>6&63;heap[outIdx++]=128|u&63}}heap[outIdx]=0;return outIdx-startIdx};function intArrayFromString(stringy,dontAddNull,length){var len=length>0?length:lengthBytesUTF8(stringy)+1;var u8array=new Array(len);var numBytesWritten=stringToUTF8Array(stringy,u8array,0,u8array.length);if(dontAddNull)u8array.length=numBytesWritten;return u8array}var FS_stdin_getChar=()=>{if(!FS_stdin_getChar_buffer.length){var result=null;if(typeof window!="undefined"&&typeof window.prompt=="function"){result=window.prompt("Input: ");if(result!==null){result+="\n"}}else{}if(!result){return null}FS_stdin_getChar_buffer=intArrayFromString(result,true)}return FS_stdin_getChar_buffer.shift()};var TTY={ttys:[],init(){},shutdown(){},register(dev,ops){TTY.ttys[dev]={input:[],output:[],ops:ops};FS.registerDevice(dev,TTY.stream_ops)},stream_ops:{open(stream){var tty=TTY.ttys[stream.node.rdev];if(!tty){throw new FS.ErrnoError(43)}stream.tty=tty;stream.seekable=false},close(stream){stream.tty.ops.fsync(stream.tty)},fsync(stream){stream.tty.ops.fsync(stream.tty)},read(stream,buffer,offset,length,pos){if(!stream.tty||!stream.tty.ops.get_char){throw new FS.ErrnoError(60)}var bytesRead=0;for(var i=0;i<length;i++){var result;try{result=stream.tty.ops.get_char(stream.tty)}catch(e){throw new FS.ErrnoError(29)}if(result===undefined&&bytesRead===0){throw new FS.ErrnoError(6)}if(result===null||result===undefined)break;bytesRead++;buffer[offset+i]=result}if(bytesRead){stream.node.timestamp=Date.now()}return bytesRead},write(stream,buffer,offset,length,pos){if(!stream.tty||!stream.tty.ops.put_char){throw new FS.ErrnoError(60)}try{for(var i=0;i<length;i++){stream.tty.ops.put_char(stream.tty,buffer[offset+i])}}catch(e){throw new FS.ErrnoError(29)}if(length){stream.node.timestamp=Date.now()}return i}},default_tty_ops:{get_char(tty){return FS_stdin_getChar()},put_char(tty,val){if(val===null||val===10){out(UTF8ArrayToString(tty.output,0));tty.output=[]}else{if(val!=0)tty.output.push(val)}},fsync(tty){if(tty.output&&tty.output.length>0){out(UTF8ArrayToString(tty.output,0));tty.output=[]}},ioctl_tcgets(tty){return{c_iflag:25856,c_oflag:5,c_cflag:191,c_lflag:35387,c_cc:[3,28,127,21,4,0,1,0,17,19,26,0,18,15,23,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}},ioctl_tcsets(tty,optional_actions,data){return 0},ioctl_tiocgwinsz(tty){return[24,80]}},default_tty1_ops:{put_char(tty,val){if(val===null||val===10){err(UTF8ArrayToString(tty.output,0));tty.output=[]}else{if(val!=0)tty.output.push(val)}},fsync(tty){if(tty.output&&tty.output.length>0){err(UTF8ArrayToString(tty.output,0));tty.output=[]}}}};var mmapAlloc=size=>{abort()};var MEMFS={ops_table:null,mount(mount){return MEMFS.createNode(null,"/",16384|511,0)},createNode(parent,name,mode,dev){if(FS.isBlkdev(mode)||FS.isFIFO(mode)){throw new FS.ErrnoError(63)}MEMFS.ops_table||={dir:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr,lookup:MEMFS.node_ops.lookup,mknod:MEMFS.node_ops.mknod,rename:MEMFS.node_ops.rename,unlink:MEMFS.node_ops.unlink,rmdir:MEMFS.node_ops.rmdir,readdir:MEMFS.node_ops.readdir,symlink:MEMFS.node_ops.symlink},stream:{llseek:MEMFS.stream_ops.llseek}},file:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr},stream:{llseek:MEMFS.stream_ops.llseek,read:MEMFS.stream_ops.read,write:MEMFS.stream_ops.write,allocate:MEMFS.stream_ops.allocate,mmap:MEMFS.stream_ops.mmap,msync:MEMFS.stream_ops.msync}},link:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr,readlink:MEMFS.node_ops.readlink},stream:{}},chrdev:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr},stream:FS.chrdev_stream_ops}};var node=FS.createNode(parent,name,mode,dev);if(FS.isDir(node.mode)){node.node_ops=MEMFS.ops_table.dir.node;node.stream_ops=MEMFS.ops_table.dir.stream;node.contents={}}else if(FS.isFile(node.mode)){node.node_ops=MEMFS.ops_table.file.node;node.stream_ops=MEMFS.ops_table.file.stream;node.usedBytes=0;node.contents=null}else if(FS.isLink(node.mode)){node.node_ops=MEMFS.ops_table.link.node;node.stream_ops=MEMFS.ops_table.link.stream}else if(FS.isChrdev(node.mode)){node.node_ops=MEMFS.ops_table.chrdev.node;node.stream_ops=MEMFS.ops_table.chrdev.stream}node.timestamp=Date.now();if(parent){parent.contents[name]=node;parent.timestamp=node.timestamp}return node},getFileDataAsTypedArray(node){if(!node.contents)return new Uint8Array(0);if(node.contents.subarray)return node.contents.subarray(0,node.usedBytes);return new Uint8Array(node.contents)},expandFileStorage(node,newCapacity){var prevCapacity=node.contents?node.contents.length:0;if(prevCapacity>=newCapacity)return;var CAPACITY_DOUBLING_MAX=1024*1024;newCapacity=Math.max(newCapacity,prevCapacity*(prevCapacity<CAPACITY_DOUBLING_MAX?2:1.125)>>>0);if(prevCapacity!=0)newCapacity=Math.max(newCapacity,256);var oldContents=node.contents;node.contents=new Uint8Array(newCapacity);if(node.usedBytes>0)node.contents.set(oldContents.subarray(0,node.usedBytes),0)},resizeFileStorage(node,newSize){if(node.usedBytes==newSize)return;if(newSize==0){node.contents=null;node.usedBytes=0}else{var oldContents=node.contents;node.contents=new Uint8Array(newSize);if(oldContents){node.contents.set(oldContents.subarray(0,Math.min(newSize,node.usedBytes)))}node.usedBytes=newSize}},node_ops:{getattr(node){var attr={};attr.dev=FS.isChrdev(node.mode)?node.id:1;attr.ino=node.id;attr.mode=node.mode;attr.nlink=1;attr.uid=0;attr.gid=0;attr.rdev=node.rdev;if(FS.isDir(node.mode)){attr.size=4096}else if(FS.isFile(node.mode)){attr.size=node.usedBytes}else if(FS.isLink(node.mode)){attr.size=node.link.length}else{attr.size=0}attr.atime=new Date(node.timestamp);attr.mtime=new Date(node.timestamp);attr.ctime=new Date(node.timestamp);attr.blksize=4096;attr.blocks=Math.ceil(attr.size/attr.blksize);return attr},setattr(node,attr){if(attr.mode!==undefined){node.mode=attr.mode}if(attr.timestamp!==undefined){node.timestamp=attr.timestamp}if(attr.size!==undefined){MEMFS.resizeFileStorage(node,attr.size)}},lookup(parent,name){throw FS.genericErrors[44]},mknod(parent,name,mode,dev){return MEMFS.createNode(parent,name,mode,dev)},rename(old_node,new_dir,new_name){if(FS.isDir(old_node.mode)){var new_node;try{new_node=FS.lookupNode(new_dir,new_name)}catch(e){}if(new_node){for(var i in new_node.contents){throw new FS.ErrnoError(55)}}}delete old_node.parent.contents[old_node.name];old_node.parent.timestamp=Date.now();old_node.name=new_name;new_dir.contents[new_name]=old_node;new_dir.timestamp=old_node.parent.timestamp},unlink(parent,name){delete parent.contents[name];parent.timestamp=Date.now()},rmdir(parent,name){var node=FS.lookupNode(parent,name);for(var i in node.contents){throw new FS.ErrnoError(55)}delete parent.contents[name];parent.timestamp=Date.now()},readdir(node){var entries=[".",".."];for(var key of Object.keys(node.contents)){entries.push(key)}return entries},symlink(parent,newname,oldpath){var node=MEMFS.createNode(parent,newname,511|40960,0);node.link=oldpath;return node},readlink(node){if(!FS.isLink(node.mode)){throw new FS.ErrnoError(28)}return node.link}},stream_ops:{read(stream,buffer,offset,length,position){var contents=stream.node.contents;if(position>=stream.node.usedBytes)return 0;var size=Math.min(stream.node.usedBytes-position,length);if(size>8&&contents.subarray){buffer.set(contents.subarray(position,position+size),offset)}else{for(var i=0;i<size;i++)buffer[offset+i]=contents[position+i]}return size},write(stream,buffer,offset,length,position,canOwn){if(buffer.buffer===HEAP8.buffer){canOwn=false}if(!length)return 0;var node=stream.node;node.timestamp=Date.now();if(buffer.subarray&&(!node.contents||node.contents.subarray)){if(canOwn){node.contents=buffer.subarray(offset,offset+length);node.usedBytes=length;return length}else if(node.usedBytes===0&&position===0){node.contents=buffer.slice(offset,offset+length);node.usedBytes=length;return length}else if(position+length<=node.usedBytes){node.contents.set(buffer.subarray(offset,offset+length),position);return length}}MEMFS.expandFileStorage(node,position+length);if(node.contents.subarray&&buffer.subarray){node.contents.set(buffer.subarray(offset,offset+length),position)}else{for(var i=0;i<length;i++){node.contents[position+i]=buffer[offset+i]}}node.usedBytes=Math.max(node.usedBytes,position+length);return length},llseek(stream,offset,whence){var position=offset;if(whence===1){position+=stream.position}else if(whence===2){if(FS.isFile(stream.node.mode)){position+=stream.node.usedBytes}}if(position<0){throw new FS.ErrnoError(28)}return position},allocate(stream,offset,length){MEMFS.expandFileStorage(stream.node,offset+length);stream.node.usedBytes=Math.max(stream.node.usedBytes,offset+length)},mmap(stream,length,position,prot,flags){if(!FS.isFile(stream.node.mode)){throw new FS.ErrnoError(43)}var ptr;var allocated;var contents=stream.node.contents;if(!(flags&2)&&contents.buffer===HEAP8.buffer){allocated=false;ptr=contents.byteOffset}else{if(position>0||position+length<contents.length){if(contents.subarray){contents=contents.subarray(position,position+length)}else{contents=Array.prototype.slice.call(contents,position,position+length)}}allocated=true;ptr=mmapAlloc(length);if(!ptr){throw new FS.ErrnoError(48)}HEAP8.set(contents,ptr)}return{ptr:ptr,allocated:allocated}},msync(stream,buffer,offset,length,mmapFlags){MEMFS.stream_ops.write(stream,buffer,0,length,offset,false);return 0}}};var asyncLoad=(url,onload,onerror,noRunDep)=>{var dep=!noRunDep?getUniqueRunDependency(`al ${url}`):"";readAsync(url).then(arrayBuffer=>{onload(new Uint8Array(arrayBuffer));if(dep)removeRunDependency(dep)},err=>{if(onerror){onerror()}else{throw`Loading data file "${url}" failed.`}});if(dep)addRunDependency(dep)};var FS_createDataFile=(parent,name,fileData,canRead,canWrite,canOwn)=>{FS.createDataFile(parent,name,fileData,canRead,canWrite,canOwn)};var preloadPlugins=Module["preloadPlugins"]||[];var FS_handledByPreloadPlugin=(byteArray,fullname,finish,onerror)=>{if(typeof Browser!="undefined")Browser.init();var handled=false;preloadPlugins.forEach(plugin=>{if(handled)return;if(plugin["canHandle"](fullname)){plugin["handle"](byteArray,fullname,finish,onerror);handled=true}});return handled};var FS_createPreloadedFile=(parent,name,url,canRead,canWrite,onload,onerror,dontCreateFile,canOwn,preFinish)=>{var fullname=name?PATH_FS.resolve(PATH.join2(parent,name)):parent;var dep=getUniqueRunDependency(`cp ${fullname}`);function processData(byteArray){function finish(byteArray){preFinish?.();if(!dontCreateFile){FS_createDataFile(parent,name,byteArray,canRead,canWrite,canOwn)}onload?.();removeRunDependency(dep)}if(FS_handledByPreloadPlugin(byteArray,fullname,finish,()=>{onerror?.();removeRunDependency(dep)})){return}finish(byteArray)}addRunDependency(dep);if(typeof url=="string"){asyncLoad(url,processData,onerror)}else{processData(url)}};var FS_modeStringToFlags=str=>{var flagModes={r:0,"r+":2,w:512|64|1,"w+":512|64|2,a:1024|64|1,"a+":1024|64|2};var flags=flagModes[str];if(typeof flags=="undefined"){throw new Error(`Unknown file open mode: ${str}`)}return flags};var FS_getMode=(canRead,canWrite)=>{var mode=0;if(canRead)mode|=292|73;if(canWrite)mode|=146;return mode};var IDBFS={dbs:{},indexedDB:()=>{if(typeof indexedDB!="undefined")return indexedDB;var ret=null;if(typeof window=="object")ret=window.indexedDB||window.mozIndexedDB||window.webkitIndexedDB||window.msIndexedDB;return ret},DB_VERSION:21,DB_STORE_NAME:"FILE_DATA",queuePersist:mount=>{function onPersistComplete(){if(mount.idbPersistState==="again")startPersist();else mount.idbPersistState=0}function startPersist(){mount.idbPersistState="idb";IDBFS.syncfs(mount,false,onPersistComplete)}if(!mount.idbPersistState){mount.idbPersistState=setTimeout(startPersist,0)}else if(mount.idbPersistState==="idb"){mount.idbPersistState="again"}},mount:mount=>{var mnt=MEMFS.mount(mount);if(mount?.opts?.autoPersist){mnt.idbPersistState=0;var memfs_node_ops=mnt.node_ops;mnt.node_ops=Object.assign({},mnt.node_ops);mnt.node_ops.mknod=(parent,name,mode,dev)=>{var node=memfs_node_ops.mknod(parent,name,mode,dev);node.node_ops=mnt.node_ops;node.idbfs_mount=mnt.mount;node.memfs_stream_ops=node.stream_ops;node.stream_ops=Object.assign({},node.stream_ops);node.stream_ops.write=(stream,buffer,offset,length,position,canOwn)=>{stream.node.isModified=true;return node.memfs_stream_ops.write(stream,buffer,offset,length,position,canOwn)};node.stream_ops.close=stream=>{var n=stream.node;if(n.isModified){IDBFS.queuePersist(n.idbfs_mount);n.isModified=false}if(n.memfs_stream_ops.close)return n.memfs_stream_ops.close(stream)};return node};mnt.node_ops.mkdir=(...args)=>(IDBFS.queuePersist(mnt.mount),memfs_node_ops.mkdir(...args));mnt.node_ops.rmdir=(...args)=>(IDBFS.queuePersist(mnt.mount),memfs_node_ops.rmdir(...args));mnt.node_ops.symlink=(...args)=>(IDBFS.queuePersist(mnt.mount),memfs_node_ops.symlink(...args));mnt.node_ops.unlink=(...args)=>(IDBFS.queuePersist(mnt.mount),memfs_node_ops.unlink(...args));mnt.node_ops.rename=(...args)=>(IDBFS.queuePersist(mnt.mount),memfs_node_ops.rename(...args))}return mnt},syncfs:(mount,populate,callback)=>{IDBFS.getLocalSet(mount,(err,local)=>{if(err)return callback(err);IDBFS.getRemoteSet(mount,(err,remote)=>{if(err)return callback(err);var src=populate?remote:local;var dst=populate?local:remote;IDBFS.reconcile(src,dst,callback)})})},quit:()=>{Object.values(IDBFS.dbs).forEach(value=>value.close());IDBFS.dbs={}},getDB:(name,callback)=>{var db=IDBFS.dbs[name];if(db){return callback(null,db)}var req;try{req=IDBFS.indexedDB().open(name,IDBFS.DB_VERSION)}catch(e){return callback(e)}if(!req){return callback("Unable to connect to IndexedDB")}req.onupgradeneeded=e=>{var db=e.target.result;var transaction=e.target.transaction;var fileStore;if(db.objectStoreNames.contains(IDBFS.DB_STORE_NAME)){fileStore=transaction.objectStore(IDBFS.DB_STORE_NAME)}else{fileStore=db.createObjectStore(IDBFS.DB_STORE_NAME)}if(!fileStore.indexNames.contains("timestamp")){fileStore.createIndex("timestamp","timestamp",{unique:false})}};req.onsuccess=()=>{db=req.result;IDBFS.dbs[name]=db;callback(null,db)};req.onerror=e=>{callback(e.target.error);e.preventDefault()}},getLocalSet:(mount,callback)=>{var entries={};function isRealDir(p){return p!=="."&&p!==".."}function toAbsolute(root){return p=>PATH.join2(root,p)}var check=FS.readdir(mount.mountpoint).filter(isRealDir).map(toAbsolute(mount.mountpoint));while(check.length){var path=check.pop();var stat;try{stat=FS.stat(path)}catch(e){return callback(e)}if(FS.isDir(stat.mode)){check.push(...FS.readdir(path).filter(isRealDir).map(toAbsolute(path)))}entries[path]={timestamp:stat.mtime}}return callback(null,{type:"local",entries:entries})},getRemoteSet:(mount,callback)=>{var entries={};IDBFS.getDB(mount.mountpoint,(err,db)=>{if(err)return callback(err);try{var transaction=db.transaction([IDBFS.DB_STORE_NAME],"readonly");transaction.onerror=e=>{callback(e.target.error);e.preventDefault()};var store=transaction.objectStore(IDBFS.DB_STORE_NAME);var index=store.index("timestamp");index.openKeyCursor().onsuccess=event=>{var cursor=event.target.result;if(!cursor){return callback(null,{type:"remote",db:db,entries:entries})}entries[cursor.primaryKey]={timestamp:cursor.key};cursor.continue()}}catch(e){return callback(e)}})},loadLocalEntry:(path,callback)=>{var stat,node;try{var lookup=FS.lookupPath(path);node=lookup.node;stat=FS.stat(path)}catch(e){return callback(e)}if(FS.isDir(stat.mode)){return callback(null,{timestamp:stat.mtime,mode:stat.mode})}else if(FS.isFile(stat.mode)){node.contents=MEMFS.getFileDataAsTypedArray(node);return callback(null,{timestamp:stat.mtime,mode:stat.mode,contents:node.contents})}else{return callback(new Error("node type not supported"))}},storeLocalEntry:(path,entry,callback)=>{try{if(FS.isDir(entry["mode"])){FS.mkdirTree(path,entry["mode"])}else if(FS.isFile(entry["mode"])){FS.writeFile(path,entry["contents"],{canOwn:true})}else{return callback(new Error("node type not supported"))}FS.chmod(path,entry["mode"]);FS.utime(path,entry["timestamp"],entry["timestamp"])}catch(e){return callback(e)}callback(null)},removeLocalEntry:(path,callback)=>{try{var stat=FS.stat(path);if(FS.isDir(stat.mode)){FS.rmdir(path)}else if(FS.isFile(stat.mode)){FS.unlink(path)}}catch(e){return callback(e)}callback(null)},loadRemoteEntry:(store,path,callback)=>{var req=store.get(path);req.onsuccess=event=>callback(null,event.target.result);req.onerror=e=>{callback(e.target.error);e.preventDefault()}},storeRemoteEntry:(store,path,entry,callback)=>{try{var req=store.put(entry,path)}catch(e){callback(e);return}req.onsuccess=event=>callback();req.onerror=e=>{callback(e.target.error);e.preventDefault()}},removeRemoteEntry:(store,path,callback)=>{var req=store.delete(path);req.onsuccess=event=>callback();req.onerror=e=>{callback(e.target.error);e.preventDefault()}},reconcile:(src,dst,callback)=>{var total=0;var create=[];Object.keys(src.entries).forEach(function(key){var e=src.entries[key];var e2=dst.entries[key];if(!e2||e["timestamp"].getTime()!=e2["timestamp"].getTime()){create.push(key);total++}});var remove=[];Object.keys(dst.entries).forEach(function(key){if(!src.entries[key]){remove.push(key);total++}});if(!total){return callback(null)}var errored=false;var db=src.type==="remote"?src.db:dst.db;var transaction=db.transaction([IDBFS.DB_STORE_NAME],"readwrite");var store=transaction.objectStore(IDBFS.DB_STORE_NAME);function done(err){if(err&&!errored){errored=true;return callback(err)}}transaction.onerror=transaction.onabort=e=>{done(e.target.error);e.preventDefault()};transaction.oncomplete=e=>{if(!errored){callback(null)}};create.sort().forEach(path=>{if(dst.type==="local"){IDBFS.loadRemoteEntry(store,path,(err,entry)=>{if(err)return done(err);IDBFS.storeLocalEntry(path,entry,done)})}else{IDBFS.loadLocalEntry(path,(err,entry)=>{if(err)return done(err);IDBFS.storeRemoteEntry(store,path,entry,done)})}});remove.sort().reverse().forEach(path=>{if(dst.type==="local"){IDBFS.removeLocalEntry(path,done)}else{IDBFS.removeRemoteEntry(store,path,done)}})}};var FS={root:null,mounts:[],devices:{},streams:[],nextInode:1,nameTable:null,currentPath:"/",initialized:false,ignorePermissions:true,ErrnoError:class{constructor(errno){this.name="ErrnoError";this.errno=errno}},genericErrors:{},filesystems:null,syncFSRequests:0,FSStream:class{constructor(){this.shared={}}get object(){return this.node}set object(val){this.node=val}get isRead(){return(this.flags&2097155)!==1}get isWrite(){return(this.flags&2097155)!==0}get isAppend(){return this.flags&1024}get flags(){return this.shared.flags}set flags(val){this.shared.flags=val}get position(){return this.shared.position}set position(val){this.shared.position=val}},FSNode:class{constructor(parent,name,mode,rdev){if(!parent){parent=this}this.parent=parent;this.mount=parent.mount;this.mounted=null;this.id=FS.nextInode++;this.name=name;this.mode=mode;this.node_ops={};this.stream_ops={};this.rdev=rdev;this.readMode=292|73;this.writeMode=146}get read(){return(this.mode&this.readMode)===this.readMode}set read(val){val?this.mode|=this.readMode:this.mode&=~this.readMode}get write(){return(this.mode&this.writeMode)===this.writeMode}set write(val){val?this.mode|=this.writeMode:this.mode&=~this.writeMode}get isFolder(){return FS.isDir(this.mode)}get isDevice(){return FS.isChrdev(this.mode)}},lookupPath(path,opts={}){path=PATH_FS.resolve(path);if(!path)return{path:"",node:null};var defaults={follow_mount:true,recurse_count:0};opts=Object.assign(defaults,opts);if(opts.recurse_count>8){throw new FS.ErrnoError(32)}var parts=path.split("/").filter(p=>!!p);var current=FS.root;var current_path="/";for(var i=0;i<parts.length;i++){var islast=i===parts.length-1;if(islast&&opts.parent){break}current=FS.lookupNode(current,parts[i]);current_path=PATH.join2(current_path,parts[i]);if(FS.isMountpoint(current)){if(!islast||islast&&opts.follow_mount){current=current.mounted.root}}if(!islast||opts.follow){var count=0;while(FS.isLink(current.mode)){var link=FS.readlink(current_path);current_path=PATH_FS.resolve(PATH.dirname(current_path),link);var lookup=FS.lookupPath(current_path,{recurse_count:opts.recurse_count+1});current=lookup.node;if(count++>40){throw new FS.ErrnoError(32)}}}}return{path:current_path,node:current}},getPath(node){var path;while(true){if(FS.isRoot(node)){var mount=node.mount.mountpoint;if(!path)return mount;return mount[mount.length-1]!=="/"?`${mount}/${path}`:mount+path}path=path?`${node.name}/${path}`:node.name;node=node.parent}},hashName(parentid,name){var hash=0;for(var i=0;i<name.length;i++){hash=(hash<<5)-hash+name.charCodeAt(i)|0}return(parentid+hash>>>0)%FS.nameTable.length},hashAddNode(node){var hash=FS.hashName(node.parent.id,node.name);node.name_next=FS.nameTable[hash];FS.nameTable[hash]=node},hashRemoveNode(node){var hash=FS.hashName(node.parent.id,node.name);if(FS.nameTable[hash]===node){FS.nameTable[hash]=node.name_next}else{var current=FS.nameTable[hash];while(current){if(current.name_next===node){current.name_next=node.name_next;break}current=current.name_next}}},lookupNode(parent,name){var errCode=FS.mayLookup(parent);if(errCode){throw new FS.ErrnoError(errCode)}var hash=FS.hashName(parent.id,name);for(var node=FS.nameTable[hash];node;node=node.name_next){var nodeName=node.name;if(node.parent.id===parent.id&&nodeName===name){return node}}return FS.lookup(parent,name)},createNode(parent,name,mode,rdev){var node=new FS.FSNode(parent,name,mode,rdev);FS.hashAddNode(node);return node},destroyNode(node){FS.hashRemoveNode(node)},isRoot(node){return node===node.parent},isMountpoint(node){return!!node.mounted},isFile(mode){return(mode&61440)===32768},isDir(mode){return(mode&61440)===16384},isLink(mode){return(mode&61440)===40960},isChrdev(mode){return(mode&61440)===8192},isBlkdev(mode){return(mode&61440)===24576},isFIFO(mode){return(mode&61440)===4096},isSocket(mode){return(mode&49152)===49152},flagsToPermissionString(flag){var perms=["r","w","rw"][flag&3];if(flag&512){perms+="w"}return perms},nodePermissions(node,perms){if(FS.ignorePermissions){return 0}if(perms.includes("r")&&!(node.mode&292)){return 2}else if(perms.includes("w")&&!(node.mode&146)){return 2}else if(perms.includes("x")&&!(node.mode&73)){return 2}return 0},mayLookup(dir){if(!FS.isDir(dir.mode))return 54;var errCode=FS.nodePermissions(dir,"x");if(errCode)return errCode;if(!dir.node_ops.lookup)return 2;return 0},mayCreate(dir,name){try{var node=FS.lookupNode(dir,name);return 20}catch(e){}return FS.nodePermissions(dir,"wx")},mayDelete(dir,name,isdir){var node;try{node=FS.lookupNode(dir,name)}catch(e){return e.errno}var errCode=FS.nodePermissions(dir,"wx");if(errCode){return errCode}if(isdir){if(!FS.isDir(node.mode)){return 54}if(FS.isRoot(node)||FS.getPath(node)===FS.cwd()){return 10}}else{if(FS.isDir(node.mode)){return 31}}return 0},mayOpen(node,flags){if(!node){return 44}if(FS.isLink(node.mode)){return 32}else if(FS.isDir(node.mode)){if(FS.flagsToPermissionString(flags)!=="r"||flags&512){return 31}}return FS.nodePermissions(node,FS.flagsToPermissionString(flags))},MAX_OPEN_FDS:4096,nextfd(){for(var fd=0;fd<=FS.MAX_OPEN_FDS;fd++){if(!FS.streams[fd]){return fd}}throw new FS.ErrnoError(33)},getStreamChecked(fd){var stream=FS.getStream(fd);if(!stream){throw new FS.ErrnoError(8)}return stream},getStream:fd=>FS.streams[fd],createStream(stream,fd=-1){stream=Object.assign(new FS.FSStream,stream);if(fd==-1){fd=FS.nextfd()}stream.fd=fd;FS.streams[fd]=stream;return stream},closeStream(fd){FS.streams[fd]=null},dupStream(origStream,fd=-1){var stream=FS.createStream(origStream,fd);stream.stream_ops?.dup?.(stream);return stream},chrdev_stream_ops:{open(stream){var device=FS.getDevice(stream.node.rdev);stream.stream_ops=device.stream_ops;stream.stream_ops.open?.(stream)},llseek(){throw new FS.ErrnoError(70)}},major:dev=>dev>>8,minor:dev=>dev&255,makedev:(ma,mi)=>ma<<8|mi,registerDevice(dev,ops){FS.devices[dev]={stream_ops:ops}},getDevice:dev=>FS.devices[dev],getMounts(mount){var mounts=[];var check=[mount];while(check.length){var m=check.pop();mounts.push(m);check.push(...m.mounts)}return mounts},syncfs(populate,callback){if(typeof populate=="function"){callback=populate;populate=false}FS.syncFSRequests++;if(FS.syncFSRequests>1){err(`warning: ${FS.syncFSRequests} FS.syncfs operations in flight at once, probably just doing extra work`)}var mounts=FS.getMounts(FS.root.mount);var completed=0;function doCallback(errCode){FS.syncFSRequests--;return callback(errCode)}function done(errCode){if(errCode){if(!done.errored){done.errored=true;return doCallback(errCode)}return}if(++completed>=mounts.length){doCallback(null)}}mounts.forEach(mount=>{if(!mount.type.syncfs){return done(null)}mount.type.syncfs(mount,populate,done)})},mount(type,opts,mountpoint){var root=mountpoint==="/";var pseudo=!mountpoint;var node;if(root&&FS.root){throw new FS.ErrnoError(10)}else if(!root&&!pseudo){var lookup=FS.lookupPath(mountpoint,{follow_mount:false});mountpoint=lookup.path;node=lookup.node;if(FS.isMountpoint(node)){throw new FS.ErrnoError(10)}if(!FS.isDir(node.mode)){throw new FS.ErrnoError(54)}}var mount={type:type,opts:opts,mountpoint:mountpoint,mounts:[]};var mountRoot=type.mount(mount);mountRoot.mount=mount;mount.root=mountRoot;if(root){FS.root=mountRoot}else if(node){node.mounted=mount;if(node.mount){node.mount.mounts.push(mount)}}return mountRoot},unmount(mountpoint){var lookup=FS.lookupPath(mountpoint,{follow_mount:false});if(!FS.isMountpoint(lookup.node)){throw new FS.ErrnoError(28)}var node=lookup.node;var mount=node.mounted;var mounts=FS.getMounts(mount);Object.keys(FS.nameTable).forEach(hash=>{var current=FS.nameTable[hash];while(current){var next=current.name_next;if(mounts.includes(current.mount)){FS.destroyNode(current)}current=next}});node.mounted=null;var idx=node.mount.mounts.indexOf(mount);node.mount.mounts.splice(idx,1)},lookup(parent,name){return parent.node_ops.lookup(parent,name)},mknod(path,mode,dev){var lookup=FS.lookupPath(path,{parent:true});var parent=lookup.node;var name=PATH.basename(path);if(!name||name==="."||name===".."){throw new FS.ErrnoError(28)}var errCode=FS.mayCreate(parent,name);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.mknod){throw new FS.ErrnoError(63)}return parent.node_ops.mknod(parent,name,mode,dev)},create(path,mode){mode=mode!==undefined?mode:438;mode&=4095;mode|=32768;return FS.mknod(path,mode,0)},mkdir(path,mode){mode=mode!==undefined?mode:511;mode&=511|512;mode|=16384;return FS.mknod(path,mode,0)},mkdirTree(path,mode){var dirs=path.split("/");var d="";for(var i=0;i<dirs.length;++i){if(!dirs[i])continue;d+="/"+dirs[i];try{FS.mkdir(d,mode)}catch(e){if(e.errno!=20)throw e}}},mkdev(path,mode,dev){if(typeof dev=="undefined"){dev=mode;mode=438}mode|=8192;return FS.mknod(path,mode,dev)},symlink(oldpath,newpath){if(!PATH_FS.resolve(oldpath)){throw new FS.ErrnoError(44)}var lookup=FS.lookupPath(newpath,{parent:true});var parent=lookup.node;if(!parent){throw new FS.ErrnoError(44)}var newname=PATH.basename(newpath);var errCode=FS.mayCreate(parent,newname);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.symlink){throw new FS.ErrnoError(63)}return parent.node_ops.symlink(parent,newname,oldpath)},rename(old_path,new_path){var old_dirname=PATH.dirname(old_path);var new_dirname=PATH.dirname(new_path);var old_name=PATH.basename(old_path);var new_name=PATH.basename(new_path);var lookup,old_dir,new_dir;lookup=FS.lookupPath(old_path,{parent:true});old_dir=lookup.node;lookup=FS.lookupPath(new_path,{parent:true});new_dir=lookup.node;if(!old_dir||!new_dir)throw new FS.ErrnoError(44);if(old_dir.mount!==new_dir.mount){throw new FS.ErrnoError(75)}var old_node=FS.lookupNode(old_dir,old_name);var relative=PATH_FS.relative(old_path,new_dirname);if(relative.charAt(0)!=="."){throw new FS.ErrnoError(28)}relative=PATH_FS.relative(new_path,old_dirname);if(relative.charAt(0)!=="."){throw new FS.ErrnoError(55)}var new_node;try{new_node=FS.lookupNode(new_dir,new_name)}catch(e){}if(old_node===new_node){return}var isdir=FS.isDir(old_node.mode);var errCode=FS.mayDelete(old_dir,old_name,isdir);if(errCode){throw new FS.ErrnoError(errCode)}errCode=new_node?FS.mayDelete(new_dir,new_name,isdir):FS.mayCreate(new_dir,new_name);if(errCode){throw new FS.ErrnoError(errCode)}if(!old_dir.node_ops.rename){throw new FS.ErrnoError(63)}if(FS.isMountpoint(old_node)||new_node&&FS.isMountpoint(new_node)){throw new FS.ErrnoError(10)}if(new_dir!==old_dir){errCode=FS.nodePermissions(old_dir,"w");if(errCode){throw new FS.ErrnoError(errCode)}}FS.hashRemoveNode(old_node);try{old_dir.node_ops.rename(old_node,new_dir,new_name);old_node.parent=new_dir}catch(e){throw e}finally{FS.hashAddNode(old_node)}},rmdir(path){var lookup=FS.lookupPath(path,{parent:true});var parent=lookup.node;var name=PATH.basename(path);var node=FS.lookupNode(parent,name);var errCode=FS.mayDelete(parent,name,true);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.rmdir){throw new FS.ErrnoError(63)}if(FS.isMountpoint(node)){throw new FS.ErrnoError(10)}parent.node_ops.rmdir(parent,name);FS.destroyNode(node)},readdir(path){var lookup=FS.lookupPath(path,{follow:true});var node=lookup.node;if(!node.node_ops.readdir){throw new FS.ErrnoError(54)}return node.node_ops.readdir(node)},unlink(path){var lookup=FS.lookupPath(path,{parent:true});var parent=lookup.node;if(!parent){throw new FS.ErrnoError(44)}var name=PATH.basename(path);var node=FS.lookupNode(parent,name);var errCode=FS.mayDelete(parent,name,false);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.unlink){throw new FS.ErrnoError(63)}if(FS.isMountpoint(node)){throw new FS.ErrnoError(10)}parent.node_ops.unlink(parent,name);FS.destroyNode(node)},readlink(path){var lookup=FS.lookupPath(path);var link=lookup.node;if(!link){throw new FS.ErrnoError(44)}if(!link.node_ops.readlink){throw new FS.ErrnoError(28)}return PATH_FS.resolve(FS.getPath(link.parent),link.node_ops.readlink(link))},stat(path,dontFollow){var lookup=FS.lookupPath(path,{follow:!dontFollow});var node=lookup.node;if(!node){throw new FS.ErrnoError(44)}if(!node.node_ops.getattr){throw new FS.ErrnoError(63)}return node.node_ops.getattr(node)},lstat(path){return FS.stat(path,true)},chmod(path,mode,dontFollow){var node;if(typeof path=="string"){var lookup=FS.lookupPath(path,{follow:!dontFollow});node=lookup.node}else{node=path}if(!node.node_ops.setattr){throw new FS.ErrnoError(63)}node.node_ops.setattr(node,{mode:mode&4095|node.mode&~4095,timestamp:Date.now()})},lchmod(path,mode){FS.chmod(path,mode,true)},fchmod(fd,mode){var stream=FS.getStreamChecked(fd);FS.chmod(stream.node,mode)},chown(path,uid,gid,dontFollow){var node;if(typeof path=="string"){var lookup=FS.lookupPath(path,{follow:!dontFollow});node=lookup.node}else{node=path}if(!node.node_ops.setattr){throw new FS.ErrnoError(63)}node.node_ops.setattr(node,{timestamp:Date.now()})},lchown(path,uid,gid){FS.chown(path,uid,gid,true)},fchown(fd,uid,gid){var stream=FS.getStreamChecked(fd);FS.chown(stream.node,uid,gid)},truncate(path,len){if(len<0){throw new FS.ErrnoError(28)}var node;if(typeof path=="string"){var lookup=FS.lookupPath(path,{follow:true});node=lookup.node}else{node=path}if(!node.node_ops.setattr){throw new FS.ErrnoError(63)}if(FS.isDir(node.mode)){throw new FS.ErrnoError(31)}if(!FS.isFile(node.mode)){throw new FS.ErrnoError(28)}var errCode=FS.nodePermissions(node,"w");if(errCode){throw new FS.ErrnoError(errCode)}node.node_ops.setattr(node,{size:len,timestamp:Date.now()})},ftruncate(fd,len){var stream=FS.getStreamChecked(fd);if((stream.flags&2097155)===0){throw new FS.ErrnoError(28)}FS.truncate(stream.node,len)},utime(path,atime,mtime){var lookup=FS.lookupPath(path,{follow:true});var node=lookup.node;node.node_ops.setattr(node,{timestamp:Math.max(atime,mtime)})},open(path,flags,mode){if(path===""){throw new FS.ErrnoError(44)}flags=typeof flags=="string"?FS_modeStringToFlags(flags):flags;if(flags&64){mode=typeof mode=="undefined"?438:mode;mode=mode&4095|32768}else{mode=0}var node;if(typeof path=="object"){node=path}else{path=PATH.normalize(path);try{var lookup=FS.lookupPath(path,{follow:!(flags&131072)});node=lookup.node}catch(e){}}var created=false;if(flags&64){if(node){if(flags&128){throw new FS.ErrnoError(20)}}else{node=FS.mknod(path,mode,0);created=true}}if(!node){throw new FS.ErrnoError(44)}if(FS.isChrdev(node.mode)){flags&=~512}if(flags&65536&&!FS.isDir(node.mode)){throw new FS.ErrnoError(54)}if(!created){var errCode=FS.mayOpen(node,flags);if(errCode){throw new FS.ErrnoError(errCode)}}if(flags&512&&!created){FS.truncate(node,0)}flags&=~(128|512|131072);var stream=FS.createStream({node:node,path:FS.getPath(node),flags:flags,seekable:true,position:0,stream_ops:node.stream_ops,ungotten:[],error:false});if(stream.stream_ops.open){stream.stream_ops.open(stream)}if(Module["logReadFiles"]&&!(flags&1)){if(!FS.readFiles)FS.readFiles={};if(!(path in FS.readFiles)){FS.readFiles[path]=1}}return stream},close(stream){if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if(stream.getdents)stream.getdents=null;try{if(stream.stream_ops.close){stream.stream_ops.close(stream)}}catch(e){throw e}finally{FS.closeStream(stream.fd)}stream.fd=null},isClosed(stream){return stream.fd===null},llseek(stream,offset,whence){if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if(!stream.seekable||!stream.stream_ops.llseek){throw new FS.ErrnoError(70)}if(whence!=0&&whence!=1&&whence!=2){throw new FS.ErrnoError(28)}stream.position=stream.stream_ops.llseek(stream,offset,whence);stream.ungotten=[];return stream.position},read(stream,buffer,offset,length,position){if(length<0||position<0){throw new FS.ErrnoError(28)}if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if((stream.flags&2097155)===1){throw new FS.ErrnoError(8)}if(FS.isDir(stream.node.mode)){throw new FS.ErrnoError(31)}if(!stream.stream_ops.read){throw new FS.ErrnoError(28)}var seeking=typeof position!="undefined";if(!seeking){position=stream.position}else if(!stream.seekable){throw new FS.ErrnoError(70)}var bytesRead=stream.stream_ops.read(stream,buffer,offset,length,position);if(!seeking)stream.position+=bytesRead;return bytesRead},write(stream,buffer,offset,length,position,canOwn){if(length<0||position<0){throw new FS.ErrnoError(28)}if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if((stream.flags&2097155)===0){throw new FS.ErrnoError(8)}if(FS.isDir(stream.node.mode)){throw new FS.ErrnoError(31)}if(!stream.stream_ops.write){throw new FS.ErrnoError(28)}if(stream.seekable&&stream.flags&1024){FS.llseek(stream,0,2)}var seeking=typeof position!="undefined";if(!seeking){position=stream.position}else if(!stream.seekable){throw new FS.ErrnoError(70)}var bytesWritten=stream.stream_ops.write(stream,buffer,offset,length,position,canOwn);if(!seeking)stream.position+=bytesWritten;return bytesWritten},allocate(stream,offset,length){if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if(offset<0||length<=0){throw new FS.ErrnoError(28)}if((stream.flags&2097155)===0){throw new FS.ErrnoError(8)}if(!FS.isFile(stream.node.mode)&&!FS.isDir(stream.node.mode)){throw new FS.ErrnoError(43)}if(!stream.stream_ops.allocate){throw new FS.ErrnoError(138)}stream.stream_ops.allocate(stream,offset,length)},mmap(stream,length,position,prot,flags){if((prot&2)!==0&&(flags&2)===0&&(stream.flags&2097155)!==2){throw new FS.ErrnoError(2)}if((stream.flags&2097155)===1){throw new FS.ErrnoError(2)}if(!stream.stream_ops.mmap){throw new FS.ErrnoError(43)}return stream.stream_ops.mmap(stream,length,position,prot,flags)},msync(stream,buffer,offset,length,mmapFlags){if(!stream.stream_ops.msync){return 0}return stream.stream_ops.msync(stream,buffer,offset,length,mmapFlags)},ioctl(stream,cmd,arg){if(!stream.stream_ops.ioctl){throw new FS.ErrnoError(59)}return stream.stream_ops.ioctl(stream,cmd,arg)},readFile(path,opts={}){opts.flags=opts.flags||0;opts.encoding=opts.encoding||"binary";if(opts.encoding!=="utf8"&&opts.encoding!=="binary"){throw new Error(`Invalid encoding type "${opts.encoding}"`)}var ret;var stream=FS.open(path,opts.flags);var stat=FS.stat(path);var length=stat.size;var buf=new Uint8Array(length);FS.read(stream,buf,0,length,0);if(opts.encoding==="utf8"){ret=UTF8ArrayToString(buf,0)}else if(opts.encoding==="binary"){ret=buf}FS.close(stream);return ret},writeFile(path,data,opts={}){opts.flags=opts.flags||577;var stream=FS.open(path,opts.flags,opts.mode);if(typeof data=="string"){var buf=new Uint8Array(lengthBytesUTF8(data)+1);var actualNumBytes=stringToUTF8Array(data,buf,0,buf.length);FS.write(stream,buf,0,actualNumBytes,undefined,opts.canOwn)}else if(ArrayBuffer.isView(data)){FS.write(stream,data,0,data.byteLength,undefined,opts.canOwn)}else{throw new Error("Unsupported data type")}FS.close(stream)},cwd:()=>FS.currentPath,chdir(path){var lookup=FS.lookupPath(path,{follow:true});if(lookup.node===null){throw new FS.ErrnoError(44)}if(!FS.isDir(lookup.node.mode)){throw new FS.ErrnoError(54)}var errCode=FS.nodePermissions(lookup.node,"x");if(errCode){throw new FS.ErrnoError(errCode)}FS.currentPath=lookup.path},createDefaultDirectories(){FS.mkdir("/tmp");FS.mkdir("/home");FS.mkdir("/home/web_user")},createDefaultDevices(){FS.mkdir("/dev");FS.registerDevice(FS.makedev(1,3),{read:()=>0,write:(stream,buffer,offset,length,pos)=>length});FS.mkdev("/dev/null",FS.makedev(1,3));TTY.register(FS.makedev(5,0),TTY.default_tty_ops);TTY.register(FS.makedev(6,0),TTY.default_tty1_ops);FS.mkdev("/dev/tty",FS.makedev(5,0));FS.mkdev("/dev/tty1",FS.makedev(6,0));var randomBuffer=new Uint8Array(1024),randomLeft=0;var randomByte=()=>{if(randomLeft===0){randomLeft=randomFill(randomBuffer).byteLength}return randomBuffer[--randomLeft]};FS.createDevice("/dev","random",randomByte);FS.createDevice("/dev","urandom",randomByte);FS.mkdir("/dev/shm");FS.mkdir("/dev/shm/tmp")},createSpecialDirectories(){FS.mkdir("/proc");var proc_self=FS.mkdir("/proc/self");FS.mkdir("/proc/self/fd");FS.mount({mount(){var node=FS.createNode(proc_self,"fd",16384|511,73);node.node_ops={lookup(parent,name){var fd=+name;var stream=FS.getStreamChecked(fd);var ret={parent:null,mount:{mountpoint:"fake"},node_ops:{readlink:()=>stream.path}};ret.parent=ret;return ret}};return node}},{},"/proc/self/fd")},createStandardStreams(){if(Module["stdin"]){FS.createDevice("/dev","stdin",Module["stdin"])}else{FS.symlink("/dev/tty","/dev/stdin")}if(Module["stdout"]){FS.createDevice("/dev","stdout",null,Module["stdout"])}else{FS.symlink("/dev/tty","/dev/stdout")}if(Module["stderr"]){FS.createDevice("/dev","stderr",null,Module["stderr"])}else{FS.symlink("/dev/tty1","/dev/stderr")}var stdin=FS.open("/dev/stdin",0);var stdout=FS.open("/dev/stdout",1);var stderr=FS.open("/dev/stderr",1)},staticInit(){[44].forEach(code=>{FS.genericErrors[code]=new FS.ErrnoError(code);FS.genericErrors[code].stack="<generic error, no stack>"});FS.nameTable=new Array(4096);FS.mount(MEMFS,{},"/");FS.createDefaultDirectories();FS.createDefaultDevices();FS.createSpecialDirectories();FS.filesystems={MEMFS:MEMFS,IDBFS:IDBFS}},init(input,output,error){FS.init.initialized=true;Module["stdin"]=input||Module["stdin"];Module["stdout"]=output||Module["stdout"];Module["stderr"]=error||Module["stderr"];FS.createStandardStreams()},quit(){FS.init.initialized=false;_fflush(0);for(var i=0;i<FS.streams.length;i++){var stream=FS.streams[i];if(!stream){continue}FS.close(stream)}},findObject(path,dontResolveLastLink){var ret=FS.analyzePath(path,dontResolveLastLink);if(!ret.exists){return null}return ret.object},analyzePath(path,dontResolveLastLink){try{var lookup=FS.lookupPath(path,{follow:!dontResolveLastLink});path=lookup.path}catch(e){}var ret={isRoot:false,exists:false,error:0,name:null,path:null,object:null,parentExists:false,parentPath:null,parentObject:null};try{var lookup=FS.lookupPath(path,{parent:true});ret.parentExists=true;ret.parentPath=lookup.path;ret.parentObject=lookup.node;ret.name=PATH.basename(path);lookup=FS.lookupPath(path,{follow:!dontResolveLastLink});ret.exists=true;ret.path=lookup.path;ret.object=lookup.node;ret.name=lookup.node.name;ret.isRoot=lookup.path==="/"}catch(e){ret.error=e.errno}return ret},createPath(parent,path,canRead,canWrite){parent=typeof parent=="string"?parent:FS.getPath(parent);var parts=path.split("/").reverse();while(parts.length){var part=parts.pop();if(!part)continue;var current=PATH.join2(parent,part);try{FS.mkdir(current)}catch(e){}parent=current}return current},createFile(parent,name,properties,canRead,canWrite){var path=PATH.join2(typeof parent=="string"?parent:FS.getPath(parent),name);var mode=FS_getMode(canRead,canWrite);return FS.create(path,mode)},createDataFile(parent,name,data,canRead,canWrite,canOwn){var path=name;if(parent){parent=typeof parent=="string"?parent:FS.getPath(parent);path=name?PATH.join2(parent,name):parent}var mode=FS_getMode(canRead,canWrite);var node=FS.create(path,mode);if(data){if(typeof data=="string"){var arr=new Array(data.length);for(var i=0,len=data.length;i<len;++i)arr[i]=data.charCodeAt(i);data=arr}FS.chmod(node,mode|146);var stream=FS.open(node,577);FS.write(stream,data,0,data.length,0,canOwn);FS.close(stream);FS.chmod(node,mode)}},createDevice(parent,name,input,output){var path=PATH.join2(typeof parent=="string"?parent:FS.getPath(parent),name);var mode=FS_getMode(!!input,!!output);if(!FS.createDevice.major)FS.createDevice.major=64;var dev=FS.makedev(FS.createDevice.major++,0);FS.registerDevice(dev,{open(stream){stream.seekable=false},close(stream){if(output?.buffer?.length){output(10)}},read(stream,buffer,offset,length,pos){var bytesRead=0;for(var i=0;i<length;i++){var result;try{result=input()}catch(e){throw new FS.ErrnoError(29)}if(result===undefined&&bytesRead===0){throw new FS.ErrnoError(6)}if(result===null||result===undefined)break;bytesRead++;buffer[offset+i]=result}if(bytesRead){stream.node.timestamp=Date.now()}return bytesRead},write(stream,buffer,offset,length,pos){for(var i=0;i<length;i++){try{output(buffer[offset+i])}catch(e){throw new FS.ErrnoError(29)}}if(length){stream.node.timestamp=Date.now()}return i}});return FS.mkdev(path,mode,dev)},forceLoadFile(obj){if(obj.isDevice||obj.isFolder||obj.link||obj.contents)return true;if(typeof XMLHttpRequest!="undefined"){throw new Error("Lazy loading should have been performed (contents set) in createLazyFile, but it was not. Lazy loading only works in web workers. Use --embed-file or --preload-file in emcc on the main thread.")}else{try{obj.contents=readBinary(obj.url);obj.usedBytes=obj.contents.length}catch(e){throw new FS.ErrnoError(29)}}},createLazyFile(parent,name,url,canRead,canWrite){class LazyUint8Array{constructor(){this.lengthKnown=false;this.chunks=[]}get(idx){if(idx>this.length-1||idx<0){return undefined}var chunkOffset=idx%this.chunkSize;var chunkNum=idx/this.chunkSize|0;return this.getter(chunkNum)[chunkOffset]}setDataGetter(getter){this.getter=getter}cacheLength(){var xhr=new XMLHttpRequest;xhr.open("HEAD",url,false);xhr.send(null);if(!(xhr.status>=200&&xhr.status<300||xhr.status===304))throw new Error("Couldn't load "+url+". Status: "+xhr.status);var datalength=Number(xhr.getResponseHeader("Content-length"));var header;var hasByteServing=(header=xhr.getResponseHeader("Accept-Ranges"))&&header==="bytes";var usesGzip=(header=xhr.getResponseHeader("Content-Encoding"))&&header==="gzip";var chunkSize=1024*1024;if(!hasByteServing)chunkSize=datalength;var doXHR=(from,to)=>{if(from>to)throw new Error("invalid range ("+from+", "+to+") or no bytes requested!");if(to>datalength-1)throw new Error("only "+datalength+" bytes available! programmer error!");var xhr=new XMLHttpRequest;xhr.open("GET",url,false);if(datalength!==chunkSize)xhr.setRequestHeader("Range","bytes="+from+"-"+to);xhr.responseType="arraybuffer";if(xhr.overrideMimeType){xhr.overrideMimeType("text/plain; charset=x-user-defined")}xhr.send(null);if(!(xhr.status>=200&&xhr.status<300||xhr.status===304))throw new Error("Couldn't load "+url+". Status: "+xhr.status);if(xhr.response!==undefined){return new Uint8Array(xhr.response||[])}return intArrayFromString(xhr.responseText||"",true)};var lazyArray=this;lazyArray.setDataGetter(chunkNum=>{var start=chunkNum*chunkSize;var end=(chunkNum+1)*chunkSize-1;end=Math.min(end,datalength-1);if(typeof lazyArray.chunks[chunkNum]=="undefined"){lazyArray.chunks[chunkNum]=doXHR(start,end)}if(typeof lazyArray.chunks[chunkNum]=="undefined")throw new Error("doXHR failed!");return lazyArray.chunks[chunkNum]});if(usesGzip||!datalength){chunkSize=datalength=1;datalength=this.getter(0).length;chunkSize=datalength;out("LazyFiles on gzip forces download of the whole file when length is accessed")}this._length=datalength;this._chunkSize=chunkSize;this.lengthKnown=true}get length(){if(!this.lengthKnown){this.cacheLength()}return this._length}get chunkSize(){if(!this.lengthKnown){this.cacheLength()}return this._chunkSize}}if(typeof XMLHttpRequest!="undefined"){if(!ENVIRONMENT_IS_WORKER)throw"Cannot do synchronous binary XHRs outside webworkers in modern browsers. Use --embed-file or --preload-file in emcc";var lazyArray=new LazyUint8Array;var properties={isDevice:false,contents:lazyArray}}else{var properties={isDevice:false,url:url}}var node=FS.createFile(parent,name,properties,canRead,canWrite);if(properties.contents){node.contents=properties.contents}else if(properties.url){node.contents=null;node.url=properties.url}Object.defineProperties(node,{usedBytes:{get:function(){return this.contents.length}}});var stream_ops={};var keys=Object.keys(node.stream_ops);keys.forEach(key=>{var fn=node.stream_ops[key];stream_ops[key]=(...args)=>{FS.forceLoadFile(node);return fn(...args)}});function writeChunks(stream,buffer,offset,length,position){var contents=stream.node.contents;if(position>=contents.length)return 0;var size=Math.min(contents.length-position,length);if(contents.slice){for(var i=0;i<size;i++){buffer[offset+i]=contents[position+i]}}else{for(var i=0;i<size;i++){buffer[offset+i]=contents.get(position+i)}}return size}stream_ops.read=(stream,buffer,offset,length,position)=>{FS.forceLoadFile(node);return writeChunks(stream,buffer,offset,length,position)};stream_ops.mmap=(stream,length,position,prot,flags)=>{FS.forceLoadFile(node);var ptr=mmapAlloc(length);if(!ptr){throw new FS.ErrnoError(48)}writeChunks(stream,HEAP8,ptr,length,position);return{ptr:ptr,allocated:true}};node.stream_ops=stream_ops;return node}};var UTF8ToString=(ptr,maxBytesToRead)=>ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):"";var SYSCALLS={DEFAULT_POLLMASK:5,calculateAt(dirfd,path,allowEmpty){if(PATH.isAbs(path)){return path}var dir;if(dirfd===-100){dir=FS.cwd()}else{var dirstream=SYSCALLS.getStreamFromFD(dirfd);dir=dirstream.path}if(path.length==0){if(!allowEmpty){throw new FS.ErrnoError(44)}return dir}return PATH.join2(dir,path)},doStat(func,path,buf){var stat=func(path);HEAP32[buf>>2]=stat.dev;HEAP32[buf+4>>2]=stat.mode;HEAPU32[buf+8>>2]=stat.nlink;HEAP32[buf+12>>2]=stat.uid;HEAP32[buf+16>>2]=stat.gid;HEAP32[buf+20>>2]=stat.rdev;HEAP64[buf+24>>3]=BigInt(stat.size);HEAP32[buf+32>>2]=4096;HEAP32[buf+36>>2]=stat.blocks;var atime=stat.atime.getTime();var mtime=stat.mtime.getTime();var ctime=stat.ctime.getTime();HEAP64[buf+40>>3]=BigInt(Math.floor(atime/1e3));HEAPU32[buf+48>>2]=atime%1e3*1e3;HEAP64[buf+56>>3]=BigInt(Math.floor(mtime/1e3));HEAPU32[buf+64>>2]=mtime%1e3*1e3;HEAP64[buf+72>>3]=BigInt(Math.floor(ctime/1e3));HEAPU32[buf+80>>2]=ctime%1e3*1e3;HEAP64[buf+88>>3]=BigInt(stat.ino);return 0},doMsync(addr,stream,len,flags,offset){if(!FS.isFile(stream.node.mode)){throw new FS.ErrnoError(43)}if(flags&2){return 0}var buffer=HEAPU8.slice(addr,addr+len);FS.msync(stream,buffer,offset,len,flags)},getStreamFromFD(fd){var stream=FS.getStreamChecked(fd);return stream},varargs:undefined,getStr(ptr){var ret=UTF8ToString(ptr);return ret}};function ___syscall_chdir(path){try{path=SYSCALLS.getStr(path);FS.chdir(path);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_chmod(path,mode){try{path=SYSCALLS.getStr(path);FS.chmod(path,mode);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_faccessat(dirfd,path,amode,flags){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);if(amode&~7){return-28}var lookup=FS.lookupPath(path,{follow:true});var node=lookup.node;if(!node){return-44}var perms="";if(amode&4)perms+="r";if(amode&2)perms+="w";if(amode&1)perms+="x";if(perms&&FS.nodePermissions(node,perms)){return-2}return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_fchmod(fd,mode){try{FS.fchmod(fd,mode);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function syscallGetVarargI(){var ret=HEAP32[+SYSCALLS.varargs>>2];SYSCALLS.varargs+=4;return ret}var syscallGetVarargP=syscallGetVarargI;function ___syscall_fcntl64(fd,cmd,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(fd);switch(cmd){case 0:{var arg=syscallGetVarargI();if(arg<0){return-28}while(FS.streams[arg]){arg++}var newStream;newStream=FS.dupStream(stream,arg);return newStream.fd}case 1:case 2:return 0;case 3:return stream.flags;case 4:{var arg=syscallGetVarargI();stream.flags|=arg;return 0}case 12:{var arg=syscallGetVarargP();var offset=0;HEAP16[arg+offset>>1]=2;return 0}case 13:case 14:return 0}return-28}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_fstat64(fd,buf){try{var stream=SYSCALLS.getStreamFromFD(fd);return SYSCALLS.doStat(FS.stat,stream.path,buf)}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}var INT53_MAX=9007199254740992;var INT53_MIN=-9007199254740992;var bigintToI53Checked=num=>num<INT53_MIN||num>INT53_MAX?NaN:Number(num);function ___syscall_ftruncate64(fd,length){length=bigintToI53Checked(length);try{if(isNaN(length))return 61;FS.ftruncate(fd,length);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}var stringToUTF8=(str,outPtr,maxBytesToWrite)=>stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite);function ___syscall_getcwd(buf,size){try{if(size===0)return-28;var cwd=FS.cwd();var cwdLengthInBytes=lengthBytesUTF8(cwd)+1;if(size<cwdLengthInBytes)return-68;stringToUTF8(cwd,buf,size);return cwdLengthInBytes}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_getdents64(fd,dirp,count){try{var stream=SYSCALLS.getStreamFromFD(fd);stream.getdents||=FS.readdir(stream.path);var struct_size=280;var pos=0;var off=FS.llseek(stream,0,1);var idx=Math.floor(off/struct_size);while(idx<stream.getdents.length&&pos+struct_size<=count){var id;var type;var name=stream.getdents[idx];if(name==="."){id=stream.node.id;type=4}else if(name===".."){var lookup=FS.lookupPath(stream.path,{parent:true});id=lookup.node.id;type=4}else{var child=FS.lookupNode(stream.node,name);id=child.id;type=FS.isChrdev(child.mode)?2:FS.isDir(child.mode)?4:FS.isLink(child.mode)?10:8}HEAP64[dirp+pos>>3]=BigInt(id);HEAP64[dirp+pos+8>>3]=BigInt((idx+1)*struct_size);HEAP16[dirp+pos+16>>1]=280;HEAP8[dirp+pos+18]=type;stringToUTF8(name,dirp+pos+19,256);pos+=struct_size;idx+=1}FS.llseek(stream,idx*struct_size,0);return pos}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_ioctl(fd,op,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(fd);switch(op){case 21509:{if(!stream.tty)return-59;return 0}case 21505:{if(!stream.tty)return-59;if(stream.tty.ops.ioctl_tcgets){var termios=stream.tty.ops.ioctl_tcgets(stream);var argp=syscallGetVarargP();HEAP32[argp>>2]=termios.c_iflag||0;HEAP32[argp+4>>2]=termios.c_oflag||0;HEAP32[argp+8>>2]=termios.c_cflag||0;HEAP32[argp+12>>2]=termios.c_lflag||0;for(var i=0;i<32;i++){HEAP8[argp+i+17]=termios.c_cc[i]||0}return 0}return 0}case 21510:case 21511:case 21512:{if(!stream.tty)return-59;return 0}case 21506:case 21507:case 21508:{if(!stream.tty)return-59;if(stream.tty.ops.ioctl_tcsets){var argp=syscallGetVarargP();var c_iflag=HEAP32[argp>>2];var c_oflag=HEAP32[argp+4>>2];var c_cflag=HEAP32[argp+8>>2];var c_lflag=HEAP32[argp+12>>2];var c_cc=[];for(var i=0;i<32;i++){c_cc.push(HEAP8[argp+i+17])}return stream.tty.ops.ioctl_tcsets(stream.tty,op,{c_iflag:c_iflag,c_oflag:c_oflag,c_cflag:c_cflag,c_lflag:c_lflag,c_cc:c_cc})}return 0}case 21519:{if(!stream.tty)return-59;var argp=syscallGetVarargP();HEAP32[argp>>2]=0;return 0}case 21520:{if(!stream.tty)return-59;return-28}case 21531:{var argp=syscallGetVarargP();return FS.ioctl(stream,op,argp)}case 21523:{if(!stream.tty)return-59;if(stream.tty.ops.ioctl_tiocgwinsz){var winsize=stream.tty.ops.ioctl_tiocgwinsz(stream.tty);var argp=syscallGetVarargP();HEAP16[argp>>1]=winsize[0];HEAP16[argp+2>>1]=winsize[1]}return 0}case 21524:{if(!stream.tty)return-59;return 0}case 21515:{if(!stream.tty)return-59;return 0}default:return-28}}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_lstat64(path,buf){try{path=SYSCALLS.getStr(path);return SYSCALLS.doStat(FS.lstat,path,buf)}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_mkdirat(dirfd,path,mode){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);path=PATH.normalize(path);if(path[path.length-1]==="/")path=path.substr(0,path.length-1);FS.mkdir(path,mode,0);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_mknodat(dirfd,path,mode,dev){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);switch(mode&61440){case 32768:case 8192:case 24576:case 4096:case 49152:break;default:return-28}FS.mknod(path,mode,dev);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_newfstatat(dirfd,path,buf,flags){try{path=SYSCALLS.getStr(path);var nofollow=flags&256;var allowEmpty=flags&4096;flags=flags&~6400;path=SYSCALLS.calculateAt(dirfd,path,allowEmpty);return SYSCALLS.doStat(nofollow?FS.lstat:FS.stat,path,buf)}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_openat(dirfd,path,flags,varargs){SYSCALLS.varargs=varargs;try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);var mode=varargs?syscallGetVarargI():0;return FS.open(path,flags,mode).fd}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_readlinkat(dirfd,path,buf,bufsize){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);if(bufsize<=0)return-28;var ret=FS.readlink(path);var len=Math.min(bufsize,lengthBytesUTF8(ret));var endChar=HEAP8[buf+len];stringToUTF8(ret,buf,bufsize+1);HEAP8[buf+len]=endChar;return len}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_renameat(olddirfd,oldpath,newdirfd,newpath){try{oldpath=SYSCALLS.getStr(oldpath);newpath=SYSCALLS.getStr(newpath);oldpath=SYSCALLS.calculateAt(olddirfd,oldpath);newpath=SYSCALLS.calculateAt(newdirfd,newpath);FS.rename(oldpath,newpath);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_rmdir(path){try{path=SYSCALLS.getStr(path);FS.rmdir(path);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_stat64(path,buf){try{path=SYSCALLS.getStr(path);return SYSCALLS.doStat(FS.stat,path,buf)}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_statfs64(path,size,buf){try{path=SYSCALLS.getStr(path);HEAP32[buf+4>>2]=4096;HEAP32[buf+40>>2]=4096;HEAP32[buf+8>>2]=1e6;HEAP32[buf+12>>2]=5e5;HEAP32[buf+16>>2]=5e5;HEAP32[buf+20>>2]=FS.nextInode;HEAP32[buf+24>>2]=1e6;HEAP32[buf+28>>2]=42;HEAP32[buf+44>>2]=2;HEAP32[buf+36>>2]=255;return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_symlink(target,linkpath){try{target=SYSCALLS.getStr(target);linkpath=SYSCALLS.getStr(linkpath);FS.symlink(target,linkpath);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_unlinkat(dirfd,path,flags){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);if(flags===0){FS.unlink(path)}else if(flags===512){FS.rmdir(path)}else{abort("Invalid flags passed to unlinkat")}return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}var __abort_js=()=>{abort("")};var nowIsMonotonic=1;var __emscripten_get_now_is_monotonic=()=>nowIsMonotonic;var __emscripten_runtime_keepalive_clear=()=>{noExitRuntime=false;runtimeKeepaliveCounter=0};function __gmtime_js(time,tmPtr){time=bigintToI53Checked(time);var date=new Date(time*1e3);HEAP32[tmPtr>>2]=date.getUTCSeconds();HEAP32[tmPtr+4>>2]=date.getUTCMinutes();HEAP32[tmPtr+8>>2]=date.getUTCHours();HEAP32[tmPtr+12>>2]=date.getUTCDate();HEAP32[tmPtr+16>>2]=date.getUTCMonth();HEAP32[tmPtr+20>>2]=date.getUTCFullYear()-1900;HEAP32[tmPtr+24>>2]=date.getUTCDay();var start=Date.UTC(date.getUTCFullYear(),0,1,0,0,0,0);var yday=(date.getTime()-start)/(1e3*60*60*24)|0;HEAP32[tmPtr+28>>2]=yday}var isLeapYear=year=>year%4===0&&(year%100!==0||year%400===0);var MONTH_DAYS_LEAP_CUMULATIVE=[0,31,60,91,121,152,182,213,244,274,305,335];var MONTH_DAYS_REGULAR_CUMULATIVE=[0,31,59,90,120,151,181,212,243,273,304,334];var ydayFromDate=date=>{var leap=isLeapYear(date.getFullYear());var monthDaysCumulative=leap?MONTH_DAYS_LEAP_CUMULATIVE:MONTH_DAYS_REGULAR_CUMULATIVE;var yday=monthDaysCumulative[date.getMonth()]+date.getDate()-1;return yday};function __localtime_js(time,tmPtr){time=bigintToI53Checked(time);var date=new Date(time*1e3);HEAP32[tmPtr>>2]=date.getSeconds();HEAP32[tmPtr+4>>2]=date.getMinutes();HEAP32[tmPtr+8>>2]=date.getHours();HEAP32[tmPtr+12>>2]=date.getDate();HEAP32[tmPtr+16>>2]=date.getMonth();HEAP32[tmPtr+20>>2]=date.getFullYear()-1900;HEAP32[tmPtr+24>>2]=date.getDay();var yday=ydayFromDate(date)|0;HEAP32[tmPtr+28>>2]=yday;HEAP32[tmPtr+36>>2]=-(date.getTimezoneOffset()*60);var start=new Date(date.getFullYear(),0,1);var summerOffset=new Date(date.getFullYear(),6,1).getTimezoneOffset();var winterOffset=start.getTimezoneOffset();var dst=(summerOffset!=winterOffset&&date.getTimezoneOffset()==Math.min(winterOffset,summerOffset))|0;HEAP32[tmPtr+32>>2]=dst}var __tzset_js=(timezone,daylight,std_name,dst_name)=>{var currentYear=(new Date).getFullYear();var winter=new Date(currentYear,0,1);var summer=new Date(currentYear,6,1);var winterOffset=winter.getTimezoneOffset();var summerOffset=summer.getTimezoneOffset();var stdTimezoneOffset=Math.max(winterOffset,summerOffset);HEAPU32[timezone>>2]=stdTimezoneOffset*60;HEAP32[daylight>>2]=Number(winterOffset!=summerOffset);var extractZone=timezoneOffset=>{var sign=timezoneOffset>=0?"-":"+";var absOffset=Math.abs(timezoneOffset);var hours=String(Math.floor(absOffset/60)).padStart(2,"0");var minutes=String(absOffset%60).padStart(2,"0");return`UTC${sign}${hours}${minutes}`};var winterName=extractZone(winterOffset);var summerName=extractZone(summerOffset);if(summerOffset<winterOffset){stringToUTF8(winterName,std_name,17);stringToUTF8(summerName,dst_name,17)}else{stringToUTF8(winterName,dst_name,17);stringToUTF8(summerName,std_name,17)}};var runtimeKeepaliveCounter=0;var runtimeKeepalivePush=()=>{runtimeKeepaliveCounter+=1};var _emscripten_set_main_loop_timing=(mode,value)=>{Browser.mainLoop.timingMode=mode;Browser.mainLoop.timingValue=value;if(!Browser.mainLoop.func){return 1}if(!Browser.mainLoop.running){runtimeKeepalivePush();Browser.mainLoop.running=true}if(mode==0){Browser.mainLoop.scheduler=function Browser_mainLoop_scheduler_setTimeout(){var timeUntilNextTick=Math.max(0,Browser.mainLoop.tickStartTime+value-_emscripten_get_now())|0;setTimeout(Browser.mainLoop.runner,timeUntilNextTick)};Browser.mainLoop.method="timeout"}else if(mode==1){Browser.mainLoop.scheduler=function Browser_mainLoop_scheduler_rAF(){Browser.requestAnimationFrame(Browser.mainLoop.runner)};Browser.mainLoop.method="rAF"}else if(mode==2){if(typeof Browser.setImmediate=="undefined"){if(typeof setImmediate=="undefined"){var setImmediates=[];var emscriptenMainLoopMessageId="setimmediate";var Browser_setImmediate_messageHandler=event=>{if(event.data===emscriptenMainLoopMessageId||event.data.target===emscriptenMainLoopMessageId){event.stopPropagation();setImmediates.shift()()}};addEventListener("message",Browser_setImmediate_messageHandler,true);Browser.setImmediate=function Browser_emulated_setImmediate(func){setImmediates.push(func);if(ENVIRONMENT_IS_WORKER){Module["setImmediates"]??=[];Module["setImmediates"].push(func);postMessage({target:emscriptenMainLoopMessageId})}else postMessage(emscriptenMainLoopMessageId,"*")}}else{Browser.setImmediate=setImmediate}}Browser.mainLoop.scheduler=function Browser_mainLoop_scheduler_setImmediate(){Browser.setImmediate(Browser.mainLoop.runner)};Browser.mainLoop.method="immediate"}return 0};var _emscripten_get_now;_emscripten_get_now=()=>performance.now();var webgl_enable_ANGLE_instanced_arrays=ctx=>{var ext=ctx.getExtension("ANGLE_instanced_arrays");if(ext){ctx["vertexAttribDivisor"]=(index,divisor)=>ext["vertexAttribDivisorANGLE"](index,divisor);ctx["drawArraysInstanced"]=(mode,first,count,primcount)=>ext["drawArraysInstancedANGLE"](mode,first,count,primcount);ctx["drawElementsInstanced"]=(mode,count,type,indices,primcount)=>ext["drawElementsInstancedANGLE"](mode,count,type,indices,primcount);return 1}};var webgl_enable_OES_vertex_array_object=ctx=>{var ext=ctx.getExtension("OES_vertex_array_object");if(ext){ctx["createVertexArray"]=()=>ext["createVertexArrayOES"]();ctx["deleteVertexArray"]=vao=>ext["deleteVertexArrayOES"](vao);ctx["bindVertexArray"]=vao=>ext["bindVertexArrayOES"](vao);ctx["isVertexArray"]=vao=>ext["isVertexArrayOES"](vao);return 1}};var webgl_enable_WEBGL_draw_buffers=ctx=>{var ext=ctx.getExtension("WEBGL_draw_buffers");if(ext){ctx["drawBuffers"]=(n,bufs)=>ext["drawBuffersWEBGL"](n,bufs);return 1}};var webgl_enable_WEBGL_draw_instanced_base_vertex_base_instance=ctx=>!!(ctx.dibvbi=ctx.getExtension("WEBGL_draw_instanced_base_vertex_base_instance"));var webgl_enable_WEBGL_multi_draw_instanced_base_vertex_base_instance=ctx=>!!(ctx.mdibvbi=ctx.getExtension("WEBGL_multi_draw_instanced_base_vertex_base_instance"));var webgl_enable_WEBGL_multi_draw=ctx=>!!(ctx.multiDrawWebgl=ctx.getExtension("WEBGL_multi_draw"));var getEmscriptenSupportedExtensions=ctx=>{var supportedExtensions=["ANGLE_instanced_arrays","EXT_blend_minmax","EXT_disjoint_timer_query","EXT_frag_depth","EXT_shader_texture_lod","EXT_sRGB","OES_element_index_uint","OES_fbo_render_mipmap","OES_standard_derivatives","OES_texture_float","OES_texture_half_float","OES_texture_half_float_linear","OES_vertex_array_object","WEBGL_color_buffer_float","WEBGL_depth_texture","WEBGL_draw_buffers","EXT_color_buffer_float","EXT_conservative_depth","EXT_disjoint_timer_query_webgl2","EXT_texture_norm16","NV_shader_noperspective_interpolation","WEBGL_clip_cull_distance","EXT_color_buffer_half_float","EXT_depth_clamp","EXT_float_blend","EXT_texture_compression_bptc","EXT_texture_compression_rgtc","EXT_texture_filter_anisotropic","KHR_parallel_shader_compile","OES_texture_float_linear","WEBGL_blend_func_extended","WEBGL_compressed_texture_astc","WEBGL_compressed_texture_etc","WEBGL_compressed_texture_etc1","WEBGL_compressed_texture_s3tc","WEBGL_compressed_texture_s3tc_srgb","WEBGL_debug_renderer_info","WEBGL_debug_shaders","WEBGL_lose_context","WEBGL_multi_draw"];return(ctx.getSupportedExtensions()||[]).filter(ext=>supportedExtensions.includes(ext))};var GL={counter:1,buffers:[],programs:[],framebuffers:[],renderbuffers:[],textures:[],shaders:[],vaos:[],contexts:[],offscreenCanvases:{},queries:[],samplers:[],transformFeedbacks:[],syncs:[],stringCache:{},stringiCache:{},unpackAlignment:4,unpackRowLength:0,recordError:errorCode=>{if(!GL.lastError){GL.lastError=errorCode}},getNewId:table=>{var ret=GL.counter++;for(var i=table.length;i<ret;i++){table[i]=null}return ret},genObject:(n,buffers,createFunction,objectTable)=>{for(var i=0;i<n;i++){var buffer=GLctx[createFunction]();var id=buffer&&GL.getNewId(objectTable);if(buffer){buffer.name=id;objectTable[id]=buffer}else{GL.recordError(1282)}HEAP32[buffers+i*4>>2]=id}},getSource:(shader,count,string,length)=>{var source="";for(var i=0;i<count;++i){var len=length?HEAPU32[length+i*4>>2]:undefined;source+=UTF8ToString(HEAPU32[string+i*4>>2],len)}return source},createContext:(canvas,webGLContextAttributes)=>{if(webGLContextAttributes.renderViaOffscreenBackBuffer)webGLContextAttributes["preserveDrawingBuffer"]=true;var ctx=webGLContextAttributes.majorVersion>1?canvas.getContext("webgl2",webGLContextAttributes):canvas.getContext("webgl",webGLContextAttributes);if(!ctx)return 0;var handle=GL.registerContext(ctx,webGLContextAttributes);return handle},enableOffscreenFramebufferAttributes:webGLContextAttributes=>{webGLContextAttributes.renderViaOffscreenBackBuffer=true;webGLContextAttributes.preserveDrawingBuffer=true},createOffscreenFramebuffer:context=>{var gl=context.GLctx;var fbo=gl.createFramebuffer();gl.bindFramebuffer(36160,fbo);context.defaultFbo=fbo;context.defaultFboForbidBlitFramebuffer=false;if(gl.getContextAttributes().antialias){context.defaultFboForbidBlitFramebuffer=true}context.defaultColorTarget=gl.createTexture();context.defaultDepthTarget=gl.createRenderbuffer();GL.resizeOffscreenFramebuffer(context);gl.bindTexture(3553,context.defaultColorTarget);gl.texParameteri(3553,10241,9728);gl.texParameteri(3553,10240,9728);gl.texParameteri(3553,10242,33071);gl.texParameteri(3553,10243,33071);gl.texImage2D(3553,0,6408,gl.canvas.width,gl.canvas.height,0,6408,5121,null);gl.framebufferTexture2D(36160,36064,3553,context.defaultColorTarget,0);gl.bindTexture(3553,null);var depthTarget=gl.createRenderbuffer();gl.bindRenderbuffer(36161,context.defaultDepthTarget);gl.renderbufferStorage(36161,33189,gl.canvas.width,gl.canvas.height);gl.framebufferRenderbuffer(36160,36096,36161,context.defaultDepthTarget);gl.bindRenderbuffer(36161,null);var vertices=[-1,-1,-1,1,1,-1,1,1];var vb=gl.createBuffer();gl.bindBuffer(34962,vb);gl.bufferData(34962,new Float32Array(vertices),35044);gl.bindBuffer(34962,null);context.blitVB=vb;var vsCode="attribute vec2 pos;"+"varying lowp vec2 tex;"+"void main() { tex = pos * 0.5 + vec2(0.5,0.5); gl_Position = vec4(pos, 0.0, 1.0); }";var vs=gl.createShader(35633);gl.shaderSource(vs,vsCode);gl.compileShader(vs);var fsCode="varying lowp vec2 tex;"+"uniform sampler2D sampler;"+"void main() { gl_FragColor = texture2D(sampler, tex); }";var fs=gl.createShader(35632);gl.shaderSource(fs,fsCode);gl.compileShader(fs);var blitProgram=gl.createProgram();gl.attachShader(blitProgram,vs);gl.attachShader(blitProgram,fs);gl.linkProgram(blitProgram);context.blitProgram=blitProgram;context.blitPosLoc=gl.getAttribLocation(blitProgram,"pos");gl.useProgram(blitProgram);gl.uniform1i(gl.getUniformLocation(blitProgram,"sampler"),0);gl.useProgram(null);context.defaultVao=undefined;if(gl.createVertexArray){context.defaultVao=gl.createVertexArray();gl.bindVertexArray(context.defaultVao);gl.enableVertexAttribArray(context.blitPosLoc);gl.bindVertexArray(null)}},resizeOffscreenFramebuffer:context=>{var gl=context.GLctx;if(context.defaultColorTarget){var prevTextureBinding=gl.getParameter(32873);gl.bindTexture(3553,context.defaultColorTarget);gl.texImage2D(3553,0,6408,gl.drawingBufferWidth,gl.drawingBufferHeight,0,6408,5121,null);gl.bindTexture(3553,prevTextureBinding)}if(context.defaultDepthTarget){var prevRenderBufferBinding=gl.getParameter(36007);gl.bindRenderbuffer(36161,context.defaultDepthTarget);gl.renderbufferStorage(36161,33189,gl.drawingBufferWidth,gl.drawingBufferHeight);gl.bindRenderbuffer(36161,prevRenderBufferBinding)}},blitOffscreenFramebuffer:context=>{var gl=context.GLctx;var prevScissorTest=gl.getParameter(3089);if(prevScissorTest)gl.disable(3089);var prevFbo=gl.getParameter(36006);if(gl.blitFramebuffer&&!context.defaultFboForbidBlitFramebuffer){gl.bindFramebuffer(36008,context.defaultFbo);gl.bindFramebuffer(36009,null);gl.blitFramebuffer(0,0,gl.canvas.width,gl.canvas.height,0,0,gl.canvas.width,gl.canvas.height,16384,9728)}else{gl.bindFramebuffer(36160,null);var prevProgram=gl.getParameter(35725);gl.useProgram(context.blitProgram);var prevVB=gl.getParameter(34964);gl.bindBuffer(34962,context.blitVB);var prevActiveTexture=gl.getParameter(34016);gl.activeTexture(33984);var prevTextureBinding=gl.getParameter(32873);gl.bindTexture(3553,context.defaultColorTarget);var prevBlend=gl.getParameter(3042);if(prevBlend)gl.disable(3042);var prevCullFace=gl.getParameter(2884);if(prevCullFace)gl.disable(2884);var prevDepthTest=gl.getParameter(2929);if(prevDepthTest)gl.disable(2929);var prevStencilTest=gl.getParameter(2960);if(prevStencilTest)gl.disable(2960);function draw(){gl.vertexAttribPointer(context.blitPosLoc,2,5126,false,0,0);gl.drawArrays(5,0,4)}if(context.defaultVao){var prevVAO=gl.getParameter(34229);gl.bindVertexArray(context.defaultVao);draw();gl.bindVertexArray(prevVAO)}else{var prevVertexAttribPointer={buffer:gl.getVertexAttrib(context.blitPosLoc,34975),size:gl.getVertexAttrib(context.blitPosLoc,34339),stride:gl.getVertexAttrib(context.blitPosLoc,34340),type:gl.getVertexAttrib(context.blitPosLoc,34341),normalized:gl.getVertexAttrib(context.blitPosLoc,34922),pointer:gl.getVertexAttribOffset(context.blitPosLoc,34373)};var maxVertexAttribs=gl.getParameter(34921);var prevVertexAttribEnables=[];for(var i=0;i<maxVertexAttribs;++i){var prevEnabled=gl.getVertexAttrib(i,34338);var wantEnabled=i==context.blitPosLoc;if(prevEnabled&&!wantEnabled){gl.disableVertexAttribArray(i)}if(!prevEnabled&&wantEnabled){gl.enableVertexAttribArray(i)}prevVertexAttribEnables[i]=prevEnabled}draw();for(var i=0;i<maxVertexAttribs;++i){var prevEnabled=prevVertexAttribEnables[i];var nowEnabled=i==context.blitPosLoc;if(prevEnabled&&!nowEnabled){gl.enableVertexAttribArray(i)}if(!prevEnabled&&nowEnabled){gl.disableVertexAttribArray(i)}}gl.bindBuffer(34962,prevVertexAttribPointer.buffer);gl.vertexAttribPointer(context.blitPosLoc,prevVertexAttribPointer.size,prevVertexAttribPointer.type,prevVertexAttribPointer.normalized,prevVertexAttribPointer.stride,prevVertexAttribPointer.offset)}if(prevStencilTest)gl.enable(2960);if(prevDepthTest)gl.enable(2929);if(prevCullFace)gl.enable(2884);if(prevBlend)gl.enable(3042);gl.bindTexture(3553,prevTextureBinding);gl.activeTexture(prevActiveTexture);gl.bindBuffer(34962,prevVB);gl.useProgram(prevProgram)}gl.bindFramebuffer(36160,prevFbo);if(prevScissorTest)gl.enable(3089)},registerContext:(ctx,webGLContextAttributes)=>{var handle=GL.getNewId(GL.contexts);var context={handle:handle,attributes:webGLContextAttributes,version:webGLContextAttributes.majorVersion,GLctx:ctx};if(ctx.canvas)ctx.canvas.GLctxObject=context;GL.contexts[handle]=context;if(typeof webGLContextAttributes.enableExtensionsByDefault=="undefined"||webGLContextAttributes.enableExtensionsByDefault){GL.initExtensions(context)}if(webGLContextAttributes.renderViaOffscreenBackBuffer)GL.createOffscreenFramebuffer(context);return handle},makeContextCurrent:contextHandle=>{GL.currentContext=GL.contexts[contextHandle];Module.ctx=GLctx=GL.currentContext?.GLctx;return!(contextHandle&&!GLctx)},getContext:contextHandle=>GL.contexts[contextHandle],deleteContext:contextHandle=>{if(GL.currentContext===GL.contexts[contextHandle]){GL.currentContext=null}if(typeof JSEvents=="object"){JSEvents.removeAllHandlersOnTarget(GL.contexts[contextHandle].GLctx.canvas)}if(GL.contexts[contextHandle]&&GL.contexts[contextHandle].GLctx.canvas){GL.contexts[contextHandle].GLctx.canvas.GLctxObject=undefined}GL.contexts[contextHandle]=null},initExtensions:context=>{context||=GL.currentContext;if(context.initExtensionsDone)return;context.initExtensionsDone=true;var GLctx=context.GLctx;webgl_enable_ANGLE_instanced_arrays(GLctx);webgl_enable_OES_vertex_array_object(GLctx);webgl_enable_WEBGL_draw_buffers(GLctx);webgl_enable_WEBGL_draw_instanced_base_vertex_base_instance(GLctx);webgl_enable_WEBGL_multi_draw_instanced_base_vertex_base_instance(GLctx);if(context.version>=2){GLctx.disjointTimerQueryExt=GLctx.getExtension("EXT_disjoint_timer_query_webgl2")}if(context.version<2||!GLctx.disjointTimerQueryExt){GLctx.disjointTimerQueryExt=GLctx.getExtension("EXT_disjoint_timer_query")}webgl_enable_WEBGL_multi_draw(GLctx);getEmscriptenSupportedExtensions(GLctx).forEach(ext=>{if(!ext.includes("lose_context")&&!ext.includes("debug")){GLctx.getExtension(ext)}})}};var _emscripten_webgl_do_commit_frame=()=>{if(!GL.currentContext||!GL.currentContext.GLctx){return-3}if(GL.currentContext.defaultFbo){GL.blitOffscreenFramebuffer(GL.currentContext);return 0}if(!GL.currentContext.attributes.explicitSwapControl){return-3}return 0};var _emscripten_webgl_commit_frame=_emscripten_webgl_do_commit_frame;var keepRuntimeAlive=()=>noExitRuntime||runtimeKeepaliveCounter>0;var _proc_exit=code=>{EXITSTATUS=code;if(!keepRuntimeAlive()){Module["onExit"]?.(code);ABORT=true}quit_(code,new ExitStatus(code))};var exitJS=(status,implicit)=>{EXITSTATUS=status;if(!keepRuntimeAlive()){exitRuntime()}_proc_exit(status)};var _exit=exitJS;var handleException=e=>{if(e instanceof ExitStatus||e=="unwind"){return EXITSTATUS}quit_(1,e)};var maybeExit=()=>{if(runtimeExited){return}if(!keepRuntimeAlive()){try{_exit(EXITSTATUS)}catch(e){handleException(e)}}};var runtimeKeepalivePop=()=>{runtimeKeepaliveCounter-=1};var setMainLoop=(browserIterationFunc,fps,simulateInfiniteLoop,arg,noSetTiming)=>{Browser.mainLoop.func=browserIterationFunc;Browser.mainLoop.arg=arg;var thisMainLoopId=Browser.mainLoop.currentlyRunningMainloop;function checkIsRunning(){if(thisMainLoopId<Browser.mainLoop.currentlyRunningMainloop){runtimeKeepalivePop();maybeExit();return false}return true}Browser.mainLoop.running=false;Browser.mainLoop.runner=function Browser_mainLoop_runner(){if(ABORT)return;if(Browser.mainLoop.queue.length>0){var start=Date.now();var blocker=Browser.mainLoop.queue.shift();blocker.func(blocker.arg);if(Browser.mainLoop.remainingBlockers){var remaining=Browser.mainLoop.remainingBlockers;var next=remaining%1==0?remaining-1:Math.floor(remaining);if(blocker.counted){Browser.mainLoop.remainingBlockers=next}else{next=next+.5;Browser.mainLoop.remainingBlockers=(8*remaining+next)/9}}Browser.mainLoop.updateStatus();if(!checkIsRunning())return;setTimeout(Browser.mainLoop.runner,0);return}if(!checkIsRunning())return;Browser.mainLoop.currentFrameNumber=Browser.mainLoop.currentFrameNumber+1|0;if(Browser.mainLoop.timingMode==1&&Browser.mainLoop.timingValue>1&&Browser.mainLoop.currentFrameNumber%Browser.mainLoop.timingValue!=0){Browser.mainLoop.scheduler();return}else if(Browser.mainLoop.timingMode==0){Browser.mainLoop.tickStartTime=_emscripten_get_now()}Browser.mainLoop.runIter(browserIterationFunc);if(!checkIsRunning())return;if(typeof SDL=="object")SDL.audio?.queueNewAudioData?.();Browser.mainLoop.scheduler()};if(!noSetTiming){if(fps&&fps>0){_emscripten_set_main_loop_timing(0,1e3/fps)}else{_emscripten_set_main_loop_timing(1,1)}Browser.mainLoop.scheduler()}if(simulateInfiniteLoop){throw"unwind"}};var callUserCallback=func=>{if(runtimeExited||ABORT){return}try{func();maybeExit()}catch(e){handleException(e)}};var safeSetTimeout=(func,timeout)=>{runtimeKeepalivePush();return setTimeout(()=>{runtimeKeepalivePop();callUserCallback(func)},timeout)};var warnOnce=text=>{warnOnce.shown||={};if(!warnOnce.shown[text]){warnOnce.shown[text]=1;err(text)}};var Browser={mainLoop:{running:false,scheduler:null,method:"",currentlyRunningMainloop:0,func:null,arg:0,timingMode:0,timingValue:0,currentFrameNumber:0,queue:[],pause(){Browser.mainLoop.scheduler=null;Browser.mainLoop.currentlyRunningMainloop++},resume(){Browser.mainLoop.currentlyRunningMainloop++;var timingMode=Browser.mainLoop.timingMode;var timingValue=Browser.mainLoop.timingValue;var func=Browser.mainLoop.func;Browser.mainLoop.func=null;setMainLoop(func,0,false,Browser.mainLoop.arg,true);_emscripten_set_main_loop_timing(timingMode,timingValue);Browser.mainLoop.scheduler()},updateStatus(){if(Module["setStatus"]){var message=Module["statusMessage"]||"Please wait...";var remaining=Browser.mainLoop.remainingBlockers;var expected=Browser.mainLoop.expectedBlockers;if(remaining){if(remaining<expected){Module["setStatus"](`{message} ({expected - remaining}/{expected})`)}else{Module["setStatus"](message)}}else{Module["setStatus"]("")}}},runIter(func){if(ABORT)return;if(Module["preMainLoop"]){var preRet=Module["preMainLoop"]();if(preRet===false){return}}callUserCallback(func);Module["postMainLoop"]?.()}},isFullscreen:false,pointerLock:false,moduleContextCreatedCallbacks:[],workers:[],init(){if(Browser.initted)return;Browser.initted=true;var imagePlugin={};imagePlugin["canHandle"]=function imagePlugin_canHandle(name){return!Module.noImageDecoding&&/\.(jpg|jpeg|png|bmp)$/i.test(name)};imagePlugin["handle"]=function imagePlugin_handle(byteArray,name,onload,onerror){var b=new Blob([byteArray],{type:Browser.getMimetype(name)});if(b.size!==byteArray.length){b=new Blob([new Uint8Array(byteArray).buffer],{type:Browser.getMimetype(name)})}var url=URL.createObjectURL(b);var img=new Image;img.onload=()=>{var canvas=document.createElement("canvas");canvas.width=img.width;canvas.height=img.height;var ctx=canvas.getContext("2d");ctx.drawImage(img,0,0);preloadedImages[name]=canvas;URL.revokeObjectURL(url);onload?.(byteArray)};img.onerror=event=>{err(`Image ${url} could not be decoded`);onerror?.()};img.src=url};preloadPlugins.push(imagePlugin);var audioPlugin={};audioPlugin["canHandle"]=function audioPlugin_canHandle(name){return!Module.noAudioDecoding&&name.substr(-4)in{".ogg":1,".wav":1,".mp3":1}};audioPlugin["handle"]=function audioPlugin_handle(byteArray,name,onload,onerror){var done=false;function finish(audio){if(done)return;done=true;preloadedAudios[name]=audio;onload?.(byteArray)}var b=new Blob([byteArray],{type:Browser.getMimetype(name)});var url=URL.createObjectURL(b);var audio=new Audio;audio.addEventListener("canplaythrough",()=>finish(audio),false);audio.onerror=function audio_onerror(event){if(done)return;err(`warning: browser could not fully decode audio ${name}, trying slower base64 approach`);function encode64(data){var BASE="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";var PAD="=";var ret="";var leftchar=0;var leftbits=0;for(var i=0;i<data.length;i++){leftchar=leftchar<<8|data[i];leftbits+=8;while(leftbits>=6){var curr=leftchar>>leftbits-6&63;leftbits-=6;ret+=BASE[curr]}}if(leftbits==2){ret+=BASE[(leftchar&3)<<4];ret+=PAD+PAD}else if(leftbits==4){ret+=BASE[(leftchar&15)<<2];ret+=PAD}return ret}audio.src="data:audio/x-"+name.substr(-3)+";base64,"+encode64(byteArray);finish(audio)};audio.src=url;safeSetTimeout(()=>{finish(audio)},1e4)};preloadPlugins.push(audioPlugin);function pointerLockChange(){Browser.pointerLock=document["pointerLockElement"]===Module["canvas"]||document["mozPointerLockElement"]===Module["canvas"]||document["webkitPointerLockElement"]===Module["canvas"]||document["msPointerLockElement"]===Module["canvas"]}var canvas=Module["canvas"];if(canvas){canvas.requestPointerLock=canvas["requestPointerLock"]||canvas["mozRequestPointerLock"]||canvas["webkitRequestPointerLock"]||canvas["msRequestPointerLock"]||(()=>{});canvas.exitPointerLock=document["exitPointerLock"]||document["mozExitPointerLock"]||document["webkitExitPointerLock"]||document["msExitPointerLock"]||(()=>{});canvas.exitPointerLock=canvas.exitPointerLock.bind(document);document.addEventListener("pointerlockchange",pointerLockChange,false);document.addEventListener("mozpointerlockchange",pointerLockChange,false);document.addEventListener("webkitpointerlockchange",pointerLockChange,false);document.addEventListener("mspointerlockchange",pointerLockChange,false);if(Module["elementPointerLock"]){canvas.addEventListener("click",ev=>{if(!Browser.pointerLock&&Module["canvas"].requestPointerLock){Module["canvas"].requestPointerLock();ev.preventDefault()}},false)}}},createContext(canvas,useWebGL,setInModule,webGLContextAttributes){if(useWebGL&&Module.ctx&&canvas==Module.canvas)return Module.ctx;var ctx;var contextHandle;if(useWebGL){var contextAttributes={antialias:false,alpha:false,majorVersion:typeof WebGL2RenderingContext!="undefined"?2:1};if(webGLContextAttributes){for(var attribute in webGLContextAttributes){contextAttributes[attribute]=webGLContextAttributes[attribute]}}if(typeof GL!="undefined"){contextHandle=GL.createContext(canvas,contextAttributes);if(contextHandle){ctx=GL.getContext(contextHandle).GLctx}}}else{ctx=canvas.getContext("2d")}if(!ctx)return null;if(setInModule){Module.ctx=ctx;if(useWebGL)GL.makeContextCurrent(contextHandle);Module.useWebGL=useWebGL;Browser.moduleContextCreatedCallbacks.forEach(callback=>callback());Browser.init()}return ctx},destroyContext(canvas,useWebGL,setInModule){},fullscreenHandlersInstalled:false,lockPointer:undefined,resizeCanvas:undefined,requestFullscreen(lockPointer,resizeCanvas){Browser.lockPointer=lockPointer;Browser.resizeCanvas=resizeCanvas;if(typeof Browser.lockPointer=="undefined")Browser.lockPointer=true;if(typeof Browser.resizeCanvas=="undefined")Browser.resizeCanvas=false;var canvas=Module["canvas"];function fullscreenChange(){Browser.isFullscreen=false;var canvasContainer=canvas.parentNode;if((document["fullscreenElement"]||document["mozFullScreenElement"]||document["msFullscreenElement"]||document["webkitFullscreenElement"]||document["webkitCurrentFullScreenElement"])===canvasContainer){canvas.exitFullscreen=Browser.exitFullscreen;if(Browser.lockPointer)canvas.requestPointerLock();Browser.isFullscreen=true;if(Browser.resizeCanvas){Browser.setFullscreenCanvasSize()}else{Browser.updateCanvasDimensions(canvas)}}else{canvasContainer.parentNode.insertBefore(canvas,canvasContainer);canvasContainer.parentNode.removeChild(canvasContainer);if(Browser.resizeCanvas){Browser.setWindowedCanvasSize()}else{Browser.updateCanvasDimensions(canvas)}}Module["onFullScreen"]?.(Browser.isFullscreen);Module["onFullscreen"]?.(Browser.isFullscreen)}if(!Browser.fullscreenHandlersInstalled){Browser.fullscreenHandlersInstalled=true;document.addEventListener("fullscreenchange",fullscreenChange,false);document.addEventListener("mozfullscreenchange",fullscreenChange,false);document.addEventListener("webkitfullscreenchange",fullscreenChange,false);document.addEventListener("MSFullscreenChange",fullscreenChange,false)}var canvasContainer=document.createElement("div");canvas.parentNode.insertBefore(canvasContainer,canvas);canvasContainer.appendChild(canvas);canvasContainer.requestFullscreen=canvasContainer["requestFullscreen"]||canvasContainer["mozRequestFullScreen"]||canvasContainer["msRequestFullscreen"]||(canvasContainer["webkitRequestFullscreen"]?()=>canvasContainer["webkitRequestFullscreen"](Element["ALLOW_KEYBOARD_INPUT"]):null)||(canvasContainer["webkitRequestFullScreen"]?()=>canvasContainer["webkitRequestFullScreen"](Element["ALLOW_KEYBOARD_INPUT"]):null);canvasContainer.requestFullscreen()},exitFullscreen(){if(!Browser.isFullscreen){return false}var CFS=document["exitFullscreen"]||document["cancelFullScreen"]||document["mozCancelFullScreen"]||document["msExitFullscreen"]||document["webkitCancelFullScreen"]||(()=>{});CFS.apply(document,[]);return true},nextRAF:0,fakeRequestAnimationFrame(func){var now=Date.now();if(Browser.nextRAF===0){Browser.nextRAF=now+1e3/60}else{while(now+2>=Browser.nextRAF){Browser.nextRAF+=1e3/60}}var delay=Math.max(Browser.nextRAF-now,0);setTimeout(func,delay)},requestAnimationFrame(func){if(typeof requestAnimationFrame=="function"){requestAnimationFrame(func);return}var RAF=Browser.fakeRequestAnimationFrame;RAF(func)},safeSetTimeout(func,timeout){return safeSetTimeout(func,timeout)},safeRequestAnimationFrame(func){runtimeKeepalivePush();return Browser.requestAnimationFrame(()=>{runtimeKeepalivePop();callUserCallback(func)})},getMimetype(name){return{jpg:"image/jpeg",jpeg:"image/jpeg",png:"image/png",bmp:"image/bmp",ogg:"audio/ogg",wav:"audio/wav",mp3:"audio/mpeg"}[name.substr(name.lastIndexOf(".")+1)]},getUserMedia(func){window.getUserMedia||=navigator["getUserMedia"]||navigator["mozGetUserMedia"];window.getUserMedia(func)},getMovementX(event){return event["movementX"]||event["mozMovementX"]||event["webkitMovementX"]||0},getMovementY(event){return event["movementY"]||event["mozMovementY"]||event["webkitMovementY"]||0},getMouseWheelDelta(event){var delta=0;switch(event.type){case"DOMMouseScroll":delta=event.detail/3;break;case"mousewheel":delta=event.wheelDelta/120;break;case"wheel":delta=event.deltaY;switch(event.deltaMode){case 0:delta/=100;break;case 1:delta/=3;break;case 2:delta*=80;break;default:throw"unrecognized mouse wheel delta mode: "+event.deltaMode}break;default:throw"unrecognized mouse wheel event: "+event.type}return delta},mouseX:0,mouseY:0,mouseMovementX:0,mouseMovementY:0,touches:{},lastTouches:{},calculateMouseCoords(pageX,pageY){var rect=Module["canvas"].getBoundingClientRect();var cw=Module["canvas"].width;var ch=Module["canvas"].height;var scrollX=typeof window.scrollX!="undefined"?window.scrollX:window.pageXOffset;var scrollY=typeof window.scrollY!="undefined"?window.scrollY:window.pageYOffset;var adjustedX=pageX-(scrollX+rect.left);var adjustedY=pageY-(scrollY+rect.top);adjustedX=adjustedX*(cw/rect.width);adjustedY=adjustedY*(ch/rect.height);return{x:adjustedX,y:adjustedY}},setMouseCoords(pageX,pageY){const{x:x,y:y}=Browser.calculateMouseCoords(pageX,pageY);Browser.mouseMovementX=x-Browser.mouseX;Browser.mouseMovementY=y-Browser.mouseY;Browser.mouseX=x;Browser.mouseY=y},calculateMouseEvent(event){if(Browser.pointerLock){if(event.type!="mousemove"&&"mozMovementX"in event){Browser.mouseMovementX=Browser.mouseMovementY=0}else{Browser.mouseMovementX=Browser.getMovementX(event);Browser.mouseMovementY=Browser.getMovementY(event)}Browser.mouseX+=Browser.mouseMovementX;Browser.mouseY+=Browser.mouseMovementY}else{if(event.type==="touchstart"||event.type==="touchend"||event.type==="touchmove"){var touch=event.touch;if(touch===undefined){return}var coords=Browser.calculateMouseCoords(touch.pageX,touch.pageY);if(event.type==="touchstart"){Browser.lastTouches[touch.identifier]=coords;Browser.touches[touch.identifier]=coords}else if(event.type==="touchend"||event.type==="touchmove"){var last=Browser.touches[touch.identifier];last||=coords;Browser.lastTouches[touch.identifier]=last;Browser.touches[touch.identifier]=coords}return}Browser.setMouseCoords(event.pageX,event.pageY)}},resizeListeners:[],updateResizeListeners(){var canvas=Module["canvas"];Browser.resizeListeners.forEach(listener=>listener(canvas.width,canvas.height))},setCanvasSize(width,height,noUpdates){var canvas=Module["canvas"];Browser.updateCanvasDimensions(canvas,width,height);if(!noUpdates)Browser.updateResizeListeners()},windowedWidth:0,windowedHeight:0,setFullscreenCanvasSize(){if(typeof SDL!="undefined"){var flags=HEAPU32[SDL.screen>>2];flags=flags|8388608;HEAP32[SDL.screen>>2]=flags}Browser.updateCanvasDimensions(Module["canvas"]);Browser.updateResizeListeners()},setWindowedCanvasSize(){if(typeof SDL!="undefined"){var flags=HEAPU32[SDL.screen>>2];flags=flags&~8388608;HEAP32[SDL.screen>>2]=flags}Browser.updateCanvasDimensions(Module["canvas"]);Browser.updateResizeListeners()},updateCanvasDimensions(canvas,wNative,hNative){if(wNative&&hNative){canvas.widthNative=wNative;canvas.heightNative=hNative}else{wNative=canvas.widthNative;hNative=canvas.heightNative}var w=wNative;var h=hNative;if(Module["forcedAspectRatio"]&&Module["forcedAspectRatio"]>0){if(w/h<Module["forcedAspectRatio"]){w=Math.round(h*Module["forcedAspectRatio"])}else{h=Math.round(w/Module["forcedAspectRatio"])}}if((document["fullscreenElement"]||document["mozFullScreenElement"]||document["msFullscreenElement"]||document["webkitFullscreenElement"]||document["webkitCurrentFullScreenElement"])===canvas.parentNode&&typeof screen!="undefined"){var factor=Math.min(screen.width/w,screen.height/h);w=Math.round(w*factor);h=Math.round(h*factor)}if(Browser.resizeCanvas){if(canvas.width!=w)canvas.width=w;if(canvas.height!=h)canvas.height=h;if(typeof canvas.style!="undefined"){canvas.style.removeProperty("width");canvas.style.removeProperty("height")}}else{if(canvas.width!=wNative)canvas.width=wNative;if(canvas.height!=hNative)canvas.height=hNative;if(typeof canvas.style!="undefined"){if(w!=wNative||h!=hNative){canvas.style.setProperty("width",w+"px","important");canvas.style.setProperty("height",h+"px","important")}else{canvas.style.removeProperty("width");canvas.style.removeProperty("height")}}}}};var _emscripten_cancel_main_loop=()=>{Browser.mainLoop.pause();Browser.mainLoop.func=null};var _emscripten_date_now=()=>Date.now();var _emscripten_force_exit=status=>{__emscripten_runtime_keepalive_clear();_exit(status)};var getHeapMax=()=>2147483648;var _emscripten_get_heap_max=()=>getHeapMax();var growMemory=size=>{var b=wasmMemory.buffer;var pages=(size-b.byteLength+65535)/65536;try{wasmMemory.grow(pages);updateMemoryViews();return 1}catch(e){}};var _emscripten_resize_heap=requestedSize=>{var oldSize=HEAPU8.length;requestedSize>>>=0;var maxHeapSize=getHeapMax();if(requestedSize>maxHeapSize){return false}var alignUp=(x,multiple)=>x+(multiple-x%multiple)%multiple;for(var cutDown=1;cutDown<=4;cutDown*=2){var overGrownHeapSize=oldSize*(1+.2/cutDown);overGrownHeapSize=Math.min(overGrownHeapSize,requestedSize+100663296);var newSize=Math.min(maxHeapSize,alignUp(Math.max(requestedSize,overGrownHeapSize),65536));var replacement=growMemory(newSize);if(replacement){return true}}return false};var JSEvents={removeAllEventListeners(){while(JSEvents.eventHandlers.length){JSEvents._removeHandler(JSEvents.eventHandlers.length-1)}JSEvents.deferredCalls=[]},registerRemoveEventListeners(){if(!JSEvents.removeEventListenersRegistered){__ATEXIT__.push(JSEvents.removeAllEventListeners);JSEvents.removeEventListenersRegistered=true}},inEventHandler:0,deferredCalls:[],deferCall(targetFunction,precedence,argsList){function arraysHaveEqualContent(arrA,arrB){if(arrA.length!=arrB.length)return false;for(var i in arrA){if(arrA[i]!=arrB[i])return false}return true}for(var call of JSEvents.deferredCalls){if(call.targetFunction==targetFunction&&arraysHaveEqualContent(call.argsList,argsList)){return}}JSEvents.deferredCalls.push({targetFunction:targetFunction,precedence:precedence,argsList:argsList});JSEvents.deferredCalls.sort((x,y)=>x.precedence<y.precedence)},removeDeferredCalls(targetFunction){JSEvents.deferredCalls=JSEvents.deferredCalls.filter(call=>call.targetFunction!=targetFunction)},canPerformEventHandlerRequests(){if(navigator.userActivation){return navigator.userActivation.isActive}return JSEvents.inEventHandler&&JSEvents.currentEventHandler.allowsDeferredCalls},runDeferredCalls(){if(!JSEvents.canPerformEventHandlerRequests()){return}var deferredCalls=JSEvents.deferredCalls;JSEvents.deferredCalls=[];for(var call of deferredCalls){call.targetFunction(...call.argsList)}},eventHandlers:[],removeAllHandlersOnTarget:(target,eventTypeString)=>{for(var i=0;i<JSEvents.eventHandlers.length;++i){if(JSEvents.eventHandlers[i].target==target&&(!eventTypeString||eventTypeString==JSEvents.eventHandlers[i].eventTypeString)){JSEvents._removeHandler(i--)}}},_removeHandler(i){var h=JSEvents.eventHandlers[i];h.target.removeEventListener(h.eventTypeString,h.eventListenerFunc,h.useCapture);JSEvents.eventHandlers.splice(i,1)},registerOrRemoveHandler(eventHandler){if(!eventHandler.target){return-4}if(eventHandler.callbackfunc){eventHandler.eventListenerFunc=function(event){++JSEvents.inEventHandler;JSEvents.currentEventHandler=eventHandler;JSEvents.runDeferredCalls();eventHandler.handlerFunc(event);JSEvents.runDeferredCalls();--JSEvents.inEventHandler};eventHandler.target.addEventListener(eventHandler.eventTypeString,eventHandler.eventListenerFunc,eventHandler.useCapture);JSEvents.eventHandlers.push(eventHandler);JSEvents.registerRemoveEventListeners()}else{for(var i=0;i<JSEvents.eventHandlers.length;++i){if(JSEvents.eventHandlers[i].target==eventHandler.target&&JSEvents.eventHandlers[i].eventTypeString==eventHandler.eventTypeString){JSEvents._removeHandler(i--)}}}return 0},getNodeNameForTarget(target){if(!target)return"";if(target==window)return"#window";if(target==screen)return"#screen";return target?.nodeName||""},fullscreenEnabled(){return document.fullscreenEnabled||document.webkitFullscreenEnabled}};var maybeCStringToJsString=cString=>cString>2?UTF8ToString(cString):cString;var specialHTMLTargets=[0,typeof document!="undefined"?document:0,typeof window!="undefined"?window:0];var findEventTarget=target=>{target=maybeCStringToJsString(target);var domElement=specialHTMLTargets[target]||(typeof document!="undefined"?document.querySelector(target):undefined);return domElement};var findCanvasEventTarget=findEventTarget;var _emscripten_set_canvas_element_size=(target,width,height)=>{var canvas=findCanvasEventTarget(target);if(!canvas)return-4;canvas.width=width;canvas.height=height;if(canvas.GLctxObject)GL.resizeOffscreenFramebuffer(canvas.GLctxObject);return 0};var _emscripten_set_main_loop=(func,fps,simulateInfiniteLoop)=>{var browserIterationFunc=getWasmTableEntry(func);setMainLoop(browserIterationFunc,fps,simulateInfiniteLoop)};var webglPowerPreferences=["default","low-power","high-performance"];var _emscripten_webgl_do_create_context=(target,attributes)=>{var attr32=attributes>>2;var powerPreference=HEAP32[attr32+(8>>2)];var contextAttributes={alpha:!!HEAP8[attributes+0],depth:!!HEAP8[attributes+1],stencil:!!HEAP8[attributes+2],antialias:!!HEAP8[attributes+3],premultipliedAlpha:!!HEAP8[attributes+4],preserveDrawingBuffer:!!HEAP8[attributes+5],powerPreference:webglPowerPreferences[powerPreference],failIfMajorPerformanceCaveat:!!HEAP8[attributes+12],majorVersion:HEAP32[attr32+(16>>2)],minorVersion:HEAP32[attr32+(20>>2)],enableExtensionsByDefault:HEAP8[attributes+24],explicitSwapControl:HEAP8[attributes+25],proxyContextToMainThread:HEAP32[attr32+(28>>2)],renderViaOffscreenBackBuffer:HEAP8[attributes+32]};var canvas=findCanvasEventTarget(target);if(!canvas){return 0}if(contextAttributes.explicitSwapControl&&!contextAttributes.renderViaOffscreenBackBuffer){contextAttributes.renderViaOffscreenBackBuffer=true}var contextHandle=GL.createContext(canvas,contextAttributes);return contextHandle};var _emscripten_webgl_create_context=_emscripten_webgl_do_create_context;var _emscripten_webgl_destroy_context=contextHandle=>{if(GL.currentContext==contextHandle)GL.currentContext=0;GL.deleteContext(contextHandle)};var _emscripten_webgl_enable_extension=(contextHandle,extension)=>{var context=GL.getContext(contextHandle);var extString=UTF8ToString(extension);if(extString.startsWith("GL_"))extString=extString.substr(3);if(extString=="ANGLE_instanced_arrays")webgl_enable_ANGLE_instanced_arrays(GLctx);if(extString=="OES_vertex_array_object")webgl_enable_OES_vertex_array_object(GLctx);if(extString=="WEBGL_draw_buffers")webgl_enable_WEBGL_draw_buffers(GLctx);if(extString=="WEBGL_draw_instanced_base_vertex_base_instance")webgl_enable_WEBGL_draw_instanced_base_vertex_base_instance(GLctx);if(extString=="WEBGL_multi_draw_instanced_base_vertex_base_instance")webgl_enable_WEBGL_multi_draw_instanced_base_vertex_base_instance(GLctx);if(extString=="WEBGL_multi_draw")webgl_enable_WEBGL_multi_draw(GLctx);var ext=context.GLctx.getExtension(extString);return!!ext};var stringToNewUTF8=str=>{var size=lengthBytesUTF8(str)+1;var ret=_malloc(size);if(ret)stringToUTF8(str,ret,size);return ret};var _emscripten_webgl_get_supported_extensions=()=>stringToNewUTF8(GLctx.getSupportedExtensions().join(" "));var _emscripten_webgl_make_context_current=contextHandle=>{var success=GL.makeContextCurrent(contextHandle);return success?0:-5};var ENV={};var getExecutableName=()=>thisProgram||"./this.program";var getEnvStrings=()=>{if(!getEnvStrings.strings){var lang=(typeof navigator=="object"&&navigator.languages&&navigator.languages[0]||"C").replace("-","_")+".UTF-8";var env={USER:"web_user",LOGNAME:"web_user",PATH:"/",PWD:"/",HOME:"/home/web_user",LANG:lang,_:getExecutableName()};for(var x in ENV){if(ENV[x]===undefined)delete env[x];else env[x]=ENV[x]}var strings=[];for(var x in env){strings.push(`${x}=${env[x]}`)}getEnvStrings.strings=strings}return getEnvStrings.strings};var stringToAscii=(str,buffer)=>{for(var i=0;i<str.length;++i){HEAP8[buffer++]=str.charCodeAt(i)}HEAP8[buffer]=0};var _environ_get=(__environ,environ_buf)=>{var bufSize=0;getEnvStrings().forEach((string,i)=>{var ptr=environ_buf+bufSize;HEAPU32[__environ+i*4>>2]=ptr;stringToAscii(string,ptr);bufSize+=string.length+1});return 0};var _environ_sizes_get=(penviron_count,penviron_buf_size)=>{var strings=getEnvStrings();HEAPU32[penviron_count>>2]=strings.length;var bufSize=0;strings.forEach(string=>bufSize+=string.length+1);HEAPU32[penviron_buf_size>>2]=bufSize;return 0};function _fd_close(fd){try{var stream=SYSCALLS.getStreamFromFD(fd);FS.close(stream);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}function _fd_fdstat_get(fd,pbuf){try{var rightsBase=0;var rightsInheriting=0;var flags=0;{var stream=SYSCALLS.getStreamFromFD(fd);var type=stream.tty?2:FS.isDir(stream.mode)?3:FS.isLink(stream.mode)?7:4}HEAP8[pbuf]=type;HEAP16[pbuf+2>>1]=flags;HEAP64[pbuf+8>>3]=BigInt(rightsBase);HEAP64[pbuf+16>>3]=BigInt(rightsInheriting);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}var doReadv=(stream,iov,iovcnt,offset)=>{var ret=0;for(var i=0;i<iovcnt;i++){var ptr=HEAPU32[iov>>2];var len=HEAPU32[iov+4>>2];iov+=8;var curr=FS.read(stream,HEAP8,ptr,len,offset);if(curr<0)return-1;ret+=curr;if(curr<len)break;if(typeof offset!="undefined"){offset+=curr}}return ret};function _fd_read(fd,iov,iovcnt,pnum){try{var stream=SYSCALLS.getStreamFromFD(fd);var num=doReadv(stream,iov,iovcnt);HEAPU32[pnum>>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}function _fd_seek(fd,offset,whence,newOffset){offset=bigintToI53Checked(offset);try{if(isNaN(offset))return 61;var stream=SYSCALLS.getStreamFromFD(fd);FS.llseek(stream,offset,whence);HEAP64[newOffset>>3]=BigInt(stream.position);if(stream.getdents&&offset===0&&whence===0)stream.getdents=null;return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}var doWritev=(stream,iov,iovcnt,offset)=>{var ret=0;for(var i=0;i<iovcnt;i++){var ptr=HEAPU32[iov>>2];var len=HEAPU32[iov+4>>2];iov+=8;var curr=FS.write(stream,HEAP8,ptr,len,offset);if(curr<0)return-1;ret+=curr;if(typeof offset!="undefined"){offset+=curr}}return ret};function _fd_write(fd,iov,iovcnt,pnum){try{var stream=SYSCALLS.getStreamFromFD(fd);var num=doWritev(stream,iov,iovcnt);HEAPU32[pnum>>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}var _glActiveTexture=x0=>GLctx.activeTexture(x0);var _glAttachShader=(program,shader)=>{GLctx.attachShader(GL.programs[program],GL.shaders[shader])};var _glBeginTransformFeedback=x0=>GLctx.beginTransformFeedback(x0);var _glBindBuffer=(target,buffer)=>{if(target==35051){GLctx.currentPixelPackBufferBinding=buffer}else if(target==35052){GLctx.currentPixelUnpackBufferBinding=buffer}GLctx.bindBuffer(target,GL.buffers[buffer])};var _glBindBufferBase=(target,index,buffer)=>{GLctx.bindBufferBase(target,index,GL.buffers[buffer])};var _glBindBufferRange=(target,index,buffer,offset,ptrsize)=>{GLctx.bindBufferRange(target,index,GL.buffers[buffer],offset,ptrsize)};var _glBindFramebuffer=(target,framebuffer)=>{GLctx.bindFramebuffer(target,framebuffer?GL.framebuffers[framebuffer]:GL.currentContext.defaultFbo)};var _glBindRenderbuffer=(target,renderbuffer)=>{GLctx.bindRenderbuffer(target,GL.renderbuffers[renderbuffer])};var _glBindTexture=(target,texture)=>{GLctx.bindTexture(target,GL.textures[texture])};var _glBindVertexArray=vao=>{GLctx.bindVertexArray(GL.vaos[vao])};var _glBlendColor=(x0,x1,x2,x3)=>GLctx.blendColor(x0,x1,x2,x3);var _glBlendEquation=x0=>GLctx.blendEquation(x0);var _glBlendFunc=(x0,x1)=>GLctx.blendFunc(x0,x1);var _glBlendFuncSeparate=(x0,x1,x2,x3)=>GLctx.blendFuncSeparate(x0,x1,x2,x3);var _glBlitFramebuffer=(x0,x1,x2,x3,x4,x5,x6,x7,x8,x9)=>GLctx.blitFramebuffer(x0,x1,x2,x3,x4,x5,x6,x7,x8,x9);var _glBufferData=(target,size,data,usage)=>{if(GL.currentContext.version>=2){if(data&&size){GLctx.bufferData(target,HEAPU8,usage,data,size)}else{GLctx.bufferData(target,size,usage)}return}GLctx.bufferData(target,data?HEAPU8.subarray(data,data+size):size,usage)};var _glBufferSubData=(target,offset,size,data)=>{if(GL.currentContext.version>=2){size&&GLctx.bufferSubData(target,offset,HEAPU8,data,size);return}GLctx.bufferSubData(target,offset,HEAPU8.subarray(data,data+size))};var _glCheckFramebufferStatus=x0=>GLctx.checkFramebufferStatus(x0);var _glClear=x0=>GLctx.clear(x0);var _glClearBufferfv=(buffer,drawbuffer,value)=>{GLctx.clearBufferfv(buffer,drawbuffer,HEAPF32,value>>2)};var _glClearColor=(x0,x1,x2,x3)=>GLctx.clearColor(x0,x1,x2,x3);var _glClearDepthf=x0=>GLctx.clearDepth(x0);var _glColorMask=(red,green,blue,alpha)=>{GLctx.colorMask(!!red,!!green,!!blue,!!alpha)};var _glCompileShader=shader=>{GLctx.compileShader(GL.shaders[shader])};var _glCompressedTexImage2D=(target,level,internalFormat,width,height,border,imageSize,data)=>{if(GL.currentContext.version>=2){if(GLctx.currentPixelUnpackBufferBinding||!imageSize){GLctx.compressedTexImage2D(target,level,internalFormat,width,height,border,imageSize,data);return}GLctx.compressedTexImage2D(target,level,internalFormat,width,height,border,HEAPU8,data,imageSize);return}GLctx.compressedTexImage2D(target,level,internalFormat,width,height,border,data?HEAPU8.subarray(data,data+imageSize):null)};var _glCompressedTexImage3D=(target,level,internalFormat,width,height,depth,border,imageSize,data)=>{if(GLctx.currentPixelUnpackBufferBinding){GLctx.compressedTexImage3D(target,level,internalFormat,width,height,depth,border,imageSize,data)}else{GLctx.compressedTexImage3D(target,level,internalFormat,width,height,depth,border,HEAPU8,data,imageSize)}};var _glCompressedTexSubImage3D=(target,level,xoffset,yoffset,zoffset,width,height,depth,format,imageSize,data)=>{if(GLctx.currentPixelUnpackBufferBinding){GLctx.compressedTexSubImage3D(target,level,xoffset,yoffset,zoffset,width,height,depth,format,imageSize,data)}else{GLctx.compressedTexSubImage3D(target,level,xoffset,yoffset,zoffset,width,height,depth,format,HEAPU8,data,imageSize)}};var _glCopyBufferSubData=(x0,x1,x2,x3,x4)=>GLctx.copyBufferSubData(x0,x1,x2,x3,x4);var _glCreateProgram=()=>{var id=GL.getNewId(GL.programs);var program=GLctx.createProgram();program.name=id;program.maxUniformLength=program.maxAttributeLength=program.maxUniformBlockNameLength=0;program.uniformIdCounter=1;GL.programs[id]=program;return id};var _glCreateShader=shaderType=>{var id=GL.getNewId(GL.shaders);GL.shaders[id]=GLctx.createShader(shaderType);return id};var _glCullFace=x0=>GLctx.cullFace(x0);var _glDeleteBuffers=(n,buffers)=>{for(var i=0;i<n;i++){var id=HEAP32[buffers+i*4>>2];var buffer=GL.buffers[id];if(!buffer)continue;GLctx.deleteBuffer(buffer);buffer.name=0;GL.buffers[id]=null;if(id==GLctx.currentPixelPackBufferBinding)GLctx.currentPixelPackBufferBinding=0;if(id==GLctx.currentPixelUnpackBufferBinding)GLctx.currentPixelUnpackBufferBinding=0}};var _glDeleteFramebuffers=(n,framebuffers)=>{for(var i=0;i<n;++i){var id=HEAP32[framebuffers+i*4>>2];var framebuffer=GL.framebuffers[id];if(!framebuffer)continue;GLctx.deleteFramebuffer(framebuffer);framebuffer.name=0;GL.framebuffers[id]=null}};var _glDeleteProgram=id=>{if(!id)return;var program=GL.programs[id];if(!program){GL.recordError(1281);return}GLctx.deleteProgram(program);program.name=0;GL.programs[id]=null};var _glDeleteQueries=(n,ids)=>{for(var i=0;i<n;i++){var id=HEAP32[ids+i*4>>2];var query=GL.queries[id];if(!query)continue;GLctx.deleteQuery(query);GL.queries[id]=null}};var _glDeleteRenderbuffers=(n,renderbuffers)=>{for(var i=0;i<n;i++){var id=HEAP32[renderbuffers+i*4>>2];var renderbuffer=GL.renderbuffers[id];if(!renderbuffer)continue;GLctx.deleteRenderbuffer(renderbuffer);renderbuffer.name=0;GL.renderbuffers[id]=null}};var _glDeleteShader=id=>{if(!id)return;var shader=GL.shaders[id];if(!shader){GL.recordError(1281);return}GLctx.deleteShader(shader);GL.shaders[id]=null};var _glDeleteSync=id=>{if(!id)return;var sync=GL.syncs[id];if(!sync){GL.recordError(1281);return}GLctx.deleteSync(sync);sync.name=0;GL.syncs[id]=null};var _glDeleteTextures=(n,textures)=>{for(var i=0;i<n;i++){var id=HEAP32[textures+i*4>>2];var texture=GL.textures[id];if(!texture)continue;GLctx.deleteTexture(texture);texture.name=0;GL.textures[id]=null}};var _glDeleteVertexArrays=(n,vaos)=>{for(var i=0;i<n;i++){var id=HEAP32[vaos+i*4>>2];GLctx.deleteVertexArray(GL.vaos[id]);GL.vaos[id]=null}};var _glDepthFunc=x0=>GLctx.depthFunc(x0);var _glDepthMask=flag=>{GLctx.depthMask(!!flag)};var _glDisable=x0=>GLctx.disable(x0);var _glDisableVertexAttribArray=index=>{GLctx.disableVertexAttribArray(index)};var _glDrawArrays=(mode,first,count)=>{GLctx.drawArrays(mode,first,count)};var _glDrawArraysInstanced=(mode,first,count,primcount)=>{GLctx.drawArraysInstanced(mode,first,count,primcount)};var tempFixedLengthArray=[];var _glDrawBuffers=(n,bufs)=>{var bufArray=tempFixedLengthArray[n];for(var i=0;i<n;i++){bufArray[i]=HEAP32[bufs+i*4>>2]}GLctx.drawBuffers(bufArray)};var _glDrawElements=(mode,count,type,indices)=>{GLctx.drawElements(mode,count,type,indices)};var _glDrawElementsInstanced=(mode,count,type,indices,primcount)=>{GLctx.drawElementsInstanced(mode,count,type,indices,primcount)};var _glEnable=x0=>GLctx.enable(x0);var _glEnableVertexAttribArray=index=>{GLctx.enableVertexAttribArray(index)};var _glEndTransformFeedback=()=>GLctx.endTransformFeedback();var _glFenceSync=(condition,flags)=>{var sync=GLctx.fenceSync(condition,flags);if(sync){var id=GL.getNewId(GL.syncs);sync.name=id;GL.syncs[id]=sync;return id}return 0};var _glFinish=()=>GLctx.finish();var _glFramebufferRenderbuffer=(target,attachment,renderbuffertarget,renderbuffer)=>{GLctx.framebufferRenderbuffer(target,attachment,renderbuffertarget,GL.renderbuffers[renderbuffer])};var _glFramebufferTexture2D=(target,attachment,textarget,texture,level)=>{GLctx.framebufferTexture2D(target,attachment,textarget,GL.textures[texture],level)};var _glFramebufferTextureLayer=(target,attachment,texture,level,layer)=>{GLctx.framebufferTextureLayer(target,attachment,GL.textures[texture],level,layer)};var _glFrontFace=x0=>GLctx.frontFace(x0);var _glGenBuffers=(n,buffers)=>{GL.genObject(n,buffers,"createBuffer",GL.buffers)};var _glGenFramebuffers=(n,ids)=>{GL.genObject(n,ids,"createFramebuffer",GL.framebuffers)};var _glGenQueries=(n,ids)=>{GL.genObject(n,ids,"createQuery",GL.queries)};var _glGenRenderbuffers=(n,renderbuffers)=>{GL.genObject(n,renderbuffers,"createRenderbuffer",GL.renderbuffers)};var _glGenTextures=(n,textures)=>{GL.genObject(n,textures,"createTexture",GL.textures)};var _glGenVertexArrays=(n,arrays)=>{GL.genObject(n,arrays,"createVertexArray",GL.vaos)};var _glGenerateMipmap=x0=>GLctx.generateMipmap(x0);var writeI53ToI64=(ptr,num)=>{HEAPU32[ptr>>2]=num;var lower=HEAPU32[ptr>>2];HEAPU32[ptr+4>>2]=(num-lower)/4294967296};var webglGetExtensions=function $webglGetExtensions(){var exts=getEmscriptenSupportedExtensions(GLctx);exts=exts.concat(exts.map(e=>"GL_"+e));return exts};var emscriptenWebGLGet=(name_,p,type)=>{if(!p){GL.recordError(1281);return}var ret=undefined;switch(name_){case 36346:ret=1;break;case 36344:if(type!=0&&type!=1){GL.recordError(1280)}return;case 34814:case 36345:ret=0;break;case 34466:var formats=GLctx.getParameter(34467);ret=formats?formats.length:0;break;case 33309:if(GL.currentContext.version<2){GL.recordError(1282);return}ret=webglGetExtensions().length;break;case 33307:case 33308:if(GL.currentContext.version<2){GL.recordError(1280);return}ret=name_==33307?3:0;break}if(ret===undefined){var result=GLctx.getParameter(name_);switch(typeof result){case"number":ret=result;break;case"boolean":ret=result?1:0;break;case"string":GL.recordError(1280);return;case"object":if(result===null){switch(name_){case 34964:case 35725:case 34965:case 36006:case 36007:case 32873:case 34229:case 36662:case 36663:case 35053:case 35055:case 36010:case 35097:case 35869:case 32874:case 36389:case 35983:case 35368:case 34068:{ret=0;break}default:{GL.recordError(1280);return}}}else if(result instanceof Float32Array||result instanceof Uint32Array||result instanceof Int32Array||result instanceof Array){for(var i=0;i<result.length;++i){switch(type){case 0:HEAP32[p+i*4>>2]=result[i];break;case 2:HEAPF32[p+i*4>>2]=result[i];break;case 4:HEAP8[p+i]=result[i]?1:0;break}}return}else{try{ret=result.name|0}catch(e){GL.recordError(1280);err(`GL_INVALID_ENUM in glGet${type}v: Unknown object returned from WebGL getParameter(${name_})! (error: ${e})`);return}}break;default:GL.recordError(1280);err(`GL_INVALID_ENUM in glGet${type}v: Native code calling glGet${type}v(${name_}) and it returns ${result} of type ${typeof result}!`);return}}switch(type){case 1:writeI53ToI64(p,ret);break;case 0:HEAP32[p>>2]=ret;break;case 2:HEAPF32[p>>2]=ret;break;case 4:HEAP8[p]=ret?1:0;break}};var _glGetFloatv=(name_,p)=>emscriptenWebGLGet(name_,p,2);var _glGetInteger64v=(name_,p)=>{emscriptenWebGLGet(name_,p,1)};var _glGetIntegerv=(name_,p)=>emscriptenWebGLGet(name_,p,0);var _glGetProgramInfoLog=(program,maxLength,length,infoLog)=>{var log=GLctx.getProgramInfoLog(GL.programs[program]);if(log===null)log="(unknown error)";var numBytesWrittenExclNull=maxLength>0&&infoLog?stringToUTF8(log,infoLog,maxLength):0;if(length)HEAP32[length>>2]=numBytesWrittenExclNull};var _glGetProgramiv=(program,pname,p)=>{if(!p){GL.recordError(1281);return}if(program>=GL.counter){GL.recordError(1281);return}program=GL.programs[program];if(pname==35716){var log=GLctx.getProgramInfoLog(program);if(log===null)log="(unknown error)";HEAP32[p>>2]=log.length+1}else if(pname==35719){if(!program.maxUniformLength){for(var i=0;i<GLctx.getProgramParameter(program,35718);++i){program.maxUniformLength=Math.max(program.maxUniformLength,GLctx.getActiveUniform(program,i).name.length+1)}}HEAP32[p>>2]=program.maxUniformLength}else if(pname==35722){if(!program.maxAttributeLength){for(var i=0;i<GLctx.getProgramParameter(program,35721);++i){program.maxAttributeLength=Math.max(program.maxAttributeLength,GLctx.getActiveAttrib(program,i).name.length+1)}}HEAP32[p>>2]=program.maxAttributeLength}else if(pname==35381){if(!program.maxUniformBlockNameLength){for(var i=0;i<GLctx.getProgramParameter(program,35382);++i){program.maxUniformBlockNameLength=Math.max(program.maxUniformBlockNameLength,GLctx.getActiveUniformBlockName(program,i).length+1)}}HEAP32[p>>2]=program.maxUniformBlockNameLength}else{HEAP32[p>>2]=GLctx.getProgramParameter(program,pname)}};var _glGetShaderInfoLog=(shader,maxLength,length,infoLog)=>{var log=GLctx.getShaderInfoLog(GL.shaders[shader]);if(log===null)log="(unknown error)";var numBytesWrittenExclNull=maxLength>0&&infoLog?stringToUTF8(log,infoLog,maxLength):0;if(length)HEAP32[length>>2]=numBytesWrittenExclNull};var _glGetShaderiv=(shader,pname,p)=>{if(!p){GL.recordError(1281);return}if(pname==35716){var log=GLctx.getShaderInfoLog(GL.shaders[shader]);if(log===null)log="(unknown error)";var logLength=log?log.length+1:0;HEAP32[p>>2]=logLength}else if(pname==35720){var source=GLctx.getShaderSource(GL.shaders[shader]);var sourceLength=source?source.length+1:0;HEAP32[p>>2]=sourceLength}else{HEAP32[p>>2]=GLctx.getShaderParameter(GL.shaders[shader],pname)}};var _glGetString=name_=>{var ret=GL.stringCache[name_];if(!ret){switch(name_){case 7939:ret=stringToNewUTF8(webglGetExtensions().join(" "));break;case 7936:case 7937:case 37445:case 37446:var s=GLctx.getParameter(name_);if(!s){GL.recordError(1280)}ret=s?stringToNewUTF8(s):0;break;case 7938:var glVersion=GLctx.getParameter(7938);if(GL.currentContext.version>=2)glVersion=`OpenGL ES 3.0 (${glVersion})`;else{glVersion=`OpenGL ES 2.0 (${glVersion})`}ret=stringToNewUTF8(glVersion);break;case 35724:var glslVersion=GLctx.getParameter(35724);var ver_re=/^WebGL GLSL ES ([0-9]\.[0-9][0-9]?)(?:$| .*)/;var ver_num=glslVersion.match(ver_re);if(ver_num!==null){if(ver_num[1].length==3)ver_num[1]=ver_num[1]+"0";glslVersion=`OpenGL ES GLSL ES ${ver_num[1]} (${glslVersion})`}ret=stringToNewUTF8(glslVersion);break;default:GL.recordError(1280)}GL.stringCache[name_]=ret}return ret};var _glGetSynciv=(sync,pname,bufSize,length,values)=>{if(bufSize<0){GL.recordError(1281);return}if(!values){GL.recordError(1281);return}var ret=GLctx.getSyncParameter(GL.syncs[sync],pname);if(ret!==null){HEAP32[values>>2]=ret;if(length)HEAP32[length>>2]=1}};var _glGetUniformBlockIndex=(program,uniformBlockName)=>GLctx.getUniformBlockIndex(GL.programs[program],UTF8ToString(uniformBlockName));var jstoi_q=str=>parseInt(str);var webglGetLeftBracePos=name=>name.slice(-1)=="]"&&name.lastIndexOf("[");var webglPrepareUniformLocationsBeforeFirstUse=program=>{var uniformLocsById=program.uniformLocsById,uniformSizeAndIdsByName=program.uniformSizeAndIdsByName,i,j;if(!uniformLocsById){program.uniformLocsById=uniformLocsById={};program.uniformArrayNamesById={};for(i=0;i<GLctx.getProgramParameter(program,35718);++i){var u=GLctx.getActiveUniform(program,i);var nm=u.name;var sz=u.size;var lb=webglGetLeftBracePos(nm);var arrayName=lb>0?nm.slice(0,lb):nm;var id=program.uniformIdCounter;program.uniformIdCounter+=sz;uniformSizeAndIdsByName[arrayName]=[sz,id];for(j=0;j<sz;++j){uniformLocsById[id]=j;program.uniformArrayNamesById[id++]=arrayName}}}};var _glGetUniformLocation=(program,name)=>{name=UTF8ToString(name);if(program=GL.programs[program]){webglPrepareUniformLocationsBeforeFirstUse(program);var uniformLocsById=program.uniformLocsById;var arrayIndex=0;var uniformBaseName=name;var leftBrace=webglGetLeftBracePos(name);if(leftBrace>0){arrayIndex=jstoi_q(name.slice(leftBrace+1))>>>0;uniformBaseName=name.slice(0,leftBrace)}var sizeAndId=program.uniformSizeAndIdsByName[uniformBaseName];if(sizeAndId&&arrayIndex<sizeAndId[0]){arrayIndex+=sizeAndId[1];if(uniformLocsById[arrayIndex]=uniformLocsById[arrayIndex]||GLctx.getUniformLocation(program,name)){return arrayIndex}}}else{GL.recordError(1281)}return-1};var _glLinkProgram=program=>{program=GL.programs[program];GLctx.linkProgram(program);program.uniformLocsById=0;program.uniformSizeAndIdsByName={}};var _glPixelStorei=(pname,param)=>{if(pname==3317){GL.unpackAlignment=param}else if(pname==3314){GL.unpackRowLength=param}GLctx.pixelStorei(pname,param)};var _glReadBuffer=x0=>GLctx.readBuffer(x0);var computeUnpackAlignedImageSize=(width,height,sizePerPixel)=>{function roundedToNextMultipleOf(x,y){return x+y-1&-y}var plainRowSize=(GL.unpackRowLength||width)*sizePerPixel;var alignedRowSize=roundedToNextMultipleOf(plainRowSize,GL.unpackAlignment);return height*alignedRowSize};var colorChannelsInGlTextureFormat=format=>{var colorChannels={5:3,6:4,8:2,29502:3,29504:4,26917:2,26918:2,29846:3,29847:4};return colorChannels[format-6402]||1};var heapObjectForWebGLType=type=>{type-=5120;if(type==0)return HEAP8;if(type==1)return HEAPU8;if(type==2)return HEAP16;if(type==4)return HEAP32;if(type==6)return HEAPF32;if(type==5||type==28922||type==28520||type==30779||type==30782)return HEAPU32;return HEAPU16};var toTypedArrayIndex=(pointer,heap)=>pointer>>>31-Math.clz32(heap.BYTES_PER_ELEMENT);var emscriptenWebGLGetTexPixelData=(type,format,width,height,pixels,internalFormat)=>{var heap=heapObjectForWebGLType(type);var sizePerPixel=colorChannelsInGlTextureFormat(format)*heap.BYTES_PER_ELEMENT;var bytes=computeUnpackAlignedImageSize(width,height,sizePerPixel);return heap.subarray(toTypedArrayIndex(pixels,heap),toTypedArrayIndex(pixels+bytes,heap))};var _glReadPixels=(x,y,width,height,format,type,pixels)=>{if(GL.currentContext.version>=2){if(GLctx.currentPixelPackBufferBinding){GLctx.readPixels(x,y,width,height,format,type,pixels);return}var heap=heapObjectForWebGLType(type);var target=toTypedArrayIndex(pixels,heap);GLctx.readPixels(x,y,width,height,format,type,heap,target);return}var pixelData=emscriptenWebGLGetTexPixelData(type,format,width,height,pixels,format);if(!pixelData){GL.recordError(1280);return}GLctx.readPixels(x,y,width,height,format,type,pixelData)};var _glRenderbufferStorage=(x0,x1,x2,x3)=>GLctx.renderbufferStorage(x0,x1,x2,x3);var _glRenderbufferStorageMultisample=(x0,x1,x2,x3,x4)=>GLctx.renderbufferStorageMultisample(x0,x1,x2,x3,x4);var _glScissor=(x0,x1,x2,x3)=>GLctx.scissor(x0,x1,x2,x3);var _glShaderSource=(shader,count,string,length)=>{var source=GL.getSource(shader,count,string,length);GLctx.shaderSource(GL.shaders[shader],source)};var _glTexImage2D=(target,level,internalFormat,width,height,border,format,type,pixels)=>{if(GL.currentContext.version>=2){if(GLctx.currentPixelUnpackBufferBinding){GLctx.texImage2D(target,level,internalFormat,width,height,border,format,type,pixels);return}if(pixels){var heap=heapObjectForWebGLType(type);var index=toTypedArrayIndex(pixels,heap);GLctx.texImage2D(target,level,internalFormat,width,height,border,format,type,heap,index);return}}var pixelData=pixels?emscriptenWebGLGetTexPixelData(type,format,width,height,pixels,internalFormat):null;GLctx.texImage2D(target,level,internalFormat,width,height,border,format,type,pixelData)};var _glTexImage3D=(target,level,internalFormat,width,height,depth,border,format,type,pixels)=>{if(GLctx.currentPixelUnpackBufferBinding){GLctx.texImage3D(target,level,internalFormat,width,height,depth,border,format,type,pixels)}else if(pixels){var heap=heapObjectForWebGLType(type);GLctx.texImage3D(target,level,internalFormat,width,height,depth,border,format,type,heap,toTypedArrayIndex(pixels,heap))}else{GLctx.texImage3D(target,level,internalFormat,width,height,depth,border,format,type,null)}};var _glTexParameterf=(x0,x1,x2)=>GLctx.texParameterf(x0,x1,x2);var _glTexParameteri=(x0,x1,x2)=>GLctx.texParameteri(x0,x1,x2);var _glTexStorage2D=(x0,x1,x2,x3,x4)=>GLctx.texStorage2D(x0,x1,x2,x3,x4);var _glTexSubImage3D=(target,level,xoffset,yoffset,zoffset,width,height,depth,format,type,pixels)=>{if(GLctx.currentPixelUnpackBufferBinding){GLctx.texSubImage3D(target,level,xoffset,yoffset,zoffset,width,height,depth,format,type,pixels)}else if(pixels){var heap=heapObjectForWebGLType(type);GLctx.texSubImage3D(target,level,xoffset,yoffset,zoffset,width,height,depth,format,type,heap,toTypedArrayIndex(pixels,heap))}else{GLctx.texSubImage3D(target,level,xoffset,yoffset,zoffset,width,height,depth,format,type,null)}};var _glTransformFeedbackVaryings=(program,count,varyings,bufferMode)=>{program=GL.programs[program];var vars=[];for(var i=0;i<count;i++)vars.push(UTF8ToString(HEAP32[varyings+i*4>>2]));GLctx.transformFeedbackVaryings(program,vars,bufferMode)};var webglGetUniformLocation=location=>{var p=GLctx.currentProgram;if(p){var webglLoc=p.uniformLocsById[location];if(typeof webglLoc=="number"){p.uniformLocsById[location]=webglLoc=GLctx.getUniformLocation(p,p.uniformArrayNamesById[location]+(webglLoc>0?`[${webglLoc}]`:""))}return webglLoc}else{GL.recordError(1282)}};var _glUniform1f=(location,v0)=>{GLctx.uniform1f(webglGetUniformLocation(location),v0)};var _glUniform1i=(location,v0)=>{GLctx.uniform1i(webglGetUniformLocation(location),v0)};var miniTempWebGLIntBuffers=[];var _glUniform1iv=(location,count,value)=>{if(GL.currentContext.version>=2){count&&GLctx.uniform1iv(webglGetUniformLocation(location),HEAP32,value>>2,count);return}if(count<=288){var view=miniTempWebGLIntBuffers[count];for(var i=0;i<count;++i){view[i]=HEAP32[value+4*i>>2]}}else{var view=HEAP32.subarray(value>>2,value+count*4>>2)}GLctx.uniform1iv(webglGetUniformLocation(location),view)};var _glUniform1ui=(location,v0)=>{GLctx.uniform1ui(webglGetUniformLocation(location),v0)};var _glUniform1uiv=(location,count,value)=>{count&&GLctx.uniform1uiv(webglGetUniformLocation(location),HEAPU32,value>>2,count)};var _glUniform2f=(location,v0,v1)=>{GLctx.uniform2f(webglGetUniformLocation(location),v0,v1)};var miniTempWebGLFloatBuffers=[];var _glUniform2fv=(location,count,value)=>{if(GL.currentContext.version>=2){count&&GLctx.uniform2fv(webglGetUniformLocation(location),HEAPF32,value>>2,count*2);return}if(count<=144){var view=miniTempWebGLFloatBuffers[2*count];for(var i=0;i<2*count;i+=2){view[i]=HEAPF32[value+4*i>>2];view[i+1]=HEAPF32[value+(4*i+4)>>2]}}else{var view=HEAPF32.subarray(value>>2,value+count*8>>2)}GLctx.uniform2fv(webglGetUniformLocation(location),view)};var _glUniform2iv=(location,count,value)=>{if(GL.currentContext.version>=2){count&&GLctx.uniform2iv(webglGetUniformLocation(location),HEAP32,value>>2,count*2);return}if(count<=144){var view=miniTempWebGLIntBuffers[2*count];for(var i=0;i<2*count;i+=2){view[i]=HEAP32[value+4*i>>2];view[i+1]=HEAP32[value+(4*i+4)>>2]}}else{var view=HEAP32.subarray(value>>2,value+count*8>>2)}GLctx.uniform2iv(webglGetUniformLocation(location),view)};var _glUniform3fv=(location,count,value)=>{if(GL.currentContext.version>=2){count&&GLctx.uniform3fv(webglGetUniformLocation(location),HEAPF32,value>>2,count*3);return}if(count<=96){var view=miniTempWebGLFloatBuffers[3*count];for(var i=0;i<3*count;i+=3){view[i]=HEAPF32[value+4*i>>2];view[i+1]=HEAPF32[value+(4*i+4)>>2];view[i+2]=HEAPF32[value+(4*i+8)>>2]}}else{var view=HEAPF32.subarray(value>>2,value+count*12>>2)}GLctx.uniform3fv(webglGetUniformLocation(location),view)};var _glUniform4f=(location,v0,v1,v2,v3)=>{GLctx.uniform4f(webglGetUniformLocation(location),v0,v1,v2,v3)};var _glUniform4fv=(location,count,value)=>{if(GL.currentContext.version>=2){count&&GLctx.uniform4fv(webglGetUniformLocation(location),HEAPF32,value>>2,count*4);return}if(count<=72){var view=miniTempWebGLFloatBuffers[4*count];var heap=HEAPF32;value=value>>2;for(var i=0;i<4*count;i+=4){var dst=value+i;view[i]=heap[dst];view[i+1]=heap[dst+1];view[i+2]=heap[dst+2];view[i+3]=heap[dst+3]}}else{var view=HEAPF32.subarray(value>>2,value+count*16>>2)}GLctx.uniform4fv(webglGetUniformLocation(location),view)};var _glUniformBlockBinding=(program,uniformBlockIndex,uniformBlockBinding)=>{program=GL.programs[program];GLctx.uniformBlockBinding(program,uniformBlockIndex,uniformBlockBinding)};var _glUniformMatrix3fv=(location,count,transpose,value)=>{if(GL.currentContext.version>=2){count&&GLctx.uniformMatrix3fv(webglGetUniformLocation(location),!!transpose,HEAPF32,value>>2,count*9);return}if(count<=32){var view=miniTempWebGLFloatBuffers[9*count];for(var i=0;i<9*count;i+=9){view[i]=HEAPF32[value+4*i>>2];view[i+1]=HEAPF32[value+(4*i+4)>>2];view[i+2]=HEAPF32[value+(4*i+8)>>2];view[i+3]=HEAPF32[value+(4*i+12)>>2];view[i+4]=HEAPF32[value+(4*i+16)>>2];view[i+5]=HEAPF32[value+(4*i+20)>>2];view[i+6]=HEAPF32[value+(4*i+24)>>2];view[i+7]=HEAPF32[value+(4*i+28)>>2];view[i+8]=HEAPF32[value+(4*i+32)>>2]}}else{var view=HEAPF32.subarray(value>>2,value+count*36>>2)}GLctx.uniformMatrix3fv(webglGetUniformLocation(location),!!transpose,view)};var _glUniformMatrix4fv=(location,count,transpose,value)=>{if(GL.currentContext.version>=2){count&&GLctx.uniformMatrix4fv(webglGetUniformLocation(location),!!transpose,HEAPF32,value>>2,count*16);return}if(count<=18){var view=miniTempWebGLFloatBuffers[16*count];var heap=HEAPF32;value=value>>2;for(var i=0;i<16*count;i+=16){var dst=value+i;view[i]=heap[dst];view[i+1]=heap[dst+1];view[i+2]=heap[dst+2];view[i+3]=heap[dst+3];view[i+4]=heap[dst+4];view[i+5]=heap[dst+5];view[i+6]=heap[dst+6];view[i+7]=heap[dst+7];view[i+8]=heap[dst+8];view[i+9]=heap[dst+9];view[i+10]=heap[dst+10];view[i+11]=heap[dst+11];view[i+12]=heap[dst+12];view[i+13]=heap[dst+13];view[i+14]=heap[dst+14];view[i+15]=heap[dst+15]}}else{var view=HEAPF32.subarray(value>>2,value+count*64>>2)}GLctx.uniformMatrix4fv(webglGetUniformLocation(location),!!transpose,view)};var _glUseProgram=program=>{program=GL.programs[program];GLctx.useProgram(program);GLctx.currentProgram=program};var _glVertexAttrib4f=(x0,x1,x2,x3,x4)=>GLctx.vertexAttrib4f(x0,x1,x2,x3,x4);var _glVertexAttribDivisor=(index,divisor)=>{GLctx.vertexAttribDivisor(index,divisor)};var _glVertexAttribI4ui=(x0,x1,x2,x3,x4)=>GLctx.vertexAttribI4ui(x0,x1,x2,x3,x4);var _glVertexAttribIPointer=(index,size,type,stride,ptr)=>{GLctx.vertexAttribIPointer(index,size,type,stride,ptr)};var _glVertexAttribPointer=(index,size,type,normalized,stride,ptr)=>{GLctx.vertexAttribPointer(index,size,type,!!normalized,stride,ptr)};var _glViewport=(x0,x1,x2,x3)=>GLctx.viewport(x0,x1,x2,x3);var GodotRuntime={get_func:function(ptr){return wasmTable.get(ptr)},error:function(){err.apply(null,Array.from(arguments))},print:function(){out.apply(null,Array.from(arguments))},malloc:function(p_size){return _malloc(p_size)},free:function(p_ptr){_free(p_ptr)},getHeapValue:function(p_ptr,p_type){return getValue(p_ptr,p_type)},setHeapValue:function(p_ptr,p_value,p_type){setValue(p_ptr,p_value,p_type)},heapSub:function(p_heap,p_ptr,p_len){const bytes=p_heap.BYTES_PER_ELEMENT;return p_heap.subarray(p_ptr/bytes,p_ptr/bytes+p_len)},heapSlice:function(p_heap,p_ptr,p_len){const bytes=p_heap.BYTES_PER_ELEMENT;return p_heap.slice(p_ptr/bytes,p_ptr/bytes+p_len)},heapCopy:function(p_dst,p_src,p_ptr){const bytes=p_src.BYTES_PER_ELEMENT;return p_dst.set(p_src,p_ptr/bytes)},parseString:function(p_ptr){return UTF8ToString(p_ptr)},parseStringArray:function(p_ptr,p_size){const strings=[];const ptrs=GodotRuntime.heapSub(HEAP32,p_ptr,p_size);ptrs.forEach(function(ptr){strings.push(GodotRuntime.parseString(ptr))});return strings},strlen:function(p_str){return lengthBytesUTF8(p_str)},allocString:function(p_str){const length=GodotRuntime.strlen(p_str)+1;const c_str=GodotRuntime.malloc(length);stringToUTF8(p_str,c_str,length);return c_str},allocStringArray:function(p_strings){const size=p_strings.length;const c_ptr=GodotRuntime.malloc(size*4);for(let i=0;i<size;i++){HEAP32[(c_ptr>>2)+i]=GodotRuntime.allocString(p_strings[i])}return c_ptr},freeStringArray:function(p_ptr,p_len){for(let i=0;i<p_len;i++){GodotRuntime.free(HEAP32[(p_ptr>>2)+i])}GodotRuntime.free(p_ptr)},stringToHeap:function(p_str,p_ptr,p_len){return stringToUTF8Array(p_str,HEAP8,p_ptr,p_len)}};var GodotConfig={canvas:null,locale:"en",canvas_resize_policy:2,virtual_keyboard:false,persistent_drops:false,on_execute:null,on_exit:null,init_config:function(p_opts){GodotConfig.canvas_resize_policy=p_opts["canvasResizePolicy"];GodotConfig.canvas=p_opts["canvas"];GodotConfig.locale=p_opts["locale"]||GodotConfig.locale;GodotConfig.virtual_keyboard=p_opts["virtualKeyboard"];GodotConfig.persistent_drops=!!p_opts["persistentDrops"];GodotConfig.on_execute=p_opts["onExecute"];GodotConfig.on_exit=p_opts["onExit"];if(p_opts["focusCanvas"]){GodotConfig.canvas.focus()}},locate_file:function(file){return Module["locateFile"](file)},clear:function(){GodotConfig.canvas=null;GodotConfig.locale="en";GodotConfig.canvas_resize_policy=2;GodotConfig.virtual_keyboard=false;GodotConfig.persistent_drops=false;GodotConfig.on_execute=null;GodotConfig.on_exit=null}};var GodotFS={ENOENT:44,_idbfs:false,_syncing:false,_mount_points:[],is_persistent:function(){return GodotFS._idbfs?1:0},init:function(persistentPaths){GodotFS._idbfs=false;if(!Array.isArray(persistentPaths)){return Promise.reject(new Error("Persistent paths must be an array"))}if(!persistentPaths.length){return Promise.resolve()}GodotFS._mount_points=persistentPaths.slice();function createRecursive(dir){try{FS.stat(dir)}catch(e){if(e.errno!==GodotFS.ENOENT){GodotRuntime.error(e)}FS.mkdirTree(dir)}}GodotFS._mount_points.forEach(function(path){createRecursive(path);FS.mount(IDBFS,{},path)});return new Promise(function(resolve,reject){FS.syncfs(true,function(err){if(err){GodotFS._mount_points=[];GodotFS._idbfs=false;GodotRuntime.print(`IndexedDB not available: ${err.message}`)}else{GodotFS._idbfs=true}resolve(err)})})},deinit:function(){GodotFS._mount_points.forEach(function(path){try{FS.unmount(path)}catch(e){GodotRuntime.print("Already unmounted",e)}if(GodotFS._idbfs&&IDBFS.dbs[path]){IDBFS.dbs[path].close();delete IDBFS.dbs[path]}});GodotFS._mount_points=[];GodotFS._idbfs=false;GodotFS._syncing=false},sync:function(){if(GodotFS._syncing){GodotRuntime.error("Already syncing!");return Promise.resolve()}GodotFS._syncing=true;return new Promise(function(resolve,reject){FS.syncfs(false,function(error){if(error){GodotRuntime.error(`Failed to save IDB file system: ${error.message}`)}GodotFS._syncing=false;resolve(error)})})},copy_to_fs:function(path,buffer){const idx=path.lastIndexOf("/");let dir="/";if(idx>0){dir=path.slice(0,idx)}try{FS.stat(dir)}catch(e){if(e.errno!==GodotFS.ENOENT){GodotRuntime.error(e)}FS.mkdirTree(dir)}FS.writeFile(path,new Uint8Array(buffer))}};var GodotOS={request_quit:function(){},_async_cbs:[],_fs_sync_promise:null,atexit:function(p_promise_cb){GodotOS._async_cbs.push(p_promise_cb)},cleanup:function(exit_code){const cb=GodotConfig.on_exit;GodotFS.deinit();GodotConfig.clear();if(cb){cb(exit_code)}},finish_async:function(callback){GodotOS._fs_sync_promise.then(function(err){const promises=[];GodotOS._async_cbs.forEach(function(cb){promises.push(new Promise(cb))});return Promise.all(promises)}).then(function(){return GodotFS.sync()}).then(function(err){setTimeout(function(){callback()},0)})}};var GodotAudio={MAX_VOLUME_CHANNELS:8,GodotChannel:{CHANNEL_L:0,CHANNEL_R:1,CHANNEL_C:3,CHANNEL_LFE:4,CHANNEL_RL:5,CHANNEL_RR:6,CHANNEL_SL:7,CHANNEL_SR:8},WebChannel:{CHANNEL_L:0,CHANNEL_R:1,CHANNEL_SL:2,CHANNEL_SR:3,CHANNEL_C:4,CHANNEL_LFE:5},samples:null,Sample:class Sample{static getSample(id){if(!GodotAudio.samples.has(id)){throw new ReferenceError(`Could not find sample "${id}"`)}return GodotAudio.samples.get(id)}static getSampleOrNull(id){return GodotAudio.samples.get(id)??null}static create(params,options={}){const sample=new GodotAudio.Sample(params,options);GodotAudio.samples.set(params.id,sample);return sample}static delete(id){GodotAudio.samples.delete(id)}constructor(params,options={}){this.id=params.id;this._audioBuffer=null;this.numberOfChannels=options.numberOfChannels??2;this.sampleRate=options.sampleRate??44100;this.loopMode=options.loopMode??"disabled";this.loopBegin=options.loopBegin??0;this.loopEnd=options.loopEnd??0;this.setAudioBuffer(params.audioBuffer)}getAudioBuffer(){return this._duplicateAudioBuffer()}setAudioBuffer(val){this._audioBuffer=val}clear(){this.setAudioBuffer(null);GodotAudio.Sample.delete(this.id)}_duplicateAudioBuffer(){if(this._audioBuffer==null){throw new Error("couldn't duplicate a null audioBuffer")}const channels=new Array(this._audioBuffer.numberOfChannels);for(let i=0;i<this._audioBuffer.numberOfChannels;i++){const channel=new Float32Array(this._audioBuffer.getChannelData(i));channels[i]=channel}const buffer=GodotAudio.ctx.createBuffer(this.numberOfChannels,this._audioBuffer.length,this._audioBuffer.sampleRate);for(let i=0;i<channels.length;i++){buffer.copyToChannel(channels[i],i,0)}return buffer}},SampleNodeBus:class SampleNodeBus{static create(bus){return new GodotAudio.SampleNodeBus(bus)}constructor(bus){const NUMBER_OF_WEB_CHANNELS=6;this._bus=bus;this._channelSplitter=GodotAudio.ctx.createChannelSplitter(NUMBER_OF_WEB_CHANNELS);this._l=GodotAudio.ctx.createGain();this._r=GodotAudio.ctx.createGain();this._sl=GodotAudio.ctx.createGain();this._sr=GodotAudio.ctx.createGain();this._c=GodotAudio.ctx.createGain();this._lfe=GodotAudio.ctx.createGain();this._channelMerger=GodotAudio.ctx.createChannelMerger(NUMBER_OF_WEB_CHANNELS);this._channelSplitter.connect(this._l,GodotAudio.WebChannel.CHANNEL_L).connect(this._channelMerger,GodotAudio.WebChannel.CHANNEL_L,GodotAudio.WebChannel.CHANNEL_L);this._channelSplitter.connect(this._r,GodotAudio.WebChannel.CHANNEL_R).connect(this._channelMerger,GodotAudio.WebChannel.CHANNEL_L,GodotAudio.WebChannel.CHANNEL_R);this._channelSplitter.connect(this._sl,GodotAudio.WebChannel.CHANNEL_SL).connect(this._channelMerger,GodotAudio.WebChannel.CHANNEL_L,GodotAudio.WebChannel.CHANNEL_SL);this._channelSplitter.connect(this._sr,GodotAudio.WebChannel.CHANNEL_SR).connect(this._channelMerger,GodotAudio.WebChannel.CHANNEL_L,GodotAudio.WebChannel.CHANNEL_SR);this._channelSplitter.connect(this._c,GodotAudio.WebChannel.CHANNEL_C).connect(this._channelMerger,GodotAudio.WebChannel.CHANNEL_L,GodotAudio.WebChannel.CHANNEL_C);this._channelSplitter.connect(this._lfe,GodotAudio.WebChannel.CHANNEL_L).connect(this._channelMerger,GodotAudio.WebChannel.CHANNEL_L,GodotAudio.WebChannel.CHANNEL_LFE);this._channelMerger.connect(this._bus.getInputNode())}getInputNode(){return this._channelSplitter}getOutputNode(){return this._channelMerger}setVolume(volume){if(volume.length!==GodotAudio.MAX_VOLUME_CHANNELS){throw new Error(`Volume length isn't "${GodotAudio.MAX_VOLUME_CHANNELS}", is ${volume.length} instead`)}this._l.gain.value=volume[GodotAudio.GodotChannel.CHANNEL_L]??0;this._r.gain.value=volume[GodotAudio.GodotChannel.CHANNEL_R]??0;this._sl.gain.value=volume[GodotAudio.GodotChannel.CHANNEL_SL]??0;this._sr.gain.value=volume[GodotAudio.GodotChannel.CHANNEL_SR]??0;this._c.gain.value=volume[GodotAudio.GodotChannel.CHANNEL_C]??0;this._lfe.gain.value=volume[GodotAudio.GodotChannel.CHANNEL_LFE]??0}clear(){this._bus=null;this._channelSplitter.disconnect();this._channelSplitter=null;this._l.disconnect();this._l=null;this._r.disconnect();this._r=null;this._sl.disconnect();this._sl=null;this._sr.disconnect();this._sr=null;this._c.disconnect();this._c=null;this._lfe.disconnect();this._lfe=null;this._channelMerger.disconnect();this._channelMerger=null}},sampleNodes:null,SampleNode:class SampleNode{static getSampleNode(id){if(!GodotAudio.sampleNodes.has(id)){throw new ReferenceError(`Could not find sample node "${id}"`)}return GodotAudio.sampleNodes.get(id)}static getSampleNodeOrNull(id){return GodotAudio.sampleNodes.get(id)??null}static stopSampleNode(id){const sampleNode=GodotAudio.SampleNode.getSampleNodeOrNull(id);if(sampleNode==null){return}sampleNode.stop()}static pauseSampleNode(id,enable){const sampleNode=GodotAudio.SampleNode.getSampleNodeOrNull(id);if(sampleNode==null){return}sampleNode.pause(enable)}static create(params,options={}){const sampleNode=new GodotAudio.SampleNode(params,options);GodotAudio.sampleNodes.set(params.id,sampleNode);return sampleNode}static delete(id){GodotAudio.sampleNodes.delete(id)}constructor(params,options={}){this.id=params.id;this.streamObjectId=params.streamObjectId;this.offset=options.offset??0;this._playbackPosition=options.offset;this.startTime=options.startTime??0;this.isPaused=false;this.isStarted=false;this.isCanceled=false;this.pauseTime=0;this._playbackRate=44100;this.loopMode=options.loopMode??this.getSample().loopMode??"disabled";this._pitchScale=options.pitchScale??1;this._sourceStartTime=0;this._sampleNodeBuses=new Map;this._source=GodotAudio.ctx.createBufferSource();this._onended=null;this._positionWorklet=null;this.setPlaybackRate(options.playbackRate??44100);this._source.buffer=this.getSample().getAudioBuffer();this._addEndedListener();const bus=GodotAudio.Bus.getBus(params.busIndex);const sampleNodeBus=this.getSampleNodeBus(bus);sampleNodeBus.setVolume(options.volume);this.connectPositionWorklet(options.start).catch(err=>{const newErr=new Error("Failed to create PositionWorklet.");newErr.cause=err;GodotRuntime.error(newErr)})}getPlaybackRate(){return this._playbackRate}getPlaybackPosition(){return this._playbackPosition}setPlaybackRate(val){this._playbackRate=val;this._syncPlaybackRate()}getPitchScale(){return this._pitchScale}setPitchScale(val){this._pitchScale=val;this._syncPlaybackRate()}getSample(){return GodotAudio.Sample.getSample(this.streamObjectId)}getOutputNode(){return this._source}start(){if(this.isStarted){return}this._resetSourceStartTime();this._source.start(this.startTime,this.offset);this.isStarted=true}stop(){this.clear()}restart(){this.isPaused=false;this.pauseTime=0;this._resetSourceStartTime();this._restart()}pause(enable=true){if(enable){this._pause();return}this._unpause()}connect(node){return this.getOutputNode().connect(node)}setVolumes(buses,volumes){for(let busIdx=0;busIdx<buses.length;busIdx++){const sampleNodeBus=this.getSampleNodeBus(buses[busIdx]);sampleNodeBus.setVolume(volumes.slice(busIdx*GodotAudio.MAX_VOLUME_CHANNELS,busIdx*GodotAudio.MAX_VOLUME_CHANNELS+GodotAudio.MAX_VOLUME_CHANNELS))}}getSampleNodeBus(bus){if(!this._sampleNodeBuses.has(bus)){const sampleNodeBus=GodotAudio.SampleNodeBus.create(bus);this._sampleNodeBuses.set(bus,sampleNodeBus);this._source.connect(sampleNodeBus.getInputNode())}return this._sampleNodeBuses.get(bus)}async connectPositionWorklet(start){await GodotAudio.audioPositionWorkletPromise;if(this.isCanceled){return}this._source.connect(this.getPositionWorklet());if(start){this.start()}}getPositionWorklet(){if(this._positionWorklet!=null){return this._positionWorklet}this._positionWorklet=new AudioWorkletNode(GodotAudio.ctx,"godot-position-reporting-processor");this._positionWorklet.port.onmessage=event=>{switch(event.data["type"]){case"position":this._playbackPosition=parseInt(event.data.data,10)/this.getSample().sampleRate+this.offset;break;default:}};return this._positionWorklet}clear(){this.isCanceled=true;this.isPaused=false;this.pauseTime=0;if(this._source!=null){this._source.removeEventListener("ended",this._onended);this._onended=null;if(this.isStarted){this._source.stop()}this._source.disconnect();this._source=null}for(const sampleNodeBus of this._sampleNodeBuses.values()){sampleNodeBus.clear()}this._sampleNodeBuses.clear();if(this._positionWorklet){this._positionWorklet.disconnect();this._positionWorklet.port.onmessage=null;this._positionWorklet.port.postMessage({type:"ended"});this._positionWorklet=null}GodotAudio.SampleNode.delete(this.id)}_resetSourceStartTime(){this._sourceStartTime=GodotAudio.ctx.currentTime}_syncPlaybackRate(){this._source.playbackRate.value=this.getPlaybackRate()*this.getPitchScale()}_restart(){if(this._source!=null){this._source.disconnect()}this._source=GodotAudio.ctx.createBufferSource();this._source.buffer=this.getSample().getAudioBuffer();for(const sampleNodeBus of this._sampleNodeBuses.values()){this.connect(sampleNodeBus.getInputNode())}this._addEndedListener();const pauseTime=this.isPaused?this.pauseTime:0;if(this._positionWorklet!=null){this._positionWorklet.port.postMessage({type:"clear"});this._source.connect(this._positionWorklet)}this._source.start(this.startTime,this.offset+pauseTime);this.isStarted=true}_pause(){if(!this.isStarted){return}this.isPaused=true;this.pauseTime=(GodotAudio.ctx.currentTime-this._sourceStartTime)/this.getPlaybackRate();this._source.stop()}_unpause(){this._restart();this.isPaused=false;this.pauseTime=0}_addEndedListener(){if(this._onended!=null){this._source.removeEventListener("ended",this._onended)}const self=this;this._onended=_=>{if(self.isPaused){return}switch(self.getSample().loopMode){case"disabled":{const id=this.id;self.stop();if(GodotAudio.sampleFinishedCallback!=null){const idCharPtr=GodotRuntime.allocString(id);GodotAudio.sampleFinishedCallback(idCharPtr);GodotRuntime.free(idCharPtr)}}break;case"forward":case"backward":self.restart();break;default:}};this._source.addEventListener("ended",this._onended)}},buses:null,busSolo:null,Bus:class Bus{static getCount(){return GodotAudio.buses.length}static setCount(val){const buses=GodotAudio.buses;if(val===buses.length){return}if(val<buses.length){const deletedBuses=buses.slice(val);for(let i=0;i<deletedBuses.length;i++){const deletedBus=deletedBuses[i];deletedBus.clear()}GodotAudio.buses=buses.slice(0,val);return}for(let i=GodotAudio.buses.length;i<val;i++){GodotAudio.Bus.create()}}static getBus(index){if(index<0||index>=GodotAudio.buses.length){throw new ReferenceError(`invalid bus index "${index}"`)}return GodotAudio.buses[index]}static getBusOrNull(index){if(index<0||index>=GodotAudio.buses.length){return null}return GodotAudio.buses[index]}static move(fromIndex,toIndex){const movedBus=GodotAudio.Bus.getBusOrNull(fromIndex);if(movedBus==null){return}const buses=GodotAudio.buses.filter((_,i)=>i!==fromIndex);buses.splice(toIndex-1,0,movedBus);GodotAudio.buses=buses}static addAt(index){const newBus=GodotAudio.Bus.create();if(index!==newBus.getId()){GodotAudio.Bus.move(newBus.getId(),index)}}static create(){const newBus=new GodotAudio.Bus;const isFirstBus=GodotAudio.buses.length===0;GodotAudio.buses.push(newBus);if(isFirstBus){newBus.setSend(null)}else{newBus.setSend(GodotAudio.Bus.getBus(0))}return newBus}constructor(){this._sampleNodes=new Set;this.isSolo=false;this._send=null;this._gainNode=GodotAudio.ctx.createGain();this._soloNode=GodotAudio.ctx.createGain();this._muteNode=GodotAudio.ctx.createGain();this._gainNode.connect(this._soloNode).connect(this._muteNode)}getId(){return GodotAudio.buses.indexOf(this)}getVolumeDb(){return GodotAudio.linear_to_db(this._gainNode.gain.value)}setVolumeDb(val){const linear=GodotAudio.db_to_linear(val);if(isFinite(linear)){this._gainNode.gain.value=linear}}getSend(){return this._send}setSend(val){this._send=val;if(val==null){if(this.getId()==0){this.getOutputNode().connect(GodotAudio.ctx.destination);return}throw new Error(`Cannot send to "${val}" without the bus being at index 0 (current index: ${this.getId()})`)}this.connect(val)}getInputNode(){return this._gainNode}getOutputNode(){return this._muteNode}mute(enable){this._muteNode.gain.value=enable?0:1}solo(enable){if(this.isSolo===enable){return}if(enable){if(GodotAudio.busSolo!=null&&GodotAudio.busSolo!==this){GodotAudio.busSolo._disableSolo()}this._enableSolo();return}this._disableSolo()}addSampleNode(sampleNode){this._sampleNodes.add(sampleNode);sampleNode.getOutputNode().connect(this.getInputNode())}removeSampleNode(sampleNode){this._sampleNodes.delete(sampleNode);sampleNode.getOutputNode().disconnect()}connect(bus){if(bus==null){throw new Error("cannot connect to null bus")}this.getOutputNode().disconnect();this.getOutputNode().connect(bus.getInputNode());return bus}clear(){GodotAudio.buses=GodotAudio.buses.filter(v=>v!==this)}_syncSampleNodes(){const sampleNodes=Array.from(this._sampleNodes);for(let i=0;i<sampleNodes.length;i++){const sampleNode=sampleNodes[i];sampleNode.getOutputNode().disconnect();sampleNode.getOutputNode().connect(this.getInputNode())}}_enableSolo(){this.isSolo=true;GodotAudio.busSolo=this;this._soloNode.gain.value=1;const otherBuses=GodotAudio.buses.filter(otherBus=>otherBus!==this);for(let i=0;i<otherBuses.length;i++){const otherBus=otherBuses[i];otherBus._soloNode.gain.value=0}}_disableSolo(){this.isSolo=false;GodotAudio.busSolo=null;this._soloNode.gain.value=1;const otherBuses=GodotAudio.buses.filter(otherBus=>otherBus!==this);for(let i=0;i<otherBuses.length;i++){const otherBus=otherBuses[i];otherBus._soloNode.gain.value=1}}},sampleFinishedCallback:null,ctx:null,input:null,driver:null,interval:0,audioPositionWorkletPromise:null,linear_to_db:function(linear){return Math.log(linear)*8.685889638065037},db_to_linear:function(db){return Math.exp(db*.11512925464970228)},init:function(mix_rate,latency,onstatechange,onlatencyupdate){GodotAudio.samples=new Map;GodotAudio.sampleNodes=new Map;GodotAudio.buses=[];GodotAudio.busSolo=null;const opts={};if(mix_rate){GodotAudio.sampleRate=mix_rate;opts["sampleRate"]=mix_rate}const ctx=new(window.AudioContext||window.webkitAudioContext)(opts);GodotAudio.ctx=ctx;ctx.onstatechange=function(){let state=0;switch(ctx.state){case"suspended":state=0;break;case"running":state=1;break;case"closed":state=2;break;default:}onstatechange(state)};ctx.onstatechange();GodotAudio.interval=setInterval(function(){let computed_latency=0;if(ctx.baseLatency){computed_latency+=GodotAudio.ctx.baseLatency}if(ctx.outputLatency){computed_latency+=GodotAudio.ctx.outputLatency}onlatencyupdate(computed_latency)},1e3);GodotOS.atexit(GodotAudio.close_async);const path=GodotConfig.locate_file("godot.audio.position.worklet.js");GodotAudio.audioPositionWorkletPromise=ctx.audioWorklet.addModule(path);return ctx.destination.channelCount},create_input:function(callback){if(GodotAudio.input){return 0}function gotMediaInput(stream){try{GodotAudio.input=GodotAudio.ctx.createMediaStreamSource(stream);callback(GodotAudio.input)}catch(e){GodotRuntime.error("Failed creating input.",e)}}if(navigator.mediaDevices&&navigator.mediaDevices.getUserMedia){navigator.mediaDevices.getUserMedia({audio:true}).then(gotMediaInput,function(e){GodotRuntime.error("Error getting user media.",e)})}else{if(!navigator.getUserMedia){navigator.getUserMedia=navigator.webkitGetUserMedia||navigator.mozGetUserMedia}if(!navigator.getUserMedia){GodotRuntime.error("getUserMedia not available.");return 1}navigator.getUserMedia({audio:true},gotMediaInput,function(e){GodotRuntime.print(e)})}return 0},close_async:function(resolve,reject){const ctx=GodotAudio.ctx;GodotAudio.ctx=null;if(!ctx){resolve();return}if(GodotAudio.interval){clearInterval(GodotAudio.interval);GodotAudio.interval=0}if(GodotAudio.input){GodotAudio.input.disconnect();GodotAudio.input=null}let closed=Promise.resolve();if(GodotAudio.driver){closed=GodotAudio.driver.close()}closed.then(function(){return ctx.close()}).then(function(){ctx.onstatechange=null;resolve()}).catch(function(e){ctx.onstatechange=null;GodotRuntime.error("Error closing AudioContext",e);resolve()})},start_sample:function(playbackObjectId,streamObjectId,busIndex,startOptions){GodotAudio.SampleNode.stopSampleNode(playbackObjectId);GodotAudio.SampleNode.create({busIndex:busIndex,id:playbackObjectId,streamObjectId:streamObjectId},startOptions)},stop_sample:function(playbackObjectId){GodotAudio.SampleNode.stopSampleNode(playbackObjectId)},sample_set_pause:function(playbackObjectId,pause){GodotAudio.SampleNode.pauseSampleNode(playbackObjectId,pause)},update_sample_pitch_scale:function(playbackObjectId,pitchScale){const sampleNode=GodotAudio.SampleNode.getSampleNodeOrNull(playbackObjectId);if(sampleNode==null){return}sampleNode.setPitchScale(pitchScale)},sample_set_volumes_linear:function(playbackObjectId,busIndexes,volumes){const sampleNode=GodotAudio.SampleNode.getSampleNodeOrNull(playbackObjectId);if(sampleNode==null){return}const buses=busIndexes.map(busIndex=>GodotAudio.Bus.getBus(busIndex));sampleNode.setVolumes(buses,volumes)},set_sample_bus_count:function(count){GodotAudio.Bus.setCount(count)},remove_sample_bus:function(index){const bus=GodotAudio.Bus.getBusOrNull(index);if(bus==null){return}bus.clear()},add_sample_bus:function(atPos){GodotAudio.Bus.addAt(atPos)},move_sample_bus:function(busIndex,toPos){GodotAudio.Bus.move(busIndex,toPos)},set_sample_bus_send:function(busIndex,sendIndex){const bus=GodotAudio.Bus.getBusOrNull(busIndex);if(bus==null){return}let targetBus=GodotAudio.Bus.getBusOrNull(sendIndex);if(targetBus==null){targetBus=GodotAudio.Bus.getBus(0)}bus.setSend(targetBus)},set_sample_bus_volume_db:function(busIndex,volumeDb){const bus=GodotAudio.Bus.getBusOrNull(busIndex);if(bus==null){return}bus.setVolumeDb(volumeDb)},set_sample_bus_solo:function(busIndex,enable){const bus=GodotAudio.Bus.getBusOrNull(busIndex);if(bus==null){return}bus.solo(enable)},set_sample_bus_mute:function(busIndex,enable){const bus=GodotAudio.Bus.getBusOrNull(busIndex);if(bus==null){return}bus.mute(enable)}};function _godot_audio_get_sample_playback_position(playbackObjectIdStrPtr){const playbackObjectId=GodotRuntime.parseString(playbackObjectIdStrPtr);const sampleNode=GodotAudio.SampleNode.getSampleNodeOrNull(playbackObjectId);if(sampleNode==null){return 0}return sampleNode.getPlaybackPosition()}function _godot_audio_has_script_processor(){return GodotAudio.ctx&&GodotAudio.ctx.createScriptProcessor?1:0}function _godot_audio_has_worklet(){return GodotAudio.ctx&&GodotAudio.ctx.audioWorklet?1:0}function _godot_audio_init(p_mix_rate,p_latency,p_state_change,p_latency_update){const statechange=GodotRuntime.get_func(p_state_change);const latencyupdate=GodotRuntime.get_func(p_latency_update);const mix_rate=GodotRuntime.getHeapValue(p_mix_rate,"i32");const channels=GodotAudio.init(mix_rate,p_latency,statechange,latencyupdate);GodotRuntime.setHeapValue(p_mix_rate,GodotAudio.ctx.sampleRate,"i32");return channels}function _godot_audio_input_start(){return GodotAudio.create_input(function(input){input.connect(GodotAudio.driver.get_node())})}function _godot_audio_input_stop(){if(GodotAudio.input){const tracks=GodotAudio.input["mediaStream"]["getTracks"]();for(let i=0;i<tracks.length;i++){tracks[i]["stop"]()}GodotAudio.input.disconnect();GodotAudio.input=null}}function _godot_audio_is_available(){if(!(window.AudioContext||window.webkitAudioContext)){return 0}return 1}function _godot_audio_resume(){if(GodotAudio.ctx&&GodotAudio.ctx.state!=="running"){GodotAudio.ctx.resume()}}function _godot_audio_sample_bus_add(atPos){GodotAudio.add_sample_bus(atPos)}function _godot_audio_sample_bus_move(fromPos,toPos){GodotAudio.move_sample_bus(fromPos,toPos)}function _godot_audio_sample_bus_remove(index){GodotAudio.remove_sample_bus(index)}function _godot_audio_sample_bus_set_count(count){GodotAudio.set_sample_bus_count(count)}function _godot_audio_sample_bus_set_mute(bus,enable){GodotAudio.set_sample_bus_mute(bus,Boolean(enable))}function _godot_audio_sample_bus_set_send(bus,sendIndex){GodotAudio.set_sample_bus_send(bus,sendIndex)}function _godot_audio_sample_bus_set_solo(bus,enable){GodotAudio.set_sample_bus_solo(bus,Boolean(enable))}function _godot_audio_sample_bus_set_volume_db(bus,volumeDb){GodotAudio.set_sample_bus_volume_db(bus,volumeDb)}function _godot_audio_sample_is_active(playbackObjectIdStrPtr){const playbackObjectId=GodotRuntime.parseString(playbackObjectIdStrPtr);return Number(GodotAudio.sampleNodes.has(playbackObjectId))}function _godot_audio_sample_register_stream(streamObjectIdStrPtr,framesPtr,framesTotal,loopModeStrPtr,loopBegin,loopEnd){const BYTES_PER_FLOAT32=4;const streamObjectId=GodotRuntime.parseString(streamObjectIdStrPtr);const loopMode=GodotRuntime.parseString(loopModeStrPtr);const numberOfChannels=2;const sampleRate=GodotAudio.ctx.sampleRate;const subLeft=GodotRuntime.heapSub(HEAPF32,framesPtr,framesTotal);const subRight=GodotRuntime.heapSub(HEAPF32,framesPtr+framesTotal*BYTES_PER_FLOAT32,framesTotal);const audioBuffer=GodotAudio.ctx.createBuffer(numberOfChannels,framesTotal,sampleRate);audioBuffer.copyToChannel(new Float32Array(subLeft),0,0);audioBuffer.copyToChannel(new Float32Array(subRight),1,0);GodotAudio.Sample.create({id:streamObjectId,audioBuffer:audioBuffer},{loopBegin:loopBegin,loopEnd:loopEnd,loopMode:loopMode,numberOfChannels:numberOfChannels,sampleRate:sampleRate})}function _godot_audio_sample_set_finished_callback(callbackPtr){GodotAudio.sampleFinishedCallback=GodotRuntime.get_func(callbackPtr)}function _godot_audio_sample_set_pause(playbackObjectIdStrPtr,pause){const playbackObjectId=GodotRuntime.parseString(playbackObjectIdStrPtr);GodotAudio.sample_set_pause(playbackObjectId,Boolean(pause))}function _godot_audio_sample_set_volumes_linear(playbackObjectIdStrPtr,busesPtr,busesSize,volumesPtr,volumesSize){const playbackObjectId=GodotRuntime.parseString(playbackObjectIdStrPtr);const buses=GodotRuntime.heapSub(HEAP32,busesPtr,busesSize);const volumes=GodotRuntime.heapSub(HEAPF32,volumesPtr,volumesSize);GodotAudio.sample_set_volumes_linear(playbackObjectId,Array.from(buses),volumes)}function _godot_audio_sample_start(playbackObjectIdStrPtr,streamObjectIdStrPtr,busIndex,offset,pitchScale,volumePtr){const playbackObjectId=GodotRuntime.parseString(playbackObjectIdStrPtr);const streamObjectId=GodotRuntime.parseString(streamObjectIdStrPtr);const volume=GodotRuntime.heapSub(HEAPF32,volumePtr,8);const startOptions={offset:offset,volume:volume,playbackRate:1,pitchScale:pitchScale,start:true};GodotAudio.start_sample(playbackObjectId,streamObjectId,busIndex,startOptions)}function _godot_audio_sample_stop(playbackObjectIdStrPtr){const playbackObjectId=GodotRuntime.parseString(playbackObjectIdStrPtr);GodotAudio.stop_sample(playbackObjectId)}function _godot_audio_sample_stream_is_registered(streamObjectIdStrPtr){const streamObjectId=GodotRuntime.parseString(streamObjectIdStrPtr);return Number(GodotAudio.Sample.getSampleOrNull(streamObjectId)!=null)}function _godot_audio_sample_unregister_stream(streamObjectIdStrPtr){const streamObjectId=GodotRuntime.parseString(streamObjectIdStrPtr);const sample=GodotAudio.Sample.getSampleOrNull(streamObjectId);if(sample!=null){sample.clear()}}function _godot_audio_sample_update_pitch_scale(playbackObjectIdStrPtr,pitchScale){const playbackObjectId=GodotRuntime.parseString(playbackObjectIdStrPtr);GodotAudio.update_sample_pitch_scale(playbackObjectId,pitchScale)}var GodotAudioScript={script:null,create:function(buffer_length,channel_count){GodotAudioScript.script=GodotAudio.ctx.createScriptProcessor(buffer_length,2,channel_count);GodotAudio.driver=GodotAudioScript;return GodotAudioScript.script.bufferSize},start:function(p_in_buf,p_in_size,p_out_buf,p_out_size,onprocess){GodotAudioScript.script.onaudioprocess=function(event){const inb=GodotRuntime.heapSub(HEAPF32,p_in_buf,p_in_size);const input=event.inputBuffer;if(GodotAudio.input){const inlen=input.getChannelData(0).length;for(let ch=0;ch<2;ch++){const data=input.getChannelData(ch);for(let s=0;s<inlen;s++){inb[s*2+ch]=data[s]}}}onprocess();const outb=GodotRuntime.heapSub(HEAPF32,p_out_buf,p_out_size);const output=event.outputBuffer;const channels=output.numberOfChannels;for(let ch=0;ch<channels;ch++){const data=output.getChannelData(ch);for(let sample=0;sample<data.length;sample++){data[sample]=outb[sample*channels+ch]}}};GodotAudioScript.script.connect(GodotAudio.ctx.destination)},get_node:function(){return GodotAudioScript.script},close:function(){return new Promise(function(resolve,reject){GodotAudioScript.script.disconnect();GodotAudioScript.script.onaudioprocess=null;GodotAudioScript.script=null;resolve()})}};function _godot_audio_script_create(buffer_length,channel_count){const buf_len=GodotRuntime.getHeapValue(buffer_length,"i32");try{const out_len=GodotAudioScript.create(buf_len,channel_count);GodotRuntime.setHeapValue(buffer_length,out_len,"i32")}catch(e){GodotRuntime.error("Error starting AudioDriverScriptProcessor",e);return 1}return 0}function _godot_audio_script_start(p_in_buf,p_in_size,p_out_buf,p_out_size,p_cb){const onprocess=GodotRuntime.get_func(p_cb);GodotAudioScript.start(p_in_buf,p_in_size,p_out_buf,p_out_size,onprocess)}var GodotAudioWorklet={promise:null,worklet:null,ring_buffer:null,create:function(channels){const path=GodotConfig.locate_file("godot.audio.worklet.js");GodotAudioWorklet.promise=GodotAudio.ctx.audioWorklet.addModule(path).then(function(){GodotAudioWorklet.worklet=new AudioWorkletNode(GodotAudio.ctx,"godot-processor",{outputChannelCount:[channels]});return Promise.resolve()});GodotAudio.driver=GodotAudioWorklet},start:function(in_buf,out_buf,state){GodotAudioWorklet.promise.then(function(){const node=GodotAudioWorklet.worklet;node.connect(GodotAudio.ctx.destination);node.port.postMessage({cmd:"start",data:[state,in_buf,out_buf]});node.port.onmessage=function(event){GodotRuntime.error(event.data)}})},start_no_threads:function(p_out_buf,p_out_size,out_callback,p_in_buf,p_in_size,in_callback){function RingBuffer(){let wpos=0;let rpos=0;let pending_samples=0;const wbuf=new Float32Array(p_out_size);function send(port){if(pending_samples===0){return}const buffer=GodotRuntime.heapSub(HEAPF32,p_out_buf,p_out_size);const size=buffer.length;const tot_sent=pending_samples;out_callback(wpos,pending_samples);if(wpos+pending_samples>=size){const high=size-wpos;wbuf.set(buffer.subarray(wpos,size));pending_samples-=high;wpos=0}if(pending_samples>0){wbuf.set(buffer.subarray(wpos,wpos+pending_samples),tot_sent-pending_samples)}port.postMessage({cmd:"chunk",data:wbuf.subarray(0,tot_sent)});wpos+=pending_samples;pending_samples=0}this.receive=function(recv_buf){const buffer=GodotRuntime.heapSub(HEAPF32,p_in_buf,p_in_size);const from=rpos;let to_write=recv_buf.length;let high=0;if(rpos+to_write>=p_in_size){high=p_in_size-rpos;buffer.set(recv_buf.subarray(0,high),rpos);to_write-=high;rpos=0}if(to_write){buffer.set(recv_buf.subarray(high,to_write),rpos)}in_callback(from,recv_buf.length);rpos+=to_write};this.consumed=function(size,port){pending_samples+=size;send(port)}}GodotAudioWorklet.ring_buffer=new RingBuffer;GodotAudioWorklet.promise.then(function(){const node=GodotAudioWorklet.worklet;const buffer=GodotRuntime.heapSlice(HEAPF32,p_out_buf,p_out_size);node.connect(GodotAudio.ctx.destination);node.port.postMessage({cmd:"start_nothreads",data:[buffer,p_in_size]});node.port.onmessage=function(event){if(!GodotAudioWorklet.worklet){return}if(event.data["cmd"]==="read"){const read=event.data["data"];GodotAudioWorklet.ring_buffer.consumed(read,GodotAudioWorklet.worklet.port)}else if(event.data["cmd"]==="input"){const buf=event.data["data"];if(buf.length>p_in_size){GodotRuntime.error("Input chunk is too big");return}GodotAudioWorklet.ring_buffer.receive(buf)}else{GodotRuntime.error(event.data)}}})},get_node:function(){return GodotAudioWorklet.worklet},close:function(){return new Promise(function(resolve,reject){if(GodotAudioWorklet.promise===null){return}const p=GodotAudioWorklet.promise;p.then(function(){GodotAudioWorklet.worklet.port.postMessage({cmd:"stop",data:null});GodotAudioWorklet.worklet.disconnect();GodotAudioWorklet.worklet.port.onmessage=null;GodotAudioWorklet.worklet=null;GodotAudioWorklet.promise=null;resolve()}).catch(function(err){GodotRuntime.error(err)})})}};function _godot_audio_worklet_create(channels){try{GodotAudioWorklet.create(channels)}catch(e){GodotRuntime.error("Error starting AudioDriverWorklet",e);return 1}return 0}function _godot_audio_worklet_start_no_threads(p_out_buf,p_out_size,p_out_callback,p_in_buf,p_in_size,p_in_callback){const out_callback=GodotRuntime.get_func(p_out_callback);const in_callback=GodotRuntime.get_func(p_in_callback);GodotAudioWorklet.start_no_threads(p_out_buf,p_out_size,out_callback,p_in_buf,p_in_size,in_callback)}function _godot_js_config_canvas_id_get(p_ptr,p_ptr_max){GodotRuntime.stringToHeap(`#${GodotConfig.canvas.id}`,p_ptr,p_ptr_max)}function _godot_js_config_locale_get(p_ptr,p_ptr_max){GodotRuntime.stringToHeap(GodotConfig.locale,p_ptr,p_ptr_max)}var GodotDisplayCursor={shape:"default",visible:true,cursors:{},set_style:function(style){GodotConfig.canvas.style.cursor=style},set_shape:function(shape){GodotDisplayCursor.shape=shape;let css=shape;if(shape in GodotDisplayCursor.cursors){const c=GodotDisplayCursor.cursors[shape];css=`url("${c.url}") ${c.x} ${c.y}, default`}if(GodotDisplayCursor.visible){GodotDisplayCursor.set_style(css)}},clear:function(){GodotDisplayCursor.set_style("");GodotDisplayCursor.shape="default";GodotDisplayCursor.visible=true;Object.keys(GodotDisplayCursor.cursors).forEach(function(key){URL.revokeObjectURL(GodotDisplayCursor.cursors[key]);delete GodotDisplayCursor.cursors[key]})},lockPointer:function(){const canvas=GodotConfig.canvas;if(canvas.requestPointerLock){canvas.requestPointerLock()}},releasePointer:function(){if(document.exitPointerLock){document.exitPointerLock()}},isPointerLocked:function(){return document.pointerLockElement===GodotConfig.canvas}};var GodotEventListeners={handlers:[],has:function(target,event,method,capture){return GodotEventListeners.handlers.findIndex(function(e){return e.target===target&&e.event===event&&e.method===method&&e.capture===capture})!==-1},add:function(target,event,method,capture){if(GodotEventListeners.has(target,event,method,capture)){return}function Handler(p_target,p_event,p_method,p_capture){this.target=p_target;this.event=p_event;this.method=p_method;this.capture=p_capture}GodotEventListeners.handlers.push(new Handler(target,event,method,capture));target.addEventListener(event,method,capture)},clear:function(){GodotEventListeners.handlers.forEach(function(h){h.target.removeEventListener(h.event,h.method,h.capture)});GodotEventListeners.handlers.length=0}};var _emscripten_webgl_do_get_current_context=()=>GL.currentContext?GL.currentContext.handle:0;var _emscripten_webgl_get_current_context=_emscripten_webgl_do_get_current_context;var GodotDisplayScreen={desired_size:[0,0],hidpi:true,getPixelRatio:function(){return GodotDisplayScreen.hidpi?window.devicePixelRatio||1:1},isFullscreen:function(){const elem=document.fullscreenElement||document.mozFullscreenElement||document.webkitFullscreenElement||document.msFullscreenElement;if(elem){return elem===GodotConfig.canvas}return document.fullscreen||document.mozFullScreen||document.webkitIsFullscreen},hasFullscreen:function(){return document.fullscreenEnabled||document.mozFullScreenEnabled||document.webkitFullscreenEnabled},requestFullscreen:function(){if(!GodotDisplayScreen.hasFullscreen()){return 1}const canvas=GodotConfig.canvas;try{const promise=(canvas.requestFullscreen||canvas.msRequestFullscreen||canvas.mozRequestFullScreen||canvas.mozRequestFullscreen||canvas.webkitRequestFullscreen).call(canvas);if(promise){promise.catch(function(){})}}catch(e){return 1}return 0},exitFullscreen:function(){if(!GodotDisplayScreen.isFullscreen()){return 0}try{const promise=document.exitFullscreen();if(promise){promise.catch(function(){})}}catch(e){return 1}return 0},_updateGL:function(){const gl_context_handle=_emscripten_webgl_get_current_context();const gl=GL.getContext(gl_context_handle);if(gl){GL.resizeOffscreenFramebuffer(gl)}},updateSize:function(){const isFullscreen=GodotDisplayScreen.isFullscreen();const wantsFullWindow=GodotConfig.canvas_resize_policy===2;const noResize=GodotConfig.canvas_resize_policy===0;const dWidth=GodotDisplayScreen.desired_size[0];const dHeight=GodotDisplayScreen.desired_size[1];const canvas=GodotConfig.canvas;let width=dWidth;let height=dHeight;if(noResize){if(canvas.width!==width||canvas.height!==height){GodotDisplayScreen.desired_size=[canvas.width,canvas.height];GodotDisplayScreen._updateGL();return 1}return 0}const scale=GodotDisplayScreen.getPixelRatio();if(isFullscreen||wantsFullWindow){width=window.innerWidth*scale;height=window.innerHeight*scale}const csw=`${width/scale}px`;const csh=`${height/scale}px`;if(canvas.style.width!==csw||canvas.style.height!==csh||canvas.width!==width||canvas.height!==height){canvas.width=width;canvas.height=height;canvas.style.width=csw;canvas.style.height=csh;GodotDisplayScreen._updateGL();return 1}return 0}};var GodotDisplayVK={textinput:null,textarea:null,available:function(){return GodotConfig.virtual_keyboard&&"ontouchstart"in window},init:function(input_cb){function create(what){const elem=document.createElement(what);elem.style.display="none";elem.style.position="absolute";elem.style.zIndex="-1";elem.style.background="transparent";elem.style.padding="0px";elem.style.margin="0px";elem.style.overflow="hidden";elem.style.width="0px";elem.style.height="0px";elem.style.border="0px";elem.style.outline="none";elem.readonly=true;elem.disabled=true;GodotEventListeners.add(elem,"input",function(evt){const c_str=GodotRuntime.allocString(elem.value);input_cb(c_str,elem.selectionEnd);GodotRuntime.free(c_str)},false);GodotEventListeners.add(elem,"blur",function(evt){elem.style.display="none";elem.readonly=true;elem.disabled=true},false);GodotConfig.canvas.insertAdjacentElement("beforebegin",elem);return elem}GodotDisplayVK.textinput=create("input");GodotDisplayVK.textarea=create("textarea");GodotDisplayVK.updateSize()},show:function(text,type,start,end){if(!GodotDisplayVK.textinput||!GodotDisplayVK.textarea){return}if(GodotDisplayVK.textinput.style.display!==""||GodotDisplayVK.textarea.style.display!==""){GodotDisplayVK.hide()}GodotDisplayVK.updateSize();let elem=GodotDisplayVK.textinput;switch(type){case 0:elem.type="text";elem.inputmode="";break;case 1:elem=GodotDisplayVK.textarea;break;case 2:elem.type="text";elem.inputmode="numeric";break;case 3:elem.type="text";elem.inputmode="decimal";break;case 4:elem.type="tel";elem.inputmode="";break;case 5:elem.type="email";elem.inputmode="";break;case 6:elem.type="password";elem.inputmode="";break;case 7:elem.type="url";elem.inputmode="";break;default:elem.type="text";elem.inputmode="";break}elem.readonly=false;elem.disabled=false;elem.value=text;elem.style.display="block";elem.focus();elem.setSelectionRange(start,end)},hide:function(){if(!GodotDisplayVK.textinput||!GodotDisplayVK.textarea){return}[GodotDisplayVK.textinput,GodotDisplayVK.textarea].forEach(function(elem){elem.blur();elem.style.display="none";elem.value=""})},updateSize:function(){if(!GodotDisplayVK.textinput||!GodotDisplayVK.textarea){return}const rect=GodotConfig.canvas.getBoundingClientRect();function update(elem){elem.style.left=`${rect.left}px`;elem.style.top=`${rect.top}px`;elem.style.width=`${rect.width}px`;elem.style.height=`${rect.height}px`}update(GodotDisplayVK.textinput);update(GodotDisplayVK.textarea)},clear:function(){if(GodotDisplayVK.textinput){GodotDisplayVK.textinput.remove();GodotDisplayVK.textinput=null}if(GodotDisplayVK.textarea){GodotDisplayVK.textarea.remove();GodotDisplayVK.textarea=null}}};var GodotDisplay={window_icon:"",getDPI:function(){const dpi=Math.round(window.devicePixelRatio*96);return dpi>=96?dpi:96}};function _godot_js_display_alert(p_text){window.alert(GodotRuntime.parseString(p_text))}function _godot_js_display_canvas_focus(){GodotConfig.canvas.focus()}function _godot_js_display_canvas_is_focused(){return document.activeElement===GodotConfig.canvas}function _godot_js_display_clipboard_get(callback){const func=GodotRuntime.get_func(callback);try{navigator.clipboard.readText().then(function(result){const ptr=GodotRuntime.allocString(result);func(ptr);GodotRuntime.free(ptr)}).catch(function(e){})}catch(e){}}function _godot_js_display_clipboard_set(p_text){const text=GodotRuntime.parseString(p_text);if(!navigator.clipboard||!navigator.clipboard.writeText){return 1}navigator.clipboard.writeText(text).catch(function(e){GodotRuntime.error("Setting OS clipboard is only possible from an input callback for the Web platform. Exception:",e)});return 0}function _godot_js_display_cursor_is_hidden(){return!GodotDisplayCursor.visible}function _godot_js_display_cursor_is_locked(){return GodotDisplayCursor.isPointerLocked()?1:0}function _godot_js_display_cursor_lock_set(p_lock){if(p_lock){GodotDisplayCursor.lockPointer()}else{GodotDisplayCursor.releasePointer()}}function _godot_js_display_cursor_set_custom_shape(p_shape,p_ptr,p_len,p_hotspot_x,p_hotspot_y){const shape=GodotRuntime.parseString(p_shape);const old_shape=GodotDisplayCursor.cursors[shape];if(p_len>0){const png=new Blob([GodotRuntime.heapSlice(HEAPU8,p_ptr,p_len)],{type:"image/png"});const url=URL.createObjectURL(png);GodotDisplayCursor.cursors[shape]={url:url,x:p_hotspot_x,y:p_hotspot_y}}else{delete GodotDisplayCursor.cursors[shape]}if(shape===GodotDisplayCursor.shape){GodotDisplayCursor.set_shape(GodotDisplayCursor.shape)}if(old_shape){URL.revokeObjectURL(old_shape.url)}}function _godot_js_display_cursor_set_shape(p_string){GodotDisplayCursor.set_shape(GodotRuntime.parseString(p_string))}function _godot_js_display_cursor_set_visible(p_visible){const visible=p_visible!==0;if(visible===GodotDisplayCursor.visible){return}GodotDisplayCursor.visible=visible;if(visible){GodotDisplayCursor.set_shape(GodotDisplayCursor.shape)}else{GodotDisplayCursor.set_style("none")}}function _godot_js_display_desired_size_set(width,height){GodotDisplayScreen.desired_size=[width,height];GodotDisplayScreen.updateSize()}function _godot_js_display_fullscreen_cb(callback){const canvas=GodotConfig.canvas;const func=GodotRuntime.get_func(callback);function change_cb(evt){if(evt.target===canvas){func(GodotDisplayScreen.isFullscreen())}}GodotEventListeners.add(document,"fullscreenchange",change_cb,false);GodotEventListeners.add(document,"mozfullscreenchange",change_cb,false);GodotEventListeners.add(document,"webkitfullscreenchange",change_cb,false)}function _godot_js_display_fullscreen_exit(){return GodotDisplayScreen.exitFullscreen()}function _godot_js_display_fullscreen_request(){return GodotDisplayScreen.requestFullscreen()}function _godot_js_display_has_webgl(p_version){if(p_version!==1&&p_version!==2){return false}try{return!!document.createElement("canvas").getContext(p_version===2?"webgl2":"webgl")}catch(e){}return false}function _godot_js_display_is_swap_ok_cancel(){const win=["Windows","Win64","Win32","WinCE"];const plat=navigator.platform||"";if(win.indexOf(plat)!==-1){return 1}return 0}function _godot_js_display_notification_cb(callback,p_enter,p_exit,p_in,p_out){const canvas=GodotConfig.canvas;const func=GodotRuntime.get_func(callback);const notif=[p_enter,p_exit,p_in,p_out];["mouseover","mouseleave","focus","blur"].forEach(function(evt_name,idx){GodotEventListeners.add(canvas,evt_name,function(){func(notif[idx])},true)})}function _godot_js_display_pixel_ratio_get(){return GodotDisplayScreen.getPixelRatio()}function _godot_js_display_screen_dpi_get(){return GodotDisplay.getDPI()}function _godot_js_display_screen_size_get(width,height){const scale=GodotDisplayScreen.getPixelRatio();GodotRuntime.setHeapValue(width,window.screen.width*scale,"i32");GodotRuntime.setHeapValue(height,window.screen.height*scale,"i32")}function _godot_js_display_setup_canvas(p_width,p_height,p_fullscreen,p_hidpi){const canvas=GodotConfig.canvas;GodotEventListeners.add(canvas,"contextmenu",function(ev){ev.preventDefault()},false);GodotEventListeners.add(canvas,"webglcontextlost",function(ev){alert("WebGL context lost, please reload the page");ev.preventDefault()},false);GodotDisplayScreen.hidpi=!!p_hidpi;switch(GodotConfig.canvas_resize_policy){case 0:GodotDisplayScreen.desired_size=[canvas.width,canvas.height];break;case 1:GodotDisplayScreen.desired_size=[p_width,p_height];break;default:canvas.style.position="absolute";canvas.style.top=0;canvas.style.left=0;break}GodotDisplayScreen.updateSize();if(p_fullscreen){GodotDisplayScreen.requestFullscreen()}}function _godot_js_display_size_update(){const updated=GodotDisplayScreen.updateSize();if(updated){GodotDisplayVK.updateSize()}return updated}function _godot_js_display_touchscreen_is_available(){return"ontouchstart"in window}function _godot_js_display_tts_available(){return"speechSynthesis"in window}function _godot_js_display_vk_available(){return GodotDisplayVK.available()}function _godot_js_display_vk_cb(p_input_cb){const input_cb=GodotRuntime.get_func(p_input_cb);if(GodotDisplayVK.available()){GodotDisplayVK.init(input_cb)}}function _godot_js_display_vk_hide(){GodotDisplayVK.hide()}function _godot_js_display_vk_show(p_text,p_type,p_start,p_end){const text=GodotRuntime.parseString(p_text);const start=p_start>0?p_start:0;const end=p_end>0?p_end:start;GodotDisplayVK.show(text,p_type,start,end)}function _godot_js_display_window_blur_cb(callback){const func=GodotRuntime.get_func(callback);GodotEventListeners.add(window,"blur",function(){func()},false)}function _godot_js_display_window_icon_set(p_ptr,p_len){let link=document.getElementById("-gd-engine-icon");const old_icon=GodotDisplay.window_icon;if(p_ptr){if(link===null){link=document.createElement("link");link.rel="icon";link.id="-gd-engine-icon";document.head.appendChild(link)}const png=new Blob([GodotRuntime.heapSlice(HEAPU8,p_ptr,p_len)],{type:"image/png"});GodotDisplay.window_icon=URL.createObjectURL(png);link.href=GodotDisplay.window_icon}else{if(link){link.remove()}GodotDisplay.window_icon=null}if(old_icon){URL.revokeObjectURL(old_icon)}}function _godot_js_display_window_size_get(p_width,p_height){GodotRuntime.setHeapValue(p_width,GodotConfig.canvas.width,"i32");GodotRuntime.setHeapValue(p_height,GodotConfig.canvas.height,"i32")}function _godot_js_display_window_title_set(p_data){document.title=GodotRuntime.parseString(p_data)}function _godot_js_eval(p_js,p_use_global_ctx,p_union_ptr,p_byte_arr,p_byte_arr_write,p_callback){const js_code=GodotRuntime.parseString(p_js);let eval_ret=null;try{if(p_use_global_ctx){const global_eval=eval;eval_ret=global_eval(js_code)}else{eval_ret=eval(js_code)}}catch(e){GodotRuntime.error(e)}switch(typeof eval_ret){case"boolean":GodotRuntime.setHeapValue(p_union_ptr,eval_ret,"i32");return 1;case"number":GodotRuntime.setHeapValue(p_union_ptr,eval_ret,"double");return 3;case"string":GodotRuntime.setHeapValue(p_union_ptr,GodotRuntime.allocString(eval_ret),"*");return 4;case"object":if(eval_ret===null){break}if(ArrayBuffer.isView(eval_ret)&&!(eval_ret instanceof Uint8Array)){eval_ret=new Uint8Array(eval_ret.buffer)}else if(eval_ret instanceof ArrayBuffer){eval_ret=new Uint8Array(eval_ret)}if(eval_ret instanceof Uint8Array){const func=GodotRuntime.get_func(p_callback);const bytes_ptr=func(p_byte_arr,p_byte_arr_write,eval_ret.length);HEAPU8.set(eval_ret,bytes_ptr);return 29}break}return 0}var IDHandler={_last_id:0,_references:{},get:function(p_id){return IDHandler._references[p_id]},add:function(p_data){const id=++IDHandler._last_id;IDHandler._references[id]=p_data;return id},remove:function(p_id){delete IDHandler._references[p_id]}};var GodotFetch={onread:function(id,result){const obj=IDHandler.get(id);if(!obj){return}if(result.value){obj.chunks.push(result.value)}obj.reading=false;obj.done=result.done},onresponse:function(id,response){const obj=IDHandler.get(id);if(!obj){return}let chunked=false;response.headers.forEach(function(value,header){const v=value.toLowerCase().trim();const h=header.toLowerCase().trim();if(h==="transfer-encoding"&&v==="chunked"){chunked=true}});obj.status=response.status;obj.response=response;obj.reader=response.body?.getReader();obj.chunked=chunked},onerror:function(id,err){GodotRuntime.error(err);const obj=IDHandler.get(id);if(!obj){return}obj.error=err},create:function(method,url,headers,body){const obj={request:null,response:null,reader:null,error:null,done:false,reading:false,status:0,chunks:[]};const id=IDHandler.add(obj);const init={method:method,headers:headers,body:body};obj.request=fetch(url,init);obj.request.then(GodotFetch.onresponse.bind(null,id)).catch(GodotFetch.onerror.bind(null,id));return id},free:function(id){const obj=IDHandler.get(id);if(!obj){return}IDHandler.remove(id);if(!obj.request){return}obj.request.then(function(response){response.abort()}).catch(function(e){})},read:function(id){const obj=IDHandler.get(id);if(!obj){return}if(obj.reader&&!obj.reading){if(obj.done){obj.reader=null;return}obj.reading=true;obj.reader.read().then(GodotFetch.onread.bind(null,id)).catch(GodotFetch.onerror.bind(null,id))}else if(obj.reader==null&&obj.response.body==null){obj.reading=true;GodotFetch.onread(id,{value:undefined,done:true})}}};function _godot_js_fetch_create(p_method,p_url,p_headers,p_headers_size,p_body,p_body_size){const method=GodotRuntime.parseString(p_method);const url=GodotRuntime.parseString(p_url);const headers=GodotRuntime.parseStringArray(p_headers,p_headers_size);const body=p_body_size?GodotRuntime.heapSlice(HEAP8,p_body,p_body_size):null;return GodotFetch.create(method,url,headers.map(function(hv){const idx=hv.indexOf(":");if(idx<=0){return[]}return[hv.slice(0,idx).trim(),hv.slice(idx+1).trim()]}).filter(function(v){return v.length===2}),body)}function _godot_js_fetch_free(id){GodotFetch.free(id)}function _godot_js_fetch_http_status_get(p_id){const obj=IDHandler.get(p_id);if(!obj||!obj.response){return 0}return obj.status}function _godot_js_fetch_is_chunked(p_id){const obj=IDHandler.get(p_id);if(!obj||!obj.response){return-1}return obj.chunked?1:0}function _godot_js_fetch_read_chunk(p_id,p_buf,p_buf_size){const obj=IDHandler.get(p_id);if(!obj||!obj.response){return 0}let to_read=p_buf_size;const chunks=obj.chunks;while(to_read&&chunks.length){const chunk=obj.chunks[0];if(chunk.length>to_read){GodotRuntime.heapCopy(HEAP8,chunk.slice(0,to_read),p_buf);chunks[0]=chunk.slice(to_read);to_read=0}else{GodotRuntime.heapCopy(HEAP8,chunk,p_buf);to_read-=chunk.length;chunks.pop()}}if(!chunks.length){GodotFetch.read(p_id)}return p_buf_size-to_read}function _godot_js_fetch_read_headers(p_id,p_parse_cb,p_ref){const obj=IDHandler.get(p_id);if(!obj||!obj.response){return 1}const cb=GodotRuntime.get_func(p_parse_cb);const arr=[];obj.response.headers.forEach(function(v,h){arr.push(`${h}:${v}`)});const c_ptr=GodotRuntime.allocStringArray(arr);cb(arr.length,c_ptr,p_ref);GodotRuntime.freeStringArray(c_ptr,arr.length);return 0}function _godot_js_fetch_state_get(p_id){const obj=IDHandler.get(p_id);if(!obj){return-1}if(obj.error){return-1}if(!obj.response){return 0}if(obj.reader||obj.response.body==null&&!obj.done){return 1}if(obj.done){return 2}return-1}var GodotInputGamepads={samples:[],get_pads:function(){try{const pads=navigator.getGamepads();if(pads){return pads}return[]}catch(e){return[]}},get_samples:function(){return GodotInputGamepads.samples},get_sample:function(index){const samples=GodotInputGamepads.samples;return index<samples.length?samples[index]:null},sample:function(){const pads=GodotInputGamepads.get_pads();const samples=[];for(let i=0;i<pads.length;i++){const pad=pads[i];if(!pad){samples.push(null);continue}const s={standard:pad.mapping==="standard",buttons:[],axes:[],connected:pad.connected};for(let b=0;b<pad.buttons.length;b++){s.buttons.push(pad.buttons[b].value)}for(let a=0;a<pad.axes.length;a++){s.axes.push(pad.axes[a])}samples.push(s)}GodotInputGamepads.samples=samples},init:function(onchange){GodotInputGamepads.samples=[];function add(pad){const guid=GodotInputGamepads.get_guid(pad);const c_id=GodotRuntime.allocString(pad.id);const c_guid=GodotRuntime.allocString(guid);onchange(pad.index,1,c_id,c_guid);GodotRuntime.free(c_id);GodotRuntime.free(c_guid)}const pads=GodotInputGamepads.get_pads();for(let i=0;i<pads.length;i++){if(pads[i]){add(pads[i])}}GodotEventListeners.add(window,"gamepadconnected",function(evt){if(evt.gamepad){add(evt.gamepad)}},false);GodotEventListeners.add(window,"gamepaddisconnected",function(evt){if(evt.gamepad){onchange(evt.gamepad.index,0)}},false)},get_guid:function(pad){if(pad.mapping){return pad.mapping}const ua=navigator.userAgent;let os="Unknown";if(ua.indexOf("Android")>=0){os="Android"}else if(ua.indexOf("Linux")>=0){os="Linux"}else if(ua.indexOf("iPhone")>=0){os="iOS"}else if(ua.indexOf("Macintosh")>=0){os="MacOSX"}else if(ua.indexOf("Windows")>=0){os="Windows"}const id=pad.id;const exp1=/vendor: ([0-9a-f]{4}) product: ([0-9a-f]{4})/i;const exp2=/^([0-9a-f]+)-([0-9a-f]+)-/i;let vendor="";let product="";if(exp1.test(id)){const match=exp1.exec(id);vendor=match[1].padStart(4,"0");product=match[2].padStart(4,"0")}else if(exp2.test(id)){const match=exp2.exec(id);vendor=match[1].padStart(4,"0");product=match[2].padStart(4,"0")}if(!vendor||!product){return`${os}Unknown`}return os+vendor+product}};var GodotInputDragDrop={promises:[],pending_files:[],add_entry:function(entry){if(entry.isDirectory){GodotInputDragDrop.add_dir(entry)}else if(entry.isFile){GodotInputDragDrop.add_file(entry)}else{GodotRuntime.error("Unrecognized entry...",entry)}},add_dir:function(entry){GodotInputDragDrop.promises.push(new Promise(function(resolve,reject){const reader=entry.createReader();reader.readEntries(function(entries){for(let i=0;i<entries.length;i++){GodotInputDragDrop.add_entry(entries[i])}resolve()})}))},add_file:function(entry){GodotInputDragDrop.promises.push(new Promise(function(resolve,reject){entry.file(function(file){const reader=new FileReader;reader.onload=function(){const f={path:file.relativePath||file.webkitRelativePath,name:file.name,type:file.type,size:file.size,data:reader.result};if(!f["path"]){f["path"]=f["name"]}GodotInputDragDrop.pending_files.push(f);resolve()};reader.onerror=function(){GodotRuntime.print("Error reading file");reject()};reader.readAsArrayBuffer(file)},function(err){GodotRuntime.print("Error!");reject()})}))},process:function(resolve,reject){if(GodotInputDragDrop.promises.length===0){resolve();return}GodotInputDragDrop.promises.pop().then(function(){setTimeout(function(){GodotInputDragDrop.process(resolve,reject)},0)})},_process_event:function(ev,callback){ev.preventDefault();if(ev.dataTransfer.items){for(let i=0;i<ev.dataTransfer.items.length;i++){const item=ev.dataTransfer.items[i];let entry=null;if("getAsEntry"in item){entry=item.getAsEntry()}else if("webkitGetAsEntry"in item){entry=item.webkitGetAsEntry()}if(entry){GodotInputDragDrop.add_entry(entry)}}}else{GodotRuntime.error("File upload not supported")}new Promise(GodotInputDragDrop.process).then(function(){const DROP=`/tmp/drop-${parseInt(Math.random()*(1<<30),10)}/`;const drops=[];const files=[];FS.mkdir(DROP.slice(0,-1));GodotInputDragDrop.pending_files.forEach(elem=>{const path=elem["path"];GodotFS.copy_to_fs(DROP+path,elem["data"]);let idx=path.indexOf("/");if(idx===-1){drops.push(DROP+path)}else{const sub=path.substr(0,idx);idx=sub.indexOf("/");if(idx<0&&drops.indexOf(DROP+sub)===-1){drops.push(DROP+sub)}}files.push(DROP+path)});GodotInputDragDrop.promises=[];GodotInputDragDrop.pending_files=[];callback(drops);if(GodotConfig.persistent_drops){GodotOS.atexit(function(resolve,reject){GodotInputDragDrop.remove_drop(files,DROP);resolve()})}else{GodotInputDragDrop.remove_drop(files,DROP)}})},remove_drop:function(files,drop_path){const dirs=[drop_path.substr(0,drop_path.length-1)];files.forEach(function(file){FS.unlink(file);let dir=file.replace(drop_path,"");let idx=dir.lastIndexOf("/");while(idx>0){dir=dir.substr(0,idx);if(dirs.indexOf(drop_path+dir)===-1){dirs.push(drop_path+dir)}idx=dir.lastIndexOf("/")}});dirs.sort(function(a,b){const al=(a.match(/\//g)||[]).length;const bl=(b.match(/\//g)||[]).length;if(al>bl){return-1}else if(al<bl){return 1}return 0}).forEach(function(dir){FS.rmdir(dir)})},handler:function(callback){return function(ev){GodotInputDragDrop._process_event(ev,callback)}}};var GodotIME={ime:null,active:false,focusTimerIntervalId:-1,getModifiers:function(evt){return evt.shiftKey+0+(evt.altKey+0<<1)+(evt.ctrlKey+0<<2)+(evt.metaKey+0<<3)},ime_active:function(active){function clearFocusTimerInterval(){clearInterval(GodotIME.focusTimerIntervalId);GodotIME.focusTimerIntervalId=-1}function focusTimer(){if(GodotIME.ime==null){clearFocusTimerInterval();return}GodotIME.ime.focus()}if(GodotIME.focusTimerIntervalId>-1){clearFocusTimerInterval()}if(GodotIME.ime==null){return}GodotIME.active=active;if(active){GodotIME.ime.style.display="block";GodotIME.focusTimerIntervalId=setInterval(focusTimer,100)}else{GodotIME.ime.style.display="none";GodotConfig.canvas.focus()}},ime_position:function(x,y){if(GodotIME.ime==null){return}const canvas=GodotConfig.canvas;const rect=canvas.getBoundingClientRect();const rw=canvas.width/rect.width;const rh=canvas.height/rect.height;const clx=x/rw+rect.x;const cly=y/rh+rect.y;GodotIME.ime.style.left=`${clx}px`;GodotIME.ime.style.top=`${cly}px`},init:function(ime_cb,key_cb,code,key){function key_event_cb(pressed,evt){const modifiers=GodotIME.getModifiers(evt);GodotRuntime.stringToHeap(evt.code,code,32);GodotRuntime.stringToHeap(evt.key,key,32);key_cb(pressed,evt.repeat,modifiers);evt.preventDefault()}function ime_event_cb(event){if(GodotIME.ime==null){return}switch(event.type){case"compositionstart":ime_cb(0,null);GodotIME.ime.innerHTML="";break;case"compositionupdate":{const ptr=GodotRuntime.allocString(event.data);ime_cb(1,ptr);GodotRuntime.free(ptr)}break;case"compositionend":{const ptr=GodotRuntime.allocString(event.data);ime_cb(2,ptr);GodotRuntime.free(ptr);GodotIME.ime.innerHTML=""}break;default:}}const ime=document.createElement("div");ime.className="ime";ime.style.background="none";ime.style.opacity=0;ime.style.position="fixed";ime.style.textAlign="left";ime.style.fontSize="1px";ime.style.left="0px";ime.style.top="0px";ime.style.width="100%";ime.style.height="40px";ime.style.pointerEvents="none";ime.style.display="none";ime.contentEditable="true";GodotEventListeners.add(ime,"compositionstart",ime_event_cb,false);GodotEventListeners.add(ime,"compositionupdate",ime_event_cb,false);GodotEventListeners.add(ime,"compositionend",ime_event_cb,false);GodotEventListeners.add(ime,"keydown",key_event_cb.bind(null,1),false);GodotEventListeners.add(ime,"keyup",key_event_cb.bind(null,0),false);ime.onblur=function(){this.style.display="none";GodotConfig.canvas.focus();GodotIME.active=false};GodotConfig.canvas.parentElement.appendChild(ime);GodotIME.ime=ime},clear:function(){if(GodotIME.ime==null){return}if(GodotIME.focusTimerIntervalId>-1){clearInterval(GodotIME.focusTimerIntervalId);GodotIME.focusTimerIntervalId=-1}GodotIME.ime.remove();GodotIME.ime=null}};var GodotInput={getModifiers:function(evt){return evt.shiftKey+0+(evt.altKey+0<<1)+(evt.ctrlKey+0<<2)+(evt.metaKey+0<<3)},computePosition:function(evt,rect){const canvas=GodotConfig.canvas;const rw=canvas.width/rect.width;const rh=canvas.height/rect.height;const x=(evt.clientX-rect.x)*rw;const y=(evt.clientY-rect.y)*rh;return[x,y]}};function _godot_js_input_drop_files_cb(callback){const func=GodotRuntime.get_func(callback);const dropFiles=function(files){const args=files||[];if(!args.length){return}const argc=args.length;const argv=GodotRuntime.allocStringArray(args);func(argv,argc);GodotRuntime.freeStringArray(argv,argc)};const canvas=GodotConfig.canvas;GodotEventListeners.add(canvas,"dragover",function(ev){ev.preventDefault()},false);GodotEventListeners.add(canvas,"drop",GodotInputDragDrop.handler(dropFiles))}function _godot_js_input_gamepad_cb(change_cb){const onchange=GodotRuntime.get_func(change_cb);GodotInputGamepads.init(onchange)}function _godot_js_input_gamepad_sample(){GodotInputGamepads.sample();return 0}function _godot_js_input_gamepad_sample_count(){return GodotInputGamepads.get_samples().length}function _godot_js_input_gamepad_sample_get(p_index,r_btns,r_btns_num,r_axes,r_axes_num,r_standard){const sample=GodotInputGamepads.get_sample(p_index);if(!sample||!sample.connected){return 1}const btns=sample.buttons;const btns_len=btns.length<16?btns.length:16;for(let i=0;i<btns_len;i++){GodotRuntime.setHeapValue(r_btns+(i<<2),btns[i],"float")}GodotRuntime.setHeapValue(r_btns_num,btns_len,"i32");const axes=sample.axes;const axes_len=axes.length<10?axes.length:10;for(let i=0;i<axes_len;i++){GodotRuntime.setHeapValue(r_axes+(i<<2),axes[i],"float")}GodotRuntime.setHeapValue(r_axes_num,axes_len,"i32");const is_standard=sample.standard?1:0;GodotRuntime.setHeapValue(r_standard,is_standard,"i32");return 0}function _godot_js_input_key_cb(callback,code,key){const func=GodotRuntime.get_func(callback);function key_cb(pressed,evt){const modifiers=GodotInput.getModifiers(evt);GodotRuntime.stringToHeap(evt.code,code,32);GodotRuntime.stringToHeap(evt.key,key,32);func(pressed,evt.repeat,modifiers);evt.preventDefault()}GodotEventListeners.add(GodotConfig.canvas,"keydown",key_cb.bind(null,1),false);GodotEventListeners.add(GodotConfig.canvas,"keyup",key_cb.bind(null,0),false)}function _godot_js_input_mouse_button_cb(callback){const func=GodotRuntime.get_func(callback);const canvas=GodotConfig.canvas;function button_cb(p_pressed,evt){const rect=canvas.getBoundingClientRect();const pos=GodotInput.computePosition(evt,rect);const modifiers=GodotInput.getModifiers(evt);if(p_pressed){GodotConfig.canvas.focus()}if(func(p_pressed,evt.button,pos[0],pos[1],modifiers)){evt.preventDefault()}}GodotEventListeners.add(canvas,"mousedown",button_cb.bind(null,1),false);GodotEventListeners.add(window,"mouseup",button_cb.bind(null,0),false)}function _godot_js_input_mouse_move_cb(callback){const func=GodotRuntime.get_func(callback);const canvas=GodotConfig.canvas;function move_cb(evt){const rect=canvas.getBoundingClientRect();const pos=GodotInput.computePosition(evt,rect);const rw=canvas.width/rect.width;const rh=canvas.height/rect.height;const rel_pos_x=evt.movementX*rw;const rel_pos_y=evt.movementY*rh;const modifiers=GodotInput.getModifiers(evt);func(pos[0],pos[1],rel_pos_x,rel_pos_y,modifiers)}GodotEventListeners.add(window,"mousemove",move_cb,false)}function _godot_js_input_mouse_wheel_cb(callback){const func=GodotRuntime.get_func(callback);function wheel_cb(evt){if(func(evt["deltaX"]||0,evt["deltaY"]||0)){evt.preventDefault()}}GodotEventListeners.add(GodotConfig.canvas,"wheel",wheel_cb,false)}function _godot_js_input_paste_cb(callback){const func=GodotRuntime.get_func(callback);GodotEventListeners.add(window,"paste",function(evt){const text=evt.clipboardData.getData("text");const ptr=GodotRuntime.allocString(text);func(ptr);GodotRuntime.free(ptr)},false)}function _godot_js_input_touch_cb(callback,ids,coords){const func=GodotRuntime.get_func(callback);const canvas=GodotConfig.canvas;function touch_cb(type,evt){if(type===0){GodotConfig.canvas.focus()}const rect=canvas.getBoundingClientRect();const touches=evt.changedTouches;for(let i=0;i<touches.length;i++){const touch=touches[i];const pos=GodotInput.computePosition(touch,rect);GodotRuntime.setHeapValue(coords+i*2*8,pos[0],"double");GodotRuntime.setHeapValue(coords+(i*2+1)*8,pos[1],"double");GodotRuntime.setHeapValue(ids+i*4,touch.identifier,"i32")}func(type,touches.length);if(evt.cancelable){evt.preventDefault()}}GodotEventListeners.add(canvas,"touchstart",touch_cb.bind(null,0),false);GodotEventListeners.add(canvas,"touchend",touch_cb.bind(null,1),false);GodotEventListeners.add(canvas,"touchcancel",touch_cb.bind(null,1),false);GodotEventListeners.add(canvas,"touchmove",touch_cb.bind(null,2),false)}function _godot_js_input_vibrate_handheld(p_duration_ms){if(typeof navigator.vibrate!=="function"){GodotRuntime.print("This browser does not support vibration.")}else{navigator.vibrate(p_duration_ms)}}function _godot_js_is_ime_focused(){return GodotIME.active}function _godot_js_os_download_buffer(p_ptr,p_size,p_name,p_mime){const buf=GodotRuntime.heapSlice(HEAP8,p_ptr,p_size);const name=GodotRuntime.parseString(p_name);const mime=GodotRuntime.parseString(p_mime);const blob=new Blob([buf],{type:mime});const url=window.URL.createObjectURL(blob);const a=document.createElement("a");a.href=url;a.download=name;a.style.display="none";document.body.appendChild(a);a.click();a.remove();window.URL.revokeObjectURL(url)}function _godot_js_os_execute(p_json){const json_args=GodotRuntime.parseString(p_json);const args=JSON.parse(json_args);if(GodotConfig.on_execute){GodotConfig.on_execute(args);return 0}return 1}function _godot_js_os_finish_async(p_callback){const func=GodotRuntime.get_func(p_callback);GodotOS.finish_async(func)}function _godot_js_os_fs_is_persistent(){return GodotFS.is_persistent()}function _godot_js_os_fs_sync(callback){const func=GodotRuntime.get_func(callback);GodotOS._fs_sync_promise=GodotFS.sync();GodotOS._fs_sync_promise.then(function(err){func()})}function _godot_js_os_has_feature(p_ftr){const ftr=GodotRuntime.parseString(p_ftr);const ua=navigator.userAgent;if(ftr==="web_macos"){return ua.indexOf("Mac")!==-1?1:0}if(ftr==="web_windows"){return ua.indexOf("Windows")!==-1?1:0}if(ftr==="web_android"){return ua.indexOf("Android")!==-1?1:0}if(ftr==="web_ios"){return ua.indexOf("iPhone")!==-1||ua.indexOf("iPad")!==-1||ua.indexOf("iPod")!==-1?1:0}if(ftr==="web_linuxbsd"){return ua.indexOf("CrOS")!==-1||ua.indexOf("BSD")!==-1||ua.indexOf("Linux")!==-1||ua.indexOf("X11")!==-1?1:0}return 0}function _godot_js_os_hw_concurrency_get(){const concurrency=navigator.hardwareConcurrency||1;return concurrency<2?concurrency:2}function _godot_js_os_request_quit_cb(p_callback){GodotOS.request_quit=GodotRuntime.get_func(p_callback)}function _godot_js_os_shell_open(p_uri){window.open(GodotRuntime.parseString(p_uri),"_blank")}var GodotPWA={hasUpdate:false,updateState:function(cb,reg){if(!reg){return}if(!reg.active){return}if(reg.waiting){GodotPWA.hasUpdate=true;cb()}GodotEventListeners.add(reg,"updatefound",function(){const installing=reg.installing;GodotEventListeners.add(installing,"statechange",function(){if(installing.state==="installed"){GodotPWA.hasUpdate=true;cb()}})})}};function _godot_js_pwa_cb(p_update_cb){if("serviceWorker"in navigator){try{const cb=GodotRuntime.get_func(p_update_cb);navigator.serviceWorker.getRegistration().then(GodotPWA.updateState.bind(null,cb))}catch(e){GodotRuntime.error("Failed to assign PWA callback",e)}}}function _godot_js_pwa_update(){if("serviceWorker"in navigator&&GodotPWA.hasUpdate){try{navigator.serviceWorker.getRegistration().then(function(reg){if(!reg||!reg.waiting){return}reg.waiting.postMessage("update")})}catch(e){GodotRuntime.error(e);return 1}return 0}return 1}var GodotRTCDataChannel={connect:function(p_id,p_on_open,p_on_message,p_on_error,p_on_close){const ref=IDHandler.get(p_id);if(!ref){return}ref.binaryType="arraybuffer";ref.onopen=function(event){p_on_open()};ref.onclose=function(event){p_on_close()};ref.onerror=function(event){p_on_error()};ref.onmessage=function(event){let buffer;let is_string=0;if(event.data instanceof ArrayBuffer){buffer=new Uint8Array(event.data)}else if(event.data instanceof Blob){GodotRuntime.error("Blob type not supported");return}else if(typeof event.data==="string"){is_string=1;const enc=new TextEncoder("utf-8");buffer=new Uint8Array(enc.encode(event.data))}else{GodotRuntime.error("Unknown message type");return}const len=buffer.length*buffer.BYTES_PER_ELEMENT;const out=GodotRuntime.malloc(len);HEAPU8.set(buffer,out);p_on_message(out,len,is_string);GodotRuntime.free(out)}},close:function(p_id){const ref=IDHandler.get(p_id);if(!ref){return}ref.onopen=null;ref.onmessage=null;ref.onerror=null;ref.onclose=null;ref.close()},get_prop:function(p_id,p_prop,p_def){const ref=IDHandler.get(p_id);return ref&&ref[p_prop]!==undefined?ref[p_prop]:p_def}};function _godot_js_rtc_datachannel_close(p_id){const ref=IDHandler.get(p_id);if(!ref){return}GodotRTCDataChannel.close(p_id)}function _godot_js_rtc_datachannel_connect(p_id,p_ref,p_on_open,p_on_message,p_on_error,p_on_close){const onopen=GodotRuntime.get_func(p_on_open).bind(null,p_ref);const onmessage=GodotRuntime.get_func(p_on_message).bind(null,p_ref);const onerror=GodotRuntime.get_func(p_on_error).bind(null,p_ref);const onclose=GodotRuntime.get_func(p_on_close).bind(null,p_ref);GodotRTCDataChannel.connect(p_id,onopen,onmessage,onerror,onclose)}function _godot_js_rtc_datachannel_destroy(p_id){GodotRTCDataChannel.close(p_id);IDHandler.remove(p_id)}function _godot_js_rtc_datachannel_get_buffered_amount(p_id){return GodotRTCDataChannel.get_prop(p_id,"bufferedAmount",0)}function _godot_js_rtc_datachannel_id_get(p_id){return GodotRTCDataChannel.get_prop(p_id,"id",65535)}function _godot_js_rtc_datachannel_is_negotiated(p_id){return GodotRTCDataChannel.get_prop(p_id,"negotiated",65535)}function _godot_js_rtc_datachannel_is_ordered(p_id){return GodotRTCDataChannel.get_prop(p_id,"ordered",true)}function _godot_js_rtc_datachannel_label_get(p_id){const ref=IDHandler.get(p_id);if(!ref||!ref.label){return 0}return GodotRuntime.allocString(ref.label)}function _godot_js_rtc_datachannel_max_packet_lifetime_get(p_id){const ref=IDHandler.get(p_id);if(!ref){return 65535}if(ref["maxPacketLifeTime"]!==undefined){return ref["maxPacketLifeTime"]}else if(ref["maxRetransmitTime"]!==undefined){return ref["maxRetransmitTime"]}return 65535}function _godot_js_rtc_datachannel_max_retransmits_get(p_id){return GodotRTCDataChannel.get_prop(p_id,"maxRetransmits",65535)}function _godot_js_rtc_datachannel_protocol_get(p_id){const ref=IDHandler.get(p_id);if(!ref||!ref.protocol){return 0}return GodotRuntime.allocString(ref.protocol)}function _godot_js_rtc_datachannel_ready_state_get(p_id){const ref=IDHandler.get(p_id);if(!ref){return 3}switch(ref.readyState){case"connecting":return 0;case"open":return 1;case"closing":return 2;case"closed":default:return 3}}function _godot_js_rtc_datachannel_send(p_id,p_buffer,p_length,p_raw){const ref=IDHandler.get(p_id);if(!ref){return 1}const bytes_array=new Uint8Array(p_length);for(let i=0;i<p_length;i++){bytes_array[i]=GodotRuntime.getHeapValue(p_buffer+i,"i8")}if(p_raw){ref.send(bytes_array.buffer)}else{const string=new TextDecoder("utf-8").decode(bytes_array);ref.send(string)}return 0}var GodotRTCPeerConnection={ConnectionState:{new:0,connecting:1,connected:2,disconnected:3,failed:4,closed:5},ConnectionStateCompat:{new:0,checking:1,connected:2,completed:2,disconnected:3,failed:4,closed:5},IceGatheringState:{new:0,gathering:1,complete:2},SignalingState:{stable:0,"have-local-offer":1,"have-remote-offer":2,"have-local-pranswer":3,"have-remote-pranswer":4,closed:5},create:function(config,onConnectionChange,onSignalingChange,onIceGatheringChange,onIceCandidate,onDataChannel){let conn=null;try{conn=new RTCPeerConnection(config)}catch(e){GodotRuntime.error(e);return 0}const id=IDHandler.add(conn);if("connectionState"in conn&&conn["connectionState"]!==undefined){conn.onconnectionstatechange=function(event){if(!IDHandler.get(id)){return}onConnectionChange(GodotRTCPeerConnection.ConnectionState[conn.connectionState]||0)}}else{conn.oniceconnectionstatechange=function(event){if(!IDHandler.get(id)){return}onConnectionChange(GodotRTCPeerConnection.ConnectionStateCompat[conn.iceConnectionState]||0)}}conn.onicegatheringstatechange=function(event){if(!IDHandler.get(id)){return}onIceGatheringChange(GodotRTCPeerConnection.IceGatheringState[conn.iceGatheringState]||0)};conn.onsignalingstatechange=function(event){if(!IDHandler.get(id)){return}onSignalingChange(GodotRTCPeerConnection.SignalingState[conn.signalingState]||0)};conn.onicecandidate=function(event){if(!IDHandler.get(id)){return}const c=event.candidate;if(!c||!c.candidate){return}const candidate_str=GodotRuntime.allocString(c.candidate);const mid_str=GodotRuntime.allocString(c.sdpMid);onIceCandidate(mid_str,c.sdpMLineIndex,candidate_str);GodotRuntime.free(candidate_str);GodotRuntime.free(mid_str)};conn.ondatachannel=function(event){if(!IDHandler.get(id)){return}const cid=IDHandler.add(event.channel);onDataChannel(cid)};return id},destroy:function(p_id){const conn=IDHandler.get(p_id);if(!conn){return}conn.onconnectionstatechange=null;conn.oniceconnectionstatechange=null;conn.onicegatheringstatechange=null;conn.onsignalingstatechange=null;conn.onicecandidate=null;conn.ondatachannel=null;IDHandler.remove(p_id)},onsession:function(p_id,callback,session){if(!IDHandler.get(p_id)){return}const type_str=GodotRuntime.allocString(session.type);const sdp_str=GodotRuntime.allocString(session.sdp);callback(type_str,sdp_str);GodotRuntime.free(type_str);GodotRuntime.free(sdp_str)},onerror:function(p_id,callback,error){const ref=IDHandler.get(p_id);if(!ref){return}GodotRuntime.error(error);callback()}};function _godot_js_rtc_pc_close(p_id){const ref=IDHandler.get(p_id);if(!ref){return}ref.close()}function _godot_js_rtc_pc_create(p_config,p_ref,p_on_connection_state_change,p_on_ice_gathering_state_change,p_on_signaling_state_change,p_on_ice_candidate,p_on_datachannel){const wrap=function(p_func){return GodotRuntime.get_func(p_func).bind(null,p_ref)};return GodotRTCPeerConnection.create(JSON.parse(GodotRuntime.parseString(p_config)),wrap(p_on_connection_state_change),wrap(p_on_signaling_state_change),wrap(p_on_ice_gathering_state_change),wrap(p_on_ice_candidate),wrap(p_on_datachannel))}function _godot_js_rtc_pc_datachannel_create(p_id,p_label,p_config){try{const ref=IDHandler.get(p_id);if(!ref){return 0}const label=GodotRuntime.parseString(p_label);const config=JSON.parse(GodotRuntime.parseString(p_config));const channel=ref.createDataChannel(label,config);return IDHandler.add(channel)}catch(e){GodotRuntime.error(e);return 0}}function _godot_js_rtc_pc_destroy(p_id){GodotRTCPeerConnection.destroy(p_id)}function _godot_js_rtc_pc_ice_candidate_add(p_id,p_mid_name,p_mline_idx,p_sdp){const ref=IDHandler.get(p_id);if(!ref){return}const sdpMidName=GodotRuntime.parseString(p_mid_name);const sdpName=GodotRuntime.parseString(p_sdp);ref.addIceCandidate(new RTCIceCandidate({candidate:sdpName,sdpMid:sdpMidName,sdpMlineIndex:p_mline_idx}))}function _godot_js_rtc_pc_local_description_set(p_id,p_type,p_sdp,p_obj,p_on_error){const ref=IDHandler.get(p_id);if(!ref){return}const type=GodotRuntime.parseString(p_type);const sdp=GodotRuntime.parseString(p_sdp);const onerror=GodotRuntime.get_func(p_on_error).bind(null,p_obj);ref.setLocalDescription({sdp:sdp,type:type}).catch(function(error){GodotRTCPeerConnection.onerror(p_id,onerror,error)})}function _godot_js_rtc_pc_offer_create(p_id,p_obj,p_on_session,p_on_error){const ref=IDHandler.get(p_id);if(!ref){return}const onsession=GodotRuntime.get_func(p_on_session).bind(null,p_obj);const onerror=GodotRuntime.get_func(p_on_error).bind(null,p_obj);ref.createOffer().then(function(session){GodotRTCPeerConnection.onsession(p_id,onsession,session)}).catch(function(error){GodotRTCPeerConnection.onerror(p_id,onerror,error)})}function _godot_js_rtc_pc_remote_description_set(p_id,p_type,p_sdp,p_obj,p_session_created,p_on_error){const ref=IDHandler.get(p_id);if(!ref){return}const type=GodotRuntime.parseString(p_type);const sdp=GodotRuntime.parseString(p_sdp);const onerror=GodotRuntime.get_func(p_on_error).bind(null,p_obj);const onsession=GodotRuntime.get_func(p_session_created).bind(null,p_obj);ref.setRemoteDescription({sdp:sdp,type:type}).then(function(){if(type!=="offer"){return Promise.resolve()}return ref.createAnswer().then(function(session){GodotRTCPeerConnection.onsession(p_id,onsession,session)})}).catch(function(error){GodotRTCPeerConnection.onerror(p_id,onerror,error)})}function _godot_js_set_ime_active(p_active){GodotIME.ime_active(p_active)}function _godot_js_set_ime_cb(p_ime_cb,p_key_cb,code,key){const ime_cb=GodotRuntime.get_func(p_ime_cb);const key_cb=GodotRuntime.get_func(p_key_cb);GodotIME.init(ime_cb,key_cb,code,key)}function _godot_js_set_ime_position(p_x,p_y){GodotIME.ime_position(p_x,p_y)}function _godot_js_tts_get_voices(p_callback){const func=GodotRuntime.get_func(p_callback);try{const arr=[];const voices=window.speechSynthesis.getVoices();for(let i=0;i<voices.length;i++){arr.push(`${voices[i].lang};${voices[i].name}`)}const c_ptr=GodotRuntime.allocStringArray(arr);func(arr.length,c_ptr);GodotRuntime.freeStringArray(c_ptr,arr.length)}catch(e){}}function _godot_js_tts_is_paused(){return window.speechSynthesis.paused}function _godot_js_tts_is_speaking(){return window.speechSynthesis.speaking}function _godot_js_tts_pause(){window.speechSynthesis.pause()}function _godot_js_tts_resume(){window.speechSynthesis.resume()}function _godot_js_tts_speak(p_text,p_voice,p_volume,p_pitch,p_rate,p_utterance_id,p_callback){const func=GodotRuntime.get_func(p_callback);function listener_end(evt){evt.currentTarget.cb(1,evt.currentTarget.id,0)}function listener_start(evt){evt.currentTarget.cb(0,evt.currentTarget.id,0)}function listener_error(evt){evt.currentTarget.cb(2,evt.currentTarget.id,0)}function listener_bound(evt){evt.currentTarget.cb(3,evt.currentTarget.id,evt.charIndex)}const utterance=new SpeechSynthesisUtterance(GodotRuntime.parseString(p_text));utterance.rate=p_rate;utterance.pitch=p_pitch;utterance.volume=p_volume/100;utterance.addEventListener("end",listener_end);utterance.addEventListener("start",listener_start);utterance.addEventListener("error",listener_error);utterance.addEventListener("boundary",listener_bound);utterance.id=p_utterance_id;utterance.cb=func;const voice=GodotRuntime.parseString(p_voice);const voices=window.speechSynthesis.getVoices();for(let i=0;i<voices.length;i++){if(voices[i].name===voice){utterance.voice=voices[i];break}}window.speechSynthesis.resume();window.speechSynthesis.speak(utterance)}function _godot_js_tts_stop(){window.speechSynthesis.cancel();window.speechSynthesis.resume()}var GodotWebMidi={abortControllers:[],isListening:false};function _godot_js_webmidi_close_midi_inputs(){for(const abortController of GodotWebMidi.abortControllers){abortController.abort()}GodotWebMidi.abortControllers=[];GodotWebMidi.isListening=false}function _godot_js_webmidi_open_midi_inputs(pSetInputNamesCb,pOnMidiMessageCb,pDataBuffer,dataBufferLen){if(GodotWebMidi.is_listening){return 0}if(!navigator.requestMIDIAccess){return 2}const setInputNamesCb=GodotRuntime.get_func(pSetInputNamesCb);const onMidiMessageCb=GodotRuntime.get_func(pOnMidiMessageCb);GodotWebMidi.isListening=true;navigator.requestMIDIAccess().then(midi=>{const inputs=[...midi.inputs.values()];const inputNames=inputs.map(input=>input.name);const c_ptr=GodotRuntime.allocStringArray(inputNames);setInputNamesCb(inputNames.length,c_ptr);GodotRuntime.freeStringArray(c_ptr,inputNames.length);inputs.forEach((input,i)=>{const abortController=new AbortController;GodotWebMidi.abortControllers.push(abortController);input.addEventListener("midimessage",event=>{const status=event.data[0];const data=event.data.slice(1);const size=data.length;if(size>dataBufferLen){throw new Error(`data too big ${size} > ${dataBufferLen}`)}HEAPU8.set(data,pDataBuffer);onMidiMessageCb(i,status,pDataBuffer,data.length)},{signal:abortController.signal})})});return 0}var GodotWebSocket={_onopen:function(p_id,callback,event){const ref=IDHandler.get(p_id);if(!ref){return}const c_str=GodotRuntime.allocString(ref.protocol);callback(c_str);GodotRuntime.free(c_str)},_onmessage:function(p_id,callback,event){const ref=IDHandler.get(p_id);if(!ref){return}let buffer;let is_string=0;if(event.data instanceof ArrayBuffer){buffer=new Uint8Array(event.data)}else if(event.data instanceof Blob){GodotRuntime.error("Blob type not supported");return}else if(typeof event.data==="string"){is_string=1;const enc=new TextEncoder("utf-8");buffer=new Uint8Array(enc.encode(event.data))}else{GodotRuntime.error("Unknown message type");return}const len=buffer.length*buffer.BYTES_PER_ELEMENT;const out=GodotRuntime.malloc(len);HEAPU8.set(buffer,out);callback(out,len,is_string);GodotRuntime.free(out)},_onerror:function(p_id,callback,event){const ref=IDHandler.get(p_id);if(!ref){return}callback()},_onclose:function(p_id,callback,event){const ref=IDHandler.get(p_id);if(!ref){return}const c_str=GodotRuntime.allocString(event.reason);callback(event.code,c_str,event.wasClean?1:0);GodotRuntime.free(c_str)},send:function(p_id,p_data){const ref=IDHandler.get(p_id);if(!ref||ref.readyState!==ref.OPEN){return 1}ref.send(p_data);return 0},bufferedAmount:function(p_id){const ref=IDHandler.get(p_id);if(!ref){return 0}return ref.bufferedAmount},create:function(socket,p_on_open,p_on_message,p_on_error,p_on_close){const id=IDHandler.add(socket);socket.onopen=GodotWebSocket._onopen.bind(null,id,p_on_open);socket.onmessage=GodotWebSocket._onmessage.bind(null,id,p_on_message);socket.onerror=GodotWebSocket._onerror.bind(null,id,p_on_error);socket.onclose=GodotWebSocket._onclose.bind(null,id,p_on_close);return id},close:function(p_id,p_code,p_reason){const ref=IDHandler.get(p_id);if(ref&&ref.readyState<ref.CLOSING){const code=p_code;const reason=p_reason;ref.close(code,reason)}},destroy:function(p_id){const ref=IDHandler.get(p_id);if(!ref){return}GodotWebSocket.close(p_id,3001,"destroyed");IDHandler.remove(p_id);ref.onopen=null;ref.onmessage=null;ref.onerror=null;ref.onclose=null}};function _godot_js_websocket_buffered_amount(p_id){return GodotWebSocket.bufferedAmount(p_id)}function _godot_js_websocket_close(p_id,p_code,p_reason){const code=p_code;const reason=GodotRuntime.parseString(p_reason);GodotWebSocket.close(p_id,code,reason)}function _godot_js_websocket_create(p_ref,p_url,p_proto,p_on_open,p_on_message,p_on_error,p_on_close){const on_open=GodotRuntime.get_func(p_on_open).bind(null,p_ref);const on_message=GodotRuntime.get_func(p_on_message).bind(null,p_ref);const on_error=GodotRuntime.get_func(p_on_error).bind(null,p_ref);const on_close=GodotRuntime.get_func(p_on_close).bind(null,p_ref);const url=GodotRuntime.parseString(p_url);const protos=GodotRuntime.parseString(p_proto);let socket=null;try{if(protos){socket=new WebSocket(url,protos.split(","))}else{socket=new WebSocket(url)}}catch(e){return 0}socket.binaryType="arraybuffer";return GodotWebSocket.create(socket,on_open,on_message,on_error,on_close)}function _godot_js_websocket_destroy(p_id){GodotWebSocket.destroy(p_id)}function _godot_js_websocket_send(p_id,p_buf,p_buf_len,p_raw){const bytes_array=new Uint8Array(p_buf_len);let i=0;for(i=0;i<p_buf_len;i++){bytes_array[i]=GodotRuntime.getHeapValue(p_buf+i,"i8")}let out=bytes_array.buffer;if(!p_raw){out=new TextDecoder("utf-8").decode(bytes_array)}return GodotWebSocket.send(p_id,out)}var GodotJSWrapper={proxies:null,cb_ret:null,MyProxy:function(val){const id=IDHandler.add(this);GodotJSWrapper.proxies.set(val,id);let refs=1;this.ref=function(){refs++};this.unref=function(){refs--;if(refs===0){IDHandler.remove(id);GodotJSWrapper.proxies.delete(val)}};this.get_val=function(){return val};this.get_id=function(){return id}},get_proxied:function(val){const id=GodotJSWrapper.proxies.get(val);if(id===undefined){const proxy=new GodotJSWrapper.MyProxy(val);return proxy.get_id()}IDHandler.get(id).ref();return id},get_proxied_value:function(id){const proxy=IDHandler.get(id);if(proxy===undefined){return undefined}return proxy.get_val()},variant2js:function(type,val){switch(type){case 0:return null;case 1:return Boolean(GodotRuntime.getHeapValue(val,"i64"));case 2:{const heap_value=GodotRuntime.getHeapValue(val,"i64");return heap_value>=Number.MIN_SAFE_INTEGER&&heap_value<=Number.MAX_SAFE_INTEGER?Number(heap_value):heap_value}case 3:return Number(GodotRuntime.getHeapValue(val,"double"));case 4:return GodotRuntime.parseString(GodotRuntime.getHeapValue(val,"*"));case 24:return GodotJSWrapper.get_proxied_value(GodotRuntime.getHeapValue(val,"i64"));default:return undefined}},js2variant:function(p_val,p_exchange){if(p_val===undefined||p_val===null){return 0}const type=typeof p_val;if(type==="boolean"){GodotRuntime.setHeapValue(p_exchange,p_val,"i64");return 1}else if(type==="number"){if(Number.isInteger(p_val)){GodotRuntime.setHeapValue(p_exchange,p_val,"i64");return 2}GodotRuntime.setHeapValue(p_exchange,p_val,"double");return 3}else if(type==="bigint"){GodotRuntime.setHeapValue(p_exchange,p_val,"i64");return 2}else if(type==="string"){const c_str=GodotRuntime.allocString(p_val);GodotRuntime.setHeapValue(p_exchange,c_str,"*");return 4}const id=GodotJSWrapper.get_proxied(p_val);GodotRuntime.setHeapValue(p_exchange,id,"i64");return 24},isBuffer:function(obj){return obj instanceof ArrayBuffer||ArrayBuffer.isView(obj)}};function _godot_js_wrapper_create_cb(p_ref,p_func){const func=GodotRuntime.get_func(p_func);let id=0;const cb=function(){if(!GodotJSWrapper.get_proxied_value(id)){return undefined}GodotJSWrapper.cb_ret=null;const args=Array.from(arguments);const argsProxy=new GodotJSWrapper.MyProxy(args);func(p_ref,argsProxy.get_id(),args.length);argsProxy.unref();const ret=GodotJSWrapper.cb_ret;GodotJSWrapper.cb_ret=null;return ret};id=GodotJSWrapper.get_proxied(cb);return id}function _godot_js_wrapper_create_object(p_object,p_args,p_argc,p_convert_callback,p_exchange,p_lock,p_free_lock_callback){const name=GodotRuntime.parseString(p_object);if(typeof window[name]==="undefined"){return-1}const convert=GodotRuntime.get_func(p_convert_callback);const freeLock=GodotRuntime.get_func(p_free_lock_callback);const args=new Array(p_argc);for(let i=0;i<p_argc;i++){const type=convert(p_args,i,p_exchange,p_lock);const lock=GodotRuntime.getHeapValue(p_lock,"*");args[i]=GodotJSWrapper.variant2js(type,p_exchange);if(lock){freeLock(p_lock,type)}}try{const res=new window[name](...args);return GodotJSWrapper.js2variant(res,p_exchange)}catch(e){GodotRuntime.error(`Error calling constructor ${name} with args:`,args,"error:",e);return-1}}function _godot_js_wrapper_interface_get(p_name){const name=GodotRuntime.parseString(p_name);if(typeof window[name]!=="undefined"){return GodotJSWrapper.get_proxied(window[name])}return 0}function _godot_js_wrapper_object_call(p_id,p_method,p_args,p_argc,p_convert_callback,p_exchange,p_lock,p_free_lock_callback){const obj=GodotJSWrapper.get_proxied_value(p_id);if(obj===undefined){return-1}const method=GodotRuntime.parseString(p_method);const convert=GodotRuntime.get_func(p_convert_callback);const freeLock=GodotRuntime.get_func(p_free_lock_callback);const args=new Array(p_argc);for(let i=0;i<p_argc;i++){const type=convert(p_args,i,p_exchange,p_lock);const lock=GodotRuntime.getHeapValue(p_lock,"*");args[i]=GodotJSWrapper.variant2js(type,p_exchange);if(lock){freeLock(p_lock,type)}}try{const res=obj[method](...args);return GodotJSWrapper.js2variant(res,p_exchange)}catch(e){GodotRuntime.error(`Error calling method ${method} on:`,obj,"error:",e);return-1}}function _godot_js_wrapper_object_get(p_id,p_exchange,p_prop){const obj=GodotJSWrapper.get_proxied_value(p_id);if(obj===undefined){return 0}if(p_prop){const prop=GodotRuntime.parseString(p_prop);try{return GodotJSWrapper.js2variant(obj[prop],p_exchange)}catch(e){GodotRuntime.error(`Error getting variable ${prop} on object`,obj);return 0}}return GodotJSWrapper.js2variant(obj,p_exchange)}function _godot_js_wrapper_object_getvar(p_id,p_type,p_exchange){const obj=GodotJSWrapper.get_proxied_value(p_id);if(obj===undefined){return-1}const prop=GodotJSWrapper.variant2js(p_type,p_exchange);if(prop===undefined||prop===null){return-1}try{return GodotJSWrapper.js2variant(obj[prop],p_exchange)}catch(e){GodotRuntime.error(`Error getting variable ${prop} on object`,obj,e);return-1}}function _godot_js_wrapper_object_is_buffer(p_id){const obj=GodotJSWrapper.get_proxied_value(p_id);return GodotJSWrapper.isBuffer(obj)?1:0}function _godot_js_wrapper_object_set(p_id,p_name,p_type,p_exchange){const obj=GodotJSWrapper.get_proxied_value(p_id);if(obj===undefined){return}const name=GodotRuntime.parseString(p_name);try{obj[name]=GodotJSWrapper.variant2js(p_type,p_exchange)}catch(e){GodotRuntime.error(`Error setting variable ${name} on object`,obj)}}function _godot_js_wrapper_object_set_cb_ret(p_val_type,p_val_ex){GodotJSWrapper.cb_ret=GodotJSWrapper.variant2js(p_val_type,p_val_ex)}function _godot_js_wrapper_object_setvar(p_id,p_key_type,p_key_ex,p_val_type,p_val_ex){const obj=GodotJSWrapper.get_proxied_value(p_id);if(obj===undefined){return-1}const key=GodotJSWrapper.variant2js(p_key_type,p_key_ex);try{obj[key]=GodotJSWrapper.variant2js(p_val_type,p_val_ex);return 0}catch(e){GodotRuntime.error(`Error setting variable ${key} on object`,obj);return-1}}function _godot_js_wrapper_object_transfer_buffer(p_id,p_byte_arr,p_byte_arr_write,p_callback){let obj=GodotJSWrapper.get_proxied_value(p_id);if(!GodotJSWrapper.isBuffer(obj)){return}if(ArrayBuffer.isView(obj)&&!(obj instanceof Uint8Array)){obj=new Uint8Array(obj.buffer)}else if(obj instanceof ArrayBuffer){obj=new Uint8Array(obj)}const resizePackedByteArrayAndOpenWrite=GodotRuntime.get_func(p_callback);const bytesPtr=resizePackedByteArrayAndOpenWrite(p_byte_arr,p_byte_arr_write,obj.length);HEAPU8.set(obj,bytesPtr)}function _godot_js_wrapper_object_unref(p_id){const proxy=IDHandler.get(p_id);if(proxy!==undefined){proxy.unref()}}function _godot_webgl2_glFramebufferTextureMultisampleMultiviewOVR(target,attachment,texture,level,samples,base_view_index,num_views){const context=GL.currentContext;if(typeof context.oculusMultiviewExt==="undefined"){const ext=context.GLctx.getExtension("OCULUS_multiview");if(!ext){GodotRuntime.error("Trying to call glFramebufferTextureMultisampleMultiviewOVR() without the OCULUS_multiview extension");return}context.oculusMultiviewExt=ext}const ext=context.oculusMultiviewExt;ext.framebufferTextureMultisampleMultiviewOVR(target,attachment,GL.textures[texture],level,samples,base_view_index,num_views)}function _godot_webgl2_glFramebufferTextureMultiviewOVR(target,attachment,texture,level,base_view_index,num_views){const context=GL.currentContext;if(typeof context.multiviewExt==="undefined"){const ext=context.GLctx.getExtension("OVR_multiview2");if(!ext){GodotRuntime.error("Trying to call glFramebufferTextureMultiviewOVR() without the OVR_multiview2 extension");return}context.multiviewExt=ext}const ext=context.multiviewExt;ext.framebufferTextureMultiviewOVR(target,attachment,GL.textures[texture],level,base_view_index,num_views)}function _godot_webgl2_glGetBufferSubData(target,offset,size,data){const gl_context_handle=_emscripten_webgl_get_current_context();const gl=GL.getContext(gl_context_handle);if(gl){gl.GLctx["getBufferSubData"](target,offset,HEAPU8,data,size)}}var GodotWebXR={gl:null,session:null,gl_binding:null,layer:null,space:null,frame:null,pose:null,view_count:1,input_sources:[,,,,,,,,,,,,,,,],touches:[,,,,],onsimpleevent:null,orig_requestAnimationFrame:null,requestAnimationFrame:callback=>{if(GodotWebXR.session&&GodotWebXR.space){const onFrame=function(time,frame){GodotWebXR.frame=frame;GodotWebXR.pose=frame.getViewerPose(GodotWebXR.space);callback(time);GodotWebXR.frame=null;GodotWebXR.pose=null};GodotWebXR.session.requestAnimationFrame(onFrame)}else{GodotWebXR.orig_requestAnimationFrame(callback)}},monkeyPatchRequestAnimationFrame:enable=>{if(GodotWebXR.orig_requestAnimationFrame===null){GodotWebXR.orig_requestAnimationFrame=Browser.requestAnimationFrame}Browser.requestAnimationFrame=enable?GodotWebXR.requestAnimationFrame:GodotWebXR.orig_requestAnimationFrame},pauseResumeMainLoop:()=>{Browser.mainLoop.pause();runtimeKeepalivePush();window.setTimeout(function(){runtimeKeepalivePop();Browser.mainLoop.resume()},0)},getLayer:()=>{const new_view_count=GodotWebXR.pose?GodotWebXR.pose.views.length:1;let layer=GodotWebXR.layer;if(layer&&GodotWebXR.view_count===new_view_count){return layer}if(!GodotWebXR.session||!GodotWebXR.gl_binding){return null}const gl=GodotWebXR.gl;layer=GodotWebXR.gl_binding.createProjectionLayer({textureType:new_view_count>1?"texture-array":"texture",colorFormat:gl.RGBA8,depthFormat:gl.DEPTH_COMPONENT24});GodotWebXR.session.updateRenderState({layers:[layer]});GodotWebXR.layer=layer;GodotWebXR.view_count=new_view_count;return layer},getSubImage:()=>{if(!GodotWebXR.pose){return null}const layer=GodotWebXR.getLayer();if(layer===null){return null}return GodotWebXR.gl_binding.getViewSubImage(layer,GodotWebXR.pose.views[0])},getTextureId:texture=>{if(texture.name!==undefined){return texture.name}const id=GL.getNewId(GL.textures);texture.name=id;GL.textures[id]=texture;return id},addInputSource:input_source=>{let name=-1;if(input_source.targetRayMode==="tracked-pointer"&&input_source.handedness==="left"){name=0}else if(input_source.targetRayMode==="tracked-pointer"&&input_source.handedness==="right"){name=1}else{for(let i=2;i<16;i++){if(!GodotWebXR.input_sources[i]){name=i;break}}}if(name>=0){GodotWebXR.input_sources[name]=input_source;input_source.name=name;if(input_source.targetRayMode==="screen"){let touch_index=-1;for(let i=0;i<5;i++){if(!GodotWebXR.touches[i]){touch_index=i;break}}if(touch_index>=0){GodotWebXR.touches[touch_index]=input_source;input_source.touch_index=touch_index}}}return name},removeInputSource:input_source=>{if(input_source.name!==undefined){const name=input_source.name;if(name>=0&&name<16){GodotWebXR.input_sources[name]=null}if(input_source.touch_index!==undefined){const touch_index=input_source.touch_index;if(touch_index>=0&&touch_index<5){GodotWebXR.touches[touch_index]=null}}return name}return-1},getInputSourceId:input_source=>{if(input_source!==undefined){return input_source.name}return-1},getTouchIndex:input_source=>{if(input_source.touch_index!==undefined){return input_source.touch_index}return-1}};function _godot_webxr_get_bounds_geometry(r_points){if(!GodotWebXR.space||!GodotWebXR.space.boundsGeometry){return 0}const point_count=GodotWebXR.space.boundsGeometry.length;if(point_count===0){return 0}const buf=GodotRuntime.malloc(point_count*3*4);for(let i=0;i<point_count;i++){const point=GodotWebXR.space.boundsGeometry[i];GodotRuntime.setHeapValue(buf+(i*3+0)*4,point.x,"float");GodotRuntime.setHeapValue(buf+(i*3+1)*4,point.y,"float");GodotRuntime.setHeapValue(buf+(i*3+2)*4,point.z,"float")}GodotRuntime.setHeapValue(r_points,buf,"i32");return point_count}function _godot_webxr_get_color_texture(){const subimage=GodotWebXR.getSubImage();if(subimage===null){return 0}return GodotWebXR.getTextureId(subimage.colorTexture)}function _godot_webxr_get_depth_texture(){const subimage=GodotWebXR.getSubImage();if(subimage===null){return 0}if(!subimage.depthStencilTexture){return 0}return GodotWebXR.getTextureId(subimage.depthStencilTexture)}function _godot_webxr_get_frame_rate(){if(!GodotWebXR.session||GodotWebXR.session.frameRate===undefined){return 0}return GodotWebXR.session.frameRate}function _godot_webxr_get_projection_for_view(p_view,r_transform){if(!GodotWebXR.session||!GodotWebXR.pose){return false}const matrix=GodotWebXR.pose.views[p_view].projectionMatrix;for(let i=0;i<16;i++){GodotRuntime.setHeapValue(r_transform+i*4,matrix[i],"float")}return true}function _godot_webxr_get_render_target_size(r_size){const subimage=GodotWebXR.getSubImage();if(subimage===null){return false}GodotRuntime.setHeapValue(r_size+0,subimage.viewport.width,"i32");GodotRuntime.setHeapValue(r_size+4,subimage.viewport.height,"i32");return true}function _godot_webxr_get_supported_frame_rates(r_frame_rates){if(!GodotWebXR.session||GodotWebXR.session.supportedFrameRates===undefined){return 0}const frame_rate_count=GodotWebXR.session.supportedFrameRates.length;if(frame_rate_count===0){return 0}const buf=GodotRuntime.malloc(frame_rate_count*4);for(let i=0;i<frame_rate_count;i++){GodotRuntime.setHeapValue(buf+i*4,GodotWebXR.session.supportedFrameRates[i],"float")}GodotRuntime.setHeapValue(r_frame_rates,buf,"i32");return frame_rate_count}function _godot_webxr_get_transform_for_view(p_view,r_transform){if(!GodotWebXR.session||!GodotWebXR.pose){return false}const views=GodotWebXR.pose.views;let matrix;if(p_view>=0){matrix=views[p_view].transform.matrix}else{matrix=GodotWebXR.pose.transform.matrix}for(let i=0;i<16;i++){GodotRuntime.setHeapValue(r_transform+i*4,matrix[i],"float")}return true}function _godot_webxr_get_velocity_texture(){const subimage=GodotWebXR.getSubImage();if(subimage===null){return 0}if(!subimage.motionVectorTexture){return 0}return GodotWebXR.getTextureId(subimage.motionVectorTexture)}function _godot_webxr_get_view_count(){if(!GodotWebXR.session||!GodotWebXR.pose){return 1}const view_count=GodotWebXR.pose.views.length;return view_count>0?view_count:1}function _godot_webxr_get_visibility_state(){if(!GodotWebXR.session||!GodotWebXR.session.visibilityState){return 0}return GodotRuntime.allocString(GodotWebXR.session.visibilityState)}var _godot_webxr_initialize=function(p_session_mode,p_required_features,p_optional_features,p_requested_reference_spaces,p_on_session_started,p_on_session_ended,p_on_session_failed,p_on_input_event,p_on_simple_event){GodotWebXR.monkeyPatchRequestAnimationFrame(true);const session_mode=GodotRuntime.parseString(p_session_mode);const required_features=GodotRuntime.parseString(p_required_features).split(",").map(s=>s.trim()).filter(s=>s!=="");const optional_features=GodotRuntime.parseString(p_optional_features).split(",").map(s=>s.trim()).filter(s=>s!=="");const requested_reference_space_types=GodotRuntime.parseString(p_requested_reference_spaces).split(",").map(s=>s.trim());const onstarted=GodotRuntime.get_func(p_on_session_started);const onended=GodotRuntime.get_func(p_on_session_ended);const onfailed=GodotRuntime.get_func(p_on_session_failed);const oninputevent=GodotRuntime.get_func(p_on_input_event);const onsimpleevent=GodotRuntime.get_func(p_on_simple_event);const session_init={};if(required_features.length>0){session_init["requiredFeatures"]=required_features}if(optional_features.length>0){session_init["optionalFeatures"]=optional_features}navigator.xr.requestSession(session_mode,session_init).then(function(session){GodotWebXR.session=session;session.addEventListener("end",function(evt){onended()});session.addEventListener("inputsourceschange",function(evt){evt.added.forEach(GodotWebXR.addInputSource);evt.removed.forEach(GodotWebXR.removeInputSource)});["selectstart","selectend","squeezestart","squeezeend"].forEach((input_event,index)=>{session.addEventListener(input_event,function(evt){GodotWebXR.frame=evt.frame;oninputevent(index,GodotWebXR.getInputSourceId(evt.inputSource));GodotWebXR.frame=null})});session.addEventListener("visibilitychange",function(evt){const c_str=GodotRuntime.allocString("visibility_state_changed");onsimpleevent(c_str);GodotRuntime.free(c_str)});GodotWebXR.onsimpleevent=onsimpleevent;const gl_context_handle=_emscripten_webgl_get_current_context();const gl=GL.getContext(gl_context_handle).GLctx;GodotWebXR.gl=gl;gl.makeXRCompatible().then(function(){GodotWebXR.gl_binding=new XRWebGLBinding(session,gl);GodotWebXR.getLayer();function onReferenceSpaceSuccess(reference_space,reference_space_type){GodotWebXR.space=reference_space;reference_space.onreset=function(evt){const c_str=GodotRuntime.allocString("reference_space_reset");onsimpleevent(c_str);GodotRuntime.free(c_str)};GodotWebXR.pauseResumeMainLoop();window.setTimeout(function(){const reference_space_c_str=GodotRuntime.allocString(reference_space_type);const enabled_features="enabledFeatures"in session?Array.from(session.enabledFeatures):[];const enabled_features_c_str=GodotRuntime.allocString(enabled_features.join(","));const environment_blend_mode="environmentBlendMode"in session?session.environmentBlendMode:"";const environment_blend_mode_c_str=GodotRuntime.allocString(environment_blend_mode);onstarted(reference_space_c_str,enabled_features_c_str,environment_blend_mode_c_str);GodotRuntime.free(reference_space_c_str);GodotRuntime.free(enabled_features_c_str);GodotRuntime.free(environment_blend_mode_c_str)},0)}function requestReferenceSpace(){const reference_space_type=requested_reference_space_types.shift();session.requestReferenceSpace(reference_space_type).then(refSpace=>{onReferenceSpaceSuccess(refSpace,reference_space_type)}).catch(()=>{if(requested_reference_space_types.length===0){const c_str=GodotRuntime.allocString("Unable to get any of the requested reference space types");onfailed(c_str);GodotRuntime.free(c_str)}else{requestReferenceSpace()}})}requestReferenceSpace()}).catch(function(error){const c_str=GodotRuntime.allocString(`Unable to make WebGL context compatible with WebXR: ${error}`);onfailed(c_str);GodotRuntime.free(c_str)})}).catch(function(error){const c_str=GodotRuntime.allocString(`Unable to start session: ${error}`);onfailed(c_str);GodotRuntime.free(c_str)})};function _godot_webxr_is_session_supported(p_session_mode,p_callback){const session_mode=GodotRuntime.parseString(p_session_mode);const cb=GodotRuntime.get_func(p_callback);if(navigator.xr){navigator.xr.isSessionSupported(session_mode).then(function(supported){const c_str=GodotRuntime.allocString(session_mode);cb(c_str,supported?1:0);GodotRuntime.free(c_str)})}else{const c_str=GodotRuntime.allocString(session_mode);cb(c_str,0);GodotRuntime.free(c_str)}}function _godot_webxr_is_supported(){return!!navigator.xr}var _godot_webxr_uninitialize=function(){if(GodotWebXR.session){GodotWebXR.session.end().catch(e=>{})}GodotWebXR.session=null;GodotWebXR.gl_binding=null;GodotWebXR.layer=null;GodotWebXR.space=null;GodotWebXR.frame=null;GodotWebXR.pose=null;GodotWebXR.view_count=1;GodotWebXR.input_sources=new Array(16);GodotWebXR.touches=new Array(5);GodotWebXR.onsimpleevent=null;GodotWebXR.monkeyPatchRequestAnimationFrame(false);GodotWebXR.pauseResumeMainLoop()};function _godot_webxr_update_input_source(p_input_source_id,r_target_pose,r_target_ray_mode,r_touch_index,r_has_grip_pose,r_grip_pose,r_has_standard_mapping,r_button_count,r_buttons,r_axes_count,r_axes,r_has_hand_data,r_hand_joints,r_hand_radii){if(!GodotWebXR.session||!GodotWebXR.frame){return 0}if(p_input_source_id<0||p_input_source_id>=GodotWebXR.input_sources.length||!GodotWebXR.input_sources[p_input_source_id]){return false}const input_source=GodotWebXR.input_sources[p_input_source_id];const frame=GodotWebXR.frame;const space=GodotWebXR.space;const target_pose=frame.getPose(input_source.targetRaySpace,space);if(!target_pose){return false}const target_pose_matrix=target_pose.transform.matrix;for(let i=0;i<16;i++){GodotRuntime.setHeapValue(r_target_pose+i*4,target_pose_matrix[i],"float")}let target_ray_mode=0;switch(input_source.targetRayMode){case"gaze":target_ray_mode=1;break;case"tracked-pointer":target_ray_mode=2;break;case"screen":target_ray_mode=3;break;default:}GodotRuntime.setHeapValue(r_target_ray_mode,target_ray_mode,"i32");GodotRuntime.setHeapValue(r_touch_index,GodotWebXR.getTouchIndex(input_source),"i32");let has_grip_pose=false;if(input_source.gripSpace){const grip_pose=frame.getPose(input_source.gripSpace,space);if(grip_pose){const grip_pose_matrix=grip_pose.transform.matrix;for(let i=0;i<16;i++){GodotRuntime.setHeapValue(r_grip_pose+i*4,grip_pose_matrix[i],"float")}has_grip_pose=true}}GodotRuntime.setHeapValue(r_has_grip_pose,has_grip_pose?1:0,"i32");let has_standard_mapping=false;let button_count=0;let axes_count=0;if(input_source.gamepad){if(input_source.gamepad.mapping==="xr-standard"){has_standard_mapping=true}button_count=Math.min(input_source.gamepad.buttons.length,10);for(let i=0;i<button_count;i++){GodotRuntime.setHeapValue(r_buttons+i*4,input_source.gamepad.buttons[i].value,"float")}axes_count=Math.min(input_source.gamepad.axes.length,10);for(let i=0;i<axes_count;i++){GodotRuntime.setHeapValue(r_axes+i*4,input_source.gamepad.axes[i],"float")}}GodotRuntime.setHeapValue(r_has_standard_mapping,has_standard_mapping?1:0,"i32");GodotRuntime.setHeapValue(r_button_count,button_count,"i32");GodotRuntime.setHeapValue(r_axes_count,axes_count,"i32");let has_hand_data=false;if(input_source.hand&&r_hand_joints!==0&&r_hand_radii!==0){const hand_joint_array=new Float32Array(25*16);const hand_radii_array=new Float32Array(25);if(frame.fillPoses(input_source.hand.values(),space,hand_joint_array)&&frame.fillJointRadii(input_source.hand.values(),hand_radii_array)){GodotRuntime.heapCopy(HEAPF32,hand_joint_array,r_hand_joints);GodotRuntime.heapCopy(HEAPF32,hand_radii_array,r_hand_radii);has_hand_data=true}}GodotRuntime.setHeapValue(r_has_hand_data,has_hand_data?1:0,"i32");return true}function _godot_webxr_update_target_frame_rate(p_frame_rate){if(!GodotWebXR.session||GodotWebXR.session.updateTargetFrameRate===undefined){return}GodotWebXR.session.updateTargetFrameRate(p_frame_rate).then(()=>{const c_str=GodotRuntime.allocString("display_refresh_rate_changed");GodotWebXR.onsimpleevent(c_str);GodotRuntime.free(c_str)})}var stackAlloc=sz=>__emscripten_stack_alloc(sz);var stringToUTF8OnStack=str=>{var size=lengthBytesUTF8(str)+1;var ret=stackAlloc(size);stringToUTF8(str,ret,size);return ret};var getCFunc=ident=>{var func=Module["_"+ident];return func};var writeArrayToMemory=(array,buffer)=>{HEAP8.set(array,buffer)};var stackSave=()=>_emscripten_stack_get_current();var stackRestore=val=>__emscripten_stack_restore(val);var ccall=(ident,returnType,argTypes,args,opts)=>{var toC={string:str=>{var ret=0;if(str!==null&&str!==undefined&&str!==0){ret=stringToUTF8OnStack(str)}return ret},array:arr=>{var ret=stackAlloc(arr.length);writeArrayToMemory(arr,ret);return ret}};function convertReturnValue(ret){if(returnType==="string"){return UTF8ToString(ret)}if(returnType==="boolean")return Boolean(ret);return ret}var func=getCFunc(ident);var cArgs=[];var stack=0;if(args){for(var i=0;i<args.length;i++){var converter=toC[argTypes[i]];if(converter){if(stack===0)stack=stackSave();cArgs[i]=converter(args[i])}else{cArgs[i]=args[i]}}}var ret=func(...cArgs);function onDone(ret){if(stack!==0)stackRestore(stack);return convertReturnValue(ret)}ret=onDone(ret);return ret};var cwrap=(ident,returnType,argTypes,opts)=>{var numericArgs=!argTypes||argTypes.every(type=>type==="number"||type==="boolean");var numericRet=returnType!=="string";if(numericRet&&numericArgs&&!opts){return getCFunc(ident)}return(...args)=>ccall(ident,returnType,argTypes,args,opts)};FS.createPreloadedFile=FS_createPreloadedFile;FS.staticInit();Module["requestFullscreen"]=Browser.requestFullscreen;Module["requestAnimationFrame"]=Browser.requestAnimationFrame;Module["setCanvasSize"]=Browser.setCanvasSize;Module["pauseMainLoop"]=Browser.mainLoop.pause;Module["resumeMainLoop"]=Browser.mainLoop.resume;Module["getUserMedia"]=Browser.getUserMedia;Module["createContext"]=Browser.createContext;var preloadedImages={};var preloadedAudios={};var GLctx;for(var i=0;i<32;++i)tempFixedLengthArray.push(new Array(i));var miniTempWebGLIntBuffersStorage=new Int32Array(288);for(var i=0;i<=288;++i){miniTempWebGLIntBuffers[i]=miniTempWebGLIntBuffersStorage.subarray(0,i)}var miniTempWebGLFloatBuffersStorage=new Float32Array(288);for(var i=0;i<=288;++i){miniTempWebGLFloatBuffers[i]=miniTempWebGLFloatBuffersStorage.subarray(0,i)}Module["request_quit"]=function(){GodotOS.request_quit()};Module["onExit"]=GodotOS.cleanup;GodotOS._fs_sync_promise=Promise.resolve();Module["initConfig"]=GodotConfig.init_config;Module["initFS"]=GodotFS.init;Module["copyToFS"]=GodotFS.copy_to_fs;GodotOS.atexit(function(resolve,reject){GodotDisplayCursor.clear();resolve()});GodotOS.atexit(function(resolve,reject){GodotEventListeners.clear();resolve()});GodotOS.atexit(function(resolve,reject){GodotDisplayVK.clear();resolve()});GodotOS.atexit(function(resolve,reject){GodotIME.clear();resolve()});GodotJSWrapper.proxies=new Map;var wasmImports={Kc:___call_sighandler,dd:___syscall_chdir,Ya:___syscall_chmod,ed:___syscall_faccessat,ad:___syscall_fchmod,V:___syscall_fcntl64,$c:___syscall_fstat64,Xc:___syscall_ftruncate64,Vc:___syscall_getcwd,Jc:___syscall_getdents64,Ba:___syscall_ioctl,Zc:___syscall_lstat64,Rc:___syscall_mkdirat,Qc:___syscall_mknodat,Yc:___syscall_newfstatat,Xa:___syscall_openat,Ic:___syscall_readlinkat,Hc:___syscall_renameat,Ua:___syscall_rmdir,_c:___syscall_stat64,Gc:___syscall_statfs64,Fc:___syscall_symlink,Va:___syscall_unlinkat,fd:__abort_js,bd:__emscripten_get_now_is_monotonic,Nc:__emscripten_runtime_keepalive_clear,Oc:__gmtime_js,Pc:__localtime_js,gd:__tzset_js,Pe:_emscripten_cancel_main_loop,za:_emscripten_date_now,Qe:_emscripten_force_exit,Ec:_emscripten_get_heap_max,ia:_emscripten_get_now,Cc:_emscripten_resize_heap,Dc:_emscripten_set_canvas_element_size,Ma:_emscripten_set_main_loop,Qa:_emscripten_webgl_commit_frame,_b:_emscripten_webgl_create_context,Ib:_emscripten_webgl_destroy_context,Yb:_emscripten_webgl_enable_extension,td:_emscripten_webgl_get_supported_extensions,Zb:_emscripten_webgl_make_context_current,Tc:_environ_get,Uc:_environ_sizes_get,La:_exit,na:_fd_close,Wa:_fd_fdstat_get,Za:_fd_read,Sc:_fd_seek,Aa:_fd_write,i:_glActiveTexture,cb:_glAttachShader,ea:_glBeginTransformFeedback,b:_glBindBuffer,y:_glBindBufferBase,Ea:_glBindBufferRange,d:_glBindFramebuffer,ta:_glBindRenderbuffer,c:_glBindTexture,e:_glBindVertexArray,Md:_glBlendColor,J:_glBlendEquation,ka:_glBlendFunc,D:_glBlendFuncSeparate,ha:_glBlitFramebuffer,h:_glBufferData,R:_glBufferSubData,P:_glCheckFramebufferStatus,G:_glClear,Ga:_glClearBufferfv,Q:_glClearColor,aa:_glClearDepthf,Y:_glColorMask,eb:_glCompileShader,ld:_glCompressedTexImage2D,nd:_glCompressedTexImage3D,md:_glCompressedTexSubImage3D,pd:_glCopyBufferSubData,yd:_glCreateProgram,gb:_glCreateShader,ma:_glCullFace,o:_glDeleteBuffers,v:_glDeleteFramebuffers,ga:_glDeleteProgram,jd:_glDeleteQueries,oa:_glDeleteRenderbuffers,X:_glDeleteShader,lb:_glDeleteSync,l:_glDeleteTextures,L:_glDeleteVertexArrays,U:_glDepthFunc,w:_glDepthMask,g:_glDisable,p:_glDisableVertexAttribArray,F:_glDrawArrays,Z:_glDrawArraysInstanced,la:_glDrawBuffers,M:_glDrawElements,N:_glDrawElementsInstanced,x:_glEnable,f:_glEnableVertexAttribArray,da:_glEndTransformFeedback,kb:_glFenceSync,Ed:_glFinish,Ja:_glFramebufferRenderbuffer,t:_glFramebufferTexture2D,$:_glFramebufferTextureLayer,ib:_glFrontFace,m:_glGenBuffers,B:_glGenFramebuffers,kd:_glGenQueries,Ka:_glGenRenderbuffers,r:_glGenTextures,K:_glGenVertexArrays,id:_glGenerateMipmap,qd:_glGetFloatv,sd:_glGetInteger64v,fa:_glGetIntegerv,ud:_glGetProgramInfoLog,bb:_glGetProgramiv,db:_glGetShaderInfoLog,ra:_glGetShaderiv,_:_glGetString,Od:_glGetSynciv,Bd:_glGetUniformBlockIndex,Fa:_glGetUniformLocation,vd:_glLinkProgram,Ca:_glPixelStorei,jb:_glReadBuffer,Da:_glReadPixels,Hd:_glRenderbufferStorage,$a:_glRenderbufferStorageMultisample,va:_glScissor,fb:_glShaderSource,q:_glTexImage2D,T:_glTexImage3D,Ia:_glTexParameterf,a:_glTexParameteri,Ha:_glTexStorage2D,_a:_glTexSubImage3D,wd:_glTransformFeedbackVaryings,k:_glUniform1f,E:_glUniform1i,zd:_glUniform1iv,u:_glUniform1ui,sa:_glUniform1uiv,ba:_glUniform2f,H:_glUniform2fv,ja:_glUniform2iv,s:_glUniform3fv,O:_glUniform4f,C:_glUniform4fv,Ad:_glUniformBlockBinding,hb:_glUniformMatrix3fv,I:_glUniformMatrix4fv,n:_glUseProgram,ua:_glVertexAttrib4f,z:_glVertexAttribDivisor,ca:_glVertexAttribI4ui,S:_glVertexAttribIPointer,j:_glVertexAttribPointer,A:_glViewport,Ce:_godot_audio_get_sample_playback_position,rd:_godot_audio_has_script_processor,Dd:_godot_audio_has_worklet,ff:_godot_audio_init,vc:_godot_audio_input_start,oc:_godot_audio_input_stop,gf:_godot_audio_is_available,pa:_godot_audio_resume,Nd:_godot_audio_sample_bus_add,Ld:_godot_audio_sample_bus_move,Td:_godot_audio_sample_bus_remove,ae:_godot_audio_sample_bus_set_count,Fd:_godot_audio_sample_bus_set_mute,Jd:_godot_audio_sample_bus_set_send,Gd:_godot_audio_sample_bus_set_solo,Id:_godot_audio_sample_bus_set_volume_db,Ne:_godot_audio_sample_is_active,Vb:_godot_audio_sample_register_stream,Kd:_godot_audio_sample_set_finished_callback,We:_godot_audio_sample_set_pause,ke:_godot_audio_sample_set_volumes_linear,Cb:_godot_audio_sample_start,ef:_godot_audio_sample_stop,ec:_godot_audio_sample_stream_is_registered,Kb:_godot_audio_sample_unregister_stream,te:_godot_audio_sample_update_pitch_scale,od:_godot_audio_script_create,hd:_godot_audio_script_start,Cd:_godot_audio_worklet_create,xd:_godot_audio_worklet_start_no_threads,dc:_godot_js_config_canvas_id_get,Fe:_godot_js_config_locale_get,Oe:_godot_js_display_alert,pc:_godot_js_display_canvas_focus,qc:_godot_js_display_canvas_is_focused,fc:_godot_js_display_clipboard_get,gc:_godot_js_display_clipboard_set,sc:_godot_js_display_cursor_is_hidden,rc:_godot_js_display_cursor_is_locked,xa:_godot_js_display_cursor_lock_set,Ta:_godot_js_display_cursor_set_custom_shape,tc:_godot_js_display_cursor_set_shape,ya:_godot_js_display_cursor_set_visible,Bb:_godot_js_display_desired_size_set,Nb:_godot_js_display_fullscreen_cb,Ab:_godot_js_display_fullscreen_exit,zb:_godot_js_display_fullscreen_request,$b:_godot_js_display_has_webgl,bc:_godot_js_display_is_swap_ok_cancel,Lb:_godot_js_display_notification_cb,Eb:_godot_js_display_pixel_ratio_get,Fb:_godot_js_display_screen_dpi_get,Gb:_godot_js_display_screen_size_get,cc:_godot_js_display_setup_canvas,Mc:_godot_js_display_size_update,nc:_godot_js_display_touchscreen_is_available,Hb:_godot_js_display_tts_available,Pa:_godot_js_display_vk_available,Jb:_godot_js_display_vk_cb,lc:_godot_js_display_vk_hide,mc:_godot_js_display_vk_show,Mb:_godot_js_display_window_blur_cb,Ra:_godot_js_display_window_icon_set,Oa:_godot_js_display_window_size_get,Db:_godot_js_display_window_title_set,Ve:_godot_js_eval,xb:_godot_js_fetch_create,Na:_godot_js_fetch_free,ub:_godot_js_fetch_http_status_get,wb:_godot_js_fetch_is_chunked,vb:_godot_js_fetch_read_chunk,df:_godot_js_fetch_read_headers,wa:_godot_js_fetch_state_get,Qb:_godot_js_input_drop_files_cb,Pb:_godot_js_input_gamepad_cb,yb:_godot_js_input_gamepad_sample,ic:_godot_js_input_gamepad_sample_count,hc:_godot_js_input_gamepad_sample_get,Sb:_godot_js_input_key_cb,Xb:_godot_js_input_mouse_button_cb,Wb:_godot_js_input_mouse_move_cb,Ub:_godot_js_input_mouse_wheel_cb,Rb:_godot_js_input_paste_cb,Tb:_godot_js_input_touch_cb,He:_godot_js_input_vibrate_handheld,Sa:_godot_js_is_ime_focused,Se:_godot_js_os_download_buffer,Le:_godot_js_os_execute,sb:_godot_js_os_finish_async,De:_godot_js_os_fs_is_persistent,Me:_godot_js_os_fs_sync,Je:_godot_js_os_has_feature,Ke:_godot_js_os_hw_concurrency_get,ac:_godot_js_os_request_quit_cb,Ie:_godot_js_os_shell_open,Ee:_godot_js_pwa_cb,Ge:_godot_js_pwa_update,rb:_godot_js_rtc_datachannel_close,se:_godot_js_rtc_datachannel_connect,pe:_godot_js_rtc_datachannel_destroy,ue:_godot_js_rtc_datachannel_get_buffered_amount,ye:_godot_js_rtc_datachannel_id_get,ve:_godot_js_rtc_datachannel_is_negotiated,ze:_godot_js_rtc_datachannel_is_ordered,re:_godot_js_rtc_datachannel_label_get,xe:_godot_js_rtc_datachannel_max_packet_lifetime_get,we:_godot_js_rtc_datachannel_max_retransmits_get,qe:_godot_js_rtc_datachannel_protocol_get,Be:_godot_js_rtc_datachannel_ready_state_get,Ae:_godot_js_rtc_datachannel_send,qb:_godot_js_rtc_pc_close,je:_godot_js_rtc_pc_create,ie:_godot_js_rtc_pc_datachannel_create,pb:_godot_js_rtc_pc_destroy,le:_godot_js_rtc_pc_ice_candidate_add,ne:_godot_js_rtc_pc_local_description_set,oe:_godot_js_rtc_pc_offer_create,me:_godot_js_rtc_pc_remote_description_set,kc:_godot_js_set_ime_active,Ob:_godot_js_set_ime_cb,jc:_godot_js_set_ime_position,zc:_godot_js_tts_get_voices,Ac:_godot_js_tts_is_paused,Bc:_godot_js_tts_is_speaking,xc:_godot_js_tts_pause,wc:_godot_js_tts_resume,yc:_godot_js_tts_speak,uc:_godot_js_tts_stop,Wc:_godot_js_webmidi_close_midi_inputs,cd:_godot_js_webmidi_open_midi_inputs,fe:_godot_js_websocket_buffered_amount,ee:_godot_js_websocket_close,he:_godot_js_websocket_create,ob:_godot_js_websocket_destroy,ge:_godot_js_websocket_send,Ze:_godot_js_wrapper_create_cb,Xe:_godot_js_wrapper_create_object,Ye:_godot_js_wrapper_interface_get,$e:_godot_js_wrapper_object_call,bf:_godot_js_wrapper_object_get,tb:_godot_js_wrapper_object_getvar,Ue:_godot_js_wrapper_object_is_buffer,cf:_godot_js_wrapper_object_set,_e:_godot_js_wrapper_object_set_cb_ret,af:_godot_js_wrapper_object_setvar,Te:_godot_js_wrapper_object_transfer_buffer,Re:_godot_js_wrapper_object_unref,ab:_godot_webgl2_glFramebufferTextureMultisampleMultiviewOVR,W:_godot_webgl2_glFramebufferTextureMultiviewOVR,qa:_godot_webgl2_glGetBufferSubData,be:_godot_webxr_get_bounds_geometry,Sd:_godot_webxr_get_color_texture,Rd:_godot_webxr_get_depth_texture,$d:_godot_webxr_get_frame_rate,Ud:_godot_webxr_get_projection_for_view,Vd:_godot_webxr_get_render_target_size,Zd:_godot_webxr_get_supported_frame_rates,mb:_godot_webxr_get_transform_for_view,Qd:_godot_webxr_get_velocity_texture,nb:_godot_webxr_get_view_count,ce:_godot_webxr_get_visibility_state,Xd:_godot_webxr_initialize,de:_godot_webxr_is_session_supported,Yd:_godot_webxr_is_supported,Wd:_godot_webxr_uninitialize,Pd:_godot_webxr_update_input_source,_d:_godot_webxr_update_target_frame_rate,Lc:_proc_exit};var wasmExports=createWasm();var ___wasm_call_ctors=()=>(___wasm_call_ctors=wasmExports["jf"])();var _free=a0=>(_free=wasmExports["kf"])(a0);var __Z14godot_web_mainiPPc=Module["__Z14godot_web_mainiPPc"]=(a0,a1)=>(__Z14godot_web_mainiPPc=Module["__Z14godot_web_mainiPPc"]=wasmExports["lf"])(a0,a1);var _main=Module["_main"]=(a0,a1)=>(_main=Module["_main"]=wasmExports["mf"])(a0,a1);var _malloc=a0=>(_malloc=wasmExports["nf"])(a0);var _fflush=a0=>(_fflush=wasmExports["of"])(a0);var __emwebxr_on_input_event=Module["__emwebxr_on_input_event"]=(a0,a1)=>(__emwebxr_on_input_event=Module["__emwebxr_on_input_event"]=wasmExports["pf"])(a0,a1);var __emwebxr_on_simple_event=Module["__emwebxr_on_simple_event"]=a0=>(__emwebxr_on_simple_event=Module["__emwebxr_on_simple_event"]=wasmExports["qf"])(a0);var ___funcs_on_exit=()=>(___funcs_on_exit=wasmExports["sf"])();var __emscripten_stack_restore=a0=>(__emscripten_stack_restore=wasmExports["tf"])(a0);var __emscripten_stack_alloc=a0=>(__emscripten_stack_alloc=wasmExports["uf"])(a0);var _emscripten_stack_get_current=()=>(_emscripten_stack_get_current=wasmExports["vf"])();Module["callMain"]=callMain;Module["cwrap"]=cwrap;var calledRun;dependenciesFulfilled=function runCaller(){if(!calledRun)run();if(!calledRun)dependenciesFulfilled=runCaller};function callMain(args=[]){var entryFunction=_main;args.unshift(thisProgram);var argc=args.length;var argv=stackAlloc((argc+1)*4);var argv_ptr=argv;args.forEach(arg=>{HEAPU32[argv_ptr>>2]=stringToUTF8OnStack(arg);argv_ptr+=4});HEAPU32[argv_ptr>>2]=0;try{var ret=entryFunction(argc,argv);exitJS(ret,true);return ret}catch(e){return handleException(e)}}function run(args=arguments_){if(runDependencies>0){return}preRun();if(runDependencies>0){return}function doRun(){if(calledRun)return;calledRun=true;Module["calledRun"]=true;if(ABORT)return;initRuntime();preMain();readyPromiseResolve(Module);Module["onRuntimeInitialized"]?.();if(shouldRunNow)callMain(args);postRun()}if(Module["setStatus"]){Module["setStatus"]("Running...");setTimeout(function(){setTimeout(function(){Module["setStatus"]("")},1);doRun()},1)}else{doRun()}}if(Module["preInit"]){if(typeof Module["preInit"]=="function")Module["preInit"]=[Module["preInit"]];while(Module["preInit"].length>0){Module["preInit"].pop()()}}var shouldRunNow=false;if(Module["noInitialRun"])shouldRunNow=false;run();moduleRtn=readyPromise;
+
+
+ return moduleRtn;
+}
+);
+})();
+if (typeof exports === 'object' && typeof module === 'object')
+ module.exports = Godot;
+else if (typeof define === 'function' && define['amd'])
+ define([], () => Godot);
+
+const Features = {
+ /**
+ * Check whether WebGL is available. Optionally, specify a particular version of WebGL to check for.
+ *
+ * @param {number=} [majorVersion=1] The major WebGL version to check for.
+ * @returns {boolean} If the given major version of WebGL is available.
+ * @function Engine.isWebGLAvailable
+ */
+ isWebGLAvailable: function (majorVersion = 1) {
+ try {
+ return !!document.createElement('canvas').getContext(['webgl', 'webgl2'][majorVersion - 1]);
+ } catch (e) { /* Not available */ }
+ return false;
+ },
+
+ /**
+ * Check whether the Fetch API available and supports streaming responses.
+ *
+ * @returns {boolean} If the Fetch API is available and supports streaming responses.
+ * @function Engine.isFetchAvailable
+ */
+ isFetchAvailable: function () {
+ return 'fetch' in window && 'Response' in window && 'body' in window.Response.prototype;
+ },
+
+ /**
+ * Check whether the engine is running in a Secure Context.
+ *
+ * @returns {boolean} If the engine is running in a Secure Context.
+ * @function Engine.isSecureContext
+ */
+ isSecureContext: function () {
+ return window['isSecureContext'] === true;
+ },
+
+ /**
+ * Check whether the engine is cross origin isolated.
+ * This value is dependent on Cross-Origin-Opener-Policy and Cross-Origin-Embedder-Policy headers sent by the server.
+ *
+ * @returns {boolean} If the engine is running in a Secure Context.
+ * @function Engine.isSecureContext
+ */
+ isCrossOriginIsolated: function () {
+ return window['crossOriginIsolated'] === true;
+ },
+
+ /**
+ * Check whether SharedBufferArray is available.
+ *
+ * Most browsers require the page to be running in a secure context, and the
+ * the server to provide specific CORS headers for SharedArrayBuffer to be available.
+ *
+ * @returns {boolean} If SharedArrayBuffer is available.
+ * @function Engine.isSharedArrayBufferAvailable
+ */
+ isSharedArrayBufferAvailable: function () {
+ return 'SharedArrayBuffer' in window;
+ },
+
+ /**
+ * Check whether the AudioContext supports AudioWorkletNodes.
+ *
+ * @returns {boolean} If AudioWorkletNode is available.
+ * @function Engine.isAudioWorkletAvailable
+ */
+ isAudioWorkletAvailable: function () {
+ return 'AudioContext' in window && 'audioWorklet' in AudioContext.prototype;
+ },
+
+ /**
+ * Return an array of missing required features (as string).
+ *
+ * @returns {Array<string>} A list of human-readable missing features.
+ * @function Engine.getMissingFeatures
+ * @param {{threads: (boolean|undefined)}} supportedFeatures
+ */
+ getMissingFeatures: function (supportedFeatures = {}) {
+ const {
+ // Quotes are needed for the Closure compiler.
+ 'threads': supportsThreads = true,
+ } = supportedFeatures;
+
+ const missing = [];
+ if (!Features.isWebGLAvailable(2)) {
+ missing.push('WebGL2 - Check web browser configuration and hardware support');
+ }
+ if (!Features.isFetchAvailable()) {
+ missing.push('Fetch - Check web browser version');
+ }
+ if (!Features.isSecureContext()) {
+ missing.push('Secure Context - Check web server configuration (use HTTPS)');
+ }
+
+ if (supportsThreads) {
+ if (!Features.isCrossOriginIsolated()) {
+ missing.push('Cross-Origin Isolation - Check that the web server configuration sends the correct headers.');
+ }
+ if (!Features.isSharedArrayBufferAvailable()) {
+ missing.push('SharedArrayBuffer - Check that the web server configuration sends the correct headers.');
+ }
+ }
+
+ // Audio is normally optional since we have a dummy fallback.
+ return missing;
+ },
+};
+
+const Preloader = /** @constructor */ function () { // eslint-disable-line no-unused-vars
+ function getTrackedResponse(response, load_status) {
+ function onloadprogress(reader, controller) {
+ return reader.read().then(function (result) {
+ if (load_status.done) {
+ return Promise.resolve();
+ }
+ if (result.value) {
+ controller.enqueue(result.value);
+ load_status.loaded += result.value.length;
+ }
+ if (!result.done) {
+ return onloadprogress(reader, controller);
+ }
+ load_status.done = true;
+ return Promise.resolve();
+ });
+ }
+ const reader = response.body.getReader();
+ return new Response(new ReadableStream({
+ start: function (controller) {
+ onloadprogress(reader, controller).then(function () {
+ controller.close();
+ });
+ },
+ }), { headers: response.headers });
+ }
+
+ function loadFetch(file, tracker, fileSize, raw) {
+ tracker[file] = {
+ total: fileSize || 0,
+ loaded: 0,
+ done: false,
+ };
+ return fetch(file).then(function (response) {
+ if (!response.ok) {
+ return Promise.reject(new Error(`Failed loading file '${file}'`));
+ }
+ const tr = getTrackedResponse(response, tracker[file]);
+ if (raw) {
+ return Promise.resolve(tr);
+ }
+ return tr.arrayBuffer();
+ });
+ }
+
+ function retry(func, attempts = 1) {
+ function onerror(err) {
+ if (attempts <= 1) {
+ return Promise.reject(err);
+ }
+ return new Promise(function (resolve, reject) {
+ setTimeout(function () {
+ retry(func, attempts - 1).then(resolve).catch(reject);
+ }, 1000);
+ });
+ }
+ return func().catch(onerror);
+ }
+
+ const DOWNLOAD_ATTEMPTS_MAX = 4;
+ const loadingFiles = {};
+ const lastProgress = { loaded: 0, total: 0 };
+ let progressFunc = null;
+
+ const animateProgress = function () {
+ let loaded = 0;
+ let total = 0;
+ let totalIsValid = true;
+ let progressIsFinal = true;
+
+ Object.keys(loadingFiles).forEach(function (file) {
+ const stat = loadingFiles[file];
+ if (!stat.done) {
+ progressIsFinal = false;
+ }
+ if (!totalIsValid || stat.total === 0) {
+ totalIsValid = false;
+ total = 0;
+ } else {
+ total += stat.total;
+ }
+ loaded += stat.loaded;
+ });
+ if (loaded !== lastProgress.loaded || total !== lastProgress.total) {
+ lastProgress.loaded = loaded;
+ lastProgress.total = total;
+ if (typeof progressFunc === 'function') {
+ progressFunc(loaded, total);
+ }
+ }
+ if (!progressIsFinal) {
+ requestAnimationFrame(animateProgress);
+ }
+ };
+
+ this.animateProgress = animateProgress;
+
+ this.setProgressFunc = function (callback) {
+ progressFunc = callback;
+ };
+
+ this.loadPromise = function (file, fileSize, raw = false) {
+ return retry(loadFetch.bind(null, file, loadingFiles, fileSize, raw), DOWNLOAD_ATTEMPTS_MAX);
+ };
+
+ this.preloadedFiles = [];
+ this.preload = function (pathOrBuffer, destPath, fileSize) {
+ let buffer = null;
+ if (typeof pathOrBuffer === 'string') {
+ const me = this;
+ return this.loadPromise(pathOrBuffer, fileSize).then(function (buf) {
+ me.preloadedFiles.push({
+ path: destPath || pathOrBuffer,
+ buffer: buf,
+ });
+ return Promise.resolve();
+ });
+ } else if (pathOrBuffer instanceof ArrayBuffer) {
+ buffer = new Uint8Array(pathOrBuffer);
+ } else if (ArrayBuffer.isView(pathOrBuffer)) {
+ buffer = new Uint8Array(pathOrBuffer.buffer);
+ }
+ if (buffer) {
+ this.preloadedFiles.push({
+ path: destPath,
+ buffer: pathOrBuffer,
+ });
+ return Promise.resolve();
+ }
+ return Promise.reject(new Error('Invalid object for preloading'));
+ };
+};
+
+/**
+ * An object used to configure the Engine instance based on godot export options, and to override those in custom HTML
+ * templates if needed.
+ *
+ * @header Engine configuration
+ * @summary The Engine configuration object. This is just a typedef, create it like a regular object, e.g.:
+ *
+ * ``const MyConfig = { executable: 'godot', unloadAfterInit: false }``
+ *
+ * @typedef {Object} EngineConfig
+ */
+const EngineConfig = {}; // eslint-disable-line no-unused-vars
+
+/**
+ * @struct
+ * @constructor
+ * @ignore
+ */
+const InternalConfig = function (initConfig) { // eslint-disable-line no-unused-vars
+ const cfg = /** @lends {InternalConfig.prototype} */ {
+ /**
+ * Whether to unload the engine automatically after the instance is initialized.
+ *
+ * @memberof EngineConfig
+ * @default
+ * @type {boolean}
+ */
+ unloadAfterInit: true,
+ /**
+ * The HTML DOM Canvas object to use.
+ *
+ * By default, the first canvas element in the document will be used is none is specified.
+ *
+ * @memberof EngineConfig
+ * @default
+ * @type {?HTMLCanvasElement}
+ */
+ canvas: null,
+ /**
+ * The name of the WASM file without the extension. (Set by Godot Editor export process).
+ *
+ * @memberof EngineConfig
+ * @default
+ * @type {string}
+ */
+ executable: '',
+ /**
+ * An alternative name for the game pck to load. The executable name is used otherwise.
+ *
+ * @memberof EngineConfig
+ * @default
+ * @type {?string}
+ */
+ mainPack: null,
+ /**
+ * Specify a language code to select the proper localization for the game.
+ *
+ * The browser locale will be used if none is specified. See complete list of
+ * :ref:`supported locales <doc_locales>`.
+ *
+ * @memberof EngineConfig
+ * @type {?string}
+ * @default
+ */
+ locale: null,
+ /**
+ * The canvas resize policy determines how the canvas should be resized by Godot.
+ *
+ * ``0`` means Godot won't do any resizing. This is useful if you want to control the canvas size from
+ * javascript code in your template.
+ *
+ * ``1`` means Godot will resize the canvas on start, and when changing window size via engine functions.
+ *
+ * ``2`` means Godot will adapt the canvas size to match the whole browser window.
+ *
+ * @memberof EngineConfig
+ * @type {number}
+ * @default
+ */
+ canvasResizePolicy: 2,
+ /**
+ * The arguments to be passed as command line arguments on startup.
+ *
+ * See :ref:`command line tutorial <doc_command_line_tutorial>`.
+ *
+ * **Note**: :js:meth:`startGame <Engine.prototype.startGame>` will always add the ``--main-pack`` argument.
+ *
+ * @memberof EngineConfig
+ * @type {Array<string>}
+ * @default
+ */
+ args: [],
+ /**
+ * When enabled, the game canvas will automatically grab the focus when the engine starts.
+ *
+ * @memberof EngineConfig
+ * @type {boolean}
+ * @default
+ */
+ focusCanvas: true,
+ /**
+ * When enabled, this will turn on experimental virtual keyboard support on mobile.
+ *
+ * @memberof EngineConfig
+ * @type {boolean}
+ * @default
+ */
+ experimentalVK: false,
+ /**
+ * The progressive web app service worker to install.
+ * @memberof EngineConfig
+ * @default
+ * @type {string}
+ */
+ serviceWorker: '',
+ /**
+ * @ignore
+ * @type {Array.<string>}
+ */
+ persistentPaths: ['/userfs'],
+ /**
+ * @ignore
+ * @type {boolean}
+ */
+ persistentDrops: false,
+ /**
+ * @ignore
+ * @type {Array.<string>}
+ */
+ gdextensionLibs: [],
+ /**
+ * @ignore
+ * @type {Array.<string>}
+ */
+ fileSizes: [],
+ /**
+ * A callback function for handling Godot's ``OS.execute`` calls.
+ *
+ * This is for example used in the Web Editor template to switch between project manager and editor, and for running the game.
+ *
+ * @callback EngineConfig.onExecute
+ * @param {string} path The path that Godot's wants executed.
+ * @param {Array.<string>} args The arguments of the "command" to execute.
+ */
+ /**
+ * @ignore
+ * @type {?function(string, Array.<string>)}
+ */
+ onExecute: null,
+ /**
+ * A callback function for being notified when the Godot instance quits.
+ *
+ * **Note**: This function will not be called if the engine crashes or become unresponsive.
+ *
+ * @callback EngineConfig.onExit
+ * @param {number} status_code The status code returned by Godot on exit.
+ */
+ /**
+ * @ignore
+ * @type {?function(number)}
+ */
+ onExit: null,
+ /**
+ * A callback function for displaying download progress.
+ *
+ * The function is called once per frame while downloading files, so the usage of ``requestAnimationFrame()``
+ * is not necessary.
+ *
+ * If the callback function receives a total amount of bytes as 0, this means that it is impossible to calculate.
+ * Possible reasons include:
+ *
+ * - Files are delivered with server-side chunked compression
+ * - Files are delivered with server-side compression on Chromium
+ * - Not all file downloads have started yet (usually on servers without multi-threading)
+ *
+ * @callback EngineConfig.onProgress
+ * @param {number} current The current amount of downloaded bytes so far.
+ * @param {number} total The total amount of bytes to be downloaded.
+ */
+ /**
+ * @ignore
+ * @type {?function(number, number)}
+ */
+ onProgress: null,
+ /**
+ * A callback function for handling the standard output stream. This method should usually only be used in debug pages.
+ *
+ * By default, ``console.log()`` is used.
+ *
+ * @callback EngineConfig.onPrint
+ * @param {...*} [var_args] A variadic number of arguments to be printed.
+ */
+ /**
+ * @ignore
+ * @type {?function(...*)}
+ */
+ onPrint: function () {
+ console.log.apply(console, Array.from(arguments)); // eslint-disable-line no-console
+ },
+ /**
+ * A callback function for handling the standard error stream. This method should usually only be used in debug pages.
+ *
+ * By default, ``console.error()`` is used.
+ *
+ * @callback EngineConfig.onPrintError
+ * @param {...*} [var_args] A variadic number of arguments to be printed as errors.
+ */
+ /**
+ * @ignore
+ * @type {?function(...*)}
+ */
+ onPrintError: function (var_args) {
+ console.error.apply(console, Array.from(arguments)); // eslint-disable-line no-console
+ },
+ };
+
+ /**
+ * @ignore
+ * @struct
+ * @constructor
+ * @param {EngineConfig} opts
+ */
+ function Config(opts) {
+ this.update(opts);
+ }
+
+ Config.prototype = cfg;
+
+ /**
+ * @ignore
+ * @param {EngineConfig} opts
+ */
+ Config.prototype.update = function (opts) {
+ const config = opts || {};
+ // NOTE: We must explicitly pass the default, accessing it via
+ // the key will fail due to closure compiler renames.
+ function parse(key, def) {
+ if (typeof (config[key]) === 'undefined') {
+ return def;
+ }
+ return config[key];
+ }
+ // Module config
+ this.unloadAfterInit = parse('unloadAfterInit', this.unloadAfterInit);
+ this.onPrintError = parse('onPrintError', this.onPrintError);
+ this.onPrint = parse('onPrint', this.onPrint);
+ this.onProgress = parse('onProgress', this.onProgress);
+
+ // Godot config
+ this.canvas = parse('canvas', this.canvas);
+ this.executable = parse('executable', this.executable);
+ this.mainPack = parse('mainPack', this.mainPack);
+ this.locale = parse('locale', this.locale);
+ this.canvasResizePolicy = parse('canvasResizePolicy', this.canvasResizePolicy);
+ this.persistentPaths = parse('persistentPaths', this.persistentPaths);
+ this.persistentDrops = parse('persistentDrops', this.persistentDrops);
+ this.experimentalVK = parse('experimentalVK', this.experimentalVK);
+ this.focusCanvas = parse('focusCanvas', this.focusCanvas);
+ this.serviceWorker = parse('serviceWorker', this.serviceWorker);
+ this.gdextensionLibs = parse('gdextensionLibs', this.gdextensionLibs);
+ this.fileSizes = parse('fileSizes', this.fileSizes);
+ this.args = parse('args', this.args);
+ this.onExecute = parse('onExecute', this.onExecute);
+ this.onExit = parse('onExit', this.onExit);
+ };
+
+ /**
+ * @ignore
+ * @param {string} loadPath
+ * @param {Response} response
+ */
+ Config.prototype.getModuleConfig = function (loadPath, response) {
+ let r = response;
+ const gdext = this.gdextensionLibs;
+ return {
+ 'print': this.onPrint,
+ 'printErr': this.onPrintError,
+ 'thisProgram': this.executable,
+ 'noExitRuntime': false,
+ 'dynamicLibraries': [`${loadPath}.side.wasm`].concat(this.gdextensionLibs),
+ 'instantiateWasm': function (imports, onSuccess) {
+ function done(result) {
+ onSuccess(result['instance'], result['module']);
+ }
+ if (typeof (WebAssembly.instantiateStreaming) !== 'undefined') {
+ WebAssembly.instantiateStreaming(Promise.resolve(r), imports).then(done);
+ } else {
+ r.arrayBuffer().then(function (buffer) {
+ WebAssembly.instantiate(buffer, imports).then(done);
+ });
+ }
+ r = null;
+ return {};
+ },
+ 'locateFile': function (path) {
+ if (!path.startsWith('godot.')) {
+ return path;
+ } else if (path.endsWith('.audio.worklet.js')) {
+ return `${loadPath}.audio.worklet.js`;
+ } else if (path.endsWith('.audio.position.worklet.js')) {
+ return `${loadPath}.audio.position.worklet.js`;
+ } else if (path.endsWith('.js')) {
+ return `${loadPath}.js`;
+ } else if (path in gdext) {
+ return path;
+ } else if (path.endsWith('.side.wasm')) {
+ return `${loadPath}.side.wasm`;
+ } else if (path.endsWith('.wasm')) {
+ return `${loadPath}.wasm`;
+ }
+ return path;
+ },
+ };
+ };
+
+ /**
+ * @ignore
+ * @param {function()} cleanup
+ */
+ Config.prototype.getGodotConfig = function (cleanup) {
+ // Try to find a canvas
+ if (!(this.canvas instanceof HTMLCanvasElement)) {
+ const nodes = document.getElementsByTagName('canvas');
+ if (nodes.length && nodes[0] instanceof HTMLCanvasElement) {
+ const first = nodes[0];
+ this.canvas = /** @type {!HTMLCanvasElement} */ (first);
+ }
+ if (!this.canvas) {
+ throw new Error('No canvas found in page');
+ }
+ }
+ // Canvas can grab focus on click, or key events won't work.
+ if (this.canvas.tabIndex < 0) {
+ this.canvas.tabIndex = 0;
+ }
+
+ // Browser locale, or custom one if defined.
+ let locale = this.locale;
+ if (!locale) {
+ locale = navigator.languages ? navigator.languages[0] : navigator.language;
+ locale = locale.split('.')[0];
+ }
+ locale = locale.replace('-', '_');
+ const onExit = this.onExit;
+
+ // Godot configuration.
+ return {
+ 'canvas': this.canvas,
+ 'canvasResizePolicy': this.canvasResizePolicy,
+ 'locale': locale,
+ 'persistentDrops': this.persistentDrops,
+ 'virtualKeyboard': this.experimentalVK,
+ 'focusCanvas': this.focusCanvas,
+ 'onExecute': this.onExecute,
+ 'onExit': function (p_code) {
+ cleanup(); // We always need to call the cleanup callback to free memory.
+ if (typeof (onExit) === 'function') {
+ onExit(p_code);
+ }
+ },
+ };
+ };
+ return new Config(initConfig);
+};
+
+/**
+ * Projects exported for the Web expose the :js:class:`Engine` class to the JavaScript environment, that allows
+ * fine control over the engine's start-up process.
+ *
+ * This API is built in an asynchronous manner and requires basic understanding
+ * of `Promises <https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Using_promises>`__.
+ *
+ * @module Engine
+ * @header Web export JavaScript reference
+ */
+const Engine = (function () {
+ const preloader = new Preloader();
+
+ let loadPromise = null;
+ let loadPath = '';
+ let initPromise = null;
+
+ /**
+ * @classdesc The ``Engine`` class provides methods for loading and starting exported projects on the Web. For default export
+ * settings, this is already part of the exported HTML page. To understand practical use of the ``Engine`` class,
+ * see :ref:`Custom HTML page for Web export <doc_customizing_html5_shell>`.
+ *
+ * @description Create a new Engine instance with the given configuration.
+ *
+ * @global
+ * @constructor
+ * @param {EngineConfig} initConfig The initial config for this instance.
+ */
+ function Engine(initConfig) { // eslint-disable-line no-shadow
+ this.config = new InternalConfig(initConfig);
+ this.rtenv = null;
+ }
+
+ /**
+ * Load the engine from the specified base path.
+ *
+ * @param {string} basePath Base path of the engine to load.
+ * @param {number=} [size=0] The file size if known.
+ * @returns {Promise} A Promise that resolves once the engine is loaded.
+ *
+ * @function Engine.load
+ */
+ Engine.load = function (basePath, size) {
+ if (loadPromise == null) {
+ loadPath = basePath;
+ loadPromise = preloader.loadPromise(`${loadPath}.wasm`, size, true);
+ requestAnimationFrame(preloader.animateProgress);
+ }
+ return loadPromise;
+ };
+
+ /**
+ * Unload the engine to free memory.
+ *
+ * This method will be called automatically depending on the configuration. See :js:attr:`unloadAfterInit`.
+ *
+ * @function Engine.unload
+ */
+ Engine.unload = function () {
+ loadPromise = null;
+ };
+
+ /**
+ * Safe Engine constructor, creates a new prototype for every new instance to avoid prototype pollution.
+ * @ignore
+ * @constructor
+ */
+ function SafeEngine(initConfig) {
+ const proto = /** @lends Engine.prototype */ {
+ /**
+ * Initialize the engine instance. Optionally, pass the base path to the engine to load it,
+ * if it hasn't been loaded yet. See :js:meth:`Engine.load`.
+ *
+ * @param {string=} basePath Base path of the engine to load.
+ * @return {Promise} A ``Promise`` that resolves once the engine is loaded and initialized.
+ */
+ init: function (basePath) {
+ if (initPromise) {
+ return initPromise;
+ }
+ if (loadPromise == null) {
+ if (!basePath) {
+ initPromise = Promise.reject(new Error('A base path must be provided when calling `init` and the engine is not loaded.'));
+ return initPromise;
+ }
+ Engine.load(basePath, this.config.fileSizes[`${basePath}.wasm`]);
+ }
+ const me = this;
+ function doInit(promise) {
+ // Care! Promise chaining is bogus with old emscripten versions.
+ // This caused a regression with the Mono build (which uses an older emscripten version).
+ // Make sure to test that when refactoring.
+ return new Promise(function (resolve, reject) {
+ promise.then(function (response) {
+ const cloned = new Response(response.clone().body, { 'headers': [['content-type', 'application/wasm']] });
+ Godot(me.config.getModuleConfig(loadPath, cloned)).then(function (module) {
+ const paths = me.config.persistentPaths;
+ module['initFS'](paths).then(function (err) {
+ me.rtenv = module;
+ if (me.config.unloadAfterInit) {
+ Engine.unload();
+ }
+ resolve();
+ });
+ });
+ });
+ });
+ }
+ preloader.setProgressFunc(this.config.onProgress);
+ initPromise = doInit(loadPromise);
+ return initPromise;
+ },
+
+ /**
+ * Load a file so it is available in the instance's file system once it runs. Must be called **before** starting the
+ * instance.
+ *
+ * If not provided, the ``path`` is derived from the URL of the loaded file.
+ *
+ * @param {string|ArrayBuffer} file The file to preload.
+ *
+ * If a ``string`` the file will be loaded from that path.
+ *
+ * If an ``ArrayBuffer`` or a view on one, the buffer will used as the content of the file.
+ *
+ * @param {string=} path Path by which the file will be accessible. Required, if ``file`` is not a string.
+ *
+ * @returns {Promise} A Promise that resolves once the file is loaded.
+ */
+ preloadFile: function (file, path) {
+ return preloader.preload(file, path, this.config.fileSizes[file]);
+ },
+
+ /**
+ * Start the engine instance using the given override configuration (if any).
+ * :js:meth:`startGame <Engine.prototype.startGame>` can be used in typical cases instead.
+ *
+ * This will initialize the instance if it is not initialized. For manual initialization, see :js:meth:`init <Engine.prototype.init>`.
+ * The engine must be loaded beforehand.
+ *
+ * Fails if a canvas cannot be found on the page, or not specified in the configuration.
+ *
+ * @param {EngineConfig} override An optional configuration override.
+ * @return {Promise} Promise that resolves once the engine started.
+ */
+ start: function (override) {
+ this.config.update(override);
+ const me = this;
+ return me.init().then(function () {
+ if (!me.rtenv) {
+ return Promise.reject(new Error('The engine must be initialized before it can be started'));
+ }
+
+ let config = {};
+ try {
+ config = me.config.getGodotConfig(function () {
+ me.rtenv = null;
+ });
+ } catch (e) {
+ return Promise.reject(e);
+ }
+ // Godot configuration.
+ me.rtenv['initConfig'](config);
+
+ // Preload GDExtension libraries.
+ if (me.config.gdextensionLibs.length > 0 && !me.rtenv['loadDynamicLibrary']) {
+ return Promise.reject(new Error('GDExtension libraries are not supported by this engine version. '
+ + 'Enable "Extensions Support" for your export preset and/or build your custom template with "dlink_enabled=yes".'));
+ }
+ return new Promise(function (resolve, reject) {
+ for (const file of preloader.preloadedFiles) {
+ me.rtenv['copyToFS'](file.path, file.buffer);
+ }
+ preloader.preloadedFiles.length = 0; // Clear memory
+ me.rtenv['callMain'](me.config.args);
+ initPromise = null;
+ me.installServiceWorker();
+ resolve();
+ });
+ });
+ },
+
+ /**
+ * Start the game instance using the given configuration override (if any).
+ *
+ * This will initialize the instance if it is not initialized. For manual initialization, see :js:meth:`init <Engine.prototype.init>`.
+ *
+ * This will load the engine if it is not loaded, and preload the main pck.
+ *
+ * This method expects the initial config (or the override) to have both the :js:attr:`executable` and :js:attr:`mainPack`
+ * properties set (normally done by the editor during export).
+ *
+ * @param {EngineConfig} override An optional configuration override.
+ * @return {Promise} Promise that resolves once the game started.
+ */
+ startGame: function (override) {
+ this.config.update(override);
+ // Add main-pack argument.
+ const exe = this.config.executable;
+ const pack = this.config.mainPack || `${exe}.pck`;
+ this.config.args = ['--main-pack', pack].concat(this.config.args);
+ // Start and init with execName as loadPath if not inited.
+ const me = this;
+ return Promise.all([
+ this.init(exe),
+ this.preloadFile(pack, pack),
+ ]).then(function () {
+ return me.start.apply(me);
+ });
+ },
+
+ /**
+ * Create a file at the specified ``path`` with the passed as ``buffer`` in the instance's file system.
+ *
+ * @param {string} path The location where the file will be created.
+ * @param {ArrayBuffer} buffer The content of the file.
+ */
+ copyToFS: function (path, buffer) {
+ if (this.rtenv == null) {
+ throw new Error('Engine must be inited before copying files');
+ }
+ this.rtenv['copyToFS'](path, buffer);
+ },
+
+ /**
+ * Request that the current instance quit.
+ *
+ * This is akin the user pressing the close button in the window manager, and will
+ * have no effect if the engine has crashed, or is stuck in a loop.
+ *
+ */
+ requestQuit: function () {
+ if (this.rtenv) {
+ this.rtenv['request_quit']();
+ }
+ },
+
+ /**
+ * Install the progressive-web app service worker.
+ * @returns {Promise} The service worker registration promise.
+ */
+ installServiceWorker: function () {
+ if (this.config.serviceWorker && 'serviceWorker' in navigator) {
+ try {
+ return navigator.serviceWorker.register(this.config.serviceWorker);
+ } catch (e) {
+ return Promise.reject(e);
+ }
+ }
+ return Promise.resolve();
+ },
+ };
+
+ Engine.prototype = proto;
+ // Closure compiler exported instance methods.
+ Engine.prototype['init'] = Engine.prototype.init;
+ Engine.prototype['preloadFile'] = Engine.prototype.preloadFile;
+ Engine.prototype['start'] = Engine.prototype.start;
+ Engine.prototype['startGame'] = Engine.prototype.startGame;
+ Engine.prototype['copyToFS'] = Engine.prototype.copyToFS;
+ Engine.prototype['requestQuit'] = Engine.prototype.requestQuit;
+ Engine.prototype['installServiceWorker'] = Engine.prototype.installServiceWorker;
+ // Also expose static methods as instance methods
+ Engine.prototype['load'] = Engine.load;
+ Engine.prototype['unload'] = Engine.unload;
+ return new Engine(initConfig);
+ }
+
+ // Closure compiler exported static methods.
+ SafeEngine['load'] = Engine.load;
+ SafeEngine['unload'] = Engine.unload;
+
+ // Feature-detection utilities.
+ SafeEngine['isWebGLAvailable'] = Features.isWebGLAvailable;
+ SafeEngine['isFetchAvailable'] = Features.isFetchAvailable;
+ SafeEngine['isSecureContext'] = Features.isSecureContext;
+ SafeEngine['isCrossOriginIsolated'] = Features.isCrossOriginIsolated;
+ SafeEngine['isSharedArrayBufferAvailable'] = Features.isSharedArrayBufferAvailable;
+ SafeEngine['isAudioWorkletAvailable'] = Features.isAudioWorkletAvailable;
+ SafeEngine['getMissingFeatures'] = Features.getMissingFeatures;
+
+ return SafeEngine;
+}());
+if (typeof window !== 'undefined') {
+ window['Engine'] = Engine;
+}
--- /dev/null
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <title>You are offline</title>
+ <style>
+html {
+ background-color: #000000;
+ color: #ffffff;
+}
+
+body {
+ font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
+ margin: 2rem;
+}
+
+p {
+ margin-block: 1rem;
+}
+
+button {
+ display: block;
+ padding: 1rem 2rem;
+ margin: 3rem auto 0;
+}
+ </style>
+ </head>
+ <body>
+ <h1>You are offline</h1>
+ <p>This application requires an Internet connection to run for the first time.</p>
+ <p>Press the button below to try reloading:</p>
+ <button type="button">Reload</button>
+ <script>
+document.querySelector('button').addEventListener('click', () => {
+ window.location.reload();
+});
+ </script>
+ </body>
+</html>
--- /dev/null
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dkwkpwa3mhch1"
+path="res://.godot/imported/encuentralo.png-e268c3219d85c91cbf6dee7b94d34391.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://server/html/encuentralo.png"
+dest_files=["res://.godot/imported/encuentralo.png-e268c3219d85c91cbf6dee7b94d34391.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
--- /dev/null
+// This service worker is required to expose an exported Godot project as a
+// Progressive Web App. It provides an offline fallback page telling the user
+// that they need an Internet connection to run the project if desired.
+// Incrementing CACHE_VERSION will kick off the install event and force
+// previously cached resources to be updated from the network.
+/** @type {string} */
+const CACHE_VERSION = '1741828048|6101239422';
+/** @type {string} */
+const CACHE_PREFIX = 'Encuentralo-sw-cache-';
+const CACHE_NAME = CACHE_PREFIX + CACHE_VERSION;
+/** @type {string} */
+const OFFLINE_URL = 'encuentralo.offline.html';
+/** @type {boolean} */
+const ENSURE_CROSSORIGIN_ISOLATION_HEADERS = true;
+// Files that will be cached on load.
+/** @type {string[]} */
+const CACHED_FILES = ["encuentralo.html","encuentralo.js","encuentralo.offline.html","encuentralo.audio.worklet.js","encuentralo.audio.position.worklet.js"];
+// Files that we might not want the user to preload, and will only be cached on first load.
+/** @type {string[]} */
+const CACHEABLE_FILES = ["encuentralo.wasm","encuentralo.pck"];
+const FULL_CACHE = CACHED_FILES.concat(CACHEABLE_FILES);
+
+self.addEventListener('install', (event) => {
+ event.waitUntil(caches.open(CACHE_NAME).then((cache) => cache.addAll(CACHED_FILES)));
+});
+
+self.addEventListener('activate', (event) => {
+ event.waitUntil(caches.keys().then(
+ function (keys) {
+ // Remove old caches.
+ return Promise.all(keys.filter((key) => key.startsWith(CACHE_PREFIX) && key !== CACHE_NAME).map((key) => caches.delete(key)));
+ }
+ ).then(function () {
+ // Enable navigation preload if available.
+ return ('navigationPreload' in self.registration) ? self.registration.navigationPreload.enable() : Promise.resolve();
+ }));
+});
+
+/**
+ * Ensures that the response has the correct COEP/COOP headers
+ * @param {Response} response
+ * @returns {Response}
+ */
+function ensureCrossOriginIsolationHeaders(response) {
+ if (response.headers.get('Cross-Origin-Embedder-Policy') === 'require-corp'
+ && response.headers.get('Cross-Origin-Opener-Policy') === 'same-origin') {
+ return response;
+ }
+
+ const crossOriginIsolatedHeaders = new Headers(response.headers);
+ crossOriginIsolatedHeaders.set('Cross-Origin-Embedder-Policy', 'require-corp');
+ crossOriginIsolatedHeaders.set('Cross-Origin-Opener-Policy', 'same-origin');
+ const newResponse = new Response(response.body, {
+ status: response.status,
+ statusText: response.statusText,
+ headers: crossOriginIsolatedHeaders,
+ });
+
+ return newResponse;
+}
+
+/**
+ * Calls fetch and cache the result if it is cacheable
+ * @param {FetchEvent} event
+ * @param {Cache} cache
+ * @param {boolean} isCacheable
+ * @returns {Response}
+ */
+async function fetchAndCache(event, cache, isCacheable) {
+ // Use the preloaded response, if it's there
+ /** @type { Response } */
+ let response = await event.preloadResponse;
+ if (response == null) {
+ // Or, go over network.
+ response = await self.fetch(event.request);
+ }
+
+ if (ENSURE_CROSSORIGIN_ISOLATION_HEADERS) {
+ response = ensureCrossOriginIsolationHeaders(response);
+ }
+
+ if (isCacheable) {
+ // And update the cache
+ cache.put(event.request, response.clone());
+ }
+
+ return response;
+}
+
+self.addEventListener(
+ 'fetch',
+ /**
+ * Triggered on fetch
+ * @param {FetchEvent} event
+ */
+ (event) => {
+ const isNavigate = event.request.mode === 'navigate';
+ const url = event.request.url || '';
+ const referrer = event.request.referrer || '';
+ const base = referrer.slice(0, referrer.lastIndexOf('/') + 1);
+ const local = url.startsWith(base) ? url.replace(base, '') : '';
+ const isCacheable = FULL_CACHE.some((v) => v === local) || (base === referrer && base.endsWith(CACHED_FILES[0]));
+ if (isNavigate || isCacheable) {
+ event.respondWith((async () => {
+ // Try to use cache first
+ const cache = await caches.open(CACHE_NAME);
+ if (isNavigate) {
+ // Check if we have full cache during HTML page request.
+ /** @type {Response[]} */
+ const fullCache = await Promise.all(FULL_CACHE.map((name) => cache.match(name)));
+ const missing = fullCache.some((v) => v === undefined);
+ if (missing) {
+ try {
+ // Try network if some cached file is missing (so we can display offline page in case).
+ const response = await fetchAndCache(event, cache, isCacheable);
+ return response;
+ } catch (e) {
+ // And return the hopefully always cached offline page in case of network failure.
+ console.error('Network error: ', e); // eslint-disable-line no-console
+ return caches.match(OFFLINE_URL);
+ }
+ }
+ }
+ let cached = await cache.match(event.request);
+ if (cached != null) {
+ if (ENSURE_CROSSORIGIN_ISOLATION_HEADERS) {
+ cached = ensureCrossOriginIsolationHeaders(cached);
+ }
+ return cached;
+ }
+ // Try network if don't have it in cache.
+ const response = await fetchAndCache(event, cache, isCacheable);
+ return response;
+ })());
+ } else if (ENSURE_CROSSORIGIN_ISOLATION_HEADERS) {
+ event.respondWith((async () => {
+ let response = await fetch(event.request);
+ response = ensureCrossOriginIsolationHeaders(response);
+ return response;
+ })());
+ }
+ }
+);
+
+self.addEventListener('message', (event) => {
+ // No cross origin
+ if (event.origin !== self.origin) {
+ return;
+ }
+ const id = event.source.id || '';
+ const msg = event.data || '';
+ // Ensure it's one of our clients.
+ self.clients.get(id).then(function (client) {
+ if (!client) {
+ return; // Not a valid client.
+ }
+ if (msg === 'claim') {
+ self.skipWaiting().then(() => self.clients.claim());
+ } else if (msg === 'clear') {
+ caches.delete(CACHE_NAME);
+ } else if (msg === 'update') {
+ self.skipWaiting().then(() => self.clients.claim()).then(() => self.clients.matchAll()).then((all) => all.forEach((c) => c.navigate(c.url)));
+ }
+ });
+});
+
--- /dev/null
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0">
+ <title>Encuentralo</title>
+ <style>
+html, body, #canvas {
+ margin: 0;
+ padding: 0;
+ border: 0;
+}
+
+body {
+ color: white;
+ background-color: black;
+ overflow: hidden;
+ touch-action: none;
+}
+
+#canvas {
+ display: block;
+}
+
+#canvas:focus {
+ outline: none;
+}
+
+#status, #status-splash, #status-progress {
+ position: absolute;
+ left: 0;
+ right: 0;
+}
+
+#status, #status-splash {
+ top: 0;
+ bottom: 0;
+}
+
+#status {
+ background-color: #242424;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ visibility: hidden;
+}
+
+#status-splash {
+ max-height: 100%;
+ max-width: 100%;
+ margin: auto;
+}
+
+#status-splash.show-image--false {
+ display: none;
+}
+
+#status-splash.fullsize--true {
+ height: 100%;
+ width: 100%;
+ object-fit: contain;
+}
+
+#status-splash.use-filter--false {
+ image-rendering: pixelated;
+}
+
+#status-progress, #status-notice {
+ display: none;
+}
+
+#status-progress {
+ bottom: 10%;
+ width: 50%;
+ margin: 0 auto;
+}
+
+#status-notice {
+ background-color: #5b3943;
+ border-radius: 0.5rem;
+ border: 1px solid #9b3943;
+ color: #e0e0e0;
+ font-family: 'Noto Sans', 'Droid Sans', Arial, sans-serif;
+ line-height: 1.3;
+ margin: 0 2rem;
+ overflow: hidden;
+ padding: 1rem;
+ text-align: center;
+ z-index: 1;
+}
+ </style>
+
+ </head>
+ <body>
+ <canvas id="canvas">
+ Your browser does not support the canvas tag.
+ </canvas>
+
+ <noscript>
+ Your browser does not support JavaScript.
+ </noscript>
+
+ <div id="status">
+ <img id="status-splash" class="show-image--true fullsize--true use-filter--true" src="encuentralo.png" alt="">
+ <progress id="status-progress"></progress>
+ <div id="status-notice"></div>
+ </div>
+
+ <script src="encuentralo.js"></script>
+ <script>
+const GODOT_CONFIG = {"args":[],"canvasResizePolicy":2,"ensureCrossOriginIsolationHeaders":true,"executable":"encuentralo","experimentalVK":false,"fileSizes":{"encuentralo.pck":3964800,"encuentralo.wasm":52106500},"focusCanvas":true,"gdextensionLibs":[]};
+const GODOT_THREADS_ENABLED = false;
+const engine = new Engine(GODOT_CONFIG);
+
+(function () {
+ const statusOverlay = document.getElementById('status');
+ const statusProgress = document.getElementById('status-progress');
+ const statusNotice = document.getElementById('status-notice');
+
+ let initializing = true;
+ let statusMode = '';
+
+ function setStatusMode(mode) {
+ if (statusMode === mode || !initializing) {
+ return;
+ }
+ if (mode === 'hidden') {
+ statusOverlay.remove();
+ initializing = false;
+ return;
+ }
+ statusOverlay.style.visibility = 'visible';
+ statusProgress.style.display = mode === 'progress' ? 'block' : 'none';
+ statusNotice.style.display = mode === 'notice' ? 'block' : 'none';
+ statusMode = mode;
+ }
+
+ function setStatusNotice(text) {
+ while (statusNotice.lastChild) {
+ statusNotice.removeChild(statusNotice.lastChild);
+ }
+ const lines = text.split('\n');
+ lines.forEach((line) => {
+ statusNotice.appendChild(document.createTextNode(line));
+ statusNotice.appendChild(document.createElement('br'));
+ });
+ }
+
+ function displayFailureNotice(err) {
+ console.error(err);
+ if (err instanceof Error) {
+ setStatusNotice(err.message);
+ } else if (typeof err === 'string') {
+ setStatusNotice(err);
+ } else {
+ setStatusNotice('An unknown error occurred.');
+ }
+ setStatusMode('notice');
+ initializing = false;
+ }
+
+ const missing = Engine.getMissingFeatures({
+ threads: GODOT_THREADS_ENABLED,
+ });
+
+ if (missing.length !== 0) {
+ if (GODOT_CONFIG['serviceWorker'] && GODOT_CONFIG['ensureCrossOriginIsolationHeaders'] && 'serviceWorker' in navigator) {
+ let serviceWorkerRegistrationPromise;
+ try {
+ serviceWorkerRegistrationPromise = navigator.serviceWorker.getRegistration();
+ } catch (err) {
+ serviceWorkerRegistrationPromise = Promise.reject(new Error('Service worker registration failed.'));
+ }
+ // There's a chance that installing the service worker would fix the issue
+ Promise.race([
+ serviceWorkerRegistrationPromise.then((registration) => {
+ if (registration != null) {
+ return Promise.reject(new Error('Service worker already exists.'));
+ }
+ return registration;
+ }).then(() => engine.installServiceWorker()),
+ // For some reason, `getRegistration()` can stall
+ new Promise((resolve) => {
+ setTimeout(() => resolve(), 2000);
+ }),
+ ]).then(() => {
+ // Reload if there was no error.
+ window.location.reload();
+ }).catch((err) => {
+ console.error('Error while registering service worker:', err);
+ });
+ } else {
+ // Display the message as usual
+ const missingMsg = 'Error\nThe following features required to run Godot projects on the Web are missing:\n';
+ displayFailureNotice(missingMsg + missing.join('\n'));
+ }
+ } else {
+ setStatusMode('progress');
+ engine.startGame({
+ 'onProgress': function (current, total) {
+ if (current > 0 && total > 0) {
+ statusProgress.value = current;
+ statusProgress.max = total;
+ } else {
+ statusProgress.removeAttribute('value');
+ statusProgress.removeAttribute('max');
+ }
+ },
+ }).then(() => {
+ setStatusMode('hidden');
+ }, displayFailureNotice);
+ }
+}());
+ </script>
+ </body>
+</html>
+
--- /dev/null
+
+#user http;
+worker_processes 1;
+
+#error_log logs/error.log;
+#error_log logs/error.log notice;
+#error_log logs/error.log info;
+
+#pid logs/nginx.pid;
+
+
+events {
+ worker_connections 1024;
+}
+
+
+http {
+ include mime.types;
+ default_type application/octet-stream;
+
+ #log_format main '$remote_addr - $remote_user [$time_local] "$request" '
+ # '$status $body_bytes_sent "$http_referer" '
+ # '"$http_user_agent" "$http_x_forwarded_for"';
+
+ #access_log logs/access.log main;
+
+ sendfile on;
+ #tcp_nopush on;
+
+ #keepalive_timeout 0;
+ keepalive_timeout 65;
+
+ #gzip on;
+
+ server {
+ listen 80;
+ server_name localhost;
+
+ #charset koi8-r;
+
+ #access_log logs/host.access.log main;
+
+ location / {
+ root /home/randy/Documents/Encuentralo/server/html;
+ index encuentralo.html;
+ autoindex on;
+ }
+
+ #error_page 404 /404.html;
+
+ # redirect server error pages to the static page /50x.html
+ #
+ error_page 500 502 503 504 /50x.html;
+ location = /50x.html {
+ root /usr/share/nginx/html;
+ }
+
+ # proxy the PHP scripts to Apache listening on 127.0.0.1:80
+ #
+ #location ~ \.php$ {
+ # proxy_pass http://127.0.0.1;
+ #}
+
+ # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
+ #
+ #location ~ \.php$ {
+ # root html;
+ # fastcgi_pass 127.0.0.1:9000;
+ # fastcgi_index index.php;
+ # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
+ # include fastcgi_params;
+ #}
+
+ # deny access to .htaccess files, if Apache's document root
+ # concurs with nginx's one
+ #
+ #location ~ /\.ht {
+ # deny all;
+ #}
+ }
+
+
+ # another virtual host using mix of IP-, name-, and port-based configuration
+ #
+ #server {
+ # listen 8000;
+ # listen somename:8080;
+ # server_name somename alias another.alias;
+
+ # location / {
+ # root html;
+ # index index.html index.htm;
+ # }
+ #}
+
+
+ # HTTPS server
+ #
+ #server {
+ # listen 443 ssl;
+ # server_name localhost;
+
+ # ssl_certificate cert.pem;
+ # ssl_certificate_key cert.key;
+
+ # ssl_session_cache shared:SSL:1m;
+ # ssl_session_timeout 5m;
+
+ # ssl_ciphers HIGH:!aNULL:!MD5;
+ # ssl_prefer_server_ciphers on;
+
+ # location / {
+ # root html;
+ # index index.html index.htm;
+ # }
+ #}
+
+}