diff --git a/ExampleDialogue/Sally.yarn b/ExampleDialogue/Sally.yarn index 5147c7d..7f4ae16 100644 --- a/ExampleDialogue/Sally.yarn +++ b/ExampleDialogue/Sally.yarn @@ -1,7 +1,7 @@ title: Sally.Watch tags: colorID: -position: 500, 400 +position: 600, 400 --- Sally: Not really. #line:8c3f98 Sally: Same old nebula, doing the same old thing. #line:24c418 @@ -12,24 +12,17 @@ Sally: Oh, Ship wanted to see you. Go say hi to it. #line:df4eaf Sally: Go say hi again. #line:5df323 <> === -title: Sally.Exit -tags: -colorID: -position: 100, 400 ---- -Sally: Bye. #line:60c282 -=== title: Sally.Sorry tags: colorID: -position: 900, 400 +position: 600, 700 --- Sally: Yeah. Don't do it again. #line:d7df49 === title: Sally tags: colorID: -position: 500, 100 +position: -100, 400 --- <> Player: Hey, Sally. #line:794945 @@ -49,4 +42,4 @@ position: 500, 100 [[Sorry about the console.|Sally.Sorry]] #line:0a7e39 <> [[See you later.|Sally.Exit]] #line:0facf7 -=== +=== \ No newline at end of file diff --git a/addons/Wol/core/compiler/Parser.gd b/addons/Wol/core/compiler/Parser.gd index beb2770..e266b54 100644 --- a/addons/Wol/core/compiler/Parser.gd +++ b/addons/Wol/core/compiler/Parser.gd @@ -199,10 +199,8 @@ class Statement extends ParseNode: while parser.next_symbol_is([Constants.TokenType.TagMarker]): parser.expect_symbol([Constants.TokenType.TagMarker]) - - if parser.next_symbol_is([Constants.TokenType.Identifier]): - var tag = parser.expect_symbol([Constants.TokenType.Identifier]).value - tags.append(tag) + var tag = parser.expect_symbol([Constants.TokenType.Identifier]).value + tags.append(tag) if tags.size() > 0: self.tags = tags @@ -432,9 +430,9 @@ class ShortCutOption extends ParseNode: elif parser.next_symbols_are([Constants.TokenType.TagMarker, Constants.TokenType.Identifier]): parser.expect_symbol([Constants.TokenType.TagMarker]) - if parser.next_token_is([Constants.TokenType.Identifier]): - var tag = parser.expect_symbol([Constants.TokenType.Identifier]).value - tags.append(tag) + var tag = parser.expect_symbol([Constants.TokenType.Identifier]).value + tags.append(tag) + self.tags = tags # parse remaining statements @@ -511,9 +509,9 @@ class OptionStatement extends ParseNode: # NOTE: if there is a | get the next string if parser.next_symbol_is([Constants.TokenType.OptionDelimit]): parser.expect_symbol([Constants.TokenType.OptionDelimit]) - if parser.next_symbol_is([Constants.TokenType.Text, Constants.TokenType.Identifier]): - var t = parser.expect_symbol([Constants.TokenType.Text, Constants.TokenType.Identifier]) - strings.append(t.value as String) + var t = parser.expect_symbol([Constants.TokenType.Text, Constants.TokenType.Identifier]) + + strings.append(t.value as String) label = strings[0] if strings.size() > 1 else '' destination = strings[1] if strings.size() > 1 else strings[0] @@ -947,12 +945,8 @@ class Assignment extends ParseNode: func _init(parent, parser).(parent, parser): parser.expect_symbol([Constants.TokenType.BeginCommand]) parser.expect_symbol([Constants.TokenType.Set]) - - if parser.next_symbol_is([Constants.TokenType.Variable]): - destination = parser.expect_symbol([Constants.TokenType.Variable]).value - if parser.next_symbol_is(Assignment.valid_ops()): - operation = parser.expect_symbol(Assignment.valid_ops()).type - + destination = parser.expect_symbol([Constants.TokenType.Variable]).value + operation = parser.expect_symbol(Assignment.valid_ops()).type value = ExpressionNode.parse(self, parser) parser.expect_symbol([Constants.TokenType.EndCommand]) diff --git a/addons/Wol/editor/AboutDialog.gd b/addons/Wol/editor/AboutDialog.gd new file mode 100644 index 0000000..91e1b6e --- /dev/null +++ b/addons/Wol/editor/AboutDialog.gd @@ -0,0 +1,7 @@ +extends WindowDialog + +func _ready(): + $RichTextLabel.connect('meta_clicked', self, '_on_url_click') + +func _on_url_click(url): + OS.shell_open(url) diff --git a/addons/Wol/editor/Editor.gd b/addons/Wol/editor/Editor.gd index 16318d6..cfa3117 100644 --- a/addons/Wol/editor/Editor.gd +++ b/addons/Wol/editor/Editor.gd @@ -13,6 +13,10 @@ func _ready(): $Tools/Right/Close.connect('pressed', self, 'close') $Tools/Right/Delete.connect('pressed', self, '_on_delete_pressed') + for child in $Tools/Left/Title.get_children(): + if child is VScrollBar: + child.rect_scale = Vector2.ZERO + func close(): hide() preview.close() @@ -20,7 +24,7 @@ func close(): func open_node(graph_node): current_graph_node = graph_node - var text_edit = graph_node.get_node('TextEdit') + var text_edit = graph_node.get_node('Wrapper/TextEdit') text_edit.get_parent().remove_child(text_edit) $Content.add_child(text_edit) toggle_text_edit(text_edit) @@ -61,12 +65,12 @@ func _on_delete_pressed(): wol_editor.confirm_delete_node(current_graph_node) func _on_title_changed(): - current_graph_node.node.title = $HBoxContainer/TextEdit.text + current_graph_node.node.title = $Tools/Left/Title.text current_graph_node.compile() func _on_visibility_changed(): if not visible: var text_edit = $Content/TextEdit $Content.remove_child(text_edit) - current_graph_node.add_child(text_edit) + current_graph_node.get_node('Wrapper').add_child(text_edit) toggle_text_edit(text_edit) diff --git a/addons/Wol/editor/GraphNodeTemplate.tscn b/addons/Wol/editor/GraphNodeTemplate.tscn deleted file mode 100644 index 9f371a8..0000000 --- a/addons/Wol/editor/GraphNodeTemplate.tscn +++ /dev/null @@ -1,48 +0,0 @@ -[gd_scene load_steps=3 format=2] - -[ext_resource path="res://addons/Wol/editor/WolGraphNode.gd" type="Script" id=1] - -[sub_resource type="StyleBoxFlat" id=1] -content_margin_left = 4.0 -content_margin_right = 4.0 -content_margin_top = 26.0 -content_margin_bottom = 4.0 -corner_radius_top_left = 4 -corner_radius_top_right = 4 -corner_radius_bottom_right = 4 -corner_radius_bottom_left = 4 - -[node name="GraphNodeTemplate" type="GraphNode"] -margin_left = 500.0 -margin_top = 1068.0 -margin_right = 937.0 -margin_bottom = 1459.0 -mouse_filter = 1 -custom_styles/frame = SubResource( 1 ) -title = "Hello world" -offset = Vector2( 500, 500 ) -resizable = true -slot/0/left_enabled = false -slot/0/left_type = 0 -slot/0/left_color = Color( 1, 1, 1, 1 ) -slot/0/right_enabled = false -slot/0/right_type = 0 -slot/0/right_color = Color( 1, 1, 1, 1 ) -script = ExtResource( 1 ) -__meta__ = { -"_edit_use_anchors_": false -} - -[node name="TextEdit" type="TextEdit" parent="."] -margin_left = 4.0 -margin_top = 26.0 -margin_right = 433.0 -margin_bottom = 387.0 -mouse_filter = 2 -size_flags_horizontal = 3 -size_flags_vertical = 3 -syntax_highlighting = true -fold_gutter = true -context_menu_enabled = false -virtual_keyboard_enabled = false -wrap_enabled = true diff --git a/addons/Wol/editor/InlineTextEdit.gd b/addons/Wol/editor/InlineTextEdit.gd new file mode 100644 index 0000000..6575012 --- /dev/null +++ b/addons/Wol/editor/InlineTextEdit.gd @@ -0,0 +1,15 @@ +extends LineEdit + +export var disable_spaces = false + +func _ready(): + connect('text_changed', self, '_on_text_changed') + +func _on_text_changed(_new_text): + if disable_spaces and ' ' in text: + var cursor_position = text.find(' ') + text = text.replace(' ', '') + caret_position = cursor_position + + emit_signal('text_changed') + diff --git a/addons/Wol/editor/Panel.png b/addons/Wol/editor/Panel.png new file mode 100644 index 0000000..9fbd17b Binary files /dev/null and b/addons/Wol/editor/Panel.png differ diff --git a/addons/Wol/editor/Panel.png.import b/addons/Wol/editor/Panel.png.import new file mode 100644 index 0000000..573d4f5 --- /dev/null +++ b/addons/Wol/editor/Panel.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/Panel.png-a2fa39f4cf0ca5f7ab0404c39aed6351.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/Wol/editor/Panel.png" +dest_files=[ "res://.import/Panel.png-a2fa39f4cf0ca5f7ab0404c39aed6351.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/addons/Wol/editor/Preview.gd b/addons/Wol/editor/Preview.gd index 5396303..2b04488 100644 --- a/addons/Wol/editor/Preview.gd +++ b/addons/Wol/editor/Preview.gd @@ -19,6 +19,10 @@ func _ready(): $Tools/Left/Restart.connect('pressed', self, 'restart') $Tools/Right/Close.connect('pressed', self, 'close') + for child in $Tools/Left/Protagonist.get_children(): + if child is VScrollBar: + child.rect_scale = Vector2.ZERO + func open_node(graph_node): current_graph_node = graph_node @@ -124,6 +128,8 @@ func _on_option_pressed(option): $Options/List.remove_child(child) child.queue_free() + grab_focus() + func _on_gui_input(event): if visible: if event is InputEventMouseButton and event.doubleclick: diff --git a/addons/Wol/editor/ScrollContainerWithScrollWheel.gd b/addons/Wol/editor/ScrollContainerWithScrollWheel.gd new file mode 100644 index 0000000..8169063 --- /dev/null +++ b/addons/Wol/editor/ScrollContainerWithScrollWheel.gd @@ -0,0 +1,17 @@ +extends ScrollContainer + + +func _ready(): + connect('gui_input', self, '_on_gui_input') + +func _on_gui_input(event): + if event is InputEventPanGesture: + scroll_vertical += event.delta.y * .1 + + # NOTE: Maybe smooth the scrolling? + if event is InputEventMouseButton: + var factor = event.factor if event.factor != 0 else 1.0 + if event.button_index == BUTTON_WHEEL_UP: + scroll_vertical += 1 * factor + elif event.button_index == BUTTON_WHEEL_DOWN: + scroll_vertical -= 1 * factor diff --git a/addons/Wol/editor/WolEditor.gd b/addons/Wol/editor/WolEditor.gd index 6d1ff4a..fb5878a 100644 --- a/addons/Wol/editor/WolEditor.gd +++ b/addons/Wol/editor/WolEditor.gd @@ -5,35 +5,62 @@ const Compiler = preload('res://addons/Wol/core/compiler/Compiler.gd') onready var GraphNodeTemplate = $GraphNodeTemplate var path -var refreshed = false var selected_node +var saved_all_changes = false onready var original_delete_node_dialog = $DeleteNodeDialog.dialog_text +onready var inside_godot_editor = not get_tree().current_scene and Engine.editor_hint -# TODO: Conditionally load in theme based on Editor or standalone -# TODO: Make deleting undo-able -# TODO: Implement alternative "single" line style of connecting +# Standalone +# TODO: Add right-click offset scrolling +# TODO: Add ESC as a way to go out of a "Preview" or "Editor" +# TODO: Add confirm window for creating new file if working on another +# TODO: Make arrow keys / WASD select next node +# TODO: Make ENTER key open a editor +# FIXME: Title debounce / space (\s) registering bug +# FIXME: Titles not working +# FIXME: Contextualize global _input events + +# Godot Editor +# FIXME: Make all parts of the code "tool"s and safekeep its execution while in editor + +# Web version # TODO: Test out web version # TODO: Make web loading / saving work -# TODO: Make theme for standalone editor -# TODO: Make a "Godot editor" version of the editor theme -# FIXME: Make lines render appropriately after connecting -# FIXME: Make all parts of the code "tool"s and safekeep its execution while in editor -# FIXME: Fix changing of titles + +# Nice to have +# TODO: Make deleting undo-able +# TODO: Try to replicate positioning from existing Yarn Editor +# TODO: Implement settings +# TODO: Add more settings (like custom theme) +# TODO: Make shortcut for opening preview (CMD+P) +# TODO: More messages in preview for different things (command, start, stop, choices, log) func _ready(): for menu_button in [$Menu/File]: menu_button.get_popup().connect('index_pressed', self, '_on_menu_pressed', [menu_button.get_popup()]) + $Menu/Settings.connect('pressed', self, 'show_settings') + $Menu/About.connect('pressed', self, 'show_about') + $GraphEdit.connect('gui_input', self, '_on_graph_edit_input') $GraphEdit.connect('node_selected', self, '_on_node_selected', [true]) $GraphEdit.connect('node_unselected', self, '_on_node_selected', [false]) + $GraphEdit.connect('_end_node_move', self, 'reconnect_nodes') $DeleteNodeDialog.connect('confirmed', self, 'delete_node') path = 'res://dialogue.wol' build_nodes() + if inside_godot_editor: + theme = null + + for child in $HBoxContainer.get_children(): + child.size_flags_horizontal = SIZE_EXPAND_FILL + + $HBoxContainer.set('custom_constants/seperation', 0) + func create_node(position = Vector2.ZERO): var graph_node = GraphNodeTemplate.duplicate() $GraphEdit.add_child(graph_node) @@ -106,7 +133,6 @@ func save_as(file_path = null): file.open(file_path, File.WRITE) file.store_string(serialize_to_file()) file.close() - print('saved file!') func open(): $FileDialog.mode = $FileDialog.MODE_OPEN_FILE @@ -134,6 +160,12 @@ func new(): path = null +func show_settings(): + $SettingsDialog.popup() + +func show_about(): + $AboutDialog.popup() + func _on_menu_pressed(index, node): match(node.get_item_text(index)): 'New': @@ -145,10 +177,57 @@ func _on_menu_pressed(index, node): 'Open': open() -# FIXME: Come up with better way of showing connections between nodes func _on_graph_node_recompiled(_graph_node): - if refreshed: return + reconnect_nodes() + +func reconnect_nodes(): $GraphEdit.clear_connections() + + # TODO: Implement setting for determining style + if true: + connect_nodes_single_style() + else: + connect_nodes_godot_style() + +func connect_nodes_single_style(): + for graph_node in $GraphEdit.get_children(): + if not graph_node is GraphNode: + continue + + graph_node.set_slot_enabled_left(0, false) + graph_node.set_slot_enabled_right(0, false) + + for graph_node in $GraphEdit.get_children(): + if not graph_node is GraphNode: + continue + + var connections = graph_node.get_connections() + + for connection in connections: + if not $GraphEdit.has_node(connection): + continue + + var other_graph_node = $GraphEdit.get_node(connection) + var destination_is_to_the_right = graph_node.offset.x <= other_graph_node.offset.x + + if destination_is_to_the_right: + graph_node.set_slot_enabled_right(0, true) + graph_node.set_slot_type_right(0, 1) + + other_graph_node.set_slot_enabled_left(0, true) + other_graph_node.set_slot_type_left(0, 1) + + $GraphEdit.connect_node(graph_node.name, 0, other_graph_node.name, 0) + else: + graph_node.set_slot_enabled_left(0, true) + graph_node.set_slot_type_left(0, 1) + + other_graph_node.set_slot_enabled_right(0, true) + other_graph_node.set_slot_type_right(0, 1) + + $GraphEdit.connect_node(other_graph_node.name, 0, graph_node.name, 0) + +func connect_nodes_godot_style(): for graph_node in $GraphEdit.get_children(): if not graph_node is GraphNode: continue @@ -167,10 +246,6 @@ func _on_graph_node_recompiled(_graph_node): $GraphEdit.connect_node(graph_node.name, 0, connection, 0) - refreshed = true - yield(get_tree().create_timer(.3), 'timeout') - refreshed = false - func _on_graph_node_input(event, graph_node): if event is InputEventMouseButton \ and event.doubleclick and event.button_index == BUTTON_LEFT: @@ -190,8 +265,24 @@ func _on_graph_edit_input(event): func _input(event): if event is InputEventKey \ - and not event.pressed and event.scancode == KEY_DELETE \ + and not event.pressed and event.physical_scancode == KEY_DELETE \ and selected_node \ and not $HBoxContainer/Editor.visible: confirm_delete_node() + if event is InputEventKey: + var combination = OS.get_scancode_string(event.get_physical_scancode_with_modifiers()) + + if OS.get_name() == 'OSX': + combination = combination.replace('Command', 'Control') + + match combination: + 'Control+N': + new() + 'Control+S': + save_as(path) + 'Shift+Control+S': + save_as() + 'Control+O': + open() + diff --git a/addons/Wol/editor/WolEditor.tscn b/addons/Wol/editor/WolEditor.tscn index 569e23b..bd3311f 100644 --- a/addons/Wol/editor/WolEditor.tscn +++ b/addons/Wol/editor/WolEditor.tscn @@ -1,3 +1,691 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:20608d086e461b0de5a212791ad0d6e3213b20de161612463fff159618137ef9 -size 611270 +[gd_scene load_steps=15 format=2] + +[ext_resource path="res://addons/Wol/editor/Editor.gd" type="Script" id=1] +[ext_resource path="res://addons/Wol/editor/WolEditor.gd" type="Script" id=2] +[ext_resource path="res://addons/Wol/editor/WolGraphNode.gd" type="Script" id=3] +[ext_resource path="res://addons/Wol/editor/Preview.gd" type="Script" id=4] +[ext_resource path="res://addons/Wol/Wol.gd" type="Script" id=5] +[ext_resource path="res://addons/Wol/editor/editor_default_font.tres" type="DynamicFont" id=6] +[ext_resource path="res://addons/Wol/editor/editor_theme.tres" type="Theme" id=7] +[ext_resource path="res://addons/Wol/editor/InlineTextEdit.gd" type="Script" id=8] +[ext_resource path="res://addons/Wol/editor/ScrollContainerWithScrollWheel.gd" type="Script" id=9] +[ext_resource path="res://addons/Wol/editor/ScrollContainerWithScrollWheel.gd" type="Script" id=10] +[ext_resource path="res://addons/Wol/icon-white-with-stroke.svg" type="Texture" id=11] +[ext_resource path="res://addons/Wol/editor/AboutDialog.gd" type="Script" id=12] + +[sub_resource type="StyleBoxEmpty" id=2] + +[sub_resource type="StyleBoxFlat" id=328] +bg_color = Color( 0.345098, 0.345098, 0.345098, 1 ) +corner_radius_top_left = 8 +corner_radius_top_right = 8 +corner_radius_bottom_right = 8 +corner_radius_bottom_left = 8 + +[node name="WolEditor" type="Panel"] +anchor_right = 1.0 +anchor_bottom = 1.0 +rect_rotation = 0.00422679 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme = ExtResource( 7 ) +script = ExtResource( 2 ) +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="Menu" type="HBoxContainer" parent="."] +anchor_right = 1.0 +rect_min_size = Vector2( 0, 32 ) +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="File" type="MenuButton" parent="Menu"] +margin_right = 38.0 +margin_bottom = 32.0 +text = "File" +items = [ "New", null, 0, false, false, 0, 0, null, "", false, "Open", null, 0, false, false, 1, 0, null, "", false, "Save", null, 0, false, false, 2, 0, null, "", false, "Save as...", null, 0, false, false, 3, 0, null, "", false ] +switch_on_hover = true + +[node name="Settings" type="Button" parent="Menu"] +margin_left = 42.0 +margin_right = 112.0 +margin_bottom = 32.0 +focus_mode = 0 +enabled_focus_mode = 0 +text = "Settings" +flat = true + +[node name="About" type="Button" parent="Menu"] +margin_left = 116.0 +margin_right = 171.0 +margin_bottom = 32.0 +focus_mode = 0 +enabled_focus_mode = 0 +text = "About" +flat = true + +[node name="GraphNodeTemplate" type="GraphNode" parent="."] +visible = false +margin_left = 2.0 +margin_top = 318.0 +margin_right = 322.0 +margin_bottom = 575.0 +mouse_filter = 1 +title = "Hello world" +offset = Vector2( 120, 0 ) +resizable = true +slot/0/left_enabled = false +slot/0/left_type = 0 +slot/0/left_color = Color( 1, 1, 1, 1 ) +slot/0/right_enabled = false +slot/0/right_type = 0 +slot/0/right_color = Color( 1, 1, 1, 1 ) +script = ExtResource( 3 ) +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="Wrapper" type="Control" parent="GraphNodeTemplate"] +margin_left = 8.0 +margin_top = 24.0 +margin_right = 312.0 +margin_bottom = 249.0 +mouse_filter = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="TextEdit" type="TextEdit" parent="GraphNodeTemplate/Wrapper"] +anchor_right = 1.0 +anchor_bottom = 1.0 +mouse_filter = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +custom_colors/safe_line_number_color = Color( 1, 0, 0, 1 ) +syntax_highlighting = true +fold_gutter = true +context_menu_enabled = false +virtual_keyboard_enabled = false +wrap_enabled = true +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="ErrorGutter" type="Label" parent="GraphNodeTemplate/Wrapper/TextEdit"] +visible = false +anchor_top = 1.0 +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 16.0 +margin_top = -28.0 +margin_right = -16.0 +margin_bottom = -8.0 +grow_horizontal = 0 +grow_vertical = 0 +custom_colors/font_color = Color( 1, 0, 0, 1 ) +valign = 1 +autowrap = true +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="Panel" type="Panel" parent="GraphNodeTemplate/Wrapper/TextEdit/ErrorGutter"] +show_behind_parent = true +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = -16.0 +margin_top = -8.0 +margin_right = 16.0 +margin_bottom = 8.0 +mouse_filter = 2 +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="TextDebounce" type="Timer" parent="GraphNodeTemplate"] +one_shot = true + +[node name="GraphEdit" type="GraphEdit" parent="."] +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_top = 32.0 +custom_styles/bg = SubResource( 2 ) +snap_distance = 100 +show_zoom_label = true +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="HBoxContainer" type="HBoxContainer" parent="."] +anchor_top = 0.053 +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_top = 0.199999 +mouse_filter = 2 +custom_constants/separation = 32 +alignment = 1 +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="Preview" type="Panel" parent="HBoxContainer"] +margin_left = 352.0 +margin_right = 672.0 +margin_bottom = 568.0 +rect_min_size = Vector2( 320, 0 ) +focus_mode = 1 +script = ExtResource( 4 ) +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="Wol" type="Node" parent="HBoxContainer/Preview"] +script = ExtResource( 5 ) +variable_storage = { +} + +[node name="Tools" type="HBoxContainer" parent="HBoxContainer/Preview"] +anchor_right = 1.0 +margin_left = 4.0 +margin_top = 4.0 +margin_right = -4.0 +margin_bottom = 27.8 +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="Left" type="HBoxContainer" parent="HBoxContainer/Preview/Tools"] +margin_right = 280.0 +margin_bottom = 26.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="Label" type="Label" parent="HBoxContainer/Preview/Tools/Left"] +margin_top = 3.0 +margin_right = 89.0 +margin_bottom = 23.0 +text = "Protagonist: " + +[node name="Protagonist" type="LineEdit" parent="HBoxContainer/Preview/Tools/Left"] +margin_left = 93.0 +margin_right = 165.0 +margin_bottom = 26.0 +rect_min_size = Vector2( 72, 0 ) +script = ExtResource( 8 ) + +[node name="Next" type="Button" parent="HBoxContainer/Preview/Tools/Left"] +margin_left = 169.0 +margin_right = 214.0 +margin_bottom = 26.0 +focus_mode = 0 +enabled_focus_mode = 0 +text = "Next" +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="Restart" type="Button" parent="HBoxContainer/Preview/Tools/Left"] +margin_left = 218.0 +margin_right = 280.0 +margin_bottom = 26.0 +focus_mode = 0 +enabled_focus_mode = 0 +text = "Restart" +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="Right" type="HBoxContainer" parent="HBoxContainer/Preview/Tools"] +margin_left = 284.0 +margin_right = 312.0 +margin_bottom = 26.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 +alignment = 2 +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="Close" type="Button" parent="HBoxContainer/Preview/Tools/Right"] +margin_left = 4.0 +margin_right = 28.0 +margin_bottom = 26.0 +rect_min_size = Vector2( 24, 0 ) +text = "x" +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="Content" type="ScrollContainer" parent="HBoxContainer/Preview"] +anchor_right = 1.0 +anchor_bottom = 0.803 +margin_top = 42.0 +margin_bottom = 4.89603 +mouse_filter = 1 +follow_focus = true +scroll_horizontal_enabled = false +script = ExtResource( 9 ) +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="List" type="VBoxContainer" parent="HBoxContainer/Preview/Content"] +margin_right = 320.0 +margin_bottom = 419.0 +mouse_filter = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +custom_constants/separation = 18 +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="PaddingTop" type="Control" parent="HBoxContainer/Preview/Content/List"] +margin_right = 320.0 +mouse_filter = 2 + +[node name="LineTemplate" type="HBoxContainer" parent="HBoxContainer/Preview/Content/List"] +visible = false +margin_top = 18.0 +margin_right = 320.0 +margin_bottom = 33.0 +mouse_filter = 2 +alignment = 1 + +[node name="PaddingLeft" type="Control" parent="HBoxContainer/Preview/Content/List/LineTemplate"] +margin_right = 16.0 +margin_bottom = 15.0 +rect_min_size = Vector2( 16, 0 ) +mouse_filter = 2 + +[node name="RichTextLabel" type="RichTextLabel" parent="HBoxContainer/Preview/Content/List/LineTemplate"] +margin_left = 20.0 +margin_right = 300.0 +margin_bottom = 15.0 +rect_clip_content = false +mouse_filter = 2 +size_flags_horizontal = 3 +bbcode_enabled = true +bbcode_text = "Hello world" +text = "Hello world" +fit_content_height = true + +[node name="Panel" type="Panel" parent="HBoxContainer/Preview/Content/List/LineTemplate/RichTextLabel"] +show_behind_parent = true +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = -8.0 +margin_top = -4.0 +margin_right = 8.0 +margin_bottom = 4.0 +mouse_filter = 2 +custom_styles/panel = SubResource( 328 ) +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="PaddingRight" type="Control" parent="HBoxContainer/Preview/Content/List/LineTemplate"] +margin_left = 304.0 +margin_right = 320.0 +margin_bottom = 15.0 +rect_min_size = Vector2( 16, 0 ) +mouse_filter = 2 + +[node name="PaddingBottom" type="Control" parent="HBoxContainer/Preview/Content/List"] +margin_top = 18.0 +margin_right = 320.0 +margin_bottom = 18.0 +mouse_filter = 2 + +[node name="Options" type="ScrollContainer" parent="HBoxContainer/Preview"] +anchor_top = 0.815 +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 16.0 +margin_top = 4.0 +margin_right = -16.0 +margin_bottom = -4.0 +mouse_filter = 2 +follow_focus = true +scroll_horizontal_enabled = false +script = ExtResource( 10 ) +__meta__ = { +"_edit_use_anchors_": false, +"_editor_description_": "" +} + +[node name="List" type="VBoxContainer" parent="HBoxContainer/Preview/Options"] +margin_right = 288.0 +margin_bottom = 97.08 +mouse_filter = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +custom_constants/separation = 8 +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="ButtonTemplate" type="Button" parent="HBoxContainer/Preview/Options/List"] +visible = false +margin_right = 320.0 +margin_bottom = 20.0 +text = "Option" + +[node name="Editor" type="Panel" parent="HBoxContainer"] +visible = false +margin_left = 368.0 +margin_right = 1008.0 +margin_bottom = 568.0 +rect_min_size = Vector2( 640, 0 ) +script = ExtResource( 1 ) +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="Tools" type="HBoxContainer" parent="HBoxContainer/Editor"] +anchor_right = 1.0 +margin_left = 4.0 +margin_top = 4.0 +margin_right = -4.0 +margin_bottom = 27.8 +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="Left" type="HBoxContainer" parent="HBoxContainer/Editor/Tools"] +margin_right = 314.0 +margin_bottom = 26.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="Title" type="LineEdit" parent="HBoxContainer/Editor/Tools/Left"] +margin_right = 144.0 +margin_bottom = 26.0 +rect_min_size = Vector2( 144, 0 ) +script = ExtResource( 8 ) +disable_spaces = true + +[node name="Play" type="Button" parent="HBoxContainer/Editor/Tools/Left"] +margin_left = 148.0 +margin_right = 191.0 +margin_bottom = 26.0 +focus_mode = 0 +enabled_focus_mode = 0 +text = "Play" + +[node name="Right" type="HBoxContainer" parent="HBoxContainer/Editor/Tools"] +margin_left = 318.0 +margin_right = 632.0 +margin_bottom = 26.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 +alignment = 2 +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="Delete" type="Button" parent="HBoxContainer/Editor/Tools/Right"] +margin_left = 199.0 +margin_right = 258.0 +margin_bottom = 26.0 +text = "Delete" + +[node name="Control" type="Control" parent="HBoxContainer/Editor/Tools/Right"] +margin_left = 262.0 +margin_right = 286.0 +margin_bottom = 26.0 +rect_min_size = Vector2( 24, 0 ) + +[node name="Close" type="Button" parent="HBoxContainer/Editor/Tools/Right"] +margin_left = 290.0 +margin_right = 314.0 +margin_bottom = 26.0 +rect_min_size = Vector2( 24, 0 ) +text = "x" +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="Content" type="Control" parent="HBoxContainer/Editor"] +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_top = 42.0 +mouse_filter = 2 +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="FileDialog" type="FileDialog" parent="."] +anchor_left = 0.5 +anchor_top = 0.5 +anchor_right = 0.5 +anchor_bottom = 0.5 +margin_left = -297.0 +margin_top = -231.0 +margin_right = 297.0 +margin_bottom = 231.0 +rect_min_size = Vector2( 400, 140 ) +resizable = true +filters = PoolStringArray( "*.yarn", "*.wol" ) +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="DeleteNodeDialog" type="ConfirmationDialog" parent="."] +anchor_left = 0.5 +anchor_top = 0.5 +anchor_right = 0.5 +anchor_bottom = 0.5 +margin_left = -223.0 +margin_top = -70.0 +margin_right = 223.0 +margin_bottom = 70.0 +rect_min_size = Vector2( 400, 140 ) +dialog_text = "Are you sure you want to delete the \"%s\" node from your dialogue? + +You can't undo this action." +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="AboutDialog" type="WindowDialog" parent="."] +anchor_left = 0.5 +anchor_top = 0.5 +anchor_right = 0.5 +anchor_bottom = 0.5 +margin_left = -115.0 +margin_top = -112.0 +margin_right = 115.0 +margin_bottom = 203.0 +window_title = "About Wol" +script = ExtResource( 12 ) +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="RichTextLabel" type="RichTextLabel" parent="AboutDialog"] +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 8.0 +margin_top = 146.0 +margin_right = -8.0 +margin_bottom = -6.0 +custom_fonts/normal_font = ExtResource( 6 ) +bbcode_enabled = true +bbcode_text = "Wol actively maintained by [url=https://bram.dingelstad.works]Bram Dingelstad[/url] ([url=https://hire.bram.dingelstad.works]hire me[/url]). + +Based on [url=https://github.com/kyperbelt/GDYarn]GDYarn by kyperbelt[/url] & [url=https://yarnspinner.dev/]YarnSpinner by Secret Labs[/url]." +text = "Wol actively maintained by Bram Dingelstad (hire me). + +Based on GDYarn by kyperbelt & YarnSpinner by Secret Labs." + +[node name="TextureRect" type="TextureRect" parent="AboutDialog"] +anchor_left = 0.5 +anchor_right = 0.5 +margin_left = -62.0 +margin_right = 62.0 +margin_bottom = 124.0 +texture = ExtResource( 11 ) + +[node name="Label" type="Label" parent="AboutDialog/TextureRect"] +anchor_left = 0.5 +anchor_top = 1.0 +anchor_right = 0.5 +anchor_bottom = 1.0 +margin_left = -26.5 +margin_top = -12.0 +margin_right = 26.5 +margin_bottom = 8.0 +grow_horizontal = 2 +grow_vertical = 2 +text = "Wol (alpha1)" +align = 1 +valign = 1 + +[node name="SettingsDialog" type="WindowDialog" parent="."] +anchor_left = 0.5 +anchor_top = 0.5 +anchor_right = 0.5 +anchor_bottom = 0.5 +margin_left = -224.5 +margin_top = -157.5 +margin_right = 224.5 +margin_bottom = 157.5 +window_title = "Settings" +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="VBoxContainer" type="VBoxContainer" parent="SettingsDialog"] +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 16.0 +margin_top = 8.0 +margin_right = -16.0 +margin_bottom = -8.0 +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="RichTextLabel2" type="RichTextLabel" parent="SettingsDialog/VBoxContainer"] +margin_right = 417.0 +margin_bottom = 67.0 +size_flags_vertical = 3 +bbcode_enabled = true +bbcode_text = " +[i]Settings are disabled for now as they're not implemented.[/i]" +text = " +Settings are disabled for now as they're not implemented." +fit_content_height = true + +[node name="HiDPI" type="HBoxContainer" parent="SettingsDialog/VBoxContainer"] +margin_top = 71.0 +margin_right = 417.0 +margin_bottom = 107.0 +rect_min_size = Vector2( 0, 36 ) + +[node name="Label" type="Label" parent="SettingsDialog/VBoxContainer/HiDPI"] +margin_top = 8.0 +margin_right = 187.0 +margin_bottom = 28.0 +hint_tooltip = "When your display has HiDPI capabilities, some of the text might seem unsharp. + +Enabling this option allows for sharper text." +mouse_filter = 1 +text = "Use HiDPI when available:" + +[node name="CheckBox" type="CheckBox" parent="SettingsDialog/VBoxContainer/HiDPI"] +margin_left = 393.0 +margin_right = 417.0 +margin_bottom = 36.0 +size_flags_horizontal = 10 +disabled = true +flat = true + +[node name="AlternativeNodeConnectionMethod" type="HBoxContainer" parent="SettingsDialog/VBoxContainer"] +margin_top = 111.0 +margin_right = 417.0 +margin_bottom = 147.0 +rect_min_size = Vector2( 0, 36 ) + +[node name="Label" type="Label" parent="SettingsDialog/VBoxContainer/AlternativeNodeConnectionMethod"] +margin_top = 8.0 +margin_right = 258.0 +margin_bottom = 28.0 +hint_tooltip = "Godot's usual method for connecting nodes in a graph is input on the left, output on the right. + +Since this looks very hectic, this alternative method only uses one connection that implies an input and/or output." +mouse_filter = 1 +text = "Alternative node connection method" + +[node name="CheckBox" type="CheckBox" parent="SettingsDialog/VBoxContainer/AlternativeNodeConnectionMethod"] +margin_left = 393.0 +margin_right = 417.0 +margin_bottom = 36.0 +size_flags_horizontal = 10 +disabled = true +flat = true + +[node name="FontSize" type="HBoxContainer" parent="SettingsDialog/VBoxContainer"] +margin_top = 151.0 +margin_right = 417.0 +margin_bottom = 187.0 +rect_min_size = Vector2( 0, 36 ) + +[node name="Label" type="Label" parent="SettingsDialog/VBoxContainer/FontSize"] +margin_top = 8.0 +margin_right = 103.0 +margin_bottom = 28.0 +hint_tooltip = "The font size of the text editor for dialogue. Will also affect preview size in node overview." +mouse_filter = 1 +text = "Editor font size" + +[node name="CheckBox" type="LineEdit" parent="SettingsDialog/VBoxContainer/FontSize"] +margin_left = 373.0 +margin_right = 417.0 +margin_bottom = 36.0 +size_flags_horizontal = 10 +text = "16" +align = 1 +editable = false + +[node name="DefaultProtagonist" type="HBoxContainer" parent="SettingsDialog/VBoxContainer"] +margin_top = 191.0 +margin_right = 417.0 +margin_bottom = 227.0 +rect_min_size = Vector2( 0, 36 ) + +[node name="Label" type="Label" parent="SettingsDialog/VBoxContainer/DefaultProtagonist"] +margin_top = 8.0 +margin_right = 137.0 +margin_bottom = 28.0 +hint_tooltip = "The default protagonist the \"Preview\" looks to find. It will prefer this one over other names. + +Use this if your main character is never denoted as \"You\"." +mouse_filter = 1 +text = "Default protagonist" + +[node name="CheckBox" type="LineEdit" parent="SettingsDialog/VBoxContainer/DefaultProtagonist"] +margin_left = 317.0 +margin_right = 417.0 +margin_bottom = 36.0 +rect_min_size = Vector2( 100, 0 ) +size_flags_horizontal = 10 +size_flags_stretch_ratio = 2.0 +text = "You" +align = 1 +editable = false +placeholder_text = "You" + +[node name="RichTextLabel" type="RichTextLabel" parent="SettingsDialog/VBoxContainer"] +margin_top = 278.0 +margin_right = 417.0 +margin_bottom = 299.0 +size_flags_vertical = 10 +bbcode_enabled = true +bbcode_text = "Idea for a setting or feature? [url=https://github.com/bram-dingelstad/Wol/issues]Submit an issue on Github[/url]." +text = "Idea for a setting or feature? Submit an issue on Github." +fit_content_height = true + +[connection signal="meta_clicked" from="SettingsDialog/VBoxContainer/RichTextLabel" to="AboutDialog" method="_on_url_click"] diff --git a/addons/Wol/editor/WolGraphNode.gd b/addons/Wol/editor/WolGraphNode.gd index 67db7b1..0ea1b1b 100644 --- a/addons/Wol/editor/WolGraphNode.gd +++ b/addons/Wol/editor/WolGraphNode.gd @@ -12,7 +12,7 @@ var error_lines = [] var compiler var program -onready var text_edit = $TextEdit +onready var text_edit = $Wrapper/TextEdit # TODO: Add syntax highlighting @@ -38,14 +38,14 @@ func get_connections(): if instruction.operation == Constants.ByteCode.RunNode: if instruction.operands.size() > 0 \ and instruction.operands.front().value != name: - connections.append(instruction.operands.front().value) + connections.append(instruction.operands.front().value.replace('.', '_')) # NOTE: When next node is decided through options if instruction.operation == Constants.ByteCode.AddOption: if instruction.operands.size() == 2 \ and not label_check.search(instruction.operands[1].value) \ and instruction.operands[1].value != name: - connections.append(instruction.operands[1].value) + connections.append(instruction.operands[1].value.replace('.', '_')) return connections @@ -74,7 +74,7 @@ func _on_error(message, line_number, _column): func set_node(_node): node = _node title = node.title - name = node.title + name = node.title.replace('.', '_') text_edit.text = node.body text_edit.clear_undo_history() offset = node.position diff --git a/addons/Wol/editor/editor_default_font.tres b/addons/Wol/editor/editor_default_font.tres new file mode 100644 index 0000000..dc7cb5f --- /dev/null +++ b/addons/Wol/editor/editor_default_font.tres @@ -0,0 +1,8 @@ +[gd_resource type="DynamicFont" load_steps=2 format=2] + +[ext_resource path="res://addons/Wol/font/Aileron-Regular.otf" type="DynamicFontData" id=1] + +[resource] +use_mipmaps = true +use_filter = true +font_data = ExtResource( 1 ) diff --git a/addons/Wol/editor/editor_theme.tres b/addons/Wol/editor/editor_theme.tres new file mode 100644 index 0000000..b6aab5b --- /dev/null +++ b/addons/Wol/editor/editor_theme.tres @@ -0,0 +1,1419 @@ +[gd_resource type="Theme" load_steps=150 format=2] + +[ext_resource path="res://addons/Wol/font/Aileron-Regular.otf" type="DynamicFontData" id=1] +[ext_resource path="res://addons/Wol/editor/Panel.png" type="Texture" id=2] +[ext_resource path="res://addons/Wol/font/VictorMono-SemiBold.otf" type="DynamicFontData" id=3] + +[sub_resource type="Image" id=698] +data = { +"data": PoolByteArray( 0, 4, 0, 10, 0, 17, 0, 25, 0, 31, 0, 34, 0, 36, 0, 36, 0, 36, 0, 36, 0, 34, 0, 31, 0, 25, 0, 17, 0, 10, 0, 4, 0, 10, 0, 21, 0, 37, 0, 52, 0, 63, 0, 70, 0, 71, 0, 72, 0, 72, 0, 71, 0, 70, 0, 63, 0, 52, 0, 37, 0, 21, 0, 10, 0, 17, 0, 37, 63, 119, 90, 239, 86, 255, 86, 255, 86, 255, 86, 255, 86, 255, 86, 255, 86, 255, 86, 255, 90, 239, 63, 119, 0, 37, 0, 17, 0, 25, 0, 52, 89, 239, 72, 255, 68, 255, 67, 255, 67, 255, 67, 255, 67, 255, 67, 255, 67, 255, 68, 255, 72, 255, 89, 239, 0, 52, 0, 25, 0, 31, 0, 63, 84, 255, 67, 255, 67, 255, 67, 255, 67, 255, 67, 255, 67, 255, 67, 255, 67, 255, 67, 255, 67, 255, 84, 255, 0, 63, 0, 31, 0, 34, 0, 70, 82, 255, 66, 255, 66, 255, 66, 255, 66, 255, 66, 255, 66, 255, 66, 255, 66, 255, 66, 255, 66, 255, 82, 255, 0, 70, 0, 34, 0, 36, 0, 71, 81, 255, 64, 255, 64, 255, 64, 255, 64, 255, 64, 255, 64, 255, 64, 255, 64, 255, 64, 255, 64, 255, 81, 255, 0, 71, 0, 36, 0, 36, 0, 72, 79, 255, 63, 255, 63, 255, 63, 255, 63, 255, 63, 255, 63, 255, 63, 255, 63, 255, 63, 255, 63, 255, 79, 255, 0, 72, 0, 36, 0, 36, 0, 72, 77, 255, 62, 255, 62, 255, 62, 255, 62, 255, 62, 255, 62, 255, 62, 255, 62, 255, 62, 255, 62, 255, 77, 255, 0, 72, 0, 36, 0, 36, 0, 71, 76, 255, 61, 255, 61, 255, 61, 255, 61, 255, 61, 255, 61, 255, 61, 255, 61, 255, 61, 255, 61, 255, 76, 255, 0, 71, 0, 36, 0, 34, 0, 70, 74, 255, 59, 255, 59, 255, 59, 255, 59, 255, 59, 255, 59, 255, 59, 255, 59, 255, 59, 255, 59, 255, 74, 255, 0, 70, 0, 34, 0, 31, 0, 63, 73, 255, 58, 255, 58, 255, 58, 255, 58, 255, 58, 255, 58, 255, 58, 255, 58, 255, 58, 255, 58, 255, 73, 255, 0, 63, 0, 31, 0, 25, 0, 52, 75, 239, 61, 255, 57, 255, 57, 255, 57, 255, 57, 255, 57, 255, 57, 255, 57, 255, 57, 255, 61, 255, 75, 239, 0, 52, 0, 25, 0, 17, 0, 37, 53, 119, 74, 239, 71, 255, 70, 255, 70, 255, 70, 255, 70, 255, 70, 255, 70, 255, 71, 255, 74, 237, 53, 119, 0, 37, 0, 17, 0, 10, 0, 21, 0, 37, 0, 52, 0, 63, 0, 70, 0, 71, 0, 72, 0, 72, 0, 71, 0, 70, 0, 63, 0, 52, 0, 37, 0, 21, 0, 10, 0, 4, 0, 10, 0, 17, 0, 25, 0, 31, 0, 34, 0, 36, 0, 36, 0, 36, 0, 36, 0, 34, 0, 31, 0, 25, 0, 17, 0, 10, 0, 4 ), +"format": "LumAlpha8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=330] +flags = 4 +flags = 4 +image = SubResource( 698 ) +size = Vector2( 16, 16 ) + +[sub_resource type="StyleBoxTexture" id=331] +content_margin_left = 6.0 +content_margin_right = 6.0 +content_margin_top = 2.0 +content_margin_bottom = 2.0 +texture = SubResource( 330 ) +region_rect = Rect2( 0, 0, 16, 16 ) +margin_left = 4.0 +margin_right = 4.0 +margin_top = 4.0 +margin_bottom = 4.0 +expand_margin_left = 2.0 +expand_margin_right = 2.0 +expand_margin_top = 2.0 +expand_margin_bottom = 2.0 + +[sub_resource type="Image" id=699] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 140, 191, 14, 71, 140, 191, 57, 71, 140, 191, 104, 71, 140, 191, 122, 71, 140, 191, 123, 71, 140, 191, 123, 71, 140, 191, 123, 71, 140, 191, 123, 71, 140, 191, 122, 71, 140, 191, 104, 71, 140, 191, 57, 71, 140, 191, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 140, 191, 58, 71, 140, 191, 116, 71, 140, 191, 16, 71, 140, 191, 8, 71, 140, 191, 8, 71, 140, 191, 8, 71, 140, 191, 8, 71, 140, 191, 8, 71, 140, 191, 8, 71, 140, 191, 16, 71, 140, 191, 116, 71, 140, 191, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 140, 191, 105, 71, 140, 191, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 140, 191, 15, 71, 140, 191, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 140, 191, 123, 71, 140, 191, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 140, 191, 6, 71, 140, 191, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 140, 191, 123, 71, 140, 191, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 140, 191, 8, 71, 140, 191, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 140, 191, 123, 71, 140, 191, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 140, 191, 8, 71, 140, 191, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 140, 191, 123, 71, 140, 191, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 140, 191, 8, 71, 140, 191, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 140, 191, 123, 71, 140, 191, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 140, 191, 8, 71, 140, 191, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 140, 191, 123, 71, 140, 191, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 140, 191, 6, 71, 140, 191, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 140, 191, 105, 71, 140, 191, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 140, 191, 14, 71, 140, 191, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 140, 191, 58, 71, 140, 191, 117, 71, 140, 191, 15, 71, 140, 191, 8, 71, 140, 191, 8, 71, 140, 191, 8, 71, 140, 191, 8, 71, 140, 191, 8, 71, 140, 191, 8, 71, 140, 191, 17, 71, 140, 191, 116, 71, 140, 191, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 140, 191, 14, 71, 140, 191, 58, 71, 140, 191, 104, 71, 140, 191, 122, 71, 140, 191, 123, 71, 140, 191, 123, 71, 140, 191, 123, 71, 140, 191, 123, 71, 140, 191, 122, 71, 140, 191, 104, 71, 140, 191, 57, 71, 140, 191, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=333] +flags = 4 +flags = 4 +image = SubResource( 699 ) +size = Vector2( 16, 16 ) + +[sub_resource type="StyleBoxTexture" id=334] +content_margin_left = 6.0 +content_margin_right = 6.0 +content_margin_top = 2.0 +content_margin_bottom = 2.0 +texture = SubResource( 333 ) +region_rect = Rect2( 0, 0, 16, 16 ) +margin_left = 4.0 +margin_right = 4.0 +margin_top = 4.0 +margin_bottom = 4.0 +expand_margin_left = 2.0 +expand_margin_right = 2.0 +expand_margin_top = 2.0 +expand_margin_bottom = 2.0 + +[sub_resource type="Image" id=700] +data = { +"data": PoolByteArray( 0, 0, 0, 4, 0, 0, 0, 10, 0, 0, 0, 17, 0, 0, 0, 25, 0, 0, 0, 31, 0, 0, 0, 34, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 34, 0, 0, 0, 31, 0, 0, 0, 25, 0, 0, 0, 17, 0, 0, 0, 10, 0, 0, 0, 4, 0, 0, 0, 10, 0, 0, 0, 21, 0, 0, 0, 37, 0, 0, 0, 52, 0, 0, 0, 63, 0, 0, 0, 70, 0, 0, 0, 71, 0, 0, 0, 72, 0, 0, 0, 72, 0, 0, 0, 71, 0, 0, 0, 70, 0, 0, 0, 63, 0, 0, 0, 52, 0, 0, 0, 37, 0, 0, 0, 21, 0, 0, 0, 10, 0, 0, 0, 17, 0, 0, 0, 37, 66, 64, 75, 119, 95, 90, 108, 239, 91, 87, 104, 255, 90, 86, 103, 255, 90, 86, 103, 255, 90, 86, 103, 255, 90, 86, 103, 255, 90, 86, 103, 255, 90, 86, 103, 255, 91, 87, 104, 255, 95, 90, 108, 239, 66, 64, 75, 119, 0, 0, 0, 37, 0, 0, 0, 17, 0, 0, 0, 25, 0, 0, 0, 52, 95, 90, 107, 239, 77, 74, 87, 255, 73, 70, 82, 255, 72, 69, 81, 255, 72, 69, 81, 255, 72, 69, 81, 255, 72, 69, 81, 255, 72, 69, 81, 255, 72, 69, 81, 255, 73, 70, 82, 255, 77, 74, 87, 255, 95, 90, 107, 239, 0, 0, 0, 52, 0, 0, 0, 25, 0, 0, 0, 31, 0, 0, 0, 63, 91, 87, 102, 255, 73, 70, 82, 255, 72, 69, 81, 255, 72, 69, 81, 255, 72, 69, 81, 255, 72, 69, 81, 255, 72, 69, 81, 255, 72, 69, 81, 255, 72, 69, 81, 255, 72, 69, 81, 255, 73, 70, 82, 255, 91, 87, 102, 255, 0, 0, 0, 63, 0, 0, 0, 31, 0, 0, 0, 34, 0, 0, 0, 70, 89, 85, 100, 255, 71, 68, 80, 255, 71, 68, 80, 255, 71, 68, 80, 255, 71, 68, 80, 255, 71, 68, 80, 255, 71, 68, 80, 255, 71, 68, 80, 255, 71, 68, 80, 255, 71, 68, 80, 255, 71, 68, 80, 255, 89, 85, 100, 255, 0, 0, 0, 70, 0, 0, 0, 34, 0, 0, 0, 36, 0, 0, 0, 71, 88, 84, 100, 255, 70, 67, 80, 255, 70, 67, 80, 255, 70, 67, 80, 255, 70, 67, 80, 255, 70, 67, 80, 255, 70, 67, 80, 255, 70, 67, 80, 255, 70, 67, 80, 255, 70, 67, 80, 255, 70, 67, 80, 255, 88, 84, 100, 255, 0, 0, 0, 71, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 72, 86, 83, 99, 255, 69, 66, 79, 255, 69, 66, 79, 255, 69, 66, 79, 255, 69, 66, 79, 255, 69, 66, 79, 255, 69, 66, 79, 255, 69, 66, 79, 255, 69, 66, 79, 255, 69, 66, 79, 255, 69, 66, 79, 255, 86, 83, 99, 255, 0, 0, 0, 72, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 72, 86, 83, 98, 255, 69, 66, 78, 255, 69, 66, 78, 255, 69, 66, 78, 255, 69, 66, 78, 255, 69, 66, 78, 255, 69, 66, 78, 255, 69, 66, 78, 255, 69, 66, 78, 255, 69, 66, 78, 255, 69, 66, 78, 255, 86, 83, 98, 255, 0, 0, 0, 72, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 71, 85, 81, 98, 255, 68, 65, 78, 255, 68, 65, 78, 255, 68, 65, 78, 255, 68, 65, 78, 255, 68, 65, 78, 255, 68, 65, 78, 255, 68, 65, 78, 255, 68, 65, 78, 255, 68, 65, 78, 255, 68, 65, 78, 255, 85, 81, 98, 255, 0, 0, 0, 71, 0, 0, 0, 36, 0, 0, 0, 34, 0, 0, 0, 70, 85, 81, 96, 255, 68, 65, 77, 255, 68, 65, 77, 255, 68, 65, 77, 255, 68, 65, 77, 255, 68, 65, 77, 255, 68, 65, 77, 255, 68, 65, 77, 255, 68, 65, 77, 255, 68, 65, 77, 255, 68, 65, 77, 255, 85, 81, 96, 255, 0, 0, 0, 70, 0, 0, 0, 34, 0, 0, 0, 31, 0, 0, 0, 63, 85, 81, 96, 255, 68, 65, 77, 255, 67, 64, 76, 255, 67, 64, 76, 255, 67, 64, 76, 255, 67, 64, 76, 255, 67, 64, 76, 255, 67, 64, 76, 255, 67, 64, 76, 255, 67, 64, 76, 255, 68, 65, 77, 255, 85, 81, 96, 255, 0, 0, 0, 63, 0, 0, 0, 31, 0, 0, 0, 25, 0, 0, 0, 52, 86, 83, 100, 239, 71, 67, 81, 255, 67, 63, 77, 255, 66, 63, 76, 255, 66, 63, 76, 255, 66, 63, 76, 255, 66, 63, 76, 255, 66, 63, 76, 255, 66, 63, 76, 255, 67, 63, 77, 255, 71, 67, 81, 255, 87, 83, 100, 239, 0, 0, 0, 52, 0, 0, 0, 25, 0, 0, 0, 17, 0, 0, 0, 37, 62, 59, 70, 119, 87, 83, 99, 239, 83, 80, 95, 255, 83, 79, 94, 255, 83, 79, 94, 255, 83, 79, 94, 255, 83, 79, 94, 255, 83, 79, 94, 255, 83, 79, 94, 255, 83, 80, 95, 255, 87, 83, 99, 237, 62, 59, 70, 119, 0, 0, 0, 37, 0, 0, 0, 17, 0, 0, 0, 10, 0, 0, 0, 21, 0, 0, 0, 37, 0, 0, 0, 52, 0, 0, 0, 63, 0, 0, 0, 70, 0, 0, 0, 71, 0, 0, 0, 72, 0, 0, 0, 72, 0, 0, 0, 71, 0, 0, 0, 70, 0, 0, 0, 63, 0, 0, 0, 52, 0, 0, 0, 37, 0, 0, 0, 21, 0, 0, 0, 10, 0, 0, 0, 4, 0, 0, 0, 10, 0, 0, 0, 17, 0, 0, 0, 25, 0, 0, 0, 31, 0, 0, 0, 34, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 34, 0, 0, 0, 31, 0, 0, 0, 25, 0, 0, 0, 17, 0, 0, 0, 10, 0, 0, 0, 4 ), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=336] +flags = 4 +flags = 4 +image = SubResource( 700 ) +size = Vector2( 16, 16 ) + +[sub_resource type="StyleBoxTexture" id=337] +content_margin_left = 6.0 +content_margin_right = 6.0 +content_margin_top = 2.0 +content_margin_bottom = 2.0 +texture = SubResource( 336 ) +region_rect = Rect2( 0, 0, 16, 16 ) +margin_left = 4.0 +margin_right = 4.0 +margin_top = 4.0 +margin_bottom = 4.0 +expand_margin_left = 2.0 +expand_margin_right = 2.0 +expand_margin_top = 2.0 +expand_margin_bottom = 2.0 + +[sub_resource type="Image" id=701] +data = { +"data": PoolByteArray( 0, 0, 0, 4, 0, 0, 0, 10, 0, 0, 0, 17, 0, 0, 0, 25, 0, 0, 0, 31, 0, 0, 0, 34, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 34, 0, 0, 0, 31, 0, 0, 0, 25, 0, 0, 0, 17, 0, 0, 0, 10, 0, 0, 0, 4, 0, 0, 0, 10, 0, 0, 0, 21, 0, 0, 0, 37, 0, 0, 0, 52, 0, 0, 0, 63, 0, 0, 0, 70, 0, 0, 0, 71, 0, 0, 0, 72, 0, 0, 0, 72, 0, 0, 0, 71, 0, 0, 0, 70, 0, 0, 0, 63, 0, 0, 0, 52, 0, 0, 0, 37, 0, 0, 0, 21, 0, 0, 0, 10, 0, 0, 0, 17, 0, 0, 0, 37, 60, 58, 68, 119, 86, 83, 97, 239, 82, 80, 93, 255, 81, 79, 93, 255, 81, 79, 93, 255, 81, 79, 93, 255, 81, 79, 93, 255, 81, 79, 93, 255, 81, 79, 93, 255, 82, 80, 93, 255, 86, 83, 97, 239, 60, 58, 68, 119, 0, 0, 0, 37, 0, 0, 0, 17, 0, 0, 0, 25, 0, 0, 0, 52, 86, 82, 96, 239, 70, 66, 78, 255, 66, 62, 74, 255, 65, 62, 73, 255, 65, 62, 73, 255, 65, 62, 73, 255, 65, 62, 73, 255, 65, 62, 73, 255, 65, 62, 73, 255, 66, 62, 74, 255, 70, 66, 78, 255, 86, 82, 96, 239, 0, 0, 0, 52, 0, 0, 0, 25, 0, 0, 0, 31, 0, 0, 0, 63, 81, 78, 91, 255, 65, 62, 73, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 65, 62, 73, 255, 81, 78, 91, 255, 0, 0, 0, 63, 0, 0, 0, 31, 0, 0, 0, 34, 0, 0, 0, 70, 79, 76, 89, 255, 63, 61, 71, 255, 63, 61, 71, 255, 63, 61, 71, 255, 63, 61, 71, 255, 63, 61, 71, 255, 63, 61, 71, 255, 63, 61, 71, 255, 63, 61, 71, 255, 63, 61, 71, 255, 63, 61, 71, 255, 79, 76, 89, 255, 0, 0, 0, 70, 0, 0, 0, 34, 0, 0, 0, 36, 0, 0, 0, 71, 78, 74, 88, 255, 62, 59, 70, 255, 62, 59, 70, 255, 62, 59, 70, 255, 62, 59, 70, 255, 62, 59, 70, 255, 62, 59, 70, 255, 62, 59, 70, 255, 62, 59, 70, 255, 62, 59, 70, 255, 62, 59, 70, 255, 78, 74, 88, 255, 0, 0, 0, 71, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 72, 75, 73, 85, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 75, 73, 85, 255, 0, 0, 0, 72, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 72, 74, 71, 84, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 74, 71, 84, 255, 0, 0, 0, 72, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 71, 73, 70, 83, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 73, 70, 83, 255, 0, 0, 0, 71, 0, 0, 0, 36, 0, 0, 0, 34, 0, 0, 0, 70, 71, 69, 80, 255, 57, 55, 64, 255, 57, 55, 64, 255, 57, 55, 64, 255, 57, 55, 64, 255, 57, 55, 64, 255, 57, 55, 64, 255, 57, 55, 64, 255, 57, 55, 64, 255, 57, 55, 64, 255, 57, 55, 64, 255, 71, 69, 80, 255, 0, 0, 0, 70, 0, 0, 0, 34, 0, 0, 0, 31, 0, 0, 0, 63, 71, 67, 80, 255, 56, 53, 63, 255, 56, 53, 63, 255, 56, 53, 63, 255, 56, 53, 63, 255, 56, 53, 63, 255, 56, 53, 63, 255, 56, 53, 63, 255, 56, 53, 63, 255, 56, 53, 63, 255, 56, 53, 63, 255, 71, 67, 80, 255, 0, 0, 0, 63, 0, 0, 0, 31, 0, 0, 0, 25, 0, 0, 0, 52, 71, 68, 82, 239, 58, 56, 66, 255, 54, 52, 62, 255, 54, 52, 62, 255, 54, 52, 62, 255, 54, 52, 62, 255, 54, 52, 62, 255, 54, 52, 62, 255, 54, 52, 62, 255, 54, 52, 62, 255, 58, 56, 66, 255, 71, 68, 82, 239, 0, 0, 0, 52, 0, 0, 0, 25, 0, 0, 0, 17, 0, 0, 0, 37, 51, 49, 57, 119, 71, 68, 80, 239, 68, 66, 77, 255, 68, 65, 76, 255, 68, 65, 76, 255, 68, 65, 76, 255, 68, 65, 76, 255, 68, 65, 76, 255, 68, 65, 76, 255, 68, 66, 77, 255, 71, 68, 81, 237, 51, 49, 57, 119, 0, 0, 0, 37, 0, 0, 0, 17, 0, 0, 0, 10, 0, 0, 0, 21, 0, 0, 0, 37, 0, 0, 0, 52, 0, 0, 0, 63, 0, 0, 0, 70, 0, 0, 0, 71, 0, 0, 0, 72, 0, 0, 0, 72, 0, 0, 0, 71, 0, 0, 0, 70, 0, 0, 0, 63, 0, 0, 0, 52, 0, 0, 0, 37, 0, 0, 0, 21, 0, 0, 0, 10, 0, 0, 0, 4, 0, 0, 0, 10, 0, 0, 0, 17, 0, 0, 0, 25, 0, 0, 0, 31, 0, 0, 0, 34, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 34, 0, 0, 0, 31, 0, 0, 0, 25, 0, 0, 0, 17, 0, 0, 0, 10, 0, 0, 0, 4 ), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=339] +flags = 4 +flags = 4 +image = SubResource( 701 ) +size = Vector2( 16, 16 ) + +[sub_resource type="StyleBoxTexture" id=340] +content_margin_left = 6.0 +content_margin_right = 6.0 +content_margin_top = 3.0 +content_margin_bottom = 3.0 +texture = SubResource( 339 ) +region_rect = Rect2( 0, 0, 16, 16 ) +margin_left = 4.0 +margin_right = 4.0 +margin_top = 4.0 +margin_bottom = 4.0 +expand_margin_left = 2.0 +expand_margin_right = 2.0 +expand_margin_top = 2.0 +expand_margin_bottom = 2.0 + +[sub_resource type="Image" id=702] +data = { +"data": PoolByteArray( 0, 0, 0, 4, 0, 0, 0, 10, 0, 0, 0, 17, 0, 0, 0, 25, 0, 0, 0, 31, 0, 0, 0, 34, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 34, 0, 0, 0, 31, 0, 0, 0, 25, 0, 0, 0, 17, 0, 0, 0, 10, 0, 0, 0, 4, 0, 0, 0, 11, 0, 0, 0, 22, 0, 0, 0, 39, 0, 0, 0, 54, 0, 0, 0, 65, 0, 0, 0, 73, 0, 0, 0, 74, 0, 0, 0, 75, 0, 0, 0, 75, 0, 0, 0, 74, 0, 0, 0, 73, 0, 0, 0, 65, 0, 0, 0, 54, 0, 0, 0, 39, 0, 0, 0, 22, 0, 0, 0, 11, 0, 0, 0, 19, 0, 0, 0, 41, 49, 47, 55, 128, 70, 67, 79, 241, 67, 64, 76, 255, 66, 64, 75, 255, 66, 64, 75, 255, 66, 64, 75, 255, 66, 64, 75, 255, 66, 64, 75, 255, 66, 64, 75, 255, 67, 64, 76, 255, 70, 67, 79, 241, 49, 47, 55, 127, 0, 0, 0, 41, 0, 0, 0, 19, 0, 0, 0, 30, 0, 0, 0, 61, 71, 68, 80, 242, 58, 56, 65, 255, 11, 11, 12, 255, 11, 10, 12, 255, 11, 10, 12, 255, 11, 10, 12, 255, 11, 10, 12, 255, 11, 11, 12, 255, 11, 11, 12, 255, 11, 11, 12, 255, 58, 56, 65, 255, 71, 68, 80, 242, 0, 0, 0, 61, 0, 0, 0, 30, 0, 0, 0, 39, 0, 0, 0, 77, 68, 66, 78, 255, 15, 14, 17, 255, 15, 14, 17, 255, 15, 14, 17, 255, 15, 14, 17, 255, 15, 14, 17, 255, 15, 14, 17, 255, 15, 14, 17, 255, 15, 14, 17, 255, 15, 14, 17, 255, 15, 14, 17, 255, 68, 66, 78, 255, 0, 0, 0, 77, 0, 0, 0, 39, 0, 0, 0, 44, 0, 0, 0, 88, 70, 66, 79, 255, 20, 19, 22, 255, 19, 18, 22, 255, 19, 18, 22, 255, 20, 19, 22, 255, 19, 18, 22, 255, 20, 19, 22, 255, 20, 19, 22, 255, 20, 19, 22, 255, 20, 19, 22, 255, 19, 18, 22, 255, 70, 66, 79, 255, 0, 0, 0, 88, 0, 0, 0, 44, 0, 0, 0, 50, 0, 0, 0, 93, 71, 69, 80, 255, 24, 23, 27, 255, 24, 23, 27, 255, 24, 23, 27, 255, 24, 23, 27, 255, 24, 23, 27, 255, 24, 23, 27, 255, 24, 23, 27, 255, 25, 24, 28, 255, 24, 23, 27, 255, 24, 23, 27, 255, 71, 69, 80, 255, 0, 0, 0, 93, 0, 0, 0, 50, 0, 0, 0, 51, 0, 0, 0, 99, 73, 70, 83, 255, 29, 28, 33, 255, 29, 28, 33, 255, 29, 28, 33, 255, 29, 28, 33, 255, 29, 28, 33, 255, 29, 28, 33, 255, 29, 28, 33, 255, 29, 28, 33, 255, 29, 28, 33, 255, 29, 28, 33, 255, 73, 70, 83, 255, 0, 0, 0, 99, 0, 0, 0, 51, 0, 0, 0, 54, 0, 0, 0, 102, 74, 71, 84, 255, 34, 33, 39, 255, 34, 33, 39, 255, 34, 33, 39, 255, 34, 33, 39, 255, 34, 33, 39, 255, 34, 33, 39, 255, 34, 33, 39, 255, 34, 33, 39, 255, 34, 33, 39, 255, 34, 33, 39, 255, 74, 71, 84, 255, 0, 0, 0, 102, 0, 0, 0, 54, 0, 0, 0, 57, 0, 0, 0, 105, 75, 73, 85, 255, 39, 38, 45, 255, 39, 38, 45, 255, 39, 38, 45, 255, 39, 38, 45, 255, 39, 38, 45, 255, 39, 38, 45, 255, 39, 38, 45, 255, 40, 38, 45, 255, 39, 38, 45, 255, 40, 38, 45, 255, 75, 73, 85, 255, 0, 0, 0, 105, 0, 0, 0, 57, 0, 0, 0, 56, 0, 0, 0, 108, 78, 74, 88, 255, 45, 43, 51, 255, 45, 43, 51, 255, 45, 43, 51, 255, 45, 43, 51, 255, 45, 43, 51, 255, 45, 43, 51, 255, 45, 43, 51, 255, 45, 43, 51, 255, 45, 43, 51, 255, 45, 43, 51, 255, 78, 74, 88, 255, 0, 0, 0, 108, 0, 0, 0, 56, 0, 0, 0, 53, 0, 0, 0, 101, 80, 77, 90, 255, 51, 49, 58, 255, 51, 49, 57, 255, 51, 49, 57, 255, 51, 49, 57, 255, 51, 49, 57, 255, 51, 49, 57, 255, 51, 49, 57, 255, 51, 49, 57, 255, 51, 49, 57, 255, 51, 49, 58, 255, 80, 77, 90, 255, 0, 0, 0, 101, 0, 0, 0, 53, 0, 0, 0, 45, 0, 0, 0, 89, 85, 82, 95, 252, 69, 66, 77, 255, 57, 55, 64, 255, 56, 55, 64, 255, 57, 55, 64, 255, 56, 55, 64, 255, 56, 55, 64, 255, 56, 55, 64, 255, 56, 55, 64, 255, 58, 55, 65, 255, 69, 66, 77, 255, 85, 82, 96, 252, 0, 0, 0, 89, 0, 0, 0, 45, 0, 0, 0, 32, 0, 0, 0, 68, 61, 58, 69, 180, 86, 82, 96, 253, 82, 78, 92, 255, 81, 78, 91, 255, 81, 78, 91, 255, 81, 78, 91, 255, 81, 78, 91, 255, 81, 78, 91, 255, 81, 78, 91, 255, 82, 78, 92, 255, 86, 82, 96, 253, 61, 58, 69, 180, 0, 0, 0, 68, 0, 0, 0, 32, 0, 0, 0, 20, 0, 0, 0, 40, 0, 0, 0, 69, 0, 0, 0, 93, 0, 0, 0, 110, 0, 0, 0, 121, 0, 0, 0, 122, 0, 0, 0, 124, 0, 0, 0, 124, 0, 0, 0, 122, 0, 0, 0, 121, 0, 0, 0, 110, 0, 0, 0, 93, 0, 0, 0, 69, 0, 0, 0, 40, 0, 0, 0, 20, 0, 0, 0, 8, 0, 0, 0, 20, 0, 0, 0, 33, 0, 0, 0, 48, 0, 0, 0, 58, 0, 0, 0, 63, 0, 0, 0, 67, 0, 0, 0, 67, 0, 0, 0, 67, 0, 0, 0, 67, 0, 0, 0, 63, 0, 0, 0, 58, 0, 0, 0, 48, 0, 0, 0, 33, 0, 0, 0, 20, 0, 0, 0, 8 ), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=342] +flags = 4 +flags = 4 +image = SubResource( 702 ) +size = Vector2( 16, 16 ) + +[sub_resource type="StyleBoxTexture" id=343] +content_margin_left = 6.0 +content_margin_right = 6.0 +content_margin_top = 3.0 +content_margin_bottom = 3.0 +texture = SubResource( 342 ) +region_rect = Rect2( 0, 0, 16, 16 ) +margin_left = 4.0 +margin_right = 4.0 +margin_top = 4.0 +margin_bottom = 4.0 +expand_margin_left = 2.0 +expand_margin_right = 2.0 +expand_margin_top = 2.0 +expand_margin_bottom = 2.0 + +[sub_resource type="Image" id=703] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 75, 89, 7, 77, 75, 89, 39, 77, 75, 89, 80, 77, 75, 89, 102, 77, 75, 89, 104, 77, 75, 89, 104, 77, 75, 89, 104, 77, 75, 89, 104, 77, 75, 89, 104, 77, 75, 89, 104, 88, 86, 99, 106, 176, 175, 181, 129, 77, 75, 89, 39, 77, 75, 89, 7, 0, 0, 0, 0, 0, 0, 0, 0, 77, 75, 89, 39, 56, 55, 64, 180, 32, 32, 36, 250, 30, 30, 34, 255, 31, 31, 35, 255, 31, 31, 35, 255, 31, 31, 35, 255, 31, 31, 35, 255, 31, 31, 35, 255, 31, 31, 35, 255, 139, 139, 141, 255, 255, 255, 255, 255, 182, 182, 185, 221, 77, 75, 89, 39, 0, 0, 0, 0, 0, 0, 0, 0, 77, 75, 89, 80, 32, 32, 36, 250, 32, 32, 36, 255, 34, 34, 39, 255, 35, 35, 40, 255, 35, 35, 40, 255, 35, 35, 40, 255, 35, 35, 40, 255, 35, 35, 40, 255, 66, 66, 71, 255, 248, 248, 248, 255, 254, 254, 254, 255, 87, 87, 90, 251, 77, 75, 89, 80, 0, 0, 0, 0, 0, 0, 0, 0, 77, 75, 89, 102, 30, 30, 34, 255, 34, 34, 39, 255, 37, 37, 42, 255, 37, 37, 42, 255, 78, 78, 82, 255, 38, 38, 43, 255, 37, 37, 42, 255, 37, 37, 42, 255, 197, 197, 199, 255, 255, 255, 255, 255, 170, 170, 171, 255, 30, 30, 34, 255, 77, 75, 89, 102, 0, 0, 0, 0, 0, 0, 0, 0, 77, 75, 89, 104, 31, 31, 35, 255, 35, 35, 40, 255, 37, 37, 42, 255, 184, 184, 186, 255, 255, 255, 255, 255, 95, 95, 99, 255, 37, 37, 42, 255, 116, 116, 119, 255, 255, 255, 255, 255, 237, 237, 237, 255, 51, 51, 56, 255, 31, 31, 35, 255, 77, 75, 89, 104, 0, 0, 0, 0, 0, 0, 0, 0, 77, 75, 89, 104, 31, 31, 35, 255, 35, 35, 40, 255, 37, 37, 42, 255, 141, 141, 143, 255, 255, 255, 255, 255, 184, 184, 185, 255, 53, 53, 57, 255, 237, 237, 237, 255, 255, 255, 255, 255, 116, 116, 119, 255, 35, 35, 40, 255, 31, 31, 35, 255, 77, 75, 89, 104, 0, 0, 0, 0, 0, 0, 0, 0, 77, 75, 89, 104, 31, 31, 35, 255, 35, 35, 40, 255, 37, 37, 42, 255, 58, 58, 62, 255, 251, 251, 251, 255, 250, 250, 250, 255, 178, 178, 180, 255, 255, 255, 255, 255, 197, 197, 199, 255, 37, 37, 42, 255, 35, 35, 40, 255, 31, 31, 35, 255, 77, 75, 89, 104, 0, 0, 0, 0, 0, 0, 0, 0, 77, 75, 89, 104, 31, 31, 35, 255, 35, 35, 40, 255, 37, 37, 42, 255, 37, 37, 42, 255, 184, 184, 186, 255, 255, 255, 255, 255, 254, 254, 254, 255, 248, 248, 248, 255, 69, 69, 73, 255, 37, 37, 42, 255, 35, 35, 40, 255, 31, 31, 35, 255, 77, 75, 89, 104, 0, 0, 0, 0, 0, 0, 0, 0, 77, 75, 89, 104, 31, 31, 35, 255, 35, 35, 40, 255, 37, 37, 42, 255, 37, 37, 42, 255, 97, 97, 101, 255, 255, 255, 255, 255, 255, 255, 255, 255, 143, 143, 146, 255, 37, 37, 42, 255, 37, 37, 42, 255, 35, 35, 40, 255, 31, 31, 35, 255, 77, 75, 89, 104, 0, 0, 0, 0, 0, 0, 0, 0, 77, 75, 89, 104, 31, 31, 35, 255, 35, 35, 40, 255, 37, 37, 42, 255, 37, 37, 42, 255, 38, 38, 43, 255, 78, 78, 82, 255, 99, 99, 102, 255, 42, 42, 47, 255, 37, 37, 42, 255, 37, 37, 42, 255, 35, 35, 40, 255, 31, 31, 35, 255, 77, 75, 89, 104, 0, 0, 0, 0, 0, 0, 0, 0, 77, 75, 89, 102, 30, 30, 34, 255, 34, 34, 39, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 34, 34, 39, 255, 30, 30, 34, 255, 77, 75, 89, 102, 0, 0, 0, 0, 0, 0, 0, 0, 77, 75, 89, 80, 32, 32, 36, 250, 32, 32, 36, 255, 34, 34, 39, 255, 35, 35, 40, 255, 35, 35, 40, 255, 35, 35, 40, 255, 35, 35, 40, 255, 35, 35, 40, 255, 35, 35, 40, 255, 34, 34, 39, 255, 32, 32, 36, 255, 32, 32, 36, 251, 77, 75, 89, 80, 0, 0, 0, 0, 0, 0, 0, 0, 77, 75, 89, 39, 56, 54, 64, 180, 32, 32, 36, 251, 30, 30, 34, 255, 31, 31, 35, 255, 31, 31, 35, 255, 31, 31, 35, 255, 31, 31, 35, 255, 31, 31, 35, 255, 31, 31, 35, 255, 30, 30, 34, 255, 32, 32, 37, 250, 56, 54, 64, 180, 77, 75, 89, 39, 0, 0, 0, 0, 0, 0, 0, 0, 77, 75, 89, 7, 77, 75, 89, 39, 77, 75, 89, 80, 77, 75, 89, 102, 77, 75, 89, 104, 77, 75, 89, 104, 77, 75, 89, 104, 77, 75, 89, 104, 77, 75, 89, 104, 77, 75, 89, 104, 77, 75, 89, 102, 77, 75, 89, 80, 77, 75, 89, 39, 77, 75, 89, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=605] +flags = 4 +flags = 4 +image = SubResource( 703 ) +size = Vector2( 16, 16 ) + +[sub_resource type="Image" id=704] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 122, 120, 131, 7, 122, 120, 131, 39, 122, 120, 131, 80, 122, 120, 131, 102, 122, 120, 131, 104, 122, 120, 131, 104, 122, 120, 131, 104, 122, 120, 131, 104, 122, 120, 131, 104, 122, 120, 131, 104, 130, 128, 138, 106, 144, 144, 147, 129, 115, 114, 123, 39, 122, 120, 131, 7, 0, 0, 0, 0, 0, 0, 0, 0, 122, 120, 131, 39, 106, 105, 112, 180, 88, 88, 91, 250, 86, 86, 89, 255, 87, 87, 90, 255, 87, 87, 90, 255, 87, 87, 90, 255, 87, 87, 90, 255, 87, 87, 90, 255, 87, 87, 90, 255, 158, 158, 160, 255, 152, 152, 152, 255, 147, 147, 149, 221, 122, 120, 131, 39, 0, 0, 0, 0, 0, 0, 0, 0, 122, 120, 131, 80, 88, 88, 91, 250, 88, 88, 91, 255, 89, 89, 93, 255, 90, 90, 94, 255, 90, 90, 94, 255, 90, 90, 94, 255, 90, 90, 94, 255, 90, 90, 94, 255, 104, 104, 108, 255, 149, 149, 149, 255, 153, 153, 153, 255, 125, 125, 127, 251, 122, 120, 131, 80, 0, 0, 0, 0, 0, 0, 0, 0, 122, 120, 131, 102, 86, 86, 89, 255, 89, 89, 93, 255, 92, 92, 95, 255, 92, 92, 95, 255, 122, 122, 125, 255, 92, 92, 96, 255, 92, 92, 95, 255, 92, 92, 95, 255, 155, 155, 156, 255, 151, 151, 151, 255, 147, 147, 148, 255, 86, 86, 89, 255, 122, 120, 131, 102, 0, 0, 0, 0, 0, 0, 0, 0, 122, 120, 131, 104, 87, 87, 90, 255, 90, 90, 94, 255, 92, 92, 95, 255, 151, 151, 151, 255, 151, 151, 151, 255, 113, 113, 116, 255, 92, 92, 95, 255, 124, 124, 126, 255, 153, 153, 153, 255, 152, 152, 152, 255, 102, 102, 106, 255, 87, 87, 90, 255, 122, 120, 131, 104, 0, 0, 0, 0, 0, 0, 0, 0, 122, 120, 131, 104, 87, 87, 90, 255, 90, 90, 94, 255, 92, 92, 95, 255, 133, 133, 134, 255, 151, 151, 151, 255, 130, 130, 131, 255, 101, 101, 104, 255, 154, 154, 154, 255, 155, 155, 155, 255, 127, 127, 129, 255, 90, 90, 94, 255, 87, 87, 90, 255, 122, 120, 131, 104, 0, 0, 0, 0, 0, 0, 0, 0, 122, 120, 131, 104, 87, 87, 90, 255, 90, 90, 94, 255, 92, 92, 95, 255, 99, 99, 102, 255, 150, 150, 150, 255, 149, 149, 149, 255, 129, 129, 131, 255, 155, 155, 155, 255, 155, 155, 156, 255, 89, 89, 92, 255, 90, 90, 94, 255, 87, 87, 90, 255, 122, 120, 131, 104, 0, 0, 0, 0, 0, 0, 0, 0, 122, 120, 131, 104, 87, 87, 90, 255, 90, 90, 94, 255, 92, 92, 95, 255, 89, 89, 92, 255, 143, 143, 143, 255, 151, 151, 151, 255, 158, 158, 158, 255, 164, 164, 164, 255, 113, 113, 116, 255, 92, 92, 95, 255, 90, 90, 94, 255, 87, 87, 90, 255, 122, 120, 131, 104, 0, 0, 0, 0, 0, 0, 0, 0, 122, 120, 131, 104, 87, 87, 90, 255, 90, 90, 94, 255, 92, 92, 95, 255, 92, 92, 95, 255, 120, 120, 123, 255, 155, 155, 155, 255, 155, 155, 155, 255, 147, 147, 148, 255, 92, 92, 95, 255, 92, 92, 95, 255, 90, 90, 94, 255, 87, 87, 90, 255, 122, 120, 131, 104, 0, 0, 0, 0, 0, 0, 0, 0, 122, 120, 131, 104, 87, 87, 90, 255, 90, 90, 94, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 96, 255, 122, 122, 125, 255, 134, 134, 136, 255, 95, 95, 99, 255, 92, 92, 95, 255, 92, 92, 95, 255, 90, 90, 94, 255, 87, 87, 90, 255, 122, 120, 131, 104, 0, 0, 0, 0, 0, 0, 0, 0, 122, 120, 131, 102, 86, 86, 89, 255, 89, 89, 93, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 89, 89, 93, 255, 86, 86, 89, 255, 122, 120, 131, 102, 0, 0, 0, 0, 0, 0, 0, 0, 122, 120, 131, 80, 88, 88, 91, 250, 88, 88, 91, 255, 89, 89, 93, 255, 90, 90, 94, 255, 90, 90, 94, 255, 90, 90, 94, 255, 90, 90, 94, 255, 90, 90, 94, 255, 90, 90, 94, 255, 89, 89, 93, 255, 88, 88, 91, 255, 88, 88, 91, 251, 122, 120, 131, 80, 0, 0, 0, 0, 0, 0, 0, 0, 122, 120, 131, 39, 106, 104, 112, 180, 88, 88, 91, 251, 86, 86, 89, 255, 87, 87, 90, 255, 87, 87, 90, 255, 87, 87, 90, 255, 87, 87, 90, 255, 87, 87, 90, 255, 87, 87, 90, 255, 86, 86, 89, 255, 88, 88, 92, 250, 106, 104, 112, 180, 122, 120, 131, 39, 0, 0, 0, 0, 0, 0, 0, 0, 122, 120, 131, 7, 122, 120, 131, 39, 122, 120, 131, 80, 122, 120, 131, 102, 122, 120, 131, 104, 122, 120, 131, 104, 122, 120, 131, 104, 122, 120, 131, 104, 122, 120, 131, 104, 122, 120, 131, 104, 122, 120, 131, 102, 122, 120, 131, 80, 122, 120, 131, 39, 122, 120, 131, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=607] +flags = 4 +flags = 4 +image = SubResource( 704 ) +size = Vector2( 16, 16 ) + +[sub_resource type="Image" id=705] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39, 39, 39, 27, 39, 39, 39, 136, 39, 39, 39, 209, 39, 39, 39, 247, 39, 39, 39, 247, 39, 39, 39, 209, 39, 39, 39, 136, 39, 39, 39, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 4, 0, 39, 39, 39, 100, 39, 39, 39, 246, 127, 127, 130, 255, 216, 216, 216, 255, 217, 217, 217, 255, 217, 217, 217, 255, 216, 216, 216, 255, 127, 127, 130, 255, 39, 39, 39, 246, 39, 39, 39, 100, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39, 39, 39, 100, 71, 71, 72, 255, 216, 216, 216, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 216, 216, 216, 255, 71, 71, 72, 255, 39, 39, 39, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39, 39, 39, 27, 39, 39, 39, 246, 216, 216, 216, 255, 217, 217, 217, 255, 211, 211, 211, 255, 162, 162, 162, 255, 121, 121, 121, 255, 121, 121, 121, 255, 162, 162, 162, 255, 211, 211, 211, 255, 217, 217, 217, 255, 216, 216, 216, 255, 39, 39, 39, 246, 39, 39, 39, 27, 0, 0, 0, 0, 0, 0, 0, 0, 39, 39, 39, 136, 127, 127, 130, 255, 217, 217, 217, 255, 211, 211, 211, 255, 115, 115, 115, 255, 28, 28, 28, 255, 3, 3, 3, 255, 3, 3, 3, 255, 28, 28, 28, 255, 115, 115, 115, 255, 211, 211, 211, 255, 217, 217, 217, 255, 127, 127, 130, 255, 39, 39, 39, 136, 0, 0, 0, 0, 0, 0, 0, 0, 39, 39, 39, 209, 216, 216, 216, 255, 217, 217, 217, 255, 162, 162, 162, 255, 28, 28, 28, 255, 0, 0, 0, 255, 0, 0, 0, 255, 0, 0, 0, 255, 0, 0, 0, 255, 28, 28, 28, 255, 162, 162, 162, 255, 217, 217, 217, 255, 216, 216, 216, 255, 39, 39, 39, 209, 0, 0, 0, 0, 0, 0, 0, 0, 39, 39, 39, 247, 217, 217, 217, 255, 217, 217, 217, 255, 121, 121, 121, 255, 3, 3, 3, 255, 0, 0, 0, 255, 0, 0, 0, 255, 0, 0, 0, 255, 0, 0, 0, 255, 3, 3, 3, 255, 121, 121, 121, 255, 217, 217, 217, 255, 217, 217, 217, 255, 39, 39, 39, 247, 0, 0, 0, 0, 0, 0, 0, 0, 39, 39, 39, 247, 217, 217, 217, 255, 217, 217, 217, 255, 121, 121, 121, 255, 3, 3, 3, 255, 0, 0, 0, 255, 0, 0, 0, 255, 0, 0, 0, 255, 0, 0, 0, 255, 3, 3, 3, 255, 121, 121, 121, 255, 217, 217, 217, 255, 217, 217, 217, 255, 39, 39, 39, 247, 0, 0, 0, 0, 0, 0, 0, 0, 39, 39, 39, 209, 216, 216, 216, 255, 217, 217, 217, 255, 162, 162, 162, 255, 28, 28, 28, 255, 0, 0, 0, 255, 0, 0, 0, 255, 0, 0, 0, 255, 0, 0, 0, 255, 28, 28, 28, 255, 162, 162, 162, 255, 217, 217, 217, 255, 216, 216, 216, 255, 39, 39, 39, 209, 0, 0, 0, 0, 0, 0, 0, 0, 39, 39, 39, 136, 127, 127, 130, 255, 217, 217, 217, 255, 211, 211, 211, 255, 115, 115, 115, 255, 28, 28, 28, 255, 3, 3, 3, 255, 3, 3, 3, 255, 28, 28, 28, 255, 115, 115, 115, 255, 211, 211, 211, 255, 217, 217, 217, 255, 127, 127, 130, 255, 39, 39, 39, 136, 0, 0, 0, 0, 0, 0, 0, 0, 39, 39, 39, 27, 39, 39, 39, 246, 216, 216, 216, 255, 217, 217, 217, 255, 211, 211, 211, 255, 162, 162, 162, 255, 121, 121, 121, 255, 121, 121, 121, 255, 162, 162, 162, 255, 211, 211, 211, 255, 217, 217, 217, 255, 216, 216, 216, 255, 39, 39, 39, 246, 39, 39, 39, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39, 39, 39, 100, 71, 71, 72, 255, 216, 216, 216, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 216, 216, 216, 255, 71, 71, 72, 255, 39, 39, 39, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 39, 39, 39, 100, 39, 39, 39, 246, 127, 127, 130, 255, 216, 216, 216, 255, 217, 217, 217, 255, 217, 217, 217, 255, 216, 216, 216, 255, 127, 127, 130, 255, 39, 39, 39, 246, 39, 39, 39, 100, 10, 10, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39, 39, 39, 27, 39, 39, 39, 136, 39, 39, 39, 209, 39, 39, 39, 247, 39, 39, 39, 247, 39, 39, 39, 209, 39, 39, 39, 136, 39, 39, 39, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=609] +flags = 4 +flags = 4 +image = SubResource( 705 ) +size = Vector2( 16, 16 ) + +[sub_resource type="Image" id=706] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127, 127, 130, 255, 162, 162, 162, 255, 162, 162, 162, 255, 162, 162, 162, 255, 162, 162, 162, 255, 127, 127, 130, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 115, 115, 115, 255, 162, 162, 162, 255, 162, 162, 162, 255, 162, 162, 162, 255, 162, 162, 162, 255, 162, 162, 162, 255, 162, 162, 162, 255, 162, 162, 162, 255, 162, 162, 162, 255, 115, 115, 115, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 162, 162, 162, 255, 162, 162, 162, 255, 162, 162, 162, 255, 162, 162, 162, 255, 127, 127, 130, 255, 127, 127, 130, 255, 162, 162, 162, 255, 162, 162, 162, 255, 162, 162, 162, 255, 162, 162, 162, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127, 127, 130, 255, 162, 162, 162, 255, 162, 162, 162, 255, 121, 121, 121, 255, 71, 71, 72, 255, 71, 71, 72, 255, 71, 71, 72, 255, 71, 71, 72, 255, 121, 121, 121, 255, 162, 162, 162, 255, 162, 162, 162, 255, 127, 127, 130, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 162, 162, 162, 255, 162, 162, 162, 255, 162, 162, 162, 255, 71, 71, 72, 255, 71, 71, 72, 255, 71, 71, 72, 255, 71, 71, 72, 255, 71, 71, 72, 255, 71, 71, 72, 255, 162, 162, 162, 255, 162, 162, 162, 255, 162, 162, 162, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 162, 162, 162, 255, 162, 162, 162, 255, 127, 127, 130, 255, 71, 71, 72, 255, 71, 71, 72, 255, 71, 71, 72, 255, 71, 71, 72, 255, 71, 71, 72, 255, 71, 71, 72, 255, 127, 127, 130, 255, 162, 162, 162, 255, 162, 162, 162, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 162, 162, 162, 255, 162, 162, 162, 255, 127, 127, 130, 255, 71, 71, 72, 255, 71, 71, 72, 255, 71, 71, 72, 255, 71, 71, 72, 255, 71, 71, 72, 255, 71, 71, 72, 255, 127, 127, 130, 255, 162, 162, 162, 255, 162, 162, 162, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 162, 162, 162, 255, 162, 162, 162, 255, 162, 162, 162, 255, 71, 71, 72, 255, 71, 71, 72, 255, 71, 71, 72, 255, 71, 71, 72, 255, 71, 71, 72, 255, 71, 71, 72, 255, 162, 162, 162, 255, 162, 162, 162, 255, 162, 162, 162, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127, 127, 130, 255, 162, 162, 162, 255, 162, 162, 162, 255, 121, 121, 121, 255, 71, 71, 72, 255, 71, 71, 72, 255, 71, 71, 72, 255, 71, 71, 72, 255, 121, 121, 121, 255, 162, 162, 162, 255, 162, 162, 162, 255, 127, 127, 130, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 162, 162, 162, 255, 162, 162, 162, 255, 162, 162, 162, 255, 162, 162, 162, 255, 127, 127, 130, 255, 127, 127, 130, 255, 162, 162, 162, 255, 162, 162, 162, 255, 162, 162, 162, 255, 162, 162, 162, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 115, 115, 115, 255, 162, 162, 162, 255, 162, 162, 162, 255, 162, 162, 162, 255, 162, 162, 162, 255, 162, 162, 162, 255, 162, 162, 162, 255, 162, 162, 162, 255, 162, 162, 162, 255, 115, 115, 115, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127, 127, 130, 255, 162, 162, 162, 255, 162, 162, 162, 255, 162, 162, 162, 255, 162, 162, 162, 255, 127, 127, 130, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=611] +flags = 4 +flags = 4 +image = SubResource( 706 ) +size = Vector2( 16, 16 ) + +[sub_resource type="Image" id=707] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39, 39, 39, 27, 39, 39, 39, 136, 39, 39, 39, 209, 39, 39, 39, 247, 39, 39, 39, 247, 39, 39, 39, 209, 39, 39, 39, 136, 39, 39, 39, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 4, 0, 39, 39, 39, 100, 39, 39, 39, 246, 127, 127, 130, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 127, 127, 130, 255, 39, 39, 39, 246, 39, 39, 39, 100, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39, 39, 39, 100, 71, 71, 72, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 71, 71, 72, 255, 39, 39, 39, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39, 39, 39, 27, 39, 39, 39, 246, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 39, 39, 39, 246, 39, 39, 39, 27, 0, 0, 0, 0, 0, 0, 0, 0, 39, 39, 39, 136, 127, 127, 130, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 127, 127, 130, 255, 39, 39, 39, 136, 0, 0, 0, 0, 0, 0, 0, 0, 39, 39, 39, 209, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 39, 39, 39, 209, 0, 0, 0, 0, 0, 0, 0, 0, 39, 39, 39, 247, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 39, 39, 39, 247, 0, 0, 0, 0, 0, 0, 0, 0, 39, 39, 39, 247, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 39, 39, 39, 247, 0, 0, 0, 0, 0, 0, 0, 0, 39, 39, 39, 209, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 39, 39, 39, 209, 0, 0, 0, 0, 0, 0, 0, 0, 39, 39, 39, 136, 127, 127, 130, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 127, 127, 130, 255, 39, 39, 39, 136, 0, 0, 0, 0, 0, 0, 0, 0, 39, 39, 39, 27, 39, 39, 39, 246, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 39, 39, 39, 246, 39, 39, 39, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39, 39, 39, 100, 71, 71, 72, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 71, 71, 72, 255, 39, 39, 39, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 39, 39, 39, 100, 39, 39, 39, 246, 127, 127, 130, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 217, 217, 217, 255, 127, 127, 130, 255, 39, 39, 39, 246, 39, 39, 39, 100, 10, 10, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39, 39, 39, 27, 39, 39, 39, 136, 39, 39, 39, 209, 39, 39, 39, 247, 39, 39, 39, 247, 39, 39, 39, 209, 39, 39, 39, 136, 39, 39, 39, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=613] +flags = 4 +flags = 4 +image = SubResource( 707 ) +size = Vector2( 16, 16 ) + +[sub_resource type="Image" id=708] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 84, 84, 27, 84, 84, 84, 27, 84, 84, 84, 27, 84, 84, 84, 27, 84, 84, 84, 27, 84, 84, 84, 27, 84, 84, 84, 27, 84, 84, 84, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 84, 84, 27, 84, 84, 84, 27, 128, 128, 129, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 128, 128, 129, 255, 84, 84, 84, 27, 84, 84, 84, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 84, 84, 27, 100, 100, 100, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 100, 100, 100, 255, 84, 84, 84, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 84, 84, 27, 84, 84, 84, 27, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 84, 84, 84, 27, 84, 84, 84, 27, 0, 0, 0, 0, 0, 0, 0, 0, 84, 84, 84, 27, 128, 128, 129, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 128, 128, 129, 255, 84, 84, 84, 27, 0, 0, 0, 0, 0, 0, 0, 0, 84, 84, 84, 27, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 84, 84, 84, 27, 0, 0, 0, 0, 0, 0, 0, 0, 84, 84, 84, 27, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 84, 84, 84, 27, 0, 0, 0, 0, 0, 0, 0, 0, 84, 84, 84, 27, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 84, 84, 84, 27, 0, 0, 0, 0, 0, 0, 0, 0, 84, 84, 84, 27, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 84, 84, 84, 27, 0, 0, 0, 0, 0, 0, 0, 0, 84, 84, 84, 27, 128, 128, 129, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 128, 128, 129, 255, 84, 84, 84, 27, 0, 0, 0, 0, 0, 0, 0, 0, 84, 84, 84, 27, 84, 84, 84, 27, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 84, 84, 84, 27, 84, 84, 84, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 84, 84, 27, 100, 100, 100, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 100, 100, 100, 255, 84, 84, 84, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 84, 84, 27, 84, 84, 84, 27, 128, 128, 129, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 173, 173, 173, 255, 128, 128, 129, 255, 84, 84, 84, 27, 84, 84, 84, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 84, 84, 27, 84, 84, 84, 27, 84, 84, 84, 27, 84, 84, 84, 27, 84, 84, 84, 27, 84, 84, 84, 27, 84, 84, 84, 27, 84, 84, 84, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=615] +flags = 4 +flags = 4 +image = SubResource( 708 ) +size = Vector2( 16, 16 ) + +[sub_resource type="Image" id=709] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 75, 89, 7, 77, 75, 89, 39, 77, 75, 89, 80, 77, 75, 89, 102, 77, 75, 89, 104, 77, 75, 89, 104, 77, 75, 89, 104, 77, 75, 89, 104, 77, 75, 89, 104, 77, 75, 89, 104, 77, 75, 89, 102, 77, 75, 89, 80, 77, 75, 89, 39, 77, 75, 89, 7, 0, 0, 0, 0, 0, 0, 0, 0, 77, 75, 89, 39, 56, 55, 64, 180, 32, 32, 36, 250, 30, 30, 34, 255, 31, 31, 35, 255, 31, 31, 35, 255, 31, 31, 35, 255, 31, 31, 35, 255, 31, 31, 35, 255, 31, 31, 35, 255, 30, 30, 34, 255, 32, 32, 36, 250, 56, 55, 64, 180, 77, 75, 89, 39, 0, 0, 0, 0, 0, 0, 0, 0, 77, 75, 89, 80, 32, 32, 36, 250, 32, 32, 36, 255, 34, 34, 39, 255, 35, 35, 40, 255, 35, 35, 40, 255, 35, 35, 40, 255, 35, 35, 40, 255, 35, 35, 40, 255, 35, 35, 40, 255, 34, 34, 39, 255, 32, 32, 36, 255, 32, 32, 36, 250, 77, 75, 89, 80, 0, 0, 0, 0, 0, 0, 0, 0, 77, 75, 89, 102, 30, 30, 34, 255, 34, 34, 39, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 34, 34, 39, 255, 30, 30, 34, 255, 77, 75, 89, 102, 0, 0, 0, 0, 0, 0, 0, 0, 77, 75, 89, 104, 31, 31, 35, 255, 35, 35, 40, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 35, 35, 40, 255, 31, 31, 35, 255, 77, 75, 89, 104, 0, 0, 0, 0, 0, 0, 0, 0, 77, 75, 89, 104, 31, 31, 35, 255, 35, 35, 40, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 35, 35, 40, 255, 31, 31, 35, 255, 77, 75, 89, 104, 0, 0, 0, 0, 0, 0, 0, 0, 77, 75, 89, 104, 31, 31, 35, 255, 35, 35, 40, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 35, 35, 40, 255, 31, 31, 35, 255, 77, 75, 89, 104, 0, 0, 0, 0, 0, 0, 0, 0, 77, 75, 89, 104, 31, 31, 35, 255, 35, 35, 40, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 35, 35, 40, 255, 31, 31, 35, 255, 77, 75, 89, 104, 0, 0, 0, 0, 0, 0, 0, 0, 77, 75, 89, 104, 31, 31, 35, 255, 35, 35, 40, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 35, 35, 40, 255, 31, 31, 35, 255, 77, 75, 89, 104, 0, 0, 0, 0, 0, 0, 0, 0, 77, 75, 89, 104, 31, 31, 35, 255, 35, 35, 40, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 35, 35, 40, 255, 31, 31, 35, 255, 77, 75, 89, 104, 0, 0, 0, 0, 0, 0, 0, 0, 77, 75, 89, 102, 30, 30, 34, 255, 34, 34, 39, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 34, 34, 39, 255, 30, 30, 34, 255, 77, 75, 89, 102, 0, 0, 0, 0, 0, 0, 0, 0, 77, 75, 89, 80, 32, 32, 36, 250, 32, 32, 36, 255, 34, 34, 39, 255, 35, 35, 40, 255, 35, 35, 40, 255, 35, 35, 40, 255, 35, 35, 40, 255, 35, 35, 40, 255, 35, 35, 40, 255, 34, 34, 39, 255, 32, 32, 36, 255, 32, 32, 36, 251, 77, 75, 89, 80, 0, 0, 0, 0, 0, 0, 0, 0, 77, 75, 89, 39, 56, 54, 64, 180, 32, 32, 36, 251, 30, 30, 34, 255, 31, 31, 35, 255, 31, 31, 35, 255, 31, 31, 35, 255, 31, 31, 35, 255, 31, 31, 35, 255, 31, 31, 35, 255, 30, 30, 34, 255, 32, 32, 37, 250, 56, 54, 64, 180, 77, 75, 89, 39, 0, 0, 0, 0, 0, 0, 0, 0, 77, 75, 89, 7, 77, 75, 89, 39, 77, 75, 89, 80, 77, 75, 89, 102, 77, 75, 89, 104, 77, 75, 89, 104, 77, 75, 89, 104, 77, 75, 89, 104, 77, 75, 89, 104, 77, 75, 89, 104, 77, 75, 89, 102, 77, 75, 89, 80, 77, 75, 89, 39, 77, 75, 89, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=617] +flags = 4 +flags = 4 +image = SubResource( 709 ) +size = Vector2( 16, 16 ) + +[sub_resource type="Image" id=710] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 122, 120, 131, 7, 122, 120, 131, 39, 122, 120, 131, 80, 122, 120, 131, 102, 122, 120, 131, 104, 122, 120, 131, 104, 122, 120, 131, 104, 122, 120, 131, 104, 122, 120, 131, 104, 122, 120, 131, 104, 122, 120, 131, 102, 122, 120, 131, 80, 122, 120, 131, 39, 122, 120, 131, 7, 0, 0, 0, 0, 0, 0, 0, 0, 122, 120, 131, 39, 106, 105, 112, 180, 88, 88, 91, 250, 86, 86, 89, 255, 87, 87, 90, 255, 87, 87, 90, 255, 87, 87, 90, 255, 87, 87, 90, 255, 87, 87, 90, 255, 87, 87, 90, 255, 86, 86, 89, 255, 88, 88, 91, 250, 106, 105, 112, 180, 122, 120, 131, 39, 0, 0, 0, 0, 0, 0, 0, 0, 122, 120, 131, 80, 88, 88, 91, 250, 88, 88, 91, 255, 89, 89, 93, 255, 90, 90, 94, 255, 90, 90, 94, 255, 90, 90, 94, 255, 90, 90, 94, 255, 90, 90, 94, 255, 90, 90, 94, 255, 89, 89, 93, 255, 88, 88, 91, 255, 88, 88, 91, 250, 122, 120, 131, 80, 0, 0, 0, 0, 0, 0, 0, 0, 122, 120, 131, 102, 86, 86, 89, 255, 89, 89, 93, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 89, 89, 93, 255, 86, 86, 89, 255, 122, 120, 131, 102, 0, 0, 0, 0, 0, 0, 0, 0, 122, 120, 131, 104, 87, 87, 90, 255, 90, 90, 94, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 90, 90, 94, 255, 87, 87, 90, 255, 122, 120, 131, 104, 0, 0, 0, 0, 0, 0, 0, 0, 122, 120, 131, 104, 87, 87, 90, 255, 90, 90, 94, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 90, 90, 94, 255, 87, 87, 90, 255, 122, 120, 131, 104, 0, 0, 0, 0, 0, 0, 0, 0, 122, 120, 131, 104, 87, 87, 90, 255, 90, 90, 94, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 90, 90, 94, 255, 87, 87, 90, 255, 122, 120, 131, 104, 0, 0, 0, 0, 0, 0, 0, 0, 122, 120, 131, 104, 87, 87, 90, 255, 90, 90, 94, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 90, 90, 94, 255, 87, 87, 90, 255, 122, 120, 131, 104, 0, 0, 0, 0, 0, 0, 0, 0, 122, 120, 131, 104, 87, 87, 90, 255, 90, 90, 94, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 90, 90, 94, 255, 87, 87, 90, 255, 122, 120, 131, 104, 0, 0, 0, 0, 0, 0, 0, 0, 122, 120, 131, 104, 87, 87, 90, 255, 90, 90, 94, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 90, 90, 94, 255, 87, 87, 90, 255, 122, 120, 131, 104, 0, 0, 0, 0, 0, 0, 0, 0, 122, 120, 131, 102, 86, 86, 89, 255, 89, 89, 93, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 92, 92, 95, 255, 89, 89, 93, 255, 86, 86, 89, 255, 122, 120, 131, 102, 0, 0, 0, 0, 0, 0, 0, 0, 122, 120, 131, 80, 88, 88, 91, 250, 88, 88, 91, 255, 89, 89, 93, 255, 90, 90, 94, 255, 90, 90, 94, 255, 90, 90, 94, 255, 90, 90, 94, 255, 90, 90, 94, 255, 90, 90, 94, 255, 89, 89, 93, 255, 88, 88, 91, 255, 88, 88, 91, 251, 122, 120, 131, 80, 0, 0, 0, 0, 0, 0, 0, 0, 122, 120, 131, 39, 106, 104, 112, 180, 88, 88, 91, 251, 86, 86, 89, 255, 87, 87, 90, 255, 87, 87, 90, 255, 87, 87, 90, 255, 87, 87, 90, 255, 87, 87, 90, 255, 87, 87, 90, 255, 86, 86, 89, 255, 88, 88, 92, 250, 106, 104, 112, 180, 122, 120, 131, 39, 0, 0, 0, 0, 0, 0, 0, 0, 122, 120, 131, 7, 122, 120, 131, 39, 122, 120, 131, 80, 122, 120, 131, 102, 122, 120, 131, 104, 122, 120, 131, 104, 122, 120, 131, 104, 122, 120, 131, 104, 122, 120, 131, 104, 122, 120, 131, 104, 122, 120, 131, 102, 122, 120, 131, 80, 122, 120, 131, 39, 122, 120, 131, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=619] +flags = 4 +flags = 4 +image = SubResource( 710 ) +size = Vector2( 16, 16 ) + +[sub_resource type="StyleBoxEmpty" id=620] +content_margin_left = 4.0 +content_margin_right = 4.0 +content_margin_top = 4.0 +content_margin_bottom = 4.0 + +[sub_resource type="Image" id=711] +data = { +"data": PoolByteArray( 71, 140, 191, 14, 71, 140, 191, 57, 71, 140, 191, 104, 71, 140, 191, 122, 71, 140, 191, 123, 71, 140, 191, 123, 71, 140, 191, 123, 71, 140, 191, 123, 71, 140, 191, 122, 71, 140, 191, 104, 71, 140, 191, 57, 71, 140, 191, 14, 71, 140, 191, 58, 71, 140, 191, 116, 71, 140, 191, 16, 71, 140, 191, 8, 71, 140, 191, 8, 71, 140, 191, 8, 71, 140, 191, 8, 71, 140, 191, 8, 71, 140, 191, 8, 71, 140, 191, 16, 71, 140, 191, 116, 71, 140, 191, 58, 71, 140, 191, 105, 71, 140, 191, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 140, 191, 15, 71, 140, 191, 105, 71, 140, 191, 123, 71, 140, 191, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 140, 191, 6, 71, 140, 191, 123, 71, 140, 191, 123, 71, 140, 191, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 140, 191, 8, 71, 140, 191, 123, 71, 140, 191, 123, 71, 140, 191, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 140, 191, 8, 71, 140, 191, 123, 71, 140, 191, 123, 71, 140, 191, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 140, 191, 8, 71, 140, 191, 123, 71, 140, 191, 123, 71, 140, 191, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 140, 191, 8, 71, 140, 191, 123, 71, 140, 191, 123, 71, 140, 191, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 140, 191, 6, 71, 140, 191, 123, 71, 140, 191, 105, 71, 140, 191, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 140, 191, 14, 71, 140, 191, 105, 71, 140, 191, 58, 71, 140, 191, 117, 71, 140, 191, 15, 71, 140, 191, 8, 71, 140, 191, 8, 71, 140, 191, 8, 71, 140, 191, 8, 71, 140, 191, 8, 71, 140, 191, 8, 71, 140, 191, 17, 71, 140, 191, 116, 71, 140, 191, 58, 71, 140, 191, 14, 71, 140, 191, 58, 71, 140, 191, 104, 71, 140, 191, 122, 71, 140, 191, 123, 71, 140, 191, 123, 71, 140, 191, 123, 71, 140, 191, 123, 71, 140, 191, 122, 71, 140, 191, 104, 71, 140, 191, 57, 71, 140, 191, 14 ), +"format": "RGBA8", +"height": 12, +"mipmaps": false, +"width": 12 +} + +[sub_resource type="ImageTexture" id=403] +flags = 4 +flags = 4 +image = SubResource( 711 ) +size = Vector2( 12, 12 ) + +[sub_resource type="StyleBoxTexture" id=404] +content_margin_left = 4.0 +content_margin_right = 4.0 +content_margin_top = 4.0 +content_margin_bottom = 4.0 +texture = SubResource( 403 ) +region_rect = Rect2( 0, 0, 12, 12 ) +margin_left = 5.0 +margin_right = 5.0 +margin_top = 5.0 +margin_bottom = 5.0 +expand_margin_left = 1.0 +expand_margin_right = 1.0 +expand_margin_top = 1.0 +expand_margin_bottom = 1.0 + +[sub_resource type="Image" id=712] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 0, 0, 0, 0, 223, 223, 223, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 0, 0, 0, 0, 224, 224, 224, 255, 223, 223, 223, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 0, 0, 0, 0, 224, 224, 224, 255, 224, 224, 224, 255, 223, 223, 223, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 0, 0, 0, 0, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 223, 223, 223, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=590] +flags = 4 +flags = 4 +image = SubResource( 712 ) +size = Vector2( 16, 16 ) + +[sub_resource type="Image" id=713] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 197, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 225, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 195, 0, 0, 0, 0, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 0, 0, 0, 0, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 0, 0, 0, 0, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 0, 0, 0, 0, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 0, 0, 0, 0, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 0, 0, 0, 0, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 0, 0, 0, 0, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 0, 0, 0, 0, 224, 195, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 223, 194, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "LumAlpha8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=592] +flags = 4 +flags = 4 +image = SubResource( 713 ) +size = Vector2( 16, 16 ) + +[sub_resource type="Image" id=714] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 222, 23, 224, 207, 224, 206, 222, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 220, 22, 225, 210, 224, 254, 224, 254, 224, 215, 224, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 220, 22, 225, 210, 224, 254, 224, 254, 224, 254, 224, 254, 224, 215, 224, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 222, 23, 224, 212, 224, 254, 224, 209, 224, 254, 224, 253, 225, 210, 224, 254, 224, 212, 222, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 205, 224, 254, 224, 208, 220, 22, 224, 254, 224, 253, 219, 21, 224, 209, 224, 254, 224, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 190, 224, 197, 217, 20, 255, 1, 224, 254, 224, 253, 0, 0, 219, 21, 225, 201, 224, 197, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 1, 224, 254, 224, 253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 1, 224, 254, 224, 253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 196, 225, 193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "LumAlpha8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=594] +flags = 4 +flags = 4 +image = SubResource( 714 ) +size = Vector2( 16, 16 ) + +[sub_resource type="Image" id=715] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 219, 7, 223, 110, 224, 199, 224, 243, 224, 243, 224, 199, 222, 109, 219, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 227, 27, 224, 207, 224, 254, 224, 254, 224, 254, 224, 254, 224, 254, 224, 254, 224, 206, 227, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 219, 7, 224, 207, 224, 254, 224, 225, 224, 83, 216, 13, 216, 13, 223, 80, 224, 215, 224, 254, 224, 206, 219, 7, 0, 0, 0, 0, 0, 0, 0, 0, 223, 110, 224, 254, 224, 225, 227, 18, 0, 0, 0, 0, 0, 0, 0, 0, 225, 17, 224, 225, 224, 254, 222, 108, 0, 0, 0, 0, 0, 0, 0, 0, 224, 200, 224, 254, 224, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 222, 85, 224, 254, 224, 198, 0, 0, 0, 0, 0, 0, 0, 0, 224, 242, 224, 254, 216, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 219, 14, 224, 254, 224, 241, 0, 0, 0, 0, 224, 158, 224, 254, 224, 254, 224, 254, 224, 254, 224, 158, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 221, 15, 224, 254, 224, 241, 0, 0, 0, 0, 232, 11, 224, 212, 224, 254, 224, 254, 224, 212, 232, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 222, 86, 224, 254, 224, 198, 0, 0, 0, 0, 0, 0, 225, 43, 224, 243, 224, 243, 225, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 228, 19, 225, 226, 224, 254, 222, 108, 0, 0, 0, 0, 0, 0, 0, 0, 223, 96, 223, 96, 0, 0, 0, 0, 0, 0, 0, 0, 219, 14, 222, 86, 225, 226, 224, 254, 224, 206, 213, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 254, 224, 254, 224, 254, 224, 206, 227, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 242, 224, 197, 222, 108, 213, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "LumAlpha8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=596] +flags = 4 +flags = 4 +image = SubResource( 715 ) +size = Vector2( 16, 16 ) + +[sub_resource type="Image" id=716] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 223, 223, 223, 8, 222, 222, 222, 108, 224, 224, 224, 197, 224, 224, 224, 244, 224, 224, 224, 243, 224, 224, 224, 197, 222, 222, 222, 109, 227, 227, 227, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 222, 222, 222, 46, 224, 224, 224, 216, 224, 224, 224, 254, 224, 224, 224, 254, 224, 224, 224, 254, 224, 224, 224, 254, 224, 224, 224, 254, 224, 224, 224, 254, 225, 225, 225, 218, 224, 224, 224, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 222, 222, 222, 47, 224, 224, 224, 240, 224, 224, 224, 254, 224, 224, 224, 225, 224, 224, 224, 83, 216, 216, 216, 13, 216, 216, 216, 13, 223, 223, 223, 80, 224, 224, 224, 215, 224, 224, 224, 254, 224, 224, 224, 242, 225, 225, 225, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 227, 227, 227, 9, 224, 224, 224, 220, 224, 224, 224, 254, 224, 224, 224, 225, 227, 227, 227, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 225, 225, 225, 17, 224, 224, 224, 225, 224, 224, 224, 254, 224, 224, 224, 223, 230, 230, 230, 10, 0, 0, 0, 0, 0, 0, 0, 0, 223, 223, 223, 119, 224, 224, 224, 254, 224, 224, 224, 254, 224, 224, 224, 83, 0, 0, 0, 0, 224, 224, 224, 75, 224, 224, 224, 227, 225, 225, 225, 226, 224, 224, 224, 73, 0, 0, 0, 0, 222, 222, 222, 85, 224, 224, 224, 254, 224, 224, 224, 254, 223, 223, 223, 121, 0, 0, 0, 0, 0, 0, 0, 0, 225, 225, 225, 218, 224, 224, 224, 254, 224, 224, 224, 254, 216, 216, 216, 13, 0, 0, 0, 0, 225, 225, 225, 226, 224, 224, 224, 254, 224, 224, 224, 254, 224, 224, 224, 225, 0, 0, 0, 0, 219, 219, 219, 14, 224, 224, 224, 254, 224, 224, 224, 254, 225, 225, 225, 218, 0, 0, 0, 0, 0, 0, 0, 0, 224, 224, 224, 219, 224, 224, 224, 254, 224, 224, 224, 254, 216, 216, 216, 13, 0, 0, 0, 0, 225, 225, 225, 226, 224, 224, 224, 254, 224, 224, 224, 254, 224, 224, 224, 225, 0, 0, 0, 0, 221, 221, 221, 15, 224, 224, 224, 254, 224, 224, 224, 254, 224, 224, 224, 219, 0, 0, 0, 0, 0, 0, 0, 0, 222, 222, 222, 124, 224, 224, 224, 254, 224, 224, 224, 254, 223, 223, 223, 80, 0, 0, 0, 0, 224, 224, 224, 73, 225, 225, 225, 226, 224, 224, 224, 225, 223, 223, 223, 72, 0, 0, 0, 0, 222, 222, 222, 86, 224, 224, 224, 254, 224, 224, 224, 254, 224, 224, 224, 123, 0, 0, 0, 0, 0, 0, 0, 0, 213, 213, 213, 12, 224, 224, 224, 227, 224, 224, 224, 254, 224, 224, 224, 215, 225, 225, 225, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 228, 228, 228, 19, 225, 225, 225, 226, 224, 224, 224, 254, 224, 224, 224, 225, 213, 213, 213, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 223, 223, 223, 56, 224, 224, 224, 244, 224, 224, 224, 254, 224, 224, 224, 225, 222, 222, 222, 85, 219, 219, 219, 14, 219, 219, 219, 14, 222, 222, 222, 86, 225, 225, 225, 226, 224, 224, 224, 254, 224, 224, 224, 244, 222, 222, 222, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 223, 223, 223, 55, 224, 224, 224, 222, 224, 224, 224, 254, 224, 224, 224, 254, 224, 224, 224, 254, 224, 224, 224, 254, 224, 224, 224, 254, 224, 224, 224, 254, 224, 224, 224, 221, 222, 222, 222, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 230, 230, 230, 10, 223, 223, 223, 112, 224, 224, 224, 197, 224, 224, 224, 243, 224, 224, 224, 243, 224, 224, 224, 197, 223, 223, 223, 110, 230, 230, 230, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=598] +flags = 4 +flags = 4 +image = SubResource( 716 ) +size = Vector2( 16, 16 ) + +[sub_resource type="Image" id=717] +data = { +"data": PoolByteArray( 222, 222, 222, 70, 223, 223, 223, 112, 230, 230, 230, 10, 255, 148, 148, 95, 255, 150, 150, 187, 255, 149, 149, 186, 255, 149, 149, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 230, 230, 230, 10, 223, 223, 223, 112, 224, 224, 224, 75, 225, 225, 225, 159, 224, 224, 224, 255, 234, 200, 200, 60, 255, 149, 149, 232, 255, 149, 149, 234, 255, 149, 149, 234, 255, 149, 149, 232, 255, 156, 156, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 230, 230, 230, 10, 224, 224, 224, 114, 224, 224, 224, 232, 224, 224, 224, 255, 225, 225, 225, 159, 225, 225, 225, 159, 224, 224, 224, 255, 255, 156, 156, 49, 255, 149, 149, 234, 255, 149, 149, 234, 255, 149, 149, 234, 255, 149, 149, 234, 247, 166, 166, 60, 223, 223, 223, 153, 223, 223, 223, 153, 224, 224, 224, 155, 224, 224, 224, 232, 224, 224, 224, 232, 224, 224, 224, 114, 224, 224, 224, 255, 225, 225, 225, 159, 225, 225, 225, 159, 224, 224, 224, 255, 255, 128, 128, 6, 255, 149, 149, 214, 255, 149, 149, 234, 255, 149, 149, 234, 255, 150, 150, 213, 226, 204, 204, 35, 223, 223, 223, 153, 223, 223, 223, 153, 224, 224, 224, 255, 225, 225, 225, 152, 230, 230, 230, 10, 0, 0, 0, 0, 224, 224, 224, 255, 225, 225, 225, 159, 225, 225, 225, 159, 224, 224, 224, 255, 227, 227, 227, 9, 255, 149, 149, 72, 255, 149, 149, 233, 255, 149, 149, 233, 255, 149, 149, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 224, 224, 255, 223, 223, 223, 96, 0, 0, 0, 0, 227, 227, 227, 9, 224, 224, 224, 255, 225, 225, 225, 159, 225, 225, 225, 159, 224, 224, 224, 255, 224, 224, 224, 230, 223, 223, 223, 95, 255, 149, 149, 106, 255, 149, 149, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 224, 224, 255, 223, 223, 223, 105, 225, 225, 225, 111, 224, 224, 224, 230, 224, 224, 224, 255, 225, 225, 225, 159, 225, 225, 225, 159, 224, 224, 224, 255, 224, 224, 224, 131, 224, 224, 224, 241, 224, 224, 224, 116, 224, 224, 224, 98, 224, 224, 224, 170, 224, 224, 224, 170, 224, 224, 224, 170, 224, 224, 224, 170, 224, 224, 224, 255, 224, 224, 224, 251, 224, 224, 224, 241, 224, 224, 224, 131, 224, 224, 224, 255, 225, 225, 225, 159, 225, 225, 225, 159, 224, 224, 224, 255, 0, 0, 0, 0, 227, 227, 227, 18, 224, 224, 224, 163, 224, 224, 224, 255, 224, 224, 224, 187, 224, 224, 224, 187, 224, 224, 224, 187, 224, 224, 224, 187, 224, 224, 224, 255, 224, 224, 224, 163, 227, 227, 227, 18, 0, 0, 0, 0, 224, 224, 224, 255, 225, 225, 225, 159, 225, 225, 225, 159, 224, 224, 224, 255, 227, 227, 227, 9, 0, 0, 0, 0, 223, 223, 223, 96, 224, 224, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 224, 224, 255, 223, 223, 223, 96, 0, 0, 0, 0, 227, 227, 227, 9, 224, 224, 224, 255, 225, 225, 225, 159, 225, 225, 225, 159, 224, 224, 224, 255, 224, 224, 224, 234, 225, 225, 225, 119, 223, 223, 223, 105, 224, 224, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 224, 224, 255, 225, 225, 225, 102, 225, 225, 225, 102, 224, 224, 224, 228, 224, 224, 224, 255, 225, 225, 225, 159, 225, 225, 225, 159, 224, 224, 224, 255, 225, 225, 225, 135, 224, 224, 224, 243, 224, 224, 224, 251, 224, 224, 224, 255, 224, 224, 224, 170, 224, 224, 224, 170, 224, 224, 224, 170, 224, 224, 224, 170, 224, 224, 224, 255, 224, 224, 224, 251, 224, 224, 224, 243, 225, 225, 225, 135, 224, 224, 224, 255, 225, 225, 225, 159, 225, 225, 225, 159, 224, 224, 224, 255, 0, 0, 0, 0, 230, 230, 230, 20, 224, 224, 224, 165, 224, 224, 224, 255, 224, 224, 224, 187, 224, 224, 224, 187, 224, 224, 224, 187, 224, 224, 224, 187, 224, 224, 224, 255, 224, 224, 224, 165, 230, 230, 230, 20, 0, 0, 0, 0, 224, 224, 224, 255, 225, 225, 225, 159, 225, 225, 225, 159, 224, 224, 224, 255, 230, 230, 230, 10, 0, 0, 0, 0, 223, 223, 223, 96, 224, 224, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 224, 224, 255, 223, 223, 223, 96, 0, 0, 0, 0, 230, 230, 230, 10, 224, 224, 224, 255, 225, 225, 225, 159, 225, 225, 225, 77, 224, 224, 224, 232, 224, 224, 224, 232, 224, 224, 224, 114, 224, 224, 224, 106, 224, 224, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 224, 224, 255, 224, 224, 224, 106, 224, 224, 224, 114, 224, 224, 224, 232, 224, 224, 224, 232, 225, 225, 225, 77, 0, 0, 0, 0, 230, 230, 230, 10, 224, 224, 224, 114, 224, 224, 224, 232, 224, 224, 224, 252, 224, 224, 224, 255, 223, 223, 223, 153, 223, 223, 223, 153, 223, 223, 223, 153, 223, 223, 223, 153, 224, 224, 224, 255, 224, 224, 224, 252, 224, 224, 224, 232, 224, 224, 224, 114, 230, 230, 230, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 230, 230, 230, 10, 223, 223, 223, 112, 223, 223, 223, 153, 223, 223, 223, 153, 223, 223, 223, 153, 223, 223, 223, 153, 223, 223, 223, 153, 223, 223, 223, 153, 223, 223, 223, 112, 230, 230, 230, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=332] +flags = 4 +flags = 4 +image = SubResource( 717 ) +size = Vector2( 16, 16 ) + +[sub_resource type="Image" id=718] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 0, 0, 0, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "LumAlpha8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=452] +flags = 4 +flags = 4 +image = SubResource( 718 ) +size = Vector2( 16, 16 ) + +[sub_resource type="Image" id=719] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 0, 0, 0, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "LumAlpha8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=454] +flags = 4 +flags = 4 +image = SubResource( 719 ) +size = Vector2( 16, 16 ) + +[sub_resource type="Image" id=720] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 225, 86, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 225, 86, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 230, 20, 224, 233, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 230, 20, 224, 233, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 224, 170, 224, 255, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 170, 224, 255, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 0, 0, 0, 0, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 0, 0, 0, 0, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 0, 0, 0, 0, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 0, 0, 0, 0, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "LumAlpha8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=338] +flags = 4 +flags = 4 +image = SubResource( 720 ) +size = Vector2( 16, 16 ) + +[sub_resource type="Image" id=721] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 243, 243, 243, 255, 243, 243, 243, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 243, 243, 243, 255, 243, 243, 243, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 243, 243, 243, 255, 243, 243, 243, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 243, 243, 243, 255, 243, 243, 243, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 243, 243, 243, 255, 243, 243, 243, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 243, 243, 243, 255, 243, 243, 243, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 243, 243, 243, 255, 243, 243, 243, 255, 243, 243, 243, 255, 243, 243, 243, 255, 243, 243, 243, 255, 243, 243, 243, 255, 243, 243, 243, 255, 243, 243, 243, 255, 243, 243, 243, 255, 243, 243, 243, 255, 243, 243, 243, 255, 243, 243, 243, 255, 243, 243, 243, 255, 243, 243, 243, 255, 0, 0, 0, 0, 0, 0, 0, 0, 243, 243, 243, 255, 243, 243, 243, 255, 243, 243, 243, 255, 243, 243, 243, 255, 243, 243, 243, 255, 243, 243, 243, 255, 243, 243, 243, 255, 243, 243, 243, 255, 243, 243, 243, 255, 243, 243, 243, 255, 243, 243, 243, 255, 243, 243, 243, 255, 243, 243, 243, 255, 243, 243, 243, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 243, 243, 243, 255, 243, 243, 243, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 243, 243, 243, 255, 243, 243, 243, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 243, 243, 243, 255, 243, 243, 243, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 132, 132, 29, 255, 132, 132, 172, 255, 132, 132, 242, 255, 132, 132, 242, 255, 133, 133, 175, 255, 131, 131, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 243, 243, 243, 255, 243, 243, 243, 255, 0, 0, 0, 0, 0, 0, 0, 0, 255, 132, 132, 29, 255, 132, 132, 237, 255, 132, 132, 255, 255, 132, 132, 255, 255, 132, 132, 255, 255, 132, 132, 255, 255, 132, 132, 238, 255, 132, 132, 29, 0, 0, 0, 0, 243, 243, 243, 255, 243, 243, 243, 255, 243, 243, 243, 255, 243, 243, 243, 255, 243, 243, 243, 255, 0, 0, 0, 0, 0, 0, 0, 0, 255, 132, 132, 172, 255, 132, 132, 255, 255, 132, 132, 180, 255, 132, 132, 27, 255, 128, 128, 28, 255, 132, 132, 182, 255, 132, 132, 255, 255, 132, 132, 170, 0, 0, 0, 0, 243, 243, 243, 255, 243, 243, 243, 255, 243, 243, 243, 255, 243, 243, 243, 255, 243, 243, 243, 255, 0, 0, 0, 0, 0, 0, 0, 0, 255, 132, 132, 242, 255, 132, 132, 255, 255, 128, 128, 28, 0, 0, 0, 0, 0, 0, 0, 0, 255, 132, 132, 29, 255, 132, 132, 255, 255, 132, 132, 241, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 243, 243, 243, 255, 243, 243, 243, 255, 0, 0, 0, 0, 0, 0, 0, 0, 255, 132, 132, 255, 255, 132, 132, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 132, 132, 255, 255, 132, 132, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 243, 243, 243, 255, 243, 243, 243, 255, 0, 0, 0, 0, 0, 0, 0, 0, 255, 132, 132, 255, 255, 132, 132, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 132, 132, 255, 255, 132, 132, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 243, 243, 243, 255, 243, 243, 243, 255, 0, 0, 0, 0, 0, 0, 0, 0, 255, 255, 255, 255, 255, 255, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 255, 255, 255, 255, 255, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 255, 255, 255, 255, 255, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 255, 255, 255, 255, 255, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=457] +flags = 4 +flags = 4 +image = SubResource( 721 ) +size = Vector2( 16, 16 ) + +[sub_resource type="Image" id=722] +data = { +"data": PoolByteArray( 23, 22, 26, 111, 29, 28, 33, 239, 32, 30, 36, 247, 33, 31, 37, 247, 33, 31, 37, 247, 33, 31, 37, 247, 33, 31, 37, 247, 32, 30, 36, 247, 29, 28, 33, 239, 23, 22, 26, 111, 29, 28, 33, 240, 36, 34, 41, 255, 40, 38, 45, 255, 40, 38, 46, 255, 40, 38, 46, 255, 40, 38, 46, 255, 40, 38, 46, 255, 40, 38, 45, 255, 36, 34, 41, 255, 29, 28, 33, 240, 32, 30, 36, 249, 40, 38, 45, 255, 43, 42, 49, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 43, 42, 49, 255, 40, 38, 45, 255, 32, 30, 36, 249, 33, 31, 37, 247, 40, 38, 46, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 40, 38, 46, 255, 33, 31, 37, 247, 33, 31, 37, 247, 40, 38, 46, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 40, 38, 46, 255, 33, 31, 37, 247, 33, 31, 37, 247, 40, 38, 46, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 40, 38, 46, 255, 33, 31, 37, 247, 33, 31, 37, 247, 40, 38, 46, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 40, 38, 46, 255, 33, 31, 37, 247, 32, 30, 36, 249, 40, 38, 45, 255, 43, 42, 49, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 43, 42, 49, 255, 40, 38, 45, 255, 32, 30, 36, 249, 29, 28, 33, 240, 36, 34, 41, 255, 40, 38, 45, 255, 40, 38, 46, 255, 40, 38, 46, 255, 40, 38, 46, 255, 40, 38, 46, 255, 40, 38, 45, 255, 36, 34, 41, 255, 29, 28, 33, 241, 23, 22, 26, 111, 29, 28, 33, 240, 32, 30, 36, 247, 33, 31, 37, 247, 33, 31, 37, 247, 33, 31, 37, 247, 33, 31, 37, 247, 32, 30, 36, 247, 29, 28, 33, 238, 23, 22, 26, 111 ), +"format": "RGBA8", +"height": 10, +"mipmaps": false, +"width": 10 +} + +[sub_resource type="ImageTexture" id=459] +flags = 4 +flags = 4 +image = SubResource( 722 ) +size = Vector2( 10, 10 ) + +[sub_resource type="StyleBoxTexture" id=460] +texture = SubResource( 459 ) +region_rect = Rect2( 0, 0, 10, 10 ) +margin_left = 4.0 +margin_right = 4.0 +margin_top = 4.0 +margin_bottom = 5.0 + +[sub_resource type="Image" id=723] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107, 143, 232, 143, 0, 0, 0, 0, 0, 0, 107, 143, 232, 143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107, 143, 232, 143, 0, 0, 0, 0, 0, 0, 107, 143, 232, 143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 143, 0, 0, 0, 0, 0, 0, 107, 143, 232, 143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107, 143, 232, 143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107, 143, 232, 143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107, 143, 232, 143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107, 143, 232, 143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "LumAlpha8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=674] +image = SubResource( 723 ) +size = Vector2( 16, 16 ) + +[sub_resource type="StyleBoxFlat" id=675] +content_margin_left = 0.0 +content_margin_right = 0.0 +content_margin_top = 0.0 +content_margin_bottom = 0.0 +bg_color = Color( 0.24, 0.24, 0.24, 1 ) + +[sub_resource type="StyleBoxFlat" id=676] +content_margin_left = 0.0 +content_margin_right = 0.0 +content_margin_top = 0.0 +content_margin_bottom = 0.0 +bg_color = Color( 0.65, 0.65, 0.65, 0.2 ) +border_width_left = 1 +border_width_top = 1 +border_width_right = 1 +border_width_bottom = 1 +border_color = Color( 0.65, 0.65, 0.65, 0.45 ) + +[sub_resource type="StyleBoxFlat" id=677] +content_margin_left = 0.0 +content_margin_right = 0.0 +content_margin_top = 0.0 +content_margin_bottom = 0.0 +bg_color = Color( 1, 1, 1, 1 ) +corner_radius_top_left = 2 +corner_radius_top_right = 2 +corner_radius_bottom_right = 2 +corner_radius_bottom_left = 2 + +[sub_resource type="Image" id=724] +data = { +"data": PoolByteArray( 0, 0, 9, 88, 12, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 22, 9, 88, 0, 0, 9, 88, 8, 254, 8, 211, 12, 22, 0, 0, 0, 0, 0, 0, 0, 0, 12, 22, 8, 211, 8, 254, 9, 88, 12, 21, 9, 210, 8, 255, 8, 215, 10, 25, 0, 0, 0, 0, 12, 21, 9, 210, 8, 255, 8, 215, 11, 24, 0, 0, 12, 21, 9, 210, 8, 255, 8, 215, 10, 25, 12, 21, 9, 210, 8, 255, 8, 215, 11, 24, 0, 0, 0, 0, 0, 0, 12, 21, 9, 210, 8, 255, 8, 218, 8, 214, 8, 255, 8, 215, 11, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 21, 8, 214, 8, 255, 8, 255, 8, 219, 11, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 21, 8, 214, 8, 255, 8, 255, 8, 219, 10, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 21, 9, 210, 8, 255, 8, 218, 8, 214, 8, 255, 8, 215, 10, 25, 0, 0, 0, 0, 0, 0, 12, 21, 9, 210, 8, 255, 8, 215, 11, 24, 12, 21, 9, 210, 8, 255, 8, 215, 10, 25, 0, 0, 12, 21, 9, 210, 8, 255, 8, 215, 11, 24, 0, 0, 0, 0, 12, 21, 9, 210, 8, 255, 8, 215, 10, 25, 9, 88, 8, 254, 8, 211, 12, 22, 0, 0, 0, 0, 0, 0, 0, 0, 12, 22, 8, 211, 8, 254, 9, 88, 0, 0, 9, 88, 12, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 22, 9, 88, 0, 0 ), +"format": "LumAlpha8", +"height": 12, +"mipmaps": false, +"width": 12 +} + +[sub_resource type="ImageTexture" id=354] +flags = 4 +flags = 4 +image = SubResource( 724 ) +size = Vector2( 12, 12 ) + +[sub_resource type="Image" id=725] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 215, 64, 216, 191, 216, 244, 216, 244, 216, 190, 216, 78, 0, 0, 0, 0, 0, 0, 216, 124, 216, 253, 216, 255, 216, 255, 216, 255, 216, 255, 216, 255, 215, 129, 0, 0, 215, 64, 216, 253, 216, 255, 231, 255, 242, 255, 242, 255, 231, 255, 216, 255, 216, 253, 218, 62, 216, 192, 216, 255, 231, 255, 243, 255, 243, 255, 243, 255, 243, 255, 231, 255, 216, 255, 216, 190, 216, 243, 216, 255, 242, 255, 243, 255, 243, 255, 243, 255, 243, 255, 241, 255, 216, 255, 216, 242, 216, 242, 216, 255, 242, 255, 243, 255, 243, 255, 243, 255, 243, 255, 241, 255, 216, 255, 216, 241, 216, 191, 216, 255, 231, 255, 243, 255, 243, 255, 243, 255, 243, 255, 231, 255, 216, 255, 216, 189, 216, 78, 216, 255, 216, 255, 231, 255, 241, 255, 241, 255, 231, 255, 216, 255, 216, 253, 217, 61, 0, 0, 215, 129, 216, 253, 216, 255, 216, 255, 216, 255, 216, 255, 216, 253, 215, 122, 0, 0, 0, 0, 0, 0, 218, 62, 216, 189, 216, 243, 216, 242, 216, 189, 217, 61, 0, 0, 0, 0 ), +"format": "LumAlpha8", +"height": 10, +"mipmaps": false, +"width": 10 +} + +[sub_resource type="ImageTexture" id=356] +flags = 4 +flags = 4 +image = SubResource( 725 ) +size = Vector2( 10, 10 ) + +[sub_resource type="Image" id=726] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 143, 107, 143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 143, 107, 143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 143, 107, 143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 143, 107, 143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 143, 107, 143, 0, 0, 0, 0, 0, 0, 232, 143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 143, 107, 143, 0, 0, 0, 0, 0, 0, 232, 143, 107, 143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 143, 107, 143, 0, 0, 0, 0, 0, 0, 232, 143, 107, 143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "LumAlpha8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=358] +flags = 4 +flags = 4 +image = SubResource( 726 ) +size = Vector2( 16, 16 ) + +[sub_resource type="Image" id=727] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 228, 244, 231, 44, 255, 244, 231, 44, 255, 244, 231, 44, 255, 244, 231, 44, 255, 244, 231, 44, 255, 244, 231, 44, 255, 244, 231, 44, 255, 244, 231, 44, 255, 244, 231, 44, 255, 244, 231, 44, 255, 244, 231, 44, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 228, 244, 231, 44, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 228, 244, 231, 44, 228, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 228, 244, 231, 44, 255, 244, 231, 44, 255, 244, 231, 44, 255, 244, 231, 44, 255, 244, 231, 44, 255, 244, 231, 44, 255, 244, 231, 44, 228, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 228, 244, 231, 44, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 228, 244, 231, 44, 228, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 244, 231, 44, 228, 244, 231, 44, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 228, 244, 231, 44, 228, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 228, 244, 231, 44, 255, 244, 231, 44, 255, 244, 231, 44, 255, 244, 231, 44, 255, 244, 231, 44, 255, 244, 231, 44, 255, 244, 231, 44, 228, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 228, 244, 231, 44, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 228, 244, 231, 44, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 231, 44, 228, 244, 231, 44, 255, 244, 231, 44, 255, 244, 231, 44, 255, 244, 231, 44, 255, 244, 231, 44, 255, 244, 231, 44, 255, 244, 231, 44, 255, 244, 231, 44, 255, 244, 231, 44, 255, 244, 231, 44, 255, 244, 231, 44, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "RGBA8", +"height": 64, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=360] +flags = 4 +flags = 4 +image = SubResource( 727 ) +size = Vector2( 16, 64 ) + +[sub_resource type="StyleBoxTexture" id=361] +content_margin_left = 16.0 +content_margin_right = 16.0 +content_margin_top = 24.0 +content_margin_bottom = 6.0 +texture = SubResource( 360 ) +region_rect = Rect2( 0, 0, 16, 64 ) +margin_left = 6.0 +margin_right = 6.0 +margin_top = 24.0 +margin_bottom = 5.0 + +[sub_resource type="Image" id=728] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 6, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, 8, 0, 0, 0, 6, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 12, 0, 0, 0, 30, 0, 0, 0, 51, 0, 0, 0, 65, 0, 0, 0, 70, 0, 0, 0, 70, 0, 0, 0, 70, 0, 0, 0, 70, 0, 0, 0, 65, 0, 0, 0, 51, 0, 0, 0, 30, 0, 0, 0, 12, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 13, 0, 0, 0, 49, 15, 13, 16, 154, 23, 20, 24, 227, 29, 26, 31, 255, 29, 26, 31, 255, 29, 26, 31, 255, 29, 26, 31, 255, 29, 26, 31, 255, 29, 26, 31, 255, 23, 20, 24, 227, 15, 13, 16, 154, 0, 0, 0, 49, 0, 0, 0, 13, 0, 0, 0, 2, 0, 0, 0, 5, 0, 0, 0, 36, 18, 16, 19, 180, 53, 47, 56, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 53, 47, 56, 255, 18, 16, 19, 180, 0, 0, 0, 36, 0, 0, 0, 5, 0, 0, 0, 8, 0, 0, 0, 57, 25, 23, 27, 244, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 25, 23, 27, 244, 0, 0, 0, 57, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 68, 29, 26, 31, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 29, 26, 31, 255, 0, 0, 0, 68, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 71, 29, 26, 31, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 29, 26, 31, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 29, 26, 31, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 29, 26, 31, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 29, 26, 31, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 29, 26, 31, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 29, 26, 31, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 29, 26, 31, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 29, 26, 31, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 29, 26, 31, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 29, 26, 31, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 29, 26, 31, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 29, 26, 31, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 29, 26, 31, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 29, 26, 31, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 29, 26, 31, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 29, 26, 31, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 29, 26, 31, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 29, 26, 31, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 29, 26, 31, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 29, 26, 31, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 29, 26, 31, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 29, 26, 31, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 29, 26, 31, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 29, 26, 31, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 29, 26, 31, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 29, 26, 31, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 29, 26, 31, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 29, 26, 31, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 29, 26, 31, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 29, 26, 31, 255, 29, 26, 31, 255, 29, 26, 31, 255, 29, 26, 31, 255, 29, 26, 31, 255, 29, 26, 31, 255, 29, 26, 31, 255, 29, 26, 31, 255, 29, 26, 31, 255, 29, 26, 31, 255, 29, 26, 31, 255, 29, 26, 31, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 10, 0, 0, 0, 71, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 10, 0, 0, 0, 69, 25, 21, 28, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 25, 21, 28, 255, 0, 0, 0, 69, 0, 0, 0, 10, 0, 0, 0, 8, 0, 0, 0, 61, 22, 18, 25, 248, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 22, 18, 25, 248, 0, 0, 0, 61, 0, 0, 0, 8, 0, 0, 0, 5, 0, 0, 0, 42, 14, 11, 16, 205, 36, 30, 39, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 36, 30, 39, 255, 14, 11, 16, 205, 0, 0, 0, 42, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 17, 0, 0, 0, 63, 14, 11, 16, 211, 22, 18, 25, 253, 25, 21, 28, 255, 25, 21, 28, 255, 25, 21, 28, 255, 25, 21, 28, 255, 25, 21, 28, 255, 25, 21, 28, 255, 22, 18, 25, 253, 14, 11, 16, 211, 0, 0, 0, 63, 0, 0, 0, 17, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 17, 0, 0, 0, 43, 0, 0, 0, 63, 0, 0, 0, 70, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 70, 0, 0, 0, 63, 0, 0, 0, 43, 0, 0, 0, 17, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 10, 0, 0, 0, 10, 0, 0, 0, 10, 0, 0, 0, 10, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 6, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "RGBA8", +"height": 64, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=363] +flags = 4 +flags = 4 +image = SubResource( 728 ) +size = Vector2( 16, 64 ) + +[sub_resource type="StyleBoxTexture" id=364] +content_margin_left = 16.0 +content_margin_right = 16.0 +content_margin_top = 24.0 +content_margin_bottom = 6.0 +texture = SubResource( 363 ) +region_rect = Rect2( 0, 0, 16, 64 ) +margin_left = 6.0 +margin_right = 6.0 +margin_top = 24.0 +margin_bottom = 5.0 + +[sub_resource type="Image" id=729] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 6, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, 8, 0, 0, 0, 6, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 12, 0, 0, 0, 30, 0, 0, 0, 51, 0, 0, 0, 65, 0, 0, 0, 70, 0, 0, 0, 70, 0, 0, 0, 70, 0, 0, 0, 70, 0, 0, 0, 65, 0, 0, 0, 51, 0, 0, 0, 30, 0, 0, 0, 12, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 13, 0, 0, 0, 49, 174, 109, 91, 154, 174, 109, 91, 227, 174, 109, 91, 255, 174, 109, 91, 255, 174, 109, 91, 255, 174, 109, 91, 255, 174, 109, 91, 255, 174, 109, 91, 255, 174, 109, 91, 227, 174, 109, 91, 154, 0, 0, 0, 49, 0, 0, 0, 13, 0, 0, 0, 2, 0, 0, 0, 5, 0, 0, 0, 36, 174, 109, 91, 180, 174, 109, 91, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 174, 109, 91, 255, 174, 109, 91, 180, 0, 0, 0, 36, 0, 0, 0, 5, 0, 0, 0, 8, 0, 0, 0, 57, 174, 109, 91, 244, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 174, 109, 91, 244, 0, 0, 0, 57, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 68, 174, 109, 91, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 174, 109, 91, 255, 0, 0, 0, 68, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 71, 174, 109, 91, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 150, 66, 43, 226, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 174, 109, 91, 255, 174, 109, 91, 255, 174, 109, 91, 255, 174, 109, 91, 255, 174, 109, 91, 255, 174, 109, 91, 255, 174, 109, 91, 255, 174, 109, 91, 255, 174, 109, 91, 255, 174, 109, 91, 255, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 70, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 10, 0, 0, 0, 71, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 71, 0, 0, 0, 10, 0, 0, 0, 10, 0, 0, 0, 69, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 0, 0, 0, 69, 0, 0, 0, 10, 0, 0, 0, 8, 0, 0, 0, 61, 174, 109, 91, 248, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 248, 0, 0, 0, 61, 0, 0, 0, 8, 0, 0, 0, 5, 0, 0, 0, 42, 174, 109, 91, 205, 174, 109, 91, 255, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 119, 47, 28, 66, 174, 109, 91, 255, 174, 109, 91, 205, 0, 0, 0, 42, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 17, 0, 0, 0, 63, 174, 109, 91, 211, 174, 109, 91, 253, 174, 109, 91, 255, 174, 109, 91, 255, 174, 109, 91, 255, 174, 109, 91, 255, 174, 109, 91, 255, 174, 109, 91, 255, 174, 109, 91, 253, 174, 109, 91, 211, 0, 0, 0, 63, 0, 0, 0, 17, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 17, 0, 0, 0, 43, 0, 0, 0, 63, 0, 0, 0, 70, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 70, 0, 0, 0, 63, 0, 0, 0, 43, 0, 0, 0, 17, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 10, 0, 0, 0, 10, 0, 0, 0, 10, 0, 0, 0, 10, 0, 0, 0, 10, 0, 0, 0, 9, 0, 0, 0, 6, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "RGBA8", +"height": 64, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=366] +flags = 4 +flags = 4 +image = SubResource( 729 ) +size = Vector2( 16, 64 ) + +[sub_resource type="StyleBoxTexture" id=367] +content_margin_left = 16.0 +content_margin_right = 16.0 +content_margin_top = 24.0 +content_margin_bottom = 6.0 +texture = SubResource( 366 ) +region_rect = Rect2( 0, 0, 16, 64 ) +margin_left = 6.0 +margin_right = 6.0 +margin_top = 24.0 +margin_bottom = 5.0 + +[sub_resource type="Image" id=730] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 255, 1, 255, 3, 255, 5, 255, 5, 255, 7, 255, 7, 255, 7, 255, 7, 255, 5, 255, 5, 255, 3, 255, 1, 0, 0, 0, 0, 255, 23, 255, 25, 255, 25, 255, 23, 255, 21, 255, 21, 255, 23, 255, 25, 255, 25, 255, 23, 255, 21, 255, 17, 255, 11, 255, 5, 255, 1, 0, 0, 116, 255, 116, 255, 116, 255, 116, 255, 116, 255, 116, 255, 116, 255, 116, 255, 116, 255, 116, 255, 116, 255, 121, 236, 134, 168, 255, 13, 255, 5, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 19, 100, 255, 128, 194, 255, 11, 255, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 35, 252, 1, 117, 247, 255, 17, 255, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 116, 255, 255, 21, 255, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 116, 255, 255, 23, 255, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 116, 255, 255, 25, 255, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 116, 255, 255, 25, 255, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 116, 255, 255, 23, 255, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 116, 255, 255, 21, 255, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 19, 117, 246, 255, 17, 255, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 252, 13, 100, 255, 128, 192, 255, 11, 255, 3, 116, 255, 116, 255, 116, 255, 116, 255, 116, 255, 116, 255, 116, 255, 116, 255, 116, 255, 116, 255, 116, 255, 117, 247, 128, 194, 255, 15, 255, 5, 255, 1, 255, 23, 255, 25, 255, 25, 255, 23, 255, 21, 255, 21, 255, 23, 255, 25, 255, 25, 255, 23, 255, 21, 255, 17, 255, 11, 255, 5, 255, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 7, 255, 7, 255, 7, 255, 7, 255, 7, 255, 7, 255, 5, 255, 3, 255, 1, 0, 0, 0, 0 ), +"format": "LumAlpha8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=369] +flags = 4 +flags = 4 +image = SubResource( 730 ) +size = Vector2( 16, 16 ) + +[sub_resource type="StyleBoxTexture" id=370] +content_margin_left = 6.0 +content_margin_right = 4.0 +content_margin_top = 4.0 +content_margin_bottom = 4.0 +texture = SubResource( 369 ) +region_rect = Rect2( 0, 0, 16, 16 ) +margin_left = 4.0 +margin_right = 4.0 +margin_top = 4.0 +margin_bottom = 4.0 + +[sub_resource type="Image" id=731] +data = { +"data": PoolByteArray( 0, 0, 0, 70, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 70, 0, 0, 0, 70, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 70, 0, 0, 0, 63, 0, 0, 0, 43, 0, 0, 0, 17, 0, 0, 0, 3, 25, 21, 28, 255, 25, 21, 28, 255, 25, 21, 28, 255, 25, 21, 28, 255, 25, 21, 28, 255, 25, 21, 28, 255, 25, 21, 28, 255, 25, 21, 28, 255, 25, 21, 28, 255, 25, 21, 28, 255, 25, 21, 28, 255, 25, 21, 28, 255, 22, 18, 25, 253, 14, 11, 16, 211, 0, 0, 0, 63, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 30, 39, 255, 14, 11, 16, 205, 0, 0, 0, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 18, 25, 255, 0, 0, 0, 115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 21, 28, 255, 0, 0, 0, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 21, 28, 255, 0, 0, 0, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 18, 25, 248, 0, 0, 0, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 30, 39, 255, 14, 11, 16, 205, 0, 0, 0, 42, 25, 21, 28, 255, 25, 21, 28, 255, 25, 21, 28, 255, 25, 21, 28, 255, 25, 21, 28, 255, 25, 21, 28, 255, 25, 21, 28, 255, 25, 21, 28, 255, 25, 21, 28, 255, 25, 21, 28, 255, 25, 21, 28, 255, 25, 21, 28, 255, 22, 18, 25, 253, 14, 11, 16, 211, 0, 0, 0, 63, 0, 0, 0, 17, 0, 0, 0, 70, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 70, 0, 0, 0, 70, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 70, 0, 0, 0, 63, 0, 0, 0, 43, 0, 0, 0, 17, 0, 0, 0, 3 ), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=372] +flags = 4 +flags = 4 +image = SubResource( 731 ) +size = Vector2( 16, 16 ) + +[sub_resource type="StyleBoxTexture" id=373] +content_margin_left = 4.0 +content_margin_right = 4.0 +content_margin_top = 4.0 +content_margin_bottom = 4.0 +texture = SubResource( 372 ) +region_rect = Rect2( 0, 0, 16, 16 ) +margin_left = 4.0 +margin_right = 4.0 +margin_top = 4.0 +margin_bottom = 4.0 + +[sub_resource type="StyleBoxTexture" id=376] +content_margin_left = 8.0 +content_margin_right = 8.0 +content_margin_top = 24.0 +content_margin_bottom = 8.0 +texture = ExtResource( 2 ) +region_rect = Rect2( 0, 0, 16, 64 ) +margin_left = 6.0 +margin_right = 6.0 +margin_top = 26.0 +margin_bottom = 5.0 + +[sub_resource type="Image" id=732] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 228, 244, 63, 44, 255, 244, 63, 44, 255, 244, 63, 44, 255, 244, 63, 44, 255, 244, 63, 44, 255, 244, 63, 44, 255, 244, 63, 44, 255, 244, 63, 44, 255, 244, 63, 44, 255, 244, 63, 44, 255, 244, 63, 44, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 228, 244, 63, 44, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 228, 244, 63, 44, 228, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 228, 244, 63, 44, 255, 244, 63, 44, 255, 244, 63, 44, 255, 244, 63, 44, 255, 244, 63, 44, 255, 244, 63, 44, 255, 244, 63, 44, 228, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 228, 244, 63, 44, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 228, 244, 63, 44, 228, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 244, 63, 44, 228, 244, 63, 44, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 228, 244, 63, 44, 228, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 228, 244, 63, 44, 255, 244, 63, 44, 255, 244, 63, 44, 255, 244, 63, 44, 255, 244, 63, 44, 255, 244, 63, 44, 255, 244, 63, 44, 228, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 255, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 228, 244, 63, 44, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 228, 244, 63, 44, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 63, 44, 228, 244, 63, 44, 255, 244, 63, 44, 255, 244, 63, 44, 255, 244, 63, 44, 255, 244, 63, 44, 255, 244, 63, 44, 255, 244, 63, 44, 255, 244, 63, 44, 255, 244, 63, 44, 255, 244, 63, 44, 255, 244, 63, 44, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "RGBA8", +"height": 64, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=378] +flags = 4 +flags = 4 +image = SubResource( 732 ) +size = Vector2( 16, 64 ) + +[sub_resource type="StyleBoxTexture" id=379] +content_margin_left = 16.0 +content_margin_right = 16.0 +content_margin_top = 24.0 +content_margin_bottom = 6.0 +texture = SubResource( 378 ) +region_rect = Rect2( 0, 0, 16, 64 ) +margin_left = 6.0 +margin_right = 6.0 +margin_top = 24.0 +margin_bottom = 5.0 + +[sub_resource type="Image" id=733] +data = { +"data": PoolByteArray( 255, 255, 255, 1, 255, 255, 255, 3, 178, 178, 204, 10, 174, 160, 187, 19, 156, 146, 166, 26, 154, 145, 164, 28, 149, 140, 158, 29, 149, 140, 158, 29, 149, 140, 158, 29, 149, 140, 158, 29, 154, 145, 164, 28, 156, 146, 166, 26, 174, 160, 187, 19, 178, 178, 204, 10, 255, 255, 255, 3, 255, 255, 255, 1, 255, 255, 255, 3, 175, 159, 175, 16, 160, 148, 165, 43, 142, 132, 149, 77, 127, 117, 132, 100, 115, 106, 120, 110, 109, 100, 114, 114, 109, 100, 114, 114, 109, 100, 114, 114, 109, 100, 114, 114, 115, 106, 120, 110, 127, 117, 132, 100, 142, 132, 149, 77, 160, 148, 165, 43, 175, 159, 175, 16, 255, 255, 255, 3, 162, 162, 185, 11, 156, 144, 162, 44, 139, 129, 144, 106, 220, 218, 206, 252, 226, 225, 210, 255, 226, 225, 210, 255, 226, 225, 210, 255, 226, 225, 210, 255, 226, 225, 210, 255, 226, 225, 210, 255, 226, 225, 210, 255, 226, 225, 210, 255, 220, 218, 206, 252, 139, 129, 144, 106, 156, 144, 162, 44, 162, 162, 185, 11, 157, 145, 169, 21, 133, 124, 140, 82, 219, 217, 206, 253, 219, 217, 205, 255, 218, 206, 224, 226, 222, 213, 227, 226, 223, 214, 228, 226, 223, 214, 228, 226, 223, 214, 228, 226, 223, 214, 228, 226, 222, 213, 227, 226, 218, 206, 224, 226, 219, 217, 205, 255, 219, 217, 206, 253, 133, 124, 140, 82, 157, 145, 169, 21, 151, 141, 160, 27, 122, 112, 127, 104, 226, 225, 210, 255, 219, 208, 223, 226, 219, 208, 225, 226, 218, 208, 225, 226, 219, 208, 225, 226, 219, 208, 225, 226, 219, 208, 225, 226, 219, 208, 225, 226, 218, 208, 225, 226, 219, 208, 225, 226, 219, 208, 223, 226, 226, 225, 210, 255, 122, 112, 127, 104, 151, 141, 160, 27, 149, 140, 158, 29, 112, 103, 117, 113, 226, 225, 210, 255, 216, 203, 222, 226, 218, 207, 223, 226, 219, 208, 225, 226, 219, 206, 225, 226, 219, 208, 225, 226, 219, 208, 225, 226, 219, 207, 225, 226, 219, 208, 224, 226, 218, 207, 224, 226, 216, 204, 222, 226, 226, 225, 210, 255, 112, 103, 117, 113, 149, 140, 158, 29, 144, 135, 153, 30, 109, 103, 114, 114, 226, 225, 210, 255, 215, 204, 223, 226, 218, 207, 223, 226, 218, 207, 224, 226, 219, 208, 225, 226, 219, 207, 225, 226, 219, 208, 225, 226, 219, 208, 225, 226, 218, 206, 224, 226, 218, 206, 223, 226, 216, 203, 223, 226, 226, 225, 210, 255, 109, 103, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 215, 202, 222, 226, 217, 204, 223, 226, 217, 205, 223, 226, 218, 206, 224, 226, 218, 206, 224, 226, 218, 206, 224, 226, 218, 206, 224, 226, 217, 205, 223, 226, 217, 205, 223, 226, 215, 202, 222, 226, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 214, 201, 221, 226, 217, 205, 223, 226, 217, 205, 222, 226, 217, 205, 223, 226, 217, 205, 223, 226, 217, 205, 223, 226, 217, 205, 223, 226, 217, 205, 223, 226, 217, 205, 223, 226, 214, 201, 221, 226, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 214, 200, 220, 226, 216, 203, 222, 226, 216, 203, 222, 226, 216, 204, 222, 226, 216, 204, 222, 226, 216, 203, 222, 226, 216, 204, 222, 226, 216, 204, 222, 226, 216, 203, 222, 226, 214, 200, 220, 226, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 213, 200, 220, 226, 215, 203, 221, 226, 215, 203, 221, 226, 215, 203, 221, 226, 215, 202, 221, 226, 215, 203, 221, 226, 215, 202, 221, 226, 215, 203, 221, 226, 215, 203, 221, 226, 213, 199, 220, 226, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 211, 198, 219, 226, 213, 201, 220, 226, 213, 201, 220, 226, 213, 201, 220, 226, 213, 201, 221, 226, 214, 201, 220, 226, 213, 201, 221, 226, 213, 201, 220, 226, 214, 201, 220, 226, 212, 198, 219, 226, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 211, 197, 219, 226, 213, 200, 219, 226, 213, 200, 219, 226, 213, 200, 220, 226, 213, 200, 220, 226, 213, 200, 220, 226, 213, 200, 220, 226, 213, 200, 220, 226, 212, 200, 220, 226, 211, 197, 219, 226, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 211, 196, 217, 226, 212, 198, 218, 226, 212, 198, 218, 226, 212, 198, 218, 226, 212, 198, 218, 226, 212, 198, 218, 226, 212, 198, 218, 226, 212, 198, 218, 226, 212, 198, 218, 226, 211, 196, 217, 226, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 210, 195, 217, 226, 211, 197, 218, 226, 210, 197, 217, 226, 211, 197, 217, 226, 211, 197, 218, 226, 210, 197, 217, 226, 210, 197, 217, 226, 211, 197, 218, 226, 210, 197, 218, 226, 210, 195, 217, 226, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 209, 194, 217, 226, 210, 196, 216, 226, 210, 196, 217, 226, 210, 196, 217, 226, 210, 195, 217, 226, 210, 195, 217, 226, 210, 196, 217, 226, 210, 195, 217, 226, 210, 195, 217, 226, 208, 194, 217, 226, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 208, 193, 215, 226, 208, 194, 215, 226, 208, 194, 216, 226, 209, 194, 215, 226, 208, 194, 215, 226, 208, 194, 215, 226, 208, 194, 215, 226, 208, 194, 215, 226, 208, 194, 216, 226, 208, 193, 215, 226, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 207, 193, 215, 226, 208, 194, 215, 226, 208, 193, 215, 226, 208, 194, 214, 226, 207, 193, 214, 226, 207, 193, 215, 226, 207, 194, 215, 226, 207, 193, 215, 226, 208, 193, 215, 226, 207, 192, 215, 226, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 206, 191, 214, 226, 206, 192, 213, 226, 206, 192, 214, 226, 206, 192, 213, 226, 206, 192, 213, 226, 206, 192, 214, 226, 206, 191, 214, 226, 206, 191, 213, 226, 206, 191, 213, 226, 205, 191, 213, 226, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 205, 190, 213, 226, 205, 190, 213, 226, 205, 190, 212, 226, 205, 190, 212, 226, 205, 190, 212, 226, 205, 190, 213, 226, 205, 190, 213, 226, 205, 190, 213, 226, 205, 190, 213, 226, 205, 190, 213, 226, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 204, 189, 213, 226, 204, 189, 212, 226, 204, 189, 212, 226, 204, 189, 212, 226, 204, 189, 212, 226, 204, 188, 212, 226, 204, 188, 212, 226, 204, 189, 212, 226, 204, 189, 212, 226, 204, 189, 213, 226, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 71, 64, 74, 199, 29, 26, 31, 199, 29, 26, 31, 199, 29, 26, 31, 199, 29, 26, 31, 199, 29, 26, 31, 199, 29, 26, 31, 199, 29, 26, 31, 199, 29, 26, 31, 199, 71, 64, 74, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 105, 95, 111, 199, 74, 66, 79, 199, 74, 66, 79, 199, 74, 66, 79, 199, 74, 66, 79, 199, 74, 66, 79, 199, 74, 66, 79, 199, 74, 66, 79, 199, 74, 66, 79, 199, 105, 95, 111, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 149, 140, 158, 29, 109, 100, 114, 114, 226, 225, 210, 255, 94, 84, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 84, 99, 199, 226, 225, 210, 255, 109, 100, 114, 114, 144, 135, 153, 30, 144, 135, 153, 30, 109, 103, 114, 114, 226, 225, 210, 255, 94, 85, 99, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 94, 85, 99, 199, 226, 225, 210, 255, 109, 103, 114, 114, 144, 135, 153, 30, 144, 135, 153, 30, 112, 103, 117, 113, 226, 225, 210, 255, 99, 89, 103, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 99, 89, 103, 199, 226, 225, 210, 255, 112, 103, 117, 113, 144, 135, 153, 30, 151, 141, 160, 27, 119, 109, 123, 107, 226, 225, 210, 255, 109, 98, 115, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 59, 52, 63, 199, 109, 98, 115, 199, 226, 225, 210, 255, 119, 109, 123, 107, 151, 141, 160, 27, 157, 145, 169, 21, 127, 118, 133, 86, 219, 217, 205, 254, 219, 216, 205, 255, 109, 98, 116, 199, 99, 89, 103, 199, 94, 85, 99, 199, 94, 84, 99, 199, 94, 84, 99, 199, 94, 85, 99, 199, 99, 89, 103, 199, 109, 98, 116, 199, 219, 216, 205, 255, 219, 217, 205, 254, 127, 118, 133, 86, 157, 145, 169, 21, 162, 162, 185, 11, 143, 132, 148, 48, 127, 118, 131, 116, 219, 216, 205, 254, 226, 225, 210, 255, 226, 225, 210, 255, 226, 225, 210, 255, 226, 225, 210, 255, 226, 225, 210, 255, 226, 225, 210, 255, 226, 225, 210, 255, 226, 225, 210, 255, 219, 216, 205, 254, 127, 118, 131, 116, 143, 132, 148, 48, 162, 162, 185, 11, 255, 255, 255, 3, 164, 149, 164, 17, 143, 132, 148, 48, 126, 116, 132, 87, 116, 107, 121, 109, 111, 102, 116, 114, 109, 100, 114, 114, 109, 100, 114, 114, 109, 100, 114, 114, 109, 100, 114, 114, 111, 102, 116, 114, 116, 107, 121, 109, 126, 116, 132, 87, 143, 132, 148, 48, 164, 149, 164, 17, 255, 255, 255, 3, 255, 255, 255, 1, 255, 255, 255, 3, 162, 162, 185, 11, 150, 138, 162, 22, 145, 136, 155, 28, 144, 135, 153, 30, 144, 135, 153, 30, 144, 135, 153, 30, 144, 135, 153, 30, 144, 135, 153, 30, 144, 135, 153, 30, 145, 136, 155, 28, 150, 138, 162, 22, 162, 162, 185, 11, 255, 255, 255, 3, 255, 255, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 255, 255, 255, 1, 170, 170, 170, 3, 191, 191, 191, 4, 191, 191, 191, 4, 191, 191, 191, 4, 191, 191, 191, 4, 191, 191, 191, 4, 191, 191, 191, 4, 191, 191, 191, 4, 191, 191, 191, 4, 170, 170, 170, 3, 255, 255, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "RGBA8", +"height": 64, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=381] +flags = 4 +flags = 4 +image = SubResource( 733 ) +size = Vector2( 16, 64 ) + +[sub_resource type="StyleBoxTexture" id=382] +content_margin_left = 8.0 +content_margin_right = 16.0 +content_margin_top = 24.0 +content_margin_bottom = 6.0 +texture = SubResource( 381 ) +region_rect = Rect2( 0, 0, 16, 64 ) +margin_left = 6.0 +margin_right = 6.0 +margin_top = 24.0 +margin_bottom = 5.0 + +[sub_resource type="ImageTexture" id=424] + +[sub_resource type="Image" id=734] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91, 89, 97, 44, 91, 89, 97, 184, 90, 88, 96, 244, 90, 88, 96, 255, 91, 89, 97, 184, 91, 89, 97, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 87, 95, 46, 90, 88, 96, 242, 86, 84, 92, 255, 84, 83, 90, 255, 84, 83, 90, 255, 86, 84, 92, 255, 90, 88, 96, 242, 89, 87, 95, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90, 88, 96, 184, 85, 83, 91, 255, 83, 81, 89, 255, 83, 81, 89, 255, 83, 81, 89, 255, 83, 81, 89, 255, 85, 83, 91, 255, 90, 88, 96, 184, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 86, 94, 244, 82, 81, 89, 255, 82, 80, 88, 255, 82, 80, 88, 255, 82, 80, 88, 255, 82, 80, 88, 255, 82, 81, 89, 255, 88, 86, 94, 245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 85, 93, 244, 81, 80, 88, 255, 81, 79, 87, 255, 81, 79, 87, 255, 81, 79, 87, 255, 81, 79, 87, 255, 81, 80, 88, 255, 87, 85, 93, 245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 85, 93, 184, 82, 80, 88, 255, 80, 78, 86, 255, 80, 78, 86, 255, 80, 78, 86, 255, 80, 78, 86, 255, 82, 80, 88, 255, 87, 85, 93, 184, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 83, 91, 47, 85, 83, 91, 242, 81, 79, 87, 255, 79, 77, 85, 255, 79, 77, 85, 255, 80, 79, 87, 255, 85, 83, 91, 242, 85, 83, 91, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 83, 91, 46, 85, 84, 92, 184, 84, 82, 90, 244, 84, 82, 90, 255, 85, 83, 91, 184, 84, 83, 91, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "RGBA8", +"height": 12, +"mipmaps": false, +"width": 12 +} + +[sub_resource type="ImageTexture" id=426] +flags = 4 +flags = 4 +image = SubResource( 734 ) +size = Vector2( 12, 12 ) + +[sub_resource type="StyleBoxTexture" id=427] +content_margin_left = 2.0 +content_margin_right = 2.0 +content_margin_top = 2.0 +content_margin_bottom = 2.0 +texture = SubResource( 426 ) +region_rect = Rect2( 0, 0, 12, 12 ) +margin_left = 5.0 +margin_right = 5.0 +margin_top = 5.0 +margin_bottom = 5.0 + +[sub_resource type="Image" id=735] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 151, 208, 223, 37, 146, 203, 220, 173, 132, 187, 212, 241, 130, 186, 212, 255, 146, 202, 220, 173, 151, 208, 223, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 149, 208, 221, 39, 131, 187, 211, 239, 106, 162, 198, 255, 98, 154, 194, 255, 97, 154, 193, 255, 106, 162, 198, 255, 131, 187, 211, 239, 149, 208, 221, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 139, 200, 215, 173, 104, 159, 194, 255, 93, 146, 187, 255, 93, 146, 187, 255, 93, 146, 187, 255, 93, 146, 187, 255, 104, 159, 194, 255, 139, 200, 215, 173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 121, 181, 203, 241, 92, 146, 184, 255, 88, 141, 182, 255, 88, 141, 182, 255, 88, 141, 182, 255, 88, 141, 182, 255, 92, 146, 184, 255, 120, 180, 202, 243, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 115, 176, 199, 241, 89, 142, 179, 255, 86, 137, 176, 255, 86, 137, 176, 255, 86, 137, 176, 255, 86, 137, 176, 255, 89, 142, 179, 255, 115, 176, 199, 243, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 123, 192, 207, 173, 92, 145, 178, 255, 83, 132, 169, 255, 83, 132, 169, 255, 83, 132, 169, 255, 83, 132, 169, 255, 92, 145, 178, 255, 123, 192, 207, 173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 121, 197, 209, 40, 107, 174, 193, 239, 88, 143, 174, 255, 84, 131, 164, 255, 84, 131, 164, 255, 87, 142, 173, 255, 107, 174, 193, 239, 121, 197, 209, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 117, 198, 207, 39, 112, 188, 202, 173, 100, 166, 188, 242, 100, 165, 186, 255, 113, 188, 201, 173, 117, 198, 207, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "RGBA8", +"height": 12, +"mipmaps": false, +"width": 12 +} + +[sub_resource type="ImageTexture" id=429] +flags = 4 +flags = 4 +image = SubResource( 735 ) +size = Vector2( 12, 12 ) + +[sub_resource type="StyleBoxTexture" id=430] +content_margin_left = 2.0 +content_margin_right = 2.0 +content_margin_top = 2.0 +content_margin_bottom = 2.0 +texture = SubResource( 429 ) +region_rect = Rect2( 0, 0, 12, 12 ) +margin_left = 5.0 +margin_right = 5.0 +margin_top = 5.0 +margin_bottom = 5.0 + +[sub_resource type="Image" id=736] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 191, 4, 176, 71, 176, 148, 176, 148, 176, 71, 191, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 176, 71, 175, 186, 175, 186, 175, 186, 175, 186, 176, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 176, 148, 175, 186, 175, 186, 175, 186, 175, 186, 176, 148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 176, 148, 175, 186, 175, 186, 175, 186, 175, 186, 176, 148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 176, 71, 175, 186, 175, 186, 175, 186, 175, 186, 176, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 191, 4, 176, 71, 176, 148, 176, 148, 176, 71, 191, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "LumAlpha8", +"height": 12, +"mipmaps": false, +"width": 12 +} + +[sub_resource type="ImageTexture" id=432] +flags = 4 +flags = 4 +image = SubResource( 736 ) +size = Vector2( 12, 12 ) + +[sub_resource type="StyleBoxTexture" id=433] +content_margin_left = 2.0 +content_margin_right = 2.0 +content_margin_top = 2.0 +content_margin_bottom = 2.0 +texture = SubResource( 432 ) +region_rect = Rect2( 0, 0, 12, 12 ) +margin_left = 5.0 +margin_right = 5.0 +margin_top = 5.0 +margin_bottom = 5.0 + +[sub_resource type="Image" id=737] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 77, 75, 89, 4, 77, 75, 89, 25, 77, 75, 89, 64, 77, 75, 89, 93, 77, 75, 89, 102, 77, 75, 89, 102, 77, 75, 89, 93, 77, 75, 89, 64, 77, 75, 89, 25, 77, 75, 89, 4, 0, 0, 0, 0, 77, 75, 89, 4, 77, 75, 89, 40, 64, 62, 74, 147, 42, 41, 47, 240, 32, 32, 36, 252, 30, 30, 35, 255, 30, 30, 35, 255, 32, 32, 36, 252, 42, 41, 47, 240, 64, 62, 74, 147, 77, 75, 89, 40, 77, 75, 89, 4, 77, 75, 89, 25, 63, 62, 73, 148, 31, 31, 36, 252, 32, 32, 37, 255, 34, 34, 39, 255, 35, 35, 39, 255, 35, 35, 39, 255, 34, 34, 39, 255, 32, 32, 37, 255, 31, 31, 36, 252, 63, 62, 73, 148, 77, 75, 89, 25, 77, 75, 89, 64, 42, 41, 47, 240, 32, 32, 37, 255, 35, 35, 40, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 35, 35, 40, 255, 32, 32, 37, 255, 42, 41, 47, 240, 77, 75, 89, 64, 77, 75, 89, 93, 32, 32, 36, 253, 34, 34, 39, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 34, 34, 39, 255, 32, 32, 36, 253, 77, 75, 89, 93, 77, 75, 89, 103, 30, 30, 35, 255, 35, 35, 39, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 35, 35, 39, 255, 30, 30, 35, 255, 77, 75, 89, 103, 77, 75, 89, 103, 30, 30, 35, 255, 35, 35, 39, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 35, 35, 39, 255, 30, 30, 35, 255, 77, 75, 89, 103, 77, 75, 89, 93, 32, 32, 36, 253, 34, 34, 39, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 34, 34, 39, 255, 32, 32, 36, 253, 77, 75, 89, 93, 77, 75, 89, 64, 42, 41, 47, 240, 32, 32, 37, 255, 35, 35, 40, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 37, 37, 42, 255, 35, 35, 40, 255, 32, 32, 37, 255, 42, 41, 47, 240, 77, 75, 89, 64, 77, 75, 89, 26, 63, 62, 73, 150, 31, 31, 36, 252, 32, 32, 37, 255, 34, 34, 39, 255, 35, 35, 39, 255, 35, 35, 39, 255, 34, 34, 39, 255, 32, 32, 37, 255, 31, 31, 36, 252, 63, 62, 73, 150, 77, 75, 89, 26, 77, 75, 89, 4, 77, 75, 89, 40, 63, 62, 73, 149, 42, 41, 47, 240, 32, 32, 36, 253, 30, 30, 35, 255, 30, 30, 35, 255, 32, 32, 36, 253, 42, 41, 47, 240, 63, 62, 73, 149, 77, 75, 89, 40, 77, 75, 89, 4, 0, 0, 0, 0, 77, 75, 89, 4, 77, 75, 89, 25, 77, 75, 89, 64, 77, 75, 89, 93, 77, 75, 89, 102, 77, 75, 89, 102, 77, 75, 89, 93, 77, 75, 89, 64, 77, 75, 89, 25, 77, 75, 89, 4, 0, 0, 0, 0 ), +"format": "RGBA8", +"height": 12, +"mipmaps": false, +"width": 12 +} + +[sub_resource type="ImageTexture" id=435] +flags = 4 +flags = 4 +image = SubResource( 737 ) +size = Vector2( 12, 12 ) + +[sub_resource type="StyleBoxTexture" id=436] +content_margin_left = 0.0 +content_margin_right = 0.0 +content_margin_top = 0.0 +content_margin_bottom = 0.0 +texture = SubResource( 435 ) +region_rect = Rect2( 0, 0, 12, 12 ) +margin_left = 5.0 +margin_right = 5.0 +margin_top = 5.0 +margin_bottom = 5.0 + +[sub_resource type="StyleBoxTexture" id=437] +content_margin_left = 0.0 +content_margin_right = 0.0 +content_margin_top = 0.0 +content_margin_bottom = 0.0 +texture = SubResource( 435 ) +region_rect = Rect2( 0, 0, 12, 12 ) +margin_left = 5.0 +margin_right = 5.0 +margin_top = 5.0 +margin_bottom = 5.0 + +[sub_resource type="Image" id=738] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 223, 88, 220, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 220, 22, 223, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 223, 88, 224, 254, 224, 211, 220, 22, 0, 0, 0, 0, 0, 0, 0, 0, 220, 22, 224, 211, 224, 254, 223, 88, 0, 0, 0, 0, 0, 0, 0, 0, 219, 21, 223, 210, 224, 255, 224, 215, 224, 25, 0, 0, 0, 0, 219, 21, 223, 210, 224, 255, 224, 215, 223, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 219, 21, 223, 210, 224, 255, 224, 215, 224, 25, 219, 21, 223, 210, 224, 255, 224, 215, 223, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 219, 21, 223, 210, 224, 255, 225, 218, 224, 214, 224, 255, 224, 215, 223, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 219, 21, 223, 214, 224, 255, 224, 255, 224, 219, 223, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 219, 21, 223, 214, 224, 255, 224, 255, 224, 219, 224, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 219, 21, 223, 210, 224, 255, 223, 218, 224, 214, 224, 255, 224, 215, 224, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 219, 21, 223, 210, 224, 255, 224, 215, 223, 24, 219, 21, 223, 210, 224, 255, 224, 215, 224, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 219, 21, 223, 210, 224, 255, 224, 215, 223, 24, 0, 0, 0, 0, 219, 21, 223, 210, 224, 255, 224, 215, 224, 25, 0, 0, 0, 0, 0, 0, 0, 0, 223, 88, 224, 254, 224, 211, 220, 22, 0, 0, 0, 0, 0, 0, 0, 0, 220, 22, 224, 211, 224, 254, 223, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 223, 88, 220, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 220, 22, 223, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "LumAlpha8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=401] +flags = 4 +flags = 4 +image = SubResource( 738 ) +size = Vector2( 16, 16 ) + +[sub_resource type="Image" id=739] +data = { +"data": PoolByteArray( 23, 22, 26, 111, 29, 28, 33, 239, 32, 30, 36, 247, 33, 31, 37, 247, 33, 31, 37, 247, 33, 31, 37, 247, 33, 31, 37, 247, 32, 30, 36, 247, 29, 28, 33, 239, 23, 22, 26, 111, 29, 28, 33, 240, 36, 34, 41, 255, 40, 38, 45, 255, 40, 38, 46, 255, 40, 38, 46, 255, 40, 38, 46, 255, 40, 38, 46, 255, 40, 38, 45, 255, 36, 34, 41, 255, 29, 28, 33, 240, 32, 30, 36, 249, 40, 38, 45, 255, 43, 42, 49, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 43, 42, 49, 255, 40, 38, 45, 255, 32, 30, 36, 249, 33, 31, 37, 247, 40, 38, 46, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 40, 38, 46, 255, 33, 31, 37, 247, 33, 31, 37, 247, 40, 38, 46, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 40, 38, 46, 255, 33, 31, 37, 247, 33, 31, 37, 247, 40, 38, 46, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 40, 38, 46, 255, 33, 31, 37, 247, 33, 31, 37, 247, 40, 38, 46, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 40, 38, 46, 255, 33, 31, 37, 247, 32, 30, 36, 249, 40, 38, 45, 255, 43, 42, 49, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 44, 42, 50, 255, 43, 42, 49, 255, 40, 38, 45, 255, 32, 30, 36, 249, 29, 28, 33, 240, 36, 34, 41, 255, 40, 38, 45, 255, 40, 38, 46, 255, 40, 38, 46, 255, 40, 38, 46, 255, 40, 38, 46, 255, 40, 38, 45, 255, 36, 34, 41, 255, 29, 28, 33, 241, 23, 22, 26, 111, 29, 28, 33, 240, 32, 30, 36, 247, 33, 31, 37, 247, 33, 31, 37, 247, 33, 31, 37, 247, 33, 31, 37, 247, 32, 30, 36, 247, 29, 28, 33, 238, 23, 22, 26, 111 ), +"format": "RGBA8", +"height": 10, +"mipmaps": false, +"width": 10 +} + +[sub_resource type="ImageTexture" id=406] +flags = 4 +flags = 4 +image = SubResource( 739 ) +size = Vector2( 10, 10 ) + +[sub_resource type="StyleBoxTexture" id=407] +content_margin_left = 8.0 +content_margin_right = 0.0 +content_margin_top = 4.0 +content_margin_bottom = 0.0 +texture = SubResource( 406 ) +region_rect = Rect2( 0, 0, 10, 10 ) +margin_left = 5.0 +margin_right = 5.0 +margin_top = 5.0 +margin_bottom = 5.0 + +[sub_resource type="Image" id=740] +data = { +"data": PoolByteArray( 24, 111, 30, 239, 33, 247, 34, 247, 34, 247, 34, 247, 34, 247, 33, 247, 30, 239, 24, 111, 30, 240, 37, 255, 41, 255, 42, 255, 42, 255, 42, 255, 42, 255, 41, 255, 37, 255, 30, 240, 33, 249, 41, 255, 45, 255, 46, 255, 46, 255, 46, 255, 46, 255, 45, 255, 41, 255, 33, 249, 34, 247, 42, 255, 46, 255, 46, 255, 46, 255, 46, 255, 46, 255, 46, 255, 42, 255, 34, 247, 34, 247, 42, 255, 46, 255, 46, 255, 46, 255, 46, 255, 46, 255, 46, 255, 42, 255, 34, 247, 34, 247, 42, 255, 46, 255, 46, 255, 46, 255, 46, 255, 46, 255, 46, 255, 42, 255, 34, 247, 34, 247, 42, 255, 46, 255, 46, 255, 46, 255, 46, 255, 46, 255, 46, 255, 42, 255, 34, 247, 33, 249, 41, 255, 45, 255, 46, 255, 46, 255, 46, 255, 46, 255, 45, 255, 41, 255, 33, 249, 30, 240, 37, 255, 41, 255, 42, 255, 42, 255, 42, 255, 42, 255, 41, 255, 37, 255, 30, 241, 24, 111, 30, 240, 33, 247, 34, 247, 34, 247, 34, 247, 34, 247, 33, 247, 30, 238, 24, 111 ), +"format": "LumAlpha8", +"height": 10, +"mipmaps": false, +"width": 10 +} + +[sub_resource type="ImageTexture" id=409] +flags = 4 +flags = 4 +image = SubResource( 740 ) +size = Vector2( 10, 10 ) + +[sub_resource type="StyleBoxTexture" id=410] +texture = SubResource( 409 ) +region_rect = Rect2( 0, 0, 10, 10 ) +margin_left = 6.0 +margin_right = 6.0 +margin_top = 6.0 +margin_bottom = 6.0 + +[sub_resource type="Image" id=741] +data = { +"data": PoolByteArray( 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42, 37, 37, 42 ), +"format": "RGB8", +"height": 8, +"mipmaps": false, +"width": 8 +} + +[sub_resource type="ImageTexture" id=697] +flags = 4 +flags = 4 +image = SubResource( 741 ) +size = Vector2( 8, 8 ) + +[sub_resource type="StyleBoxTexture" id=365] +texture = SubResource( 697 ) +region_rect = Rect2( 0, 0, 8, 8 ) + +[sub_resource type="DynamicFont" id=742] +use_mipmaps = true +use_filter = true +font_data = ExtResource( 3 ) + +[sub_resource type="Image" id=743] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 0, 0, 0, 0, 0, 0, 0, 0, 225, 94, 224, 244, 224, 255, 224, 255, 224, 255, 224, 255, 224, 246, 225, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 223, 40, 223, 210, 224, 255, 224, 255, 224, 215, 227, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 11, 225, 159, 225, 159, 232, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "LumAlpha8", +"height": 12, +"mipmaps": false, +"width": 12 +} + +[sub_resource type="ImageTexture" id=505] +flags = 4 +flags = 4 +image = SubResource( 743 ) +size = Vector2( 12, 12 ) + +[sub_resource type="Image" id=744] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 224, 255, 223, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 224, 255, 224, 244, 225, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 224, 255, 224, 255, 224, 213, 232, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 225, 159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 224, 255, 224, 255, 224, 255, 225, 159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 224, 255, 224, 255, 224, 213, 232, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 224, 255, 224, 244, 225, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 255, 224, 255, 224, 255, 223, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "LumAlpha8", +"height": 12, +"mipmaps": false, +"width": 12 +} + +[sub_resource type="ImageTexture" id=507] +flags = 4 +flags = 4 +image = SubResource( 744 ) +size = Vector2( 12, 12 ) + +[sub_resource type="Image" id=745] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 17, 255, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 18, 255, 50, 255, 50, 255, 17, 0, 0, 0, 0, 0, 0, 0, 0, 255, 18, 255, 50, 255, 50, 255, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 17, 255, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "LumAlpha8", +"height": 8, +"mipmaps": false, +"width": 8 +} + +[sub_resource type="ImageTexture" id=509] +flags = 4 +flags = 4 +image = SubResource( 745 ) +size = Vector2( 8, 8 ) + +[sub_resource type="Image" id=746] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 89, 255, 20, 255, 20, 255, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 89, 255, 20, 255, 20, 255, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 89, 255, 20, 255, 20, 255, 89, 0, 0, 0, 0, 0, 0, 0, 0, 255, 89, 255, 20, 255, 20, 255, 89, 0, 0, 0, 0, 0, 0, 255, 89, 255, 20, 255, 20, 255, 89, 0, 0, 0, 0, 0, 0, 255, 89, 255, 20, 255, 20, 255, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "LumAlpha8", +"height": 8, +"mipmaps": false, +"width": 8 +} + +[sub_resource type="ImageTexture" id=511] +flags = 4 +flags = 4 +image = SubResource( 746 ) +size = Vector2( 8, 8 ) + +[sub_resource type="StyleBoxTexture" id=512] +content_margin_left = 0.0 +content_margin_right = 0.0 +content_margin_top = 0.0 +content_margin_bottom = 0.0 +texture = SubResource( 459 ) +region_rect = Rect2( 0, 0, 10, 10 ) +margin_left = 3.0 +margin_right = 3.0 +margin_top = 3.0 +margin_bottom = 3.0 + +[sub_resource type="StyleBoxTexture" id=514] +content_margin_left = 0.0 +content_margin_right = 0.0 +content_margin_top = 0.0 +content_margin_bottom = 0.0 +texture = SubResource( 459 ) +region_rect = Rect2( 0, 0, 10, 10 ) +margin_left = 3.0 +margin_right = 3.0 +margin_top = 3.0 +margin_bottom = 3.0 + +[sub_resource type="Image" id=747] +data = { +"data": PoolByteArray( 24, 111, 30, 239, 33, 247, 34, 247, 34, 247, 34, 247, 34, 247, 33, 247, 30, 239, 24, 111, 30, 240, 37, 255, 41, 255, 42, 255, 42, 255, 42, 255, 42, 255, 41, 255, 37, 255, 30, 240, 33, 249, 41, 255, 45, 255, 46, 255, 46, 255, 46, 255, 46, 255, 45, 255, 41, 255, 33, 249, 34, 247, 42, 255, 46, 255, 46, 255, 46, 255, 46, 255, 46, 255, 46, 255, 42, 255, 34, 247, 34, 247, 42, 255, 46, 255, 46, 255, 46, 255, 46, 255, 46, 255, 46, 255, 42, 255, 34, 247, 34, 247, 42, 255, 46, 255, 46, 255, 46, 255, 46, 255, 46, 255, 46, 255, 42, 255, 34, 247, 34, 247, 42, 255, 46, 255, 46, 255, 46, 255, 46, 255, 46, 255, 46, 255, 42, 255, 34, 247, 33, 249, 41, 255, 45, 255, 46, 255, 46, 255, 46, 255, 46, 255, 45, 255, 41, 255, 33, 249, 30, 240, 37, 255, 41, 255, 42, 255, 42, 255, 42, 255, 42, 255, 41, 255, 37, 255, 30, 241, 24, 111, 30, 240, 33, 247, 34, 247, 34, 247, 34, 247, 34, 247, 33, 247, 30, 238, 24, 111 ), +"format": "LumAlpha8", +"height": 10, +"mipmaps": false, +"width": 10 +} + +[sub_resource type="ImageTexture" id=516] +flags = 4 +flags = 4 +image = SubResource( 747 ) +size = Vector2( 10, 10 ) + +[sub_resource type="StyleBoxTexture" id=517] +content_margin_left = 0.0 +content_margin_right = 0.0 +content_margin_top = 0.0 +content_margin_bottom = 0.0 +texture = SubResource( 516 ) +region_rect = Rect2( 0, 0, 10, 10 ) +margin_left = 4.0 +margin_right = 4.0 +margin_top = 4.0 +margin_bottom = 4.0 + +[sub_resource type="Image" id=748] +data = { +"data": PoolByteArray( 0, 0, 0, 10, 0, 0, 0, 26, 0, 0, 0, 38, 0, 0, 0, 41, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 41, 0, 0, 0, 38, 0, 0, 0, 26, 0, 0, 0, 10, 0, 0, 0, 26, 0, 0, 0, 72, 0, 0, 0, 101, 0, 0, 0, 109, 0, 0, 0, 110, 0, 0, 0, 110, 0, 0, 0, 110, 0, 0, 0, 110, 0, 0, 0, 110, 0, 0, 0, 110, 0, 0, 0, 110, 0, 0, 0, 110, 0, 0, 0, 109, 0, 0, 0, 101, 0, 0, 0, 72, 0, 0, 0, 26, 0, 0, 0, 38, 0, 0, 0, 102, 45, 44, 47, 245, 72, 70, 74, 254, 76, 74, 78, 255, 76, 74, 78, 255, 76, 74, 78, 255, 76, 74, 78, 255, 76, 74, 78, 255, 76, 74, 78, 255, 76, 74, 78, 255, 76, 74, 78, 255, 72, 70, 74, 254, 45, 44, 47, 245, 0, 0, 0, 102, 0, 0, 0, 38, 0, 0, 0, 42, 0, 0, 0, 109, 72, 70, 74, 255, 64, 62, 66, 255, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 64, 62, 66, 255, 72, 70, 74, 255, 0, 0, 0, 109, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 110, 76, 74, 78, 255, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 76, 74, 78, 255, 0, 0, 0, 110, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 110, 76, 74, 78, 255, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 76, 74, 78, 255, 0, 0, 0, 110, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 110, 76, 74, 78, 255, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 76, 74, 78, 255, 0, 0, 0, 110, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 110, 76, 74, 78, 255, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 76, 74, 78, 255, 0, 0, 0, 110, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 110, 76, 74, 78, 255, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 76, 74, 78, 255, 0, 0, 0, 110, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 110, 76, 74, 78, 255, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 76, 74, 78, 255, 0, 0, 0, 110, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 110, 76, 74, 78, 255, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 76, 74, 78, 255, 0, 0, 0, 110, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 110, 76, 74, 78, 255, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 76, 74, 78, 255, 0, 0, 0, 110, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 109, 72, 70, 74, 255, 64, 62, 66, 255, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 221, 221, 221, 204, 64, 62, 66, 255, 72, 70, 74, 255, 0, 0, 0, 109, 0, 0, 0, 42, 0, 0, 0, 38, 0, 0, 0, 102, 45, 44, 47, 245, 72, 70, 74, 254, 76, 74, 78, 255, 76, 74, 78, 255, 76, 74, 78, 255, 76, 74, 78, 255, 76, 74, 78, 255, 76, 74, 78, 255, 76, 74, 78, 255, 76, 74, 78, 255, 72, 70, 74, 254, 45, 44, 47, 245, 0, 0, 0, 102, 0, 0, 0, 38, 0, 0, 0, 26, 0, 0, 0, 72, 0, 0, 0, 101, 0, 0, 0, 109, 0, 0, 0, 110, 0, 0, 0, 110, 0, 0, 0, 110, 0, 0, 0, 110, 0, 0, 0, 110, 0, 0, 0, 110, 0, 0, 0, 110, 0, 0, 0, 110, 0, 0, 0, 109, 0, 0, 0, 101, 0, 0, 0, 72, 0, 0, 0, 26, 0, 0, 0, 10, 0, 0, 0, 26, 0, 0, 0, 38, 0, 0, 0, 41, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 41, 0, 0, 0, 38, 0, 0, 0, 26, 0, 0, 0, 10 ), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=642] +flags = 4 +flags = 4 +image = SubResource( 748 ) +size = Vector2( 16, 16 ) + +[sub_resource type="StyleBoxTexture" id=643] +texture = SubResource( 642 ) +region_rect = Rect2( 0, 0, 16, 16 ) +margin_left = 4.0 +margin_right = 4.0 +margin_top = 4.0 +margin_bottom = 4.0 +expand_margin_left = 4.0 +expand_margin_right = 4.0 +expand_margin_top = 4.0 +expand_margin_bottom = 4.0 + +[sub_resource type="StyleBoxTexture" id=439] +content_margin_left = 2.0 +content_margin_right = 2.0 +content_margin_top = 2.0 +content_margin_bottom = 2.0 +texture = SubResource( 426 ) +region_rect = Rect2( 0, 0, 12, 12 ) +margin_left = 5.0 +margin_right = 5.0 +margin_top = 5.0 +margin_bottom = 5.0 + +[sub_resource type="StyleBoxTexture" id=440] +content_margin_left = 2.0 +content_margin_right = 2.0 +content_margin_top = 2.0 +content_margin_bottom = 2.0 +texture = SubResource( 429 ) +region_rect = Rect2( 0, 0, 12, 12 ) +margin_left = 5.0 +margin_right = 5.0 +margin_top = 5.0 +margin_bottom = 5.0 + +[sub_resource type="StyleBoxTexture" id=441] +content_margin_left = 2.0 +content_margin_right = 2.0 +content_margin_top = 2.0 +content_margin_bottom = 2.0 +texture = SubResource( 432 ) +region_rect = Rect2( 0, 0, 12, 12 ) +margin_left = 5.0 +margin_right = 5.0 +margin_top = 5.0 +margin_bottom = 5.0 + +[sub_resource type="StyleBoxTexture" id=442] +content_margin_left = 0.0 +content_margin_right = 0.0 +content_margin_top = 0.0 +content_margin_bottom = 0.0 +texture = SubResource( 435 ) +region_rect = Rect2( 0, 0, 12, 12 ) +margin_left = 5.0 +margin_right = 5.0 +margin_top = 5.0 +margin_bottom = 5.0 + +[sub_resource type="StyleBoxTexture" id=443] +content_margin_left = 0.0 +content_margin_right = 0.0 +content_margin_top = 0.0 +content_margin_bottom = 0.0 +texture = SubResource( 435 ) +region_rect = Rect2( 0, 0, 12, 12 ) +margin_left = 5.0 +margin_right = 5.0 +margin_top = 5.0 +margin_bottom = 5.0 + +[sub_resource type="Image" id=749] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 88, 12, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 22, 9, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 88, 8, 254, 8, 211, 12, 22, 0, 0, 0, 0, 0, 0, 0, 0, 12, 22, 8, 211, 8, 254, 9, 88, 0, 0, 0, 0, 0, 0, 0, 0, 12, 21, 9, 210, 8, 255, 8, 215, 10, 25, 0, 0, 0, 0, 12, 21, 9, 210, 8, 255, 8, 215, 11, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 21, 9, 210, 8, 255, 8, 215, 10, 25, 12, 21, 9, 210, 8, 255, 8, 215, 11, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 21, 9, 210, 8, 255, 8, 218, 8, 214, 8, 255, 8, 215, 11, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 21, 8, 214, 8, 255, 8, 255, 8, 219, 11, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 21, 8, 214, 8, 255, 8, 255, 8, 219, 10, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 21, 9, 210, 8, 255, 8, 218, 8, 214, 8, 255, 8, 215, 10, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 21, 9, 210, 8, 255, 8, 215, 11, 24, 12, 21, 9, 210, 8, 255, 8, 215, 10, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 21, 9, 210, 8, 255, 8, 215, 11, 24, 0, 0, 0, 0, 12, 21, 9, 210, 8, 255, 8, 215, 10, 25, 0, 0, 0, 0, 0, 0, 0, 0, 9, 88, 8, 254, 8, 211, 12, 22, 0, 0, 0, 0, 0, 0, 0, 0, 12, 22, 8, 211, 8, 254, 9, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 88, 12, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 22, 9, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "LumAlpha8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=579] +flags = 4 +flags = 4 +image = SubResource( 749 ) +size = Vector2( 16, 16 ) + +[sub_resource type="Image" id=750] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 88, 12, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 22, 9, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 88, 8, 254, 8, 211, 12, 22, 0, 0, 0, 0, 0, 0, 0, 0, 12, 22, 8, 211, 8, 254, 9, 88, 0, 0, 0, 0, 0, 0, 0, 0, 12, 21, 9, 210, 8, 255, 8, 215, 10, 25, 0, 0, 0, 0, 12, 21, 9, 210, 8, 255, 8, 215, 11, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 21, 9, 210, 8, 255, 8, 215, 10, 25, 12, 21, 9, 210, 8, 255, 8, 215, 11, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 21, 9, 210, 8, 255, 8, 218, 8, 214, 8, 255, 8, 215, 11, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 21, 8, 214, 8, 255, 8, 255, 8, 219, 11, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 21, 8, 214, 8, 255, 8, 255, 8, 219, 10, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 21, 9, 210, 8, 255, 8, 218, 8, 214, 8, 255, 8, 215, 10, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 21, 9, 210, 8, 255, 8, 215, 11, 24, 12, 21, 9, 210, 8, 255, 8, 215, 10, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 21, 9, 210, 8, 255, 8, 215, 11, 24, 0, 0, 0, 0, 12, 21, 9, 210, 8, 255, 8, 215, 10, 25, 0, 0, 0, 0, 0, 0, 0, 0, 9, 88, 8, 254, 8, 211, 12, 22, 0, 0, 0, 0, 0, 0, 0, 0, 12, 22, 8, 211, 8, 254, 9, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 88, 12, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 22, 9, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "LumAlpha8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id=581] +flags = 4 +flags = 4 +image = SubResource( 750 ) +size = Vector2( 16, 16 ) + +[sub_resource type="Image" id=751] +data = { +"data": PoolByteArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 229, 241, 162, 232, 229, 241, 255, 232, 229, 241, 255, 232, 229, 241, 255, 232, 229, 241, 255, 232, 229, 241, 255, 232, 229, 241, 255, 232, 229, 241, 255, 232, 229, 241, 255, 232, 229, 241, 255, 232, 229, 241, 255, 232, 229, 241, 255, 232, 229, 241, 255, 232, 229, 241, 255, 232, 229, 241, 255, 232, 229, 241, 255, 232, 229, 241, 255, 232, 229, 241, 255, 232, 229, 241, 255, 232, 229, 241, 255, 232, 229, 241, 255, 232, 229, 241, 255, 232, 229, 241, 255, 232, 229, 241, 255, 232, 229, 241, 255, 232, 229, 241, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 229, 241, 255, 229, 226, 235, 255, 227, 225, 232, 255, 227, 225, 232, 255, 227, 225, 232, 255, 227, 225, 232, 255, 227, 225, 232, 255, 227, 225, 232, 255, 227, 225, 232, 255, 227, 225, 232, 255, 227, 225, 232, 255, 227, 225, 232, 255, 227, 225, 232, 255, 227, 225, 232, 255, 227, 225, 232, 255, 227, 225, 232, 255, 227, 225, 232, 255, 227, 225, 232, 255, 227, 225, 232, 255, 227, 225, 232, 255, 227, 225, 232, 255, 227, 225, 232, 255, 227, 225, 232, 255, 227, 225, 232, 255, 229, 226, 235, 255, 232, 229, 241, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 229, 241, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 232, 229, 241, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 229, 241, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 225, 223, 231, 255, 232, 229, 241, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 229, 241, 255, 224, 222, 230, 255, 224, 222, 230, 255, 224, 222, 230, 255, 224, 222, 230, 255, 224, 222, 230, 255, 224, 222, 230, 255, 224, 222, 230, 255, 224, 222, 230, 255, 224, 222, 230, 255, 224, 222, 230, 255, 224, 222, 230, 255, 224, 222, 230, 255, 224, 222, 230, 255, 224, 222, 230, 255, 224, 222, 230, 255, 224, 222, 230, 255, 224, 222, 230, 255, 224, 222, 230, 255, 224, 222, 230, 255, 224, 222, 230, 255, 224, 222, 230, 255, 224, 222, 230, 255, 224, 222, 230, 255, 224, 222, 230, 255, 232, 229, 241, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 229, 241, 255, 223, 221, 229, 255, 223, 221, 229, 255, 223, 221, 229, 255, 223, 221, 229, 255, 223, 221, 229, 255, 223, 221, 229, 255, 223, 221, 229, 255, 223, 221, 229, 255, 223, 221, 229, 255, 223, 221, 229, 255, 223, 221, 229, 255, 223, 221, 229, 255, 223, 221, 229, 255, 223, 221, 229, 255, 223, 221, 229, 255, 223, 221, 229, 255, 223, 221, 229, 255, 223, 221, 229, 255, 223, 221, 229, 255, 223, 221, 229, 255, 223, 221, 229, 255, 223, 221, 229, 255, 223, 221, 229, 255, 223, 221, 229, 255, 232, 229, 241, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 229, 241, 255, 222, 220, 228, 255, 222, 220, 228, 255, 222, 220, 228, 255, 222, 220, 228, 255, 222, 220, 228, 255, 222, 220, 228, 255, 222, 220, 228, 255, 222, 220, 228, 255, 222, 220, 228, 255, 222, 220, 228, 255, 222, 220, 228, 255, 222, 220, 228, 255, 222, 220, 228, 255, 222, 220, 228, 255, 222, 220, 228, 255, 222, 220, 228, 255, 222, 220, 228, 255, 222, 220, 228, 255, 222, 220, 228, 255, 222, 220, 228, 255, 222, 220, 228, 255, 222, 220, 228, 255, 222, 220, 228, 255, 222, 220, 228, 255, 232, 229, 241, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 229, 241, 255, 221, 219, 227, 255, 221, 219, 227, 255, 221, 219, 227, 255, 221, 219, 227, 255, 221, 219, 227, 255, 221, 219, 227, 255, 221, 219, 227, 255, 221, 219, 227, 255, 221, 219, 227, 255, 221, 219, 227, 255, 221, 219, 227, 255, 221, 219, 227, 255, 221, 219, 227, 255, 221, 219, 227, 255, 221, 219, 227, 255, 221, 219, 227, 255, 221, 219, 227, 255, 221, 219, 227, 255, 221, 219, 227, 255, 221, 219, 227, 255, 221, 219, 227, 255, 221, 219, 227, 255, 221, 219, 227, 255, 221, 219, 227, 255, 232, 229, 241, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 229, 241, 255, 220, 218, 226, 255, 220, 218, 226, 255, 220, 218, 226, 255, 220, 218, 226, 255, 220, 218, 226, 255, 220, 218, 226, 255, 220, 218, 226, 255, 220, 218, 226, 255, 220, 218, 226, 255, 220, 218, 226, 255, 220, 218, 226, 255, 220, 218, 226, 255, 220, 218, 226, 255, 220, 218, 226, 255, 220, 218, 226, 255, 220, 218, 226, 255, 220, 218, 226, 255, 220, 218, 226, 255, 220, 218, 226, 255, 220, 218, 226, 255, 220, 218, 226, 255, 220, 218, 226, 255, 220, 218, 226, 255, 220, 218, 226, 255, 232, 229, 241, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 229, 241, 255, 218, 216, 224, 255, 218, 216, 224, 255, 218, 216, 224, 255, 218, 216, 224, 255, 218, 216, 224, 255, 218, 216, 224, 255, 218, 216, 224, 255, 218, 216, 224, 255, 218, 216, 224, 255, 218, 216, 224, 255, 218, 216, 224, 255, 218, 216, 224, 255, 218, 216, 224, 255, 218, 216, 224, 255, 218, 216, 224, 255, 218, 216, 224, 255, 218, 216, 224, 255, 218, 216, 224, 255, 218, 216, 224, 255, 218, 216, 224, 255, 218, 216, 224, 255, 218, 216, 224, 255, 218, 216, 224, 255, 218, 216, 224, 255, 232, 229, 241, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 229, 241, 255, 217, 215, 223, 255, 217, 215, 223, 255, 217, 215, 223, 255, 217, 215, 223, 255, 217, 215, 223, 255, 217, 215, 223, 255, 217, 215, 223, 255, 217, 215, 223, 255, 217, 215, 223, 255, 217, 215, 223, 255, 217, 215, 223, 255, 217, 215, 223, 255, 217, 215, 223, 255, 217, 215, 223, 255, 217, 215, 223, 255, 217, 215, 223, 255, 217, 215, 223, 255, 217, 215, 223, 255, 217, 215, 223, 255, 217, 215, 223, 255, 217, 215, 223, 255, 217, 215, 223, 255, 217, 215, 223, 255, 217, 215, 223, 255, 232, 229, 241, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 229, 241, 255, 215, 214, 223, 255, 215, 214, 223, 255, 215, 214, 223, 255, 215, 214, 223, 255, 215, 214, 223, 255, 215, 214, 223, 255, 215, 214, 223, 255, 215, 214, 223, 255, 215, 214, 223, 255, 215, 214, 223, 255, 215, 214, 223, 255, 215, 214, 223, 255, 215, 214, 223, 255, 215, 214, 223, 255, 215, 214, 223, 255, 215, 214, 223, 255, 215, 214, 223, 255, 215, 214, 223, 255, 215, 214, 223, 255, 215, 214, 223, 255, 215, 214, 223, 255, 215, 214, 223, 255, 215, 214, 223, 255, 215, 214, 223, 255, 232, 229, 241, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 229, 241, 255, 214, 212, 221, 255, 214, 212, 221, 255, 214, 212, 221, 255, 214, 212, 221, 255, 214, 212, 221, 255, 214, 212, 221, 255, 214, 212, 221, 255, 214, 212, 221, 255, 214, 212, 221, 255, 214, 212, 221, 255, 214, 212, 221, 255, 214, 212, 221, 255, 214, 212, 221, 255, 214, 212, 221, 255, 214, 212, 221, 255, 214, 212, 221, 255, 214, 212, 221, 255, 214, 212, 221, 255, 214, 212, 221, 255, 214, 212, 221, 255, 214, 212, 221, 255, 214, 212, 221, 255, 214, 212, 221, 255, 214, 212, 221, 255, 232, 229, 241, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 232, 229, 241, 255, 213, 211, 220, 255, 213, 211, 220, 255, 213, 211, 220, 255, 213, 211, 220, 255, 213, 211, 220, 255, 213, 211, 220, 255, 213, 211, 220, 255, 213, 211, 220, 255, 213, 211, 220, 255, 213, 211, 220, 255, 213, 211, 220, 255, 213, 211, 220, 255, 213, 211, 220, 255, 213, 211, 220, 255, 213, 211, 220, 255, 213, 211, 220, 255, 213, 211, 220, 255, 213, 211, 220, 255, 213, 211, 220, 255, 213, 211, 220, 255, 213, 211, 220, 255, 213, 211, 220, 255, 213, 211, 220, 255, 213, 211, 220, 255, 232, 229, 241, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 9, 31, 29, 34, 23, 232, 229, 241, 255, 212, 209, 219, 255, 212, 209, 219, 255, 212, 209, 219, 255, 212, 209, 219, 255, 212, 209, 219, 255, 212, 209, 219, 255, 212, 209, 219, 255, 212, 209, 219, 255, 212, 209, 219, 255, 212, 209, 219, 255, 212, 209, 219, 255, 212, 209, 219, 255, 212, 209, 219, 255, 212, 209, 219, 255, 212, 209, 219, 255, 212, 209, 219, 255, 212, 209, 219, 255, 212, 209, 219, 255, 212, 209, 219, 255, 212, 209, 219, 255, 212, 209, 219, 255, 212, 209, 219, 255, 212, 209, 219, 255, 212, 209, 219, 255, 232, 229, 241, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 12, 26, 25, 28, 32, 232, 229, 241, 255, 211, 208, 218, 255, 211, 208, 218, 255, 211, 208, 218, 255, 211, 208, 218, 255, 211, 208, 218, 255, 211, 208, 218, 255, 211, 208, 218, 255, 211, 208, 218, 255, 211, 208, 218, 255, 211, 208, 218, 255, 211, 208, 218, 255, 211, 208, 218, 255, 211, 208, 218, 255, 211, 208, 218, 255, 211, 208, 218, 255, 211, 208, 218, 255, 211, 208, 218, 255, 211, 208, 218, 255, 211, 208, 218, 255, 211, 208, 218, 255, 211, 208, 218, 255, 211, 208, 218, 255, 211, 208, 218, 255, 211, 208, 218, 255, 232, 229, 241, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 42, 32, 30, 35, 94, 232, 229, 241, 255, 209, 206, 216, 255, 209, 206, 216, 255, 209, 206, 216, 255, 209, 206, 216, 255, 209, 206, 216, 255, 209, 206, 216, 255, 209, 206, 216, 255, 209, 206, 216, 255, 209, 206, 216, 255, 209, 206, 216, 255, 209, 206, 216, 255, 209, 206, 216, 255, 209, 206, 216, 255, 209, 206, 216, 255, 209, 206, 216, 255, 209, 206, 216, 255, 209, 206, 216, 255, 209, 206, 216, 255, 209, 206, 216, 255, 209, 206, 216, 255, 209, 206, 216, 255, 209, 206, 216, 255, 209, 206, 216, 255, 209, 206, 216, 255, 232, 229, 241, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 48, 31, 29, 33, 104, 232, 229, 241, 255, 208, 205, 215, 255, 208, 205, 215, 255, 208, 205, 215, 255, 208, 205, 215, 255, 208, 205, 215, 255, 208, 205, 215, 255, 208, 205, 215, 255, 208, 205, 215, 255, 208, 205, 215, 255, 208, 205, 215, 255, 208, 205, 215, 255, 208, 205, 215, 255, 208, 205, 215, 255, 208, 205, 215, 255, 208, 205, 215, 255, 208, 205, 215, 255, 208, 205, 215, 255, 208, 205, 215, 255, 208, 205, 215, 255, 208, 205, 215, 255, 208, 205, 215, 255, 208, 205, 215, 255, 208, 205, 215, 255, 208, 205, 215, 255, 232, 229, 241, 255, 23, 22, 25, 70, 0, 0, 0, 32, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 78, 33, 31, 36, 162, 232, 229, 241, 255, 207, 205, 215, 255, 207, 205, 215, 255, 207, 205, 215, 255, 207, 205, 215, 255, 207, 205, 215, 255, 207, 205, 215, 255, 207, 205, 215, 255, 207, 205, 215, 255, 207, 205, 215, 255, 207, 205, 215, 255, 207, 205, 215, 255, 207, 205, 215, 255, 207, 205, 215, 255, 207, 205, 215, 255, 207, 205, 215, 255, 207, 205, 215, 255, 207, 205, 215, 255, 207, 205, 215, 255, 207, 205, 215, 255, 207, 205, 215, 255, 207, 205, 215, 255, 207, 205, 215, 255, 207, 205, 215, 255, 207, 205, 215, 255, 232, 229, 241, 255, 27, 26, 29, 125, 0, 0, 0, 58, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 79, 33, 31, 36, 164, 232, 229, 241, 255, 226, 223, 235, 255, 226, 223, 235, 255, 226, 223, 235, 255, 226, 223, 235, 255, 226, 223, 235, 255, 226, 223, 235, 255, 226, 223, 235, 255, 226, 223, 235, 255, 226, 223, 235, 255, 226, 223, 235, 255, 226, 223, 235, 255, 226, 223, 235, 255, 226, 223, 235, 255, 226, 223, 235, 255, 226, 223, 235, 255, 226, 223, 235, 255, 226, 223, 235, 255, 226, 223, 235, 255, 226, 223, 235, 255, 226, 223, 235, 255, 226, 223, 235, 255, 226, 223, 235, 255, 226, 223, 235, 255, 226, 223, 235, 255, 232, 229, 241, 255, 30, 28, 32, 125, 0, 0, 0, 63, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 34, 32, 37, 192, 72, 70, 81, 255, 66, 64, 75, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 66, 64, 75, 255, 72, 70, 81, 255, 32, 30, 35, 184, 0, 0, 0, 87, 0, 0, 0, 29, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 34, 32, 37, 192, 72, 70, 81, 255, 66, 64, 75, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 66, 64, 75, 255, 72, 70, 81, 255, 33, 31, 36, 186, 0, 0, 0, 89, 0, 0, 0, 32, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 34, 32, 37, 192, 72, 70, 81, 255, 66, 64, 75, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 66, 64, 75, 255, 72, 70, 81, 255, 33, 31, 36, 189, 0, 0, 0, 91, 0, 0, 0, 34, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 34, 32, 37, 192, 72, 70, 81, 255, 66, 64, 75, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 66, 64, 75, 255, 72, 70, 81, 255, 34, 32, 37, 191, 0, 0, 0, 94, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 34, 32, 37, 192, 72, 70, 81, 255, 66, 64, 75, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 64, 62, 72, 255, 66, 64, 75, 255, 72, 70, 81, 255, 34, 32, 37, 192, 0, 0, 0, 96, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 34, 32, 37, 192, 72, 70, 81, 255, 66, 64, 75, 255, 64, 61, 72, 255, 64, 61, 72, 255, 64, 61, 72, 255, 64, 61, 72, 255, 64, 61, 72, 255, 64, 61, 72, 255, 64, 61, 72, 255, 64, 61, 72, 255, 64, 61, 72, 255, 64, 61, 72, 255, 64, 61, 72, 255, 64, 61, 72, 255, 64, 61, 72, 255, 64, 61, 72, 255, 64, 61, 72, 255, 64, 61, 72, 255, 64, 61, 72, 255, 64, 61, 72, 255, 64, 61, 72, 255, 64, 61, 72, 255, 64, 61, 72, 255, 64, 61, 72, 255, 66, 64, 75, 255, 72, 70, 81, 255, 34, 32, 37, 192, 0, 0, 0, 96, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 34, 32, 37, 192, 72, 69, 80, 255, 66, 63, 74, 255, 63, 61, 72, 255, 63, 61, 72, 255, 63, 61, 72, 255, 63, 61, 72, 255, 63, 61, 72, 255, 63, 61, 72, 255, 63, 61, 72, 255, 63, 61, 72, 255, 63, 61, 72, 255, 63, 61, 72, 255, 63, 61, 72, 255, 63, 61, 72, 255, 63, 61, 72, 255, 63, 61, 72, 255, 63, 61, 72, 255, 63, 61, 72, 255, 63, 61, 72, 255, 63, 61, 72, 255, 63, 61, 72, 255, 63, 61, 72, 255, 63, 61, 72, 255, 63, 61, 72, 255, 66, 63, 74, 255, 72, 69, 80, 255, 34, 32, 37, 192, 0, 0, 0, 96, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 32, 32, 37, 192, 71, 68, 80, 255, 65, 63, 74, 255, 63, 61, 71, 255, 63, 61, 71, 255, 63, 61, 71, 255, 63, 61, 71, 255, 63, 61, 71, 255, 63, 61, 71, 255, 63, 61, 71, 255, 63, 61, 71, 255, 63, 61, 71, 255, 63, 61, 71, 255, 63, 61, 71, 255, 63, 61, 71, 255, 63, 61, 71, 255, 63, 61, 71, 255, 63, 61, 71, 255, 63, 61, 71, 255, 63, 61, 71, 255, 63, 61, 71, 255, 63, 61, 71, 255, 63, 61, 71, 255, 63, 61, 71, 255, 63, 61, 71, 255, 65, 63, 74, 255, 71, 68, 80, 255, 32, 32, 37, 192, 0, 0, 0, 96, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 32, 32, 37, 192, 71, 68, 80, 255, 65, 62, 73, 255, 63, 60, 71, 255, 63, 60, 71, 255, 63, 60, 71, 255, 63, 60, 71, 255, 63, 60, 71, 255, 63, 60, 71, 255, 63, 60, 71, 255, 63, 60, 71, 255, 63, 60, 71, 255, 63, 60, 71, 255, 63, 60, 71, 255, 63, 60, 71, 255, 63, 60, 71, 255, 63, 60, 71, 255, 63, 60, 71, 255, 63, 60, 71, 255, 63, 60, 71, 255, 63, 60, 71, 255, 63, 60, 71, 255, 63, 60, 71, 255, 63, 60, 71, 255, 63, 60, 71, 255, 65, 62, 73, 255, 71, 68, 80, 255, 32, 32, 37, 192, 0, 0, 0, 96, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 32, 32, 37, 192, 70, 67, 79, 255, 65, 62, 73, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 65, 62, 73, 255, 70, 67, 79, 255, 32, 32, 37, 192, 0, 0, 0, 96, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 32, 32, 37, 192, 70, 67, 79, 255, 64, 62, 73, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 62, 60, 70, 255, 64, 62, 73, 255, 70, 67, 79, 255, 32, 32, 37, 192, 0, 0, 0, 96, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 32, 32, 37, 192, 70, 67, 79, 255, 64, 61, 72, 255, 61, 59, 70, 255, 61, 59, 70, 255, 61, 59, 70, 255, 61, 59, 70, 255, 61, 59, 70, 255, 61, 59, 70, 255, 61, 59, 70, 255, 61, 59, 70, 255, 61, 59, 70, 255, 61, 59, 70, 255, 61, 59, 70, 255, 61, 59, 70, 255, 61, 59, 70, 255, 61, 59, 70, 255, 61, 59, 70, 255, 61, 59, 70, 255, 61, 59, 70, 255, 61, 59, 70, 255, 61, 59, 70, 255, 61, 59, 70, 255, 61, 59, 70, 255, 61, 59, 70, 255, 64, 61, 72, 255, 70, 67, 79, 255, 32, 32, 37, 192, 0, 0, 0, 96, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 32, 29, 37, 192, 69, 67, 78, 255, 63, 61, 72, 255, 61, 59, 69, 255, 61, 59, 69, 255, 61, 59, 69, 255, 61, 59, 69, 255, 61, 59, 69, 255, 61, 59, 69, 255, 61, 59, 69, 255, 61, 59, 69, 255, 61, 59, 69, 255, 61, 59, 69, 255, 61, 59, 69, 255, 61, 59, 69, 255, 61, 59, 69, 255, 61, 59, 69, 255, 61, 59, 69, 255, 61, 59, 69, 255, 61, 59, 69, 255, 61, 59, 69, 255, 61, 59, 69, 255, 61, 59, 69, 255, 61, 59, 69, 255, 61, 59, 69, 255, 63, 61, 72, 255, 69, 67, 78, 255, 32, 29, 37, 192, 0, 0, 0, 96, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 32, 29, 34, 192, 68, 66, 77, 255, 63, 61, 71, 255, 61, 58, 69, 255, 61, 58, 69, 255, 61, 58, 69, 255, 61, 58, 69, 255, 61, 58, 69, 255, 61, 58, 69, 255, 61, 58, 69, 255, 61, 58, 69, 255, 61, 58, 69, 255, 61, 58, 69, 255, 61, 58, 69, 255, 61, 58, 69, 255, 61, 58, 69, 255, 61, 58, 69, 255, 61, 58, 69, 255, 61, 58, 69, 255, 61, 58, 69, 255, 61, 58, 69, 255, 61, 58, 69, 255, 61, 58, 69, 255, 61, 58, 69, 255, 61, 58, 69, 255, 63, 61, 71, 255, 68, 66, 77, 255, 32, 29, 34, 192, 0, 0, 0, 96, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 32, 29, 34, 192, 68, 66, 77, 255, 62, 60, 71, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 62, 60, 71, 255, 68, 66, 77, 255, 32, 29, 34, 192, 0, 0, 0, 96, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 32, 29, 34, 192, 67, 66, 76, 255, 62, 60, 70, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 60, 58, 68, 255, 62, 60, 70, 255, 67, 66, 76, 255, 32, 29, 34, 192, 0, 0, 0, 96, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 32, 29, 34, 192, 67, 64, 76, 255, 62, 59, 70, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 62, 59, 70, 255, 67, 64, 76, 255, 32, 29, 34, 192, 0, 0, 0, 96, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 29, 29, 34, 192, 67, 63, 76, 255, 61, 59, 69, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 59, 57, 67, 255, 61, 59, 69, 255, 67, 63, 76, 255, 29, 29, 34, 192, 0, 0, 0, 96, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 29, 29, 34, 192, 67, 63, 75, 255, 61, 58, 69, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 61, 58, 69, 255, 67, 63, 75, 255, 29, 29, 34, 192, 0, 0, 0, 96, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 29, 29, 34, 192, 66, 62, 75, 255, 60, 58, 68, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 58, 56, 66, 255, 60, 58, 68, 255, 66, 62, 75, 255, 29, 29, 34, 192, 0, 0, 0, 96, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 29, 29, 34, 192, 66, 62, 73, 255, 60, 58, 68, 255, 58, 55, 65, 255, 58, 55, 65, 255, 58, 55, 65, 255, 58, 55, 65, 255, 58, 55, 65, 255, 58, 55, 65, 255, 58, 55, 65, 255, 58, 55, 65, 255, 58, 55, 65, 255, 58, 55, 65, 255, 58, 55, 65, 255, 58, 55, 65, 255, 58, 55, 65, 255, 58, 55, 65, 255, 58, 55, 65, 255, 58, 55, 65, 255, 58, 55, 65, 255, 58, 55, 65, 255, 58, 55, 65, 255, 58, 55, 65, 255, 58, 55, 65, 255, 58, 55, 65, 255, 60, 58, 68, 255, 66, 62, 73, 255, 29, 29, 34, 192, 0, 0, 0, 96, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 29, 29, 34, 192, 64, 62, 72, 255, 59, 57, 67, 255, 57, 55, 65, 255, 57, 55, 65, 255, 57, 55, 65, 255, 57, 55, 65, 255, 57, 55, 65, 255, 57, 55, 65, 255, 57, 55, 65, 255, 57, 55, 65, 255, 57, 55, 65, 255, 57, 55, 65, 255, 57, 55, 65, 255, 57, 55, 65, 255, 57, 55, 65, 255, 57, 55, 65, 255, 57, 55, 65, 255, 57, 55, 65, 255, 57, 55, 65, 255, 57, 55, 65, 255, 57, 55, 65, 255, 57, 55, 65, 255, 57, 55, 65, 255, 57, 55, 65, 255, 59, 57, 67, 255, 64, 62, 72, 255, 29, 29, 34, 192, 0, 0, 0, 96, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 29, 29, 34, 192, 63, 62, 72, 255, 59, 57, 67, 255, 57, 55, 64, 255, 57, 55, 64, 255, 57, 55, 64, 255, 57, 55, 64, 255, 57, 55, 64, 255, 57, 55, 64, 255, 57, 55, 64, 255, 57, 55, 64, 255, 57, 55, 64, 255, 57, 55, 64, 255, 57, 55, 64, 255, 57, 55, 64, 255, 57, 55, 64, 255, 57, 55, 64, 255, 57, 55, 64, 255, 57, 55, 64, 255, 57, 55, 64, 255, 57, 55, 64, 255, 57, 55, 64, 255, 57, 55, 64, 255, 57, 55, 64, 255, 57, 55, 64, 255, 59, 57, 67, 255, 63, 62, 72, 255, 29, 29, 34, 192, 0, 0, 0, 96, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 29, 29, 34, 192, 63, 61, 72, 255, 58, 56, 66, 255, 56, 54, 64, 255, 56, 54, 64, 255, 56, 54, 64, 255, 56, 54, 64, 255, 56, 54, 64, 255, 56, 54, 64, 255, 56, 54, 64, 255, 56, 54, 64, 255, 56, 54, 64, 255, 56, 54, 64, 255, 56, 54, 64, 255, 56, 54, 64, 255, 56, 54, 64, 255, 56, 54, 64, 255, 56, 54, 64, 255, 56, 54, 64, 255, 56, 54, 64, 255, 56, 54, 64, 255, 56, 54, 64, 255, 56, 54, 64, 255, 56, 54, 64, 255, 56, 54, 64, 255, 58, 56, 66, 255, 63, 61, 72, 255, 29, 29, 34, 192, 0, 0, 0, 96, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 29, 29, 34, 192, 62, 61, 72, 255, 58, 56, 66, 255, 56, 54, 63, 255, 56, 54, 63, 255, 56, 54, 63, 255, 56, 54, 63, 255, 56, 54, 63, 255, 56, 54, 63, 255, 56, 54, 63, 255, 56, 54, 63, 255, 56, 54, 63, 255, 56, 54, 63, 255, 56, 54, 63, 255, 56, 54, 63, 255, 56, 54, 63, 255, 56, 54, 63, 255, 56, 54, 63, 255, 56, 54, 63, 255, 56, 54, 63, 255, 56, 54, 63, 255, 56, 54, 63, 255, 56, 54, 63, 255, 56, 54, 63, 255, 56, 54, 63, 255, 58, 56, 66, 255, 62, 61, 72, 255, 29, 29, 34, 192, 0, 0, 0, 96, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 29, 29, 32, 192, 62, 61, 71, 255, 58, 56, 65, 255, 56, 53, 63, 255, 56, 53, 63, 255, 56, 53, 63, 255, 56, 53, 63, 255, 56, 53, 63, 255, 56, 53, 63, 255, 56, 53, 63, 255, 56, 53, 63, 255, 56, 53, 63, 255, 56, 53, 63, 255, 56, 53, 63, 255, 56, 53, 63, 255, 56, 53, 63, 255, 56, 53, 63, 255, 56, 53, 63, 255, 56, 53, 63, 255, 56, 53, 63, 255, 56, 53, 63, 255, 56, 53, 63, 255, 56, 53, 63, 255, 56, 53, 63, 255, 56, 53, 63, 255, 58, 56, 65, 255, 62, 61, 71, 255, 29, 29, 32, 192, 0, 0, 0, 96, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 29, 26, 32, 192, 62, 60, 71, 255, 57, 55, 65, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 57, 55, 65, 255, 62, 60, 71, 255, 29, 26, 32, 192, 0, 0, 0, 96, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 29, 26, 32, 192, 62, 59, 70, 255, 57, 54, 64, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 55, 53, 62, 255, 57, 54, 64, 255, 62, 59, 70, 255, 29, 26, 32, 192, 0, 0, 0, 96, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 29, 26, 32, 192, 62, 59, 70, 255, 57, 54, 64, 255, 55, 52, 62, 255, 55, 52, 62, 255, 55, 52, 62, 255, 55, 52, 62, 255, 55, 52, 62, 255, 55, 52, 62, 255, 55, 52, 62, 255, 55, 52, 62, 255, 55, 52, 62, 255, 55, 52, 62, 255, 55, 52, 62, 255, 55, 52, 62, 255, 55, 52, 62, 255, 55, 52, 62, 255, 55, 52, 62, 255, 55, 52, 62, 255, 55, 52, 62, 255, 55, 52, 62, 255, 55, 52, 62, 255, 55, 52, 62, 255, 55, 52, 62, 255, 55, 52, 62, 255, 57, 54, 64, 255, 62, 59, 70, 255, 29, 26, 32, 192, 0, 0, 0, 96, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 29, 26, 32, 192, 61, 58, 70, 255, 56, 54, 64, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 56, 54, 64, 255, 61, 58, 70, 255, 29, 26, 32, 192, 0, 0, 0, 96, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 29, 26, 32, 192, 61, 58, 69, 255, 56, 53, 63, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 56, 53, 63, 255, 61, 58, 69, 255, 29, 26, 32, 192, 0, 0, 0, 96, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 29, 26, 32, 192, 61, 58, 68, 255, 56, 53, 63, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 54, 52, 61, 255, 56, 53, 63, 255, 61, 58, 68, 255, 29, 26, 32, 192, 0, 0, 0, 96, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 37, 0, 0, 0, 96, 29, 26, 32, 192, 61, 58, 68, 255, 55, 53, 63, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 55, 53, 63, 255, 61, 58, 68, 255, 29, 26, 32, 192, 0, 0, 0, 96, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 94, 0, 0, 0, 161, 66, 64, 75, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 66, 64, 75, 255, 0, 0, 0, 161, 0, 0, 0, 94, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 94, 0, 0, 0, 161, 66, 64, 75, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 66, 64, 75, 255, 0, 0, 0, 161, 0, 0, 0, 94, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 94, 0, 0, 0, 159, 66, 64, 75, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 66, 64, 75, 255, 0, 0, 0, 159, 0, 0, 0, 94, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 89, 0, 0, 0, 158, 66, 64, 75, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 66, 64, 75, 255, 0, 0, 0, 158, 0, 0, 0, 89, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 82, 0, 0, 0, 146, 67, 64, 76, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 67, 64, 76, 255, 0, 0, 0, 146, 0, 0, 0, 82, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 68, 0, 0, 0, 126, 70, 67, 79, 255, 57, 55, 64, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 53, 51, 60, 255, 57, 55, 64, 255, 70, 68, 79, 255, 0, 0, 0, 126, 0, 0, 0, 68, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 48, 0, 0, 0, 96, 50, 48, 56, 216, 70, 68, 79, 255, 67, 64, 76, 255, 66, 64, 75, 255, 66, 64, 75, 255, 66, 64, 75, 255, 66, 64, 75, 255, 66, 64, 75, 255, 66, 64, 75, 255, 66, 64, 75, 255, 66, 64, 75, 255, 66, 64, 75, 255, 66, 64, 75, 255, 66, 64, 75, 255, 66, 64, 75, 255, 66, 64, 75, 255, 66, 64, 75, 255, 66, 64, 75, 255, 66, 64, 75, 255, 66, 64, 75, 255, 66, 64, 75, 255, 66, 64, 75, 255, 66, 64, 75, 255, 67, 64, 76, 255, 70, 67, 79, 255, 50, 48, 56, 216, 0, 0, 0, 96, 0, 0, 0, 48, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 29, 0, 0, 0, 58, 0, 0, 0, 96, 0, 0, 0, 126, 0, 0, 0, 146, 0, 0, 0, 158, 0, 0, 0, 159, 0, 0, 0, 161, 0, 0, 0, 161, 0, 0, 0, 161, 0, 0, 0, 161, 0, 0, 0, 161, 0, 0, 0, 161, 0, 0, 0, 161, 0, 0, 0, 161, 0, 0, 0, 161, 0, 0, 0, 161, 0, 0, 0, 161, 0, 0, 0, 161, 0, 0, 0, 161, 0, 0, 0, 161, 0, 0, 0, 161, 0, 0, 0, 161, 0, 0, 0, 159, 0, 0, 0, 158, 0, 0, 0, 146, 0, 0, 0, 126, 0, 0, 0, 96, 0, 0, 0, 58, 0, 0, 0, 29, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 12, 0, 0, 0, 29, 0, 0, 0, 48, 0, 0, 0, 68, 0, 0, 0, 82, 0, 0, 0, 89, 0, 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, 89, 0, 0, 0, 82, 0, 0, 0, 68, 0, 0, 0, 48, 0, 0, 0, 29, 0, 0, 0, 12, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 9, 0, 0, 0, 15, 0, 0, 0, 21, 0, 0, 0, 29, 0, 0, 0, 32, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 32, 0, 0, 0, 29, 0, 0, 0, 21, 0, 0, 0, 15, 0, 0, 0, 9, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), +"format": "RGBA8", +"height": 70, +"mipmaps": false, +"width": 42 +} + +[sub_resource type="ImageTexture" id=583] +flags = 4 +flags = 4 +image = SubResource( 751 ) +size = Vector2( 42, 70 ) + +[sub_resource type="StyleBoxTexture" id=374] +texture = SubResource( 583 ) +region_rect = Rect2( 0, 0, 42, 70 ) +margin_left = 10.0 +margin_right = 10.0 +margin_top = 26.0 +margin_bottom = 8.0 +expand_margin_left = 8.0 +expand_margin_right = 8.0 +expand_margin_top = 24.0 +expand_margin_bottom = 6.0 + +[sub_resource type="DynamicFont" id=647] +use_mipmaps = true +use_filter = true +font_data = ExtResource( 1 ) + +[resource] +default_font = SubResource( 647 ) +Button/colors/font_color = Color( 0.88, 0.88, 0.88, 1 ) +Button/colors/font_color_disabled = Color( 0.9, 0.9, 0.9, 0.2 ) +Button/colors/font_color_focus = Color( 0.94, 0.94, 0.94, 1 ) +Button/colors/font_color_hover = Color( 0.94, 0.94, 0.94, 1 ) +Button/colors/font_color_pressed = Color( 1, 1, 1, 1 ) +Button/constants/hseparation = 2 +Button/styles/disabled = SubResource( 331 ) +Button/styles/focus = SubResource( 334 ) +Button/styles/hover = SubResource( 337 ) +Button/styles/normal = SubResource( 340 ) +Button/styles/pressed = SubResource( 343 ) +CheckBox/colors/font_color = Color( 0.88, 0.88, 0.88, 1 ) +CheckBox/colors/font_color_disabled = Color( 0.9, 0.9, 0.9, 0.2 ) +CheckBox/colors/font_color_focus = Color( 0.94, 0.94, 0.94, 1 ) +CheckBox/colors/font_color_hover = Color( 0.94, 0.94, 0.94, 1 ) +CheckBox/colors/font_color_hover_pressed = Color( 1, 1, 1, 1 ) +CheckBox/colors/font_color_pressed = Color( 1, 1, 1, 1 ) +CheckBox/constants/check_vadjust = 0 +CheckBox/constants/hseparation = 4 +CheckBox/icons/checked = SubResource( 605 ) +CheckBox/icons/checked_disabled = SubResource( 607 ) +CheckBox/icons/radio_checked = SubResource( 609 ) +CheckBox/icons/radio_checked_disabled = SubResource( 611 ) +CheckBox/icons/radio_unchecked = SubResource( 613 ) +CheckBox/icons/radio_unchecked_disabled = SubResource( 615 ) +CheckBox/icons/unchecked = SubResource( 617 ) +CheckBox/icons/unchecked_disabled = SubResource( 619 ) +CheckBox/styles/disabled = SubResource( 620 ) +CheckBox/styles/focus = SubResource( 404 ) +CheckBox/styles/hover = SubResource( 620 ) +CheckBox/styles/hover_pressed = SubResource( 620 ) +CheckBox/styles/normal = SubResource( 620 ) +CheckBox/styles/pressed = SubResource( 620 ) +FileDialog/colors/file_icon_modulate = Color( 1, 1, 1, 1 ) +FileDialog/colors/files_disabled = Color( 0, 0, 0, 0.7 ) +FileDialog/colors/folder_icon_modulate = Color( 1, 1, 1, 1 ) +FileDialog/icons/file = SubResource( 590 ) +FileDialog/icons/folder = SubResource( 592 ) +FileDialog/icons/parent_folder = SubResource( 594 ) +FileDialog/icons/reload = SubResource( 596 ) +FileDialog/icons/toggle_hidden = SubResource( 598 ) +GraphEdit/colors/activity = Color( 1, 1, 1, 1 ) +GraphEdit/colors/grid_major = Color( 1, 1, 1, 0.2 ) +GraphEdit/colors/grid_minor = Color( 1, 1, 1, 0.05 ) +GraphEdit/colors/selection_fill = Color( 1, 1, 1, 0.3 ) +GraphEdit/colors/selection_stroke = Color( 1, 1, 1, 0.8 ) +GraphEdit/constants/bezier_len_neg = 160 +GraphEdit/constants/bezier_len_pos = 80 +GraphEdit/constants/port_grab_distance_horizontal = 24 +GraphEdit/constants/port_grab_distance_vertical = 6 +GraphEdit/icons/minimap = SubResource( 332 ) +GraphEdit/icons/minus = SubResource( 452 ) +GraphEdit/icons/more = SubResource( 454 ) +GraphEdit/icons/reset = SubResource( 338 ) +GraphEdit/icons/snap = SubResource( 457 ) +GraphEdit/styles/bg = SubResource( 460 ) +GraphEditMinimap/colors/resizer_color = Color( 1, 1, 1, 0.85 ) +GraphEditMinimap/icons/resizer = SubResource( 674 ) +GraphEditMinimap/styles/bg = SubResource( 675 ) +GraphEditMinimap/styles/camera = SubResource( 676 ) +GraphEditMinimap/styles/node = SubResource( 677 ) +GraphNode/colors/close_color = Color( 0, 0, 0, 1 ) +GraphNode/colors/resizer_color = Color( 0, 0, 0, 1 ) +GraphNode/colors/title_color = Color( 0, 0, 0, 1 ) +GraphNode/constants/close_offset = 18 +GraphNode/constants/port_offset = 3 +GraphNode/constants/separation = 1 +GraphNode/constants/title_offset = 20 +GraphNode/icons/close = SubResource( 354 ) +GraphNode/icons/port = SubResource( 356 ) +GraphNode/icons/resizer = SubResource( 358 ) +GraphNode/styles/breakpoint = SubResource( 361 ) +GraphNode/styles/comment = SubResource( 364 ) +GraphNode/styles/commentfocus = SubResource( 367 ) +GraphNode/styles/defaultfocus = SubResource( 370 ) +GraphNode/styles/defaultframe = SubResource( 373 ) +GraphNode/styles/frame = SubResource( 376 ) +GraphNode/styles/position = SubResource( 379 ) +GraphNode/styles/selectedframe = SubResource( 382 ) +HScrollBar/icons/decrement = SubResource( 424 ) +HScrollBar/icons/decrement_highlight = SubResource( 424 ) +HScrollBar/icons/decrement_pressed = SubResource( 424 ) +HScrollBar/icons/increment = SubResource( 424 ) +HScrollBar/icons/increment_highlight = SubResource( 424 ) +HScrollBar/icons/increment_pressed = SubResource( 424 ) +HScrollBar/styles/grabber = SubResource( 427 ) +HScrollBar/styles/grabber_highlight = SubResource( 430 ) +HScrollBar/styles/grabber_pressed = SubResource( 433 ) +HScrollBar/styles/scroll = SubResource( 436 ) +HScrollBar/styles/scroll_focus = SubResource( 437 ) +LineEdit/colors/clear_button_color = Color( 0.88, 0.88, 0.88, 1 ) +LineEdit/colors/clear_button_color_pressed = Color( 1, 1, 1, 1 ) +LineEdit/colors/cursor_color = Color( 0.94, 0.94, 0.94, 1 ) +LineEdit/colors/font_color = Color( 0.88, 0.88, 0.88, 1 ) +LineEdit/colors/font_color_selected = Color( 0, 0, 0, 1 ) +LineEdit/colors/font_color_uneditable = Color( 0.88, 0.88, 0.88, 0.5 ) +LineEdit/colors/selection_color = Color( 0.49, 0.49, 0.49, 1 ) +LineEdit/constants/minimum_spaces = 12 +LineEdit/icons/clear = SubResource( 401 ) +LineEdit/styles/focus = SubResource( 404 ) +LineEdit/styles/normal = SubResource( 407 ) +LineEdit/styles/read_only = SubResource( 410 ) +Panel/styles/panel = SubResource( 365 ) +TextEdit/colors/background_color = Color( 0, 0, 0, 0 ) +TextEdit/colors/bookmark_color = Color( 0.08, 0.49, 0.98, 1 ) +TextEdit/colors/brace_mismatch_color = Color( 1, 0.2, 0.2, 1 ) +TextEdit/colors/breakpoint_color = Color( 0.8, 0.8, 0.4, 0.2 ) +TextEdit/colors/caret_background_color = Color( 0, 0, 0, 1 ) +TextEdit/colors/caret_color = Color( 0.88, 0.88, 0.88, 1 ) +TextEdit/colors/code_folding_color = Color( 0.8, 0.8, 0.8, 0.8 ) +TextEdit/colors/completion_background_color = Color( 0.17, 0.16, 0.2, 1 ) +TextEdit/colors/completion_existing_color = Color( 0.87, 0.87, 0.87, 0.13 ) +TextEdit/colors/completion_font_color = Color( 0.67, 0.67, 0.67, 1 ) +TextEdit/colors/completion_scroll_color = Color( 1, 1, 1, 1 ) +TextEdit/colors/completion_selected_color = Color( 0.26, 0.26, 0.27, 1 ) +TextEdit/colors/current_line_color = Color( 0.25, 0.25, 0.26, 0.8 ) +TextEdit/colors/executing_line_color = Color( 0.2, 0.8, 0.2, 0.4 ) +TextEdit/colors/font_color = Color( 0.88, 0.88, 0.88, 1 ) +TextEdit/colors/font_color_readonly = Color( 0.88, 0.88, 0.88, 0.5 ) +TextEdit/colors/font_color_selected = Color( 0, 0, 0, 1 ) +TextEdit/colors/function_color = Color( 0.4, 0.64, 0.81, 1 ) +TextEdit/colors/line_number_color = Color( 0.67, 0.67, 0.67, 0.4 ) +TextEdit/colors/mark_color = Color( 1, 0.4, 0.4, 0.4 ) +TextEdit/colors/member_variable_color = Color( 0.9, 0.31, 0.35, 1 ) +TextEdit/colors/number_color = Color( 0.92, 0.58, 0.2, 1 ) +TextEdit/colors/safe_line_number_color = Color( 0.67, 0.78, 0.67, 0.6 ) +TextEdit/colors/selection_color = Color( 0.49, 0.49, 0.49, 1 ) +TextEdit/colors/symbol_color = Color( 0.94, 0.94, 0.94, 1 ) +TextEdit/colors/word_highlighted_color = Color( 0.8, 0.9, 0.9, 0.15 ) +TextEdit/constants/completion_lines = 7 +TextEdit/constants/completion_max_width = 50 +TextEdit/constants/completion_scroll_width = 3 +TextEdit/constants/line_spacing = 4 +TextEdit/fonts/font = SubResource( 742 ) +TextEdit/icons/fold = SubResource( 505 ) +TextEdit/icons/folded = SubResource( 507 ) +TextEdit/icons/space = SubResource( 509 ) +TextEdit/icons/tab = SubResource( 511 ) +TextEdit/styles/completion = SubResource( 512 ) +TextEdit/styles/focus = SubResource( 404 ) +TextEdit/styles/normal = SubResource( 514 ) +TextEdit/styles/read_only = SubResource( 517 ) +TooltipLabel/colors/font_color = Color( 0, 0, 0, 1 ) +TooltipLabel/colors/font_color_shadow = Color( 0, 0, 0, 0.1 ) +TooltipLabel/constants/shadow_offset_x = 1 +TooltipLabel/constants/shadow_offset_y = 1 +TooltipPanel/styles/panel = SubResource( 643 ) +VScrollBar/icons/decrement = SubResource( 424 ) +VScrollBar/icons/decrement_highlight = SubResource( 424 ) +VScrollBar/icons/decrement_pressed = SubResource( 424 ) +VScrollBar/icons/increment = SubResource( 424 ) +VScrollBar/icons/increment_highlight = SubResource( 424 ) +VScrollBar/icons/increment_pressed = SubResource( 424 ) +VScrollBar/styles/grabber = SubResource( 439 ) +VScrollBar/styles/grabber_highlight = SubResource( 440 ) +VScrollBar/styles/grabber_pressed = SubResource( 441 ) +VScrollBar/styles/scroll = SubResource( 442 ) +VScrollBar/styles/scroll_focus = SubResource( 443 ) +WindowDialog/colors/title_color = Color( 0, 0, 0, 1 ) +WindowDialog/constants/close_h_ofs = 18 +WindowDialog/constants/close_v_ofs = 18 +WindowDialog/constants/scaleborder_size = 4 +WindowDialog/constants/title_height = 20 +WindowDialog/icons/close = SubResource( 579 ) +WindowDialog/icons/close_highlight = SubResource( 581 ) +WindowDialog/styles/panel = SubResource( 374 ) diff --git a/addons/Wol/font/LICENSE - VictorMono.txt b/addons/Wol/font/LICENSE - VictorMono.txt new file mode 100644 index 0000000..fcfa0ea --- /dev/null +++ b/addons/Wol/font/LICENSE - VictorMono.txt @@ -0,0 +1,93 @@ +Copyright (c) 2021, Rune Bjørnerås (https://github.com/rubjo) + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. \ No newline at end of file diff --git a/addons/Wol/font/VictorMono-Bold.otf b/addons/Wol/font/VictorMono-Bold.otf new file mode 100644 index 0000000..74c9cf6 Binary files /dev/null and b/addons/Wol/font/VictorMono-Bold.otf differ diff --git a/addons/Wol/font/VictorMono-BoldItalic.otf b/addons/Wol/font/VictorMono-BoldItalic.otf new file mode 100644 index 0000000..73c80bd Binary files /dev/null and b/addons/Wol/font/VictorMono-BoldItalic.otf differ diff --git a/addons/Wol/font/VictorMono-BoldOblique.otf b/addons/Wol/font/VictorMono-BoldOblique.otf new file mode 100644 index 0000000..6677406 Binary files /dev/null and b/addons/Wol/font/VictorMono-BoldOblique.otf differ diff --git a/addons/Wol/font/VictorMono-ExtraLight.otf b/addons/Wol/font/VictorMono-ExtraLight.otf new file mode 100644 index 0000000..c5576e8 Binary files /dev/null and b/addons/Wol/font/VictorMono-ExtraLight.otf differ diff --git a/addons/Wol/font/VictorMono-ExtraLightItalic.otf b/addons/Wol/font/VictorMono-ExtraLightItalic.otf new file mode 100644 index 0000000..a51f409 Binary files /dev/null and b/addons/Wol/font/VictorMono-ExtraLightItalic.otf differ diff --git a/addons/Wol/font/VictorMono-ExtraLightOblique.otf b/addons/Wol/font/VictorMono-ExtraLightOblique.otf new file mode 100644 index 0000000..4e6eadf Binary files /dev/null and b/addons/Wol/font/VictorMono-ExtraLightOblique.otf differ diff --git a/addons/Wol/font/VictorMono-Italic.otf b/addons/Wol/font/VictorMono-Italic.otf new file mode 100644 index 0000000..a06f85b Binary files /dev/null and b/addons/Wol/font/VictorMono-Italic.otf differ diff --git a/addons/Wol/font/VictorMono-Light.otf b/addons/Wol/font/VictorMono-Light.otf new file mode 100644 index 0000000..3fec9dd Binary files /dev/null and b/addons/Wol/font/VictorMono-Light.otf differ diff --git a/addons/Wol/font/VictorMono-LightItalic.otf b/addons/Wol/font/VictorMono-LightItalic.otf new file mode 100644 index 0000000..4a65475 Binary files /dev/null and b/addons/Wol/font/VictorMono-LightItalic.otf differ diff --git a/addons/Wol/font/VictorMono-LightOblique.otf b/addons/Wol/font/VictorMono-LightOblique.otf new file mode 100644 index 0000000..1c99257 Binary files /dev/null and b/addons/Wol/font/VictorMono-LightOblique.otf differ diff --git a/addons/Wol/font/VictorMono-Medium.otf b/addons/Wol/font/VictorMono-Medium.otf new file mode 100644 index 0000000..c277f68 Binary files /dev/null and b/addons/Wol/font/VictorMono-Medium.otf differ diff --git a/addons/Wol/font/VictorMono-MediumItalic.otf b/addons/Wol/font/VictorMono-MediumItalic.otf new file mode 100644 index 0000000..e815563 Binary files /dev/null and b/addons/Wol/font/VictorMono-MediumItalic.otf differ diff --git a/addons/Wol/font/VictorMono-MediumOblique.otf b/addons/Wol/font/VictorMono-MediumOblique.otf new file mode 100644 index 0000000..2da348a Binary files /dev/null and b/addons/Wol/font/VictorMono-MediumOblique.otf differ diff --git a/addons/Wol/font/VictorMono-Oblique.otf b/addons/Wol/font/VictorMono-Oblique.otf new file mode 100644 index 0000000..1fa60b4 Binary files /dev/null and b/addons/Wol/font/VictorMono-Oblique.otf differ diff --git a/addons/Wol/font/VictorMono-Regular.otf b/addons/Wol/font/VictorMono-Regular.otf new file mode 100644 index 0000000..a9e0073 Binary files /dev/null and b/addons/Wol/font/VictorMono-Regular.otf differ diff --git a/addons/Wol/font/VictorMono-SemiBold.otf b/addons/Wol/font/VictorMono-SemiBold.otf new file mode 100644 index 0000000..72db858 Binary files /dev/null and b/addons/Wol/font/VictorMono-SemiBold.otf differ diff --git a/addons/Wol/font/VictorMono-SemiBoldItalic.otf b/addons/Wol/font/VictorMono-SemiBoldItalic.otf new file mode 100644 index 0000000..8e2e681 Binary files /dev/null and b/addons/Wol/font/VictorMono-SemiBoldItalic.otf differ diff --git a/addons/Wol/font/VictorMono-SemiBoldOblique.otf b/addons/Wol/font/VictorMono-SemiBoldOblique.otf new file mode 100644 index 0000000..d08074f Binary files /dev/null and b/addons/Wol/font/VictorMono-SemiBoldOblique.otf differ diff --git a/addons/Wol/font/VictorMono-Thin.otf b/addons/Wol/font/VictorMono-Thin.otf new file mode 100644 index 0000000..5e8e578 Binary files /dev/null and b/addons/Wol/font/VictorMono-Thin.otf differ diff --git a/addons/Wol/font/VictorMono-ThinItalic.otf b/addons/Wol/font/VictorMono-ThinItalic.otf new file mode 100644 index 0000000..9a91041 Binary files /dev/null and b/addons/Wol/font/VictorMono-ThinItalic.otf differ diff --git a/addons/Wol/font/VictorMono-ThinOblique.otf b/addons/Wol/font/VictorMono-ThinOblique.otf new file mode 100644 index 0000000..05ecce6 Binary files /dev/null and b/addons/Wol/font/VictorMono-ThinOblique.otf differ diff --git a/addons/Wol/font/VictorMonoAll/EOT/VictorMono-Bold.eot b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-Bold.eot new file mode 100644 index 0000000..c35210b Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-Bold.eot differ diff --git a/addons/Wol/font/VictorMonoAll/EOT/VictorMono-BoldItalic.eot b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-BoldItalic.eot new file mode 100644 index 0000000..27bd930 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-BoldItalic.eot differ diff --git a/addons/Wol/font/VictorMonoAll/EOT/VictorMono-BoldOblique.eot b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-BoldOblique.eot new file mode 100644 index 0000000..8f2a169 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-BoldOblique.eot differ diff --git a/addons/Wol/font/VictorMonoAll/EOT/VictorMono-ExtraLight.eot b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-ExtraLight.eot new file mode 100644 index 0000000..f0b1d6e Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-ExtraLight.eot differ diff --git a/addons/Wol/font/VictorMonoAll/EOT/VictorMono-ExtraLightItalic.eot b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-ExtraLightItalic.eot new file mode 100644 index 0000000..9341193 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-ExtraLightItalic.eot differ diff --git a/addons/Wol/font/VictorMonoAll/EOT/VictorMono-ExtraLightOblique.eot b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-ExtraLightOblique.eot new file mode 100644 index 0000000..d58eb2f Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-ExtraLightOblique.eot differ diff --git a/addons/Wol/font/VictorMonoAll/EOT/VictorMono-Italic.eot b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-Italic.eot new file mode 100644 index 0000000..3c47c74 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-Italic.eot differ diff --git a/addons/Wol/font/VictorMonoAll/EOT/VictorMono-Light.eot b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-Light.eot new file mode 100644 index 0000000..03bd40b Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-Light.eot differ diff --git a/addons/Wol/font/VictorMonoAll/EOT/VictorMono-LightItalic.eot b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-LightItalic.eot new file mode 100644 index 0000000..59d0964 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-LightItalic.eot differ diff --git a/addons/Wol/font/VictorMonoAll/EOT/VictorMono-LightOblique.eot b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-LightOblique.eot new file mode 100644 index 0000000..183bc6b Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-LightOblique.eot differ diff --git a/addons/Wol/font/VictorMonoAll/EOT/VictorMono-Medium.eot b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-Medium.eot new file mode 100644 index 0000000..79d85ea Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-Medium.eot differ diff --git a/addons/Wol/font/VictorMonoAll/EOT/VictorMono-MediumItalic.eot b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-MediumItalic.eot new file mode 100644 index 0000000..aded32e Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-MediumItalic.eot differ diff --git a/addons/Wol/font/VictorMonoAll/EOT/VictorMono-MediumOblique.eot b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-MediumOblique.eot new file mode 100644 index 0000000..1ed6029 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-MediumOblique.eot differ diff --git a/addons/Wol/font/VictorMonoAll/EOT/VictorMono-Oblique.eot b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-Oblique.eot new file mode 100644 index 0000000..0e95dca Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-Oblique.eot differ diff --git a/addons/Wol/font/VictorMonoAll/EOT/VictorMono-Regular.eot b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-Regular.eot new file mode 100644 index 0000000..10e3461 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-Regular.eot differ diff --git a/addons/Wol/font/VictorMonoAll/EOT/VictorMono-SemiBold.eot b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-SemiBold.eot new file mode 100644 index 0000000..8669721 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-SemiBold.eot differ diff --git a/addons/Wol/font/VictorMonoAll/EOT/VictorMono-SemiBoldItalic.eot b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-SemiBoldItalic.eot new file mode 100644 index 0000000..acad2ad Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-SemiBoldItalic.eot differ diff --git a/addons/Wol/font/VictorMonoAll/EOT/VictorMono-SemiBoldOblique.eot b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-SemiBoldOblique.eot new file mode 100644 index 0000000..07f1a18 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-SemiBoldOblique.eot differ diff --git a/addons/Wol/font/VictorMonoAll/EOT/VictorMono-Thin.eot b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-Thin.eot new file mode 100644 index 0000000..acdbcec Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-Thin.eot differ diff --git a/addons/Wol/font/VictorMonoAll/EOT/VictorMono-ThinItalic.eot b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-ThinItalic.eot new file mode 100644 index 0000000..c9e3c7c Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-ThinItalic.eot differ diff --git a/addons/Wol/font/VictorMonoAll/EOT/VictorMono-ThinOblique.eot b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-ThinOblique.eot new file mode 100644 index 0000000..8762203 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/EOT/VictorMono-ThinOblique.eot differ diff --git a/addons/Wol/font/VictorMonoAll/TTF/VictorMono-Bold.ttf b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-Bold.ttf new file mode 100644 index 0000000..3fe3cb9 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-Bold.ttf differ diff --git a/addons/Wol/font/VictorMonoAll/TTF/VictorMono-BoldItalic.ttf b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-BoldItalic.ttf new file mode 100644 index 0000000..6b7b9d9 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-BoldItalic.ttf differ diff --git a/addons/Wol/font/VictorMonoAll/TTF/VictorMono-BoldOblique.ttf b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-BoldOblique.ttf new file mode 100644 index 0000000..87468b3 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-BoldOblique.ttf differ diff --git a/addons/Wol/font/VictorMonoAll/TTF/VictorMono-ExtraLight.ttf b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-ExtraLight.ttf new file mode 100644 index 0000000..9f4def0 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-ExtraLight.ttf differ diff --git a/addons/Wol/font/VictorMonoAll/TTF/VictorMono-ExtraLightItalic.ttf b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-ExtraLightItalic.ttf new file mode 100644 index 0000000..277680f Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-ExtraLightItalic.ttf differ diff --git a/addons/Wol/font/VictorMonoAll/TTF/VictorMono-ExtraLightOblique.ttf b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-ExtraLightOblique.ttf new file mode 100644 index 0000000..2e1138c Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-ExtraLightOblique.ttf differ diff --git a/addons/Wol/font/VictorMonoAll/TTF/VictorMono-Italic.ttf b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-Italic.ttf new file mode 100644 index 0000000..d142448 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-Italic.ttf differ diff --git a/addons/Wol/font/VictorMonoAll/TTF/VictorMono-Light.ttf b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-Light.ttf new file mode 100644 index 0000000..adfb4be Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-Light.ttf differ diff --git a/addons/Wol/font/VictorMonoAll/TTF/VictorMono-LightItalic.ttf b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-LightItalic.ttf new file mode 100644 index 0000000..53bf9ec Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-LightItalic.ttf differ diff --git a/addons/Wol/font/VictorMonoAll/TTF/VictorMono-LightOblique.ttf b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-LightOblique.ttf new file mode 100644 index 0000000..9d854a8 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-LightOblique.ttf differ diff --git a/addons/Wol/font/VictorMonoAll/TTF/VictorMono-Medium.ttf b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-Medium.ttf new file mode 100644 index 0000000..a13fbe0 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-Medium.ttf differ diff --git a/addons/Wol/font/VictorMonoAll/TTF/VictorMono-MediumItalic.ttf b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-MediumItalic.ttf new file mode 100644 index 0000000..77efe11 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-MediumItalic.ttf differ diff --git a/addons/Wol/font/VictorMonoAll/TTF/VictorMono-MediumOblique.ttf b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-MediumOblique.ttf new file mode 100644 index 0000000..56201aa Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-MediumOblique.ttf differ diff --git a/addons/Wol/font/VictorMonoAll/TTF/VictorMono-Oblique.ttf b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-Oblique.ttf new file mode 100644 index 0000000..2bbe8c5 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-Oblique.ttf differ diff --git a/addons/Wol/font/VictorMonoAll/TTF/VictorMono-Regular.ttf b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-Regular.ttf new file mode 100644 index 0000000..2f112a0 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-Regular.ttf differ diff --git a/addons/Wol/font/VictorMonoAll/TTF/VictorMono-SemiBold.ttf b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-SemiBold.ttf new file mode 100644 index 0000000..ca5b954 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-SemiBold.ttf differ diff --git a/addons/Wol/font/VictorMonoAll/TTF/VictorMono-SemiBoldItalic.ttf b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-SemiBoldItalic.ttf new file mode 100644 index 0000000..0a8470b Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-SemiBoldItalic.ttf differ diff --git a/addons/Wol/font/VictorMonoAll/TTF/VictorMono-SemiBoldOblique.ttf b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-SemiBoldOblique.ttf new file mode 100644 index 0000000..fefd7f8 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-SemiBoldOblique.ttf differ diff --git a/addons/Wol/font/VictorMonoAll/TTF/VictorMono-Thin.ttf b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-Thin.ttf new file mode 100644 index 0000000..96b35e2 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-Thin.ttf differ diff --git a/addons/Wol/font/VictorMonoAll/TTF/VictorMono-ThinItalic.ttf b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-ThinItalic.ttf new file mode 100644 index 0000000..ba2a1e1 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-ThinItalic.ttf differ diff --git a/addons/Wol/font/VictorMonoAll/TTF/VictorMono-ThinOblique.ttf b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-ThinOblique.ttf new file mode 100644 index 0000000..856960c Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/TTF/VictorMono-ThinOblique.ttf differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-Bold.woff b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-Bold.woff new file mode 100644 index 0000000..d70debe Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-Bold.woff differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-BoldItalic.woff b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-BoldItalic.woff new file mode 100644 index 0000000..f6cc8a1 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-BoldItalic.woff differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-BoldOblique.woff b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-BoldOblique.woff new file mode 100644 index 0000000..5c14e32 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-BoldOblique.woff differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-ExtraLight.woff b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-ExtraLight.woff new file mode 100644 index 0000000..96f8a32 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-ExtraLight.woff differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-ExtraLightItalic.woff b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-ExtraLightItalic.woff new file mode 100644 index 0000000..09b9859 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-ExtraLightItalic.woff differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-ExtraLightOblique.woff b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-ExtraLightOblique.woff new file mode 100644 index 0000000..c00049e Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-ExtraLightOblique.woff differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-Italic.woff b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-Italic.woff new file mode 100644 index 0000000..0c6c02a Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-Italic.woff differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-Light.woff b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-Light.woff new file mode 100644 index 0000000..1ff4341 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-Light.woff differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-LightItalic.woff b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-LightItalic.woff new file mode 100644 index 0000000..6acba6f Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-LightItalic.woff differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-LightOblique.woff b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-LightOblique.woff new file mode 100644 index 0000000..3439499 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-LightOblique.woff differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-Medium.woff b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-Medium.woff new file mode 100644 index 0000000..cfaf305 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-Medium.woff differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-MediumItalic.woff b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-MediumItalic.woff new file mode 100644 index 0000000..edf6eeb Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-MediumItalic.woff differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-MediumOblique.woff b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-MediumOblique.woff new file mode 100644 index 0000000..b0b7ac2 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-MediumOblique.woff differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-Oblique.woff b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-Oblique.woff new file mode 100644 index 0000000..78659ca Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-Oblique.woff differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-Regular.woff b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-Regular.woff new file mode 100644 index 0000000..50ad9dc Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-Regular.woff differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-SemiBold.woff b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-SemiBold.woff new file mode 100644 index 0000000..55838c6 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-SemiBold.woff differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-SemiBoldItalic.woff b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-SemiBoldItalic.woff new file mode 100644 index 0000000..8923c65 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-SemiBoldItalic.woff differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-SemiBoldOblique.woff b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-SemiBoldOblique.woff new file mode 100644 index 0000000..30ef908 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-SemiBoldOblique.woff differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-Thin.woff b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-Thin.woff new file mode 100644 index 0000000..e469cf0 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-Thin.woff differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-ThinItalic.woff b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-ThinItalic.woff new file mode 100644 index 0000000..dcf367b Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-ThinItalic.woff differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-ThinOblique.woff b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-ThinOblique.woff new file mode 100644 index 0000000..c7ffdf2 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF/VictorMono-ThinOblique.woff differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-Bold.woff2 b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-Bold.woff2 new file mode 100644 index 0000000..c4891fb Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-Bold.woff2 differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-BoldItalic.woff2 b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-BoldItalic.woff2 new file mode 100644 index 0000000..e4e12b7 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-BoldItalic.woff2 differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-BoldOblique.woff2 b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-BoldOblique.woff2 new file mode 100644 index 0000000..8e304ff Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-BoldOblique.woff2 differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-ExtraLight.woff2 b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-ExtraLight.woff2 new file mode 100644 index 0000000..3939a7e Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-ExtraLight.woff2 differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-ExtraLightItalic.woff2 b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-ExtraLightItalic.woff2 new file mode 100644 index 0000000..710d076 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-ExtraLightItalic.woff2 differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-ExtraLightOblique.woff2 b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-ExtraLightOblique.woff2 new file mode 100644 index 0000000..26c4b33 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-ExtraLightOblique.woff2 differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-Italic.woff2 b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-Italic.woff2 new file mode 100644 index 0000000..0c0cc8e Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-Italic.woff2 differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-Light.woff2 b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-Light.woff2 new file mode 100644 index 0000000..bd03450 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-Light.woff2 differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-LightItalic.woff2 b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-LightItalic.woff2 new file mode 100644 index 0000000..5fc532e Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-LightItalic.woff2 differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-LightOblique.woff2 b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-LightOblique.woff2 new file mode 100644 index 0000000..b584024 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-LightOblique.woff2 differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-Medium.woff2 b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-Medium.woff2 new file mode 100644 index 0000000..1922a43 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-Medium.woff2 differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-MediumItalic.woff2 b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-MediumItalic.woff2 new file mode 100644 index 0000000..232f743 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-MediumItalic.woff2 differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-MediumOblique.woff2 b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-MediumOblique.woff2 new file mode 100644 index 0000000..1f58899 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-MediumOblique.woff2 differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-Oblique.woff2 b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-Oblique.woff2 new file mode 100644 index 0000000..59774ab Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-Oblique.woff2 differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-Regular.woff2 b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-Regular.woff2 new file mode 100644 index 0000000..c247cc8 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-Regular.woff2 differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-SemiBold.woff2 b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-SemiBold.woff2 new file mode 100644 index 0000000..169ab11 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-SemiBold.woff2 differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-SemiBoldItalic.woff2 b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-SemiBoldItalic.woff2 new file mode 100644 index 0000000..b052def Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-SemiBoldItalic.woff2 differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-SemiBoldOblique.woff2 b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-SemiBoldOblique.woff2 new file mode 100644 index 0000000..3f5a702 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-SemiBoldOblique.woff2 differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-Thin.woff2 b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-Thin.woff2 new file mode 100644 index 0000000..9098724 Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-Thin.woff2 differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-ThinItalic.woff2 b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-ThinItalic.woff2 new file mode 100644 index 0000000..40fccea Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-ThinItalic.woff2 differ diff --git a/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-ThinOblique.woff2 b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-ThinOblique.woff2 new file mode 100644 index 0000000..d07789e Binary files /dev/null and b/addons/Wol/font/VictorMonoAll/WOFF2/VictorMono-ThinOblique.woff2 differ diff --git a/dialogue.wol b/dialogue.wol index d6006c6..2aaa468 100644 --- a/dialogue.wol +++ b/dialogue.wol @@ -1,3 +1,15 @@ +title: Talk +tags: +colorID: +position: 800, 400 +--- +Narrator: So how are you really? +You: I'm good! +Narrator: Do you want to continue talking? +-> Yes + [[Start]] +-> No +=== title: TheStore tags: colorID: @@ -55,16 +67,4 @@ Narrator: You wanna go somewhere? [[Start]] -> Lets stay here and talk [[Talk]] -=== -title: Talk -tags: -colorID: -position: 800, 400 ---- -Narrator: So how are you really? -You: I'm good! -Narrator: Do you want to continue talking? --> Yes - [[Start]] --> No === \ No newline at end of file diff --git a/export_presets.cfg b/export_presets.cfg new file mode 100644 index 0000000..8d42d97 --- /dev/null +++ b/export_presets.cfg @@ -0,0 +1,99 @@ +[preset.0] + +name="Mac OSX" +platform="Mac OSX" +runnable=true +custom_features="" +export_filter="all_resources" +include_filter="" +exclude_filter="" +export_path="export/osx/Wol.dmg" +script_export_mode=1 +script_encryption_key="" + +[preset.0.options] + +custom_template/debug="" +custom_template/release="" +application/name="Wol Editor" +application/info="Wol Editor: a editor for Yarn and Wol files" +application/icon="" +application/identifier="works.dingelstad.bram.woleditor" +application/signature="" +application/app_category="Developer-tools" +application/short_version="1.0" +application/version="1.0" +application/copyright="© Bram Dingelstad" +display/high_res=true +privacy/camera_usage_description="" +privacy/microphone_usage_description="" +codesign/enable=false +codesign/identity="" +codesign/timestamp=false +codesign/hardened_runtime=false +codesign/replace_existing_signature=false +codesign/entitlements/custom_file="" +codesign/entitlements/allow_jit_code_execution=false +codesign/entitlements/allow_unsigned_executable_memory=false +codesign/entitlements/allow_dyld_environment_variables=false +codesign/entitlements/disable_library_validation=false +codesign/entitlements/audio_input=false +codesign/entitlements/camera=false +codesign/entitlements/location=false +codesign/entitlements/address_book=false +codesign/entitlements/calendars=false +codesign/entitlements/photos_library=false +codesign/entitlements/apple_events=false +codesign/entitlements/debugging=false +codesign/entitlements/app_sandbox/enabled=false +codesign/entitlements/app_sandbox/network_server=false +codesign/entitlements/app_sandbox/network_client=false +codesign/entitlements/app_sandbox/device_usb=false +codesign/entitlements/app_sandbox/device_bluetooth=false +codesign/entitlements/app_sandbox/files_downloads=0 +codesign/entitlements/app_sandbox/files_pictures=0 +codesign/entitlements/app_sandbox/files_music=0 +codesign/entitlements/app_sandbox/files_movies=0 +codesign/custom_options=PoolStringArray( ) +notarization/enable=false +notarization/apple_id_name="" +notarization/apple_id_password="" +notarization/apple_team_id="" +texture_format/s3tc=true +texture_format/etc=false +texture_format/etc2=false + +[preset.1] + +name="HTML5" +platform="HTML5" +runnable=true +custom_features="" +export_filter="all_resources" +include_filter="" +exclude_filter="" +export_path="export/web/index.html" +script_export_mode=1 +script_encryption_key="" + +[preset.1.options] + +custom_template/debug="" +custom_template/release="" +variant/export_type=0 +vram_texture_compression/for_desktop=true +vram_texture_compression/for_mobile=false +html/export_icon=true +html/custom_html_shell="" +html/head_include="" +html/canvas_resize_policy=2 +html/focus_canvas_on_start=true +html/experimental_virtual_keyboard=false +progressive_web_app/enabled=true +progressive_web_app/offline_page="" +progressive_web_app/display=1 +progressive_web_app/orientation=1 +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 ) diff --git a/project.godot b/project.godot index d5d5e6a..54abb15 100644 --- a/project.godot +++ b/project.godot @@ -11,8 +11,15 @@ config_version=4 [application] config/name="Wol" -run/main_scene="res://TestScene.tscn" -config/icon="res://icon.png" +config/description="Wol is a tool for creating interactive dialogue for games. Its based on YarnSpinner and it's Yarn language. + +Write your conversations in Yarn, a simple programming language that's designed to be easy for writers to learn, while also powerful enough to handle whatever you need. + +Yarn's similar in style to Twine, so if you already know that, you'll be right at home! If you don't, that's cool - Yarn's syntax is extremely minimal, and there's not much there to learn. + +Wol is actively maintained by Bram Dingelstad, if you need a programmer or designer for your next (Godot) project, you can hire him!" +run/main_scene="res://addons/Wol/editor/WolEditor.tscn" +config/icon="res://addons/Wol/icon-white-with-stroke.svg" [debug] @@ -20,10 +27,22 @@ gdscript/warnings/treat_warnings_as_errors=true gdscript/warnings/exclude_addons=false gdscript/warnings/return_value_discarded=false +[display] + +window/size/test_width=2048 +window/size/test_height=1200 +window/dpi/allow_hidpi=true +window/stretch/mode="2d" +window/stretch/aspect="expand" + [editor_plugins] enabled=PoolStringArray( "res://addons/Wol/plugin.cfg" ) +[gui] + +theme/use_hidpi=true + [network] limits/debugger_stdout/max_chars_per_second=32384