From b402a162e1d1049ca5551deb6bcfd5460741171d Mon Sep 17 00:00:00 2001 From: Amy Date: Tue, 14 Oct 2025 02:15:54 -0400 Subject: [PATCH] Updated to Godot 4.5 and func_godot 2025.9. Added grid_white and grid_taupe textures. Unfucked func_godot and navmesh settings. Began blocking out motel layout in map. --- addons/func_godot/fgd/func_detail.tres | 25 +- .../fgd/func_detail_illusionary.tres | 17 +- addons/func_godot/fgd/func_geo.tres | 39 + addons/func_godot/fgd/func_godot_fgd.tres | 12 +- addons/func_godot/fgd/func_illusionary.tres | 17 +- addons/func_godot/fgd/phong_base.tres | 3 +- .../fgd/vertex_merge_distance_base.tres | 24 + addons/func_godot/fgd/worldspawn.tres | 22 +- .../func_godot_default_map_settings.tres | 27 +- .../func_godot/func_godot_local_config.tres | 3 +- ...dot_netradiant_custom_gamepack_config.tres | 11 +- .../netradiant_custom_shader_clip.tres | 2 +- .../netradiant_custom_shader_origin.tres | 8 + .../netradiant_custom_shader_skip.tres | 2 +- .../func_godot_tb_game_config.tres | 17 +- .../trenchbroom/tb_brush_tag_func.tres | 2 +- .../trenchbroom/tb_brush_tag_trigger.tres | 2 +- .../trenchbroom/tb_face_tag_clip.tres | 2 +- .../trenchbroom/tb_face_tag_origin.tres | 11 + .../trenchbroom/tb_face_tag_skip.tres | 2 +- addons/func_godot/icon.svg.import | 6 + .../icons/icon_godambler.svg.import | 6 + .../icons/icon_godambler3d.svg.import | 6 + .../icons/icon_godot_ranger.svg.import | 6 + .../icons/icon_godot_ranger3d.svg.import | 6 + .../icons/icon_quake_file.svg.import | 6 + addons/func_godot/icons/icon_slipgate.svg | 13 + .../func_godot/icons/icon_slipgate.svg.import | 37 + .../icons/icon_slipgate3d.svg.import | 6 + addons/func_godot/plugin.cfg | 8 +- addons/func_godot/src/core/data.gd | 190 ++ addons/func_godot/src/core/data.gd.uid | 1 + .../func_godot/src/core/entity_assembler.gd | 451 ++++ .../src/core/entity_assembler.gd.uid | 1 + addons/func_godot/src/core/func_godot.gd | 139 - addons/func_godot/src/core/func_godot.gd.uid | 1 - .../src/core/func_godot_geo_generator.gd | 352 --- .../src/core/func_godot_geo_generator.gd.uid | 1 - .../src/core/func_godot_map_data.gd | 135 - .../src/core/func_godot_map_data.gd.uid | 1 - .../src/core/func_godot_map_parser.gd | 307 --- .../src/core/func_godot_map_parser.gd.uid | 1 - .../src/core/func_godot_surface_gatherer.gd | 139 - .../core/func_godot_surface_gatherer.gd.uid | 1 - .../func_godot/src/core/geometry_generator.gd | 567 +++++ .../src/core/geometry_generator.gd.uid | 1 + addons/func_godot/src/core/parser.gd | 439 ++++ addons/func_godot/src/core/parser.gd.uid | 1 + .../src/fgd/func_godot_fgd_base_class.gd | 13 +- .../src/fgd/func_godot_fgd_base_class.gd.uid | 2 +- .../src/fgd/func_godot_fgd_entity_class.gd | 98 +- .../fgd/func_godot_fgd_entity_class.gd.uid | 2 +- .../func_godot/src/fgd/func_godot_fgd_file.gd | 71 +- .../src/fgd/func_godot_fgd_file.gd.uid | 2 +- .../fgd/func_godot_fgd_model_point_class.gd | 86 +- .../func_godot_fgd_model_point_class.gd.uid | 2 +- .../src/fgd/func_godot_fgd_point_class.gd | 29 +- .../src/fgd/func_godot_fgd_point_class.gd.uid | 2 +- .../src/fgd/func_godot_fgd_solid_class.gd | 75 +- .../src/fgd/func_godot_fgd_solid_class.gd.uid | 2 +- addons/func_godot/src/func_godot_plugin.gd | 206 +- .../func_godot/src/func_godot_plugin.gd.uid | 2 +- .../func_godot/src/import/quake_map_file.gd | 13 +- .../src/import/quake_map_file.gd.uid | 2 +- .../src/import/quake_map_import_plugin.gd | 15 +- .../src/import/quake_map_import_plugin.gd.uid | 2 +- .../src/import/quake_palette_file.gd | 10 +- .../src/import/quake_palette_file.gd.uid | 2 +- .../src/import/quake_palette_import_plugin.gd | 7 +- .../import/quake_palette_import_plugin.gd.uid | 2 +- .../func_godot/src/import/quake_wad_file.gd | 14 +- .../src/import/quake_wad_file.gd.uid | 2 +- .../src/import/quake_wad_import_plugin.gd | 127 +- .../src/import/quake_wad_import_plugin.gd.uid | 2 +- addons/func_godot/src/map/func_godot_map.gd | 1081 +------- .../func_godot/src/map/func_godot_map.gd.uid | 2 +- .../src/map/func_godot_map_settings.gd | 95 +- .../src/map/func_godot_map_settings.gd.uid | 2 +- .../netradiant_custom_gamepack_config.gd | 173 +- .../netradiant_custom_gamepack_config.gd.uid | 2 +- .../netradiant_custom_shader.gd | 6 +- .../netradiant_custom_shader.gd.uid | 2 +- .../trenchbroom/trenchbroom_game_config.gd | 290 ++- .../trenchbroom_game_config.gd.uid | 2 +- .../src/trenchbroom/trenchbroom_tag.gd | 14 +- .../src/trenchbroom/trenchbroom_tag.gd.uid | 2 +- .../src/util/func_godot_local_config.gd | 96 +- .../src/util/func_godot_local_config.gd.uid | 2 +- .../src/util/func_godot_texture_loader.gd | 184 -- .../src/util/func_godot_texture_loader.gd.uid | 1 - addons/func_godot/src/util/func_godot_util.gd | 418 ++- .../src/util/func_godot_util.gd.uid | 2 +- .../func_godot/textures/default_material.tres | 2 +- addons/func_godot/textures/special/origin.png | Bin 0 -> 239 bytes .../textures/special/origin.png.import | 34 + entities/hud.tscn | 25 +- entities/npc.gd | 10 +- maps/autosave/.gdignore | 1 + maps/autosave/cafemotel.1.map.import | 14 - maps/autosave/cafemotel.10.map.import | 14 - maps/autosave/cafemotel.2.map | 1366 ++++++---- maps/autosave/cafemotel.2.map.import | 14 - maps/autosave/cafemotel.3.map | 1380 ++++++---- maps/autosave/cafemotel.3.map.import | 14 - maps/autosave/cafemotel.4.map | 1729 +++++++++---- maps/autosave/cafemotel.4.map.import | 14 - maps/autosave/cafemotel.5.map | 2250 +++++++++++++---- maps/autosave/cafemotel.5.map.import | 14 - maps/autosave/cafemotel.6.map | 1021 -------- maps/autosave/cafemotel.6.map.import | 14 - maps/autosave/cafemotel.7.map | 1102 -------- maps/autosave/cafemotel.7.map.import | 14 - maps/autosave/cafemotel.8.map | 1264 --------- maps/autosave/cafemotel.8.map.import | 14 - maps/autosave/cafemotel.9.map | 1268 ---------- maps/autosave/cafemotel.9.map.import | 14 - maps/cafemotel.exr | Bin 7652001 -> 3836565 bytes maps/cafemotel.exr.import | 2 + maps/cafemotel.lmbake | Bin 52793 -> 52137 bytes maps/cafemotel.map | 1385 ++++++++-- maps/cafemotel.tscn | 985 ++++---- .../cafemotel.10.map => cafemotel_backup.map} | 0 maps/cafemotel_backup.map.import | 14 + maps/func_fgd.tres | 15 + maps/func_map_settings.tres | 13 + maps/func_transparent.tres | 17 + maps/func_trenchbroom.tres | 14 + models/nightstand.glb.import | 21 +- models/nightstand.res | Bin 12989 -> 10557 bytes project.godot | 7 +- textures/asphalt.tres | 8 + textures/carpet_dullgreen.tres | 8 + textures/clip.tres | 8 + textures/floor_checkertiles.tres | 8 + textures/floor_wood.tres | 8 + textures/grid_taupe.png | Bin 0 -> 106578 bytes textures/grid_taupe.png.import | 41 + textures/grid_white.png | Bin 0 -> 80891 bytes textures/grid_white.png.import | 41 + textures/ground_cobblestone1.tres | 8 + textures/ground_greybrick.tres | 8 + textures/ground_wood.tres | 8 + textures/marblewhite.tres | 8 + textures/redplaid.tres | 8 + textures/skip.tres | 8 + textures/surface_beige.tres | 8 + textures/surface_beige_corner.tres | 8 + textures/surface_beige_edge.tres | 8 + textures/surface_green.tres | 8 + textures/surface_green_edge.tres | 8 + textures/wall_brick.tres | 8 + textures/wall_brick_scrungly.tres | 8 + textures/wall_concrete1.tres | 8 + textures/woodpale.tres | 8 + 154 files changed, 10450 insertions(+), 10097 deletions(-) create mode 100644 addons/func_godot/fgd/func_geo.tres create mode 100644 addons/func_godot/fgd/vertex_merge_distance_base.tres create mode 100644 addons/func_godot/game_config/netradiant_custom/netradiant_custom_shader_origin.tres create mode 100644 addons/func_godot/game_config/trenchbroom/tb_face_tag_origin.tres create mode 100644 addons/func_godot/icons/icon_slipgate.svg create mode 100644 addons/func_godot/icons/icon_slipgate.svg.import create mode 100644 addons/func_godot/src/core/data.gd create mode 100644 addons/func_godot/src/core/data.gd.uid create mode 100644 addons/func_godot/src/core/entity_assembler.gd create mode 100644 addons/func_godot/src/core/entity_assembler.gd.uid delete mode 100644 addons/func_godot/src/core/func_godot.gd delete mode 100644 addons/func_godot/src/core/func_godot.gd.uid delete mode 100644 addons/func_godot/src/core/func_godot_geo_generator.gd delete mode 100644 addons/func_godot/src/core/func_godot_geo_generator.gd.uid delete mode 100644 addons/func_godot/src/core/func_godot_map_data.gd delete mode 100644 addons/func_godot/src/core/func_godot_map_data.gd.uid delete mode 100644 addons/func_godot/src/core/func_godot_map_parser.gd delete mode 100644 addons/func_godot/src/core/func_godot_map_parser.gd.uid delete mode 100644 addons/func_godot/src/core/func_godot_surface_gatherer.gd delete mode 100644 addons/func_godot/src/core/func_godot_surface_gatherer.gd.uid create mode 100644 addons/func_godot/src/core/geometry_generator.gd create mode 100644 addons/func_godot/src/core/geometry_generator.gd.uid create mode 100644 addons/func_godot/src/core/parser.gd create mode 100644 addons/func_godot/src/core/parser.gd.uid delete mode 100644 addons/func_godot/src/util/func_godot_texture_loader.gd delete mode 100644 addons/func_godot/src/util/func_godot_texture_loader.gd.uid create mode 100644 addons/func_godot/textures/special/origin.png create mode 100644 addons/func_godot/textures/special/origin.png.import create mode 100644 maps/autosave/.gdignore delete mode 100644 maps/autosave/cafemotel.1.map.import delete mode 100644 maps/autosave/cafemotel.10.map.import delete mode 100644 maps/autosave/cafemotel.2.map.import delete mode 100644 maps/autosave/cafemotel.3.map.import delete mode 100644 maps/autosave/cafemotel.4.map.import delete mode 100644 maps/autosave/cafemotel.5.map.import delete mode 100644 maps/autosave/cafemotel.6.map delete mode 100644 maps/autosave/cafemotel.6.map.import delete mode 100644 maps/autosave/cafemotel.7.map delete mode 100644 maps/autosave/cafemotel.7.map.import delete mode 100644 maps/autosave/cafemotel.8.map delete mode 100644 maps/autosave/cafemotel.8.map.import delete mode 100644 maps/autosave/cafemotel.9.map delete mode 100644 maps/autosave/cafemotel.9.map.import rename maps/{autosave/cafemotel.10.map => cafemotel_backup.map} (100%) create mode 100644 maps/cafemotel_backup.map.import create mode 100644 maps/func_fgd.tres create mode 100644 maps/func_map_settings.tres create mode 100644 maps/func_transparent.tres create mode 100644 maps/func_trenchbroom.tres create mode 100644 textures/asphalt.tres create mode 100644 textures/carpet_dullgreen.tres create mode 100644 textures/clip.tres create mode 100644 textures/floor_checkertiles.tres create mode 100644 textures/floor_wood.tres create mode 100644 textures/grid_taupe.png create mode 100644 textures/grid_taupe.png.import create mode 100644 textures/grid_white.png create mode 100644 textures/grid_white.png.import create mode 100644 textures/ground_cobblestone1.tres create mode 100644 textures/ground_greybrick.tres create mode 100644 textures/ground_wood.tres create mode 100644 textures/marblewhite.tres create mode 100644 textures/redplaid.tres create mode 100644 textures/skip.tres create mode 100644 textures/surface_beige.tres create mode 100644 textures/surface_beige_corner.tres create mode 100644 textures/surface_beige_edge.tres create mode 100644 textures/surface_green.tres create mode 100644 textures/surface_green_edge.tres create mode 100644 textures/wall_brick.tres create mode 100644 textures/wall_brick_scrungly.tres create mode 100644 textures/wall_concrete1.tres create mode 100644 textures/woodpale.tres diff --git a/addons/func_godot/fgd/func_detail.tres b/addons/func_godot/fgd/func_detail.tres index f3888dd..0cd4704 100644 --- a/addons/func_godot/fgd/func_detail.tres +++ b/addons/func_godot/fgd/func_detail.tres @@ -1,28 +1,37 @@ -[gd_resource type="Resource" script_class="FuncGodotFGDSolidClass" load_steps=3 format=3 uid="uid://cxy7jnh6d7msn"] +[gd_resource type="Resource" script_class="FuncGodotFGDSolidClass" load_steps=4 format=3 uid="uid://cxy7jnh6d7msn"] -[ext_resource type="Script" uid="uid://cmoudtn1s5egw" path="res://addons/func_godot/src/fgd/func_godot_fgd_solid_class.gd" id="1_0fsmp"] +[ext_resource type="Script" uid="uid://5cow84q03m6a" path="res://addons/func_godot/src/fgd/func_godot_fgd_solid_class.gd" id="1_0fsmp"] [ext_resource type="Resource" uid="uid://nayxb8n7see2" path="res://addons/func_godot/fgd/phong_base.tres" id="1_c3bns"] +[ext_resource type="Resource" uid="uid://doo4ly322b4jc" path="res://addons/func_godot/fgd/vertex_merge_distance_base.tres" id="2_c03gr"] [resource] script = ExtResource("1_0fsmp") spawn_type = 2 -origin_type = 0 +origin_type = 3 build_visuals = true +global_illumination_mode = 1 use_in_baked_light = true -shadow_casting_setting = 0 +shadow_casting_setting = 1 build_occlusion = false render_layers = 1 collision_shape_type = 2 collision_layer = 1 -collision_mask = 1 +collision_mask = 0 collision_priority = 1.0 collision_shape_margin = 0.04 -classname = "func_transparent" -description = "Static collidable geometry. Builds a StaticBody3D with a MeshInstance3D and a single convex CollisionShape3D. Does not occlude other VisualInstance3D nodes." +add_textures_metadata = false +add_vertex_metadata = false +add_face_position_metadata = false +add_face_normal_metadata = false +add_collision_shape_to_face_indices_metadata = false +add_collision_shape_face_range_metadata = false +classname = "func_detail" +description = "Static collidable geometry. Builds a StaticBody3D with a MeshInstance3D and a single concave CollisionShape3D. Does not occlude other VisualInstance3D nodes." func_godot_internal = false -base_classes = Array[Resource]([ExtResource("1_c3bns")]) +base_classes = Array[Resource]([ExtResource("1_c3bns"), ExtResource("2_c03gr")]) class_properties = {} class_property_descriptions = {} +auto_apply_to_matching_node_properties = false meta_properties = { "color": Color(0.8, 0.8, 0.8, 1) } diff --git a/addons/func_godot/fgd/func_detail_illusionary.tres b/addons/func_godot/fgd/func_detail_illusionary.tres index a4efeb1..b99bc02 100644 --- a/addons/func_godot/fgd/func_detail_illusionary.tres +++ b/addons/func_godot/fgd/func_detail_illusionary.tres @@ -1,13 +1,15 @@ -[gd_resource type="Resource" script_class="FuncGodotFGDSolidClass" load_steps=3 format=3 uid="uid://ch3e0dix85uhb"] +[gd_resource type="Resource" script_class="FuncGodotFGDSolidClass" load_steps=4 format=3 uid="uid://ch3e0dix85uhb"] [ext_resource type="Resource" uid="uid://nayxb8n7see2" path="res://addons/func_godot/fgd/phong_base.tres" id="1_ar63x"] -[ext_resource type="Script" uid="uid://cmoudtn1s5egw" path="res://addons/func_godot/src/fgd/func_godot_fgd_solid_class.gd" id="2_lhb87"] +[ext_resource type="Resource" uid="uid://doo4ly322b4jc" path="res://addons/func_godot/fgd/vertex_merge_distance_base.tres" id="2_j7vgq"] +[ext_resource type="Script" uid="uid://5cow84q03m6a" path="res://addons/func_godot/src/fgd/func_godot_fgd_solid_class.gd" id="2_lhb87"] [resource] script = ExtResource("2_lhb87") spawn_type = 2 -origin_type = 0 +origin_type = 3 build_visuals = true +global_illumination_mode = 1 use_in_baked_light = true shadow_casting_setting = 1 build_occlusion = false @@ -17,12 +19,19 @@ collision_layer = 1 collision_mask = 1 collision_priority = 1.0 collision_shape_margin = 0.04 +add_textures_metadata = false +add_vertex_metadata = false +add_face_position_metadata = false +add_face_normal_metadata = false +add_collision_shape_to_face_indices_metadata = false +add_collision_shape_face_range_metadata = false classname = "func_detail_illusionary" description = "Static geometry with no collision. Builds a Node3D with a MeshInstance3D. Does not occlude other VisualInstance3D nodes." func_godot_internal = false -base_classes = Array[Resource]([ExtResource("1_ar63x")]) +base_classes = Array[Resource]([ExtResource("1_ar63x"), ExtResource("2_j7vgq")]) class_properties = {} class_property_descriptions = {} +auto_apply_to_matching_node_properties = false meta_properties = { "color": Color(0.8, 0.8, 0.8, 1) } diff --git a/addons/func_godot/fgd/func_geo.tres b/addons/func_godot/fgd/func_geo.tres new file mode 100644 index 0000000..b9e60aa --- /dev/null +++ b/addons/func_godot/fgd/func_geo.tres @@ -0,0 +1,39 @@ +[gd_resource type="Resource" script_class="FuncGodotFGDSolidClass" load_steps=4 format=3 uid="uid://b70vf4t5dc70t"] + +[ext_resource type="Resource" uid="uid://nayxb8n7see2" path="res://addons/func_godot/fgd/phong_base.tres" id="1_5mwee"] +[ext_resource type="Script" uid="uid://5cow84q03m6a" path="res://addons/func_godot/src/fgd/func_godot_fgd_solid_class.gd" id="2_8o081"] +[ext_resource type="Resource" uid="uid://doo4ly322b4jc" path="res://addons/func_godot/fgd/vertex_merge_distance_base.tres" id="2_bp8pb"] + +[resource] +script = ExtResource("2_8o081") +spawn_type = 2 +origin_type = 3 +build_visuals = true +global_illumination_mode = 1 +use_in_baked_light = true +shadow_casting_setting = 1 +build_occlusion = true +render_layers = 1 +collision_shape_type = 2 +collision_layer = 1 +collision_mask = 0 +collision_priority = 1.0 +collision_shape_margin = 0.04 +add_textures_metadata = false +add_vertex_metadata = false +add_face_position_metadata = false +add_face_normal_metadata = false +add_collision_shape_to_face_indices_metadata = false +add_collision_shape_face_range_metadata = false +classname = "func_geo" +description = "Static collidable geometry. Builds a StaticBody3D with a MeshInstance3D, a single concave CollisionShape3D, and an OccluderInstance3D." +func_godot_internal = false +base_classes = Array[Resource]([ExtResource("1_5mwee"), ExtResource("2_bp8pb")]) +class_properties = {} +class_property_descriptions = {} +auto_apply_to_matching_node_properties = false +meta_properties = { +"color": Color(0.8, 0.8, 0.8, 1) +} +node_class = "StaticBody3D" +name_property = "" diff --git a/addons/func_godot/fgd/func_godot_fgd.tres b/addons/func_godot/fgd/func_godot_fgd.tres index 6fa1c48..7674bf2 100644 --- a/addons/func_godot/fgd/func_godot_fgd.tres +++ b/addons/func_godot/fgd/func_godot_fgd.tres @@ -1,16 +1,14 @@ -[gd_resource type="Resource" script_class="FuncGodotFGDFile" load_steps=7 format=3 uid="uid://crgpdahjaj"] +[gd_resource type="Resource" script_class="FuncGodotFGDFile" load_steps=9 format=3 uid="uid://crgpdahjaj"] -[ext_resource type="Script" uid="uid://ckisq2tcxg062" path="res://addons/func_godot/src/fgd/func_godot_fgd_file.gd" id="1_axt3h"] +[ext_resource type="Script" uid="uid://drlmgulwbjwqu" path="res://addons/func_godot/src/fgd/func_godot_fgd_file.gd" id="1_axt3h"] [ext_resource type="Resource" uid="uid://nayxb8n7see2" path="res://addons/func_godot/fgd/phong_base.tres" id="1_ehab8"] +[ext_resource type="Resource" uid="uid://doo4ly322b4jc" path="res://addons/func_godot/fgd/vertex_merge_distance_base.tres" id="2_7jebp"] [ext_resource type="Resource" uid="uid://bdji3873bg32h" path="res://addons/func_godot/fgd/worldspawn.tres" id="2_ri2rx"] +[ext_resource type="Resource" uid="uid://b70vf4t5dc70t" path="res://addons/func_godot/fgd/func_geo.tres" id="3_7jigp"] [ext_resource type="Resource" uid="uid://cxy7jnh6d7msn" path="res://addons/func_godot/fgd/func_detail.tres" id="3_fqfww"] [ext_resource type="Resource" uid="uid://dg5x44cc7flew" path="res://addons/func_godot/fgd/func_illusionary.tres" id="4_c4ucw"] [ext_resource type="Resource" uid="uid://ch3e0dix85uhb" path="res://addons/func_godot/fgd/func_detail_illusionary.tres" id="5_b2q3p"] [resource] script = ExtResource("1_axt3h") -export_file = false -model_key_word_supported = true -fgd_name = "FuncGodot" -base_fgd_files = Array[Resource]([]) -entity_definitions = Array[Resource]([ExtResource("1_ehab8"), ExtResource("2_ri2rx"), ExtResource("3_fqfww"), ExtResource("5_b2q3p"), ExtResource("4_c4ucw"), ExtResource("3_fqfww")]) +entity_definitions = Array[Resource]([ExtResource("1_ehab8"), ExtResource("2_7jebp"), ExtResource("2_ri2rx"), ExtResource("3_7jigp"), ExtResource("3_fqfww"), ExtResource("5_b2q3p"), ExtResource("4_c4ucw")]) diff --git a/addons/func_godot/fgd/func_illusionary.tres b/addons/func_godot/fgd/func_illusionary.tres index ac7c0cc..ece499a 100644 --- a/addons/func_godot/fgd/func_illusionary.tres +++ b/addons/func_godot/fgd/func_illusionary.tres @@ -1,13 +1,15 @@ -[gd_resource type="Resource" script_class="FuncGodotFGDSolidClass" load_steps=3 format=3 uid="uid://dg5x44cc7flew"] +[gd_resource type="Resource" script_class="FuncGodotFGDSolidClass" load_steps=4 format=3 uid="uid://dg5x44cc7flew"] [ext_resource type="Resource" uid="uid://nayxb8n7see2" path="res://addons/func_godot/fgd/phong_base.tres" id="1_kv0mq"] -[ext_resource type="Script" uid="uid://cmoudtn1s5egw" path="res://addons/func_godot/src/fgd/func_godot_fgd_solid_class.gd" id="2_uffhi"] +[ext_resource type="Resource" uid="uid://doo4ly322b4jc" path="res://addons/func_godot/fgd/vertex_merge_distance_base.tres" id="2_hovr4"] +[ext_resource type="Script" uid="uid://5cow84q03m6a" path="res://addons/func_godot/src/fgd/func_godot_fgd_solid_class.gd" id="2_uffhi"] [resource] script = ExtResource("2_uffhi") spawn_type = 2 -origin_type = 0 +origin_type = 3 build_visuals = true +global_illumination_mode = 1 use_in_baked_light = true shadow_casting_setting = 1 build_occlusion = true @@ -17,12 +19,19 @@ collision_layer = 1 collision_mask = 1 collision_priority = 1.0 collision_shape_margin = 0.04 +add_textures_metadata = false +add_vertex_metadata = false +add_face_position_metadata = false +add_face_normal_metadata = false +add_collision_shape_to_face_indices_metadata = false +add_collision_shape_face_range_metadata = false classname = "func_illusionary" description = "Static geometry with no collision. Builds a Node3D with a MeshInstance3D and an Occluder3D to aid in render culling of other VisualInstance3D nodes." func_godot_internal = false -base_classes = Array[Resource]([ExtResource("1_kv0mq")]) +base_classes = Array[Resource]([ExtResource("1_kv0mq"), ExtResource("2_hovr4")]) class_properties = {} class_property_descriptions = {} +auto_apply_to_matching_node_properties = false meta_properties = { "color": Color(0.8, 0.8, 0.8, 1) } diff --git a/addons/func_godot/fgd/phong_base.tres b/addons/func_godot/fgd/phong_base.tres index ab7e8ed..4b8e456 100644 --- a/addons/func_godot/fgd/phong_base.tres +++ b/addons/func_godot/fgd/phong_base.tres @@ -1,6 +1,6 @@ [gd_resource type="Resource" script_class="FuncGodotFGDBaseClass" load_steps=2 format=3 uid="uid://nayxb8n7see2"] -[ext_resource type="Script" uid="uid://dyv4g30betqgm" path="res://addons/func_godot/src/fgd/func_godot_fgd_base_class.gd" id="1_04y3n"] +[ext_resource type="Script" uid="uid://ck575aqs1sbrb" path="res://addons/func_godot/src/fgd/func_godot_fgd_base_class.gd" id="1_04y3n"] [resource] script = ExtResource("1_04y3n") @@ -19,6 +19,7 @@ class_property_descriptions = { "_phong": ["Phong shading", 0], "_phong_angle": "Phong smoothing angle" } +auto_apply_to_matching_node_properties = false meta_properties = { "color": Color(0.8, 0.8, 0.8, 1), "size": AABB(-8, -8, -8, 8, 8, 8) diff --git a/addons/func_godot/fgd/vertex_merge_distance_base.tres b/addons/func_godot/fgd/vertex_merge_distance_base.tres new file mode 100644 index 0000000..68dcc64 --- /dev/null +++ b/addons/func_godot/fgd/vertex_merge_distance_base.tres @@ -0,0 +1,24 @@ +[gd_resource type="Resource" script_class="FuncGodotFGDBaseClass" load_steps=2 format=3 uid="uid://doo4ly322b4jc"] + +[ext_resource type="Script" uid="uid://ck575aqs1sbrb" path="res://addons/func_godot/src/fgd/func_godot_fgd_base_class.gd" id="1_h3atm"] + +[resource] +script = ExtResource("1_h3atm") +classname = "VertexMergeDistance" +description = "Adjustable value to snap vertices to on map build. This can reduce instances of seams between polygons." +func_godot_internal = false +base_classes = Array[Resource]([]) +class_properties = { +"_vertex_merge_distance": 0.008 +} +class_property_descriptions = { +"_vertex_merge_distance": "Adjustable value to snap vertices to on map build. This can reduce instances of seams between polygons." +} +auto_apply_to_matching_node_properties = false +meta_properties = { +"color": Color(0.8, 0.8, 0.8, 1), +"size": AABB(-8, -8, -8, 8, 8, 8) +} +node_class = "" +name_property = "" +metadata/_custom_type_script = "uid://ck575aqs1sbrb" diff --git a/addons/func_godot/fgd/worldspawn.tres b/addons/func_godot/fgd/worldspawn.tres index 75a69f6..6976ede 100644 --- a/addons/func_godot/fgd/worldspawn.tres +++ b/addons/func_godot/fgd/worldspawn.tres @@ -1,29 +1,17 @@ -[gd_resource type="Resource" script_class="FuncGodotFGDSolidClass" load_steps=2 format=3 uid="uid://bdji3873bg32h"] +[gd_resource type="Resource" script_class="FuncGodotFGDSolidClass" load_steps=3 format=3 uid="uid://bdji3873bg32h"] -[ext_resource type="Script" uid="uid://cmoudtn1s5egw" path="res://addons/func_godot/src/fgd/func_godot_fgd_solid_class.gd" id="1_62t8m"] +[ext_resource type="Script" uid="uid://5cow84q03m6a" path="res://addons/func_godot/src/fgd/func_godot_fgd_solid_class.gd" id="1_62t8m"] +[ext_resource type="Resource" uid="uid://doo4ly322b4jc" path="res://addons/func_godot/fgd/vertex_merge_distance_base.tres" id="1_h1046"] [resource] script = ExtResource("1_62t8m") spawn_type = 0 -origin_type = 0 -build_visuals = true -use_in_baked_light = true -shadow_casting_setting = 1 -build_occlusion = true -render_layers = 1 -collision_shape_type = 1 +origin_type = 1 collision_layer = 3 -collision_mask = 1 -collision_priority = 1.0 -collision_shape_margin = 0.04 classname = "worldspawn" description = "Default static world geometry. Builds a StaticBody3D with a single MeshInstance3D and a single convex CollisionShape3D shape. Also builds Occluder3D to aid in render culling of other VisualInstance3D nodes." -func_godot_internal = false -base_classes = Array[Resource]([]) -class_properties = {} -class_property_descriptions = {} +base_classes = Array[Resource]([ExtResource("1_h1046")]) meta_properties = { "color": Color(0.8, 0.8, 0.8, 1) } node_class = "StaticBody3D" -name_property = "" diff --git a/addons/func_godot/func_godot_default_map_settings.tres b/addons/func_godot/func_godot_default_map_settings.tres index 21501b6..7be01c9 100644 --- a/addons/func_godot/func_godot_default_map_settings.tres +++ b/addons/func_godot/func_godot_default_map_settings.tres @@ -1,19 +1,25 @@ -[gd_resource type="Resource" script_class="FuncGodotMapSettings" load_steps=4 format=3 uid="uid://bkhxcqsquw1yg"] +[gd_resource type="Resource" script_class="FuncGodotMapSettings" load_steps=5 format=3 uid="uid://bkhxcqsquw1yg"] [ext_resource type="Material" uid="uid://cvex6toty8yn7" path="res://addons/func_godot/textures/default_material.tres" id="1_8l5wm"] -[ext_resource type="Script" uid="uid://dhlc0pfo61428" path="res://addons/func_godot/src/map/func_godot_map_settings.gd" id="1_dlf23"] -[ext_resource type="Resource" uid="uid://crgpdahjaj" path="res://addons/func_godot/fgd/func_godot_fgd.tres" id="1_hd7se"] +[ext_resource type="Script" uid="uid://38q6k0ctahjn" path="res://addons/func_godot/src/map/func_godot_map_settings.gd" id="1_dlf23"] +[ext_resource type="Resource" uid="uid://crgpdahjaj" path="res://addons/func_godot/fgd/func_godot_fgd.tres" id="2_hf4oi"] +[ext_resource type="Script" uid="uid://cij36hpqc46c" path="res://addons/func_godot/src/import/quake_wad_file.gd" id="4_576s4"] [resource] script = ExtResource("1_dlf23") inverse_scale_factor = 32.0 -entity_fgd = ExtResource("1_hd7se") +entity_fgd = ExtResource("2_hf4oi") entity_name_property = "" +entity_smoothing_property = "_phong" +entity_smoothing_angle_property = "_phong_angle" +use_groups_hierarchy = false base_texture_dir = "res://textures" texture_file_extensions = Array[String](["png", "jpg", "jpeg", "bmp", "tga", "webp"]) -clip_texture = "clip" -skip_texture = "skip" -texture_wads = Array[Resource]([]) +clip_texture = "special/clip" +skip_texture = "special/skip" +origin_texture = "special/origin" +texture_wads = Array[ExtResource("4_576s4")]([]) +base_material_dir = "" material_file_extension = "tres" default_material = ExtResource("1_8l5wm") default_material_albedo_uniform = "" @@ -24,7 +30,6 @@ roughness_map_pattern = "%s_roughness.%s" emission_map_pattern = "%s_emission.%s" ao_map_pattern = "%s_ao.%s" height_map_pattern = "%s_height.%s" -unshaded = false -save_generated_materials = false -uv_unwrap_texel_size = 1.0 -use_trenchbroom_groups_hierarchy = false +orm_map_pattern = "%s_orm.%s" +save_generated_materials = true +uv_unwrap_texel_size = 2.0 diff --git a/addons/func_godot/func_godot_local_config.tres b/addons/func_godot/func_godot_local_config.tres index 01c86aa..482e00e 100644 --- a/addons/func_godot/func_godot_local_config.tres +++ b/addons/func_godot/func_godot_local_config.tres @@ -1,7 +1,6 @@ [gd_resource type="Resource" script_class="FuncGodotLocalConfig" load_steps=2 format=3 uid="uid://bqjt7nyekxgog"] -[ext_resource type="Script" uid="uid://bjtqjywscfgdy" path="res://addons/func_godot/src/util/func_godot_local_config.gd" id="1_g8kqj"] +[ext_resource type="Script" uid="uid://xsjnhahhyein" path="res://addons/func_godot/src/util/func_godot_local_config.gd" id="1_g8kqj"] [resource] script = ExtResource("1_g8kqj") -export_func_godot_settings = false diff --git a/addons/func_godot/game_config/netradiant_custom/func_godot_netradiant_custom_gamepack_config.tres b/addons/func_godot/game_config/netradiant_custom/func_godot_netradiant_custom_gamepack_config.tres index 1578052..85c0e6f 100644 --- a/addons/func_godot/game_config/netradiant_custom/func_godot_netradiant_custom_gamepack_config.tres +++ b/addons/func_godot/game_config/netradiant_custom/func_godot_netradiant_custom_gamepack_config.tres @@ -1,21 +1,24 @@ -[gd_resource type="Resource" script_class="NetRadiantCustomGamePackConfig" load_steps=5 format=3 uid="uid://cv1k2e85fo2ax"] +[gd_resource type="Resource" script_class="NetRadiantCustomGamePackConfig" load_steps=6 format=3 uid="uid://cv1k2e85fo2ax"] [ext_resource type="Resource" uid="uid://crgpdahjaj" path="res://addons/func_godot/fgd/func_godot_fgd.tres" id="1_gct4v"] -[ext_resource type="Script" uid="uid://ckvnkpgsci7hg" path="res://addons/func_godot/src/netradiant_custom/netradiant_custom_gamepack_config.gd" id="2_en8ro"] +[ext_resource type="Script" uid="uid://dfhj3me2g5j0l" path="res://addons/func_godot/src/netradiant_custom/netradiant_custom_gamepack_config.gd" id="2_en8ro"] [ext_resource type="Resource" uid="uid://f5erfnvbg6b7" path="res://addons/func_godot/game_config/netradiant_custom/netradiant_custom_shader_clip.tres" id="2_w7psh"] [ext_resource type="Resource" uid="uid://cfhg30jclb4lw" path="res://addons/func_godot/game_config/netradiant_custom/netradiant_custom_shader_skip.tres" id="3_6gpk8"] +[ext_resource type="Resource" uid="uid://bpnj14oaufdpt" path="res://addons/func_godot/game_config/netradiant_custom/netradiant_custom_shader_origin.tres" id="4_8rl60"] [resource] script = ExtResource("2_en8ro") -export_file = false gamepack_name = "func_godot" game_name = "FuncGodot" base_game_path = "" fgd_file = ExtResource("1_gct4v") -netradiant_custom_shaders = Array[Resource]([ExtResource("2_w7psh"), ExtResource("3_6gpk8")]) +netradiant_custom_shaders = Array[Resource]([ExtResource("2_w7psh"), ExtResource("3_6gpk8"), ExtResource("4_8rl60")]) texture_types = PackedStringArray("png", "jpg", "jpeg", "bmp", "tga") model_types = PackedStringArray("glb", "gltf", "obj") sound_types = PackedStringArray("wav", "ogg") default_scale = "1.0" clip_texture = "textures/special/clip" skip_texture = "textures/special/skip" +map_type = 1 +default_build_menu_variables = {} +default_build_menu_commands = {} diff --git a/addons/func_godot/game_config/netradiant_custom/netradiant_custom_shader_clip.tres b/addons/func_godot/game_config/netradiant_custom/netradiant_custom_shader_clip.tres index 396cec2..d969774 100644 --- a/addons/func_godot/game_config/netradiant_custom/netradiant_custom_shader_clip.tres +++ b/addons/func_godot/game_config/netradiant_custom/netradiant_custom_shader_clip.tres @@ -1,6 +1,6 @@ [gd_resource type="Resource" script_class="NetRadiantCustomShader" load_steps=2 format=3 uid="uid://f5erfnvbg6b7"] -[ext_resource type="Script" uid="uid://dtmnasjcec1cl" path="res://addons/func_godot/src/netradiant_custom/netradiant_custom_shader.gd" id="1_cuylw"] +[ext_resource type="Script" uid="uid://dn86acprv4e86" path="res://addons/func_godot/src/netradiant_custom/netradiant_custom_shader.gd" id="1_cuylw"] [resource] script = ExtResource("1_cuylw") diff --git a/addons/func_godot/game_config/netradiant_custom/netradiant_custom_shader_origin.tres b/addons/func_godot/game_config/netradiant_custom/netradiant_custom_shader_origin.tres new file mode 100644 index 0000000..72bd171 --- /dev/null +++ b/addons/func_godot/game_config/netradiant_custom/netradiant_custom_shader_origin.tres @@ -0,0 +1,8 @@ +[gd_resource type="Resource" script_class="NetRadiantCustomShader" load_steps=2 format=3 uid="uid://bpnj14oaufdpt"] + +[ext_resource type="Script" uid="uid://dn86acprv4e86" path="res://addons/func_godot/src/netradiant_custom/netradiant_custom_shader.gd" id="1_ah2cp"] + +[resource] +script = ExtResource("1_ah2cp") +texture_path = "textures/special/origin" +shader_attributes = Array[String](["qer_trans 0.4"]) diff --git a/addons/func_godot/game_config/netradiant_custom/netradiant_custom_shader_skip.tres b/addons/func_godot/game_config/netradiant_custom/netradiant_custom_shader_skip.tres index f1b8a32..f368140 100644 --- a/addons/func_godot/game_config/netradiant_custom/netradiant_custom_shader_skip.tres +++ b/addons/func_godot/game_config/netradiant_custom/netradiant_custom_shader_skip.tres @@ -1,6 +1,6 @@ [gd_resource type="Resource" script_class="NetRadiantCustomShader" load_steps=2 format=3 uid="uid://cfhg30jclb4lw"] -[ext_resource type="Script" uid="uid://dtmnasjcec1cl" path="res://addons/func_godot/src/netradiant_custom/netradiant_custom_shader.gd" id="1_4ja6h"] +[ext_resource type="Script" uid="uid://dn86acprv4e86" path="res://addons/func_godot/src/netradiant_custom/netradiant_custom_shader.gd" id="1_4ja6h"] [resource] script = ExtResource("1_4ja6h") diff --git a/addons/func_godot/game_config/trenchbroom/func_godot_tb_game_config.tres b/addons/func_godot/game_config/trenchbroom/func_godot_tb_game_config.tres index d923c4e..a08fb68 100644 --- a/addons/func_godot/game_config/trenchbroom/func_godot_tb_game_config.tres +++ b/addons/func_godot/game_config/trenchbroom/func_godot_tb_game_config.tres @@ -1,17 +1,15 @@ -[gd_resource type="Resource" script_class="TrenchBroomGameConfig" load_steps=8 format=3 uid="uid://b44ah5b2000wa"] +[gd_resource type="Resource" script_class="TrenchBroomGameConfig" load_steps=7 format=3 uid="uid://b44ah5b2000wa"] [ext_resource type="Resource" uid="uid://crgpdahjaj" path="res://addons/func_godot/fgd/func_godot_fgd.tres" id="1_8u1vq"] [ext_resource type="Resource" uid="uid://b4xhdj0e16lop" path="res://addons/func_godot/game_config/trenchbroom/tb_face_tag_clip.tres" id="1_rsp20"] [ext_resource type="Resource" uid="uid://ca7377sfgj074" path="res://addons/func_godot/game_config/trenchbroom/tb_face_tag_skip.tres" id="2_166i2"] -[ext_resource type="Script" uid="uid://c51cy33iaei4s" path="res://addons/func_godot/src/trenchbroom/trenchbroom_game_config.gd" id="2_ns6ah"] -[ext_resource type="Resource" uid="uid://37iduqf7tpxq" path="res://addons/func_godot/game_config/trenchbroom/tb_brush_tag_func.tres" id="3_mbuv7"] -[ext_resource type="Resource" uid="uid://co2sb1ng7cw4i" path="res://addons/func_godot/game_config/trenchbroom/tb_brush_tag_trigger.tres" id="4_y0tjm"] +[ext_resource type="Script" uid="uid://cx44c4vnq8bt5" path="res://addons/func_godot/src/trenchbroom/trenchbroom_game_config.gd" id="2_ns6ah"] +[ext_resource type="Resource" uid="uid://bkjxc54mmdhbo" path="res://addons/func_godot/game_config/trenchbroom/tb_face_tag_origin.tres" id="3_stisi"] [ext_resource type="Texture2D" uid="uid://decwujsyhj0qy" path="res://addons/func_godot/icon32.png" id="6_tex5j"] [resource] script = ExtResource("2_ns6ah") -export_file = false -game_name = "maskmaker" +game_name = "FuncGodot" icon = ExtResource("6_tex5j") map_formats = Array[Dictionary]([{ "format": "Valve", @@ -25,9 +23,12 @@ map_formats = Array[Dictionary]([{ }, { "format": "Quake3" }]) +textures_root_folder = "textures" texture_exclusion_patterns = Array[String](["*_albedo", "*_ao", "*_emission", "*_height", "*_metallic", "*_normal", "*_orm", "*_roughness", "*_sss"]) +palette_path = "textures/palette.lmp" fgd_file = ExtResource("1_8u1vq") entity_scale = "32" +brush_tags = Array[Resource]([]) +brushface_tags = Array[Resource]([ExtResource("1_rsp20"), ExtResource("2_166i2"), ExtResource("3_stisi")]) default_uv_scale = Vector2(1, 1) -brush_tags = Array[Resource]([ExtResource("3_mbuv7"), ExtResource("4_y0tjm")]) -brushface_tags = Array[Resource]([ExtResource("1_rsp20"), ExtResource("2_166i2")]) +game_config_version = 0 diff --git a/addons/func_godot/game_config/trenchbroom/tb_brush_tag_func.tres b/addons/func_godot/game_config/trenchbroom/tb_brush_tag_func.tres index ae4ec72..e6f73c7 100644 --- a/addons/func_godot/game_config/trenchbroom/tb_brush_tag_func.tres +++ b/addons/func_godot/game_config/trenchbroom/tb_brush_tag_func.tres @@ -1,6 +1,6 @@ [gd_resource type="Resource" script_class="TrenchBroomTag" load_steps=2 format=3 uid="uid://37iduqf7tpxq"] -[ext_resource type="Script" uid="uid://5eacgso7tkh6" path="res://addons/func_godot/src/trenchbroom/trenchbroom_tag.gd" id="1_rn13a"] +[ext_resource type="Script" uid="uid://b66qdknwqpfup" path="res://addons/func_godot/src/trenchbroom/trenchbroom_tag.gd" id="1_rn13a"] [resource] script = ExtResource("1_rn13a") diff --git a/addons/func_godot/game_config/trenchbroom/tb_brush_tag_trigger.tres b/addons/func_godot/game_config/trenchbroom/tb_brush_tag_trigger.tres index 8cae333..c915f1c 100644 --- a/addons/func_godot/game_config/trenchbroom/tb_brush_tag_trigger.tres +++ b/addons/func_godot/game_config/trenchbroom/tb_brush_tag_trigger.tres @@ -1,6 +1,6 @@ [gd_resource type="Resource" script_class="TrenchBroomTag" load_steps=2 format=3 uid="uid://co2sb1ng7cw4i"] -[ext_resource type="Script" uid="uid://5eacgso7tkh6" path="res://addons/func_godot/src/trenchbroom/trenchbroom_tag.gd" id="1_msqpk"] +[ext_resource type="Script" uid="uid://b66qdknwqpfup" path="res://addons/func_godot/src/trenchbroom/trenchbroom_tag.gd" id="1_msqpk"] [resource] script = ExtResource("1_msqpk") diff --git a/addons/func_godot/game_config/trenchbroom/tb_face_tag_clip.tres b/addons/func_godot/game_config/trenchbroom/tb_face_tag_clip.tres index 339f969..bec8a2c 100644 --- a/addons/func_godot/game_config/trenchbroom/tb_face_tag_clip.tres +++ b/addons/func_godot/game_config/trenchbroom/tb_face_tag_clip.tres @@ -1,6 +1,6 @@ [gd_resource type="Resource" script_class="TrenchBroomTag" load_steps=2 format=3 uid="uid://b4xhdj0e16lop"] -[ext_resource type="Script" uid="uid://5eacgso7tkh6" path="res://addons/func_godot/src/trenchbroom/trenchbroom_tag.gd" id="1_7td58"] +[ext_resource type="Script" uid="uid://b66qdknwqpfup" path="res://addons/func_godot/src/trenchbroom/trenchbroom_tag.gd" id="1_7td58"] [resource] script = ExtResource("1_7td58") diff --git a/addons/func_godot/game_config/trenchbroom/tb_face_tag_origin.tres b/addons/func_godot/game_config/trenchbroom/tb_face_tag_origin.tres new file mode 100644 index 0000000..82478f3 --- /dev/null +++ b/addons/func_godot/game_config/trenchbroom/tb_face_tag_origin.tres @@ -0,0 +1,11 @@ +[gd_resource type="Resource" script_class="TrenchBroomTag" load_steps=2 format=3 uid="uid://bkjxc54mmdhbo"] + +[ext_resource type="Script" uid="uid://b66qdknwqpfup" path="res://addons/func_godot/src/trenchbroom/trenchbroom_tag.gd" id="1_enkfc"] + +[resource] +script = ExtResource("1_enkfc") +tag_name = "Origin" +tag_attributes = Array[String](["transparent"]) +tag_match_type = 0 +tag_pattern = "origin" +texture_name = "" diff --git a/addons/func_godot/game_config/trenchbroom/tb_face_tag_skip.tres b/addons/func_godot/game_config/trenchbroom/tb_face_tag_skip.tres index 9f7e53c..342646c 100644 --- a/addons/func_godot/game_config/trenchbroom/tb_face_tag_skip.tres +++ b/addons/func_godot/game_config/trenchbroom/tb_face_tag_skip.tres @@ -1,6 +1,6 @@ [gd_resource type="Resource" script_class="TrenchBroomTag" load_steps=2 format=3 uid="uid://ca7377sfgj074"] -[ext_resource type="Script" uid="uid://5eacgso7tkh6" path="res://addons/func_godot/src/trenchbroom/trenchbroom_tag.gd" id="1_2teqe"] +[ext_resource type="Script" uid="uid://b66qdknwqpfup" path="res://addons/func_godot/src/trenchbroom/trenchbroom_tag.gd" id="1_2teqe"] [resource] script = ExtResource("1_2teqe") diff --git a/addons/func_godot/icon.svg.import b/addons/func_godot/icon.svg.import index e3d1d87..61f16c6 100644 --- a/addons/func_godot/icon.svg.import +++ b/addons/func_godot/icon.svg.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/icon.svg-99f2c56e0c1ce867c819715c68d9c120.cte compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/addons/func_godot/icons/icon_godambler.svg.import b/addons/func_godot/icons/icon_godambler.svg.import index f45a950..86a30c3 100644 --- a/addons/func_godot/icons/icon_godambler.svg.import +++ b/addons/func_godot/icons/icon_godambler.svg.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/icon_godambler.svg-a6dbba375ab2a45be046a1875b compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/addons/func_godot/icons/icon_godambler3d.svg.import b/addons/func_godot/icons/icon_godambler3d.svg.import index 2c41215..0508918 100644 --- a/addons/func_godot/icons/icon_godambler3d.svg.import +++ b/addons/func_godot/icons/icon_godambler3d.svg.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/icon_godambler3d.svg-f7df9bfe58320474198644aa compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/addons/func_godot/icons/icon_godot_ranger.svg.import b/addons/func_godot/icons/icon_godot_ranger.svg.import index 4bf1423..3be49c6 100644 --- a/addons/func_godot/icons/icon_godot_ranger.svg.import +++ b/addons/func_godot/icons/icon_godot_ranger.svg.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/icon_godot_ranger.svg-8572582518f54de6403b767 compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/addons/func_godot/icons/icon_godot_ranger3d.svg.import b/addons/func_godot/icons/icon_godot_ranger3d.svg.import index e2eb929..d56cb29 100644 --- a/addons/func_godot/icons/icon_godot_ranger3d.svg.import +++ b/addons/func_godot/icons/icon_godot_ranger3d.svg.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/icon_godot_ranger3d.svg-a9a2c9bcf2e8b1e07a0a9 compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/addons/func_godot/icons/icon_quake_file.svg.import b/addons/func_godot/icons/icon_quake_file.svg.import index b117155..668f5bb 100644 --- a/addons/func_godot/icons/icon_quake_file.svg.import +++ b/addons/func_godot/icons/icon_quake_file.svg.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/icon_quake_file.svg-1718b9a2b5e0b124f6d72bb4c compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/addons/func_godot/icons/icon_slipgate.svg b/addons/func_godot/icons/icon_slipgate.svg new file mode 100644 index 0000000..f78ac7b --- /dev/null +++ b/addons/func_godot/icons/icon_slipgate.svg @@ -0,0 +1,13 @@ + + + + + + + diff --git a/addons/func_godot/icons/icon_slipgate.svg.import b/addons/func_godot/icons/icon_slipgate.svg.import new file mode 100644 index 0000000..bf028c0 --- /dev/null +++ b/addons/func_godot/icons/icon_slipgate.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bw74kacajcaxb" +path="res://.godot/imported/icon_slipgate.svg-f42668b28b92f93c031f56d95dfcf5a6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/func_godot/icons/icon_slipgate.svg" +dest_files=["res://.godot/imported/icon_slipgate.svg-f42668b28b92f93c031f56d95dfcf5a6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/func_godot/icons/icon_slipgate3d.svg.import b/addons/func_godot/icons/icon_slipgate3d.svg.import index a962587..6fc598d 100644 --- a/addons/func_godot/icons/icon_slipgate3d.svg.import +++ b/addons/func_godot/icons/icon_slipgate3d.svg.import @@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/icon_slipgate3d.svg-f125bef6ff5aa79b5fe3f232a compress/mode=0 compress/high_quality=false compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 @@ -25,6 +27,10 @@ mipmaps/generate=false mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 process/fix_alpha_border=true process/premult_alpha=false process/normal_map_invert_y=false diff --git a/addons/func_godot/plugin.cfg b/addons/func_godot/plugin.cfg index 6d1758e..d0bb251 100644 --- a/addons/func_godot/plugin.cfg +++ b/addons/func_godot/plugin.cfg @@ -1,7 +1,7 @@ [plugin] name="FuncGodot" -description="Quake .map file support for Godot." -author="Shifty, Hannah Crawford, Emberlynn Bland, Tim Maccabe" -version="2024.1" -script="src/func_godot_plugin.gd" \ No newline at end of file +description="Quake .map and Half-Life .vmf file support for Godot." +author="Josh Palmer, Hannah Crawford, Emberlynn Bland, Tim Maccabe, Vera Lux" +version="2025.9" +script="src/func_godot_plugin.gd" diff --git a/addons/func_godot/src/core/data.gd b/addons/func_godot/src/core/data.gd new file mode 100644 index 0000000..ad1f175 --- /dev/null +++ b/addons/func_godot/src/core/data.gd @@ -0,0 +1,190 @@ +@icon("res://addons/func_godot/icons/icon_godot_ranger.svg") +class_name FuncGodotData +## Container that holds various data structs to be used in the [FuncGodotMap] build process. +## +## FuncGodot utilizes multiple custom data structs to hold information parsed from the map file +## and read and modified by the other core build classes. +## All data structs extend from [RefCounted], therefore all data is passed by reference. +## [br][br] +## [FuncGodotData.FaceData][br] +## [FuncGodotData.BrushData][br] +## [FuncGodotData.PatchData][br] +## [FuncGodotData.GroupData][br] +## [FuncGodotData.EntityData][br] + +## Data struct representing both a single map plane and a mesh face. Generated during parsing by plane definitions in the map file, +## it is further modified and utilized during the geo generation stage to create the final entity meshes. +class FaceData extends RefCounted: + ## Vertex array for the face. Only populated in combination with other faces, as a result of planar intersections. + var vertices: PackedVector3Array = [] + ## Index array for the face. Used in ArrayMesh creation. + var indices: PackedInt32Array = [] + ## Vertex normal array for the face. + ## By default, set to the planar normal, which results in flat shading. May be modified to adjust shading. + var normals: PackedVector3Array = [] + ## Tangent data for the face. + var tangents: PackedFloat32Array = [] + ## Local path to the texture without the extension, relative to the FuncGodotMap node's settings' base texture directory. + var texture: String + ## UV transform data generated during the parsing stage. Used for both Standard and Valve 220 UV formats, + ## though rotation is not applied to the transform when using Valve 220. + var uv: Transform2D + ## Raw vector data provided by the Valve 220 format during parsing. It is used to calculate rotations. + ## The presence of this data determines how face UVs and tangents are calculated. + var uv_axes: PackedVector3Array = [] + ## Raw plane data parsed from the map file using the id Tech coordinate system. + var plane: Plane + + ## Returns the average position of all vertices in the face. Only valid when the face has at least one vertex. + func get_centroid() -> Vector3: + return FuncGodotUtil.op_vec3_avg(vertices) + + ## Returns an arbitrary coplanar direction to use for winding the face. + ## Only valid when the face has at least two vertices. + func get_basis() -> Vector3: + if vertices.size() < 2: + push_error("Cannot get winding basis without at least 2 vertices!") + return Vector3.ZERO + return (vertices[1] - vertices[0]).normalized() + + ## Prepares the face for OpenGL triangle winding order. + ## Sorts the vertex array in-place by angle from the centroid. + func wind() -> void: + var centroid: Vector3 = get_centroid() + var u_axis: Vector3 = get_basis() + var v_axis: Vector3 = u_axis.cross(plane.normal).normalized() + var cmp_winding_angle: Callable = ( + func(a: Vector3, b: Vector3) -> bool: + var dir_a: Vector3 = a - centroid + var dir_b: Vector3 = b - centroid + var angle_a: float = atan2(dir_a.dot(v_axis), dir_a.dot(u_axis)) + var angle_b: float = atan2(dir_b.dot(v_axis), dir_b.dot(u_axis)) + return angle_a < angle_b + ) + + var _vertices: Array[Vector3] + _vertices.assign(vertices) + _vertices.sort_custom(cmp_winding_angle) + vertices = _vertices + + ## Repopulate the [member indices] array to create a triangle fan. + ## The face must be properly wound for the resulting indices to be valid. + func index_vertices() -> void: + var tri_count: int = vertices.size() - 2 + indices.resize(tri_count * 3) + var index: int = 0 + for i in tri_count: + indices[index] = 0 + indices[index + 1] = i + 1 + indices[index + 2] = i + 2 + index += 3 + +## Data struct representing a single map format brush. It is largely meant as a container for [FuncGodotData.FaceData] data. +class BrushData extends RefCounted: + ## Raw plane data parsed from the map file using the id Tech coordinate system. + var planes: Array[Plane] + ## Collection of [FuncGodotData.FaceData]. + var faces: Array[FaceData] + ## [code]true[/code] if this brush is completely covered in the [i]Origin[/i] texture defined in [FuncGodotMapSettings]. + ## Determined during [FuncGodotParser] and utilized during [FuncGodotGeometryGenerator]. + var origin: bool = false + +## Data struct representing a patch def entity. +class PatchData extends RefCounted: + ## Local path to the texture without the extension, relative to the FuncGodotMap node's settings' base texture directory. + var texture: String + var size: PackedInt32Array + var points: PackedVector3Array + var uvs: PackedVector2Array + +## Data struct representing a TrenchBroom Group, TrenchBroom Layer, or Valve VisGroup. +## Generated during the parsing stage and utilized during both parsing and entity assembly stages. +class GroupData extends RefCounted: + enum GroupType { GROUP, LAYER, } + ## Defines whether the group is a Group or a Layer. Currently only determines the name of the group. + var type: GroupType = GroupType.GROUP + ## Group ID retrieved from the map file. Utilized during the parsing and entity assembly stages to determine + ## which entities belong to which groups as well as which groups are children of other groups. + var id: int + ## Generated during the parsing stage using the format of type_id_name, eg: group_2_Arkham. + var name: String + ## ID of the parent group data, used to determine which group data is this group's parent. + var parent_id: int = -1 + ## Pointer to another group data that this group is a child of. + var parent: GroupData = null + ## Pointer to generated Node3D representing this group in the SceneTree. + var node: Node3D = null + ## If true, erases all entities assigned to this group and then the group itself at the end of the parsing stage, preventing those entities from being generated into nodes. + ## Can be set in TrenchBroom on layers using the "omit layer" option. + var omit: bool = false + +## Data struct representing a map format entity. +class EntityData extends RefCounted: + ## All of the entity's key value pairs from the map file, retrieved during parsing. + ## The func_godot_properties dictionary generated at the end of entity assembly is derived from this. + var properties: Dictionary = {} + ## The entity's brush data collected during the parsing stage. If the entity's FGD resource cannot be found, + ## the presence of a single brush determines this entity to be a Solid Entity. + var brushes: Array[BrushData] = [] + ## The entity's patch def data collected during the parsing stage. If the entity's FGD resource cannot be found, + ## the presence of a single patch def determines this entity to be a Solid Entity. + var patches: Array[PatchData] = [] + ## Pointer to the group data this entity belongs to. + var group: GroupData = null + ## The entity's FGD resource, determined by matching the classname properties of each. + ## This can only be a [FuncGodotFGDSolidClass], [FuncGodotFGDPointClass], or [FuncGodotFGDModelPointClass]. + var definition: FuncGodotFGDEntityClass = null + ## Mesh resource generated during the geometry generation stage and applied during the entity assembly stage. + var mesh: ArrayMesh = null + ## MeshInstance3D node generated during the entity assembly stage. + var mesh_instance: MeshInstance3D = null + ## Optional mesh metadata compiled during the geometry generation stage, used to determine face information from collision. + var mesh_metadata: Dictionary = {} + ## A collection of collision shape resources generated during the geometry generation stage and applied during the entity assembly stage. + var shapes: Array[Shape3D] = [] + ## A collection of [CollisionShape3D] nodes generated during the entity assembly stage. Each node corresponds to a shape in the [member shapes] array. + var collision_shapes: Array[CollisionShape3D] = [] + ## [OccluderInstance3D] node generated during the entity assembly stage using the [member mesh] resource. + var occluder_instance: OccluderInstance3D = null + ## True global position of the entity's generated node that the mesh's vertices are offset by during the geometry generation stage. + var origin: Vector3 = Vector3.ZERO + + ## Checks the entity's FGD resource definition, returning whether the Solid Class has a [MeshInstance3D] built for it. + func is_visual() -> bool: + return (definition + and definition is FuncGodotFGDSolidClass + and definition.build_visuals) + + ## Checks the entity's FGD resource definition, returning whether the Solid Class CollisionShapeType is set to Convex. + func is_collision_convex() -> bool: + return (definition + and definition is FuncGodotFGDSolidClass + and definition.collision_shape_type == FuncGodotFGDSolidClass.CollisionShapeType.CONVEX + ) + + ## Checks the entity's FGD resource definition, returning whether the Solid Class CollisionShapeType is set to Concave. + func is_collision_concave() -> bool: + return (definition + and definition is FuncGodotFGDSolidClass + and definition.collision_shape_type == FuncGodotFGDSolidClass.CollisionShapeType.CONCAVE + ) + + ## Determines if the entity's mesh should be processed for normal smoothing. + ## The smoothing property can be retrieved from [member FuncGodotMapSettings.entity_smoothing_property]. + func is_smooth_shaded(smoothing_property: String = "_phong") -> bool: + return properties.get(smoothing_property, "0").to_int() + + ## Retrieves the entity's smoothing angle to determine if the face should be smoothed. + ## The smoothing angle property can be retrieved from [member FuncGodotMapSettings.entity_smoothing_angle_property]. + func get_smoothing_angle(smoothing_angle_property: String = "_phong_angle") -> float: + return properties.get(smoothing_angle_property, "89.0").to_float() + +class VertexGroupData: + ## Faces this vertex appears in. + var faces: Array[FaceData] + ## Index within the associated face for this vertex. + var face_indices: PackedInt32Array + +class ParseData: + var entities: Array[EntityData] = [] + var groups: Array[GroupData] = [] diff --git a/addons/func_godot/src/core/data.gd.uid b/addons/func_godot/src/core/data.gd.uid new file mode 100644 index 0000000..e10beda --- /dev/null +++ b/addons/func_godot/src/core/data.gd.uid @@ -0,0 +1 @@ +uid://cqye8dehq4c7q diff --git a/addons/func_godot/src/core/entity_assembler.gd b/addons/func_godot/src/core/entity_assembler.gd new file mode 100644 index 0000000..a1b7eeb --- /dev/null +++ b/addons/func_godot/src/core/entity_assembler.gd @@ -0,0 +1,451 @@ +@icon("res://addons/func_godot/icons/icon_godot_ranger.svg") +class_name FuncGodotEntityAssembler extends RefCounted +## Entity assembly class that is instantiated by a [FuncGodotMap] node. + +const _SIGNATURE: String = "[ENT]" + +# Namespacing +const _GroupData := FuncGodotData.GroupData +const _EntityData := FuncGodotData.EntityData + +# Class members +## [FuncGodotMapSettings] provided by the [FuncGodotMap] during the build process. +var map_settings: FuncGodotMapSettings = null +## [enum FuncGodotMap.BuildFlags] that may affect the build process provided by the [FuncGodotMap]. +var build_flags: int = 0 + +# Signals +## Emitted when a step in the entity assembly process is completed. +## It is connected to [method FuncGodotUtil.print_profile_info] method if [member FuncGodotMap.build_flags] SHOW_PROFILE_INFO flag is set. +signal declare_step(step: String) + +func _init(settings: FuncGodotMapSettings) -> void: + map_settings = settings + +## Attempts to retrieve a [Script] via class name, to allow for [GDScript] class instantiation. +static func get_script_by_class_name(name_of_class: String) -> Script: + if ResourceLoader.exists(name_of_class, "Script"): + return load(name_of_class) as Script + for global_class in ProjectSettings.get_global_class_list(): + var found_name_of_class : String = global_class["class"] + var found_path : String = global_class["path"] + if found_name_of_class == name_of_class: + return load(found_path) as Script + return null + +## Generates a [Node3D] for a group's [SceneTree] representation and links the new [Node3D] to that group. +func generate_group_node(group_data: _GroupData) -> Node3D: + var group_node := Node3D.new() + group_node.name = group_data.name + group_data.node = group_node + return group_node + +## Generates and assembles a new [Node] based upon processed [FuncGodotData.EntityData]. Depending upon provided data, +## additional [MeshInstance3D], [CollisionShape3D], and [OccluderInstance3D] nodes may also be generated. +func generate_solid_entity_node(node: Node, node_name: String, data: _EntityData, definition: FuncGodotFGDSolidClass) -> Node: + if definition.spawn_type == FuncGodotFGDSolidClass.SpawnType.MERGE_WORLDSPAWN: + return null + + if definition.node_class != "": + if ClassDB.class_exists(definition.node_class): + node = ClassDB.instantiate(definition.node_class) + else: + var script: Script = get_script_by_class_name(definition.node_class) + if script is GDScript: + node = (script as GDScript).new() + else: + node = Node3D.new() + + node.name = node_name + node_name = node_name.trim_suffix(definition.classname).trim_suffix("_") + var properties: Dictionary = data.properties + + # Mesh Instance generation + if data.mesh: + var mesh_instance := MeshInstance3D.new() + mesh_instance.name = node_name + "_mesh_instance" + mesh_instance.mesh = data.mesh + mesh_instance.gi_mode = GeometryInstance3D.GI_MODE_DISABLED + if definition.global_illumination_mode: + mesh_instance.gi_mode = definition.global_illumination_mode + mesh_instance.cast_shadow = definition.shadow_casting_setting + mesh_instance.layers = definition.render_layers + node.add_child(mesh_instance) + data.mesh_instance = mesh_instance + + # Occluder generation + if definition.build_occlusion and data.mesh: + var verts: PackedVector3Array = [] + var indices: PackedInt32Array = [] + var index: int = 0 + for surf_idx in range(data.mesh.get_surface_count()): + var vert_count: int = verts.size() + var surf_array: Array = data.mesh.surface_get_arrays(surf_idx) + verts.append_array(surf_array[Mesh.ARRAY_VERTEX]) + indices.resize(indices.size() + surf_array[Mesh.ARRAY_INDEX].size()) + for new_index in surf_array[Mesh.ARRAY_INDEX]: + indices[index] = (new_index + vert_count) + index += 1 + + var occluder := ArrayOccluder3D.new() + occluder.set_arrays(verts, indices) + var occluder_instance := OccluderInstance3D.new() + occluder_instance.name = node_name + "_occluder_instance" + occluder_instance.occluder = occluder + node.add_child(occluder_instance) + data.occluder_instance = occluder_instance + + if not (build_flags & FuncGodotMap.BuildFlags.DISABLE_SMOOTHING) and data.is_smooth_shaded(map_settings.entity_smoothing_property): + mesh_instance.mesh = FuncGodotUtil.smooth_mesh_by_angle(data.mesh, data.get_smoothing_angle(map_settings.entity_smoothing_angle_property)) + + # Collision generation + if data.shapes.size() and node is CollisionObject3D: + node.collision_layer = definition.collision_layer + node.collision_mask = definition.collision_mask + node.collision_priority = definition.collision_priority + + var shape_to_face_array : Array[PackedInt32Array] = [] + if data.mesh_metadata.has('shape_to_face_array'): + shape_to_face_array = data.mesh_metadata['shape_to_face_array'] + data.mesh_metadata.erase('shape_to_face_array') + + # Generate CollisionShape3D nodes and apply shapes + var face_index_metadata : Dictionary[String, PackedInt32Array] = {} + for i in data.shapes.size(): + var shape := data.shapes[i] + var collision_shape := CollisionShape3D.new() + if definition.collision_shape_type == FuncGodotFGDSolidClass.CollisionShapeType.CONCAVE: + collision_shape.name = node_name + "_collision_shape" + else: + collision_shape.name = node_name + "_brush_%s_collision_shape" % i + collision_shape.shape = shape + collision_shape.shape.margin = definition.collision_shape_margin + collision_shape.owner = node.owner + node.add_child(collision_shape) + data.collision_shapes.append(collision_shape) + if shape_to_face_array.size() > i: + face_index_metadata[collision_shape.name] = shape_to_face_array[i] + + if definition.add_collision_shape_to_face_indices_metadata: + data.mesh_metadata['collision_shape_to_face_indices_map'] = face_index_metadata + + if "position" in node: + if node.position is Vector3: + node.position = FuncGodotUtil.id_to_opengl(data.origin) * map_settings.scale_factor + + if not data.mesh_metadata.is_empty(): + node.set_meta("func_godot_mesh_data", data.mesh_metadata) + + return node + +## Generates and assembles a new [Node] or [PackedScene] based upon processed [FuncGodotData.EntityData]. +func generate_point_entity_node(node: Node, node_name: String, properties: Dictionary, definition: FuncGodotFGDPointClass) -> Node: + var classname: String = properties["classname"] + + if definition.scene_file: + var flag: PackedScene.GenEditState = PackedScene.GEN_EDIT_STATE_DISABLED + if Engine.is_editor_hint(): + flag = PackedScene.GEN_EDIT_STATE_INSTANCE + node = definition.scene_file.instantiate(flag) + elif definition.node_class != "": + if ClassDB.class_exists(definition.node_class): + node = ClassDB.instantiate(definition.node_class) + else: + var script: Script = get_script_by_class_name(definition.node_class) + if script is GDScript: + node = (script as GDScript).new() + else: + node = Node3D.new() + + node.name = node_name + + if "rotation_degrees" in node and definition.apply_rotation_on_map_build: + var angles := Vector3.ZERO + if "angles" in properties or "mangle" in properties: + var key := "angles" if "angles" in properties else "mangle" + var angles_raw = properties[key] + if not angles_raw is Vector3: + angles_raw = angles_raw.split_floats(' ') + if angles_raw.size() > 2: + angles = Vector3(-angles_raw[0], angles_raw[1], -angles_raw[2]) + if key == "mangle": + if definition.classname.begins_with("light"): + angles = Vector3(angles_raw[1], angles_raw[0], -angles_raw[2]) + elif definition.classname == "info_intermission": + angles = Vector3(angles_raw[0], angles_raw[1], -angles_raw[2]) + else: + push_error("Invalid vector format for \"" + key + "\" in entity \"" + classname + "\"") + elif "angle" in properties: + var angle = properties["angle"] + if not angle is float: + angle = float(angle) + angles.y += angle + angles.y += 180 + node.rotation_degrees = angles + + if "scale" in node and definition.apply_scale_on_map_build: + if "scale" in properties: + var scale_prop: Variant = properties["scale"] + if typeof(scale_prop) == TYPE_STRING: + var scale_arr: PackedStringArray = (scale_prop as String).split(" ") + match scale_arr.size(): + 1: scale_prop = scale_arr[0].to_float() + 3: scale_prop = Vector3(scale_arr[1].to_float(), scale_arr[2].to_float(), scale_arr[0].to_float()) + 2: scale_prop = Vector2(scale_arr[0].to_float(), scale_arr[0].to_float()) + if typeof(scale_prop) == TYPE_FLOAT or typeof(scale_prop) == TYPE_INT: + node.scale *= scale_prop as float + elif node.scale is Vector3: + if typeof(scale_prop) == TYPE_VECTOR3 or typeof(scale_prop) == TYPE_VECTOR3I: + node.scale *= scale_prop as Vector3 + elif node.scale is Vector2: + if typeof(scale_prop) == TYPE_VECTOR2 or typeof(scale_prop) == TYPE_VECTOR2I: + node.scale *= scale_prop as Vector2 + + if "origin" in properties: + var origin_vec: Vector3 = Vector3.ZERO + var origin_comps: PackedFloat64Array = properties['origin'].split_floats(' ') + if origin_comps.size() > 2: + origin_vec = Vector3(origin_comps[1], origin_comps[2], origin_comps[0]) + else: + push_error("Invalid vector format for \"origin\" in " + node_name) + if "position" in node: + if node.position is Vector3: + node.position = origin_vec * map_settings.scale_factor + elif node.position is Vector2: + node.position = Vector2(origin_vec.z, -origin_vec.y) + + return node + +## Converts the [String] values of the entity data's [code]properties[/code] [Dictionary] to various [Variant] formats +## based upon the [FuncGodotFGDEntity]'s class properties, then attempts to send those properties to a [code]func_godot_properties[/code] [Dictionary] +## and an [code]_func_godot_apply_properties(properties: Dictionary)[/code] method on the node. A deferred call to [code]_func_godot_build_complete()[/code] is also made. +func apply_entity_properties(node: Node, data: _EntityData) -> void: + var properties: Dictionary = data.properties + + if data.definition: + var def := data.definition + for property in properties: + var prop_string = properties[property] + if property in def.class_properties: + var prop_default: Variant = def.class_properties[property] + + match typeof(prop_default): + TYPE_INT: + properties[property] = prop_string.to_int() + TYPE_FLOAT: + properties[property] = prop_string.to_float() + TYPE_BOOL: + properties[property] = bool(prop_string.to_int()) + TYPE_VECTOR3: + var prop_comps: PackedFloat64Array = prop_string.split_floats(" ") + if prop_comps.size() > 2: + properties[property] = Vector3(prop_comps[0], prop_comps[1], prop_comps[2]) + else: + push_error("Invalid Vector3 format for \'" + property + "\' in entity \'" + def.classname + "\': " + prop_string) + properties[property] = prop_default + TYPE_VECTOR3I: + var prop_vec: Vector3i = prop_default + var prop_comps: PackedStringArray = prop_string.split(" ") + if prop_comps.size() > 2: + for i in 3: + prop_vec[i] = prop_comps[i].to_int() + else: + push_error("Invalid Vector3i format for \'" + property + "\' in entity \'" + def.classname + "\': " + prop_string) + properties[property] = prop_vec + TYPE_COLOR: + var prop_color: Color = prop_default + var prop_comps: PackedStringArray = prop_string.split(" ") + if prop_comps.size() > 2: + prop_color.r8 = prop_comps[0].to_int() + prop_color.g8 = prop_comps[1].to_int() + prop_color.b8 = prop_comps[2].to_int() + prop_color.a = 1.0 + else: + push_error("Invalid Color format for \'" + property + "\' in entity \'" + def.classname + "\': " + prop_string) + properties[property] = prop_color + TYPE_DICTIONARY: + var prop_desc = def.class_property_descriptions[property] + if prop_desc is Array and prop_desc.size() > 1 and prop_desc[1] is int: + properties[property] = prop_string.to_int() + TYPE_ARRAY: + properties[property] = prop_string.to_int() + TYPE_VECTOR2: + var prop_comps: PackedFloat64Array = prop_string.split_floats(" ") + if prop_comps.size() > 1: + properties[property] = Vector2(prop_comps[0], prop_comps[1]) + else: + push_error("Invalid Vector2 format for \'" + property + "\' in entity \'" + def.classname + "\': " + prop_string) + properties[property] = prop_default + TYPE_VECTOR2I: + var prop_vec: Vector2i = prop_default + var prop_comps: PackedStringArray = prop_string.split(" ") + if prop_comps.size() > 1: + for i in 2: + prop_vec[i] = prop_comps[i].to_int() + else: + push_error("Invalid Vector2i format for \'" + property + "\' in entity \'" + def.classname + "\': " + prop_string) + properties[property] = prop_vec + TYPE_VECTOR4: + var prop_comps: PackedFloat64Array = prop_string.split_floats(" ") + if prop_comps.size() > 3: + properties[property] = Vector4(prop_comps[0], prop_comps[1], prop_comps[2], prop_comps[3]) + else: + push_error("Invalid Vector4 format for \'" + property + "\' in entity \'" + def.classname + "\': " + prop_string) + properties[property] = prop_default + TYPE_VECTOR4I: + var prop_vec: Vector4i = prop_default + var prop_comps: PackedStringArray = prop_string.split(" ") + if prop_comps.size() > 3: + for i in 4: + prop_vec[i] = prop_comps[i].to_int() + else: + push_error("Invalid Vector4i format for \'" + property + "\' in entity \'" + def.classname + "\': " + prop_string) + properties[property] = prop_vec + TYPE_STRING_NAME: + properties[property] = StringName(prop_string) + TYPE_NODE_PATH: + properties[property] = prop_string + TYPE_OBJECT: + properties[property] = prop_string + + # Assign properties not defined with defaults from the entity definition + for property in def.class_properties: + if not property in properties: + var prop_default: Variant = def.class_properties[property] + # Flags + if prop_default is Array: + var prop_flags_sum := 0 + for prop_flag in prop_default: + if prop_flag is Array and prop_flag.size() > 2: + if prop_flag[2] and prop_flag[1] is int: + prop_flags_sum += prop_flag[1] + properties[property] = prop_flags_sum + # Choices + elif prop_default is Dictionary: + var prop_desc = def.class_property_descriptions.get(property, "") + if prop_desc is Array and prop_desc.size() > 1 and (prop_desc[1] is int or prop_desc[1] is String): + properties[property] = prop_desc[1] + elif prop_default.size(): + properties[property] = prop_default[prop_default.keys().front()] + else: + properties[property] = 0 + # Materials, Shaders, and Sounds + elif prop_default is Resource: + properties[property] = prop_default.resource_path + # Target Destination and Target Source + elif prop_default is NodePath or prop_default is Object or prop_default == null: + properties[property] = "" + # Everything else + else: + properties[property] = prop_default + + if def.auto_apply_to_matching_node_properties: + for property in properties: + if property in node: + if typeof(node.get(property)) == typeof(properties[property]): + node.set(property, properties[property]) + else: + push_error("Entity %s property \'%s\' type mismatch with matching generated node property." % [node.name, property]) + + if "func_godot_properties" in node: + node.func_godot_properties = properties + + if node.has_method("_func_godot_apply_properties"): + node.call("_func_godot_apply_properties", properties) + + if node.has_method("_func_godot_build_complete"): + node.call_deferred("_func_godot_build_complete") + +## Generate a [Node] from [FuncGodotData.EntityData]. The returned node value can be [code]null[/code], +## in the case of [FuncGodotFGDSolidClass] entities with no [FuncGodotData.BrushData] entries. +func generate_entity_node(entity_data: _EntityData, entity_index: int) -> Node: + var node: Node = null + var node_name: String = "entity_%s" % entity_index + var properties: Dictionary = entity_data.properties + var entity_def: FuncGodotFGDEntityClass = entity_data.definition + + if "classname" in entity_data.properties: + var classname: String = properties["classname"] + + node_name += "_" + properties["classname"] + var default_point_def := FuncGodotFGDPointClass.new() + var default_solid_def := FuncGodotFGDSolidClass.new() + default_solid_def.collision_shape_type = FuncGodotFGDSolidClass.CollisionShapeType.NONE + + if entity_def: + var name_prop: String + if entity_def.name_property in properties: + name_prop = str(properties[entity_def.name_property]) + elif map_settings.entity_name_property in properties: + name_prop = str(properties[map_settings.entity_name_property]) + if not name_prop.is_empty(): + node_name = "entity_" + name_prop + + if entity_def is FuncGodotFGDSolidClass: + node = generate_solid_entity_node(node, node_name, entity_data, entity_def) + elif entity_def is FuncGodotFGDPointClass: + node = generate_point_entity_node(node, node_name, properties, entity_def) + else: + push_error("Invalid entity definition for \"" + node_name + "\". Entity definition must be Solid Class or Point Class.") + node = generate_point_entity_node(node, node_name, properties, default_point_def) + + if node and entity_def.script_class: + node.set_script(entity_def.script_class) + else: + push_error("No entity definition found for \"" + node_name + "\"") + if entity_data.brushes.size(): + node = generate_solid_entity_node(node, node_name, entity_data, default_solid_def) + else: + node = generate_point_entity_node(node, node_name, properties, default_point_def) + + return node + +## Main entity assembly process called by [FuncGodotMap]. Generates and sorts group nodes in the [SceneTree] first, +## then generates and assembles [Node]s based upon the provided [FuncGodotData.EntityData] and adds them to the [SceneTree]. +func build(map_node: FuncGodotMap, entities: Array[_EntityData], groups: Array[_GroupData]) -> void: + var scene_root := map_node.get_tree().edited_scene_root if map_node.get_tree() else map_node + build_flags = map_node.build_flags + + if map_settings.use_groups_hierarchy: + declare_step.emit("Generating %s groups" % groups.size()) + # Generate group nodes + for group in groups: + group.node = generate_group_node(group) + # Sort hierarchy and add them to the map + for group in groups: + if group.parent_id < 0: + map_node.add_child(group.node) + group.node.owner = scene_root + else: + for parent in groups: + if group.parent_id == parent.id: + parent.node.add_child(group.node) + group.node.owner = scene_root + declare_step.emit("Groups generation and sorting complete") + + declare_step.emit("Assembling %s entities" % entities.size()) + var entity_node: Node = null + for entity_index in entities.size(): + var entity_data : _EntityData = entities[entity_index] + entity_node = generate_entity_node(entity_data, entity_index) + if entity_node: + if not map_settings.use_groups_hierarchy or not entity_data.group: + map_node.add_child(entity_node) + if entity_index == 0: + map_node.move_child(entity_node, 0) + elif map_settings.use_groups_hierarchy: + for group in groups: + if entity_data.group.id == group.id: + group.node.add_child(entity_node) + + entity_node.owner = scene_root + if entity_data.mesh_instance: + entity_data.mesh_instance.owner = scene_root + for shape in entity_data.collision_shapes: + if shape: + shape.owner = scene_root + if entity_data.occluder_instance: + entity_data.occluder_instance.owner = scene_root + + apply_entity_properties(entity_node, entity_data) + declare_step.emit("Entity assembly and property application complete") diff --git a/addons/func_godot/src/core/entity_assembler.gd.uid b/addons/func_godot/src/core/entity_assembler.gd.uid new file mode 100644 index 0000000..7bec2d0 --- /dev/null +++ b/addons/func_godot/src/core/entity_assembler.gd.uid @@ -0,0 +1 @@ +uid://dh73tfvwp7kr6 diff --git a/addons/func_godot/src/core/func_godot.gd b/addons/func_godot/src/core/func_godot.gd deleted file mode 100644 index 1b85091..0000000 --- a/addons/func_godot/src/core/func_godot.gd +++ /dev/null @@ -1,139 +0,0 @@ -class_name FuncGodot extends RefCounted - -var map_data:= FuncGodotMapData.new() -var map_parser:= FuncGodotMapParser.new(map_data) -var geo_generator = preload("res://addons/func_godot/src/core/func_godot_geo_generator.gd").new(map_data) -var surface_gatherer:= FuncGodotSurfaceGatherer.new(map_data) - -func load_map(filename: String, keep_tb_groups: bool) -> void: - map_parser.load(filename, keep_tb_groups) - -func get_texture_list() -> PackedStringArray: - var g_textures: PackedStringArray - var tex_count: int = map_data.textures.size() - - g_textures.resize(tex_count) - for i in range(tex_count): - g_textures.set(i, map_data.textures[i].name) - - return g_textures - -func set_entity_definitions(entity_defs: Dictionary) -> void: - for i in range(entity_defs.size()): - var classname: String = entity_defs.keys()[i] - var spawn_type: int = entity_defs.values()[i].get("spawn_type", FuncGodotMapData.FuncGodotEntitySpawnType.ENTITY) - var origin_type: int = entity_defs.values()[i].get("origin_type", FuncGodotMapData.FuncGodotEntityOriginType.IGNORE) - map_data.set_entity_types_by_classname(classname, spawn_type, origin_type) - -func generate_geometry(texture_dict: Dictionary) -> void: - var keys: Array = texture_dict.keys() - for key in keys: - var val: Vector2 = texture_dict[key] - map_data.set_texture_size(key, val.x, val.y) - geo_generator.run() - -func get_entity_dicts() -> Array: - var ent_dicts: Array - for entity in map_data.entities: - var dict: Dictionary - dict["brush_count"] = entity.brushes.size() - - # TODO: This is a horrible remnant of the worldspawn layer system, remove it. - var brush_indices: PackedInt64Array - brush_indices.resize(entity.brushes.size()) - for b in range(entity.brushes.size()): - brush_indices[b] = b - - dict["brush_indices"] = brush_indices - dict["center"] = Vector3(entity.center.y, entity.center.z, entity.center.x) - dict["properties"] = entity.properties - - ent_dicts.append(dict) - - return ent_dicts - -func gather_texture_surfaces_mt(texture_name: String, clip_filter_texture: String, skip_filter_texture: String, inverse_scale_factor: float) -> Array: - var sg: FuncGodotSurfaceGatherer = FuncGodotSurfaceGatherer.new(map_data) - sg.reset_params() - sg.split_type = FuncGodotSurfaceGatherer.SurfaceSplitType.ENTITY - sg.set_texture_filter(texture_name) - sg.set_clip_filter_texture(clip_filter_texture) - sg.set_skip_filter_texture(skip_filter_texture) - sg.run() - return _fetch_surfaces_internal(sg, inverse_scale_factor) - -func gather_worldspawn_layer_surfaces(texture_name: String, clip_filter_texture: String, skip_filter_texture: String) -> void: - _gather_texture_surfaces_internal(texture_name, clip_filter_texture, skip_filter_texture) - -func gather_entity_convex_collision_surfaces(entity_idx: int) -> void: - _gather_convex_collision_surfaces(entity_idx) - -func gather_entity_concave_collision_surfaces(entity_idx: int, skip_filter_texture: String) -> void: - _gather_concave_collision_surfaces(entity_idx, skip_filter_texture) - -func gather_worldspawn_layer_collision_surfaces(entity_idx: int) -> void: - _gather_convex_collision_surfaces(entity_idx) - -func fetch_surfaces(inverse_scale_factor: float) -> Array: - return _fetch_surfaces_internal(surface_gatherer, inverse_scale_factor) - -func _fetch_surfaces_internal(surf_gatherer: FuncGodotSurfaceGatherer, inverse_scale_factor: float) -> Array: - var surfs: Array[FuncGodotMapData.FuncGodotFaceGeometry] = surf_gatherer.out_surfaces - var surf_array: Array - - for surf in surfs: - if surf == null or surf.vertices.size() == 0: - surf_array.append(null) - continue - - var vertices: PackedVector3Array - var normals: PackedVector3Array - var tangents: PackedFloat64Array - var uvs: PackedVector2Array - for v in surf.vertices: - vertices.append(Vector3(v.vertex.y, v.vertex.z, v.vertex.x) / inverse_scale_factor) - normals.append(Vector3(v.normal.y, v.normal.z, v.normal.x)) - tangents.append(v.tangent.y) - tangents.append(v.tangent.z) - tangents.append(v.tangent.x) - tangents.append(v.tangent.w) - uvs.append(Vector2(v.uv.x, v.uv.y)) - - var indices: PackedInt32Array - if surf.indicies.size() > 0: - indices.append_array(surf.indicies) - - var brush_array: Array - brush_array.resize(Mesh.ARRAY_MAX) - - brush_array[Mesh.ARRAY_VERTEX] = vertices - brush_array[Mesh.ARRAY_NORMAL] = normals - brush_array[Mesh.ARRAY_TANGENT] = tangents - brush_array[Mesh.ARRAY_TEX_UV] = uvs - brush_array[Mesh.ARRAY_INDEX] = indices - - surf_array.append(brush_array) - - return surf_array - -# internal -func _gather_texture_surfaces_internal(texture_name: String, clip_filter_texture: String, skip_filter_texture: String) -> void: - surface_gatherer.reset_params() - surface_gatherer.split_type = FuncGodotSurfaceGatherer.SurfaceSplitType.ENTITY - surface_gatherer.set_texture_filter(texture_name) - surface_gatherer.set_clip_filter_texture(clip_filter_texture) - surface_gatherer.set_skip_filter_texture(skip_filter_texture) - surface_gatherer.run() - -func _gather_convex_collision_surfaces(entity_idx: int) -> void: - surface_gatherer.reset_params() - surface_gatherer.split_type = FuncGodotSurfaceGatherer.SurfaceSplitType.BRUSH - surface_gatherer.entity_filter_idx = entity_idx - surface_gatherer.run() - -func _gather_concave_collision_surfaces(entity_idx: int, skip_filter_texture: String) -> void: - surface_gatherer.reset_params() - surface_gatherer.split_type = FuncGodotSurfaceGatherer.SurfaceSplitType.NONE - surface_gatherer.entity_filter_idx = entity_idx - surface_gatherer.set_skip_filter_texture(skip_filter_texture) - surface_gatherer.run() diff --git a/addons/func_godot/src/core/func_godot.gd.uid b/addons/func_godot/src/core/func_godot.gd.uid deleted file mode 100644 index fa04bd0..0000000 --- a/addons/func_godot/src/core/func_godot.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://b13x4qa2xgrkb diff --git a/addons/func_godot/src/core/func_godot_geo_generator.gd b/addons/func_godot/src/core/func_godot_geo_generator.gd deleted file mode 100644 index d586350..0000000 --- a/addons/func_godot/src/core/func_godot_geo_generator.gd +++ /dev/null @@ -1,352 +0,0 @@ -extends RefCounted - -# Min distance between two verts in a brush before they're merged. Higher values fix angled brushes near extents. -const CMP_EPSILON:= 0.008 - -const UP_VECTOR:= Vector3(0.0, 0.0, 1.0) -const RIGHT_VECTOR:= Vector3(0.0, 1.0, 0.0) -const FORWARD_VECTOR:= Vector3(1.0, 0.0, 0.0) - -var map_data: FuncGodotMapData - -var wind_entity_idx: int = 0 -var wind_brush_idx: int = 0 -var wind_face_idx: int = 0 -var wind_face_center: Vector3 -var wind_face_basis: Vector3 -var wind_face_normal: Vector3 - -func _init(in_map_data: FuncGodotMapData) -> void: - map_data = in_map_data - -func sort_vertices_by_winding(a, b) -> bool: - var face:= map_data.entities[wind_entity_idx].brushes[wind_brush_idx].faces[wind_face_idx] - var face_geo:= map_data.entity_geo[wind_entity_idx].brushes[wind_brush_idx].faces[wind_face_idx] - - var u:= wind_face_basis.normalized() - var v:= u.cross(wind_face_normal).normalized() - - var loc_a = a.vertex - wind_face_center - var a_pu: float = loc_a.dot(u) - var a_pv: float = loc_a.dot(v) - - var loc_b = b.vertex - wind_face_center - var b_pu: float = loc_b.dot(u) - var b_pv: float = loc_b.dot(v) - - var a_angle:= atan2(a_pv, a_pu) - var b_angle:= atan2(b_pv, b_pu) - - return a_angle < b_angle - -func run() -> void: - # resize arrays - map_data.entity_geo.resize(map_data.entities.size()) - for i in range(map_data.entity_geo.size()): - map_data.entity_geo[i] = FuncGodotMapData.FuncGodotEntityGeometry.new() - - for e in range(map_data.entities.size()): - var entity:= map_data.entities[e] - var entity_geo:= map_data.entity_geo[e] - entity_geo.brushes.resize(entity.brushes.size()) - for i in range(entity_geo.brushes.size()): - entity_geo.brushes[i] = FuncGodotMapData.FuncGodotBrushGeometry.new() - - for b in range(entity.brushes.size()): - var brush:= entity.brushes[b] - var brush_geo:= entity_geo.brushes[b] - brush_geo.faces.resize(brush.faces.size()) - for i in range(brush_geo.faces.size()): - brush_geo.faces[i] = FuncGodotMapData.FuncGodotFaceGeometry.new() - - var generate_vertices_task = func(e): - var entity:= map_data.entities[e] - var entity_geo:= map_data.entity_geo[e] - entity.center = Vector3.ZERO - - for b in range(entity.brushes.size()): - var brush:= entity.brushes[b] - brush.center = Vector3.ZERO - var vert_count: int = 0 - - generate_brush_vertices(e, b) - - var brush_geo:= map_data.entity_geo[e].brushes[b] - for face in brush_geo.faces: - for vert in face.vertices: - brush.center += vert.vertex - vert_count += 1 - - if vert_count > 0: - brush.center /= float(vert_count) - - entity.center += brush.center - - if entity.brushes.size() > 0: - entity.center /= float(entity.brushes.size()) - if entity.origin_type != FuncGodotMapData.FuncGodotEntityOriginType.IGNORE and 'origin' in entity.properties: - var origin_comps: PackedFloat64Array = entity.properties['origin'].split_floats(' ') - if origin_comps.size() > 2: - if entity.origin_type == FuncGodotMapData.FuncGodotEntityOriginType.ABSOLUTE: - entity.center = Vector3(origin_comps[0], origin_comps[1], origin_comps[2]) - elif entity.origin_type == FuncGodotMapData.FuncGodotEntityOriginType.RELATIVE: - entity.center += Vector3(origin_comps[0], origin_comps[1], origin_comps[2]) - - var generate_vertices_task_id:= WorkerThreadPool.add_group_task(generate_vertices_task, map_data.entities.size(), 4, true) - WorkerThreadPool.wait_for_group_task_completion(generate_vertices_task_id) - - # wind face vertices - for e in range(map_data.entities.size()): - var entity:= map_data.entities[e] - var entity_geo:= map_data.entity_geo[e] - - for b in range(entity.brushes.size()): - var brush:= entity.brushes[b] - var brush_geo:= entity_geo.brushes[b] - - for f in range(brush.faces.size()): - var face:= brush.faces[f] - var face_geo:= brush_geo.faces[f] - - if face_geo.vertices.size() < 3: - continue - - wind_entity_idx = e - wind_brush_idx = b - wind_face_idx = f - - wind_face_basis = face_geo.vertices[1].vertex - face_geo.vertices[0].vertex - wind_face_center = Vector3.ZERO - wind_face_normal = face.plane_normal - - for v in face_geo.vertices: - wind_face_center += v.vertex - - wind_face_center /= face_geo.vertices.size() - - face_geo.vertices.sort_custom(sort_vertices_by_winding) - wind_entity_idx = 0 - - # index face vertices - var index_faces_task:= func(e): - var entity_geo:= map_data.entity_geo[e] - - for b in range(entity_geo.brushes.size()): - var brush_geo:= entity_geo.brushes[b] - - for f in range(brush_geo.faces.size()): - var face_geo:= brush_geo.faces[f] - - if face_geo.vertices.size() < 3: - continue - - var i_count: int = 0 - face_geo.indicies.resize((face_geo.vertices.size() - 2) * 3) - for i in range(face_geo.vertices.size() - 2): - face_geo.indicies[i_count] = 0 - face_geo.indicies[i_count + 1] = i + 1 - face_geo.indicies[i_count + 2] = i + 2 - i_count += 3 - - var index_faces_task_id:= WorkerThreadPool.add_group_task(index_faces_task, map_data.entities.size(), 4, true) - WorkerThreadPool.wait_for_group_task_completion(index_faces_task_id) - -func generate_brush_vertices(entity_idx: int, brush_idx: int) -> void: - var entity:= map_data.entities[entity_idx] - var brush:= entity.brushes[brush_idx] - var face_count: int = brush.faces.size() - - var entity_geo:= map_data.entity_geo[entity_idx] - var brush_geo:= entity_geo.brushes[brush_idx] - - var phong: bool = entity.properties.get("_phong", "0") == "1" - var phong_angle_str: String = entity.properties.get("_phong_angle", "89") - var phong_angle: float = float(phong_angle_str) if phong_angle_str.is_valid_float() else 89.0 - - for f0 in range(face_count): - var face:= brush.faces[f0] - var face_geo:= brush_geo.faces[f0] - var texture:= map_data.textures[face.texture_idx] - - for f1 in range(face_count): - for f2 in range(face_count): - var vertex = intersect_face(brush.faces[f0], brush.faces[f1], brush.faces[f2]) - if not vertex is Vector3: - continue - if not vertex_in_hull(brush.faces, vertex): - continue - - var merged: bool = false - for f3 in range(f0): - var other_face_geo := brush_geo.faces[f3] - for i in range(len(other_face_geo.vertices)): - if other_face_geo.vertices[i].vertex.distance_to(vertex) < CMP_EPSILON: - vertex = other_face_geo.vertices[i].vertex - merged = true; - break - - if merged: - break - - var normal: Vector3 - if phong: - var threshold:= cos((phong_angle + 0.01) * 0.0174533) - normal = face.plane_normal - if face.plane_normal.dot(brush.faces[f1].plane_normal) > threshold: - normal += brush.faces[f1].plane_normal - if face.plane_normal.dot(brush.faces[f2].plane_normal) > threshold: - normal += brush.faces[f2].plane_normal - normal = normal.normalized() - else: - normal = face.plane_normal - - var uv: Vector2 - var tangent: Vector4 - if face.is_valve_uv: - uv = get_valve_uv(vertex, face, texture.width, texture.height) - tangent = get_valve_tangent(face) - else: - uv = get_standard_uv(vertex, face, texture.width, texture.height) - tangent = get_standard_tangent(face) - - # Check for a duplicate vertex in the current face. - var duplicate_idx: int = -1 - for i in range(face_geo.vertices.size()): - if face_geo.vertices[i].vertex == vertex: - duplicate_idx = i - break - - if duplicate_idx < 0: - var new_face_vert:= FuncGodotMapData.FuncGodotFaceVertex.new() - new_face_vert.vertex = vertex - new_face_vert.normal = normal - new_face_vert.tangent = tangent - new_face_vert.uv = uv - face_geo.vertices.append(new_face_vert) - elif phong: - face_geo.vertices[duplicate_idx].normal += normal - - # maybe optimisable? - for face_geo in brush_geo.faces: - for i in range(face_geo.vertices.size()): - face_geo.vertices[i].normal = face_geo.vertices[i].normal.normalized() - -# returns null if no intersection, else intersection vertex. -func intersect_face(f0: FuncGodotMapData.FuncGodotFace, f1: FuncGodotMapData.FuncGodotFace, f2: FuncGodotMapData.FuncGodotFace): - var n0:= f0.plane_normal - var n1:= f1.plane_normal - var n2:= f2.plane_normal - - var denom: float = n0.cross(n1).dot(n2) - if denom < CMP_EPSILON: - return null - - return (n1.cross(n2) * f0.plane_dist + n2.cross(n0) * f1.plane_dist + n0.cross(n1) * f2.plane_dist) / denom - -func vertex_in_hull(faces: Array[FuncGodotMapData.FuncGodotFace], vertex: Vector3) -> bool: - for face in faces: - var proj: float = face.plane_normal.dot(vertex) - if proj > face.plane_dist and absf(face.plane_dist - proj) > CMP_EPSILON: - return false - - return true - -func get_standard_uv(vertex: Vector3, face: FuncGodotMapData.FuncGodotFace, texture_width: int, texture_height: int) -> Vector2: - var uv_out: Vector2 - var du:= absf(face.plane_normal.dot(UP_VECTOR)) - var dr:= absf(face.plane_normal.dot(RIGHT_VECTOR)) - var df:= absf(face.plane_normal.dot(FORWARD_VECTOR)) - - if du >= dr and du >= df: - uv_out = Vector2(vertex.x, -vertex.y) - elif dr >= du and dr >= df: - uv_out = Vector2(vertex.x, -vertex.z) - elif df >= du and df >= dr: - uv_out = Vector2(vertex.y, -vertex.z) - - var angle: float = deg_to_rad(face.uv_extra.rot) - uv_out = Vector2( - uv_out.x * cos(angle) - uv_out.y * sin(angle), - uv_out.x * sin(angle) + uv_out.y * cos(angle)) - - uv_out.x /= texture_width - uv_out.y /= texture_height - - uv_out.x /= face.uv_extra.scale_x - uv_out.y /= face.uv_extra.scale_y - - uv_out.x += face.uv_standard.x / texture_width - uv_out.y += face.uv_standard.y / texture_height - - return uv_out - -func get_valve_uv(vertex: Vector3, face: FuncGodotMapData.FuncGodotFace, texture_width: int, texture_height: int) -> Vector2: - var uv_out: Vector2 - var u_axis:= face.uv_valve.u.axis - var v_axis:= face.uv_valve.v.axis - var u_shift:= face.uv_valve.u.offset - var v_shift:= face.uv_valve.v.offset - - uv_out.x = u_axis.dot(vertex); - uv_out.y = v_axis.dot(vertex); - - uv_out.x /= texture_width; - uv_out.y /= texture_height; - - uv_out.x /= face.uv_extra.scale_x; - uv_out.y /= face.uv_extra.scale_y; - - uv_out.x += u_shift / texture_width; - uv_out.y += v_shift / texture_height; - - return uv_out - -func get_standard_tangent(face: FuncGodotMapData.FuncGodotFace) -> Vector4: - var du:= face.plane_normal.dot(UP_VECTOR) - var dr:= face.plane_normal.dot(RIGHT_VECTOR) - var df:= face.plane_normal.dot(FORWARD_VECTOR) - var dua:= absf(du) - var dra:= absf(dr) - var dfa:= absf(df) - - var u_axis: Vector3 - var v_sign: float = 0.0 - - if dua >= dra and dua >= dfa: - u_axis = FORWARD_VECTOR - v_sign = signf(du) - elif dra >= dua and dra >= dfa: - u_axis = FORWARD_VECTOR - v_sign = -signf(dr) - elif dfa >= dua and dfa >= dra: - u_axis = RIGHT_VECTOR - v_sign = signf(df) - - v_sign *= signf(face.uv_extra.scale_y); - u_axis = u_axis.rotated(face.plane_normal, deg_to_rad(-face.uv_extra.rot) * v_sign) - - return Vector4(u_axis.x, u_axis.y, u_axis.z, v_sign) - -func get_valve_tangent(face: FuncGodotMapData.FuncGodotFace) -> Vector4: - var u_axis:= face.uv_valve.u.axis.normalized() - var v_axis:= face.uv_valve.v.axis.normalized() - var v_sign = -signf(face.plane_normal.cross(u_axis).dot(v_axis)) - - return Vector4(u_axis.x, u_axis.y, u_axis.z, v_sign) - -func get_entities() -> Array[FuncGodotMapData.FuncGodotEntityGeometry]: - return map_data.entity_geo - -func get_brush_vertex_count(entity_idx: int, brush_idx: int) -> int: - var vertex_count: int = 0 - var brush_geo:= map_data.entity_geo[entity_idx].brushes[brush_idx] - for face in brush_geo.faces: - vertex_count += face.vertices.size() - return vertex_count - -func get_brush_index_count(entity_idx: int, brush_idx: int) -> int: - var index_count: int = 0 - var brush_geo:= map_data.entity_geo[entity_idx].brushes[brush_idx] - for face in brush_geo.faces: - index_count += face.indicies.size() - return index_count diff --git a/addons/func_godot/src/core/func_godot_geo_generator.gd.uid b/addons/func_godot/src/core/func_godot_geo_generator.gd.uid deleted file mode 100644 index ac65d6b..0000000 --- a/addons/func_godot/src/core/func_godot_geo_generator.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://bc8yx7le80s04 diff --git a/addons/func_godot/src/core/func_godot_map_data.gd b/addons/func_godot/src/core/func_godot_map_data.gd deleted file mode 100644 index 3d31ea5..0000000 --- a/addons/func_godot/src/core/func_godot_map_data.gd +++ /dev/null @@ -1,135 +0,0 @@ -class_name FuncGodotMapData extends RefCounted - -var entities: Array[FuncGodotMapData.FuncGodotEntity] -var entity_geo: Array[FuncGodotMapData.FuncGodotEntityGeometry] -var textures: Array[FuncGodotMapData.FuncGodotTextureData] - -func register_texture(name: String) -> int: - for i in range(textures.size()): - if textures[i].name == name: - return i - - textures.append(FuncGodotTextureData.new(name)) - return textures.size() - 1 - -func set_texture_size(name: String, width: int, height: int) -> void: - for i in range(textures.size()): - if textures[i].name == name: - textures[i].width = width - textures[i].height = height - return - -func find_texture(texture_name: String) -> int: - for i in range(textures.size()): - if textures[i].name == texture_name: - return i - return -1 - -func set_entity_types_by_classname(classname: String, spawn_type: int, origin_type: int) -> void: - for entity in entities: - if entity.properties.has("classname") and entity.properties["classname"] == classname: - entity.spawn_type = spawn_type as FuncGodotMapData.FuncGodotEntitySpawnType - if entity.spawn_type == FuncGodotMapData.FuncGodotEntitySpawnType.ENTITY: - entity.origin_type = origin_type as FuncGodotMapData.FuncGodotEntityOriginType - else: - entity.origin_type = FuncGodotMapData.FuncGodotEntityOriginType.IGNORE - -func clear() -> void: - entities.clear() - entity_geo.clear() - textures.clear() - -# -------------------------------------------------------------------------------------------------- -# Nested Types -# -------------------------------------------------------------------------------------------------- -enum FuncGodotEntitySpawnType { - WORLDSPAWN = 0, - MERGE_WORLDSPAWN = 1, - ENTITY = 2 -} - -enum FuncGodotEntityOriginType { - IGNORE = 0, - ABSOLUTE = 1, - RELATIVE = 2 -} - -class FuncGodotFacePoints: - var v0: Vector3 - var v1: Vector3 - var v2: Vector3 - -class FuncGodotValveTextureAxis: - var axis: Vector3 - var offset: float - -class FuncGodotValveUV: - var u: FuncGodotValveTextureAxis - var v: FuncGodotValveTextureAxis - - func _init() -> void: - u = FuncGodotValveTextureAxis.new() - v = FuncGodotValveTextureAxis.new() - -class FuncGodotFaceUVExtra: - var rot: float - var scale_x: float - var scale_y: float - -class FuncGodotFace: - var plane_points: FuncGodotFacePoints - var plane_normal: Vector3 - var plane_dist: float - var texture_idx: int - var is_valve_uv: bool - var uv_standard: Vector2 - var uv_valve: FuncGodotValveUV - var uv_extra: FuncGodotFaceUVExtra - - func _init() -> void: - plane_points = FuncGodotFacePoints.new() - uv_valve = FuncGodotValveUV.new() - uv_extra = FuncGodotFaceUVExtra.new() - -class FuncGodotBrush: - var faces: Array[FuncGodotFace] - var center: Vector3 - -class FuncGodotEntity: - var properties: Dictionary - var brushes: Array[FuncGodotBrush] - var center: Vector3 - var spawn_type: FuncGodotEntitySpawnType - var origin_type: FuncGodotEntityOriginType - -class FuncGodotFaceVertex: - var vertex: Vector3 - var normal: Vector3 - var uv: Vector2 - var tangent: Vector4 - - func duplicate() -> FuncGodotFaceVertex: - var new_vert := FuncGodotFaceVertex.new() - new_vert.vertex = vertex - new_vert.normal = normal - new_vert.uv = uv - new_vert.tangent = tangent - return new_vert - -class FuncGodotFaceGeometry: - var vertices: Array[FuncGodotFaceVertex] - var indicies: Array[int] - -class FuncGodotBrushGeometry: - var faces: Array[FuncGodotFaceGeometry] - -class FuncGodotEntityGeometry: - var brushes: Array[FuncGodotBrushGeometry] - -class FuncGodotTextureData: - var name: String - var width: int - var height: int - - func _init(in_name: String): - name = in_name diff --git a/addons/func_godot/src/core/func_godot_map_data.gd.uid b/addons/func_godot/src/core/func_godot_map_data.gd.uid deleted file mode 100644 index 8549eff..0000000 --- a/addons/func_godot/src/core/func_godot_map_data.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://ct2p43hd44co8 diff --git a/addons/func_godot/src/core/func_godot_map_parser.gd b/addons/func_godot/src/core/func_godot_map_parser.gd deleted file mode 100644 index b3a1cf7..0000000 --- a/addons/func_godot/src/core/func_godot_map_parser.gd +++ /dev/null @@ -1,307 +0,0 @@ -class_name FuncGodotMapParser extends RefCounted - -var scope:= FuncGodotMapParser.ParseScope.FILE -var comment: bool = false -var entity_idx: int = -1 -var brush_idx: int = -1 -var face_idx: int = -1 -var component_idx: int = 0 -var prop_key: String = "" -var current_property: String = "" -var valve_uvs: bool = false - -var current_face: FuncGodotMapData.FuncGodotFace -var current_brush: FuncGodotMapData.FuncGodotBrush -var current_entity: FuncGodotMapData.FuncGodotEntity - -var map_data: FuncGodotMapData -var _keep_tb_groups: bool = false - -func _init(in_map_data: FuncGodotMapData) -> void: - map_data = in_map_data - -func load(map_file: String, keep_tb_groups: bool) -> bool: - current_face = FuncGodotMapData.FuncGodotFace.new() - current_brush = FuncGodotMapData.FuncGodotBrush.new() - current_entity = FuncGodotMapData.FuncGodotEntity.new() - - scope = FuncGodotMapParser.ParseScope.FILE - comment = false - entity_idx = -1 - brush_idx = -1 - face_idx = -1 - component_idx = 0 - valve_uvs = false - _keep_tb_groups = keep_tb_groups - - var map: FileAccess = FileAccess.open(map_file, FileAccess.READ) - if map == null: - printerr("Error: Failed to open map file (" + map_file + ")") - return false - - while not map.eof_reached(): - var line: String = map.get_line() - if comment: - comment = false - - var tokens := split_string(line, [" ", "\t"], true) - for s in tokens: - token(s) - - return true - -func split_string(s: String, delimeters: Array[String], allow_empty: bool = true) -> Array[String]: - var parts: Array[String] = [] - - var start := 0 - var i := 0 - - while i < s.length(): - if s[i] in delimeters: - if allow_empty or start < i: - parts.push_back(s.substr(start, i - start)) - start = i + 1 - i += 1 - - if allow_empty or start < i: - parts.push_back(s.substr(start, i - start)) - - return parts - -func set_scope(new_scope: FuncGodotMapParser.ParseScope) -> void: - """ - match new_scope: - ParseScope.FILE: - print("Switching to file scope.") - ParseScope.ENTITY: - print("Switching to entity " + str(entity_idx) + "scope") - ParseScope.PROPERTY_VALUE: - print("Switching to property value scope") - ParseScope.BRUSH: - print("Switching to brush " + str(brush_idx) + " scope") - ParseScope.PLANE_0: - print("Switching to face " + str(face_idx) + " plane 0 scope") - ParseScope.PLANE_1: - print("Switching to face " + str(face_idx) + " plane 1 scope") - ParseScope.PLANE_2: - print("Switching to face " + str(face_idx) + " plane 2 scope") - ParseScope.TEXTURE: - print("Switching to texture scope") - ParseScope.U: - print("Switching to U scope") - ParseScope.V: - print("Switching to V scope") - ParseScope.VALVE_U: - print("Switching to Valve U scope") - ParseScope.VALVE_V: - print("Switching to Valve V scope") - ParseScope.ROT: - print("Switching to rotation scope") - ParseScope.U_SCALE: - print("Switching to U scale scope") - ParseScope.V_SCALE: - print("Switching to V scale scope") - """ - scope = new_scope - -func token(buf_str: String) -> void: - if comment: - return - elif buf_str == "//": - comment = true - return - - match scope: - FuncGodotMapParser.ParseScope.FILE: - if buf_str == "{": - entity_idx += 1 - brush_idx = -1 - set_scope(FuncGodotMapParser.ParseScope.ENTITY) - FuncGodotMapParser.ParseScope.ENTITY: - if buf_str.begins_with('"'): - prop_key = buf_str.substr(1) - if prop_key.ends_with('"'): - prop_key = prop_key.left(-1) - set_scope(FuncGodotMapParser.ParseScope.PROPERTY_VALUE) - elif buf_str == "{": - brush_idx += 1 - face_idx = -1 - set_scope(FuncGodotMapParser.ParseScope.BRUSH) - elif buf_str == "}": - commit_entity() - set_scope(FuncGodotMapParser.ParseScope.FILE) - FuncGodotMapParser.ParseScope.PROPERTY_VALUE: - var is_first = buf_str[0] == '"' - var is_last = buf_str.right(1) == '"' - - if is_first: - if current_property != "": - current_property = "" - - if not is_last: - current_property += buf_str + " " - else: - current_property += buf_str - - if is_last: - current_entity.properties[prop_key] = current_property.substr(1, len(current_property) - 2) - set_scope(FuncGodotMapParser.ParseScope.ENTITY) - FuncGodotMapParser.ParseScope.BRUSH: - if buf_str == "(": - face_idx += 1 - component_idx = 0 - set_scope(FuncGodotMapParser.ParseScope.PLANE_0) - elif buf_str == "}": - commit_brush() - set_scope(FuncGodotMapParser.ParseScope.ENTITY) - FuncGodotMapParser.ParseScope.PLANE_0: - if buf_str == ")": - component_idx = 0 - set_scope(FuncGodotMapParser.ParseScope.PLANE_1) - else: - match component_idx: - 0: - current_face.plane_points.v0.x = float(buf_str) - 1: - current_face.plane_points.v0.y = float(buf_str) - 2: - current_face.plane_points.v0.z = float(buf_str) - - component_idx += 1 - FuncGodotMapParser.ParseScope.PLANE_1: - if buf_str != "(": - if buf_str == ")": - component_idx = 0 - set_scope(FuncGodotMapParser.ParseScope.PLANE_2) - else: - match component_idx: - 0: - current_face.plane_points.v1.x = float(buf_str) - 1: - current_face.plane_points.v1.y = float(buf_str) - 2: - current_face.plane_points.v1.z = float(buf_str) - - component_idx += 1 - FuncGodotMapParser.ParseScope.PLANE_2: - if buf_str != "(": - if buf_str == ")": - component_idx = 0 - set_scope(FuncGodotMapParser.ParseScope.TEXTURE) - else: - match component_idx: - 0: - current_face.plane_points.v2.x = float(buf_str) - 1: - current_face.plane_points.v2.y = float(buf_str) - 2: - current_face.plane_points.v2.z = float(buf_str) - - component_idx += 1 - FuncGodotMapParser.ParseScope.TEXTURE: - current_face.texture_idx = map_data.register_texture(buf_str) - set_scope(FuncGodotMapParser.ParseScope.U) - FuncGodotMapParser.ParseScope.U: - if buf_str == "[": - valve_uvs = true - component_idx = 0 - set_scope(FuncGodotMapParser.ParseScope.VALVE_U) - else: - valve_uvs = false - current_face.uv_standard.x = float(buf_str) - set_scope(FuncGodotMapParser.ParseScope.V) - FuncGodotMapParser.ParseScope.V: - current_face.uv_standard.y = float(buf_str) - set_scope(FuncGodotMapParser.ParseScope.ROT) - FuncGodotMapParser.ParseScope.VALVE_U: - if buf_str == "]": - component_idx = 0 - set_scope(FuncGodotMapParser.ParseScope.VALVE_V) - else: - match component_idx: - 0: - current_face.uv_valve.u.axis.x = float(buf_str) - 1: - current_face.uv_valve.u.axis.y = float(buf_str) - 2: - current_face.uv_valve.u.axis.z = float(buf_str) - 3: - current_face.uv_valve.u.offset = float(buf_str) - - component_idx += 1 - FuncGodotMapParser.ParseScope.VALVE_V: - if buf_str != "[": - if buf_str == "]": - set_scope(FuncGodotMapParser.ParseScope.ROT) - else: - match component_idx: - 0: - current_face.uv_valve.v.axis.x = float(buf_str) - 1: - current_face.uv_valve.v.axis.y = float(buf_str) - 2: - current_face.uv_valve.v.axis.z = float(buf_str) - 3: - current_face.uv_valve.v.offset = float(buf_str) - - component_idx += 1 - FuncGodotMapParser.ParseScope.ROT: - current_face.uv_extra.rot = float(buf_str) - set_scope(FuncGodotMapParser.ParseScope.U_SCALE) - FuncGodotMapParser.ParseScope.U_SCALE: - current_face.uv_extra.scale_x = float(buf_str) - set_scope(FuncGodotMapParser.ParseScope.V_SCALE) - FuncGodotMapParser.ParseScope.V_SCALE: - current_face.uv_extra.scale_y = float(buf_str) - commit_face() - set_scope(FuncGodotMapParser.ParseScope.BRUSH) - -func commit_entity() -> void: - if current_entity.properties.has('_tb_type') and map_data.entities.size() > 0: - map_data.entities[0].brushes.append_array(current_entity.brushes) - current_entity.brushes.clear() - if !_keep_tb_groups: - current_entity = FuncGodotMapData.FuncGodotEntity.new() - return - - var new_entity:= FuncGodotMapData.FuncGodotEntity.new() - new_entity.spawn_type = FuncGodotMapData.FuncGodotEntitySpawnType.ENTITY - new_entity.properties = current_entity.properties - new_entity.brushes = current_entity.brushes - map_data.entities.append(new_entity) - - current_entity = FuncGodotMapData.FuncGodotEntity.new() - -func commit_brush() -> void: - current_entity.brushes.append(current_brush) - current_brush = FuncGodotMapData.FuncGodotBrush.new() - -func commit_face() -> void: - var v0v1: Vector3 = current_face.plane_points.v1 - current_face.plane_points.v0 - var v1v2: Vector3 = current_face.plane_points.v2 - current_face.plane_points.v1 - current_face.plane_normal = v1v2.cross(v0v1).normalized() - current_face.plane_dist = current_face.plane_normal.dot(current_face.plane_points.v0) - current_face.is_valve_uv = valve_uvs - - current_brush.faces.append(current_face) - current_face = FuncGodotMapData.FuncGodotFace.new() - -# Nested -enum ParseScope{ - FILE, - COMMENT, - ENTITY, - PROPERTY_VALUE, - BRUSH, - PLANE_0, - PLANE_1, - PLANE_2, - TEXTURE, - U, - V, - VALVE_U, - VALVE_V, - ROT, - U_SCALE, - V_SCALE -} diff --git a/addons/func_godot/src/core/func_godot_map_parser.gd.uid b/addons/func_godot/src/core/func_godot_map_parser.gd.uid deleted file mode 100644 index b0b1835..0000000 --- a/addons/func_godot/src/core/func_godot_map_parser.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://baybsken3c4pi diff --git a/addons/func_godot/src/core/func_godot_surface_gatherer.gd b/addons/func_godot/src/core/func_godot_surface_gatherer.gd deleted file mode 100644 index 5360ed7..0000000 --- a/addons/func_godot/src/core/func_godot_surface_gatherer.gd +++ /dev/null @@ -1,139 +0,0 @@ -class_name FuncGodotSurfaceGatherer extends RefCounted - -var map_data: FuncGodotMapData -var split_type: SurfaceSplitType = SurfaceSplitType.NONE -var entity_filter_idx: int = -1 -var texture_filter_idx: int = -1 -var clip_filter_texture_idx: int -var skip_filter_texture_idx: int - -var out_surfaces: Array[FuncGodotMapData.FuncGodotFaceGeometry] - -func _init(in_map_data: FuncGodotMapData) -> void: - map_data = in_map_data - -func set_texture_filter(texture_name: String) -> void: - texture_filter_idx = map_data.find_texture(texture_name) - -func set_clip_filter_texture(texture_name: String) -> void: - clip_filter_texture_idx = map_data.find_texture(texture_name) - -func set_skip_filter_texture(texture_name: String) -> void: - skip_filter_texture_idx = map_data.find_texture(texture_name) - -func filter_entity(entity_idx: int) -> bool: - if entity_filter_idx != -1 and entity_idx != entity_filter_idx: - return true - return false - -func filter_brush(entity_idx: int, brush_idx: int) -> bool: - var entity:= map_data.entities[entity_idx] - var brush:= entity.brushes[brush_idx] - - # omit brushes that are fully-textured with clip - if clip_filter_texture_idx != -1: - var fully_textured: bool = true - for face in brush.faces: - if face.texture_idx != clip_filter_texture_idx: - fully_textured = false - break - - if fully_textured: - return true - - return false - -func filter_face(entity_idx: int, brush_idx: int, face_idx: int) -> bool: - var face:= map_data.entities[entity_idx].brushes[brush_idx].faces[face_idx] - var face_geo:= map_data.entity_geo[entity_idx].brushes[brush_idx].faces[face_idx] - - if face_geo.vertices.size() < 3: - return true - - if clip_filter_texture_idx != -1 and face.texture_idx == clip_filter_texture_idx: - return true - - # omit faces textured with skip - if skip_filter_texture_idx != -1 and face.texture_idx == skip_filter_texture_idx: - return true - - # omit filtered texture indices - if texture_filter_idx != -1 and face.texture_idx != texture_filter_idx: - return true - - return false - -func run() -> void: - out_surfaces.clear() - - var index_offset: int = 0 - var surf: FuncGodotMapData.FuncGodotFaceGeometry - - if split_type == SurfaceSplitType.NONE: - surf = add_surface() - index_offset = len(out_surfaces) - 1 - - for e in range(map_data.entities.size()): - var entity:= map_data.entities[e] - var entity_geo:= map_data.entity_geo[e] - - if filter_entity(e): - continue - - if split_type == SurfaceSplitType.ENTITY: - if entity.spawn_type == FuncGodotMapData.FuncGodotEntitySpawnType.MERGE_WORLDSPAWN: - add_surface() - surf = out_surfaces[0] - index_offset = surf.vertices.size() - else: - surf = add_surface() - index_offset = surf.vertices.size() - - for b in range(entity.brushes.size()): - if filter_brush(e, b): - continue - - var brush:= entity.brushes[b] - var brush_geo:= entity_geo.brushes[b] - - if split_type == SurfaceSplitType.BRUSH: - index_offset = 0 - surf = add_surface() - - for f in range(brush.faces.size()): - var face_geo:= brush_geo.faces[f] - - if filter_face(e, b, f): - continue - - for v in range(face_geo.vertices.size()): - var vert:= face_geo.vertices[v].duplicate() - - if entity.spawn_type == FuncGodotMapData.FuncGodotEntitySpawnType.ENTITY: - vert.vertex -= entity.center - - surf.vertices.append(vert) - - for i in range((face_geo.vertices.size() - 2) * 3): - surf.indicies.append(face_geo.indicies[i] + index_offset) - - index_offset += face_geo.vertices.size() - -func add_surface() -> FuncGodotMapData.FuncGodotFaceGeometry: - var surf:= FuncGodotMapData.FuncGodotFaceGeometry.new() - out_surfaces.append(surf) - return surf - -func reset_params() -> void: - split_type = SurfaceSplitType.NONE - entity_filter_idx = -1 - texture_filter_idx = -1 - clip_filter_texture_idx = -1 - skip_filter_texture_idx = -1 - -# nested -enum SurfaceSplitType{ - NONE, - ENTITY, - BRUSH -} diff --git a/addons/func_godot/src/core/func_godot_surface_gatherer.gd.uid b/addons/func_godot/src/core/func_godot_surface_gatherer.gd.uid deleted file mode 100644 index b643efe..0000000 --- a/addons/func_godot/src/core/func_godot_surface_gatherer.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://d3n8qk8adx3yp diff --git a/addons/func_godot/src/core/geometry_generator.gd b/addons/func_godot/src/core/geometry_generator.gd new file mode 100644 index 0000000..4280ce1 --- /dev/null +++ b/addons/func_godot/src/core/geometry_generator.gd @@ -0,0 +1,567 @@ +@icon("res://addons/func_godot/icons/icon_slipgate.svg") +class_name FuncGodotGeometryGenerator extends RefCounted +## Geometry generation class that is instantiated by a [FuncGodotMap] node. + +const _SIGNATURE: String = "[GEO]" + +# Namespacing +const _VERTEX_EPSILON := FuncGodotUtil._VERTEX_EPSILON +const _VERTEX_EPSILON2 := _VERTEX_EPSILON * _VERTEX_EPSILON + +const _HYPERPLANE_SIZE := 65355.0 + +const _OriginType := FuncGodotFGDSolidClass.OriginType + +const _GroupData := FuncGodotData.GroupData +const _EntityData := FuncGodotData.EntityData +const _BrushData := FuncGodotData.BrushData +const _PatchData := FuncGodotData.PatchData +const _FaceData := FuncGodotData.FaceData +const _VertexGroupData := FuncGodotData.VertexGroupData + +# Class members +var map_settings: FuncGodotMapSettings = null +var entity_data: Array[_EntityData] +var texture_materials: Dictionary[String, Material] +var texture_sizes: Dictionary[String, Vector2] + +# Signals + +## Emitted when beginning a new step of the generation process. +signal declare_step(step: String) + +func _init(settings: FuncGodotMapSettings = null) -> void: + map_settings = settings + +#region TOOLS +func is_skip(face: _FaceData) -> bool: + return FuncGodotUtil.is_skip(face.texture, map_settings) + +func is_clip(face: _FaceData) -> bool: + return FuncGodotUtil.is_clip(face.texture, map_settings) + +func is_origin(face: _FaceData) -> bool: + return FuncGodotUtil.is_origin(face.texture, map_settings) + +#endregion + +#region PATCHES +func sample_bezier_curve(controls: Array[Vector3], t: float) -> Vector3: + var points: Array[Vector3] = controls.duplicate() + for i in controls.size(): + for j in controls.size() - 1 - i: + points[j] = points[j].lerp(points[j + 1], t) + return points[0] + +func sample_bezier_surface(controls: Array[Vector3], width: int, height: int, u: float, v: float) -> Vector3: + var curve: Array[Vector3] = [] + for x in range(width): + var col: Array[Vector3] = [] + for y in range(height): + var idx := y * width + x + col.append(controls[idx]) + curve.append(sample_bezier_curve(col, v)) + return sample_bezier_curve(curve, u) + +# Generate patch triangle indices +func get_triangle_indices(width: int, height: int) -> Array[int]: + var indices: Array[int] = [] + if width < 2 or height < 2: + return indices + + for row in range(height - 1): + for col in range(width - 1): + ## First triangle of the square; top left, top right, bottom left + indices.append(col + row * width) + indices.append((col + 1) + row * width) + indices.append(col + (row + 1) * width) + + ## Second triangle of the square; top right, bottom right, bottom left + indices.append((col + 1) + row * width) + indices.append((col + 1) + (row + 1) * width) + indices.append(col + (row + 1) * width) + return indices + +func create_patch_mesh(data: Array[_PatchData], mesh: Mesh): + return + +#endregion + +#region BRUSHES +func generate_base_winding(plane: Plane) -> PackedVector3Array: + var up := Vector3.UP + if abs(plane.normal.dot(up)) > 0.9: + up = Vector3.RIGHT + + var right: Vector3 = plane.normal.cross(up).normalized() + var forward: Vector3 = right.cross(plane.normal).normalized() + var centroid: Vector3 = plane.get_center() + + # construct oversized square on the plane to clip against + var winding := PackedVector3Array() + winding.append(centroid + (right * _HYPERPLANE_SIZE) + (forward * _HYPERPLANE_SIZE)) + winding.append(centroid + (right * -_HYPERPLANE_SIZE) + (forward * _HYPERPLANE_SIZE)) + winding.append(centroid + (right * -_HYPERPLANE_SIZE) + (forward * -_HYPERPLANE_SIZE)) + winding.append(centroid + (right * _HYPERPLANE_SIZE) + (forward * -_HYPERPLANE_SIZE)) + return winding + +func generate_face_vertices(brush: _BrushData, face_index: int, vertex_merge_distance: float = 0.0) -> PackedVector3Array: + var plane: Plane = brush.faces[face_index].plane + + # Generate initial square polygon to clip other planes against + var winding: PackedVector3Array = generate_base_winding(plane) + + for other_face_index in brush.faces.size(): + if other_face_index == face_index: + continue + + # NOTE: This may need to be recentered to the origin, then moved back to the correct face position + # This problem may arise from floating point inaccuracy, given a large enough initial brush + winding = Geometry3D.clip_polygon(winding, brush.faces[other_face_index].plane) + if winding.is_empty(): + break + + # Reduce seams between vertices + for i in winding.size(): + winding.set(i, winding.get(i).snappedf(vertex_merge_distance)) + + return winding + +func generate_brush_vertices(entity_index: int, brush_index: int) -> void: + var entity: _EntityData = entity_data[entity_index] + var brush: _BrushData = entity.brushes[brush_index] + var vertex_merge_distance: float = entity.properties.get(map_settings.vertex_merge_distance_property, 0.0) as float + + for face_index in brush.faces.size(): + var face: _FaceData = brush.faces[face_index] + face.vertices = generate_face_vertices(brush, face_index, vertex_merge_distance) + + face.normals.resize(face.vertices.size()) + face.normals.fill(face.plane.normal) + + var tangent: PackedFloat32Array = FuncGodotUtil.get_face_tangent(face) + + # convert into OpenGL coordinates + for i in face.vertices.size(): + face.tangents.append(tangent[1]) # Y + face.tangents.append(tangent[2]) # Z + face.tangents.append(tangent[0]) # X + face.tangents.append(tangent[3]) # W + return + +func generate_entity_vertices(entity_index: int) -> void: + var entity: _EntityData = entity_data[entity_index] + for brush_index in entity.brushes.size(): + generate_brush_vertices(entity_index, brush_index) + +func determine_entity_origins(entity_index: int) -> void: + var entity: _EntityData = entity_data[entity_index] + var origin_type := _OriginType.BRUSH + + if entity.definition is not FuncGodotFGDSolidClass: + if entity.brushes.is_empty(): + return + else: + origin_type = entity.definition.origin_type + + if entity_index == 0: + entity.origin = Vector3.ZERO + return + + var entity_mins: Vector3 = Vector3.INF + var entity_maxs: Vector3 = Vector3.INF + var origin_mins: Vector3 = Vector3.INF + var origin_maxs: Vector3 = -Vector3.INF + + for brush in entity.brushes: + for face in brush.faces: + for vertex in face.vertices: + if entity_mins != Vector3.INF: + entity_mins = entity_mins.min(vertex) + else: + entity_mins = vertex + if entity_maxs != Vector3.INF: + entity_maxs = entity_maxs.max(vertex) + else: + entity_maxs = vertex + + if brush.origin: + if origin_mins != Vector3.INF: + origin_mins = origin_mins.min(vertex) + else: + origin_mins = vertex + if origin_maxs != Vector3.INF: + origin_maxs = origin_maxs.max(vertex) + else: + origin_maxs = vertex + + # Default origin type is BOUNDS_CENTER + if entity_maxs != Vector3.INF and entity_mins != Vector3.INF: + entity.origin = entity_maxs - ((entity_maxs - entity_mins) * 0.5) + + if origin_type != _OriginType.BOUNDS_CENTER and entity.brushes.size() > 0: + match origin_type: + _OriginType.ABSOLUTE, _OriginType.RELATIVE: + if "origin" in entity.properties: + var origin_comps: PackedFloat64Array = entity.properties["origin"].split_floats(" ") + if origin_comps.size() > 2: + if entity.origin_type == _OriginType.ABSOLUTE: + entity.origin = Vector3(origin_comps[0], origin_comps[1], origin_comps[2]) + else: # _OriginType.RELATIVE + entity.origin += Vector3(origin_comps[0], origin_comps[1], origin_comps[2]) + + _OriginType.BRUSH: + if origin_mins != Vector3.INF: + entity.origin = origin_maxs - ((origin_maxs - origin_mins) * 0.5) + + _OriginType.BOUNDS_MINS: + entity.origin = entity_mins + + _OriginType.BOUNDS_MAXS: + entity.origin = entity_maxs + + _OriginType.AVERAGED: + entity.origin = Vector3.ZERO + var vertices: PackedVector3Array + for brush in entity.brushes: + for face in brush.faces: + vertices.append_array(face.vertices) + entity.origin = FuncGodotUtil.op_vec3_avg(vertices) + +func wind_entity_faces(entity_index: int) -> void: + var entity: _EntityData = entity_data[entity_index] + for brush in entity.brushes: + for face in brush.faces: + # Faces should already be wound from the new generation process, but this should be tested further first. + face.wind() + face.index_vertices() + +func smooth_entity_vertices(entity_index: int) -> void: + var entity: _EntityData = entity_data[entity_index] + if not entity.is_smooth_shaded(map_settings.entity_smoothing_property): + return + + var smoothing_angle: float = deg_to_rad(entity.get_smoothing_angle(map_settings.entity_smoothing_angle_property)) + var vertex_map: Dictionary[Vector3, _VertexGroupData] = {} + + # Group vertices by position and build map. NOTE: Vector3 keys can suffer from floating point precision. + # However, the vertex position should have already been snapped to _VERTEX_EPSILON. + for brush in entity.brushes: + for face in brush.faces: + for i in face.vertices.size(): + var pos := face.vertices[i].snappedf(_VERTEX_EPSILON) + + if not vertex_map.has(pos): + vertex_map[pos] = _VertexGroupData.new() + + var data := vertex_map[pos] + data.faces.append(face) + data.face_indices.append(i) + + var smoothed_normals: PackedVector3Array + + for vertex_group in vertex_map.values(): + if vertex_group.faces.size() <= 1: + continue + + # Collect final normals in a temporary arrays + # These cannot be applied until all original normals have been checked. + smoothed_normals = [] + + for i in vertex_group.faces.size(): + var this_face: _FaceData = vertex_group.faces[i] + var this_index: int = vertex_group.face_indices[i] + var this_normal: Vector3 = this_face.normals[this_index] + var average_normal: Vector3 = this_normal + + for j in vertex_group.faces.size(): + # Skip this face + if i == j: + continue + + var other_face: _FaceData = vertex_group.faces[j] + var other_index: int = vertex_group.face_indices[j] + var other_normal: Vector3 = other_face.normals[other_index] + + if this_normal.angle_to(other_normal) <= smoothing_angle: + average_normal += other_normal + + # Store the averaged normal + smoothed_normals.append(average_normal.normalized()) + + # Apply smoothed normals back to face data + for i in vertex_group.faces.size(): + var face: _FaceData = vertex_group.faces[i] + var index: int = vertex_group.face_indices[i] + face.normals[index] = smoothed_normals[i] + return + +#endregion + +func generate_entity_surfaces(entity_index: int) -> void: + var entity: _EntityData = entity_data[entity_index] + + # Don't build for non-solid classes or solids without any brushes. + if not entity or entity.brushes.is_empty(): + return + + var def: FuncGodotFGDSolidClass + if entity.definition is not FuncGodotFGDSolidClass: + def = FuncGodotFGDSolidClass.new() + else: + def = entity.definition + + var op_entity_ogl_xf: Callable = func(v: Vector3) -> Vector3: + return (FuncGodotUtil.id_to_opengl(v - entity.origin) * map_settings.scale_factor) + + # Surface groupings + var surfaces: Dictionary[String, Array] = {} + + # Metadata + var current_metadata_index: int = 0 + var texture_names_metadata: Array[StringName] = [] + var textures_metadata: PackedInt32Array = [] + var vertices_metadata: PackedVector3Array = [] + var normals_metadata: PackedVector3Array = [] + var positions_metadata: PackedVector3Array = [] + var shape_to_face_metadata: Array[PackedInt32Array] = [] + var face_index_metadata_map: Dictionary[_FaceData, PackedInt32Array] = {} + + # Arrange faces by surface texture + for brush in entity.brushes: + for face in brush.faces: + if is_skip(face) or is_origin(face): + continue + + if not surfaces.has(face.texture): + surfaces[face.texture] = [] + surfaces[face.texture].append(face) + + # Cache order for consistency when rebuilding + var textures: Array[String] = surfaces.keys() + + # Output mesh data + var mesh := ArrayMesh.new() + var mesh_arrays: Array[Array] = [] + var build_concave: bool = entity.is_collision_concave() + var concave_vertices: PackedVector3Array + + # Iteration variables + var arrays: Array + var faces: Array + + # MULTISURFACE SCOPE BEGIN + for texture_name in textures: + # SURFACE SCOPE BEGIN + faces = surfaces[texture_name] + + # Get texture index for metadata + var tex_index: int = texture_names_metadata.size() + if def.add_textures_metadata: + texture_names_metadata.append(texture_name) + + # Prepare new array + arrays = Array() + arrays.resize(ArrayMesh.ARRAY_MAX) + arrays[Mesh.ARRAY_VERTEX] = PackedVector3Array() + arrays[Mesh.ARRAY_NORMAL] = PackedVector3Array() + arrays[Mesh.ARRAY_TANGENT] = PackedFloat32Array() + arrays[Mesh.ARRAY_TEX_UV] = PackedVector2Array() + arrays[Mesh.ARRAY_INDEX] = PackedInt32Array() + + # Begin fresh index offset for this subarray + var index_offset: int = 0 + + for face in faces: + # FACE SCOPE BEGIN + + # Reject invalid faces + if face.vertices.size() < 3 or is_skip(face) or is_origin(face): + continue + + # Create trimesh points regardless of texture + if build_concave: + var tris: PackedVector3Array + tris.resize(face.indices.size()) + + # Add triangles from face indices directly + # TODO: This can possibly be merged with the below loop in a clever way + for i in face.indices.size(): + tris[i] = op_entity_ogl_xf.call(face.vertices[face.indices[i]]) + + concave_vertices.append_array(tris) + + # Do not generate visuals for clip textures + if is_clip(face): + continue + + # Handle metadata for this face + # Add metadata per triangle rather than per face to keep consistent metadata + var num_tris = face.indices.size() / 3 + if def.add_textures_metadata: + var tex_array: Array[int] = [] + tex_array.resize(num_tris) + tex_array.fill(tex_index) + textures_metadata.append_array(tex_array) + if def.add_face_normal_metadata: + var normal_array: Array[Vector3] = [] + normal_array.resize(num_tris) + normal_array.fill(FuncGodotUtil.id_to_opengl(face.plane.normal)) + normals_metadata.append_array(normal_array) + if def.add_face_position_metadata: + for i in num_tris: + var triangle_indices: Array[int] = [] + var triangle_vertices: Array[Vector3] = [] + triangle_indices.assign(face.indices.slice(i * 3, i * 3 + 3)) + triangle_vertices.assign(triangle_indices.map(func(idx : int) -> Vector3: return face.vertices[idx])) + var position := FuncGodotUtil.op_vec3_avg(triangle_vertices) + positions_metadata.append(op_entity_ogl_xf.call(position)) + if def.add_vertex_metadata: + for i in face.indices: + vertices_metadata.append(op_entity_ogl_xf.call(face.vertices[i])) + if def.add_collision_shape_to_face_indices_metadata: + face_index_metadata_map[face] = PackedInt32Array(range(current_metadata_index, current_metadata_index + num_tris)) + current_metadata_index += num_tris + + # Append face data to surface array + for i in face.vertices.size(): + # TODO: Mesh metadata may be generated here. + var v: Vector3 = face.vertices[i] + arrays[ArrayMesh.ARRAY_VERTEX].append(op_entity_ogl_xf.call(v)) + arrays[ArrayMesh.ARRAY_NORMAL].append(FuncGodotUtil.id_to_opengl(face.normals[i])) + var tx_sz: Vector2 = texture_sizes.get(face.texture, Vector2.ONE * map_settings.inverse_scale_factor) + arrays[ArrayMesh.ARRAY_TEX_UV].append(FuncGodotUtil.get_face_vertex_uv(v, face, tx_sz)) + + for j in 4: + arrays[ArrayMesh.ARRAY_TANGENT].append(face.tangents[(i * 4) + j]) + + # Create offset indices for the visual mesh + var op_shift_index: Callable = (func(a: int) -> int: return a + index_offset) + arrays[ArrayMesh.ARRAY_INDEX].append_array(Array(face.indices).map(op_shift_index)) + + index_offset += face.vertices.size() + + # FACE SCOPE END + + if FuncGodotUtil.filter_face(texture_name, map_settings): + continue + + mesh_arrays.append(arrays) + + # SURFACE SCOPE END + + # MULTISURFACE SCOPE END + textures.erase(map_settings.clip_texture) + + if def.build_visuals: + # Build mesh + for array_index in mesh_arrays.size(): + mesh.add_surface_from_arrays(Mesh.PRIMITIVE_TRIANGLES, mesh_arrays[array_index]) + mesh.surface_set_name(array_index, textures[array_index]) + mesh.surface_set_material(array_index, texture_materials[textures[array_index]]) + + # Apply mesh metadata + if def.add_textures_metadata: + entity.mesh_metadata["texture_names"] = texture_names_metadata + entity.mesh_metadata["textures"] = textures_metadata + if def.add_vertex_metadata: + entity.mesh_metadata["vertices"] = vertices_metadata + if def.add_face_normal_metadata: + entity.mesh_metadata["normals"] = normals_metadata + if def.add_face_position_metadata: + entity.mesh_metadata["positions"] = positions_metadata + + entity.mesh = mesh + + # Clear up unusued memory + arrays = [] + surfaces = {} + + if entity.is_collision_convex(): + var sh: ConvexPolygonShape3D + for b in entity.brushes: + if b.planes.is_empty() or b.origin: + continue + + var points := Array(Geometry3D.compute_convex_mesh_points(b.planes)).map(op_entity_ogl_xf) + if points.is_empty(): + continue + + sh = ConvexPolygonShape3D.new() + sh.points = points + entity.shapes.append(sh) + + if def.add_collision_shape_to_face_indices_metadata: + # convex collision has one shape per brush, so collect the + # indices for this brush's faces + var face_indices_array : PackedInt32Array = [] + for face in b.faces: + if face_index_metadata_map.has(face): + face_indices_array.append_array(face_index_metadata_map[face]) + shape_to_face_metadata.append(face_indices_array) + + elif build_concave and concave_vertices.size(): + var sh := ConcavePolygonShape3D.new() + sh.set_faces(concave_vertices) + entity.shapes.append(sh) + + if def.add_collision_shape_to_face_indices_metadata: + # for concave collision the shape will always represent every face + # in the entity, so just add every face here + var face_indices_array : PackedInt32Array = [] + for fm in face_index_metadata_map.values(): + face_indices_array.append_array(fm) + shape_to_face_metadata.append(face_indices_array) + + if def.add_collision_shape_to_face_indices_metadata: + # this metadata will be mapped to the actual shape node names during entity assembly + entity.mesh_metadata["shape_to_face_array"] = shape_to_face_metadata + +func unwrap_uv2s(entity_index: int, texel_size: float) -> void: + var entity: _EntityData = entity_data[entity_index] + if entity.mesh: + if (entity.definition as FuncGodotFGDSolidClass).global_illumination_mode: + entity.mesh.lightmap_unwrap(Transform3D.IDENTITY, texel_size) + +# Main build process +func build(build_flags: int, entities: Array[_EntityData]) -> Error: + var entity_count: int = entities.size() + declare_step.emit("Preparing %s %s" % [entity_count, "entity" if entity_count == 1 else "entities"]) + entity_data = entities + + declare_step.emit("Gathering materials") + var texture_map: Array[Dictionary] = FuncGodotUtil.build_texture_map(entity_data, map_settings) + texture_materials = texture_map[0] + texture_sizes = texture_map[1] + + var task_id: int + declare_step.emit("Generating brush vertices") + task_id = WorkerThreadPool.add_group_task(generate_entity_vertices, entity_count, -1, false, "Generate Brush Vertices") + WorkerThreadPool.wait_for_group_task_completion(task_id) + + declare_step.emit("Determining solid entity origins") + task_id = WorkerThreadPool.add_group_task(determine_entity_origins, entity_count, -1, false, "Determine Entity Origins") + WorkerThreadPool.wait_for_group_task_completion(task_id) + + declare_step.emit("Winding faces") + task_id = WorkerThreadPool.add_group_task(wind_entity_faces, entity_count, -1, false, "Wind Brush Faces") + WorkerThreadPool.wait_for_group_task_completion(task_id) + + # TODO: Reimplement after solving issues + #if not (build_flags & FuncGodotMap.BuildFlags.DISABLE_SMOOTHING): + # declare_step.emit("Smoothing entity faces") + # task_id = WorkerThreadPool.add_group_task(smooth_entity_vertices, entity_count, -1, false, "Smooth Entities") + # WorkerThreadPool.wait_for_group_task_completion(task_id) + + declare_step.emit("Generating surfaces") + task_id = WorkerThreadPool.add_group_task(generate_entity_surfaces, entity_count, -1, false, "Generate Surfaces") + WorkerThreadPool.wait_for_group_task_completion(task_id) + + if build_flags & FuncGodotMap.BuildFlags.UNWRAP_UV2: + declare_step.emit("Unwrapping UV2s") + var texel_size: float = map_settings.uv_unwrap_texel_size * map_settings.scale_factor + for entity_index in entity_count: + unwrap_uv2s(entity_index, texel_size) + + declare_step.emit("Geometry generation complete") + return OK diff --git a/addons/func_godot/src/core/geometry_generator.gd.uid b/addons/func_godot/src/core/geometry_generator.gd.uid new file mode 100644 index 0000000..02d12c4 --- /dev/null +++ b/addons/func_godot/src/core/geometry_generator.gd.uid @@ -0,0 +1 @@ +uid://b1yg28xbyno7v diff --git a/addons/func_godot/src/core/parser.gd b/addons/func_godot/src/core/parser.gd new file mode 100644 index 0000000..16e6382 --- /dev/null +++ b/addons/func_godot/src/core/parser.gd @@ -0,0 +1,439 @@ +@icon("res://addons/func_godot/icons/icon_godambler.svg") +class_name FuncGodotParser extends RefCounted +## MAP and VMF parser class that is instantiated by a [FuncGodotMap] node during the build process. +## +## @tutorial(Quake Wiki Map Format Article): https://quakewiki.org/wiki/Quake_Map_Format +## @tutorial(Valve Developer Wiki VMF Article): https://developer.valvesoftware.com/wiki/VMF_(Valve_Map_Format) + +const _SIGNATURE: String = "[PRS]" + +const _GroupData := FuncGodotData.GroupData +const _EntityData := FuncGodotData.EntityData +const _BrushData := FuncGodotData.BrushData +const _PatchData := FuncGodotData.PatchData +const _FaceData := FuncGodotData.FaceData +const _ParseData := FuncGodotData.ParseData + +## Emitted when a step in the parsing process is completed. +## It is connected to [method FuncGodotUtil.print_profile_info] method if [member FuncGodotMap.build_flags] SHOW_PROFILE_INFO flag is set. +signal declare_step(step: String) + +## Parses the map file, generating entity and group data and sub-data, then returns the generated data as an array of arrays. +## The first array is Array[FuncGodotData.EntityData], while the second array is Array[FuncGodotData.GroupData]. +func parse_map_data(map_file: String, map_settings: FuncGodotMapSettings) -> _ParseData: + var map_data: PackedStringArray = [] + var parse_data := _ParseData.new() + declare_step.emit("Loading map file %s" % map_file) + + # Retrieve real path if needed + if map_file.begins_with("uid://"): + var uid := ResourceUID.text_to_id(map_file) + if not ResourceUID.has_id(uid): + printerr("Error: failed to retrieve path for UID (%s)" % map_file) + return parse_data + map_file = ResourceUID.get_id_path(uid) + + # Open the map file + var file: FileAccess = FileAccess.open(map_file, FileAccess.READ) + if not file: + file = FileAccess.open(map_file + ".import", FileAccess.READ) + if file: + map_file += ".import" + else: + printerr("Error: Failed to open map file (" + map_file + ")") + return parse_data + + # Packed map file resources need to be accessed differently in exported projects. + if map_file.ends_with(".import"): + while not file.eof_reached(): + var line: String = file.get_line() + if line.begins_with("path"): + file.close() + line = line.replace("path=", "") + line = line.replace('"', '') + var data: String = (load(line) as QuakeMapFile).map_data + if data.is_empty(): + printerr("Error: Failed to open map file (" + line + ")") + return parse_data + map_data = data.split("\n") + break + else: + while not file.eof_reached(): + map_data.append(file.get_line()) + + # Determine map type and parse data + if map_file.to_lower().contains(".map"): + declare_step.emit("Parsing as Quake MAP") + parse_data = _parse_quake_map(map_data, map_settings, parse_data) + elif map_file.to_lower().contains(".vmf"): + declare_step.emit("Parsing as Source VMF") + parse_data = _parse_vmf(map_data, map_settings, parse_data) + + # Determine group hierarchy + declare_step.emit("Determining groups hierarchy") + var groups_data: Array[_GroupData] = parse_data.groups + for g in groups_data: + if g.parent_id != -1: + for p in groups_data: + if p.id == g.parent_id: + g.parent = p + break + + var entities_data: Array[_EntityData] = parse_data.entities + var entity_defs: Dictionary[String, FuncGodotFGDEntityClass] = map_settings.entity_fgd.get_entity_definitions() + + declare_step.emit("Checking entity omission and definition status") + + for i in range(entities_data.size() - 1, -1, -1): + var entity: _EntityData = entities_data[i] + + # Delete entities from omitted groups + if entity.group != null and entity.group.omit == true: + entities_data.remove_at(i) + continue + + # Provide entity definition to entity data. This gets used in both + # geo generation and entity assembly. + if "classname" in entity.properties: + var classname: String = entity.properties["classname"] + if classname in entity_defs: + entity.definition = entity_defs[classname] + + # Delete omitted groups + declare_step.emit("Removing omitted layers and groups") + for i in range(groups_data.size() - 1, -1, -1): + if groups_data[i].omit == true: + groups_data.remove_at(i) + + declare_step.emit("Map parsing complete") + return parse_data + +## Parser subroutine called by [method parse_map_data], specializing in the Quake MAP format. +func _parse_quake_map(map_data: PackedStringArray, map_settings: FuncGodotMapSettings, parse_data: _ParseData) -> _ParseData: + var entities_data: Array[_EntityData] = parse_data.entities + var groups_data: Array[_GroupData] = parse_data.groups + var ent: _EntityData = null + var brush: _BrushData = null + var patch: _PatchData = null + var scope: int = 0 # Scope level, to keep track of where we are in PatchDef parsing + + for line in map_data: + line = line.replace("\t", "") + + #region START DATA + # Start entity, brush, or patchdef + if line.begins_with("{"): + if not ent: + ent = _EntityData.new() + else: + if not patch: + brush = _BrushData.new() + else: + scope += 1 + continue + #endregion + + #region COMMIT DATA + # Commit entity or brush + if line.begins_with("}"): + if brush: + ent.brushes.append(brush) + brush = null + elif patch: + if scope: + scope -= 1 + else: + ent.patches.append(patch) + patch = null + else: + # TrenchBroom layers and groups + if ent.properties["classname"] == "func_group" and ent.properties.has("_tb_type"): + # Merge TB Group / Layer structural brushes with worldspawn + if entities_data.size(): + entities_data[0].brushes.append_array(ent.brushes) + + # Create group data + var group: _GroupData = _GroupData.new() + var props: Dictionary = ent.properties + group.id = props["_tb_id"] as int + if props["_tb_type"] == "_tb_layer": + group.type = _GroupData.GroupType.GROUP + group.name = "layer_" + else: + group.name = "group_" + group.name = group.name + str(group.id) + if props["_tb_name"] != "Unnamed": + group.name = group.name + "_" + (props["_tb_name"] as String).replace(" ", "_") + if props.has("_tb_layer"): + group.parent_id = props["_tb_layer"] as int + if props.has("_tb_group"): + group.parent_id = props["_tb_group"] as int + if props.has("_tb_layer_omit_from_export"): + group.omit = true + + # Commit group + groups_data.append(group) + + # Commit entity + else: + entities_data.append(ent) + ent = null + continue + #endregion + + #region PROPERTY DATA + # Retrieve key value pairs + if line.begins_with("\""): + var tokens: PackedStringArray = line.split("\" \"") + if tokens.size() < 2: + tokens = line.split("\"\"") + var key: String = tokens[0].trim_prefix("\"") + var value: String = tokens[1].trim_suffix("\"") + ent.properties[key] = value + #endregion + + #region BRUSH DATA + if brush and line.begins_with("("): + line = line.replace("(","") + var tokens: PackedStringArray = line.split(" ) ") + + # Retrieve plane data + var points: PackedVector3Array + points.resize(3) + for i in 3: + tokens[i] = tokens[i].trim_prefix("(") + var pts: PackedFloat64Array = tokens[i].split_floats(" ", false) + var point := Vector3(pts[0], pts[1], pts[2]) + points[i] = point + + var plane := Plane(points[0], points[1], points[2]) + brush.planes.append(plane) + + var face: _FaceData = _FaceData.new() + face.plane = plane + + # Retrieve texture data + var tex: String = String() + if tokens[3].begins_with("\""): # textures with spaces get surrounded by double quotes + var last_quote := tokens[3].rfind("\"") + tex = tokens[3].substr(1, last_quote - 1) + tokens = tokens[3].substr(last_quote + 2).split(" ] ") + else: + tex = tokens[3].get_slice(" ", 0) + tokens = tokens[3].trim_prefix(tex + " ").split(" ] ") + face.texture = tex + + # Check for origin brushes. Brushes must be completely textured with origin to be valid. + if brush.faces.is_empty(): + if tex == map_settings.origin_texture: + brush.origin = true + elif brush.origin == true: + if tex != map_settings.origin_texture: + brush.origin = false + + # Retrieve UV data + var uv: Transform2D = Transform2D.IDENTITY + + # Valve 220: texname [ ux uy ux offsetX ] [vx vy vz offsetY] rotation scaleX scaleY + if tokens.size() > 1: + var coords: PackedFloat64Array + for i in 2: + coords = tokens[i].trim_prefix("[ ").split_floats(" ", false) + face.uv_axes.append(Vector3(coords[0], coords[1], coords[2])) # Save axis vectors separately + face.uv.origin[i] = coords[3] # UV offset stored as transform origin + + coords = tokens[2].split_floats(" ", false) + # UV scale factor stored in basis + face.uv.x = Vector2(coords[1], 0.0) + face.uv.y = Vector2(0.0, coords[2]) + + # Quake Standard: texname offsetX offsetY rotation scaleX scaleY + else: + var coords: PackedFloat64Array = tokens[0].split_floats(" ", false) + face.uv.origin = Vector2(coords[0], coords[1]) + + var r: float = deg_to_rad(coords[2]) + face.uv.x = Vector2(cos(r), -sin(r)) * coords[3] + face.uv.y = Vector2(sin(r), cos(r)) * coords[4] + + brush.faces.append(face) + continue + #endregion + + #region PATCH DATA + if patch: + if line.begins_with("("): + line = line.replace("( ","") + # Retrieve patch control points + if patch.size: + var tokens: PackedStringArray = line.replace("(", "").split(" )", false) + for i in tokens.size(): + var subtokens: PackedFloat64Array = tokens[i].split_floats(" ", false) + patch.points.append(Vector3(subtokens[0], subtokens[1], subtokens[2])) + patch.uvs.append(Vector2(subtokens[3], subtokens[4])) + # Retrieve patch size + else: + var tokens: PackedStringArray = line.replace(")","").split(" ", false) + patch.size.resize(tokens.size()) + for i in tokens.size(): + patch.size[i] = tokens[i].to_int() + # Retrieve patch texture + elif not line.begins_with(")"): + patch.texture = line.replace("\"","") + + if line.begins_with("patchDef"): + brush = null + patch = _PatchData.new() + continue + #endregion + + #region ASSIGN GROUPS + for e in entities_data: + var group_id: int = -1 + if e.properties.has("_tb_layer"): + group_id = e.properties["_tb_layer"] as int + elif e.properties.has("_tb_group"): + group_id = e.properties["_tb_group"] as int + if group_id != -1: + for g in groups_data: + if g.id == group_id: + e.group = g + break + #endregion + + return parse_data + +## Parser subroutine called by [method parse_map_data], specializing in the Valve Map Format used by Hammer based editors. +func _parse_vmf(map_data: PackedStringArray, map_settings: FuncGodotMapSettings, parse_data: _ParseData) -> _ParseData: + var entities_data: Array[_EntityData] = parse_data.entities + var groups_data: Array[_GroupData] = parse_data.groups + var ent: _EntityData = null + var brush: _BrushData = null + var group: _GroupData = null + var group_parent_hierarchy: Array[_GroupData] = [] + var scope: int = 0 + + for line in map_data: + line = line.replace("\t", "") + + #region START DATA + if line.begins_with("entity") or line.begins_with("world"): + ent = _EntityData.new() + continue + if line.begins_with("solid"): + brush = _BrushData.new() + continue + if brush and line.begins_with("{"): + scope += 1 + continue + if line == "visgroup": + if group != null: + groups_data.append(group) + group_parent_hierarchy.append(group) + group = _GroupData.new() + if group_parent_hierarchy.size(): + group.parent = group_parent_hierarchy.back() + group.parent_id = group.parent.id + continue + #endregion + + #region COMMIT DATA + if line.begins_with("}"): + if scope > 0: + scope -= 1 + if not scope: + if brush: + if brush.faces.size(): + ent.brushes.append(brush) + brush = null + elif ent: + entities_data.append(ent) + ent = null + elif group: + groups_data.append(group) + group = null + elif group_parent_hierarchy.size(): + group_parent_hierarchy.pop_back() + continue + #endregion + + # Retrieve key value pairs + if (ent or group) and line.begins_with("\""): + var tokens: PackedStringArray = line.split("\" \"") + var key: String = tokens[0].trim_prefix("\"") + var value: String = tokens[1].trim_suffix("\"") + + #region BRUSH DATA + if brush: + if scope > 1: + match key: + "plane": + tokens = value.replace("(", "").split(")", false) + var points: PackedVector3Array + points.resize(3) + for i in 3: + tokens[i] = tokens[i].trim_prefix("(") + var pts: PackedFloat64Array = tokens[i].split_floats(" ", false) + var point: Vector3 = Vector3(pts[0], pts[1], pts[2]) + points[i] = point + brush.planes.append(Plane(points[0], points[1], points[2])) + brush.faces.append(_FaceData.new()) + brush.faces[-1].plane = brush.planes[-1] + continue + "material": + if brush.faces.size(): + brush.faces[-1].texture = value + # Origin brush needs to be completely set to origin, otherwise it's invalid + if brush.faces.size() < 2: + if value == map_settings.origin_texture: + brush.origin = true + elif brush.origin == true: + if value != map_settings.origin_texture: + brush.origin = false + continue + "uaxis", "vaxis": + if brush.faces.size(): + value = value.replace("[", "") + var vals: PackedFloat64Array = value.replace("]", "").split_floats(" ", false) + var face: _FaceData = brush.faces[-1] + face.uv_axes.append(Vector3(vals[0], vals[1], vals[2])) + if key.begins_with("u"): + face.uv.origin.x = vals[3] # Offset + face.uv.x *= vals[4] # Scale + else: + face.uv.origin.y = vals[3] # Offset + face.uv.y *= vals[4] # Scale + continue + "rotation": + # Rotation isn't used in Valve 220 mapping and VMFs are 220 exclusive + continue + "visgroupid": + # Don't put worldspawn into a group + if entities_data.size(): + # Only nodes can be organized into groups in the SceneTree, so only use the first brush's group + if not ent.properties.has(key): + ent.properties[key] = value + #endregion + elif ent: + ent.properties[key] = value + continue + elif group: + if key == "name": + group.name = "group_%s_" + value + elif key == "visgroupid": + group.id = value.to_int() + group.name = group.name % value + group.name = group.name.replace(" ", "_") + continue + + #region ASSIGN GROUPS + for e in entities_data: + if e.properties.has("visgroupid"): + var group_id: int = e.properties["visgroupid"] as int + for g in groups_data: + if g.id == group_id: + e.group = g + break + #endregion + + return parse_data diff --git a/addons/func_godot/src/core/parser.gd.uid b/addons/func_godot/src/core/parser.gd.uid new file mode 100644 index 0000000..d13e6d7 --- /dev/null +++ b/addons/func_godot/src/core/parser.gd.uid @@ -0,0 +1 @@ +uid://dflet6p5hbqts diff --git a/addons/func_godot/src/fgd/func_godot_fgd_base_class.gd b/addons/func_godot/src/fgd/func_godot_fgd_base_class.gd index c62b165..e64111a 100644 --- a/addons/func_godot/src/fgd/func_godot_fgd_base_class.gd +++ b/addons/func_godot/src/fgd/func_godot_fgd_base_class.gd @@ -1,7 +1,14 @@ @tool -## Special inheritance class for [FuncGodotFGDSolidClass] and [FuncGodotFGDPointClass] entity definitions. Useful for adding shared or common properties and descriptions. -class_name FuncGodotFGDBaseClass -extends FuncGodotFGDEntityClass +@icon("res://addons/func_godot/icons/icon_godot_ranger.svg") +class_name FuncGodotFGDBaseClass extends FuncGodotFGDEntityClass +## Special inheritance class for [FuncGodotFGDSolidClass] and [FuncGodotFGDPointClass] entity definitions. +## +## Inheritance class for [FuncGodotFGDSolidClass] and [FuncGodotFGDPointClass] entities, +## used to shared or common properties and descriptions across different definitions. +## +## @tutorial(Quake Wiki Entity Article): https://quakewiki.org/wiki/Entity +## @tutorial(Level Design Book: Entity Types and Settings): https://book.leveldesignbook.com/appendix/resources/formats/fgd#entity-types-and-settings-basic +## @tutorial(Valve Developer Wiki FGD Article): https://developer.valvesoftware.com/wiki/FGD#Class_Types_and_Properties func _init() -> void: prefix = "@BaseClass" diff --git a/addons/func_godot/src/fgd/func_godot_fgd_base_class.gd.uid b/addons/func_godot/src/fgd/func_godot_fgd_base_class.gd.uid index a9ce20a..7010a94 100644 --- a/addons/func_godot/src/fgd/func_godot_fgd_base_class.gd.uid +++ b/addons/func_godot/src/fgd/func_godot_fgd_base_class.gd.uid @@ -1 +1 @@ -uid://dyv4g30betqgm +uid://ck575aqs1sbrb diff --git a/addons/func_godot/src/fgd/func_godot_fgd_entity_class.gd b/addons/func_godot/src/fgd/func_godot_fgd_entity_class.gd index bd471cf..bcc0ab2 100644 --- a/addons/func_godot/src/fgd/func_godot_fgd_entity_class.gd +++ b/addons/func_godot/src/fgd/func_godot_fgd_entity_class.gd @@ -1,13 +1,20 @@ @icon("res://addons/func_godot/icons/icon_godot_ranger.svg") -## Base entity definition class. Not to be used directly, use [FuncGodotFGDBaseClass], [FuncGodotFGDSolidClass], or [FuncGodotFGDPointClass] instead. -class_name FuncGodotFGDEntityClass -extends Resource +class_name FuncGodotFGDEntityClass extends Resource +## Entity definition template. WARNING! Not to be used directly! Use [FuncGodotFGDBaseClass], [FuncGodotFGDSolidClass], or [FuncGodotFGDPointClass] instead. +## +## Entity definition template. It holds all of the common entity class properties shared between [FuncGodotFGDBaseClass], [FuncGodotFGDSolidClass], or [FuncGodotFGDPointClass]. +## Not to be used directly, use one of the aforementioned FGD class types instead. +## +## @tutorial(Quake Wiki Entity Article): https://quakewiki.org/wiki/Entity +## @tutorial(Level Design Book: Entity Types and Settings): https://book.leveldesignbook.com/appendix/resources/formats/fgd#entity-types-and-settings-basic +## @tutorial(Valve Developer Wiki FGD Article): https://developer.valvesoftware.com/wiki/FGD#Class_Types_and_Properties +## @tutorial(Valve Developer Wiki Entity Descriptions): https://developer.valvesoftware.com/wiki/FGD#Entity_Description var prefix: String = "" @export_group("Entity Definition") -## Entity classname. This is a required field in all entity types as it is parsed by both the map editor and by FuncGodot on map build. +## Entity classname. [b][i]This is a required field in all entity types[/i][/b] as it is parsed by both the map editor and by FuncGodot on map build. @export var classname : String = "" ## Entity description that appears in the map editor. Not required. @@ -16,16 +23,21 @@ var prefix: String = "" ## Entity does not get written to the exported FGD. Entity is only used for [FuncGodotMap] build process. @export var func_godot_internal : bool = false -## FuncGodotFGDBaseClass resources to inherit [member class_properties] and [member class_descriptions] from. +## [FuncGodotFGDBaseClass] resources to inherit [member class_properties] and [member class_descriptions] from. @export var base_classes: Array[Resource] = [] -## Key value pair properties that will appear in the map editor. After building the FuncGodotMap in Godot, these properties will be added to a Dictionary that gets applied to the generated Node, as long as that Node is a tool script with an exported `func_godot_properties` Dictionary. +## Key value pair properties that will appear in the map editor. After building the [FuncGodotMap] in Godot, these properties will be added to a [Dictionary] +## that gets applied to the generated node, as long as that node is a tool script with an exported `func_godot_properties` Dictionary. @export var class_properties : Dictionary = {} -## Descriptions for previously defined key value pair properties. +## Map editor descriptions for previously defined key value pair properties. Optional but recommended. @export var class_property_descriptions : Dictionary = {} -## Appearance properties for the map editor. See the [**Valve FGD**](https://developer.valvesoftware.com/wiki/FGD#Entity_Description) and [**TrenchBroom**](https://trenchbroom.github.io/manual/latest/#display-models-for-entities) documentation for more information. +## Automatically applies entity class properties to matching properties in the generated node. +## When using this feature, class properties need to be the correct type or you may run into errors on map build. +@export var auto_apply_to_matching_node_properties : bool = false + +## Appearance properties for the map editor. See the Valve Developer Wiki and TrenchBroom documentation for more information. @export var meta_properties : Dictionary = { "size": AABB(Vector3(-8, -8, -8), Vector3(8, 8, 8)), "color": Color(0.8, 0.8, 0.8) @@ -33,45 +45,47 @@ var prefix: String = "" @export_group("Node Generation") -## Node to generate on map build. This can be a built-in Godot class or a GDExtension class. For Point Class entities that use Scene File instantiation leave this blank. +## Node to generate on map build. This can be a built-in Godot class, a GDScript class, or a GDExtension class. +## For Point Class entities that use Scene File instantiation leave this blank. @export var node_class := "" -## Class property to use in naming the generated node. Overrides `name_property` in [FuncGodotMapSettings]. +## Optional class property to use in naming the generated node. Overrides [member FuncGodotMapSettings.name_property]. ## Naming occurs before adding to the [SceneTree] and applying properties. ## Nodes will be named `"entity_" + name_property`. An entity's name should be unique, otherwise you may run into unexpected behavior. @export var name_property := "" -func build_def_text(model_key_supported: bool = true) -> String: +## Parses the definition and outputs it into the FGD format. +func build_def_text(target_editor: FuncGodotFGDFile.FuncGodotTargetMapEditors = FuncGodotFGDFile.FuncGodotTargetMapEditors.TRENCHBROOM) -> String: # Class prefix var res : String = prefix - + # Meta properties var base_str = "" var meta_props = meta_properties.duplicate() - + for base_class in base_classes: if not 'classname' in base_class: continue - + base_str += base_class.classname - + if base_class != base_classes.back(): base_str += ", " - + if base_str != "": meta_props['base'] = base_str - + for prop in meta_props: if prefix == '@SolidClass': if prop == "size" or prop == "model": continue - if prop == 'model' and not model_key_supported: + if prop == 'model' and target_editor != FuncGodotFGDFile.FuncGodotTargetMapEditors.TRENCHBROOM: continue var value = meta_props[prop] res += " " + prop + "(" - + if value is AABB: res += "%s %s %s, %s %s %s" % [ value.position.x, @@ -89,13 +103,15 @@ func build_def_text(model_key_supported: bool = true) -> String: ] elif value is String: res += value - + elif value is Dictionary and target_editor == FuncGodotFGDFile.FuncGodotTargetMapEditors.TRENCHBROOM: + res += JSON.stringify(value) + res += ")" - + res += " = " + classname if prefix != "@BaseClass": # having a description in BaseClasses crashes some editors - var normalized_description = description.replace("\n", " ").strip_edges() if prefix != "@BaseClass" else "" + var normalized_description = description.replace("\"", "\'") if normalized_description != "": res += " : \"%s\" " % [normalized_description] else: # Having no description crashes some editors @@ -117,7 +133,8 @@ func build_def_text(model_key_supported: bool = true) -> String: if value is Dictionary and class_property_descriptions[prop] is Array: var prop_arr: Array = class_property_descriptions[prop] if prop_arr.size() > 1 and (prop_arr[1] is int or prop_arr[1] is String): - prop_description = "\"" + prop_arr[0] + "\" : " + str(prop_arr[1]) + var value_str : String = str(prop_arr[1]) if prop_arr[1] is int else "\"" + prop_arr[1] + "\"" + prop_description = "\"" + prop_arr[0] + "\" : " + value_str else: prop_description = "\"\" : 0" printerr(str(prop) + " has incorrect description format. Should be [String description, int / String default value].") @@ -159,6 +176,9 @@ func build_def_text(model_key_supported: bool = true) -> String: prop_val = FuncGodotUtil.newline() + "\t[" + FuncGodotUtil.newline() for choice in value: var choice_val = value[choice] + if typeof(choice_val) == TYPE_STRING: + if not (choice_val as String).begins_with("\""): + choice_val = "\"" + choice_val + "\"" prop_val += "\t\t" + str(choice_val) + " : \"" + choice + "\"" + FuncGodotUtil.newline() prop_val += "\t]" TYPE_ARRAY: @@ -169,29 +189,45 @@ func build_def_text(model_key_supported: bool = true) -> String: prop_val += "\t]" TYPE_NODE_PATH: prop_type = "target_destination" + prop_val = "\"\"" TYPE_OBJECT: - prop_type = "target_source" - + if value is Resource: + prop_val = "\"" + value.resource_path + "\"" + if value is Material: + if target_editor != FuncGodotFGDFile.FuncGodotTargetMapEditors.JACK: + prop_type = "material" + else: + prop_type = "shader" + elif value is Texture2D: + prop_type = "decal" + elif value is AudioStream: + prop_type = "sound" + else: + prop_type = "target_source" + prop_val = "\"\"" + if prop_val: res += "\t" res += prop res += "(" res += prop_type res += ")" - + if not value is Array: if not value is Dictionary or prop_description != "": res += " : " res += prop_description - - if value is bool or value is Dictionary or value is Array: + + if value is bool: + res += " : 1 = " if value else " : 0 = " + elif value is Dictionary or value is Array: res += " = " else: res += " : " - + res += prop_val res += FuncGodotUtil.newline() - + res += "]" + FuncGodotUtil.newline() - + return res diff --git a/addons/func_godot/src/fgd/func_godot_fgd_entity_class.gd.uid b/addons/func_godot/src/fgd/func_godot_fgd_entity_class.gd.uid index 83bab6a..52edf46 100644 --- a/addons/func_godot/src/fgd/func_godot_fgd_entity_class.gd.uid +++ b/addons/func_godot/src/fgd/func_godot_fgd_entity_class.gd.uid @@ -1 +1 @@ -uid://b6vs8fw3on4e2 +uid://cgkrrgcimlr8y diff --git a/addons/func_godot/src/fgd/func_godot_fgd_file.gd b/addons/func_godot/src/fgd/func_godot_fgd_file.gd index bb3dfa6..f1e2317 100644 --- a/addons/func_godot/src/fgd/func_godot_fgd_file.gd +++ b/addons/func_godot/src/fgd/func_godot_fgd_file.gd @@ -1,19 +1,28 @@ @tool @icon("res://addons/func_godot/icons/icon_godot_ranger.svg") -## [Resource] file used to express a set of [FuncGodotFGDEntity] definitions. Can be exported as an FGD file for use with a Quake map editor. Used in conjunction with a [FuncGodotMapSetting] resource to generate nodes in a [FuncGodotMap] node. -class_name FuncGodotFGDFile -extends Resource +class_name FuncGodotFGDFile extends Resource +## [Resource] file used to express a set of [FuncGodotFGDEntity] definitions. +## +## Can be exported as an FGD file for use with a Quake or Hammer-based map editor. Used in conjunction with [FuncGodotMapSetting] to generate nodes in a [FuncGodotMap] node. +## +## @tutorial(Level Design Book FGD Chapter): https://book.leveldesignbook.com/appendix/resources/formats/fgd +## @tutorial(Valve Developer Wiki FGD Article): https://developer.valvesoftware.com/wiki/FGD +## Supported map editors enum, used in conjunction with [member target_map_editor]. +enum FuncGodotTargetMapEditors { + OTHER, + TRENCHBROOM, + JACK, + NET_RADIANT_CUSTOM, +} ## Builds and exports the FGD file. -@export var export_file: bool: - get: - return export_file # TODO Converter40 Non existent get function - set(new_export_file): - if new_export_file != export_file: - do_export_file(model_key_word_supported) +@export_tool_button("Export FGD") var export_file := export_button -func do_export_file(model_key_supported: bool = true, fgd_output_folder: String = "") -> void: +func export_button() -> void: + do_export_file(target_map_editor) + +func do_export_file(target_editor: FuncGodotTargetMapEditors = FuncGodotTargetMapEditors.TRENCHBROOM, fgd_output_folder: String = "") -> void: if not Engine.is_editor_hint(): return @@ -25,20 +34,36 @@ func do_export_file(model_key_supported: bool = true, fgd_output_folder: String if fgd_name == "": print("Skipping export: Empty FGD name") + + if not DirAccess.dir_exists_absolute(fgd_output_folder): + if DirAccess.make_dir_recursive_absolute(fgd_output_folder) != OK: + print("Skipping export: Failed to create directory") + return - var fgd_file = fgd_output_folder + "/" + fgd_name + ".fgd" - - print("Exporting FGD to ", fgd_file) + var fgd_file = fgd_output_folder.path_join(fgd_name + ".fgd") + var file_obj := FileAccess.open(fgd_file, FileAccess.WRITE) - file_obj.store_string(build_class_text(model_key_supported)) + if not file_obj: + print("Failed to open file for writing: ", fgd_file) + return + + print("Exporting FGD to ", fgd_file) + file_obj.store_string(build_class_text(target_editor)) file_obj.close() @export_group("Map Editor") -## Some map editors do not support the "model" key word and require the "studio" key word instead. -## If you get errors in your map editor, try changing this setting. +## Some map editors do not support the features found in others +## (ex: TrenchBroom supports the "model" key word while others require "studio", +## J.A.C.K. uses the "shader" key word while others use "material", etc...). +## If you get errors in your map editor, try changing this setting and re-exporting. ## This setting is overridden when the FGD is built via the Game Config resource. -@export var model_key_word_supported: bool = true +@export var target_map_editor: FuncGodotTargetMapEditors = FuncGodotTargetMapEditors.TRENCHBROOM + +# Some map editors do not support the "model" key word and require the "studio" key word instead. +# If you get errors in your map editor, try changing this setting. +# This setting is overridden when the FGD is built via the Game Config resource. +#@export var model_key_word_supported: bool = true @export_group("FGD") @@ -51,12 +76,14 @@ func do_export_file(model_key_supported: bool = true, fgd_output_folder: String ## Array of resources that inherit from [FuncGodotFGDEntityClass]. This array defines the entities that will be added to the exported FGD file and the nodes that will be generated in a [FuncGodotMap]. @export var entity_definitions: Array[Resource] = [] -func build_class_text(model_key_supported: bool = true) -> String: +func build_class_text(target_editor: FuncGodotTargetMapEditors = FuncGodotTargetMapEditors.TRENCHBROOM) -> String: var res : String = "" for base_fgd in base_fgd_files: if base_fgd is FuncGodotFGDFile: - res += base_fgd.build_class_text(model_key_supported) + res += base_fgd.build_class_text(target_editor) + else: + printerr("Base Fgd Files contains incorrect resource type! Should only be type FuncGodotFGDFile.") var entities = get_fgd_classes() for ent in entities: @@ -65,7 +92,7 @@ func build_class_text(model_key_supported: bool = true) -> String: if ent.func_godot_internal: continue - var ent_text = ent.build_def_text(model_key_supported) + var ent_text = ent.build_def_text(target_editor) res += ent_text if ent != entities[-1]: res += "\n" @@ -84,8 +111,8 @@ func get_fgd_classes() -> Array: res.append(cur_ent_def) return res -func get_entity_definitions() -> Dictionary: - var res : Dictionary = {} +func get_entity_definitions() -> Dictionary[String, FuncGodotFGDEntityClass]: + var res: Dictionary[String, FuncGodotFGDEntityClass] = {} for base_fgd in base_fgd_files: var fgd_res = base_fgd.get_entity_definitions() diff --git a/addons/func_godot/src/fgd/func_godot_fgd_file.gd.uid b/addons/func_godot/src/fgd/func_godot_fgd_file.gd.uid index 5919104..c963488 100644 --- a/addons/func_godot/src/fgd/func_godot_fgd_file.gd.uid +++ b/addons/func_godot/src/fgd/func_godot_fgd_file.gd.uid @@ -1 +1 @@ -uid://ckisq2tcxg062 +uid://drlmgulwbjwqu diff --git a/addons/func_godot/src/fgd/func_godot_fgd_model_point_class.gd b/addons/func_godot/src/fgd/func_godot_fgd_model_point_class.gd index f0b54f3..c27065d 100644 --- a/addons/func_godot/src/fgd/func_godot_fgd_model_point_class.gd +++ b/addons/func_godot/src/fgd/func_godot_fgd_model_point_class.gd @@ -1,25 +1,36 @@ @tool -## A special type of [FuncGodotFGDPointClass] entity that can automatically generate a special simplified GLB model file for the map editor display. +@icon("res://addons/func_godot/icons/icon_godambler3d.svg") +class_name FuncGodotFGDModelPointClass extends FuncGodotFGDPointClass +## A special type of [FuncGodotFGDPointClass] entity that automatically generates a special simplified GLB model file for the map editor display. ## Only supported in map editors that support GLTF or GLB. -class_name FuncGodotFGDModelPointClass -extends FuncGodotFGDPointClass +## +## @tutorial(Quake Wiki Entity Article): https://quakewiki.org/wiki/Entity +## @tutorial(Level Design Book: Entity Types and Settings): https://book.leveldesignbook.com/appendix/resources/formats/fgd#entity-types-and-settings-basic +## @tutorial(Valve Developer Wiki FGD Article): https://developer.valvesoftware.com/wiki/FGD#Class_Types_and_Properties +## @tutorial(dumptruck_ds' Quake Mapping Entities Tutorial): https://www.youtube.com/watch?v=gtL9f6_N2WM +## @tutorial(Level Design Book: Display Models for Entities): https://book.leveldesignbook.com/appendix/resources/formats/fgd#display-models-for-entities +## @tutorial(Valve Developer Wiki FGD Article: Entity Description Section): https://developer.valvesoftware.com/wiki/FGD#Entity_Description +## @tutorial(TrenchBroom Manual: Display Models for Entities): https://trenchbroom.github.io/manual/latest/#display-models-for-entities enum TargetMapEditor { - GENERIC, - TRENCHBROOM + GENERIC, ## Entity definition uses the [b]@studio[/b] key word. [member scale_expression] is ignored. Supported by all map editors. + TRENCHBROOM ## Entity definition uses the [b]@model[/b] key word. [member scale_expression] is applied if set. } -## Determines how model interprets [member scale_expression]. @export var target_map_editor: TargetMapEditor = TargetMapEditor.GENERIC -## Display model export folder relative to the model folder set by [FuncGodotLocalConfig]. +## Display model export folder relative to [member ProjectSettings.func_godot/model_point_class_save_path]. @export var models_sub_folder : String = "" -## Scale expression applied to model. See the [TrenchBroom Documentation](https://trenchbroom.github.io/manual/latest/#display-models-for-entities) for more information. +## Scale expression applied to model. Only used by TrenchBroom. If left empty, uses [member ProjectSettings.func_godot/default_inverse_scale_factor]. [br][br]Read the TrenchBroom Manual for more information on the "scale expression" feature. @export var scale_expression : String = "" -## Model Point Class can override the 'size' meta property by auto-generating a value from the meshes' [AABB]. Proper generation requires 'scale_expression' set to a float or [Vector3]. **WARNING:** Generated size property unlikely to align cleanly to grid! +## Model Point Class can override the 'size' meta property by auto-generating a value from the meshes' [AABB]. Proper generation requires [member scale_expression] set to a float or vector. [br][br][color=orange]WARNING:[/color] Generated size property unlikely to align cleanly to grid! @export var generate_size_property : bool = false +## Degrees to rotate model prior to export. Different editors may handle GLTF transformations differently. If your model isn't oriented correctly, try modifying this property. +@export var rotation_offset: Vector3 = Vector3(0.0, 0.0, 0.0) ## Creates a .gdignore file in the model export folder to prevent Godot importing the display models. Only needs to be generated once. -@export var generate_gd_ignore_file : bool = false : - set(ignore): +@export_tool_button("Generate GD Ignore File", "FileAccess") var generate_gd_ignore_file : Callable = _generate_gd_ignore_file + +func _generate_gd_ignore_file() -> void: + if Engine.is_editor_hint(): var path: String = _get_game_path().path_join(_get_model_folder()) var error: Error = DirAccess.make_dir_recursive_absolute(path) if error != Error.OK: @@ -32,7 +43,8 @@ enum TargetMapEditor { file.store_string('') file.close() -func build_def_text(model_key_supported: bool = true) -> String: +## Builds and saves the display model into the specified destination, then parses the definition and outputs it into the FGD format. +func build_def_text(target_editor: FuncGodotFGDFile.FuncGodotTargetMapEditors = FuncGodotFGDFile.FuncGodotTargetMapEditors.TRENCHBROOM) -> String: _generate_model() return super() @@ -41,13 +53,15 @@ func _generate_model() -> void: return var gltf_state := GLTFState.new() - var path = _get_export_dir() - var node = _get_node() - if node == null: return + var path: String = _get_export_dir() + var node: Node3D = _get_node() + if not node: + return if not _create_gltf_file(gltf_state, path, node): printerr("could not create gltf file") return node.queue_free() + if target_map_editor == TargetMapEditor.TRENCHBROOM: const model_key: String = "model" if scale_expression.is_empty(): @@ -61,7 +75,7 @@ func _generate_model() -> void: meta_properties["studio"] = '"%s"' % _get_local_path() if generate_size_property: - meta_properties["size"] = _generate_size_from_aabb(gltf_state.meshes) + meta_properties["size"] = _generate_size_from_aabb(gltf_state.meshes, gltf_state.get_nodes()) func _get_node() -> Node3D: var node := scene_file.instantiate() @@ -80,7 +94,7 @@ func _get_local_path() -> String: return _get_model_folder().path_join('%s.glb' % classname) func _get_model_folder() -> String: - var model_dir: String = FuncGodotLocalConfig.get_setting(FuncGodotLocalConfig.PROPERTY.GAME_PATH_MODELS_FOLDER) as String + var model_dir: String = ProjectSettings.get_setting("func_godot/model_point_class_save_path", "") as String if not models_sub_folder.is_empty(): model_dir = model_dir.path_join(models_sub_folder) return model_dir @@ -93,13 +107,15 @@ func _create_gltf_file(gltf_state: GLTFState, path: String, node: Node3D) -> boo var gltf_document := GLTFDocument.new() gltf_state.create_animations = false - node.rotate_y(deg_to_rad(-90)) + node.rotate_x(deg_to_rad(rotation_offset.x)) + node.rotate_y(deg_to_rad(rotation_offset.y)) + node.rotate_z(deg_to_rad(rotation_offset.z)) # With TrenchBroom we can specify a scale expression, but for other editors we need to scale our models manually. if target_map_editor != TargetMapEditor.TRENCHBROOM: var scale_factor: Vector3 = Vector3.ONE if scale_expression.is_empty(): - scale_factor *= FuncGodotLocalConfig.get_setting(FuncGodotLocalConfig.PROPERTY.DEFAULT_INVERSE_SCALE) as float + scale_factor *= ProjectSettings.get_setting("func_godot/default_inverse_scale_factor", 32.0) as float else: if scale_expression.begins_with('\''): var scale_arr := scale_expression.split_floats(' ', false) @@ -126,31 +142,43 @@ func _save_to_file_system(gltf_document: GLTFDocument, gltf_state: GLTFState, pa return error = gltf_document.write_to_filesystem(gltf_state, path) - if error != OK: + if error != Error.OK: printerr("Failed writing to file system", error) return print('Exported model to ', path) -func _generate_size_from_aabb(meshes: Array[GLTFMesh]) -> AABB: +func _generate_size_from_aabb(meshes: Array[GLTFMesh], nodes: Array[GLTFNode]) -> AABB: var aabb := AABB() for mesh in meshes: aabb = aabb.merge(mesh.mesh.get_mesh().get_aabb()) - + var pos_ofs := Vector3.ZERO + if not nodes.is_empty(): + var ct: int = 0 + for node in nodes: + if node.parent == 0: + pos_ofs += node.position + ct += 1 + pos_ofs /= maxi(ct, 1) + aabb.position += pos_ofs + # Reorient the AABB so it matches TrenchBroom's coordinate system var size_prop := AABB() size_prop.position = Vector3(aabb.position.z, aabb.position.x, aabb.position.y) size_prop.size = Vector3(aabb.size.z, aabb.size.x, aabb.size.y) - + # Scale the size bounds to our scale factor # Scale factor will need to be set if we decide to auto-generate our bounds var scale_factor: Vector3 = Vector3.ONE if target_map_editor == TargetMapEditor.TRENCHBROOM: - if scale_expression.begins_with('\''): - var scale_arr := scale_expression.split_floats(' ', false) - if scale_arr.size() == 3: - scale_factor *= Vector3(scale_arr[0], scale_arr[1], scale_arr[2]) - elif scale_expression.to_float() > 0: - scale_factor *= scale_expression.to_float() + if scale_expression.is_empty(): + scale_factor *= ProjectSettings.get_setting("func_godot/default_inverse_scale_factor", 32.0) as float + else: + if scale_expression.begins_with('\''): + var scale_arr := scale_expression.split_floats(' ', false) + if scale_arr.size() == 3: + scale_factor *= Vector3(scale_arr[0], scale_arr[1], scale_arr[2]) + elif scale_expression.to_float() > 0: + scale_factor *= scale_expression.to_float() size_prop.position *= scale_factor size_prop.size *= scale_factor diff --git a/addons/func_godot/src/fgd/func_godot_fgd_model_point_class.gd.uid b/addons/func_godot/src/fgd/func_godot_fgd_model_point_class.gd.uid index f9d348c..fc85996 100644 --- a/addons/func_godot/src/fgd/func_godot_fgd_model_point_class.gd.uid +++ b/addons/func_godot/src/fgd/func_godot_fgd_model_point_class.gd.uid @@ -1 +1 @@ -uid://ieokw1i153l2 +uid://ldfqjtq0br35 diff --git a/addons/func_godot/src/fgd/func_godot_fgd_point_class.gd b/addons/func_godot/src/fgd/func_godot_fgd_point_class.gd index f84428e..58b4dce 100644 --- a/addons/func_godot/src/fgd/func_godot_fgd_point_class.gd +++ b/addons/func_godot/src/fgd/func_godot_fgd_point_class.gd @@ -1,20 +1,35 @@ @tool -## FGD PointClass entity definition, used to define point entities. -## PointClass entities can use either the `node_class` or the `scene_file` property to tell [FuncGodotMap] what to generate on map build. -class_name FuncGodotFGDPointClass -extends FuncGodotFGDEntityClass +@icon("res://addons/func_godot/icons/icon_godambler3d.svg") +class_name FuncGodotFGDPointClass extends FuncGodotFGDEntityClass +## FGD PointClass entity definition. +## +## A resource used to define an FGD PointClass entity. PointClass entities can use either the [member FuncGodotFGDEntityClass.node_class] +## or the [member scene_file] property to tell [FuncGodotMap] what to generate on map build. +## +## @tutorial(Quake Wiki Entity Article): https://quakewiki.org/wiki/Entity +## @tutorial(Level Design Book: Entity Types and Settings): https://book.leveldesignbook.com/appendix/resources/formats/fgd#entity-types-and-settings-basic +## @tutorial(Valve Developer Wiki FGD Article): https://developer.valvesoftware.com/wiki/FGD#Class_Types_and_Properties +## @tutorial(dumptruck_ds' Quake Mapping Entities Tutorial): https://www.youtube.com/watch?v=gtL9f6_N2WM +## @tutorial(Level Design Book: Display Models for Entities): https://book.leveldesignbook.com/appendix/resources/formats/fgd#display-models-for-entities +## @tutorial(Valve Developer Wiki FGD Article: Entity Description Section): https://developer.valvesoftware.com/wiki/FGD#Entity_Description +## @tutorial(TrenchBroom Manual: Display Models for Entities): https://trenchbroom.github.io/manual/latest/#display-models-for-entities func _init() -> void: prefix = "@PointClass" @export_group ("Scene") -## An optional scene file to instantiate on map build. Overrides `node_class` and `script_class`. +## An optional [PackedScene] file to instantiate on map build. Overrides [member FuncGodotFGDEntityClass.node_class] and [member script_class]. @export var scene_file: PackedScene -## An optional script file to attach to the node generated on map build. Ignored if `scene_file` is specified. @export_group ("Scripting") +## An optional [Script] resource to attach to the node generated on map build. Ignored if [member scene_file] is specified. @export var script_class: Script @export_group("Build") -## Toggles whether entity will use `angles`, `mangle`, or `angle` to determine rotations on [FuncGodotMap] build, prioritizing the key value pairs in that order. Set to `false` if you would like to define how the generated node is rotated yourself. +## Toggles whether entity will use `angles`, `mangle`, or `angle` to determine rotations on [FuncGodotMap] build, prioritizing the key value pairs in that order. +## Set to [code]false[/code] if you would like to define how the generated node is rotated yourself. @export var apply_rotation_on_map_build : bool = true + +## Toggles whether entity will use `scale` to determine the generated node or scene's scale. This is performed on the top level node. +## The property can be a [float], [Vector3], or [Vector2]. Set to [code]false[/code] if you would like to define how the generated node is scaled yourself. +@export var apply_scale_on_map_build: bool = true diff --git a/addons/func_godot/src/fgd/func_godot_fgd_point_class.gd.uid b/addons/func_godot/src/fgd/func_godot_fgd_point_class.gd.uid index 55573a1..e0e62c2 100644 --- a/addons/func_godot/src/fgd/func_godot_fgd_point_class.gd.uid +++ b/addons/func_godot/src/fgd/func_godot_fgd_point_class.gd.uid @@ -1 +1 @@ -uid://dq8gw52aflgyo +uid://cxsqwtsqd8w33 diff --git a/addons/func_godot/src/fgd/func_godot_fgd_solid_class.gd b/addons/func_godot/src/fgd/func_godot_fgd_solid_class.gd index 7bb6b88..00f2665 100644 --- a/addons/func_godot/src/fgd/func_godot_fgd_solid_class.gd +++ b/addons/func_godot/src/fgd/func_godot_fgd_solid_class.gd @@ -1,19 +1,31 @@ @tool -## FGD SolidClass entity definition, used to define brush entities. -## A [MeshInstance3D] will be generated by FuncGodotMap according to this definition's Visual Build settings. If FuncGodotFGDSolidClass [member node_class] inherits [CollisionObject3D] then one or more [CollisionShape3D] nodes will be generated according to Collision Build settings. -class_name FuncGodotFGDSolidClass -extends FuncGodotFGDEntityClass +@icon("res://addons/func_godot/icons/icon_slipgate3d.svg") +class_name FuncGodotFGDSolidClass extends FuncGodotFGDEntityClass +## FGD SolidClass entity definition that generates a mesh from [FuncGodotData.BrushData]. +## +## A [MeshInstance3D] will be generated by [FuncGodotMap] according to this definition's Visual Build settings. +## If [member FuncGodotFGDEntityClass.node_class] inherits [CollisionObject3D] +## then one or more [CollisionShape3D] nodes will be generated according to Collision Build settings. +## +## @tutorial(Quake Wiki Entity Article): https://quakewiki.org/wiki/Entity +## @tutorial(Level Design Book: Entity Types and Settings): https://book.leveldesignbook.com/appendix/resources/formats/fgd#entity-types-and-settings-basic +## @tutorial(Valve Developer Wiki FGD Article): https://developer.valvesoftware.com/wiki/FGD#Class_Types_and_Properties +## @tutorial(dumptruck_ds' Quake Mapping Entities Tutorial): https://www.youtube.com/watch?v=gtL9f6_N2WM enum SpawnType { - WORLDSPAWN = 0, ## Is worldspawn - MERGE_WORLDSPAWN = 1, ## Should be combined with worldspawn - ENTITY = 2, ## Is its own separate entity + WORLDSPAWN = 0, ## Builds the geometry of this entity relative to the FuncGodotMap position. + MERGE_WORLDSPAWN = 1, ## This entity's geometry is merged with the [b]worldspawn[/b] entity and this entity is removed. Behavior mimics [b]func_group[/b] in modern Quake compilers. + ENTITY = 2, ## This entity is built as its own object. It finds the origin of the entity based on [member origin_type]. } enum OriginType { - IGNORE = 0, ## Ignore origin property and only use averaged brush vertices for positioning. Standard Quake 1 / Half-Life behavior. - ABSOLUTE = 1, ## Use origin property for position center, ignoring brush vertice positions. - RELATIVE = 2 ## Use origin relative to averaged brush vertice positions. Use this setting if brush entity vertices have coordinates local to the origin. + AVERAGED = 0, ## Use averaged brush vertices for center position. This is the old Qodot behavior. + ABSOLUTE = 1, ## Use [code]origin[/code] class property in global coordinates as the center position. + RELATIVE = 2, ## Calculate center position using [code]origin[/code] class property as an offset to the entity's bounding box center. + BRUSH = 3, ## Calculate center position based on the bounding box center of all brushes using the 'origin' texture specified in the [FuncGodotMapSettings]. If no Origin Brush is found, fall back to BOUNDS_CENTER. This is the default option and recommended for most entities. + BOUNDS_CENTER = 4, ## Use the center of the entity's bounding box for center position. + BOUNDS_MINS = 5, ## Use the lowest bounding box coordinates for center position. This is standard Quake and Half-Life brush entity behavior. + BOUNDS_MAXS = 6, ## Use the highest bounding box coordinates for center position. } enum CollisionShapeType { @@ -24,13 +36,15 @@ enum CollisionShapeType { ## Controls whether this Solid Class is the worldspawn, is combined with the worldspawn, or is spawned as its own free-standing entity. @export var spawn_type: SpawnType = SpawnType.ENTITY -## Controls how this Solid Class utilizes the `origin` key value pair to find its position. -@export var origin_type: OriginType = OriginType.IGNORE +## Controls how this Solid Class determines its center position. Only valid if [member spawn_type] is set to ENTITY. +@export var origin_type: OriginType = OriginType.BRUSH @export_group("Visual Build") ## Controls whether a [MeshInstance3D] is built for this Solid Class. @export var build_visuals : bool = true -## Sets generated [MeshInstance3D] to be available for UV2 unwrapping after [FuncGodotMap] build. Utilized in baked lightmapping. +## Global illumination mode for the generated [MeshInstance3D]. Setting to [b]GI_MODE_STATIC[/b] will unwrap the mesh's UV2 during build. +@export var global_illumination_mode : GeometryInstance3D.GIMode = GeometryInstance3D.GI_MODE_STATIC +## @deprecated: Use [member global_illumination_mode] instead. [br]Sets generated [MeshInstance3D] to be available for UV2 unwrapping after [FuncGodotMap] build. Utilized in baked lightmapping. @export var use_in_baked_light : bool = true ## Shadow casting setting allows for further lightmapping customization. @export var shadow_casting_setting : GeometryInstance3D.ShadowCastingSetting = GeometryInstance3D.SHADOW_CASTING_SETTING_ON @@ -51,8 +65,41 @@ enum CollisionShapeType { ## The collision margin for the Solid Class' collision shapes. Not used in Godot Physics. See [Shape3D] for details. @export var collision_shape_margin: float = 0.04 +## The following properties tell FuncGodot to add a [i]"func_godot_mesh_data"[/i] Dictionary to the metadata of the generated node upon build. +## This data is parallelized, so that each element of the array is ordered to reference the same face in the mesh. +@export_group("Mesh Metadata") +## Add a texture lookup table to the generated node's metadata on build.[br][br] +## The data is split between an [Array] of [StringName] called [i]"texture_names"[/i] containing all currently used texture materials +## and a [PackedInt32Array] called [i]"textures"[/i] where each element is an index corresponding to the [i]"texture_names"[/i] entries. +@export var add_textures_metadata: bool = false +## Add a [PackedVector3Array] called [i]"vertices"[/i] to the generated node's metadata on build.[br][br] +## This is a list of every vertex in the generated node's [MeshInstance3D]. Every 3 vertices represent a single face. +@export var add_vertex_metadata: bool = false +## Add a [PackedVector3Array] called [i]"positions"[/i] to the generated node's metadata on build.[br][br] +## This is a list of positions for each face, local to the generated node, calculated by averaging the vertices to find the face's center. +@export var add_face_position_metadata: bool = false +## Add a [PackedVector3Array] called [i]"normals"[/i] to the generated node's metadata on build.[br][br] +## Contains a list of each face's normal. +@export var add_face_normal_metadata: bool = false +## Add a [Dictionary] called [i]"collision_shape_to_face_indices_map"[/i] in the generated node's metadata on build.[br][br] +## Contains keys of strings, which are the names of child [CollisionShape3D] nodes, and values of +## [PackedInt32Array], containing indices of that child's faces.[br][br] +## For example, an element of [br][br][code]{ "entity_1_brush_0_collision_shape" : [0, 1, 3] }[/code][br][br] +## shows that this solid class has been generated with one child collision shape named +## [i]entity_1_brush_0_collision_shape[/i] which handles 3 faces of the mesh with collision, at indices 0, 1, and 3. +@export var add_collision_shape_to_face_indices_metadata : bool = false +## [s]Add a [Dictionary] called [i]"collision_shape_to_face_range_map"[/i] in the generated node's metadata on build.[br][br] +## Contains keys of strings, which are the names of child [CollisionShape3D] nodes, and values of +## [Vector2i], where [i]X[/i] represents the starting index of that child's faces and [i]Y[/i] represents the +## ending index.[br][br] +## For example, an element of [br][br][code]{ "entity_1_brush_0_collision_shape" : Vector2i(0, 15) }[/code][br][br] +## shows that this solid class has been generated with one child collision shape named +## [i]entity_1_brush_0_collision_shape[/i] which handles the first 15 faces of the parts of the mesh with collision.[/s] +## @deprecated: No longer supported or planned as of 2025.7, but retained in case a contributor provides an appropriate solution in the future. +@export var add_collision_shape_face_range_metadata: bool = false + @export_group("Scripting") -## An optional script file to attach to the node generated on map build. +## An optional [Script] file to attach to the node generated on map build. @export var script_class: Script func _init(): diff --git a/addons/func_godot/src/fgd/func_godot_fgd_solid_class.gd.uid b/addons/func_godot/src/fgd/func_godot_fgd_solid_class.gd.uid index 1b08f80..508ffeb 100644 --- a/addons/func_godot/src/fgd/func_godot_fgd_solid_class.gd.uid +++ b/addons/func_godot/src/fgd/func_godot_fgd_solid_class.gd.uid @@ -1 +1 @@ -uid://cmoudtn1s5egw +uid://5cow84q03m6a diff --git a/addons/func_godot/src/func_godot_plugin.gd b/addons/func_godot/src/func_godot_plugin.gd index 2fcb1d8..11c18b7 100644 --- a/addons/func_godot/src/func_godot_plugin.gd +++ b/addons/func_godot/src/func_godot_plugin.gd @@ -1,13 +1,12 @@ @tool -class_name FuncGodotPlugin -extends EditorPlugin +@icon("res://addons/func_godot/icons/icon_godot_ranger.svg") +class_name FuncGodotPlugin extends EditorPlugin var map_import_plugin : QuakeMapImportPlugin = null var palette_import_plugin : QuakePaletteImportPlugin = null var wad_import_plugin: QuakeWadImportPlugin = null -var func_godot_map_control: Control = null -var func_godot_map_progress_bar: Control = null +#var func_godot_map_progress_bar: Control = null var edited_object_ref: WeakRef = weakref(null) func _get_plugin_name() -> String: @@ -15,16 +14,13 @@ func _get_plugin_name() -> String: func _handles(object: Object) -> bool: return object is FuncGodotMap - + func _edit(object: Object) -> void: edited_object_ref = weakref(object) -func _make_visible(visible: bool) -> void: - if func_godot_map_control: - func_godot_map_control.set_visible(visible) - - if func_godot_map_progress_bar: - func_godot_map_progress_bar.set_visible(visible) +#func _make_visible(visible: bool) -> void: + #if func_godot_map_progress_bar: + #func_godot_map_progress_bar.set_visible(visible) func _enter_tree() -> void: # Import plugins @@ -36,16 +32,46 @@ func _enter_tree() -> void: add_import_plugin(palette_import_plugin) add_import_plugin(wad_import_plugin) - # FuncGodotMap button - func_godot_map_control = create_func_godot_map_control() - func_godot_map_control.set_visible(false) - add_control_to_container(EditorPlugin.CONTAINER_SPATIAL_EDITOR_MENU, func_godot_map_control) - - func_godot_map_progress_bar = create_func_godot_map_progress_bar() - func_godot_map_progress_bar.set_visible(false) - add_control_to_container(EditorPlugin.CONTAINER_INSPECTOR_BOTTOM, func_godot_map_progress_bar) + #func_godot_map_progress_bar = create_func_godot_map_progress_bar() + #func_godot_map_progress_bar.set_visible(false) + #add_control_to_container(EditorPlugin.CONTAINER_INSPECTOR_BOTTOM, func_godot_map_progress_bar) add_custom_type("FuncGodotMap", "Node3D", preload("res://addons/func_godot/src/map/func_godot_map.gd"), null) + + # Default Map Settings + if not ProjectSettings.has_setting("func_godot/default_map_settings"): + ProjectSettings.set_setting("func_godot/default_map_settings", "res://addons/func_godot/func_godot_default_map_settings.tres") + var property_info = { + "name": "func_godot/default_map_settings", + "type": TYPE_STRING, + "hint": PROPERTY_HINT_FILE, + "hint_string": "*.tres" + } + ProjectSettings.add_property_info(property_info) + ProjectSettings.set_as_basic("func_godot/default_map_settings", true) + ProjectSettings.set_initial_value("func_godot/default_map_settings", "res://addons/func_godot/func_godot_default_map_settings.tres") + + # Default Inverse Scale Factor + if not ProjectSettings.has_setting("func_godot/default_inverse_scale_factor"): + ProjectSettings.set_setting("func_godot/default_inverse_scale_factor", 32.0) + var property_info = { + "name": "func_godot/default_inverse_scale_factor", + "type": TYPE_FLOAT + } + ProjectSettings.add_property_info(property_info) + ProjectSettings.set_as_basic("func_godot/default_inverse_scale_factor", true) + ProjectSettings.set_initial_value("func_godot/default_inverse_scale_factor", 32.0) + + # Model Point Class Default Path + if not ProjectSettings.has_setting("func_godot/model_point_class_save_path"): + ProjectSettings.set_setting("func_godot/model_point_class_save_path", "") + var property_info = { + "name": "func_godot/model_point_class_save_path", + "type": TYPE_STRING + } + ProjectSettings.add_property_info(property_info) + ProjectSettings.set_as_basic("func_godot/model_point_class_save_path", true) + ProjectSettings.set_initial_value("func_godot/model_point_class_save_path", "") func _exit_tree() -> void: remove_custom_type("FuncGodotMap") @@ -57,119 +83,49 @@ func _exit_tree() -> void: map_import_plugin = null palette_import_plugin = null wad_import_plugin = null - - if func_godot_map_control: - remove_control_from_container(EditorPlugin.CONTAINER_SPATIAL_EDITOR_MENU, func_godot_map_control) - func_godot_map_control.queue_free() - func_godot_map_control = null - - if func_godot_map_progress_bar: - remove_control_from_container(EditorPlugin.CONTAINER_SPATIAL_EDITOR_BOTTOM, func_godot_map_progress_bar) - func_godot_map_progress_bar.queue_free() - func_godot_map_progress_bar = null - -## Create the toolbar controls for [FuncGodotMap] instances in the editor -func create_func_godot_map_control() -> Control: - var separator = VSeparator.new() - var icon = TextureRect.new() - icon.texture = preload("res://addons/func_godot/icons/icon_slipgate3d.svg") - icon.size_flags_vertical = Control.SIZE_SHRINK_CENTER - - var build_button = Button.new() - build_button.text = "Build" - build_button.connect("pressed",Callable(self,"func_godot_map_build")) - - var unwrap_uv2_button = Button.new() - unwrap_uv2_button.text = "Unwrap UV2" - unwrap_uv2_button.connect("pressed",Callable(self,"func_godot_map_unwrap_uv2")) - - var control = HBoxContainer.new() - control.add_child(separator) - control.add_child(icon) - control.add_child(build_button) - control.add_child(unwrap_uv2_button) - - return control + #if func_godot_map_progress_bar: + #remove_control_from_container(EditorPlugin.CONTAINER_INSPECTOR_BOTTOM, func_godot_map_progress_bar) + #func_godot_map_progress_bar.queue_free() + #func_godot_map_progress_bar = null -## Create a progress bar for building a [FuncGodotMap] -func create_func_godot_map_progress_bar() -> Control: - var progress_label = Label.new() - progress_label.name = "ProgressLabel" - progress_label.horizontal_alignment = HORIZONTAL_ALIGNMENT_CENTER - progress_label.vertical_alignment = VERTICAL_ALIGNMENT_CENTER +# Create a progress bar for building a [FuncGodotMap] +#func create_func_godot_map_progress_bar() -> Control: + #var progress_label = Label.new() + #progress_label.name = "ProgressLabel" + #progress_label.horizontal_alignment = HORIZONTAL_ALIGNMENT_CENTER + #progress_label.vertical_alignment = VERTICAL_ALIGNMENT_CENTER + # + #var progress_bar := ProgressBar.new() + #progress_bar.name = "ProgressBar" + #progress_bar.show_percentage = false + #progress_bar.min_value = 0.0 + #progress_bar.max_value = 1.0 + #progress_bar.custom_minimum_size.y = 30 + #progress_bar.set_anchors_and_offsets_preset(Control.PRESET_LEFT_WIDE) + #progress_bar.add_child(progress_label) + #progress_label.set_anchors_and_offsets_preset(Control.PRESET_LEFT_WIDE) + #progress_label.offset_top = -9 + #progress_label.offset_left = 3 + # + #return progress_bar - var progress_bar := ProgressBar.new() - progress_bar.name = "ProgressBar" - progress_bar.show_percentage = false - progress_bar.min_value = 0.0 - progress_bar.max_value = 1.0 - progress_bar.custom_minimum_size.y = 30 - progress_bar.set_anchors_and_offsets_preset(Control.PRESET_LEFT_WIDE) - progress_bar.add_child(progress_label) - progress_label.set_anchors_and_offsets_preset(Control.PRESET_LEFT_WIDE) - progress_label.offset_top = -9 - progress_label.offset_left = 3 - - return progress_bar - -## Create the "Build" button for [FuncGodotMap]s in the editor -func func_godot_map_build() -> void: - var edited_object : FuncGodotMap = edited_object_ref.get_ref() - if not edited_object: - return - - edited_object.should_add_children = true - edited_object.should_set_owners = true - - set_func_godot_map_control_disabled(true) - edited_object.build_progress.connect(func_godot_map_build_progress) - edited_object.build_complete.connect(func_godot_map_build_complete.bind(edited_object)) - edited_object.build_failed.connect(func_godot_map_build_complete.bind(edited_object)) - - edited_object.verify_and_build() - -## Create the "Unwrap UV2" button for [FuncGodotMap]s in the editor -func func_godot_map_unwrap_uv2() -> void: - var edited_object = edited_object_ref.get_ref() - if not edited_object: - return - - if not edited_object is FuncGodotMap: - return - - set_func_godot_map_control_disabled(true) - edited_object.connect("unwrap_uv2_complete", func_godot_map_build_complete.bind(edited_object)) - - edited_object.unwrap_uv2() - -## Enable or disable the control for [FuncGodotMap]s in the editor -func set_func_godot_map_control_disabled(disabled: bool) -> void: - if not func_godot_map_control: - return - - for child in func_godot_map_control.get_children(): - if child is Button: - child.set_disabled(disabled) - -## Update the build progress bar (see: [method create_func_godot_map_progress_bar]) to display the current step and progress (0-1) -func func_godot_map_build_progress(step: String, progress: float) -> void: - var progress_label = func_godot_map_progress_bar.get_node("ProgressLabel") - func_godot_map_progress_bar.value = progress - progress_label.text = step.capitalize() +# Update the build progress bar (see: [method create_func_godot_map_progress_bar]) to display the current step and progress (0-1) +#func func_godot_map_build_progress(step: String, progress: float) -> void: + #var progress_label = func_godot_map_progress_bar.get_node("ProgressLabel") + #func_godot_map_progress_bar.value = progress + #progress_label.text = step.capitalize() ## Callback for when the build process for a [FuncGodotMap] is finished. func func_godot_map_build_complete(func_godot_map: FuncGodotMap) -> void: - var progress_label = func_godot_map_progress_bar.get_node("ProgressLabel") - progress_label.text = "Build Complete" - - set_func_godot_map_control_disabled(false) - - if func_godot_map.is_connected("build_progress",Callable(self,"func_godot_map_build_progress")): - func_godot_map.disconnect("build_progress",Callable(self,"func_godot_map_build_progress")) - + #var progress_label = func_godot_map_progress_bar.get_node("ProgressLabel") + #progress_label.text = "Build Complete" + + #if func_godot_map.is_connected("build_progress",Callable(self,"func_godot_map_build_progress")): + #func_godot_map.disconnect("build_progress",Callable(self,"func_godot_map_build_progress")) + if func_godot_map.is_connected("build_complete",Callable(self,"func_godot_map_build_complete")): func_godot_map.disconnect("build_complete",Callable(self,"func_godot_map_build_complete")) - + if func_godot_map.is_connected("build_failed",Callable(self,"func_godot_map_build_complete")): func_godot_map.disconnect("build_failed",Callable(self,"func_godot_map_build_complete")) diff --git a/addons/func_godot/src/func_godot_plugin.gd.uid b/addons/func_godot/src/func_godot_plugin.gd.uid index f9e04c2..c77b5be 100644 --- a/addons/func_godot/src/func_godot_plugin.gd.uid +++ b/addons/func_godot/src/func_godot_plugin.gd.uid @@ -1 +1 @@ -uid://di8rxxgk8bt6b +uid://bqy3tr83l7di diff --git a/addons/func_godot/src/import/quake_map_file.gd b/addons/func_godot/src/import/quake_map_file.gd index 6e00296..e1f7d1a 100644 --- a/addons/func_godot/src/import/quake_map_file.gd +++ b/addons/func_godot/src/import/quake_map_file.gd @@ -1,5 +1,14 @@ @icon("res://addons/func_godot/icons/icon_quake_file.svg") -class_name QuakeMapFile -extends Resource +class_name QuakeMapFile extends Resource +## Map file that can be built by [FuncGodotMap]. +## +## Map file that can be built by a [FuncGodotMap]. Supports the Quake and Valve map formats. +## +## @tutorial(Quake Wiki Map Format Article): https://quakewiki.org/wiki/Quake_Map_Format +## @tutorial(Valve Developer Wiki VMF Article): https://developer.valvesoftware.com/wiki/VMF_(Valve_Map_Format) +## Number of times this map file has been imported. @export var revision: int = 0 + +## Raw map data. +@export_multiline var map_data: String = "" diff --git a/addons/func_godot/src/import/quake_map_file.gd.uid b/addons/func_godot/src/import/quake_map_file.gd.uid index c4abbb3..9403fd7 100644 --- a/addons/func_godot/src/import/quake_map_file.gd.uid +++ b/addons/func_godot/src/import/quake_map_file.gd.uid @@ -1 +1 @@ -uid://cumjyudn5ug5t +uid://cxvwf50mehesf diff --git a/addons/func_godot/src/import/quake_map_import_plugin.gd b/addons/func_godot/src/import/quake_map_import_plugin.gd index 7b822fa..c9f1101 100644 --- a/addons/func_godot/src/import/quake_map_import_plugin.gd +++ b/addons/func_godot/src/import/quake_map_import_plugin.gd @@ -1,8 +1,5 @@ @tool -class_name QuakeMapImportPlugin -extends EditorImportPlugin - -# Quake super.map import plugin +class_name QuakeMapImportPlugin extends EditorImportPlugin func _get_importer_name() -> String: return 'func_godot.map' @@ -14,7 +11,7 @@ func _get_resource_type() -> String: return 'Resource' func _get_recognized_extensions() -> PackedStringArray: - return PackedStringArray(['map']) + return PackedStringArray(['map','vmf']) func _get_priority(): return 1.0 @@ -36,11 +33,11 @@ func _import(source_file, save_path, options, r_platform_variants, r_gen_files) var map_resource : QuakeMapFile = null - var existing_resource := load(save_path_str) as QuakeMapFile - if(existing_resource != null): - map_resource = existing_resource + if ResourceLoader.exists(save_path_str): + map_resource = load(save_path_str) as QuakeMapFile map_resource.revision += 1 else: map_resource = QuakeMapFile.new() + map_resource.map_data = FileAccess.open(source_file, FileAccess.READ).get_as_text(true) - return ResourceSaver.save(map_resource, save_path_str) \ No newline at end of file + return ResourceSaver.save(map_resource, save_path_str) diff --git a/addons/func_godot/src/import/quake_map_import_plugin.gd.uid b/addons/func_godot/src/import/quake_map_import_plugin.gd.uid index b35f9b1..ab9eb4a 100644 --- a/addons/func_godot/src/import/quake_map_import_plugin.gd.uid +++ b/addons/func_godot/src/import/quake_map_import_plugin.gd.uid @@ -1 +1 @@ -uid://chmlk6gbseg5k +uid://dnsj08ot32vpc diff --git a/addons/func_godot/src/import/quake_palette_file.gd b/addons/func_godot/src/import/quake_palette_file.gd index c4f2c87..3cbb8a2 100644 --- a/addons/func_godot/src/import/quake_palette_file.gd +++ b/addons/func_godot/src/import/quake_palette_file.gd @@ -1,7 +1,13 @@ @icon("res://addons/func_godot/icons/icon_quake_file.svg") -class_name QuakePaletteFile -extends Resource +class_name QuakePaletteFile extends Resource +## Quake LMP palette format file used with [QuakeWadFile]. +## +## Quake LMP palette format file used in conjunction with a Quake WAD2 format [QuakeWadFile]. +## Not required for the Valve WAD3 format. +## +## @tutorial(Quake Wiki Palette Article): https://quakewiki.org/wiki/Quake_palette#palette.lmp +## Collection of [Color]s retrieved from the LMP palette file. @export var colors: PackedColorArray func _init(colors): diff --git a/addons/func_godot/src/import/quake_palette_file.gd.uid b/addons/func_godot/src/import/quake_palette_file.gd.uid index e28be6b..85ab1ac 100644 --- a/addons/func_godot/src/import/quake_palette_file.gd.uid +++ b/addons/func_godot/src/import/quake_palette_file.gd.uid @@ -1 +1 @@ -uid://bsoyy4aub0hwo +uid://dqhjx7jjbif5d diff --git a/addons/func_godot/src/import/quake_palette_import_plugin.gd b/addons/func_godot/src/import/quake_palette_import_plugin.gd index 01f6762..93abd08 100644 --- a/addons/func_godot/src/import/quake_palette_import_plugin.gd +++ b/addons/func_godot/src/import/quake_palette_import_plugin.gd @@ -1,8 +1,5 @@ @tool -class_name QuakePaletteImportPlugin -extends EditorImportPlugin - -# Quake super.map import plugin +class_name QuakePaletteImportPlugin extends EditorImportPlugin func _get_importer_name() -> String: return 'func_godot.palette' @@ -58,4 +55,4 @@ func _import(source_file, save_path, options, r_platform_variants, r_gen_files) var palette_resource := QuakePaletteFile.new(colors) - return ResourceSaver.save(palette_resource, save_path_str) \ No newline at end of file + return ResourceSaver.save(palette_resource, save_path_str) diff --git a/addons/func_godot/src/import/quake_palette_import_plugin.gd.uid b/addons/func_godot/src/import/quake_palette_import_plugin.gd.uid index 217966c..f1d0bb2 100644 --- a/addons/func_godot/src/import/quake_palette_import_plugin.gd.uid +++ b/addons/func_godot/src/import/quake_palette_import_plugin.gd.uid @@ -1 +1 @@ -uid://djehnbm5nyrwu +uid://c6k7hftart3u3 diff --git a/addons/func_godot/src/import/quake_wad_file.gd b/addons/func_godot/src/import/quake_wad_file.gd index 77e6894..5a0d66e 100644 --- a/addons/func_godot/src/import/quake_wad_file.gd +++ b/addons/func_godot/src/import/quake_wad_file.gd @@ -1,8 +1,14 @@ @icon("res://addons/func_godot/icons/icon_quake_file.svg") -class_name QuakeWadFile -extends Resource +class_name QuakeWadFile extends Resource +## Texture container in the WAD2 or WAD3 format. +## +## Texture container in the Quake WAD2 or Valve WAD3 format. +## +## @tutorial(Quake Wiki WAD Article): https://quakewiki.org/wiki/Texture_Wad +## @tutorial(Valve Developer Wiki WAD3 Article): https://developer.valvesoftware.com/wiki/WAD -@export var textures: Dictionary +## Collection of [ImageTexture] imported from the WAD file. +@export var textures: Dictionary[String, ImageTexture] -func _init(textures: Dictionary): +func _init(textures: Dictionary = Dictionary()): self.textures = textures diff --git a/addons/func_godot/src/import/quake_wad_file.gd.uid b/addons/func_godot/src/import/quake_wad_file.gd.uid index 8faba67..1d58e09 100644 --- a/addons/func_godot/src/import/quake_wad_file.gd.uid +++ b/addons/func_godot/src/import/quake_wad_file.gd.uid @@ -1 +1 @@ -uid://clpdmkhontvmb +uid://cij36hpqc46c diff --git a/addons/func_godot/src/import/quake_wad_import_plugin.gd b/addons/func_godot/src/import/quake_wad_import_plugin.gd index 8565a49..cd14ee9 100644 --- a/addons/func_godot/src/import/quake_wad_import_plugin.gd +++ b/addons/func_godot/src/import/quake_wad_import_plugin.gd @@ -1,13 +1,24 @@ @tool class_name QuakeWadImportPlugin extends EditorImportPlugin -enum WadEntryType { +enum WadFormat { + Quake, + HalfLife +} + +enum QuakeWadEntryType { Palette = 0x40, SBarPic = 0x42, MipsTexture = 0x44, ConsolePic = 0x45 } +enum HalfLifeWadEntryType { + QPic = 0x42, + MipsTexture = 0x43, + FixedFont = 0x45 +} + const TEXTURE_NAME_LENGTH := 16 const MAX_MIP_LEVELS := 4 @@ -15,7 +26,7 @@ func _get_importer_name() -> String: return 'func_godot.wad' func _get_visible_name() -> String: - return 'Quake Texture2D WAD' + return 'Quake WAD' func _get_resource_type() -> String: return 'Resource' @@ -61,21 +72,25 @@ func _import(source_file, save_path, options, r_platform_variants, r_gen_files) var err = FileAccess.get_open_error() print(['Error opening super.wad file: ', err]) return err - - var palette_path : String = options['palette_file'] - var palette_file : QuakePaletteFile = load(palette_path) as QuakePaletteFile - if not palette_file: - print('Error: Invalid palette file') - return ERR_CANT_ACQUIRE_RESOURCE - + # Read WAD header var magic : PackedByteArray = file.get_buffer(4) var magic_string : String = magic.get_string_from_ascii() - - if(magic_string != 'WAD2'): + var wad_format: int = WadFormat.Quake + + if magic_string == 'WAD3': + wad_format = WadFormat.HalfLife + elif magic_string != 'WAD2': print('Error: Invalid WAD magic') return ERR_INVALID_DATA - + + var palette_path : String = options['palette_file'] + var palette_file : QuakePaletteFile = load(palette_path) as QuakePaletteFile + if wad_format == WadFormat.Quake and not palette_file: + print('Error: Invalid Quake palette file') + file.close() + return ERR_CANT_ACQUIRE_RESOURCE + var num_entries : int = file.get_32() var dir_offset : int = file.get_32() @@ -94,8 +109,9 @@ func _import(source_file, save_path, options, r_platform_variants, r_gen_files) var unknown : int = file.get_16() var name : PackedByteArray = file.get_buffer(TEXTURE_NAME_LENGTH) var name_string : String = name.get_string_from_ascii() - - if type == int(WadEntryType.MipsTexture): + + if (wad_format == WadFormat.Quake and type == int(QuakeWadEntryType.MipsTexture)) or ( + wad_format == WadFormat.HalfLife and type == int(HalfLifeWadEntryType.MipsTexture)): entries.append([ offset, in_wad_size, @@ -104,51 +120,90 @@ func _import(source_file, save_path, options, r_platform_variants, r_gen_files) compression, name_string ]) - + # Read mip textures var texture_data_array: Array = [] for entry in entries: var offset : int = entry[0] - file.seek(0) file.seek(offset) - + var name : PackedByteArray = file.get_buffer(TEXTURE_NAME_LENGTH) var name_string : String = name.get_string_from_ascii() - + var width : int = file.get_32() var height : int = file.get_32() - + var mip_offsets : Array = [] for idx in range(0, MAX_MIP_LEVELS): mip_offsets.append(file.get_32()) - + var num_pixels : int = width * height - texture_data_array.append([name_string, width, height, file.get_buffer(num_pixels)]) - + var pixels : PackedByteArray = file.get_buffer(num_pixels) + + if wad_format == WadFormat.Quake: + texture_data_array.append([name_string, width, height, pixels]) + continue + # Half-Life WADs have a 256 color palette embedded in each texture + elif wad_format == WadFormat.HalfLife: + # Find the end of the mipmap data + file.seek(offset + mip_offsets[-1] + (width / 8) * (height / 8)) + file.get_16() + + var palette_colors := PackedColorArray() + for idx in 256: + var red : int = file.get_8() + var green : int = file.get_8() + var blue : int = file.get_8() + var color := Color(red / 255.0, green / 255.0, blue / 255.0) + palette_colors.append(color) + + texture_data_array.append([name_string, width, height, pixels, palette_colors]) + # Create texture resources - var textures : Dictionary = {} - + var textures : Dictionary[String, ImageTexture] = {} + for texture_data in texture_data_array: var name : String = texture_data[0] var width : int = texture_data[1] var height : int = texture_data[2] var pixels : PackedByteArray = texture_data[3] - + + var texture_image : Image var pixels_rgb := PackedByteArray() - for palette_color in pixels: - var rgb_color := palette_file.colors[palette_color] as Color - pixels_rgb.append(rgb_color.r8) - pixels_rgb.append(rgb_color.g8) - pixels_rgb.append(rgb_color.b8) - - var texture_image := Image.create_from_data(width, height, false, Image.FORMAT_RGB8, pixels_rgb) + + if wad_format == WadFormat.HalfLife: + var colors : PackedColorArray = texture_data[4] + for palette_color in pixels: + var rgb_color : Color = colors[palette_color] + pixels_rgb.append(rgb_color.r8) + pixels_rgb.append(rgb_color.g8) + pixels_rgb.append(rgb_color.b8) + # Color(0, 0, 255) is used for transparency in Half-Life + if rgb_color.b == 1 and rgb_color.r == 0 and rgb_color.b == 0: + pixels_rgb.append(0) + else: + pixels_rgb.append(255) + texture_image = Image.create_from_data(width, height, false, Image.FORMAT_RGBA8, pixels_rgb) + + else: # WadFormat.Quake + for palette_color in pixels: + var rgb_color : Color = palette_file.colors[palette_color] + pixels_rgb.append(rgb_color.r8) + pixels_rgb.append(rgb_color.g8) + pixels_rgb.append(rgb_color.b8) + # Palette index 255 is used for transparency + if palette_color != 255: + pixels_rgb.append(255) + else: + pixels_rgb.append(0) + texture_image = Image.create_from_data(width, height, false, Image.FORMAT_RGBA8, pixels_rgb) + if options["generate_mipmaps"] == true: texture_image.generate_mipmaps() var texture := ImageTexture.create_from_image(texture_image) #,Texture2D.FLAG_MIPMAPS | Texture2D.FLAG_REPEAT | Texture2D.FLAG_ANISOTROPIC_FILTER - - textures[name] = texture - + textures[name.to_lower()] = texture + # Save WAD resource var wad_resource := QuakeWadFile.new(textures) - return ResourceSaver.save(wad_resource, save_path_str) \ No newline at end of file + return ResourceSaver.save(wad_resource, save_path_str) diff --git a/addons/func_godot/src/import/quake_wad_import_plugin.gd.uid b/addons/func_godot/src/import/quake_wad_import_plugin.gd.uid index df7d0d1..fe3dc5e 100644 --- a/addons/func_godot/src/import/quake_wad_import_plugin.gd.uid +++ b/addons/func_godot/src/import/quake_wad_import_plugin.gd.uid @@ -1 +1 @@ -uid://cv4ixyaqrjisb +uid://ridgf32rxg6s diff --git a/addons/func_godot/src/map/func_godot_map.gd b/addons/func_godot/src/map/func_godot_map.gd index fb4990a..908536d 100644 --- a/addons/func_godot/src/map/func_godot_map.gd +++ b/addons/func_godot/src/map/func_godot_map.gd @@ -1,1009 +1,146 @@ @tool @icon("res://addons/func_godot/icons/icon_slipgate3d.svg") -## A scene generator node that parses a Quake map file using a [FuncGodotFGDFile]. Uses a [FuncGodotMapSettings] resource to define map build settings. -## To use this node, select an instance of the node in the Godot editor and select "Quick Build", "Full Build", or "Unwrap UV2" from the toolbar. Alternatively, call [method manual_build] from code. class_name FuncGodotMap extends Node3D +## Scene generator node that parses a [QuakeMapFile] according to its [FuncGodotMapSettings]. +## +## A scene generator node that parses a [QuakeMapFile]. It uses a [FuncGodotMapSettings] +## and the [FuncGodotFGDFile] contained within in order to determine what is built and how it is built.[br][br] +## If your map is not building correctly, double check your [member map_settings] to make sure you're using +## the correct [FuncGodotMapSettings]. -## Force reinitialization of Qodot on map build -const DEBUG := false -## How long to wait between child/owner batches -const YIELD_DURATION := 0.0 +const _SIGNATURE: String = "[MAP]" -## Emitted when the build process successfully completes -signal build_complete() -## Emitted when the build process finishes a step. [code]progress[/code] is from 0.0-1.0 -signal build_progress(step, progress) -## Emitted when the build process fails -signal build_failed() +## Bitflag settings that control various aspects of the build process. +enum BuildFlags { + UNWRAP_UV2 = 1 << 0, ## Unwrap UV2s during geometry generation for lightmap baking. + SHOW_PROFILE_INFO = 1 << 1, ## Print build step information during build process. + DISABLE_SMOOTHING = 1 << 2 ## Force disable processing of vertex normal smooth shading. +} -## Emitted when UV2 unwrapping is completed -signal unwrap_uv2_complete() +## Emitted when the build process fails. +signal build_failed + +## Emitted when the build process succesfully completes. +signal build_complete + +@export_tool_button("Build Map","CollisionShape3D") var _build_func: Callable = build +@export_tool_button("Clear Map","Skeleton3D") var _clear_func: Callable = clear_children @export_category("Map") +## Local path to MAP or VMF file to build a scene from. +@export_file("*.map","*.vmf") var local_map_file: String = "" -## Local path to Quake map file to build a scene from. -@export_file("*.map") var local_map_file: String = "" +## Global path to MAP or VMF file to build a scene from. Overrides [member FuncGodotMap.local_map_file]. +@export_global_file("*.map","*.vmf") var global_map_file: String = "" -## Global path to Quake map file to build a scene from. Overrides [member local_map_file]. -@export_global_file("*.map") var global_map_file: String = "" - -## Map path used by code. Do it this way to support both global and local paths. +# Map path used by code. Do it this way to support both global and local paths. var _map_file_internal: String = "" -## Map settings resource that defines map build scale, textures location, and more. -@export var map_settings: FuncGodotMapSettings = load("res://addons/func_godot/func_godot_default_map_settings.tres") +## Map settings resource that defines map build scale, textures location, entity definitions, and more. +@export var map_settings: FuncGodotMapSettings = load(ProjectSettings.get_setting("func_godot/default_map_settings", "res://addons/func_godot/func_godot_default_map_settings.tres")) @export_category("Build") -## If true, print profiling data before and after each build step. -@export var print_profiling_data: bool = false -## If true, stop the whole editor until build is complete. -@export var block_until_complete: bool = false -## How many nodes to set the owner of, or add children of, at once. Higher values may lead to quicker build times, but a less responsive editor. -@export var set_owner_batch_size: int = 1000 +## [enum BuildFlags] that can affect certain aspects of the build process. +@export_flags("Unwrap UV2:1", "Show Profiling Info:2", "Disable Smooth Shading:4") var build_flags: int = 0 -# Build context variables -var func_godot: FuncGodot = null +## Map build failure handler. Displays error message and emits [signal build_failed] signal. +func fail_build(reason: String, notify: bool = false) -> void: + push_error(_SIGNATURE, " ", reason) + if notify: + build_failed.emit() -var profile_timestamps: Dictionary = {} - -var add_child_array: Array = [] -var set_owner_array: Array = [] - -var should_add_children: bool = true -var should_set_owners: bool = true - -var texture_list: Array = [] -var texture_loader = null -var texture_dict: Dictionary = {} -var texture_size_dict: Dictionary = {} -var material_dict: Dictionary = {} -var entity_definitions: Dictionary = {} -var entity_dicts: Array = [] -var entity_mesh_dict: Dictionary = {} -var entity_nodes: Array = [] -var entity_mesh_instances: Dictionary = {} -var entity_occluder_instances: Dictionary = {} -var entity_collision_shapes: Array = [] - -# Overrides -func _ready() -> void: - if not DEBUG: - return - - if not Engine.is_editor_hint(): - if verify_parameters(): - build_map() - -# Utility -## Verify that FuncGodot is functioning and that [member map_file] exists. If so, build the map. If not, signal [signal build_failed] -func verify_and_build() -> void: - if verify_parameters(): - build_map() - else: - emit_signal("build_failed") - -## Build the map. -func manual_build() -> void: - should_add_children = false - should_set_owners = false - verify_and_build() - -## Return true if parameters are valid; FuncGodot should be functioning and [member map_file] should exist. -func verify_parameters() -> bool: - if not func_godot or DEBUG: - func_godot = load("res://addons/func_godot/src/core/func_godot.gd").new() - - if not func_godot: - push_error("Error: Failed to load func_godot.") - return false - - # Prioritize global map file path for building at runtime - _map_file_internal = global_map_file if global_map_file != "" else local_map_file - - if _map_file_internal == "": - push_error("Error: Map file not set") - return false - - if not FileAccess.file_exists(_map_file_internal): - push_error("Error: No such file %s" % _map_file_internal) - return false - - return true - -## Reset member variables that affect the current build -func reset_build_context() -> void: - add_child_array = [] - set_owner_array = [] - - texture_list = [] - texture_loader = null - texture_dict = {} - texture_size_dict = {} - material_dict = {} - entity_definitions = {} - entity_dicts = [] - entity_mesh_dict = {} - entity_nodes = [] - entity_mesh_instances = {} - entity_occluder_instances = {} - entity_collision_shapes = [] - - build_step_index = 0 - build_step_count = 0 - - if func_godot: - func_godot = load("res://addons/func_godot/src/core/func_godot.gd").new() - -## Record the start time of a build step for profiling -func start_profile(item_name: String) -> void: - if print_profiling_data: - print(item_name) - profile_timestamps[item_name] = Time.get_unix_time_from_system() - -## Finish profiling for a build step; print associated timing data -func stop_profile(item_name: String) -> void: - if print_profiling_data: - if item_name in profile_timestamps: - var delta: float = Time.get_unix_time_from_system() - profile_timestamps[item_name] - print("Done in %s sec.\n" % snapped(delta, 0.01)) - profile_timestamps.erase(item_name) - -## Run a build step. [code]step_name[/code] is the method corresponding to the step, [code]params[/code] are parameters to pass to the step, and [code]func_name[/code] does nothing. -func run_build_step(step_name: String, params: Array = [], func_name: String = "") -> Variant: - start_profile(step_name) - if func_name == "": - func_name = step_name - var result : Variant = callv(step_name, params) - stop_profile(step_name) - return result - -## Add [code]node[/code] as a child of parent, or as a child of [code]below[/code] if non-null. Also queue for ownership assignment. -func add_child_editor(parent: Node, node: Node, below: Node = null) -> void: - var prev_parent = node.get_parent() - if prev_parent: - prev_parent.remove_child(node) - - if below: - below.add_sibling(node) - else: - parent.add_child(node) - - set_owner_array.append(node) - -## Set the owner of [code]node[/code] to the current scene. -func set_owner_editor(node: Node) -> void: - var tree : SceneTree = get_tree() - - if not tree: - return - - var edited_scene_root : Node = tree.get_edited_scene_root() - - if not edited_scene_root: - return - - node.set_owner(edited_scene_root) - -var build_step_index : int = 0 -var build_step_count : int = 0 -var build_steps : Array = [] -var post_attach_steps : Array = [] - -## Register a build step. -## [code]build_step[/code] is a string that corresponds to a method on this class, [code]arguments[/code] a list of arguments to pass to this method, and [code]target[/code] is a property on this class to save the return value of the build step in. If [code]post_attach[/code] is true, the step will be run after the scene hierarchy is completed. -func register_build_step(build_step: String, arguments: Array = [], target: String = "", post_attach: bool = false) -> void: - (post_attach_steps if post_attach else build_steps).append([build_step, arguments, target]) - build_step_count += 1 - -## Run all build steps. Emits [signal build_progress] after each step. -## If [code]post_attach[/code] is true, run post-attach steps instead and signal [signal build_complete] when finished. -func run_build_steps(post_attach : bool = false) -> void: - var target_array : Array = post_attach_steps if post_attach else build_steps - - while target_array.size() > 0: - var build_step : Array = target_array.pop_front() - emit_signal("build_progress", build_step[0], float(build_step_index + 1) / float(build_step_count)) - - var scene_tree : SceneTree = get_tree() - if scene_tree and not block_until_complete: - await get_tree().create_timer(YIELD_DURATION).timeout - - var result : Variant = run_build_step(build_step[0], build_step[1]) - var target : String = build_step[2] - if target != "": - set(target, result) - - build_step_index += 1 - - if scene_tree and not block_until_complete: - await get_tree().create_timer(YIELD_DURATION).timeout - - if post_attach: - _build_complete() - else: - start_profile('add_children') - add_children() - -## Register all steps for the build. See [method register_build_step] and [method run_build_steps] -func register_build_steps() -> void: - register_build_step('remove_children') - register_build_step('load_map') - register_build_step('fetch_texture_list', [], 'texture_list') - register_build_step('init_texture_loader', [], 'texture_loader') - register_build_step('load_textures', [], 'texture_dict') - register_build_step('build_texture_size_dict', [], 'texture_size_dict') - register_build_step('build_materials', [], 'material_dict') - register_build_step('fetch_entity_definitions', [], 'entity_definitions') - register_build_step('set_func_godot_entity_definitions', []) - register_build_step('generate_geometry', []) - register_build_step('fetch_entity_dicts', [], 'entity_dicts') - register_build_step('build_entity_nodes', [], 'entity_nodes') - register_build_step('resolve_trenchbroom_group_hierarchy', []) - register_build_step('build_entity_mesh_dict', [], 'entity_mesh_dict') - register_build_step('build_entity_mesh_instances', [], 'entity_mesh_instances') - register_build_step('build_entity_occluder_instances', [], 'entity_occluder_instances') - register_build_step('build_entity_collision_shape_nodes', [], 'entity_collision_shapes') - -## Register all post-attach steps for the build. See [method register_build_step] and [method run_build_steps] -func register_post_attach_steps() -> void: - register_build_step('build_entity_collision_shapes', [], "", true) - register_build_step('apply_entity_meshes', [], "", true) - register_build_step('apply_entity_occluders', [], "", true) - register_build_step('apply_properties_and_finish', [], "", true) - -# Actions -## Build the map -func build_map() -> void: - reset_build_context() - if map_settings == null: - printerr("Skipping build process: No map settings resource!") - emit_signal("build_complete") - return - print('Building %s\n' % _map_file_internal) - start_profile('build_map') - register_build_steps() - register_post_attach_steps() - run_build_steps() - -## Recursively unwrap UV2s for [code]node[/code] and its children, in preparation for baked lighting. -func unwrap_uv2(node: Node = null) -> void: - var target_node: Node = null - - if node: - target_node = node - else: - target_node = self - print("Unwrapping mesh UV2s") - - if target_node is MeshInstance3D: - var mesh: Mesh = target_node.get_mesh() - if mesh is ArrayMesh: - mesh.lightmap_unwrap(Transform3D.IDENTITY, map_settings.uv_unwrap_texel_size / map_settings.inverse_scale_factor) - - for child in target_node.get_children(): - unwrap_uv2(child) - - if not node: - print("Unwrap complete") - emit_signal("unwrap_uv2_complete") - -# Build Steps -## Recursively remove and delete all children of this node -func remove_children() -> void: +## Frees all children of the map node.[br] +## [b][color=yellow]Warning:[/color][/b] This does not distinguish between nodes generated in the FuncGodot build process and other user created nodes. +func clear_children() -> void: for child in get_children(): remove_child(child) child.queue_free() -## Parse and load [member map_file] -func load_map() -> void: - var file: String = _map_file_internal - func_godot.load_map(file, map_settings.use_trenchbroom_groups_hierarchy) - -## Get textures found in [member map_file] -func fetch_texture_list() -> Array: - return func_godot.get_texture_list() as Array - -## Initialize texture loader, allowing textures in [member base_texture_dir] and [member texture_wads] to be turned into materials -func init_texture_loader() -> FuncGodotTextureLoader: - return FuncGodotTextureLoader.new(map_settings) - -## Build a dictionary from Map File texture names to their corresponding Texture2D resources in Godot -func load_textures() -> Dictionary: - return texture_loader.load_textures(texture_list) as Dictionary - -## Build a dictionary from Map File texture names to Godot materials -func build_materials() -> Dictionary: - return texture_loader.create_materials(texture_list) - -## Collect entity definitions from [member entity_fgd], as a dictionary from Map File classnames to entity definitions -func fetch_entity_definitions() -> Dictionary: - return map_settings.entity_fgd.get_entity_definitions() - -## Hand the FuncGodot core the entity definitions -func set_func_godot_entity_definitions() -> void: - func_godot.set_entity_definitions(build_libmap_entity_definitions(entity_definitions)) - -## Generate geometry from map file -func generate_geometry() -> void: - func_godot.generate_geometry(texture_size_dict); - -## Get a list of dictionaries representing each entity from the FuncGodot C# core -func fetch_entity_dicts() -> Array: - return func_godot.get_entity_dicts() - -## Build a dictionary from Map File textures to the sizes of their corresponding Godot textures -func build_texture_size_dict() -> Dictionary: - var texture_size_dict: Dictionary = {} +## Checks if a [QuakeMapFile] for the build process is provided and can be found. +func verify() -> Error: + # Prioritize global map file path for building at runtime + _map_file_internal = global_map_file if global_map_file != "" else local_map_file - for tex_key in texture_dict: - var texture: Texture2D = texture_dict[tex_key] as Texture2D - if texture: - texture_size_dict[tex_key] = texture.get_size() - else: - texture_size_dict[tex_key] = Vector2.ONE + if _map_file_internal.is_empty(): + fail_build("Cannot build empty map file.") + return ERR_INVALID_PARAMETER - return texture_size_dict - -## Marshall FuncGodot FGD definitions for transfer to libmap -func build_libmap_entity_definitions(entity_definitions: Dictionary) -> Dictionary: - var libmap_entity_definitions: Dictionary = {} - for classname in entity_definitions: - libmap_entity_definitions[classname] = {} - if entity_definitions[classname] is FuncGodotFGDSolidClass: - libmap_entity_definitions[classname]['spawn_type'] = entity_definitions[classname].spawn_type - libmap_entity_definitions[classname]['origin_type'] = entity_definitions[classname].origin_type - return libmap_entity_definitions - -## Build nodes from the entities in [member entity_dicts] -func build_entity_nodes() -> Array: - var entity_nodes : Array = [] - - for entity_idx in range(0, entity_dicts.size()): - var entity_dict: Dictionary = entity_dicts[entity_idx] as Dictionary - var properties: Dictionary = entity_dict['properties'] as Dictionary - - var node: Node = Node3D.new() - var node_name: String = "entity_%s" % entity_idx - - var should_add_child: bool = should_add_children - - if 'classname' in properties: - var classname: String = properties['classname'] - node_name += "_" + classname - if classname in entity_definitions: - var entity_definition: FuncGodotFGDEntityClass = entity_definitions[classname] as FuncGodotFGDEntityClass - - var name_prop: String - if entity_definition.name_property in properties: - name_prop = str(properties[entity_definition.name_property]) - elif map_settings.entity_name_property in properties: - name_prop = str(properties[map_settings.entity_name_property]) - if not name_prop.is_empty(): - node_name = "entity_" + name_prop - - if entity_definition is FuncGodotFGDSolidClass: - if entity_definition.spawn_type == FuncGodotFGDSolidClass.SpawnType.MERGE_WORLDSPAWN: - entity_nodes.append(null) - continue - if entity_definition.node_class != "": - node.queue_free() - node = ClassDB.instantiate(entity_definition.node_class) - elif entity_definition is FuncGodotFGDPointClass: - if entity_definition.scene_file: - var flag: PackedScene.GenEditState = PackedScene.GEN_EDIT_STATE_DISABLED - if Engine.is_editor_hint(): - flag = PackedScene.GEN_EDIT_STATE_INSTANCE - node.queue_free() - node = entity_definition.scene_file.instantiate(flag) - elif entity_definition.node_class != "": - node.queue_free() - node = ClassDB.instantiate(entity_definition.node_class) - if 'rotation_degrees' in node and entity_definition.apply_rotation_on_map_build: - var angles := Vector3.ZERO - if 'angles' in properties or 'mangle' in properties: - var key := 'angles' if 'angles' in properties else 'mangle' - var angles_raw = properties[key] - if not angles_raw is Vector3: - angles_raw = angles_raw.split_floats(' ') - if angles_raw.size() > 2: - angles = Vector3(-angles_raw[0], angles_raw[1], -angles_raw[2]) - if key == 'mangle': - if entity_definition.classname.begins_with('light'): - angles = Vector3(angles_raw[1], angles_raw[0], -angles_raw[2]) - elif entity_definition.classname == 'info_intermission': - angles = Vector3(angles_raw[0], angles_raw[1], -angles_raw[2]) - else: - push_error("Invalid vector format for \'" + key + "\' in entity \'" + classname + "\'") - elif 'angle' in properties: - var angle = properties['angle'] - if not angle is float: - angle = float(angle) - angles.y += angle - angles.y += 180 - node.rotation_degrees = angles - if entity_definition.script_class: - node.set_script(entity_definition.script_class) - - node.name = node_name - - if 'origin' in properties and entity_dict.brush_count < 1: - var origin_vec: Vector3 = Vector3.ZERO - var origin_comps: PackedFloat64Array = properties['origin'].split_floats(' ') - if origin_comps.size() > 2: - origin_vec = Vector3(origin_comps[1], origin_comps[2], origin_comps[0]) - else: - push_error("Invalid vector format for \'origin\' in " + node.name) - if 'position' in node: - if node.position is Vector3: - node.position = origin_vec / map_settings.inverse_scale_factor - elif node.position is Vector2: - node.position = Vector2(origin_vec.z, -origin_vec.y) - else: - if entity_idx != 0 and 'position' in node: - if node.position is Vector3: - node.position = entity_dict['center'] / map_settings.inverse_scale_factor - - entity_nodes.append(node) - - if should_add_child: - queue_add_child(self, node) + # Retrieve real path if needed + if _map_file_internal.begins_with("uid://"): + var uid := ResourceUID.text_to_id(_map_file_internal) + if not ResourceUID.has_id(uid): + fail_build("Error: failed to retrieve path for UID (%s)" % _map_file_internal) + return ERR_DOES_NOT_EXIST + _map_file_internal = ResourceUID.get_id_path(uid) - return entity_nodes - -## Build [CollisionShape3D] nodes for brush entities -func build_entity_collision_shape_nodes() -> Array: - var entity_collision_shapes_arr: Array = [] + if not FileAccess.file_exists(_map_file_internal): + if not FileAccess.file_exists(_map_file_internal + ".import"): + fail_build("Map file %s does not exist." % _map_file_internal) + return ERR_DOES_NOT_EXIST - for entity_idx in range(0, entity_nodes.size()): - var entity_collision_shapes: Array = [] - - var entity_dict: Dictionary = entity_dicts[entity_idx] - var properties: Dictionary = entity_dict['properties'] - - var node: Node = entity_nodes[entity_idx] as Node - var concave: bool = false - - if 'classname' in properties: - var classname: String = properties['classname'] - if classname in entity_definitions: - var entity_definition: FuncGodotFGDSolidClass = entity_definitions[classname] as FuncGodotFGDSolidClass - if entity_definition: - if entity_definition.collision_shape_type == FuncGodotFGDSolidClass.CollisionShapeType.NONE: - entity_collision_shapes_arr.append(null) - continue - elif entity_definition.collision_shape_type == FuncGodotFGDSolidClass.CollisionShapeType.CONCAVE: - concave = true - - if entity_definition.spawn_type == FuncGodotFGDSolidClass.SpawnType.MERGE_WORLDSPAWN: - # TODO: Find the worldspawn object instead of assuming index 0 - node = entity_nodes[0] as Node - - if node and node is CollisionObject3D: - (node as CollisionObject3D).collision_layer = entity_definition.collision_layer - (node as CollisionObject3D).collision_mask = entity_definition.collision_mask - (node as CollisionObject3D).collision_priority = entity_definition.collision_priority - - # don't create collision shapes that wont be attached to a CollisionObject3D as they are a waste - if not node or (not node is CollisionObject3D): - entity_collision_shapes_arr.append(null) - continue - - if concave: - var collision_shape: CollisionShape3D = CollisionShape3D.new() - collision_shape.name = "entity_%s_collision_shape" % entity_idx - entity_collision_shapes.append(collision_shape) - queue_add_child(node, collision_shape) - else: - for brush_idx in entity_dict['brush_indices']: - var collision_shape: CollisionShape3D = CollisionShape3D.new() - collision_shape.name = "entity_%s_brush_%s_collision_shape" % [entity_idx, brush_idx] - entity_collision_shapes.append(collision_shape) - queue_add_child(node, collision_shape) - entity_collision_shapes_arr.append(entity_collision_shapes) - - return entity_collision_shapes_arr + return OK -## Build the concrete [Shape3D] resources for each brush -func build_entity_collision_shapes() -> void: - for entity_idx in range(0, entity_dicts.size()): - var entity_dict: Dictionary = entity_dicts[entity_idx] as Dictionary - var properties: Dictionary = entity_dict['properties'] - var entity_position: Vector3 = Vector3.ZERO - if entity_nodes[entity_idx] != null and entity_nodes[entity_idx].get("position"): - if entity_nodes[entity_idx].position is Vector3: - entity_position = entity_nodes[entity_idx].position - - if entity_collision_shapes.size() < entity_idx: - continue - if entity_collision_shapes[entity_idx] == null: - continue - - var entity_collision_shape: Array = entity_collision_shapes[entity_idx] - var concave: bool = false - var shape_margin: float = 0.04 - - if 'classname' in properties: - var classname: String = properties['classname'] - if classname in entity_definitions: - var entity_definition: FuncGodotFGDSolidClass = entity_definitions[classname] as FuncGodotFGDSolidClass - if entity_definition: - match(entity_definition.collision_shape_type): - FuncGodotFGDSolidClass.CollisionShapeType.NONE: - continue - FuncGodotFGDSolidClass.CollisionShapeType.CONVEX: - concave = false - FuncGodotFGDSolidClass.CollisionShapeType.CONCAVE: - concave = true - shape_margin = entity_definition.collision_shape_margin - - if entity_collision_shapes[entity_idx] == null: - continue - - if concave: - func_godot.gather_entity_concave_collision_surfaces(entity_idx, map_settings.skip_texture) - else: - func_godot.gather_entity_convex_collision_surfaces(entity_idx) - - var entity_surfaces: Array = func_godot.fetch_surfaces(map_settings.inverse_scale_factor) as Array - - var entity_verts: PackedVector3Array = PackedVector3Array() - - for surface_idx in range(0, entity_surfaces.size()): - if entity_surfaces[surface_idx] == null: - continue - - var surface_verts: Array = entity_surfaces[surface_idx] - - if concave: - var vertices: PackedVector3Array = surface_verts[Mesh.ARRAY_VERTEX] as PackedVector3Array - var indices: PackedInt32Array = surface_verts[Mesh.ARRAY_INDEX] as PackedInt32Array - for vert_idx in indices: - entity_verts.append(vertices[vert_idx]) - else: - var shape_points = PackedVector3Array() - for vertex in surface_verts[Mesh.ARRAY_VERTEX]: - if not vertex in shape_points: - shape_points.append(vertex) - - var shape: ConvexPolygonShape3D = ConvexPolygonShape3D.new() - shape.set_points(shape_points) - shape.margin = shape_margin - - var collision_shape: CollisionShape3D = entity_collision_shape[surface_idx] - collision_shape.set_shape(shape) - - if concave: - if entity_verts.size() == 0: - continue - - var shape: ConcavePolygonShape3D = ConcavePolygonShape3D.new() - shape.set_faces(entity_verts) - shape.margin = shape_margin - - var collision_shape: CollisionShape3D = entity_collision_shapes[entity_idx][0] - collision_shape.set_shape(shape) - -## Build Dictionary from entity indices to [ArrayMesh] instances -func build_entity_mesh_dict() -> Dictionary: - var meshes: Dictionary = {} +## Builds the [member global_map_file]. If not set, builds the [member local_map_file]. +## First cleans the map node of any children, then creates a [FuncGodotParser], [FuncGodotGeometryGenerator] +## and [FuncGodotEntityAssembler] to parse and generate the map. +func build() -> void: + var time_elapsed: float = Time.get_ticks_msec() - var texture_surf_map: Dictionary - for texture in texture_dict: - texture_surf_map[texture] = Array() - - var gather_task = func(i): - var texture: String = texture_dict.keys()[i] - texture_surf_map[texture] = func_godot.gather_texture_surfaces_mt(texture, map_settings.clip_texture, map_settings.skip_texture, map_settings.inverse_scale_factor) - - var task_id: int = WorkerThreadPool.add_group_task(gather_task, texture_dict.keys().size(), 4, true) - WorkerThreadPool.wait_for_group_task_completion(task_id) - - for texture in texture_dict: - var texture_surfaces: Array = texture_surf_map[texture] as Array - - for entity_idx in range(0, texture_surfaces.size()): - var entity_dict: Dictionary = entity_dicts[entity_idx] as Dictionary - var properties: Dictionary = entity_dict['properties'] - - var entity_surface = texture_surfaces[entity_idx] - - if 'classname' in properties: - var classname: String = properties['classname'] - if classname in entity_definitions: - var entity_definition: FuncGodotFGDSolidClass = entity_definitions[classname] as FuncGodotFGDSolidClass - if entity_definition: - if entity_definition.spawn_type == FuncGodotFGDSolidClass.SpawnType.MERGE_WORLDSPAWN: - entity_surface = null - - if not entity_definition.build_visuals and not entity_definition.build_occlusion: - entity_surface = null - - if entity_surface == null: - continue - - if not entity_idx in meshes: - meshes[entity_idx] = ArrayMesh.new() - - var mesh: ArrayMesh = meshes[entity_idx] - mesh.add_surface_from_arrays(ArrayMesh.PRIMITIVE_TRIANGLES, entity_surface) - mesh.surface_set_name(mesh.get_surface_count() - 1, texture) - mesh.surface_set_material(mesh.get_surface_count() - 1, material_dict[texture]) - - return meshes + if build_flags & BuildFlags.SHOW_PROFILE_INFO: + FuncGodotUtil.print_profile_info("Building...", _SIGNATURE) -## Build [MeshInstance3D]s from brush entities and add them to the add child queue -func build_entity_mesh_instances() -> Dictionary: - var entity_mesh_instances: Dictionary = {} - for entity_idx in entity_mesh_dict: - var use_in_baked_light: bool = false - var shadow_casting_setting: GeometryInstance3D.ShadowCastingSetting = GeometryInstance3D.SHADOW_CASTING_SETTING_DOUBLE_SIDED - var render_layers: int = 1 - - var entity_dict: Dictionary = entity_dicts[entity_idx] as Dictionary - var properties: Dictionary = entity_dict['properties'] - var classname: String = properties['classname'] - if classname in entity_definitions: - var entity_definition: FuncGodotFGDSolidClass = entity_definitions[classname] as FuncGodotFGDSolidClass - if entity_definition: - if not entity_definition.build_visuals: - continue - - if entity_definition.use_in_baked_light: - use_in_baked_light = true - elif '_shadow' in properties: - if properties['_shadow'] == "1": - use_in_baked_light = true - shadow_casting_setting = entity_definition.shadow_casting_setting - render_layers = entity_definition.render_layers - - if not entity_mesh_dict[entity_idx]: - continue - - var mesh_instance: MeshInstance3D = MeshInstance3D.new() - mesh_instance.name = 'entity_%s_mesh_instance' % entity_idx - mesh_instance.gi_mode = MeshInstance3D.GI_MODE_STATIC if use_in_baked_light else GeometryInstance3D.GI_MODE_DISABLED - mesh_instance.cast_shadow = shadow_casting_setting - mesh_instance.layers = render_layers - - queue_add_child(entity_nodes[entity_idx], mesh_instance) - - entity_mesh_instances[entity_idx] = mesh_instance + clear_children() - return entity_mesh_instances - -func build_entity_occluder_instances() -> Dictionary: - var entity_occluder_instances: Dictionary = {} - for entity_idx in entity_mesh_dict: - var entity_dict: Dictionary = entity_dicts[entity_idx] as Dictionary - var properties: Dictionary = entity_dict['properties'] - var classname: String = properties['classname'] - if classname in entity_definitions: - var entity_definition: FuncGodotFGDSolidClass = entity_definitions[classname] as FuncGodotFGDSolidClass - if entity_definition: - if entity_definition.build_occlusion: - if not entity_mesh_dict[entity_idx]: - continue - - var occluder_instance: OccluderInstance3D = OccluderInstance3D.new() - occluder_instance.name = 'entity_%s_occluder_instance' % entity_idx - - queue_add_child(entity_nodes[entity_idx], occluder_instance) - entity_occluder_instances[entity_idx] = occluder_instance - - return entity_occluder_instances - -## Assign [ArrayMesh]es to their [MeshInstance3D] counterparts -func apply_entity_meshes() -> void: - for entity_idx in entity_mesh_instances: - var mesh: Mesh = entity_mesh_dict[entity_idx] as Mesh - var mesh_instance: MeshInstance3D = entity_mesh_instances[entity_idx] as MeshInstance3D - if not mesh or not mesh_instance: - continue - - mesh_instance.set_mesh(mesh) - queue_add_child(entity_nodes[entity_idx], mesh_instance) - -func apply_entity_occluders() -> void: - for entity_idx in entity_mesh_dict: - var mesh: Mesh = entity_mesh_dict[entity_idx] as Mesh - var occluder_instance: OccluderInstance3D - - if entity_idx in entity_occluder_instances: - occluder_instance = entity_occluder_instances[entity_idx] - - if not mesh or not occluder_instance: - continue - - var verts: PackedVector3Array - var indices: PackedInt32Array - for surf_idx in range(mesh.get_surface_count()): - var vert_count: int = verts.size() - var surf_array: Array = mesh.surface_get_arrays(surf_idx) - verts.append_array(surf_array[Mesh.ARRAY_VERTEX]) - indices.resize(indices.size() + surf_array[Mesh.ARRAY_INDEX].size()) - for new_index in surf_array[Mesh.ARRAY_INDEX]: - indices.append(new_index + vert_count) - - var occluder: ArrayOccluder3D = ArrayOccluder3D.new() - occluder.set_arrays(verts, indices) - - occluder_instance.occluder = occluder - -## Resolve entity group hierarchy, turning Trenchbroom groups into nodes and queueing their contents to be added to said nodes as children -func resolve_trenchbroom_group_hierarchy() -> void: - if not map_settings.use_trenchbroom_groups_hierarchy: + var verify_err: Error = verify() + if verify_err != OK: + fail_build("Verification failed: %s. Aborting map build" % error_string(verify_err), true) return - var parent_entities: Dictionary = {} - var child_entities: Dictionary = {} + if not map_settings: + push_warning("Map assembler does not have a map settings provided and will use default map settings.") + load(ProjectSettings.get_setting("func_godot/default_map_settings", "res://addons/func_godot/func_godot_default_map_settings.tres")) - # Gather all entities which are children in some group or parents in some group - for node_idx in range(0, entity_nodes.size()): - var node: Node = entity_nodes[node_idx] - var properties: Dictionary = entity_dicts[node_idx]['properties'] - - if not properties: - continue - - if not ('_tb_id' in properties or '_tb_group' in properties or '_tb_layer' in properties): - continue - - # identify children - if '_tb_group' in properties or '_tb_layer' in properties: - child_entities[node_idx] = node - - # identify parents - if '_tb_id' in properties: - if properties['_tb_name'] != "Unnamed": - if properties['_tb_type'] == "_tb_group": - node.name = "group_" + str(properties['_tb_id']) - elif properties['_tb_type'] == "_tb_layer": - node.name = "layer_" + str(properties['_tb_layer_sort_index']) - node.name = node.name + "_" + properties['_tb_name'] - parent_entities[node_idx] = node + # Parse and collect map data + var parser := FuncGodotParser.new() + if build_flags & BuildFlags.SHOW_PROFILE_INFO: + print("\nPARSER") + parser.declare_step.connect(FuncGodotUtil.print_profile_info.bind(parser._SIGNATURE)) + var parse_data: FuncGodotData.ParseData = parser.parse_map_data(_map_file_internal, map_settings) - var child_to_parent_map: Dictionary = {} + if parse_data.entities.is_empty(): + return # Already printed failure message in parser, just return here - #For each child,... - for node_idx in child_entities: - var node: Node = child_entities[node_idx] - var properties: Dictionary = entity_dicts[node_idx]['properties'] - var tb_group: Variant = null - if '_tb_group' in properties: - tb_group = properties['_tb_group'] - elif '_tb_layer' in properties: - tb_group = properties['_tb_layer'] - if tb_group == null: - continue + var entities: Array[FuncGodotData.EntityData] = parse_data.entities + var groups: Array[FuncGodotData.GroupData] = parse_data.groups + + # Free up some memory now that we have the data + parser = null + + # Retrieve geometry + var generator := FuncGodotGeometryGenerator.new(map_settings) + if build_flags & BuildFlags.SHOW_PROFILE_INFO: + print("\nGEOMETRY GENERATOR") + generator.declare_step.connect(FuncGodotUtil.print_profile_info.bind(generator._SIGNATURE)) + + # Generate surface and shape data + var generate_error := generator.build(build_flags, entities) + if generate_error != OK: + fail_build("Geometry generation failed: %s" % error_string(generate_error)) + return - var parent: Node = null - var parent_properties: Dictionary = {} - var parent_entity = null - var parent_idx = null - - #...identify its direct parent out of the parent_entities array - for possible_parent in parent_entities: - parent_entity = parent_entities[possible_parent] - parent_properties = entity_dicts[possible_parent]['properties'] - - if parent_properties['_tb_id'] == tb_group: - if '_tb_layer_omit_from_export' in parent_properties: - properties['_tb_layer_omit_from_export'] = parent_properties['_tb_layer_omit_from_export'] - parent = parent_entity - parent_idx = possible_parent - break - #if there's a match, pass it on to the child-parent relationship map - if parent: - child_to_parent_map[node_idx] = parent_idx + # Assemble entities and groups + var assembler := FuncGodotEntityAssembler.new(map_settings) + if build_flags & BuildFlags.SHOW_PROFILE_INFO: + print("\nENTITY ASSEMBLER") + assembler.declare_step.connect(FuncGodotUtil.print_profile_info.bind(assembler._SIGNATURE)) + assembler.build(self, entities, groups) - for child_idx in child_to_parent_map: - var child = entity_nodes[child_idx] - var parent_idx = child_to_parent_map[child_idx] - var parent = entity_nodes[parent_idx] - queue_add_child(parent, child, null, true) + time_elapsed = Time.get_ticks_msec() - time_elapsed -## Add a child and its new parent to the add child queue. If [code]below[/code] is a node, add it as a child to that instead. If [code]relative[/code] is true, set the location of node relative to parent. -func queue_add_child(parent, node, below = null, relative = false) -> void: - add_child_array.append({"parent": parent, "node": node, "below": below, "relative": relative}) + if build_flags & BuildFlags.SHOW_PROFILE_INFO: + print("\nCompleted in %s seconds" % (time_elapsed / 1000.0)) -## Assign children to parents based on the contents of the add child queue (see [method queue_add_child]) -func add_children() -> void: - while true: - for i in range(0, set_owner_batch_size): - if add_child_array.size() > 0: - var data: Dictionary = add_child_array.pop_front() - if data: - add_child_editor(data['parent'], data['node'], data['below']) - if data['relative']: - if (data['node'] is Node3D and data['parent'] is Node3D) or (data['node'] is Node2D and data['parent'] is Node2D): - data['node'].global_position -= data['parent'].global_position - continue - add_children_complete() - return - - var scene_tree: SceneTree = get_tree() - if scene_tree and not block_until_complete: - await get_tree().create_timer(YIELD_DURATION).timeout - -## Set owners and start post-attach build steps -func add_children_complete() -> void: - stop_profile('add_children') - - if should_set_owners: - start_profile('set_owners') - set_owners() - else: - run_build_steps(true) - -## Set owner of nodes generated by FuncGodot to scene root based on [member set_owner_array] -func set_owners() -> void: - while true: - for i in range(0, set_owner_batch_size): - var node: Node = set_owner_array.pop_front() - if node: - set_owner_editor(node) - else: - set_owners_complete() - return - - var scene_tree: SceneTree = get_tree() - if scene_tree and not block_until_complete: - await get_tree().create_timer(YIELD_DURATION).timeout - -## Finish profiling for set_owners and start post-attach build steps -func set_owners_complete() -> void: - stop_profile('set_owners') - run_build_steps(true) - -## Apply Map File properties to [Node3D] instances, transferring Map File dictionaries to [Node3D.func_godot_properties] -## and then calling the appropriate callbacks. -func apply_properties_and_finish() -> void: - # Array of all entities' properties - var properties_arr: Array[Dictionary] = [] - - for entity_idx in range(0, entity_nodes.size()): - var entity_node: Node = entity_nodes[entity_idx] as Node - if not entity_node: - continue - - var entity_dict: Dictionary = entity_dicts[entity_idx] as Dictionary - var properties: Dictionary = entity_dict['properties'] as Dictionary - - if '_tb_layer_omit_from_export' in properties and properties['_tb_layer_omit_from_export'] == "1": - entity_node.queue_free() - properties_arr.append({}) - continue - - if 'classname' in properties: - var classname: String = properties['classname'] - if classname in entity_definitions: - var entity_definition: FuncGodotFGDEntityClass = entity_definitions[classname] as FuncGodotFGDEntityClass - - for property in properties: - var prop_string = properties[property] - if property in entity_definition.class_properties: - var prop_default: Variant = entity_definition.class_properties[property] - - match typeof(prop_default): - TYPE_INT: - properties[property] = prop_string.to_int() - TYPE_FLOAT: - properties[property] = prop_string.to_float() - TYPE_BOOL: - properties[property] = bool(prop_string.to_int()) - TYPE_VECTOR3: - var prop_comps: PackedFloat64Array = prop_string.split_floats(" ") - if prop_comps.size() > 2: - properties[property] = Vector3(prop_comps[0], prop_comps[1], prop_comps[2]) - else: - push_error("Invalid Vector3 format for \'" + property + "\' in entity \'" + classname + "\': " + prop_string) - properties[property] = prop_default - TYPE_VECTOR3I: - var prop_vec: Vector3i = prop_default - var prop_comps: PackedStringArray = prop_string.split(" ") - if prop_comps.size() > 2: - for i in 3: - prop_vec[i] = prop_comps[i].to_int() - else: - push_error("Invalid Vector3i format for \'" + property + "\' in entity \'" + classname + "\': " + prop_string) - properties[property] = prop_vec - TYPE_COLOR: - var prop_color: Color = prop_default - var prop_comps: PackedStringArray = prop_string.split(" ") - if prop_comps.size() > 2: - prop_color.r8 = prop_comps[0].to_int() - prop_color.g8 = prop_comps[1].to_int() - prop_color.b8 = prop_comps[2].to_int() - prop_color.a = 1.0 - else: - push_error("Invalid Color format for \'" + property + "\' in entity \'" + classname + "\': " + prop_string) - properties[property] = prop_color - TYPE_DICTIONARY: - var prop_desc = entity_definition.class_property_descriptions[property] - if prop_desc is Array and prop_desc.size() > 1 and prop_desc[1] is int: - properties[property] = prop_string.to_int() - TYPE_ARRAY: - properties[property] = prop_string.to_int() - TYPE_VECTOR2: - var prop_comps: PackedFloat64Array = prop_string.split_floats(" ") - if prop_comps.size() > 1: - properties[property] = Vector2(prop_comps[0], prop_comps[1]) - else: - push_error("Invalid Vector2 format for \'" + property + "\' in entity \'" + classname + "\': " + prop_string) - properties[property] = prop_default - TYPE_VECTOR2I: - var prop_vec: Vector2i = prop_default - var prop_comps: PackedStringArray = prop_string.split(" ") - if prop_comps.size() > 1: - for i in 2: - prop_vec[i] = prop_comps[i].to_int() - else: - push_error("Invalid Vector2i format for \'" + property + "\' in entity \'" + classname + "\': " + prop_string) - properties[property] = prop_vec - TYPE_VECTOR4: - var prop_comps: PackedFloat64Array = prop_string.split_floats(" ") - if prop_comps.size() > 3: - properties[property] = Vector4(prop_comps[0], prop_comps[1], prop_comps[2], prop_comps[3]) - else: - push_error("Invalid Vector4 format for \'" + property + "\' in entity \'" + classname + "\': " + prop_string) - properties[property] = prop_default - TYPE_VECTOR4I: - var prop_vec: Vector4i = prop_default - var prop_comps: PackedStringArray = prop_string.split(" ") - if prop_comps.size() > 3: - for i in 4: - prop_vec[i] = prop_comps[i].to_int() - else: - push_error("Invalid Vector4i format for \'" + property + "\' in entity \'" + classname + "\': " + prop_string) - properties[property] = prop_vec - TYPE_NODE_PATH: - properties[property] = NodePath(prop_string) - - # Assign properties not defined with defaults from the entity definition - for property in entity_definitions[classname].class_properties: - if not property in properties: - var prop_default: Variant = entity_definition.class_properties[property] - # Flags - if prop_default is Array: - var prop_flags_sum := 0 - for prop_flag in prop_default: - if prop_flag is Array and prop_flag.size() > 2: - if prop_flag[2] and prop_flag[1] is int: - prop_flags_sum += prop_flag[1] - properties[property] = prop_flags_sum - # Choices - elif prop_default is Dictionary: - var prop_desc = entity_definition.class_property_descriptions[property] - if prop_desc is Array and prop_desc.size() > 1 and (prop_desc[1] is int or prop_desc[1] is String): - properties[property] = prop_desc[1] - else: - properties[property] = 0 - # Everything else - else: - properties[property] = prop_default - - if 'func_godot_properties' in entity_node: - entity_node.func_godot_properties = properties - - properties_arr.append(properties.duplicate(true)) - - for entity_idx in range(0, entity_nodes.size()): - var entity_node: Node = entity_nodes[entity_idx] as Node - if entity_node and entity_node.has_method("_func_godot_apply_properties"): - entity_node._func_godot_apply_properties(properties_arr[entity_idx]) - - for entity_idx in range(0, entity_nodes.size()): - var entity_node: Node = entity_nodes[entity_idx] as Node - if entity_node and entity_node.has_method("_func_godot_build_complete"): - entity_node.call_deferred("_func_godot_build_complete") - -# Cleanup after build is finished (internal) -func _build_complete(): - reset_build_context() - - stop_profile('build_map') - if not print_profiling_data: - print('\n') - print('Build complete\n') - - emit_signal("build_complete") + if build_flags & BuildFlags.SHOW_PROFILE_INFO: + print("") + FuncGodotUtil.print_profile_info("Build complete", _SIGNATURE) + build_complete.emit() diff --git a/addons/func_godot/src/map/func_godot_map.gd.uid b/addons/func_godot/src/map/func_godot_map.gd.uid index 52684a5..4d03c85 100644 --- a/addons/func_godot/src/map/func_godot_map.gd.uid +++ b/addons/func_godot/src/map/func_godot_map.gd.uid @@ -1 +1 @@ -uid://d0x6kb7gh8xb4 +uid://cwu5cf7a0awcd diff --git a/addons/func_godot/src/map/func_godot_map_settings.gd b/addons/func_godot/src/map/func_godot_map_settings.gd index ebbeea4..189a9d1 100644 --- a/addons/func_godot/src/map/func_godot_map_settings.gd +++ b/addons/func_godot/src/map/func_godot_map_settings.gd @@ -1,19 +1,49 @@ +@tool @icon("res://addons/func_godot/icons/icon_godot_ranger.svg") +class_name FuncGodotMapSettings extends Resource ## Reusable map settings configuration for [FuncGodotMap] nodes. -class_name FuncGodotMapSettings -extends Resource -## Ratio between map editor units and Godot units. FuncGodot will divide brush coordinates by this number when building. This does not affect entity properties unless scripted to do so. -@export var inverse_scale_factor: float = 32.0 +#region BUILD +@export_category("Build Settings") +## Set automatically when [member inverse_scale_factor] is changed. Used primarily during the build process. +var scale_factor: float = 0.03125 + +## Ratio between map editor units and Godot units. FuncGodot will divide brush coordinates by this number and save the results to [member scale_factor]. +## This does not affect entity properties unless scripted to do so. +@export var inverse_scale_factor: float = 32.0 : + set(value): + if value == 0.0: + printerr("Error: Cannot set Inverse Scale Factor to Zero") + return + inverse_scale_factor = value + scale_factor = 1.0 / value ## [FuncGodotFGDFile] that translates map file classnames into Godot nodes and packed scenes. @export var entity_fgd: FuncGodotFGDFile = preload("res://addons/func_godot/fgd/func_godot_fgd.tres") -## Default class property to use in naming generated nodes. This setting is overridden by `name_property` in [FuncGodotFGDEntityClass]. +## Default class property to use in naming generated nodes. This setting is overridden by [member FuncGodotFGDEntityClass.name_property]. ## Naming occurs before adding to the [SceneTree] and applying properties. ## Nodes will be named `"entity_" + name_property`. An entity's name should be unique, otherwise you may run into unexpected behavior. @export var entity_name_property: String = "" +## Class property that determines whether the [FuncGodotFGDSolidClass] entity performs mesh smoothing operations. +@export var entity_smoothing_property: String = "_phong" + +## Class property that contains the angular threshold that determines when a [FuncGodotFGDSolidClass] entity's mesh vertices are smoothed. +@export var entity_smoothing_angle_property: String = "_phong_angle" + +## If true, will organize [SceneTree] using TrenchBroom Layers and Groups or Hammer Visgroups. Groups will be generated as [Node3D] nodes. +## All non-entity structural brushes will be moved out of their groups and merged into the `Worldspawn` entity. +## Any Layers toggled to be omitted from export in TrenchBroom and their child entities and groups will not be built. +@export var use_groups_hierarchy: bool = false + +## Class property that contains the snapping epsilon for generated vertices of [FuncGodotFGDSolidClass] entities. +## Utilizing this property can help reduce instances of seams between polygons. +@export var vertex_merge_distance_property: String = "_vertex_merge_distance" + +#endregion + +#region TEXTURES @export_category("Textures") ## Base directory for textures. When building materials, FuncGodot will search this directory for texture files with matching names to the textures assigned to map brush faces. @@ -22,17 +52,38 @@ extends Resource ## File extensions to search for texture data. @export var texture_file_extensions: Array[String] = ["png", "jpg", "jpeg", "bmp", "tga", "webp"] -## Optional path for the clip texture, relative to [member base_texture_dir]. Brush faces textured with the clip texture will have those Faces removed from the generated [MeshInstance3D] but not the generated [CollisionShape3D]. -@export var clip_texture: String = "special/clip" +## Optional path for the clip texture, relative to [member base_texture_dir]. +## Brush faces textured with the clip texture will have those faces removed from the generated [Mesh] but not the generated [Shape3D]. +@export var clip_texture: String = "special/clip": + set(tex): + clip_texture = tex.to_lower() -## Optional path for the skip texture, relative to [member base_texture_dir]. Brush faces textured with the skip texture will have those Faces removed from the generated [MeshInstance3D]. If the [FuncGodotFGDSolidClass] `collision_shape_type` is set to concave then it will also remove collision from those faces in the generated [CollisionShape3D]. -@export var skip_texture: String = "special/skip" +## Optional path for the skip texture, relative to [member base_texture_dir]. +## Brush faces textured with the skip texture will have those faces removed from the generated [Mesh]. +## If [member FuncGodotFGDSolidClass.collision_shape_type] is set to concave then it will also remove collision from those faces in the generated [Shape3D]. +@export var skip_texture: String = "special/skip": + set(tex): + skip_texture = tex.to_lower() -## Optional [QuakeWADFile] resources to apply textures from. See the [Quake Wiki](https://quakewiki.org/wiki/Texture_Wad) for more information on Quake Texture WADs. -@export var texture_wads: Array[Resource] = [] +## Optional path for the origin texture, relative to [member base_texture_dir]. +## Brush faces textured with the origin texture will have those faces removed from the generated [Mesh] and [Shape3D]. +## The bounds of these faces will be used to calculate the origin point of the entity. +@export var origin_texture: String = "special/origin": + set(tex): + origin_texture = tex.to_lower() +## Optional [QuakeWadFile] resources to apply textures from. See the [Quake Wiki](https://quakewiki.org/wiki/Texture_Wad) for more information on Quake Texture WADs. +@export var texture_wads: Array[QuakeWadFile] = [] + +#endregion + +#region MATERIALS @export_category("Materials") +## Base directory for loading and saving materials. When building materials, FuncGodot will search this directory for material resources +## with matching names to the textures assigned to map brush faces. If not found, will fall back to [member base_texture_dir]. +@export_dir var base_material_dir: String = "" + ## File extension to search for [Material] definitions @export var material_file_extension: String = "tres" @@ -56,21 +107,19 @@ extends Resource @export var ao_map_pattern: String = "%s_ao.%s" ## Automatic PBR material generation height map pattern @export var height_map_pattern: String = "%s_height.%s" +## Automatic PBR material generation ORM map pattern +@export var orm_map_pattern: String = "%s_orm.%s" -## If true, all materials will be unshaded, ignoring light. Also known as "fullbright". -@export var unshaded: bool = false - -## Save automatically generated materials to disk, allowing reuse across [FuncGodotMap] nodes. [i]NOTE: Materials do not use the Default Material settings after saving.[/i] +## Save automatically generated materials to disk, allowing reuse across [FuncGodotMap] nodes. +## [i]NOTE: Materials do not use the [member default_material] settings after saving.[/i] @export var save_generated_materials: bool = true +#endregion + @export_category("UV Unwrap") ## Texel size for UV2 unwrapping. -## A texel size of 1 will lead to a 1:1 correspondence between texture texels and lightmap texels. Larger values will produce less detailed lightmaps. To conserve memory and filesize, use the largest value that still looks good. -@export var uv_unwrap_texel_size: float = 1.0 - -@export_category("TrenchBroom") - -## If true, will organize Scene Tree using Trenchbroom Layers and Groups. Layers and Groups will be generated as [Node3D] nodes. -## All structural brushes will be moved out of the Layers and Groups and merged into the Worldspawn entity. -@export var use_trenchbroom_groups_hierarchy: bool = false +## Actual texel size is uv_unwrap_texel_size / [member inverse_scale_factor]. A ratio of 1/16 is usually a good place to start with +## (if inverse_scale_factor is 32, start with a uv_unwrap_texel_size of 2). +## Larger values will produce less detailed lightmaps. To conserve memory and filesize, use the largest value that still looks good. +@export var uv_unwrap_texel_size: float = 2.0 diff --git a/addons/func_godot/src/map/func_godot_map_settings.gd.uid b/addons/func_godot/src/map/func_godot_map_settings.gd.uid index 7dec322..fccc85d 100644 --- a/addons/func_godot/src/map/func_godot_map_settings.gd.uid +++ b/addons/func_godot/src/map/func_godot_map_settings.gd.uid @@ -1 +1 @@ -uid://dhlc0pfo61428 +uid://38q6k0ctahjn diff --git a/addons/func_godot/src/netradiant_custom/netradiant_custom_gamepack_config.gd b/addons/func_godot/src/netradiant_custom/netradiant_custom_gamepack_config.gd index 7441382..ab33dc5 100644 --- a/addons/func_godot/src/netradiant_custom/netradiant_custom_gamepack_config.gd +++ b/addons/func_godot/src/netradiant_custom/netradiant_custom_gamepack_config.gd @@ -1,20 +1,21 @@ @tool @icon("res://addons/func_godot/icons/icon_godot_ranger.svg") +class_name NetRadiantCustomGamePackConfig extends Resource ## Builds a gamepack for NetRadiant Custom. -class_name NetRadiantCustomGamePackConfig -extends Resource +## +## Resource that builds a gamepack configuration for NetRadiant Custom. -## Button to export / update this gamepack's configuration in the NetRadiant Custom Gamepacks Folder. -@export var export_file: bool: - get: - return export_file - set(new_export_file): - if new_export_file != export_file: - if Engine.is_editor_hint(): - do_export_file() +enum NetRadiantCustomMapType { + QUAKE_1, ## Removes PatchDef entries from the map file. + QUAKE_3 ## Allows the saving of PatchDef entries in the map file. +} + +@export_tool_button("Export Gamepack") var _export_file: Callable = export_file ## Gamepack folder and file name. Must be lower case and must not contain special characters. -@export var gamepack_name : String = "func_godot" +@export var gamepack_name : String = "func_godot": + set(new_name): + gamepack_name = new_name.to_lower() ## Name of the game in NetRadiant Custom's gamepack list. @export var game_name : String = "FuncGodot" @@ -22,13 +23,15 @@ extends Resource ## Directory path containing your maps, textures, shaders, etc... relative to your project directory. @export var base_game_path : String = "" -## FGD resource to include with this gamepack. If using multiple FGD resources, this should be the master FGD that contains them in the `base_fgd_files` resource array. +## [FuncGodotFGDFile] to include with this gamepack. If using multiple FGD file resources, +## this should be the master FGD that contains them in [member FuncGodotFGDFile.base_fgd_files]. @export var fgd_file : FuncGodotFGDFile = preload("res://addons/func_godot/fgd/func_godot_fgd.tres") -## [NetRadiantCustomShader] resources for shader file generation. +## Collection of [NetRadiantCustomShader] resources for shader file generation. @export var netradiant_custom_shaders : Array[Resource] = [ preload("res://addons/func_godot/game_config/netradiant_custom/netradiant_custom_shader_clip.tres"), - preload("res://addons/func_godot/game_config/netradiant_custom/netradiant_custom_shader_skip.tres") + preload("res://addons/func_godot/game_config/netradiant_custom/netradiant_custom_shader_skip.tres"), + preload("res://addons/func_godot/game_config/netradiant_custom/netradiant_custom_shader_origin.tres") ] ## Supported texture file types. @@ -43,14 +46,31 @@ extends Resource ## Default scale of textures in NetRadiant Custom. @export var default_scale : String = "1.0" -## Clip texture path that gets applied to weapclip and nodraw shaders. +## Clip texture path that gets applied to [i]weapclip[/i] and [i]nodraw[/i] shaders. @export var clip_texture: String = "textures/special/clip" -## Skip texture path that gets applied to caulk and nodrawnonsolid shaders. +## Skip texture path that gets applied to [i]caulk[/i] and [i]nodrawnonsolid[/i] shaders. @export var skip_texture: String = "textures/special/skip" -## Generates completed text for a .shader file. -func build_shader_text() -> String: +## Quake map type NetRadiant will filter the map for, determining whether PatchDef entries are saved. +## [color=red][b]WARNING![/b][/color] Toggling this option may be destructive! +@export var map_type: NetRadiantCustomMapType = NetRadiantCustomMapType.QUAKE_1 + +## Variables to include in the exported gamepack's [code]default_build_menu.xml[/code].[br][br] +## Each [String] key defines a variable name, and its corresponding [String] value as the literal command-line string +## to execute in place of this variable identifier[br][br] +## Entries may be referred to by key in [member default_build_menu_commands] values. +@export var default_build_menu_variables: Dictionary + +## Commands to include in the exported gamepack's [code]default_build_menu.xml[/code].[br][br] +## Keys, specified as a [String], define the build option name as you want it to appear in NetRadiant Custom.[br][br] +## Values represent commands taken within each option.[br][br]They may be either a [String] or an [Array] of [String] elements +## that will be used as the full command-line text issued by each command [i]within[/i] its associated build option key.[br][br] +## They may reference entries in [member default_build_menu_variables] by using brackets: [code][variable key name][/code] +@export var default_build_menu_commands: Dictionary + +# Generates completed text for a .shader file. +func _build_shader_text() -> String: var shader_text: String = "" for shader_res in netradiant_custom_shaders: shader_text += (shader_res as NetRadiantCustomShader).texture_path + "\n{\n" @@ -59,8 +79,8 @@ func build_shader_text() -> String: shader_text += "}\n" return shader_text -## Generates completed text for a .gamepack file. -func build_gamepack_text() -> String: +# Generates completed text for a .gamepack file. +func _build_gamepack_text() -> String: var texturetypes_str: String = "" for texture_type in texture_types: texturetypes_str += texture_type @@ -78,6 +98,13 @@ func build_gamepack_text() -> String: soundtypes_str += sound_type if sound_type != sound_types[-1]: soundtypes_str += " " + + var maptype_str: String + + if map_type == NetRadiantCustomMapType.QUAKE_3: + maptype_str = "mapq3" + else: + maptype_str = "mapq1" var gamepack_text: String = """ String: texturetypes="%s" modeltypes="%s" soundtypes="%s" - maptypes="mapq1" + maptypes="%s" shaders="quake3" - entityclass="halflife" + entityclass="quake3" entityclasstype="fgd" entities="quake" brushtypes="quake" @@ -126,6 +153,7 @@ func build_gamepack_text() -> String: texturetypes_str, modeltypes_str, soundtypes_str, + maptype_str, default_scale, clip_texture, skip_texture, @@ -133,9 +161,10 @@ func build_gamepack_text() -> String: skip_texture ] -## Exports or updates a folder in the /games directory, with an icon, .cfg, and all accompanying FGDs. -func do_export_file() -> void: - if (FuncGodotLocalConfig.get_setting(FuncGodotLocalConfig.PROPERTY.MAP_EDITOR_GAME_PATH) as String).is_empty(): +## Exports this game's configuration with an icon, .cfg, and all accompanying FGD files in the [FuncGodotLocalConfig] [b]NetRadiant Custom Gamepacks Folder[/b]. +func export_file() -> void: + var game_path: String = FuncGodotLocalConfig.get_setting(FuncGodotLocalConfig.PROPERTY.MAP_EDITOR_GAME_PATH) as String + if game_path.is_empty(): printerr("Skipping export: Map Editor Game Path not set in Project Configuration") return @@ -158,7 +187,8 @@ func do_export_file() -> void: var gamepack_dir_paths: Array = [ gamepacks_folder + "/" + gamepack_name + ".game", gamepacks_folder + "/" + gamepack_name + ".game/" + base_game_path, - gamepacks_folder + "/" + gamepack_name + ".game/scripts" + gamepacks_folder + "/" + gamepack_name + ".game/scripts", + game_path + "/scripts" ] var err: Error @@ -178,24 +208,50 @@ func do_export_file() -> void: print("Exporting NetRadiant Custom Gamepack to ", target_file_path) file = FileAccess.open(target_file_path, FileAccess.WRITE) if file != null: - file.store_string(build_gamepack_text()) + file.store_string(_build_gamepack_text()) file.close() else: printerr("Error: Could not modify " + target_file_path) # .shader + # NOTE: To work properly, this should go in the game path. For now, I'm leaving the export to NRC as well, so it can easily + # be repackaged for distribution. However, I believe in the end, it shouldn't exist there. + # We'll need to make a decision for this. - Vera + var shader_text: String = _build_shader_text() + + # build to /scripts/ target_file_path = gamepacks_folder + "/" + gamepack_name + ".game/scripts/" + gamepack_name + ".shader" - print("Exporting NetRadiant Custom Shader to ", target_file_path) + print("Exporting NetRadiant Custom shader definitions to ", target_file_path) file = FileAccess.open(target_file_path, FileAccess.WRITE) if file != null: - file.store_string(build_shader_text()) + file.store_string(shader_text) + file.close() + else: + printerr("Error: Could not modify " + target_file_path) + + # build to /scripts/ + target_file_path = game_path.path_join("scripts/%s.shader" % gamepack_name) + print("Exporting NetRadiant Custom shader definitions to ", target_file_path) + file = FileAccess.open(target_file_path, FileAccess.WRITE) + if file != null: + file.store_string(shader_text) + file.close() + else: + printerr("Error: could not modify " + target_file_path) + + # shaderlist.txt - see above NOTE regarding duplication + target_file_path = gamepacks_folder + "/" + gamepack_name + ".game/scripts/shaderlist.txt" + print("Exporting NetRadiant Custom shader list to ", target_file_path) + file = FileAccess.open(target_file_path, FileAccess.WRITE) + if file != null: + file.store_string(gamepack_name) file.close() else: printerr("Error: Could not modify " + target_file_path) - # shaderlist.txt - target_file_path = gamepacks_folder + "/" + gamepack_name + ".game/scripts/shaderlist.txt" - print("Exporting NetRadiant Custom Default Buld Menu to ", target_file_path) + # game path/scripts/shaderlist.txt + target_file_path = game_path.path_join("scripts/shaderlist.txt") + print("Exporting NetRadiant Custom shader list to ", target_file_path) file = FileAccess.open(target_file_path, FileAccess.WRITE) if file != null: file.store_string(gamepack_name) @@ -205,15 +261,56 @@ func do_export_file() -> void: # default_build_menu.xml target_file_path = gamepacks_folder + "/" + gamepack_name + ".game/default_build_menu.xml" - print("Exporting NetRadiant Custom Default Buld Menu to ", target_file_path) + print("Exporting NetRadiant Custom default build menu to ", target_file_path) file = FileAccess.open(target_file_path, FileAccess.WRITE) + if file != null: - file.store_string("") - file.close() - else: - printerr("Error: Could not modify " + target_file_path) + file.store_string("\n\n") + + for key in default_build_menu_variables.keys(): + if key is String: + if default_build_menu_variables[key] is String: + file.store_string('\t%s\n' % [key, default_build_menu_variables[key]]) + + else: + push_error( + "Variable key '%s' value '%s' is invalid type: %s; should be: String" % [ + key, default_build_menu_variables[key], + type_string(typeof(default_build_menu_variables[key])) + ]) + else: + push_error( + "Variable '%s' is an invalid key type: %s; should be: String" % [ + key, type_string(typeof(key)) + ]) + + + for key in default_build_menu_commands.keys(): + if key is String: + file.store_string('\t\n' % key) + + if default_build_menu_commands[key] is String: + file.store_string('\t\t%s\n\t\n' % default_build_menu_commands[key]) + + elif default_build_menu_commands[key] is Array: + for command in default_build_menu_commands[key]: + if command is String: + file.store_string('\t\t%s\n' % command) + else: + push_error("Build option '%s' has invalid command: %s with type: %s; should be: String" % [ + key, command, type_string(typeof(command)) + ]) + + file.store_string('\t\n') + + else: + push_error("Build option '%s' is an invalid type: %s; should be: String" % [ + key, type_string(typeof(key)) + ]) + + file.store_string("") # FGD var export_fgd : FuncGodotFGDFile = fgd_file.duplicate() - export_fgd.do_export_file(true, gamepacks_folder + "/" + gamepack_name + ".game/" + base_game_path) + export_fgd.do_export_file(FuncGodotFGDFile.FuncGodotTargetMapEditors.NET_RADIANT_CUSTOM, gamepacks_folder + "/" + gamepack_name + ".game/" + base_game_path) print("NetRadiant Custom Gamepack export complete\n") diff --git a/addons/func_godot/src/netradiant_custom/netradiant_custom_gamepack_config.gd.uid b/addons/func_godot/src/netradiant_custom/netradiant_custom_gamepack_config.gd.uid index 932d805..03a566f 100644 --- a/addons/func_godot/src/netradiant_custom/netradiant_custom_gamepack_config.gd.uid +++ b/addons/func_godot/src/netradiant_custom/netradiant_custom_gamepack_config.gd.uid @@ -1 +1 @@ -uid://ckvnkpgsci7hg +uid://dfhj3me2g5j0l diff --git a/addons/func_godot/src/netradiant_custom/netradiant_custom_shader.gd b/addons/func_godot/src/netradiant_custom/netradiant_custom_shader.gd index 8a0c3d8..20524da 100644 --- a/addons/func_godot/src/netradiant_custom/netradiant_custom_shader.gd +++ b/addons/func_godot/src/netradiant_custom/netradiant_custom_shader.gd @@ -1,9 +1,11 @@ @icon("res://addons/func_godot/icons/icon_godot_ranger.svg") -## Resource that gets built into a shader file that applies a special effect to a specified texture in NetRadiant Custom. class_name NetRadiantCustomShader extends Resource +## Shader resource for NetRadiant Custom configurations. +## +## Resource that gets built into a shader file that applies a special effect to a specified texture in NetRadiant Custom. -## Path to texture without extension, eg: `textures/special/clip`. +## Path to texture without extension, eg: [i]"textures/special/clip"[/i]. @export var texture_path: String ## Array of shader properties to apply to faces using [member texture_path]. diff --git a/addons/func_godot/src/netradiant_custom/netradiant_custom_shader.gd.uid b/addons/func_godot/src/netradiant_custom/netradiant_custom_shader.gd.uid index 60beaef..eab3bf1 100644 --- a/addons/func_godot/src/netradiant_custom/netradiant_custom_shader.gd.uid +++ b/addons/func_godot/src/netradiant_custom/netradiant_custom_shader.gd.uid @@ -1 +1 @@ -uid://dtmnasjcec1cl +uid://dn86acprv4e86 diff --git a/addons/func_godot/src/trenchbroom/trenchbroom_game_config.gd b/addons/func_godot/src/trenchbroom/trenchbroom_game_config.gd index 741e495..3d7f015 100644 --- a/addons/func_godot/src/trenchbroom/trenchbroom_game_config.gd +++ b/addons/func_godot/src/trenchbroom/trenchbroom_game_config.gd @@ -1,17 +1,20 @@ @tool @icon("res://addons/func_godot/icons/icon_godot_ranger.svg") -## Defines a game in TrenchBroom to express a set of entity definitions and editor behaviors. -class_name TrenchBroomGameConfig -extends Resource +class_name TrenchBroomGameConfig extends Resource +## Game configuration definition for TrenchBroom. +## +## Defines a game for TrenchBroom to express a set of entity definitions and editor behaviors. +## +## @tutorial(TrenchBroom Manual Game Configuration Information): https://trenchbroom.github.io/manual/latest/#game_configuration -## Button to export / update this game's configuration and FGD file in the TrenchBroom Games Path. -@export var export_file: bool: - get: - return export_file - set(new_export_file): - if new_export_file != export_file: - if Engine.is_editor_hint(): - do_export_file() +enum GameConfigVersion { + Latest, + Version4, + Version8, + Version9 +} + +@export_tool_button("Export GameConfig") var _export_file: Callable = export_file ## Name of the game in TrenchBroom's game list. @export var game_name : String = "FuncGodot" @@ -19,7 +22,8 @@ extends Resource ## Icon for TrenchBroom's game list. @export var icon : Texture2D = preload("res://addons/func_godot/icon32.png") -## Available map formats when creating a new map in TrenchBroom. The order of elements in the array is the order TrenchBroom will list the available formats. The `initialmap` key value is optional. +## Available map formats when creating a new map in TrenchBroom. The order of elements in the array is the order TrenchBroom will list the available formats. +## The [i]"initialmap"[/i] key value is optional. @export var map_formats: Array[Dictionary] = [ { "format": "Valve", "initialmap": "initial_valve.map" }, { "format": "Standard", "initialmap": "initial_standard.map" }, @@ -27,43 +31,63 @@ extends Resource { "format": "Quake3" } ] +@export_category("Textures") + +## Path to top level textures folder relative to the game path. Also referred to as materials in the latest versions of TrenchBroom. +@export var textures_root_folder: String = "textures" + ## Textures matching these patterns will be hidden from TrenchBroom. @export var texture_exclusion_patterns: Array[String] = ["*_albedo", "*_ao", "*_emission", "*_height", "*_metallic", "*_normal", "*_orm", "*_roughness", "*_sss"] -## FGD resource to include with this game. If using multiple FGD resources, this should be the master FGD that contains them in the `base_fgd_files` resource array. +## Palette path relative to your Game Path. Only needed for Quake WAD2 files. Half-Life WAD3 files contain the palettes within the texture information. +@export var palette_path: String = "textures/palette.lmp" + +@export_category("Entities") + +## [FuncGodotFGDFile] resource to include with this game. If using multiple FGD File resources, +## this should be the master FGD File that contains them in [member FuncGodotFGDFile.base_fgd_files]. @export var fgd_file : FuncGodotFGDFile = preload("res://addons/func_godot/fgd/func_godot_fgd.tres") -## Scale expression that modifies the default display scale of entities in TrenchBroom. See the [**TrenchBroom Documentation**](https://trenchbroom.github.io/manual/latest/#game_configuration_files_entities) for more information. +## Scale expression that modifies the default display scale of entities in TrenchBroom. +## See [url="https://trenchbroom.github.io/manual/latest/#game_configuration_files_entities"]TrenchBroom Manual Entity Configuration Information[/url] for more information. @export var entity_scale: String = "32" -## Scale of textures on new brushes. -@export var default_uv_scale : Vector2 = Vector2(1, 1) +## Arrays containing the [TrenchbroomTag] resource type. +@export_category("Tags") -## Arrays containing the TrenchBroomTag resource type. -@export_category("Editor Hint Tags") - -## TrenchBroomTag resources that apply to brush entities. +## [TrenchbroomTag] resources that apply to brush entities. @export var brush_tags : Array[Resource] = [] -## TrenchBroomTag resources that apply to brush faces. +## [TrenchbroomTag] resources that apply to brush faces. @export var brushface_tags : Array[Resource] = [ preload("res://addons/func_godot/game_config/trenchbroom/tb_face_tag_clip.tres"), - preload("res://addons/func_godot/game_config/trenchbroom/tb_face_tag_skip.tres") + preload("res://addons/func_godot/game_config/trenchbroom/tb_face_tag_skip.tres"), + preload("res://addons/func_godot/game_config/trenchbroom/tb_face_tag_origin.tres") ] -## Matches tag key enum to the String name used in .cfg -static func get_match_key(tag_match_type: int) -> String: +@export_category("Face Attributes") + +## Default scale of textures on new brushes and when UV scale is reset. +@export var default_uv_scale : Vector2 = Vector2(1, 1) + +@export_category("Compatibility") + +## Game configuration format compatible with the version of TrenchBroom being used. +@export var game_config_version: GameConfigVersion = GameConfigVersion.Latest + +# Matches tag key enum to the [String] name used in .cfg +static func _get_match_key(tag_match_type: int) -> String: match tag_match_type: TrenchBroomTag.TagMatchType.TEXTURE: - return "texture" + return "material" TrenchBroomTag.TagMatchType.CLASSNAME: return "classname" _: push_error("Tag match type %s is not valid" % [tag_match_type]) return "ERROR" -## Generates completed text for a .cfg file. -func build_class_text() -> String: +# Generates completed text for a .cfg file. +func _build_class_text() -> String: var map_formats_str : String = "" for map_format in map_formats: map_formats_str += "{ \"format\": \"" + map_format.format + "\"" @@ -82,61 +106,47 @@ func build_class_text() -> String: var fgd_filename_str : String = "\"" + fgd_file.fgd_name + ".fgd\"" - var brush_tags_str = parse_tags(brush_tags) - var brushface_tags_str = parse_tags(brushface_tags) - var uv_scale_str = parse_default_uv_scale(default_uv_scale) + var brush_tags_str = _parse_tags(brush_tags) + var brushface_tags_str = _parse_tags(brushface_tags) + var uv_scale_str = _parse_default_uv_scale(default_uv_scale) - var config_text : String = """{ - "version": 8, - "name": "%s", - "icon": "icon.png", - "fileformats": [ - %s - ], - "filesystem": { - "searchpath": ".", - "packageformat": { "extension": ".zip", "format": "zip" } - }, - "textures": { - "root": "textures", - "extensions": [".bmp", ".exr", ".hdr", ".jpeg", ".jpg", ".png", ".tga", ".webp"], - "excludes": [ %s ] - }, - "entities": { - "definitions": [ %s ], - "defaultcolor": "0.6 0.6 0.6 1.0", - "scale": %s - }, - "tags": { - "brush": [ - %s - ], - "brushface": [ - %s - ] - }, - "faceattribs": { - "defaults": { - %s - }, - "contentflags": [], - "surfaceflags": [] - } -} -""" - return config_text % [ - game_name, - map_formats_str, - texture_exclusion_patterns_str, - fgd_filename_str, - entity_scale, - brush_tags_str, - brushface_tags_str, - uv_scale_str - ] + var config_text : String = "" + match game_config_version: + GameConfigVersion.Latest, GameConfigVersion.Version8, GameConfigVersion.Version9: + config_text = _get_game_config_v9v8_text() % [ + game_name, + map_formats_str, + textures_root_folder, + texture_exclusion_patterns_str, + palette_path, + fgd_filename_str, + entity_scale, + brush_tags_str, + brushface_tags_str, + uv_scale_str + ] -## Converts brush, FuncGodotFace, and attribute tags into a .cfg-usable String. -func parse_tags(tags: Array) -> String: + GameConfigVersion.Version4: + config_text = _get_game_config_v4_text() % [ + game_name, + map_formats_str, + textures_root_folder, + texture_exclusion_patterns_str, + palette_path, + fgd_filename_str, + entity_scale, + brush_tags_str, + brushface_tags_str, + uv_scale_str + ] + + _: + push_error("Unsupported Game Config Version!") + + return config_text + +# Converts brush, face, and attribute tags into a .cfg-usable String. +func _parse_tags(tags: Array) -> String: var tags_str := "" for brush_tag in tags: if brush_tag.tag_match_type >= TrenchBroomTag.TagMatchType.size(): @@ -149,19 +159,21 @@ func parse_tags(tags: Array) -> String: if brush_tag_attrib != brush_tag.tag_attributes[-1]: attribs_str += ", " tags_str += "\t\t\t\t\"attribs\": [ %s ],\n" % attribs_str - tags_str += "\t\t\t\t\"match\": \"%s\",\n" % get_match_key(brush_tag.tag_match_type) + tags_str += "\t\t\t\t\"match\": \"%s\",\n" % _get_match_key(brush_tag.tag_match_type) tags_str += "\t\t\t\t\"pattern\": \"%s\"" % brush_tag.tag_pattern if brush_tag.texture_name != "": tags_str += ",\n" - tags_str += "\t\t\t\t\"texture\": \"%s\"" % brush_tag.texture_name + tags_str += "\t\t\t\t\"material\": \"%s\"" % brush_tag.texture_name tags_str += "\n" tags_str += "\t\t\t}" if brush_tag != tags[-1]: tags_str += "," + if game_config_version > GameConfigVersion.Latest and game_config_version < GameConfigVersion.Version9: + tags_str = tags_str.replace("material", "texture") return tags_str -## Converts array of flags to .cfg String. -func parse_flags(flags: Array) -> String: +# Converts array of flags to .cfg String. +func _parse_flags(flags: Array) -> String: var flags_str := "" for attrib_flag in flags: flags_str += "{\n" @@ -172,23 +184,23 @@ func parse_flags(flags: Array) -> String: flags_str += "," return flags_str -## Converts default uv scale vector to .cfg String. -func parse_default_uv_scale(texture_scale : Vector2) -> String: +# Converts default uv scale vector to .cfg String. +func _parse_default_uv_scale(texture_scale : Vector2) -> String: var entry_str = "\"scale\": [{x}, {y}]" return entry_str.format({ "x": texture_scale.x, "y": texture_scale.y }) -## Exports or updates a folder in the /games directory, with an icon, .cfg, and all accompanying FGDs. -func do_export_file() -> void: +## Exports this game's configuration with an icon, .cfg, and all accompanying FGD files in the [FuncGodotLocalConfig] [b]Trenchbroom Game Config Folder[/b]. +func export_file() -> void: var config_folder: String = FuncGodotLocalConfig.get_setting(FuncGodotLocalConfig.PROPERTY.TRENCHBROOM_GAME_CONFIG_FOLDER) as String if config_folder.is_empty(): printerr("Skipping export: No TrenchBroom Game folder") return # Make sure FGD file is set - if !fgd_file: + if not fgd_file: printerr("Skipping export: No FGD file") return @@ -212,10 +224,106 @@ func do_export_file() -> void: var target_file_path: String = config_folder + "/GameConfig.cfg" print("Exporting TrenchBroom Game Config to ", target_file_path) var file = FileAccess.open(target_file_path, FileAccess.WRITE) - file.store_string(build_class_text()) + file.store_string(_build_class_text()) file.close() # FGD var export_fgd : FuncGodotFGDFile = fgd_file.duplicate() - export_fgd.do_export_file(true, config_folder) + export_fgd.do_export_file(FuncGodotFGDFile.FuncGodotTargetMapEditors.TRENCHBROOM, config_folder) print("TrenchBroom Game Config export complete\n") + +#region GameConfigDeclarations +func _get_game_config_v4_text() -> String: + return """\ +{ + "version": 4, + "name": "%s", + "icon": "icon.png", + "fileformats": [ + %s + ], + "filesystem": { + "searchpath": ".", + "packageformat": { "extension": ".zip", "format": "zip" } + }, + "textures": { + "package": { "type": "directory", "root": "%s" }, + "format": { "extensions": ["jpg", "jpeg", "tga", "png", "D", "C"], "format": "image" }, + "excludes": [ %s ], + "palette": "%s", + "attribute": ["_tb_textures", "wad"] + }, + "entities": { + "definitions": [ %s ], + "defaultcolor": "0.6 0.6 0.6 1.0", + "modelformats": [ "bsp, mdl, md2" ], + "scale": %s + }, + "tags": { + "brush": [ + %s + ], + "brushface": [ + %s + ] + }, + "faceattribs": { + "defaults": { + %s + }, + "contentflags": [], + "surfaceflags": [] + } +} + """ + +func _get_game_config_v9v8_text() -> String: + var config_text: String = """\ +{ + "version": 9, + "name": "%s", + "icon": "icon.png", + "fileformats": [ + %s + ], + "filesystem": { + "searchpath": ".", + "packageformat": { "extension": ".zip", "format": "zip" } + }, + "materials": { + "root": "%s", + "extensions": [".bmp", ".exr", ".hdr", ".jpeg", ".jpg", ".png", ".tga", ".webp", ".D", ".C"], + "excludes": [ %s ], + "palette": "%s", + "attribute": "wad" + }, + "entities": { + "definitions": [ %s ], + "defaultcolor": "0.6 0.6 0.6 1.0", + "scale": %s + }, + "tags": { + "brush": [ + %s + ], + "brushface": [ + %s + ] + }, + "faceattribs": { + "defaults": { + %s + }, + "contentflags": [], + "surfaceflags": [] + } +} + """ + + if game_config_version == GameConfigVersion.Version8: + config_text = config_text.replace(": 9,", ": 8,") + config_text = config_text.replace("material", "texture") + + return config_text + +#endregion diff --git a/addons/func_godot/src/trenchbroom/trenchbroom_game_config.gd.uid b/addons/func_godot/src/trenchbroom/trenchbroom_game_config.gd.uid index aa6114e..7ee2754 100644 --- a/addons/func_godot/src/trenchbroom/trenchbroom_game_config.gd.uid +++ b/addons/func_godot/src/trenchbroom/trenchbroom_game_config.gd.uid @@ -1 +1 @@ -uid://c51cy33iaei4s +uid://cx44c4vnq8bt5 diff --git a/addons/func_godot/src/trenchbroom/trenchbroom_tag.gd b/addons/func_godot/src/trenchbroom/trenchbroom_tag.gd index 910df4f..9588251 100644 --- a/addons/func_godot/src/trenchbroom/trenchbroom_tag.gd +++ b/addons/func_godot/src/trenchbroom/trenchbroom_tag.gd @@ -1,8 +1,12 @@ @icon("res://addons/func_godot/icons/icon_godot_ranger.svg") -## Pattern matching tags to enable a number of features in TrenchBroom, including display appearance and menu filtering options. This resource gets added to the [TrenchBroomGameConfig] resource. Does not affect appearance or functionality in Godot. -## See the TrenchBroom Documentation on [**Tags under the Game Configuration section**](https://trenchbroom.github.io/manual/latest/#game_configuration_files) and [**Special Bruch FuncGodotFace Types**](https://trenchbroom.github.io/manual/latest/#special_brush_face_types) for more information. -class_name TrenchBroomTag -extends Resource +class_name TrenchBroomTag extends Resource +## Pattern matching tag added to [TrenchbroomGameConfig] for appearance and menu filtering purposes. +## +## Pattern matching tags to enable a number of features in TrenchBroom, including display appearance and menu filtering options. +## This resource gets added to the [TrenchBroomGameConfig] resource. Does not affect appearance or functionality in Godot. +## +## @tutorial(TrenchBroom Manual Game Configuration): https://trenchbroom.github.io/manual/latest/#game_configuration_files +## @tutorial(TrenchBroom Manual Special Brush Face Types): https://trenchbroom.github.io/manual/latest/#special_brush_face_types enum TagMatchType { TEXTURE, ## Tag applies to any brush face with a texture matching the texture name. @@ -19,7 +23,7 @@ enum TagMatchType { @export var tag_match_type: TagMatchType ## A string that filters which flag, param, or classname to use. [code]*[/code] can be used as a wildcard to include multiple options. -## [b]Example:[/b] [code]trigger_*[/code] with [constant TagMatchType] [i]Classname[/i] will apply this tag to all brush entities with the [code]trigger_[/code] prefix. +## [b]Example:[/b] [code]trigger*[/code] with [constant TagMatchType] [i]Classname[/i] will apply this tag to all brush entities with the [code]trigger[/code] prefix. @export var tag_pattern: String ## A string that filters which textures recieve these attributes. Only used with a [constant TagMatchType] of [i]Texture[/i]. diff --git a/addons/func_godot/src/trenchbroom/trenchbroom_tag.gd.uid b/addons/func_godot/src/trenchbroom/trenchbroom_tag.gd.uid index 8722f4b..9971557 100644 --- a/addons/func_godot/src/trenchbroom/trenchbroom_tag.gd.uid +++ b/addons/func_godot/src/trenchbroom/trenchbroom_tag.gd.uid @@ -1 +1 @@ -uid://5eacgso7tkh6 +uid://b66qdknwqpfup diff --git a/addons/func_godot/src/util/func_godot_local_config.gd b/addons/func_godot/src/util/func_godot_local_config.gd index c668f65..f4af36d 100644 --- a/addons/func_godot/src/util/func_godot_local_config.gd +++ b/addons/func_godot/src/util/func_godot_local_config.gd @@ -1,23 +1,32 @@ @tool @icon("res://addons/func_godot/icons/icon_godot_ranger.svg") +class_name FuncGodotLocalConfig extends Resource +## Local machine project wide settings. [color=red]WARNING![/color] Do not create your own! Use the resource in [i]addons/func_godot[/i]. +## ## Local machine project wide settings. Can define global defaults for some FuncGodot properties. -## DO NOT CREATE A NEW RESOURCE! This resource works by saving a configuration file to your game's *user://* folder and pulling the properties from that config file rather than this resource. -## Use the premade `addons/func_godot/func_godot_local_config.tres` instead. -class_name FuncGodotLocalConfig -extends Resource +## [color=red][b]DO NOT CREATE A NEW RESOURCE![/b][/color] This resource works by saving a configuration file to your game's [b][i]user://[/i][/b] folder +## and pulling the properties from that config file rather than this resource. Use the premade [b][i]addons/func_godot/func_godot_local_config.tres[/i][/b] instead. +## [br][br] +## [b]Fgd Output Folder :[/b] Global directory path that [FuncGodotFGDFile] saves to when exported. Overridden when exported from a game configuration resource like [TrenchBroomGameConfig].[br][br] +## [b]Trenchbroom Game Config Folder :[/b] Global directory path where your TrenchBroom game configuration should be saved to. Consult the [url="https://trenchbroom.github.io/manual/latest/#game_configuration_files"]TrenchBroom Manual's Game Configuration documentation[/url] for more information.[br][br] +## [b]Netradiant Custom Gamepacks Folder :[/b] Global directory path where your NetRadiant Custom gamepacks are saved. On Windows this is the [i]gamepacks[/i] folder in your NetRadiant Custom installation.[br][br] +## [b]Map Editor Game Path :[/b] Global directory path to your mapping folder where all of your mapping assets exist. This is usually either your project folder or a subfolder within it.[br][br] +## [b]Game Path Models Folder :[/b] Relative directory path from your Map Editor Game Path to a subfolder containing any display models you might use for your map editor. Currently only used by [FuncGodotFGDModelPointClass].[br][br] +## [b]Default Inverse Scale Factor :[/b] Scale factor that affects how [FuncGodotFGDModelPointClass] entities scale their map editor display models. Not used with TrenchBroom, use [member TrenchBroomGameConfig.entity_scale] expression instead.[br][br] enum PROPERTY { FGD_OUTPUT_FOLDER, TRENCHBROOM_GAME_CONFIG_FOLDER, NETRADIANT_CUSTOM_GAMEPACKS_FOLDER, MAP_EDITOR_GAME_PATH, - GAME_PATH_MODELS_FOLDER, - DEFAULT_INVERSE_SCALE + #GAME_PATH_MODELS_FOLDER, + #DEFAULT_INVERSE_SCALE } -@export var export_func_godot_settings: bool: set = _save_settings +@export_tool_button("Export func_godot settings", "Save") var _save_settings = export_func_godot_settings +@export_tool_button("Reload func_godot settings", "Reload") var _load_settings = reload_func_godot_settings -const CONFIG_PROPERTIES: Array[Dictionary] = [ +const _CONFIG_PROPERTIES: Array[Dictionary] = [ { "name": "fgd_output_folder", "usage": PROPERTY_USAGE_EDITOR, @@ -46,44 +55,44 @@ const CONFIG_PROPERTIES: Array[Dictionary] = [ "hint": PROPERTY_HINT_GLOBAL_DIR, "func_godot_type": PROPERTY.MAP_EDITOR_GAME_PATH }, - { - "name": "game_path_models_folder", - "usage": PROPERTY_USAGE_EDITOR, - "type": TYPE_STRING, - "func_godot_type": PROPERTY.GAME_PATH_MODELS_FOLDER - }, - { - "name": "default_inverse_scale_factor", - "usage": PROPERTY_USAGE_EDITOR, - "type": TYPE_FLOAT, - "func_godot_type": PROPERTY.DEFAULT_INVERSE_SCALE - } + #{ + #"name": "game_path_models_folder", + #"usage": PROPERTY_USAGE_EDITOR, + #"type": TYPE_STRING, + #"func_godot_type": PROPERTY.GAME_PATH_MODELS_FOLDER + #}, + #{ + #"name": "default_inverse_scale_factor", + #"usage": PROPERTY_USAGE_EDITOR, + #"type": TYPE_FLOAT, + #"func_godot_type": PROPERTY.DEFAULT_INVERSE_SCALE + #} ] -var settings_dict: Dictionary -var loaded := false +var _settings_dict: Dictionary +var _loaded := false +## Retrieve a setting from the local configuration. static func get_setting(name: PROPERTY) -> Variant: - var settings = load("res://addons/func_godot/func_godot_local_config.tres") - if not settings.loaded: - settings._load_settings() - return settings.settings_dict.get(PROPERTY.keys()[name], '') as Variant + var settings: FuncGodotLocalConfig = load("res://addons/func_godot/func_godot_local_config.tres") + settings.reload_func_godot_settings() + return settings._settings_dict.get(PROPERTY.keys()[name], '') as Variant func _get_property_list() -> Array: - return CONFIG_PROPERTIES.duplicate() + return _CONFIG_PROPERTIES.duplicate() func _get(property: StringName) -> Variant: var config = _get_config_property(property) if config == null and not config is Dictionary: return null _try_loading() - return settings_dict.get(PROPERTY.keys()[config['func_godot_type']], _get_default_value(config['type'])) + return _settings_dict.get(PROPERTY.keys()[config['func_godot_type']], _get_default_value(config['type'])) func _set(property: StringName, value: Variant) -> bool: var config = _get_config_property(property) if config == null and not config is Dictionary: return false - settings_dict[PROPERTY.keys()[config['func_godot_type']]] = value + _settings_dict[PROPERTY.keys()[config['func_godot_type']]] = value return true func _get_default_value(type) -> Variant: @@ -100,34 +109,39 @@ func _get_default_value(type) -> Variant: return null func _get_config_property(name: StringName) -> Variant: - for config in CONFIG_PROPERTIES: + for config in _CONFIG_PROPERTIES: if config['name'] == name: return config return null -func _load_settings() -> void: - loaded = true +## Reload this system's configuration settings into the Local Config resource. +func reload_func_godot_settings() -> void: + _loaded = true var path = _get_path() - if not FileAccess.file_exists(path): return + if not FileAccess.file_exists(path): + return var settings = FileAccess.get_file_as_string(path) - settings_dict = {} - if not settings or settings.is_empty(): return + _settings_dict = {} + if not settings or settings.is_empty(): + return settings = JSON.parse_string(settings) for key in settings.keys(): - settings_dict[key] = settings[key] + _settings_dict[key] = settings[key] notify_property_list_changed() func _try_loading() -> void: - if not loaded: _load_settings() + if not _loaded: + reload_func_godot_settings() -func _save_settings(_s = null) -> void: - if settings_dict.size() == 0: +## Export the current resource settings to a configuration file in this game's [i]user://[/i] folder. +func export_func_godot_settings() -> void: + if _settings_dict.size() == 0: return var path = _get_path() var file = FileAccess.open(path, FileAccess.WRITE) - var json = JSON.stringify(settings_dict) + var json = JSON.stringify(_settings_dict) file.store_line(json) - loaded = false + _loaded = false print("Saved settings to ", path) func _get_path() -> String: diff --git a/addons/func_godot/src/util/func_godot_local_config.gd.uid b/addons/func_godot/src/util/func_godot_local_config.gd.uid index 1a7aac7..d8b979c 100644 --- a/addons/func_godot/src/util/func_godot_local_config.gd.uid +++ b/addons/func_godot/src/util/func_godot_local_config.gd.uid @@ -1 +1 @@ -uid://bjtqjywscfgdy +uid://xsjnhahhyein diff --git a/addons/func_godot/src/util/func_godot_texture_loader.gd b/addons/func_godot/src/util/func_godot_texture_loader.gd deleted file mode 100644 index da1a075..0000000 --- a/addons/func_godot/src/util/func_godot_texture_loader.gd +++ /dev/null @@ -1,184 +0,0 @@ -class_name FuncGodotTextureLoader - -enum PBRSuffix { - ALBEDO, - NORMAL, - METALLIC, - ROUGHNESS, - EMISSION, - AO, - HEIGHT -} - -# Suffix string / Godot enum / StandardMaterial3D property -const PBR_SUFFIX_NAMES: Dictionary = { - PBRSuffix.ALBEDO: 'albedo', - PBRSuffix.NORMAL: 'normal', - PBRSuffix.METALLIC: 'metallic', - PBRSuffix.ROUGHNESS: 'roughness', - PBRSuffix.EMISSION: 'emission', - PBRSuffix.AO: 'ao', - PBRSuffix.HEIGHT: 'height', -} - -const PBR_SUFFIX_PATTERNS: Dictionary = { - PBRSuffix.ALBEDO: '%s_albedo.%s', - PBRSuffix.NORMAL: '%s_normal.%s', - PBRSuffix.METALLIC: '%s_metallic.%s', - PBRSuffix.ROUGHNESS: '%s_roughness.%s', - PBRSuffix.EMISSION: '%s_emission.%s', - PBRSuffix.AO: '%s_ao.%s', - PBRSuffix.HEIGHT: '%s_height.%s' -} - -var PBR_SUFFIX_TEXTURES: Dictionary = { - PBRSuffix.ALBEDO: StandardMaterial3D.TEXTURE_ALBEDO, - PBRSuffix.NORMAL: StandardMaterial3D.TEXTURE_NORMAL, - PBRSuffix.METALLIC: StandardMaterial3D.TEXTURE_METALLIC, - PBRSuffix.ROUGHNESS: StandardMaterial3D.TEXTURE_ROUGHNESS, - PBRSuffix.EMISSION: StandardMaterial3D.TEXTURE_EMISSION, - PBRSuffix.AO: StandardMaterial3D.TEXTURE_AMBIENT_OCCLUSION, - PBRSuffix.HEIGHT: StandardMaterial3D.TEXTURE_HEIGHTMAP -} - -const PBR_SUFFIX_PROPERTIES: Dictionary = { - PBRSuffix.NORMAL: 'normal_enabled', - PBRSuffix.EMISSION: 'emission_enabled', - PBRSuffix.AO: 'ao_enabled', - PBRSuffix.HEIGHT: 'heightmap_enabled', -} - -var map_settings: FuncGodotMapSettings = FuncGodotMapSettings.new() -var texture_wad_resources: Array = [] - -# Overrides -func _init(new_map_settings: FuncGodotMapSettings) -> void: - map_settings = new_map_settings - load_texture_wad_resources() - -# Business Logic -func load_texture_wad_resources() -> void: - texture_wad_resources.clear() - for texture_wad in map_settings.texture_wads: - if texture_wad and not texture_wad in texture_wad_resources: - texture_wad_resources.append(texture_wad) - -func load_textures(texture_list: Array) -> Dictionary: - var texture_dict: Dictionary = {} - for texture_name in texture_list: - texture_dict[texture_name] = load_texture(texture_name) - return texture_dict - -func load_texture(texture_name: String) -> Texture2D: - # Load albedo texture if it exists - for texture_extension in map_settings.texture_file_extensions: - var texture_path: String = "%s/%s.%s" % [map_settings.base_texture_dir, texture_name, texture_extension] - if ResourceLoader.exists(texture_path, "Texture2D"): - return load(texture_path) as Texture2D - - var texture_name_lower: String = texture_name.to_lower() - for texture_wad in texture_wad_resources: - if texture_name_lower in texture_wad.textures: - return texture_wad.textures[texture_name_lower] - - return load("res://addons/func_godot/textures/default_texture.png") as Texture2D - -func create_materials(texture_list: Array) -> Dictionary: - var texture_materials: Dictionary = {} - #prints("TEXLI", texture_list) - for texture in texture_list: - texture_materials[texture] = create_material(texture) - return texture_materials - -func create_material(texture_name: String) -> Material: - # Autoload material if it exists - var material_dict: Dictionary = {} - - var material_path: String = "%s/%s.%s" % [map_settings.base_texture_dir, texture_name, map_settings.material_file_extension] - if not material_path in material_dict and FileAccess.file_exists(material_path): - var loaded_material: Material = load(material_path) - if loaded_material: - material_dict[material_path] = loaded_material - - # If material already exists, use it - if material_path in material_dict: - return material_dict[material_path] - - var material: Material = null - - if map_settings.default_material: - material = map_settings.default_material.duplicate() - else: - material = StandardMaterial3D.new() - var texture: Texture2D = load_texture(texture_name) - if not texture: - return material - - if material is BaseMaterial3D: - material.shading_mode = BaseMaterial3D.SHADING_MODE_UNSHADED if map_settings.unshaded else BaseMaterial3D.SHADING_MODE_PER_PIXEL - - if material is StandardMaterial3D: - material.set_texture(StandardMaterial3D.TEXTURE_ALBEDO, texture) - elif material is ShaderMaterial && map_settings.default_material_albedo_uniform != "": - material.set_shader_parameter(map_settings.default_material_albedo_uniform, texture) - - var pbr_textures : Dictionary = get_pbr_textures(texture_name) - - for pbr_suffix in PBRSuffix.values(): - var suffix: int = pbr_suffix - var tex: Texture2D = pbr_textures[suffix] - if tex: - if material is ShaderMaterial: - material = StandardMaterial3D.new() - material.set_texture(StandardMaterial3D.TEXTURE_ALBEDO, texture) - var enable_prop: String = PBR_SUFFIX_PROPERTIES[suffix] if suffix in PBR_SUFFIX_PROPERTIES else "" - if(enable_prop != ""): - material.set(enable_prop, true) - material.set_texture(PBR_SUFFIX_TEXTURES[suffix], tex) - - material_dict[material_path] = material - - if (map_settings.save_generated_materials and material - and texture_name != map_settings.clip_texture - and texture_name != map_settings.skip_texture - and texture.resource_path != "res://addons/func_godot/textures/default_texture.png"): - ResourceSaver.save(material, material_path) - - return material - -# PBR texture fetching -func get_pbr_suffix_pattern(suffix: int) -> String: - if not suffix in PBR_SUFFIX_NAMES: - return '' - - var pattern_setting: String = "%s_map_pattern" % [PBR_SUFFIX_NAMES[suffix]] - if pattern_setting in map_settings: - return map_settings.get(pattern_setting) - - return PBR_SUFFIX_PATTERNS[suffix] - -func get_pbr_texture(texture: String, suffix: PBRSuffix) -> Texture2D: - var texture_comps: PackedStringArray = texture.split('/') - if texture_comps.size() == 0: - return null - - for texture_extension in map_settings.texture_file_extensions: - var path: String = "%s/%s/%s" % [ - map_settings.base_texture_dir, - '/'.join(texture_comps), - get_pbr_suffix_pattern(suffix) % [ - texture_comps[-1], - texture_extension - ] - ] - - if(FileAccess.file_exists(path)): - return load(path) as Texture2D - - return null - -func get_pbr_textures(texture_name: String) -> Dictionary: - var pbr_textures: Dictionary = {} - for pbr_suffix in PBRSuffix.values(): - pbr_textures[pbr_suffix] = get_pbr_texture(texture_name, pbr_suffix) - return pbr_textures diff --git a/addons/func_godot/src/util/func_godot_texture_loader.gd.uid b/addons/func_godot/src/util/func_godot_texture_loader.gd.uid deleted file mode 100644 index ae653ca..0000000 --- a/addons/func_godot/src/util/func_godot_texture_loader.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://pfjqfqn3imye diff --git a/addons/func_godot/src/util/func_godot_util.gd b/addons/func_godot/src/util/func_godot_util.gd index 7f040a9..be6b575 100644 --- a/addons/func_godot/src/util/func_godot_util.gd +++ b/addons/func_godot/src/util/func_godot_util.gd @@ -1,40 +1,408 @@ -## General-purpose utility functions namespaced to FuncGodot for compatibility class_name FuncGodotUtil +## Static class with a number of reuseable utility methods that can be called at Editor or Run Time. -## Print debug messages. True to print, false to ignore -const DEBUG : bool = true +const _VERTEX_EPSILON: float = 0.008 -## Const-predicated print function to avoid excess log spam. Print msg if [constant DEBUG] is `true`. -static func debug_print(msg) -> void: - if(DEBUG): - print(msg) +const _VEC3_UP_ID := Vector3(0.0, 0.0, 1.0) +const _VEC3_RIGHT_ID := Vector3(0.0, 1.0, 0.0) +const _VEC3_FORWARD_ID := Vector3(1.0, 0.0, 0.0) -## Return a string that corresponds to the current OS's newline control character(s) +## Connected by the [FuncGodotMap] node to the build process' sub-components if the +## [member FuncGodotMap.build_flags]'s SHOW_PROFILE_INFO flag is set. +static func print_profile_info(message: String, signature: String) -> void: + prints(signature, message) + +## Return a [String] that corresponds to the current [OS]'s newline control characters. static func newline() -> String: if OS.get_name() == "Windows": return "\r\n" else: return "\n" -## Create a dictionary suitable for creating a category with name when overriding [method Object._get_property_list] -static func category_dict(name: String) -> Dictionary: - return property_dict(name, TYPE_STRING, -1, "", PROPERTY_USAGE_CATEGORY) +#region MATH -## Creates a property with name and type from [enum @GlobalScope.Variant.Type]. -## Optionally, provide hint from [enum @GlobalScope.PropertyHint] and corresponding hint_string, and usage from [enum @GlobalScope.PropertyUsageFlags]. -static func property_dict(name: String, type: int, hint: int = -1, hint_string: String = "", usage: int = -1) -> Dictionary: - var dict := { - 'name': name, - 'type': type - } +static func op_vec3_sum(lhs: Vector3, rhs: Vector3) -> Vector3: + return lhs + rhs - if hint != -1: - dict['hint'] = hint +static func op_vec3_avg(array: Array[Vector3]) -> Vector3: + if array.is_empty(): + push_error("Cannot average empty Vector3 array!") + return Vector3() + return array.reduce(op_vec3_sum, Vector3()) / array.size() - if hint_string != "": - dict['hint_string'] = hint_string +## Conversion from id tech coordinate system to Godot, from a top-down perspective. +static func id_to_opengl(vec: Vector3) -> Vector3: + return Vector3(vec.y, vec.z, vec.x) - if usage != -1: - dict['usage'] = usage +## Check if a point is inside a convex hull defined by a series of planes by an epsilon constant. +static func is_point_in_convex_hull(planes: Array[Plane], vertex: Vector3) -> bool: + for plane in planes: + var distance: float = plane.normal.dot(vertex) - plane.d + if distance > _VERTEX_EPSILON: + return false + return true - return dict +#endregion + +#region PATCH DEF + +## Returns the control points that defines a cubic curve for a equivalent input quadratic curve. +static func elevate_quadratic(p0: Vector3, p1: Vector3, p2: Vector3) -> Array[Vector3]: + return [p0, p0 + (2.0/3.0) * (p1 - p0), p2 + (2.0/3.0) * (p1 - p2), p2 ] + +## Create a Curve3D and bake points. +static func create_curve(start: Vector3, control: Vector3, end: Vector3, bake_interval: float = 0.05) -> Curve3D: + var ret := Curve3D.new() + ret.bake_interval = bake_interval + update_ref_curve(ret, start, control, end, bake_interval) + return ret + +## Update a Curve3D given quadratic inputs. +static func update_ref_curve(curve: Curve3D, p0: Vector3, p1: Vector3, p2: Vector3, bake_interval: float = 0.05) -> void: + curve.clear_points() + curve.bake_interval = bake_interval + curve.add_point(p0, (p1 - p0) * (2.0 / 3.0)) + curve.add_point(p1, (p1 - p0) * (1.0 / 3.0), (p2 - p1) * (1.0 / 3.0)) + curve.add_point(p2, (p2 - p1 * (2.0 / 3.0))) + +#endregion + +#region TEXTURES + +## Fallback texture if the one defined in the [QuakeMapFile] cannot be found. +const default_texture_path: String = "res://addons/func_godot/textures/default_texture.png" + +const _pbr_textures: PackedInt32Array = [ + StandardMaterial3D.TEXTURE_ALBEDO, + StandardMaterial3D.TEXTURE_NORMAL, + StandardMaterial3D.TEXTURE_METALLIC, + StandardMaterial3D.TEXTURE_ROUGHNESS, + StandardMaterial3D.TEXTURE_EMISSION, + StandardMaterial3D.TEXTURE_AMBIENT_OCCLUSION, + StandardMaterial3D.TEXTURE_HEIGHTMAP, + ORMMaterial3D.TEXTURE_ORM + ] + +## Searches for a Texture2D within the base texture directory or the WAD files added to map settings. +## If not found, a default texture is returned. +static func load_texture(texture_name: String, wad_resources: Array[QuakeWadFile], map_settings: FuncGodotMapSettings) -> Texture2D: + for texture_file_extension in map_settings.texture_file_extensions: + var texture_path: String = map_settings.base_texture_dir.path_join(texture_name + "." + texture_file_extension) + if ResourceLoader.exists(texture_path): + return load(texture_path) + + var texture_name_lower: String = texture_name.to_lower() + for wad in wad_resources: + if texture_name_lower in wad.textures: + return wad.textures[texture_name_lower] + + return load(default_texture_path) + +## Filters faces textured with Skip during the geometry generation step of the build process. +static func is_skip(texture: String, map_settings: FuncGodotMapSettings) -> bool: + if map_settings: + return texture.to_lower() == map_settings.skip_texture + return false + +## Filters faces textured with Clip during the geometry generation step of the build process. +static func is_clip(texture: String, map_settings: FuncGodotMapSettings) -> bool: + if map_settings: + return texture.to_lower() == map_settings.clip_texture + return false + +## Filters faces textured with Origin during the parsing and geometry generation steps of the build process. +static func is_origin(texture: String, map_settings: FuncGodotMapSettings) -> bool: + if map_settings: + return texture.to_lower() == map_settings.origin_texture + return false + +## Filters faces textured with any of the tool textures during the geometry generation step of the build process. +static func filter_face(texture: String, map_settings: FuncGodotMapSettings) -> bool: + if map_settings: + texture = texture.to_lower() + if (texture == map_settings.skip_texture + or texture == map_settings.clip_texture + or texture == map_settings.origin_texture + ): + return true + return false + +## Adds PBR textures to an existing [BaseMaterial3D]. +static func build_base_material(map_settings: FuncGodotMapSettings, material: BaseMaterial3D, texture: String) -> void: + var path: String = map_settings.base_texture_dir.path_join(texture) + # Check if there is a subfolder with our PBR textures + if DirAccess.open(path.path_join(path)): + path = path.path_join(path) + + var pbr_suffixes: PackedStringArray = [ + map_settings.albedo_map_pattern, + map_settings.normal_map_pattern, + map_settings.metallic_map_pattern, + map_settings.roughness_map_pattern, + map_settings.emission_map_pattern, + map_settings.ao_map_pattern, + map_settings.height_map_pattern, + map_settings.orm_map_pattern, + ] + + for texture_file_extension in map_settings.texture_file_extensions: + for i in pbr_suffixes.size(): + if not pbr_suffixes[i].is_empty(): + var pbr: String = pbr_suffixes[i] % [path, texture_file_extension] + if ResourceLoader.exists(pbr): + material.set_texture(_pbr_textures[i], load(pbr)) + +## Builds both materials and sizes dictionaries for use in the geometry generation step of the build process. +## Both dictionaries use texture names as keys. The materials dictionary uses [Material] as values, +## while the sizes dictionary saves the albedo texture sizes to aid in UV mapping. +static func build_texture_map(entity_data: Array[FuncGodotData.EntityData], map_settings: FuncGodotMapSettings) -> Array[Dictionary]: + var texture_materials: Dictionary[String, Material] = {} + var texture_sizes: Dictionary[String, Vector2] = {} + + # Prepare WAD files + var wad_resources: Array[QuakeWadFile] = [] + for wad in map_settings.texture_wads: + if wad and not wad in wad_resources: + wad_resources.append(wad) + + for entity in entity_data: + if not entity.is_visual(): + continue + + for brush in entity.brushes: + for face in brush.faces: + var texture_name: String = face.texture + + if filter_face(texture_name, map_settings): + continue + if texture_materials.has(texture_name): + continue + + var material_path: String = map_settings.base_material_dir if not map_settings.base_material_dir.is_empty() else map_settings.base_texture_dir + material_path = material_path.path_join(texture_name) + "." + map_settings.material_file_extension + material_path = material_path.replace("*", "") + + if ResourceLoader.exists(material_path): + var material: Material = load(material_path) + texture_materials[texture_name] = material + if material is BaseMaterial3D: + var albedo = material.albedo_texture + if albedo is Texture2D: + texture_sizes[texture_name] = material.albedo_texture.get_size() + elif material is ShaderMaterial: + var albedo = material.get_shader_parameter(map_settings.default_material_albedo_uniform) + if albedo is Texture2D: + texture_sizes[texture_name] = albedo.get_size() + if not texture_sizes.has(texture_name): + var texture: Texture2D = load_texture(texture_name, wad_resources, map_settings) + if texture: + texture_sizes[texture_name] = texture.get_size() + if not texture_sizes.has(texture_name): + texture_sizes[texture_name] = Vector2.ONE * map_settings.inverse_scale_factor + + # Material generation + elif map_settings.default_material: + var material = map_settings.default_material.duplicate(true) + var texture: Texture2D = load_texture(texture_name, wad_resources, map_settings) + texture_sizes[texture_name] = texture.get_size() + + if material is BaseMaterial3D: + material.albedo_texture = texture + build_base_material(map_settings, material, texture_name) + elif material is ShaderMaterial: + material.set_shader_parameter(map_settings.default_material_albedo_uniform, texture) + + if (map_settings.save_generated_materials and material + and texture_name != map_settings.clip_texture + and texture_name != map_settings.skip_texture + and texture_name != map_settings.origin_texture + and texture.resource_path != default_texture_path): + ResourceSaver.save(material, material_path) + + texture_materials[texture_name] = material + else: # No default material exists + printerr("Error: No default material found in map settings") + + return [texture_materials, texture_sizes] + +#endregion + +#region UV MAPPING + +## Returns UV coordinate calculated from the Valve 220 UV format. +static func get_valve_uv(vertex: Vector3, u_axis: Vector3, v_axis: Vector3, uv_basis := Transform2D.IDENTITY, texture_size := Vector2.ONE) -> Vector2: + var uv := Vector2(u_axis.dot(vertex), v_axis.dot(vertex)) + uv += (uv_basis.origin * uv_basis.get_scale()) + uv.x /= uv_basis.x.x + uv.y /= uv_basis.y.y + uv.x /= texture_size.x + uv.y /= texture_size.y + return uv + +## Returns UV coordinate calculated from the original id Standard UV format. +static func get_quake_uv(vertex: Vector3, normal: Vector3, uv_basis := Transform2D.IDENTITY, texture_size := Vector2.ONE) -> Vector2: + var nx := absf(normal.dot(Vector3.RIGHT)) + var ny := absf(normal.dot(Vector3.UP)) + var nz := absf(normal.dot(Vector3.FORWARD)) + var uv: Vector2 + + if ny >= nx and ny >= nz: + uv = Vector2(vertex.x, -vertex.z) + elif nx >= ny and nx >= nz: + uv = Vector2(vertex.y, -vertex.z) + else: + uv = Vector2(vertex.x, vertex.y) + + var uv_out := uv.rotated(uv_basis.get_rotation()) + uv_out /= uv_basis.get_scale() + uv_out += uv_basis.origin + uv_out /= texture_size + return uv_out + +## Determines which UV format is being used and returns the UV coordinate. +static func get_face_vertex_uv(vertex: Vector3, face: FuncGodotData.FaceData, texture_size: Vector2) -> Vector2: + if face.uv_axes.size() >= 2: + return get_valve_uv(vertex, face.uv_axes[0], face.uv_axes[1], face.uv, texture_size) + else: + return get_quake_uv(vertex, face.plane.normal, face.uv, texture_size) + +## Returns the tangent calculated from the Valve 220 UV format. +static func get_valve_tangent(u: Vector3, v: Vector3, normal: Vector3) -> PackedFloat32Array: + var u_axis: Vector3 = u.normalized() + var v_axis: Vector3 = v.normalized() + var v_sign: float = -signf(normal.cross(u_axis).dot(v_axis)) + return [u_axis.x, u_axis.y, u_axis.z, v_sign] + + # NOTE: we may still need to orthonormalize tangents. Just in case, here's a rough outline. + #var tangent: Vector3 = u.normalized() + #tangent = (tangent - normal * normal.dot(tangent)).normalized() + # + ## in the case of parallel U or V axes to planar normal, reconstruct the tangent + #if tangent.length_squared() < 0.01: + # if absf(normal.y) < 0.9: + # tangent = Vector3.UP.cross(normal) + # else: + # tangent = Vector3.RIGHT.cross(normal) + # + #tangent = tangent.normalized() + #return [tangent.x, tangent.y, tangent.z, -signf(normal.cross(tangent).dot(v.normalized))] + +## Returns the tangent calculated from the original id Standard UV format. +static func get_quake_tangent(normal: Vector3, uv_y_scale: float, uv_rotation: float) -> PackedFloat32Array: + var dx := normal.dot(_VEC3_RIGHT_ID) + var dy := normal.dot(_VEC3_UP_ID) + var dz := normal.dot(_VEC3_FORWARD_ID) + var dxa := absf(dx) + var dya := absf(dy) + var dza := absf(dz) + var u_axis: Vector3 + var v_sign: float = 0.0 + + if dya >= dxa and dya >= dza: + u_axis = _VEC3_FORWARD_ID + v_sign = signf(dy) + elif dxa >= dya and dxa >= dza: + u_axis = _VEC3_FORWARD_ID + v_sign = -signf(dx) + elif dza >= dya and dza >= dxa: + u_axis = _VEC3_RIGHT_ID + v_sign = signf(dz) + + v_sign *= signf(uv_y_scale) + u_axis = u_axis.rotated(normal, deg_to_rad(-uv_rotation) * v_sign) + return [u_axis.x, u_axis.y, u_axis.z, v_sign] + +static func get_face_tangent(face: FuncGodotData.FaceData) -> PackedFloat32Array: + if face.uv_axes.size() >= 2: + return get_valve_tangent(face.uv_axes[0], face.uv_axes[1], face.plane.normal) + else: + return get_quake_tangent(face.plane.normal, face.uv.get_scale().y, face.uv.get_rotation()) + +#endregion + +#region MESH + +static func smooth_mesh_by_angle(mesh: ArrayMesh, angle_deg: float = 89.0) -> Mesh: + if not mesh: + push_error("Need a source mesh to smooth") + return + + var angle: float = deg_to_rad(clampf(angle_deg, 0.0, 360.0)) + + var mesh_vertices: Array[Vector3] = [] + var mesh_normals: Array[Vector3] = [] + var surface_data: Array[Dictionary] = [] + var mdt: MeshDataTool + var st := SurfaceTool.new() + + # Collect surface information + for surface_index in mesh.get_surface_count(): + mdt = MeshDataTool.new() + + if mdt.create_from_surface(mesh, surface_index) != OK: + continue + + var info: Dictionary = { + "mdt": mdt, + "ofs": mesh_vertices.size(), + "mat": mesh.surface_get_material(surface_index) + } + + surface_data.append(info) + + for i in mdt.get_vertex_count(): + mesh_vertices.append(mdt.get_vertex(i)) + mesh_normals.append(mdt.get_vertex_normal(i)) + + var groups: Dictionary = {} + + # Group vertices by position + for i in mesh_vertices.size(): + var pos := mesh_vertices[i] + + # this is likely already snapped from the map building process + var key := pos.snappedf(_VERTEX_EPSILON) + + if not groups.has(key): + groups[key] = [i] + else: + groups[key].append(i) + + # Collect normals. Likely optimizable. + for group in groups.values(): + for i in group: + var this := mesh_normals[i] + var normal_out := Vector3() + for j in group: + var other := mesh_normals[j] + if this.angle_to(other) <= angle: + normal_out += other + + mesh_normals[i] = normal_out.normalized() + + var smoothed_mesh := ArrayMesh.new() + + # Construct smoothed output mesh + for dict in surface_data: + mdt = dict["mdt"] + var offset: int = dict["ofs"] + for i in mdt.get_vertex_count(): + mdt.set_vertex_normal(i, mesh_normals[offset + i]) + + st = SurfaceTool.new() + st.begin(Mesh.PRIMITIVE_TRIANGLES) + st.set_material(dict["mat"]) + + for i in mdt.get_face_count(): + for j in 3: + var index := mdt.get_face_vertex(i, j) + st.set_normal(mdt.get_vertex_normal(index)) + st.set_uv(mdt.get_vertex_uv(index)) + st.set_tangent(mdt.get_vertex_tangent(index)) + st.add_vertex(mdt.get_vertex(index)) + + smoothed_mesh = st.commit(smoothed_mesh) + + return smoothed_mesh + +#endregion diff --git a/addons/func_godot/src/util/func_godot_util.gd.uid b/addons/func_godot/src/util/func_godot_util.gd.uid index cf41fba..21f14f2 100644 --- a/addons/func_godot/src/util/func_godot_util.gd.uid +++ b/addons/func_godot/src/util/func_godot_util.gd.uid @@ -1 +1 @@ -uid://dy80wnu2py4dk +uid://bursmx2g1betd diff --git a/addons/func_godot/textures/default_material.tres b/addons/func_godot/textures/default_material.tres index c827784..30c0e59 100644 --- a/addons/func_godot/textures/default_material.tres +++ b/addons/func_godot/textures/default_material.tres @@ -5,4 +5,4 @@ [resource] albedo_texture = ExtResource("1_ncj77") metallic_specular = 0.0 -texture_filter = 4 +texture_filter = 2 diff --git a/addons/func_godot/textures/special/origin.png b/addons/func_godot/textures/special/origin.png new file mode 100644 index 0000000000000000000000000000000000000000..4d1b1557e0b34ae01dd5a73c4d0d787e99ec31f6 GIT binary patch literal 239 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|e#^NA%Cx&(BWL^R}Ea{HEjtmSN z`?>!lvI6;>0X`wFf@%yFH4Oj%|G!*PWe*Z8@Q5sCVBk9p!i>lBSEK+1^F3W0Lp+Wr zJFqupB!n==iW+D#P84Eh=12}*aAXNXbA%{E>p`z61(A+(m=^qX=s3?cfk`G$;f2Qr zb5RE~4a1&g?T%{`mi(&j&~VVy-=GO1G#qsKPJ}V&>le&o(AGausFGD_I7^PLn~9B$ Zf%#hiqs62%d_b!iJYD@<);T3K0RV;oM7IC{ literal 0 HcmV?d00001 diff --git a/addons/func_godot/textures/special/origin.png.import b/addons/func_godot/textures/special/origin.png.import new file mode 100644 index 0000000..ec4df62 --- /dev/null +++ b/addons/func_godot/textures/special/origin.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dutip72dl002r" +path="res://.godot/imported/origin.png-85b62dd151467f05fa8f98ed6d2927d0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/func_godot/textures/special/origin.png" +dest_files=["res://.godot/imported/origin.png-85b62dd151467f05fa8f98ed6d2927d0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/entities/hud.tscn b/entities/hud.tscn index 31cd337..5b42a09 100644 --- a/entities/hud.tscn +++ b/entities/hud.tscn @@ -12,21 +12,21 @@ font_size = 96 [sub_resource type="LabelSettings" id="LabelSettings_jqn4v"] font = ExtResource("3_mcea6") -font_size = 68 +font_size = 48 font_color = Color(1, 1, 1, 0.501961) outline_size = 16 outline_color = Color(0, 0, 0, 0.501961) [sub_resource type="LabelSettings" id="LabelSettings_fpuge"] font = ExtResource("3_mcea6") -font_size = 80 +font_size = 60 font_color = Color(1, 1, 1, 0.627451) outline_size = 16 outline_color = Color(0, 0, 0, 0.627451) [sub_resource type="LabelSettings" id="LabelSettings_npr4g"] font = ExtResource("3_mcea6") -font_size = 96 +font_size = 72 outline_size = 16 outline_color = Color(0, 0, 0, 1) @@ -68,7 +68,7 @@ theme_override_constants/separation = -8 [node name="prompt_overflow" type="Label" parent="hud_bottom/promptbox"] visible = false layout_mode = 2 -text = "..." +text = ". . ." label_settings = SubResource("LabelSettings_jqn4v") horizontal_alignment = 1 vertical_alignment = 1 @@ -97,6 +97,23 @@ label_settings = SubResource("LabelSettings_npr4g") horizontal_alignment = 1 vertical_alignment = 1 +[node name="subtitle" type="MarginContainer" parent="."] +visible = false +anchors_preset = 12 +anchor_top = 1.0 +anchor_right = 1.0 +anchor_bottom = 1.0 +offset_top = -300.0 +grow_horizontal = 2 +grow_vertical = 0 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="ColorRect" type="ColorRect" parent="subtitle"] +visible = false +layout_mode = 2 +color = Color(0.15, 0.15, 0.15, 0.784314) + [node name="icon_eye" type="TextureRect" parent="."] visible = false offset_right = 192.0 diff --git a/entities/npc.gd b/entities/npc.gd index b2deb23..0617367 100644 --- a/entities/npc.gd +++ b/entities/npc.gd @@ -20,7 +20,7 @@ var on_route : bool = false @export var behavior_type : String = "guard" var state : String = "default" -var current_waypoint : int = -1 +var current_waypoint : int = 0 var paused : bool = false var pauseanim : String var pauseturn : bool @@ -226,7 +226,7 @@ func movement_process(delta): if !paused: walk_toward(current_path_point) - if global_transform.origin.distance_to(current_path_point) <= 0.5: + if global_transform.origin.distance_to(current_path_point) <= 0.25: current_path_index += 1 if current_path_index >= current_path.size(): if on_route: @@ -265,9 +265,10 @@ func angle_toward(target : Vector3): return (Vector2(target.z, target.x) - Vector2($CharacterArmature.global_transform.origin.z, $CharacterArmature.global_transform.origin.x)).angle() func walk_toward(point: Vector3): - var direction = global_transform.origin.direction_to(point) + var direction = global_transform.origin.direction_to(point) velocity.x = direction.x * walk_speed velocity.z = direction.z * walk_speed + print(direction) lerp_toward(atan2(velocity.x, velocity.z)) @@ -289,7 +290,8 @@ func setpath(target_position): target_position, true ) - path_end_point = current_path[len(current_path)-1] + if len(current_path) > 0: + path_end_point = current_path[len(current_path)-1] func clearpath(): current_path = [] diff --git a/maps/autosave/.gdignore b/maps/autosave/.gdignore new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/maps/autosave/.gdignore @@ -0,0 +1 @@ + diff --git a/maps/autosave/cafemotel.1.map.import b/maps/autosave/cafemotel.1.map.import deleted file mode 100644 index 60876fd..0000000 --- a/maps/autosave/cafemotel.1.map.import +++ /dev/null @@ -1,14 +0,0 @@ -[remap] - -importer="func_godot.map" -type="Resource" -uid="uid://bmjn0u44o5mvf" -path="res://.godot/imported/cafemotel.1.map-47307151d410699b7cf7c2fe6d296bb7.tres" - -[deps] - -source_file="res://maps/autosave/cafemotel.1.map" -dest_files=["res://.godot/imported/cafemotel.1.map-47307151d410699b7cf7c2fe6d296bb7.tres"] - -[params] - diff --git a/maps/autosave/cafemotel.10.map.import b/maps/autosave/cafemotel.10.map.import deleted file mode 100644 index afa94c5..0000000 --- a/maps/autosave/cafemotel.10.map.import +++ /dev/null @@ -1,14 +0,0 @@ -[remap] - -importer="func_godot.map" -type="Resource" -uid="uid://dnemivow04qpk" -path="res://.godot/imported/cafemotel.10.map-d2df9a014684f3492d3e6763eb7f1da0.tres" - -[deps] - -source_file="res://maps/autosave/cafemotel.10.map" -dest_files=["res://.godot/imported/cafemotel.10.map-d2df9a014684f3492d3e6763eb7f1da0.tres"] - -[params] - diff --git a/maps/autosave/cafemotel.2.map b/maps/autosave/cafemotel.2.map index 3cf0080..7009974 100644 --- a/maps/autosave/cafemotel.2.map +++ b/maps/autosave/cafemotel.2.map @@ -6,59 +6,23 @@ "classname" "worldspawn" // brush 0 { -( -16 -64 -16 ) ( -16 -63 -16 ) ( -16 -64 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( -64 -64 -16 ) ( -64 -64 -15 ) ( -63 -64 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( -64 -64 -16 ) ( -63 -64 -16 ) ( -64 -63 -16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 64 64 16 ) ( 64 65 16 ) ( 65 64 16 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 64 64 16 ) ( 65 64 16 ) ( 64 64 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 784 64 16 ) ( 784 64 17 ) ( 784 65 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( -16 -184 -16 ) ( -16 -183 -16 ) ( -16 -184 -15 ) skip [ 0 -1 0 32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( -64 -184 -16 ) ( -64 -184 -15 ) ( -63 -184 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( -64 -184 -16 ) ( -63 -184 -16 ) ( -64 -183 -16 ) skip [ -1 0 0 0 ] [ 0 -1 0 32 ] 0 0.25 0.25 +( 64 -56 16 ) ( 64 -55 16 ) ( 65 -56 16 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 -1 0 120 ] 0 0.25 0.25 +( 64 -56 16 ) ( 65 -56 16 ) ( 64 -56 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 784 -56 16 ) ( 784 -56 17 ) ( 784 -55 16 ) skip [ 0 1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 } // brush 1 { -( 80 64 0 ) ( 80 65 0 ) ( 80 64 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 64 0 ) ( 80 64 1 ) ( 81 64 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 64 16 ) ( 81 64 16 ) ( 80 65 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 96 48 ) ( 112 97 48 ) ( 113 96 48 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 72 16 ) ( 113 72 16 ) ( 112 72 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 224 96 16 ) ( 224 96 17 ) ( 224 97 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 2 -{ -( 224 64 0 ) ( 224 65 0 ) ( 224 64 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 224 64 0 ) ( 224 64 1 ) ( 225 64 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 224 64 16 ) ( 225 64 16 ) ( 224 65 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 256 96 96 ) ( 256 97 96 ) ( 257 96 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 256 72 16 ) ( 257 72 16 ) ( 256 72 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 312 96 16 ) ( 312 96 17 ) ( 312 97 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 3 -{ -( 80 64 -8 ) ( 80 65 -8 ) ( 80 64 -7 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 16 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 176 64 -8 ) ( 176 64 -7 ) ( 177 64 -8 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 16 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 176 64 96 ) ( 177 64 96 ) ( 176 65 96 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 208 96 104 ) ( 208 97 104 ) ( 209 96 104 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 208 72 8 ) ( 209 72 8 ) ( 208 72 9 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 312 96 8 ) ( 312 96 9 ) ( 312 97 8 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 4 -{ -( 80 64 0 ) ( 80 65 0 ) ( 80 64 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 64 0 ) ( 80 64 1 ) ( 81 64 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 64 48 ) ( 81 64 48 ) ( 80 65 48 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 96 96 ) ( 112 97 96 ) ( 113 96 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 72 16 ) ( 113 72 16 ) ( 112 72 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 88 96 16 ) ( 88 96 17 ) ( 88 97 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 5 -{ ( 80 72 0 ) ( 80 73 0 ) ( 80 72 1 ) surface_green [ 0 4.371139006309477e-08 -0.999999999999999 32 ] [ 0 0.999999999999999 4.371139006309477e-08 24 ] 90 0.5 0.5 -( 80 72 0 ) ( 80 72 1 ) ( 81 72 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 -48 0 ) ( 80 -48 1 ) ( 81 -48 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 80 72 16 ) ( 81 72 16 ) ( 80 73 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 104 48 ) ( 112 105 48 ) ( 113 104 48 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 112 104 52 ) ( 112 105 52 ) ( 113 104 52 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 112 256 16 ) ( 113 256 16 ) ( 112 256 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 88 104 16 ) ( 88 104 17 ) ( 88 105 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 6 +// brush 2 { ( 80 256 0 ) ( 80 257 0 ) ( 80 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 80 256 0 ) ( 80 256 1 ) ( 81 256 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 @@ -67,7 +31,7 @@ ( 112 264 16 ) ( 113 264 16 ) ( 112 264 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 88 288 16 ) ( 88 288 17 ) ( 88 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 7 +// brush 3 { ( 80 256 -8 ) ( 80 257 -8 ) ( 80 256 -7 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 16 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 ( 176 256 -8 ) ( 176 256 -7 ) ( 177 256 -8 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 @@ -76,25 +40,25 @@ ( 208 264 8 ) ( 209 264 8 ) ( 208 264 9 ) surface_green_edge [ 4.371139006309477e-08 0 -0.999999999999999 16 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 ( 312 288 8 ) ( 312 288 9 ) ( 312 289 8 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 } -// brush 8 +// brush 4 { ( 80 72 72 ) ( 80 73 72 ) ( 80 72 73 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 16 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 72 72 ) ( 80 72 73 ) ( 81 72 72 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 +( 80 -48 72 ) ( 80 -48 73 ) ( 81 -48 72 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 ( 80 72 96 ) ( 81 72 96 ) ( 80 73 96 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 112 104 104 ) ( 112 105 104 ) ( 113 104 104 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 112 256 88 ) ( 113 256 88 ) ( 112 256 89 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 ( 88 104 88 ) ( 88 104 89 ) ( 88 105 88 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 } -// brush 9 +// brush 5 { ( 88 256 0 ) ( 88 257 0 ) ( 88 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 80 256 0 ) ( 80 256 1 ) ( 81 256 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 80 256 16 ) ( 81 256 16 ) ( 80 257 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 288 48 ) ( 112 289 48 ) ( 113 288 48 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 112 288 52 ) ( 112 289 52 ) ( 113 288 52 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 112 264 16 ) ( 113 264 16 ) ( 112 264 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 144 288 16 ) ( 144 288 17 ) ( 144 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 10 +// brush 6 { ( 144 256 0 ) ( 144 257 0 ) ( 144 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 144 256 0 ) ( 144 256 1 ) ( 145 256 0 ) surface_green [ 1 0 0 32 ] [ 0 0 -1 -16 ] 0 0.5 0.5 @@ -103,7 +67,7 @@ ( 176 264 16 ) ( 177 264 16 ) ( 176 264 17 ) surface_green [ -1 0 0 -32 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 160 288 16 ) ( 160 288 17 ) ( 160 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 11 +// brush 7 { ( 208 256 0 ) ( 208 257 0 ) ( 208 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 208 256 0 ) ( 208 256 1 ) ( 209 256 0 ) surface_green [ 1 0 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 @@ -112,25 +76,25 @@ ( 240 264 16 ) ( 241 264 16 ) ( 240 264 17 ) surface_green [ -1 0 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 224 288 16 ) ( 224 288 17 ) ( 224 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 12 +// brush 8 { ( 88 128 8 ) ( 88 129 8 ) ( 88 128 9 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 88 72 8 ) ( 88 72 9 ) ( 89 72 8 ) skip [ 1 0 0 0 ] [ 0 0 -1 -8 ] 0 0.25 0.25 +( 88 -56 8 ) ( 88 -56 9 ) ( 89 -56 8 ) skip [ 1 0 0 0 ] [ 0 0 -1 -8 ] 0 0.25 0.25 ( 88 128 8 ) ( 89 128 8 ) ( 88 129 8 ) skip [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.25 0.25 ( 128 176 16 ) ( 128 177 16 ) ( 129 176 16 ) floor_wood [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.25 0.25 ( 128 264 16 ) ( 129 264 16 ) ( 128 264 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 -8 ] 0 0.25 0.25 ( 320 176 16 ) ( 320 176 17 ) ( 320 177 16 ) skip [ 0 1 0 56 ] [ 0 0 -1 -8 ] 0 0.25 0.25 } -// brush 13 +// brush 9 { ( -16 64 -16 ) ( -16 65 -16 ) ( -16 64 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( -64 64 -16 ) ( -64 64 -15 ) ( -63 64 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( -64 -56 -16 ) ( -64 -56 -15 ) ( -63 -56 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( -64 64 -16 ) ( -63 64 -16 ) ( -64 65 -16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 64 192 16 ) ( 64 193 16 ) ( 65 192 16 ) ground_cobblestone1 [ -4.371139006309477e-08 -0.999999999999999 0 0 ] [ -0.999999999999999 4.371139006309477e-08 0 106 ] 90 0.25 0.25 ( 64 264 16 ) ( 65 264 16 ) ( 64 264 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 80 192 16 ) ( 80 192 17 ) ( 80 193 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 14 +// brush 10 { ( 72 72 88 ) ( 72 73 88 ) ( 72 72 89 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 16 ] 90 0.5 0.5 ( 80 256 88 ) ( 80 256 89 ) ( 81 256 88 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 @@ -139,25 +103,16 @@ ( 112 272 104 ) ( 113 272 104 ) ( 112 272 105 ) surface_green_edge [ 4.371139006309477e-08 0 -0.999999999999999 -32 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 ( 312 104 104 ) ( 312 104 105 ) ( 312 105 104 ) surface_green_edge [ 0 -4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 -0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 } -// brush 15 -{ -( 72 -128 88 ) ( 72 -127 88 ) ( 72 -128 89 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 16 ] 90 0.5 0.5 -( 80 56 88 ) ( 80 56 89 ) ( 81 56 88 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 -32 ] [ -0.999999999999999 0 4.371139006309477e-08 16 ] 90 0.5 0.5 -( 80 -128 104 ) ( 81 -128 104 ) ( 80 -127 104 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 -( 112 -96 112 ) ( 112 -95 112 ) ( 113 -96 112 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 -( 112 72 104 ) ( 113 72 104 ) ( 112 72 105 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 -( 312 -96 104 ) ( 312 -96 105 ) ( 312 -95 104 ) surface_green_edge [ 0 -4.371139006309477e-08 -0.999999999999999 32 ] [ 0 -0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -} -// brush 16 +// brush 11 { ( 72 -112 88 ) ( 72 -111 88 ) ( 72 -112 89 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 16 ] 90 0.5 0.5 -( 80 72 88 ) ( 80 72 89 ) ( 81 72 88 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 80 -48 88 ) ( 80 -48 89 ) ( 81 -48 88 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 ( 80 -112 104 ) ( 81 -112 104 ) ( 80 -111 104 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 ( 112 -80 112 ) ( 112 -79 112 ) ( 113 -80 112 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 ( 112 256 104 ) ( 113 256 104 ) ( 112 256 105 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 ( 88 -80 104 ) ( 88 -80 105 ) ( 88 -79 104 ) surface_green [ 0 1 0 -8 ] [ 0 0 -1 -24 ] 0 0.5 0.5 } -// brush 17 +// brush 12 { ( 72 72 128 ) ( 72 73 128 ) ( 72 72 129 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 ( 80 256 128 ) ( 80 256 129 ) ( 81 256 128 ) skip [ 1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 @@ -166,88 +121,52 @@ ( 112 272 144 ) ( 113 272 144 ) ( 112 272 145 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 ( 312 104 144 ) ( 312 104 145 ) ( 312 105 144 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 } -// brush 18 +// brush 13 { ( 72 -112 128 ) ( 72 -111 128 ) ( 72 -112 129 ) surface_green [ 0 -1 0 8 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 80 72 128 ) ( 80 72 129 ) ( 81 72 128 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 80 -48 128 ) ( 80 -48 129 ) ( 81 -48 128 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 80 -112 144 ) ( 81 -112 144 ) ( 80 -111 144 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 ( 112 -80 152 ) ( 112 -79 152 ) ( 113 -80 152 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 112 256 144 ) ( 113 256 144 ) ( 112 256 145 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 88 -80 144 ) ( 88 -80 145 ) ( 88 -79 144 ) skip [ 0 1 0 -8 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 19 +// brush 14 { -( 72 -128 128 ) ( 72 -127 128 ) ( 72 -128 129 ) surface_green [ 0 -1 0 -8 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 80 56 128 ) ( 80 56 129 ) ( 81 56 128 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 80 -128 144 ) ( 81 -128 144 ) ( 80 -127 144 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 -( 112 -96 152 ) ( 112 -95 152 ) ( 113 -96 152 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 72 144 ) ( 113 72 144 ) ( 112 72 145 ) skip [ -1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 312 -96 144 ) ( 312 -96 145 ) ( 312 -95 144 ) surface_green [ 0 1 0 8 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -} -// brush 20 -{ -( 80 64 48 ) ( 80 65 48 ) ( 80 64 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 64 48 ) ( 80 64 49 ) ( 81 64 48 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 -32 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 64 112 ) ( 81 64 112 ) ( 80 65 112 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 96 144 ) ( 112 97 144 ) ( 113 96 144 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 72 64 ) ( 113 72 64 ) ( 112 72 65 ) skip [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 312 96 64 ) ( 312 96 65 ) ( 312 97 64 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 21 -{ -( 80 256 48 ) ( 80 257 48 ) ( 80 256 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -31.999985 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 80 256 48 ) ( 80 257 48 ) ( 80 256 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -31.99997 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 ( 80 256 48 ) ( 80 256 49 ) ( 81 256 48 ) skip [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 80 256 112 ) ( 81 256 112 ) ( 80 257 112 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 80 256 120 ) ( 81 256 120 ) ( 80 257 120 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 112 288 144 ) ( 112 289 144 ) ( 113 288 144 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 264 64 ) ( 113 264 64 ) ( 112 264 65 ) surface_green_edge [ 4.371139006309477e-08 0 -0.999999999999999 -31.999985 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 112 264 64 ) ( 113 264 64 ) ( 112 264 65 ) surface_green_edge [ 4.371139006309477e-08 0 -0.999999999999999 -31.99997 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 ( 312 288 64 ) ( 312 288 65 ) ( 312 289 64 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 } -// brush 22 +// brush 15 { ( 80 248 48 ) ( 80 249 48 ) ( 80 248 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32.000015 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 72 48 ) ( 80 72 49 ) ( 81 72 48 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 80 248 112 ) ( 81 248 112 ) ( 80 249 112 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 +( 80 -48 48 ) ( 80 -48 49 ) ( 81 -48 48 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 +( 80 248 120 ) ( 81 248 120 ) ( 80 249 120 ) skip [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 ( 112 280 144 ) ( 112 281 144 ) ( 113 280 144 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 ( 112 256 64 ) ( 113 256 64 ) ( 112 256 65 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 ( 88 280 64 ) ( 88 280 65 ) ( 88 281 64 ) skip [ 0 1 0 8 ] [ 0 0 -1 -40 ] 0 0.5 0.5 } -// brush 23 +// brush 16 { -( 112 -16 16 ) ( 112 -15 16 ) ( 112 -16 17 ) redplaid [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 112 -16 16 ) ( 112 -16 17 ) ( 113 -16 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 112 -16 16 ) ( 113 -16 16 ) ( 112 -15 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 136 8 80 ) ( 136 9 80 ) ( 137 8 80 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 136 8 24 ) ( 137 8 24 ) ( 136 8 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 136 8 24 ) ( 136 8 25 ) ( 136 9 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 88 128 120 ) ( 88 129 120 ) ( 88 128 121 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 56 ] 0 0.25 0.25 +( 88 -48 120 ) ( 88 -48 121 ) ( 89 -48 120 ) skip [ 1 0 0 0 ] [ 0 0 -1 56 ] 0 0.25 0.25 +( 88 128 120 ) ( 89 128 120 ) ( 88 129 120 ) ground_wood [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.5 0.5 +( 128 176 128 ) ( 128 177 128 ) ( 129 176 128 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.25 0.25 +( 128 256 128 ) ( 129 256 128 ) ( 128 256 129 ) skip [ -1 0 0 0 ] [ 0 0 -1 56 ] 0 0.25 0.25 +( 312 176 128 ) ( 312 176 129 ) ( 312 177 128 ) skip [ 0 1 0 56 ] [ 0 0 -1 56 ] 0 0.25 0.25 } -// brush 24 -{ -( 88 128 104 ) ( 88 129 104 ) ( 88 128 105 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 56 ] 0 0.25 0.25 -( 88 72 104 ) ( 88 72 105 ) ( 89 72 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 56 ] 0 0.25 0.25 -( 88 128 104 ) ( 89 128 104 ) ( 88 129 104 ) ground_wood [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.5 0.5 -( 128 176 112 ) ( 128 177 112 ) ( 129 176 112 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.25 0.25 -( 128 256 112 ) ( 129 256 112 ) ( 128 256 113 ) skip [ -1 0 0 0 ] [ 0 0 -1 56 ] 0 0.25 0.25 -( 312 176 112 ) ( 312 176 113 ) ( 312 177 112 ) skip [ 0 1 0 56 ] [ 0 0 -1 56 ] 0 0.25 0.25 -} -// brush 25 -{ -( 224 72 16 ) ( 224 73 16 ) ( 224 72 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 224 72 16 ) ( 224 72 17 ) ( 225 72 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 224 72 16 ) ( 225 72 16 ) ( 224 73 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 248 160 48 ) ( 248 161 48 ) ( 249 160 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 248 192 24 ) ( 249 192 24 ) ( 248 192 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 248 160 24 ) ( 248 160 25 ) ( 248 161 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 26 +// brush 17 { ( 224 256 0 ) ( 224 257 0 ) ( 224 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 216 256 0 ) ( 216 256 1 ) ( 217 256 0 ) surface_green [ 1 0 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 216 256 16 ) ( 217 256 16 ) ( 216 257 16 ) surface_green [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 248 288 48 ) ( 248 289 48 ) ( 249 288 48 ) surface_green [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 248 288 52 ) ( 248 289 52 ) ( 249 288 52 ) surface_green [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 248 264 16 ) ( 249 264 16 ) ( 248 264 17 ) surface_green [ -1 0 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 296 288 16 ) ( 296 288 17 ) ( 296 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 27 +// brush 18 { ( 296 256 0 ) ( 296 257 0 ) ( 296 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 296 256 0 ) ( 296 256 1 ) ( 297 256 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 @@ -256,403 +175,376 @@ ( 328 264 16 ) ( 329 264 16 ) ( 328 264 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 312 288 16 ) ( 312 288 17 ) ( 312 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 28 -{ -( 224 128 16 ) ( 224 129 16 ) ( 224 128 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 224 224 16 ) ( 224 224 17 ) ( 225 224 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 224 128 16 ) ( 225 128 16 ) ( 224 129 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 248 216 48 ) ( 248 217 48 ) ( 249 216 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 248 256 24 ) ( 249 256 24 ) ( 248 256 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 312 216 24 ) ( 312 216 25 ) ( 312 217 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 29 +// brush 19 { ( 640 64 0 ) ( 640 65 0 ) ( 640 64 1 ) skip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 0.5 0.5 -( 640 64 0 ) ( 640 64 1 ) ( 641 64 0 ) skip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 0.5 0.5 +( 640 -56 0 ) ( 640 -56 1 ) ( 641 -56 0 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 640 64 0 ) ( 641 64 0 ) ( 640 65 0 ) skip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 0.5 0.5 ( 656 112 16 ) ( 656 113 16 ) ( 657 112 16 ) ground_cobblestone1 [ -4.371139006309477e-08 -0.999999999999999 0 0 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.25 0.25 ( 656 264 16 ) ( 657 264 16 ) ( 656 264 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 736 112 16 ) ( 736 112 17 ) ( 736 113 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 30 +// brush 20 { ( 736 72 16 ) ( 736 73 16 ) ( 736 72 17 ) wall_brick_scrungly [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 472 64 16 ) ( 472 64 17 ) ( 473 64 16 ) wall_brick_scrungly [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 472 -56 16 ) ( 472 -56 17 ) ( 473 -56 16 ) wall_brick_scrungly [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 472 72 16 ) ( 473 72 16 ) ( 472 73 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 504 104 96 ) ( 504 105 96 ) ( 505 104 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 504 264 32 ) ( 505 264 32 ) ( 504 264 33 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 784 104 32 ) ( 784 104 33 ) ( 784 105 32 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 31 +// brush 21 { ( 640 64 96 ) ( 640 65 96 ) ( 640 64 97 ) skip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 0.25 0.25 -( 640 64 96 ) ( 640 64 97 ) ( 641 64 96 ) wall_brick [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 0.25 0.25 +( 640 -56 96 ) ( 640 -56 97 ) ( 641 -56 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 640 64 96 ) ( 641 64 96 ) ( 640 65 96 ) wall_brick_scrungly [ 4.371139006309477e-08 -0.999999999999999 0 0 ] [ 0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.25 0.25 ( 656 112 256 ) ( 656 113 256 ) ( 657 112 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 656 264 112 ) ( 657 264 112 ) ( 656 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 736 112 112 ) ( 736 112 113 ) ( 736 113 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 32 +// brush 22 { ( 736 72 96 ) ( 736 73 96 ) ( 736 72 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 472 64 96 ) ( 472 64 97 ) ( 473 64 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 472 -56 96 ) ( 472 -56 97 ) ( 473 -56 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 472 72 96 ) ( 473 72 96 ) ( 472 73 96 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 504 104 256 ) ( 504 105 256 ) ( 505 104 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 504 264 112 ) ( 505 264 112 ) ( 504 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 784 104 112 ) ( 784 104 113 ) ( 784 105 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 33 +// brush 23 { -( 312 64 96 ) ( 312 65 96 ) ( 312 64 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 368 64 96 ) ( 368 64 97 ) ( 369 64 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 368 64 104 ) ( 369 64 104 ) ( 368 65 104 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 400 96 256 ) ( 400 97 256 ) ( 401 96 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 400 72 112 ) ( 401 72 112 ) ( 400 72 113 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 96 112 ) ( 640 96 113 ) ( 640 97 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 139 ] 0 0.25 0.25 +( 312 -56 96 ) ( 312 -55 96 ) ( 312 -56 97 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 368 -56 96 ) ( 368 -56 97 ) ( 369 -56 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 368 -56 104 ) ( 369 -56 104 ) ( 368 -55 104 ) skip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.25 0.25 +( 400 -24 256 ) ( 400 -23 256 ) ( 401 -24 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.25 0.25 +( 400 -48 112 ) ( 401 -48 112 ) ( 400 -48 113 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 640 -24 112 ) ( 640 -24 113 ) ( 640 -23 112 ) skip [ 0 1 0 32 ] [ 0 0 -1 11 ] 0 0.25 0.25 } -// brush 34 +// brush 24 { -( -16 264 -16 ) ( -16 265 -16 ) ( -16 264 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 -( -64 264 -16 ) ( -64 264 -15 ) ( -63 264 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( -16 264 -16 ) ( -16 265 -16 ) ( -16 264 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 +( -64 264 -16 ) ( -64 264 -15 ) ( -63 264 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 ( -64 264 12 ) ( -63 264 12 ) ( -64 265 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 ( 64 392 16 ) ( 64 393 16 ) ( 65 392 16 ) ground_greybrick [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 ( 64 360 16 ) ( 65 360 16 ) ( 64 360 17 ) wall_concrete1 [ -1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 -( 784 392 16 ) ( 784 392 17 ) ( 784 393 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 784 392 16 ) ( 784 392 17 ) ( 784 393 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 } -// brush 35 +// brush 25 { ( 632 72 96 ) ( 632 73 96 ) ( 632 72 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 368 72 96 ) ( 368 72 97 ) ( 369 72 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 368 -48 96 ) ( 368 -48 97 ) ( 369 -48 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 368 72 112 ) ( 369 72 112 ) ( 368 73 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 400 104 256 ) ( 400 105 256 ) ( 401 104 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 400 264 112 ) ( 401 264 112 ) ( 400 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 640 104 112 ) ( 640 104 113 ) ( 640 105 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 36 +// brush 26 { ( 320 72 96 ) ( 320 73 96 ) ( 320 72 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 360 72 96 ) ( 360 72 97 ) ( 361 72 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 360 72 112 ) ( 361 72 112 ) ( 360 73 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 360 -48 96 ) ( 360 -48 97 ) ( 361 -48 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 360 72 120 ) ( 361 72 120 ) ( 360 73 120 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 392 104 256 ) ( 392 105 256 ) ( 393 104 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 392 264 112 ) ( 393 264 112 ) ( 392 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 632 104 112 ) ( 632 104 113 ) ( 632 105 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 37 +// brush 27 { ( 312 256 104 ) ( 312 257 104 ) ( 312 256 105 ) skip [ 0 1.6292067950285372e-07 -0.9999999999999866 -16 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 ( 312 72 104 ) ( 312 72 105 ) ( 313 72 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 312 256 104 ) ( 313 256 104 ) ( 312 257 104 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 312 256 120 ) ( 313 256 120 ) ( 312 257 120 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 344 288 256 ) ( 344 289 256 ) ( 345 288 256 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 344 264 120 ) ( 345 264 120 ) ( 344 264 121 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 320 288 120 ) ( 320 288 121 ) ( 320 289 120 ) skip [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 38 +// brush 28 { -( 312 264 32 ) ( 312 136 32 ) ( 312 264 16 ) surface_beige_edge [ 0 -1.3113417006681922e-07 0.9999999999999913 32 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 0 ] 270 0.5 0.5 -( 320 136 16 ) ( 312 136 16 ) ( 320 136 32 ) surface_beige_edge [ 0.9999999999999957 0 8.742277997596912e-08 16 ] [ -8.742277997596912e-08 0 0.9999999999999957 0 ] 180 0.5 0.5 -( 312 264 16 ) ( 312 136 16 ) ( 320 264 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 320 264 32 ) ( 320 136 32 ) ( 312 264 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 264 16 ) ( 320 264 16 ) ( 312 264 32 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 264 16 ) ( 320 136 16 ) ( 320 264 32 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 312 144 32 ) ( 312 16 32 ) ( 312 144 16 ) surface_beige_edge [ 0 -1.3113417006681922e-07 0.9999999999999913 31.99997 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 -48 ] 270 0.5 0.5 +( 320 16 16 ) ( 312 16 16 ) ( 320 16 32 ) surface_beige_edge [ 0.9999999999999957 0 8.742277997596912e-08 16 ] [ -8.742277997596912e-08 0 0.9999999999999957 0 ] 180 0.5 0.5 +( 312 144 16 ) ( 312 16 16 ) ( 320 144 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -56 ] 0 1 1 +( 320 144 32 ) ( 320 16 32 ) ( 312 144 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 248 16 ) ( 320 248 16 ) ( 312 248 32 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 320 144 16 ) ( 320 16 16 ) ( 320 144 32 ) skip [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 39 +// brush 29 { -( 312 72 16 ) ( 312 88 16 ) ( 312 72 32 ) surface_beige_edge [ 0 -1.3113417006681922e-07 0.9999999999999913 32 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 0 ] 270 0.5 0.5 -( 312 72 32 ) ( 320 72 32 ) ( 312 72 16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 72 16 ) ( 320 88 16 ) ( 312 72 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 312 72 32 ) ( 312 88 32 ) ( 320 72 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 88 32 ) ( 312 88 16 ) ( 320 88 32 ) surface_beige_edge [ 1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 72 32 ) ( 320 88 32 ) ( 320 72 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 312 -48 16 ) ( 312 -32 16 ) ( 312 -48 32 ) surface_beige_edge [ 0 -1.3113417006681922e-07 0.9999999999999913 31.999966 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 -47.999992 ] 270 0.5 0.5 +( 312 -40 32 ) ( 320 -40 32 ) ( 312 -40 16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 320 -48 16 ) ( 320 -32 16 ) ( 312 -48 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -56 ] 0 1 1 +( 312 -48 32 ) ( 312 -32 32 ) ( 320 -48 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 -32 32 ) ( 312 -32 16 ) ( 320 -32 32 ) surface_beige_edge [ 1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 320 -48 32 ) ( 320 -32 32 ) ( 320 -48 16 ) skip [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 40 +// brush 30 { -( 312 264 88 ) ( 312 136 88 ) ( 312 264 32 ) surface_beige [ 0 -1.3113417006681922e-07 0.9999999999999913 32 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 0 ] 270 0.5 0.5 -( 320 136 32 ) ( 312 136 32 ) ( 320 136 88 ) surface_beige_edge [ 0.9999999999999961 -0 8.742278000372473e-08 16 ] [ -8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 -( 312 264 32 ) ( 312 136 32 ) ( 320 264 32 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 320 264 88 ) ( 320 136 88 ) ( 312 264 88 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 264 32 ) ( 320 264 32 ) ( 312 264 88 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 264 32 ) ( 320 136 32 ) ( 320 264 88 ) skip [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 312 144 88 ) ( 312 16 88 ) ( 312 144 32 ) surface_beige [ 0 -1.3113417006681922e-07 0.9999999999999913 31.999962 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 -48 ] 270 0.5 0.5 +( 320 16 32 ) ( 312 16 32 ) ( 320 16 88 ) surface_beige_edge [ 0.9999999999999961 0 8.742278000372473e-08 16 ] [ -8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 +( 312 144 32 ) ( 312 16 32 ) ( 320 144 32 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 320 144 104 ) ( 320 16 104 ) ( 312 144 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 248 32 ) ( 320 248 32 ) ( 312 248 88 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 320 144 32 ) ( 320 16 32 ) ( 320 144 88 ) skip [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 } -// brush 41 +// brush 31 { -( 312 72 32 ) ( 312 88 32 ) ( 312 72 88 ) surface_beige [ 0 -1.3113417006681922e-07 0.9999999999999913 32 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 0 ] 270 0.5 0.5 -( 312 72 88 ) ( 320 72 88 ) ( 312 72 32 ) skip [ 1 0 0 -16 ] [ 0 0 -1 16 ] 0 0.5 0.5 -( 320 72 32 ) ( 320 88 32 ) ( 312 72 32 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 72 88 ) ( 312 88 88 ) ( 320 72 88 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 88 88 ) ( 312 88 32 ) ( 320 88 88 ) surface_beige_edge [ 0.9999999999999998 -0 1.3234889800848443e-23 16 ] [ 1.3234889800848443e-23 0 -0.9999999999999998 0 ] 0 0.5 0.5 -( 320 72 88 ) ( 320 88 88 ) ( 320 72 32 ) skip [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 312 -48 32 ) ( 312 -32 32 ) ( 312 -48 88 ) surface_beige_edge [ 0 0.9999999999999785 2.0663206962145964e-07 31.999962 ] [ 0 -2.0663206962145964e-07 0.9999999999999785 -48 ] 180 0.5 0.5 +( 312 -48 88 ) ( 320 -48 88 ) ( 312 -48 32 ) skip [ 1 0 0 -16 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 320 -48 32 ) ( 320 -32 32 ) ( 312 -48 32 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 -48 96 ) ( 312 -32 96 ) ( 320 -48 96 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 -32 88 ) ( 312 -32 32 ) ( 320 -32 88 ) surface_beige_edge [ 0.9999999999999998 0 1.3234889800848443e-23 16 ] [ 1.3234889800848443e-23 0 -0.9999999999999998 0 ] 0 0.5 0.5 +( 320 -48 88 ) ( 320 -32 88 ) ( 320 -48 32 ) skip [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 } -// brush 42 +// brush 32 { -( 312 264 104 ) ( 312 136 104 ) ( 312 264 88 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 320 136 88 ) ( 312 136 88 ) ( 320 136 104 ) surface_beige_edge [ 0.9999999999999961 0 8.742277995965608e-08 16 ] [ -8.742277995965608e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 -( 312 264 88 ) ( 312 136 88 ) ( 320 264 88 ) surface_beige_edge [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 320 264 104 ) ( 320 136 104 ) ( 312 264 104 ) surface_beige_edge [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 264 88 ) ( 320 264 88 ) ( 312 264 104 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 264 88 ) ( 320 136 88 ) ( 320 264 104 ) surface_beige_edge [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 312 144 120 ) ( 312 16 120 ) ( 312 144 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -15.9999695 ] [ 0 0.9999999999999866 1.6292067950285372e-07 48 ] 90 0.5 0.5 +( 320 16 104 ) ( 312 16 104 ) ( 320 16 120 ) surface_beige_edge [ 0.9999999999999961 0 8.742277995965608e-08 16 ] [ -8.742277995965608e-08 0 0.9999999999999961 -32 ] 180 0.5 0.5 +( 312 144 104 ) ( 312 16 104 ) ( 320 144 104 ) surface_beige_edge [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 320 144 120 ) ( 320 16 120 ) ( 312 144 120 ) surface_beige_edge [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 248 104 ) ( 320 248 104 ) ( 312 248 120 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 320 144 104 ) ( 320 16 104 ) ( 320 144 120 ) skip [ 0 1 0 48 ] [ 0 0 -1 48 ] 0 0.5 0.5 } -// brush 43 +// brush 33 { -( 312 72 88 ) ( 312 88 88 ) ( 312 72 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 312 72 104 ) ( 320 72 104 ) ( 312 72 88 ) skip [ 1 0 0 -16 ] [ 0 0 -1 16 ] 0 0.5 0.5 -( 320 72 88 ) ( 320 88 88 ) ( 312 72 88 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 72 104 ) ( 312 88 104 ) ( 320 72 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 88 104 ) ( 312 88 88 ) ( 320 88 104 ) surface_beige_edge [ 1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 72 104 ) ( 320 88 104 ) ( 320 72 88 ) skip [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 312 -48 104 ) ( 312 -32 104 ) ( 312 -48 120 ) surface_beige_corner [ 0 0.9999999999999961 8.742278000372473e-08 -32 ] [ 0 -8.742278000372473e-08 0.9999999999999961 -48 ] 180 0.5 0.5 +( 312 -48 120 ) ( 320 -48 120 ) ( 312 -48 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 48 ] 0 0.5 0.5 +( 320 -48 96 ) ( 320 -32 96 ) ( 312 -48 96 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 -48 120 ) ( 312 -32 120 ) ( 320 -48 120 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 -32 120 ) ( 312 -32 104 ) ( 320 -32 120 ) skip [ 1 0 0 16 ] [ 0 0 -1 32 ] 0 0.5 0.5 +( 320 -48 120 ) ( 320 -32 120 ) ( 320 -48 104 ) skip [ 0 1 0 48 ] [ 0 0 -1 48 ] 0 0.5 0.5 } -// brush 44 +// brush 34 { -( 312 88 104 ) ( 312 88 96 ) ( 312 136 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 320 96 104 ) ( 320 96 96 ) ( 312 96 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 312 136 96 ) ( 312 88 96 ) ( 320 136 96 ) surface_beige_edge [ 1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 320 136 104 ) ( 320 88 104 ) ( 312 136 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 128 104 ) ( 312 128 96 ) ( 320 128 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 -( 320 136 104 ) ( 320 136 96 ) ( 320 88 104 ) skip [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 312 -32 104 ) ( 312 -32 96 ) ( 312 16 104 ) surface_beige [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.99997 ] [ 0 0.9999999999999866 1.6292067950285372e-07 48 ] 90 0.5 0.5 +( 320 -24 104 ) ( 320 -24 96 ) ( 312 -24 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 +( 312 16 96 ) ( 312 -32 96 ) ( 320 16 96 ) surface_beige_edge [ 1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 320 16 104 ) ( 320 -32 104 ) ( 312 16 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 8 104 ) ( 312 8 96 ) ( 320 8 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 +( 320 16 104 ) ( 320 16 96 ) ( 320 -32 104 ) skip [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 } -// brush 45 +// brush 35 { ( 488 264 96 ) ( 488 72 96 ) ( 488 264 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 640 72 16 ) ( 328 72 16 ) ( 640 72 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 264 16 ) ( 328 264 16 ) ( 640 72 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 640 72 112 ) ( 328 72 112 ) ( 640 264 112 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 1 1 +( 640 -48 16 ) ( 328 -48 16 ) ( 640 -48 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 640 264 4 ) ( 328 264 4 ) ( 640 72 4 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 +( 640 72 120 ) ( 328 72 120 ) ( 640 264 120 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 1 1 ( 640 264 96 ) ( 328 264 96 ) ( 640 264 16 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 640 72 96 ) ( 640 264 96 ) ( 640 72 16 ) wall_brick_scrungly [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } +// brush 36 +{ +( 320 144 96 ) ( 320 16 96 ) ( 320 144 16 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 320 16 96 ) ( 328 16 96 ) ( 320 16 16 ) surface_beige_edge [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 320 144 16 ) ( 320 16 16 ) ( 328 144 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -56 ] 0 1 1 +( 328 144 112 ) ( 328 16 112 ) ( 320 144 112 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -56 ] 0 1 1 +( 320 136 16 ) ( 328 136 16 ) ( 320 136 96 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 328 144 16 ) ( 328 16 16 ) ( 328 144 96 ) surface_beige [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 37 +{ +( 320 -48 16 ) ( 320 -32 16 ) ( 320 -48 96 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 320 -48 96 ) ( 328 -48 96 ) ( 320 -48 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 328 -48 16 ) ( 328 -32 16 ) ( 320 -48 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -56 ] 0 1 1 +( 320 -48 96 ) ( 320 -32 96 ) ( 328 -48 96 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -56 ] 0 1 1 +( 320 -32 96 ) ( 320 -32 16 ) ( 328 -32 96 ) surface_beige_edge [ -0.9999999999999961 0 8.742278000372473e-08 16 ] [ 8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 +( 328 -48 96 ) ( 328 -32 96 ) ( 328 -48 16 ) surface_beige [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 38 +{ +( 320 8 8 ) ( 320 9 8 ) ( 320 8 9 ) skip [ 0 -1 0 -24 ] [ 0 0 -1 -8 ] 0 0.25 0.25 +( 320 -48 8 ) ( 320 -48 9 ) ( 321 -48 8 ) skip [ 1 0 0 32 ] [ 0 0 -1 -8 ] 0 0.25 0.25 +( 320 8 8 ) ( 321 8 8 ) ( 320 9 8 ) skip [ -1 0 0 -32 ] [ 0 -1 0 -24 ] 0 0.25 0.25 +( 360 56 16 ) ( 360 57 16 ) ( 361 56 16 ) floor_checkertiles [ 1 0 0 0 ] [ 0 -1 0 -96 ] 0 0.25 0.25 +( 360 104 16 ) ( 361 104 16 ) ( 360 104 17 ) skip [ -1 0 0 -32 ] [ 0 0 -1 -8 ] 0 0.25 0.25 +( 449 56 16 ) ( 449 56 17 ) ( 449 57 16 ) skip [ 0 1 0 24 ] [ 0 0 -1 -8 ] 0 0.25 0.25 +} +// brush 39 +{ +( 320 -32 104 ) ( 320 -32 96 ) ( 320 16 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.99997 ] [ 0 0.9999999999999866 1.6292067950285372e-07 48 ] 90 0.5 0.5 +( 328 -24 104 ) ( 328 -24 96 ) ( 320 -24 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 +( 320 16 96 ) ( 320 -32 96 ) ( 328 16 96 ) surface_beige_edge [ -0.9999999999999961 8.742278000372473e-08 0 16 ] [ 8.742278000372473e-08 0.9999999999999961 0 48 ] 180 0.5 0.5 +( 328 16 104 ) ( 328 -32 104 ) ( 320 16 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 320 8 104 ) ( 320 8 96 ) ( 328 8 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 +( 328 16 104 ) ( 328 16 96 ) ( 328 -32 104 ) surface_beige [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 +} +// brush 40 +{ +( 312 -24 104 ) ( 312 -24 96 ) ( 312 24 104 ) surface_beige [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.99997 ] [ 0 0.9999999999999866 1.6292067950285372e-07 31.999998 ] 90 0.5 0.5 +( 320 8 104 ) ( 320 8 96 ) ( 312 8 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 +( 312 24 96 ) ( 312 -24 96 ) ( 320 24 96 ) surface_beige_corner [ -4.371139006309477e-08 -0.999999999999999 0 -32 ] [ -0.999999999999999 4.371139006309477e-08 0 48 ] 90 0.5 0.5 +( 320 24 104 ) ( 320 -24 104 ) ( 312 24 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 312 16 104 ) ( 312 16 96 ) ( 320 16 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 +( 320 24 104 ) ( 320 24 96 ) ( 320 -24 104 ) skip [ 0 1 0 32 ] [ 0 0 -1 16 ] 0 0.5 0.5 +} +// brush 41 +{ +( 320 -24 104 ) ( 320 -24 96 ) ( 320 24 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.99997 ] [ 0 0.9999999999999866 1.6292067950285372e-07 31.999998 ] 90 0.5 0.5 +( 328 8 104 ) ( 328 8 96 ) ( 320 8 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 +( 320 24 96 ) ( 320 -24 96 ) ( 328 24 96 ) surface_beige_corner [ -0.9999999999999961 8.742277995965608e-08 0 16 ] [ 8.742277995965608e-08 0.9999999999999961 0 32 ] 180 0.5 0.5 +( 328 24 104 ) ( 328 -24 104 ) ( 320 24 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 320 16 104 ) ( 320 16 96 ) ( 328 16 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 +( 328 24 104 ) ( 328 24 96 ) ( 328 -24 104 ) surface_beige [ 0 1 0 32 ] [ 0 0 -1 16 ] 0 0.5 0.5 +} +// brush 42 +{ +( 312 -40 104 ) ( 312 -40 96 ) ( 312 8 104 ) surface_beige [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.999954 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 +( 320 -32 104 ) ( 320 -32 96 ) ( 312 -32 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 +( 312 8 96 ) ( 312 -40 96 ) ( 320 8 96 ) surface_beige_corner [ 1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 320 8 104 ) ( 320 -40 104 ) ( 312 8 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 312 -24 104 ) ( 312 -24 96 ) ( 320 -24 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 +( 320 8 104 ) ( 320 8 96 ) ( 320 -40 104 ) skip [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +} +// brush 43 +{ +( 320 -40 104 ) ( 320 -40 96 ) ( 320 8 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.999954 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 +( 328 -32 104 ) ( 328 -32 96 ) ( 320 -32 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 +( 320 8 96 ) ( 320 -40 96 ) ( 328 8 96 ) surface_beige_corner [ 1.3113417006681922e-07 0.9999999999999912 0 0 ] [ 0.9999999999999912 -1.3113417006681922e-07 0 48 ] 270 0.5 0.5 +( 328 8 104 ) ( 328 -40 104 ) ( 320 8 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 320 -24 104 ) ( 320 -24 96 ) ( 328 -24 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 +( 328 8 104 ) ( 328 8 96 ) ( 328 -40 104 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +} +// brush 44 +{ +( 320 -56 104 ) ( 320 -56 96 ) ( 320 -8 104 ) skip [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.999954 ] [ 0 0.9999999999999866 1.6292067950285372e-07 32.000004 ] 90 0.5 0.5 +( 328 -48 104 ) ( 328 -48 96 ) ( 320 -48 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 +( 320 -8 96 ) ( 320 -56 96 ) ( 328 -8 96 ) skip [ 1.3113417006681922e-07 0.9999999999999912 0 32 ] [ 0.9999999999999912 -1.3113417006681922e-07 0 48 ] 270 0.5 0.5 +( 328 -8 104 ) ( 328 -56 104 ) ( 320 -8 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 320 -32 104 ) ( 320 -32 96 ) ( 328 -32 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 +( 328 -8 104 ) ( 328 -8 96 ) ( 328 -56 104 ) surface_beige [ 0 1 0 32 ] [ 0 0 -1 16 ] 0 0.5 0.5 +} +// brush 45 +{ +( 480 -40 16 ) ( 480 -39 16 ) ( 480 -40 17 ) surface_beige [ 0 -1 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 480 -40 16 ) ( 480 -40 17 ) ( 481 -40 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 480 -40 16 ) ( 481 -40 16 ) ( 480 -39 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 488 -24 104 ) ( 488 -23 104 ) ( 489 -24 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 488 136 24 ) ( 489 136 24 ) ( 488 136 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 488 -24 24 ) ( 488 -24 25 ) ( 488 -23 24 ) skip [ 0 1 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} // brush 46 { -( 320 264 96 ) ( 320 136 96 ) ( 320 264 16 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 136 96 ) ( 328 136 96 ) ( 320 136 16 ) surface_beige_edge [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 264 16 ) ( 320 136 16 ) ( 328 264 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 328 264 112 ) ( 328 136 112 ) ( 320 264 112 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 1 1 -( 320 264 16 ) ( 328 264 16 ) ( 320 264 96 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 328 264 16 ) ( 328 136 16 ) ( 328 264 96 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 432 -48 96 ) ( 432 -56 96 ) ( 432 -48 16 ) wall_brick_scrungly [ 0 1 0 224 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 640 -56 16 ) ( 432 -56 16 ) ( 640 -56 96 ) wall_brick_scrungly [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 640 -48 16 ) ( 432 -48 16 ) ( 640 -56 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 640 -56 96 ) ( 432 -56 96 ) ( 640 -48 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 640 -48 96 ) ( 432 -48 96 ) ( 640 -48 16 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 640 -56 96 ) ( 640 -48 96 ) ( 640 -56 16 ) wall_brick_scrungly [ 0 1 0 224 ] [ 0 0 -1 0 ] 0 0.25 0.25 } // brush 47 { -( 320 72 16 ) ( 320 88 16 ) ( 320 72 96 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 72 96 ) ( 328 72 96 ) ( 320 72 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 328 72 16 ) ( 328 88 16 ) ( 320 72 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 320 72 96 ) ( 320 88 96 ) ( 328 72 96 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 1 1 -( 320 88 96 ) ( 320 88 16 ) ( 328 88 96 ) surface_beige_edge [ -0.9999999999999961 0 8.742278000372473e-08 16 ] [ 8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 -( 328 72 96 ) ( 328 88 96 ) ( 328 72 16 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 312 -56 16 ) ( 312 -48 16 ) ( 312 -56 96 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 312 -56 96 ) ( 384 -56 96 ) ( 312 -56 16 ) wall_brick_scrungly [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 312 -56 16 ) ( 384 -56 16 ) ( 312 -48 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 312 -48 96 ) ( 384 -48 96 ) ( 312 -56 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 312 -48 16 ) ( 384 -48 16 ) ( 312 -48 96 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 384 -56 16 ) ( 384 -56 96 ) ( 384 -48 16 ) wall_brick_scrungly [ 0 -1 0 -224 ] [ 0 0 -1 0 ] 0 0.25 0.25 } // brush 48 { -( 320 128 8 ) ( 320 129 8 ) ( 320 128 9 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 320 72 8 ) ( 320 72 9 ) ( 321 72 8 ) skip [ 1 0 0 96 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 320 128 8 ) ( 321 128 8 ) ( 320 129 8 ) skip [ -1 0 0 -96 ] [ 0 -1 0 -56 ] 0 0.25 0.25 -( 360 176 16 ) ( 360 177 16 ) ( 361 176 16 ) floor_checkertiles [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 360 224 16 ) ( 361 224 16 ) ( 360 224 17 ) skip [ -1 0 0 -32 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 448 176 16 ) ( 448 176 17 ) ( 448 177 16 ) skip [ 0 1 0 56 ] [ 0 0 -1 -8 ] 0 0.25 0.25 +( 432 -40 104 ) ( 432 -48 104 ) ( 432 -40 16 ) surface_beige_edge [ 0 -0.9999999999999961 8.742278000372473e-08 -16 ] [ 0 8.742278000372473e-08 0.9999999999999961 0 ] 180 0.5 0.5 +( 448 -48 16 ) ( 432 -48 16 ) ( 448 -48 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 448 -40 16 ) ( 432 -40 16 ) ( 448 -48 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 448 -48 104 ) ( 432 -48 104 ) ( 448 -40 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 448 -40 104 ) ( 432 -40 104 ) ( 448 -40 16 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 480 -48 104 ) ( 480 -40 104 ) ( 480 -48 16 ) skip [ 0 1 0 56 ] [ 0 0 -1 0 ] 0 1 1 } // brush 49 { -( 320 88 104 ) ( 320 88 96 ) ( 320 136 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 328 96 104 ) ( 328 96 96 ) ( 320 96 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 136 96 ) ( 320 88 96 ) ( 328 136 96 ) surface_beige_edge [ -0.9999999999999961 8.742278000372473e-08 0 16 ] [ 8.742278000372473e-08 0.9999999999999961 0 0 ] 180 0.5 0.5 -( 328 136 104 ) ( 328 88 104 ) ( 320 136 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 320 128 104 ) ( 320 128 96 ) ( 328 128 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 136 104 ) ( 328 136 96 ) ( 328 88 104 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 328 -48 16 ) ( 328 -40 16 ) ( 328 -48 104 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 +( 328 -48 104 ) ( 384 -48 104 ) ( 328 -48 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 328 -48 16 ) ( 384 -48 16 ) ( 328 -40 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 328 -40 104 ) ( 384 -40 104 ) ( 328 -48 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 328 -40 16 ) ( 384 -40 16 ) ( 328 -40 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 384 -48 16 ) ( 384 -48 104 ) ( 384 -40 16 ) surface_beige_edge [ 0 -1 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 } // brush 50 { -( 312 96 104 ) ( 312 96 96 ) ( 312 144 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48.000015 ] [ 0 0.9999999999999866 1.6292067950285372e-07 -16 ] 90 0.5 0.5 -( 320 128 104 ) ( 320 128 96 ) ( 312 128 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 312 144 96 ) ( 312 96 96 ) ( 320 144 96 ) surface_beige_corner [ -4.371139006309477e-08 -0.999999999999999 0 16 ] [ -0.999999999999999 4.371139006309477e-08 0 48 ] 90 0.5 0.5 -( 320 144 104 ) ( 320 96 104 ) ( 312 144 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 312 136 104 ) ( 312 136 96 ) ( 320 136 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 -( 320 144 104 ) ( 320 144 96 ) ( 320 96 104 ) skip [ 0 1 0 -16 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 392 -48 104 ) ( 392 -48 96 ) ( 392 -40 104 ) surface_beige [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 +( 432 -48 104 ) ( 432 -48 96 ) ( 384 -48 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 432 -48 96 ) ( 432 -40 96 ) ( 384 -48 96 ) surface_beige_edge [ -4.371139006309477e-08 -0.999999999999999 0 -16 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.5 0.5 +( 432 -48 104 ) ( 384 -48 104 ) ( 432 -40 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 384 -40 104 ) ( 384 -40 96 ) ( 432 -40 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 424 -40 104 ) ( 424 -40 96 ) ( 424 -48 104 ) surface_beige [ 0 1 0 56 ] [ 0 0 -1 0 ] 0 1 1 } // brush 51 { -( 320 96 104 ) ( 320 96 96 ) ( 320 144 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48.000015 ] [ 0 0.9999999999999866 1.6292067950285372e-07 -16 ] 90 0.5 0.5 -( 328 128 104 ) ( 328 128 96 ) ( 320 128 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 144 96 ) ( 320 96 96 ) ( 328 144 96 ) surface_beige_corner [ -0.9999999999999961 8.742277995965608e-08 0 16 ] [ 8.742277995965608e-08 0.9999999999999961 0 48 ] 180 0.5 0.5 -( 328 144 104 ) ( 328 96 104 ) ( 320 144 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 320 136 104 ) ( 320 136 96 ) ( 328 136 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 144 104 ) ( 328 144 96 ) ( 328 96 104 ) surface_beige [ 0 1 0 -16 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 384 -56 8 ) ( 384 -55 8 ) ( 384 -56 9 ) ground_cobblestone1 [ 0 -1 0 -224 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 384 -56 8 ) ( 384 -56 9 ) ( 385 -56 8 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 384 -56 8 ) ( 385 -56 8 ) ( 384 -55 8 ) ground_cobblestone1 [ -1 0 0 0 ] [ 0 -1 0 -30 ] 0 0.25 0.25 +( 432 -48 16 ) ( 432 -47 16 ) ( 433 -48 16 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 -1 0 -30 ] 0 0.25 0.25 +( 432 -48 16 ) ( 433 -48 16 ) ( 432 -48 17 ) ground_cobblestone1 [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 432 -48 16 ) ( 432 -48 17 ) ( 432 -47 16 ) ground_cobblestone1 [ 0 1 0 224 ] [ 0 0 -1 0 ] 0 0.25 0.25 } // brush 52 { -( 312 80 104 ) ( 312 80 96 ) ( 312 128 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 16 ] 90 0.5 0.5 -( 320 88 104 ) ( 320 88 96 ) ( 312 88 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 312 128 96 ) ( 312 80 96 ) ( 320 128 96 ) surface_beige_corner [ 1 0 0 16 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 320 128 104 ) ( 320 80 104 ) ( 312 128 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 312 96 104 ) ( 312 96 96 ) ( 320 96 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 -( 320 128 104 ) ( 320 128 96 ) ( 320 80 104 ) skip [ 0 1 0 16 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 312 -56 96 ) ( 312 -55 96 ) ( 312 -56 97 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 312 -56 96 ) ( 312 -56 97 ) ( 313 -56 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 312 -56 96 ) ( 313 -56 96 ) ( 312 -55 96 ) wall_brick [ -1 0 0 0 ] [ 0 -1 0 -118 ] 0 0.25 0.25 +( 360 -48 104 ) ( 360 -47 104 ) ( 361 -48 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.25 0.25 +( 360 -48 104 ) ( 361 -48 104 ) ( 360 -48 105 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 640 -48 104 ) ( 640 -48 105 ) ( 640 -47 104 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.25 0.25 } // brush 53 { -( 320 80 104 ) ( 320 80 96 ) ( 320 128 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 16 ] 90 0.5 0.5 -( 328 88 104 ) ( 328 88 96 ) ( 320 88 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 128 96 ) ( 320 80 96 ) ( 328 128 96 ) surface_beige_corner [ 1.3113417006681922e-07 0.9999999999999912 0 16 ] [ 0.9999999999999912 -1.3113417006681922e-07 -0 48 ] 270 0.5 0.5 -( 328 128 104 ) ( 328 80 104 ) ( 320 128 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 320 96 104 ) ( 320 96 96 ) ( 328 96 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 128 104 ) ( 328 128 96 ) ( 328 80 104 ) surface_beige [ 0 1 0 16 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 54 -{ -( 320 64 104 ) ( 320 64 96 ) ( 320 112 104 ) skip [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 48 ] 90 0.5 0.5 -( 328 72 104 ) ( 328 72 96 ) ( 320 72 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 112 96 ) ( 320 64 96 ) ( 328 112 96 ) skip [ 1.3113417006681922e-07 0.9999999999999912 0 48 ] [ 0.9999999999999912 -1.3113417006681922e-07 0 48 ] 270 0.5 0.5 -( 328 112 104 ) ( 328 64 104 ) ( 320 112 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 320 88 104 ) ( 320 88 96 ) ( 328 88 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 112 104 ) ( 328 112 96 ) ( 328 64 104 ) surface_beige [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 55 -{ -( 328 256 16 ) ( 328 257 16 ) ( 328 256 17 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 328 256 16 ) ( 328 256 17 ) ( 329 256 16 ) surface_beige [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 328 256 16 ) ( 329 256 16 ) ( 328 257 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 448 264 112 ) ( 448 265 112 ) ( 449 264 112 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 448 264 24 ) ( 449 264 24 ) ( 448 264 25 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 488 264 24 ) ( 488 264 25 ) ( 488 265 24 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 56 -{ -( 480 80 16 ) ( 480 81 16 ) ( 480 80 17 ) surface_beige [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 480 80 16 ) ( 480 80 17 ) ( 481 80 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 480 80 16 ) ( 481 80 16 ) ( 480 81 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 488 96 104 ) ( 488 97 104 ) ( 489 96 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 488 256 24 ) ( 489 256 24 ) ( 488 256 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 488 96 24 ) ( 488 96 25 ) ( 488 97 24 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 57 -{ -( 432 72 96 ) ( 432 64 96 ) ( 432 72 16 ) wall_brick_scrungly [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 64 16 ) ( 432 64 16 ) ( 640 64 96 ) wall_brick_scrungly [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 0.25 0.25 -( 640 72 16 ) ( 432 72 16 ) ( 640 64 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 640 64 96 ) ( 432 64 96 ) ( 640 72 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 640 72 96 ) ( 432 72 96 ) ( 640 72 16 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 64 96 ) ( 640 72 96 ) ( 640 64 16 ) wall_brick_scrungly [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 58 -{ -( 312 64 16 ) ( 312 72 16 ) ( 312 64 96 ) skip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 0.25 0.25 -( 312 64 96 ) ( 384 64 96 ) ( 312 64 16 ) wall_brick_scrungly [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 0.25 0.25 -( 312 64 16 ) ( 384 64 16 ) ( 312 72 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 312 72 96 ) ( 384 72 96 ) ( 312 64 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 312 72 16 ) ( 384 72 16 ) ( 312 72 96 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 384 64 16 ) ( 384 64 96 ) ( 384 72 16 ) wall_brick_scrungly [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 59 -{ -( 432 80 104 ) ( 432 72 104 ) ( 432 80 16 ) surface_beige_edge [ 0 -0.9999999999999961 8.742278000372473e-08 32 ] [ 0 8.742278000372473e-08 0.9999999999999961 0 ] 180 0.5 0.5 -( 448 72 16 ) ( 432 72 16 ) ( 448 72 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 448 80 16 ) ( 432 80 16 ) ( 448 72 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 448 72 104 ) ( 432 72 104 ) ( 448 80 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 448 80 104 ) ( 432 80 104 ) ( 448 80 16 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 480 72 104 ) ( 480 80 104 ) ( 480 72 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 60 -{ -( 328 72 16 ) ( 328 80 16 ) ( 328 72 104 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 328 72 104 ) ( 384 72 104 ) ( 328 72 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 328 72 16 ) ( 384 72 16 ) ( 328 80 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 328 80 104 ) ( 384 80 104 ) ( 328 72 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 328 80 16 ) ( 384 80 16 ) ( 328 80 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 384 72 16 ) ( 384 72 104 ) ( 384 80 16 ) surface_beige_edge [ 0 -1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 61 -{ -( 392 72 104 ) ( 392 72 96 ) ( 392 80 104 ) surface_beige [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 432 72 104 ) ( 432 72 96 ) ( 384 72 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 432 72 96 ) ( 432 80 96 ) ( 384 72 96 ) surface_beige_edge [ -4.371139006309477e-08 -0.999999999999999 0 32 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.5 0.5 -( 432 72 104 ) ( 384 72 104 ) ( 432 80 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 384 80 104 ) ( 384 80 96 ) ( 432 80 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 424 80 104 ) ( 424 80 96 ) ( 424 72 104 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 62 -{ -( 384 64 8 ) ( 384 65 8 ) ( 384 64 9 ) ground_cobblestone1 [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 384 64 8 ) ( 384 64 9 ) ( 385 64 8 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 384 64 8 ) ( 385 64 8 ) ( 384 65 8 ) ground_cobblestone1 [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 432 72 16 ) ( 432 73 16 ) ( 433 72 16 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 432 72 16 ) ( 433 72 16 ) ( 432 72 17 ) ground_cobblestone1 [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 432 72 16 ) ( 432 72 17 ) ( 432 73 16 ) ground_cobblestone1 [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 63 -{ -( 312 64 96 ) ( 312 65 96 ) ( 312 64 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 312 64 96 ) ( 312 64 97 ) ( 313 64 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 312 64 96 ) ( 313 64 96 ) ( 312 65 96 ) wall_brick [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 360 72 104 ) ( 360 73 104 ) ( 361 72 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 360 72 104 ) ( 361 72 104 ) ( 360 72 105 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 72 104 ) ( 640 72 105 ) ( 640 73 104 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 64 -{ ( 80 48 152 ) ( 80 49 152 ) ( 80 48 153 ) wall_brick [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 176 64 152 ) ( 176 64 153 ) ( 177 64 152 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 176 -56 152 ) ( 176 -56 153 ) ( 177 -56 152 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 176 48 152 ) ( 177 48 152 ) ( 176 49 152 ) wall_brick [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 208 80 256 ) ( 208 81 256 ) ( 209 80 256 ) wall_brick [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 208 80 256 ) ( 208 81 256 ) ( 209 80 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 208 264 168 ) ( 209 264 168 ) ( 208 264 169 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 312 80 168 ) ( 312 80 169 ) ( 312 81 168 ) wall_brick [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 65 +// brush 54 { -( 328 224 104 ) ( 328 225 104 ) ( 328 224 105 ) skip [ 0 -1 0 -16 ] [ 0 0 -1 48 ] 0 0.5 0.5 -( 392 80 104 ) ( 392 80 105 ) ( 393 80 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 -( 392 224 104 ) ( 393 224 104 ) ( 392 225 104 ) ground_wood [ -1 0 0 0 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 424 256 112 ) ( 424 257 112 ) ( 425 256 112 ) skip [ 1 0 0 0 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 424 256 112 ) ( 425 256 112 ) ( 424 256 113 ) skip [ -1 0 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 -( 480 256 112 ) ( 480 256 113 ) ( 480 257 112 ) skip [ 0 1 0 16 ] [ 0 0 -1 48 ] 0 0.5 0.5 +( 328 136 104 ) ( 328 137 104 ) ( 328 136 105 ) skip [ 0 -1 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 +( 392 -40 104 ) ( 392 -40 105 ) ( 393 -40 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 +( 392 136 104 ) ( 393 136 104 ) ( 392 137 104 ) ground_wood [ -1 0 0 0 ] [ 0 -1 0 -64 ] 0 0.5 0.5 +( 424 168 112 ) ( 424 169 112 ) ( 425 168 112 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 424 136 112 ) ( 425 136 112 ) ( 424 136 113 ) skip [ -1 0 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 +( 480 168 112 ) ( 480 168 113 ) ( 480 169 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 } -// brush 66 +// brush 55 { -( 424 72 104 ) ( 424 72 96 ) ( 424 80 104 ) surface_beige [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 440 72 104 ) ( 440 72 96 ) ( 392 72 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 440 72 96 ) ( 440 80 96 ) ( 392 72 96 ) surface_beige_corner [ -0.9999999999999961 8.742277995965608e-08 0 32 ] [ 8.742277995965608e-08 0.9999999999999961 0 32 ] 180 0.5 0.5 -( 440 72 104 ) ( 392 72 104 ) ( 440 80 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 392 80 104 ) ( 392 80 96 ) ( 440 80 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 432 80 104 ) ( 432 80 96 ) ( 432 72 104 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 424 -48 104 ) ( 424 -48 96 ) ( 424 -40 104 ) surface_beige [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 +( 440 -48 104 ) ( 440 -48 96 ) ( 392 -48 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 440 -48 96 ) ( 440 -40 96 ) ( 392 -48 96 ) surface_beige_corner [ -0.9999999999999961 8.742277995965608e-08 0 32 ] [ 8.742277995965608e-08 0.9999999999999961 0 16 ] 180 0.5 0.5 +( 440 -48 104 ) ( 392 -48 104 ) ( 440 -40 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 392 -40 104 ) ( 392 -40 96 ) ( 440 -40 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 432 -40 104 ) ( 432 -40 96 ) ( 432 -48 104 ) surface_beige [ 0 1 0 56 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 67 +// brush 56 { -( 384 72 104 ) ( 384 72 96 ) ( 384 80 104 ) surface_beige [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 72 104 ) ( 400 72 96 ) ( 352 72 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 72 96 ) ( 400 80 96 ) ( 352 72 96 ) surface_beige_corner [ -4.371139006309477e-08 -0.999999999999999 0 32 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.5 0.5 -( 400 72 104 ) ( 352 72 104 ) ( 400 80 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 352 80 104 ) ( 352 80 96 ) ( 400 80 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 392 80 104 ) ( 392 80 96 ) ( 392 72 104 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 384 -48 104 ) ( 384 -48 96 ) ( 384 -40 104 ) surface_beige [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 +( 400 -48 104 ) ( 400 -48 96 ) ( 352 -48 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 400 -48 96 ) ( 400 -40 96 ) ( 352 -48 96 ) surface_beige_corner [ -4.371139006309477e-08 -0.999999999999999 0 -16 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.5 0.5 +( 400 -48 104 ) ( 352 -48 104 ) ( 400 -40 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 352 -40 104 ) ( 352 -40 96 ) ( 400 -40 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 392 -40 104 ) ( 392 -40 96 ) ( 392 -48 104 ) surface_beige [ 0 1 0 56 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 68 +// brush 57 { -( 328 232 16 ) ( 328 233 16 ) ( 328 232 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 328 224 16 ) ( 328 224 17 ) ( 329 224 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 328 232 16 ) ( 329 232 16 ) ( 328 233 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 352 256 48 ) ( 352 257 48 ) ( 353 256 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 352 256 24 ) ( 353 256 24 ) ( 352 256 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 256 24 ) ( 400 256 25 ) ( 400 257 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 360 112 16 ) ( 360 113 16 ) ( 360 112 17 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 +( 328 104 16 ) ( 328 104 17 ) ( 329 104 16 ) woodpale [ -4.371139006309477e-08 0 -0.999999999999999 0 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.25 0.25 +( 328 112 16 ) ( 329 112 16 ) ( 328 113 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 352 136 46 ) ( 352 137 46 ) ( 353 136 46 ) skip [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 352 136 24 ) ( 353 136 24 ) ( 352 136 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 400 136 24 ) ( 400 136 25 ) ( 400 137 24 ) skip [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 69 +// brush 58 { -( 328 176 16 ) ( 328 177 16 ) ( 328 176 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 328 144 16 ) ( 328 144 17 ) ( 329 144 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 328 176 16 ) ( 329 176 16 ) ( 328 177 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 360 224 48 ) ( 360 225 48 ) ( 361 224 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 360 224 24 ) ( 361 224 24 ) ( 360 224 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 360 224 24 ) ( 360 224 25 ) ( 360 225 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 328 56 16 ) ( 328 57 16 ) ( 328 56 17 ) skip [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 +( 328 24 16 ) ( 328 24 17 ) ( 329 24 16 ) woodpale [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 328 56 16 ) ( 329 56 16 ) ( 328 57 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 360 104 46 ) ( 360 105 46 ) ( 361 104 46 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 360 104 24 ) ( 361 104 24 ) ( 360 104 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 360 104 24 ) ( 360 104 25 ) ( 360 105 24 ) woodpale [ 0 -4.371139006309477e-08 -0.999999999999999 0 ] [ 0 -0.999999999999999 4.371139006309477e-08 0 ] 90 0.25 0.25 } -// brush 70 +// brush 59 { -( 400 228 16 ) ( 400 229 16 ) ( 400 228 17 ) redplaid [ 0 -1 0 4 ] [ 0 0 -1 0 ] 0 1 1 -( 400 228 16 ) ( 400 228 17 ) ( 401 228 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 228 16 ) ( 401 228 16 ) ( 400 229 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 4 ] 0 1 1 -( 448 260 96 ) ( 448 261 96 ) ( 449 260 96 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 4 ] 0 1 1 -( 448 260 24 ) ( 449 260 24 ) ( 448 260 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 448 260 24 ) ( 448 260 25 ) ( 448 261 24 ) redplaid [ 0 1 0 -4 ] [ 0 0 -1 0 ] 0 1 1 +( 449 -8 16 ) ( 449 -7 16 ) ( 449 -8 17 ) woodpale [ 0 4.371139006309477e-08 -0.999999999999999 0 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.25 0.25 +( 448 -40 16 ) ( 448 -40 17 ) ( 449 -40 16 ) skip [ 1 0 0 -120 ] [ 0 0 -1 0 ] 0 1 1 +( 448 -8 16 ) ( 449 -8 16 ) ( 448 -7 16 ) skip [ -1 0 0 120 ] [ 0 -1 0 -184 ] 0 1 1 +( 480 40 46 ) ( 480 41 46 ) ( 481 40 46 ) skip [ 1 0 0 -56 ] [ 0 -1 0 -56 ] 0 1 1 +( 480 104 24 ) ( 481 104 24 ) ( 480 104 25 ) skip [ -1 0 0 56 ] [ 0 0 -1 0 ] 0 1 1 +( 480 40 24 ) ( 480 40 25 ) ( 480 41 24 ) skip [ 0 1 0 184 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 71 -{ -( 448 112 16 ) ( 448 113 16 ) ( 448 112 17 ) redplaid [ 0 -1 0 -64 ] [ 0 0 -1 0 ] 0 1 1 -( 448 80 16 ) ( 448 80 17 ) ( 449 80 16 ) redplaid [ 1 0 0 -120 ] [ 0 0 -1 0 ] 0 1 1 -( 448 112 16 ) ( 449 112 16 ) ( 448 113 16 ) redplaid [ -1 0 0 120 ] [ 0 -1 0 -64 ] 0 1 1 -( 480 160 48 ) ( 480 161 48 ) ( 481 160 48 ) redplaid [ 1 0 0 -120 ] [ 0 -1 0 -64 ] 0 1 1 -( 480 256 24 ) ( 481 256 24 ) ( 480 256 25 ) redplaid [ -1 0 0 120 ] [ 0 0 -1 0 ] 0 1 1 -( 480 160 24 ) ( 480 160 25 ) ( 480 161 24 ) redplaid [ 0 1 0 64 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 72 +// brush 60 { ( -16 360 -20 ) ( -16 361 -20 ) ( -16 360 -19 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( -64 360 -20 ) ( -64 360 -19 ) ( -63 360 -20 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 @@ -661,7 +553,7 @@ ( 64 600 12 ) ( 65 600 12 ) ( 64 600 13 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 784 488 12 ) ( 784 488 13 ) ( 784 489 12 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 73 +// brush 61 { ( -16 360 -16 ) ( -16 361 -16 ) ( -16 360 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 ( -64 360 -16 ) ( -64 360 -15 ) ( -63 360 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 @@ -670,34 +562,34 @@ ( 64 600 16 ) ( 65 600 16 ) ( 64 600 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 ( 80 488 16 ) ( 80 488 17 ) ( 80 489 16 ) wall_concrete1 [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 1 1 } -// brush 74 +// brush 62 { ( -16 600 -16 ) ( -16 601 -16 ) ( -16 600 -15 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 16 ] 0 0.5 0.5 ( -64 600 -16 ) ( -64 600 -15 ) ( -63 600 -16 ) wall_concrete1 [ 1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 ( -64 600 12 ) ( -63 600 12 ) ( -64 601 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 -16 ] 0 0.5 0.5 ( 64 728 16 ) ( 64 729 16 ) ( 65 728 16 ) ground_greybrick [ 1 0 0 0 ] [ 0 -1 0 48 ] 0 0.5 0.5 -( 64 696 16 ) ( 65 696 16 ) ( 64 696 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 +( 64 704 16 ) ( 65 704 16 ) ( 64 704 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 ( 576 728 16 ) ( 576 728 17 ) ( 576 729 16 ) wall_concrete1 [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 75 +// brush 63 { ( 736 600 -16 ) ( 736 601 -16 ) ( 736 600 -15 ) wall_concrete1 [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 144 600 -16 ) ( 144 600 -15 ) ( 145 600 -16 ) wall_concrete1 [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 144 600 12 ) ( 145 600 12 ) ( 144 601 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 272 728 16 ) ( 272 729 16 ) ( 273 728 16 ) ground_greybrick [ 1 0 0 0 ] [ 0 -1 0 48 ] 0 0.5 0.5 -( 272 696 16 ) ( 273 696 16 ) ( 272 696 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 272 720 16 ) ( 273 720 16 ) ( 272 720 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 784 728 16 ) ( 784 728 17 ) ( 784 729 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 76 +// brush 64 { ( 576 600 -20 ) ( 576 601 -20 ) ( 576 600 -19 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( -112 600 -20 ) ( -112 600 -19 ) ( -111 600 -20 ) skip [ 1 0 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( -112 600 -20 ) ( -111 600 -20 ) ( -112 601 -20 ) skip [ -1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.5 0.5 ( 16 728 12 ) ( 16 729 12 ) ( 17 728 12 ) asphalt [ 1 0 0 96 ] [ 0 -1 0 40 ] 0 0.5 0.5 -( 16 696 12 ) ( 17 696 12 ) ( 16 696 13 ) skip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 16 720 12 ) ( 17 720 12 ) ( 16 720 13 ) skip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 736 728 12 ) ( 736 728 13 ) ( 736 729 12 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 77 +// brush 65 { ( 64 336 24 ) ( 64 337 24 ) ( 64 336 25 ) redplaid [ 0 -1 0 0 ] [ 0 0 -1 8 ] 0 1 1 ( 56 344 24 ) ( 56 344 25 ) ( 57 344 24 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 8 ] 0 1 1 @@ -706,7 +598,7 @@ ( 80 352 32 ) ( 81 352 32 ) ( 80 352 33 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 8 ] 0 1 1 ( 72 360 32 ) ( 72 360 33 ) ( 72 361 32 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 8 ] 0 1 1 } -// brush 78 +// brush 66 { ( 56 336 16 ) ( 56 337 16 ) ( 56 336 17 ) redplaid [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 56 336 16 ) ( 56 336 17 ) ( 57 336 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 @@ -715,7 +607,7 @@ ( 80 360 24 ) ( 81 360 24 ) ( 80 360 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 80 360 24 ) ( 80 360 25 ) ( 80 361 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 79 +// brush 67 { ( 64 344 24 ) ( 56 336 18 ) ( 56 360 18 ) redplaid [ 0 -1.0000000000000002 0 0 ] [ 1.0000000000000002 0 0 -70.43137 ] 0 1 1 ( 72 344 24 ) ( 80 336 18 ) ( 56 336 18 ) redplaid [ 1.0000000000000002 0 0 0 ] [ 0 1.0000000000000002 0 -94.58823 ] 0 1 1 @@ -724,7 +616,7 @@ ( 72 352 24 ) ( 64 352 24 ) ( 56 360 18 ) redplaid [ -1.0000000000000002 0 0 0 ] [ 0 -1.0000000000000002 0 89.568634 ] 0 1 1 ( 72 352 24 ) ( 80 360 18 ) ( 80 336 18 ) redplaid [ 0 1.0000000000000002 0 0 ] [ -1.0000000000000002 0 0 68 ] 0 1 1 } -// brush 80 +// brush 68 { ( 60 336 152 ) ( 60 337 152 ) ( 60 336 153 ) redplaid [ 0 -1 0 24 ] [ 0 0 -1 8 ] 0 1 1 ( 56 340 152 ) ( 56 340 153 ) ( 57 340 152 ) redplaid [ 1 0 0 -8 ] [ 0 0 -1 8 ] 0 1 1 @@ -733,7 +625,7 @@ ( 88 356 160 ) ( 89 356 160 ) ( 88 356 161 ) redplaid [ -1 0 0 8 ] [ 0 0 -1 8 ] 0 1 1 ( 76 368 160 ) ( 76 368 161 ) ( 76 369 160 ) redplaid [ 0 1 0 -24 ] [ 0 0 -1 8 ] 0 1 1 } -// brush 81 +// brush 69 { ( 64 344 186 ) ( 54 334 180 ) ( 54 362 180 ) redplaid [ 0 -1.0000000000000002 0 24 ] [ 1.0000000000000002 0 0 -200.0878 ] 0 1 1 ( 72 344 186 ) ( 82 334 180 ) ( 54 334 180 ) redplaid [ 1.0000000000000002 0 0 -8 ] [ 0 1.0000000000000002 0 -222 ] 0 1 1 @@ -742,7 +634,7 @@ ( 54 362 180 ) ( 82 362 180 ) ( 72 352 186 ) redplaid [ -1.0000000000000002 0 0 8 ] [ 0 -1.0000000000000002 0 215.36586 ] 0 1 1 ( 72 352 186 ) ( 82 362 180 ) ( 82 334 180 ) redplaid [ 0 1.0000000000000002 0 -24 ] [ -1.0000000000000002 0 0 -62 ] 0 1 1 } -// brush 82 +// brush 70 { ( 60 354 156 ) ( 60 356 156 ) ( 54 362 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 ( 56 360 180 ) ( 62 354 156 ) ( 60 354 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 @@ -751,7 +643,7 @@ ( 60 356 156 ) ( 62 356 156 ) ( 56 362 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 56 362 180 ) ( 62 356 156 ) ( 62 354 156 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 83 +// brush 71 { ( 60 340 156 ) ( 60 342 156 ) ( 54 336 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 ( 56 334 180 ) ( 62 340 156 ) ( 60 340 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 @@ -760,7 +652,7 @@ ( 60 342 156 ) ( 62 342 156 ) ( 56 336 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 56 336 180 ) ( 62 342 156 ) ( 62 340 156 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 84 +// brush 72 { ( 74 342 156 ) ( 80 336 180 ) ( 80 334 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 ( 80 334 180 ) ( 82 334 180 ) ( 76 340 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 @@ -769,7 +661,7 @@ ( 76 342 156 ) ( 82 336 180 ) ( 80 336 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 76 342 156 ) ( 76 340 156 ) ( 82 334 180 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 85 +// brush 73 { ( 74 356 156 ) ( 80 362 180 ) ( 80 360 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 ( 80 360 180 ) ( 82 360 180 ) ( 76 354 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 @@ -778,7 +670,7 @@ ( 76 356 156 ) ( 82 362 180 ) ( 80 362 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 76 356 156 ) ( 76 354 156 ) ( 82 360 180 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 86 +// brush 74 { ( 80 360 16 ) ( 80 360 12 ) ( 80 368 12 ) clip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 80 360 16 ) ( 784 360 16 ) ( 784 360 12 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 @@ -786,13 +678,627 @@ ( 80 368 12 ) ( 784 368 12 ) ( 784 360 16 ) clip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 ( 784 360 16 ) ( 784 368 12 ) ( 784 360 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 } +// brush 75 +{ +( 400 104 16 ) ( 400 105 16 ) ( 400 104 17 ) redplaid [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 +( 400 104 16 ) ( 400 104 17 ) ( 401 104 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 400 104 16 ) ( 401 104 16 ) ( 400 105 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 448 136 96 ) ( 448 137 96 ) ( 449 136 96 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 448 136 24 ) ( 449 136 24 ) ( 448 136 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 448 136 24 ) ( 448 136 25 ) ( 448 137 24 ) redplaid [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 76 +{ +( 328 136 16 ) ( 328 137 16 ) ( 328 136 17 ) skip [ 0 -1 0 8 ] [ 0 0 -1 0 ] 0 1 1 +( 328 136 16 ) ( 328 136 17 ) ( 329 136 16 ) surface_beige [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 328 136 4 ) ( 329 136 4 ) ( 328 137 4 ) skip [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 1 1 +( 448 144 120 ) ( 448 145 120 ) ( 449 144 120 ) skip [ 1 0 0 0 ] [ 0 -1 0 8 ] 0 1 1 +( 448 264 24 ) ( 449 264 24 ) ( 448 264 25 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 488 144 24 ) ( 488 144 25 ) ( 488 145 24 ) skip [ 0 1 0 -8 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 77 +{ +( 80 600 16 ) ( 80 592 12 ) ( 80 600 12 ) clip [ -1.2246467991473532e-16 -1 0 0 ] [ 0 0 -1 0 ] 180 1 1 +( 784 592 12 ) ( 80 592 12 ) ( 80 600 16 ) clip [ -1 1.2246467991473532e-16 0 32 ] [ 1.2246467991473532e-16 1 0 0 ] 180 1 1 +( 80 600 12 ) ( 80 592 12 ) ( 784 592 12 ) clip [ 1 -1.2246467991473532e-16 0 -32 ] [ 1.2246467991473532e-16 1 0 0 ] 180 1 1 +( 784 600 16 ) ( 80 600 16 ) ( 80 600 12 ) clip [ -1 1.2246467991473532e-16 0 32 ] [ 0 0 -1 0 ] 180 1 1 +( 576 600 16 ) ( 576 600 12 ) ( 576 592 12 ) clip [ 1.2246467991473532e-16 1 0 0 ] [ 0 0 -1 0 ] 180 1 1 +} +// brush 78 +{ +( 80 936 16 ) ( 80 232 16 ) ( 80 232 12 ) clip [ -1.8369701987210297e-16 -1 0 56 ] [ 0 0 -1 0 ] 180 1 1 +( 80 360 16 ) ( 88 360 12 ) ( 80 360 12 ) clip [ 1 -1.8369701987210297e-16 0 23.999992 ] [ 0 0 -1 0 ] 180 1 1 +( 80 232 12 ) ( 88 232 12 ) ( 88 936 12 ) clip [ 1.8369701987210297e-16 1 0 -56 ] [ -1 1.8369701987210297e-16 0 -24 ] 270 1 1 +( 80 600 16 ) ( 80 600 12 ) ( 88 600 12 ) clip [ -1 1.8369701987210297e-16 0 -23.999992 ] [ 0 0 -1 0 ] 180 1 1 +( 88 936 12 ) ( 88 232 12 ) ( 80 232 16 ) clip [ -1.8369701987210297e-16 -1 0 56 ] [ -1 1.8369701987210297e-16 0 -24 ] 96.379364 1 1 +} +// brush 79 +{ +( 96 704 16 ) ( 96 705 16 ) ( 96 704 17 ) wall_brick [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 544 704 16 ) ( 544 704 17 ) ( 545 704 16 ) wall_brick [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 0.25 0.25 +( 544 704 12 ) ( 545 704 12 ) ( 544 705 12 ) skip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 0.25 0.25 +( 576 736 64 ) ( 576 737 64 ) ( 577 736 64 ) wall_brick [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 576 720 32 ) ( 577 720 32 ) ( 576 720 33 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 576 736 32 ) ( 576 736 33 ) ( 576 737 32 ) wall_brick [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 80 +{ +( 96 744 -20 ) ( 96 745 -20 ) ( 96 744 -19 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( -112 720 -20 ) ( -112 720 -19 ) ( -111 720 -20 ) skip [ 1 0 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( -112 744 -20 ) ( -111 744 -20 ) ( -112 745 -20 ) skip [ -1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 16 872 12 ) ( 16 873 12 ) ( 17 872 12 ) asphalt [ 1 0 0 96 ] [ 0 -1 0 108 ] 0 0.5 0.5 +( 16 1136 12 ) ( 17 1136 12 ) ( 16 1136 13 ) skip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 736 872 12 ) ( 736 872 13 ) ( 736 873 12 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 81 +{ +( 736 712 -16 ) ( 736 713 -16 ) ( 736 712 -15 ) wall_concrete1 [ 0 -1 0 112 ] [ 0 0 -1 0 ] 0 1 1 +( 144 720 -16 ) ( 144 720 -15 ) ( 145 720 -16 ) wall_concrete1 [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 144 712 12 ) ( 145 712 12 ) ( 144 713 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 272 840 16 ) ( 272 841 16 ) ( 273 840 16 ) ground_greybrick [ 1 0 0 0 ] [ 0 -1 0 -112 ] 0 0.5 0.5 +( 272 864 16 ) ( 273 864 16 ) ( 272 864 17 ) wall_concrete1 [ -1 0 0 128 ] [ 0 0 -1 0 ] 0 1 1 +( 848 840 16 ) ( 848 840 17 ) ( 848 841 16 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 82 +{ +( 784 704 16 ) ( 784 705 16 ) ( 784 704 17 ) wall_brick [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1344 704 16 ) ( 1344 704 17 ) ( 1345 704 16 ) wall_brick [ 1 0 0 128 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1344 704 12 ) ( 1345 704 12 ) ( 1344 705 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 1376 736 64 ) ( 1376 737 64 ) ( 1377 736 64 ) wall_brick [ 1 0 0 128 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 1376 720 32 ) ( 1377 720 32 ) ( 1376 720 33 ) wall_brick [ -1 0 0 -128 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1168 736 32 ) ( 1168 736 33 ) ( 1168 737 32 ) wall_brick [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 83 +{ +( 736 728 -20 ) ( 736 729 -20 ) ( 736 728 -19 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 608 864 -20 ) ( 608 864 -19 ) ( 609 864 -20 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 608 728 -20 ) ( 609 728 -20 ) ( 608 729 -20 ) skip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 736 856 12 ) ( 736 857 12 ) ( 737 856 12 ) asphalt [ 1 0 0 64 ] [ 0 -1 0 76 ] 0 0.5 0.5 +( 736 1136 12 ) ( 737 1136 12 ) ( 736 1136 13 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 848 856 12 ) ( 848 856 13 ) ( 848 857 12 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 84 +{ +( 848 872 -16 ) ( 848 873 -16 ) ( 848 872 -15 ) wall_concrete1 [ 0 -1 0 272 ] [ 0 0 -1 0 ] 0 1 1 +( 304 800 -16 ) ( 304 800 -15 ) ( 305 800 -16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 +( 304 872 12 ) ( 305 872 12 ) ( 304 873 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 432 1000 16 ) ( 432 1001 16 ) ( 433 1000 16 ) ground_greybrick [ 1 0 0 -96 ] [ 0 -1 0 -112 ] 0 0.5 0.5 +( 432 1136 16 ) ( 433 1136 16 ) ( 432 1136 17 ) skip [ -1 0 0 32 ] [ 0 0 -1 0 ] 0 1 1 +( 944 1000 16 ) ( 944 1000 17 ) ( 944 1001 16 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 85 +{ +( 736 600 16 ) ( 736 592 12 ) ( 736 600 12 ) clip [ -0 -1 0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 992 592 12 ) ( 288 592 12 ) ( 288 600 16 ) clip [ 1 0 -0 0 ] [ 0 -0.894427190999916 -0.447213595499958 0 ] 0 1 1 +( 288 600 12 ) ( 288 592 12 ) ( 992 592 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 992 600 16 ) ( 288 600 16 ) ( 288 600 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 784 600 16 ) ( 784 600 12 ) ( 784 592 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 86 +{ +( 576 1048 16 ) ( 576 344 16 ) ( 576 344 12 ) clip [ 0 -1 0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 576 600 16 ) ( 584 600 12 ) ( 576 600 12 ) clip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 576 344 12 ) ( 584 344 12 ) ( 584 1048 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 576 704 16 ) ( 576 704 12 ) ( 584 704 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 584 1048 12 ) ( 584 344 12 ) ( 576 344 16 ) clip [ 0.894427190999916 0 -0.447213595499958 0 ] [ 0 -1 0 0 ] 0 1 1 +} // brush 87 { -( 400 152 16 ) ( 400 153 16 ) ( 400 152 17 ) redplaid [ 0 -1 0 -72 ] [ 0 0 -1 0 ] 0 1 1 -( 400 152 16 ) ( 400 152 17 ) ( 401 152 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 152 16 ) ( 401 152 16 ) ( 400 153 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 -72 ] 0 1 1 -( 448 184 96 ) ( 448 185 96 ) ( 449 184 96 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 -72 ] 0 1 1 -( 448 184 24 ) ( 449 184 24 ) ( 448 184 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 448 184 24 ) ( 448 184 25 ) ( 448 185 24 ) redplaid [ 0 1 0 72 ] [ 0 0 -1 0 ] 0 1 1 +( 728 1048 12 ) ( 736 344 16 ) ( 728 344 12 ) clip [ 0.894427190999916 0 0.447213595499958 -29.020447 ] [ 0 -1 0 0 ] 0 1 1 +( 736 600 16 ) ( 736 600 12 ) ( 728 600 12 ) clip [ 1 0 0 -40 ] [ 0 0 -1 0 ] 0 1 1 +( 736 344 12 ) ( 728 1048 12 ) ( 728 344 12 ) clip [ -1 0 0 40 ] [ 0 -1 0 0 ] 0 1 1 +( 736 864 16 ) ( 728 864 12 ) ( 736 864 12 ) clip [ -1 0 0 40 ] [ 0 0 -1 0 ] 0 1 1 +( 736 1048 16 ) ( 736 344 12 ) ( 736 344 16 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 88 +{ +( 840 1312 12 ) ( 848 608 16 ) ( 840 608 12 ) clip [ 0.894427190999916 -0 0.447213595499958 0 ] [ -0 -1 0 0 ] 0 1 1 +( 848 864 16 ) ( 848 864 12 ) ( 840 864 12 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 848 608 12 ) ( 840 1312 12 ) ( 840 608 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 848 1136 16 ) ( 840 1136 12 ) ( 848 1136 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 848 1312 16 ) ( 848 608 12 ) ( 848 608 16 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 89 +{ +( 736 864 16 ) ( 736 864 12 ) ( 736 872 12 ) clip [ 0 -1 0 -8 ] [ 0 0 -1 0 ] 0 1 1 +( 144 864 16 ) ( 848 864 16 ) ( 848 864 12 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 848 864 12 ) ( 848 872 12 ) ( 144 872 12 ) clip [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 1 1 +( 144 872 12 ) ( 848 872 12 ) ( 848 864 16 ) clip [ 1 0 0 0 ] [ 0 -1 0 -8 ] 0 1 1 +( 848 864 16 ) ( 848 872 12 ) ( 848 864 12 ) clip [ 0 1 0 8 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 90 +{ +( 728 872 12 ) ( 736 864 16 ) ( 728 864 12 ) clip [ 0.894427190999916 -0 0.447213595499958 0 ] [ -0 -1 0 0 ] 0 1 1 +( 728 864 12 ) ( 736 864 16 ) ( 736 864 12 ) clip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 736 864 12 ) ( 736 872 12 ) ( 728 872 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 728 872 12 ) ( 736 872 12 ) ( 736 864 16 ) clip [ 1 -0 0 0 ] [ -0 -0.894427190999916 0.447213595499958 0 ] 0 1 1 +( 736 864 16 ) ( 736 872 12 ) ( 736 864 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 91 +{ +( 728 592 12 ) ( 728 600 12 ) ( 736 600 16 ) clip [ 0.894427190999916 -0 0.447213595499958 0 ] [ -0 -1 0 0 ] 0 1 1 +( 728 592 12 ) ( 736 600 16 ) ( 736 592 12 ) clip [ 1 0 -0 0 ] [ 0 -0.894427190999916 -0.447213595499958 0 ] 0 1 1 +( 736 600 12 ) ( 728 592 12 ) ( 736 592 12 ) clip [ -1 0 -0 0 ] [ -0 -1 0 0 ] 0 1 1 +( 728 600 12 ) ( 736 600 12 ) ( 736 600 16 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 736 600 16 ) ( 736 600 12 ) ( 736 592 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 92 +{ +( 576 600 16 ) ( 576 592 12 ) ( 576 600 12 ) clip [ -0 -1 0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 584 592 12 ) ( 576 592 12 ) ( 576 600 16 ) clip [ 1 0 -0 0 ] [ 0 -0.894427190999916 -0.447213595499958 0 ] 0 1 1 +( 576 600 12 ) ( 576 592 12 ) ( 584 592 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 584 600 12 ) ( 576 600 16 ) ( 576 600 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 584 592 12 ) ( 576 600 16 ) ( 584 600 12 ) clip [ 0.894427190999916 0 -0.447213595499958 0 ] [ 0 -1 -0 0 ] 0 1 1 +} +// brush 93 +{ +( 576 704 16 ) ( 576 704 12 ) ( 576 712 12 ) clip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 +( 584 704 12 ) ( 576 704 12 ) ( 576 704 16 ) clip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 576 704 12 ) ( 584 712 12 ) ( 576 712 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 584 712 12 ) ( 576 704 16 ) ( 576 712 12 ) clip [ 1 0 0 0 ] [ 0 -0.894427190999916 0.447213595499958 0 ] 0 1 1 +( 584 712 12 ) ( 584 704 12 ) ( 576 704 16 ) clip [ 0.894427190999916 0 -0.447213595499958 0 ] [ 0 -1 0 0 ] 0 1 1 +} +// brush 94 +{ +( 312 248 16 ) ( 312 249 16 ) ( 312 248 17 ) skip [ 0 -1 0 -48 ] [ 0 0 -1 0 ] 0 1 1 +( 312 256 16 ) ( 312 256 17 ) ( 313 256 16 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 +( 312 248 16 ) ( 313 248 16 ) ( 312 249 16 ) skip [ -1 0 0 24 ] [ 0 -1 0 -48 ] 0 1 1 +( 328 264 120 ) ( 328 265 120 ) ( 329 264 120 ) skip [ 1 0 0 -24 ] [ 0 -1 0 -48 ] 0 1 1 +( 328 264 24 ) ( 329 264 24 ) ( 328 264 25 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 328 264 24 ) ( 328 264 25 ) ( 328 265 24 ) skip [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 95 +{ +( 80 160 0 ) ( 80 161 0 ) ( 80 160 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 160 0 ) ( 80 160 1 ) ( 81 160 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 160 52 ) ( 81 160 52 ) ( 80 161 52 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 112 192 96 ) ( 112 193 96 ) ( 113 192 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 112 168 16 ) ( 113 168 16 ) ( 112 168 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 88 192 16 ) ( 88 192 17 ) ( 88 193 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +} +// brush 96 +{ +( 80 48 0 ) ( 80 49 0 ) ( 80 48 1 ) surface_green [ 0 -1 0 -32 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 48 0 ) ( 80 48 1 ) ( 81 48 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 48 52 ) ( 81 48 52 ) ( 80 49 52 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 112 80 96 ) ( 112 81 96 ) ( 113 80 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 112 56 16 ) ( 113 56 16 ) ( 112 56 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 88 80 16 ) ( 88 80 17 ) ( 88 81 16 ) surface_green [ 0 1 0 32 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +} +// brush 97 +{ +( 72 -248 88 ) ( 72 -247 88 ) ( 72 -248 89 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 -63.999992 ] 90 0.5 0.5 +( 80 -64 88 ) ( 80 -64 89 ) ( 81 -64 88 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 -32 ] [ -0.999999999999999 0 4.371139006309477e-08 16 ] 90 0.5 0.5 +( 80 -248 104 ) ( 81 -248 104 ) ( 80 -247 104 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 +( 112 -216 112 ) ( 112 -215 112 ) ( 113 -216 112 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 +( 112 -48 104 ) ( 113 -48 104 ) ( 112 -48 105 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 312 -216 104 ) ( 312 -216 105 ) ( 312 -215 104 ) surface_green_edge [ 0 -4.371139006309477e-08 -0.999999999999999 32 ] [ 0 -0.999999999999999 4.371139006309477e-08 16.000008 ] 90 0.5 0.5 +} +// brush 98 +{ +( 224 8 16 ) ( 224 9 16 ) ( 224 8 17 ) redplaid [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 +( 224 104 16 ) ( 224 104 17 ) ( 225 104 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 224 8 16 ) ( 225 8 16 ) ( 224 9 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 248 96 48 ) ( 248 97 48 ) ( 249 96 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 248 136 24 ) ( 249 136 24 ) ( 248 136 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 312 96 24 ) ( 312 96 25 ) ( 312 97 24 ) redplaid [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 99 +{ +( 80 -56 48 ) ( 80 -55 48 ) ( 80 -56 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 -15.999992 ] 90 0.5 0.5 +( 80 -56 48 ) ( 80 -56 49 ) ( 81 -56 48 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 -32 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 80 -56 120 ) ( 81 -56 120 ) ( 80 -55 120 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -24 144 ) ( 112 -23 144 ) ( 113 -24 144 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -48 64 ) ( 113 -48 64 ) ( 112 -48 65 ) skip [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 +( 312 -24 64 ) ( 312 -24 65 ) ( 312 -23 64 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -40 ] 0 0.5 0.5 +} +// brush 100 +{ +( 80 -56 0 ) ( 80 -55 0 ) ( 80 -56 1 ) surface_green [ 0 -1 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 -56 0 ) ( 80 -56 1 ) ( 81 -56 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 -56 48 ) ( 81 -56 48 ) ( 80 -55 48 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -24 96 ) ( 112 -23 96 ) ( 113 -24 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -48 16 ) ( 113 -48 16 ) ( 112 -48 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 88 -24 16 ) ( 88 -24 17 ) ( 88 -23 16 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +} +// brush 101 +{ +( 224 -48 16 ) ( 224 -47 16 ) ( 224 -48 17 ) redplaid [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 +( 224 -48 16 ) ( 224 -48 17 ) ( 225 -48 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 224 -48 16 ) ( 225 -48 16 ) ( 224 -47 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 248 40 48 ) ( 248 41 48 ) ( 249 40 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 248 64 24 ) ( 249 64 24 ) ( 248 64 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 248 40 24 ) ( 248 40 25 ) ( 248 41 24 ) redplaid [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 102 +{ +( 72 -248 128 ) ( 72 -247 128 ) ( 72 -248 129 ) surface_green [ 0 -1 0 8 ] [ 0 0 -1 -48 ] 0 0.5 0.5 +( 80 -64 128 ) ( 80 -64 129 ) ( 81 -64 128 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 +( 80 -248 144 ) ( 81 -248 144 ) ( 80 -247 144 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 +( 112 -216 152 ) ( 112 -215 152 ) ( 113 -216 152 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -48 144 ) ( 113 -48 144 ) ( 112 -48 145 ) skip [ -1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 +( 312 -216 144 ) ( 312 -216 145 ) ( 312 -215 144 ) surface_green [ 0 1 0 -8 ] [ 0 0 -1 -48 ] 0 0.5 0.5 +} +// brush 103 +{ +( 80 -56 0 ) ( 80 -55 0 ) ( 80 -56 1 ) surface_green [ 0 -1 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 -56 0 ) ( 80 -56 1 ) ( 81 -56 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 -56 16 ) ( 81 -56 16 ) ( 80 -55 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -24 52 ) ( 112 -23 52 ) ( 113 -24 52 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -48 16 ) ( 113 -48 16 ) ( 112 -48 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 224 -24 16 ) ( 224 -24 17 ) ( 224 -23 16 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +} +// brush 104 +{ +( 224 -56 0 ) ( 224 -55 0 ) ( 224 -56 1 ) surface_green [ 0 -1 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 224 -56 0 ) ( 224 -56 1 ) ( 225 -56 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 224 -56 16 ) ( 225 -56 16 ) ( 224 -55 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 256 -24 96 ) ( 256 -23 96 ) ( 257 -24 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 256 -48 16 ) ( 257 -48 16 ) ( 256 -48 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 312 -24 16 ) ( 312 -24 17 ) ( 312 -23 16 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +} +// brush 105 +{ +( 80 -56 -8 ) ( 80 -55 -8 ) ( 80 -56 -7 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 16 ] [ 0 0.999999999999999 4.371139006309477e-08 -15.999992 ] 90 0.5 0.5 +( 176 -56 -8 ) ( 176 -56 -7 ) ( 177 -56 -8 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 16 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 176 -56 96 ) ( 177 -56 96 ) ( 176 -55 96 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 208 -24 104 ) ( 208 -23 104 ) ( 209 -24 104 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 208 -48 8 ) ( 209 -48 8 ) ( 208 -48 9 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 +( 312 -24 8 ) ( 312 -24 9 ) ( 312 -23 8 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -40 ] 0 0.5 0.5 +} +// brush 106 +{ +( 944 584 -20 ) ( 944 585 -20 ) ( 944 584 -19 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 816 720 -20 ) ( 816 720 -19 ) ( 817 720 -20 ) skip [ 1 0 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 816 584 -20 ) ( 817 584 -20 ) ( 816 585 -20 ) skip [ -1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 944 712 12 ) ( 944 713 12 ) ( 945 712 12 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 944 800 12 ) ( 945 800 12 ) ( 944 800 13 ) skip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 1408 712 12 ) ( 1408 712 13 ) ( 1408 713 12 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 107 +{ +( 848 792 -16 ) ( 848 793 -16 ) ( 848 792 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 304 720 -16 ) ( 304 720 -15 ) ( 305 720 -16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 +( 304 792 12 ) ( 305 792 12 ) ( 304 793 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 432 920 16 ) ( 432 921 16 ) ( 433 920 16 ) ground_greybrick [ 1 0 0 -96 ] [ 0 -1 0 -16 ] 0 0.5 0.5 +( 432 800 16 ) ( 433 800 16 ) ( 432 800 17 ) skip [ -1 0 0 32 ] [ 0 0 -1 0 ] 0 1 1 +( 944 920 16 ) ( 944 920 17 ) ( 944 921 16 ) wall_concrete1 [ 0 1 0 0 ] [ 0 0 -1 -32 ] 0 1 1 +} +// brush 108 +{ +( 80 256 40 ) ( 80 257 40 ) ( 80 256 41 ) surface_green [ 0 4.371139006309477e-08 -0.999999999999999 -47.999954 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 80 256 40 ) ( 80 256 41 ) ( 81 256 40 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -56 ] 0 0.5 0.5 +( 80 256 112 ) ( 81 256 112 ) ( 80 257 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 112 288 120 ) ( 112 289 120 ) ( 113 288 120 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 112 264 56 ) ( 113 264 56 ) ( 112 264 57 ) surface_green [ 4.371139006309477e-08 0 -0.999999999999999 -47.999954 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 312 288 56 ) ( 312 288 57 ) ( 312 289 56 ) skip [ 0 1 0 0 ] [ 0 0 -1 -56 ] 0 0.5 0.5 +} +// brush 109 +{ +( 80 -56 40 ) ( 80 -55 40 ) ( 80 -56 41 ) surface_green [ 0 4.371139006309477e-08 -0.999999999999999 -48 ] [ 0 0.999999999999999 4.371139006309477e-08 -16 ] 90 0.5 0.5 +( 80 -56 40 ) ( 80 -56 41 ) ( 81 -56 40 ) surface_green [ -4.371139006309477e-08 0 -0.999999999999999 -48.000015 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 80 -56 112 ) ( 81 -56 112 ) ( 80 -55 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -24 120 ) ( 112 -23 120 ) ( 113 -24 120 ) skip [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -48 56 ) ( 113 -48 56 ) ( 112 -48 57 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -56 ] 0 0.5 0.5 +( 312 -24 56 ) ( 312 -24 57 ) ( 312 -23 56 ) skip [ 0 1 0 -16 ] [ 0 0 -1 -56 ] 0 0.5 0.5 +} +// brush 110 +{ +( 312 -32 120 ) ( 312 -32 112 ) ( 312 16 120 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -15.9999695 ] [ 0 0.9999999999999866 1.6292067950285372e-07 47.999992 ] 90 0.5 0.5 +( 320 -32 120 ) ( 320 -32 112 ) ( 312 -32 120 ) skip [ 1 0 0 -16 ] [ 0 0 -1 16 ] 0 1 1 +( 312 16 104 ) ( 312 -32 104 ) ( 320 16 104 ) skip [ 1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 320 16 120 ) ( 320 -32 120 ) ( 312 16 120 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 16 120 ) ( 312 16 112 ) ( 320 16 120 ) skip [ -1 0 0 16 ] [ 0 0 -1 16 ] 0 1 1 +( 320 16 120 ) ( 320 16 112 ) ( 320 -32 120 ) skip [ 0 1 0 48 ] [ 0 0 -1 48 ] 0 0.5 0.5 +} +// brush 111 +{ +( 312 -56 16 ) ( 312 -40 16 ) ( 312 -56 32 ) surface_beige_corner [ 0 -1.3113417006681922e-07 0.9999999999999913 32 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 -32 ] 270 0.5 0.5 +( 312 -48 32 ) ( 320 -48 32 ) ( 312 -48 16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 320 -56 16 ) ( 320 -40 16 ) ( 312 -56 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 +( 312 -56 32 ) ( 312 -40 32 ) ( 320 -56 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 312 -40 32 ) ( 312 -40 16 ) ( 320 -40 32 ) skip [ 1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 320 -56 32 ) ( 320 -40 32 ) ( 320 -56 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 112 +{ +( 312 152 32 ) ( 312 24 32 ) ( 312 152 16 ) surface_beige_corner [ 0 -0.9999999999999997 -1.224647977550801e-16 0 ] [ -0 1.224647977550801e-16 -0.9999999999999997 32 ] 0 0.5 0.5 +( 320 248 16 ) ( 312 248 16 ) ( 320 248 32 ) skip [ 0.9999999999999957 0 8.742277997596912e-08 16 ] [ -8.742277997596912e-08 0 0.9999999999999957 0 ] 180 0.5 0.5 +( 312 152 16 ) ( 312 24 16 ) ( 320 152 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 1 1 +( 320 152 32 ) ( 320 24 32 ) ( 312 152 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 312 256 16 ) ( 320 256 16 ) ( 312 256 32 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 320 152 16 ) ( 320 24 16 ) ( 320 152 32 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 113 +{ +( 312 152 48 ) ( 312 24 48 ) ( 312 152 32 ) surface_beige_edge [ 0 -0.9999999999999998 0 0 ] [ 0 0 -0.9999999999999998 -32 ] 0 0.5 0.5 +( 320 248 32 ) ( 312 248 32 ) ( 320 248 48 ) skip [ 0.9999999999999957 0 8.742277997596912e-08 16 ] [ -8.742277997596912e-08 0 0.9999999999999957 -32 ] 180 0.5 0.5 +( 312 152 32 ) ( 312 24 32 ) ( 320 152 32 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 1 1 +( 320 152 104 ) ( 320 24 104 ) ( 312 152 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 312 256 32 ) ( 320 256 32 ) ( 312 256 48 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 320 152 32 ) ( 320 24 32 ) ( 320 152 48 ) skip [ 0 1 0 32 ] [ 0 0 -1 32 ] 0 0.5 0.5 +} +// brush 114 +{ +( 312 152 120 ) ( 312 24 120 ) ( 312 152 104 ) surface_beige_corner [ 0 1.6292067950285372e-07 -0.9999999999999866 48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 +( 320 248 104 ) ( 312 248 104 ) ( 320 248 120 ) skip [ 0.9999999999999957 0 8.742277997596912e-08 16 ] [ -8.742277997596912e-08 0 0.9999999999999957 -48 ] 180 0.5 0.5 +( 312 152 104 ) ( 312 24 104 ) ( 320 152 104 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 1 1 +( 320 152 120 ) ( 320 24 120 ) ( 312 152 120 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 312 256 104 ) ( 320 256 104 ) ( 312 256 120 ) skip [ -1 0 0 0 ] [ 0 0 -1 32 ] 0 0.25 0.25 +( 320 152 104 ) ( 320 24 104 ) ( 320 152 120 ) skip [ 0 1 0 32 ] [ 0 0 -1 48 ] 0 0.5 0.5 +} +// brush 115 +{ +( 80 -48 40 ) ( 80 -47 40 ) ( 80 -48 41 ) surface_green [ 0 4.371139006309477e-08 -0.999999999999999 -48 ] [ 0 0.999999999999999 4.371139006309477e-08 -32 ] 90 0.5 0.5 +( 80 -48 40 ) ( 80 -48 41 ) ( 81 -48 40 ) skip [ -4.371139006309477e-08 0 -0.999999999999999 -48 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 80 -48 112 ) ( 81 -48 112 ) ( 80 -47 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 32 ] 0 0.5 0.5 +( 112 -16 120 ) ( 112 -15 120 ) ( 113 -16 120 ) skip [ 1 0 0 0 ] [ 0 -1 0 32 ] 0 0.5 0.5 +( 112 256 56 ) ( 113 256 56 ) ( 112 256 57 ) skip [ -1 0 0 0 ] [ 0 0 -1 -56 ] 0 0.5 0.5 +( 88 -16 56 ) ( 88 -16 57 ) ( 88 -15 56 ) surface_green [ 0 1 0 -32 ] [ 0 0 -1 -56 ] 0 0.5 0.5 +} +// brush 116 +{ +( 944 800 0 ) ( 944 801 0 ) ( 944 800 1 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 944 800 0 ) ( 944 800 1 ) ( 945 800 0 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 +( 944 800 0 ) ( 945 800 0 ) ( 944 801 0 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 +( 992 848 16 ) ( 992 849 16 ) ( 993 848 16 ) floor_checkertiles [ 1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.25 0.25 +( 992 1024 16 ) ( 993 1024 16 ) ( 992 1024 17 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 +( 1264 848 16 ) ( 1264 848 17 ) ( 1264 849 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 117 +{ +( 944 800 16 ) ( 944 801 16 ) ( 944 800 17 ) redplaid [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 944 800 16 ) ( 944 800 17 ) ( 945 800 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 944 800 16 ) ( 945 800 16 ) ( 944 801 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 952 840 96 ) ( 952 841 96 ) ( 953 840 96 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 952 824 24 ) ( 953 824 24 ) ( 952 824 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 952 840 24 ) ( 952 840 25 ) ( 952 841 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 118 +{ +( 944 872 16 ) ( 944 873 16 ) ( 944 872 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 +( 944 872 16 ) ( 944 872 17 ) ( 945 872 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 944 872 16 ) ( 945 872 16 ) ( 944 873 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 952 912 112 ) ( 952 913 112 ) ( 953 912 112 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 952 888 24 ) ( 953 888 24 ) ( 952 888 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 952 912 24 ) ( 952 912 25 ) ( 952 913 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 119 +{ +( 944 848 32 ) ( 944 849 32 ) ( 944 848 33 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 +( 944 800 32 ) ( 944 800 33 ) ( 945 800 32 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 944 848 96 ) ( 945 848 96 ) ( 944 849 96 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 952 888 112 ) ( 952 889 112 ) ( 953 888 112 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 952 872 40 ) ( 953 872 40 ) ( 952 872 41 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 952 888 40 ) ( 952 888 41 ) ( 952 889 40 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 120 +{ +( 944 888 16 ) ( 944 889 16 ) ( 944 888 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 +( 944 888 16 ) ( 944 888 17 ) ( 945 888 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 944 888 16 ) ( 945 888 16 ) ( 944 889 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 952 928 48 ) ( 952 929 48 ) ( 953 928 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 952 992 24 ) ( 953 992 24 ) ( 952 992 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 952 928 24 ) ( 952 928 25 ) ( 952 929 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 121 +{ +( 944 888 16 ) ( 944 889 16 ) ( 944 888 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 +( 944 888 16 ) ( 944 888 17 ) ( 945 888 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 944 888 96 ) ( 945 888 96 ) ( 944 889 96 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 952 928 112 ) ( 952 929 112 ) ( 953 928 112 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 952 992 24 ) ( 953 992 24 ) ( 952 992 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 952 928 24 ) ( 952 928 25 ) ( 952 929 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 122 +{ +( 944 992 16 ) ( 944 993 16 ) ( 944 992 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 +( 944 992 16 ) ( 944 992 17 ) ( 945 992 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 944 992 16 ) ( 945 992 16 ) ( 944 993 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 952 1032 112 ) ( 952 1033 112 ) ( 953 1032 112 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 952 1024 24 ) ( 953 1024 24 ) ( 952 1024 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 952 1032 24 ) ( 952 1032 25 ) ( 952 1033 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 123 +{ +( 328 24 48 ) ( 328 58 46 ) ( 328 58 48 ) skip [ 0 -1 0 -12 ] [ 0 0 -1 0 ] 0 1 1 +( 340 24 48 ) ( 328 24 46 ) ( 328 24 48 ) marblewhite [ 1 -0 0 0 ] [ 0 -0 -1 0 ] 0 0.25 0.25 +( 340 58 46 ) ( 328 24 46 ) ( 340 24 46 ) marblewhite [ -1 0 -0 0 ] [ -0 -1 0 0 ] 0 0.25 0.25 +( 340 58 48 ) ( 328 24 48 ) ( 328 58 48 ) marblewhite [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 340 136 48 ) ( 328 136 46 ) ( 340 136 46 ) skip [ -1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 +( 361 58 48 ) ( 361 24 46 ) ( 361 24 48 ) marblewhite [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 124 +{ +( 361 24 48 ) ( 361 58 46 ) ( 361 58 48 ) skip [ 0 -1 0 -12 ] [ 0 0 -1 0 ] 0 1 1 +( 379 103 48 ) ( 367 103 46 ) ( 367 103 48 ) marblewhite [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 379 58 46 ) ( 367 24 46 ) ( 379 24 46 ) marblewhite [ -1 0 0 28 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 379 58 48 ) ( 367 24 48 ) ( 367 58 48 ) marblewhite [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 379 136 48 ) ( 367 136 46 ) ( 379 136 46 ) skip [ -1 0 0 23 ] [ 0 0 -1 0 ] 0 1 1 +( 400 58 48 ) ( 400 24 46 ) ( 400 24 48 ) marblewhite [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 125 +{ +( 448 24 48 ) ( 448 58 46 ) ( 448 58 48 ) marblewhite [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 0.25 0.25 +( 460 -40 48 ) ( 448 -40 46 ) ( 448 -40 48 ) skip [ 1 -0 0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 460 58 46 ) ( 448 24 46 ) ( 460 24 46 ) skip [ -1 0 -0 0 ] [ -0 -1 0 0 ] 0 1 1 +( 460 58 48 ) ( 448 24 48 ) ( 448 58 48 ) marblewhite [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 460 136 48 ) ( 448 136 46 ) ( 460 136 46 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 481 58 48 ) ( 481 24 46 ) ( 481 24 48 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 126 +{ +( 448 24 16 ) ( 448 25 16 ) ( 448 24 17 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 448 104 16 ) ( 448 104 17 ) ( 449 104 16 ) woodpale [ -4.371139006309477e-08 0 -0.999999999999999 0 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.25 0.25 +( 448 24 16 ) ( 449 24 16 ) ( 448 25 16 ) skip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 480 72 46 ) ( 480 73 46 ) ( 481 72 46 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 480 136 24 ) ( 481 136 24 ) ( 480 136 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 480 72 24 ) ( 480 72 25 ) ( 480 73 24 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +} +// entity 1 +{ +"classname" "func_group" +"_tb_type" "_tb_group" +"_tb_name" "motelroomlayout" +"_tb_id" "4" +"_tb_linked_group_id" "{64d2ce3b-d5a0-495e-b5f7-459c62d5e742}" +"_tb_transformation" "1 0 0 0 0 1 0 -72 0 0 1 0 0 0 0 1" +// brush 0 +{ +( 1186 1124 16 ) ( 1186 1125 16 ) ( 1186 1124 17 ) clip [ 0 -1 0 -28 ] [ 0 0 -1 0 ] 0 1 1 +( 1180 1126 16 ) ( 1180 1126 17 ) ( 1181 1126 16 ) clip [ 1 0 0 20 ] [ 0 0 -1 0 ] 0 1 1 +( 1180 1124 16 ) ( 1181 1124 16 ) ( 1180 1125 16 ) clip [ -1 0 0 -20 ] [ 0 -1 0 -28 ] 0 1 1 +( 1276 1220 44 ) ( 1276 1221 44 ) ( 1277 1220 44 ) clip [ 1 0 0 20 ] [ 0 -1 0 -28 ] 0 1 1 +( 1276 1208 32 ) ( 1277 1208 32 ) ( 1276 1208 33 ) clip [ -1 0 0 -20 ] [ 0 0 -1 0 ] 0 1 1 +( 1256 1220 32 ) ( 1256 1220 33 ) ( 1256 1221 32 ) clip [ 0 1 0 28 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 1 +{ +( 944 1112 16 ) ( 944 1113 16 ) ( 944 1112 17 ) skip [ 0 -1 0 -48 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 952 1112 16 ) ( 952 1112 17 ) ( 953 1112 16 ) surface_beige [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 952 1112 16 ) ( 953 1112 16 ) ( 952 1113 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 1000 1120 80 ) ( 1000 1121 80 ) ( 1001 1120 80 ) skip [ 1 0 0 0 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 1000 1120 24 ) ( 1001 1120 24 ) ( 1000 1120 25 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 992 1120 24 ) ( 992 1120 25 ) ( 992 1121 24 ) surface_beige_edge [ 0 1 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 2 +{ +( 1074 1124 16 ) ( 1074 1125 16 ) ( 1074 1124 17 ) clip [ 0 -1 0 -28 ] [ 0 0 -1 0 ] 0 1 1 +( 1068 1126 16 ) ( 1068 1126 17 ) ( 1069 1126 16 ) clip [ 1 0 0 4 ] [ 0 0 -1 0 ] 0 1 1 +( 1068 1124 16 ) ( 1069 1124 16 ) ( 1068 1125 16 ) clip [ -1 0 0 -4 ] [ 0 -1 0 -28 ] 0 1 1 +( 1164 1220 44 ) ( 1164 1221 44 ) ( 1165 1220 44 ) clip [ 1 0 0 4 ] [ 0 -1 0 -28 ] 0 1 1 +( 1164 1208 32 ) ( 1165 1208 32 ) ( 1164 1208 33 ) clip [ -1 0 0 -4 ] [ 0 0 -1 0 ] 0 1 1 +( 1144 1220 32 ) ( 1144 1220 33 ) ( 1144 1221 32 ) clip [ 0 1 0 28 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 3 +{ +( 992 1112 16 ) ( 992 1113 16 ) ( 992 1112 17 ) skip [ 0 -1 0 -48 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 1000 1112 16 ) ( 1000 1112 17 ) ( 1001 1112 16 ) surface_beige [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 1000 1112 80 ) ( 1001 1112 80 ) ( 1000 1113 80 ) surface_beige_edge [ 4.371138994063005e-08 0.9999999999999989 0 16 ] [ -0.9999999999999989 4.371138994063005e-08 0 0 ] 270 0.5 0.5 +( 1048 1120 96 ) ( 1048 1121 96 ) ( 1049 1120 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 1048 1120 24 ) ( 1049 1120 24 ) ( 1048 1120 25 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 1040 1120 24 ) ( 1040 1120 25 ) ( 1040 1121 24 ) skip [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 4 +{ +( 1148 1188 16 ) ( 1148 1189 16 ) ( 1148 1188 17 ) clip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1148 1188 16 ) ( 1148 1188 17 ) ( 1149 1188 16 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1148 1188 16 ) ( 1149 1188 16 ) ( 1148 1189 16 ) clip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.25 0.25 +( 1180 1208 34 ) ( 1180 1209 34 ) ( 1181 1208 34 ) clip [ 1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.25 0.25 +( 1180 1208 20 ) ( 1181 1208 20 ) ( 1180 1208 21 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1182 1208 20 ) ( 1182 1208 21 ) ( 1182 1209 20 ) clip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 5 +{ +( 944 1016 0 ) ( 944 1017 0 ) ( 944 1016 1 ) skip [ 0 -1 0 -48 ] [ 0 0 -1 -32 ] 0 0.5 0.5 +( 1024 1024 0 ) ( 1024 1024 1 ) ( 1025 1024 0 ) skip [ 1 0 0 32 ] [ 0 0 -1 -32 ] 0 0.5 0.5 +( 1024 1016 0 ) ( 1025 1016 0 ) ( 1024 1017 0 ) skip [ -1 0 0 -32 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 1056 1064 16 ) ( 1056 1065 16 ) ( 1057 1064 16 ) carpet_dullgreen [ 1 0 0 96 ] [ 0 -1 0 -112 ] 0 0.5 0.5 +( 1056 1208 16 ) ( 1057 1208 16 ) ( 1056 1208 17 ) skip [ -1 0 0 -32 ] [ 0 0 -1 -32 ] 0 0.5 0.5 +( 1296 1064 16 ) ( 1296 1064 17 ) ( 1296 1065 16 ) skip [ 0 1 0 48 ] [ 0 0 -1 -32 ] 0 0.5 0.5 +} +// brush 6 +{ +( 1128 1024 16 ) ( 1128 1025 16 ) ( 1128 1024 17 ) clip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1104 1024 16 ) ( 1104 1024 17 ) ( 1105 1024 16 ) clip [ 1 0 0 32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1104 1024 16 ) ( 1105 1024 16 ) ( 1104 1025 16 ) clip [ -1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.25 0.25 +( 1176 1056 48 ) ( 1176 1057 48 ) ( 1177 1056 48 ) clip [ 1 0 0 32 ] [ 0 -1 0 -32 ] 0 0.25 0.25 +( 1176 1048 24 ) ( 1177 1048 24 ) ( 1176 1048 25 ) clip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1192 1056 24 ) ( 1192 1056 25 ) ( 1192 1057 24 ) clip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 7 +{ +( 1040 1160 32 ) ( 1040 1161 32 ) ( 1040 1160 33 ) skip [ 0 -1 0 -48 ] [ 0 0 -1 -32 ] 0 0.5 0.5 +( 1040 1112 32 ) ( 1040 1112 33 ) ( 1041 1112 32 ) surface_beige_edge [ -0.9999999999999961 0 8.742278000372473e-08 -16 ] [ 8.742278000372473e-08 0 0.9999999999999961 32 ] 180 0.5 0.5 +( 1040 1160 80 ) ( 1041 1160 80 ) ( 1040 1161 80 ) skip [ -1 0 0 0 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 1048 1200 96 ) ( 1048 1201 96 ) ( 1049 1200 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 1048 1120 40 ) ( 1049 1120 40 ) ( 1048 1120 41 ) skip [ -1 0 0 0 ] [ 0 0 -1 -32 ] 0 0.5 0.5 +( 1048 1200 40 ) ( 1048 1200 41 ) ( 1048 1201 40 ) surface_beige_edge [ 0 1 0 16 ] [ 0 0 -1 -32 ] 0 0.5 0.5 +} +// brush 8 +{ +( 1040 1168 16 ) ( 1040 1169 16 ) ( 1040 1168 17 ) surface_beige [ 0 -1 0 -48 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 1040 1120 16 ) ( 1040 1120 17 ) ( 1041 1120 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 1040 1168 16 ) ( 1041 1168 16 ) ( 1040 1169 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 1048 1208 96 ) ( 1048 1209 96 ) ( 1049 1208 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 1048 1208 24 ) ( 1049 1208 24 ) ( 1048 1208 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 1048 1208 24 ) ( 1048 1208 25 ) ( 1048 1209 24 ) surface_beige [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 9 +{ +( 944 1112 16 ) ( 944 1113 16 ) ( 944 1112 17 ) skip [ 0 -1 0 -48 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 944 1112 16 ) ( 944 1112 17 ) ( 945 1112 16 ) surface_beige [ 1 0 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 944 1112 80 ) ( 945 1112 80 ) ( 944 1113 80 ) skip [ -1 0 0 -48 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 992 1120 96 ) ( 992 1121 96 ) ( 993 1120 96 ) skip [ 1 0 0 48 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 992 1120 24 ) ( 993 1120 24 ) ( 992 1120 25 ) surface_beige [ -1 0 0 -48 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 992 1120 24 ) ( 992 1120 25 ) ( 992 1121 24 ) skip [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 10 +{ +( 1040 1160 16 ) ( 1040 1161 16 ) ( 1040 1160 17 ) surface_beige_edge [ 0 0.9999999999999961 8.742278000372473e-08 16 ] [ 0 -8.742278000372473e-08 0.9999999999999961 0 ] 180 0.5 0.5 +( 1040 1112 16 ) ( 1040 1112 17 ) ( 1041 1112 16 ) surface_beige_edge [ -0.9999999999999961 0 8.742278000372473e-08 -16 ] [ 8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 +( 1040 1160 16 ) ( 1041 1160 16 ) ( 1040 1161 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 1048 1200 80 ) ( 1048 1201 80 ) ( 1049 1200 80 ) skip [ 1 0 0 0 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 1048 1120 24 ) ( 1049 1120 24 ) ( 1048 1120 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 1048 1200 24 ) ( 1048 1200 25 ) ( 1048 1201 24 ) surface_beige_edge [ 0 1 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +} +// entity 2 +{ +"classname" "func_transparent" +// brush 0 +{ +( 82 246 52 ) ( 82 247 52 ) ( 82 246 53 ) glass [ 0 -1 0 0 ] [ -0 -0 -1 -24 ] 0 0.5 0.5 +( 82 168 52 ) ( 82 168 53 ) ( 83 168 52 ) glass [ 1 0 -0 0 ] [ 0 -0 -1 -24 ] 0 0.5 0.5 +( 82 246 52 ) ( 83 246 52 ) ( 82 247 52 ) glass [ -1 0 0 0 ] [ -0 -1 -0 -24 ] 0 0.5 0.5 +( 84 256 96 ) ( 84 257 96 ) ( 85 256 96 ) glass [ 1 0 0 0 ] [ 0 -1 0 -24 ] 0 0.5 0.5 +( 84 256 54 ) ( 85 256 54 ) ( 84 256 55 ) glass [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 84 256 54 ) ( 84 256 55 ) ( 84 257 54 ) glass [ 0 1 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +} +// brush 1 +{ +( 88 260 52 ) ( 88 261 52 ) ( 88 260 53 ) glass [ 0 -1 0 0 ] [ -0 -0 -1 -24 ] 0 0.5 0.5 +( 148 260 52 ) ( 148 260 53 ) ( 149 260 52 ) glass [ 1 0 -0 0 ] [ 0 -0 -1 -24 ] 0 0.5 0.5 +( 148 260 52 ) ( 149 260 52 ) ( 148 261 52 ) glass [ -1 0 0 0 ] [ -0 -1 -0 -24 ] 0 0.5 0.5 +( 160 262 96 ) ( 160 263 96 ) ( 161 262 96 ) glass [ 1 0 0 0 ] [ 0 -1 0 -24 ] 0 0.5 0.5 +( 160 262 54 ) ( 161 262 54 ) ( 160 262 55 ) glass [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 144 262 54 ) ( 144 262 55 ) ( 144 263 54 ) glass [ 0 1 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +} +// brush 2 +{ +( 224 260 52 ) ( 224 261 52 ) ( 224 260 53 ) glass [ 0 -1 0 0 ] [ -0 -0 -1 -24 ] 0 0.5 0.5 +( 284 260 52 ) ( 284 260 53 ) ( 285 260 52 ) glass [ 1 0 -0 0 ] [ 0 -0 -1 -24 ] 0 0.5 0.5 +( 284 260 52 ) ( 285 260 52 ) ( 284 261 52 ) glass [ -1 0 0 0 ] [ -0 -1 -0 -24 ] 0 0.5 0.5 +( 296 262 96 ) ( 296 263 96 ) ( 297 262 96 ) glass [ 1 0 0 0 ] [ 0 -1 0 -24 ] 0 0.5 0.5 +( 296 262 54 ) ( 297 262 54 ) ( 296 262 55 ) glass [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 296 262 54 ) ( 296 262 55 ) ( 296 263 54 ) glass [ 0 1 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +} +// brush 3 +{ +( 82 136 52 ) ( 82 137 52 ) ( 82 136 53 ) glass [ 0 -1 0 0 ] [ -0 -0 -1 -24 ] 0 0.5 0.5 +( 82 56 52 ) ( 82 56 53 ) ( 83 56 52 ) glass [ 1 0 -0 0 ] [ 0 -0 -1 -24 ] 0 0.5 0.5 +( 82 136 52 ) ( 83 136 52 ) ( 82 137 52 ) glass [ -1 0 0 0 ] [ -0 -1 -0 -24 ] 0 0.5 0.5 +( 84 146 96 ) ( 84 147 96 ) ( 85 146 96 ) glass [ 1 0 0 0 ] [ 0 -1 0 -24 ] 0 0.5 0.5 +( 84 160 54 ) ( 85 160 54 ) ( 84 160 55 ) glass [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 84 146 54 ) ( 84 146 55 ) ( 84 147 54 ) glass [ 0 1 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +} +// brush 4 +{ +( 82 24 52 ) ( 82 25 52 ) ( 82 24 53 ) glass [ 0 -1 0 0 ] [ -0 -0 -1 -24 ] 0 0.5 0.5 +( 82 -48 52 ) ( 82 -48 53 ) ( 83 -48 52 ) glass [ 1 0 -0 0 ] [ 0 -0 -1 -24 ] 0 0.5 0.5 +( 82 24 52 ) ( 83 24 52 ) ( 82 25 52 ) glass [ -1 0 0 0 ] [ -0 -1 -0 -24 ] 0 0.5 0.5 +( 84 34 96 ) ( 84 35 96 ) ( 85 34 96 ) glass [ 1 0 0 0 ] [ 0 -1 0 -24 ] 0 0.5 0.5 +( 84 48 54 ) ( 85 48 54 ) ( 84 48 55 ) glass [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 84 34 54 ) ( 84 34 55 ) ( 84 35 54 ) glass [ 0 1 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +} +// brush 5 +{ +( 88 -54 52 ) ( 88 -53 52 ) ( 88 -54 53 ) glass [ 0 -1 0 0 ] [ -0 -0 -1 -24 ] 0 0.5 0.5 +( 88 -54 52 ) ( 88 -54 53 ) ( 89 -54 52 ) glass [ 1 0 -0 0 ] [ 0 -0 -1 -24 ] 0 0.5 0.5 +( 88 -54 52 ) ( 89 -54 52 ) ( 88 -53 52 ) glass [ -1 0 0 0 ] [ -0 -1 -0 -24 ] 0 0.5 0.5 +( 96 -52 96 ) ( 96 -51 96 ) ( 97 -52 96 ) glass [ 1 0 0 0 ] [ 0 -1 0 -24 ] 0 0.5 0.5 +( 96 -52 54 ) ( 97 -52 54 ) ( 96 -52 55 ) glass [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 224 -52 54 ) ( 224 -52 55 ) ( 224 -51 54 ) glass [ 0 1 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 } } diff --git a/maps/autosave/cafemotel.2.map.import b/maps/autosave/cafemotel.2.map.import deleted file mode 100644 index 270e756..0000000 --- a/maps/autosave/cafemotel.2.map.import +++ /dev/null @@ -1,14 +0,0 @@ -[remap] - -importer="func_godot.map" -type="Resource" -uid="uid://bd2pf06n61b4u" -path="res://.godot/imported/cafemotel.2.map-329ea658bc94d88c0207ca27af156139.tres" - -[deps] - -source_file="res://maps/autosave/cafemotel.2.map" -dest_files=["res://.godot/imported/cafemotel.2.map-329ea658bc94d88c0207ca27af156139.tres"] - -[params] - diff --git a/maps/autosave/cafemotel.3.map b/maps/autosave/cafemotel.3.map index 252c818..4ff3114 100644 --- a/maps/autosave/cafemotel.3.map +++ b/maps/autosave/cafemotel.3.map @@ -1,4 +1,4 @@ -// Game: maskmaker +// Game: That Wretched Shadow // Format: Valve // entity 0 { @@ -6,59 +6,23 @@ "classname" "worldspawn" // brush 0 { -( -16 -64 -16 ) ( -16 -63 -16 ) ( -16 -64 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( -64 -64 -16 ) ( -64 -64 -15 ) ( -63 -64 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( -64 -64 -16 ) ( -63 -64 -16 ) ( -64 -63 -16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 64 64 16 ) ( 64 65 16 ) ( 65 64 16 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 64 64 16 ) ( 65 64 16 ) ( 64 64 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 784 64 16 ) ( 784 64 17 ) ( 784 65 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( -16 -184 -16 ) ( -16 -183 -16 ) ( -16 -184 -15 ) skip [ 0 -1 0 32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( -64 -184 -16 ) ( -64 -184 -15 ) ( -63 -184 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( -64 -184 -16 ) ( -63 -184 -16 ) ( -64 -183 -16 ) skip [ -1 0 0 0 ] [ 0 -1 0 32 ] 0 0.25 0.25 +( 64 -56 16 ) ( 64 -55 16 ) ( 65 -56 16 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 -1 0 120 ] 0 0.25 0.25 +( 64 -56 16 ) ( 65 -56 16 ) ( 64 -56 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 784 -56 16 ) ( 784 -56 17 ) ( 784 -55 16 ) skip [ 0 1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 } // brush 1 { -( 80 64 0 ) ( 80 65 0 ) ( 80 64 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 64 0 ) ( 80 64 1 ) ( 81 64 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 64 16 ) ( 81 64 16 ) ( 80 65 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 96 52 ) ( 112 97 52 ) ( 113 96 52 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 72 16 ) ( 113 72 16 ) ( 112 72 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 224 96 16 ) ( 224 96 17 ) ( 224 97 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 2 -{ -( 224 64 0 ) ( 224 65 0 ) ( 224 64 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 224 64 0 ) ( 224 64 1 ) ( 225 64 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 224 64 16 ) ( 225 64 16 ) ( 224 65 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 256 96 96 ) ( 256 97 96 ) ( 257 96 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 256 72 16 ) ( 257 72 16 ) ( 256 72 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 312 96 16 ) ( 312 96 17 ) ( 312 97 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 3 -{ -( 80 64 -8 ) ( 80 65 -8 ) ( 80 64 -7 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 16 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 176 64 -8 ) ( 176 64 -7 ) ( 177 64 -8 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 16 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 176 64 96 ) ( 177 64 96 ) ( 176 65 96 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 208 96 104 ) ( 208 97 104 ) ( 209 96 104 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 208 72 8 ) ( 209 72 8 ) ( 208 72 9 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 312 96 8 ) ( 312 96 9 ) ( 312 97 8 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 4 -{ -( 80 64 0 ) ( 80 65 0 ) ( 80 64 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 64 0 ) ( 80 64 1 ) ( 81 64 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 64 48 ) ( 81 64 48 ) ( 80 65 48 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 96 96 ) ( 112 97 96 ) ( 113 96 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 72 16 ) ( 113 72 16 ) ( 112 72 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 88 96 16 ) ( 88 96 17 ) ( 88 97 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 5 -{ ( 80 72 0 ) ( 80 73 0 ) ( 80 72 1 ) surface_green [ 0 4.371139006309477e-08 -0.999999999999999 32 ] [ 0 0.999999999999999 4.371139006309477e-08 24 ] 90 0.5 0.5 -( 80 72 0 ) ( 80 72 1 ) ( 81 72 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 -48 0 ) ( 80 -48 1 ) ( 81 -48 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 80 72 16 ) ( 81 72 16 ) ( 80 73 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 112 104 52 ) ( 112 105 52 ) ( 113 104 52 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 112 256 16 ) ( 113 256 16 ) ( 112 256 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 88 104 16 ) ( 88 104 17 ) ( 88 105 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 6 +// brush 2 { ( 80 256 0 ) ( 80 257 0 ) ( 80 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 80 256 0 ) ( 80 256 1 ) ( 81 256 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 @@ -67,7 +31,7 @@ ( 112 264 16 ) ( 113 264 16 ) ( 112 264 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 88 288 16 ) ( 88 288 17 ) ( 88 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 7 +// brush 3 { ( 80 256 -8 ) ( 80 257 -8 ) ( 80 256 -7 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 16 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 ( 176 256 -8 ) ( 176 256 -7 ) ( 177 256 -8 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 @@ -76,16 +40,16 @@ ( 208 264 8 ) ( 209 264 8 ) ( 208 264 9 ) surface_green_edge [ 4.371139006309477e-08 0 -0.999999999999999 16 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 ( 312 288 8 ) ( 312 288 9 ) ( 312 289 8 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 } -// brush 8 +// brush 4 { ( 80 72 72 ) ( 80 73 72 ) ( 80 72 73 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 16 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 72 72 ) ( 80 72 73 ) ( 81 72 72 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 +( 80 -48 72 ) ( 80 -48 73 ) ( 81 -48 72 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 ( 80 72 96 ) ( 81 72 96 ) ( 80 73 96 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 112 104 104 ) ( 112 105 104 ) ( 113 104 104 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 112 256 88 ) ( 113 256 88 ) ( 112 256 89 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 ( 88 104 88 ) ( 88 104 89 ) ( 88 105 88 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 } -// brush 9 +// brush 5 { ( 88 256 0 ) ( 88 257 0 ) ( 88 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 80 256 0 ) ( 80 256 1 ) ( 81 256 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 @@ -94,7 +58,7 @@ ( 112 264 16 ) ( 113 264 16 ) ( 112 264 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 144 288 16 ) ( 144 288 17 ) ( 144 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 10 +// brush 6 { ( 144 256 0 ) ( 144 257 0 ) ( 144 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 144 256 0 ) ( 144 256 1 ) ( 145 256 0 ) surface_green [ 1 0 0 32 ] [ 0 0 -1 -16 ] 0 0.5 0.5 @@ -103,7 +67,7 @@ ( 176 264 16 ) ( 177 264 16 ) ( 176 264 17 ) surface_green [ -1 0 0 -32 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 160 288 16 ) ( 160 288 17 ) ( 160 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 11 +// brush 7 { ( 208 256 0 ) ( 208 257 0 ) ( 208 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 208 256 0 ) ( 208 256 1 ) ( 209 256 0 ) surface_green [ 1 0 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 @@ -112,25 +76,25 @@ ( 240 264 16 ) ( 241 264 16 ) ( 240 264 17 ) surface_green [ -1 0 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 224 288 16 ) ( 224 288 17 ) ( 224 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 12 +// brush 8 { ( 88 128 8 ) ( 88 129 8 ) ( 88 128 9 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 88 72 8 ) ( 88 72 9 ) ( 89 72 8 ) skip [ 1 0 0 0 ] [ 0 0 -1 -8 ] 0 0.25 0.25 +( 88 -56 8 ) ( 88 -56 9 ) ( 89 -56 8 ) skip [ 1 0 0 0 ] [ 0 0 -1 -8 ] 0 0.25 0.25 ( 88 128 8 ) ( 89 128 8 ) ( 88 129 8 ) skip [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.25 0.25 ( 128 176 16 ) ( 128 177 16 ) ( 129 176 16 ) floor_wood [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.25 0.25 ( 128 264 16 ) ( 129 264 16 ) ( 128 264 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 -8 ] 0 0.25 0.25 ( 320 176 16 ) ( 320 176 17 ) ( 320 177 16 ) skip [ 0 1 0 56 ] [ 0 0 -1 -8 ] 0 0.25 0.25 } -// brush 13 +// brush 9 { ( -16 64 -16 ) ( -16 65 -16 ) ( -16 64 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( -64 64 -16 ) ( -64 64 -15 ) ( -63 64 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( -64 -56 -16 ) ( -64 -56 -15 ) ( -63 -56 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( -64 64 -16 ) ( -63 64 -16 ) ( -64 65 -16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 64 192 16 ) ( 64 193 16 ) ( 65 192 16 ) ground_cobblestone1 [ -4.371139006309477e-08 -0.999999999999999 0 0 ] [ -0.999999999999999 4.371139006309477e-08 0 106 ] 90 0.25 0.25 ( 64 264 16 ) ( 65 264 16 ) ( 64 264 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 80 192 16 ) ( 80 192 17 ) ( 80 193 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 14 +// brush 10 { ( 72 72 88 ) ( 72 73 88 ) ( 72 72 89 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 16 ] 90 0.5 0.5 ( 80 256 88 ) ( 80 256 89 ) ( 81 256 88 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 @@ -139,25 +103,16 @@ ( 112 272 104 ) ( 113 272 104 ) ( 112 272 105 ) surface_green_edge [ 4.371139006309477e-08 0 -0.999999999999999 -32 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 ( 312 104 104 ) ( 312 104 105 ) ( 312 105 104 ) surface_green_edge [ 0 -4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 -0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 } -// brush 15 -{ -( 72 -128 88 ) ( 72 -127 88 ) ( 72 -128 89 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 16 ] 90 0.5 0.5 -( 80 56 88 ) ( 80 56 89 ) ( 81 56 88 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 -32 ] [ -0.999999999999999 0 4.371139006309477e-08 16 ] 90 0.5 0.5 -( 80 -128 104 ) ( 81 -128 104 ) ( 80 -127 104 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 -( 112 -96 112 ) ( 112 -95 112 ) ( 113 -96 112 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 -( 112 72 104 ) ( 113 72 104 ) ( 112 72 105 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 -( 312 -96 104 ) ( 312 -96 105 ) ( 312 -95 104 ) surface_green_edge [ 0 -4.371139006309477e-08 -0.999999999999999 32 ] [ 0 -0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -} -// brush 16 +// brush 11 { ( 72 -112 88 ) ( 72 -111 88 ) ( 72 -112 89 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 16 ] 90 0.5 0.5 -( 80 72 88 ) ( 80 72 89 ) ( 81 72 88 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 80 -48 88 ) ( 80 -48 89 ) ( 81 -48 88 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 ( 80 -112 104 ) ( 81 -112 104 ) ( 80 -111 104 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 ( 112 -80 112 ) ( 112 -79 112 ) ( 113 -80 112 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 ( 112 256 104 ) ( 113 256 104 ) ( 112 256 105 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 ( 88 -80 104 ) ( 88 -80 105 ) ( 88 -79 104 ) surface_green [ 0 1 0 -8 ] [ 0 0 -1 -24 ] 0 0.5 0.5 } -// brush 17 +// brush 12 { ( 72 72 128 ) ( 72 73 128 ) ( 72 72 129 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 ( 80 256 128 ) ( 80 256 129 ) ( 81 256 128 ) skip [ 1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 @@ -166,70 +121,43 @@ ( 112 272 144 ) ( 113 272 144 ) ( 112 272 145 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 ( 312 104 144 ) ( 312 104 145 ) ( 312 105 144 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 } -// brush 18 +// brush 13 { ( 72 -112 128 ) ( 72 -111 128 ) ( 72 -112 129 ) surface_green [ 0 -1 0 8 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 80 72 128 ) ( 80 72 129 ) ( 81 72 128 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 80 -48 128 ) ( 80 -48 129 ) ( 81 -48 128 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 80 -112 144 ) ( 81 -112 144 ) ( 80 -111 144 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 ( 112 -80 152 ) ( 112 -79 152 ) ( 113 -80 152 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 112 256 144 ) ( 113 256 144 ) ( 112 256 145 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 88 -80 144 ) ( 88 -80 145 ) ( 88 -79 144 ) skip [ 0 1 0 -8 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 19 +// brush 14 { -( 72 -128 128 ) ( 72 -127 128 ) ( 72 -128 129 ) surface_green [ 0 -1 0 -8 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 80 56 128 ) ( 80 56 129 ) ( 81 56 128 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 80 -128 144 ) ( 81 -128 144 ) ( 80 -127 144 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 -( 112 -96 152 ) ( 112 -95 152 ) ( 113 -96 152 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 72 144 ) ( 113 72 144 ) ( 112 72 145 ) skip [ -1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 312 -96 144 ) ( 312 -96 145 ) ( 312 -95 144 ) surface_green [ 0 1 0 8 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -} -// brush 20 -{ -( 80 64 48 ) ( 80 65 48 ) ( 80 64 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 64 48 ) ( 80 64 49 ) ( 81 64 48 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 -32 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 64 112 ) ( 81 64 112 ) ( 80 65 112 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 96 144 ) ( 112 97 144 ) ( 113 96 144 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 72 64 ) ( 113 72 64 ) ( 112 72 65 ) skip [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 312 96 64 ) ( 312 96 65 ) ( 312 97 64 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 21 -{ -( 80 256 48 ) ( 80 257 48 ) ( 80 256 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -31.999985 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 80 256 48 ) ( 80 257 48 ) ( 80 256 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -31.99997 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 ( 80 256 48 ) ( 80 256 49 ) ( 81 256 48 ) skip [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 80 256 112 ) ( 81 256 112 ) ( 80 257 112 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 80 256 120 ) ( 81 256 120 ) ( 80 257 120 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 112 288 144 ) ( 112 289 144 ) ( 113 288 144 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 264 64 ) ( 113 264 64 ) ( 112 264 65 ) surface_green_edge [ 4.371139006309477e-08 0 -0.999999999999999 -31.999985 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 112 264 64 ) ( 113 264 64 ) ( 112 264 65 ) surface_green_edge [ 4.371139006309477e-08 0 -0.999999999999999 -31.99997 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 ( 312 288 64 ) ( 312 288 65 ) ( 312 289 64 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 } -// brush 22 +// brush 15 { ( 80 248 48 ) ( 80 249 48 ) ( 80 248 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32.000015 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 72 48 ) ( 80 72 49 ) ( 81 72 48 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 80 248 112 ) ( 81 248 112 ) ( 80 249 112 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 +( 80 -48 48 ) ( 80 -48 49 ) ( 81 -48 48 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 +( 80 248 120 ) ( 81 248 120 ) ( 80 249 120 ) skip [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 ( 112 280 144 ) ( 112 281 144 ) ( 113 280 144 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 ( 112 256 64 ) ( 113 256 64 ) ( 112 256 65 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 ( 88 280 64 ) ( 88 280 65 ) ( 88 281 64 ) skip [ 0 1 0 8 ] [ 0 0 -1 -40 ] 0 0.5 0.5 } -// brush 23 +// brush 16 { -( 88 128 104 ) ( 88 129 104 ) ( 88 128 105 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 56 ] 0 0.25 0.25 -( 88 72 104 ) ( 88 72 105 ) ( 89 72 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 56 ] 0 0.25 0.25 -( 88 128 104 ) ( 89 128 104 ) ( 88 129 104 ) ground_wood [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.5 0.5 -( 128 176 112 ) ( 128 177 112 ) ( 129 176 112 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.25 0.25 -( 128 256 112 ) ( 129 256 112 ) ( 128 256 113 ) skip [ -1 0 0 0 ] [ 0 0 -1 56 ] 0 0.25 0.25 -( 312 176 112 ) ( 312 176 113 ) ( 312 177 112 ) skip [ 0 1 0 56 ] [ 0 0 -1 56 ] 0 0.25 0.25 +( 88 128 120 ) ( 88 129 120 ) ( 88 128 121 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 56 ] 0 0.25 0.25 +( 88 -48 120 ) ( 88 -48 121 ) ( 89 -48 120 ) skip [ 1 0 0 0 ] [ 0 0 -1 56 ] 0 0.25 0.25 +( 88 128 120 ) ( 89 128 120 ) ( 88 129 120 ) ground_wood [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.5 0.5 +( 128 176 128 ) ( 128 177 128 ) ( 129 176 128 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.25 0.25 +( 128 256 128 ) ( 129 256 128 ) ( 128 256 129 ) skip [ -1 0 0 0 ] [ 0 0 -1 56 ] 0 0.25 0.25 +( 312 176 128 ) ( 312 176 129 ) ( 312 177 128 ) skip [ 0 1 0 56 ] [ 0 0 -1 56 ] 0 0.25 0.25 } -// brush 24 -{ -( 224 72 16 ) ( 224 73 16 ) ( 224 72 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 224 72 16 ) ( 224 72 17 ) ( 225 72 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 224 72 16 ) ( 225 72 16 ) ( 224 73 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 248 160 48 ) ( 248 161 48 ) ( 249 160 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 248 184 24 ) ( 249 184 24 ) ( 248 184 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 248 160 24 ) ( 248 160 25 ) ( 248 161 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 25 +// brush 17 { ( 224 256 0 ) ( 224 257 0 ) ( 224 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 216 256 0 ) ( 216 256 1 ) ( 217 256 0 ) surface_green [ 1 0 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 @@ -238,7 +166,7 @@ ( 248 264 16 ) ( 249 264 16 ) ( 248 264 17 ) surface_green [ -1 0 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 296 288 16 ) ( 296 288 17 ) ( 296 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 26 +// brush 18 { ( 296 256 0 ) ( 296 257 0 ) ( 296 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 296 256 0 ) ( 296 256 1 ) ( 297 256 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 @@ -247,61 +175,52 @@ ( 328 264 16 ) ( 329 264 16 ) ( 328 264 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 312 288 16 ) ( 312 288 17 ) ( 312 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 27 -{ -( 224 128 16 ) ( 224 129 16 ) ( 224 128 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 224 224 16 ) ( 224 224 17 ) ( 225 224 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 224 128 16 ) ( 225 128 16 ) ( 224 129 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 248 216 48 ) ( 248 217 48 ) ( 249 216 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 248 256 24 ) ( 249 256 24 ) ( 248 256 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 312 216 24 ) ( 312 216 25 ) ( 312 217 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 28 +// brush 19 { ( 640 64 0 ) ( 640 65 0 ) ( 640 64 1 ) skip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 0.5 0.5 -( 640 64 0 ) ( 640 64 1 ) ( 641 64 0 ) skip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 0.5 0.5 +( 640 -56 0 ) ( 640 -56 1 ) ( 641 -56 0 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 640 64 0 ) ( 641 64 0 ) ( 640 65 0 ) skip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 0.5 0.5 ( 656 112 16 ) ( 656 113 16 ) ( 657 112 16 ) ground_cobblestone1 [ -4.371139006309477e-08 -0.999999999999999 0 0 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.25 0.25 ( 656 264 16 ) ( 657 264 16 ) ( 656 264 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 736 112 16 ) ( 736 112 17 ) ( 736 113 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 29 +// brush 20 { ( 736 72 16 ) ( 736 73 16 ) ( 736 72 17 ) wall_brick_scrungly [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 472 64 16 ) ( 472 64 17 ) ( 473 64 16 ) wall_brick_scrungly [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 472 -56 16 ) ( 472 -56 17 ) ( 473 -56 16 ) wall_brick_scrungly [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 472 72 16 ) ( 473 72 16 ) ( 472 73 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 504 104 96 ) ( 504 105 96 ) ( 505 104 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 504 264 32 ) ( 505 264 32 ) ( 504 264 33 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 784 104 32 ) ( 784 104 33 ) ( 784 105 32 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 30 +// brush 21 { ( 640 64 96 ) ( 640 65 96 ) ( 640 64 97 ) skip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 0.25 0.25 -( 640 64 96 ) ( 640 64 97 ) ( 641 64 96 ) wall_brick [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 0.25 0.25 +( 640 -56 96 ) ( 640 -56 97 ) ( 641 -56 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 640 64 96 ) ( 641 64 96 ) ( 640 65 96 ) wall_brick_scrungly [ 4.371139006309477e-08 -0.999999999999999 0 0 ] [ 0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.25 0.25 ( 656 112 256 ) ( 656 113 256 ) ( 657 112 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 656 264 112 ) ( 657 264 112 ) ( 656 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 736 112 112 ) ( 736 112 113 ) ( 736 113 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 31 +// brush 22 { ( 736 72 96 ) ( 736 73 96 ) ( 736 72 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 472 64 96 ) ( 472 64 97 ) ( 473 64 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 472 -56 96 ) ( 472 -56 97 ) ( 473 -56 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 472 72 96 ) ( 473 72 96 ) ( 472 73 96 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 504 104 256 ) ( 504 105 256 ) ( 505 104 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 504 264 112 ) ( 505 264 112 ) ( 504 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 784 104 112 ) ( 784 104 113 ) ( 784 105 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 32 +// brush 23 { -( 312 64 96 ) ( 312 65 96 ) ( 312 64 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 368 64 96 ) ( 368 64 97 ) ( 369 64 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 368 64 104 ) ( 369 64 104 ) ( 368 65 104 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 400 96 256 ) ( 400 97 256 ) ( 401 96 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 400 72 112 ) ( 401 72 112 ) ( 400 72 113 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 96 112 ) ( 640 96 113 ) ( 640 97 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 139 ] 0 0.25 0.25 +( 312 -56 96 ) ( 312 -55 96 ) ( 312 -56 97 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 368 -56 96 ) ( 368 -56 97 ) ( 369 -56 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 368 -56 104 ) ( 369 -56 104 ) ( 368 -55 104 ) skip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.25 0.25 +( 400 -24 256 ) ( 400 -23 256 ) ( 401 -24 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.25 0.25 +( 400 -48 112 ) ( 401 -48 112 ) ( 400 -48 113 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 640 -24 112 ) ( 640 -24 113 ) ( 640 -23 112 ) skip [ 0 1 0 32 ] [ 0 0 -1 11 ] 0 0.25 0.25 } -// brush 33 +// brush 24 { ( -16 264 -16 ) ( -16 265 -16 ) ( -16 264 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 ( -64 264 -16 ) ( -64 264 -15 ) ( -63 264 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 @@ -310,322 +229,322 @@ ( 64 360 16 ) ( 65 360 16 ) ( 64 360 17 ) wall_concrete1 [ -1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 ( 784 392 16 ) ( 784 392 17 ) ( 784 393 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 } -// brush 34 +// brush 25 { ( 632 72 96 ) ( 632 73 96 ) ( 632 72 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 368 72 96 ) ( 368 72 97 ) ( 369 72 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 368 -48 96 ) ( 368 -48 97 ) ( 369 -48 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 368 72 112 ) ( 369 72 112 ) ( 368 73 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 400 104 256 ) ( 400 105 256 ) ( 401 104 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 400 264 112 ) ( 401 264 112 ) ( 400 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 640 104 112 ) ( 640 104 113 ) ( 640 105 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 35 +// brush 26 { ( 320 72 96 ) ( 320 73 96 ) ( 320 72 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 360 72 96 ) ( 360 72 97 ) ( 361 72 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 360 72 112 ) ( 361 72 112 ) ( 360 73 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 360 -48 96 ) ( 360 -48 97 ) ( 361 -48 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 360 72 120 ) ( 361 72 120 ) ( 360 73 120 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 392 104 256 ) ( 392 105 256 ) ( 393 104 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 392 264 112 ) ( 393 264 112 ) ( 392 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 632 104 112 ) ( 632 104 113 ) ( 632 105 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 36 +// brush 27 { ( 312 256 104 ) ( 312 257 104 ) ( 312 256 105 ) skip [ 0 1.6292067950285372e-07 -0.9999999999999866 -16 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 ( 312 72 104 ) ( 312 72 105 ) ( 313 72 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 312 256 104 ) ( 313 256 104 ) ( 312 257 104 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 312 256 120 ) ( 313 256 120 ) ( 312 257 120 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 344 288 256 ) ( 344 289 256 ) ( 345 288 256 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 344 264 120 ) ( 345 264 120 ) ( 344 264 121 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 320 288 120 ) ( 320 288 121 ) ( 320 289 120 ) skip [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 37 +// brush 28 { -( 312 264 32 ) ( 312 136 32 ) ( 312 264 16 ) surface_beige_edge [ 0 -1.3113417006681922e-07 0.9999999999999913 32 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 0 ] 270 0.5 0.5 -( 320 136 16 ) ( 312 136 16 ) ( 320 136 32 ) surface_beige_edge [ 0.9999999999999957 0 8.742277997596912e-08 16 ] [ -8.742277997596912e-08 0 0.9999999999999957 0 ] 180 0.5 0.5 -( 312 264 16 ) ( 312 136 16 ) ( 320 264 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 320 264 32 ) ( 320 136 32 ) ( 312 264 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 264 16 ) ( 320 264 16 ) ( 312 264 32 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 264 16 ) ( 320 136 16 ) ( 320 264 32 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 312 144 32 ) ( 312 16 32 ) ( 312 144 16 ) surface_beige_edge [ 0 -1.3113417006681922e-07 0.9999999999999913 31.99997 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 -48 ] 270 0.5 0.5 +( 320 16 16 ) ( 312 16 16 ) ( 320 16 32 ) surface_beige_edge [ 0.9999999999999957 0 8.742277997596912e-08 16 ] [ -8.742277997596912e-08 0 0.9999999999999957 0 ] 180 0.5 0.5 +( 312 144 16 ) ( 312 16 16 ) ( 320 144 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -56 ] 0 1 1 +( 320 144 32 ) ( 320 16 32 ) ( 312 144 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 248 16 ) ( 320 248 16 ) ( 312 248 32 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 320 144 16 ) ( 320 16 16 ) ( 320 144 32 ) skip [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 38 +// brush 29 { -( 312 72 16 ) ( 312 88 16 ) ( 312 72 32 ) surface_beige_edge [ 0 -1.3113417006681922e-07 0.9999999999999913 32 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 0 ] 270 0.5 0.5 -( 312 72 32 ) ( 320 72 32 ) ( 312 72 16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 72 16 ) ( 320 88 16 ) ( 312 72 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 312 72 32 ) ( 312 88 32 ) ( 320 72 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 88 32 ) ( 312 88 16 ) ( 320 88 32 ) surface_beige_edge [ 1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 72 32 ) ( 320 88 32 ) ( 320 72 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 312 -48 16 ) ( 312 -32 16 ) ( 312 -48 32 ) surface_beige_edge [ 0 -1.3113417006681922e-07 0.9999999999999913 31.999966 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 -47.999992 ] 270 0.5 0.5 +( 312 -40 32 ) ( 320 -40 32 ) ( 312 -40 16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 320 -48 16 ) ( 320 -32 16 ) ( 312 -48 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -56 ] 0 1 1 +( 312 -48 32 ) ( 312 -32 32 ) ( 320 -48 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 -32 32 ) ( 312 -32 16 ) ( 320 -32 32 ) surface_beige_edge [ 1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 320 -48 32 ) ( 320 -32 32 ) ( 320 -48 16 ) skip [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 39 +// brush 30 { -( 312 264 88 ) ( 312 136 88 ) ( 312 264 32 ) surface_beige [ 0 -1.3113417006681922e-07 0.9999999999999913 32 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 0 ] 270 0.5 0.5 -( 320 136 32 ) ( 312 136 32 ) ( 320 136 88 ) surface_beige_edge [ 0.9999999999999961 -0 8.742278000372473e-08 16 ] [ -8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 -( 312 264 32 ) ( 312 136 32 ) ( 320 264 32 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 320 264 88 ) ( 320 136 88 ) ( 312 264 88 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 264 32 ) ( 320 264 32 ) ( 312 264 88 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 264 32 ) ( 320 136 32 ) ( 320 264 88 ) skip [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 312 144 88 ) ( 312 16 88 ) ( 312 144 32 ) surface_beige [ 0 -1.3113417006681922e-07 0.9999999999999913 31.999962 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 -48 ] 270 0.5 0.5 +( 320 16 32 ) ( 312 16 32 ) ( 320 16 88 ) surface_beige_edge [ 0.9999999999999961 0 8.742278000372473e-08 16 ] [ -8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 +( 312 144 32 ) ( 312 16 32 ) ( 320 144 32 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 320 144 104 ) ( 320 16 104 ) ( 312 144 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 248 32 ) ( 320 248 32 ) ( 312 248 88 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 320 144 32 ) ( 320 16 32 ) ( 320 144 88 ) skip [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 } -// brush 40 +// brush 31 { -( 312 72 32 ) ( 312 88 32 ) ( 312 72 88 ) surface_beige [ 0 -1.3113417006681922e-07 0.9999999999999913 32 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 0 ] 270 0.5 0.5 -( 312 72 88 ) ( 320 72 88 ) ( 312 72 32 ) skip [ 1 0 0 -16 ] [ 0 0 -1 16 ] 0 0.5 0.5 -( 320 72 32 ) ( 320 88 32 ) ( 312 72 32 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 72 88 ) ( 312 88 88 ) ( 320 72 88 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 88 88 ) ( 312 88 32 ) ( 320 88 88 ) surface_beige_edge [ 0.9999999999999998 -0 1.3234889800848443e-23 16 ] [ 1.3234889800848443e-23 0 -0.9999999999999998 0 ] 0 0.5 0.5 -( 320 72 88 ) ( 320 88 88 ) ( 320 72 32 ) skip [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 312 -48 32 ) ( 312 -32 32 ) ( 312 -48 88 ) surface_beige_edge [ 0 0.9999999999999785 2.0663206962145964e-07 31.999962 ] [ 0 -2.0663206962145964e-07 0.9999999999999785 -48 ] 180 0.5 0.5 +( 312 -48 88 ) ( 320 -48 88 ) ( 312 -48 32 ) skip [ 1 0 0 -16 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 320 -48 32 ) ( 320 -32 32 ) ( 312 -48 32 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 -48 96 ) ( 312 -32 96 ) ( 320 -48 96 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 -32 88 ) ( 312 -32 32 ) ( 320 -32 88 ) surface_beige_edge [ 0.9999999999999998 0 1.3234889800848443e-23 16 ] [ 1.3234889800848443e-23 0 -0.9999999999999998 0 ] 0 0.5 0.5 +( 320 -48 88 ) ( 320 -32 88 ) ( 320 -48 32 ) skip [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 } -// brush 41 +// brush 32 { -( 312 264 104 ) ( 312 136 104 ) ( 312 264 88 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 320 136 88 ) ( 312 136 88 ) ( 320 136 104 ) surface_beige_edge [ 0.9999999999999961 0 8.742277995965608e-08 16 ] [ -8.742277995965608e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 -( 312 264 88 ) ( 312 136 88 ) ( 320 264 88 ) surface_beige_edge [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 320 264 104 ) ( 320 136 104 ) ( 312 264 104 ) surface_beige_edge [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 264 88 ) ( 320 264 88 ) ( 312 264 104 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 264 88 ) ( 320 136 88 ) ( 320 264 104 ) surface_beige_edge [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 312 144 120 ) ( 312 16 120 ) ( 312 144 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -15.9999695 ] [ 0 0.9999999999999866 1.6292067950285372e-07 48 ] 90 0.5 0.5 +( 320 16 104 ) ( 312 16 104 ) ( 320 16 120 ) surface_beige_edge [ 0.9999999999999961 0 8.742277995965608e-08 16 ] [ -8.742277995965608e-08 0 0.9999999999999961 -32 ] 180 0.5 0.5 +( 312 144 104 ) ( 312 16 104 ) ( 320 144 104 ) surface_beige_edge [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 320 144 120 ) ( 320 16 120 ) ( 312 144 120 ) surface_beige_edge [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 248 104 ) ( 320 248 104 ) ( 312 248 120 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 320 144 104 ) ( 320 16 104 ) ( 320 144 120 ) skip [ 0 1 0 48 ] [ 0 0 -1 48 ] 0 0.5 0.5 } -// brush 42 +// brush 33 { -( 312 72 88 ) ( 312 88 88 ) ( 312 72 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 312 72 104 ) ( 320 72 104 ) ( 312 72 88 ) skip [ 1 0 0 -16 ] [ 0 0 -1 16 ] 0 0.5 0.5 -( 320 72 88 ) ( 320 88 88 ) ( 312 72 88 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 72 104 ) ( 312 88 104 ) ( 320 72 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 88 104 ) ( 312 88 88 ) ( 320 88 104 ) surface_beige_edge [ 1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 72 104 ) ( 320 88 104 ) ( 320 72 88 ) skip [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 312 -48 104 ) ( 312 -32 104 ) ( 312 -48 120 ) surface_beige_corner [ 0 0.9999999999999961 8.742278000372473e-08 -32 ] [ 0 -8.742278000372473e-08 0.9999999999999961 -48 ] 180 0.5 0.5 +( 312 -48 120 ) ( 320 -48 120 ) ( 312 -48 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 48 ] 0 0.5 0.5 +( 320 -48 96 ) ( 320 -32 96 ) ( 312 -48 96 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 -48 120 ) ( 312 -32 120 ) ( 320 -48 120 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 -32 120 ) ( 312 -32 104 ) ( 320 -32 120 ) skip [ 1 0 0 16 ] [ 0 0 -1 32 ] 0 0.5 0.5 +( 320 -48 120 ) ( 320 -32 120 ) ( 320 -48 104 ) skip [ 0 1 0 48 ] [ 0 0 -1 48 ] 0 0.5 0.5 } -// brush 43 +// brush 34 { -( 312 88 104 ) ( 312 88 96 ) ( 312 136 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 320 96 104 ) ( 320 96 96 ) ( 312 96 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 312 136 96 ) ( 312 88 96 ) ( 320 136 96 ) surface_beige_edge [ 1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 320 136 104 ) ( 320 88 104 ) ( 312 136 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 128 104 ) ( 312 128 96 ) ( 320 128 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 -( 320 136 104 ) ( 320 136 96 ) ( 320 88 104 ) skip [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 312 -32 104 ) ( 312 -32 96 ) ( 312 16 104 ) surface_beige [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.99997 ] [ 0 0.9999999999999866 1.6292067950285372e-07 48 ] 90 0.5 0.5 +( 320 -24 104 ) ( 320 -24 96 ) ( 312 -24 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 +( 312 16 96 ) ( 312 -32 96 ) ( 320 16 96 ) surface_beige_edge [ 1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 320 16 104 ) ( 320 -32 104 ) ( 312 16 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 8 104 ) ( 312 8 96 ) ( 320 8 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 +( 320 16 104 ) ( 320 16 96 ) ( 320 -32 104 ) skip [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 } -// brush 44 +// brush 35 { ( 488 264 96 ) ( 488 72 96 ) ( 488 264 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 640 72 16 ) ( 328 72 16 ) ( 640 72 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 640 -48 16 ) ( 328 -48 16 ) ( 640 -48 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 640 264 4 ) ( 328 264 4 ) ( 640 72 4 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 640 72 112 ) ( 328 72 112 ) ( 640 264 112 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 1 1 +( 640 72 120 ) ( 328 72 120 ) ( 640 264 120 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 1 1 ( 640 264 96 ) ( 328 264 96 ) ( 640 264 16 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 640 72 96 ) ( 640 264 96 ) ( 640 72 16 ) wall_brick_scrungly [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } +// brush 36 +{ +( 320 144 96 ) ( 320 16 96 ) ( 320 144 16 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 320 16 96 ) ( 328 16 96 ) ( 320 16 16 ) surface_beige_edge [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 320 144 16 ) ( 320 16 16 ) ( 328 144 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -56 ] 0 1 1 +( 328 144 112 ) ( 328 16 112 ) ( 320 144 112 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -56 ] 0 1 1 +( 320 136 16 ) ( 328 136 16 ) ( 320 136 96 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 328 144 16 ) ( 328 16 16 ) ( 328 144 96 ) surface_beige [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 37 +{ +( 320 -48 16 ) ( 320 -32 16 ) ( 320 -48 96 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 320 -48 96 ) ( 328 -48 96 ) ( 320 -48 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 328 -48 16 ) ( 328 -32 16 ) ( 320 -48 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -56 ] 0 1 1 +( 320 -48 96 ) ( 320 -32 96 ) ( 328 -48 96 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -56 ] 0 1 1 +( 320 -32 96 ) ( 320 -32 16 ) ( 328 -32 96 ) surface_beige_edge [ -0.9999999999999961 0 8.742278000372473e-08 16 ] [ 8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 +( 328 -48 96 ) ( 328 -32 96 ) ( 328 -48 16 ) surface_beige [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 38 +{ +( 320 8 8 ) ( 320 9 8 ) ( 320 8 9 ) skip [ 0 -1 0 -24 ] [ 0 0 -1 -8 ] 0 0.25 0.25 +( 320 -48 8 ) ( 320 -48 9 ) ( 321 -48 8 ) skip [ 1 0 0 32 ] [ 0 0 -1 -8 ] 0 0.25 0.25 +( 320 8 8 ) ( 321 8 8 ) ( 320 9 8 ) skip [ -1 0 0 -32 ] [ 0 -1 0 -24 ] 0 0.25 0.25 +( 360 56 16 ) ( 360 57 16 ) ( 361 56 16 ) floor_checkertiles [ 1 0 0 0 ] [ 0 -1 0 -96 ] 0 0.25 0.25 +( 360 104 16 ) ( 361 104 16 ) ( 360 104 17 ) skip [ -1 0 0 -32 ] [ 0 0 -1 -8 ] 0 0.25 0.25 +( 449 56 16 ) ( 449 56 17 ) ( 449 57 16 ) skip [ 0 1 0 24 ] [ 0 0 -1 -8 ] 0 0.25 0.25 +} +// brush 39 +{ +( 320 -32 104 ) ( 320 -32 96 ) ( 320 16 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.99997 ] [ 0 0.9999999999999866 1.6292067950285372e-07 48 ] 90 0.5 0.5 +( 328 -24 104 ) ( 328 -24 96 ) ( 320 -24 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 +( 320 16 96 ) ( 320 -32 96 ) ( 328 16 96 ) surface_beige_edge [ -0.9999999999999961 8.742278000372473e-08 0 16 ] [ 8.742278000372473e-08 0.9999999999999961 0 48 ] 180 0.5 0.5 +( 328 16 104 ) ( 328 -32 104 ) ( 320 16 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 320 8 104 ) ( 320 8 96 ) ( 328 8 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 +( 328 16 104 ) ( 328 16 96 ) ( 328 -32 104 ) surface_beige [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 +} +// brush 40 +{ +( 312 -24 104 ) ( 312 -24 96 ) ( 312 24 104 ) surface_beige [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.99997 ] [ 0 0.9999999999999866 1.6292067950285372e-07 31.999998 ] 90 0.5 0.5 +( 320 8 104 ) ( 320 8 96 ) ( 312 8 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 +( 312 24 96 ) ( 312 -24 96 ) ( 320 24 96 ) surface_beige_corner [ -4.371139006309477e-08 -0.999999999999999 0 -32 ] [ -0.999999999999999 4.371139006309477e-08 0 48 ] 90 0.5 0.5 +( 320 24 104 ) ( 320 -24 104 ) ( 312 24 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 312 16 104 ) ( 312 16 96 ) ( 320 16 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 +( 320 24 104 ) ( 320 24 96 ) ( 320 -24 104 ) skip [ 0 1 0 32 ] [ 0 0 -1 16 ] 0 0.5 0.5 +} +// brush 41 +{ +( 320 -24 104 ) ( 320 -24 96 ) ( 320 24 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.99997 ] [ 0 0.9999999999999866 1.6292067950285372e-07 31.999998 ] 90 0.5 0.5 +( 328 8 104 ) ( 328 8 96 ) ( 320 8 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 +( 320 24 96 ) ( 320 -24 96 ) ( 328 24 96 ) surface_beige_corner [ -0.9999999999999961 8.742277995965608e-08 0 16 ] [ 8.742277995965608e-08 0.9999999999999961 0 32 ] 180 0.5 0.5 +( 328 24 104 ) ( 328 -24 104 ) ( 320 24 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 320 16 104 ) ( 320 16 96 ) ( 328 16 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 +( 328 24 104 ) ( 328 24 96 ) ( 328 -24 104 ) surface_beige [ 0 1 0 32 ] [ 0 0 -1 16 ] 0 0.5 0.5 +} +// brush 42 +{ +( 312 -40 104 ) ( 312 -40 96 ) ( 312 8 104 ) surface_beige [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.999954 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 +( 320 -32 104 ) ( 320 -32 96 ) ( 312 -32 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 +( 312 8 96 ) ( 312 -40 96 ) ( 320 8 96 ) surface_beige_corner [ 1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 320 8 104 ) ( 320 -40 104 ) ( 312 8 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 312 -24 104 ) ( 312 -24 96 ) ( 320 -24 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 +( 320 8 104 ) ( 320 8 96 ) ( 320 -40 104 ) skip [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +} +// brush 43 +{ +( 320 -40 104 ) ( 320 -40 96 ) ( 320 8 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.999954 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 +( 328 -32 104 ) ( 328 -32 96 ) ( 320 -32 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 +( 320 8 96 ) ( 320 -40 96 ) ( 328 8 96 ) surface_beige_corner [ 1.3113417006681922e-07 0.9999999999999912 0 0 ] [ 0.9999999999999912 -1.3113417006681922e-07 0 48 ] 270 0.5 0.5 +( 328 8 104 ) ( 328 -40 104 ) ( 320 8 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 320 -24 104 ) ( 320 -24 96 ) ( 328 -24 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 +( 328 8 104 ) ( 328 8 96 ) ( 328 -40 104 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +} +// brush 44 +{ +( 320 -56 104 ) ( 320 -56 96 ) ( 320 -8 104 ) skip [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.999954 ] [ 0 0.9999999999999866 1.6292067950285372e-07 32.000004 ] 90 0.5 0.5 +( 328 -48 104 ) ( 328 -48 96 ) ( 320 -48 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 +( 320 -8 96 ) ( 320 -56 96 ) ( 328 -8 96 ) skip [ 1.3113417006681922e-07 0.9999999999999912 0 32 ] [ 0.9999999999999912 -1.3113417006681922e-07 0 48 ] 270 0.5 0.5 +( 328 -8 104 ) ( 328 -56 104 ) ( 320 -8 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 320 -32 104 ) ( 320 -32 96 ) ( 328 -32 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 +( 328 -8 104 ) ( 328 -8 96 ) ( 328 -56 104 ) surface_beige [ 0 1 0 32 ] [ 0 0 -1 16 ] 0 0.5 0.5 +} // brush 45 { -( 320 264 96 ) ( 320 136 96 ) ( 320 264 16 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 136 96 ) ( 328 136 96 ) ( 320 136 16 ) surface_beige_edge [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 264 16 ) ( 320 136 16 ) ( 328 264 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 328 264 112 ) ( 328 136 112 ) ( 320 264 112 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 1 1 -( 320 264 16 ) ( 328 264 16 ) ( 320 264 96 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 328 264 16 ) ( 328 136 16 ) ( 328 264 96 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 480 -40 16 ) ( 480 -39 16 ) ( 480 -40 17 ) surface_beige [ 0 -1 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 480 -40 16 ) ( 480 -40 17 ) ( 481 -40 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 480 -40 16 ) ( 481 -40 16 ) ( 480 -39 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 488 -24 104 ) ( 488 -23 104 ) ( 489 -24 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 488 136 24 ) ( 489 136 24 ) ( 488 136 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 488 -24 24 ) ( 488 -24 25 ) ( 488 -23 24 ) skip [ 0 1 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 } // brush 46 { -( 320 72 16 ) ( 320 88 16 ) ( 320 72 96 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 72 96 ) ( 328 72 96 ) ( 320 72 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 328 72 16 ) ( 328 88 16 ) ( 320 72 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 320 72 96 ) ( 320 88 96 ) ( 328 72 96 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 1 1 -( 320 88 96 ) ( 320 88 16 ) ( 328 88 96 ) surface_beige_edge [ -0.9999999999999961 0 8.742278000372473e-08 16 ] [ 8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 -( 328 72 96 ) ( 328 88 96 ) ( 328 72 16 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 432 -48 96 ) ( 432 -56 96 ) ( 432 -48 16 ) wall_brick_scrungly [ 0 1 0 224 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 640 -56 16 ) ( 432 -56 16 ) ( 640 -56 96 ) wall_brick_scrungly [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 640 -48 16 ) ( 432 -48 16 ) ( 640 -56 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 640 -56 96 ) ( 432 -56 96 ) ( 640 -48 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 640 -48 96 ) ( 432 -48 96 ) ( 640 -48 16 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 640 -56 96 ) ( 640 -48 96 ) ( 640 -56 16 ) wall_brick_scrungly [ 0 1 0 224 ] [ 0 0 -1 0 ] 0 0.25 0.25 } // brush 47 { -( 320 128 8 ) ( 320 129 8 ) ( 320 128 9 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 320 72 8 ) ( 320 72 9 ) ( 321 72 8 ) skip [ 1 0 0 96 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 320 128 8 ) ( 321 128 8 ) ( 320 129 8 ) skip [ -1 0 0 -96 ] [ 0 -1 0 -56 ] 0 0.25 0.25 -( 360 176 16 ) ( 360 177 16 ) ( 361 176 16 ) floor_checkertiles [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 360 224 16 ) ( 361 224 16 ) ( 360 224 17 ) skip [ -1 0 0 -32 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 448 176 16 ) ( 448 176 17 ) ( 448 177 16 ) skip [ 0 1 0 56 ] [ 0 0 -1 -8 ] 0 0.25 0.25 +( 312 -56 16 ) ( 312 -48 16 ) ( 312 -56 96 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 312 -56 96 ) ( 384 -56 96 ) ( 312 -56 16 ) wall_brick_scrungly [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 312 -56 16 ) ( 384 -56 16 ) ( 312 -48 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 312 -48 96 ) ( 384 -48 96 ) ( 312 -56 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 312 -48 16 ) ( 384 -48 16 ) ( 312 -48 96 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 384 -56 16 ) ( 384 -56 96 ) ( 384 -48 16 ) wall_brick_scrungly [ 0 -1 0 -224 ] [ 0 0 -1 0 ] 0 0.25 0.25 } // brush 48 { -( 320 88 104 ) ( 320 88 96 ) ( 320 136 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 328 96 104 ) ( 328 96 96 ) ( 320 96 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 136 96 ) ( 320 88 96 ) ( 328 136 96 ) surface_beige_edge [ -0.9999999999999961 8.742278000372473e-08 0 16 ] [ 8.742278000372473e-08 0.9999999999999961 0 0 ] 180 0.5 0.5 -( 328 136 104 ) ( 328 88 104 ) ( 320 136 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 320 128 104 ) ( 320 128 96 ) ( 328 128 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 136 104 ) ( 328 136 96 ) ( 328 88 104 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 432 -40 104 ) ( 432 -48 104 ) ( 432 -40 16 ) surface_beige_edge [ 0 -0.9999999999999961 8.742278000372473e-08 -16 ] [ 0 8.742278000372473e-08 0.9999999999999961 0 ] 180 0.5 0.5 +( 448 -48 16 ) ( 432 -48 16 ) ( 448 -48 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 448 -40 16 ) ( 432 -40 16 ) ( 448 -48 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 448 -48 104 ) ( 432 -48 104 ) ( 448 -40 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 448 -40 104 ) ( 432 -40 104 ) ( 448 -40 16 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 480 -48 104 ) ( 480 -40 104 ) ( 480 -48 16 ) skip [ 0 1 0 56 ] [ 0 0 -1 0 ] 0 1 1 } // brush 49 { -( 312 96 104 ) ( 312 96 96 ) ( 312 144 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48.000015 ] [ 0 0.9999999999999866 1.6292067950285372e-07 -16 ] 90 0.5 0.5 -( 320 128 104 ) ( 320 128 96 ) ( 312 128 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 312 144 96 ) ( 312 96 96 ) ( 320 144 96 ) surface_beige_corner [ -4.371139006309477e-08 -0.999999999999999 0 16 ] [ -0.999999999999999 4.371139006309477e-08 0 48 ] 90 0.5 0.5 -( 320 144 104 ) ( 320 96 104 ) ( 312 144 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 312 136 104 ) ( 312 136 96 ) ( 320 136 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 -( 320 144 104 ) ( 320 144 96 ) ( 320 96 104 ) skip [ 0 1 0 -16 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 328 -48 16 ) ( 328 -40 16 ) ( 328 -48 104 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 +( 328 -48 104 ) ( 384 -48 104 ) ( 328 -48 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 328 -48 16 ) ( 384 -48 16 ) ( 328 -40 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 328 -40 104 ) ( 384 -40 104 ) ( 328 -48 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 328 -40 16 ) ( 384 -40 16 ) ( 328 -40 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 384 -48 16 ) ( 384 -48 104 ) ( 384 -40 16 ) surface_beige_edge [ 0 -1 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 } // brush 50 { -( 320 96 104 ) ( 320 96 96 ) ( 320 144 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48.000015 ] [ 0 0.9999999999999866 1.6292067950285372e-07 -16 ] 90 0.5 0.5 -( 328 128 104 ) ( 328 128 96 ) ( 320 128 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 144 96 ) ( 320 96 96 ) ( 328 144 96 ) surface_beige_corner [ -0.9999999999999961 8.742277995965608e-08 0 16 ] [ 8.742277995965608e-08 0.9999999999999961 0 48 ] 180 0.5 0.5 -( 328 144 104 ) ( 328 96 104 ) ( 320 144 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 320 136 104 ) ( 320 136 96 ) ( 328 136 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 144 104 ) ( 328 144 96 ) ( 328 96 104 ) surface_beige [ 0 1 0 -16 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 392 -48 104 ) ( 392 -48 96 ) ( 392 -40 104 ) surface_beige [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 +( 432 -48 104 ) ( 432 -48 96 ) ( 384 -48 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 432 -48 96 ) ( 432 -40 96 ) ( 384 -48 96 ) surface_beige_edge [ -4.371139006309477e-08 -0.999999999999999 0 -16 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.5 0.5 +( 432 -48 104 ) ( 384 -48 104 ) ( 432 -40 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 384 -40 104 ) ( 384 -40 96 ) ( 432 -40 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 424 -40 104 ) ( 424 -40 96 ) ( 424 -48 104 ) surface_beige [ 0 1 0 56 ] [ 0 0 -1 0 ] 0 1 1 } // brush 51 { -( 312 80 104 ) ( 312 80 96 ) ( 312 128 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 16 ] 90 0.5 0.5 -( 320 88 104 ) ( 320 88 96 ) ( 312 88 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 312 128 96 ) ( 312 80 96 ) ( 320 128 96 ) surface_beige_corner [ 1 0 0 16 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 320 128 104 ) ( 320 80 104 ) ( 312 128 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 312 96 104 ) ( 312 96 96 ) ( 320 96 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 -( 320 128 104 ) ( 320 128 96 ) ( 320 80 104 ) skip [ 0 1 0 16 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 384 -56 8 ) ( 384 -55 8 ) ( 384 -56 9 ) ground_cobblestone1 [ 0 -1 0 -224 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 384 -56 8 ) ( 384 -56 9 ) ( 385 -56 8 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 384 -56 8 ) ( 385 -56 8 ) ( 384 -55 8 ) ground_cobblestone1 [ -1 0 0 0 ] [ 0 -1 0 -30 ] 0 0.25 0.25 +( 432 -48 16 ) ( 432 -47 16 ) ( 433 -48 16 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 -1 0 -30 ] 0 0.25 0.25 +( 432 -48 16 ) ( 433 -48 16 ) ( 432 -48 17 ) ground_cobblestone1 [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 432 -48 16 ) ( 432 -48 17 ) ( 432 -47 16 ) ground_cobblestone1 [ 0 1 0 224 ] [ 0 0 -1 0 ] 0 0.25 0.25 } // brush 52 { -( 320 80 104 ) ( 320 80 96 ) ( 320 128 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 16 ] 90 0.5 0.5 -( 328 88 104 ) ( 328 88 96 ) ( 320 88 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 128 96 ) ( 320 80 96 ) ( 328 128 96 ) surface_beige_corner [ 1.3113417006681922e-07 0.9999999999999912 0 16 ] [ 0.9999999999999912 -1.3113417006681922e-07 -0 48 ] 270 0.5 0.5 -( 328 128 104 ) ( 328 80 104 ) ( 320 128 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 320 96 104 ) ( 320 96 96 ) ( 328 96 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 128 104 ) ( 328 128 96 ) ( 328 80 104 ) surface_beige [ 0 1 0 16 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 312 -56 96 ) ( 312 -55 96 ) ( 312 -56 97 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 312 -56 96 ) ( 312 -56 97 ) ( 313 -56 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 312 -56 96 ) ( 313 -56 96 ) ( 312 -55 96 ) wall_brick [ -1 0 0 0 ] [ 0 -1 0 -118 ] 0 0.25 0.25 +( 360 -48 104 ) ( 360 -47 104 ) ( 361 -48 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.25 0.25 +( 360 -48 104 ) ( 361 -48 104 ) ( 360 -48 105 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 640 -48 104 ) ( 640 -48 105 ) ( 640 -47 104 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.25 0.25 } // brush 53 { -( 320 64 104 ) ( 320 64 96 ) ( 320 112 104 ) skip [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 48 ] 90 0.5 0.5 -( 328 72 104 ) ( 328 72 96 ) ( 320 72 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 112 96 ) ( 320 64 96 ) ( 328 112 96 ) skip [ 1.3113417006681922e-07 0.9999999999999912 0 48 ] [ 0.9999999999999912 -1.3113417006681922e-07 0 48 ] 270 0.5 0.5 -( 328 112 104 ) ( 328 64 104 ) ( 320 112 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 320 88 104 ) ( 320 88 96 ) ( 328 88 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 112 104 ) ( 328 112 96 ) ( 328 64 104 ) surface_beige [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 54 -{ -( 480 80 16 ) ( 480 81 16 ) ( 480 80 17 ) surface_beige [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 480 80 16 ) ( 480 80 17 ) ( 481 80 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 480 80 16 ) ( 481 80 16 ) ( 480 81 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 488 96 104 ) ( 488 97 104 ) ( 489 96 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 488 256 24 ) ( 489 256 24 ) ( 488 256 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 488 96 24 ) ( 488 96 25 ) ( 488 97 24 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 55 -{ -( 432 72 96 ) ( 432 64 96 ) ( 432 72 16 ) wall_brick_scrungly [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 64 16 ) ( 432 64 16 ) ( 640 64 96 ) wall_brick_scrungly [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 0.25 0.25 -( 640 72 16 ) ( 432 72 16 ) ( 640 64 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 640 64 96 ) ( 432 64 96 ) ( 640 72 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 640 72 96 ) ( 432 72 96 ) ( 640 72 16 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 64 96 ) ( 640 72 96 ) ( 640 64 16 ) wall_brick_scrungly [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 56 -{ -( 312 64 16 ) ( 312 72 16 ) ( 312 64 96 ) skip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 0.25 0.25 -( 312 64 96 ) ( 384 64 96 ) ( 312 64 16 ) wall_brick_scrungly [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 0.25 0.25 -( 312 64 16 ) ( 384 64 16 ) ( 312 72 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 312 72 96 ) ( 384 72 96 ) ( 312 64 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 312 72 16 ) ( 384 72 16 ) ( 312 72 96 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 384 64 16 ) ( 384 64 96 ) ( 384 72 16 ) wall_brick_scrungly [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 57 -{ -( 432 80 104 ) ( 432 72 104 ) ( 432 80 16 ) surface_beige_edge [ 0 -0.9999999999999961 8.742278000372473e-08 32 ] [ 0 8.742278000372473e-08 0.9999999999999961 0 ] 180 0.5 0.5 -( 448 72 16 ) ( 432 72 16 ) ( 448 72 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 448 80 16 ) ( 432 80 16 ) ( 448 72 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 448 72 104 ) ( 432 72 104 ) ( 448 80 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 448 80 104 ) ( 432 80 104 ) ( 448 80 16 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 480 72 104 ) ( 480 80 104 ) ( 480 72 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 58 -{ -( 328 72 16 ) ( 328 80 16 ) ( 328 72 104 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 328 72 104 ) ( 384 72 104 ) ( 328 72 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 328 72 16 ) ( 384 72 16 ) ( 328 80 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 328 80 104 ) ( 384 80 104 ) ( 328 72 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 328 80 16 ) ( 384 80 16 ) ( 328 80 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 384 72 16 ) ( 384 72 104 ) ( 384 80 16 ) surface_beige_edge [ 0 -1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 59 -{ -( 392 72 104 ) ( 392 72 96 ) ( 392 80 104 ) surface_beige [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 432 72 104 ) ( 432 72 96 ) ( 384 72 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 432 72 96 ) ( 432 80 96 ) ( 384 72 96 ) surface_beige_edge [ -4.371139006309477e-08 -0.999999999999999 0 32 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.5 0.5 -( 432 72 104 ) ( 384 72 104 ) ( 432 80 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 384 80 104 ) ( 384 80 96 ) ( 432 80 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 424 80 104 ) ( 424 80 96 ) ( 424 72 104 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 60 -{ -( 384 64 8 ) ( 384 65 8 ) ( 384 64 9 ) ground_cobblestone1 [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 384 64 8 ) ( 384 64 9 ) ( 385 64 8 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 384 64 8 ) ( 385 64 8 ) ( 384 65 8 ) ground_cobblestone1 [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 432 72 16 ) ( 432 73 16 ) ( 433 72 16 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 432 72 16 ) ( 433 72 16 ) ( 432 72 17 ) ground_cobblestone1 [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 432 72 16 ) ( 432 72 17 ) ( 432 73 16 ) ground_cobblestone1 [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 61 -{ -( 312 64 96 ) ( 312 65 96 ) ( 312 64 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 312 64 96 ) ( 312 64 97 ) ( 313 64 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 312 64 96 ) ( 313 64 96 ) ( 312 65 96 ) wall_brick [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 360 72 104 ) ( 360 73 104 ) ( 361 72 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 360 72 104 ) ( 361 72 104 ) ( 360 72 105 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 72 104 ) ( 640 72 105 ) ( 640 73 104 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 62 -{ ( 80 48 152 ) ( 80 49 152 ) ( 80 48 153 ) wall_brick [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 176 64 152 ) ( 176 64 153 ) ( 177 64 152 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 176 -56 152 ) ( 176 -56 153 ) ( 177 -56 152 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 176 48 152 ) ( 177 48 152 ) ( 176 49 152 ) wall_brick [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 208 80 256 ) ( 208 81 256 ) ( 209 80 256 ) wall_brick [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 208 80 256 ) ( 208 81 256 ) ( 209 80 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 208 264 168 ) ( 209 264 168 ) ( 208 264 169 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 312 80 168 ) ( 312 80 169 ) ( 312 81 168 ) wall_brick [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 63 +// brush 54 { -( 328 224 104 ) ( 328 225 104 ) ( 328 224 105 ) skip [ 0 -1 0 -16 ] [ 0 0 -1 48 ] 0 0.5 0.5 -( 392 80 104 ) ( 392 80 105 ) ( 393 80 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 -( 392 224 104 ) ( 393 224 104 ) ( 392 225 104 ) ground_wood [ -1 0 0 0 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 424 256 112 ) ( 424 257 112 ) ( 425 256 112 ) skip [ 1 0 0 0 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 424 256 112 ) ( 425 256 112 ) ( 424 256 113 ) skip [ -1 0 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 -( 480 256 112 ) ( 480 256 113 ) ( 480 257 112 ) skip [ 0 1 0 16 ] [ 0 0 -1 48 ] 0 0.5 0.5 +( 328 136 104 ) ( 328 137 104 ) ( 328 136 105 ) skip [ 0 -1 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 +( 392 -40 104 ) ( 392 -40 105 ) ( 393 -40 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 +( 392 136 104 ) ( 393 136 104 ) ( 392 137 104 ) ground_wood [ -1 0 0 0 ] [ 0 -1 0 -64 ] 0 0.5 0.5 +( 424 168 112 ) ( 424 169 112 ) ( 425 168 112 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 424 136 112 ) ( 425 136 112 ) ( 424 136 113 ) skip [ -1 0 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 +( 480 168 112 ) ( 480 168 113 ) ( 480 169 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 } -// brush 64 +// brush 55 { -( 424 72 104 ) ( 424 72 96 ) ( 424 80 104 ) surface_beige [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 440 72 104 ) ( 440 72 96 ) ( 392 72 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 440 72 96 ) ( 440 80 96 ) ( 392 72 96 ) surface_beige_corner [ -0.9999999999999961 8.742277995965608e-08 0 32 ] [ 8.742277995965608e-08 0.9999999999999961 0 32 ] 180 0.5 0.5 -( 440 72 104 ) ( 392 72 104 ) ( 440 80 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 392 80 104 ) ( 392 80 96 ) ( 440 80 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 432 80 104 ) ( 432 80 96 ) ( 432 72 104 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 424 -48 104 ) ( 424 -48 96 ) ( 424 -40 104 ) surface_beige [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 +( 440 -48 104 ) ( 440 -48 96 ) ( 392 -48 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 440 -48 96 ) ( 440 -40 96 ) ( 392 -48 96 ) surface_beige_corner [ -0.9999999999999961 8.742277995965608e-08 0 32 ] [ 8.742277995965608e-08 0.9999999999999961 0 16 ] 180 0.5 0.5 +( 440 -48 104 ) ( 392 -48 104 ) ( 440 -40 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 392 -40 104 ) ( 392 -40 96 ) ( 440 -40 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 432 -40 104 ) ( 432 -40 96 ) ( 432 -48 104 ) surface_beige [ 0 1 0 56 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 65 +// brush 56 { -( 384 72 104 ) ( 384 72 96 ) ( 384 80 104 ) surface_beige [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 72 104 ) ( 400 72 96 ) ( 352 72 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 72 96 ) ( 400 80 96 ) ( 352 72 96 ) surface_beige_corner [ -4.371139006309477e-08 -0.999999999999999 0 32 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.5 0.5 -( 400 72 104 ) ( 352 72 104 ) ( 400 80 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 352 80 104 ) ( 352 80 96 ) ( 400 80 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 392 80 104 ) ( 392 80 96 ) ( 392 72 104 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 384 -48 104 ) ( 384 -48 96 ) ( 384 -40 104 ) surface_beige [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 +( 400 -48 104 ) ( 400 -48 96 ) ( 352 -48 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 400 -48 96 ) ( 400 -40 96 ) ( 352 -48 96 ) surface_beige_corner [ -4.371139006309477e-08 -0.999999999999999 0 -16 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.5 0.5 +( 400 -48 104 ) ( 352 -48 104 ) ( 400 -40 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 352 -40 104 ) ( 352 -40 96 ) ( 400 -40 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 392 -40 104 ) ( 392 -40 96 ) ( 392 -48 104 ) surface_beige [ 0 1 0 56 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 66 +// brush 57 { -( 328 232 16 ) ( 328 233 16 ) ( 328 232 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 328 224 16 ) ( 328 224 17 ) ( 329 224 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 328 232 16 ) ( 329 232 16 ) ( 328 233 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 352 256 48 ) ( 352 257 48 ) ( 353 256 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 352 256 24 ) ( 353 256 24 ) ( 352 256 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 256 24 ) ( 400 256 25 ) ( 400 257 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 360 112 16 ) ( 360 113 16 ) ( 360 112 17 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 +( 328 104 16 ) ( 328 104 17 ) ( 329 104 16 ) woodpale [ -4.371139006309477e-08 0 -0.999999999999999 0 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.25 0.25 +( 328 112 16 ) ( 329 112 16 ) ( 328 113 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 352 136 46 ) ( 352 137 46 ) ( 353 136 46 ) skip [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 352 136 24 ) ( 353 136 24 ) ( 352 136 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 400 136 24 ) ( 400 136 25 ) ( 400 137 24 ) skip [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 67 +// brush 58 { -( 328 176 16 ) ( 328 177 16 ) ( 328 176 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 328 144 16 ) ( 328 144 17 ) ( 329 144 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 328 176 16 ) ( 329 176 16 ) ( 328 177 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 360 224 48 ) ( 360 225 48 ) ( 361 224 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 360 224 24 ) ( 361 224 24 ) ( 360 224 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 360 224 24 ) ( 360 224 25 ) ( 360 225 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 328 56 16 ) ( 328 57 16 ) ( 328 56 17 ) skip [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 +( 328 24 16 ) ( 328 24 17 ) ( 329 24 16 ) woodpale [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 328 56 16 ) ( 329 56 16 ) ( 328 57 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 360 104 46 ) ( 360 105 46 ) ( 361 104 46 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 360 104 24 ) ( 361 104 24 ) ( 360 104 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 360 104 24 ) ( 360 104 25 ) ( 360 105 24 ) woodpale [ 0 -4.371139006309477e-08 -0.999999999999999 0 ] [ 0 -0.999999999999999 4.371139006309477e-08 0 ] 90 0.25 0.25 } -// brush 68 +// brush 59 { -( 448 112 16 ) ( 448 113 16 ) ( 448 112 17 ) redplaid [ 0 -1 0 -64 ] [ 0 0 -1 0 ] 0 1 1 -( 448 80 16 ) ( 448 80 17 ) ( 449 80 16 ) redplaid [ 1 0 0 -120 ] [ 0 0 -1 0 ] 0 1 1 -( 448 112 16 ) ( 449 112 16 ) ( 448 113 16 ) redplaid [ -1 0 0 120 ] [ 0 -1 0 -64 ] 0 1 1 -( 480 160 48 ) ( 480 161 48 ) ( 481 160 48 ) redplaid [ 1 0 0 -120 ] [ 0 -1 0 -64 ] 0 1 1 -( 480 256 24 ) ( 481 256 24 ) ( 480 256 25 ) redplaid [ -1 0 0 120 ] [ 0 0 -1 0 ] 0 1 1 -( 480 160 24 ) ( 480 160 25 ) ( 480 161 24 ) redplaid [ 0 1 0 64 ] [ 0 0 -1 0 ] 0 1 1 +( 449 -8 16 ) ( 449 -7 16 ) ( 449 -8 17 ) woodpale [ 0 4.371139006309477e-08 -0.999999999999999 0 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.25 0.25 +( 448 -40 16 ) ( 448 -40 17 ) ( 449 -40 16 ) skip [ 1 0 0 -120 ] [ 0 0 -1 0 ] 0 1 1 +( 448 -8 16 ) ( 449 -8 16 ) ( 448 -7 16 ) skip [ -1 0 0 120 ] [ 0 -1 0 -184 ] 0 1 1 +( 480 40 46 ) ( 480 41 46 ) ( 481 40 46 ) skip [ 1 0 0 -56 ] [ 0 -1 0 -56 ] 0 1 1 +( 480 104 24 ) ( 481 104 24 ) ( 480 104 25 ) skip [ -1 0 0 56 ] [ 0 0 -1 0 ] 0 1 1 +( 480 40 24 ) ( 480 40 25 ) ( 480 41 24 ) skip [ 0 1 0 184 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 69 +// brush 60 { ( -16 360 -20 ) ( -16 361 -20 ) ( -16 360 -19 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( -64 360 -20 ) ( -64 360 -19 ) ( -63 360 -20 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 @@ -634,7 +553,7 @@ ( 64 600 12 ) ( 65 600 12 ) ( 64 600 13 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 784 488 12 ) ( 784 488 13 ) ( 784 489 12 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 70 +// brush 61 { ( -16 360 -16 ) ( -16 361 -16 ) ( -16 360 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 ( -64 360 -16 ) ( -64 360 -15 ) ( -63 360 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 @@ -643,7 +562,7 @@ ( 64 600 16 ) ( 65 600 16 ) ( 64 600 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 ( 80 488 16 ) ( 80 488 17 ) ( 80 489 16 ) wall_concrete1 [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 1 1 } -// brush 71 +// brush 62 { ( -16 600 -16 ) ( -16 601 -16 ) ( -16 600 -15 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 16 ] 0 0.5 0.5 ( -64 600 -16 ) ( -64 600 -15 ) ( -63 600 -16 ) wall_concrete1 [ 1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 @@ -652,25 +571,25 @@ ( 64 704 16 ) ( 65 704 16 ) ( 64 704 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 ( 576 728 16 ) ( 576 728 17 ) ( 576 729 16 ) wall_concrete1 [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 72 +// brush 63 { ( 736 600 -16 ) ( 736 601 -16 ) ( 736 600 -15 ) wall_concrete1 [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 144 600 -16 ) ( 144 600 -15 ) ( 145 600 -16 ) wall_concrete1 [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 144 600 12 ) ( 145 600 12 ) ( 144 601 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 272 728 16 ) ( 272 729 16 ) ( 273 728 16 ) ground_greybrick [ 1 0 0 0 ] [ 0 -1 0 48 ] 0 0.5 0.5 -( 272 736 16 ) ( 273 736 16 ) ( 272 736 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 272 720 16 ) ( 273 720 16 ) ( 272 720 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 784 728 16 ) ( 784 728 17 ) ( 784 729 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 73 +// brush 64 { ( 576 600 -20 ) ( 576 601 -20 ) ( 576 600 -19 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( -112 600 -20 ) ( -112 600 -19 ) ( -111 600 -20 ) skip [ 1 0 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( -112 600 -20 ) ( -111 600 -20 ) ( -112 601 -20 ) skip [ -1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.5 0.5 ( 16 728 12 ) ( 16 729 12 ) ( 17 728 12 ) asphalt [ 1 0 0 96 ] [ 0 -1 0 40 ] 0 0.5 0.5 -( 16 736 12 ) ( 17 736 12 ) ( 16 736 13 ) skip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 16 720 12 ) ( 17 720 12 ) ( 16 720 13 ) skip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 736 728 12 ) ( 736 728 13 ) ( 736 729 12 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 74 +// brush 65 { ( 64 336 24 ) ( 64 337 24 ) ( 64 336 25 ) redplaid [ 0 -1 0 0 ] [ 0 0 -1 8 ] 0 1 1 ( 56 344 24 ) ( 56 344 25 ) ( 57 344 24 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 8 ] 0 1 1 @@ -679,7 +598,7 @@ ( 80 352 32 ) ( 81 352 32 ) ( 80 352 33 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 8 ] 0 1 1 ( 72 360 32 ) ( 72 360 33 ) ( 72 361 32 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 8 ] 0 1 1 } -// brush 75 +// brush 66 { ( 56 336 16 ) ( 56 337 16 ) ( 56 336 17 ) redplaid [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 56 336 16 ) ( 56 336 17 ) ( 57 336 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 @@ -688,7 +607,7 @@ ( 80 360 24 ) ( 81 360 24 ) ( 80 360 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 80 360 24 ) ( 80 360 25 ) ( 80 361 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 76 +// brush 67 { ( 64 344 24 ) ( 56 336 18 ) ( 56 360 18 ) redplaid [ 0 -1.0000000000000002 0 0 ] [ 1.0000000000000002 0 0 -70.43137 ] 0 1 1 ( 72 344 24 ) ( 80 336 18 ) ( 56 336 18 ) redplaid [ 1.0000000000000002 0 0 0 ] [ 0 1.0000000000000002 0 -94.58823 ] 0 1 1 @@ -697,7 +616,7 @@ ( 72 352 24 ) ( 64 352 24 ) ( 56 360 18 ) redplaid [ -1.0000000000000002 0 0 0 ] [ 0 -1.0000000000000002 0 89.568634 ] 0 1 1 ( 72 352 24 ) ( 80 360 18 ) ( 80 336 18 ) redplaid [ 0 1.0000000000000002 0 0 ] [ -1.0000000000000002 0 0 68 ] 0 1 1 } -// brush 77 +// brush 68 { ( 60 336 152 ) ( 60 337 152 ) ( 60 336 153 ) redplaid [ 0 -1 0 24 ] [ 0 0 -1 8 ] 0 1 1 ( 56 340 152 ) ( 56 340 153 ) ( 57 340 152 ) redplaid [ 1 0 0 -8 ] [ 0 0 -1 8 ] 0 1 1 @@ -706,7 +625,7 @@ ( 88 356 160 ) ( 89 356 160 ) ( 88 356 161 ) redplaid [ -1 0 0 8 ] [ 0 0 -1 8 ] 0 1 1 ( 76 368 160 ) ( 76 368 161 ) ( 76 369 160 ) redplaid [ 0 1 0 -24 ] [ 0 0 -1 8 ] 0 1 1 } -// brush 78 +// brush 69 { ( 64 344 186 ) ( 54 334 180 ) ( 54 362 180 ) redplaid [ 0 -1.0000000000000002 0 24 ] [ 1.0000000000000002 0 0 -200.0878 ] 0 1 1 ( 72 344 186 ) ( 82 334 180 ) ( 54 334 180 ) redplaid [ 1.0000000000000002 0 0 -8 ] [ 0 1.0000000000000002 0 -222 ] 0 1 1 @@ -715,7 +634,7 @@ ( 54 362 180 ) ( 82 362 180 ) ( 72 352 186 ) redplaid [ -1.0000000000000002 0 0 8 ] [ 0 -1.0000000000000002 0 215.36586 ] 0 1 1 ( 72 352 186 ) ( 82 362 180 ) ( 82 334 180 ) redplaid [ 0 1.0000000000000002 0 -24 ] [ -1.0000000000000002 0 0 -62 ] 0 1 1 } -// brush 79 +// brush 70 { ( 60 354 156 ) ( 60 356 156 ) ( 54 362 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 ( 56 360 180 ) ( 62 354 156 ) ( 60 354 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 @@ -724,7 +643,7 @@ ( 60 356 156 ) ( 62 356 156 ) ( 56 362 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 56 362 180 ) ( 62 356 156 ) ( 62 354 156 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 80 +// brush 71 { ( 60 340 156 ) ( 60 342 156 ) ( 54 336 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 ( 56 334 180 ) ( 62 340 156 ) ( 60 340 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 @@ -733,7 +652,7 @@ ( 60 342 156 ) ( 62 342 156 ) ( 56 336 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 56 336 180 ) ( 62 342 156 ) ( 62 340 156 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 81 +// brush 72 { ( 74 342 156 ) ( 80 336 180 ) ( 80 334 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 ( 80 334 180 ) ( 82 334 180 ) ( 76 340 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 @@ -742,7 +661,7 @@ ( 76 342 156 ) ( 82 336 180 ) ( 80 336 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 76 342 156 ) ( 76 340 156 ) ( 82 334 180 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 82 +// brush 73 { ( 74 356 156 ) ( 80 362 180 ) ( 80 360 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 ( 80 360 180 ) ( 82 360 180 ) ( 76 354 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 @@ -751,7 +670,7 @@ ( 76 356 156 ) ( 82 362 180 ) ( 80 362 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 76 356 156 ) ( 76 354 156 ) ( 82 360 180 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 83 +// brush 74 { ( 80 360 16 ) ( 80 360 12 ) ( 80 368 12 ) clip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 80 360 16 ) ( 784 360 16 ) ( 784 360 12 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 @@ -759,33 +678,33 @@ ( 80 368 12 ) ( 784 368 12 ) ( 784 360 16 ) clip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 ( 784 360 16 ) ( 784 368 12 ) ( 784 360 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 84 +// brush 75 { -( 400 224 16 ) ( 400 225 16 ) ( 400 224 17 ) redplaid [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 224 16 ) ( 400 224 17 ) ( 401 224 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 224 16 ) ( 401 224 16 ) ( 400 225 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 448 256 96 ) ( 448 257 96 ) ( 449 256 96 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 448 256 24 ) ( 449 256 24 ) ( 448 256 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 448 256 24 ) ( 448 256 25 ) ( 448 257 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 400 104 16 ) ( 400 105 16 ) ( 400 104 17 ) redplaid [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 +( 400 104 16 ) ( 400 104 17 ) ( 401 104 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 400 104 16 ) ( 401 104 16 ) ( 400 105 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 448 136 96 ) ( 448 137 96 ) ( 449 136 96 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 448 136 24 ) ( 449 136 24 ) ( 448 136 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 448 136 24 ) ( 448 136 25 ) ( 448 137 24 ) redplaid [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 85 +// brush 76 { -( 328 256 16 ) ( 328 257 16 ) ( 328 256 17 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 328 256 16 ) ( 328 256 17 ) ( 329 256 16 ) surface_beige [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 328 256 4 ) ( 329 256 4 ) ( 328 257 4 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 448 264 112 ) ( 448 265 112 ) ( 449 264 112 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 328 136 16 ) ( 328 137 16 ) ( 328 136 17 ) skip [ 0 -1 0 8 ] [ 0 0 -1 0 ] 0 1 1 +( 328 136 16 ) ( 328 136 17 ) ( 329 136 16 ) surface_beige [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 328 136 4 ) ( 329 136 4 ) ( 328 137 4 ) skip [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 1 1 +( 448 144 120 ) ( 448 145 120 ) ( 449 144 120 ) skip [ 1 0 0 0 ] [ 0 -1 0 8 ] 0 1 1 ( 448 264 24 ) ( 449 264 24 ) ( 448 264 25 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 488 264 24 ) ( 488 264 25 ) ( 488 265 24 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 488 144 24 ) ( 488 144 25 ) ( 488 145 24 ) skip [ 0 1 0 -8 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 86 +// brush 77 { ( 80 600 16 ) ( 80 592 12 ) ( 80 600 12 ) clip [ -1.2246467991473532e-16 -1 0 0 ] [ 0 0 -1 0 ] 180 1 1 ( 784 592 12 ) ( 80 592 12 ) ( 80 600 16 ) clip [ -1 1.2246467991473532e-16 0 32 ] [ 1.2246467991473532e-16 1 0 0 ] 180 1 1 ( 80 600 12 ) ( 80 592 12 ) ( 784 592 12 ) clip [ 1 -1.2246467991473532e-16 0 -32 ] [ 1.2246467991473532e-16 1 0 0 ] 180 1 1 ( 784 600 16 ) ( 80 600 16 ) ( 80 600 12 ) clip [ -1 1.2246467991473532e-16 0 32 ] [ 0 0 -1 0 ] 180 1 1 -( 784 600 16 ) ( 784 600 12 ) ( 784 592 12 ) clip [ 1.2246467991473532e-16 1 0 0 ] [ 0 0 -1 0 ] 180 1 1 +( 576 600 16 ) ( 576 600 12 ) ( 576 592 12 ) clip [ 1.2246467991473532e-16 1 0 0 ] [ 0 0 -1 0 ] 180 1 1 } -// brush 87 +// brush 78 { ( 80 936 16 ) ( 80 232 16 ) ( 80 232 12 ) clip [ -1.8369701987210297e-16 -1 0 56 ] [ 0 0 -1 0 ] 180 1 1 ( 80 360 16 ) ( 88 360 12 ) ( 80 360 12 ) clip [ 1 -1.8369701987210297e-16 0 23.999992 ] [ 0 0 -1 0 ] 180 1 1 @@ -793,76 +712,647 @@ ( 80 600 16 ) ( 80 600 12 ) ( 88 600 12 ) clip [ -1 1.8369701987210297e-16 0 -23.999992 ] [ 0 0 -1 0 ] 180 1 1 ( 88 936 12 ) ( 88 232 12 ) ( 80 232 16 ) clip [ -1.8369701987210297e-16 -1 0 56 ] [ -1 1.8369701987210297e-16 0 -24 ] 96.379364 1 1 } -// brush 88 +// brush 79 { -( -16 704 16 ) ( -16 705 16 ) ( -16 704 17 ) wall_brick [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 0.25 0.25 +( 96 704 16 ) ( 96 705 16 ) ( 96 704 17 ) wall_brick [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 544 704 16 ) ( 544 704 17 ) ( 545 704 16 ) wall_brick [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 0.25 0.25 ( 544 704 12 ) ( 545 704 12 ) ( 544 705 12 ) skip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 0.25 0.25 -( 576 736 80 ) ( 576 737 80 ) ( 577 736 80 ) wall_brick [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 576 736 32 ) ( 577 736 32 ) ( 576 736 33 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 576 736 64 ) ( 576 737 64 ) ( 577 736 64 ) wall_brick [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 576 720 32 ) ( 577 720 32 ) ( 576 720 33 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 576 736 32 ) ( 576 736 33 ) ( 576 737 32 ) wall_brick [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 89 +// brush 80 { -( 16 744 -20 ) ( 16 745 -20 ) ( 16 744 -19 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( -112 736 -20 ) ( -112 736 -19 ) ( -111 736 -20 ) skip [ 1 0 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 96 744 -20 ) ( 96 745 -20 ) ( 96 744 -19 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( -112 720 -20 ) ( -112 720 -19 ) ( -111 720 -20 ) skip [ 1 0 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( -112 744 -20 ) ( -111 744 -20 ) ( -112 745 -20 ) skip [ -1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 16 872 12 ) ( 16 873 12 ) ( 17 872 12 ) asphalt [ 1 0 0 96 ] [ 0 -1 0 108 ] 0 0.5 0.5 -( 16 1152 12 ) ( 17 1152 12 ) ( 16 1152 13 ) skip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 16 1136 12 ) ( 17 1136 12 ) ( 16 1136 13 ) skip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 736 872 12 ) ( 736 872 13 ) ( 736 873 12 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 90 +// brush 81 { -( 736 728 -16 ) ( 736 729 -16 ) ( 736 728 -15 ) wall_concrete1 [ 0 -1 0 128 ] [ 0 0 -1 0 ] 0 1 1 -( 144 736 -16 ) ( 144 736 -15 ) ( 145 736 -16 ) wall_concrete1 [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 144 728 12 ) ( 145 728 12 ) ( 144 729 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 272 856 16 ) ( 272 857 16 ) ( 273 856 16 ) ground_greybrick [ 1 0 0 0 ] [ 0 -1 0 -80 ] 0 0.5 0.5 -( 272 880 16 ) ( 273 880 16 ) ( 272 880 17 ) wall_concrete1 [ -1 0 0 128 ] [ 0 0 -1 0 ] 0 1 1 -( 848 856 16 ) ( 848 856 17 ) ( 848 857 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 736 712 -16 ) ( 736 713 -16 ) ( 736 712 -15 ) wall_concrete1 [ 0 -1 0 112 ] [ 0 0 -1 0 ] 0 1 1 +( 144 720 -16 ) ( 144 720 -15 ) ( 145 720 -16 ) wall_concrete1 [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 144 712 12 ) ( 145 712 12 ) ( 144 713 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 272 840 16 ) ( 272 841 16 ) ( 273 840 16 ) ground_greybrick [ 1 0 0 0 ] [ 0 -1 0 -112 ] 0 0.5 0.5 +( 272 864 16 ) ( 273 864 16 ) ( 272 864 17 ) wall_concrete1 [ -1 0 0 128 ] [ 0 0 -1 0 ] 0 1 1 +( 848 840 16 ) ( 848 840 17 ) ( 848 841 16 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 91 +// brush 82 { ( 784 704 16 ) ( 784 705 16 ) ( 784 704 17 ) wall_brick [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 1344 704 16 ) ( 1344 704 17 ) ( 1345 704 16 ) wall_brick [ 1 0 0 128 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 1344 704 12 ) ( 1345 704 12 ) ( 1344 705 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 1376 736 80 ) ( 1376 737 80 ) ( 1377 736 80 ) wall_brick [ 1 0 0 128 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 1376 736 32 ) ( 1377 736 32 ) ( 1376 736 33 ) wall_brick [ -1 0 0 -128 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1376 736 64 ) ( 1376 737 64 ) ( 1377 736 64 ) wall_brick [ 1 0 0 128 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 1376 720 32 ) ( 1377 720 32 ) ( 1376 720 33 ) wall_brick [ -1 0 0 -128 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 1168 736 32 ) ( 1168 736 33 ) ( 1168 737 32 ) wall_brick [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } +// brush 83 +{ +( 736 728 -20 ) ( 736 729 -20 ) ( 736 728 -19 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 608 864 -20 ) ( 608 864 -19 ) ( 609 864 -20 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 608 728 -20 ) ( 609 728 -20 ) ( 608 729 -20 ) skip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 736 856 12 ) ( 736 857 12 ) ( 737 856 12 ) asphalt [ 1 0 0 64 ] [ 0 -1 0 76 ] 0 0.5 0.5 +( 736 1136 12 ) ( 737 1136 12 ) ( 736 1136 13 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 848 856 12 ) ( 848 856 13 ) ( 848 857 12 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 84 +{ +( 848 872 -16 ) ( 848 873 -16 ) ( 848 872 -15 ) wall_concrete1 [ 0 -1 0 272 ] [ 0 0 -1 0 ] 0 1 1 +( 304 800 -16 ) ( 304 800 -15 ) ( 305 800 -16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 +( 304 872 12 ) ( 305 872 12 ) ( 304 873 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 432 1000 16 ) ( 432 1001 16 ) ( 433 1000 16 ) ground_greybrick [ 1 0 0 -96 ] [ 0 -1 0 -112 ] 0 0.5 0.5 +( 432 1136 16 ) ( 433 1136 16 ) ( 432 1136 17 ) skip [ -1 0 0 32 ] [ 0 0 -1 0 ] 0 1 1 +( 944 1000 16 ) ( 944 1000 17 ) ( 944 1001 16 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 85 +{ +( 736 600 16 ) ( 736 592 12 ) ( 736 600 12 ) clip [ -0 -1 0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 992 592 12 ) ( 288 592 12 ) ( 288 600 16 ) clip [ 1 0 -0 0 ] [ 0 -0.894427190999916 -0.447213595499958 0 ] 0 1 1 +( 288 600 12 ) ( 288 592 12 ) ( 992 592 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 992 600 16 ) ( 288 600 16 ) ( 288 600 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 784 600 16 ) ( 784 600 12 ) ( 784 592 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 86 +{ +( 576 1048 16 ) ( 576 344 16 ) ( 576 344 12 ) clip [ 0 -1 0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 576 600 16 ) ( 584 600 12 ) ( 576 600 12 ) clip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 576 344 12 ) ( 584 344 12 ) ( 584 1048 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 576 704 16 ) ( 576 704 12 ) ( 584 704 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 584 1048 12 ) ( 584 344 12 ) ( 576 344 16 ) clip [ 0.894427190999916 0 -0.447213595499958 0 ] [ 0 -1 0 0 ] 0 1 1 +} +// brush 87 +{ +( 728 1048 12 ) ( 736 344 16 ) ( 728 344 12 ) clip [ 0.894427190999916 0 0.447213595499958 -29.020447 ] [ 0 -1 0 0 ] 0 1 1 +( 736 600 16 ) ( 736 600 12 ) ( 728 600 12 ) clip [ 1 0 0 -40 ] [ 0 0 -1 0 ] 0 1 1 +( 736 344 12 ) ( 728 1048 12 ) ( 728 344 12 ) clip [ -1 0 0 40 ] [ 0 -1 0 0 ] 0 1 1 +( 736 864 16 ) ( 728 864 12 ) ( 736 864 12 ) clip [ -1 0 0 40 ] [ 0 0 -1 0 ] 0 1 1 +( 736 1048 16 ) ( 736 344 12 ) ( 736 344 16 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 88 +{ +( 840 1312 12 ) ( 848 608 16 ) ( 840 608 12 ) clip [ 0.894427190999916 -0 0.447213595499958 0 ] [ -0 -1 0 0 ] 0 1 1 +( 848 864 16 ) ( 848 864 12 ) ( 840 864 12 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 848 608 12 ) ( 840 1312 12 ) ( 840 608 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 848 1136 16 ) ( 840 1136 12 ) ( 848 1136 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 848 1312 16 ) ( 848 608 12 ) ( 848 608 16 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 89 +{ +( 736 864 16 ) ( 736 864 12 ) ( 736 872 12 ) clip [ 0 -1 0 -8 ] [ 0 0 -1 0 ] 0 1 1 +( 144 864 16 ) ( 848 864 16 ) ( 848 864 12 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 848 864 12 ) ( 848 872 12 ) ( 144 872 12 ) clip [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 1 1 +( 144 872 12 ) ( 848 872 12 ) ( 848 864 16 ) clip [ 1 0 0 0 ] [ 0 -1 0 -8 ] 0 1 1 +( 848 864 16 ) ( 848 872 12 ) ( 848 864 12 ) clip [ 0 1 0 8 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 90 +{ +( 728 872 12 ) ( 736 864 16 ) ( 728 864 12 ) clip [ 0.894427190999916 -0 0.447213595499958 0 ] [ -0 -1 0 0 ] 0 1 1 +( 728 864 12 ) ( 736 864 16 ) ( 736 864 12 ) clip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 736 864 12 ) ( 736 872 12 ) ( 728 872 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 728 872 12 ) ( 736 872 12 ) ( 736 864 16 ) clip [ 1 -0 0 0 ] [ -0 -0.894427190999916 0.447213595499958 0 ] 0 1 1 +( 736 864 16 ) ( 736 872 12 ) ( 736 864 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 91 +{ +( 728 592 12 ) ( 728 600 12 ) ( 736 600 16 ) clip [ 0.894427190999916 -0 0.447213595499958 0 ] [ -0 -1 0 0 ] 0 1 1 +( 728 592 12 ) ( 736 600 16 ) ( 736 592 12 ) clip [ 1 0 -0 0 ] [ 0 -0.894427190999916 -0.447213595499958 0 ] 0 1 1 +( 736 600 12 ) ( 728 592 12 ) ( 736 592 12 ) clip [ -1 0 -0 0 ] [ -0 -1 0 0 ] 0 1 1 +( 728 600 12 ) ( 736 600 12 ) ( 736 600 16 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 736 600 16 ) ( 736 600 12 ) ( 736 592 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} // brush 92 { -( 736 744 -20 ) ( 736 745 -20 ) ( 736 744 -19 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 608 880 -20 ) ( 608 880 -19 ) ( 609 880 -20 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 608 744 -20 ) ( 609 744 -20 ) ( 608 745 -20 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 736 872 12 ) ( 736 873 12 ) ( 737 872 12 ) asphalt [ 1 0 0 64 ] [ 0 -1 0 108 ] 0 0.5 0.5 -( 736 1152 12 ) ( 737 1152 12 ) ( 736 1152 13 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 848 872 12 ) ( 848 872 13 ) ( 848 873 12 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 576 600 16 ) ( 576 592 12 ) ( 576 600 12 ) clip [ -0 -1 0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 584 592 12 ) ( 576 592 12 ) ( 576 600 16 ) clip [ 1 0 -0 0 ] [ 0 -0.894427190999916 -0.447213595499958 0 ] 0 1 1 +( 576 600 12 ) ( 576 592 12 ) ( 584 592 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 584 600 12 ) ( 576 600 16 ) ( 576 600 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 584 592 12 ) ( 576 600 16 ) ( 584 600 12 ) clip [ 0.894427190999916 0 -0.447213595499958 0 ] [ 0 -1 -0 0 ] 0 1 1 } // brush 93 { -( 848 888 -16 ) ( 848 889 -16 ) ( 848 888 -15 ) wall_concrete1 [ 0 -1 0 288 ] [ 0 0 -1 0 ] 0 1 1 -( 304 736 -16 ) ( 304 736 -15 ) ( 305 736 -16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 304 888 12 ) ( 305 888 12 ) ( 304 889 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 432 1016 16 ) ( 432 1017 16 ) ( 433 1016 16 ) ground_greybrick [ 1 0 0 -96 ] [ 0 -1 0 -80 ] 0 0.5 0.5 -( 432 1152 16 ) ( 433 1152 16 ) ( 432 1152 17 ) skip [ -1 0 0 32 ] [ 0 0 -1 0 ] 0 1 1 -( 944 1016 16 ) ( 944 1016 17 ) ( 944 1017 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 576 704 16 ) ( 576 704 12 ) ( 576 712 12 ) clip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 +( 584 704 12 ) ( 576 704 12 ) ( 576 704 16 ) clip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 576 704 12 ) ( 584 712 12 ) ( 576 712 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 584 712 12 ) ( 576 704 16 ) ( 576 712 12 ) clip [ 1 0 0 0 ] [ 0 -0.894427190999916 0.447213595499958 0 ] 0 1 1 +( 584 712 12 ) ( 584 704 12 ) ( 576 704 16 ) clip [ 0.894427190999916 0 -0.447213595499958 0 ] [ 0 -1 0 0 ] 0 1 1 } // brush 94 { -( 944 880 16 ) ( 944 881 16 ) ( 944 880 17 ) skip [ 0 -1 0 0 ] [ 0 0 -1 16 ] 0 1 1 -( 944 880 16 ) ( 944 880 17 ) ( 945 880 16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 16 ] 0 1 1 -( 944 880 16 ) ( 945 880 16 ) ( 944 881 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 976 928 48 ) ( 976 929 48 ) ( 977 928 48 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 1 1 -( 976 928 32 ) ( 977 928 32 ) ( 976 928 33 ) skip [ -1 0 0 16 ] [ 0 0 -1 16 ] 0 1 1 -( 960 928 32 ) ( 960 928 33 ) ( 960 929 32 ) skip [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 1 1 +( 312 248 16 ) ( 312 249 16 ) ( 312 248 17 ) skip [ 0 -1 0 -48 ] [ 0 0 -1 0 ] 0 1 1 +( 312 256 16 ) ( 312 256 17 ) ( 313 256 16 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 +( 312 248 16 ) ( 313 248 16 ) ( 312 249 16 ) skip [ -1 0 0 24 ] [ 0 -1 0 -48 ] 0 1 1 +( 328 264 120 ) ( 328 265 120 ) ( 329 264 120 ) skip [ 1 0 0 -24 ] [ 0 -1 0 -48 ] 0 1 1 +( 328 264 24 ) ( 329 264 24 ) ( 328 264 25 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 328 264 24 ) ( 328 264 25 ) ( 328 265 24 ) skip [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 1 1 } // brush 95 { -( 880 880 16 ) ( 880 881 16 ) ( 880 880 17 ) skip [ 0 -1 0 -16 ] [ 0 0 -1 16 ] 0 1 1 -( 880 864 16 ) ( 880 864 17 ) ( 881 864 16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 16 ] 0 1 1 -( 880 880 16 ) ( 881 880 16 ) ( 880 881 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -16 ] 0 1 1 -( 912 896 80 ) ( 912 897 80 ) ( 913 896 80 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -16 ] 0 1 1 -( 912 896 32 ) ( 913 896 32 ) ( 912 896 33 ) skip [ -1 0 0 16 ] [ 0 0 -1 16 ] 0 1 1 -( 912 896 32 ) ( 912 896 33 ) ( 912 897 32 ) skip [ 0 1 0 16 ] [ 0 0 -1 16 ] 0 1 1 +( 80 160 0 ) ( 80 161 0 ) ( 80 160 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 160 0 ) ( 80 160 1 ) ( 81 160 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 160 52 ) ( 81 160 52 ) ( 80 161 52 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 112 192 96 ) ( 112 193 96 ) ( 113 192 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 112 168 16 ) ( 113 168 16 ) ( 112 168 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 88 192 16 ) ( 88 192 17 ) ( 88 193 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +} +// brush 96 +{ +( 80 48 0 ) ( 80 49 0 ) ( 80 48 1 ) surface_green [ 0 -1 0 -32 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 48 0 ) ( 80 48 1 ) ( 81 48 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 48 52 ) ( 81 48 52 ) ( 80 49 52 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 112 80 96 ) ( 112 81 96 ) ( 113 80 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 112 56 16 ) ( 113 56 16 ) ( 112 56 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 88 80 16 ) ( 88 80 17 ) ( 88 81 16 ) surface_green [ 0 1 0 32 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +} +// brush 97 +{ +( 72 -248 88 ) ( 72 -247 88 ) ( 72 -248 89 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 -63.999992 ] 90 0.5 0.5 +( 80 -64 88 ) ( 80 -64 89 ) ( 81 -64 88 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 -32 ] [ -0.999999999999999 0 4.371139006309477e-08 16 ] 90 0.5 0.5 +( 80 -248 104 ) ( 81 -248 104 ) ( 80 -247 104 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 +( 112 -216 112 ) ( 112 -215 112 ) ( 113 -216 112 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 +( 112 -48 104 ) ( 113 -48 104 ) ( 112 -48 105 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 312 -216 104 ) ( 312 -216 105 ) ( 312 -215 104 ) surface_green_edge [ 0 -4.371139006309477e-08 -0.999999999999999 32 ] [ 0 -0.999999999999999 4.371139006309477e-08 16.000008 ] 90 0.5 0.5 +} +// brush 98 +{ +( 224 8 16 ) ( 224 9 16 ) ( 224 8 17 ) redplaid [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 +( 224 104 16 ) ( 224 104 17 ) ( 225 104 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 224 8 16 ) ( 225 8 16 ) ( 224 9 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 248 96 48 ) ( 248 97 48 ) ( 249 96 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 248 136 24 ) ( 249 136 24 ) ( 248 136 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 312 96 24 ) ( 312 96 25 ) ( 312 97 24 ) redplaid [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 99 +{ +( 80 -56 48 ) ( 80 -55 48 ) ( 80 -56 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 -15.999992 ] 90 0.5 0.5 +( 80 -56 48 ) ( 80 -56 49 ) ( 81 -56 48 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 -32 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 80 -56 120 ) ( 81 -56 120 ) ( 80 -55 120 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -24 144 ) ( 112 -23 144 ) ( 113 -24 144 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -48 64 ) ( 113 -48 64 ) ( 112 -48 65 ) skip [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 +( 312 -24 64 ) ( 312 -24 65 ) ( 312 -23 64 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -40 ] 0 0.5 0.5 +} +// brush 100 +{ +( 80 -56 0 ) ( 80 -55 0 ) ( 80 -56 1 ) surface_green [ 0 -1 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 -56 0 ) ( 80 -56 1 ) ( 81 -56 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 -56 48 ) ( 81 -56 48 ) ( 80 -55 48 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -24 96 ) ( 112 -23 96 ) ( 113 -24 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -48 16 ) ( 113 -48 16 ) ( 112 -48 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 88 -24 16 ) ( 88 -24 17 ) ( 88 -23 16 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +} +// brush 101 +{ +( 224 -48 16 ) ( 224 -47 16 ) ( 224 -48 17 ) redplaid [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 +( 224 -48 16 ) ( 224 -48 17 ) ( 225 -48 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 224 -48 16 ) ( 225 -48 16 ) ( 224 -47 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 248 40 48 ) ( 248 41 48 ) ( 249 40 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 248 64 24 ) ( 249 64 24 ) ( 248 64 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 248 40 24 ) ( 248 40 25 ) ( 248 41 24 ) redplaid [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 102 +{ +( 72 -248 128 ) ( 72 -247 128 ) ( 72 -248 129 ) surface_green [ 0 -1 0 8 ] [ 0 0 -1 -48 ] 0 0.5 0.5 +( 80 -64 128 ) ( 80 -64 129 ) ( 81 -64 128 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 +( 80 -248 144 ) ( 81 -248 144 ) ( 80 -247 144 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 +( 112 -216 152 ) ( 112 -215 152 ) ( 113 -216 152 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -48 144 ) ( 113 -48 144 ) ( 112 -48 145 ) skip [ -1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 +( 312 -216 144 ) ( 312 -216 145 ) ( 312 -215 144 ) surface_green [ 0 1 0 -8 ] [ 0 0 -1 -48 ] 0 0.5 0.5 +} +// brush 103 +{ +( 80 -56 0 ) ( 80 -55 0 ) ( 80 -56 1 ) surface_green [ 0 -1 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 -56 0 ) ( 80 -56 1 ) ( 81 -56 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 -56 16 ) ( 81 -56 16 ) ( 80 -55 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -24 52 ) ( 112 -23 52 ) ( 113 -24 52 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -48 16 ) ( 113 -48 16 ) ( 112 -48 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 224 -24 16 ) ( 224 -24 17 ) ( 224 -23 16 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +} +// brush 104 +{ +( 224 -56 0 ) ( 224 -55 0 ) ( 224 -56 1 ) surface_green [ 0 -1 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 224 -56 0 ) ( 224 -56 1 ) ( 225 -56 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 224 -56 16 ) ( 225 -56 16 ) ( 224 -55 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 256 -24 96 ) ( 256 -23 96 ) ( 257 -24 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 256 -48 16 ) ( 257 -48 16 ) ( 256 -48 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 312 -24 16 ) ( 312 -24 17 ) ( 312 -23 16 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +} +// brush 105 +{ +( 80 -56 -8 ) ( 80 -55 -8 ) ( 80 -56 -7 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 16 ] [ 0 0.999999999999999 4.371139006309477e-08 -15.999992 ] 90 0.5 0.5 +( 176 -56 -8 ) ( 176 -56 -7 ) ( 177 -56 -8 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 16 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 176 -56 96 ) ( 177 -56 96 ) ( 176 -55 96 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 208 -24 104 ) ( 208 -23 104 ) ( 209 -24 104 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 208 -48 8 ) ( 209 -48 8 ) ( 208 -48 9 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 +( 312 -24 8 ) ( 312 -24 9 ) ( 312 -23 8 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -40 ] 0 0.5 0.5 +} +// brush 106 +{ +( 944 584 -20 ) ( 944 585 -20 ) ( 944 584 -19 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 816 720 -20 ) ( 816 720 -19 ) ( 817 720 -20 ) skip [ 1 0 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 816 584 -20 ) ( 817 584 -20 ) ( 816 585 -20 ) skip [ -1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 944 712 12 ) ( 944 713 12 ) ( 945 712 12 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 944 800 12 ) ( 945 800 12 ) ( 944 800 13 ) skip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 1408 712 12 ) ( 1408 712 13 ) ( 1408 713 12 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 107 +{ +( 848 792 -16 ) ( 848 793 -16 ) ( 848 792 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 304 720 -16 ) ( 304 720 -15 ) ( 305 720 -16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 +( 304 792 12 ) ( 305 792 12 ) ( 304 793 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 432 920 16 ) ( 432 921 16 ) ( 433 920 16 ) ground_greybrick [ 1 0 0 -96 ] [ 0 -1 0 -16 ] 0 0.5 0.5 +( 432 800 16 ) ( 433 800 16 ) ( 432 800 17 ) skip [ -1 0 0 32 ] [ 0 0 -1 0 ] 0 1 1 +( 944 920 16 ) ( 944 920 17 ) ( 944 921 16 ) wall_concrete1 [ 0 1 0 0 ] [ 0 0 -1 -32 ] 0 1 1 +} +// brush 108 +{ +( 80 256 40 ) ( 80 257 40 ) ( 80 256 41 ) surface_green [ 0 4.371139006309477e-08 -0.999999999999999 -47.999954 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 80 256 40 ) ( 80 256 41 ) ( 81 256 40 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -56 ] 0 0.5 0.5 +( 80 256 112 ) ( 81 256 112 ) ( 80 257 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 112 288 120 ) ( 112 289 120 ) ( 113 288 120 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 112 264 56 ) ( 113 264 56 ) ( 112 264 57 ) surface_green [ 4.371139006309477e-08 0 -0.999999999999999 -47.999954 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 312 288 56 ) ( 312 288 57 ) ( 312 289 56 ) skip [ 0 1 0 0 ] [ 0 0 -1 -56 ] 0 0.5 0.5 +} +// brush 109 +{ +( 80 -56 40 ) ( 80 -55 40 ) ( 80 -56 41 ) surface_green [ 0 4.371139006309477e-08 -0.999999999999999 -48 ] [ 0 0.999999999999999 4.371139006309477e-08 -16 ] 90 0.5 0.5 +( 80 -56 40 ) ( 80 -56 41 ) ( 81 -56 40 ) surface_green [ -4.371139006309477e-08 0 -0.999999999999999 -48.000015 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 80 -56 112 ) ( 81 -56 112 ) ( 80 -55 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -24 120 ) ( 112 -23 120 ) ( 113 -24 120 ) skip [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -48 56 ) ( 113 -48 56 ) ( 112 -48 57 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -56 ] 0 0.5 0.5 +( 312 -24 56 ) ( 312 -24 57 ) ( 312 -23 56 ) skip [ 0 1 0 -16 ] [ 0 0 -1 -56 ] 0 0.5 0.5 +} +// brush 110 +{ +( 312 -32 120 ) ( 312 -32 112 ) ( 312 16 120 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -15.9999695 ] [ 0 0.9999999999999866 1.6292067950285372e-07 47.999992 ] 90 0.5 0.5 +( 320 -32 120 ) ( 320 -32 112 ) ( 312 -32 120 ) skip [ 1 0 0 -16 ] [ 0 0 -1 16 ] 0 1 1 +( 312 16 104 ) ( 312 -32 104 ) ( 320 16 104 ) skip [ 1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 320 16 120 ) ( 320 -32 120 ) ( 312 16 120 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 16 120 ) ( 312 16 112 ) ( 320 16 120 ) skip [ -1 0 0 16 ] [ 0 0 -1 16 ] 0 1 1 +( 320 16 120 ) ( 320 16 112 ) ( 320 -32 120 ) skip [ 0 1 0 48 ] [ 0 0 -1 48 ] 0 0.5 0.5 +} +// brush 111 +{ +( 312 -56 16 ) ( 312 -40 16 ) ( 312 -56 32 ) surface_beige_corner [ 0 -1.3113417006681922e-07 0.9999999999999913 32 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 -32 ] 270 0.5 0.5 +( 312 -48 32 ) ( 320 -48 32 ) ( 312 -48 16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 320 -56 16 ) ( 320 -40 16 ) ( 312 -56 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 +( 312 -56 32 ) ( 312 -40 32 ) ( 320 -56 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 312 -40 32 ) ( 312 -40 16 ) ( 320 -40 32 ) skip [ 1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 320 -56 32 ) ( 320 -40 32 ) ( 320 -56 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 112 +{ +( 312 152 32 ) ( 312 24 32 ) ( 312 152 16 ) surface_beige_corner [ 0 -0.9999999999999997 -1.224647977550801e-16 0 ] [ -0 1.224647977550801e-16 -0.9999999999999997 32 ] 0 0.5 0.5 +( 320 248 16 ) ( 312 248 16 ) ( 320 248 32 ) skip [ 0.9999999999999957 0 8.742277997596912e-08 16 ] [ -8.742277997596912e-08 0 0.9999999999999957 0 ] 180 0.5 0.5 +( 312 152 16 ) ( 312 24 16 ) ( 320 152 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 1 1 +( 320 152 32 ) ( 320 24 32 ) ( 312 152 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 312 256 16 ) ( 320 256 16 ) ( 312 256 32 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 320 152 16 ) ( 320 24 16 ) ( 320 152 32 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 113 +{ +( 312 152 48 ) ( 312 24 48 ) ( 312 152 32 ) surface_beige_edge [ 0 -0.9999999999999998 0 0 ] [ 0 0 -0.9999999999999998 -32 ] 0 0.5 0.5 +( 320 248 32 ) ( 312 248 32 ) ( 320 248 48 ) skip [ 0.9999999999999957 0 8.742277997596912e-08 16 ] [ -8.742277997596912e-08 0 0.9999999999999957 -32 ] 180 0.5 0.5 +( 312 152 32 ) ( 312 24 32 ) ( 320 152 32 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 1 1 +( 320 152 104 ) ( 320 24 104 ) ( 312 152 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 312 256 32 ) ( 320 256 32 ) ( 312 256 48 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 320 152 32 ) ( 320 24 32 ) ( 320 152 48 ) skip [ 0 1 0 32 ] [ 0 0 -1 32 ] 0 0.5 0.5 +} +// brush 114 +{ +( 312 152 120 ) ( 312 24 120 ) ( 312 152 104 ) surface_beige_corner [ 0 1.6292067950285372e-07 -0.9999999999999866 48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 +( 320 248 104 ) ( 312 248 104 ) ( 320 248 120 ) skip [ 0.9999999999999957 0 8.742277997596912e-08 16 ] [ -8.742277997596912e-08 0 0.9999999999999957 -48 ] 180 0.5 0.5 +( 312 152 104 ) ( 312 24 104 ) ( 320 152 104 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 1 1 +( 320 152 120 ) ( 320 24 120 ) ( 312 152 120 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 312 256 104 ) ( 320 256 104 ) ( 312 256 120 ) skip [ -1 0 0 0 ] [ 0 0 -1 32 ] 0 0.25 0.25 +( 320 152 104 ) ( 320 24 104 ) ( 320 152 120 ) skip [ 0 1 0 32 ] [ 0 0 -1 48 ] 0 0.5 0.5 +} +// brush 115 +{ +( 80 -48 40 ) ( 80 -47 40 ) ( 80 -48 41 ) surface_green [ 0 4.371139006309477e-08 -0.999999999999999 -48 ] [ 0 0.999999999999999 4.371139006309477e-08 -32 ] 90 0.5 0.5 +( 80 -48 40 ) ( 80 -48 41 ) ( 81 -48 40 ) skip [ -4.371139006309477e-08 0 -0.999999999999999 -48 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 80 -48 112 ) ( 81 -48 112 ) ( 80 -47 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 32 ] 0 0.5 0.5 +( 112 -16 120 ) ( 112 -15 120 ) ( 113 -16 120 ) skip [ 1 0 0 0 ] [ 0 -1 0 32 ] 0 0.5 0.5 +( 112 256 56 ) ( 113 256 56 ) ( 112 256 57 ) skip [ -1 0 0 0 ] [ 0 0 -1 -56 ] 0 0.5 0.5 +( 88 -16 56 ) ( 88 -16 57 ) ( 88 -15 56 ) surface_green [ 0 1 0 -32 ] [ 0 0 -1 -56 ] 0 0.5 0.5 +} +// brush 116 +{ +( 944 800 0 ) ( 944 801 0 ) ( 944 800 1 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 944 800 0 ) ( 944 800 1 ) ( 945 800 0 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 +( 944 800 0 ) ( 945 800 0 ) ( 944 801 0 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 +( 992 848 16 ) ( 992 849 16 ) ( 993 848 16 ) floor_checkertiles [ 1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.25 0.25 +( 992 1024 16 ) ( 993 1024 16 ) ( 992 1024 17 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 +( 1264 848 16 ) ( 1264 848 17 ) ( 1264 849 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 117 +{ +( 944 800 16 ) ( 944 801 16 ) ( 944 800 17 ) redplaid [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 944 800 16 ) ( 944 800 17 ) ( 945 800 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 944 800 16 ) ( 945 800 16 ) ( 944 801 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 952 840 96 ) ( 952 841 96 ) ( 953 840 96 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 952 824 24 ) ( 953 824 24 ) ( 952 824 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 952 840 24 ) ( 952 840 25 ) ( 952 841 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 118 +{ +( 944 872 16 ) ( 944 873 16 ) ( 944 872 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 +( 944 872 16 ) ( 944 872 17 ) ( 945 872 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 944 872 16 ) ( 945 872 16 ) ( 944 873 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 952 912 112 ) ( 952 913 112 ) ( 953 912 112 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 952 888 24 ) ( 953 888 24 ) ( 952 888 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 952 912 24 ) ( 952 912 25 ) ( 952 913 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 119 +{ +( 944 848 32 ) ( 944 849 32 ) ( 944 848 33 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 +( 944 800 32 ) ( 944 800 33 ) ( 945 800 32 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 944 848 96 ) ( 945 848 96 ) ( 944 849 96 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 952 888 112 ) ( 952 889 112 ) ( 953 888 112 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 952 872 40 ) ( 953 872 40 ) ( 952 872 41 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 952 888 40 ) ( 952 888 41 ) ( 952 889 40 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 120 +{ +( 944 888 16 ) ( 944 889 16 ) ( 944 888 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 +( 944 888 16 ) ( 944 888 17 ) ( 945 888 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 944 888 16 ) ( 945 888 16 ) ( 944 889 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 952 928 48 ) ( 952 929 48 ) ( 953 928 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 952 992 24 ) ( 953 992 24 ) ( 952 992 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 952 928 24 ) ( 952 928 25 ) ( 952 929 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 121 +{ +( 944 888 16 ) ( 944 889 16 ) ( 944 888 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 +( 944 888 16 ) ( 944 888 17 ) ( 945 888 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 944 888 96 ) ( 945 888 96 ) ( 944 889 96 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 952 928 112 ) ( 952 929 112 ) ( 953 928 112 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 952 992 24 ) ( 953 992 24 ) ( 952 992 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 952 928 24 ) ( 952 928 25 ) ( 952 929 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 122 +{ +( 944 992 16 ) ( 944 993 16 ) ( 944 992 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 +( 944 992 16 ) ( 944 992 17 ) ( 945 992 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 944 992 16 ) ( 945 992 16 ) ( 944 993 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 952 1032 112 ) ( 952 1033 112 ) ( 953 1032 112 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 952 1024 24 ) ( 953 1024 24 ) ( 952 1024 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 952 1032 24 ) ( 952 1032 25 ) ( 952 1033 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 123 +{ +( 328 24 48 ) ( 328 58 46 ) ( 328 58 48 ) skip [ 0 -1 0 -12 ] [ 0 0 -1 0 ] 0 1 1 +( 340 24 48 ) ( 328 24 46 ) ( 328 24 48 ) marblewhite [ 1 -0 0 0 ] [ 0 -0 -1 0 ] 0 0.25 0.25 +( 340 58 46 ) ( 328 24 46 ) ( 340 24 46 ) marblewhite [ -1 0 -0 0 ] [ -0 -1 0 0 ] 0 0.25 0.25 +( 340 58 48 ) ( 328 24 48 ) ( 328 58 48 ) marblewhite [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 340 136 48 ) ( 328 136 46 ) ( 340 136 46 ) skip [ -1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 +( 361 58 48 ) ( 361 24 46 ) ( 361 24 48 ) marblewhite [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 124 +{ +( 361 24 48 ) ( 361 58 46 ) ( 361 58 48 ) skip [ 0 -1 0 -12 ] [ 0 0 -1 0 ] 0 1 1 +( 379 103 48 ) ( 367 103 46 ) ( 367 103 48 ) marblewhite [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 379 58 46 ) ( 367 24 46 ) ( 379 24 46 ) marblewhite [ -1 0 0 28 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 379 58 48 ) ( 367 24 48 ) ( 367 58 48 ) marblewhite [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 379 136 48 ) ( 367 136 46 ) ( 379 136 46 ) skip [ -1 0 0 23 ] [ 0 0 -1 0 ] 0 1 1 +( 400 58 48 ) ( 400 24 46 ) ( 400 24 48 ) marblewhite [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 125 +{ +( 448 24 48 ) ( 448 58 46 ) ( 448 58 48 ) marblewhite [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 0.25 0.25 +( 460 -40 48 ) ( 448 -40 46 ) ( 448 -40 48 ) skip [ 1 -0 0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 460 58 46 ) ( 448 24 46 ) ( 460 24 46 ) skip [ -1 0 -0 0 ] [ -0 -1 0 0 ] 0 1 1 +( 460 58 48 ) ( 448 24 48 ) ( 448 58 48 ) marblewhite [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 460 136 48 ) ( 448 136 46 ) ( 460 136 46 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 481 58 48 ) ( 481 24 46 ) ( 481 24 48 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 126 +{ +( 448 24 16 ) ( 448 25 16 ) ( 448 24 17 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 448 104 16 ) ( 448 104 17 ) ( 449 104 16 ) woodpale [ -4.371139006309477e-08 0 -0.999999999999999 0 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.25 0.25 +( 448 24 16 ) ( 449 24 16 ) ( 448 25 16 ) skip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 480 72 46 ) ( 480 73 46 ) ( 481 72 46 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 480 136 24 ) ( 481 136 24 ) ( 480 136 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 480 72 24 ) ( 480 72 25 ) ( 480 73 24 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 127 +{ +( 848 1136 0 ) ( 848 1137 0 ) ( 848 1136 1 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 912 1136 0 ) ( 912 1136 1 ) ( 913 1136 0 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 912 1136 0 ) ( 913 1136 0 ) ( 912 1137 0 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 944 1200 16 ) ( 944 1201 16 ) ( 945 1200 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 944 1664 16 ) ( 945 1664 16 ) ( 944 1664 17 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 90 0.25 0.25 +( 944 1200 16 ) ( 944 1200 17 ) ( 944 1201 16 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 128 +{ +( 952 1216 24 ) ( 952 1217 24 ) ( 952 1216 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1216 24 ) ( 952 1216 25 ) ( 953 1216 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1216 16 ) ( 953 1216 16 ) ( 952 1217 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1224 112 ) ( 968 1225 112 ) ( 969 1224 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1224 32 ) ( 969 1224 32 ) ( 968 1224 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1224 32 ) ( 1304 1224 33 ) ( 1304 1225 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 129 +{ +( 952 1408 24 ) ( 952 1409 24 ) ( 952 1408 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1408 24 ) ( 952 1408 25 ) ( 953 1408 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1408 16 ) ( 953 1408 16 ) ( 952 1409 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1416 112 ) ( 968 1417 112 ) ( 969 1416 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1416 32 ) ( 969 1416 32 ) ( 968 1416 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1416 32 ) ( 1304 1416 33 ) ( 1304 1417 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 130 +{ +( 952 1600 24 ) ( 952 1601 24 ) ( 952 1600 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1600 24 ) ( 952 1600 25 ) ( 953 1600 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1600 16 ) ( 953 1600 16 ) ( 952 1601 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1608 112 ) ( 968 1609 112 ) ( 969 1608 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1608 32 ) ( 969 1608 32 ) ( 968 1608 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1608 32 ) ( 1304 1608 33 ) ( 1304 1609 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 131 +{ +( 952 1024 24 ) ( 952 1025 24 ) ( 952 1024 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1024 24 ) ( 952 1024 25 ) ( 953 1024 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1024 16 ) ( 953 1024 16 ) ( 952 1025 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1032 112 ) ( 968 1033 112 ) ( 969 1032 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1032 32 ) ( 969 1032 32 ) ( 968 1032 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1032 32 ) ( 1304 1032 33 ) ( 1304 1033 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 132 +{ +( 1194 1132 16 ) ( 1194 1133 16 ) ( 1194 1132 17 ) clip [ 0 -1 0 -20 ] [ 0 0 -1 0 ] 180 1 1 +( 1188 1134 16 ) ( 1188 1134 17 ) ( 1189 1134 16 ) clip [ 1 0 0 12 ] [ 0 0 -1 0 ] 180 1 1 +( 1188 1132 16 ) ( 1189 1132 16 ) ( 1188 1133 16 ) clip [ -1 0 0 -12 ] [ 0 -1 0 -20 ] 180 1 1 +( 1284 1228 44 ) ( 1284 1229 44 ) ( 1285 1228 44 ) clip [ 1 0 0 12 ] [ 0 -1 0 -20 ] 180 1 1 +( 1284 1216 32 ) ( 1285 1216 32 ) ( 1284 1216 33 ) clip [ -1 0 0 -12 ] [ 0 0 -1 0 ] 180 1 1 +( 1264 1228 32 ) ( 1264 1228 33 ) ( 1264 1229 32 ) clip [ 0 1 0 20 ] [ 0 0 -1 0 ] 180 1 1 +} +// brush 133 +{ +( 952 1120 16 ) ( 952 1121 16 ) ( 952 1120 17 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 180 0.5 0.5 +( 960 1120 16 ) ( 960 1120 17 ) ( 961 1120 16 ) surface_beige [ 1 0 0 -16 ] [ 0 0 -1 0 ] 180 0.5 0.5 +( 960 1120 16 ) ( 961 1120 16 ) ( 960 1121 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -32 ] 180 0.5 0.5 +( 1008 1128 96 ) ( 1008 1129 96 ) ( 1009 1128 96 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 90 0.5 0.5 +( 1008 1128 24 ) ( 1009 1128 24 ) ( 1008 1128 25 ) surface_beige [ -1 0 0 16 ] [ 0 0 -1 0 ] 180 0.5 0.5 +( 1000 1128 24 ) ( 1000 1128 25 ) ( 1000 1129 24 ) surface_beige_edge [ 0 1 0 0 ] [ 0 0 -1 0 ] 180 0.5 0.5 +} +// brush 134 +{ +( 1082 1132 16 ) ( 1082 1133 16 ) ( 1082 1132 17 ) clip [ 0 -1 0 -20 ] [ 0 0 -1 0 ] 180 1 1 +( 1076 1134 16 ) ( 1076 1134 17 ) ( 1077 1134 16 ) clip [ 1 0 0 -4 ] [ 0 0 -1 0 ] 180 1 1 +( 1076 1132 16 ) ( 1077 1132 16 ) ( 1076 1133 16 ) clip [ -1 0 0 4 ] [ 0 -1 0 -20 ] 180 1 1 +( 1172 1228 44 ) ( 1172 1229 44 ) ( 1173 1228 44 ) clip [ 1 0 0 -4 ] [ 0 -1 0 -20 ] 180 1 1 +( 1172 1216 32 ) ( 1173 1216 32 ) ( 1172 1216 33 ) clip [ -1 0 0 4 ] [ 0 0 -1 0 ] 180 1 1 +( 1152 1228 32 ) ( 1152 1228 33 ) ( 1152 1229 32 ) clip [ 0 1 0 20 ] [ 0 0 -1 0 ] 180 1 1 +} +// brush 135 +{ +( 1000 1120 32 ) ( 1000 1121 32 ) ( 1000 1120 33 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 32 ] 0 0.5 0.5 +( 1008 1120 32 ) ( 1008 1120 33 ) ( 1009 1120 32 ) surface_beige [ 1 0 0 -16 ] [ 0 0 -1 32 ] 0 0.5 0.5 +( 1008 1120 96 ) ( 1009 1120 96 ) ( 1008 1121 96 ) surface_beige_edge [ 4.371138994063005e-08 0.9999999999999989 0 0 ] [ -0.9999999999999989 4.371138994063005e-08 0 16 ] 270 0.5 0.5 +( 1056 1128 112 ) ( 1056 1129 112 ) ( 1057 1128 112 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 1056 1128 40 ) ( 1057 1128 40 ) ( 1056 1128 41 ) surface_beige [ -1 0 0 16 ] [ 0 0 -1 32 ] 0 0.5 0.5 +( 1048 1128 40 ) ( 1048 1128 41 ) ( 1048 1129 40 ) skip [ 0 1 0 32 ] [ 0 0 -1 32 ] 0 0.5 0.5 +} +// brush 136 +{ +( 1156 1196 16 ) ( 1156 1197 16 ) ( 1156 1196 17 ) clip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 1156 1196 16 ) ( 1156 1196 17 ) ( 1157 1196 16 ) clip [ 1 0 0 -32 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 1156 1196 16 ) ( 1157 1196 16 ) ( 1156 1197 16 ) clip [ -1 0 0 32 ] [ 0 -1 0 0 ] 180 0.25 0.25 +( 1188 1216 34 ) ( 1188 1217 34 ) ( 1189 1216 34 ) clip [ 1 0 0 -32 ] [ 0 -1 0 0 ] 180 0.25 0.25 +( 1188 1216 20 ) ( 1189 1216 20 ) ( 1188 1216 21 ) clip [ -1 0 0 32 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 1190 1216 20 ) ( 1190 1216 21 ) ( 1190 1217 20 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 180 0.25 0.25 +} +// brush 137 +{ +( 952 1024 0 ) ( 952 1025 0 ) ( 952 1024 1 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 -32 ] 180 0.5 0.5 +( 1032 1032 0 ) ( 1032 1032 1 ) ( 1033 1032 0 ) skip [ 1 0 0 16 ] [ 0 0 -1 -32 ] 180 0.5 0.5 +( 1032 1024 0 ) ( 1033 1024 0 ) ( 1032 1025 0 ) skip [ -1 0 0 -16 ] [ 0 -1 0 -32 ] 180 0.5 0.5 +( 1064 1072 16 ) ( 1064 1073 16 ) ( 1065 1072 16 ) carpet_dullgreen [ 1 0 0 80 ] [ 0 -1 0 -96 ] 180 0.5 0.5 +( 1064 1216 16 ) ( 1065 1216 16 ) ( 1064 1216 17 ) skip [ -1 0 0 -16 ] [ 0 0 -1 -32 ] 180 0.5 0.5 +( 1304 1072 16 ) ( 1304 1072 17 ) ( 1304 1073 16 ) skip [ 0 1 0 32 ] [ 0 0 -1 -32 ] 180 0.5 0.5 +} +// brush 138 +{ +( 1136 1032 16 ) ( 1136 1033 16 ) ( 1136 1032 17 ) clip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 1112 1032 16 ) ( 1112 1032 17 ) ( 1113 1032 16 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 1112 1032 16 ) ( 1113 1032 16 ) ( 1112 1033 16 ) clip [ -1 0 0 0 ] [ 0 -1 0 0 ] 180 0.25 0.25 +( 1184 1064 48 ) ( 1184 1065 48 ) ( 1185 1064 48 ) clip [ 1 0 0 0 ] [ 0 -1 0 0 ] 180 0.25 0.25 +( 1184 1056 24 ) ( 1185 1056 24 ) ( 1184 1056 25 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 1200 1064 24 ) ( 1200 1064 25 ) ( 1200 1065 24 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 180 0.25 0.25 +} +// brush 139 +{ +( 1048 1168 48 ) ( 1048 1169 48 ) ( 1048 1168 49 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 1048 1120 48 ) ( 1048 1120 49 ) ( 1049 1120 48 ) surface_beige_edge [ -0.9999999999999961 0 8.742278000372473e-08 0 ] [ 8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 +( 1048 1168 96 ) ( 1049 1168 96 ) ( 1048 1169 96 ) skip [ -1 0 0 16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 1056 1208 112 ) ( 1056 1209 112 ) ( 1057 1208 112 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 1056 1128 56 ) ( 1057 1128 56 ) ( 1056 1128 57 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 1056 1208 56 ) ( 1056 1208 57 ) ( 1056 1209 56 ) surface_beige_edge [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 140 +{ +( 1048 1176 16 ) ( 1048 1177 16 ) ( 1048 1176 17 ) surface_beige [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 180 0.5 0.5 +( 1048 1128 16 ) ( 1048 1128 17 ) ( 1049 1128 16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 180 0.5 0.5 +( 1048 1176 16 ) ( 1049 1176 16 ) ( 1048 1177 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -32 ] 180 0.5 0.5 +( 1056 1216 112 ) ( 1056 1217 112 ) ( 1057 1216 112 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 90 0.5 0.5 +( 1056 1216 24 ) ( 1057 1216 24 ) ( 1056 1216 25 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 180 0.5 0.5 +( 1056 1216 24 ) ( 1056 1216 25 ) ( 1056 1217 24 ) surface_beige [ 0 1 0 32 ] [ 0 0 -1 0 ] 180 0.5 0.5 +} +// brush 141 +{ +( 952 1120 32 ) ( 952 1121 32 ) ( 952 1120 33 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 32 ] 0 0.5 0.5 +( 952 1120 32 ) ( 952 1120 33 ) ( 953 1120 32 ) surface_beige [ 1 0 0 32 ] [ 0 0 -1 32 ] 0 0.5 0.5 +( 952 1120 96 ) ( 953 1120 96 ) ( 952 1121 96 ) skip [ -1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 1000 1128 112 ) ( 1000 1129 112 ) ( 1001 1128 112 ) skip [ 1 0 0 32 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 1000 1128 40 ) ( 1001 1128 40 ) ( 1000 1128 41 ) surface_beige [ -1 0 0 -32 ] [ 0 0 -1 32 ] 0 0.5 0.5 +( 1000 1128 40 ) ( 1000 1128 41 ) ( 1000 1129 40 ) skip [ 0 1 0 32 ] [ 0 0 -1 32 ] 0 0.5 0.5 +} +// brush 142 +{ +( 1048 1168 16 ) ( 1048 1169 16 ) ( 1048 1168 17 ) surface_beige_edge [ 0 0.9999999999999961 8.742278000372473e-08 0 ] [ 0 -8.742278000372473e-08 0.9999999999999961 0 ] 0 0.5 0.5 +( 1048 1120 16 ) ( 1048 1120 17 ) ( 1049 1120 16 ) surface_beige_edge [ -0.9999999999999961 0 8.742278000372473e-08 0 ] [ 8.742278000372473e-08 0 0.9999999999999961 0 ] 0 0.5 0.5 +( 1048 1168 16 ) ( 1049 1168 16 ) ( 1048 1169 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -32 ] 180 0.5 0.5 +( 1056 1208 96 ) ( 1056 1209 96 ) ( 1057 1208 96 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 90 0.5 0.5 +( 1056 1128 24 ) ( 1057 1128 24 ) ( 1056 1128 25 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 180 0.5 0.5 +( 1056 1208 24 ) ( 1056 1208 25 ) ( 1056 1209 24 ) surface_beige_edge [ 0 1 0 0 ] [ 0 0 -1 0 ] 180 0.5 0.5 +} +// brush 143 +{ +( 944 1032 8 ) ( 944 1033 8 ) ( 944 1032 9 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1024 8 ) ( 936 1024 9 ) ( 937 1024 8 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1032 8 ) ( 937 1032 8 ) ( 936 1033 8 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1064 16 ) ( 952 1065 16 ) ( 953 1064 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1664 16 ) ( 953 1664 16 ) ( 952 1664 17 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1064 16 ) ( 952 1064 17 ) ( 952 1065 16 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 144 +{ +( 1304 1024 24 ) ( 1304 1025 24 ) ( 1304 1024 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 960 1032 24 ) ( 960 1032 25 ) ( 961 1032 24 ) grid_white [ 1 0 0 -32 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 960 1024 16 ) ( 961 1024 16 ) ( 960 1025 16 ) grid_white [ 1 0 0 -32 ] [ 0 -1 0 0 ] 90 0.25 0.25 +( 976 1032 112 ) ( 976 1033 112 ) ( 977 1032 112 ) grid_white [ 1 0 0 -32 ] [ 0 -1 0 0 ] 270 0.25 0.25 +( 976 1216 32 ) ( 977 1216 32 ) ( 976 1216 33 ) grid_white [ 1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1032 32 ) ( 1312 1032 33 ) ( 1312 1033 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 270 0.25 0.25 +} +} +// entity 1 +{ +"classname" "func_transparent" +// brush 0 +{ +( 82 246 52 ) ( 82 247 52 ) ( 82 246 53 ) glass [ 0 -1 0 0 ] [ -0 -0 -1 -24 ] 0 0.5 0.5 +( 82 168 52 ) ( 82 168 53 ) ( 83 168 52 ) glass [ 1 0 -0 0 ] [ 0 -0 -1 -24 ] 0 0.5 0.5 +( 82 246 52 ) ( 83 246 52 ) ( 82 247 52 ) glass [ -1 0 0 0 ] [ -0 -1 -0 -24 ] 0 0.5 0.5 +( 84 256 96 ) ( 84 257 96 ) ( 85 256 96 ) glass [ 1 0 0 0 ] [ 0 -1 0 -24 ] 0 0.5 0.5 +( 84 256 54 ) ( 85 256 54 ) ( 84 256 55 ) glass [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 84 256 54 ) ( 84 256 55 ) ( 84 257 54 ) glass [ 0 1 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +} +// brush 1 +{ +( 88 260 52 ) ( 88 261 52 ) ( 88 260 53 ) glass [ 0 -1 0 0 ] [ -0 -0 -1 -24 ] 0 0.5 0.5 +( 148 260 52 ) ( 148 260 53 ) ( 149 260 52 ) glass [ 1 0 -0 0 ] [ 0 -0 -1 -24 ] 0 0.5 0.5 +( 148 260 52 ) ( 149 260 52 ) ( 148 261 52 ) glass [ -1 0 0 0 ] [ -0 -1 -0 -24 ] 0 0.5 0.5 +( 160 262 96 ) ( 160 263 96 ) ( 161 262 96 ) glass [ 1 0 0 0 ] [ 0 -1 0 -24 ] 0 0.5 0.5 +( 160 262 54 ) ( 161 262 54 ) ( 160 262 55 ) glass [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 144 262 54 ) ( 144 262 55 ) ( 144 263 54 ) glass [ 0 1 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +} +// brush 2 +{ +( 224 260 52 ) ( 224 261 52 ) ( 224 260 53 ) glass [ 0 -1 0 0 ] [ -0 -0 -1 -24 ] 0 0.5 0.5 +( 284 260 52 ) ( 284 260 53 ) ( 285 260 52 ) glass [ 1 0 -0 0 ] [ 0 -0 -1 -24 ] 0 0.5 0.5 +( 284 260 52 ) ( 285 260 52 ) ( 284 261 52 ) glass [ -1 0 0 0 ] [ -0 -1 -0 -24 ] 0 0.5 0.5 +( 296 262 96 ) ( 296 263 96 ) ( 297 262 96 ) glass [ 1 0 0 0 ] [ 0 -1 0 -24 ] 0 0.5 0.5 +( 296 262 54 ) ( 297 262 54 ) ( 296 262 55 ) glass [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 296 262 54 ) ( 296 262 55 ) ( 296 263 54 ) glass [ 0 1 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +} +// brush 3 +{ +( 82 136 52 ) ( 82 137 52 ) ( 82 136 53 ) glass [ 0 -1 0 0 ] [ -0 -0 -1 -24 ] 0 0.5 0.5 +( 82 56 52 ) ( 82 56 53 ) ( 83 56 52 ) glass [ 1 0 -0 0 ] [ 0 -0 -1 -24 ] 0 0.5 0.5 +( 82 136 52 ) ( 83 136 52 ) ( 82 137 52 ) glass [ -1 0 0 0 ] [ -0 -1 -0 -24 ] 0 0.5 0.5 +( 84 146 96 ) ( 84 147 96 ) ( 85 146 96 ) glass [ 1 0 0 0 ] [ 0 -1 0 -24 ] 0 0.5 0.5 +( 84 160 54 ) ( 85 160 54 ) ( 84 160 55 ) glass [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 84 146 54 ) ( 84 146 55 ) ( 84 147 54 ) glass [ 0 1 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +} +// brush 4 +{ +( 82 24 52 ) ( 82 25 52 ) ( 82 24 53 ) glass [ 0 -1 0 0 ] [ -0 -0 -1 -24 ] 0 0.5 0.5 +( 82 -48 52 ) ( 82 -48 53 ) ( 83 -48 52 ) glass [ 1 0 -0 0 ] [ 0 -0 -1 -24 ] 0 0.5 0.5 +( 82 24 52 ) ( 83 24 52 ) ( 82 25 52 ) glass [ -1 0 0 0 ] [ -0 -1 -0 -24 ] 0 0.5 0.5 +( 84 34 96 ) ( 84 35 96 ) ( 85 34 96 ) glass [ 1 0 0 0 ] [ 0 -1 0 -24 ] 0 0.5 0.5 +( 84 48 54 ) ( 85 48 54 ) ( 84 48 55 ) glass [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 84 34 54 ) ( 84 34 55 ) ( 84 35 54 ) glass [ 0 1 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +} +// brush 5 +{ +( 88 -54 52 ) ( 88 -53 52 ) ( 88 -54 53 ) glass [ 0 -1 0 0 ] [ -0 -0 -1 -24 ] 0 0.5 0.5 +( 88 -54 52 ) ( 88 -54 53 ) ( 89 -54 52 ) glass [ 1 0 -0 0 ] [ 0 -0 -1 -24 ] 0 0.5 0.5 +( 88 -54 52 ) ( 89 -54 52 ) ( 88 -53 52 ) glass [ -1 0 0 0 ] [ -0 -1 -0 -24 ] 0 0.5 0.5 +( 96 -52 96 ) ( 96 -51 96 ) ( 97 -52 96 ) glass [ 1 0 0 0 ] [ 0 -1 0 -24 ] 0 0.5 0.5 +( 96 -52 54 ) ( 97 -52 54 ) ( 96 -52 55 ) glass [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 224 -52 54 ) ( 224 -52 55 ) ( 224 -51 54 ) glass [ 0 1 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 } } diff --git a/maps/autosave/cafemotel.3.map.import b/maps/autosave/cafemotel.3.map.import deleted file mode 100644 index 54141f2..0000000 --- a/maps/autosave/cafemotel.3.map.import +++ /dev/null @@ -1,14 +0,0 @@ -[remap] - -importer="func_godot.map" -type="Resource" -uid="uid://y1sbcu02ea5d" -path="res://.godot/imported/cafemotel.3.map-6d42229b7fe491fa2ece872b8b10319b.tres" - -[deps] - -source_file="res://maps/autosave/cafemotel.3.map" -dest_files=["res://.godot/imported/cafemotel.3.map-6d42229b7fe491fa2ece872b8b10319b.tres"] - -[params] - diff --git a/maps/autosave/cafemotel.4.map b/maps/autosave/cafemotel.4.map index a97ffc5..05f15f4 100644 --- a/maps/autosave/cafemotel.4.map +++ b/maps/autosave/cafemotel.4.map @@ -1,4 +1,4 @@ -// Game: maskmaker +// Game: That Wretched Shadow // Format: Valve // entity 0 { @@ -6,59 +6,23 @@ "classname" "worldspawn" // brush 0 { -( -16 -64 -16 ) ( -16 -63 -16 ) ( -16 -64 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( -64 -64 -16 ) ( -64 -64 -15 ) ( -63 -64 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( -64 -64 -16 ) ( -63 -64 -16 ) ( -64 -63 -16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 64 64 16 ) ( 64 65 16 ) ( 65 64 16 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 64 64 16 ) ( 65 64 16 ) ( 64 64 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 784 64 16 ) ( 784 64 17 ) ( 784 65 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( -16 -184 -16 ) ( -16 -183 -16 ) ( -16 -184 -15 ) skip [ 0 -1 0 32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( -64 -184 -16 ) ( -64 -184 -15 ) ( -63 -184 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( -64 -184 -16 ) ( -63 -184 -16 ) ( -64 -183 -16 ) skip [ -1 0 0 0 ] [ 0 -1 0 32 ] 0 0.25 0.25 +( 64 -56 16 ) ( 64 -55 16 ) ( 65 -56 16 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 -1 0 120 ] 0 0.25 0.25 +( 64 -56 16 ) ( 65 -56 16 ) ( 64 -56 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 784 -56 16 ) ( 784 -56 17 ) ( 784 -55 16 ) skip [ 0 1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 } // brush 1 { -( 80 64 0 ) ( 80 65 0 ) ( 80 64 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 64 0 ) ( 80 64 1 ) ( 81 64 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 64 16 ) ( 81 64 16 ) ( 80 65 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 96 52 ) ( 112 97 52 ) ( 113 96 52 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 72 16 ) ( 113 72 16 ) ( 112 72 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 224 96 16 ) ( 224 96 17 ) ( 224 97 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 2 -{ -( 224 64 0 ) ( 224 65 0 ) ( 224 64 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 224 64 0 ) ( 224 64 1 ) ( 225 64 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 224 64 16 ) ( 225 64 16 ) ( 224 65 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 256 96 96 ) ( 256 97 96 ) ( 257 96 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 256 72 16 ) ( 257 72 16 ) ( 256 72 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 312 96 16 ) ( 312 96 17 ) ( 312 97 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 3 -{ -( 80 64 -8 ) ( 80 65 -8 ) ( 80 64 -7 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 16 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 176 64 -8 ) ( 176 64 -7 ) ( 177 64 -8 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 16 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 176 64 96 ) ( 177 64 96 ) ( 176 65 96 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 208 96 104 ) ( 208 97 104 ) ( 209 96 104 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 208 72 8 ) ( 209 72 8 ) ( 208 72 9 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 312 96 8 ) ( 312 96 9 ) ( 312 97 8 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 4 -{ -( 80 64 0 ) ( 80 65 0 ) ( 80 64 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 64 0 ) ( 80 64 1 ) ( 81 64 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 64 48 ) ( 81 64 48 ) ( 80 65 48 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 96 96 ) ( 112 97 96 ) ( 113 96 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 72 16 ) ( 113 72 16 ) ( 112 72 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 88 96 16 ) ( 88 96 17 ) ( 88 97 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 5 -{ ( 80 72 0 ) ( 80 73 0 ) ( 80 72 1 ) surface_green [ 0 4.371139006309477e-08 -0.999999999999999 32 ] [ 0 0.999999999999999 4.371139006309477e-08 24 ] 90 0.5 0.5 -( 80 72 0 ) ( 80 72 1 ) ( 81 72 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 -48 0 ) ( 80 -48 1 ) ( 81 -48 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 80 72 16 ) ( 81 72 16 ) ( 80 73 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 112 104 52 ) ( 112 105 52 ) ( 113 104 52 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 112 256 16 ) ( 113 256 16 ) ( 112 256 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 88 104 16 ) ( 88 104 17 ) ( 88 105 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 6 +// brush 2 { ( 80 256 0 ) ( 80 257 0 ) ( 80 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 80 256 0 ) ( 80 256 1 ) ( 81 256 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 @@ -67,7 +31,7 @@ ( 112 264 16 ) ( 113 264 16 ) ( 112 264 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 88 288 16 ) ( 88 288 17 ) ( 88 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 7 +// brush 3 { ( 80 256 -8 ) ( 80 257 -8 ) ( 80 256 -7 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 16 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 ( 176 256 -8 ) ( 176 256 -7 ) ( 177 256 -8 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 @@ -76,16 +40,16 @@ ( 208 264 8 ) ( 209 264 8 ) ( 208 264 9 ) surface_green_edge [ 4.371139006309477e-08 0 -0.999999999999999 16 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 ( 312 288 8 ) ( 312 288 9 ) ( 312 289 8 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 } -// brush 8 +// brush 4 { ( 80 72 72 ) ( 80 73 72 ) ( 80 72 73 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 16 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 72 72 ) ( 80 72 73 ) ( 81 72 72 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 +( 80 -48 72 ) ( 80 -48 73 ) ( 81 -48 72 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 ( 80 72 96 ) ( 81 72 96 ) ( 80 73 96 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 112 104 104 ) ( 112 105 104 ) ( 113 104 104 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 112 256 88 ) ( 113 256 88 ) ( 112 256 89 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 ( 88 104 88 ) ( 88 104 89 ) ( 88 105 88 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 } -// brush 9 +// brush 5 { ( 88 256 0 ) ( 88 257 0 ) ( 88 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 80 256 0 ) ( 80 256 1 ) ( 81 256 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 @@ -94,7 +58,7 @@ ( 112 264 16 ) ( 113 264 16 ) ( 112 264 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 144 288 16 ) ( 144 288 17 ) ( 144 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 10 +// brush 6 { ( 144 256 0 ) ( 144 257 0 ) ( 144 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 144 256 0 ) ( 144 256 1 ) ( 145 256 0 ) surface_green [ 1 0 0 32 ] [ 0 0 -1 -16 ] 0 0.5 0.5 @@ -103,7 +67,7 @@ ( 176 264 16 ) ( 177 264 16 ) ( 176 264 17 ) surface_green [ -1 0 0 -32 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 160 288 16 ) ( 160 288 17 ) ( 160 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 11 +// brush 7 { ( 208 256 0 ) ( 208 257 0 ) ( 208 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 208 256 0 ) ( 208 256 1 ) ( 209 256 0 ) surface_green [ 1 0 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 @@ -112,25 +76,25 @@ ( 240 264 16 ) ( 241 264 16 ) ( 240 264 17 ) surface_green [ -1 0 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 224 288 16 ) ( 224 288 17 ) ( 224 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 12 +// brush 8 { ( 88 128 8 ) ( 88 129 8 ) ( 88 128 9 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 88 72 8 ) ( 88 72 9 ) ( 89 72 8 ) skip [ 1 0 0 0 ] [ 0 0 -1 -8 ] 0 0.25 0.25 +( 88 -56 8 ) ( 88 -56 9 ) ( 89 -56 8 ) skip [ 1 0 0 0 ] [ 0 0 -1 -8 ] 0 0.25 0.25 ( 88 128 8 ) ( 89 128 8 ) ( 88 129 8 ) skip [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.25 0.25 ( 128 176 16 ) ( 128 177 16 ) ( 129 176 16 ) floor_wood [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.25 0.25 ( 128 264 16 ) ( 129 264 16 ) ( 128 264 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 -8 ] 0 0.25 0.25 ( 320 176 16 ) ( 320 176 17 ) ( 320 177 16 ) skip [ 0 1 0 56 ] [ 0 0 -1 -8 ] 0 0.25 0.25 } -// brush 13 +// brush 9 { ( -16 64 -16 ) ( -16 65 -16 ) ( -16 64 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( -64 64 -16 ) ( -64 64 -15 ) ( -63 64 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( -64 -56 -16 ) ( -64 -56 -15 ) ( -63 -56 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( -64 64 -16 ) ( -63 64 -16 ) ( -64 65 -16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 64 192 16 ) ( 64 193 16 ) ( 65 192 16 ) ground_cobblestone1 [ -4.371139006309477e-08 -0.999999999999999 0 0 ] [ -0.999999999999999 4.371139006309477e-08 0 106 ] 90 0.25 0.25 ( 64 264 16 ) ( 65 264 16 ) ( 64 264 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 80 192 16 ) ( 80 192 17 ) ( 80 193 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 14 +// brush 10 { ( 72 72 88 ) ( 72 73 88 ) ( 72 72 89 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 16 ] 90 0.5 0.5 ( 80 256 88 ) ( 80 256 89 ) ( 81 256 88 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 @@ -139,25 +103,16 @@ ( 112 272 104 ) ( 113 272 104 ) ( 112 272 105 ) surface_green_edge [ 4.371139006309477e-08 0 -0.999999999999999 -32 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 ( 312 104 104 ) ( 312 104 105 ) ( 312 105 104 ) surface_green_edge [ 0 -4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 -0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 } -// brush 15 -{ -( 72 -128 88 ) ( 72 -127 88 ) ( 72 -128 89 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 16 ] 90 0.5 0.5 -( 80 56 88 ) ( 80 56 89 ) ( 81 56 88 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 -32 ] [ -0.999999999999999 0 4.371139006309477e-08 16 ] 90 0.5 0.5 -( 80 -128 104 ) ( 81 -128 104 ) ( 80 -127 104 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 -( 112 -96 112 ) ( 112 -95 112 ) ( 113 -96 112 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 -( 112 72 104 ) ( 113 72 104 ) ( 112 72 105 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 -( 312 -96 104 ) ( 312 -96 105 ) ( 312 -95 104 ) surface_green_edge [ 0 -4.371139006309477e-08 -0.999999999999999 32 ] [ 0 -0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -} -// brush 16 +// brush 11 { ( 72 -112 88 ) ( 72 -111 88 ) ( 72 -112 89 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 16 ] 90 0.5 0.5 -( 80 72 88 ) ( 80 72 89 ) ( 81 72 88 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 80 -48 88 ) ( 80 -48 89 ) ( 81 -48 88 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 ( 80 -112 104 ) ( 81 -112 104 ) ( 80 -111 104 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 ( 112 -80 112 ) ( 112 -79 112 ) ( 113 -80 112 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 ( 112 256 104 ) ( 113 256 104 ) ( 112 256 105 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 ( 88 -80 104 ) ( 88 -80 105 ) ( 88 -79 104 ) surface_green [ 0 1 0 -8 ] [ 0 0 -1 -24 ] 0 0.5 0.5 } -// brush 17 +// brush 12 { ( 72 72 128 ) ( 72 73 128 ) ( 72 72 129 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 ( 80 256 128 ) ( 80 256 129 ) ( 81 256 128 ) skip [ 1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 @@ -166,70 +121,43 @@ ( 112 272 144 ) ( 113 272 144 ) ( 112 272 145 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 ( 312 104 144 ) ( 312 104 145 ) ( 312 105 144 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 } -// brush 18 +// brush 13 { ( 72 -112 128 ) ( 72 -111 128 ) ( 72 -112 129 ) surface_green [ 0 -1 0 8 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 80 72 128 ) ( 80 72 129 ) ( 81 72 128 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 80 -48 128 ) ( 80 -48 129 ) ( 81 -48 128 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 80 -112 144 ) ( 81 -112 144 ) ( 80 -111 144 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 ( 112 -80 152 ) ( 112 -79 152 ) ( 113 -80 152 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 112 256 144 ) ( 113 256 144 ) ( 112 256 145 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 88 -80 144 ) ( 88 -80 145 ) ( 88 -79 144 ) skip [ 0 1 0 -8 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 19 +// brush 14 { -( 72 -128 128 ) ( 72 -127 128 ) ( 72 -128 129 ) surface_green [ 0 -1 0 -8 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 80 56 128 ) ( 80 56 129 ) ( 81 56 128 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 80 -128 144 ) ( 81 -128 144 ) ( 80 -127 144 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 -( 112 -96 152 ) ( 112 -95 152 ) ( 113 -96 152 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 72 144 ) ( 113 72 144 ) ( 112 72 145 ) skip [ -1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 312 -96 144 ) ( 312 -96 145 ) ( 312 -95 144 ) surface_green [ 0 1 0 8 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -} -// brush 20 -{ -( 80 64 48 ) ( 80 65 48 ) ( 80 64 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 64 48 ) ( 80 64 49 ) ( 81 64 48 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 -32 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 64 112 ) ( 81 64 112 ) ( 80 65 112 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 96 144 ) ( 112 97 144 ) ( 113 96 144 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 72 64 ) ( 113 72 64 ) ( 112 72 65 ) skip [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 312 96 64 ) ( 312 96 65 ) ( 312 97 64 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 21 -{ -( 80 256 48 ) ( 80 257 48 ) ( 80 256 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -31.999985 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 80 256 48 ) ( 80 257 48 ) ( 80 256 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -31.99997 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 ( 80 256 48 ) ( 80 256 49 ) ( 81 256 48 ) skip [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 80 256 112 ) ( 81 256 112 ) ( 80 257 112 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 80 256 120 ) ( 81 256 120 ) ( 80 257 120 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 112 288 144 ) ( 112 289 144 ) ( 113 288 144 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 264 64 ) ( 113 264 64 ) ( 112 264 65 ) surface_green_edge [ 4.371139006309477e-08 0 -0.999999999999999 -31.999985 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 112 264 64 ) ( 113 264 64 ) ( 112 264 65 ) surface_green_edge [ 4.371139006309477e-08 0 -0.999999999999999 -31.99997 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 ( 312 288 64 ) ( 312 288 65 ) ( 312 289 64 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 } -// brush 22 +// brush 15 { ( 80 248 48 ) ( 80 249 48 ) ( 80 248 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32.000015 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 72 48 ) ( 80 72 49 ) ( 81 72 48 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 80 248 112 ) ( 81 248 112 ) ( 80 249 112 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 +( 80 -48 48 ) ( 80 -48 49 ) ( 81 -48 48 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 +( 80 248 120 ) ( 81 248 120 ) ( 80 249 120 ) skip [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 ( 112 280 144 ) ( 112 281 144 ) ( 113 280 144 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 ( 112 256 64 ) ( 113 256 64 ) ( 112 256 65 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 ( 88 280 64 ) ( 88 280 65 ) ( 88 281 64 ) skip [ 0 1 0 8 ] [ 0 0 -1 -40 ] 0 0.5 0.5 } -// brush 23 +// brush 16 { -( 88 128 104 ) ( 88 129 104 ) ( 88 128 105 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 56 ] 0 0.25 0.25 -( 88 72 104 ) ( 88 72 105 ) ( 89 72 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 56 ] 0 0.25 0.25 -( 88 128 104 ) ( 89 128 104 ) ( 88 129 104 ) ground_wood [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.5 0.5 -( 128 176 112 ) ( 128 177 112 ) ( 129 176 112 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.25 0.25 -( 128 256 112 ) ( 129 256 112 ) ( 128 256 113 ) skip [ -1 0 0 0 ] [ 0 0 -1 56 ] 0 0.25 0.25 -( 312 176 112 ) ( 312 176 113 ) ( 312 177 112 ) skip [ 0 1 0 56 ] [ 0 0 -1 56 ] 0 0.25 0.25 +( 88 128 120 ) ( 88 129 120 ) ( 88 128 121 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 56 ] 0 0.25 0.25 +( 88 -48 120 ) ( 88 -48 121 ) ( 89 -48 120 ) skip [ 1 0 0 0 ] [ 0 0 -1 56 ] 0 0.25 0.25 +( 88 128 120 ) ( 89 128 120 ) ( 88 129 120 ) ground_wood [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.5 0.5 +( 128 176 128 ) ( 128 177 128 ) ( 129 176 128 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.25 0.25 +( 128 256 128 ) ( 129 256 128 ) ( 128 256 129 ) skip [ -1 0 0 0 ] [ 0 0 -1 56 ] 0 0.25 0.25 +( 312 176 128 ) ( 312 176 129 ) ( 312 177 128 ) skip [ 0 1 0 56 ] [ 0 0 -1 56 ] 0 0.25 0.25 } -// brush 24 -{ -( 224 72 16 ) ( 224 73 16 ) ( 224 72 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 224 72 16 ) ( 224 72 17 ) ( 225 72 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 224 72 16 ) ( 225 72 16 ) ( 224 73 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 248 160 48 ) ( 248 161 48 ) ( 249 160 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 248 184 24 ) ( 249 184 24 ) ( 248 184 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 248 160 24 ) ( 248 160 25 ) ( 248 161 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 25 +// brush 17 { ( 224 256 0 ) ( 224 257 0 ) ( 224 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 216 256 0 ) ( 216 256 1 ) ( 217 256 0 ) surface_green [ 1 0 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 @@ -238,7 +166,7 @@ ( 248 264 16 ) ( 249 264 16 ) ( 248 264 17 ) surface_green [ -1 0 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 296 288 16 ) ( 296 288 17 ) ( 296 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 26 +// brush 18 { ( 296 256 0 ) ( 296 257 0 ) ( 296 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 296 256 0 ) ( 296 256 1 ) ( 297 256 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 @@ -247,61 +175,52 @@ ( 328 264 16 ) ( 329 264 16 ) ( 328 264 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 312 288 16 ) ( 312 288 17 ) ( 312 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 27 -{ -( 224 128 16 ) ( 224 129 16 ) ( 224 128 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 224 224 16 ) ( 224 224 17 ) ( 225 224 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 224 128 16 ) ( 225 128 16 ) ( 224 129 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 248 216 48 ) ( 248 217 48 ) ( 249 216 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 248 256 24 ) ( 249 256 24 ) ( 248 256 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 312 216 24 ) ( 312 216 25 ) ( 312 217 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 28 +// brush 19 { ( 640 64 0 ) ( 640 65 0 ) ( 640 64 1 ) skip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 0.5 0.5 -( 640 64 0 ) ( 640 64 1 ) ( 641 64 0 ) skip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 0.5 0.5 +( 640 -56 0 ) ( 640 -56 1 ) ( 641 -56 0 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 640 64 0 ) ( 641 64 0 ) ( 640 65 0 ) skip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 0.5 0.5 ( 656 112 16 ) ( 656 113 16 ) ( 657 112 16 ) ground_cobblestone1 [ -4.371139006309477e-08 -0.999999999999999 0 0 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.25 0.25 ( 656 264 16 ) ( 657 264 16 ) ( 656 264 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 736 112 16 ) ( 736 112 17 ) ( 736 113 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 29 +// brush 20 { ( 736 72 16 ) ( 736 73 16 ) ( 736 72 17 ) wall_brick_scrungly [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 472 64 16 ) ( 472 64 17 ) ( 473 64 16 ) wall_brick_scrungly [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 472 -56 16 ) ( 472 -56 17 ) ( 473 -56 16 ) wall_brick_scrungly [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 472 72 16 ) ( 473 72 16 ) ( 472 73 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 504 104 96 ) ( 504 105 96 ) ( 505 104 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 504 264 32 ) ( 505 264 32 ) ( 504 264 33 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 784 104 32 ) ( 784 104 33 ) ( 784 105 32 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 30 +// brush 21 { ( 640 64 96 ) ( 640 65 96 ) ( 640 64 97 ) skip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 0.25 0.25 -( 640 64 96 ) ( 640 64 97 ) ( 641 64 96 ) wall_brick [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 0.25 0.25 +( 640 -56 96 ) ( 640 -56 97 ) ( 641 -56 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 640 64 96 ) ( 641 64 96 ) ( 640 65 96 ) wall_brick_scrungly [ 4.371139006309477e-08 -0.999999999999999 0 0 ] [ 0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.25 0.25 ( 656 112 256 ) ( 656 113 256 ) ( 657 112 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 656 264 112 ) ( 657 264 112 ) ( 656 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 736 112 112 ) ( 736 112 113 ) ( 736 113 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 31 +// brush 22 { ( 736 72 96 ) ( 736 73 96 ) ( 736 72 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 472 64 96 ) ( 472 64 97 ) ( 473 64 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 472 -56 96 ) ( 472 -56 97 ) ( 473 -56 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 472 72 96 ) ( 473 72 96 ) ( 472 73 96 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 504 104 256 ) ( 504 105 256 ) ( 505 104 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 504 264 112 ) ( 505 264 112 ) ( 504 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 784 104 112 ) ( 784 104 113 ) ( 784 105 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 32 +// brush 23 { -( 312 64 96 ) ( 312 65 96 ) ( 312 64 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 368 64 96 ) ( 368 64 97 ) ( 369 64 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 368 64 104 ) ( 369 64 104 ) ( 368 65 104 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 400 96 256 ) ( 400 97 256 ) ( 401 96 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 400 72 112 ) ( 401 72 112 ) ( 400 72 113 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 96 112 ) ( 640 96 113 ) ( 640 97 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 139 ] 0 0.25 0.25 +( 312 -56 96 ) ( 312 -55 96 ) ( 312 -56 97 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 368 -56 96 ) ( 368 -56 97 ) ( 369 -56 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 368 -56 104 ) ( 369 -56 104 ) ( 368 -55 104 ) skip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.25 0.25 +( 400 -24 256 ) ( 400 -23 256 ) ( 401 -24 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.25 0.25 +( 400 -48 112 ) ( 401 -48 112 ) ( 400 -48 113 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 640 -24 112 ) ( 640 -24 113 ) ( 640 -23 112 ) skip [ 0 1 0 32 ] [ 0 0 -1 11 ] 0 0.25 0.25 } -// brush 33 +// brush 24 { ( -16 264 -16 ) ( -16 265 -16 ) ( -16 264 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 ( -64 264 -16 ) ( -64 264 -15 ) ( -63 264 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 @@ -310,322 +229,322 @@ ( 64 360 16 ) ( 65 360 16 ) ( 64 360 17 ) wall_concrete1 [ -1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 ( 784 392 16 ) ( 784 392 17 ) ( 784 393 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 } -// brush 34 +// brush 25 { ( 632 72 96 ) ( 632 73 96 ) ( 632 72 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 368 72 96 ) ( 368 72 97 ) ( 369 72 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 368 -48 96 ) ( 368 -48 97 ) ( 369 -48 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 368 72 112 ) ( 369 72 112 ) ( 368 73 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 400 104 256 ) ( 400 105 256 ) ( 401 104 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 400 264 112 ) ( 401 264 112 ) ( 400 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 640 104 112 ) ( 640 104 113 ) ( 640 105 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 35 +// brush 26 { ( 320 72 96 ) ( 320 73 96 ) ( 320 72 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 360 72 96 ) ( 360 72 97 ) ( 361 72 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 360 72 112 ) ( 361 72 112 ) ( 360 73 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 360 -48 96 ) ( 360 -48 97 ) ( 361 -48 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 360 72 120 ) ( 361 72 120 ) ( 360 73 120 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 392 104 256 ) ( 392 105 256 ) ( 393 104 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 392 264 112 ) ( 393 264 112 ) ( 392 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 632 104 112 ) ( 632 104 113 ) ( 632 105 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 36 +// brush 27 { ( 312 256 104 ) ( 312 257 104 ) ( 312 256 105 ) skip [ 0 1.6292067950285372e-07 -0.9999999999999866 -16 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 ( 312 72 104 ) ( 312 72 105 ) ( 313 72 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 312 256 104 ) ( 313 256 104 ) ( 312 257 104 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 312 256 120 ) ( 313 256 120 ) ( 312 257 120 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 344 288 256 ) ( 344 289 256 ) ( 345 288 256 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 344 264 120 ) ( 345 264 120 ) ( 344 264 121 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 320 288 120 ) ( 320 288 121 ) ( 320 289 120 ) skip [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 37 +// brush 28 { -( 312 264 32 ) ( 312 136 32 ) ( 312 264 16 ) surface_beige_edge [ 0 -1.3113417006681922e-07 0.9999999999999913 32 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 0 ] 270 0.5 0.5 -( 320 136 16 ) ( 312 136 16 ) ( 320 136 32 ) surface_beige_edge [ 0.9999999999999957 0 8.742277997596912e-08 16 ] [ -8.742277997596912e-08 0 0.9999999999999957 0 ] 180 0.5 0.5 -( 312 264 16 ) ( 312 136 16 ) ( 320 264 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 320 264 32 ) ( 320 136 32 ) ( 312 264 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 264 16 ) ( 320 264 16 ) ( 312 264 32 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 264 16 ) ( 320 136 16 ) ( 320 264 32 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 312 144 32 ) ( 312 16 32 ) ( 312 144 16 ) surface_beige_edge [ 0 -1.3113417006681922e-07 0.9999999999999913 31.99997 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 -48 ] 270 0.5 0.5 +( 320 16 16 ) ( 312 16 16 ) ( 320 16 32 ) surface_beige_edge [ 0.9999999999999957 0 8.742277997596912e-08 16 ] [ -8.742277997596912e-08 0 0.9999999999999957 0 ] 180 0.5 0.5 +( 312 144 16 ) ( 312 16 16 ) ( 320 144 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -56 ] 0 1 1 +( 320 144 32 ) ( 320 16 32 ) ( 312 144 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 248 16 ) ( 320 248 16 ) ( 312 248 32 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 320 144 16 ) ( 320 16 16 ) ( 320 144 32 ) skip [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 38 +// brush 29 { -( 312 72 16 ) ( 312 88 16 ) ( 312 72 32 ) surface_beige_edge [ 0 -1.3113417006681922e-07 0.9999999999999913 32 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 0 ] 270 0.5 0.5 -( 312 72 32 ) ( 320 72 32 ) ( 312 72 16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 72 16 ) ( 320 88 16 ) ( 312 72 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 312 72 32 ) ( 312 88 32 ) ( 320 72 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 88 32 ) ( 312 88 16 ) ( 320 88 32 ) surface_beige_edge [ 1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 72 32 ) ( 320 88 32 ) ( 320 72 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 312 -48 16 ) ( 312 -32 16 ) ( 312 -48 32 ) surface_beige_edge [ 0 -1.3113417006681922e-07 0.9999999999999913 31.999966 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 -47.999992 ] 270 0.5 0.5 +( 312 -40 32 ) ( 320 -40 32 ) ( 312 -40 16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 320 -48 16 ) ( 320 -32 16 ) ( 312 -48 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -56 ] 0 1 1 +( 312 -48 32 ) ( 312 -32 32 ) ( 320 -48 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 -32 32 ) ( 312 -32 16 ) ( 320 -32 32 ) surface_beige_edge [ 1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 320 -48 32 ) ( 320 -32 32 ) ( 320 -48 16 ) skip [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 39 +// brush 30 { -( 312 264 88 ) ( 312 136 88 ) ( 312 264 32 ) surface_beige [ 0 -1.3113417006681922e-07 0.9999999999999913 32 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 0 ] 270 0.5 0.5 -( 320 136 32 ) ( 312 136 32 ) ( 320 136 88 ) surface_beige_edge [ 0.9999999999999961 -0 8.742278000372473e-08 16 ] [ -8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 -( 312 264 32 ) ( 312 136 32 ) ( 320 264 32 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 320 264 88 ) ( 320 136 88 ) ( 312 264 88 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 264 32 ) ( 320 264 32 ) ( 312 264 88 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 264 32 ) ( 320 136 32 ) ( 320 264 88 ) skip [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 312 144 88 ) ( 312 16 88 ) ( 312 144 32 ) surface_beige [ 0 -1.3113417006681922e-07 0.9999999999999913 31.999962 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 -48 ] 270 0.5 0.5 +( 320 16 32 ) ( 312 16 32 ) ( 320 16 88 ) surface_beige_edge [ 0.9999999999999961 0 8.742278000372473e-08 16 ] [ -8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 +( 312 144 32 ) ( 312 16 32 ) ( 320 144 32 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 320 144 104 ) ( 320 16 104 ) ( 312 144 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 248 32 ) ( 320 248 32 ) ( 312 248 88 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 320 144 32 ) ( 320 16 32 ) ( 320 144 88 ) skip [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 } -// brush 40 +// brush 31 { -( 312 72 32 ) ( 312 88 32 ) ( 312 72 88 ) surface_beige [ 0 -1.3113417006681922e-07 0.9999999999999913 32 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 0 ] 270 0.5 0.5 -( 312 72 88 ) ( 320 72 88 ) ( 312 72 32 ) skip [ 1 0 0 -16 ] [ 0 0 -1 16 ] 0 0.5 0.5 -( 320 72 32 ) ( 320 88 32 ) ( 312 72 32 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 72 88 ) ( 312 88 88 ) ( 320 72 88 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 88 88 ) ( 312 88 32 ) ( 320 88 88 ) surface_beige_edge [ 0.9999999999999998 -0 1.3234889800848443e-23 16 ] [ 1.3234889800848443e-23 0 -0.9999999999999998 0 ] 0 0.5 0.5 -( 320 72 88 ) ( 320 88 88 ) ( 320 72 32 ) skip [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 312 -48 32 ) ( 312 -32 32 ) ( 312 -48 88 ) surface_beige_edge [ 0 0.9999999999999785 2.0663206962145964e-07 31.999962 ] [ 0 -2.0663206962145964e-07 0.9999999999999785 -48 ] 180 0.5 0.5 +( 312 -48 88 ) ( 320 -48 88 ) ( 312 -48 32 ) skip [ 1 0 0 -16 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 320 -48 32 ) ( 320 -32 32 ) ( 312 -48 32 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 -48 96 ) ( 312 -32 96 ) ( 320 -48 96 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 -32 88 ) ( 312 -32 32 ) ( 320 -32 88 ) surface_beige_edge [ 0.9999999999999998 0 1.3234889800848443e-23 16 ] [ 1.3234889800848443e-23 0 -0.9999999999999998 0 ] 0 0.5 0.5 +( 320 -48 88 ) ( 320 -32 88 ) ( 320 -48 32 ) skip [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 } -// brush 41 +// brush 32 { -( 312 264 104 ) ( 312 136 104 ) ( 312 264 88 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 320 136 88 ) ( 312 136 88 ) ( 320 136 104 ) surface_beige_edge [ 0.9999999999999961 0 8.742277995965608e-08 16 ] [ -8.742277995965608e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 -( 312 264 88 ) ( 312 136 88 ) ( 320 264 88 ) surface_beige_edge [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 320 264 104 ) ( 320 136 104 ) ( 312 264 104 ) surface_beige_edge [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 264 88 ) ( 320 264 88 ) ( 312 264 104 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 264 88 ) ( 320 136 88 ) ( 320 264 104 ) surface_beige_edge [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 312 144 120 ) ( 312 16 120 ) ( 312 144 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -15.9999695 ] [ 0 0.9999999999999866 1.6292067950285372e-07 48 ] 90 0.5 0.5 +( 320 16 104 ) ( 312 16 104 ) ( 320 16 120 ) surface_beige_edge [ 0.9999999999999961 0 8.742277995965608e-08 16 ] [ -8.742277995965608e-08 0 0.9999999999999961 -32 ] 180 0.5 0.5 +( 312 144 104 ) ( 312 16 104 ) ( 320 144 104 ) surface_beige_edge [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 320 144 120 ) ( 320 16 120 ) ( 312 144 120 ) surface_beige_edge [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 248 104 ) ( 320 248 104 ) ( 312 248 120 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 320 144 104 ) ( 320 16 104 ) ( 320 144 120 ) skip [ 0 1 0 48 ] [ 0 0 -1 48 ] 0 0.5 0.5 } -// brush 42 +// brush 33 { -( 312 72 88 ) ( 312 88 88 ) ( 312 72 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 312 72 104 ) ( 320 72 104 ) ( 312 72 88 ) skip [ 1 0 0 -16 ] [ 0 0 -1 16 ] 0 0.5 0.5 -( 320 72 88 ) ( 320 88 88 ) ( 312 72 88 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 72 104 ) ( 312 88 104 ) ( 320 72 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 88 104 ) ( 312 88 88 ) ( 320 88 104 ) surface_beige_edge [ 1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 72 104 ) ( 320 88 104 ) ( 320 72 88 ) skip [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 312 -48 104 ) ( 312 -32 104 ) ( 312 -48 120 ) surface_beige_corner [ 0 0.9999999999999961 8.742278000372473e-08 -32 ] [ 0 -8.742278000372473e-08 0.9999999999999961 -48 ] 180 0.5 0.5 +( 312 -48 120 ) ( 320 -48 120 ) ( 312 -48 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 48 ] 0 0.5 0.5 +( 320 -48 96 ) ( 320 -32 96 ) ( 312 -48 96 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 -48 120 ) ( 312 -32 120 ) ( 320 -48 120 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 -32 120 ) ( 312 -32 104 ) ( 320 -32 120 ) skip [ 1 0 0 16 ] [ 0 0 -1 32 ] 0 0.5 0.5 +( 320 -48 120 ) ( 320 -32 120 ) ( 320 -48 104 ) skip [ 0 1 0 48 ] [ 0 0 -1 48 ] 0 0.5 0.5 } -// brush 43 +// brush 34 { -( 312 88 104 ) ( 312 88 96 ) ( 312 136 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 320 96 104 ) ( 320 96 96 ) ( 312 96 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 312 136 96 ) ( 312 88 96 ) ( 320 136 96 ) surface_beige_edge [ 1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 320 136 104 ) ( 320 88 104 ) ( 312 136 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 128 104 ) ( 312 128 96 ) ( 320 128 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 -( 320 136 104 ) ( 320 136 96 ) ( 320 88 104 ) skip [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 312 -32 104 ) ( 312 -32 96 ) ( 312 16 104 ) surface_beige [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.99997 ] [ 0 0.9999999999999866 1.6292067950285372e-07 48 ] 90 0.5 0.5 +( 320 -24 104 ) ( 320 -24 96 ) ( 312 -24 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 +( 312 16 96 ) ( 312 -32 96 ) ( 320 16 96 ) surface_beige_edge [ 1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 320 16 104 ) ( 320 -32 104 ) ( 312 16 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 8 104 ) ( 312 8 96 ) ( 320 8 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 +( 320 16 104 ) ( 320 16 96 ) ( 320 -32 104 ) skip [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 } -// brush 44 +// brush 35 { ( 488 264 96 ) ( 488 72 96 ) ( 488 264 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 640 72 16 ) ( 328 72 16 ) ( 640 72 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 640 -48 16 ) ( 328 -48 16 ) ( 640 -48 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 640 264 4 ) ( 328 264 4 ) ( 640 72 4 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 640 72 112 ) ( 328 72 112 ) ( 640 264 112 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 1 1 +( 640 72 120 ) ( 328 72 120 ) ( 640 264 120 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 1 1 ( 640 264 96 ) ( 328 264 96 ) ( 640 264 16 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 640 72 96 ) ( 640 264 96 ) ( 640 72 16 ) wall_brick_scrungly [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } +// brush 36 +{ +( 320 144 96 ) ( 320 16 96 ) ( 320 144 16 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 320 16 96 ) ( 328 16 96 ) ( 320 16 16 ) surface_beige_edge [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 320 144 16 ) ( 320 16 16 ) ( 328 144 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -56 ] 0 1 1 +( 328 144 112 ) ( 328 16 112 ) ( 320 144 112 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -56 ] 0 1 1 +( 320 136 16 ) ( 328 136 16 ) ( 320 136 96 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 328 144 16 ) ( 328 16 16 ) ( 328 144 96 ) surface_beige [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 37 +{ +( 320 -48 16 ) ( 320 -32 16 ) ( 320 -48 96 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 320 -48 96 ) ( 328 -48 96 ) ( 320 -48 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 328 -48 16 ) ( 328 -32 16 ) ( 320 -48 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -56 ] 0 1 1 +( 320 -48 96 ) ( 320 -32 96 ) ( 328 -48 96 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -56 ] 0 1 1 +( 320 -32 96 ) ( 320 -32 16 ) ( 328 -32 96 ) surface_beige_edge [ -0.9999999999999961 0 8.742278000372473e-08 16 ] [ 8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 +( 328 -48 96 ) ( 328 -32 96 ) ( 328 -48 16 ) surface_beige [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 38 +{ +( 320 8 8 ) ( 320 9 8 ) ( 320 8 9 ) skip [ 0 -1 0 -24 ] [ 0 0 -1 -8 ] 0 0.25 0.25 +( 320 -48 8 ) ( 320 -48 9 ) ( 321 -48 8 ) skip [ 1 0 0 32 ] [ 0 0 -1 -8 ] 0 0.25 0.25 +( 320 8 8 ) ( 321 8 8 ) ( 320 9 8 ) skip [ -1 0 0 -32 ] [ 0 -1 0 -24 ] 0 0.25 0.25 +( 360 56 16 ) ( 360 57 16 ) ( 361 56 16 ) floor_checkertiles [ 1 0 0 0 ] [ 0 -1 0 -96 ] 0 0.25 0.25 +( 360 104 16 ) ( 361 104 16 ) ( 360 104 17 ) skip [ -1 0 0 -32 ] [ 0 0 -1 -8 ] 0 0.25 0.25 +( 449 56 16 ) ( 449 56 17 ) ( 449 57 16 ) skip [ 0 1 0 24 ] [ 0 0 -1 -8 ] 0 0.25 0.25 +} +// brush 39 +{ +( 320 -32 104 ) ( 320 -32 96 ) ( 320 16 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.99997 ] [ 0 0.9999999999999866 1.6292067950285372e-07 48 ] 90 0.5 0.5 +( 328 -24 104 ) ( 328 -24 96 ) ( 320 -24 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 +( 320 16 96 ) ( 320 -32 96 ) ( 328 16 96 ) surface_beige_edge [ -0.9999999999999961 8.742278000372473e-08 0 16 ] [ 8.742278000372473e-08 0.9999999999999961 0 48 ] 180 0.5 0.5 +( 328 16 104 ) ( 328 -32 104 ) ( 320 16 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 320 8 104 ) ( 320 8 96 ) ( 328 8 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 +( 328 16 104 ) ( 328 16 96 ) ( 328 -32 104 ) surface_beige [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 +} +// brush 40 +{ +( 312 -24 104 ) ( 312 -24 96 ) ( 312 24 104 ) surface_beige [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.99997 ] [ 0 0.9999999999999866 1.6292067950285372e-07 31.999998 ] 90 0.5 0.5 +( 320 8 104 ) ( 320 8 96 ) ( 312 8 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 +( 312 24 96 ) ( 312 -24 96 ) ( 320 24 96 ) surface_beige_corner [ -4.371139006309477e-08 -0.999999999999999 0 -32 ] [ -0.999999999999999 4.371139006309477e-08 0 48 ] 90 0.5 0.5 +( 320 24 104 ) ( 320 -24 104 ) ( 312 24 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 312 16 104 ) ( 312 16 96 ) ( 320 16 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 +( 320 24 104 ) ( 320 24 96 ) ( 320 -24 104 ) skip [ 0 1 0 32 ] [ 0 0 -1 16 ] 0 0.5 0.5 +} +// brush 41 +{ +( 320 -24 104 ) ( 320 -24 96 ) ( 320 24 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.99997 ] [ 0 0.9999999999999866 1.6292067950285372e-07 31.999998 ] 90 0.5 0.5 +( 328 8 104 ) ( 328 8 96 ) ( 320 8 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 +( 320 24 96 ) ( 320 -24 96 ) ( 328 24 96 ) surface_beige_corner [ -0.9999999999999961 8.742277995965608e-08 0 16 ] [ 8.742277995965608e-08 0.9999999999999961 0 32 ] 180 0.5 0.5 +( 328 24 104 ) ( 328 -24 104 ) ( 320 24 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 320 16 104 ) ( 320 16 96 ) ( 328 16 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 +( 328 24 104 ) ( 328 24 96 ) ( 328 -24 104 ) surface_beige [ 0 1 0 32 ] [ 0 0 -1 16 ] 0 0.5 0.5 +} +// brush 42 +{ +( 312 -40 104 ) ( 312 -40 96 ) ( 312 8 104 ) surface_beige [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.999954 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 +( 320 -32 104 ) ( 320 -32 96 ) ( 312 -32 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 +( 312 8 96 ) ( 312 -40 96 ) ( 320 8 96 ) surface_beige_corner [ 1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 320 8 104 ) ( 320 -40 104 ) ( 312 8 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 312 -24 104 ) ( 312 -24 96 ) ( 320 -24 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 +( 320 8 104 ) ( 320 8 96 ) ( 320 -40 104 ) skip [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +} +// brush 43 +{ +( 320 -40 104 ) ( 320 -40 96 ) ( 320 8 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.999954 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 +( 328 -32 104 ) ( 328 -32 96 ) ( 320 -32 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 +( 320 8 96 ) ( 320 -40 96 ) ( 328 8 96 ) surface_beige_corner [ 1.3113417006681922e-07 0.9999999999999912 0 0 ] [ 0.9999999999999912 -1.3113417006681922e-07 0 48 ] 270 0.5 0.5 +( 328 8 104 ) ( 328 -40 104 ) ( 320 8 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 320 -24 104 ) ( 320 -24 96 ) ( 328 -24 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 +( 328 8 104 ) ( 328 8 96 ) ( 328 -40 104 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +} +// brush 44 +{ +( 320 -56 104 ) ( 320 -56 96 ) ( 320 -8 104 ) skip [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.999954 ] [ 0 0.9999999999999866 1.6292067950285372e-07 32.000004 ] 90 0.5 0.5 +( 328 -48 104 ) ( 328 -48 96 ) ( 320 -48 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 +( 320 -8 96 ) ( 320 -56 96 ) ( 328 -8 96 ) skip [ 1.3113417006681922e-07 0.9999999999999912 0 32 ] [ 0.9999999999999912 -1.3113417006681922e-07 0 48 ] 270 0.5 0.5 +( 328 -8 104 ) ( 328 -56 104 ) ( 320 -8 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 320 -32 104 ) ( 320 -32 96 ) ( 328 -32 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 +( 328 -8 104 ) ( 328 -8 96 ) ( 328 -56 104 ) surface_beige [ 0 1 0 32 ] [ 0 0 -1 16 ] 0 0.5 0.5 +} // brush 45 { -( 320 264 96 ) ( 320 136 96 ) ( 320 264 16 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 136 96 ) ( 328 136 96 ) ( 320 136 16 ) surface_beige_edge [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 264 16 ) ( 320 136 16 ) ( 328 264 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 328 264 112 ) ( 328 136 112 ) ( 320 264 112 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 1 1 -( 320 264 16 ) ( 328 264 16 ) ( 320 264 96 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 328 264 16 ) ( 328 136 16 ) ( 328 264 96 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 480 -40 16 ) ( 480 -39 16 ) ( 480 -40 17 ) surface_beige [ 0 -1 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 480 -40 16 ) ( 480 -40 17 ) ( 481 -40 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 480 -40 16 ) ( 481 -40 16 ) ( 480 -39 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 488 -24 104 ) ( 488 -23 104 ) ( 489 -24 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 488 136 24 ) ( 489 136 24 ) ( 488 136 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 488 -24 24 ) ( 488 -24 25 ) ( 488 -23 24 ) skip [ 0 1 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 } // brush 46 { -( 320 72 16 ) ( 320 88 16 ) ( 320 72 96 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 72 96 ) ( 328 72 96 ) ( 320 72 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 328 72 16 ) ( 328 88 16 ) ( 320 72 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 320 72 96 ) ( 320 88 96 ) ( 328 72 96 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 1 1 -( 320 88 96 ) ( 320 88 16 ) ( 328 88 96 ) surface_beige_edge [ -0.9999999999999961 0 8.742278000372473e-08 16 ] [ 8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 -( 328 72 96 ) ( 328 88 96 ) ( 328 72 16 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 432 -48 96 ) ( 432 -56 96 ) ( 432 -48 16 ) wall_brick_scrungly [ 0 1 0 224 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 640 -56 16 ) ( 432 -56 16 ) ( 640 -56 96 ) wall_brick_scrungly [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 640 -48 16 ) ( 432 -48 16 ) ( 640 -56 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 640 -56 96 ) ( 432 -56 96 ) ( 640 -48 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 640 -48 96 ) ( 432 -48 96 ) ( 640 -48 16 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 640 -56 96 ) ( 640 -48 96 ) ( 640 -56 16 ) wall_brick_scrungly [ 0 1 0 224 ] [ 0 0 -1 0 ] 0 0.25 0.25 } // brush 47 { -( 320 128 8 ) ( 320 129 8 ) ( 320 128 9 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 320 72 8 ) ( 320 72 9 ) ( 321 72 8 ) skip [ 1 0 0 96 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 320 128 8 ) ( 321 128 8 ) ( 320 129 8 ) skip [ -1 0 0 -96 ] [ 0 -1 0 -56 ] 0 0.25 0.25 -( 360 176 16 ) ( 360 177 16 ) ( 361 176 16 ) floor_checkertiles [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 360 224 16 ) ( 361 224 16 ) ( 360 224 17 ) skip [ -1 0 0 -32 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 448 176 16 ) ( 448 176 17 ) ( 448 177 16 ) skip [ 0 1 0 56 ] [ 0 0 -1 -8 ] 0 0.25 0.25 +( 312 -56 16 ) ( 312 -48 16 ) ( 312 -56 96 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 312 -56 96 ) ( 384 -56 96 ) ( 312 -56 16 ) wall_brick_scrungly [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 312 -56 16 ) ( 384 -56 16 ) ( 312 -48 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 312 -48 96 ) ( 384 -48 96 ) ( 312 -56 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 312 -48 16 ) ( 384 -48 16 ) ( 312 -48 96 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 384 -56 16 ) ( 384 -56 96 ) ( 384 -48 16 ) wall_brick_scrungly [ 0 -1 0 -224 ] [ 0 0 -1 0 ] 0 0.25 0.25 } // brush 48 { -( 320 88 104 ) ( 320 88 96 ) ( 320 136 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 328 96 104 ) ( 328 96 96 ) ( 320 96 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 136 96 ) ( 320 88 96 ) ( 328 136 96 ) surface_beige_edge [ -0.9999999999999961 8.742278000372473e-08 0 16 ] [ 8.742278000372473e-08 0.9999999999999961 0 0 ] 180 0.5 0.5 -( 328 136 104 ) ( 328 88 104 ) ( 320 136 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 320 128 104 ) ( 320 128 96 ) ( 328 128 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 136 104 ) ( 328 136 96 ) ( 328 88 104 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 432 -40 104 ) ( 432 -48 104 ) ( 432 -40 16 ) surface_beige_edge [ 0 -0.9999999999999961 8.742278000372473e-08 -16 ] [ 0 8.742278000372473e-08 0.9999999999999961 0 ] 180 0.5 0.5 +( 448 -48 16 ) ( 432 -48 16 ) ( 448 -48 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 448 -40 16 ) ( 432 -40 16 ) ( 448 -48 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 448 -48 104 ) ( 432 -48 104 ) ( 448 -40 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 448 -40 104 ) ( 432 -40 104 ) ( 448 -40 16 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 480 -48 104 ) ( 480 -40 104 ) ( 480 -48 16 ) skip [ 0 1 0 56 ] [ 0 0 -1 0 ] 0 1 1 } // brush 49 { -( 312 96 104 ) ( 312 96 96 ) ( 312 144 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48.000015 ] [ 0 0.9999999999999866 1.6292067950285372e-07 -16 ] 90 0.5 0.5 -( 320 128 104 ) ( 320 128 96 ) ( 312 128 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 312 144 96 ) ( 312 96 96 ) ( 320 144 96 ) surface_beige_corner [ -4.371139006309477e-08 -0.999999999999999 0 16 ] [ -0.999999999999999 4.371139006309477e-08 0 48 ] 90 0.5 0.5 -( 320 144 104 ) ( 320 96 104 ) ( 312 144 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 312 136 104 ) ( 312 136 96 ) ( 320 136 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 -( 320 144 104 ) ( 320 144 96 ) ( 320 96 104 ) skip [ 0 1 0 -16 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 328 -48 16 ) ( 328 -40 16 ) ( 328 -48 104 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 +( 328 -48 104 ) ( 384 -48 104 ) ( 328 -48 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 328 -48 16 ) ( 384 -48 16 ) ( 328 -40 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 328 -40 104 ) ( 384 -40 104 ) ( 328 -48 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 328 -40 16 ) ( 384 -40 16 ) ( 328 -40 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 384 -48 16 ) ( 384 -48 104 ) ( 384 -40 16 ) surface_beige_edge [ 0 -1 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 } // brush 50 { -( 320 96 104 ) ( 320 96 96 ) ( 320 144 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48.000015 ] [ 0 0.9999999999999866 1.6292067950285372e-07 -16 ] 90 0.5 0.5 -( 328 128 104 ) ( 328 128 96 ) ( 320 128 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 144 96 ) ( 320 96 96 ) ( 328 144 96 ) surface_beige_corner [ -0.9999999999999961 8.742277995965608e-08 0 16 ] [ 8.742277995965608e-08 0.9999999999999961 0 48 ] 180 0.5 0.5 -( 328 144 104 ) ( 328 96 104 ) ( 320 144 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 320 136 104 ) ( 320 136 96 ) ( 328 136 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 144 104 ) ( 328 144 96 ) ( 328 96 104 ) surface_beige [ 0 1 0 -16 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 392 -48 104 ) ( 392 -48 96 ) ( 392 -40 104 ) surface_beige [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 +( 432 -48 104 ) ( 432 -48 96 ) ( 384 -48 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 432 -48 96 ) ( 432 -40 96 ) ( 384 -48 96 ) surface_beige_edge [ -4.371139006309477e-08 -0.999999999999999 0 -16 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.5 0.5 +( 432 -48 104 ) ( 384 -48 104 ) ( 432 -40 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 384 -40 104 ) ( 384 -40 96 ) ( 432 -40 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 424 -40 104 ) ( 424 -40 96 ) ( 424 -48 104 ) surface_beige [ 0 1 0 56 ] [ 0 0 -1 0 ] 0 1 1 } // brush 51 { -( 312 80 104 ) ( 312 80 96 ) ( 312 128 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 16 ] 90 0.5 0.5 -( 320 88 104 ) ( 320 88 96 ) ( 312 88 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 312 128 96 ) ( 312 80 96 ) ( 320 128 96 ) surface_beige_corner [ 1 0 0 16 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 320 128 104 ) ( 320 80 104 ) ( 312 128 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 312 96 104 ) ( 312 96 96 ) ( 320 96 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 -( 320 128 104 ) ( 320 128 96 ) ( 320 80 104 ) skip [ 0 1 0 16 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 384 -56 8 ) ( 384 -55 8 ) ( 384 -56 9 ) ground_cobblestone1 [ 0 -1 0 -224 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 384 -56 8 ) ( 384 -56 9 ) ( 385 -56 8 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 384 -56 8 ) ( 385 -56 8 ) ( 384 -55 8 ) ground_cobblestone1 [ -1 0 0 0 ] [ 0 -1 0 -30 ] 0 0.25 0.25 +( 432 -48 16 ) ( 432 -47 16 ) ( 433 -48 16 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 -1 0 -30 ] 0 0.25 0.25 +( 432 -48 16 ) ( 433 -48 16 ) ( 432 -48 17 ) ground_cobblestone1 [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 432 -48 16 ) ( 432 -48 17 ) ( 432 -47 16 ) ground_cobblestone1 [ 0 1 0 224 ] [ 0 0 -1 0 ] 0 0.25 0.25 } // brush 52 { -( 320 80 104 ) ( 320 80 96 ) ( 320 128 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 16 ] 90 0.5 0.5 -( 328 88 104 ) ( 328 88 96 ) ( 320 88 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 128 96 ) ( 320 80 96 ) ( 328 128 96 ) surface_beige_corner [ 1.3113417006681922e-07 0.9999999999999912 0 16 ] [ 0.9999999999999912 -1.3113417006681922e-07 -0 48 ] 270 0.5 0.5 -( 328 128 104 ) ( 328 80 104 ) ( 320 128 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 320 96 104 ) ( 320 96 96 ) ( 328 96 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 128 104 ) ( 328 128 96 ) ( 328 80 104 ) surface_beige [ 0 1 0 16 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 312 -56 96 ) ( 312 -55 96 ) ( 312 -56 97 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 312 -56 96 ) ( 312 -56 97 ) ( 313 -56 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 312 -56 96 ) ( 313 -56 96 ) ( 312 -55 96 ) wall_brick [ -1 0 0 0 ] [ 0 -1 0 -118 ] 0 0.25 0.25 +( 360 -48 104 ) ( 360 -47 104 ) ( 361 -48 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.25 0.25 +( 360 -48 104 ) ( 361 -48 104 ) ( 360 -48 105 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 640 -48 104 ) ( 640 -48 105 ) ( 640 -47 104 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.25 0.25 } // brush 53 { -( 320 64 104 ) ( 320 64 96 ) ( 320 112 104 ) skip [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 48 ] 90 0.5 0.5 -( 328 72 104 ) ( 328 72 96 ) ( 320 72 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 112 96 ) ( 320 64 96 ) ( 328 112 96 ) skip [ 1.3113417006681922e-07 0.9999999999999912 0 48 ] [ 0.9999999999999912 -1.3113417006681922e-07 0 48 ] 270 0.5 0.5 -( 328 112 104 ) ( 328 64 104 ) ( 320 112 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 320 88 104 ) ( 320 88 96 ) ( 328 88 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 112 104 ) ( 328 112 96 ) ( 328 64 104 ) surface_beige [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 54 -{ -( 480 80 16 ) ( 480 81 16 ) ( 480 80 17 ) surface_beige [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 480 80 16 ) ( 480 80 17 ) ( 481 80 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 480 80 16 ) ( 481 80 16 ) ( 480 81 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 488 96 104 ) ( 488 97 104 ) ( 489 96 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 488 256 24 ) ( 489 256 24 ) ( 488 256 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 488 96 24 ) ( 488 96 25 ) ( 488 97 24 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 55 -{ -( 432 72 96 ) ( 432 64 96 ) ( 432 72 16 ) wall_brick_scrungly [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 64 16 ) ( 432 64 16 ) ( 640 64 96 ) wall_brick_scrungly [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 0.25 0.25 -( 640 72 16 ) ( 432 72 16 ) ( 640 64 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 640 64 96 ) ( 432 64 96 ) ( 640 72 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 640 72 96 ) ( 432 72 96 ) ( 640 72 16 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 64 96 ) ( 640 72 96 ) ( 640 64 16 ) wall_brick_scrungly [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 56 -{ -( 312 64 16 ) ( 312 72 16 ) ( 312 64 96 ) skip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 0.25 0.25 -( 312 64 96 ) ( 384 64 96 ) ( 312 64 16 ) wall_brick_scrungly [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 0.25 0.25 -( 312 64 16 ) ( 384 64 16 ) ( 312 72 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 312 72 96 ) ( 384 72 96 ) ( 312 64 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 312 72 16 ) ( 384 72 16 ) ( 312 72 96 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 384 64 16 ) ( 384 64 96 ) ( 384 72 16 ) wall_brick_scrungly [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 57 -{ -( 432 80 104 ) ( 432 72 104 ) ( 432 80 16 ) surface_beige_edge [ 0 -0.9999999999999961 8.742278000372473e-08 32 ] [ 0 8.742278000372473e-08 0.9999999999999961 0 ] 180 0.5 0.5 -( 448 72 16 ) ( 432 72 16 ) ( 448 72 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 448 80 16 ) ( 432 80 16 ) ( 448 72 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 448 72 104 ) ( 432 72 104 ) ( 448 80 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 448 80 104 ) ( 432 80 104 ) ( 448 80 16 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 480 72 104 ) ( 480 80 104 ) ( 480 72 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 58 -{ -( 328 72 16 ) ( 328 80 16 ) ( 328 72 104 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 328 72 104 ) ( 384 72 104 ) ( 328 72 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 328 72 16 ) ( 384 72 16 ) ( 328 80 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 328 80 104 ) ( 384 80 104 ) ( 328 72 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 328 80 16 ) ( 384 80 16 ) ( 328 80 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 384 72 16 ) ( 384 72 104 ) ( 384 80 16 ) surface_beige_edge [ 0 -1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 59 -{ -( 392 72 104 ) ( 392 72 96 ) ( 392 80 104 ) surface_beige [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 432 72 104 ) ( 432 72 96 ) ( 384 72 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 432 72 96 ) ( 432 80 96 ) ( 384 72 96 ) surface_beige_edge [ -4.371139006309477e-08 -0.999999999999999 0 32 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.5 0.5 -( 432 72 104 ) ( 384 72 104 ) ( 432 80 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 384 80 104 ) ( 384 80 96 ) ( 432 80 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 424 80 104 ) ( 424 80 96 ) ( 424 72 104 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 60 -{ -( 384 64 8 ) ( 384 65 8 ) ( 384 64 9 ) ground_cobblestone1 [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 384 64 8 ) ( 384 64 9 ) ( 385 64 8 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 384 64 8 ) ( 385 64 8 ) ( 384 65 8 ) ground_cobblestone1 [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 432 72 16 ) ( 432 73 16 ) ( 433 72 16 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 432 72 16 ) ( 433 72 16 ) ( 432 72 17 ) ground_cobblestone1 [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 432 72 16 ) ( 432 72 17 ) ( 432 73 16 ) ground_cobblestone1 [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 61 -{ -( 312 64 96 ) ( 312 65 96 ) ( 312 64 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 312 64 96 ) ( 312 64 97 ) ( 313 64 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 312 64 96 ) ( 313 64 96 ) ( 312 65 96 ) wall_brick [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 360 72 104 ) ( 360 73 104 ) ( 361 72 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 360 72 104 ) ( 361 72 104 ) ( 360 72 105 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 72 104 ) ( 640 72 105 ) ( 640 73 104 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 62 -{ ( 80 48 152 ) ( 80 49 152 ) ( 80 48 153 ) wall_brick [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 176 64 152 ) ( 176 64 153 ) ( 177 64 152 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 176 -56 152 ) ( 176 -56 153 ) ( 177 -56 152 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 176 48 152 ) ( 177 48 152 ) ( 176 49 152 ) wall_brick [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 208 80 256 ) ( 208 81 256 ) ( 209 80 256 ) wall_brick [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 208 80 256 ) ( 208 81 256 ) ( 209 80 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 208 264 168 ) ( 209 264 168 ) ( 208 264 169 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 312 80 168 ) ( 312 80 169 ) ( 312 81 168 ) wall_brick [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 63 +// brush 54 { -( 328 224 104 ) ( 328 225 104 ) ( 328 224 105 ) skip [ 0 -1 0 -16 ] [ 0 0 -1 48 ] 0 0.5 0.5 -( 392 80 104 ) ( 392 80 105 ) ( 393 80 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 -( 392 224 104 ) ( 393 224 104 ) ( 392 225 104 ) ground_wood [ -1 0 0 0 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 424 256 112 ) ( 424 257 112 ) ( 425 256 112 ) skip [ 1 0 0 0 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 424 256 112 ) ( 425 256 112 ) ( 424 256 113 ) skip [ -1 0 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 -( 480 256 112 ) ( 480 256 113 ) ( 480 257 112 ) skip [ 0 1 0 16 ] [ 0 0 -1 48 ] 0 0.5 0.5 +( 328 136 104 ) ( 328 137 104 ) ( 328 136 105 ) skip [ 0 -1 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 +( 392 -40 104 ) ( 392 -40 105 ) ( 393 -40 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 +( 392 136 104 ) ( 393 136 104 ) ( 392 137 104 ) ground_wood [ -1 0 0 0 ] [ 0 -1 0 -64 ] 0 0.5 0.5 +( 424 168 112 ) ( 424 169 112 ) ( 425 168 112 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 424 136 112 ) ( 425 136 112 ) ( 424 136 113 ) skip [ -1 0 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 +( 480 168 112 ) ( 480 168 113 ) ( 480 169 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 } -// brush 64 +// brush 55 { -( 424 72 104 ) ( 424 72 96 ) ( 424 80 104 ) surface_beige [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 440 72 104 ) ( 440 72 96 ) ( 392 72 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 440 72 96 ) ( 440 80 96 ) ( 392 72 96 ) surface_beige_corner [ -0.9999999999999961 8.742277995965608e-08 0 32 ] [ 8.742277995965608e-08 0.9999999999999961 0 32 ] 180 0.5 0.5 -( 440 72 104 ) ( 392 72 104 ) ( 440 80 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 392 80 104 ) ( 392 80 96 ) ( 440 80 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 432 80 104 ) ( 432 80 96 ) ( 432 72 104 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 424 -48 104 ) ( 424 -48 96 ) ( 424 -40 104 ) surface_beige [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 +( 440 -48 104 ) ( 440 -48 96 ) ( 392 -48 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 440 -48 96 ) ( 440 -40 96 ) ( 392 -48 96 ) surface_beige_corner [ -0.9999999999999961 8.742277995965608e-08 0 32 ] [ 8.742277995965608e-08 0.9999999999999961 0 16 ] 180 0.5 0.5 +( 440 -48 104 ) ( 392 -48 104 ) ( 440 -40 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 392 -40 104 ) ( 392 -40 96 ) ( 440 -40 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 432 -40 104 ) ( 432 -40 96 ) ( 432 -48 104 ) surface_beige [ 0 1 0 56 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 65 +// brush 56 { -( 384 72 104 ) ( 384 72 96 ) ( 384 80 104 ) surface_beige [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 72 104 ) ( 400 72 96 ) ( 352 72 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 72 96 ) ( 400 80 96 ) ( 352 72 96 ) surface_beige_corner [ -4.371139006309477e-08 -0.999999999999999 0 32 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.5 0.5 -( 400 72 104 ) ( 352 72 104 ) ( 400 80 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 352 80 104 ) ( 352 80 96 ) ( 400 80 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 392 80 104 ) ( 392 80 96 ) ( 392 72 104 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 384 -48 104 ) ( 384 -48 96 ) ( 384 -40 104 ) surface_beige [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 +( 400 -48 104 ) ( 400 -48 96 ) ( 352 -48 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 400 -48 96 ) ( 400 -40 96 ) ( 352 -48 96 ) surface_beige_corner [ -4.371139006309477e-08 -0.999999999999999 0 -16 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.5 0.5 +( 400 -48 104 ) ( 352 -48 104 ) ( 400 -40 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 352 -40 104 ) ( 352 -40 96 ) ( 400 -40 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 392 -40 104 ) ( 392 -40 96 ) ( 392 -48 104 ) surface_beige [ 0 1 0 56 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 66 +// brush 57 { -( 328 232 16 ) ( 328 233 16 ) ( 328 232 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 328 224 16 ) ( 328 224 17 ) ( 329 224 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 328 232 16 ) ( 329 232 16 ) ( 328 233 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 352 256 48 ) ( 352 257 48 ) ( 353 256 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 352 256 24 ) ( 353 256 24 ) ( 352 256 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 256 24 ) ( 400 256 25 ) ( 400 257 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 360 112 16 ) ( 360 113 16 ) ( 360 112 17 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 +( 328 104 16 ) ( 328 104 17 ) ( 329 104 16 ) woodpale [ -4.371139006309477e-08 0 -0.999999999999999 0 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.25 0.25 +( 328 112 16 ) ( 329 112 16 ) ( 328 113 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 352 136 46 ) ( 352 137 46 ) ( 353 136 46 ) skip [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 352 136 24 ) ( 353 136 24 ) ( 352 136 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 400 136 24 ) ( 400 136 25 ) ( 400 137 24 ) skip [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 67 +// brush 58 { -( 328 176 16 ) ( 328 177 16 ) ( 328 176 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 328 144 16 ) ( 328 144 17 ) ( 329 144 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 328 176 16 ) ( 329 176 16 ) ( 328 177 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 360 224 48 ) ( 360 225 48 ) ( 361 224 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 360 224 24 ) ( 361 224 24 ) ( 360 224 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 360 224 24 ) ( 360 224 25 ) ( 360 225 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 328 56 16 ) ( 328 57 16 ) ( 328 56 17 ) skip [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 +( 328 24 16 ) ( 328 24 17 ) ( 329 24 16 ) woodpale [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 328 56 16 ) ( 329 56 16 ) ( 328 57 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 360 104 46 ) ( 360 105 46 ) ( 361 104 46 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 360 104 24 ) ( 361 104 24 ) ( 360 104 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 360 104 24 ) ( 360 104 25 ) ( 360 105 24 ) woodpale [ 0 -4.371139006309477e-08 -0.999999999999999 0 ] [ 0 -0.999999999999999 4.371139006309477e-08 0 ] 90 0.25 0.25 } -// brush 68 +// brush 59 { -( 448 112 16 ) ( 448 113 16 ) ( 448 112 17 ) redplaid [ 0 -1 0 -64 ] [ 0 0 -1 0 ] 0 1 1 -( 448 80 16 ) ( 448 80 17 ) ( 449 80 16 ) redplaid [ 1 0 0 -120 ] [ 0 0 -1 0 ] 0 1 1 -( 448 112 16 ) ( 449 112 16 ) ( 448 113 16 ) redplaid [ -1 0 0 120 ] [ 0 -1 0 -64 ] 0 1 1 -( 480 160 48 ) ( 480 161 48 ) ( 481 160 48 ) redplaid [ 1 0 0 -120 ] [ 0 -1 0 -64 ] 0 1 1 -( 480 256 24 ) ( 481 256 24 ) ( 480 256 25 ) redplaid [ -1 0 0 120 ] [ 0 0 -1 0 ] 0 1 1 -( 480 160 24 ) ( 480 160 25 ) ( 480 161 24 ) redplaid [ 0 1 0 64 ] [ 0 0 -1 0 ] 0 1 1 +( 449 -8 16 ) ( 449 -7 16 ) ( 449 -8 17 ) woodpale [ 0 4.371139006309477e-08 -0.999999999999999 0 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.25 0.25 +( 448 -40 16 ) ( 448 -40 17 ) ( 449 -40 16 ) skip [ 1 0 0 -120 ] [ 0 0 -1 0 ] 0 1 1 +( 448 -8 16 ) ( 449 -8 16 ) ( 448 -7 16 ) skip [ -1 0 0 120 ] [ 0 -1 0 -184 ] 0 1 1 +( 480 40 46 ) ( 480 41 46 ) ( 481 40 46 ) skip [ 1 0 0 -56 ] [ 0 -1 0 -56 ] 0 1 1 +( 480 104 24 ) ( 481 104 24 ) ( 480 104 25 ) skip [ -1 0 0 56 ] [ 0 0 -1 0 ] 0 1 1 +( 480 40 24 ) ( 480 40 25 ) ( 480 41 24 ) skip [ 0 1 0 184 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 69 +// brush 60 { ( -16 360 -20 ) ( -16 361 -20 ) ( -16 360 -19 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( -64 360 -20 ) ( -64 360 -19 ) ( -63 360 -20 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 @@ -634,7 +553,7 @@ ( 64 600 12 ) ( 65 600 12 ) ( 64 600 13 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 784 488 12 ) ( 784 488 13 ) ( 784 489 12 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 70 +// brush 61 { ( -16 360 -16 ) ( -16 361 -16 ) ( -16 360 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 ( -64 360 -16 ) ( -64 360 -15 ) ( -63 360 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 @@ -643,7 +562,7 @@ ( 64 600 16 ) ( 65 600 16 ) ( 64 600 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 ( 80 488 16 ) ( 80 488 17 ) ( 80 489 16 ) wall_concrete1 [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 1 1 } -// brush 71 +// brush 62 { ( -16 600 -16 ) ( -16 601 -16 ) ( -16 600 -15 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 16 ] 0 0.5 0.5 ( -64 600 -16 ) ( -64 600 -15 ) ( -63 600 -16 ) wall_concrete1 [ 1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 @@ -652,7 +571,7 @@ ( 64 704 16 ) ( 65 704 16 ) ( 64 704 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 ( 576 728 16 ) ( 576 728 17 ) ( 576 729 16 ) wall_concrete1 [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 72 +// brush 63 { ( 736 600 -16 ) ( 736 601 -16 ) ( 736 600 -15 ) wall_concrete1 [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 144 600 -16 ) ( 144 600 -15 ) ( 145 600 -16 ) wall_concrete1 [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 @@ -661,7 +580,7 @@ ( 272 720 16 ) ( 273 720 16 ) ( 272 720 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 784 728 16 ) ( 784 728 17 ) ( 784 729 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 73 +// brush 64 { ( 576 600 -20 ) ( 576 601 -20 ) ( 576 600 -19 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( -112 600 -20 ) ( -112 600 -19 ) ( -111 600 -20 ) skip [ 1 0 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 @@ -670,7 +589,7 @@ ( 16 720 12 ) ( 17 720 12 ) ( 16 720 13 ) skip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 736 728 12 ) ( 736 728 13 ) ( 736 729 12 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 74 +// brush 65 { ( 64 336 24 ) ( 64 337 24 ) ( 64 336 25 ) redplaid [ 0 -1 0 0 ] [ 0 0 -1 8 ] 0 1 1 ( 56 344 24 ) ( 56 344 25 ) ( 57 344 24 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 8 ] 0 1 1 @@ -679,7 +598,7 @@ ( 80 352 32 ) ( 81 352 32 ) ( 80 352 33 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 8 ] 0 1 1 ( 72 360 32 ) ( 72 360 33 ) ( 72 361 32 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 8 ] 0 1 1 } -// brush 75 +// brush 66 { ( 56 336 16 ) ( 56 337 16 ) ( 56 336 17 ) redplaid [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 56 336 16 ) ( 56 336 17 ) ( 57 336 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 @@ -688,7 +607,7 @@ ( 80 360 24 ) ( 81 360 24 ) ( 80 360 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 80 360 24 ) ( 80 360 25 ) ( 80 361 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 76 +// brush 67 { ( 64 344 24 ) ( 56 336 18 ) ( 56 360 18 ) redplaid [ 0 -1.0000000000000002 0 0 ] [ 1.0000000000000002 0 0 -70.43137 ] 0 1 1 ( 72 344 24 ) ( 80 336 18 ) ( 56 336 18 ) redplaid [ 1.0000000000000002 0 0 0 ] [ 0 1.0000000000000002 0 -94.58823 ] 0 1 1 @@ -697,7 +616,7 @@ ( 72 352 24 ) ( 64 352 24 ) ( 56 360 18 ) redplaid [ -1.0000000000000002 0 0 0 ] [ 0 -1.0000000000000002 0 89.568634 ] 0 1 1 ( 72 352 24 ) ( 80 360 18 ) ( 80 336 18 ) redplaid [ 0 1.0000000000000002 0 0 ] [ -1.0000000000000002 0 0 68 ] 0 1 1 } -// brush 77 +// brush 68 { ( 60 336 152 ) ( 60 337 152 ) ( 60 336 153 ) redplaid [ 0 -1 0 24 ] [ 0 0 -1 8 ] 0 1 1 ( 56 340 152 ) ( 56 340 153 ) ( 57 340 152 ) redplaid [ 1 0 0 -8 ] [ 0 0 -1 8 ] 0 1 1 @@ -706,7 +625,7 @@ ( 88 356 160 ) ( 89 356 160 ) ( 88 356 161 ) redplaid [ -1 0 0 8 ] [ 0 0 -1 8 ] 0 1 1 ( 76 368 160 ) ( 76 368 161 ) ( 76 369 160 ) redplaid [ 0 1 0 -24 ] [ 0 0 -1 8 ] 0 1 1 } -// brush 78 +// brush 69 { ( 64 344 186 ) ( 54 334 180 ) ( 54 362 180 ) redplaid [ 0 -1.0000000000000002 0 24 ] [ 1.0000000000000002 0 0 -200.0878 ] 0 1 1 ( 72 344 186 ) ( 82 334 180 ) ( 54 334 180 ) redplaid [ 1.0000000000000002 0 0 -8 ] [ 0 1.0000000000000002 0 -222 ] 0 1 1 @@ -715,7 +634,7 @@ ( 54 362 180 ) ( 82 362 180 ) ( 72 352 186 ) redplaid [ -1.0000000000000002 0 0 8 ] [ 0 -1.0000000000000002 0 215.36586 ] 0 1 1 ( 72 352 186 ) ( 82 362 180 ) ( 82 334 180 ) redplaid [ 0 1.0000000000000002 0 -24 ] [ -1.0000000000000002 0 0 -62 ] 0 1 1 } -// brush 79 +// brush 70 { ( 60 354 156 ) ( 60 356 156 ) ( 54 362 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 ( 56 360 180 ) ( 62 354 156 ) ( 60 354 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 @@ -724,7 +643,7 @@ ( 60 356 156 ) ( 62 356 156 ) ( 56 362 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 56 362 180 ) ( 62 356 156 ) ( 62 354 156 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 80 +// brush 71 { ( 60 340 156 ) ( 60 342 156 ) ( 54 336 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 ( 56 334 180 ) ( 62 340 156 ) ( 60 340 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 @@ -733,7 +652,7 @@ ( 60 342 156 ) ( 62 342 156 ) ( 56 336 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 56 336 180 ) ( 62 342 156 ) ( 62 340 156 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 81 +// brush 72 { ( 74 342 156 ) ( 80 336 180 ) ( 80 334 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 ( 80 334 180 ) ( 82 334 180 ) ( 76 340 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 @@ -742,7 +661,7 @@ ( 76 342 156 ) ( 82 336 180 ) ( 80 336 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 76 342 156 ) ( 76 340 156 ) ( 82 334 180 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 82 +// brush 73 { ( 74 356 156 ) ( 80 362 180 ) ( 80 360 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 ( 80 360 180 ) ( 82 360 180 ) ( 76 354 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 @@ -751,7 +670,7 @@ ( 76 356 156 ) ( 82 362 180 ) ( 80 362 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 76 356 156 ) ( 76 354 156 ) ( 82 360 180 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 83 +// brush 74 { ( 80 360 16 ) ( 80 360 12 ) ( 80 368 12 ) clip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 80 360 16 ) ( 784 360 16 ) ( 784 360 12 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 @@ -759,33 +678,33 @@ ( 80 368 12 ) ( 784 368 12 ) ( 784 360 16 ) clip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 ( 784 360 16 ) ( 784 368 12 ) ( 784 360 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 84 +// brush 75 { -( 400 224 16 ) ( 400 225 16 ) ( 400 224 17 ) redplaid [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 224 16 ) ( 400 224 17 ) ( 401 224 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 224 16 ) ( 401 224 16 ) ( 400 225 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 448 256 96 ) ( 448 257 96 ) ( 449 256 96 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 448 256 24 ) ( 449 256 24 ) ( 448 256 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 448 256 24 ) ( 448 256 25 ) ( 448 257 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 400 104 16 ) ( 400 105 16 ) ( 400 104 17 ) redplaid [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 +( 400 104 16 ) ( 400 104 17 ) ( 401 104 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 400 104 16 ) ( 401 104 16 ) ( 400 105 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 448 136 96 ) ( 448 137 96 ) ( 449 136 96 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 448 136 24 ) ( 449 136 24 ) ( 448 136 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 448 136 24 ) ( 448 136 25 ) ( 448 137 24 ) redplaid [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 85 +// brush 76 { -( 328 256 16 ) ( 328 257 16 ) ( 328 256 17 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 328 256 16 ) ( 328 256 17 ) ( 329 256 16 ) surface_beige [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 328 256 4 ) ( 329 256 4 ) ( 328 257 4 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 448 264 112 ) ( 448 265 112 ) ( 449 264 112 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 328 136 16 ) ( 328 137 16 ) ( 328 136 17 ) skip [ 0 -1 0 8 ] [ 0 0 -1 0 ] 0 1 1 +( 328 136 16 ) ( 328 136 17 ) ( 329 136 16 ) surface_beige [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 328 136 4 ) ( 329 136 4 ) ( 328 137 4 ) skip [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 1 1 +( 448 144 120 ) ( 448 145 120 ) ( 449 144 120 ) skip [ 1 0 0 0 ] [ 0 -1 0 8 ] 0 1 1 ( 448 264 24 ) ( 449 264 24 ) ( 448 264 25 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 488 264 24 ) ( 488 264 25 ) ( 488 265 24 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 488 144 24 ) ( 488 144 25 ) ( 488 145 24 ) skip [ 0 1 0 -8 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 86 +// brush 77 { ( 80 600 16 ) ( 80 592 12 ) ( 80 600 12 ) clip [ -1.2246467991473532e-16 -1 0 0 ] [ 0 0 -1 0 ] 180 1 1 ( 784 592 12 ) ( 80 592 12 ) ( 80 600 16 ) clip [ -1 1.2246467991473532e-16 0 32 ] [ 1.2246467991473532e-16 1 0 0 ] 180 1 1 ( 80 600 12 ) ( 80 592 12 ) ( 784 592 12 ) clip [ 1 -1.2246467991473532e-16 0 -32 ] [ 1.2246467991473532e-16 1 0 0 ] 180 1 1 ( 784 600 16 ) ( 80 600 16 ) ( 80 600 12 ) clip [ -1 1.2246467991473532e-16 0 32 ] [ 0 0 -1 0 ] 180 1 1 -( 784 600 16 ) ( 784 600 12 ) ( 784 592 12 ) clip [ 1.2246467991473532e-16 1 0 0 ] [ 0 0 -1 0 ] 180 1 1 +( 576 600 16 ) ( 576 600 12 ) ( 576 592 12 ) clip [ 1.2246467991473532e-16 1 0 0 ] [ 0 0 -1 0 ] 180 1 1 } -// brush 87 +// brush 78 { ( 80 936 16 ) ( 80 232 16 ) ( 80 232 12 ) clip [ -1.8369701987210297e-16 -1 0 56 ] [ 0 0 -1 0 ] 180 1 1 ( 80 360 16 ) ( 88 360 12 ) ( 80 360 12 ) clip [ 1 -1.8369701987210297e-16 0 23.999992 ] [ 0 0 -1 0 ] 180 1 1 @@ -793,7 +712,7 @@ ( 80 600 16 ) ( 80 600 12 ) ( 88 600 12 ) clip [ -1 1.8369701987210297e-16 0 -23.999992 ] [ 0 0 -1 0 ] 180 1 1 ( 88 936 12 ) ( 88 232 12 ) ( 80 232 16 ) clip [ -1.8369701987210297e-16 -1 0 56 ] [ -1 1.8369701987210297e-16 0 -24 ] 96.379364 1 1 } -// brush 88 +// brush 79 { ( 96 704 16 ) ( 96 705 16 ) ( 96 704 17 ) wall_brick [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 544 704 16 ) ( 544 704 17 ) ( 545 704 16 ) wall_brick [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 0.25 0.25 @@ -802,7 +721,7 @@ ( 576 720 32 ) ( 577 720 32 ) ( 576 720 33 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 576 736 32 ) ( 576 736 33 ) ( 576 737 32 ) wall_brick [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 89 +// brush 80 { ( 96 744 -20 ) ( 96 745 -20 ) ( 96 744 -19 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( -112 720 -20 ) ( -112 720 -19 ) ( -111 720 -20 ) skip [ 1 0 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 @@ -811,7 +730,7 @@ ( 16 1136 12 ) ( 17 1136 12 ) ( 16 1136 13 ) skip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 736 872 12 ) ( 736 872 13 ) ( 736 873 12 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 90 +// brush 81 { ( 736 712 -16 ) ( 736 713 -16 ) ( 736 712 -15 ) wall_concrete1 [ 0 -1 0 112 ] [ 0 0 -1 0 ] 0 1 1 ( 144 720 -16 ) ( 144 720 -15 ) ( 145 720 -16 ) wall_concrete1 [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 @@ -820,7 +739,7 @@ ( 272 864 16 ) ( 273 864 16 ) ( 272 864 17 ) wall_concrete1 [ -1 0 0 128 ] [ 0 0 -1 0 ] 0 1 1 ( 848 840 16 ) ( 848 840 17 ) ( 848 841 16 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 91 +// brush 82 { ( 784 704 16 ) ( 784 705 16 ) ( 784 704 17 ) wall_brick [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 1344 704 16 ) ( 1344 704 17 ) ( 1345 704 16 ) wall_brick [ 1 0 0 128 ] [ 0 0 -1 0 ] 0 0.25 0.25 @@ -829,7 +748,7 @@ ( 1376 720 32 ) ( 1377 720 32 ) ( 1376 720 33 ) wall_brick [ -1 0 0 -128 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 1168 736 32 ) ( 1168 736 33 ) ( 1168 737 32 ) wall_brick [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 92 +// brush 83 { ( 736 728 -20 ) ( 736 729 -20 ) ( 736 728 -19 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 608 864 -20 ) ( 608 864 -19 ) ( 609 864 -20 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 @@ -838,40 +757,998 @@ ( 736 1136 12 ) ( 737 1136 12 ) ( 736 1136 13 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 848 856 12 ) ( 848 856 13 ) ( 848 857 12 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 93 +// brush 84 { ( 848 872 -16 ) ( 848 873 -16 ) ( 848 872 -15 ) wall_concrete1 [ 0 -1 0 272 ] [ 0 0 -1 0 ] 0 1 1 -( 304 720 -16 ) ( 304 720 -15 ) ( 305 720 -16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 +( 304 800 -16 ) ( 304 800 -15 ) ( 305 800 -16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 ( 304 872 12 ) ( 305 872 12 ) ( 304 873 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 ( 432 1000 16 ) ( 432 1001 16 ) ( 433 1000 16 ) ground_greybrick [ 1 0 0 -96 ] [ 0 -1 0 -112 ] 0 0.5 0.5 ( 432 1136 16 ) ( 433 1136 16 ) ( 432 1136 17 ) skip [ -1 0 0 32 ] [ 0 0 -1 0 ] 0 1 1 ( 944 1000 16 ) ( 944 1000 17 ) ( 944 1001 16 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 } +// brush 85 +{ +( 736 600 16 ) ( 736 592 12 ) ( 736 600 12 ) clip [ -0 -1 0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 992 592 12 ) ( 288 592 12 ) ( 288 600 16 ) clip [ 1 0 -0 0 ] [ 0 -0.894427190999916 -0.447213595499958 0 ] 0 1 1 +( 288 600 12 ) ( 288 592 12 ) ( 992 592 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 992 600 16 ) ( 288 600 16 ) ( 288 600 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 784 600 16 ) ( 784 600 12 ) ( 784 592 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 86 +{ +( 576 1048 16 ) ( 576 344 16 ) ( 576 344 12 ) clip [ 0 -1 0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 576 600 16 ) ( 584 600 12 ) ( 576 600 12 ) clip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 576 344 12 ) ( 584 344 12 ) ( 584 1048 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 576 704 16 ) ( 576 704 12 ) ( 584 704 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 584 1048 12 ) ( 584 344 12 ) ( 576 344 16 ) clip [ 0.894427190999916 0 -0.447213595499958 0 ] [ 0 -1 0 0 ] 0 1 1 +} +// brush 87 +{ +( 728 1048 12 ) ( 736 344 16 ) ( 728 344 12 ) clip [ 0.894427190999916 0 0.447213595499958 -29.020447 ] [ 0 -1 0 0 ] 0 1 1 +( 736 600 16 ) ( 736 600 12 ) ( 728 600 12 ) clip [ 1 0 0 -40 ] [ 0 0 -1 0 ] 0 1 1 +( 736 344 12 ) ( 728 1048 12 ) ( 728 344 12 ) clip [ -1 0 0 40 ] [ 0 -1 0 0 ] 0 1 1 +( 736 864 16 ) ( 728 864 12 ) ( 736 864 12 ) clip [ -1 0 0 40 ] [ 0 0 -1 0 ] 0 1 1 +( 736 1048 16 ) ( 736 344 12 ) ( 736 344 16 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 88 +{ +( 840 1312 12 ) ( 848 608 16 ) ( 840 608 12 ) clip [ 0.894427190999916 -0 0.447213595499958 0 ] [ -0 -1 0 0 ] 0 1 1 +( 848 864 16 ) ( 848 864 12 ) ( 840 864 12 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 848 608 12 ) ( 840 1312 12 ) ( 840 608 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 848 1136 16 ) ( 840 1136 12 ) ( 848 1136 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 848 1312 16 ) ( 848 608 12 ) ( 848 608 16 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 89 +{ +( 736 864 16 ) ( 736 864 12 ) ( 736 872 12 ) clip [ 0 -1 0 -8 ] [ 0 0 -1 0 ] 0 1 1 +( 144 864 16 ) ( 848 864 16 ) ( 848 864 12 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 848 864 12 ) ( 848 872 12 ) ( 144 872 12 ) clip [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 1 1 +( 144 872 12 ) ( 848 872 12 ) ( 848 864 16 ) clip [ 1 0 0 0 ] [ 0 -1 0 -8 ] 0 1 1 +( 848 864 16 ) ( 848 872 12 ) ( 848 864 12 ) clip [ 0 1 0 8 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 90 +{ +( 728 872 12 ) ( 736 864 16 ) ( 728 864 12 ) clip [ 0.894427190999916 -0 0.447213595499958 0 ] [ -0 -1 0 0 ] 0 1 1 +( 728 864 12 ) ( 736 864 16 ) ( 736 864 12 ) clip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 736 864 12 ) ( 736 872 12 ) ( 728 872 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 728 872 12 ) ( 736 872 12 ) ( 736 864 16 ) clip [ 1 -0 0 0 ] [ -0 -0.894427190999916 0.447213595499958 0 ] 0 1 1 +( 736 864 16 ) ( 736 872 12 ) ( 736 864 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 91 +{ +( 728 592 12 ) ( 728 600 12 ) ( 736 600 16 ) clip [ 0.894427190999916 -0 0.447213595499958 0 ] [ -0 -1 0 0 ] 0 1 1 +( 728 592 12 ) ( 736 600 16 ) ( 736 592 12 ) clip [ 1 0 -0 0 ] [ 0 -0.894427190999916 -0.447213595499958 0 ] 0 1 1 +( 736 600 12 ) ( 728 592 12 ) ( 736 592 12 ) clip [ -1 0 -0 0 ] [ -0 -1 0 0 ] 0 1 1 +( 728 600 12 ) ( 736 600 12 ) ( 736 600 16 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 736 600 16 ) ( 736 600 12 ) ( 736 592 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 92 +{ +( 576 600 16 ) ( 576 592 12 ) ( 576 600 12 ) clip [ -0 -1 0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 584 592 12 ) ( 576 592 12 ) ( 576 600 16 ) clip [ 1 0 -0 0 ] [ 0 -0.894427190999916 -0.447213595499958 0 ] 0 1 1 +( 576 600 12 ) ( 576 592 12 ) ( 584 592 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 584 600 12 ) ( 576 600 16 ) ( 576 600 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 584 592 12 ) ( 576 600 16 ) ( 584 600 12 ) clip [ 0.894427190999916 0 -0.447213595499958 0 ] [ 0 -1 -0 0 ] 0 1 1 +} +// brush 93 +{ +( 576 704 16 ) ( 576 704 12 ) ( 576 712 12 ) clip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 +( 584 704 12 ) ( 576 704 12 ) ( 576 704 16 ) clip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 576 704 12 ) ( 584 712 12 ) ( 576 712 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 584 712 12 ) ( 576 704 16 ) ( 576 712 12 ) clip [ 1 0 0 0 ] [ 0 -0.894427190999916 0.447213595499958 0 ] 0 1 1 +( 584 712 12 ) ( 584 704 12 ) ( 576 704 16 ) clip [ 0.894427190999916 0 -0.447213595499958 0 ] [ 0 -1 0 0 ] 0 1 1 +} // brush 94 { -( 976 880 0 ) ( 976 881 0 ) ( 976 880 1 ) skip [ 0 -1 0 0 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -( 976 880 0 ) ( 976 880 1 ) ( 977 880 0 ) skip [ 1 0 0 -64 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -( 976 880 0 ) ( 977 880 0 ) ( 976 881 0 ) skip [ -1 0 0 64 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 1008 928 16 ) ( 1008 929 16 ) ( 1009 928 16 ) carpet_dullgreen [ 1 0 0 -64 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 1008 1072 16 ) ( 1009 1072 16 ) ( 1008 1072 17 ) skip [ -1 0 0 64 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -( 1232 928 16 ) ( 1232 928 17 ) ( 1232 929 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 -32 ] 0 0.5 0.5 +( 312 248 16 ) ( 312 249 16 ) ( 312 248 17 ) skip [ 0 -1 0 -48 ] [ 0 0 -1 0 ] 0 1 1 +( 312 256 16 ) ( 312 256 17 ) ( 313 256 16 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 +( 312 248 16 ) ( 313 248 16 ) ( 312 249 16 ) skip [ -1 0 0 24 ] [ 0 -1 0 -48 ] 0 1 1 +( 328 264 120 ) ( 328 265 120 ) ( 329 264 120 ) skip [ 1 0 0 -24 ] [ 0 -1 0 -48 ] 0 1 1 +( 328 264 24 ) ( 329 264 24 ) ( 328 264 25 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 328 264 24 ) ( 328 264 25 ) ( 328 265 24 ) skip [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 1 1 } // brush 95 { -( 988 912 16 ) ( 988 913 16 ) ( 988 912 17 ) redplaid [ 0 -1 0 16 ] [ 0 0 -1 16 ] 0 1 1 -( 988 896 16 ) ( 988 896 17 ) ( 989 896 16 ) redplaid [ 1 0 0 -124 ] [ 0 0 -1 16 ] 0 1 1 -( 988 912 16 ) ( 989 912 16 ) ( 988 913 16 ) redplaid [ -1 0 0 124 ] [ 0 -1 0 16 ] 0 1 1 -( 1020 928 64 ) ( 1020 929 64 ) ( 1021 928 64 ) redplaid [ 1 0 0 -124 ] [ 0 -1 0 16 ] 0 1 1 -( 1020 928 32 ) ( 1021 928 32 ) ( 1020 928 33 ) redplaid [ -1 0 0 124 ] [ 0 0 -1 16 ] 0 1 1 -( 1020 928 32 ) ( 1020 928 33 ) ( 1020 929 32 ) redplaid [ 0 1 0 -16 ] [ 0 0 -1 16 ] 0 1 1 +( 80 160 0 ) ( 80 161 0 ) ( 80 160 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 160 0 ) ( 80 160 1 ) ( 81 160 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 160 52 ) ( 81 160 52 ) ( 80 161 52 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 112 192 96 ) ( 112 193 96 ) ( 113 192 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 112 168 16 ) ( 113 168 16 ) ( 112 168 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 88 192 16 ) ( 88 192 17 ) ( 88 193 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } // brush 96 { -( 1024 984 16 ) ( 1024 985 16 ) ( 1024 984 17 ) redplaid [ 0 -1 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 1008 996 16 ) ( 1008 996 17 ) ( 1009 996 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 1008 984 16 ) ( 1009 984 16 ) ( 1008 985 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 24 ] 0 1 1 -( 1104 1080 36 ) ( 1104 1081 36 ) ( 1105 1080 36 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 24 ] 0 1 1 -( 1104 1068 32 ) ( 1105 1068 32 ) ( 1104 1068 33 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 1084 1080 32 ) ( 1084 1080 33 ) ( 1084 1081 32 ) redplaid [ 0 1 0 -24 ] [ 0 0 -1 0 ] 0 1 1 +( 80 48 0 ) ( 80 49 0 ) ( 80 48 1 ) surface_green [ 0 -1 0 -32 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 48 0 ) ( 80 48 1 ) ( 81 48 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 48 52 ) ( 81 48 52 ) ( 80 49 52 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 112 80 96 ) ( 112 81 96 ) ( 113 80 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 112 56 16 ) ( 113 56 16 ) ( 112 56 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 88 80 16 ) ( 88 80 17 ) ( 88 81 16 ) surface_green [ 0 1 0 32 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +} +// brush 97 +{ +( 72 -248 88 ) ( 72 -247 88 ) ( 72 -248 89 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 -63.999992 ] 90 0.5 0.5 +( 80 -64 88 ) ( 80 -64 89 ) ( 81 -64 88 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 -32 ] [ -0.999999999999999 0 4.371139006309477e-08 16 ] 90 0.5 0.5 +( 80 -248 104 ) ( 81 -248 104 ) ( 80 -247 104 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 +( 112 -216 112 ) ( 112 -215 112 ) ( 113 -216 112 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 +( 112 -48 104 ) ( 113 -48 104 ) ( 112 -48 105 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 312 -216 104 ) ( 312 -216 105 ) ( 312 -215 104 ) surface_green_edge [ 0 -4.371139006309477e-08 -0.999999999999999 32 ] [ 0 -0.999999999999999 4.371139006309477e-08 16.000008 ] 90 0.5 0.5 +} +// brush 98 +{ +( 224 8 16 ) ( 224 9 16 ) ( 224 8 17 ) redplaid [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 +( 224 104 16 ) ( 224 104 17 ) ( 225 104 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 224 8 16 ) ( 225 8 16 ) ( 224 9 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 248 96 48 ) ( 248 97 48 ) ( 249 96 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 248 136 24 ) ( 249 136 24 ) ( 248 136 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 312 96 24 ) ( 312 96 25 ) ( 312 97 24 ) redplaid [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 99 +{ +( 80 -56 48 ) ( 80 -55 48 ) ( 80 -56 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 -15.999992 ] 90 0.5 0.5 +( 80 -56 48 ) ( 80 -56 49 ) ( 81 -56 48 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 -32 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 80 -56 120 ) ( 81 -56 120 ) ( 80 -55 120 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -24 144 ) ( 112 -23 144 ) ( 113 -24 144 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -48 64 ) ( 113 -48 64 ) ( 112 -48 65 ) skip [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 +( 312 -24 64 ) ( 312 -24 65 ) ( 312 -23 64 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -40 ] 0 0.5 0.5 +} +// brush 100 +{ +( 80 -56 0 ) ( 80 -55 0 ) ( 80 -56 1 ) surface_green [ 0 -1 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 -56 0 ) ( 80 -56 1 ) ( 81 -56 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 -56 48 ) ( 81 -56 48 ) ( 80 -55 48 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -24 96 ) ( 112 -23 96 ) ( 113 -24 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -48 16 ) ( 113 -48 16 ) ( 112 -48 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 88 -24 16 ) ( 88 -24 17 ) ( 88 -23 16 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +} +// brush 101 +{ +( 224 -48 16 ) ( 224 -47 16 ) ( 224 -48 17 ) redplaid [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 +( 224 -48 16 ) ( 224 -48 17 ) ( 225 -48 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 224 -48 16 ) ( 225 -48 16 ) ( 224 -47 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 248 40 48 ) ( 248 41 48 ) ( 249 40 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 248 64 24 ) ( 249 64 24 ) ( 248 64 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 248 40 24 ) ( 248 40 25 ) ( 248 41 24 ) redplaid [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 102 +{ +( 72 -248 128 ) ( 72 -247 128 ) ( 72 -248 129 ) surface_green [ 0 -1 0 8 ] [ 0 0 -1 -48 ] 0 0.5 0.5 +( 80 -64 128 ) ( 80 -64 129 ) ( 81 -64 128 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 +( 80 -248 144 ) ( 81 -248 144 ) ( 80 -247 144 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 +( 112 -216 152 ) ( 112 -215 152 ) ( 113 -216 152 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -48 144 ) ( 113 -48 144 ) ( 112 -48 145 ) skip [ -1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 +( 312 -216 144 ) ( 312 -216 145 ) ( 312 -215 144 ) surface_green [ 0 1 0 -8 ] [ 0 0 -1 -48 ] 0 0.5 0.5 +} +// brush 103 +{ +( 80 -56 0 ) ( 80 -55 0 ) ( 80 -56 1 ) surface_green [ 0 -1 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 -56 0 ) ( 80 -56 1 ) ( 81 -56 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 -56 16 ) ( 81 -56 16 ) ( 80 -55 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -24 52 ) ( 112 -23 52 ) ( 113 -24 52 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -48 16 ) ( 113 -48 16 ) ( 112 -48 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 224 -24 16 ) ( 224 -24 17 ) ( 224 -23 16 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +} +// brush 104 +{ +( 224 -56 0 ) ( 224 -55 0 ) ( 224 -56 1 ) surface_green [ 0 -1 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 224 -56 0 ) ( 224 -56 1 ) ( 225 -56 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 224 -56 16 ) ( 225 -56 16 ) ( 224 -55 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 256 -24 96 ) ( 256 -23 96 ) ( 257 -24 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 256 -48 16 ) ( 257 -48 16 ) ( 256 -48 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 312 -24 16 ) ( 312 -24 17 ) ( 312 -23 16 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +} +// brush 105 +{ +( 80 -56 -8 ) ( 80 -55 -8 ) ( 80 -56 -7 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 16 ] [ 0 0.999999999999999 4.371139006309477e-08 -15.999992 ] 90 0.5 0.5 +( 176 -56 -8 ) ( 176 -56 -7 ) ( 177 -56 -8 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 16 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 176 -56 96 ) ( 177 -56 96 ) ( 176 -55 96 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 208 -24 104 ) ( 208 -23 104 ) ( 209 -24 104 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 208 -48 8 ) ( 209 -48 8 ) ( 208 -48 9 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 +( 312 -24 8 ) ( 312 -24 9 ) ( 312 -23 8 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -40 ] 0 0.5 0.5 +} +// brush 106 +{ +( 944 584 -20 ) ( 944 585 -20 ) ( 944 584 -19 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 816 720 -20 ) ( 816 720 -19 ) ( 817 720 -20 ) skip [ 1 0 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 816 584 -20 ) ( 817 584 -20 ) ( 816 585 -20 ) skip [ -1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 944 712 12 ) ( 944 713 12 ) ( 945 712 12 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 944 800 12 ) ( 945 800 12 ) ( 944 800 13 ) skip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 1408 712 12 ) ( 1408 712 13 ) ( 1408 713 12 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 107 +{ +( 848 792 -16 ) ( 848 793 -16 ) ( 848 792 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 304 720 -16 ) ( 304 720 -15 ) ( 305 720 -16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 +( 304 792 12 ) ( 305 792 12 ) ( 304 793 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 432 920 16 ) ( 432 921 16 ) ( 433 920 16 ) ground_greybrick [ 1 0 0 -96 ] [ 0 -1 0 -16 ] 0 0.5 0.5 +( 432 800 16 ) ( 433 800 16 ) ( 432 800 17 ) skip [ -1 0 0 32 ] [ 0 0 -1 0 ] 0 1 1 +( 944 920 16 ) ( 944 920 17 ) ( 944 921 16 ) wall_concrete1 [ 0 1 0 0 ] [ 0 0 -1 -32 ] 0 1 1 +} +// brush 108 +{ +( 80 256 40 ) ( 80 257 40 ) ( 80 256 41 ) surface_green [ 0 4.371139006309477e-08 -0.999999999999999 -47.999954 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 80 256 40 ) ( 80 256 41 ) ( 81 256 40 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -56 ] 0 0.5 0.5 +( 80 256 112 ) ( 81 256 112 ) ( 80 257 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 112 288 120 ) ( 112 289 120 ) ( 113 288 120 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 112 264 56 ) ( 113 264 56 ) ( 112 264 57 ) surface_green [ 4.371139006309477e-08 0 -0.999999999999999 -47.999954 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 312 288 56 ) ( 312 288 57 ) ( 312 289 56 ) skip [ 0 1 0 0 ] [ 0 0 -1 -56 ] 0 0.5 0.5 +} +// brush 109 +{ +( 80 -56 40 ) ( 80 -55 40 ) ( 80 -56 41 ) surface_green [ 0 4.371139006309477e-08 -0.999999999999999 -48 ] [ 0 0.999999999999999 4.371139006309477e-08 -16 ] 90 0.5 0.5 +( 80 -56 40 ) ( 80 -56 41 ) ( 81 -56 40 ) surface_green [ -4.371139006309477e-08 0 -0.999999999999999 -48.000015 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 80 -56 112 ) ( 81 -56 112 ) ( 80 -55 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -24 120 ) ( 112 -23 120 ) ( 113 -24 120 ) skip [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -48 56 ) ( 113 -48 56 ) ( 112 -48 57 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -56 ] 0 0.5 0.5 +( 312 -24 56 ) ( 312 -24 57 ) ( 312 -23 56 ) skip [ 0 1 0 -16 ] [ 0 0 -1 -56 ] 0 0.5 0.5 +} +// brush 110 +{ +( 312 -32 120 ) ( 312 -32 112 ) ( 312 16 120 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -15.9999695 ] [ 0 0.9999999999999866 1.6292067950285372e-07 47.999992 ] 90 0.5 0.5 +( 320 -32 120 ) ( 320 -32 112 ) ( 312 -32 120 ) skip [ 1 0 0 -16 ] [ 0 0 -1 16 ] 0 1 1 +( 312 16 104 ) ( 312 -32 104 ) ( 320 16 104 ) skip [ 1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 320 16 120 ) ( 320 -32 120 ) ( 312 16 120 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 16 120 ) ( 312 16 112 ) ( 320 16 120 ) skip [ -1 0 0 16 ] [ 0 0 -1 16 ] 0 1 1 +( 320 16 120 ) ( 320 16 112 ) ( 320 -32 120 ) skip [ 0 1 0 48 ] [ 0 0 -1 48 ] 0 0.5 0.5 +} +// brush 111 +{ +( 312 -56 16 ) ( 312 -40 16 ) ( 312 -56 32 ) surface_beige_corner [ 0 -1.3113417006681922e-07 0.9999999999999913 32 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 -32 ] 270 0.5 0.5 +( 312 -48 32 ) ( 320 -48 32 ) ( 312 -48 16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 320 -56 16 ) ( 320 -40 16 ) ( 312 -56 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 +( 312 -56 32 ) ( 312 -40 32 ) ( 320 -56 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 312 -40 32 ) ( 312 -40 16 ) ( 320 -40 32 ) skip [ 1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 320 -56 32 ) ( 320 -40 32 ) ( 320 -56 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 112 +{ +( 312 152 32 ) ( 312 24 32 ) ( 312 152 16 ) surface_beige_corner [ 0 -0.9999999999999997 -1.224647977550801e-16 0 ] [ -0 1.224647977550801e-16 -0.9999999999999997 32 ] 0 0.5 0.5 +( 320 248 16 ) ( 312 248 16 ) ( 320 248 32 ) skip [ 0.9999999999999957 0 8.742277997596912e-08 16 ] [ -8.742277997596912e-08 0 0.9999999999999957 0 ] 180 0.5 0.5 +( 312 152 16 ) ( 312 24 16 ) ( 320 152 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 1 1 +( 320 152 32 ) ( 320 24 32 ) ( 312 152 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 312 256 16 ) ( 320 256 16 ) ( 312 256 32 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 320 152 16 ) ( 320 24 16 ) ( 320 152 32 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 113 +{ +( 312 152 48 ) ( 312 24 48 ) ( 312 152 32 ) surface_beige_edge [ 0 -0.9999999999999998 0 0 ] [ 0 0 -0.9999999999999998 -32 ] 0 0.5 0.5 +( 320 248 32 ) ( 312 248 32 ) ( 320 248 48 ) skip [ 0.9999999999999957 0 8.742277997596912e-08 16 ] [ -8.742277997596912e-08 0 0.9999999999999957 -32 ] 180 0.5 0.5 +( 312 152 32 ) ( 312 24 32 ) ( 320 152 32 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 1 1 +( 320 152 104 ) ( 320 24 104 ) ( 312 152 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 312 256 32 ) ( 320 256 32 ) ( 312 256 48 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 320 152 32 ) ( 320 24 32 ) ( 320 152 48 ) skip [ 0 1 0 32 ] [ 0 0 -1 32 ] 0 0.5 0.5 +} +// brush 114 +{ +( 312 152 120 ) ( 312 24 120 ) ( 312 152 104 ) surface_beige_corner [ 0 1.6292067950285372e-07 -0.9999999999999866 48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 +( 320 248 104 ) ( 312 248 104 ) ( 320 248 120 ) skip [ 0.9999999999999957 0 8.742277997596912e-08 16 ] [ -8.742277997596912e-08 0 0.9999999999999957 -48 ] 180 0.5 0.5 +( 312 152 104 ) ( 312 24 104 ) ( 320 152 104 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 1 1 +( 320 152 120 ) ( 320 24 120 ) ( 312 152 120 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 312 256 104 ) ( 320 256 104 ) ( 312 256 120 ) skip [ -1 0 0 0 ] [ 0 0 -1 32 ] 0 0.25 0.25 +( 320 152 104 ) ( 320 24 104 ) ( 320 152 120 ) skip [ 0 1 0 32 ] [ 0 0 -1 48 ] 0 0.5 0.5 +} +// brush 115 +{ +( 80 -48 40 ) ( 80 -47 40 ) ( 80 -48 41 ) surface_green [ 0 4.371139006309477e-08 -0.999999999999999 -48 ] [ 0 0.999999999999999 4.371139006309477e-08 -32 ] 90 0.5 0.5 +( 80 -48 40 ) ( 80 -48 41 ) ( 81 -48 40 ) skip [ -4.371139006309477e-08 0 -0.999999999999999 -48 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 80 -48 112 ) ( 81 -48 112 ) ( 80 -47 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 32 ] 0 0.5 0.5 +( 112 -16 120 ) ( 112 -15 120 ) ( 113 -16 120 ) skip [ 1 0 0 0 ] [ 0 -1 0 32 ] 0 0.5 0.5 +( 112 256 56 ) ( 113 256 56 ) ( 112 256 57 ) skip [ -1 0 0 0 ] [ 0 0 -1 -56 ] 0 0.5 0.5 +( 88 -16 56 ) ( 88 -16 57 ) ( 88 -15 56 ) surface_green [ 0 1 0 -32 ] [ 0 0 -1 -56 ] 0 0.5 0.5 +} +// brush 116 +{ +( 944 800 0 ) ( 944 801 0 ) ( 944 800 1 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 944 800 0 ) ( 944 800 1 ) ( 945 800 0 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 +( 944 800 0 ) ( 945 800 0 ) ( 944 801 0 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 +( 992 848 16 ) ( 992 849 16 ) ( 993 848 16 ) floor_checkertiles [ 1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.25 0.25 +( 992 1024 16 ) ( 993 1024 16 ) ( 992 1024 17 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 +( 1264 848 16 ) ( 1264 848 17 ) ( 1264 849 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 117 +{ +( 944 800 16 ) ( 944 801 16 ) ( 944 800 17 ) redplaid [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 944 800 16 ) ( 944 800 17 ) ( 945 800 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 944 800 16 ) ( 945 800 16 ) ( 944 801 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 952 840 96 ) ( 952 841 96 ) ( 953 840 96 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 952 824 24 ) ( 953 824 24 ) ( 952 824 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 952 840 24 ) ( 952 840 25 ) ( 952 841 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 118 +{ +( 944 872 16 ) ( 944 873 16 ) ( 944 872 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 +( 944 872 16 ) ( 944 872 17 ) ( 945 872 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 944 872 16 ) ( 945 872 16 ) ( 944 873 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 952 912 112 ) ( 952 913 112 ) ( 953 912 112 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 952 888 24 ) ( 953 888 24 ) ( 952 888 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 952 912 24 ) ( 952 912 25 ) ( 952 913 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 119 +{ +( 944 848 32 ) ( 944 849 32 ) ( 944 848 33 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 +( 944 800 32 ) ( 944 800 33 ) ( 945 800 32 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 944 848 96 ) ( 945 848 96 ) ( 944 849 96 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 952 888 112 ) ( 952 889 112 ) ( 953 888 112 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 952 872 40 ) ( 953 872 40 ) ( 952 872 41 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 952 888 40 ) ( 952 888 41 ) ( 952 889 40 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 120 +{ +( 944 888 16 ) ( 944 889 16 ) ( 944 888 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 +( 944 888 16 ) ( 944 888 17 ) ( 945 888 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 944 888 16 ) ( 945 888 16 ) ( 944 889 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 952 928 48 ) ( 952 929 48 ) ( 953 928 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 952 992 24 ) ( 953 992 24 ) ( 952 992 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 952 928 24 ) ( 952 928 25 ) ( 952 929 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 121 +{ +( 944 888 16 ) ( 944 889 16 ) ( 944 888 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 +( 944 888 16 ) ( 944 888 17 ) ( 945 888 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 944 888 96 ) ( 945 888 96 ) ( 944 889 96 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 952 928 112 ) ( 952 929 112 ) ( 953 928 112 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 952 992 24 ) ( 953 992 24 ) ( 952 992 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 952 928 24 ) ( 952 928 25 ) ( 952 929 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 122 +{ +( 944 992 16 ) ( 944 993 16 ) ( 944 992 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 +( 944 992 16 ) ( 944 992 17 ) ( 945 992 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 944 992 16 ) ( 945 992 16 ) ( 944 993 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 952 1032 112 ) ( 952 1033 112 ) ( 953 1032 112 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 952 1024 24 ) ( 953 1024 24 ) ( 952 1024 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 952 1032 24 ) ( 952 1032 25 ) ( 952 1033 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 123 +{ +( 328 24 48 ) ( 328 58 46 ) ( 328 58 48 ) skip [ 0 -1 0 -12 ] [ 0 0 -1 0 ] 0 1 1 +( 340 24 48 ) ( 328 24 46 ) ( 328 24 48 ) marblewhite [ 1 -0 0 0 ] [ 0 -0 -1 0 ] 0 0.25 0.25 +( 340 58 46 ) ( 328 24 46 ) ( 340 24 46 ) marblewhite [ -1 0 -0 0 ] [ -0 -1 0 0 ] 0 0.25 0.25 +( 340 58 48 ) ( 328 24 48 ) ( 328 58 48 ) marblewhite [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 340 136 48 ) ( 328 136 46 ) ( 340 136 46 ) skip [ -1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 +( 361 58 48 ) ( 361 24 46 ) ( 361 24 48 ) marblewhite [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 124 +{ +( 361 24 48 ) ( 361 58 46 ) ( 361 58 48 ) skip [ 0 -1 0 -12 ] [ 0 0 -1 0 ] 0 1 1 +( 379 103 48 ) ( 367 103 46 ) ( 367 103 48 ) marblewhite [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 379 58 46 ) ( 367 24 46 ) ( 379 24 46 ) marblewhite [ -1 0 0 28 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 379 58 48 ) ( 367 24 48 ) ( 367 58 48 ) marblewhite [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 379 136 48 ) ( 367 136 46 ) ( 379 136 46 ) skip [ -1 0 0 23 ] [ 0 0 -1 0 ] 0 1 1 +( 400 58 48 ) ( 400 24 46 ) ( 400 24 48 ) marblewhite [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 125 +{ +( 448 24 48 ) ( 448 58 46 ) ( 448 58 48 ) marblewhite [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 0.25 0.25 +( 460 -40 48 ) ( 448 -40 46 ) ( 448 -40 48 ) skip [ 1 -0 0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 460 58 46 ) ( 448 24 46 ) ( 460 24 46 ) skip [ -1 0 -0 0 ] [ -0 -1 0 0 ] 0 1 1 +( 460 58 48 ) ( 448 24 48 ) ( 448 58 48 ) marblewhite [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 460 136 48 ) ( 448 136 46 ) ( 460 136 46 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 481 58 48 ) ( 481 24 46 ) ( 481 24 48 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 126 +{ +( 448 24 16 ) ( 448 25 16 ) ( 448 24 17 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 448 104 16 ) ( 448 104 17 ) ( 449 104 16 ) woodpale [ -4.371139006309477e-08 0 -0.999999999999999 0 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.25 0.25 +( 448 24 16 ) ( 449 24 16 ) ( 448 25 16 ) skip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 480 72 46 ) ( 480 73 46 ) ( 481 72 46 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 480 136 24 ) ( 481 136 24 ) ( 480 136 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 480 72 24 ) ( 480 72 25 ) ( 480 73 24 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 127 +{ +( 848 1136 0 ) ( 848 1137 0 ) ( 848 1136 1 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 912 1136 0 ) ( 912 1136 1 ) ( 913 1136 0 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 912 1136 0 ) ( 913 1136 0 ) ( 912 1137 0 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 944 1200 16 ) ( 944 1201 16 ) ( 945 1200 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 944 1800 16 ) ( 945 1800 16 ) ( 944 1800 17 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 944 1200 16 ) ( 944 1200 17 ) ( 944 1201 16 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 128 +{ +( 952 1216 24 ) ( 952 1217 24 ) ( 952 1216 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1216 24 ) ( 952 1216 25 ) ( 953 1216 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1216 16 ) ( 953 1216 16 ) ( 952 1217 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1224 112 ) ( 968 1225 112 ) ( 969 1224 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1224 32 ) ( 969 1224 32 ) ( 968 1224 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1224 32 ) ( 1304 1224 33 ) ( 1304 1225 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 129 +{ +( 952 1408 24 ) ( 952 1409 24 ) ( 952 1408 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1408 24 ) ( 952 1408 25 ) ( 953 1408 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1408 16 ) ( 953 1408 16 ) ( 952 1409 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1416 112 ) ( 968 1417 112 ) ( 969 1416 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1416 32 ) ( 969 1416 32 ) ( 968 1416 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1416 32 ) ( 1304 1416 33 ) ( 1304 1417 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 130 +{ +( 952 1024 24 ) ( 952 1025 24 ) ( 952 1024 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1024 24 ) ( 952 1024 25 ) ( 953 1024 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1024 16 ) ( 953 1024 16 ) ( 952 1025 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1032 112 ) ( 968 1033 112 ) ( 969 1032 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1032 32 ) ( 969 1032 32 ) ( 968 1032 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1032 32 ) ( 1304 1032 33 ) ( 1304 1033 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 131 +{ +( 1194 1132 16 ) ( 1194 1133 16 ) ( 1194 1132 17 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1188 1134 16 ) ( 1188 1134 17 ) ( 1189 1134 16 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1188 1132 16 ) ( 1189 1132 16 ) ( 1188 1133 16 ) clip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 1284 1228 44 ) ( 1284 1229 44 ) ( 1285 1228 44 ) clip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 1284 1216 32 ) ( 1285 1216 32 ) ( 1284 1216 33 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1264 1228 32 ) ( 1264 1228 33 ) ( 1264 1229 32 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 132 +{ +( 952 1120 16 ) ( 952 1121 16 ) ( 952 1120 17 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 180 0.5 0.5 +( 960 1120 16 ) ( 960 1120 17 ) ( 961 1120 16 ) surface_beige [ 1 0 0 -16 ] [ 0 0 -1 0 ] 180 0.5 0.5 +( 960 1120 16 ) ( 961 1120 16 ) ( 960 1121 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -32 ] 180 0.5 0.5 +( 1008 1128 96 ) ( 1008 1129 96 ) ( 1009 1128 96 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 90 0.5 0.5 +( 1008 1128 24 ) ( 1009 1128 24 ) ( 1008 1128 25 ) surface_beige [ -1 0 0 16 ] [ 0 0 -1 0 ] 180 0.5 0.5 +( 1000 1128 24 ) ( 1000 1128 25 ) ( 1000 1129 24 ) surface_beige_edge [ 0 1 0 0 ] [ 0 0 -1 0 ] 180 0.5 0.5 +} +// brush 133 +{ +( 1082 1132 16 ) ( 1082 1133 16 ) ( 1082 1132 17 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1076 1134 16 ) ( 1076 1134 17 ) ( 1077 1134 16 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1076 1132 16 ) ( 1077 1132 16 ) ( 1076 1133 16 ) clip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 1172 1228 44 ) ( 1172 1229 44 ) ( 1173 1228 44 ) clip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 1172 1216 32 ) ( 1173 1216 32 ) ( 1172 1216 33 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1152 1228 32 ) ( 1152 1228 33 ) ( 1152 1229 32 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 134 +{ +( 1000 1120 32 ) ( 1000 1121 32 ) ( 1000 1120 33 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 32 ] 0 0.5 0.5 +( 1008 1120 32 ) ( 1008 1120 33 ) ( 1009 1120 32 ) surface_beige [ 1 0 0 -16 ] [ 0 0 -1 32 ] 0 0.5 0.5 +( 1008 1120 96 ) ( 1009 1120 96 ) ( 1008 1121 96 ) surface_beige_edge [ 4.371138994063005e-08 0.9999999999999989 0 0 ] [ -0.9999999999999989 4.371138994063005e-08 0 16 ] 270 0.5 0.5 +( 1056 1128 112 ) ( 1056 1129 112 ) ( 1057 1128 112 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 1056 1128 40 ) ( 1057 1128 40 ) ( 1056 1128 41 ) surface_beige [ -1 0 0 16 ] [ 0 0 -1 32 ] 0 0.5 0.5 +( 1048 1128 40 ) ( 1048 1128 41 ) ( 1048 1129 40 ) skip [ 0 1 0 32 ] [ 0 0 -1 32 ] 0 0.5 0.5 +} +// brush 135 +{ +( 1156 1196 16 ) ( 1156 1197 16 ) ( 1156 1196 17 ) clip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 1156 1196 16 ) ( 1156 1196 17 ) ( 1157 1196 16 ) clip [ 1 0 0 -32 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 1156 1196 16 ) ( 1157 1196 16 ) ( 1156 1197 16 ) clip [ -1 0 0 32 ] [ 0 -1 0 0 ] 180 0.25 0.25 +( 1188 1216 34 ) ( 1188 1217 34 ) ( 1189 1216 34 ) clip [ 1 0 0 -32 ] [ 0 -1 0 0 ] 180 0.25 0.25 +( 1188 1216 20 ) ( 1189 1216 20 ) ( 1188 1216 21 ) clip [ -1 0 0 32 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 1190 1216 20 ) ( 1190 1216 21 ) ( 1190 1217 20 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 180 0.25 0.25 +} +// brush 136 +{ +( 952 1024 0 ) ( 952 1025 0 ) ( 952 1024 1 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 -32 ] 180 0.5 0.5 +( 1032 1032 0 ) ( 1032 1032 1 ) ( 1033 1032 0 ) skip [ 1 0 0 16 ] [ 0 0 -1 -32 ] 180 0.5 0.5 +( 1032 1024 0 ) ( 1033 1024 0 ) ( 1032 1025 0 ) skip [ -1 0 0 -16 ] [ 0 -1 0 -32 ] 180 0.5 0.5 +( 1064 1072 16 ) ( 1064 1073 16 ) ( 1065 1072 16 ) carpet_dullgreen [ 1 0 0 80 ] [ 0 -1 0 -96 ] 180 0.5 0.5 +( 1064 1216 16 ) ( 1065 1216 16 ) ( 1064 1216 17 ) skip [ -1 0 0 -16 ] [ 0 0 -1 -32 ] 180 0.5 0.5 +( 1304 1072 16 ) ( 1304 1072 17 ) ( 1304 1073 16 ) skip [ 0 1 0 32 ] [ 0 0 -1 -32 ] 180 0.5 0.5 +} +// brush 137 +{ +( 1136 1032 16 ) ( 1136 1033 16 ) ( 1136 1032 17 ) clip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 1112 1032 16 ) ( 1112 1032 17 ) ( 1113 1032 16 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 1112 1032 16 ) ( 1113 1032 16 ) ( 1112 1033 16 ) clip [ -1 0 0 0 ] [ 0 -1 0 0 ] 180 0.25 0.25 +( 1184 1064 48 ) ( 1184 1065 48 ) ( 1185 1064 48 ) clip [ 1 0 0 0 ] [ 0 -1 0 0 ] 180 0.25 0.25 +( 1184 1056 24 ) ( 1185 1056 24 ) ( 1184 1056 25 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 1200 1064 24 ) ( 1200 1064 25 ) ( 1200 1065 24 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 180 0.25 0.25 +} +// brush 138 +{ +( 1048 1168 48 ) ( 1048 1169 48 ) ( 1048 1168 49 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 1048 1120 48 ) ( 1048 1120 49 ) ( 1049 1120 48 ) surface_beige_edge [ -0.9999999999999961 0 8.742278000372473e-08 0 ] [ 8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 +( 1048 1168 96 ) ( 1049 1168 96 ) ( 1048 1169 96 ) skip [ -1 0 0 16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 1056 1208 112 ) ( 1056 1209 112 ) ( 1057 1208 112 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 1056 1128 56 ) ( 1057 1128 56 ) ( 1056 1128 57 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 1056 1208 56 ) ( 1056 1208 57 ) ( 1056 1209 56 ) surface_beige_edge [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 139 +{ +( 1048 1176 16 ) ( 1048 1177 16 ) ( 1048 1176 17 ) surface_beige [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 180 0.5 0.5 +( 1048 1128 16 ) ( 1048 1128 17 ) ( 1049 1128 16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 180 0.5 0.5 +( 1048 1176 16 ) ( 1049 1176 16 ) ( 1048 1177 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -32 ] 180 0.5 0.5 +( 1056 1216 112 ) ( 1056 1217 112 ) ( 1057 1216 112 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 90 0.5 0.5 +( 1056 1216 24 ) ( 1057 1216 24 ) ( 1056 1216 25 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 180 0.5 0.5 +( 1056 1216 24 ) ( 1056 1216 25 ) ( 1056 1217 24 ) surface_beige [ 0 1 0 32 ] [ 0 0 -1 0 ] 180 0.5 0.5 +} +// brush 140 +{ +( 952 1120 32 ) ( 952 1121 32 ) ( 952 1120 33 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 32 ] 0 0.5 0.5 +( 952 1120 32 ) ( 952 1120 33 ) ( 953 1120 32 ) surface_beige [ 1 0 0 32 ] [ 0 0 -1 32 ] 0 0.5 0.5 +( 952 1120 96 ) ( 953 1120 96 ) ( 952 1121 96 ) skip [ -1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 1000 1128 112 ) ( 1000 1129 112 ) ( 1001 1128 112 ) skip [ 1 0 0 32 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 1000 1128 40 ) ( 1001 1128 40 ) ( 1000 1128 41 ) surface_beige [ -1 0 0 -32 ] [ 0 0 -1 32 ] 0 0.5 0.5 +( 1000 1128 40 ) ( 1000 1128 41 ) ( 1000 1129 40 ) skip [ 0 1 0 32 ] [ 0 0 -1 32 ] 0 0.5 0.5 +} +// brush 141 +{ +( 1048 1168 16 ) ( 1048 1169 16 ) ( 1048 1168 17 ) surface_beige_edge [ 0 0.9999999999999961 8.742278000372473e-08 0 ] [ 0 -8.742278000372473e-08 0.9999999999999961 0 ] 0 0.5 0.5 +( 1048 1120 16 ) ( 1048 1120 17 ) ( 1049 1120 16 ) surface_beige_edge [ -0.9999999999999961 0 8.742278000372473e-08 0 ] [ 8.742278000372473e-08 0 0.9999999999999961 0 ] 0 0.5 0.5 +( 1048 1168 16 ) ( 1049 1168 16 ) ( 1048 1169 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -32 ] 180 0.5 0.5 +( 1056 1208 96 ) ( 1056 1209 96 ) ( 1057 1208 96 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 90 0.5 0.5 +( 1056 1128 24 ) ( 1057 1128 24 ) ( 1056 1128 25 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 180 0.5 0.5 +( 1056 1208 24 ) ( 1056 1208 25 ) ( 1056 1209 24 ) surface_beige_edge [ 0 1 0 0 ] [ 0 0 -1 0 ] 180 0.5 0.5 +} +// brush 142 +{ +( 944 1032 8 ) ( 944 1033 8 ) ( 944 1032 9 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1024 8 ) ( 936 1024 9 ) ( 937 1024 8 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1032 8 ) ( 937 1032 8 ) ( 936 1033 8 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1064 16 ) ( 952 1065 16 ) ( 953 1064 16 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1672 16 ) ( 953 1672 16 ) ( 952 1672 17 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1064 16 ) ( 952 1064 17 ) ( 952 1065 16 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 143 +{ +( 1304 1024 24 ) ( 1304 1025 24 ) ( 1304 1024 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1024 24 ) ( 960 1024 25 ) ( 961 1024 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1024 16 ) ( 961 1024 16 ) ( 960 1025 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1032 112 ) ( 976 1033 112 ) ( 977 1032 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1216 32 ) ( 977 1216 32 ) ( 976 1216 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1032 32 ) ( 1312 1032 33 ) ( 1312 1033 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 144 +{ +( 944 1032 16 ) ( 944 1033 16 ) ( 944 1032 17 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1024 16 ) ( 936 1024 17 ) ( 937 1024 16 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1032 16 ) ( 937 1032 16 ) ( 936 1033 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1064 112 ) ( 952 1065 112 ) ( 953 1064 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1048 24 ) ( 953 1048 24 ) ( 952 1048 25 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1064 24 ) ( 952 1064 25 ) ( 952 1065 24 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 145 +{ +( 944 1112 16 ) ( 944 1113 16 ) ( 944 1112 17 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1096 16 ) ( 936 1096 17 ) ( 937 1096 16 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1112 16 ) ( 937 1112 16 ) ( 936 1113 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1144 112 ) ( 952 1145 112 ) ( 953 1144 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1216 24 ) ( 953 1216 24 ) ( 952 1216 25 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1144 24 ) ( 952 1144 25 ) ( 952 1145 24 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 146 +{ +( 952 1224 8 ) ( 952 1225 8 ) ( 952 1224 9 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1224 8 ) ( 952 1224 9 ) ( 953 1224 8 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1224 8 ) ( 953 1224 8 ) ( 952 1225 8 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1272 16 ) ( 968 1273 16 ) ( 969 1272 16 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1408 16 ) ( 969 1408 16 ) ( 968 1408 17 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1272 16 ) ( 1304 1272 17 ) ( 1304 1273 16 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 147 +{ +( 944 1080 16 ) ( 944 1081 16 ) ( 944 1080 17 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1048 16 ) ( 936 1048 17 ) ( 937 1048 16 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1080 96 ) ( 937 1080 96 ) ( 936 1081 96 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1112 112 ) ( 952 1113 112 ) ( 953 1112 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1096 24 ) ( 953 1096 24 ) ( 952 1096 25 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1112 24 ) ( 952 1112 25 ) ( 952 1113 24 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 148 +{ +( 944 1304 16 ) ( 944 1305 16 ) ( 944 1304 17 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1288 16 ) ( 936 1288 17 ) ( 937 1288 16 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1304 16 ) ( 937 1304 16 ) ( 936 1305 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1336 112 ) ( 952 1337 112 ) ( 953 1336 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1408 24 ) ( 953 1408 24 ) ( 952 1408 25 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1336 24 ) ( 952 1336 25 ) ( 952 1337 24 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 149 +{ +( 944 1272 16 ) ( 944 1273 16 ) ( 944 1272 17 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1240 16 ) ( 936 1240 17 ) ( 937 1240 16 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1272 96 ) ( 937 1272 96 ) ( 936 1273 96 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1304 112 ) ( 952 1305 112 ) ( 953 1304 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1288 24 ) ( 953 1288 24 ) ( 952 1288 25 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1304 24 ) ( 952 1304 25 ) ( 952 1305 24 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 150 +{ +( 944 1224 16 ) ( 944 1225 16 ) ( 944 1224 17 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1216 16 ) ( 936 1216 17 ) ( 937 1216 16 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1224 16 ) ( 937 1224 16 ) ( 936 1225 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1256 112 ) ( 952 1257 112 ) ( 953 1256 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1240 24 ) ( 953 1240 24 ) ( 952 1240 25 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1256 24 ) ( 952 1256 25 ) ( 952 1257 24 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 151 +{ +( 1304 1216 24 ) ( 1304 1217 24 ) ( 1304 1216 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1216 24 ) ( 960 1216 25 ) ( 961 1216 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1216 16 ) ( 961 1216 16 ) ( 960 1217 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1224 112 ) ( 976 1225 112 ) ( 977 1224 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1408 32 ) ( 977 1408 32 ) ( 976 1408 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1224 32 ) ( 1312 1224 33 ) ( 1312 1225 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 152 +{ +( 1304 1408 24 ) ( 1304 1409 24 ) ( 1304 1408 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1408 24 ) ( 960 1408 25 ) ( 961 1408 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1408 16 ) ( 961 1408 16 ) ( 960 1409 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1416 112 ) ( 976 1417 112 ) ( 977 1416 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1600 32 ) ( 977 1600 32 ) ( 976 1600 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1416 32 ) ( 1312 1416 33 ) ( 1312 1417 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 153 +{ +( 952 1600 24 ) ( 952 1601 24 ) ( 952 1600 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1600 24 ) ( 952 1600 25 ) ( 953 1600 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1600 16 ) ( 953 1600 16 ) ( 952 1601 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1608 112 ) ( 968 1609 112 ) ( 969 1608 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1608 32 ) ( 969 1608 32 ) ( 968 1608 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1608 32 ) ( 1304 1608 33 ) ( 1304 1609 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 154 +{ +( 944 1496 16 ) ( 944 1497 16 ) ( 944 1496 17 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1480 16 ) ( 936 1480 17 ) ( 937 1480 16 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1496 16 ) ( 937 1496 16 ) ( 936 1497 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1528 112 ) ( 952 1529 112 ) ( 953 1528 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1600 24 ) ( 953 1600 24 ) ( 952 1600 25 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1528 24 ) ( 952 1528 25 ) ( 952 1529 24 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 155 +{ +( 944 1464 16 ) ( 944 1465 16 ) ( 944 1464 17 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1432 16 ) ( 936 1432 17 ) ( 937 1432 16 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1464 96 ) ( 937 1464 96 ) ( 936 1465 96 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1496 112 ) ( 952 1497 112 ) ( 953 1496 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1480 24 ) ( 953 1480 24 ) ( 952 1480 25 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1496 24 ) ( 952 1496 25 ) ( 952 1497 24 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 156 +{ +( 944 1416 16 ) ( 944 1417 16 ) ( 944 1416 17 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1408 16 ) ( 936 1408 17 ) ( 937 1408 16 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1416 16 ) ( 937 1416 16 ) ( 936 1417 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1448 112 ) ( 952 1449 112 ) ( 953 1448 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1432 24 ) ( 953 1432 24 ) ( 952 1432 25 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1448 24 ) ( 952 1448 25 ) ( 952 1449 24 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 157 +{ +( 952 1416 8 ) ( 952 1417 8 ) ( 952 1416 9 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1416 8 ) ( 952 1416 9 ) ( 953 1416 8 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1416 8 ) ( 953 1416 8 ) ( 952 1417 8 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1464 16 ) ( 968 1465 16 ) ( 969 1464 16 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1600 16 ) ( 969 1600 16 ) ( 968 1600 17 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1464 16 ) ( 1304 1464 17 ) ( 1304 1465 16 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 158 +{ +( 952 1792 24 ) ( 952 1793 24 ) ( 952 1792 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1792 24 ) ( 952 1792 25 ) ( 953 1792 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1792 16 ) ( 953 1792 16 ) ( 952 1793 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1800 112 ) ( 968 1801 112 ) ( 969 1800 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1800 32 ) ( 969 1800 32 ) ( 968 1800 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1800 32 ) ( 1304 1800 33 ) ( 1304 1801 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 159 +{ +( 944 1688 16 ) ( 944 1689 16 ) ( 944 1688 17 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1672 16 ) ( 936 1672 17 ) ( 937 1672 16 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1688 16 ) ( 937 1688 16 ) ( 936 1689 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1720 112 ) ( 952 1721 112 ) ( 953 1720 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1800 24 ) ( 953 1800 24 ) ( 952 1800 25 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1720 24 ) ( 952 1720 25 ) ( 952 1721 24 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 160 +{ +( 944 1656 16 ) ( 944 1657 16 ) ( 944 1656 17 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1624 16 ) ( 936 1624 17 ) ( 937 1624 16 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1656 96 ) ( 937 1656 96 ) ( 936 1657 96 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1688 112 ) ( 952 1689 112 ) ( 953 1688 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1672 24 ) ( 953 1672 24 ) ( 952 1672 25 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1688 24 ) ( 952 1688 25 ) ( 952 1689 24 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 161 +{ +( 944 1608 16 ) ( 944 1609 16 ) ( 944 1608 17 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1600 16 ) ( 936 1600 17 ) ( 937 1600 16 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1608 16 ) ( 937 1608 16 ) ( 936 1609 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1640 112 ) ( 952 1641 112 ) ( 953 1640 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1624 24 ) ( 953 1624 24 ) ( 952 1624 25 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1640 24 ) ( 952 1640 25 ) ( 952 1641 24 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 162 +{ +( 1304 1600 24 ) ( 1304 1601 24 ) ( 1304 1600 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1600 24 ) ( 960 1600 25 ) ( 961 1600 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1600 16 ) ( 961 1600 16 ) ( 960 1601 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1608 112 ) ( 976 1609 112 ) ( 977 1608 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1800 32 ) ( 977 1800 32 ) ( 976 1800 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1608 32 ) ( 1312 1608 33 ) ( 1312 1609 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 163 +{ +( 952 1608 8 ) ( 952 1609 8 ) ( 952 1608 9 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1608 8 ) ( 952 1608 9 ) ( 953 1608 8 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1608 8 ) ( 953 1608 8 ) ( 952 1609 8 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1656 16 ) ( 968 1657 16 ) ( 969 1656 16 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1792 16 ) ( 969 1792 16 ) ( 968 1792 17 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1656 16 ) ( 1304 1656 17 ) ( 1304 1657 16 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 164 +{ +( 1304 1216 136 ) ( 1304 1217 136 ) ( 1304 1216 137 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1216 136 ) ( 960 1216 137 ) ( 961 1216 136 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1216 128 ) ( 961 1216 128 ) ( 960 1217 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1224 224 ) ( 976 1225 224 ) ( 977 1224 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1408 144 ) ( 977 1408 144 ) ( 976 1408 145 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1224 144 ) ( 1312 1224 145 ) ( 1312 1225 144 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 165 +{ +( 1304 1408 136 ) ( 1304 1409 136 ) ( 1304 1408 137 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1408 136 ) ( 960 1408 137 ) ( 961 1408 136 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1408 128 ) ( 961 1408 128 ) ( 960 1409 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1416 224 ) ( 976 1417 224 ) ( 977 1416 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1600 144 ) ( 977 1600 144 ) ( 976 1600 145 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1416 144 ) ( 1312 1416 145 ) ( 1312 1417 144 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 166 +{ +( 1304 1600 136 ) ( 1304 1601 136 ) ( 1304 1600 137 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1600 136 ) ( 960 1600 137 ) ( 961 1600 136 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1600 128 ) ( 961 1600 128 ) ( 960 1601 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1608 224 ) ( 976 1609 224 ) ( 977 1608 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1800 144 ) ( 977 1800 144 ) ( 976 1800 145 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1608 144 ) ( 1312 1608 145 ) ( 1312 1609 144 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 167 +{ +( 952 1792 136 ) ( 952 1793 136 ) ( 952 1792 137 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1792 136 ) ( 952 1792 137 ) ( 953 1792 136 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1792 128 ) ( 953 1792 128 ) ( 952 1793 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1800 224 ) ( 968 1801 224 ) ( 969 1800 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1800 144 ) ( 969 1800 144 ) ( 968 1800 145 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1800 144 ) ( 1304 1800 145 ) ( 1304 1801 144 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 168 +{ +( 952 1600 136 ) ( 952 1601 136 ) ( 952 1600 137 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1600 136 ) ( 952 1600 137 ) ( 953 1600 136 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1600 128 ) ( 953 1600 128 ) ( 952 1601 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1608 224 ) ( 968 1609 224 ) ( 969 1608 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1608 144 ) ( 969 1608 144 ) ( 968 1608 145 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1608 144 ) ( 1304 1608 145 ) ( 1304 1609 144 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 169 +{ +( 952 1408 136 ) ( 952 1409 136 ) ( 952 1408 137 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1408 136 ) ( 952 1408 137 ) ( 953 1408 136 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1408 128 ) ( 953 1408 128 ) ( 952 1409 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1416 224 ) ( 968 1417 224 ) ( 969 1416 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1416 144 ) ( 969 1416 144 ) ( 968 1416 145 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1416 144 ) ( 1304 1416 145 ) ( 1304 1417 144 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 170 +{ +( 944 1496 128 ) ( 944 1497 128 ) ( 944 1496 129 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1480 128 ) ( 936 1480 129 ) ( 937 1480 128 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1496 128 ) ( 937 1496 128 ) ( 936 1497 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1528 224 ) ( 952 1529 224 ) ( 953 1528 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1600 136 ) ( 953 1600 136 ) ( 952 1600 137 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1528 136 ) ( 952 1528 137 ) ( 952 1529 136 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 171 +{ +( 944 1656 128 ) ( 944 1657 128 ) ( 944 1656 129 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1624 128 ) ( 936 1624 129 ) ( 937 1624 128 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1656 208 ) ( 937 1656 208 ) ( 936 1657 208 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1688 224 ) ( 952 1689 224 ) ( 953 1688 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1672 136 ) ( 953 1672 136 ) ( 952 1672 137 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1688 136 ) ( 952 1688 137 ) ( 952 1689 136 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 172 +{ +( 944 1688 128 ) ( 944 1689 128 ) ( 944 1688 129 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1672 128 ) ( 936 1672 129 ) ( 937 1672 128 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1688 128 ) ( 937 1688 128 ) ( 936 1689 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1720 224 ) ( 952 1721 224 ) ( 953 1720 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1800 136 ) ( 953 1800 136 ) ( 952 1800 137 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1720 136 ) ( 952 1720 137 ) ( 952 1721 136 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 173 +{ +( 944 1608 128 ) ( 944 1609 128 ) ( 944 1608 129 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1600 128 ) ( 936 1600 129 ) ( 937 1600 128 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1608 128 ) ( 937 1608 128 ) ( 936 1609 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1640 224 ) ( 952 1641 224 ) ( 953 1640 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1624 136 ) ( 953 1624 136 ) ( 952 1624 137 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1640 136 ) ( 952 1640 137 ) ( 952 1641 136 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 174 +{ +( 944 1464 128 ) ( 944 1465 128 ) ( 944 1464 129 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1432 128 ) ( 936 1432 129 ) ( 937 1432 128 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1464 208 ) ( 937 1464 208 ) ( 936 1465 208 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1496 224 ) ( 952 1497 224 ) ( 953 1496 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1480 136 ) ( 953 1480 136 ) ( 952 1480 137 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1496 136 ) ( 952 1496 137 ) ( 952 1497 136 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 175 +{ +( 944 1416 128 ) ( 944 1417 128 ) ( 944 1416 129 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1408 128 ) ( 936 1408 129 ) ( 937 1408 128 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1416 128 ) ( 937 1416 128 ) ( 936 1417 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1448 224 ) ( 952 1449 224 ) ( 953 1448 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1432 136 ) ( 953 1432 136 ) ( 952 1432 137 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1448 136 ) ( 952 1448 137 ) ( 952 1449 136 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 176 +{ +( 944 1304 128 ) ( 944 1305 128 ) ( 944 1304 129 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1288 128 ) ( 936 1288 129 ) ( 937 1288 128 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1304 128 ) ( 937 1304 128 ) ( 936 1305 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1336 224 ) ( 952 1337 224 ) ( 953 1336 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1408 136 ) ( 953 1408 136 ) ( 952 1408 137 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1336 136 ) ( 952 1336 137 ) ( 952 1337 136 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 177 +{ +( 944 1272 128 ) ( 944 1273 128 ) ( 944 1272 129 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1240 128 ) ( 936 1240 129 ) ( 937 1240 128 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1272 208 ) ( 937 1272 208 ) ( 936 1273 208 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1304 224 ) ( 952 1305 224 ) ( 953 1304 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1288 136 ) ( 953 1288 136 ) ( 952 1288 137 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1304 136 ) ( 952 1304 137 ) ( 952 1305 136 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 178 +{ +( 944 1224 128 ) ( 944 1225 128 ) ( 944 1224 129 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1216 128 ) ( 936 1216 129 ) ( 937 1216 128 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1224 128 ) ( 937 1224 128 ) ( 936 1225 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1256 224 ) ( 952 1257 224 ) ( 953 1256 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1240 136 ) ( 953 1240 136 ) ( 952 1240 137 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1256 136 ) ( 952 1256 137 ) ( 952 1257 136 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 179 +{ +( 952 1216 136 ) ( 952 1217 136 ) ( 952 1216 137 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1216 136 ) ( 952 1216 137 ) ( 953 1216 136 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1216 128 ) ( 953 1216 128 ) ( 952 1217 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1224 224 ) ( 968 1225 224 ) ( 969 1224 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1224 144 ) ( 969 1224 144 ) ( 968 1224 145 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1224 144 ) ( 1304 1224 145 ) ( 1304 1225 144 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 180 +{ +( 1304 1024 136 ) ( 1304 1025 136 ) ( 1304 1024 137 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1024 136 ) ( 960 1024 137 ) ( 961 1024 136 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1024 128 ) ( 961 1024 128 ) ( 960 1025 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1032 224 ) ( 976 1033 224 ) ( 977 1032 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1216 144 ) ( 977 1216 144 ) ( 976 1216 145 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1032 144 ) ( 1312 1032 145 ) ( 1312 1033 144 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 181 +{ +( 952 1024 136 ) ( 952 1025 136 ) ( 952 1024 137 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1024 136 ) ( 952 1024 137 ) ( 953 1024 136 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1024 128 ) ( 953 1024 128 ) ( 952 1025 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1032 224 ) ( 968 1033 224 ) ( 969 1032 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1032 144 ) ( 969 1032 144 ) ( 968 1032 145 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1032 144 ) ( 1304 1032 145 ) ( 1304 1033 144 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 182 +{ +( 944 1112 128 ) ( 944 1113 128 ) ( 944 1112 129 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1096 128 ) ( 936 1096 129 ) ( 937 1096 128 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1112 128 ) ( 937 1112 128 ) ( 936 1113 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1144 224 ) ( 952 1145 224 ) ( 953 1144 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1216 136 ) ( 953 1216 136 ) ( 952 1216 137 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1144 136 ) ( 952 1144 137 ) ( 952 1145 136 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 183 +{ +( 944 1080 128 ) ( 944 1081 128 ) ( 944 1080 129 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1048 128 ) ( 936 1048 129 ) ( 937 1048 128 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1080 208 ) ( 937 1080 208 ) ( 936 1081 208 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1112 224 ) ( 952 1113 224 ) ( 953 1112 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1096 136 ) ( 953 1096 136 ) ( 952 1096 137 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1112 136 ) ( 952 1112 137 ) ( 952 1113 136 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 184 +{ +( 944 1032 128 ) ( 944 1033 128 ) ( 944 1032 129 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1024 128 ) ( 936 1024 129 ) ( 937 1024 128 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1032 128 ) ( 937 1032 128 ) ( 936 1033 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1064 224 ) ( 952 1065 224 ) ( 953 1064 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1048 136 ) ( 953 1048 136 ) ( 952 1048 137 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1064 136 ) ( 952 1064 137 ) ( 952 1065 136 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 185 +{ +( 944 1032 120 ) ( 944 1033 120 ) ( 944 1032 121 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1024 120 ) ( 936 1024 121 ) ( 937 1024 120 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1032 112 ) ( 937 1032 112 ) ( 936 1033 112 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1064 128 ) ( 952 1065 128 ) ( 953 1064 128 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1800 128 ) ( 953 1800 128 ) ( 952 1800 129 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1064 128 ) ( 1312 1064 129 ) ( 1312 1065 128 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 186 +{ +( 848 1032 120 ) ( 848 1033 120 ) ( 848 1032 121 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 568 1024 120 ) ( 568 1024 121 ) ( 569 1024 120 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 568 1032 112 ) ( 569 1032 112 ) ( 568 1033 112 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 584 1064 128 ) ( 584 1065 128 ) ( 585 1064 128 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 584 1800 128 ) ( 585 1800 128 ) ( 584 1800 129 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 944 1064 128 ) ( 944 1064 129 ) ( 944 1065 128 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 187 +{ +( 848 256 120 ) ( 848 257 120 ) ( 848 256 121 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 800 120 ) ( 936 800 121 ) ( 937 800 120 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 256 112 ) ( 937 256 112 ) ( 936 257 112 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 288 128 ) ( 952 289 128 ) ( 953 288 128 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1024 128 ) ( 953 1024 128 ) ( 952 1024 129 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 288 128 ) ( 1312 288 129 ) ( 1312 289 128 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 188 +{ +( 944 1032 232 ) ( 944 1033 232 ) ( 944 1032 233 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1024 232 ) ( 936 1024 233 ) ( 937 1024 232 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1032 224 ) ( 937 1032 224 ) ( 936 1033 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1064 240 ) ( 952 1065 240 ) ( 953 1064 240 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1800 240 ) ( 953 1800 240 ) ( 952 1800 241 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1064 240 ) ( 1312 1064 241 ) ( 1312 1065 240 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +} +// entity 1 +{ +"classname" "func_transparent" +// brush 0 +{ +( 82 246 52 ) ( 82 247 52 ) ( 82 246 53 ) glass [ 0 -1 0 0 ] [ -0 -0 -1 -24 ] 0 0.5 0.5 +( 82 168 52 ) ( 82 168 53 ) ( 83 168 52 ) glass [ 1 0 -0 0 ] [ 0 -0 -1 -24 ] 0 0.5 0.5 +( 82 246 52 ) ( 83 246 52 ) ( 82 247 52 ) glass [ -1 0 0 0 ] [ -0 -1 -0 -24 ] 0 0.5 0.5 +( 84 256 96 ) ( 84 257 96 ) ( 85 256 96 ) glass [ 1 0 0 0 ] [ 0 -1 0 -24 ] 0 0.5 0.5 +( 84 256 54 ) ( 85 256 54 ) ( 84 256 55 ) glass [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 84 256 54 ) ( 84 256 55 ) ( 84 257 54 ) glass [ 0 1 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +} +// brush 1 +{ +( 88 260 52 ) ( 88 261 52 ) ( 88 260 53 ) glass [ 0 -1 0 0 ] [ -0 -0 -1 -24 ] 0 0.5 0.5 +( 148 260 52 ) ( 148 260 53 ) ( 149 260 52 ) glass [ 1 0 -0 0 ] [ 0 -0 -1 -24 ] 0 0.5 0.5 +( 148 260 52 ) ( 149 260 52 ) ( 148 261 52 ) glass [ -1 0 0 0 ] [ -0 -1 -0 -24 ] 0 0.5 0.5 +( 160 262 96 ) ( 160 263 96 ) ( 161 262 96 ) glass [ 1 0 0 0 ] [ 0 -1 0 -24 ] 0 0.5 0.5 +( 160 262 54 ) ( 161 262 54 ) ( 160 262 55 ) glass [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 144 262 54 ) ( 144 262 55 ) ( 144 263 54 ) glass [ 0 1 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +} +// brush 2 +{ +( 224 260 52 ) ( 224 261 52 ) ( 224 260 53 ) glass [ 0 -1 0 0 ] [ -0 -0 -1 -24 ] 0 0.5 0.5 +( 284 260 52 ) ( 284 260 53 ) ( 285 260 52 ) glass [ 1 0 -0 0 ] [ 0 -0 -1 -24 ] 0 0.5 0.5 +( 284 260 52 ) ( 285 260 52 ) ( 284 261 52 ) glass [ -1 0 0 0 ] [ -0 -1 -0 -24 ] 0 0.5 0.5 +( 296 262 96 ) ( 296 263 96 ) ( 297 262 96 ) glass [ 1 0 0 0 ] [ 0 -1 0 -24 ] 0 0.5 0.5 +( 296 262 54 ) ( 297 262 54 ) ( 296 262 55 ) glass [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 296 262 54 ) ( 296 262 55 ) ( 296 263 54 ) glass [ 0 1 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +} +// brush 3 +{ +( 82 136 52 ) ( 82 137 52 ) ( 82 136 53 ) glass [ 0 -1 0 0 ] [ -0 -0 -1 -24 ] 0 0.5 0.5 +( 82 56 52 ) ( 82 56 53 ) ( 83 56 52 ) glass [ 1 0 -0 0 ] [ 0 -0 -1 -24 ] 0 0.5 0.5 +( 82 136 52 ) ( 83 136 52 ) ( 82 137 52 ) glass [ -1 0 0 0 ] [ -0 -1 -0 -24 ] 0 0.5 0.5 +( 84 146 96 ) ( 84 147 96 ) ( 85 146 96 ) glass [ 1 0 0 0 ] [ 0 -1 0 -24 ] 0 0.5 0.5 +( 84 160 54 ) ( 85 160 54 ) ( 84 160 55 ) glass [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 84 146 54 ) ( 84 146 55 ) ( 84 147 54 ) glass [ 0 1 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +} +// brush 4 +{ +( 82 24 52 ) ( 82 25 52 ) ( 82 24 53 ) glass [ 0 -1 0 0 ] [ -0 -0 -1 -24 ] 0 0.5 0.5 +( 82 -48 52 ) ( 82 -48 53 ) ( 83 -48 52 ) glass [ 1 0 -0 0 ] [ 0 -0 -1 -24 ] 0 0.5 0.5 +( 82 24 52 ) ( 83 24 52 ) ( 82 25 52 ) glass [ -1 0 0 0 ] [ -0 -1 -0 -24 ] 0 0.5 0.5 +( 84 34 96 ) ( 84 35 96 ) ( 85 34 96 ) glass [ 1 0 0 0 ] [ 0 -1 0 -24 ] 0 0.5 0.5 +( 84 48 54 ) ( 85 48 54 ) ( 84 48 55 ) glass [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 84 34 54 ) ( 84 34 55 ) ( 84 35 54 ) glass [ 0 1 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +} +// brush 5 +{ +( 88 -54 52 ) ( 88 -53 52 ) ( 88 -54 53 ) glass [ 0 -1 0 0 ] [ -0 -0 -1 -24 ] 0 0.5 0.5 +( 88 -54 52 ) ( 88 -54 53 ) ( 89 -54 52 ) glass [ 1 0 -0 0 ] [ 0 -0 -1 -24 ] 0 0.5 0.5 +( 88 -54 52 ) ( 89 -54 52 ) ( 88 -53 52 ) glass [ -1 0 0 0 ] [ -0 -1 -0 -24 ] 0 0.5 0.5 +( 96 -52 96 ) ( 96 -51 96 ) ( 97 -52 96 ) glass [ 1 0 0 0 ] [ 0 -1 0 -24 ] 0 0.5 0.5 +( 96 -52 54 ) ( 97 -52 54 ) ( 96 -52 55 ) glass [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 224 -52 54 ) ( 224 -52 55 ) ( 224 -51 54 ) glass [ 0 1 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 } } diff --git a/maps/autosave/cafemotel.4.map.import b/maps/autosave/cafemotel.4.map.import deleted file mode 100644 index 939479e..0000000 --- a/maps/autosave/cafemotel.4.map.import +++ /dev/null @@ -1,14 +0,0 @@ -[remap] - -importer="func_godot.map" -type="Resource" -uid="uid://dui1yh3wfxk16" -path="res://.godot/imported/cafemotel.4.map-731efff994f87bd5aa3011d0c5a2d8b3.tres" - -[deps] - -source_file="res://maps/autosave/cafemotel.4.map" -dest_files=["res://.godot/imported/cafemotel.4.map-731efff994f87bd5aa3011d0c5a2d8b3.tres"] - -[params] - diff --git a/maps/autosave/cafemotel.5.map b/maps/autosave/cafemotel.5.map index 26109aa..8ab30ee 100644 --- a/maps/autosave/cafemotel.5.map +++ b/maps/autosave/cafemotel.5.map @@ -1,4 +1,4 @@ -// Game: maskmaker +// Game: That Wretched Shadow // Format: Valve // entity 0 { @@ -6,59 +6,23 @@ "classname" "worldspawn" // brush 0 { -( -16 -64 -16 ) ( -16 -63 -16 ) ( -16 -64 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( -64 -64 -16 ) ( -64 -64 -15 ) ( -63 -64 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( -64 -64 -16 ) ( -63 -64 -16 ) ( -64 -63 -16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 64 64 16 ) ( 64 65 16 ) ( 65 64 16 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 64 64 16 ) ( 65 64 16 ) ( 64 64 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 784 64 16 ) ( 784 64 17 ) ( 784 65 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( -16 -184 -16 ) ( -16 -183 -16 ) ( -16 -184 -15 ) skip [ 0 -1 0 32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( -64 -184 -16 ) ( -64 -184 -15 ) ( -63 -184 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( -64 -184 -16 ) ( -63 -184 -16 ) ( -64 -183 -16 ) skip [ -1 0 0 0 ] [ 0 -1 0 32 ] 0 0.25 0.25 +( 64 -56 16 ) ( 64 -55 16 ) ( 65 -56 16 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 -1 0 120 ] 0 0.25 0.25 +( 64 -56 16 ) ( 65 -56 16 ) ( 64 -56 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 784 -56 16 ) ( 784 -56 17 ) ( 784 -55 16 ) skip [ 0 1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 } // brush 1 { -( 80 64 0 ) ( 80 65 0 ) ( 80 64 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 64 0 ) ( 80 64 1 ) ( 81 64 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 64 16 ) ( 81 64 16 ) ( 80 65 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 96 52 ) ( 112 97 52 ) ( 113 96 52 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 72 16 ) ( 113 72 16 ) ( 112 72 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 224 96 16 ) ( 224 96 17 ) ( 224 97 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 2 -{ -( 224 64 0 ) ( 224 65 0 ) ( 224 64 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 224 64 0 ) ( 224 64 1 ) ( 225 64 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 224 64 16 ) ( 225 64 16 ) ( 224 65 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 256 96 96 ) ( 256 97 96 ) ( 257 96 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 256 72 16 ) ( 257 72 16 ) ( 256 72 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 312 96 16 ) ( 312 96 17 ) ( 312 97 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 3 -{ -( 80 64 -8 ) ( 80 65 -8 ) ( 80 64 -7 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 16 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 176 64 -8 ) ( 176 64 -7 ) ( 177 64 -8 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 16 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 176 64 96 ) ( 177 64 96 ) ( 176 65 96 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 208 96 104 ) ( 208 97 104 ) ( 209 96 104 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 208 72 8 ) ( 209 72 8 ) ( 208 72 9 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 312 96 8 ) ( 312 96 9 ) ( 312 97 8 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 4 -{ -( 80 64 0 ) ( 80 65 0 ) ( 80 64 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 64 0 ) ( 80 64 1 ) ( 81 64 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 64 48 ) ( 81 64 48 ) ( 80 65 48 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 96 96 ) ( 112 97 96 ) ( 113 96 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 72 16 ) ( 113 72 16 ) ( 112 72 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 88 96 16 ) ( 88 96 17 ) ( 88 97 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 5 -{ ( 80 72 0 ) ( 80 73 0 ) ( 80 72 1 ) surface_green [ 0 4.371139006309477e-08 -0.999999999999999 32 ] [ 0 0.999999999999999 4.371139006309477e-08 24 ] 90 0.5 0.5 -( 80 72 0 ) ( 80 72 1 ) ( 81 72 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 -48 0 ) ( 80 -48 1 ) ( 81 -48 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 80 72 16 ) ( 81 72 16 ) ( 80 73 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 112 104 52 ) ( 112 105 52 ) ( 113 104 52 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 112 256 16 ) ( 113 256 16 ) ( 112 256 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 88 104 16 ) ( 88 104 17 ) ( 88 105 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 6 +// brush 2 { ( 80 256 0 ) ( 80 257 0 ) ( 80 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 80 256 0 ) ( 80 256 1 ) ( 81 256 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 @@ -67,7 +31,7 @@ ( 112 264 16 ) ( 113 264 16 ) ( 112 264 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 88 288 16 ) ( 88 288 17 ) ( 88 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 7 +// brush 3 { ( 80 256 -8 ) ( 80 257 -8 ) ( 80 256 -7 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 16 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 ( 176 256 -8 ) ( 176 256 -7 ) ( 177 256 -8 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 @@ -76,16 +40,16 @@ ( 208 264 8 ) ( 209 264 8 ) ( 208 264 9 ) surface_green_edge [ 4.371139006309477e-08 0 -0.999999999999999 16 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 ( 312 288 8 ) ( 312 288 9 ) ( 312 289 8 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 } -// brush 8 +// brush 4 { ( 80 72 72 ) ( 80 73 72 ) ( 80 72 73 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 16 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 72 72 ) ( 80 72 73 ) ( 81 72 72 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 +( 80 -48 72 ) ( 80 -48 73 ) ( 81 -48 72 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 ( 80 72 96 ) ( 81 72 96 ) ( 80 73 96 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 112 104 104 ) ( 112 105 104 ) ( 113 104 104 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 112 256 88 ) ( 113 256 88 ) ( 112 256 89 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 ( 88 104 88 ) ( 88 104 89 ) ( 88 105 88 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 } -// brush 9 +// brush 5 { ( 88 256 0 ) ( 88 257 0 ) ( 88 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 80 256 0 ) ( 80 256 1 ) ( 81 256 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 @@ -94,7 +58,7 @@ ( 112 264 16 ) ( 113 264 16 ) ( 112 264 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 144 288 16 ) ( 144 288 17 ) ( 144 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 10 +// brush 6 { ( 144 256 0 ) ( 144 257 0 ) ( 144 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 144 256 0 ) ( 144 256 1 ) ( 145 256 0 ) surface_green [ 1 0 0 32 ] [ 0 0 -1 -16 ] 0 0.5 0.5 @@ -103,7 +67,7 @@ ( 176 264 16 ) ( 177 264 16 ) ( 176 264 17 ) surface_green [ -1 0 0 -32 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 160 288 16 ) ( 160 288 17 ) ( 160 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 11 +// brush 7 { ( 208 256 0 ) ( 208 257 0 ) ( 208 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 208 256 0 ) ( 208 256 1 ) ( 209 256 0 ) surface_green [ 1 0 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 @@ -112,25 +76,25 @@ ( 240 264 16 ) ( 241 264 16 ) ( 240 264 17 ) surface_green [ -1 0 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 224 288 16 ) ( 224 288 17 ) ( 224 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 12 +// brush 8 { ( 88 128 8 ) ( 88 129 8 ) ( 88 128 9 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 88 72 8 ) ( 88 72 9 ) ( 89 72 8 ) skip [ 1 0 0 0 ] [ 0 0 -1 -8 ] 0 0.25 0.25 +( 88 -56 8 ) ( 88 -56 9 ) ( 89 -56 8 ) skip [ 1 0 0 0 ] [ 0 0 -1 -8 ] 0 0.25 0.25 ( 88 128 8 ) ( 89 128 8 ) ( 88 129 8 ) skip [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.25 0.25 ( 128 176 16 ) ( 128 177 16 ) ( 129 176 16 ) floor_wood [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.25 0.25 ( 128 264 16 ) ( 129 264 16 ) ( 128 264 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 -8 ] 0 0.25 0.25 ( 320 176 16 ) ( 320 176 17 ) ( 320 177 16 ) skip [ 0 1 0 56 ] [ 0 0 -1 -8 ] 0 0.25 0.25 } -// brush 13 +// brush 9 { ( -16 64 -16 ) ( -16 65 -16 ) ( -16 64 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( -64 64 -16 ) ( -64 64 -15 ) ( -63 64 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( -64 -56 -16 ) ( -64 -56 -15 ) ( -63 -56 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( -64 64 -16 ) ( -63 64 -16 ) ( -64 65 -16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 64 192 16 ) ( 64 193 16 ) ( 65 192 16 ) ground_cobblestone1 [ -4.371139006309477e-08 -0.999999999999999 0 0 ] [ -0.999999999999999 4.371139006309477e-08 0 106 ] 90 0.25 0.25 ( 64 264 16 ) ( 65 264 16 ) ( 64 264 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 80 192 16 ) ( 80 192 17 ) ( 80 193 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 14 +// brush 10 { ( 72 72 88 ) ( 72 73 88 ) ( 72 72 89 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 16 ] 90 0.5 0.5 ( 80 256 88 ) ( 80 256 89 ) ( 81 256 88 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 @@ -139,25 +103,16 @@ ( 112 272 104 ) ( 113 272 104 ) ( 112 272 105 ) surface_green_edge [ 4.371139006309477e-08 0 -0.999999999999999 -32 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 ( 312 104 104 ) ( 312 104 105 ) ( 312 105 104 ) surface_green_edge [ 0 -4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 -0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 } -// brush 15 -{ -( 72 -128 88 ) ( 72 -127 88 ) ( 72 -128 89 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 16 ] 90 0.5 0.5 -( 80 56 88 ) ( 80 56 89 ) ( 81 56 88 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 -32 ] [ -0.999999999999999 0 4.371139006309477e-08 16 ] 90 0.5 0.5 -( 80 -128 104 ) ( 81 -128 104 ) ( 80 -127 104 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 -( 112 -96 112 ) ( 112 -95 112 ) ( 113 -96 112 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 -( 112 72 104 ) ( 113 72 104 ) ( 112 72 105 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 -( 312 -96 104 ) ( 312 -96 105 ) ( 312 -95 104 ) surface_green_edge [ 0 -4.371139006309477e-08 -0.999999999999999 32 ] [ 0 -0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -} -// brush 16 +// brush 11 { ( 72 -112 88 ) ( 72 -111 88 ) ( 72 -112 89 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 16 ] 90 0.5 0.5 -( 80 72 88 ) ( 80 72 89 ) ( 81 72 88 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 80 -48 88 ) ( 80 -48 89 ) ( 81 -48 88 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 ( 80 -112 104 ) ( 81 -112 104 ) ( 80 -111 104 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 ( 112 -80 112 ) ( 112 -79 112 ) ( 113 -80 112 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 ( 112 256 104 ) ( 113 256 104 ) ( 112 256 105 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 ( 88 -80 104 ) ( 88 -80 105 ) ( 88 -79 104 ) surface_green [ 0 1 0 -8 ] [ 0 0 -1 -24 ] 0 0.5 0.5 } -// brush 17 +// brush 12 { ( 72 72 128 ) ( 72 73 128 ) ( 72 72 129 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 ( 80 256 128 ) ( 80 256 129 ) ( 81 256 128 ) skip [ 1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 @@ -166,70 +121,43 @@ ( 112 272 144 ) ( 113 272 144 ) ( 112 272 145 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 ( 312 104 144 ) ( 312 104 145 ) ( 312 105 144 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 } -// brush 18 +// brush 13 { ( 72 -112 128 ) ( 72 -111 128 ) ( 72 -112 129 ) surface_green [ 0 -1 0 8 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 80 72 128 ) ( 80 72 129 ) ( 81 72 128 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 80 -48 128 ) ( 80 -48 129 ) ( 81 -48 128 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 80 -112 144 ) ( 81 -112 144 ) ( 80 -111 144 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 ( 112 -80 152 ) ( 112 -79 152 ) ( 113 -80 152 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 112 256 144 ) ( 113 256 144 ) ( 112 256 145 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 88 -80 144 ) ( 88 -80 145 ) ( 88 -79 144 ) skip [ 0 1 0 -8 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 19 +// brush 14 { -( 72 -128 128 ) ( 72 -127 128 ) ( 72 -128 129 ) surface_green [ 0 -1 0 -8 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 80 56 128 ) ( 80 56 129 ) ( 81 56 128 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 80 -128 144 ) ( 81 -128 144 ) ( 80 -127 144 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 -( 112 -96 152 ) ( 112 -95 152 ) ( 113 -96 152 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 72 144 ) ( 113 72 144 ) ( 112 72 145 ) skip [ -1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 312 -96 144 ) ( 312 -96 145 ) ( 312 -95 144 ) surface_green [ 0 1 0 8 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -} -// brush 20 -{ -( 80 64 48 ) ( 80 65 48 ) ( 80 64 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 64 48 ) ( 80 64 49 ) ( 81 64 48 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 -32 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 64 112 ) ( 81 64 112 ) ( 80 65 112 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 96 144 ) ( 112 97 144 ) ( 113 96 144 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 72 64 ) ( 113 72 64 ) ( 112 72 65 ) skip [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 312 96 64 ) ( 312 96 65 ) ( 312 97 64 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 21 -{ -( 80 256 48 ) ( 80 257 48 ) ( 80 256 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -31.999985 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 80 256 48 ) ( 80 257 48 ) ( 80 256 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -31.99997 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 ( 80 256 48 ) ( 80 256 49 ) ( 81 256 48 ) skip [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 80 256 112 ) ( 81 256 112 ) ( 80 257 112 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 80 256 120 ) ( 81 256 120 ) ( 80 257 120 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 112 288 144 ) ( 112 289 144 ) ( 113 288 144 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 264 64 ) ( 113 264 64 ) ( 112 264 65 ) surface_green_edge [ 4.371139006309477e-08 0 -0.999999999999999 -31.999985 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 112 264 64 ) ( 113 264 64 ) ( 112 264 65 ) surface_green_edge [ 4.371139006309477e-08 0 -0.999999999999999 -31.99997 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 ( 312 288 64 ) ( 312 288 65 ) ( 312 289 64 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 } -// brush 22 +// brush 15 { ( 80 248 48 ) ( 80 249 48 ) ( 80 248 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32.000015 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 72 48 ) ( 80 72 49 ) ( 81 72 48 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 80 248 112 ) ( 81 248 112 ) ( 80 249 112 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 +( 80 -48 48 ) ( 80 -48 49 ) ( 81 -48 48 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 +( 80 248 120 ) ( 81 248 120 ) ( 80 249 120 ) skip [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 ( 112 280 144 ) ( 112 281 144 ) ( 113 280 144 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 ( 112 256 64 ) ( 113 256 64 ) ( 112 256 65 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 ( 88 280 64 ) ( 88 280 65 ) ( 88 281 64 ) skip [ 0 1 0 8 ] [ 0 0 -1 -40 ] 0 0.5 0.5 } -// brush 23 +// brush 16 { -( 88 128 104 ) ( 88 129 104 ) ( 88 128 105 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 56 ] 0 0.25 0.25 -( 88 72 104 ) ( 88 72 105 ) ( 89 72 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 56 ] 0 0.25 0.25 -( 88 128 104 ) ( 89 128 104 ) ( 88 129 104 ) ground_wood [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.5 0.5 -( 128 176 112 ) ( 128 177 112 ) ( 129 176 112 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.25 0.25 -( 128 256 112 ) ( 129 256 112 ) ( 128 256 113 ) skip [ -1 0 0 0 ] [ 0 0 -1 56 ] 0 0.25 0.25 -( 312 176 112 ) ( 312 176 113 ) ( 312 177 112 ) skip [ 0 1 0 56 ] [ 0 0 -1 56 ] 0 0.25 0.25 +( 88 128 120 ) ( 88 129 120 ) ( 88 128 121 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 56 ] 0 0.25 0.25 +( 88 -48 120 ) ( 88 -48 121 ) ( 89 -48 120 ) skip [ 1 0 0 0 ] [ 0 0 -1 56 ] 0 0.25 0.25 +( 88 128 120 ) ( 89 128 120 ) ( 88 129 120 ) ground_wood [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.5 0.5 +( 128 176 128 ) ( 128 177 128 ) ( 129 176 128 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.25 0.25 +( 128 256 128 ) ( 129 256 128 ) ( 128 256 129 ) skip [ -1 0 0 0 ] [ 0 0 -1 56 ] 0 0.25 0.25 +( 312 176 128 ) ( 312 176 129 ) ( 312 177 128 ) skip [ 0 1 0 56 ] [ 0 0 -1 56 ] 0 0.25 0.25 } -// brush 24 -{ -( 224 72 16 ) ( 224 73 16 ) ( 224 72 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 224 72 16 ) ( 224 72 17 ) ( 225 72 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 224 72 16 ) ( 225 72 16 ) ( 224 73 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 248 160 48 ) ( 248 161 48 ) ( 249 160 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 248 184 24 ) ( 249 184 24 ) ( 248 184 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 248 160 24 ) ( 248 160 25 ) ( 248 161 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 25 +// brush 17 { ( 224 256 0 ) ( 224 257 0 ) ( 224 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 216 256 0 ) ( 216 256 1 ) ( 217 256 0 ) surface_green [ 1 0 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 @@ -238,7 +166,7 @@ ( 248 264 16 ) ( 249 264 16 ) ( 248 264 17 ) surface_green [ -1 0 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 296 288 16 ) ( 296 288 17 ) ( 296 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 26 +// brush 18 { ( 296 256 0 ) ( 296 257 0 ) ( 296 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 296 256 0 ) ( 296 256 1 ) ( 297 256 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 @@ -247,61 +175,52 @@ ( 328 264 16 ) ( 329 264 16 ) ( 328 264 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 ( 312 288 16 ) ( 312 288 17 ) ( 312 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 27 -{ -( 224 128 16 ) ( 224 129 16 ) ( 224 128 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 224 224 16 ) ( 224 224 17 ) ( 225 224 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 224 128 16 ) ( 225 128 16 ) ( 224 129 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 248 216 48 ) ( 248 217 48 ) ( 249 216 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 248 256 24 ) ( 249 256 24 ) ( 248 256 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 312 216 24 ) ( 312 216 25 ) ( 312 217 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 28 +// brush 19 { ( 640 64 0 ) ( 640 65 0 ) ( 640 64 1 ) skip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 0.5 0.5 -( 640 64 0 ) ( 640 64 1 ) ( 641 64 0 ) skip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 0.5 0.5 +( 640 -56 0 ) ( 640 -56 1 ) ( 641 -56 0 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 640 64 0 ) ( 641 64 0 ) ( 640 65 0 ) skip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 0.5 0.5 ( 656 112 16 ) ( 656 113 16 ) ( 657 112 16 ) ground_cobblestone1 [ -4.371139006309477e-08 -0.999999999999999 0 0 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.25 0.25 ( 656 264 16 ) ( 657 264 16 ) ( 656 264 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 736 112 16 ) ( 736 112 17 ) ( 736 113 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 29 +// brush 20 { ( 736 72 16 ) ( 736 73 16 ) ( 736 72 17 ) wall_brick_scrungly [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 472 64 16 ) ( 472 64 17 ) ( 473 64 16 ) wall_brick_scrungly [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 472 -56 16 ) ( 472 -56 17 ) ( 473 -56 16 ) wall_brick_scrungly [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 472 72 16 ) ( 473 72 16 ) ( 472 73 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 504 104 96 ) ( 504 105 96 ) ( 505 104 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 504 264 32 ) ( 505 264 32 ) ( 504 264 33 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 784 104 32 ) ( 784 104 33 ) ( 784 105 32 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 30 +// brush 21 { ( 640 64 96 ) ( 640 65 96 ) ( 640 64 97 ) skip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 0.25 0.25 -( 640 64 96 ) ( 640 64 97 ) ( 641 64 96 ) wall_brick [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 0.25 0.25 +( 640 -56 96 ) ( 640 -56 97 ) ( 641 -56 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 640 64 96 ) ( 641 64 96 ) ( 640 65 96 ) wall_brick_scrungly [ 4.371139006309477e-08 -0.999999999999999 0 0 ] [ 0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.25 0.25 ( 656 112 256 ) ( 656 113 256 ) ( 657 112 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 656 264 112 ) ( 657 264 112 ) ( 656 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 736 112 112 ) ( 736 112 113 ) ( 736 113 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 31 +// brush 22 { ( 736 72 96 ) ( 736 73 96 ) ( 736 72 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 472 64 96 ) ( 472 64 97 ) ( 473 64 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 472 -56 96 ) ( 472 -56 97 ) ( 473 -56 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 472 72 96 ) ( 473 72 96 ) ( 472 73 96 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 504 104 256 ) ( 504 105 256 ) ( 505 104 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 504 264 112 ) ( 505 264 112 ) ( 504 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 784 104 112 ) ( 784 104 113 ) ( 784 105 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 32 +// brush 23 { -( 312 64 96 ) ( 312 65 96 ) ( 312 64 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 368 64 96 ) ( 368 64 97 ) ( 369 64 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 368 64 104 ) ( 369 64 104 ) ( 368 65 104 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 400 96 256 ) ( 400 97 256 ) ( 401 96 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 400 72 112 ) ( 401 72 112 ) ( 400 72 113 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 96 112 ) ( 640 96 113 ) ( 640 97 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 139 ] 0 0.25 0.25 +( 312 -56 96 ) ( 312 -55 96 ) ( 312 -56 97 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 368 -56 96 ) ( 368 -56 97 ) ( 369 -56 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 368 -56 104 ) ( 369 -56 104 ) ( 368 -55 104 ) skip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.25 0.25 +( 400 -24 256 ) ( 400 -23 256 ) ( 401 -24 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.25 0.25 +( 400 -48 112 ) ( 401 -48 112 ) ( 400 -48 113 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 640 -24 112 ) ( 640 -24 113 ) ( 640 -23 112 ) skip [ 0 1 0 32 ] [ 0 0 -1 11 ] 0 0.25 0.25 } -// brush 33 +// brush 24 { ( -16 264 -16 ) ( -16 265 -16 ) ( -16 264 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 ( -64 264 -16 ) ( -64 264 -15 ) ( -63 264 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 @@ -310,322 +229,322 @@ ( 64 360 16 ) ( 65 360 16 ) ( 64 360 17 ) wall_concrete1 [ -1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 ( 784 392 16 ) ( 784 392 17 ) ( 784 393 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 } -// brush 34 +// brush 25 { ( 632 72 96 ) ( 632 73 96 ) ( 632 72 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 368 72 96 ) ( 368 72 97 ) ( 369 72 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 368 -48 96 ) ( 368 -48 97 ) ( 369 -48 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 368 72 112 ) ( 369 72 112 ) ( 368 73 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 400 104 256 ) ( 400 105 256 ) ( 401 104 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 400 264 112 ) ( 401 264 112 ) ( 400 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 640 104 112 ) ( 640 104 113 ) ( 640 105 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 35 +// brush 26 { ( 320 72 96 ) ( 320 73 96 ) ( 320 72 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 360 72 96 ) ( 360 72 97 ) ( 361 72 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 360 72 112 ) ( 361 72 112 ) ( 360 73 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 360 -48 96 ) ( 360 -48 97 ) ( 361 -48 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 360 72 120 ) ( 361 72 120 ) ( 360 73 120 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 392 104 256 ) ( 392 105 256 ) ( 393 104 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 392 264 112 ) ( 393 264 112 ) ( 392 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 632 104 112 ) ( 632 104 113 ) ( 632 105 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 36 +// brush 27 { ( 312 256 104 ) ( 312 257 104 ) ( 312 256 105 ) skip [ 0 1.6292067950285372e-07 -0.9999999999999866 -16 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 ( 312 72 104 ) ( 312 72 105 ) ( 313 72 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 312 256 104 ) ( 313 256 104 ) ( 312 257 104 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 312 256 120 ) ( 313 256 120 ) ( 312 257 120 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 344 288 256 ) ( 344 289 256 ) ( 345 288 256 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 ( 344 264 120 ) ( 345 264 120 ) ( 344 264 121 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 320 288 120 ) ( 320 288 121 ) ( 320 289 120 ) skip [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } -// brush 37 +// brush 28 { -( 312 264 32 ) ( 312 136 32 ) ( 312 264 16 ) surface_beige_edge [ 0 -1.3113417006681922e-07 0.9999999999999913 32 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 0 ] 270 0.5 0.5 -( 320 136 16 ) ( 312 136 16 ) ( 320 136 32 ) surface_beige_edge [ 0.9999999999999957 0 8.742277997596912e-08 16 ] [ -8.742277997596912e-08 0 0.9999999999999957 0 ] 180 0.5 0.5 -( 312 264 16 ) ( 312 136 16 ) ( 320 264 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 320 264 32 ) ( 320 136 32 ) ( 312 264 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 264 16 ) ( 320 264 16 ) ( 312 264 32 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 264 16 ) ( 320 136 16 ) ( 320 264 32 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 312 144 32 ) ( 312 16 32 ) ( 312 144 16 ) surface_beige_edge [ 0 -1.3113417006681922e-07 0.9999999999999913 31.99997 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 -48 ] 270 0.5 0.5 +( 320 16 16 ) ( 312 16 16 ) ( 320 16 32 ) surface_beige_edge [ 0.9999999999999957 0 8.742277997596912e-08 16 ] [ -8.742277997596912e-08 0 0.9999999999999957 0 ] 180 0.5 0.5 +( 312 144 16 ) ( 312 16 16 ) ( 320 144 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -56 ] 0 1 1 +( 320 144 32 ) ( 320 16 32 ) ( 312 144 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 248 16 ) ( 320 248 16 ) ( 312 248 32 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 320 144 16 ) ( 320 16 16 ) ( 320 144 32 ) skip [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 38 +// brush 29 { -( 312 72 16 ) ( 312 88 16 ) ( 312 72 32 ) surface_beige_edge [ 0 -1.3113417006681922e-07 0.9999999999999913 32 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 0 ] 270 0.5 0.5 -( 312 72 32 ) ( 320 72 32 ) ( 312 72 16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 72 16 ) ( 320 88 16 ) ( 312 72 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 312 72 32 ) ( 312 88 32 ) ( 320 72 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 88 32 ) ( 312 88 16 ) ( 320 88 32 ) surface_beige_edge [ 1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 72 32 ) ( 320 88 32 ) ( 320 72 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 312 -48 16 ) ( 312 -32 16 ) ( 312 -48 32 ) surface_beige_edge [ 0 -1.3113417006681922e-07 0.9999999999999913 31.999966 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 -47.999992 ] 270 0.5 0.5 +( 312 -40 32 ) ( 320 -40 32 ) ( 312 -40 16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 320 -48 16 ) ( 320 -32 16 ) ( 312 -48 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -56 ] 0 1 1 +( 312 -48 32 ) ( 312 -32 32 ) ( 320 -48 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 -32 32 ) ( 312 -32 16 ) ( 320 -32 32 ) surface_beige_edge [ 1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 320 -48 32 ) ( 320 -32 32 ) ( 320 -48 16 ) skip [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 39 +// brush 30 { -( 312 264 88 ) ( 312 136 88 ) ( 312 264 32 ) surface_beige [ 0 -1.3113417006681922e-07 0.9999999999999913 32 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 0 ] 270 0.5 0.5 -( 320 136 32 ) ( 312 136 32 ) ( 320 136 88 ) surface_beige_edge [ 0.9999999999999961 -0 8.742278000372473e-08 16 ] [ -8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 -( 312 264 32 ) ( 312 136 32 ) ( 320 264 32 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 320 264 88 ) ( 320 136 88 ) ( 312 264 88 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 264 32 ) ( 320 264 32 ) ( 312 264 88 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 264 32 ) ( 320 136 32 ) ( 320 264 88 ) skip [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 312 144 88 ) ( 312 16 88 ) ( 312 144 32 ) surface_beige [ 0 -1.3113417006681922e-07 0.9999999999999913 31.999962 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 -48 ] 270 0.5 0.5 +( 320 16 32 ) ( 312 16 32 ) ( 320 16 88 ) surface_beige_edge [ 0.9999999999999961 0 8.742278000372473e-08 16 ] [ -8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 +( 312 144 32 ) ( 312 16 32 ) ( 320 144 32 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 320 144 104 ) ( 320 16 104 ) ( 312 144 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 248 32 ) ( 320 248 32 ) ( 312 248 88 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 320 144 32 ) ( 320 16 32 ) ( 320 144 88 ) skip [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 } -// brush 40 +// brush 31 { -( 312 72 32 ) ( 312 88 32 ) ( 312 72 88 ) surface_beige [ 0 -1.3113417006681922e-07 0.9999999999999913 32 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 0 ] 270 0.5 0.5 -( 312 72 88 ) ( 320 72 88 ) ( 312 72 32 ) skip [ 1 0 0 -16 ] [ 0 0 -1 16 ] 0 0.5 0.5 -( 320 72 32 ) ( 320 88 32 ) ( 312 72 32 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 72 88 ) ( 312 88 88 ) ( 320 72 88 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 88 88 ) ( 312 88 32 ) ( 320 88 88 ) surface_beige_edge [ 0.9999999999999998 -0 1.3234889800848443e-23 16 ] [ 1.3234889800848443e-23 0 -0.9999999999999998 0 ] 0 0.5 0.5 -( 320 72 88 ) ( 320 88 88 ) ( 320 72 32 ) skip [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 312 -48 32 ) ( 312 -32 32 ) ( 312 -48 88 ) surface_beige_edge [ 0 0.9999999999999785 2.0663206962145964e-07 31.999962 ] [ 0 -2.0663206962145964e-07 0.9999999999999785 -48 ] 180 0.5 0.5 +( 312 -48 88 ) ( 320 -48 88 ) ( 312 -48 32 ) skip [ 1 0 0 -16 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 320 -48 32 ) ( 320 -32 32 ) ( 312 -48 32 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 -48 96 ) ( 312 -32 96 ) ( 320 -48 96 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 -32 88 ) ( 312 -32 32 ) ( 320 -32 88 ) surface_beige_edge [ 0.9999999999999998 0 1.3234889800848443e-23 16 ] [ 1.3234889800848443e-23 0 -0.9999999999999998 0 ] 0 0.5 0.5 +( 320 -48 88 ) ( 320 -32 88 ) ( 320 -48 32 ) skip [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 } -// brush 41 +// brush 32 { -( 312 264 104 ) ( 312 136 104 ) ( 312 264 88 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 320 136 88 ) ( 312 136 88 ) ( 320 136 104 ) surface_beige_edge [ 0.9999999999999961 0 8.742277995965608e-08 16 ] [ -8.742277995965608e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 -( 312 264 88 ) ( 312 136 88 ) ( 320 264 88 ) surface_beige_edge [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 320 264 104 ) ( 320 136 104 ) ( 312 264 104 ) surface_beige_edge [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 264 88 ) ( 320 264 88 ) ( 312 264 104 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 264 88 ) ( 320 136 88 ) ( 320 264 104 ) surface_beige_edge [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 312 144 120 ) ( 312 16 120 ) ( 312 144 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -15.9999695 ] [ 0 0.9999999999999866 1.6292067950285372e-07 48 ] 90 0.5 0.5 +( 320 16 104 ) ( 312 16 104 ) ( 320 16 120 ) surface_beige_edge [ 0.9999999999999961 0 8.742277995965608e-08 16 ] [ -8.742277995965608e-08 0 0.9999999999999961 -32 ] 180 0.5 0.5 +( 312 144 104 ) ( 312 16 104 ) ( 320 144 104 ) surface_beige_edge [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 320 144 120 ) ( 320 16 120 ) ( 312 144 120 ) surface_beige_edge [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 248 104 ) ( 320 248 104 ) ( 312 248 120 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 320 144 104 ) ( 320 16 104 ) ( 320 144 120 ) skip [ 0 1 0 48 ] [ 0 0 -1 48 ] 0 0.5 0.5 } -// brush 42 +// brush 33 { -( 312 72 88 ) ( 312 88 88 ) ( 312 72 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 312 72 104 ) ( 320 72 104 ) ( 312 72 88 ) skip [ 1 0 0 -16 ] [ 0 0 -1 16 ] 0 0.5 0.5 -( 320 72 88 ) ( 320 88 88 ) ( 312 72 88 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 72 104 ) ( 312 88 104 ) ( 320 72 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 88 104 ) ( 312 88 88 ) ( 320 88 104 ) surface_beige_edge [ 1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 72 104 ) ( 320 88 104 ) ( 320 72 88 ) skip [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 312 -48 104 ) ( 312 -32 104 ) ( 312 -48 120 ) surface_beige_corner [ 0 0.9999999999999961 8.742278000372473e-08 -32 ] [ 0 -8.742278000372473e-08 0.9999999999999961 -48 ] 180 0.5 0.5 +( 312 -48 120 ) ( 320 -48 120 ) ( 312 -48 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 48 ] 0 0.5 0.5 +( 320 -48 96 ) ( 320 -32 96 ) ( 312 -48 96 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 -48 120 ) ( 312 -32 120 ) ( 320 -48 120 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 -32 120 ) ( 312 -32 104 ) ( 320 -32 120 ) skip [ 1 0 0 16 ] [ 0 0 -1 32 ] 0 0.5 0.5 +( 320 -48 120 ) ( 320 -32 120 ) ( 320 -48 104 ) skip [ 0 1 0 48 ] [ 0 0 -1 48 ] 0 0.5 0.5 } -// brush 43 +// brush 34 { -( 312 88 104 ) ( 312 88 96 ) ( 312 136 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 320 96 104 ) ( 320 96 96 ) ( 312 96 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 312 136 96 ) ( 312 88 96 ) ( 320 136 96 ) surface_beige_edge [ 1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 320 136 104 ) ( 320 88 104 ) ( 312 136 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 128 104 ) ( 312 128 96 ) ( 320 128 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 -( 320 136 104 ) ( 320 136 96 ) ( 320 88 104 ) skip [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 312 -32 104 ) ( 312 -32 96 ) ( 312 16 104 ) surface_beige [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.99997 ] [ 0 0.9999999999999866 1.6292067950285372e-07 48 ] 90 0.5 0.5 +( 320 -24 104 ) ( 320 -24 96 ) ( 312 -24 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 +( 312 16 96 ) ( 312 -32 96 ) ( 320 16 96 ) surface_beige_edge [ 1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 320 16 104 ) ( 320 -32 104 ) ( 312 16 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 8 104 ) ( 312 8 96 ) ( 320 8 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 +( 320 16 104 ) ( 320 16 96 ) ( 320 -32 104 ) skip [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 } -// brush 44 +// brush 35 { ( 488 264 96 ) ( 488 72 96 ) ( 488 264 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 640 72 16 ) ( 328 72 16 ) ( 640 72 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 640 -48 16 ) ( 328 -48 16 ) ( 640 -48 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 640 264 4 ) ( 328 264 4 ) ( 640 72 4 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 640 72 112 ) ( 328 72 112 ) ( 640 264 112 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 1 1 +( 640 72 120 ) ( 328 72 120 ) ( 640 264 120 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 1 1 ( 640 264 96 ) ( 328 264 96 ) ( 640 264 16 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 640 72 96 ) ( 640 264 96 ) ( 640 72 16 ) wall_brick_scrungly [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } +// brush 36 +{ +( 320 144 96 ) ( 320 16 96 ) ( 320 144 16 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 320 16 96 ) ( 328 16 96 ) ( 320 16 16 ) surface_beige_edge [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 320 144 16 ) ( 320 16 16 ) ( 328 144 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -56 ] 0 1 1 +( 328 144 112 ) ( 328 16 112 ) ( 320 144 112 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -56 ] 0 1 1 +( 320 136 16 ) ( 328 136 16 ) ( 320 136 96 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 328 144 16 ) ( 328 16 16 ) ( 328 144 96 ) surface_beige [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 37 +{ +( 320 -48 16 ) ( 320 -32 16 ) ( 320 -48 96 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 320 -48 96 ) ( 328 -48 96 ) ( 320 -48 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 328 -48 16 ) ( 328 -32 16 ) ( 320 -48 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -56 ] 0 1 1 +( 320 -48 96 ) ( 320 -32 96 ) ( 328 -48 96 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -56 ] 0 1 1 +( 320 -32 96 ) ( 320 -32 16 ) ( 328 -32 96 ) surface_beige_edge [ -0.9999999999999961 0 8.742278000372473e-08 16 ] [ 8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 +( 328 -48 96 ) ( 328 -32 96 ) ( 328 -48 16 ) surface_beige [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 38 +{ +( 320 8 8 ) ( 320 9 8 ) ( 320 8 9 ) skip [ 0 -1 0 -24 ] [ 0 0 -1 -8 ] 0 0.25 0.25 +( 320 -48 8 ) ( 320 -48 9 ) ( 321 -48 8 ) skip [ 1 0 0 32 ] [ 0 0 -1 -8 ] 0 0.25 0.25 +( 320 8 8 ) ( 321 8 8 ) ( 320 9 8 ) skip [ -1 0 0 -32 ] [ 0 -1 0 -24 ] 0 0.25 0.25 +( 360 56 16 ) ( 360 57 16 ) ( 361 56 16 ) floor_checkertiles [ 1 0 0 0 ] [ 0 -1 0 -96 ] 0 0.25 0.25 +( 360 104 16 ) ( 361 104 16 ) ( 360 104 17 ) skip [ -1 0 0 -32 ] [ 0 0 -1 -8 ] 0 0.25 0.25 +( 449 56 16 ) ( 449 56 17 ) ( 449 57 16 ) skip [ 0 1 0 24 ] [ 0 0 -1 -8 ] 0 0.25 0.25 +} +// brush 39 +{ +( 320 -32 104 ) ( 320 -32 96 ) ( 320 16 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.99997 ] [ 0 0.9999999999999866 1.6292067950285372e-07 48 ] 90 0.5 0.5 +( 328 -24 104 ) ( 328 -24 96 ) ( 320 -24 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 +( 320 16 96 ) ( 320 -32 96 ) ( 328 16 96 ) surface_beige_edge [ -0.9999999999999961 8.742278000372473e-08 0 16 ] [ 8.742278000372473e-08 0.9999999999999961 0 48 ] 180 0.5 0.5 +( 328 16 104 ) ( 328 -32 104 ) ( 320 16 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 320 8 104 ) ( 320 8 96 ) ( 328 8 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 +( 328 16 104 ) ( 328 16 96 ) ( 328 -32 104 ) surface_beige [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 +} +// brush 40 +{ +( 312 -24 104 ) ( 312 -24 96 ) ( 312 24 104 ) surface_beige [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.99997 ] [ 0 0.9999999999999866 1.6292067950285372e-07 31.999998 ] 90 0.5 0.5 +( 320 8 104 ) ( 320 8 96 ) ( 312 8 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 +( 312 24 96 ) ( 312 -24 96 ) ( 320 24 96 ) surface_beige_corner [ -4.371139006309477e-08 -0.999999999999999 0 -32 ] [ -0.999999999999999 4.371139006309477e-08 0 48 ] 90 0.5 0.5 +( 320 24 104 ) ( 320 -24 104 ) ( 312 24 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 312 16 104 ) ( 312 16 96 ) ( 320 16 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 +( 320 24 104 ) ( 320 24 96 ) ( 320 -24 104 ) skip [ 0 1 0 32 ] [ 0 0 -1 16 ] 0 0.5 0.5 +} +// brush 41 +{ +( 320 -24 104 ) ( 320 -24 96 ) ( 320 24 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.99997 ] [ 0 0.9999999999999866 1.6292067950285372e-07 31.999998 ] 90 0.5 0.5 +( 328 8 104 ) ( 328 8 96 ) ( 320 8 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 +( 320 24 96 ) ( 320 -24 96 ) ( 328 24 96 ) surface_beige_corner [ -0.9999999999999961 8.742277995965608e-08 0 16 ] [ 8.742277995965608e-08 0.9999999999999961 0 32 ] 180 0.5 0.5 +( 328 24 104 ) ( 328 -24 104 ) ( 320 24 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 320 16 104 ) ( 320 16 96 ) ( 328 16 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 +( 328 24 104 ) ( 328 24 96 ) ( 328 -24 104 ) surface_beige [ 0 1 0 32 ] [ 0 0 -1 16 ] 0 0.5 0.5 +} +// brush 42 +{ +( 312 -40 104 ) ( 312 -40 96 ) ( 312 8 104 ) surface_beige [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.999954 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 +( 320 -32 104 ) ( 320 -32 96 ) ( 312 -32 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 +( 312 8 96 ) ( 312 -40 96 ) ( 320 8 96 ) surface_beige_corner [ 1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 320 8 104 ) ( 320 -40 104 ) ( 312 8 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 312 -24 104 ) ( 312 -24 96 ) ( 320 -24 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 +( 320 8 104 ) ( 320 8 96 ) ( 320 -40 104 ) skip [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +} +// brush 43 +{ +( 320 -40 104 ) ( 320 -40 96 ) ( 320 8 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.999954 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 +( 328 -32 104 ) ( 328 -32 96 ) ( 320 -32 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 +( 320 8 96 ) ( 320 -40 96 ) ( 328 8 96 ) surface_beige_corner [ 1.3113417006681922e-07 0.9999999999999912 0 0 ] [ 0.9999999999999912 -1.3113417006681922e-07 0 48 ] 270 0.5 0.5 +( 328 8 104 ) ( 328 -40 104 ) ( 320 8 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 320 -24 104 ) ( 320 -24 96 ) ( 328 -24 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 +( 328 8 104 ) ( 328 8 96 ) ( 328 -40 104 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +} +// brush 44 +{ +( 320 -56 104 ) ( 320 -56 96 ) ( 320 -8 104 ) skip [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.999954 ] [ 0 0.9999999999999866 1.6292067950285372e-07 32.000004 ] 90 0.5 0.5 +( 328 -48 104 ) ( 328 -48 96 ) ( 320 -48 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 +( 320 -8 96 ) ( 320 -56 96 ) ( 328 -8 96 ) skip [ 1.3113417006681922e-07 0.9999999999999912 0 32 ] [ 0.9999999999999912 -1.3113417006681922e-07 0 48 ] 270 0.5 0.5 +( 328 -8 104 ) ( 328 -56 104 ) ( 320 -8 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 320 -32 104 ) ( 320 -32 96 ) ( 328 -32 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 +( 328 -8 104 ) ( 328 -8 96 ) ( 328 -56 104 ) surface_beige [ 0 1 0 32 ] [ 0 0 -1 16 ] 0 0.5 0.5 +} // brush 45 { -( 320 264 96 ) ( 320 136 96 ) ( 320 264 16 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 136 96 ) ( 328 136 96 ) ( 320 136 16 ) surface_beige_edge [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 264 16 ) ( 320 136 16 ) ( 328 264 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 328 264 112 ) ( 328 136 112 ) ( 320 264 112 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 1 1 -( 320 264 16 ) ( 328 264 16 ) ( 320 264 96 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 328 264 16 ) ( 328 136 16 ) ( 328 264 96 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 480 -40 16 ) ( 480 -39 16 ) ( 480 -40 17 ) surface_beige [ 0 -1 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 480 -40 16 ) ( 480 -40 17 ) ( 481 -40 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 480 -40 16 ) ( 481 -40 16 ) ( 480 -39 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 488 -24 104 ) ( 488 -23 104 ) ( 489 -24 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 488 136 24 ) ( 489 136 24 ) ( 488 136 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 488 -24 24 ) ( 488 -24 25 ) ( 488 -23 24 ) skip [ 0 1 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 } // brush 46 { -( 320 72 16 ) ( 320 88 16 ) ( 320 72 96 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 72 96 ) ( 328 72 96 ) ( 320 72 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 328 72 16 ) ( 328 88 16 ) ( 320 72 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 320 72 96 ) ( 320 88 96 ) ( 328 72 96 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 1 1 -( 320 88 96 ) ( 320 88 16 ) ( 328 88 96 ) surface_beige_edge [ -0.9999999999999961 0 8.742278000372473e-08 16 ] [ 8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 -( 328 72 96 ) ( 328 88 96 ) ( 328 72 16 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 432 -48 96 ) ( 432 -56 96 ) ( 432 -48 16 ) wall_brick_scrungly [ 0 1 0 224 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 640 -56 16 ) ( 432 -56 16 ) ( 640 -56 96 ) wall_brick_scrungly [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 640 -48 16 ) ( 432 -48 16 ) ( 640 -56 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 640 -56 96 ) ( 432 -56 96 ) ( 640 -48 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 640 -48 96 ) ( 432 -48 96 ) ( 640 -48 16 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 640 -56 96 ) ( 640 -48 96 ) ( 640 -56 16 ) wall_brick_scrungly [ 0 1 0 224 ] [ 0 0 -1 0 ] 0 0.25 0.25 } // brush 47 { -( 320 128 8 ) ( 320 129 8 ) ( 320 128 9 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 320 72 8 ) ( 320 72 9 ) ( 321 72 8 ) skip [ 1 0 0 96 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 320 128 8 ) ( 321 128 8 ) ( 320 129 8 ) skip [ -1 0 0 -96 ] [ 0 -1 0 -56 ] 0 0.25 0.25 -( 360 176 16 ) ( 360 177 16 ) ( 361 176 16 ) floor_checkertiles [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 360 224 16 ) ( 361 224 16 ) ( 360 224 17 ) skip [ -1 0 0 -32 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 448 176 16 ) ( 448 176 17 ) ( 448 177 16 ) skip [ 0 1 0 56 ] [ 0 0 -1 -8 ] 0 0.25 0.25 +( 312 -56 16 ) ( 312 -48 16 ) ( 312 -56 96 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 312 -56 96 ) ( 384 -56 96 ) ( 312 -56 16 ) wall_brick_scrungly [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 312 -56 16 ) ( 384 -56 16 ) ( 312 -48 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 312 -48 96 ) ( 384 -48 96 ) ( 312 -56 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 312 -48 16 ) ( 384 -48 16 ) ( 312 -48 96 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 384 -56 16 ) ( 384 -56 96 ) ( 384 -48 16 ) wall_brick_scrungly [ 0 -1 0 -224 ] [ 0 0 -1 0 ] 0 0.25 0.25 } // brush 48 { -( 320 88 104 ) ( 320 88 96 ) ( 320 136 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 328 96 104 ) ( 328 96 96 ) ( 320 96 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 136 96 ) ( 320 88 96 ) ( 328 136 96 ) surface_beige_edge [ -0.9999999999999961 8.742278000372473e-08 0 16 ] [ 8.742278000372473e-08 0.9999999999999961 0 0 ] 180 0.5 0.5 -( 328 136 104 ) ( 328 88 104 ) ( 320 136 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 320 128 104 ) ( 320 128 96 ) ( 328 128 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 136 104 ) ( 328 136 96 ) ( 328 88 104 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 432 -40 104 ) ( 432 -48 104 ) ( 432 -40 16 ) surface_beige_edge [ 0 -0.9999999999999961 8.742278000372473e-08 -16 ] [ 0 8.742278000372473e-08 0.9999999999999961 0 ] 180 0.5 0.5 +( 448 -48 16 ) ( 432 -48 16 ) ( 448 -48 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 448 -40 16 ) ( 432 -40 16 ) ( 448 -48 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 448 -48 104 ) ( 432 -48 104 ) ( 448 -40 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 448 -40 104 ) ( 432 -40 104 ) ( 448 -40 16 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 480 -48 104 ) ( 480 -40 104 ) ( 480 -48 16 ) skip [ 0 1 0 56 ] [ 0 0 -1 0 ] 0 1 1 } // brush 49 { -( 312 96 104 ) ( 312 96 96 ) ( 312 144 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48.000015 ] [ 0 0.9999999999999866 1.6292067950285372e-07 -16 ] 90 0.5 0.5 -( 320 128 104 ) ( 320 128 96 ) ( 312 128 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 312 144 96 ) ( 312 96 96 ) ( 320 144 96 ) surface_beige_corner [ -4.371139006309477e-08 -0.999999999999999 0 16 ] [ -0.999999999999999 4.371139006309477e-08 0 48 ] 90 0.5 0.5 -( 320 144 104 ) ( 320 96 104 ) ( 312 144 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 312 136 104 ) ( 312 136 96 ) ( 320 136 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 -( 320 144 104 ) ( 320 144 96 ) ( 320 96 104 ) skip [ 0 1 0 -16 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 328 -48 16 ) ( 328 -40 16 ) ( 328 -48 104 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 +( 328 -48 104 ) ( 384 -48 104 ) ( 328 -48 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 328 -48 16 ) ( 384 -48 16 ) ( 328 -40 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 328 -40 104 ) ( 384 -40 104 ) ( 328 -48 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 328 -40 16 ) ( 384 -40 16 ) ( 328 -40 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 384 -48 16 ) ( 384 -48 104 ) ( 384 -40 16 ) surface_beige_edge [ 0 -1 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 } // brush 50 { -( 320 96 104 ) ( 320 96 96 ) ( 320 144 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48.000015 ] [ 0 0.9999999999999866 1.6292067950285372e-07 -16 ] 90 0.5 0.5 -( 328 128 104 ) ( 328 128 96 ) ( 320 128 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 144 96 ) ( 320 96 96 ) ( 328 144 96 ) surface_beige_corner [ -0.9999999999999961 8.742277995965608e-08 0 16 ] [ 8.742277995965608e-08 0.9999999999999961 0 48 ] 180 0.5 0.5 -( 328 144 104 ) ( 328 96 104 ) ( 320 144 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 320 136 104 ) ( 320 136 96 ) ( 328 136 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 144 104 ) ( 328 144 96 ) ( 328 96 104 ) surface_beige [ 0 1 0 -16 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 392 -48 104 ) ( 392 -48 96 ) ( 392 -40 104 ) surface_beige [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 +( 432 -48 104 ) ( 432 -48 96 ) ( 384 -48 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 432 -48 96 ) ( 432 -40 96 ) ( 384 -48 96 ) surface_beige_edge [ -4.371139006309477e-08 -0.999999999999999 0 -16 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.5 0.5 +( 432 -48 104 ) ( 384 -48 104 ) ( 432 -40 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 384 -40 104 ) ( 384 -40 96 ) ( 432 -40 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 424 -40 104 ) ( 424 -40 96 ) ( 424 -48 104 ) surface_beige [ 0 1 0 56 ] [ 0 0 -1 0 ] 0 1 1 } // brush 51 { -( 312 80 104 ) ( 312 80 96 ) ( 312 128 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 16 ] 90 0.5 0.5 -( 320 88 104 ) ( 320 88 96 ) ( 312 88 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 312 128 96 ) ( 312 80 96 ) ( 320 128 96 ) surface_beige_corner [ 1 0 0 16 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 320 128 104 ) ( 320 80 104 ) ( 312 128 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 312 96 104 ) ( 312 96 96 ) ( 320 96 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 -( 320 128 104 ) ( 320 128 96 ) ( 320 80 104 ) skip [ 0 1 0 16 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 384 -56 8 ) ( 384 -55 8 ) ( 384 -56 9 ) ground_cobblestone1 [ 0 -1 0 -224 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 384 -56 8 ) ( 384 -56 9 ) ( 385 -56 8 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 384 -56 8 ) ( 385 -56 8 ) ( 384 -55 8 ) ground_cobblestone1 [ -1 0 0 0 ] [ 0 -1 0 -30 ] 0 0.25 0.25 +( 432 -48 16 ) ( 432 -47 16 ) ( 433 -48 16 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 -1 0 -30 ] 0 0.25 0.25 +( 432 -48 16 ) ( 433 -48 16 ) ( 432 -48 17 ) ground_cobblestone1 [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 432 -48 16 ) ( 432 -48 17 ) ( 432 -47 16 ) ground_cobblestone1 [ 0 1 0 224 ] [ 0 0 -1 0 ] 0 0.25 0.25 } // brush 52 { -( 320 80 104 ) ( 320 80 96 ) ( 320 128 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 16 ] 90 0.5 0.5 -( 328 88 104 ) ( 328 88 96 ) ( 320 88 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 128 96 ) ( 320 80 96 ) ( 328 128 96 ) surface_beige_corner [ 1.3113417006681922e-07 0.9999999999999912 0 16 ] [ 0.9999999999999912 -1.3113417006681922e-07 -0 48 ] 270 0.5 0.5 -( 328 128 104 ) ( 328 80 104 ) ( 320 128 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 320 96 104 ) ( 320 96 96 ) ( 328 96 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 128 104 ) ( 328 128 96 ) ( 328 80 104 ) surface_beige [ 0 1 0 16 ] [ 0 0 -1 16 ] 0 0.5 0.5 +( 312 -56 96 ) ( 312 -55 96 ) ( 312 -56 97 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 312 -56 96 ) ( 312 -56 97 ) ( 313 -56 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 312 -56 96 ) ( 313 -56 96 ) ( 312 -55 96 ) wall_brick [ -1 0 0 0 ] [ 0 -1 0 -118 ] 0 0.25 0.25 +( 360 -48 104 ) ( 360 -47 104 ) ( 361 -48 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.25 0.25 +( 360 -48 104 ) ( 361 -48 104 ) ( 360 -48 105 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 640 -48 104 ) ( 640 -48 105 ) ( 640 -47 104 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.25 0.25 } // brush 53 { -( 320 64 104 ) ( 320 64 96 ) ( 320 112 104 ) skip [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 48 ] 90 0.5 0.5 -( 328 72 104 ) ( 328 72 96 ) ( 320 72 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 112 96 ) ( 320 64 96 ) ( 328 112 96 ) skip [ 1.3113417006681922e-07 0.9999999999999912 0 48 ] [ 0.9999999999999912 -1.3113417006681922e-07 0 48 ] 270 0.5 0.5 -( 328 112 104 ) ( 328 64 104 ) ( 320 112 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 320 88 104 ) ( 320 88 96 ) ( 328 88 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 112 104 ) ( 328 112 96 ) ( 328 64 104 ) surface_beige [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 54 -{ -( 480 80 16 ) ( 480 81 16 ) ( 480 80 17 ) surface_beige [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 480 80 16 ) ( 480 80 17 ) ( 481 80 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 480 80 16 ) ( 481 80 16 ) ( 480 81 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 488 96 104 ) ( 488 97 104 ) ( 489 96 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 488 256 24 ) ( 489 256 24 ) ( 488 256 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 488 96 24 ) ( 488 96 25 ) ( 488 97 24 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 55 -{ -( 432 72 96 ) ( 432 64 96 ) ( 432 72 16 ) wall_brick_scrungly [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 64 16 ) ( 432 64 16 ) ( 640 64 96 ) wall_brick_scrungly [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 0.25 0.25 -( 640 72 16 ) ( 432 72 16 ) ( 640 64 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 640 64 96 ) ( 432 64 96 ) ( 640 72 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 640 72 96 ) ( 432 72 96 ) ( 640 72 16 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 64 96 ) ( 640 72 96 ) ( 640 64 16 ) wall_brick_scrungly [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 56 -{ -( 312 64 16 ) ( 312 72 16 ) ( 312 64 96 ) skip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 0.25 0.25 -( 312 64 96 ) ( 384 64 96 ) ( 312 64 16 ) wall_brick_scrungly [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 0.25 0.25 -( 312 64 16 ) ( 384 64 16 ) ( 312 72 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 312 72 96 ) ( 384 72 96 ) ( 312 64 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 312 72 16 ) ( 384 72 16 ) ( 312 72 96 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 384 64 16 ) ( 384 64 96 ) ( 384 72 16 ) wall_brick_scrungly [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 57 -{ -( 432 80 104 ) ( 432 72 104 ) ( 432 80 16 ) surface_beige_edge [ 0 -0.9999999999999961 8.742278000372473e-08 32 ] [ 0 8.742278000372473e-08 0.9999999999999961 0 ] 180 0.5 0.5 -( 448 72 16 ) ( 432 72 16 ) ( 448 72 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 448 80 16 ) ( 432 80 16 ) ( 448 72 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 448 72 104 ) ( 432 72 104 ) ( 448 80 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 448 80 104 ) ( 432 80 104 ) ( 448 80 16 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 480 72 104 ) ( 480 80 104 ) ( 480 72 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 58 -{ -( 328 72 16 ) ( 328 80 16 ) ( 328 72 104 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 328 72 104 ) ( 384 72 104 ) ( 328 72 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 328 72 16 ) ( 384 72 16 ) ( 328 80 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 328 80 104 ) ( 384 80 104 ) ( 328 72 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 328 80 16 ) ( 384 80 16 ) ( 328 80 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 384 72 16 ) ( 384 72 104 ) ( 384 80 16 ) surface_beige_edge [ 0 -1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 59 -{ -( 392 72 104 ) ( 392 72 96 ) ( 392 80 104 ) surface_beige [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 432 72 104 ) ( 432 72 96 ) ( 384 72 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 432 72 96 ) ( 432 80 96 ) ( 384 72 96 ) surface_beige_edge [ -4.371139006309477e-08 -0.999999999999999 0 32 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.5 0.5 -( 432 72 104 ) ( 384 72 104 ) ( 432 80 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 384 80 104 ) ( 384 80 96 ) ( 432 80 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 424 80 104 ) ( 424 80 96 ) ( 424 72 104 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 60 -{ -( 384 64 8 ) ( 384 65 8 ) ( 384 64 9 ) ground_cobblestone1 [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 384 64 8 ) ( 384 64 9 ) ( 385 64 8 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 384 64 8 ) ( 385 64 8 ) ( 384 65 8 ) ground_cobblestone1 [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 432 72 16 ) ( 432 73 16 ) ( 433 72 16 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 432 72 16 ) ( 433 72 16 ) ( 432 72 17 ) ground_cobblestone1 [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 432 72 16 ) ( 432 72 17 ) ( 432 73 16 ) ground_cobblestone1 [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 61 -{ -( 312 64 96 ) ( 312 65 96 ) ( 312 64 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 312 64 96 ) ( 312 64 97 ) ( 313 64 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 312 64 96 ) ( 313 64 96 ) ( 312 65 96 ) wall_brick [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 360 72 104 ) ( 360 73 104 ) ( 361 72 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 360 72 104 ) ( 361 72 104 ) ( 360 72 105 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 72 104 ) ( 640 72 105 ) ( 640 73 104 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 62 -{ ( 80 48 152 ) ( 80 49 152 ) ( 80 48 153 ) wall_brick [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 176 64 152 ) ( 176 64 153 ) ( 177 64 152 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 176 -56 152 ) ( 176 -56 153 ) ( 177 -56 152 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 176 48 152 ) ( 177 48 152 ) ( 176 49 152 ) wall_brick [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 208 80 256 ) ( 208 81 256 ) ( 209 80 256 ) wall_brick [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 208 80 256 ) ( 208 81 256 ) ( 209 80 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 ( 208 264 168 ) ( 209 264 168 ) ( 208 264 169 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 312 80 168 ) ( 312 80 169 ) ( 312 81 168 ) wall_brick [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 63 +// brush 54 { -( 328 224 104 ) ( 328 225 104 ) ( 328 224 105 ) skip [ 0 -1 0 -16 ] [ 0 0 -1 48 ] 0 0.5 0.5 -( 392 80 104 ) ( 392 80 105 ) ( 393 80 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 -( 392 224 104 ) ( 393 224 104 ) ( 392 225 104 ) ground_wood [ -1 0 0 0 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 424 256 112 ) ( 424 257 112 ) ( 425 256 112 ) skip [ 1 0 0 0 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 424 256 112 ) ( 425 256 112 ) ( 424 256 113 ) skip [ -1 0 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 -( 480 256 112 ) ( 480 256 113 ) ( 480 257 112 ) skip [ 0 1 0 16 ] [ 0 0 -1 48 ] 0 0.5 0.5 +( 328 136 104 ) ( 328 137 104 ) ( 328 136 105 ) skip [ 0 -1 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 +( 392 -40 104 ) ( 392 -40 105 ) ( 393 -40 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 +( 392 136 104 ) ( 393 136 104 ) ( 392 137 104 ) ground_wood [ -1 0 0 0 ] [ 0 -1 0 -64 ] 0 0.5 0.5 +( 424 168 112 ) ( 424 169 112 ) ( 425 168 112 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 424 136 112 ) ( 425 136 112 ) ( 424 136 113 ) skip [ -1 0 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 +( 480 168 112 ) ( 480 168 113 ) ( 480 169 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 } -// brush 64 +// brush 55 { -( 424 72 104 ) ( 424 72 96 ) ( 424 80 104 ) surface_beige [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 440 72 104 ) ( 440 72 96 ) ( 392 72 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 440 72 96 ) ( 440 80 96 ) ( 392 72 96 ) surface_beige_corner [ -0.9999999999999961 8.742277995965608e-08 0 32 ] [ 8.742277995965608e-08 0.9999999999999961 0 32 ] 180 0.5 0.5 -( 440 72 104 ) ( 392 72 104 ) ( 440 80 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 392 80 104 ) ( 392 80 96 ) ( 440 80 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 432 80 104 ) ( 432 80 96 ) ( 432 72 104 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 424 -48 104 ) ( 424 -48 96 ) ( 424 -40 104 ) surface_beige [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 +( 440 -48 104 ) ( 440 -48 96 ) ( 392 -48 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 440 -48 96 ) ( 440 -40 96 ) ( 392 -48 96 ) surface_beige_corner [ -0.9999999999999961 8.742277995965608e-08 0 32 ] [ 8.742277995965608e-08 0.9999999999999961 0 16 ] 180 0.5 0.5 +( 440 -48 104 ) ( 392 -48 104 ) ( 440 -40 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 392 -40 104 ) ( 392 -40 96 ) ( 440 -40 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 432 -40 104 ) ( 432 -40 96 ) ( 432 -48 104 ) surface_beige [ 0 1 0 56 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 65 +// brush 56 { -( 384 72 104 ) ( 384 72 96 ) ( 384 80 104 ) surface_beige [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 72 104 ) ( 400 72 96 ) ( 352 72 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 72 96 ) ( 400 80 96 ) ( 352 72 96 ) surface_beige_corner [ -4.371139006309477e-08 -0.999999999999999 0 32 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.5 0.5 -( 400 72 104 ) ( 352 72 104 ) ( 400 80 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 352 80 104 ) ( 352 80 96 ) ( 400 80 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 392 80 104 ) ( 392 80 96 ) ( 392 72 104 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 384 -48 104 ) ( 384 -48 96 ) ( 384 -40 104 ) surface_beige [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 +( 400 -48 104 ) ( 400 -48 96 ) ( 352 -48 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 400 -48 96 ) ( 400 -40 96 ) ( 352 -48 96 ) surface_beige_corner [ -4.371139006309477e-08 -0.999999999999999 0 -16 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.5 0.5 +( 400 -48 104 ) ( 352 -48 104 ) ( 400 -40 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 352 -40 104 ) ( 352 -40 96 ) ( 400 -40 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 392 -40 104 ) ( 392 -40 96 ) ( 392 -48 104 ) surface_beige [ 0 1 0 56 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 66 +// brush 57 { -( 328 232 16 ) ( 328 233 16 ) ( 328 232 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 328 224 16 ) ( 328 224 17 ) ( 329 224 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 328 232 16 ) ( 329 232 16 ) ( 328 233 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 352 256 48 ) ( 352 257 48 ) ( 353 256 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 352 256 24 ) ( 353 256 24 ) ( 352 256 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 256 24 ) ( 400 256 25 ) ( 400 257 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 360 112 16 ) ( 360 113 16 ) ( 360 112 17 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 +( 328 104 16 ) ( 328 104 17 ) ( 329 104 16 ) woodpale [ -4.371139006309477e-08 0 -0.999999999999999 0 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.25 0.25 +( 328 112 16 ) ( 329 112 16 ) ( 328 113 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 352 136 46 ) ( 352 137 46 ) ( 353 136 46 ) skip [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 352 136 24 ) ( 353 136 24 ) ( 352 136 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 400 136 24 ) ( 400 136 25 ) ( 400 137 24 ) skip [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 67 +// brush 58 { -( 328 176 16 ) ( 328 177 16 ) ( 328 176 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 328 144 16 ) ( 328 144 17 ) ( 329 144 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 328 176 16 ) ( 329 176 16 ) ( 328 177 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 360 224 48 ) ( 360 225 48 ) ( 361 224 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 360 224 24 ) ( 361 224 24 ) ( 360 224 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 360 224 24 ) ( 360 224 25 ) ( 360 225 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 328 56 16 ) ( 328 57 16 ) ( 328 56 17 ) skip [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 +( 328 24 16 ) ( 328 24 17 ) ( 329 24 16 ) woodpale [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 328 56 16 ) ( 329 56 16 ) ( 328 57 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 360 104 46 ) ( 360 105 46 ) ( 361 104 46 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 +( 360 104 24 ) ( 361 104 24 ) ( 360 104 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 360 104 24 ) ( 360 104 25 ) ( 360 105 24 ) woodpale [ 0 -4.371139006309477e-08 -0.999999999999999 0 ] [ 0 -0.999999999999999 4.371139006309477e-08 0 ] 90 0.25 0.25 } -// brush 68 +// brush 59 { -( 448 112 16 ) ( 448 113 16 ) ( 448 112 17 ) redplaid [ 0 -1 0 -64 ] [ 0 0 -1 0 ] 0 1 1 -( 448 80 16 ) ( 448 80 17 ) ( 449 80 16 ) redplaid [ 1 0 0 -120 ] [ 0 0 -1 0 ] 0 1 1 -( 448 112 16 ) ( 449 112 16 ) ( 448 113 16 ) redplaid [ -1 0 0 120 ] [ 0 -1 0 -64 ] 0 1 1 -( 480 160 48 ) ( 480 161 48 ) ( 481 160 48 ) redplaid [ 1 0 0 -120 ] [ 0 -1 0 -64 ] 0 1 1 -( 480 256 24 ) ( 481 256 24 ) ( 480 256 25 ) redplaid [ -1 0 0 120 ] [ 0 0 -1 0 ] 0 1 1 -( 480 160 24 ) ( 480 160 25 ) ( 480 161 24 ) redplaid [ 0 1 0 64 ] [ 0 0 -1 0 ] 0 1 1 +( 449 -8 16 ) ( 449 -7 16 ) ( 449 -8 17 ) woodpale [ 0 4.371139006309477e-08 -0.999999999999999 0 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.25 0.25 +( 448 -40 16 ) ( 448 -40 17 ) ( 449 -40 16 ) skip [ 1 0 0 -120 ] [ 0 0 -1 0 ] 0 1 1 +( 448 -8 16 ) ( 449 -8 16 ) ( 448 -7 16 ) skip [ -1 0 0 120 ] [ 0 -1 0 -184 ] 0 1 1 +( 480 40 46 ) ( 480 41 46 ) ( 481 40 46 ) skip [ 1 0 0 -56 ] [ 0 -1 0 -56 ] 0 1 1 +( 480 104 24 ) ( 481 104 24 ) ( 480 104 25 ) skip [ -1 0 0 56 ] [ 0 0 -1 0 ] 0 1 1 +( 480 40 24 ) ( 480 40 25 ) ( 480 41 24 ) skip [ 0 1 0 184 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 69 +// brush 60 { ( -16 360 -20 ) ( -16 361 -20 ) ( -16 360 -19 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( -64 360 -20 ) ( -64 360 -19 ) ( -63 360 -20 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 @@ -634,7 +553,7 @@ ( 64 600 12 ) ( 65 600 12 ) ( 64 600 13 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 784 488 12 ) ( 784 488 13 ) ( 784 489 12 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 70 +// brush 61 { ( -16 360 -16 ) ( -16 361 -16 ) ( -16 360 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 ( -64 360 -16 ) ( -64 360 -15 ) ( -63 360 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 @@ -643,7 +562,7 @@ ( 64 600 16 ) ( 65 600 16 ) ( 64 600 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 ( 80 488 16 ) ( 80 488 17 ) ( 80 489 16 ) wall_concrete1 [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 1 1 } -// brush 71 +// brush 62 { ( -16 600 -16 ) ( -16 601 -16 ) ( -16 600 -15 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 16 ] 0 0.5 0.5 ( -64 600 -16 ) ( -64 600 -15 ) ( -63 600 -16 ) wall_concrete1 [ 1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 @@ -652,7 +571,7 @@ ( 64 704 16 ) ( 65 704 16 ) ( 64 704 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 ( 576 728 16 ) ( 576 728 17 ) ( 576 729 16 ) wall_concrete1 [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 72 +// brush 63 { ( 736 600 -16 ) ( 736 601 -16 ) ( 736 600 -15 ) wall_concrete1 [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 144 600 -16 ) ( 144 600 -15 ) ( 145 600 -16 ) wall_concrete1 [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 @@ -661,7 +580,7 @@ ( 272 720 16 ) ( 273 720 16 ) ( 272 720 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 784 728 16 ) ( 784 728 17 ) ( 784 729 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 73 +// brush 64 { ( 576 600 -20 ) ( 576 601 -20 ) ( 576 600 -19 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( -112 600 -20 ) ( -112 600 -19 ) ( -111 600 -20 ) skip [ 1 0 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 @@ -670,7 +589,7 @@ ( 16 720 12 ) ( 17 720 12 ) ( 16 720 13 ) skip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 736 728 12 ) ( 736 728 13 ) ( 736 729 12 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 74 +// brush 65 { ( 64 336 24 ) ( 64 337 24 ) ( 64 336 25 ) redplaid [ 0 -1 0 0 ] [ 0 0 -1 8 ] 0 1 1 ( 56 344 24 ) ( 56 344 25 ) ( 57 344 24 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 8 ] 0 1 1 @@ -679,7 +598,7 @@ ( 80 352 32 ) ( 81 352 32 ) ( 80 352 33 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 8 ] 0 1 1 ( 72 360 32 ) ( 72 360 33 ) ( 72 361 32 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 8 ] 0 1 1 } -// brush 75 +// brush 66 { ( 56 336 16 ) ( 56 337 16 ) ( 56 336 17 ) redplaid [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 56 336 16 ) ( 56 336 17 ) ( 57 336 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 @@ -688,7 +607,7 @@ ( 80 360 24 ) ( 81 360 24 ) ( 80 360 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 80 360 24 ) ( 80 360 25 ) ( 80 361 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 76 +// brush 67 { ( 64 344 24 ) ( 56 336 18 ) ( 56 360 18 ) redplaid [ 0 -1.0000000000000002 0 0 ] [ 1.0000000000000002 0 0 -70.43137 ] 0 1 1 ( 72 344 24 ) ( 80 336 18 ) ( 56 336 18 ) redplaid [ 1.0000000000000002 0 0 0 ] [ 0 1.0000000000000002 0 -94.58823 ] 0 1 1 @@ -697,7 +616,7 @@ ( 72 352 24 ) ( 64 352 24 ) ( 56 360 18 ) redplaid [ -1.0000000000000002 0 0 0 ] [ 0 -1.0000000000000002 0 89.568634 ] 0 1 1 ( 72 352 24 ) ( 80 360 18 ) ( 80 336 18 ) redplaid [ 0 1.0000000000000002 0 0 ] [ -1.0000000000000002 0 0 68 ] 0 1 1 } -// brush 77 +// brush 68 { ( 60 336 152 ) ( 60 337 152 ) ( 60 336 153 ) redplaid [ 0 -1 0 24 ] [ 0 0 -1 8 ] 0 1 1 ( 56 340 152 ) ( 56 340 153 ) ( 57 340 152 ) redplaid [ 1 0 0 -8 ] [ 0 0 -1 8 ] 0 1 1 @@ -706,7 +625,7 @@ ( 88 356 160 ) ( 89 356 160 ) ( 88 356 161 ) redplaid [ -1 0 0 8 ] [ 0 0 -1 8 ] 0 1 1 ( 76 368 160 ) ( 76 368 161 ) ( 76 369 160 ) redplaid [ 0 1 0 -24 ] [ 0 0 -1 8 ] 0 1 1 } -// brush 78 +// brush 69 { ( 64 344 186 ) ( 54 334 180 ) ( 54 362 180 ) redplaid [ 0 -1.0000000000000002 0 24 ] [ 1.0000000000000002 0 0 -200.0878 ] 0 1 1 ( 72 344 186 ) ( 82 334 180 ) ( 54 334 180 ) redplaid [ 1.0000000000000002 0 0 -8 ] [ 0 1.0000000000000002 0 -222 ] 0 1 1 @@ -715,7 +634,7 @@ ( 54 362 180 ) ( 82 362 180 ) ( 72 352 186 ) redplaid [ -1.0000000000000002 0 0 8 ] [ 0 -1.0000000000000002 0 215.36586 ] 0 1 1 ( 72 352 186 ) ( 82 362 180 ) ( 82 334 180 ) redplaid [ 0 1.0000000000000002 0 -24 ] [ -1.0000000000000002 0 0 -62 ] 0 1 1 } -// brush 79 +// brush 70 { ( 60 354 156 ) ( 60 356 156 ) ( 54 362 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 ( 56 360 180 ) ( 62 354 156 ) ( 60 354 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 @@ -724,7 +643,7 @@ ( 60 356 156 ) ( 62 356 156 ) ( 56 362 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 56 362 180 ) ( 62 356 156 ) ( 62 354 156 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 80 +// brush 71 { ( 60 340 156 ) ( 60 342 156 ) ( 54 336 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 ( 56 334 180 ) ( 62 340 156 ) ( 60 340 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 @@ -733,7 +652,7 @@ ( 60 342 156 ) ( 62 342 156 ) ( 56 336 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 56 336 180 ) ( 62 342 156 ) ( 62 340 156 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 81 +// brush 72 { ( 74 342 156 ) ( 80 336 180 ) ( 80 334 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 ( 80 334 180 ) ( 82 334 180 ) ( 76 340 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 @@ -742,7 +661,7 @@ ( 76 342 156 ) ( 82 336 180 ) ( 80 336 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 76 342 156 ) ( 76 340 156 ) ( 82 334 180 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 82 +// brush 73 { ( 74 356 156 ) ( 80 362 180 ) ( 80 360 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 ( 80 360 180 ) ( 82 360 180 ) ( 76 354 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 @@ -751,7 +670,7 @@ ( 76 356 156 ) ( 82 362 180 ) ( 80 362 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 76 356 156 ) ( 76 354 156 ) ( 82 360 180 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 83 +// brush 74 { ( 80 360 16 ) ( 80 360 12 ) ( 80 368 12 ) clip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 ( 80 360 16 ) ( 784 360 16 ) ( 784 360 12 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 @@ -759,33 +678,33 @@ ( 80 368 12 ) ( 784 368 12 ) ( 784 360 16 ) clip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 ( 784 360 16 ) ( 784 368 12 ) ( 784 360 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 84 +// brush 75 { -( 400 224 16 ) ( 400 225 16 ) ( 400 224 17 ) redplaid [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 224 16 ) ( 400 224 17 ) ( 401 224 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 224 16 ) ( 401 224 16 ) ( 400 225 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 448 256 96 ) ( 448 257 96 ) ( 449 256 96 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 448 256 24 ) ( 449 256 24 ) ( 448 256 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 448 256 24 ) ( 448 256 25 ) ( 448 257 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 400 104 16 ) ( 400 105 16 ) ( 400 104 17 ) redplaid [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 +( 400 104 16 ) ( 400 104 17 ) ( 401 104 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 400 104 16 ) ( 401 104 16 ) ( 400 105 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 448 136 96 ) ( 448 137 96 ) ( 449 136 96 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 448 136 24 ) ( 449 136 24 ) ( 448 136 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 448 136 24 ) ( 448 136 25 ) ( 448 137 24 ) redplaid [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 85 +// brush 76 { -( 328 256 16 ) ( 328 257 16 ) ( 328 256 17 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 328 256 16 ) ( 328 256 17 ) ( 329 256 16 ) surface_beige [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 328 256 4 ) ( 329 256 4 ) ( 328 257 4 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 448 264 112 ) ( 448 265 112 ) ( 449 264 112 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 328 136 16 ) ( 328 137 16 ) ( 328 136 17 ) skip [ 0 -1 0 8 ] [ 0 0 -1 0 ] 0 1 1 +( 328 136 16 ) ( 328 136 17 ) ( 329 136 16 ) surface_beige [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 328 136 4 ) ( 329 136 4 ) ( 328 137 4 ) skip [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 1 1 +( 448 144 120 ) ( 448 145 120 ) ( 449 144 120 ) skip [ 1 0 0 0 ] [ 0 -1 0 8 ] 0 1 1 ( 448 264 24 ) ( 449 264 24 ) ( 448 264 25 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 488 264 24 ) ( 488 264 25 ) ( 488 265 24 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 488 144 24 ) ( 488 144 25 ) ( 488 145 24 ) skip [ 0 1 0 -8 ] [ 0 0 -1 0 ] 0 1 1 } -// brush 86 +// brush 77 { ( 80 600 16 ) ( 80 592 12 ) ( 80 600 12 ) clip [ -1.2246467991473532e-16 -1 0 0 ] [ 0 0 -1 0 ] 180 1 1 ( 784 592 12 ) ( 80 592 12 ) ( 80 600 16 ) clip [ -1 1.2246467991473532e-16 0 32 ] [ 1.2246467991473532e-16 1 0 0 ] 180 1 1 ( 80 600 12 ) ( 80 592 12 ) ( 784 592 12 ) clip [ 1 -1.2246467991473532e-16 0 -32 ] [ 1.2246467991473532e-16 1 0 0 ] 180 1 1 ( 784 600 16 ) ( 80 600 16 ) ( 80 600 12 ) clip [ -1 1.2246467991473532e-16 0 32 ] [ 0 0 -1 0 ] 180 1 1 -( 784 600 16 ) ( 784 600 12 ) ( 784 592 12 ) clip [ 1.2246467991473532e-16 1 0 0 ] [ 0 0 -1 0 ] 180 1 1 +( 576 600 16 ) ( 576 600 12 ) ( 576 592 12 ) clip [ 1.2246467991473532e-16 1 0 0 ] [ 0 0 -1 0 ] 180 1 1 } -// brush 87 +// brush 78 { ( 80 936 16 ) ( 80 232 16 ) ( 80 232 12 ) clip [ -1.8369701987210297e-16 -1 0 56 ] [ 0 0 -1 0 ] 180 1 1 ( 80 360 16 ) ( 88 360 12 ) ( 80 360 12 ) clip [ 1 -1.8369701987210297e-16 0 23.999992 ] [ 0 0 -1 0 ] 180 1 1 @@ -793,7 +712,7 @@ ( 80 600 16 ) ( 80 600 12 ) ( 88 600 12 ) clip [ -1 1.8369701987210297e-16 0 -23.999992 ] [ 0 0 -1 0 ] 180 1 1 ( 88 936 12 ) ( 88 232 12 ) ( 80 232 16 ) clip [ -1.8369701987210297e-16 -1 0 56 ] [ -1 1.8369701987210297e-16 0 -24 ] 96.379364 1 1 } -// brush 88 +// brush 79 { ( 96 704 16 ) ( 96 705 16 ) ( 96 704 17 ) wall_brick [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 544 704 16 ) ( 544 704 17 ) ( 545 704 16 ) wall_brick [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 0.25 0.25 @@ -802,7 +721,7 @@ ( 576 720 32 ) ( 577 720 32 ) ( 576 720 33 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 576 736 32 ) ( 576 736 33 ) ( 576 737 32 ) wall_brick [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 89 +// brush 80 { ( 96 744 -20 ) ( 96 745 -20 ) ( 96 744 -19 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( -112 720 -20 ) ( -112 720 -19 ) ( -111 720 -20 ) skip [ 1 0 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 @@ -811,7 +730,7 @@ ( 16 1136 12 ) ( 17 1136 12 ) ( 16 1136 13 ) skip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 736 872 12 ) ( 736 872 13 ) ( 736 873 12 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 90 +// brush 81 { ( 736 712 -16 ) ( 736 713 -16 ) ( 736 712 -15 ) wall_concrete1 [ 0 -1 0 112 ] [ 0 0 -1 0 ] 0 1 1 ( 144 720 -16 ) ( 144 720 -15 ) ( 145 720 -16 ) wall_concrete1 [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 @@ -820,7 +739,7 @@ ( 272 864 16 ) ( 273 864 16 ) ( 272 864 17 ) wall_concrete1 [ -1 0 0 128 ] [ 0 0 -1 0 ] 0 1 1 ( 848 840 16 ) ( 848 840 17 ) ( 848 841 16 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 91 +// brush 82 { ( 784 704 16 ) ( 784 705 16 ) ( 784 704 17 ) wall_brick [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 1344 704 16 ) ( 1344 704 17 ) ( 1345 704 16 ) wall_brick [ 1 0 0 128 ] [ 0 0 -1 0 ] 0 0.25 0.25 @@ -829,7 +748,7 @@ ( 1376 720 32 ) ( 1377 720 32 ) ( 1376 720 33 ) wall_brick [ -1 0 0 -128 ] [ 0 0 -1 0 ] 0 0.25 0.25 ( 1168 736 32 ) ( 1168 736 33 ) ( 1168 737 32 ) wall_brick [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 } -// brush 92 +// brush 83 { ( 736 728 -20 ) ( 736 729 -20 ) ( 736 728 -19 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 608 864 -20 ) ( 608 864 -19 ) ( 609 864 -20 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 @@ -838,94 +757,1501 @@ ( 736 1136 12 ) ( 737 1136 12 ) ( 736 1136 13 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 ( 848 856 12 ) ( 848 856 13 ) ( 848 857 12 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 } -// brush 93 +// brush 84 { ( 848 872 -16 ) ( 848 873 -16 ) ( 848 872 -15 ) wall_concrete1 [ 0 -1 0 272 ] [ 0 0 -1 0 ] 0 1 1 -( 304 720 -16 ) ( 304 720 -15 ) ( 305 720 -16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 +( 304 800 -16 ) ( 304 800 -15 ) ( 305 800 -16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 ( 304 872 12 ) ( 305 872 12 ) ( 304 873 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 ( 432 1000 16 ) ( 432 1001 16 ) ( 433 1000 16 ) ground_greybrick [ 1 0 0 -96 ] [ 0 -1 0 -112 ] 0 0.5 0.5 ( 432 1136 16 ) ( 433 1136 16 ) ( 432 1136 17 ) skip [ -1 0 0 32 ] [ 0 0 -1 0 ] 0 1 1 ( 944 1000 16 ) ( 944 1000 17 ) ( 944 1001 16 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 } +// brush 85 +{ +( 736 600 16 ) ( 736 592 12 ) ( 736 600 12 ) clip [ -0 -1 0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 992 592 12 ) ( 288 592 12 ) ( 288 600 16 ) clip [ 1 0 -0 0 ] [ 0 -0.894427190999916 -0.447213595499958 0 ] 0 1 1 +( 288 600 12 ) ( 288 592 12 ) ( 992 592 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 992 600 16 ) ( 288 600 16 ) ( 288 600 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 784 600 16 ) ( 784 600 12 ) ( 784 592 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 86 +{ +( 576 1048 16 ) ( 576 344 16 ) ( 576 344 12 ) clip [ 0 -1 0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 576 600 16 ) ( 584 600 12 ) ( 576 600 12 ) clip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 576 344 12 ) ( 584 344 12 ) ( 584 1048 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 576 704 16 ) ( 576 704 12 ) ( 584 704 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 584 1048 12 ) ( 584 344 12 ) ( 576 344 16 ) clip [ 0.894427190999916 0 -0.447213595499958 0 ] [ 0 -1 0 0 ] 0 1 1 +} +// brush 87 +{ +( 728 1048 12 ) ( 736 344 16 ) ( 728 344 12 ) clip [ 0.894427190999916 0 0.447213595499958 -29.020447 ] [ 0 -1 0 0 ] 0 1 1 +( 736 600 16 ) ( 736 600 12 ) ( 728 600 12 ) clip [ 1 0 0 -40 ] [ 0 0 -1 0 ] 0 1 1 +( 736 344 12 ) ( 728 1048 12 ) ( 728 344 12 ) clip [ -1 0 0 40 ] [ 0 -1 0 0 ] 0 1 1 +( 736 864 16 ) ( 728 864 12 ) ( 736 864 12 ) clip [ -1 0 0 40 ] [ 0 0 -1 0 ] 0 1 1 +( 736 1048 16 ) ( 736 344 12 ) ( 736 344 16 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 88 +{ +( 840 1312 12 ) ( 848 608 16 ) ( 840 608 12 ) clip [ 0.894427190999916 -0 0.447213595499958 0 ] [ -0 -1 0 0 ] 0 1 1 +( 848 864 16 ) ( 848 864 12 ) ( 840 864 12 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 848 608 12 ) ( 840 1312 12 ) ( 840 608 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 848 1136 16 ) ( 840 1136 12 ) ( 848 1136 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 848 1312 16 ) ( 848 608 12 ) ( 848 608 16 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 89 +{ +( 736 864 16 ) ( 736 864 12 ) ( 736 872 12 ) clip [ 0 -1 0 -8 ] [ 0 0 -1 0 ] 0 1 1 +( 144 864 16 ) ( 848 864 16 ) ( 848 864 12 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 848 864 12 ) ( 848 872 12 ) ( 144 872 12 ) clip [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 1 1 +( 144 872 12 ) ( 848 872 12 ) ( 848 864 16 ) clip [ 1 0 0 0 ] [ 0 -1 0 -8 ] 0 1 1 +( 848 864 16 ) ( 848 872 12 ) ( 848 864 12 ) clip [ 0 1 0 8 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 90 +{ +( 728 872 12 ) ( 736 864 16 ) ( 728 864 12 ) clip [ 0.894427190999916 -0 0.447213595499958 0 ] [ -0 -1 0 0 ] 0 1 1 +( 728 864 12 ) ( 736 864 16 ) ( 736 864 12 ) clip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 736 864 12 ) ( 736 872 12 ) ( 728 872 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 728 872 12 ) ( 736 872 12 ) ( 736 864 16 ) clip [ 1 -0 0 0 ] [ -0 -0.894427190999916 0.447213595499958 0 ] 0 1 1 +( 736 864 16 ) ( 736 872 12 ) ( 736 864 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 91 +{ +( 728 592 12 ) ( 728 600 12 ) ( 736 600 16 ) clip [ 0.894427190999916 -0 0.447213595499958 0 ] [ -0 -1 0 0 ] 0 1 1 +( 728 592 12 ) ( 736 600 16 ) ( 736 592 12 ) clip [ 1 0 -0 0 ] [ 0 -0.894427190999916 -0.447213595499958 0 ] 0 1 1 +( 736 600 12 ) ( 728 592 12 ) ( 736 592 12 ) clip [ -1 0 -0 0 ] [ -0 -1 0 0 ] 0 1 1 +( 728 600 12 ) ( 736 600 12 ) ( 736 600 16 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 736 600 16 ) ( 736 600 12 ) ( 736 592 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 92 +{ +( 576 600 16 ) ( 576 592 12 ) ( 576 600 12 ) clip [ -0 -1 0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 584 592 12 ) ( 576 592 12 ) ( 576 600 16 ) clip [ 1 0 -0 0 ] [ 0 -0.894427190999916 -0.447213595499958 0 ] 0 1 1 +( 576 600 12 ) ( 576 592 12 ) ( 584 592 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 584 600 12 ) ( 576 600 16 ) ( 576 600 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 584 592 12 ) ( 576 600 16 ) ( 584 600 12 ) clip [ 0.894427190999916 0 -0.447213595499958 0 ] [ 0 -1 -0 0 ] 0 1 1 +} +// brush 93 +{ +( 576 704 16 ) ( 576 704 12 ) ( 576 712 12 ) clip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 +( 584 704 12 ) ( 576 704 12 ) ( 576 704 16 ) clip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 576 704 12 ) ( 584 712 12 ) ( 576 712 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 584 712 12 ) ( 576 704 16 ) ( 576 712 12 ) clip [ 1 0 0 0 ] [ 0 -0.894427190999916 0.447213595499958 0 ] 0 1 1 +( 584 712 12 ) ( 584 704 12 ) ( 576 704 16 ) clip [ 0.894427190999916 0 -0.447213595499958 0 ] [ 0 -1 0 0 ] 0 1 1 +} // brush 94 { -( 992 880 0 ) ( 992 881 0 ) ( 992 880 1 ) skip [ 0 -1 0 0 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -( 1072 888 0 ) ( 1072 888 1 ) ( 1073 888 0 ) skip [ 1 0 0 0 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -( 1072 880 0 ) ( 1073 880 0 ) ( 1072 881 0 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 1104 928 16 ) ( 1104 929 16 ) ( 1105 928 16 ) carpet_dullgreen [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 1104 1072 16 ) ( 1105 1072 16 ) ( 1104 1072 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -( 1328 928 16 ) ( 1328 928 17 ) ( 1328 929 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 -32 ] 0 0.5 0.5 +( 312 248 16 ) ( 312 249 16 ) ( 312 248 17 ) skip [ 0 -1 0 -48 ] [ 0 0 -1 0 ] 0 1 1 +( 312 256 16 ) ( 312 256 17 ) ( 313 256 16 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 +( 312 248 16 ) ( 313 248 16 ) ( 312 249 16 ) skip [ -1 0 0 24 ] [ 0 -1 0 -48 ] 0 1 1 +( 328 264 120 ) ( 328 265 120 ) ( 329 264 120 ) skip [ 1 0 0 -24 ] [ 0 -1 0 -48 ] 0 1 1 +( 328 264 24 ) ( 329 264 24 ) ( 328 264 25 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 328 264 24 ) ( 328 264 25 ) ( 328 265 24 ) skip [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 1 1 } // brush 95 { -( 1036 928 16 ) ( 1036 929 16 ) ( 1036 928 17 ) redplaid [ 0 -1 0 32 ] [ 0 0 -1 16 ] 0 1 1 -( 1036 912 16 ) ( 1036 912 17 ) ( 1037 912 16 ) redplaid [ 1 0 0 -172 ] [ 0 0 -1 16 ] 0 1 1 -( 1036 928 16 ) ( 1037 928 16 ) ( 1036 929 16 ) redplaid [ -1 0 0 172 ] [ 0 -1 0 32 ] 0 1 1 -( 1068 944 64 ) ( 1068 945 64 ) ( 1069 944 64 ) redplaid [ 1 0 0 -172 ] [ 0 -1 0 32 ] 0 1 1 -( 1068 944 32 ) ( 1069 944 32 ) ( 1068 944 33 ) redplaid [ -1 0 0 172 ] [ 0 0 -1 16 ] 0 1 1 -( 1068 944 32 ) ( 1068 944 33 ) ( 1068 945 32 ) redplaid [ 0 1 0 -32 ] [ 0 0 -1 16 ] 0 1 1 +( 80 160 0 ) ( 80 161 0 ) ( 80 160 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 160 0 ) ( 80 160 1 ) ( 81 160 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 160 52 ) ( 81 160 52 ) ( 80 161 52 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 112 192 96 ) ( 112 193 96 ) ( 113 192 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 112 168 16 ) ( 113 168 16 ) ( 112 168 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 88 192 16 ) ( 88 192 17 ) ( 88 193 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } // brush 96 { -( 1232 988 16 ) ( 1232 989 16 ) ( 1232 988 17 ) redplaid [ 0 -1 0 28 ] [ 0 0 -1 0 ] 0 1 1 -( 1216 1000 16 ) ( 1216 1000 17 ) ( 1217 1000 16 ) redplaid [ 1 0 0 -208 ] [ 0 0 -1 0 ] 0 1 1 -( 1216 988 16 ) ( 1217 988 16 ) ( 1216 989 16 ) redplaid [ -1 0 0 208 ] [ 0 -1 0 28 ] 0 1 1 -( 1312 1084 36 ) ( 1312 1085 36 ) ( 1313 1084 36 ) redplaid [ 1 0 0 -208 ] [ 0 -1 0 28 ] 0 1 1 -( 1312 1072 32 ) ( 1313 1072 32 ) ( 1312 1072 33 ) redplaid [ -1 0 0 208 ] [ 0 0 -1 0 ] 0 1 1 -( 1292 1084 32 ) ( 1292 1084 33 ) ( 1292 1085 32 ) redplaid [ 0 1 0 -28 ] [ 0 0 -1 0 ] 0 1 1 +( 80 48 0 ) ( 80 49 0 ) ( 80 48 1 ) surface_green [ 0 -1 0 -32 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 48 0 ) ( 80 48 1 ) ( 81 48 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 48 52 ) ( 81 48 52 ) ( 80 49 52 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 112 80 96 ) ( 112 81 96 ) ( 113 80 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 112 56 16 ) ( 113 56 16 ) ( 112 56 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 88 80 16 ) ( 88 80 17 ) ( 88 81 16 ) surface_green [ 0 1 0 32 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } // brush 97 { -( 1132 988 16 ) ( 1132 989 16 ) ( 1132 988 17 ) redplaid [ 0 -1 0 28 ] [ 0 0 -1 0 ] 0 1 1 -( 1116 1000 16 ) ( 1116 1000 17 ) ( 1117 1000 16 ) redplaid [ 1 0 0 -108 ] [ 0 0 -1 0 ] 0 1 1 -( 1116 988 16 ) ( 1117 988 16 ) ( 1116 989 16 ) redplaid [ -1 0 0 108 ] [ 0 -1 0 28 ] 0 1 1 -( 1212 1084 36 ) ( 1212 1085 36 ) ( 1213 1084 36 ) redplaid [ 1 0 0 -108 ] [ 0 -1 0 28 ] 0 1 1 -( 1212 1072 32 ) ( 1213 1072 32 ) ( 1212 1072 33 ) redplaid [ -1 0 0 108 ] [ 0 0 -1 0 ] 0 1 1 -( 1192 1084 32 ) ( 1192 1084 33 ) ( 1192 1085 32 ) redplaid [ 0 1 0 -28 ] [ 0 0 -1 0 ] 0 1 1 +( 72 -248 88 ) ( 72 -247 88 ) ( 72 -248 89 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 -63.999992 ] 90 0.5 0.5 +( 80 -64 88 ) ( 80 -64 89 ) ( 81 -64 88 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 -32 ] [ -0.999999999999999 0 4.371139006309477e-08 16 ] 90 0.5 0.5 +( 80 -248 104 ) ( 81 -248 104 ) ( 80 -247 104 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 +( 112 -216 112 ) ( 112 -215 112 ) ( 113 -216 112 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 +( 112 -48 104 ) ( 113 -48 104 ) ( 112 -48 105 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 312 -216 104 ) ( 312 -216 105 ) ( 312 -215 104 ) surface_green_edge [ 0 -4.371139006309477e-08 -0.999999999999999 32 ] [ 0 -0.999999999999999 4.371139006309477e-08 16.000008 ] 90 0.5 0.5 } // brush 98 { -( 1088 1032 16 ) ( 1088 1033 16 ) ( 1088 1032 17 ) surface_beige [ 0 -1 0 40 ] [ 0 0 -1 0 ] 0 1 1 -( 1088 976 16 ) ( 1088 976 17 ) ( 1089 976 16 ) surface_beige [ 1 0 0 -48 ] [ 0 0 -1 0 ] 0 1 1 -( 1088 1032 16 ) ( 1089 1032 16 ) ( 1088 1033 16 ) surface_beige [ -1 0 0 48 ] [ 0 -1 0 40 ] 0 1 1 -( 1096 1072 96 ) ( 1096 1073 96 ) ( 1097 1072 96 ) surface_beige [ 1 0 0 -48 ] [ 0 -1 0 40 ] 0 1 1 -( 1096 1072 24 ) ( 1097 1072 24 ) ( 1096 1072 25 ) surface_beige [ -1 0 0 48 ] [ 0 0 -1 0 ] 0 1 1 -( 1096 1072 24 ) ( 1096 1072 25 ) ( 1096 1073 24 ) surface_beige [ 0 1 0 -40 ] [ 0 0 -1 0 ] 0 1 1 +( 224 8 16 ) ( 224 9 16 ) ( 224 8 17 ) redplaid [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 +( 224 104 16 ) ( 224 104 17 ) ( 225 104 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 224 8 16 ) ( 225 8 16 ) ( 224 9 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 248 96 48 ) ( 248 97 48 ) ( 249 96 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 248 136 24 ) ( 249 136 24 ) ( 248 136 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 312 96 24 ) ( 312 96 25 ) ( 312 97 24 ) redplaid [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 } // brush 99 { -( 992 976 16 ) ( 992 977 16 ) ( 992 976 17 ) surface_beige [ 0 -1 0 -8 ] [ 0 0 -1 0 ] 0 1 1 -( 1000 976 16 ) ( 1000 976 17 ) ( 1001 976 16 ) surface_beige [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 1000 976 16 ) ( 1001 976 16 ) ( 1000 977 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 1 1 -( 1048 984 96 ) ( 1048 985 96 ) ( 1049 984 96 ) surface_beige [ 1 0 0 0 ] [ 0 -1 0 -8 ] 0 1 1 -( 1048 984 24 ) ( 1049 984 24 ) ( 1048 984 25 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 1040 984 24 ) ( 1040 984 25 ) ( 1040 985 24 ) surface_beige [ 0 1 0 8 ] [ 0 0 -1 0 ] 0 1 1 +( 80 -56 48 ) ( 80 -55 48 ) ( 80 -56 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 -15.999992 ] 90 0.5 0.5 +( 80 -56 48 ) ( 80 -56 49 ) ( 81 -56 48 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 -32 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 80 -56 120 ) ( 81 -56 120 ) ( 80 -55 120 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -24 144 ) ( 112 -23 144 ) ( 113 -24 144 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -48 64 ) ( 113 -48 64 ) ( 112 -48 65 ) skip [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 +( 312 -24 64 ) ( 312 -24 65 ) ( 312 -23 64 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -40 ] 0 0.5 0.5 } // brush 100 { -( 1040 976 16 ) ( 1040 977 16 ) ( 1040 976 17 ) surface_beige [ 0 -1 0 -8 ] [ 0 0 -1 0 ] 0 1 1 -( 1048 976 16 ) ( 1048 976 17 ) ( 1049 976 16 ) surface_beige [ 1 0 0 -48 ] [ 0 0 -1 0 ] 0 1 1 -( 1048 976 80 ) ( 1049 976 80 ) ( 1048 977 80 ) surface_beige [ -1 0 0 48 ] [ 0 -1 0 -8 ] 0 1 1 -( 1096 984 96 ) ( 1096 985 96 ) ( 1097 984 96 ) surface_beige [ 1 0 0 -48 ] [ 0 -1 0 -8 ] 0 1 1 -( 1096 984 24 ) ( 1097 984 24 ) ( 1096 984 25 ) surface_beige [ -1 0 0 48 ] [ 0 0 -1 0 ] 0 1 1 -( 1088 984 24 ) ( 1088 984 25 ) ( 1088 985 24 ) surface_beige [ 0 1 0 8 ] [ 0 0 -1 0 ] 0 1 1 +( 80 -56 0 ) ( 80 -55 0 ) ( 80 -56 1 ) surface_green [ 0 -1 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 -56 0 ) ( 80 -56 1 ) ( 81 -56 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 -56 48 ) ( 81 -56 48 ) ( 80 -55 48 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -24 96 ) ( 112 -23 96 ) ( 113 -24 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -48 16 ) ( 113 -48 16 ) ( 112 -48 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 88 -24 16 ) ( 88 -24 17 ) ( 88 -23 16 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 } // brush 101 { -( 1196 1052 16 ) ( 1196 1053 16 ) ( 1196 1052 17 ) ground_wood [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1196 1052 16 ) ( 1196 1052 17 ) ( 1197 1052 16 ) ground_wood [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1196 1052 16 ) ( 1197 1052 16 ) ( 1196 1053 16 ) ground_wood [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 1228 1072 36 ) ( 1228 1073 36 ) ( 1229 1072 36 ) ground_wood [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 1228 1072 20 ) ( 1229 1072 20 ) ( 1228 1072 21 ) ground_wood [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1228 1072 20 ) ( 1228 1072 21 ) ( 1228 1073 20 ) ground_wood [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 224 -48 16 ) ( 224 -47 16 ) ( 224 -48 17 ) redplaid [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 +( 224 -48 16 ) ( 224 -48 17 ) ( 225 -48 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 224 -48 16 ) ( 225 -48 16 ) ( 224 -47 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 248 40 48 ) ( 248 41 48 ) ( 249 40 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 +( 248 64 24 ) ( 249 64 24 ) ( 248 64 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 248 40 24 ) ( 248 40 25 ) ( 248 41 24 ) redplaid [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 } // brush 102 { -( 1168 888 16 ) ( 1168 889 16 ) ( 1168 888 17 ) ground_wood [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 0.25 0.25 -( 1184 888 16 ) ( 1184 888 17 ) ( 1185 888 16 ) ground_wood [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 0.25 0.25 -( 1184 888 16 ) ( 1185 888 16 ) ( 1184 889 16 ) ground_wood [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 0.25 0.25 -( 1256 920 40 ) ( 1256 921 40 ) ( 1257 920 40 ) ground_wood [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 1256 920 24 ) ( 1257 920 24 ) ( 1256 920 25 ) ground_wood [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1256 920 24 ) ( 1256 920 25 ) ( 1256 921 24 ) ground_wood [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 72 -248 128 ) ( 72 -247 128 ) ( 72 -248 129 ) surface_green [ 0 -1 0 8 ] [ 0 0 -1 -48 ] 0 0.5 0.5 +( 80 -64 128 ) ( 80 -64 129 ) ( 81 -64 128 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 +( 80 -248 144 ) ( 81 -248 144 ) ( 80 -247 144 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 +( 112 -216 152 ) ( 112 -215 152 ) ( 113 -216 152 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -48 144 ) ( 113 -48 144 ) ( 112 -48 145 ) skip [ -1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 +( 312 -216 144 ) ( 312 -216 145 ) ( 312 -215 144 ) surface_green [ 0 1 0 -8 ] [ 0 0 -1 -48 ] 0 0.5 0.5 +} +// brush 103 +{ +( 80 -56 0 ) ( 80 -55 0 ) ( 80 -56 1 ) surface_green [ 0 -1 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 -56 0 ) ( 80 -56 1 ) ( 81 -56 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 80 -56 16 ) ( 81 -56 16 ) ( 80 -55 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -24 52 ) ( 112 -23 52 ) ( 113 -24 52 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -48 16 ) ( 113 -48 16 ) ( 112 -48 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 224 -24 16 ) ( 224 -24 17 ) ( 224 -23 16 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +} +// brush 104 +{ +( 224 -56 0 ) ( 224 -55 0 ) ( 224 -56 1 ) surface_green [ 0 -1 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 224 -56 0 ) ( 224 -56 1 ) ( 225 -56 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 224 -56 16 ) ( 225 -56 16 ) ( 224 -55 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 256 -24 96 ) ( 256 -23 96 ) ( 257 -24 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 256 -48 16 ) ( 257 -48 16 ) ( 256 -48 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +( 312 -24 16 ) ( 312 -24 17 ) ( 312 -23 16 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 +} +// brush 105 +{ +( 80 -56 -8 ) ( 80 -55 -8 ) ( 80 -56 -7 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 16 ] [ 0 0.999999999999999 4.371139006309477e-08 -15.999992 ] 90 0.5 0.5 +( 176 -56 -8 ) ( 176 -56 -7 ) ( 177 -56 -8 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 16 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 176 -56 96 ) ( 177 -56 96 ) ( 176 -55 96 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 208 -24 104 ) ( 208 -23 104 ) ( 209 -24 104 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 208 -48 8 ) ( 209 -48 8 ) ( 208 -48 9 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 +( 312 -24 8 ) ( 312 -24 9 ) ( 312 -23 8 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -40 ] 0 0.5 0.5 +} +// brush 106 +{ +( 944 584 -20 ) ( 944 585 -20 ) ( 944 584 -19 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 180 0.5 0.5 +( 816 720 -20 ) ( 816 720 -19 ) ( 817 720 -20 ) skip [ 1 0 0 32 ] [ 0 0 -1 0 ] 180 0.5 0.5 +( 816 584 -20 ) ( 817 584 -20 ) ( 816 585 -20 ) skip [ -1 0 0 -32 ] [ 0 -1 0 0 ] 180 0.5 0.5 +( 944 712 12 ) ( 944 713 12 ) ( 945 712 12 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 180 0.25 0.25 +( 944 800 12 ) ( 945 800 12 ) ( 944 800 13 ) skip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 180 0.5 0.5 +( 1408 712 12 ) ( 1408 712 13 ) ( 1408 713 12 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 180 0.5 0.5 +} +// brush 107 +{ +( 848 792 -16 ) ( 848 793 -16 ) ( 848 792 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 304 720 -16 ) ( 304 720 -15 ) ( 305 720 -16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 +( 304 792 12 ) ( 305 792 12 ) ( 304 793 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 432 920 16 ) ( 432 921 16 ) ( 433 920 16 ) ground_greybrick [ 1 0 0 -96 ] [ 0 -1 0 -16 ] 0 0.5 0.5 +( 432 800 16 ) ( 433 800 16 ) ( 432 800 17 ) skip [ -1 0 0 32 ] [ 0 0 -1 0 ] 0 1 1 +( 944 920 16 ) ( 944 920 17 ) ( 944 921 16 ) wall_concrete1 [ 0 1 0 0 ] [ 0 0 -1 -32 ] 0 1 1 +} +// brush 108 +{ +( 80 256 40 ) ( 80 257 40 ) ( 80 256 41 ) surface_green [ 0 4.371139006309477e-08 -0.999999999999999 -47.999954 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 80 256 40 ) ( 80 256 41 ) ( 81 256 40 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -56 ] 0 0.5 0.5 +( 80 256 112 ) ( 81 256 112 ) ( 80 257 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 112 288 120 ) ( 112 289 120 ) ( 113 288 120 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 112 264 56 ) ( 113 264 56 ) ( 112 264 57 ) surface_green [ 4.371139006309477e-08 0 -0.999999999999999 -47.999954 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 312 288 56 ) ( 312 288 57 ) ( 312 289 56 ) skip [ 0 1 0 0 ] [ 0 0 -1 -56 ] 0 0.5 0.5 +} +// brush 109 +{ +( 80 -56 40 ) ( 80 -55 40 ) ( 80 -56 41 ) surface_green [ 0 4.371139006309477e-08 -0.999999999999999 -48 ] [ 0 0.999999999999999 4.371139006309477e-08 -16 ] 90 0.5 0.5 +( 80 -56 40 ) ( 80 -56 41 ) ( 81 -56 40 ) surface_green [ -4.371139006309477e-08 0 -0.999999999999999 -48.000015 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 80 -56 112 ) ( 81 -56 112 ) ( 80 -55 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -24 120 ) ( 112 -23 120 ) ( 113 -24 120 ) skip [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 +( 112 -48 56 ) ( 113 -48 56 ) ( 112 -48 57 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -56 ] 0 0.5 0.5 +( 312 -24 56 ) ( 312 -24 57 ) ( 312 -23 56 ) skip [ 0 1 0 -16 ] [ 0 0 -1 -56 ] 0 0.5 0.5 +} +// brush 110 +{ +( 312 -32 120 ) ( 312 -32 112 ) ( 312 16 120 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -15.9999695 ] [ 0 0.9999999999999866 1.6292067950285372e-07 47.999992 ] 90 0.5 0.5 +( 320 -32 120 ) ( 320 -32 112 ) ( 312 -32 120 ) skip [ 1 0 0 -16 ] [ 0 0 -1 16 ] 0 1 1 +( 312 16 104 ) ( 312 -32 104 ) ( 320 16 104 ) skip [ 1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 320 16 120 ) ( 320 -32 120 ) ( 312 16 120 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 +( 312 16 120 ) ( 312 16 112 ) ( 320 16 120 ) skip [ -1 0 0 16 ] [ 0 0 -1 16 ] 0 1 1 +( 320 16 120 ) ( 320 16 112 ) ( 320 -32 120 ) skip [ 0 1 0 48 ] [ 0 0 -1 48 ] 0 0.5 0.5 +} +// brush 111 +{ +( 312 -56 16 ) ( 312 -40 16 ) ( 312 -56 32 ) surface_beige_corner [ 0 -1.3113417006681922e-07 0.9999999999999913 32 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 -32 ] 270 0.5 0.5 +( 312 -48 32 ) ( 320 -48 32 ) ( 312 -48 16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 320 -56 16 ) ( 320 -40 16 ) ( 312 -56 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 +( 312 -56 32 ) ( 312 -40 32 ) ( 320 -56 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 +( 312 -40 32 ) ( 312 -40 16 ) ( 320 -40 32 ) skip [ 1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 320 -56 32 ) ( 320 -40 32 ) ( 320 -56 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 112 +{ +( 312 152 32 ) ( 312 24 32 ) ( 312 152 16 ) surface_beige_corner [ 0 -0.9999999999999997 -1.224647977550801e-16 0 ] [ -0 1.224647977550801e-16 -0.9999999999999997 32 ] 0 0.5 0.5 +( 320 248 16 ) ( 312 248 16 ) ( 320 248 32 ) skip [ 0.9999999999999957 0 8.742277997596912e-08 16 ] [ -8.742277997596912e-08 0 0.9999999999999957 0 ] 180 0.5 0.5 +( 312 152 16 ) ( 312 24 16 ) ( 320 152 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 1 1 +( 320 152 32 ) ( 320 24 32 ) ( 312 152 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 312 256 16 ) ( 320 256 16 ) ( 312 256 32 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 320 152 16 ) ( 320 24 16 ) ( 320 152 32 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 113 +{ +( 312 152 48 ) ( 312 24 48 ) ( 312 152 32 ) surface_beige_edge [ 0 -0.9999999999999998 0 0 ] [ 0 0 -0.9999999999999998 -32 ] 0 0.5 0.5 +( 320 248 32 ) ( 312 248 32 ) ( 320 248 48 ) skip [ 0.9999999999999957 0 8.742277997596912e-08 16 ] [ -8.742277997596912e-08 0 0.9999999999999957 -32 ] 180 0.5 0.5 +( 312 152 32 ) ( 312 24 32 ) ( 320 152 32 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 1 1 +( 320 152 104 ) ( 320 24 104 ) ( 312 152 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 312 256 32 ) ( 320 256 32 ) ( 312 256 48 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 320 152 32 ) ( 320 24 32 ) ( 320 152 48 ) skip [ 0 1 0 32 ] [ 0 0 -1 32 ] 0 0.5 0.5 +} +// brush 114 +{ +( 312 152 120 ) ( 312 24 120 ) ( 312 152 104 ) surface_beige_corner [ 0 1.6292067950285372e-07 -0.9999999999999866 48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 +( 320 248 104 ) ( 312 248 104 ) ( 320 248 120 ) skip [ 0.9999999999999957 0 8.742277997596912e-08 16 ] [ -8.742277997596912e-08 0 0.9999999999999957 -48 ] 180 0.5 0.5 +( 312 152 104 ) ( 312 24 104 ) ( 320 152 104 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 1 1 +( 320 152 120 ) ( 320 24 120 ) ( 312 152 120 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 312 256 104 ) ( 320 256 104 ) ( 312 256 120 ) skip [ -1 0 0 0 ] [ 0 0 -1 32 ] 0 0.25 0.25 +( 320 152 104 ) ( 320 24 104 ) ( 320 152 120 ) skip [ 0 1 0 32 ] [ 0 0 -1 48 ] 0 0.5 0.5 +} +// brush 115 +{ +( 80 -48 40 ) ( 80 -47 40 ) ( 80 -48 41 ) surface_green [ 0 4.371139006309477e-08 -0.999999999999999 -48 ] [ 0 0.999999999999999 4.371139006309477e-08 -32 ] 90 0.5 0.5 +( 80 -48 40 ) ( 80 -48 41 ) ( 81 -48 40 ) skip [ -4.371139006309477e-08 0 -0.999999999999999 -48 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 +( 80 -48 112 ) ( 81 -48 112 ) ( 80 -47 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 32 ] 0 0.5 0.5 +( 112 -16 120 ) ( 112 -15 120 ) ( 113 -16 120 ) skip [ 1 0 0 0 ] [ 0 -1 0 32 ] 0 0.5 0.5 +( 112 256 56 ) ( 113 256 56 ) ( 112 256 57 ) skip [ -1 0 0 0 ] [ 0 0 -1 -56 ] 0 0.5 0.5 +( 88 -16 56 ) ( 88 -16 57 ) ( 88 -15 56 ) surface_green [ 0 1 0 -32 ] [ 0 0 -1 -56 ] 0 0.5 0.5 +} +// brush 116 +{ +( 944 800 0 ) ( 944 801 0 ) ( 944 800 1 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 944 800 0 ) ( 944 800 1 ) ( 945 800 0 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 944 800 0 ) ( 945 800 0 ) ( 944 801 0 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 992 848 16 ) ( 992 849 16 ) ( 993 848 16 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 992 1024 16 ) ( 993 1024 16 ) ( 992 1024 17 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 848 16 ) ( 1312 848 17 ) ( 1312 849 16 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 117 +{ +( 944 800 16 ) ( 944 801 16 ) ( 944 800 17 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 944 800 16 ) ( 944 800 17 ) ( 945 800 16 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 944 800 16 ) ( 945 800 16 ) ( 944 801 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 840 96 ) ( 952 841 96 ) ( 953 840 96 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 824 24 ) ( 953 824 24 ) ( 952 824 25 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 840 24 ) ( 952 840 25 ) ( 952 841 24 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 118 +{ +( 944 872 16 ) ( 944 873 16 ) ( 944 872 17 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 944 872 16 ) ( 944 872 17 ) ( 945 872 16 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 944 872 16 ) ( 945 872 16 ) ( 944 873 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 912 112 ) ( 952 913 112 ) ( 953 912 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 888 24 ) ( 953 888 24 ) ( 952 888 25 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 912 24 ) ( 952 912 25 ) ( 952 913 24 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 119 +{ +( 944 848 32 ) ( 944 849 32 ) ( 944 848 33 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 944 800 32 ) ( 944 800 33 ) ( 945 800 32 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 944 848 96 ) ( 945 848 96 ) ( 944 849 96 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 888 112 ) ( 952 889 112 ) ( 953 888 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 872 40 ) ( 953 872 40 ) ( 952 872 41 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 888 40 ) ( 952 888 41 ) ( 952 889 40 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 120 +{ +( 944 888 16 ) ( 944 889 16 ) ( 944 888 17 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 944 888 16 ) ( 944 888 17 ) ( 945 888 16 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 944 888 16 ) ( 945 888 16 ) ( 944 889 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 928 48 ) ( 952 929 48 ) ( 953 928 48 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 992 24 ) ( 953 992 24 ) ( 952 992 25 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 928 24 ) ( 952 928 25 ) ( 952 929 24 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 121 +{ +( 944 888 16 ) ( 944 889 16 ) ( 944 888 17 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 944 888 16 ) ( 944 888 17 ) ( 945 888 16 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 944 888 96 ) ( 945 888 96 ) ( 944 889 96 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 928 112 ) ( 952 929 112 ) ( 953 928 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 992 24 ) ( 953 992 24 ) ( 952 992 25 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 928 24 ) ( 952 928 25 ) ( 952 929 24 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 122 +{ +( 944 992 16 ) ( 944 993 16 ) ( 944 992 17 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 944 992 16 ) ( 944 992 17 ) ( 945 992 16 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 944 992 16 ) ( 945 992 16 ) ( 944 993 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1032 112 ) ( 952 1033 112 ) ( 953 1032 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1024 24 ) ( 953 1024 24 ) ( 952 1024 25 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1032 24 ) ( 952 1032 25 ) ( 952 1033 24 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 123 +{ +( 328 24 48 ) ( 328 58 46 ) ( 328 58 48 ) skip [ 0 -1 0 -12 ] [ 0 0 -1 0 ] 0 1 1 +( 340 24 48 ) ( 328 24 46 ) ( 328 24 48 ) marblewhite [ 1 -0 0 0 ] [ 0 -0 -1 0 ] 0 0.25 0.25 +( 340 58 46 ) ( 328 24 46 ) ( 340 24 46 ) marblewhite [ -1 0 -0 0 ] [ -0 -1 0 0 ] 0 0.25 0.25 +( 340 58 48 ) ( 328 24 48 ) ( 328 58 48 ) marblewhite [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 340 136 48 ) ( 328 136 46 ) ( 340 136 46 ) skip [ -1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 +( 361 58 48 ) ( 361 24 46 ) ( 361 24 48 ) marblewhite [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 124 +{ +( 361 24 48 ) ( 361 58 46 ) ( 361 58 48 ) skip [ 0 -1 0 -12 ] [ 0 0 -1 0 ] 0 1 1 +( 379 103 48 ) ( 367 103 46 ) ( 367 103 48 ) marblewhite [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 379 58 46 ) ( 367 24 46 ) ( 379 24 46 ) marblewhite [ -1 0 0 28 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 379 58 48 ) ( 367 24 48 ) ( 367 58 48 ) marblewhite [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 379 136 48 ) ( 367 136 46 ) ( 379 136 46 ) skip [ -1 0 0 23 ] [ 0 0 -1 0 ] 0 1 1 +( 400 58 48 ) ( 400 24 46 ) ( 400 24 48 ) marblewhite [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 125 +{ +( 448 24 48 ) ( 448 58 46 ) ( 448 58 48 ) marblewhite [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 0.25 0.25 +( 460 -40 48 ) ( 448 -40 46 ) ( 448 -40 48 ) skip [ 1 -0 0 0 ] [ 0 -0 -1 0 ] 0 1 1 +( 460 58 46 ) ( 448 24 46 ) ( 460 24 46 ) skip [ -1 0 -0 0 ] [ -0 -1 0 0 ] 0 1 1 +( 460 58 48 ) ( 448 24 48 ) ( 448 58 48 ) marblewhite [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 460 136 48 ) ( 448 136 46 ) ( 460 136 46 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 481 58 48 ) ( 481 24 46 ) ( 481 24 48 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 126 +{ +( 448 24 16 ) ( 448 25 16 ) ( 448 24 17 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 448 104 16 ) ( 448 104 17 ) ( 449 104 16 ) woodpale [ -4.371139006309477e-08 0 -0.999999999999999 0 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.25 0.25 +( 448 24 16 ) ( 449 24 16 ) ( 448 25 16 ) skip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 +( 480 72 46 ) ( 480 73 46 ) ( 481 72 46 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 +( 480 136 24 ) ( 481 136 24 ) ( 480 136 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 +( 480 72 24 ) ( 480 72 25 ) ( 480 73 24 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 +} +// brush 127 +{ +( 848 1136 0 ) ( 848 1137 0 ) ( 848 1136 1 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 912 1136 0 ) ( 912 1136 1 ) ( 913 1136 0 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 912 1136 0 ) ( 913 1136 0 ) ( 912 1137 0 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 944 1200 16 ) ( 944 1201 16 ) ( 945 1200 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 944 1800 16 ) ( 945 1800 16 ) ( 944 1800 17 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 944 1200 16 ) ( 944 1200 17 ) ( 944 1201 16 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 128 +{ +( 952 1216 24 ) ( 952 1217 24 ) ( 952 1216 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1216 24 ) ( 952 1216 25 ) ( 953 1216 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1216 16 ) ( 953 1216 16 ) ( 952 1217 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1224 112 ) ( 968 1225 112 ) ( 969 1224 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1224 32 ) ( 969 1224 32 ) ( 968 1224 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1224 32 ) ( 1304 1224 33 ) ( 1304 1225 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 129 +{ +( 952 1408 24 ) ( 952 1409 24 ) ( 952 1408 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1408 24 ) ( 952 1408 25 ) ( 953 1408 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1408 16 ) ( 953 1408 16 ) ( 952 1409 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1416 112 ) ( 968 1417 112 ) ( 969 1416 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1416 32 ) ( 969 1416 32 ) ( 968 1416 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1416 32 ) ( 1304 1416 33 ) ( 1304 1417 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 130 +{ +( 952 1024 24 ) ( 952 1025 24 ) ( 952 1024 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1024 24 ) ( 952 1024 25 ) ( 953 1024 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1024 16 ) ( 953 1024 16 ) ( 952 1025 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1032 112 ) ( 968 1033 112 ) ( 969 1032 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1032 32 ) ( 969 1032 32 ) ( 968 1032 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1032 32 ) ( 1304 1032 33 ) ( 1304 1033 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 131 +{ +( 1194 1132 16 ) ( 1194 1133 16 ) ( 1194 1132 17 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1188 1134 16 ) ( 1188 1134 17 ) ( 1189 1134 16 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1188 1132 16 ) ( 1189 1132 16 ) ( 1188 1133 16 ) clip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 1284 1228 44 ) ( 1284 1229 44 ) ( 1285 1228 44 ) clip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 1284 1216 32 ) ( 1285 1216 32 ) ( 1284 1216 33 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1264 1228 32 ) ( 1264 1228 33 ) ( 1264 1229 32 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 132 +{ +( 952 1120 16 ) ( 952 1121 16 ) ( 952 1120 17 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 180 0.5 0.5 +( 960 1120 16 ) ( 960 1120 17 ) ( 961 1120 16 ) surface_beige [ 1 0 0 -16 ] [ 0 0 -1 0 ] 180 0.5 0.5 +( 960 1120 16 ) ( 961 1120 16 ) ( 960 1121 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -32 ] 180 0.5 0.5 +( 1008 1128 96 ) ( 1008 1129 96 ) ( 1009 1128 96 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 90 0.5 0.5 +( 1008 1128 24 ) ( 1009 1128 24 ) ( 1008 1128 25 ) surface_beige [ -1 0 0 16 ] [ 0 0 -1 0 ] 180 0.5 0.5 +( 1000 1128 24 ) ( 1000 1128 25 ) ( 1000 1129 24 ) surface_beige_edge [ 0 1 0 0 ] [ 0 0 -1 0 ] 180 0.5 0.5 +} +// brush 133 +{ +( 1082 1132 16 ) ( 1082 1133 16 ) ( 1082 1132 17 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1076 1134 16 ) ( 1076 1134 17 ) ( 1077 1134 16 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1076 1132 16 ) ( 1077 1132 16 ) ( 1076 1133 16 ) clip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 1172 1228 44 ) ( 1172 1229 44 ) ( 1173 1228 44 ) clip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 1172 1216 32 ) ( 1173 1216 32 ) ( 1172 1216 33 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1152 1228 32 ) ( 1152 1228 33 ) ( 1152 1229 32 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 134 +{ +( 1000 1120 32 ) ( 1000 1121 32 ) ( 1000 1120 33 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 32 ] 0 0.5 0.5 +( 1008 1120 32 ) ( 1008 1120 33 ) ( 1009 1120 32 ) surface_beige [ 1 0 0 -16 ] [ 0 0 -1 32 ] 0 0.5 0.5 +( 1008 1120 96 ) ( 1009 1120 96 ) ( 1008 1121 96 ) surface_beige_edge [ 4.371138994063005e-08 0.9999999999999989 0 0 ] [ -0.9999999999999989 4.371138994063005e-08 0 16 ] 270 0.5 0.5 +( 1056 1128 112 ) ( 1056 1129 112 ) ( 1057 1128 112 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 1056 1128 40 ) ( 1057 1128 40 ) ( 1056 1128 41 ) surface_beige [ -1 0 0 16 ] [ 0 0 -1 32 ] 0 0.5 0.5 +( 1048 1128 40 ) ( 1048 1128 41 ) ( 1048 1129 40 ) skip [ 0 1 0 32 ] [ 0 0 -1 32 ] 0 0.5 0.5 +} +// brush 135 +{ +( 1156 1196 16 ) ( 1156 1197 16 ) ( 1156 1196 17 ) clip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 1156 1196 16 ) ( 1156 1196 17 ) ( 1157 1196 16 ) clip [ 1 0 0 -32 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 1156 1196 16 ) ( 1157 1196 16 ) ( 1156 1197 16 ) clip [ -1 0 0 32 ] [ 0 -1 0 0 ] 180 0.25 0.25 +( 1188 1216 34 ) ( 1188 1217 34 ) ( 1189 1216 34 ) clip [ 1 0 0 -32 ] [ 0 -1 0 0 ] 180 0.25 0.25 +( 1188 1216 20 ) ( 1189 1216 20 ) ( 1188 1216 21 ) clip [ -1 0 0 32 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 1190 1216 20 ) ( 1190 1216 21 ) ( 1190 1217 20 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 180 0.25 0.25 +} +// brush 136 +{ +( 952 1024 0 ) ( 952 1025 0 ) ( 952 1024 1 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 -32 ] 180 0.5 0.5 +( 1032 1032 0 ) ( 1032 1032 1 ) ( 1033 1032 0 ) skip [ 1 0 0 16 ] [ 0 0 -1 -32 ] 180 0.5 0.5 +( 1032 1024 0 ) ( 1033 1024 0 ) ( 1032 1025 0 ) skip [ -1 0 0 -16 ] [ 0 -1 0 -32 ] 180 0.5 0.5 +( 1064 1072 16 ) ( 1064 1073 16 ) ( 1065 1072 16 ) carpet_dullgreen [ 1 0 0 80 ] [ 0 -1 0 -96 ] 180 0.5 0.5 +( 1064 1216 16 ) ( 1065 1216 16 ) ( 1064 1216 17 ) skip [ -1 0 0 -16 ] [ 0 0 -1 -32 ] 180 0.5 0.5 +( 1304 1072 16 ) ( 1304 1072 17 ) ( 1304 1073 16 ) skip [ 0 1 0 32 ] [ 0 0 -1 -32 ] 180 0.5 0.5 +} +// brush 137 +{ +( 1136 1032 16 ) ( 1136 1033 16 ) ( 1136 1032 17 ) clip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 1112 1032 16 ) ( 1112 1032 17 ) ( 1113 1032 16 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 1112 1032 16 ) ( 1113 1032 16 ) ( 1112 1033 16 ) clip [ -1 0 0 0 ] [ 0 -1 0 0 ] 180 0.25 0.25 +( 1184 1064 48 ) ( 1184 1065 48 ) ( 1185 1064 48 ) clip [ 1 0 0 0 ] [ 0 -1 0 0 ] 180 0.25 0.25 +( 1184 1056 24 ) ( 1185 1056 24 ) ( 1184 1056 25 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 1200 1064 24 ) ( 1200 1064 25 ) ( 1200 1065 24 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 180 0.25 0.25 +} +// brush 138 +{ +( 1048 1168 48 ) ( 1048 1169 48 ) ( 1048 1168 49 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 1048 1120 48 ) ( 1048 1120 49 ) ( 1049 1120 48 ) surface_beige_edge [ -0.9999999999999961 0 8.742278000372473e-08 0 ] [ 8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 +( 1048 1168 96 ) ( 1049 1168 96 ) ( 1048 1169 96 ) skip [ -1 0 0 16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 1056 1208 112 ) ( 1056 1209 112 ) ( 1057 1208 112 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 1056 1128 56 ) ( 1057 1128 56 ) ( 1056 1128 57 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 +( 1056 1208 56 ) ( 1056 1208 57 ) ( 1056 1209 56 ) surface_beige_edge [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 +} +// brush 139 +{ +( 1048 1176 16 ) ( 1048 1177 16 ) ( 1048 1176 17 ) surface_beige [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 180 0.5 0.5 +( 1048 1128 16 ) ( 1048 1128 17 ) ( 1049 1128 16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 180 0.5 0.5 +( 1048 1176 16 ) ( 1049 1176 16 ) ( 1048 1177 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -32 ] 180 0.5 0.5 +( 1056 1216 112 ) ( 1056 1217 112 ) ( 1057 1216 112 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 90 0.5 0.5 +( 1056 1216 24 ) ( 1057 1216 24 ) ( 1056 1216 25 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 180 0.5 0.5 +( 1056 1216 24 ) ( 1056 1216 25 ) ( 1056 1217 24 ) surface_beige [ 0 1 0 32 ] [ 0 0 -1 0 ] 180 0.5 0.5 +} +// brush 140 +{ +( 952 1120 32 ) ( 952 1121 32 ) ( 952 1120 33 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 32 ] 0 0.5 0.5 +( 952 1120 32 ) ( 952 1120 33 ) ( 953 1120 32 ) surface_beige [ 1 0 0 32 ] [ 0 0 -1 32 ] 0 0.5 0.5 +( 952 1120 96 ) ( 953 1120 96 ) ( 952 1121 96 ) skip [ -1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 1000 1128 112 ) ( 1000 1129 112 ) ( 1001 1128 112 ) skip [ 1 0 0 32 ] [ 0 -1 0 -32 ] 0 0.5 0.5 +( 1000 1128 40 ) ( 1001 1128 40 ) ( 1000 1128 41 ) surface_beige [ -1 0 0 -32 ] [ 0 0 -1 32 ] 0 0.5 0.5 +( 1000 1128 40 ) ( 1000 1128 41 ) ( 1000 1129 40 ) skip [ 0 1 0 32 ] [ 0 0 -1 32 ] 0 0.5 0.5 +} +// brush 141 +{ +( 1048 1168 16 ) ( 1048 1169 16 ) ( 1048 1168 17 ) surface_beige_edge [ 0 0.9999999999999961 8.742278000372473e-08 0 ] [ 0 -8.742278000372473e-08 0.9999999999999961 0 ] 0 0.5 0.5 +( 1048 1120 16 ) ( 1048 1120 17 ) ( 1049 1120 16 ) surface_beige_edge [ -0.9999999999999961 0 8.742278000372473e-08 0 ] [ 8.742278000372473e-08 0 0.9999999999999961 0 ] 0 0.5 0.5 +( 1048 1168 16 ) ( 1049 1168 16 ) ( 1048 1169 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -32 ] 180 0.5 0.5 +( 1056 1208 96 ) ( 1056 1209 96 ) ( 1057 1208 96 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 90 0.5 0.5 +( 1056 1128 24 ) ( 1057 1128 24 ) ( 1056 1128 25 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 180 0.5 0.5 +( 1056 1208 24 ) ( 1056 1208 25 ) ( 1056 1209 24 ) surface_beige_edge [ 0 1 0 0 ] [ 0 0 -1 0 ] 180 0.5 0.5 +} +// brush 142 +{ +( 944 1032 8 ) ( 944 1033 8 ) ( 944 1032 9 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1024 8 ) ( 936 1024 9 ) ( 937 1024 8 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1032 8 ) ( 937 1032 8 ) ( 936 1033 8 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1064 16 ) ( 952 1065 16 ) ( 953 1064 16 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1672 16 ) ( 953 1672 16 ) ( 952 1672 17 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1064 16 ) ( 952 1064 17 ) ( 952 1065 16 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 143 +{ +( 1304 1024 24 ) ( 1304 1025 24 ) ( 1304 1024 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1040 24 ) ( 960 1040 25 ) ( 961 1040 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1024 16 ) ( 961 1024 16 ) ( 960 1025 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1032 40 ) ( 976 1033 40 ) ( 977 1032 40 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1200 32 ) ( 977 1200 32 ) ( 976 1200 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1032 32 ) ( 1312 1032 33 ) ( 1312 1033 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 144 +{ +( 944 1032 16 ) ( 944 1033 16 ) ( 944 1032 17 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1024 16 ) ( 936 1024 17 ) ( 937 1024 16 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1032 16 ) ( 937 1032 16 ) ( 936 1033 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1064 112 ) ( 952 1065 112 ) ( 953 1064 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1048 24 ) ( 953 1048 24 ) ( 952 1048 25 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1064 24 ) ( 952 1064 25 ) ( 952 1065 24 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 145 +{ +( 944 1112 16 ) ( 944 1113 16 ) ( 944 1112 17 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1096 16 ) ( 936 1096 17 ) ( 937 1096 16 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1112 16 ) ( 937 1112 16 ) ( 936 1113 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1144 112 ) ( 952 1145 112 ) ( 953 1144 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1216 24 ) ( 953 1216 24 ) ( 952 1216 25 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1144 24 ) ( 952 1144 25 ) ( 952 1145 24 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 146 +{ +( 952 1224 8 ) ( 952 1225 8 ) ( 952 1224 9 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1224 8 ) ( 952 1224 9 ) ( 953 1224 8 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1224 8 ) ( 953 1224 8 ) ( 952 1225 8 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1272 16 ) ( 968 1273 16 ) ( 969 1272 16 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1408 16 ) ( 969 1408 16 ) ( 968 1408 17 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1272 16 ) ( 1304 1272 17 ) ( 1304 1273 16 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 147 +{ +( 944 1080 16 ) ( 944 1081 16 ) ( 944 1080 17 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1048 16 ) ( 936 1048 17 ) ( 937 1048 16 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1080 96 ) ( 937 1080 96 ) ( 936 1081 96 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1112 112 ) ( 952 1113 112 ) ( 953 1112 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1096 24 ) ( 953 1096 24 ) ( 952 1096 25 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1112 24 ) ( 952 1112 25 ) ( 952 1113 24 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 148 +{ +( 944 1304 16 ) ( 944 1305 16 ) ( 944 1304 17 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1288 16 ) ( 936 1288 17 ) ( 937 1288 16 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1304 16 ) ( 937 1304 16 ) ( 936 1305 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1336 112 ) ( 952 1337 112 ) ( 953 1336 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1408 24 ) ( 953 1408 24 ) ( 952 1408 25 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1336 24 ) ( 952 1336 25 ) ( 952 1337 24 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 149 +{ +( 944 1272 16 ) ( 944 1273 16 ) ( 944 1272 17 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1240 16 ) ( 936 1240 17 ) ( 937 1240 16 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1272 96 ) ( 937 1272 96 ) ( 936 1273 96 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1304 112 ) ( 952 1305 112 ) ( 953 1304 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1288 24 ) ( 953 1288 24 ) ( 952 1288 25 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1304 24 ) ( 952 1304 25 ) ( 952 1305 24 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 150 +{ +( 944 1224 16 ) ( 944 1225 16 ) ( 944 1224 17 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1216 16 ) ( 936 1216 17 ) ( 937 1216 16 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1224 16 ) ( 937 1224 16 ) ( 936 1225 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1256 112 ) ( 952 1257 112 ) ( 953 1256 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1240 24 ) ( 953 1240 24 ) ( 952 1240 25 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1256 24 ) ( 952 1256 25 ) ( 952 1257 24 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 151 +{ +( 952 1600 24 ) ( 952 1601 24 ) ( 952 1600 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1600 24 ) ( 952 1600 25 ) ( 953 1600 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1600 16 ) ( 953 1600 16 ) ( 952 1601 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1608 112 ) ( 968 1609 112 ) ( 969 1608 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1608 32 ) ( 969 1608 32 ) ( 968 1608 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1608 32 ) ( 1304 1608 33 ) ( 1304 1609 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 152 +{ +( 944 1496 16 ) ( 944 1497 16 ) ( 944 1496 17 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1480 16 ) ( 936 1480 17 ) ( 937 1480 16 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1496 16 ) ( 937 1496 16 ) ( 936 1497 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1528 112 ) ( 952 1529 112 ) ( 953 1528 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1600 24 ) ( 953 1600 24 ) ( 952 1600 25 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1528 24 ) ( 952 1528 25 ) ( 952 1529 24 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 153 +{ +( 944 1464 16 ) ( 944 1465 16 ) ( 944 1464 17 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1432 16 ) ( 936 1432 17 ) ( 937 1432 16 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1464 96 ) ( 937 1464 96 ) ( 936 1465 96 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1496 112 ) ( 952 1497 112 ) ( 953 1496 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1480 24 ) ( 953 1480 24 ) ( 952 1480 25 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1496 24 ) ( 952 1496 25 ) ( 952 1497 24 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 154 +{ +( 944 1416 16 ) ( 944 1417 16 ) ( 944 1416 17 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1408 16 ) ( 936 1408 17 ) ( 937 1408 16 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1416 16 ) ( 937 1416 16 ) ( 936 1417 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1448 112 ) ( 952 1449 112 ) ( 953 1448 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1432 24 ) ( 953 1432 24 ) ( 952 1432 25 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1448 24 ) ( 952 1448 25 ) ( 952 1449 24 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 155 +{ +( 952 1416 8 ) ( 952 1417 8 ) ( 952 1416 9 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1416 8 ) ( 952 1416 9 ) ( 953 1416 8 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1416 8 ) ( 953 1416 8 ) ( 952 1417 8 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1464 16 ) ( 968 1465 16 ) ( 969 1464 16 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1600 16 ) ( 969 1600 16 ) ( 968 1600 17 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1464 16 ) ( 1304 1464 17 ) ( 1304 1465 16 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 156 +{ +( 952 1792 24 ) ( 952 1793 24 ) ( 952 1792 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1792 24 ) ( 952 1792 25 ) ( 953 1792 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1792 16 ) ( 953 1792 16 ) ( 952 1793 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1800 112 ) ( 968 1801 112 ) ( 969 1800 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1800 32 ) ( 969 1800 32 ) ( 968 1800 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1800 32 ) ( 1304 1800 33 ) ( 1304 1801 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 157 +{ +( 944 1688 16 ) ( 944 1689 16 ) ( 944 1688 17 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1672 16 ) ( 936 1672 17 ) ( 937 1672 16 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1688 16 ) ( 937 1688 16 ) ( 936 1689 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1720 112 ) ( 952 1721 112 ) ( 953 1720 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1800 24 ) ( 953 1800 24 ) ( 952 1800 25 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1720 24 ) ( 952 1720 25 ) ( 952 1721 24 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 158 +{ +( 944 1656 16 ) ( 944 1657 16 ) ( 944 1656 17 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1624 16 ) ( 936 1624 17 ) ( 937 1624 16 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1656 96 ) ( 937 1656 96 ) ( 936 1657 96 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1688 112 ) ( 952 1689 112 ) ( 953 1688 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1672 24 ) ( 953 1672 24 ) ( 952 1672 25 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1688 24 ) ( 952 1688 25 ) ( 952 1689 24 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 159 +{ +( 944 1608 16 ) ( 944 1609 16 ) ( 944 1608 17 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1600 16 ) ( 936 1600 17 ) ( 937 1600 16 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1608 16 ) ( 937 1608 16 ) ( 936 1609 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1640 112 ) ( 952 1641 112 ) ( 953 1640 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1624 24 ) ( 953 1624 24 ) ( 952 1624 25 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1640 24 ) ( 952 1640 25 ) ( 952 1641 24 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 160 +{ +( 952 1608 8 ) ( 952 1609 8 ) ( 952 1608 9 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1608 8 ) ( 952 1608 9 ) ( 953 1608 8 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1608 8 ) ( 953 1608 8 ) ( 952 1609 8 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1656 16 ) ( 968 1657 16 ) ( 969 1656 16 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1792 16 ) ( 969 1792 16 ) ( 968 1792 17 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1656 16 ) ( 1304 1656 17 ) ( 1304 1657 16 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 161 +{ +( 952 1792 136 ) ( 952 1793 136 ) ( 952 1792 137 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1792 136 ) ( 952 1792 137 ) ( 953 1792 136 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1792 128 ) ( 953 1792 128 ) ( 952 1793 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1800 224 ) ( 968 1801 224 ) ( 969 1800 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1800 144 ) ( 969 1800 144 ) ( 968 1800 145 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1800 144 ) ( 1304 1800 145 ) ( 1304 1801 144 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 162 +{ +( 952 1600 136 ) ( 952 1601 136 ) ( 952 1600 137 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1600 136 ) ( 952 1600 137 ) ( 953 1600 136 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1600 128 ) ( 953 1600 128 ) ( 952 1601 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1608 224 ) ( 968 1609 224 ) ( 969 1608 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1608 144 ) ( 969 1608 144 ) ( 968 1608 145 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1608 144 ) ( 1304 1608 145 ) ( 1304 1609 144 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 163 +{ +( 952 1408 136 ) ( 952 1409 136 ) ( 952 1408 137 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1408 136 ) ( 952 1408 137 ) ( 953 1408 136 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1408 128 ) ( 953 1408 128 ) ( 952 1409 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1416 224 ) ( 968 1417 224 ) ( 969 1416 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1416 144 ) ( 969 1416 144 ) ( 968 1416 145 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1416 144 ) ( 1304 1416 145 ) ( 1304 1417 144 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 164 +{ +( 944 1496 128 ) ( 944 1497 128 ) ( 944 1496 129 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1480 128 ) ( 936 1480 129 ) ( 937 1480 128 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1496 128 ) ( 937 1496 128 ) ( 936 1497 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1528 224 ) ( 952 1529 224 ) ( 953 1528 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1600 136 ) ( 953 1600 136 ) ( 952 1600 137 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1528 136 ) ( 952 1528 137 ) ( 952 1529 136 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 165 +{ +( 944 1656 128 ) ( 944 1657 128 ) ( 944 1656 129 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1624 128 ) ( 936 1624 129 ) ( 937 1624 128 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1656 208 ) ( 937 1656 208 ) ( 936 1657 208 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1688 224 ) ( 952 1689 224 ) ( 953 1688 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1672 136 ) ( 953 1672 136 ) ( 952 1672 137 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1688 136 ) ( 952 1688 137 ) ( 952 1689 136 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 166 +{ +( 944 1688 128 ) ( 944 1689 128 ) ( 944 1688 129 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1672 128 ) ( 936 1672 129 ) ( 937 1672 128 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1688 128 ) ( 937 1688 128 ) ( 936 1689 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1720 224 ) ( 952 1721 224 ) ( 953 1720 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1800 136 ) ( 953 1800 136 ) ( 952 1800 137 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1720 136 ) ( 952 1720 137 ) ( 952 1721 136 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 167 +{ +( 944 1608 128 ) ( 944 1609 128 ) ( 944 1608 129 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1600 128 ) ( 936 1600 129 ) ( 937 1600 128 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1608 128 ) ( 937 1608 128 ) ( 936 1609 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1640 224 ) ( 952 1641 224 ) ( 953 1640 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1624 136 ) ( 953 1624 136 ) ( 952 1624 137 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1640 136 ) ( 952 1640 137 ) ( 952 1641 136 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 168 +{ +( 944 1464 128 ) ( 944 1465 128 ) ( 944 1464 129 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1432 128 ) ( 936 1432 129 ) ( 937 1432 128 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1464 208 ) ( 937 1464 208 ) ( 936 1465 208 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1496 224 ) ( 952 1497 224 ) ( 953 1496 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1480 136 ) ( 953 1480 136 ) ( 952 1480 137 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1496 136 ) ( 952 1496 137 ) ( 952 1497 136 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 169 +{ +( 944 1416 128 ) ( 944 1417 128 ) ( 944 1416 129 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1408 128 ) ( 936 1408 129 ) ( 937 1408 128 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1416 128 ) ( 937 1416 128 ) ( 936 1417 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1448 224 ) ( 952 1449 224 ) ( 953 1448 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1432 136 ) ( 953 1432 136 ) ( 952 1432 137 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1448 136 ) ( 952 1448 137 ) ( 952 1449 136 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 170 +{ +( 944 1304 128 ) ( 944 1305 128 ) ( 944 1304 129 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1288 128 ) ( 936 1288 129 ) ( 937 1288 128 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1304 128 ) ( 937 1304 128 ) ( 936 1305 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1336 224 ) ( 952 1337 224 ) ( 953 1336 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1408 136 ) ( 953 1408 136 ) ( 952 1408 137 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1336 136 ) ( 952 1336 137 ) ( 952 1337 136 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 171 +{ +( 944 1272 128 ) ( 944 1273 128 ) ( 944 1272 129 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1240 128 ) ( 936 1240 129 ) ( 937 1240 128 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1272 208 ) ( 937 1272 208 ) ( 936 1273 208 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1304 224 ) ( 952 1305 224 ) ( 953 1304 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1288 136 ) ( 953 1288 136 ) ( 952 1288 137 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1304 136 ) ( 952 1304 137 ) ( 952 1305 136 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 172 +{ +( 944 1224 128 ) ( 944 1225 128 ) ( 944 1224 129 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1216 128 ) ( 936 1216 129 ) ( 937 1216 128 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1224 128 ) ( 937 1224 128 ) ( 936 1225 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1256 224 ) ( 952 1257 224 ) ( 953 1256 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1240 136 ) ( 953 1240 136 ) ( 952 1240 137 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1256 136 ) ( 952 1256 137 ) ( 952 1257 136 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 173 +{ +( 952 1216 136 ) ( 952 1217 136 ) ( 952 1216 137 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1216 136 ) ( 952 1216 137 ) ( 953 1216 136 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1216 128 ) ( 953 1216 128 ) ( 952 1217 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1224 224 ) ( 968 1225 224 ) ( 969 1224 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1224 144 ) ( 969 1224 144 ) ( 968 1224 145 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1224 144 ) ( 1304 1224 145 ) ( 1304 1225 144 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 174 +{ +( 952 1024 136 ) ( 952 1025 136 ) ( 952 1024 137 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1024 136 ) ( 952 1024 137 ) ( 953 1024 136 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1024 128 ) ( 953 1024 128 ) ( 952 1025 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1032 224 ) ( 968 1033 224 ) ( 969 1032 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 1032 144 ) ( 969 1032 144 ) ( 968 1032 145 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1032 144 ) ( 1304 1032 145 ) ( 1304 1033 144 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 175 +{ +( 944 1112 128 ) ( 944 1113 128 ) ( 944 1112 129 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1096 128 ) ( 936 1096 129 ) ( 937 1096 128 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1112 128 ) ( 937 1112 128 ) ( 936 1113 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1144 224 ) ( 952 1145 224 ) ( 953 1144 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1216 136 ) ( 953 1216 136 ) ( 952 1216 137 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1144 136 ) ( 952 1144 137 ) ( 952 1145 136 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 176 +{ +( 944 1080 128 ) ( 944 1081 128 ) ( 944 1080 129 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1048 128 ) ( 936 1048 129 ) ( 937 1048 128 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1080 208 ) ( 937 1080 208 ) ( 936 1081 208 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1112 224 ) ( 952 1113 224 ) ( 953 1112 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1096 136 ) ( 953 1096 136 ) ( 952 1096 137 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1112 136 ) ( 952 1112 137 ) ( 952 1113 136 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 177 +{ +( 944 1032 128 ) ( 944 1033 128 ) ( 944 1032 129 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1024 128 ) ( 936 1024 129 ) ( 937 1024 128 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1032 128 ) ( 937 1032 128 ) ( 936 1033 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1064 224 ) ( 952 1065 224 ) ( 953 1064 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1048 136 ) ( 953 1048 136 ) ( 952 1048 137 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 1064 136 ) ( 952 1064 137 ) ( 952 1065 136 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 178 +{ +( 944 1032 120 ) ( 944 1033 120 ) ( 944 1032 121 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1024 120 ) ( 936 1024 121 ) ( 937 1024 120 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1032 112 ) ( 937 1032 112 ) ( 936 1033 112 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1064 128 ) ( 952 1065 128 ) ( 953 1064 128 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1800 128 ) ( 953 1800 128 ) ( 952 1800 129 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1064 128 ) ( 1312 1064 129 ) ( 1312 1065 128 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 179 +{ +( 848 1032 120 ) ( 848 1033 120 ) ( 848 1032 121 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 568 1024 120 ) ( 568 1024 121 ) ( 569 1024 120 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 568 1032 112 ) ( 569 1032 112 ) ( 568 1033 112 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 584 1064 128 ) ( 584 1065 128 ) ( 585 1064 128 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 584 1800 128 ) ( 585 1800 128 ) ( 584 1800 129 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 944 1064 128 ) ( 944 1064 129 ) ( 944 1065 128 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 180 +{ +( 848 256 120 ) ( 848 257 120 ) ( 848 256 121 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 800 120 ) ( 936 800 121 ) ( 937 800 120 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 256 112 ) ( 937 256 112 ) ( 936 257 112 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 288 128 ) ( 952 289 128 ) ( 953 288 128 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1024 128 ) ( 953 1024 128 ) ( 952 1024 129 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 288 128 ) ( 1312 288 129 ) ( 1312 289 128 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 181 +{ +( 944 1032 232 ) ( 944 1033 232 ) ( 944 1032 233 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1024 232 ) ( 936 1024 233 ) ( 937 1024 232 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 1032 224 ) ( 937 1032 224 ) ( 936 1033 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1064 240 ) ( 952 1065 240 ) ( 953 1064 240 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 1800 240 ) ( 953 1800 240 ) ( 952 1800 241 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1064 240 ) ( 1312 1064 241 ) ( 1312 1065 240 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 182 +{ +( 952 800 24 ) ( 952 801 24 ) ( 952 800 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 800 24 ) ( 952 800 25 ) ( 953 800 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 952 800 16 ) ( 953 800 16 ) ( 952 801 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 808 112 ) ( 968 809 112 ) ( 969 808 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 968 808 32 ) ( 969 808 32 ) ( 968 808 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 808 32 ) ( 1312 808 33 ) ( 1312 809 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 183 +{ +( 1304 808 24 ) ( 1304 809 24 ) ( 1304 808 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 808 24 ) ( 960 808 25 ) ( 961 808 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 808 16 ) ( 961 808 16 ) ( 960 809 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 816 112 ) ( 976 817 112 ) ( 977 816 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1024 32 ) ( 977 1024 32 ) ( 976 1024 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 816 32 ) ( 1312 816 33 ) ( 1312 817 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 184 +{ +( 1304 1024 24 ) ( 1304 1025 24 ) ( 1304 1024 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1024 24 ) ( 960 1024 25 ) ( 961 1024 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1024 16 ) ( 961 1024 16 ) ( 960 1025 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1032 112 ) ( 976 1033 112 ) ( 977 1032 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1040 32 ) ( 977 1040 32 ) ( 976 1040 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1032 32 ) ( 1312 1032 33 ) ( 1312 1033 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 185 +{ +( 1304 1200 24 ) ( 1304 1201 24 ) ( 1304 1200 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1200 24 ) ( 960 1200 25 ) ( 961 1200 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1200 16 ) ( 961 1200 16 ) ( 960 1201 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1208 112 ) ( 976 1209 112 ) ( 977 1208 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1216 32 ) ( 977 1216 32 ) ( 976 1216 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1208 32 ) ( 1312 1208 33 ) ( 1312 1209 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 186 +{ +( 1304 1024 96 ) ( 1304 1025 96 ) ( 1304 1024 97 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1040 96 ) ( 960 1040 97 ) ( 961 1040 96 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1024 96 ) ( 961 1024 96 ) ( 960 1025 96 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1032 112 ) ( 976 1033 112 ) ( 977 1032 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1200 104 ) ( 977 1200 104 ) ( 976 1200 105 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1032 104 ) ( 1312 1032 105 ) ( 1312 1033 104 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 187 +{ +( 1304 1024 48 ) ( 1304 1025 48 ) ( 1304 1024 49 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1112 48 ) ( 960 1112 49 ) ( 961 1112 48 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1024 40 ) ( 961 1024 40 ) ( 960 1025 40 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1032 96 ) ( 976 1033 96 ) ( 977 1032 96 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1128 56 ) ( 977 1128 56 ) ( 976 1128 57 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1032 56 ) ( 1312 1032 57 ) ( 1312 1033 56 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 188 +{ +( 1304 1392 24 ) ( 1304 1393 24 ) ( 1304 1392 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1392 24 ) ( 960 1392 25 ) ( 961 1392 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1392 16 ) ( 961 1392 16 ) ( 960 1393 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1400 112 ) ( 976 1401 112 ) ( 977 1400 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1408 32 ) ( 977 1408 32 ) ( 976 1408 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1400 32 ) ( 1312 1400 33 ) ( 1312 1401 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 189 +{ +( 1304 1216 96 ) ( 1304 1217 96 ) ( 1304 1216 97 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1232 96 ) ( 960 1232 97 ) ( 961 1232 96 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1216 96 ) ( 961 1216 96 ) ( 960 1217 96 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1224 112 ) ( 976 1225 112 ) ( 977 1224 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1392 104 ) ( 977 1392 104 ) ( 976 1392 105 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1224 104 ) ( 1312 1224 105 ) ( 1312 1225 104 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 190 +{ +( 1304 1216 48 ) ( 1304 1217 48 ) ( 1304 1216 49 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1304 48 ) ( 960 1304 49 ) ( 961 1304 48 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1216 40 ) ( 961 1216 40 ) ( 960 1217 40 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1224 96 ) ( 976 1225 96 ) ( 977 1224 96 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1320 56 ) ( 977 1320 56 ) ( 976 1320 57 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1224 56 ) ( 1312 1224 57 ) ( 1312 1225 56 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 191 +{ +( 1304 1216 24 ) ( 1304 1217 24 ) ( 1304 1216 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1216 24 ) ( 960 1216 25 ) ( 961 1216 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1216 16 ) ( 961 1216 16 ) ( 960 1217 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1224 112 ) ( 976 1225 112 ) ( 977 1224 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1232 32 ) ( 977 1232 32 ) ( 976 1232 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1224 32 ) ( 1312 1224 33 ) ( 1312 1225 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 192 +{ +( 1304 1216 24 ) ( 1304 1217 24 ) ( 1304 1216 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1232 24 ) ( 960 1232 25 ) ( 961 1232 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1216 16 ) ( 961 1216 16 ) ( 960 1217 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1224 40 ) ( 976 1225 40 ) ( 977 1224 40 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1392 32 ) ( 977 1392 32 ) ( 976 1392 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1224 32 ) ( 1312 1224 33 ) ( 1312 1225 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 193 +{ +( 1304 1200 136 ) ( 1304 1201 136 ) ( 1304 1200 137 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1200 136 ) ( 960 1200 137 ) ( 961 1200 136 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1200 128 ) ( 961 1200 128 ) ( 960 1201 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1208 224 ) ( 976 1209 224 ) ( 977 1208 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1216 144 ) ( 977 1216 144 ) ( 976 1216 145 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1208 144 ) ( 1312 1208 145 ) ( 1312 1209 144 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 194 +{ +( 1304 1216 136 ) ( 1304 1217 136 ) ( 1304 1216 137 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1216 136 ) ( 960 1216 137 ) ( 961 1216 136 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1216 128 ) ( 961 1216 128 ) ( 960 1217 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1224 224 ) ( 976 1225 224 ) ( 977 1224 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1232 144 ) ( 977 1232 144 ) ( 976 1232 145 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1224 144 ) ( 1312 1224 145 ) ( 1312 1225 144 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 195 +{ +( 1304 1216 208 ) ( 1304 1217 208 ) ( 1304 1216 209 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1232 208 ) ( 960 1232 209 ) ( 961 1232 208 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1216 208 ) ( 961 1216 208 ) ( 960 1217 208 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1224 224 ) ( 976 1225 224 ) ( 977 1224 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1392 216 ) ( 977 1392 216 ) ( 976 1392 217 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1224 216 ) ( 1312 1224 217 ) ( 1312 1225 216 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 196 +{ +( 1304 1392 136 ) ( 1304 1393 136 ) ( 1304 1392 137 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1392 136 ) ( 960 1392 137 ) ( 961 1392 136 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1392 128 ) ( 961 1392 128 ) ( 960 1393 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1400 224 ) ( 976 1401 224 ) ( 977 1400 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1408 144 ) ( 977 1408 144 ) ( 976 1408 145 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1400 144 ) ( 1312 1400 145 ) ( 1312 1401 144 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 197 +{ +( 1304 1216 136 ) ( 1304 1217 136 ) ( 1304 1216 137 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1232 136 ) ( 960 1232 137 ) ( 961 1232 136 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1216 128 ) ( 961 1216 128 ) ( 960 1217 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1224 152 ) ( 976 1225 152 ) ( 977 1224 152 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1392 144 ) ( 977 1392 144 ) ( 976 1392 145 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1224 144 ) ( 1312 1224 145 ) ( 1312 1225 144 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 198 +{ +( 1304 1216 160 ) ( 1304 1217 160 ) ( 1304 1216 161 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1304 160 ) ( 960 1304 161 ) ( 961 1304 160 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1216 152 ) ( 961 1216 152 ) ( 960 1217 152 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1224 208 ) ( 976 1225 208 ) ( 977 1224 208 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1320 168 ) ( 977 1320 168 ) ( 976 1320 169 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1224 168 ) ( 1312 1224 169 ) ( 1312 1225 168 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 199 +{ +( 1304 1024 136 ) ( 1304 1025 136 ) ( 1304 1024 137 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1040 136 ) ( 960 1040 137 ) ( 961 1040 136 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1024 128 ) ( 961 1024 128 ) ( 960 1025 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1032 152 ) ( 976 1033 152 ) ( 977 1032 152 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1200 144 ) ( 977 1200 144 ) ( 976 1200 145 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1032 144 ) ( 1312 1032 145 ) ( 1312 1033 144 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 200 +{ +( 1304 1024 160 ) ( 1304 1025 160 ) ( 1304 1024 161 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1112 160 ) ( 960 1112 161 ) ( 961 1112 160 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1024 152 ) ( 961 1024 152 ) ( 960 1025 152 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1032 208 ) ( 976 1033 208 ) ( 977 1032 208 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1128 168 ) ( 977 1128 168 ) ( 976 1128 169 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1032 168 ) ( 1312 1032 169 ) ( 1312 1033 168 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 201 +{ +( 1304 1024 208 ) ( 1304 1025 208 ) ( 1304 1024 209 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1040 208 ) ( 960 1040 209 ) ( 961 1040 208 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1024 208 ) ( 961 1024 208 ) ( 960 1025 208 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1032 224 ) ( 976 1033 224 ) ( 977 1032 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1200 216 ) ( 977 1200 216 ) ( 976 1200 217 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1032 216 ) ( 1312 1032 217 ) ( 1312 1033 216 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 202 +{ +( 1304 1024 136 ) ( 1304 1025 136 ) ( 1304 1024 137 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1024 136 ) ( 960 1024 137 ) ( 961 1024 136 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1024 128 ) ( 961 1024 128 ) ( 960 1025 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1032 224 ) ( 976 1033 224 ) ( 977 1032 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1040 144 ) ( 977 1040 144 ) ( 976 1040 145 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1032 144 ) ( 1312 1032 145 ) ( 1312 1033 144 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 203 +{ +( 1304 1584 136 ) ( 1304 1585 136 ) ( 1304 1584 137 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1584 136 ) ( 960 1584 137 ) ( 961 1584 136 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1584 128 ) ( 961 1584 128 ) ( 960 1585 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1592 224 ) ( 976 1593 224 ) ( 977 1592 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1600 144 ) ( 977 1600 144 ) ( 976 1600 145 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1592 144 ) ( 1312 1592 145 ) ( 1312 1593 144 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 204 +{ +( 1304 1600 136 ) ( 1304 1601 136 ) ( 1304 1600 137 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1600 136 ) ( 960 1600 137 ) ( 961 1600 136 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1600 128 ) ( 961 1600 128 ) ( 960 1601 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1608 224 ) ( 976 1609 224 ) ( 977 1608 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1616 144 ) ( 977 1616 144 ) ( 976 1616 145 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1608 144 ) ( 1312 1608 145 ) ( 1312 1609 144 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 205 +{ +( 1304 1600 208 ) ( 1304 1601 208 ) ( 1304 1600 209 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1616 208 ) ( 960 1616 209 ) ( 961 1616 208 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1600 208 ) ( 961 1600 208 ) ( 960 1601 208 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1608 224 ) ( 976 1609 224 ) ( 977 1608 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1776 216 ) ( 977 1776 216 ) ( 976 1776 217 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1608 216 ) ( 1312 1608 217 ) ( 1312 1609 216 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 206 +{ +( 1304 1776 136 ) ( 1304 1777 136 ) ( 1304 1776 137 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1776 136 ) ( 960 1776 137 ) ( 961 1776 136 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1776 128 ) ( 961 1776 128 ) ( 960 1777 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1784 224 ) ( 976 1785 224 ) ( 977 1784 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1800 144 ) ( 977 1800 144 ) ( 976 1800 145 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1784 144 ) ( 1312 1784 145 ) ( 1312 1785 144 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 207 +{ +( 1304 1600 136 ) ( 1304 1601 136 ) ( 1304 1600 137 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1616 136 ) ( 960 1616 137 ) ( 961 1616 136 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1600 128 ) ( 961 1600 128 ) ( 960 1601 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1608 152 ) ( 976 1609 152 ) ( 977 1608 152 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1776 144 ) ( 977 1776 144 ) ( 976 1776 145 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1608 144 ) ( 1312 1608 145 ) ( 1312 1609 144 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 208 +{ +( 1304 1600 160 ) ( 1304 1601 160 ) ( 1304 1600 161 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1688 160 ) ( 960 1688 161 ) ( 961 1688 160 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1600 152 ) ( 961 1600 152 ) ( 960 1601 152 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1608 208 ) ( 976 1609 208 ) ( 977 1608 208 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1704 168 ) ( 977 1704 168 ) ( 976 1704 169 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1608 168 ) ( 1312 1608 169 ) ( 1312 1609 168 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 209 +{ +( 1304 1408 136 ) ( 1304 1409 136 ) ( 1304 1408 137 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1424 136 ) ( 960 1424 137 ) ( 961 1424 136 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1408 128 ) ( 961 1408 128 ) ( 960 1409 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1416 152 ) ( 976 1417 152 ) ( 977 1416 152 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1584 144 ) ( 977 1584 144 ) ( 976 1584 145 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1416 144 ) ( 1312 1416 145 ) ( 1312 1417 144 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 210 +{ +( 1304 1408 160 ) ( 1304 1409 160 ) ( 1304 1408 161 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1496 160 ) ( 960 1496 161 ) ( 961 1496 160 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1408 152 ) ( 961 1408 152 ) ( 960 1409 152 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1416 208 ) ( 976 1417 208 ) ( 977 1416 208 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1512 168 ) ( 977 1512 168 ) ( 976 1512 169 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1416 168 ) ( 1312 1416 169 ) ( 1312 1417 168 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 211 +{ +( 1304 1408 208 ) ( 1304 1409 208 ) ( 1304 1408 209 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1424 208 ) ( 960 1424 209 ) ( 961 1424 208 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1408 208 ) ( 961 1408 208 ) ( 960 1409 208 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1416 224 ) ( 976 1417 224 ) ( 977 1416 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1584 216 ) ( 977 1584 216 ) ( 976 1584 217 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1416 216 ) ( 1312 1416 217 ) ( 1312 1417 216 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 212 +{ +( 1304 1408 136 ) ( 1304 1409 136 ) ( 1304 1408 137 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1408 136 ) ( 960 1408 137 ) ( 961 1408 136 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1408 128 ) ( 961 1408 128 ) ( 960 1409 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1416 224 ) ( 976 1417 224 ) ( 977 1416 224 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1424 144 ) ( 977 1424 144 ) ( 976 1424 145 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1416 144 ) ( 1312 1416 145 ) ( 1312 1417 144 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 213 +{ +( 1304 1408 24 ) ( 1304 1409 24 ) ( 1304 1408 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1424 24 ) ( 960 1424 25 ) ( 961 1424 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1408 16 ) ( 961 1408 16 ) ( 960 1409 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1416 40 ) ( 976 1417 40 ) ( 977 1416 40 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1584 32 ) ( 977 1584 32 ) ( 976 1584 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1416 32 ) ( 1312 1416 33 ) ( 1312 1417 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 214 +{ +( 1304 1408 24 ) ( 1304 1409 24 ) ( 1304 1408 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1408 24 ) ( 960 1408 25 ) ( 961 1408 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1408 16 ) ( 961 1408 16 ) ( 960 1409 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1416 112 ) ( 976 1417 112 ) ( 977 1416 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1424 32 ) ( 977 1424 32 ) ( 976 1424 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1416 32 ) ( 1312 1416 33 ) ( 1312 1417 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 215 +{ +( 1304 1408 96 ) ( 1304 1409 96 ) ( 1304 1408 97 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1424 96 ) ( 960 1424 97 ) ( 961 1424 96 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1408 96 ) ( 961 1408 96 ) ( 960 1409 96 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1416 112 ) ( 976 1417 112 ) ( 977 1416 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1584 104 ) ( 977 1584 104 ) ( 976 1584 105 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1416 104 ) ( 1312 1416 105 ) ( 1312 1417 104 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 216 +{ +( 1304 1408 48 ) ( 1304 1409 48 ) ( 1304 1408 49 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1496 48 ) ( 960 1496 49 ) ( 961 1496 48 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1408 40 ) ( 961 1408 40 ) ( 960 1409 40 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1416 96 ) ( 976 1417 96 ) ( 977 1416 96 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1512 56 ) ( 977 1512 56 ) ( 976 1512 57 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1416 56 ) ( 1312 1416 57 ) ( 1312 1417 56 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 217 +{ +( 1304 1584 24 ) ( 1304 1585 24 ) ( 1304 1584 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1584 24 ) ( 960 1584 25 ) ( 961 1584 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1584 16 ) ( 961 1584 16 ) ( 960 1585 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1592 112 ) ( 976 1593 112 ) ( 977 1592 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1600 32 ) ( 977 1600 32 ) ( 976 1600 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1592 32 ) ( 1312 1592 33 ) ( 1312 1593 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 218 +{ +( 1304 1600 24 ) ( 1304 1601 24 ) ( 1304 1600 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1600 24 ) ( 960 1600 25 ) ( 961 1600 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1600 16 ) ( 961 1600 16 ) ( 960 1601 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1608 112 ) ( 976 1609 112 ) ( 977 1608 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1616 32 ) ( 977 1616 32 ) ( 976 1616 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1608 32 ) ( 1312 1608 33 ) ( 1312 1609 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 219 +{ +( 1304 1600 96 ) ( 1304 1601 96 ) ( 1304 1600 97 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1616 96 ) ( 960 1616 97 ) ( 961 1616 96 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1600 96 ) ( 961 1600 96 ) ( 960 1601 96 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1608 112 ) ( 976 1609 112 ) ( 977 1608 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1776 104 ) ( 977 1776 104 ) ( 976 1776 105 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1608 104 ) ( 1312 1608 105 ) ( 1312 1609 104 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 220 +{ +( 1304 1600 48 ) ( 1304 1601 48 ) ( 1304 1600 49 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1688 48 ) ( 960 1688 49 ) ( 961 1688 48 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1600 40 ) ( 961 1600 40 ) ( 960 1601 40 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1608 96 ) ( 976 1609 96 ) ( 977 1608 96 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1704 56 ) ( 977 1704 56 ) ( 976 1704 57 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1608 56 ) ( 1312 1608 57 ) ( 1312 1609 56 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 221 +{ +( 1304 1600 24 ) ( 1304 1601 24 ) ( 1304 1600 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1616 24 ) ( 960 1616 25 ) ( 961 1616 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1600 16 ) ( 961 1600 16 ) ( 960 1601 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1608 40 ) ( 976 1609 40 ) ( 977 1608 40 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1776 32 ) ( 977 1776 32 ) ( 976 1776 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1608 32 ) ( 1312 1608 33 ) ( 1312 1609 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 222 +{ +( 1304 1776 24 ) ( 1304 1777 24 ) ( 1304 1776 25 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1776 24 ) ( 960 1776 25 ) ( 961 1776 24 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 960 1776 16 ) ( 961 1776 16 ) ( 960 1777 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1784 112 ) ( 976 1785 112 ) ( 977 1784 112 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 976 1800 32 ) ( 977 1800 32 ) ( 976 1800 33 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1784 32 ) ( 1312 1784 33 ) ( 1312 1785 32 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 223 +{ +( 1088 32 120 ) ( 1088 33 120 ) ( 1088 32 121 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 720 120 ) ( 936 720 121 ) ( 937 720 120 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 936 32 112 ) ( 937 32 112 ) ( 936 33 112 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 64 128 ) ( 952 65 128 ) ( 953 64 128 ) grid_taupe [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 952 800 128 ) ( 953 800 128 ) ( 952 800 129 ) grid_taupe [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 64 128 ) ( 1312 64 129 ) ( 1312 65 128 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 224 +{ +( 896 800 16 ) ( 1088 800 128 ) ( 1088 720 128 ) grid_taupe [ 1 0 0 128 ] [ 0 -1 0 0 ] 180 0.25 0.25 +( 896 720 16 ) ( 1088 720 128 ) ( 1088 720 112 ) grid_taupe [ 1 0 0 128 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 920 800 16 ) ( 896 800 16 ) ( 896 720 16 ) grid_taupe [ 0 1.0000000000000002 0 0 ] [ 1.0000000000000002 0 0 -64 ] 270 0.25 0.25 +( 1088 800 112 ) ( 1088 800 128 ) ( 896 800 16 ) grid_taupe [ 1 0 0 128 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 1088 720 112 ) ( 1088 800 112 ) ( 920 800 16 ) grid_taupe [ 1 0 0 128 ] [ 0 -1 0 0 ] 180 0.25 0.25 +( 1088 720 128 ) ( 1088 800 128 ) ( 1088 800 112 ) grid_taupe [ 0 1 0 0 ] [ 0 0 -1 0 ] 180 0.25 0.25 +} +// brush 225 +{ +( 992 992 128 ) ( 992 993 128 ) ( 992 992 129 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 984 1000 128 ) ( 984 1000 129 ) ( 985 1000 128 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 270 0.25 0.25 +( 984 992 128 ) ( 985 992 128 ) ( 984 993 128 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 1024 1024 192 ) ( 1024 1025 192 ) ( 1025 1024 192 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 270 0.25 0.25 +( 1024 1024 136 ) ( 1025 1024 136 ) ( 1024 1024 137 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1024 1024 136 ) ( 1024 1024 137 ) ( 1024 1025 136 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 226 +{ +( 1040 992 128 ) ( 1040 993 128 ) ( 1040 992 129 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1032 1000 128 ) ( 1032 1000 129 ) ( 1033 1000 128 ) redplaid [ 1 0 0 -192 ] [ 0 0 -1 0 ] 270 0.25 0.25 +( 1032 992 128 ) ( 1033 992 128 ) ( 1032 993 128 ) redplaid [ 1 0 0 -192 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 1072 1024 192 ) ( 1072 1025 192 ) ( 1073 1024 192 ) redplaid [ 1 0 0 -192 ] [ 0 -1 0 0 ] 270 0.25 0.25 +( 1072 1024 136 ) ( 1073 1024 136 ) ( 1072 1024 137 ) redplaid [ 1 0 0 -192 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1072 1024 136 ) ( 1072 1024 137 ) ( 1072 1025 136 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 227 +{ +( 1088 992 128 ) ( 1088 993 128 ) ( 1088 992 129 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1080 1000 128 ) ( 1080 1000 129 ) ( 1081 1000 128 ) redplaid [ 1 0 0 -128 ] [ 0 0 -1 0 ] 270 0.25 0.25 +( 1080 992 128 ) ( 1081 992 128 ) ( 1080 993 128 ) redplaid [ 1 0 0 -128 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 1120 1024 192 ) ( 1120 1025 192 ) ( 1121 1024 192 ) redplaid [ 1 0 0 -128 ] [ 0 -1 0 0 ] 270 0.25 0.25 +( 1120 1024 136 ) ( 1121 1024 136 ) ( 1120 1024 137 ) redplaid [ 1 0 0 -128 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1120 1024 136 ) ( 1120 1024 137 ) ( 1120 1025 136 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 228 +{ +( 848 800 128 ) ( 848 801 128 ) ( 848 800 129 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 848 800 128 ) ( 848 800 129 ) ( 849 800 128 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 848 800 128 ) ( 849 800 128 ) ( 848 801 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 856 816 160 ) ( 856 817 160 ) ( 857 816 160 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 856 1800 136 ) ( 857 1800 136 ) ( 856 1800 137 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 856 816 136 ) ( 856 816 137 ) ( 856 817 136 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 229 +{ +( 856 1792 128 ) ( 856 1793 128 ) ( 856 1792 129 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 856 1792 128 ) ( 856 1792 129 ) ( 857 1792 128 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 856 1792 128 ) ( 857 1792 128 ) ( 856 1793 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 904 1800 160 ) ( 904 1801 160 ) ( 905 1800 160 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 904 1800 136 ) ( 905 1800 136 ) ( 904 1800 137 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 944 1800 136 ) ( 944 1800 137 ) ( 944 1801 136 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 230 +{ +( 856 800 128 ) ( 856 801 128 ) ( 856 800 129 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 848 800 128 ) ( 848 800 129 ) ( 849 800 128 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 848 800 128 ) ( 849 800 128 ) ( 848 801 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 1096 808 160 ) ( 1096 809 160 ) ( 1097 808 160 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 1096 808 136 ) ( 1097 808 136 ) ( 1096 808 137 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1096 808 136 ) ( 1096 808 137 ) ( 1096 809 136 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 231 +{ +( 1088 720 128 ) ( 1088 721 128 ) ( 1088 720 129 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1064 720 128 ) ( 1064 720 129 ) ( 1065 720 128 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1064 720 128 ) ( 1065 720 128 ) ( 1064 721 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 1312 728 160 ) ( 1312 729 160 ) ( 1313 728 160 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 1312 728 136 ) ( 1313 728 136 ) ( 1312 728 137 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 728 136 ) ( 1312 728 137 ) ( 1312 729 136 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 232 +{ +( 1304 1000 128 ) ( 1304 1001 128 ) ( 1304 1000 129 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 728 128 ) ( 1304 728 129 ) ( 1305 728 128 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1304 1000 128 ) ( 1305 1000 128 ) ( 1304 1001 128 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 1312 1024 160 ) ( 1312 1025 160 ) ( 1313 1024 160 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 1312 1024 136 ) ( 1313 1024 136 ) ( 1312 1024 137 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1312 1024 136 ) ( 1312 1024 137 ) ( 1312 1025 136 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 233 +{ +( 896 728 48 ) ( 896 720 48 ) ( 896 720 16 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 896 728 48 ) ( 1088 728 160 ) ( 1088 720 160 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 896 720 48 ) ( 1088 720 160 ) ( 1088 720 128 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1088 728 128 ) ( 1088 728 160 ) ( 896 728 48 ) grid_white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +( 1088 720 128 ) ( 1088 728 128 ) ( 896 728 16 ) grid_white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 +( 1088 720 160 ) ( 1088 728 160 ) ( 1088 728 128 ) grid_white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 +} +// brush 234 +{ +( 1192 912 168 ) ( 1192 944 128 ) ( 1192 944 168 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 90 0.25 0.25 +( 1208 896 168 ) ( 1192 912 128 ) ( 1192 912 168 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 90 0.25 0.25 +( 1208 960 168 ) ( 1192 944 128 ) ( 1208 960 128 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 90 0.25 0.25 +( 1240 896 168 ) ( 1208 896 128 ) ( 1208 896 168 ) redplaid [ 1 0 0 32 ] [ 0 0 -1 0 ] 270 0.25 0.25 +( 1256 944 128 ) ( 1240 896 128 ) ( 1256 912 128 ) redplaid [ 1 0 0 32 ] [ 0 -1 0 0 ] 90 0.25 0.25 +( 1256 944 168 ) ( 1208 960 168 ) ( 1240 960 168 ) redplaid [ 1 0 0 32 ] [ 0 -1 0 0 ] 270 0.25 0.25 +( 1240 960 168 ) ( 1208 960 128 ) ( 1240 960 128 ) redplaid [ 1 0 0 32 ] [ 0 0 -1 0 ] 90 0.25 0.25 +( 1256 912 168 ) ( 1240 896 128 ) ( 1240 896 168 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 270 0.25 0.25 +( 1256 944 168 ) ( 1240 960 128 ) ( 1256 944 128 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 270 0.25 0.25 +( 1256 944 168 ) ( 1256 912 128 ) ( 1256 912 168 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 270 0.25 0.25 +} +// brush 235 +{ +( 1256 912 128 ) ( 1256 913 128 ) ( 1256 912 129 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 90 0.25 0.25 +( 1256 912 128 ) ( 1256 912 129 ) ( 1257 912 128 ) redplaid [ 1 0 0 32 ] [ 0 0 -1 0 ] 270 0.25 0.25 +( 1256 912 128 ) ( 1257 912 128 ) ( 1256 913 128 ) redplaid [ 1 0 0 32 ] [ 0 -1 0 0 ] 90 0.25 0.25 +( 1288 944 152 ) ( 1288 945 152 ) ( 1289 944 152 ) redplaid [ 1 0 0 32 ] [ 0 -1 0 0 ] 270 0.25 0.25 +( 1288 944 136 ) ( 1289 944 136 ) ( 1288 944 137 ) redplaid [ 1 0 0 32 ] [ 0 0 -1 0 ] 90 0.25 0.25 +( 1288 944 136 ) ( 1288 944 137 ) ( 1288 945 136 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 270 0.25 0.25 +} +// brush 236 +{ +( 1160 912 128 ) ( 1160 913 128 ) ( 1160 912 129 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 90 0.25 0.25 +( 1160 912 128 ) ( 1160 912 129 ) ( 1161 912 128 ) redplaid [ 1 0 0 32 ] [ 0 0 -1 0 ] 270 0.25 0.25 +( 1160 912 128 ) ( 1161 912 128 ) ( 1160 913 128 ) redplaid [ 1 0 0 32 ] [ 0 -1 0 0 ] 90 0.25 0.25 +( 1192 944 152 ) ( 1192 945 152 ) ( 1193 944 152 ) redplaid [ 1 0 0 32 ] [ 0 -1 0 0 ] 270 0.25 0.25 +( 1192 944 136 ) ( 1193 944 136 ) ( 1192 944 137 ) redplaid [ 1 0 0 32 ] [ 0 0 -1 0 ] 90 0.25 0.25 +( 1192 944 136 ) ( 1192 944 137 ) ( 1192 945 136 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 270 0.25 0.25 +} +// brush 237 +{ +( 1208 864 128 ) ( 1208 865 128 ) ( 1208 864 129 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 90 0.25 0.25 +( 1208 864 128 ) ( 1208 864 129 ) ( 1209 864 128 ) redplaid [ 1 0 0 32 ] [ 0 0 -1 0 ] 270 0.25 0.25 +( 1208 864 128 ) ( 1209 864 128 ) ( 1208 865 128 ) redplaid [ 1 0 0 32 ] [ 0 -1 0 0 ] 90 0.25 0.25 +( 1240 896 152 ) ( 1240 897 152 ) ( 1241 896 152 ) redplaid [ 1 0 0 32 ] [ 0 -1 0 0 ] 270 0.25 0.25 +( 1240 896 136 ) ( 1241 896 136 ) ( 1240 896 137 ) redplaid [ 1 0 0 32 ] [ 0 0 -1 0 ] 90 0.25 0.25 +( 1240 896 136 ) ( 1240 896 137 ) ( 1240 897 136 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 270 0.25 0.25 +} +// brush 238 +{ +( 1208 960 128 ) ( 1208 961 128 ) ( 1208 960 129 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 90 0.25 0.25 +( 1208 960 128 ) ( 1208 960 129 ) ( 1209 960 128 ) redplaid [ 1 0 0 32 ] [ 0 0 -1 0 ] 270 0.25 0.25 +( 1208 960 128 ) ( 1209 960 128 ) ( 1208 961 128 ) redplaid [ 1 0 0 32 ] [ 0 -1 0 0 ] 90 0.25 0.25 +( 1240 992 152 ) ( 1240 993 152 ) ( 1241 992 152 ) redplaid [ 1 0 0 32 ] [ 0 -1 0 0 ] 270 0.25 0.25 +( 1240 992 136 ) ( 1241 992 136 ) ( 1240 992 137 ) redplaid [ 1 0 0 32 ] [ 0 0 -1 0 ] 90 0.25 0.25 +( 1240 992 136 ) ( 1240 992 137 ) ( 1240 993 136 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 270 0.25 0.25 +} +// brush 239 +{ +( 904 808 128 ) ( 904 809 128 ) ( 904 808 129 ) redplaid [ 0 1 0 224 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 904 808 128 ) ( 904 808 129 ) ( 905 808 128 ) redplaid [ 1 0 0 -32 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 904 808 128 ) ( 905 808 128 ) ( 904 809 128 ) redplaid [ 1 0 0 -32 ] [ 0 -1 0 -224 ] 180 0.25 0.25 +( 936 840 152 ) ( 936 841 152 ) ( 937 840 152 ) redplaid [ 1 0 0 -32 ] [ 0 -1 0 -224 ] 180 0.25 0.25 +( 936 840 136 ) ( 937 840 136 ) ( 936 840 137 ) redplaid [ 1 0 0 -32 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 936 840 136 ) ( 936 840 137 ) ( 936 841 136 ) redplaid [ 0 1 0 224 ] [ 0 0 -1 0 ] 180 0.25 0.25 +} +// brush 240 +{ +( 856 856 128 ) ( 856 857 128 ) ( 856 856 129 ) redplaid [ 0 1 0 224 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 856 856 128 ) ( 856 856 129 ) ( 857 856 128 ) redplaid [ 1 0 0 -32 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 856 856 128 ) ( 857 856 128 ) ( 856 857 128 ) redplaid [ 1 0 0 -32 ] [ 0 -1 0 -224 ] 180 0.25 0.25 +( 888 888 152 ) ( 888 889 152 ) ( 889 888 152 ) redplaid [ 1 0 0 -32 ] [ 0 -1 0 -224 ] 180 0.25 0.25 +( 888 888 136 ) ( 889 888 136 ) ( 888 888 137 ) redplaid [ 1 0 0 -32 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 888 888 136 ) ( 888 888 137 ) ( 888 889 136 ) redplaid [ 0 1 0 224 ] [ 0 0 -1 0 ] 180 0.25 0.25 +} +// brush 241 +{ +( 904 904 128 ) ( 904 905 128 ) ( 904 904 129 ) redplaid [ 0 1 0 224 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 904 904 128 ) ( 904 904 129 ) ( 905 904 128 ) redplaid [ 1 0 0 -32 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 904 904 128 ) ( 905 904 128 ) ( 904 905 128 ) redplaid [ 1 0 0 -32 ] [ 0 -1 0 -224 ] 180 0.25 0.25 +( 936 936 152 ) ( 936 937 152 ) ( 937 936 152 ) redplaid [ 1 0 0 -32 ] [ 0 -1 0 -224 ] 180 0.25 0.25 +( 936 936 136 ) ( 937 936 136 ) ( 936 936 137 ) redplaid [ 1 0 0 -32 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 936 936 136 ) ( 936 936 137 ) ( 936 937 136 ) redplaid [ 0 1 0 224 ] [ 0 0 -1 0 ] 180 0.25 0.25 +} +// brush 242 +{ +( 952 856 128 ) ( 952 857 128 ) ( 952 856 129 ) redplaid [ 0 1 0 224 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 952 856 128 ) ( 952 856 129 ) ( 953 856 128 ) redplaid [ 1 0 0 -32 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 952 856 128 ) ( 953 856 128 ) ( 952 857 128 ) redplaid [ 1 0 0 -32 ] [ 0 -1 0 -224 ] 180 0.25 0.25 +( 984 888 152 ) ( 984 889 152 ) ( 985 888 152 ) redplaid [ 1 0 0 -32 ] [ 0 -1 0 -224 ] 180 0.25 0.25 +( 984 888 136 ) ( 985 888 136 ) ( 984 888 137 ) redplaid [ 1 0 0 -32 ] [ 0 0 -1 0 ] 180 0.25 0.25 +( 984 888 136 ) ( 984 888 137 ) ( 984 889 136 ) redplaid [ 0 1 0 224 ] [ 0 0 -1 0 ] 180 0.25 0.25 +} +// brush 243 +{ +( 896 856 168 ) ( 896 888 128 ) ( 896 888 168 ) redplaid [ 0 1 0 224 ] [ 0 0 -1 0 ] 90 0.25 0.25 +( 912 840 168 ) ( 896 856 128 ) ( 896 856 168 ) redplaid [ 0 1 0 224 ] [ 0 0 -1 0 ] 90 0.25 0.25 +( 912 904 168 ) ( 896 888 128 ) ( 912 904 128 ) redplaid [ 0 1 0 224 ] [ 0 0 -1 0 ] 90 0.25 0.25 +( 944 840 168 ) ( 912 840 128 ) ( 912 840 168 ) redplaid [ 1 0 0 192 ] [ 0 0 -1 0 ] 270 0.25 0.25 +( 960 888 128 ) ( 944 840 128 ) ( 960 856 128 ) redplaid [ 1 0 0 192 ] [ 0 -1 0 -224 ] 90 0.25 0.25 +( 960 888 168 ) ( 912 904 168 ) ( 944 904 168 ) redplaid [ 1 0 0 192 ] [ 0 -1 0 -224 ] 270 0.25 0.25 +( 944 904 168 ) ( 912 904 128 ) ( 944 904 128 ) redplaid [ 1 0 0 192 ] [ 0 0 -1 0 ] 90 0.25 0.25 +( 960 856 168 ) ( 944 840 128 ) ( 944 840 168 ) redplaid [ 0 1 0 224 ] [ 0 0 -1 0 ] 270 0.25 0.25 +( 960 888 168 ) ( 944 904 128 ) ( 960 888 128 ) redplaid [ 0 1 0 224 ] [ 0 0 -1 0 ] 270 0.25 0.25 +( 960 888 168 ) ( 960 856 128 ) ( 960 856 168 ) redplaid [ 0 1 0 224 ] [ 0 0 -1 0 ] 270 0.25 0.25 +} +} +// entity 1 +{ +"classname" "func_transparent" +// brush 0 +{ +( 82 246 52 ) ( 82 247 52 ) ( 82 246 53 ) glass [ 0 -1 0 0 ] [ -0 -0 -1 -24 ] 0 0.5 0.5 +( 82 168 52 ) ( 82 168 53 ) ( 83 168 52 ) glass [ 1 0 -0 0 ] [ 0 -0 -1 -24 ] 0 0.5 0.5 +( 82 246 52 ) ( 83 246 52 ) ( 82 247 52 ) glass [ -1 0 0 0 ] [ -0 -1 -0 -24 ] 0 0.5 0.5 +( 84 256 96 ) ( 84 257 96 ) ( 85 256 96 ) glass [ 1 0 0 0 ] [ 0 -1 0 -24 ] 0 0.5 0.5 +( 84 256 54 ) ( 85 256 54 ) ( 84 256 55 ) glass [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 84 256 54 ) ( 84 256 55 ) ( 84 257 54 ) glass [ 0 1 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +} +// brush 1 +{ +( 88 260 52 ) ( 88 261 52 ) ( 88 260 53 ) glass [ 0 -1 0 0 ] [ -0 -0 -1 -24 ] 0 0.5 0.5 +( 148 260 52 ) ( 148 260 53 ) ( 149 260 52 ) glass [ 1 0 -0 0 ] [ 0 -0 -1 -24 ] 0 0.5 0.5 +( 148 260 52 ) ( 149 260 52 ) ( 148 261 52 ) glass [ -1 0 0 0 ] [ -0 -1 -0 -24 ] 0 0.5 0.5 +( 160 262 96 ) ( 160 263 96 ) ( 161 262 96 ) glass [ 1 0 0 0 ] [ 0 -1 0 -24 ] 0 0.5 0.5 +( 160 262 54 ) ( 161 262 54 ) ( 160 262 55 ) glass [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 144 262 54 ) ( 144 262 55 ) ( 144 263 54 ) glass [ 0 1 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +} +// brush 2 +{ +( 224 260 52 ) ( 224 261 52 ) ( 224 260 53 ) glass [ 0 -1 0 0 ] [ -0 -0 -1 -24 ] 0 0.5 0.5 +( 284 260 52 ) ( 284 260 53 ) ( 285 260 52 ) glass [ 1 0 -0 0 ] [ 0 -0 -1 -24 ] 0 0.5 0.5 +( 284 260 52 ) ( 285 260 52 ) ( 284 261 52 ) glass [ -1 0 0 0 ] [ -0 -1 -0 -24 ] 0 0.5 0.5 +( 296 262 96 ) ( 296 263 96 ) ( 297 262 96 ) glass [ 1 0 0 0 ] [ 0 -1 0 -24 ] 0 0.5 0.5 +( 296 262 54 ) ( 297 262 54 ) ( 296 262 55 ) glass [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 296 262 54 ) ( 296 262 55 ) ( 296 263 54 ) glass [ 0 1 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +} +// brush 3 +{ +( 82 136 52 ) ( 82 137 52 ) ( 82 136 53 ) glass [ 0 -1 0 0 ] [ -0 -0 -1 -24 ] 0 0.5 0.5 +( 82 56 52 ) ( 82 56 53 ) ( 83 56 52 ) glass [ 1 0 -0 0 ] [ 0 -0 -1 -24 ] 0 0.5 0.5 +( 82 136 52 ) ( 83 136 52 ) ( 82 137 52 ) glass [ -1 0 0 0 ] [ -0 -1 -0 -24 ] 0 0.5 0.5 +( 84 146 96 ) ( 84 147 96 ) ( 85 146 96 ) glass [ 1 0 0 0 ] [ 0 -1 0 -24 ] 0 0.5 0.5 +( 84 160 54 ) ( 85 160 54 ) ( 84 160 55 ) glass [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 84 146 54 ) ( 84 146 55 ) ( 84 147 54 ) glass [ 0 1 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +} +// brush 4 +{ +( 82 24 52 ) ( 82 25 52 ) ( 82 24 53 ) glass [ 0 -1 0 0 ] [ -0 -0 -1 -24 ] 0 0.5 0.5 +( 82 -48 52 ) ( 82 -48 53 ) ( 83 -48 52 ) glass [ 1 0 -0 0 ] [ 0 -0 -1 -24 ] 0 0.5 0.5 +( 82 24 52 ) ( 83 24 52 ) ( 82 25 52 ) glass [ -1 0 0 0 ] [ -0 -1 -0 -24 ] 0 0.5 0.5 +( 84 34 96 ) ( 84 35 96 ) ( 85 34 96 ) glass [ 1 0 0 0 ] [ 0 -1 0 -24 ] 0 0.5 0.5 +( 84 48 54 ) ( 85 48 54 ) ( 84 48 55 ) glass [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 84 34 54 ) ( 84 34 55 ) ( 84 35 54 ) glass [ 0 1 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +} +// brush 5 +{ +( 88 -54 52 ) ( 88 -53 52 ) ( 88 -54 53 ) glass [ 0 -1 0 0 ] [ -0 -0 -1 -24 ] 0 0.5 0.5 +( 88 -54 52 ) ( 88 -54 53 ) ( 89 -54 52 ) glass [ 1 0 -0 0 ] [ 0 -0 -1 -24 ] 0 0.5 0.5 +( 88 -54 52 ) ( 89 -54 52 ) ( 88 -53 52 ) glass [ -1 0 0 0 ] [ -0 -1 -0 -24 ] 0 0.5 0.5 +( 96 -52 96 ) ( 96 -51 96 ) ( 97 -52 96 ) glass [ 1 0 0 0 ] [ 0 -1 0 -24 ] 0 0.5 0.5 +( 96 -52 54 ) ( 97 -52 54 ) ( 96 -52 55 ) glass [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 +( 224 -52 54 ) ( 224 -52 55 ) ( 224 -51 54 ) glass [ 0 1 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 } } diff --git a/maps/autosave/cafemotel.5.map.import b/maps/autosave/cafemotel.5.map.import deleted file mode 100644 index 38ce935..0000000 --- a/maps/autosave/cafemotel.5.map.import +++ /dev/null @@ -1,14 +0,0 @@ -[remap] - -importer="func_godot.map" -type="Resource" -uid="uid://bnl046hi7vyy2" -path="res://.godot/imported/cafemotel.5.map-ae62204556e89e9a585d7ad45b20710e.tres" - -[deps] - -source_file="res://maps/autosave/cafemotel.5.map" -dest_files=["res://.godot/imported/cafemotel.5.map-ae62204556e89e9a585d7ad45b20710e.tres"] - -[params] - diff --git a/maps/autosave/cafemotel.6.map b/maps/autosave/cafemotel.6.map deleted file mode 100644 index 9a25701..0000000 --- a/maps/autosave/cafemotel.6.map +++ /dev/null @@ -1,1021 +0,0 @@ -// Game: maskmaker -// Format: Valve -// entity 0 -{ -"mapversion" "220" -"classname" "worldspawn" -// brush 0 -{ -( -16 -232 -16 ) ( -16 -231 -16 ) ( -16 -232 -15 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( -64 -232 -16 ) ( -64 -232 -15 ) ( -63 -232 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( -64 -232 -16 ) ( -63 -232 -16 ) ( -64 -231 -16 ) skip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.25 0.25 -( 64 -104 16 ) ( 64 -103 16 ) ( 65 -104 16 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 -1 0 -72 ] 0 0.25 0.25 -( 64 -104 16 ) ( 65 -104 16 ) ( 64 -104 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 784 -104 16 ) ( 784 -104 17 ) ( 784 -103 16 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 1 -{ -( 80 64 0 ) ( 80 65 0 ) ( 80 64 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 64 0 ) ( 80 64 1 ) ( 81 64 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 64 16 ) ( 81 64 16 ) ( 80 65 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 96 52 ) ( 112 97 52 ) ( 113 96 52 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 72 16 ) ( 113 72 16 ) ( 112 72 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 224 96 16 ) ( 224 96 17 ) ( 224 97 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 2 -{ -( 224 64 0 ) ( 224 65 0 ) ( 224 64 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 224 64 0 ) ( 224 64 1 ) ( 225 64 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 224 64 16 ) ( 225 64 16 ) ( 224 65 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 256 96 96 ) ( 256 97 96 ) ( 257 96 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 256 72 16 ) ( 257 72 16 ) ( 256 72 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 312 96 16 ) ( 312 96 17 ) ( 312 97 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 3 -{ -( 80 64 -8 ) ( 80 65 -8 ) ( 80 64 -7 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 16 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 176 64 -8 ) ( 176 64 -7 ) ( 177 64 -8 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 16 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 176 64 96 ) ( 177 64 96 ) ( 176 65 96 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 208 96 104 ) ( 208 97 104 ) ( 209 96 104 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 208 72 8 ) ( 209 72 8 ) ( 208 72 9 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 312 96 8 ) ( 312 96 9 ) ( 312 97 8 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 4 -{ -( 80 64 0 ) ( 80 65 0 ) ( 80 64 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 64 0 ) ( 80 64 1 ) ( 81 64 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 64 48 ) ( 81 64 48 ) ( 80 65 48 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 96 96 ) ( 112 97 96 ) ( 113 96 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 72 16 ) ( 113 72 16 ) ( 112 72 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 88 96 16 ) ( 88 96 17 ) ( 88 97 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 5 -{ -( 80 72 0 ) ( 80 73 0 ) ( 80 72 1 ) surface_green [ 0 4.371139006309477e-08 -0.999999999999999 32 ] [ 0 0.999999999999999 4.371139006309477e-08 24 ] 90 0.5 0.5 -( 80 72 0 ) ( 80 72 1 ) ( 81 72 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 72 16 ) ( 81 72 16 ) ( 80 73 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 104 52 ) ( 112 105 52 ) ( 113 104 52 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 256 16 ) ( 113 256 16 ) ( 112 256 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 88 104 16 ) ( 88 104 17 ) ( 88 105 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 6 -{ -( 80 256 0 ) ( 80 257 0 ) ( 80 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 256 0 ) ( 80 256 1 ) ( 81 256 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 256 16 ) ( 81 256 16 ) ( 80 257 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 288 96 ) ( 112 289 96 ) ( 113 288 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 264 16 ) ( 113 264 16 ) ( 112 264 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 88 288 16 ) ( 88 288 17 ) ( 88 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 7 -{ -( 80 256 -8 ) ( 80 257 -8 ) ( 80 256 -7 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 16 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 176 256 -8 ) ( 176 256 -7 ) ( 177 256 -8 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 176 256 96 ) ( 177 256 96 ) ( 176 257 96 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 208 288 104 ) ( 208 289 104 ) ( 209 288 104 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 208 264 8 ) ( 209 264 8 ) ( 208 264 9 ) surface_green_edge [ 4.371139006309477e-08 0 -0.999999999999999 16 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 312 288 8 ) ( 312 288 9 ) ( 312 289 8 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 8 -{ -( 80 72 72 ) ( 80 73 72 ) ( 80 72 73 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 16 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 72 72 ) ( 80 72 73 ) ( 81 72 72 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 80 72 96 ) ( 81 72 96 ) ( 80 73 96 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 104 104 ) ( 112 105 104 ) ( 113 104 104 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 256 88 ) ( 113 256 88 ) ( 112 256 89 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 88 104 88 ) ( 88 104 89 ) ( 88 105 88 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 9 -{ -( 88 256 0 ) ( 88 257 0 ) ( 88 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 256 0 ) ( 80 256 1 ) ( 81 256 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 256 16 ) ( 81 256 16 ) ( 80 257 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 288 52 ) ( 112 289 52 ) ( 113 288 52 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 264 16 ) ( 113 264 16 ) ( 112 264 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 144 288 16 ) ( 144 288 17 ) ( 144 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 10 -{ -( 144 256 0 ) ( 144 257 0 ) ( 144 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 144 256 0 ) ( 144 256 1 ) ( 145 256 0 ) surface_green [ 1 0 0 32 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 144 256 16 ) ( 145 256 16 ) ( 144 257 16 ) surface_green [ -1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 176 288 96 ) ( 176 289 96 ) ( 177 288 96 ) surface_green [ 1 0 0 32 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 176 264 16 ) ( 177 264 16 ) ( 176 264 17 ) surface_green [ -1 0 0 -32 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 160 288 16 ) ( 160 288 17 ) ( 160 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 11 -{ -( 208 256 0 ) ( 208 257 0 ) ( 208 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 208 256 0 ) ( 208 256 1 ) ( 209 256 0 ) surface_green [ 1 0 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 208 256 16 ) ( 209 256 16 ) ( 208 257 16 ) surface_green [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 240 288 96 ) ( 240 289 96 ) ( 241 288 96 ) surface_green [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 240 264 16 ) ( 241 264 16 ) ( 240 264 17 ) surface_green [ -1 0 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 224 288 16 ) ( 224 288 17 ) ( 224 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 12 -{ -( 88 128 8 ) ( 88 129 8 ) ( 88 128 9 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 88 72 8 ) ( 88 72 9 ) ( 89 72 8 ) skip [ 1 0 0 0 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 88 128 8 ) ( 89 128 8 ) ( 88 129 8 ) skip [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.25 0.25 -( 128 176 16 ) ( 128 177 16 ) ( 129 176 16 ) floor_wood [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.25 0.25 -( 128 264 16 ) ( 129 264 16 ) ( 128 264 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 320 176 16 ) ( 320 176 17 ) ( 320 177 16 ) skip [ 0 1 0 56 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -} -// brush 13 -{ -( -16 64 -16 ) ( -16 65 -16 ) ( -16 64 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( -64 64 -16 ) ( -64 64 -15 ) ( -63 64 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( -64 64 -16 ) ( -63 64 -16 ) ( -64 65 -16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 64 192 16 ) ( 64 193 16 ) ( 65 192 16 ) ground_cobblestone1 [ -4.371139006309477e-08 -0.999999999999999 0 0 ] [ -0.999999999999999 4.371139006309477e-08 0 106 ] 90 0.25 0.25 -( 64 264 16 ) ( 65 264 16 ) ( 64 264 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 80 192 16 ) ( 80 192 17 ) ( 80 193 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 14 -{ -( 72 72 88 ) ( 72 73 88 ) ( 72 72 89 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 16 ] 90 0.5 0.5 -( 80 256 88 ) ( 80 256 89 ) ( 81 256 88 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 -( 80 72 104 ) ( 81 72 104 ) ( 80 73 104 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 104 112 ) ( 112 105 112 ) ( 113 104 112 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 272 104 ) ( 113 272 104 ) ( 112 272 105 ) surface_green_edge [ 4.371139006309477e-08 0 -0.999999999999999 -32 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 312 104 104 ) ( 312 104 105 ) ( 312 105 104 ) surface_green_edge [ 0 -4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 -0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -} -// brush 15 -{ -( 72 -128 88 ) ( 72 -127 88 ) ( 72 -128 89 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 16 ] 90 0.5 0.5 -( 80 56 88 ) ( 80 56 89 ) ( 81 56 88 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 -32 ] [ -0.999999999999999 0 4.371139006309477e-08 16 ] 90 0.5 0.5 -( 80 -128 104 ) ( 81 -128 104 ) ( 80 -127 104 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 -( 112 -96 112 ) ( 112 -95 112 ) ( 113 -96 112 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 -( 112 72 104 ) ( 113 72 104 ) ( 112 72 105 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 -( 312 -96 104 ) ( 312 -96 105 ) ( 312 -95 104 ) surface_green_edge [ 0 -4.371139006309477e-08 -0.999999999999999 32 ] [ 0 -0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -} -// brush 16 -{ -( 72 -112 88 ) ( 72 -111 88 ) ( 72 -112 89 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 16 ] 90 0.5 0.5 -( 80 72 88 ) ( 80 72 89 ) ( 81 72 88 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 -( 80 -112 104 ) ( 81 -112 104 ) ( 80 -111 104 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 -( 112 -80 112 ) ( 112 -79 112 ) ( 113 -80 112 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 -( 112 256 104 ) ( 113 256 104 ) ( 112 256 105 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 -( 88 -80 104 ) ( 88 -80 105 ) ( 88 -79 104 ) surface_green [ 0 1 0 -8 ] [ 0 0 -1 -24 ] 0 0.5 0.5 -} -// brush 17 -{ -( 72 72 128 ) ( 72 73 128 ) ( 72 72 129 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 80 256 128 ) ( 80 256 129 ) ( 81 256 128 ) skip [ 1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 80 72 144 ) ( 81 72 144 ) ( 80 73 144 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 104 152 ) ( 112 105 152 ) ( 113 104 152 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 272 144 ) ( 113 272 144 ) ( 112 272 145 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 312 104 144 ) ( 312 104 145 ) ( 312 105 144 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -} -// brush 18 -{ -( 72 -112 128 ) ( 72 -111 128 ) ( 72 -112 129 ) surface_green [ 0 -1 0 8 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 80 72 128 ) ( 80 72 129 ) ( 81 72 128 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 80 -112 144 ) ( 81 -112 144 ) ( 80 -111 144 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 -( 112 -80 152 ) ( 112 -79 152 ) ( 113 -80 152 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 256 144 ) ( 113 256 144 ) ( 112 256 145 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 88 -80 144 ) ( 88 -80 145 ) ( 88 -79 144 ) skip [ 0 1 0 -8 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 19 -{ -( 72 -128 128 ) ( 72 -127 128 ) ( 72 -128 129 ) surface_green [ 0 -1 0 -8 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 80 56 128 ) ( 80 56 129 ) ( 81 56 128 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 80 -128 144 ) ( 81 -128 144 ) ( 80 -127 144 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 -( 112 -96 152 ) ( 112 -95 152 ) ( 113 -96 152 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 72 144 ) ( 113 72 144 ) ( 112 72 145 ) skip [ -1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 312 -96 144 ) ( 312 -96 145 ) ( 312 -95 144 ) surface_green [ 0 1 0 8 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -} -// brush 20 -{ -( 80 64 48 ) ( 80 65 48 ) ( 80 64 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 64 48 ) ( 80 64 49 ) ( 81 64 48 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 -32 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 64 112 ) ( 81 64 112 ) ( 80 65 112 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 96 144 ) ( 112 97 144 ) ( 113 96 144 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 72 64 ) ( 113 72 64 ) ( 112 72 65 ) skip [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 312 96 64 ) ( 312 96 65 ) ( 312 97 64 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 21 -{ -( 80 256 48 ) ( 80 257 48 ) ( 80 256 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -31.999985 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 256 48 ) ( 80 256 49 ) ( 81 256 48 ) skip [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 80 256 112 ) ( 81 256 112 ) ( 80 257 112 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 288 144 ) ( 112 289 144 ) ( 113 288 144 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 264 64 ) ( 113 264 64 ) ( 112 264 65 ) surface_green_edge [ 4.371139006309477e-08 0 -0.999999999999999 -31.999985 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 312 288 64 ) ( 312 288 65 ) ( 312 289 64 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 22 -{ -( 80 248 48 ) ( 80 249 48 ) ( 80 248 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32.000015 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 72 48 ) ( 80 72 49 ) ( 81 72 48 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 80 248 112 ) ( 81 248 112 ) ( 80 249 112 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 -( 112 280 144 ) ( 112 281 144 ) ( 113 280 144 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 -( 112 256 64 ) ( 113 256 64 ) ( 112 256 65 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 88 280 64 ) ( 88 280 65 ) ( 88 281 64 ) skip [ 0 1 0 8 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 23 -{ -( 88 128 104 ) ( 88 129 104 ) ( 88 128 105 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 56 ] 0 0.25 0.25 -( 88 72 104 ) ( 88 72 105 ) ( 89 72 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 56 ] 0 0.25 0.25 -( 88 128 104 ) ( 89 128 104 ) ( 88 129 104 ) ground_wood [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.5 0.5 -( 128 176 112 ) ( 128 177 112 ) ( 129 176 112 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.25 0.25 -( 128 256 112 ) ( 129 256 112 ) ( 128 256 113 ) skip [ -1 0 0 0 ] [ 0 0 -1 56 ] 0 0.25 0.25 -( 312 176 112 ) ( 312 176 113 ) ( 312 177 112 ) skip [ 0 1 0 56 ] [ 0 0 -1 56 ] 0 0.25 0.25 -} -// brush 24 -{ -( 224 72 16 ) ( 224 73 16 ) ( 224 72 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 224 72 16 ) ( 224 72 17 ) ( 225 72 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 224 72 16 ) ( 225 72 16 ) ( 224 73 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 248 160 48 ) ( 248 161 48 ) ( 249 160 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 248 184 24 ) ( 249 184 24 ) ( 248 184 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 248 160 24 ) ( 248 160 25 ) ( 248 161 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 25 -{ -( 224 256 0 ) ( 224 257 0 ) ( 224 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 216 256 0 ) ( 216 256 1 ) ( 217 256 0 ) surface_green [ 1 0 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 216 256 16 ) ( 217 256 16 ) ( 216 257 16 ) surface_green [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 248 288 52 ) ( 248 289 52 ) ( 249 288 52 ) surface_green [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 248 264 16 ) ( 249 264 16 ) ( 248 264 17 ) surface_green [ -1 0 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 296 288 16 ) ( 296 288 17 ) ( 296 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 26 -{ -( 296 256 0 ) ( 296 257 0 ) ( 296 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 296 256 0 ) ( 296 256 1 ) ( 297 256 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 296 256 16 ) ( 297 256 16 ) ( 296 257 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 328 288 96 ) ( 328 289 96 ) ( 329 288 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 328 264 16 ) ( 329 264 16 ) ( 328 264 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 312 288 16 ) ( 312 288 17 ) ( 312 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 27 -{ -( 224 128 16 ) ( 224 129 16 ) ( 224 128 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 224 224 16 ) ( 224 224 17 ) ( 225 224 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 224 128 16 ) ( 225 128 16 ) ( 224 129 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 248 216 48 ) ( 248 217 48 ) ( 249 216 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 248 256 24 ) ( 249 256 24 ) ( 248 256 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 312 216 24 ) ( 312 216 25 ) ( 312 217 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 28 -{ -( 640 64 0 ) ( 640 65 0 ) ( 640 64 1 ) skip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 0.5 0.5 -( 640 64 0 ) ( 640 64 1 ) ( 641 64 0 ) skip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 0.5 0.5 -( 640 64 0 ) ( 641 64 0 ) ( 640 65 0 ) skip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 0.5 0.5 -( 656 112 16 ) ( 656 113 16 ) ( 657 112 16 ) ground_cobblestone1 [ -4.371139006309477e-08 -0.999999999999999 0 0 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.25 0.25 -( 656 264 16 ) ( 657 264 16 ) ( 656 264 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 736 112 16 ) ( 736 112 17 ) ( 736 113 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 29 -{ -( 736 72 16 ) ( 736 73 16 ) ( 736 72 17 ) wall_brick_scrungly [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 472 64 16 ) ( 472 64 17 ) ( 473 64 16 ) wall_brick_scrungly [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 472 72 16 ) ( 473 72 16 ) ( 472 73 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 504 104 96 ) ( 504 105 96 ) ( 505 104 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 504 264 32 ) ( 505 264 32 ) ( 504 264 33 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 784 104 32 ) ( 784 104 33 ) ( 784 105 32 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 30 -{ -( 640 64 96 ) ( 640 65 96 ) ( 640 64 97 ) skip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 0.25 0.25 -( 640 64 96 ) ( 640 64 97 ) ( 641 64 96 ) wall_brick [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 0.25 0.25 -( 640 64 96 ) ( 641 64 96 ) ( 640 65 96 ) wall_brick_scrungly [ 4.371139006309477e-08 -0.999999999999999 0 0 ] [ 0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.25 0.25 -( 656 112 256 ) ( 656 113 256 ) ( 657 112 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 656 264 112 ) ( 657 264 112 ) ( 656 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 736 112 112 ) ( 736 112 113 ) ( 736 113 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 31 -{ -( 736 72 96 ) ( 736 73 96 ) ( 736 72 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 472 64 96 ) ( 472 64 97 ) ( 473 64 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 472 72 96 ) ( 473 72 96 ) ( 472 73 96 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 504 104 256 ) ( 504 105 256 ) ( 505 104 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 504 264 112 ) ( 505 264 112 ) ( 504 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 784 104 112 ) ( 784 104 113 ) ( 784 105 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 32 -{ -( 312 64 96 ) ( 312 65 96 ) ( 312 64 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 368 64 96 ) ( 368 64 97 ) ( 369 64 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 368 64 104 ) ( 369 64 104 ) ( 368 65 104 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 400 96 256 ) ( 400 97 256 ) ( 401 96 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 400 72 112 ) ( 401 72 112 ) ( 400 72 113 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 96 112 ) ( 640 96 113 ) ( 640 97 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 139 ] 0 0.25 0.25 -} -// brush 33 -{ -( -16 264 -16 ) ( -16 265 -16 ) ( -16 264 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( -64 264 -16 ) ( -64 264 -15 ) ( -63 264 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( -64 264 12 ) ( -63 264 12 ) ( -64 265 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 64 392 16 ) ( 64 393 16 ) ( 65 392 16 ) ground_greybrick [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 64 360 16 ) ( 65 360 16 ) ( 64 360 17 ) wall_concrete1 [ -1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 -( 784 392 16 ) ( 784 392 17 ) ( 784 393 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -} -// brush 34 -{ -( 632 72 96 ) ( 632 73 96 ) ( 632 72 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 368 72 96 ) ( 368 72 97 ) ( 369 72 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 368 72 112 ) ( 369 72 112 ) ( 368 73 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 400 104 256 ) ( 400 105 256 ) ( 401 104 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 400 264 112 ) ( 401 264 112 ) ( 400 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 104 112 ) ( 640 104 113 ) ( 640 105 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 35 -{ -( 320 72 96 ) ( 320 73 96 ) ( 320 72 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 360 72 96 ) ( 360 72 97 ) ( 361 72 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 360 72 112 ) ( 361 72 112 ) ( 360 73 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 392 104 256 ) ( 392 105 256 ) ( 393 104 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 392 264 112 ) ( 393 264 112 ) ( 392 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 632 104 112 ) ( 632 104 113 ) ( 632 105 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 36 -{ -( 312 256 104 ) ( 312 257 104 ) ( 312 256 105 ) skip [ 0 1.6292067950285372e-07 -0.9999999999999866 -16 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 312 72 104 ) ( 312 72 105 ) ( 313 72 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 312 256 104 ) ( 313 256 104 ) ( 312 257 104 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 344 288 256 ) ( 344 289 256 ) ( 345 288 256 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 344 264 120 ) ( 345 264 120 ) ( 344 264 121 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 288 120 ) ( 320 288 121 ) ( 320 289 120 ) skip [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 37 -{ -( 312 264 32 ) ( 312 136 32 ) ( 312 264 16 ) surface_beige_edge [ 0 -1.3113417006681922e-07 0.9999999999999913 32 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 0 ] 270 0.5 0.5 -( 320 136 16 ) ( 312 136 16 ) ( 320 136 32 ) surface_beige_edge [ 0.9999999999999957 0 8.742277997596912e-08 16 ] [ -8.742277997596912e-08 0 0.9999999999999957 0 ] 180 0.5 0.5 -( 312 264 16 ) ( 312 136 16 ) ( 320 264 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 320 264 32 ) ( 320 136 32 ) ( 312 264 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 264 16 ) ( 320 264 16 ) ( 312 264 32 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 264 16 ) ( 320 136 16 ) ( 320 264 32 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 38 -{ -( 312 72 16 ) ( 312 88 16 ) ( 312 72 32 ) surface_beige_edge [ 0 -1.3113417006681922e-07 0.9999999999999913 32 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 0 ] 270 0.5 0.5 -( 312 72 32 ) ( 320 72 32 ) ( 312 72 16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 72 16 ) ( 320 88 16 ) ( 312 72 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 312 72 32 ) ( 312 88 32 ) ( 320 72 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 88 32 ) ( 312 88 16 ) ( 320 88 32 ) surface_beige_edge [ 1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 72 32 ) ( 320 88 32 ) ( 320 72 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 39 -{ -( 312 264 88 ) ( 312 136 88 ) ( 312 264 32 ) surface_beige [ 0 -1.3113417006681922e-07 0.9999999999999913 32 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 0 ] 270 0.5 0.5 -( 320 136 32 ) ( 312 136 32 ) ( 320 136 88 ) surface_beige_edge [ 0.9999999999999961 -0 8.742278000372473e-08 16 ] [ -8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 -( 312 264 32 ) ( 312 136 32 ) ( 320 264 32 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 320 264 88 ) ( 320 136 88 ) ( 312 264 88 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 264 32 ) ( 320 264 32 ) ( 312 264 88 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 264 32 ) ( 320 136 32 ) ( 320 264 88 ) skip [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 40 -{ -( 312 72 32 ) ( 312 88 32 ) ( 312 72 88 ) surface_beige [ 0 -1.3113417006681922e-07 0.9999999999999913 32 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 0 ] 270 0.5 0.5 -( 312 72 88 ) ( 320 72 88 ) ( 312 72 32 ) skip [ 1 0 0 -16 ] [ 0 0 -1 16 ] 0 0.5 0.5 -( 320 72 32 ) ( 320 88 32 ) ( 312 72 32 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 72 88 ) ( 312 88 88 ) ( 320 72 88 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 88 88 ) ( 312 88 32 ) ( 320 88 88 ) surface_beige_edge [ 0.9999999999999998 -0 1.3234889800848443e-23 16 ] [ 1.3234889800848443e-23 0 -0.9999999999999998 0 ] 0 0.5 0.5 -( 320 72 88 ) ( 320 88 88 ) ( 320 72 32 ) skip [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 41 -{ -( 312 264 104 ) ( 312 136 104 ) ( 312 264 88 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 320 136 88 ) ( 312 136 88 ) ( 320 136 104 ) surface_beige_edge [ 0.9999999999999961 0 8.742277995965608e-08 16 ] [ -8.742277995965608e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 -( 312 264 88 ) ( 312 136 88 ) ( 320 264 88 ) surface_beige_edge [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 320 264 104 ) ( 320 136 104 ) ( 312 264 104 ) surface_beige_edge [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 264 88 ) ( 320 264 88 ) ( 312 264 104 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 264 88 ) ( 320 136 88 ) ( 320 264 104 ) surface_beige_edge [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 42 -{ -( 312 72 88 ) ( 312 88 88 ) ( 312 72 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 312 72 104 ) ( 320 72 104 ) ( 312 72 88 ) skip [ 1 0 0 -16 ] [ 0 0 -1 16 ] 0 0.5 0.5 -( 320 72 88 ) ( 320 88 88 ) ( 312 72 88 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 72 104 ) ( 312 88 104 ) ( 320 72 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 88 104 ) ( 312 88 88 ) ( 320 88 104 ) surface_beige_edge [ 1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 72 104 ) ( 320 88 104 ) ( 320 72 88 ) skip [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 43 -{ -( 312 88 104 ) ( 312 88 96 ) ( 312 136 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 320 96 104 ) ( 320 96 96 ) ( 312 96 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 312 136 96 ) ( 312 88 96 ) ( 320 136 96 ) surface_beige_edge [ 1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 320 136 104 ) ( 320 88 104 ) ( 312 136 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 128 104 ) ( 312 128 96 ) ( 320 128 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 -( 320 136 104 ) ( 320 136 96 ) ( 320 88 104 ) skip [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 44 -{ -( 488 264 96 ) ( 488 72 96 ) ( 488 264 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 640 72 16 ) ( 328 72 16 ) ( 640 72 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 264 4 ) ( 328 264 4 ) ( 640 72 4 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 640 72 112 ) ( 328 72 112 ) ( 640 264 112 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 1 1 -( 640 264 96 ) ( 328 264 96 ) ( 640 264 16 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 72 96 ) ( 640 264 96 ) ( 640 72 16 ) wall_brick_scrungly [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 45 -{ -( 320 264 96 ) ( 320 136 96 ) ( 320 264 16 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 136 96 ) ( 328 136 96 ) ( 320 136 16 ) surface_beige_edge [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 264 16 ) ( 320 136 16 ) ( 328 264 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 328 264 112 ) ( 328 136 112 ) ( 320 264 112 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 1 1 -( 320 264 16 ) ( 328 264 16 ) ( 320 264 96 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 328 264 16 ) ( 328 136 16 ) ( 328 264 96 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 46 -{ -( 320 72 16 ) ( 320 88 16 ) ( 320 72 96 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 72 96 ) ( 328 72 96 ) ( 320 72 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 328 72 16 ) ( 328 88 16 ) ( 320 72 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 320 72 96 ) ( 320 88 96 ) ( 328 72 96 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 1 1 -( 320 88 96 ) ( 320 88 16 ) ( 328 88 96 ) surface_beige_edge [ -0.9999999999999961 0 8.742278000372473e-08 16 ] [ 8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 -( 328 72 96 ) ( 328 88 96 ) ( 328 72 16 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 47 -{ -( 320 128 8 ) ( 320 129 8 ) ( 320 128 9 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 320 72 8 ) ( 320 72 9 ) ( 321 72 8 ) skip [ 1 0 0 96 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 320 128 8 ) ( 321 128 8 ) ( 320 129 8 ) skip [ -1 0 0 -96 ] [ 0 -1 0 -56 ] 0 0.25 0.25 -( 360 176 16 ) ( 360 177 16 ) ( 361 176 16 ) floor_checkertiles [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 360 224 16 ) ( 361 224 16 ) ( 360 224 17 ) skip [ -1 0 0 -32 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 448 176 16 ) ( 448 176 17 ) ( 448 177 16 ) skip [ 0 1 0 56 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -} -// brush 48 -{ -( 320 88 104 ) ( 320 88 96 ) ( 320 136 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 328 96 104 ) ( 328 96 96 ) ( 320 96 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 136 96 ) ( 320 88 96 ) ( 328 136 96 ) surface_beige_edge [ -0.9999999999999961 8.742278000372473e-08 0 16 ] [ 8.742278000372473e-08 0.9999999999999961 0 0 ] 180 0.5 0.5 -( 328 136 104 ) ( 328 88 104 ) ( 320 136 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 320 128 104 ) ( 320 128 96 ) ( 328 128 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 136 104 ) ( 328 136 96 ) ( 328 88 104 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 49 -{ -( 312 96 104 ) ( 312 96 96 ) ( 312 144 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48.000015 ] [ 0 0.9999999999999866 1.6292067950285372e-07 -16 ] 90 0.5 0.5 -( 320 128 104 ) ( 320 128 96 ) ( 312 128 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 312 144 96 ) ( 312 96 96 ) ( 320 144 96 ) surface_beige_corner [ -4.371139006309477e-08 -0.999999999999999 0 16 ] [ -0.999999999999999 4.371139006309477e-08 0 48 ] 90 0.5 0.5 -( 320 144 104 ) ( 320 96 104 ) ( 312 144 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 312 136 104 ) ( 312 136 96 ) ( 320 136 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 -( 320 144 104 ) ( 320 144 96 ) ( 320 96 104 ) skip [ 0 1 0 -16 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 50 -{ -( 320 96 104 ) ( 320 96 96 ) ( 320 144 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48.000015 ] [ 0 0.9999999999999866 1.6292067950285372e-07 -16 ] 90 0.5 0.5 -( 328 128 104 ) ( 328 128 96 ) ( 320 128 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 144 96 ) ( 320 96 96 ) ( 328 144 96 ) surface_beige_corner [ -0.9999999999999961 8.742277995965608e-08 0 16 ] [ 8.742277995965608e-08 0.9999999999999961 0 48 ] 180 0.5 0.5 -( 328 144 104 ) ( 328 96 104 ) ( 320 144 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 320 136 104 ) ( 320 136 96 ) ( 328 136 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 144 104 ) ( 328 144 96 ) ( 328 96 104 ) surface_beige [ 0 1 0 -16 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 51 -{ -( 312 80 104 ) ( 312 80 96 ) ( 312 128 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 16 ] 90 0.5 0.5 -( 320 88 104 ) ( 320 88 96 ) ( 312 88 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 312 128 96 ) ( 312 80 96 ) ( 320 128 96 ) surface_beige_corner [ 1 0 0 16 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 320 128 104 ) ( 320 80 104 ) ( 312 128 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 312 96 104 ) ( 312 96 96 ) ( 320 96 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 -( 320 128 104 ) ( 320 128 96 ) ( 320 80 104 ) skip [ 0 1 0 16 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 52 -{ -( 320 80 104 ) ( 320 80 96 ) ( 320 128 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 16 ] 90 0.5 0.5 -( 328 88 104 ) ( 328 88 96 ) ( 320 88 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 128 96 ) ( 320 80 96 ) ( 328 128 96 ) surface_beige_corner [ 1.3113417006681922e-07 0.9999999999999912 0 16 ] [ 0.9999999999999912 -1.3113417006681922e-07 -0 48 ] 270 0.5 0.5 -( 328 128 104 ) ( 328 80 104 ) ( 320 128 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 320 96 104 ) ( 320 96 96 ) ( 328 96 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 128 104 ) ( 328 128 96 ) ( 328 80 104 ) surface_beige [ 0 1 0 16 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 53 -{ -( 320 64 104 ) ( 320 64 96 ) ( 320 112 104 ) skip [ 0 1.6292067950285372e-07 -0.9999999999999866 -48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 48 ] 90 0.5 0.5 -( 328 72 104 ) ( 328 72 96 ) ( 320 72 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 112 96 ) ( 320 64 96 ) ( 328 112 96 ) skip [ 1.3113417006681922e-07 0.9999999999999912 0 48 ] [ 0.9999999999999912 -1.3113417006681922e-07 0 48 ] 270 0.5 0.5 -( 328 112 104 ) ( 328 64 104 ) ( 320 112 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 320 88 104 ) ( 320 88 96 ) ( 328 88 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 112 104 ) ( 328 112 96 ) ( 328 64 104 ) surface_beige [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 54 -{ -( 480 80 16 ) ( 480 81 16 ) ( 480 80 17 ) surface_beige [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 480 80 16 ) ( 480 80 17 ) ( 481 80 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 480 80 16 ) ( 481 80 16 ) ( 480 81 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 488 96 104 ) ( 488 97 104 ) ( 489 96 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 488 256 24 ) ( 489 256 24 ) ( 488 256 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 488 96 24 ) ( 488 96 25 ) ( 488 97 24 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 55 -{ -( 432 72 96 ) ( 432 64 96 ) ( 432 72 16 ) wall_brick_scrungly [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 64 16 ) ( 432 64 16 ) ( 640 64 96 ) wall_brick_scrungly [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 0.25 0.25 -( 640 72 16 ) ( 432 72 16 ) ( 640 64 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 640 64 96 ) ( 432 64 96 ) ( 640 72 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 640 72 96 ) ( 432 72 96 ) ( 640 72 16 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 64 96 ) ( 640 72 96 ) ( 640 64 16 ) wall_brick_scrungly [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 56 -{ -( 312 64 16 ) ( 312 72 16 ) ( 312 64 96 ) skip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 0.25 0.25 -( 312 64 96 ) ( 384 64 96 ) ( 312 64 16 ) wall_brick_scrungly [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 0.25 0.25 -( 312 64 16 ) ( 384 64 16 ) ( 312 72 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 312 72 96 ) ( 384 72 96 ) ( 312 64 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 312 72 16 ) ( 384 72 16 ) ( 312 72 96 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 384 64 16 ) ( 384 64 96 ) ( 384 72 16 ) wall_brick_scrungly [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 57 -{ -( 432 80 104 ) ( 432 72 104 ) ( 432 80 16 ) surface_beige_edge [ 0 -0.9999999999999961 8.742278000372473e-08 32 ] [ 0 8.742278000372473e-08 0.9999999999999961 0 ] 180 0.5 0.5 -( 448 72 16 ) ( 432 72 16 ) ( 448 72 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 448 80 16 ) ( 432 80 16 ) ( 448 72 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 448 72 104 ) ( 432 72 104 ) ( 448 80 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 448 80 104 ) ( 432 80 104 ) ( 448 80 16 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 480 72 104 ) ( 480 80 104 ) ( 480 72 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 58 -{ -( 328 72 16 ) ( 328 80 16 ) ( 328 72 104 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 328 72 104 ) ( 384 72 104 ) ( 328 72 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 328 72 16 ) ( 384 72 16 ) ( 328 80 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 328 80 104 ) ( 384 80 104 ) ( 328 72 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 328 80 16 ) ( 384 80 16 ) ( 328 80 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 384 72 16 ) ( 384 72 104 ) ( 384 80 16 ) surface_beige_edge [ 0 -1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 59 -{ -( 392 72 104 ) ( 392 72 96 ) ( 392 80 104 ) surface_beige [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 432 72 104 ) ( 432 72 96 ) ( 384 72 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 432 72 96 ) ( 432 80 96 ) ( 384 72 96 ) surface_beige_edge [ -4.371139006309477e-08 -0.999999999999999 0 32 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.5 0.5 -( 432 72 104 ) ( 384 72 104 ) ( 432 80 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 384 80 104 ) ( 384 80 96 ) ( 432 80 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 424 80 104 ) ( 424 80 96 ) ( 424 72 104 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 60 -{ -( 384 64 8 ) ( 384 65 8 ) ( 384 64 9 ) ground_cobblestone1 [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 384 64 8 ) ( 384 64 9 ) ( 385 64 8 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 384 64 8 ) ( 385 64 8 ) ( 384 65 8 ) ground_cobblestone1 [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 432 72 16 ) ( 432 73 16 ) ( 433 72 16 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 432 72 16 ) ( 433 72 16 ) ( 432 72 17 ) ground_cobblestone1 [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 432 72 16 ) ( 432 72 17 ) ( 432 73 16 ) ground_cobblestone1 [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 61 -{ -( 312 64 96 ) ( 312 65 96 ) ( 312 64 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 312 64 96 ) ( 312 64 97 ) ( 313 64 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 312 64 96 ) ( 313 64 96 ) ( 312 65 96 ) wall_brick [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 360 72 104 ) ( 360 73 104 ) ( 361 72 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 360 72 104 ) ( 361 72 104 ) ( 360 72 105 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 72 104 ) ( 640 72 105 ) ( 640 73 104 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 62 -{ -( 80 48 152 ) ( 80 49 152 ) ( 80 48 153 ) wall_brick [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 176 64 152 ) ( 176 64 153 ) ( 177 64 152 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 176 48 152 ) ( 177 48 152 ) ( 176 49 152 ) wall_brick [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 208 80 256 ) ( 208 81 256 ) ( 209 80 256 ) wall_brick [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 208 264 168 ) ( 209 264 168 ) ( 208 264 169 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 312 80 168 ) ( 312 80 169 ) ( 312 81 168 ) wall_brick [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 63 -{ -( 328 224 104 ) ( 328 225 104 ) ( 328 224 105 ) skip [ 0 -1 0 -16 ] [ 0 0 -1 48 ] 0 0.5 0.5 -( 392 80 104 ) ( 392 80 105 ) ( 393 80 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 -( 392 224 104 ) ( 393 224 104 ) ( 392 225 104 ) ground_wood [ -1 0 0 0 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 424 256 112 ) ( 424 257 112 ) ( 425 256 112 ) skip [ 1 0 0 0 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 424 256 112 ) ( 425 256 112 ) ( 424 256 113 ) skip [ -1 0 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 -( 480 256 112 ) ( 480 256 113 ) ( 480 257 112 ) skip [ 0 1 0 16 ] [ 0 0 -1 48 ] 0 0.5 0.5 -} -// brush 64 -{ -( 424 72 104 ) ( 424 72 96 ) ( 424 80 104 ) surface_beige [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 440 72 104 ) ( 440 72 96 ) ( 392 72 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 440 72 96 ) ( 440 80 96 ) ( 392 72 96 ) surface_beige_corner [ -0.9999999999999961 8.742277995965608e-08 0 32 ] [ 8.742277995965608e-08 0.9999999999999961 0 32 ] 180 0.5 0.5 -( 440 72 104 ) ( 392 72 104 ) ( 440 80 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 392 80 104 ) ( 392 80 96 ) ( 440 80 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 432 80 104 ) ( 432 80 96 ) ( 432 72 104 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 65 -{ -( 384 72 104 ) ( 384 72 96 ) ( 384 80 104 ) surface_beige [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 72 104 ) ( 400 72 96 ) ( 352 72 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 72 96 ) ( 400 80 96 ) ( 352 72 96 ) surface_beige_corner [ -4.371139006309477e-08 -0.999999999999999 0 32 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.5 0.5 -( 400 72 104 ) ( 352 72 104 ) ( 400 80 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 352 80 104 ) ( 352 80 96 ) ( 400 80 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 392 80 104 ) ( 392 80 96 ) ( 392 72 104 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 66 -{ -( 328 232 16 ) ( 328 233 16 ) ( 328 232 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 328 224 16 ) ( 328 224 17 ) ( 329 224 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 328 232 16 ) ( 329 232 16 ) ( 328 233 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 352 256 48 ) ( 352 257 48 ) ( 353 256 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 352 256 24 ) ( 353 256 24 ) ( 352 256 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 256 24 ) ( 400 256 25 ) ( 400 257 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 67 -{ -( 328 176 16 ) ( 328 177 16 ) ( 328 176 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 328 144 16 ) ( 328 144 17 ) ( 329 144 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 328 176 16 ) ( 329 176 16 ) ( 328 177 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 360 224 48 ) ( 360 225 48 ) ( 361 224 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 360 224 24 ) ( 361 224 24 ) ( 360 224 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 360 224 24 ) ( 360 224 25 ) ( 360 225 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 68 -{ -( 448 112 16 ) ( 448 113 16 ) ( 448 112 17 ) redplaid [ 0 -1 0 -64 ] [ 0 0 -1 0 ] 0 1 1 -( 448 80 16 ) ( 448 80 17 ) ( 449 80 16 ) redplaid [ 1 0 0 -120 ] [ 0 0 -1 0 ] 0 1 1 -( 448 112 16 ) ( 449 112 16 ) ( 448 113 16 ) redplaid [ -1 0 0 120 ] [ 0 -1 0 -64 ] 0 1 1 -( 480 160 48 ) ( 480 161 48 ) ( 481 160 48 ) redplaid [ 1 0 0 -120 ] [ 0 -1 0 -64 ] 0 1 1 -( 480 256 24 ) ( 481 256 24 ) ( 480 256 25 ) redplaid [ -1 0 0 120 ] [ 0 0 -1 0 ] 0 1 1 -( 480 160 24 ) ( 480 160 25 ) ( 480 161 24 ) redplaid [ 0 1 0 64 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 69 -{ -( -16 360 -20 ) ( -16 361 -20 ) ( -16 360 -19 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( -64 360 -20 ) ( -64 360 -19 ) ( -63 360 -20 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( -64 360 -20 ) ( -63 360 -20 ) ( -64 361 -20 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 64 488 12 ) ( 64 489 12 ) ( 65 488 12 ) asphalt [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 64 600 12 ) ( 65 600 12 ) ( 64 600 13 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 784 488 12 ) ( 784 488 13 ) ( 784 489 12 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 70 -{ -( -16 360 -16 ) ( -16 361 -16 ) ( -16 360 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 -( -64 360 -16 ) ( -64 360 -15 ) ( -63 360 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 -( -64 360 12 ) ( -63 360 12 ) ( -64 361 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 64 488 16 ) ( 64 489 16 ) ( 65 488 16 ) ground_greybrick [ -4.371139006309477e-08 -0.999999999999999 0 0 ] [ -0.999999999999999 4.371139006309477e-08 0 73 ] 90 0.5 0.5 -( 64 600 16 ) ( 65 600 16 ) ( 64 600 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 -( 80 488 16 ) ( 80 488 17 ) ( 80 489 16 ) wall_concrete1 [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 1 1 -} -// brush 71 -{ -( -16 600 -16 ) ( -16 601 -16 ) ( -16 600 -15 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 16 ] 0 0.5 0.5 -( -64 600 -16 ) ( -64 600 -15 ) ( -63 600 -16 ) wall_concrete1 [ 1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 -( -64 600 12 ) ( -63 600 12 ) ( -64 601 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 64 728 16 ) ( 64 729 16 ) ( 65 728 16 ) ground_greybrick [ 1 0 0 0 ] [ 0 -1 0 48 ] 0 0.5 0.5 -( 64 704 16 ) ( 65 704 16 ) ( 64 704 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 -( 576 728 16 ) ( 576 728 17 ) ( 576 729 16 ) wall_concrete1 [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 72 -{ -( 736 600 -16 ) ( 736 601 -16 ) ( 736 600 -15 ) wall_concrete1 [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 144 600 -16 ) ( 144 600 -15 ) ( 145 600 -16 ) wall_concrete1 [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 144 600 12 ) ( 145 600 12 ) ( 144 601 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 272 728 16 ) ( 272 729 16 ) ( 273 728 16 ) ground_greybrick [ 1 0 0 0 ] [ 0 -1 0 48 ] 0 0.5 0.5 -( 272 720 16 ) ( 273 720 16 ) ( 272 720 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 784 728 16 ) ( 784 728 17 ) ( 784 729 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 73 -{ -( 576 600 -20 ) ( 576 601 -20 ) ( 576 600 -19 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( -112 600 -20 ) ( -112 600 -19 ) ( -111 600 -20 ) skip [ 1 0 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( -112 600 -20 ) ( -111 600 -20 ) ( -112 601 -20 ) skip [ -1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 16 728 12 ) ( 16 729 12 ) ( 17 728 12 ) asphalt [ 1 0 0 96 ] [ 0 -1 0 40 ] 0 0.5 0.5 -( 16 720 12 ) ( 17 720 12 ) ( 16 720 13 ) skip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 736 728 12 ) ( 736 728 13 ) ( 736 729 12 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 74 -{ -( 64 336 24 ) ( 64 337 24 ) ( 64 336 25 ) redplaid [ 0 -1 0 0 ] [ 0 0 -1 8 ] 0 1 1 -( 56 344 24 ) ( 56 344 25 ) ( 57 344 24 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 8 ] 0 1 1 -( 56 336 24 ) ( 57 336 24 ) ( 56 337 24 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 80 360 152 ) ( 80 361 152 ) ( 81 360 152 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 80 352 32 ) ( 81 352 32 ) ( 80 352 33 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 8 ] 0 1 1 -( 72 360 32 ) ( 72 360 33 ) ( 72 361 32 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 8 ] 0 1 1 -} -// brush 75 -{ -( 56 336 16 ) ( 56 337 16 ) ( 56 336 17 ) redplaid [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 56 336 16 ) ( 56 336 17 ) ( 57 336 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 56 336 16 ) ( 57 336 16 ) ( 56 337 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 80 360 18 ) ( 80 361 18 ) ( 81 360 18 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 80 360 24 ) ( 81 360 24 ) ( 80 360 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 80 360 24 ) ( 80 360 25 ) ( 80 361 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 76 -{ -( 64 344 24 ) ( 56 336 18 ) ( 56 360 18 ) redplaid [ 0 -1.0000000000000002 0 0 ] [ 1.0000000000000002 0 0 -70.43137 ] 0 1 1 -( 72 344 24 ) ( 80 336 18 ) ( 56 336 18 ) redplaid [ 1.0000000000000002 0 0 0 ] [ 0 1.0000000000000002 0 -94.58823 ] 0 1 1 -( 80 336 18 ) ( 80 360 18 ) ( 56 360 18 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 64 352 24 ) ( 72 352 24 ) ( 72 344 24 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 72 352 24 ) ( 64 352 24 ) ( 56 360 18 ) redplaid [ -1.0000000000000002 0 0 0 ] [ 0 -1.0000000000000002 0 89.568634 ] 0 1 1 -( 72 352 24 ) ( 80 360 18 ) ( 80 336 18 ) redplaid [ 0 1.0000000000000002 0 0 ] [ -1.0000000000000002 0 0 68 ] 0 1 1 -} -// brush 77 -{ -( 60 336 152 ) ( 60 337 152 ) ( 60 336 153 ) redplaid [ 0 -1 0 24 ] [ 0 0 -1 8 ] 0 1 1 -( 56 340 152 ) ( 56 340 153 ) ( 57 340 152 ) redplaid [ 1 0 0 -8 ] [ 0 0 -1 8 ] 0 1 1 -( 56 336 152 ) ( 57 336 152 ) ( 56 337 152 ) redplaid [ -1 0 0 8 ] [ 0 -1 0 24 ] 0 1 1 -( 88 368 156 ) ( 88 369 156 ) ( 89 368 156 ) redplaid [ 1 0 0 -8 ] [ 0 -1 0 24 ] 0 1 1 -( 88 356 160 ) ( 89 356 160 ) ( 88 356 161 ) redplaid [ -1 0 0 8 ] [ 0 0 -1 8 ] 0 1 1 -( 76 368 160 ) ( 76 368 161 ) ( 76 369 160 ) redplaid [ 0 1 0 -24 ] [ 0 0 -1 8 ] 0 1 1 -} -// brush 78 -{ -( 64 344 186 ) ( 54 334 180 ) ( 54 362 180 ) redplaid [ 0 -1.0000000000000002 0 24 ] [ 1.0000000000000002 0 0 -200.0878 ] 0 1 1 -( 72 344 186 ) ( 82 334 180 ) ( 54 334 180 ) redplaid [ 1.0000000000000002 0 0 -8 ] [ 0 1.0000000000000002 0 -222 ] 0 1 1 -( 82 334 180 ) ( 82 362 180 ) ( 54 362 180 ) redplaid [ -1 0 0 8 ] [ 0 -1 0 24 ] 0 1 1 -( 64 352 186 ) ( 72 352 186 ) ( 72 344 186 ) redplaid [ 1 0 0 -8 ] [ 0 -1 0 24 ] 0 1 1 -( 54 362 180 ) ( 82 362 180 ) ( 72 352 186 ) redplaid [ -1.0000000000000002 0 0 8 ] [ 0 -1.0000000000000002 0 215.36586 ] 0 1 1 -( 72 352 186 ) ( 82 362 180 ) ( 82 334 180 ) redplaid [ 0 1.0000000000000002 0 -24 ] [ -1.0000000000000002 0 0 -62 ] 0 1 1 -} -// brush 79 -{ -( 60 354 156 ) ( 60 356 156 ) ( 54 362 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 56 360 180 ) ( 62 354 156 ) ( 60 354 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 62 354 156 ) ( 62 356 156 ) ( 60 356 156 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 56 360 180 ) ( 54 360 180 ) ( 54 362 180 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 60 356 156 ) ( 62 356 156 ) ( 56 362 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 56 362 180 ) ( 62 356 156 ) ( 62 354 156 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 80 -{ -( 60 340 156 ) ( 60 342 156 ) ( 54 336 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 56 334 180 ) ( 62 340 156 ) ( 60 340 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 62 340 156 ) ( 62 342 156 ) ( 60 342 156 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 56 334 180 ) ( 54 334 180 ) ( 54 336 180 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 60 342 156 ) ( 62 342 156 ) ( 56 336 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 56 336 180 ) ( 62 342 156 ) ( 62 340 156 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 81 -{ -( 74 342 156 ) ( 80 336 180 ) ( 80 334 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 80 334 180 ) ( 82 334 180 ) ( 76 340 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 76 342 156 ) ( 74 342 156 ) ( 74 340 156 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 80 336 180 ) ( 82 336 180 ) ( 82 334 180 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 76 342 156 ) ( 82 336 180 ) ( 80 336 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 76 342 156 ) ( 76 340 156 ) ( 82 334 180 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 82 -{ -( 74 356 156 ) ( 80 362 180 ) ( 80 360 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 80 360 180 ) ( 82 360 180 ) ( 76 354 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 76 356 156 ) ( 74 356 156 ) ( 74 354 156 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 80 362 180 ) ( 82 362 180 ) ( 82 360 180 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 76 356 156 ) ( 82 362 180 ) ( 80 362 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 76 356 156 ) ( 76 354 156 ) ( 82 360 180 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 83 -{ -( 80 360 16 ) ( 80 360 12 ) ( 80 368 12 ) clip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 80 360 16 ) ( 784 360 16 ) ( 784 360 12 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 784 360 12 ) ( 784 368 12 ) ( 80 368 12 ) clip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 80 368 12 ) ( 784 368 12 ) ( 784 360 16 ) clip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 784 360 16 ) ( 784 368 12 ) ( 784 360 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 84 -{ -( 400 224 16 ) ( 400 225 16 ) ( 400 224 17 ) redplaid [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 224 16 ) ( 400 224 17 ) ( 401 224 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 224 16 ) ( 401 224 16 ) ( 400 225 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 448 256 96 ) ( 448 257 96 ) ( 449 256 96 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 448 256 24 ) ( 449 256 24 ) ( 448 256 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 448 256 24 ) ( 448 256 25 ) ( 448 257 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 85 -{ -( 328 256 16 ) ( 328 257 16 ) ( 328 256 17 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 328 256 16 ) ( 328 256 17 ) ( 329 256 16 ) surface_beige [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 328 256 4 ) ( 329 256 4 ) ( 328 257 4 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 448 264 112 ) ( 448 265 112 ) ( 449 264 112 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 448 264 24 ) ( 449 264 24 ) ( 448 264 25 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 488 264 24 ) ( 488 264 25 ) ( 488 265 24 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 86 -{ -( 80 600 16 ) ( 80 592 12 ) ( 80 600 12 ) clip [ -1.2246467991473532e-16 -1 0 0 ] [ 0 0 -1 0 ] 180 1 1 -( 784 592 12 ) ( 80 592 12 ) ( 80 600 16 ) clip [ -1 1.2246467991473532e-16 0 32 ] [ 1.2246467991473532e-16 1 0 0 ] 180 1 1 -( 80 600 12 ) ( 80 592 12 ) ( 784 592 12 ) clip [ 1 -1.2246467991473532e-16 0 -32 ] [ 1.2246467991473532e-16 1 0 0 ] 180 1 1 -( 784 600 16 ) ( 80 600 16 ) ( 80 600 12 ) clip [ -1 1.2246467991473532e-16 0 32 ] [ 0 0 -1 0 ] 180 1 1 -( 576 600 16 ) ( 576 600 12 ) ( 576 592 12 ) clip [ 1.2246467991473532e-16 1 0 0 ] [ 0 0 -1 0 ] 180 1 1 -} -// brush 87 -{ -( 80 936 16 ) ( 80 232 16 ) ( 80 232 12 ) clip [ -1.8369701987210297e-16 -1 0 56 ] [ 0 0 -1 0 ] 180 1 1 -( 80 360 16 ) ( 88 360 12 ) ( 80 360 12 ) clip [ 1 -1.8369701987210297e-16 0 23.999992 ] [ 0 0 -1 0 ] 180 1 1 -( 80 232 12 ) ( 88 232 12 ) ( 88 936 12 ) clip [ 1.8369701987210297e-16 1 0 -56 ] [ -1 1.8369701987210297e-16 0 -24 ] 270 1 1 -( 80 600 16 ) ( 80 600 12 ) ( 88 600 12 ) clip [ -1 1.8369701987210297e-16 0 -23.999992 ] [ 0 0 -1 0 ] 180 1 1 -( 88 936 12 ) ( 88 232 12 ) ( 80 232 16 ) clip [ -1.8369701987210297e-16 -1 0 56 ] [ -1 1.8369701987210297e-16 0 -24 ] 96.379364 1 1 -} -// brush 88 -{ -( 96 704 16 ) ( 96 705 16 ) ( 96 704 17 ) wall_brick [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 544 704 16 ) ( 544 704 17 ) ( 545 704 16 ) wall_brick [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 0.25 0.25 -( 544 704 12 ) ( 545 704 12 ) ( 544 705 12 ) skip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 0.25 0.25 -( 576 736 64 ) ( 576 737 64 ) ( 577 736 64 ) wall_brick [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 576 720 32 ) ( 577 720 32 ) ( 576 720 33 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 576 736 32 ) ( 576 736 33 ) ( 576 737 32 ) wall_brick [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 89 -{ -( 96 744 -20 ) ( 96 745 -20 ) ( 96 744 -19 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( -112 720 -20 ) ( -112 720 -19 ) ( -111 720 -20 ) skip [ 1 0 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( -112 744 -20 ) ( -111 744 -20 ) ( -112 745 -20 ) skip [ -1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 16 872 12 ) ( 16 873 12 ) ( 17 872 12 ) asphalt [ 1 0 0 96 ] [ 0 -1 0 108 ] 0 0.5 0.5 -( 16 1136 12 ) ( 17 1136 12 ) ( 16 1136 13 ) skip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 736 872 12 ) ( 736 872 13 ) ( 736 873 12 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 90 -{ -( 736 712 -16 ) ( 736 713 -16 ) ( 736 712 -15 ) wall_concrete1 [ 0 -1 0 112 ] [ 0 0 -1 0 ] 0 1 1 -( 144 720 -16 ) ( 144 720 -15 ) ( 145 720 -16 ) wall_concrete1 [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 144 712 12 ) ( 145 712 12 ) ( 144 713 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 272 840 16 ) ( 272 841 16 ) ( 273 840 16 ) ground_greybrick [ 1 0 0 0 ] [ 0 -1 0 -112 ] 0 0.5 0.5 -( 272 864 16 ) ( 273 864 16 ) ( 272 864 17 ) wall_concrete1 [ -1 0 0 128 ] [ 0 0 -1 0 ] 0 1 1 -( 848 840 16 ) ( 848 840 17 ) ( 848 841 16 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 91 -{ -( 784 704 16 ) ( 784 705 16 ) ( 784 704 17 ) wall_brick [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1344 704 16 ) ( 1344 704 17 ) ( 1345 704 16 ) wall_brick [ 1 0 0 128 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1344 704 12 ) ( 1345 704 12 ) ( 1344 705 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 1376 736 64 ) ( 1376 737 64 ) ( 1377 736 64 ) wall_brick [ 1 0 0 128 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 1376 720 32 ) ( 1377 720 32 ) ( 1376 720 33 ) wall_brick [ -1 0 0 -128 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1168 736 32 ) ( 1168 736 33 ) ( 1168 737 32 ) wall_brick [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 92 -{ -( 736 728 -20 ) ( 736 729 -20 ) ( 736 728 -19 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 608 864 -20 ) ( 608 864 -19 ) ( 609 864 -20 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 608 728 -20 ) ( 609 728 -20 ) ( 608 729 -20 ) skip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 736 856 12 ) ( 736 857 12 ) ( 737 856 12 ) asphalt [ 1 0 0 64 ] [ 0 -1 0 76 ] 0 0.5 0.5 -( 736 1136 12 ) ( 737 1136 12 ) ( 736 1136 13 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 848 856 12 ) ( 848 856 13 ) ( 848 857 12 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 93 -{ -( 848 872 -16 ) ( 848 873 -16 ) ( 848 872 -15 ) wall_concrete1 [ 0 -1 0 272 ] [ 0 0 -1 0 ] 0 1 1 -( 304 720 -16 ) ( 304 720 -15 ) ( 305 720 -16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 304 872 12 ) ( 305 872 12 ) ( 304 873 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 432 1000 16 ) ( 432 1001 16 ) ( 433 1000 16 ) ground_greybrick [ 1 0 0 -96 ] [ 0 -1 0 -112 ] 0 0.5 0.5 -( 432 1136 16 ) ( 433 1136 16 ) ( 432 1136 17 ) skip [ -1 0 0 32 ] [ 0 0 -1 0 ] 0 1 1 -( 944 1000 16 ) ( 944 1000 17 ) ( 944 1001 16 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 94 -{ -( 736 600 16 ) ( 736 592 12 ) ( 736 600 12 ) clip [ -0 -1 0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 992 592 12 ) ( 288 592 12 ) ( 288 600 16 ) clip [ 1 0 -0 0 ] [ 0 -0.894427190999916 -0.447213595499958 0 ] 0 1 1 -( 288 600 12 ) ( 288 592 12 ) ( 992 592 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 992 600 16 ) ( 288 600 16 ) ( 288 600 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 784 600 16 ) ( 784 600 12 ) ( 784 592 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 95 -{ -( 576 1048 16 ) ( 576 344 16 ) ( 576 344 12 ) clip [ 0 -1 0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 576 600 16 ) ( 584 600 12 ) ( 576 600 12 ) clip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 576 344 12 ) ( 584 344 12 ) ( 584 1048 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 576 704 16 ) ( 576 704 12 ) ( 584 704 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 584 1048 12 ) ( 584 344 12 ) ( 576 344 16 ) clip [ 0.894427190999916 0 -0.447213595499958 0 ] [ 0 -1 0 0 ] 0 1 1 -} -// brush 96 -{ -( 728 1048 12 ) ( 736 344 16 ) ( 728 344 12 ) clip [ 0.894427190999916 0 0.447213595499958 -29.020447 ] [ 0 -1 0 0 ] 0 1 1 -( 736 600 16 ) ( 736 600 12 ) ( 728 600 12 ) clip [ 1 0 0 -40 ] [ 0 0 -1 0 ] 0 1 1 -( 736 344 12 ) ( 728 1048 12 ) ( 728 344 12 ) clip [ -1 0 0 40 ] [ 0 -1 0 0 ] 0 1 1 -( 736 864 16 ) ( 728 864 12 ) ( 736 864 12 ) clip [ -1 0 0 40 ] [ 0 0 -1 0 ] 0 1 1 -( 736 1048 16 ) ( 736 344 12 ) ( 736 344 16 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 97 -{ -( 840 1312 12 ) ( 848 608 16 ) ( 840 608 12 ) clip [ 0.894427190999916 -0 0.447213595499958 0 ] [ -0 -1 0 0 ] 0 1 1 -( 848 864 16 ) ( 848 864 12 ) ( 840 864 12 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 848 608 12 ) ( 840 1312 12 ) ( 840 608 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 848 1136 16 ) ( 840 1136 12 ) ( 848 1136 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 848 1312 16 ) ( 848 608 12 ) ( 848 608 16 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 98 -{ -( 736 864 16 ) ( 736 864 12 ) ( 736 872 12 ) clip [ 0 -1 0 -8 ] [ 0 0 -1 0 ] 0 1 1 -( 144 864 16 ) ( 848 864 16 ) ( 848 864 12 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 848 864 12 ) ( 848 872 12 ) ( 144 872 12 ) clip [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 1 1 -( 144 872 12 ) ( 848 872 12 ) ( 848 864 16 ) clip [ 1 0 0 0 ] [ 0 -1 0 -8 ] 0 1 1 -( 848 864 16 ) ( 848 872 12 ) ( 848 864 12 ) clip [ 0 1 0 8 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 99 -{ -( 728 872 12 ) ( 736 864 16 ) ( 728 864 12 ) clip [ 0.894427190999916 -0 0.447213595499958 0 ] [ -0 -1 0 0 ] 0 1 1 -( 728 864 12 ) ( 736 864 16 ) ( 736 864 12 ) clip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 736 864 12 ) ( 736 872 12 ) ( 728 872 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 728 872 12 ) ( 736 872 12 ) ( 736 864 16 ) clip [ 1 -0 0 0 ] [ -0 -0.894427190999916 0.447213595499958 0 ] 0 1 1 -( 736 864 16 ) ( 736 872 12 ) ( 736 864 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 100 -{ -( 728 592 12 ) ( 728 600 12 ) ( 736 600 16 ) clip [ 0.894427190999916 -0 0.447213595499958 0 ] [ -0 -1 0 0 ] 0 1 1 -( 728 592 12 ) ( 736 600 16 ) ( 736 592 12 ) clip [ 1 0 -0 0 ] [ 0 -0.894427190999916 -0.447213595499958 0 ] 0 1 1 -( 736 600 12 ) ( 728 592 12 ) ( 736 592 12 ) clip [ -1 0 -0 0 ] [ -0 -1 0 0 ] 0 1 1 -( 728 600 12 ) ( 736 600 12 ) ( 736 600 16 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 736 600 16 ) ( 736 600 12 ) ( 736 592 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 101 -{ -( 576 600 16 ) ( 576 592 12 ) ( 576 600 12 ) clip [ -0 -1 0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 584 592 12 ) ( 576 592 12 ) ( 576 600 16 ) clip [ 1 0 -0 0 ] [ 0 -0.894427190999916 -0.447213595499958 0 ] 0 1 1 -( 576 600 12 ) ( 576 592 12 ) ( 584 592 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 584 600 12 ) ( 576 600 16 ) ( 576 600 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 584 592 12 ) ( 576 600 16 ) ( 584 600 12 ) clip [ 0.894427190999916 0 -0.447213595499958 0 ] [ 0 -1 -0 0 ] 0 1 1 -} -// brush 102 -{ -( 576 704 16 ) ( 576 704 12 ) ( 576 712 12 ) clip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 584 704 12 ) ( 576 704 12 ) ( 576 704 16 ) clip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 576 704 12 ) ( 584 712 12 ) ( 576 712 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 584 712 12 ) ( 576 704 16 ) ( 576 712 12 ) clip [ 1 0 0 0 ] [ 0 -0.894427190999916 0.447213595499958 0 ] 0 1 1 -( 584 712 12 ) ( 584 704 12 ) ( 576 704 16 ) clip [ 0.894427190999916 0 -0.447213595499958 0 ] [ 0 -1 0 0 ] 0 1 1 -} -// brush 103 -{ -( 1186 988 16 ) ( 1186 989 16 ) ( 1186 988 17 ) clip [ 0 -1 0 28 ] [ 0 0 -1 0 ] 0 1 1 -( 1180 990 16 ) ( 1180 990 17 ) ( 1181 990 16 ) clip [ 1 0 0 -44 ] [ 0 0 -1 0 ] 0 1 1 -( 1180 988 16 ) ( 1181 988 16 ) ( 1180 989 16 ) clip [ -1 0 0 44 ] [ 0 -1 0 28 ] 0 1 1 -( 1276 1084 44 ) ( 1276 1085 44 ) ( 1277 1084 44 ) clip [ 1 0 0 -44 ] [ 0 -1 0 28 ] 0 1 1 -( 1276 1072 32 ) ( 1277 1072 32 ) ( 1276 1072 33 ) clip [ -1 0 0 44 ] [ 0 0 -1 0 ] 0 1 1 -( 1256 1084 32 ) ( 1256 1084 33 ) ( 1256 1085 32 ) clip [ 0 1 0 -28 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 104 -{ -( 944 976 16 ) ( 944 977 16 ) ( 944 976 17 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 952 976 16 ) ( 952 976 17 ) ( 953 976 16 ) surface_beige [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 952 976 16 ) ( 953 976 16 ) ( 952 977 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 1000 984 80 ) ( 1000 985 80 ) ( 1001 984 80 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 1000 984 24 ) ( 1001 984 24 ) ( 1000 984 25 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 992 984 24 ) ( 992 984 25 ) ( 992 985 24 ) surface_beige_edge [ 0 1 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 105 -{ -( 1074 988 16 ) ( 1074 989 16 ) ( 1074 988 17 ) clip [ 0 -1 0 28 ] [ 0 0 -1 0 ] 0 1 1 -( 1068 990 16 ) ( 1068 990 17 ) ( 1069 990 16 ) clip [ 1 0 0 4 ] [ 0 0 -1 0 ] 0 1 1 -( 1068 988 16 ) ( 1069 988 16 ) ( 1068 989 16 ) clip [ -1 0 0 -4 ] [ 0 -1 0 28 ] 0 1 1 -( 1164 1084 44 ) ( 1164 1085 44 ) ( 1165 1084 44 ) clip [ 1 0 0 4 ] [ 0 -1 0 28 ] 0 1 1 -( 1164 1072 32 ) ( 1165 1072 32 ) ( 1164 1072 33 ) clip [ -1 0 0 -4 ] [ 0 0 -1 0 ] 0 1 1 -( 1144 1084 32 ) ( 1144 1084 33 ) ( 1144 1085 32 ) clip [ 0 1 0 -28 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 106 -{ -( 1040 1032 16 ) ( 1040 1033 16 ) ( 1040 1032 17 ) surface_beige [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1040 984 16 ) ( 1040 984 17 ) ( 1041 984 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1040 1032 16 ) ( 1041 1032 16 ) ( 1040 1033 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 1048 1072 96 ) ( 1048 1073 96 ) ( 1049 1072 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 1048 1072 24 ) ( 1049 1072 24 ) ( 1048 1072 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1048 1072 24 ) ( 1048 1072 25 ) ( 1048 1073 24 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 107 -{ -( 1040 1024 16 ) ( 1040 1025 16 ) ( 1040 1024 17 ) surface_beige_edge [ 0 0.9999999999999961 8.742278000372473e-08 32 ] [ 0 -8.742278000372473e-08 0.9999999999999961 0 ] 180 0.5 0.5 -( 1040 976 16 ) ( 1040 976 17 ) ( 1041 976 16 ) surface_beige_edge [ -0.9999999999999961 0 8.742278000372473e-08 -16 ] [ 8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 -( 1040 1024 16 ) ( 1041 1024 16 ) ( 1040 1025 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 1048 1064 80 ) ( 1048 1065 80 ) ( 1049 1064 80 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 1048 984 24 ) ( 1049 984 24 ) ( 1048 984 25 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1048 1064 24 ) ( 1048 1064 25 ) ( 1048 1065 24 ) surface_beige_edge [ 0 1 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 108 -{ -( 992 976 16 ) ( 992 977 16 ) ( 992 976 17 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1000 976 16 ) ( 1000 976 17 ) ( 1001 976 16 ) surface_beige [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1000 976 80 ) ( 1001 976 80 ) ( 1000 977 80 ) surface_beige_edge [ 4.371138994063005e-08 0.9999999999999989 -0 32 ] [ -0.9999999999999989 4.371138994063005e-08 0 0 ] -90 0.5 0.5 -( 1048 984 96 ) ( 1048 985 96 ) ( 1049 984 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 1048 984 24 ) ( 1049 984 24 ) ( 1048 984 25 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1040 984 24 ) ( 1040 984 25 ) ( 1040 985 24 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 109 -{ -( 1148 1052 16 ) ( 1148 1053 16 ) ( 1148 1052 17 ) clip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1148 1052 16 ) ( 1148 1052 17 ) ( 1149 1052 16 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1148 1052 16 ) ( 1149 1052 16 ) ( 1148 1053 16 ) clip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 1180 1072 34 ) ( 1180 1073 34 ) ( 1181 1072 34 ) clip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 1180 1072 20 ) ( 1181 1072 20 ) ( 1180 1072 21 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1182 1072 20 ) ( 1182 1072 21 ) ( 1182 1073 20 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 110 -{ -( 944 880 0 ) ( 944 881 0 ) ( 944 880 1 ) skip [ 0 -1 0 0 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -( 1024 888 0 ) ( 1024 888 1 ) ( 1025 888 0 ) skip [ 1 0 0 32 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -( 1024 880 0 ) ( 1025 880 0 ) ( 1024 881 0 ) skip [ -1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 1056 928 16 ) ( 1056 929 16 ) ( 1057 928 16 ) carpet_dullgreen [ 1 0 0 96 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 1056 1072 16 ) ( 1057 1072 16 ) ( 1056 1072 17 ) skip [ -1 0 0 -32 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -( 1280 928 16 ) ( 1280 928 17 ) ( 1280 929 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -} -// brush 111 -{ -( 1128 888 16 ) ( 1128 889 16 ) ( 1128 888 17 ) clip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1104 888 16 ) ( 1104 888 17 ) ( 1105 888 16 ) clip [ 1 0 0 32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1104 888 16 ) ( 1105 888 16 ) ( 1104 889 16 ) clip [ -1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 1176 920 48 ) ( 1176 921 48 ) ( 1177 920 48 ) clip [ 1 0 0 32 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 1176 912 24 ) ( 1177 912 24 ) ( 1176 912 25 ) clip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1192 920 24 ) ( 1192 920 25 ) ( 1192 921 24 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 112 -{ -( 1040 1024 32 ) ( 1040 1025 32 ) ( 1040 1024 33 ) skip [ 0 -1 0 0 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -( 1040 976 32 ) ( 1040 976 33 ) ( 1041 976 32 ) surface_beige_edge [ -0.9999999999999961 0 8.742278000372473e-08 -16 ] [ 8.742278000372473e-08 0 0.9999999999999961 32 ] 180 0.5 0.5 -( 1040 1024 80 ) ( 1041 1024 80 ) ( 1040 1025 80 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 1048 1064 96 ) ( 1048 1065 96 ) ( 1049 1064 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 1048 984 40 ) ( 1049 984 40 ) ( 1048 984 41 ) skip [ -1 0 0 0 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -( 1048 1064 40 ) ( 1048 1064 41 ) ( 1048 1065 40 ) surface_beige_edge [ 0 1 0 -32 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -} -// brush 113 -{ -( 944 976 16 ) ( 944 977 16 ) ( 944 976 17 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 944 976 16 ) ( 944 976 17 ) ( 945 976 16 ) surface_beige [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 944 976 80 ) ( 945 976 80 ) ( 944 977 80 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 992 984 96 ) ( 992 985 96 ) ( 993 984 96 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 992 984 24 ) ( 993 984 24 ) ( 992 984 25 ) surface_beige [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 992 984 24 ) ( 992 984 25 ) ( 992 985 24 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -} diff --git a/maps/autosave/cafemotel.6.map.import b/maps/autosave/cafemotel.6.map.import deleted file mode 100644 index e3e615f..0000000 --- a/maps/autosave/cafemotel.6.map.import +++ /dev/null @@ -1,14 +0,0 @@ -[remap] - -importer="func_godot.map" -type="Resource" -uid="uid://o4h76xttf4wo" -path="res://.godot/imported/cafemotel.6.map-7ad2b949d0b7a10286b02931fcb7b51f.tres" - -[deps] - -source_file="res://maps/autosave/cafemotel.6.map" -dest_files=["res://.godot/imported/cafemotel.6.map-7ad2b949d0b7a10286b02931fcb7b51f.tres"] - -[params] - diff --git a/maps/autosave/cafemotel.7.map b/maps/autosave/cafemotel.7.map deleted file mode 100644 index 255fc54..0000000 --- a/maps/autosave/cafemotel.7.map +++ /dev/null @@ -1,1102 +0,0 @@ -// Game: maskmaker -// Format: Valve -// entity 0 -{ -"mapversion" "220" -"classname" "worldspawn" -// brush 0 -{ -( -16 -184 -16 ) ( -16 -183 -16 ) ( -16 -184 -15 ) skip [ 0 -1 0 32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( -64 -184 -16 ) ( -64 -184 -15 ) ( -63 -184 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( -64 -184 -16 ) ( -63 -184 -16 ) ( -64 -183 -16 ) skip [ -1 0 0 0 ] [ 0 -1 0 32 ] 0 0.25 0.25 -( 64 -56 16 ) ( 64 -55 16 ) ( 65 -56 16 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 -1 0 120 ] 0 0.25 0.25 -( 64 -56 16 ) ( 65 -56 16 ) ( 64 -56 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 784 -56 16 ) ( 784 -56 17 ) ( 784 -55 16 ) skip [ 0 1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 1 -{ -( 80 72 0 ) ( 80 73 0 ) ( 80 72 1 ) surface_green [ 0 4.371139006309477e-08 -0.999999999999999 32 ] [ 0 0.999999999999999 4.371139006309477e-08 24 ] 90 0.5 0.5 -( 80 -48 0 ) ( 80 -48 1 ) ( 81 -48 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 72 16 ) ( 81 72 16 ) ( 80 73 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 104 52 ) ( 112 105 52 ) ( 113 104 52 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 256 16 ) ( 113 256 16 ) ( 112 256 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 88 104 16 ) ( 88 104 17 ) ( 88 105 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 2 -{ -( 80 256 0 ) ( 80 257 0 ) ( 80 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 256 0 ) ( 80 256 1 ) ( 81 256 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 256 16 ) ( 81 256 16 ) ( 80 257 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 288 96 ) ( 112 289 96 ) ( 113 288 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 264 16 ) ( 113 264 16 ) ( 112 264 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 88 288 16 ) ( 88 288 17 ) ( 88 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 3 -{ -( 80 256 -8 ) ( 80 257 -8 ) ( 80 256 -7 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 16 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 176 256 -8 ) ( 176 256 -7 ) ( 177 256 -8 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 176 256 96 ) ( 177 256 96 ) ( 176 257 96 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 208 288 104 ) ( 208 289 104 ) ( 209 288 104 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 208 264 8 ) ( 209 264 8 ) ( 208 264 9 ) surface_green_edge [ 4.371139006309477e-08 0 -0.999999999999999 16 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 312 288 8 ) ( 312 288 9 ) ( 312 289 8 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 4 -{ -( 80 72 72 ) ( 80 73 72 ) ( 80 72 73 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 16 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 -48 72 ) ( 80 -48 73 ) ( 81 -48 72 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 80 72 96 ) ( 81 72 96 ) ( 80 73 96 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 104 104 ) ( 112 105 104 ) ( 113 104 104 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 256 88 ) ( 113 256 88 ) ( 112 256 89 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 88 104 88 ) ( 88 104 89 ) ( 88 105 88 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 5 -{ -( 88 256 0 ) ( 88 257 0 ) ( 88 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 256 0 ) ( 80 256 1 ) ( 81 256 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 256 16 ) ( 81 256 16 ) ( 80 257 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 288 52 ) ( 112 289 52 ) ( 113 288 52 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 264 16 ) ( 113 264 16 ) ( 112 264 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 144 288 16 ) ( 144 288 17 ) ( 144 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 6 -{ -( 144 256 0 ) ( 144 257 0 ) ( 144 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 144 256 0 ) ( 144 256 1 ) ( 145 256 0 ) surface_green [ 1 0 0 32 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 144 256 16 ) ( 145 256 16 ) ( 144 257 16 ) surface_green [ -1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 176 288 96 ) ( 176 289 96 ) ( 177 288 96 ) surface_green [ 1 0 0 32 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 176 264 16 ) ( 177 264 16 ) ( 176 264 17 ) surface_green [ -1 0 0 -32 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 160 288 16 ) ( 160 288 17 ) ( 160 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 7 -{ -( 208 256 0 ) ( 208 257 0 ) ( 208 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 208 256 0 ) ( 208 256 1 ) ( 209 256 0 ) surface_green [ 1 0 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 208 256 16 ) ( 209 256 16 ) ( 208 257 16 ) surface_green [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 240 288 96 ) ( 240 289 96 ) ( 241 288 96 ) surface_green [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 240 264 16 ) ( 241 264 16 ) ( 240 264 17 ) surface_green [ -1 0 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 224 288 16 ) ( 224 288 17 ) ( 224 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 8 -{ -( 88 128 8 ) ( 88 129 8 ) ( 88 128 9 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 88 -56 8 ) ( 88 -56 9 ) ( 89 -56 8 ) skip [ 1 0 0 0 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 88 128 8 ) ( 89 128 8 ) ( 88 129 8 ) skip [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.25 0.25 -( 128 176 16 ) ( 128 177 16 ) ( 129 176 16 ) floor_wood [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.25 0.25 -( 128 264 16 ) ( 129 264 16 ) ( 128 264 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 320 176 16 ) ( 320 176 17 ) ( 320 177 16 ) skip [ 0 1 0 56 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -} -// brush 9 -{ -( -16 64 -16 ) ( -16 65 -16 ) ( -16 64 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( -64 -56 -16 ) ( -64 -56 -15 ) ( -63 -56 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( -64 64 -16 ) ( -63 64 -16 ) ( -64 65 -16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 64 192 16 ) ( 64 193 16 ) ( 65 192 16 ) ground_cobblestone1 [ -4.371139006309477e-08 -0.999999999999999 0 0 ] [ -0.999999999999999 4.371139006309477e-08 0 106 ] 90 0.25 0.25 -( 64 264 16 ) ( 65 264 16 ) ( 64 264 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 80 192 16 ) ( 80 192 17 ) ( 80 193 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 10 -{ -( 72 72 88 ) ( 72 73 88 ) ( 72 72 89 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 16 ] 90 0.5 0.5 -( 80 256 88 ) ( 80 256 89 ) ( 81 256 88 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 -( 80 72 104 ) ( 81 72 104 ) ( 80 73 104 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 104 112 ) ( 112 105 112 ) ( 113 104 112 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 272 104 ) ( 113 272 104 ) ( 112 272 105 ) surface_green_edge [ 4.371139006309477e-08 0 -0.999999999999999 -32 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 312 104 104 ) ( 312 104 105 ) ( 312 105 104 ) surface_green_edge [ 0 -4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 -0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -} -// brush 11 -{ -( 72 -112 88 ) ( 72 -111 88 ) ( 72 -112 89 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 16 ] 90 0.5 0.5 -( 80 -48 88 ) ( 80 -48 89 ) ( 81 -48 88 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 -( 80 -112 104 ) ( 81 -112 104 ) ( 80 -111 104 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 -( 112 -80 112 ) ( 112 -79 112 ) ( 113 -80 112 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 -( 112 256 104 ) ( 113 256 104 ) ( 112 256 105 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 -( 88 -80 104 ) ( 88 -80 105 ) ( 88 -79 104 ) surface_green [ 0 1 0 -8 ] [ 0 0 -1 -24 ] 0 0.5 0.5 -} -// brush 12 -{ -( 72 72 128 ) ( 72 73 128 ) ( 72 72 129 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 80 256 128 ) ( 80 256 129 ) ( 81 256 128 ) skip [ 1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 80 72 144 ) ( 81 72 144 ) ( 80 73 144 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 104 152 ) ( 112 105 152 ) ( 113 104 152 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 272 144 ) ( 113 272 144 ) ( 112 272 145 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 312 104 144 ) ( 312 104 145 ) ( 312 105 144 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -} -// brush 13 -{ -( 72 -112 128 ) ( 72 -111 128 ) ( 72 -112 129 ) surface_green [ 0 -1 0 8 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 80 -48 128 ) ( 80 -48 129 ) ( 81 -48 128 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 80 -112 144 ) ( 81 -112 144 ) ( 80 -111 144 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 -( 112 -80 152 ) ( 112 -79 152 ) ( 113 -80 152 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 256 144 ) ( 113 256 144 ) ( 112 256 145 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 88 -80 144 ) ( 88 -80 145 ) ( 88 -79 144 ) skip [ 0 1 0 -8 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 14 -{ -( 80 256 48 ) ( 80 257 48 ) ( 80 256 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -31.99997 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 256 48 ) ( 80 256 49 ) ( 81 256 48 ) skip [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 80 256 120 ) ( 81 256 120 ) ( 80 257 120 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 288 144 ) ( 112 289 144 ) ( 113 288 144 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 264 64 ) ( 113 264 64 ) ( 112 264 65 ) surface_green_edge [ 4.371139006309477e-08 0 -0.999999999999999 -31.99997 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 312 288 64 ) ( 312 288 65 ) ( 312 289 64 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 15 -{ -( 80 248 48 ) ( 80 249 48 ) ( 80 248 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32.000015 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 -48 48 ) ( 80 -48 49 ) ( 81 -48 48 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 80 248 112 ) ( 81 248 112 ) ( 80 249 112 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 -( 112 280 144 ) ( 112 281 144 ) ( 113 280 144 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 -( 112 256 64 ) ( 113 256 64 ) ( 112 256 65 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 88 280 64 ) ( 88 280 65 ) ( 88 281 64 ) skip [ 0 1 0 8 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 16 -{ -( 88 128 120 ) ( 88 129 120 ) ( 88 128 121 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 56 ] 0 0.25 0.25 -( 88 -48 120 ) ( 88 -48 121 ) ( 89 -48 120 ) skip [ 1 0 0 0 ] [ 0 0 -1 56 ] 0 0.25 0.25 -( 88 128 120 ) ( 89 128 120 ) ( 88 129 120 ) ground_wood [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.5 0.5 -( 128 176 128 ) ( 128 177 128 ) ( 129 176 128 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.25 0.25 -( 128 256 128 ) ( 129 256 128 ) ( 128 256 129 ) skip [ -1 0 0 0 ] [ 0 0 -1 56 ] 0 0.25 0.25 -( 312 176 128 ) ( 312 176 129 ) ( 312 177 128 ) skip [ 0 1 0 56 ] [ 0 0 -1 56 ] 0 0.25 0.25 -} -// brush 17 -{ -( 224 256 0 ) ( 224 257 0 ) ( 224 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 216 256 0 ) ( 216 256 1 ) ( 217 256 0 ) surface_green [ 1 0 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 216 256 16 ) ( 217 256 16 ) ( 216 257 16 ) surface_green [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 248 288 52 ) ( 248 289 52 ) ( 249 288 52 ) surface_green [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 248 264 16 ) ( 249 264 16 ) ( 248 264 17 ) surface_green [ -1 0 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 296 288 16 ) ( 296 288 17 ) ( 296 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 18 -{ -( 296 256 0 ) ( 296 257 0 ) ( 296 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 296 256 0 ) ( 296 256 1 ) ( 297 256 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 296 256 16 ) ( 297 256 16 ) ( 296 257 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 328 288 96 ) ( 328 289 96 ) ( 329 288 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 328 264 16 ) ( 329 264 16 ) ( 328 264 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 312 288 16 ) ( 312 288 17 ) ( 312 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 19 -{ -( 640 64 0 ) ( 640 65 0 ) ( 640 64 1 ) skip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 0.5 0.5 -( 640 -56 0 ) ( 640 -56 1 ) ( 641 -56 0 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 640 64 0 ) ( 641 64 0 ) ( 640 65 0 ) skip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 0.5 0.5 -( 656 112 16 ) ( 656 113 16 ) ( 657 112 16 ) ground_cobblestone1 [ -4.371139006309477e-08 -0.999999999999999 0 0 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.25 0.25 -( 656 264 16 ) ( 657 264 16 ) ( 656 264 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 736 112 16 ) ( 736 112 17 ) ( 736 113 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 20 -{ -( 736 72 16 ) ( 736 73 16 ) ( 736 72 17 ) wall_brick_scrungly [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 472 -56 16 ) ( 472 -56 17 ) ( 473 -56 16 ) wall_brick_scrungly [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 472 72 16 ) ( 473 72 16 ) ( 472 73 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 504 104 96 ) ( 504 105 96 ) ( 505 104 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 504 264 32 ) ( 505 264 32 ) ( 504 264 33 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 784 104 32 ) ( 784 104 33 ) ( 784 105 32 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 21 -{ -( 640 64 96 ) ( 640 65 96 ) ( 640 64 97 ) skip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 0.25 0.25 -( 640 -56 96 ) ( 640 -56 97 ) ( 641 -56 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 64 96 ) ( 641 64 96 ) ( 640 65 96 ) wall_brick_scrungly [ 4.371139006309477e-08 -0.999999999999999 0 0 ] [ 0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.25 0.25 -( 656 112 256 ) ( 656 113 256 ) ( 657 112 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 656 264 112 ) ( 657 264 112 ) ( 656 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 736 112 112 ) ( 736 112 113 ) ( 736 113 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 22 -{ -( 736 72 96 ) ( 736 73 96 ) ( 736 72 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 472 -56 96 ) ( 472 -56 97 ) ( 473 -56 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 472 72 96 ) ( 473 72 96 ) ( 472 73 96 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 504 104 256 ) ( 504 105 256 ) ( 505 104 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 504 264 112 ) ( 505 264 112 ) ( 504 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 784 104 112 ) ( 784 104 113 ) ( 784 105 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 23 -{ -( 312 -56 96 ) ( 312 -55 96 ) ( 312 -56 97 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 368 -56 96 ) ( 368 -56 97 ) ( 369 -56 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 368 -56 104 ) ( 369 -56 104 ) ( 368 -55 104 ) skip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.25 0.25 -( 400 -24 256 ) ( 400 -23 256 ) ( 401 -24 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.25 0.25 -( 400 -48 112 ) ( 401 -48 112 ) ( 400 -48 113 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 -24 112 ) ( 640 -24 113 ) ( 640 -23 112 ) skip [ 0 1 0 32 ] [ 0 0 -1 11 ] 0 0.25 0.25 -} -// brush 24 -{ -( -16 264 -16 ) ( -16 265 -16 ) ( -16 264 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( -64 264 -16 ) ( -64 264 -15 ) ( -63 264 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( -64 264 12 ) ( -63 264 12 ) ( -64 265 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 64 392 16 ) ( 64 393 16 ) ( 65 392 16 ) ground_greybrick [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 64 360 16 ) ( 65 360 16 ) ( 64 360 17 ) wall_concrete1 [ -1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 -( 784 392 16 ) ( 784 392 17 ) ( 784 393 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -} -// brush 25 -{ -( 632 72 96 ) ( 632 73 96 ) ( 632 72 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 368 -48 96 ) ( 368 -48 97 ) ( 369 -48 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 368 72 112 ) ( 369 72 112 ) ( 368 73 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 400 104 256 ) ( 400 105 256 ) ( 401 104 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 400 264 112 ) ( 401 264 112 ) ( 400 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 104 112 ) ( 640 104 113 ) ( 640 105 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 26 -{ -( 320 72 96 ) ( 320 73 96 ) ( 320 72 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 360 -48 96 ) ( 360 -48 97 ) ( 361 -48 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 360 72 120 ) ( 361 72 120 ) ( 360 73 120 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 392 104 256 ) ( 392 105 256 ) ( 393 104 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 392 264 112 ) ( 393 264 112 ) ( 392 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 632 104 112 ) ( 632 104 113 ) ( 632 105 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 27 -{ -( 312 256 104 ) ( 312 257 104 ) ( 312 256 105 ) skip [ 0 1.6292067950285372e-07 -0.9999999999999866 -16 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 312 72 104 ) ( 312 72 105 ) ( 313 72 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 312 256 120 ) ( 313 256 120 ) ( 312 257 120 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 344 288 256 ) ( 344 289 256 ) ( 345 288 256 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 344 264 120 ) ( 345 264 120 ) ( 344 264 121 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 288 120 ) ( 320 288 121 ) ( 320 289 120 ) skip [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 28 -{ -( 312 144 32 ) ( 312 16 32 ) ( 312 144 16 ) surface_beige_edge [ 0 -1.3113417006681922e-07 0.9999999999999913 31.99997 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 -48 ] 270 0.5 0.5 -( 320 16 16 ) ( 312 16 16 ) ( 320 16 32 ) surface_beige_edge [ 0.9999999999999957 0 8.742277997596912e-08 16 ] [ -8.742277997596912e-08 0 0.9999999999999957 0 ] 180 0.5 0.5 -( 312 144 16 ) ( 312 16 16 ) ( 320 144 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -56 ] 0 1 1 -( 320 144 32 ) ( 320 16 32 ) ( 312 144 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 312 256 16 ) ( 320 256 16 ) ( 312 256 32 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 144 16 ) ( 320 16 16 ) ( 320 144 32 ) skip [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 29 -{ -( 312 -48 16 ) ( 312 -32 16 ) ( 312 -48 32 ) surface_beige_edge [ 0 -1.3113417006681922e-07 0.9999999999999913 31.999966 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 -47.999992 ] 270 0.5 0.5 -( 312 -40 32 ) ( 320 -40 32 ) ( 312 -40 16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 -48 16 ) ( 320 -32 16 ) ( 312 -48 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -56 ] 0 1 1 -( 312 -48 32 ) ( 312 -32 32 ) ( 320 -48 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 312 -32 32 ) ( 312 -32 16 ) ( 320 -32 32 ) surface_beige_edge [ 1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 -48 32 ) ( 320 -32 32 ) ( 320 -48 16 ) skip [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 30 -{ -( 312 144 88 ) ( 312 16 88 ) ( 312 144 32 ) surface_beige [ 0 -1.3113417006681922e-07 0.9999999999999913 31.999962 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 -48 ] 270 0.5 0.5 -( 320 16 32 ) ( 312 16 32 ) ( 320 16 88 ) surface_beige_edge [ 0.9999999999999961 0 8.742278000372473e-08 16 ] [ -8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 -( 312 144 32 ) ( 312 16 32 ) ( 320 144 32 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 320 144 104 ) ( 320 16 104 ) ( 312 144 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 312 256 32 ) ( 320 256 32 ) ( 312 256 88 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 144 32 ) ( 320 16 32 ) ( 320 144 88 ) skip [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 31 -{ -( 312 -48 32 ) ( 312 -32 32 ) ( 312 -48 88 ) surface_beige_edge [ 0 0.9999999999999785 2.0663206962145964e-07 31.999962 ] [ 0 -2.0663206962145964e-07 0.9999999999999785 -48 ] 180 0.5 0.5 -( 312 -48 88 ) ( 320 -48 88 ) ( 312 -48 32 ) skip [ 1 0 0 -16 ] [ 0 0 -1 16 ] 0 0.5 0.5 -( 320 -48 32 ) ( 320 -32 32 ) ( 312 -48 32 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 312 -48 96 ) ( 312 -32 96 ) ( 320 -48 96 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 312 -32 88 ) ( 312 -32 32 ) ( 320 -32 88 ) surface_beige_edge [ 0.9999999999999998 0 1.3234889800848443e-23 16 ] [ 1.3234889800848443e-23 0 -0.9999999999999998 0 ] 0 0.5 0.5 -( 320 -48 88 ) ( 320 -32 88 ) ( 320 -48 32 ) skip [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 32 -{ -( 312 144 120 ) ( 312 16 120 ) ( 312 144 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -15.9999695 ] [ 0 0.9999999999999866 1.6292067950285372e-07 48 ] 90 0.5 0.5 -( 320 16 104 ) ( 312 16 104 ) ( 320 16 120 ) surface_beige_edge [ 0.9999999999999961 0 8.742277995965608e-08 16 ] [ -8.742277995965608e-08 0 0.9999999999999961 -32 ] 180 0.5 0.5 -( 312 144 104 ) ( 312 16 104 ) ( 320 144 104 ) surface_beige_edge [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 320 144 120 ) ( 320 16 120 ) ( 312 144 120 ) surface_beige_edge [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 312 256 104 ) ( 320 256 104 ) ( 312 256 120 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 144 104 ) ( 320 16 104 ) ( 320 144 120 ) skip [ 0 1 0 48 ] [ 0 0 -1 48 ] 0 0.5 0.5 -} -// brush 33 -{ -( 312 -48 104 ) ( 312 -32 104 ) ( 312 -48 120 ) surface_beige_corner [ 0 -1 0 32 ] [ -0 -0 -1 -8 ] 0 0.5 0.5 -( 312 -48 120 ) ( 320 -48 120 ) ( 312 -48 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 48 ] 0 0.5 0.5 -( 320 -48 96 ) ( 320 -32 96 ) ( 312 -48 96 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 312 -48 120 ) ( 312 -32 120 ) ( 320 -48 120 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 312 -32 120 ) ( 312 -32 104 ) ( 320 -32 120 ) skip [ 1 0 0 16 ] [ 0 0 -1 32 ] 0 0.5 0.5 -( 320 -48 120 ) ( 320 -32 120 ) ( 320 -48 104 ) skip [ 0 1 0 48 ] [ 0 0 -1 48 ] 0 0.5 0.5 -} -// brush 34 -{ -( 312 -32 104 ) ( 312 -32 96 ) ( 312 16 104 ) surface_beige [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.99997 ] [ 0 0.9999999999999866 1.6292067950285372e-07 48 ] 90 0.5 0.5 -( 320 -24 104 ) ( 320 -24 96 ) ( 312 -24 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 312 16 96 ) ( 312 -32 96 ) ( 320 16 96 ) surface_beige_edge [ 1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 320 16 104 ) ( 320 -32 104 ) ( 312 16 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 312 8 104 ) ( 312 8 96 ) ( 320 8 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 -( 320 16 104 ) ( 320 16 96 ) ( 320 -32 104 ) skip [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 35 -{ -( 488 264 96 ) ( 488 72 96 ) ( 488 264 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 640 -48 16 ) ( 328 -48 16 ) ( 640 -48 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 264 4 ) ( 328 264 4 ) ( 640 72 4 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 640 72 112 ) ( 328 72 112 ) ( 640 264 112 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 1 1 -( 640 264 96 ) ( 328 264 96 ) ( 640 264 16 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 72 96 ) ( 640 264 96 ) ( 640 72 16 ) wall_brick_scrungly [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 36 -{ -( 320 144 96 ) ( 320 16 96 ) ( 320 144 16 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 16 96 ) ( 328 16 96 ) ( 320 16 16 ) surface_beige_edge [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 144 16 ) ( 320 16 16 ) ( 328 144 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -56 ] 0 1 1 -( 328 144 112 ) ( 328 16 112 ) ( 320 144 112 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -56 ] 0 1 1 -( 320 136 16 ) ( 328 136 16 ) ( 320 136 96 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 328 144 16 ) ( 328 16 16 ) ( 328 144 96 ) surface_beige [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 37 -{ -( 320 -48 16 ) ( 320 -32 16 ) ( 320 -48 96 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 -48 96 ) ( 328 -48 96 ) ( 320 -48 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 328 -48 16 ) ( 328 -32 16 ) ( 320 -48 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -56 ] 0 1 1 -( 320 -48 96 ) ( 320 -32 96 ) ( 328 -48 96 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -56 ] 0 1 1 -( 320 -32 96 ) ( 320 -32 16 ) ( 328 -32 96 ) surface_beige_edge [ -0.9999999999999961 0 8.742278000372473e-08 16 ] [ 8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 -( 328 -48 96 ) ( 328 -32 96 ) ( 328 -48 16 ) surface_beige [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 38 -{ -( 320 8 8 ) ( 320 9 8 ) ( 320 8 9 ) skip [ 0 -1 0 -24 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 320 -48 8 ) ( 320 -48 9 ) ( 321 -48 8 ) skip [ 1 0 0 32 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 320 8 8 ) ( 321 8 8 ) ( 320 9 8 ) skip [ -1 0 0 -32 ] [ 0 -1 0 -24 ] 0 0.25 0.25 -( 360 56 16 ) ( 360 57 16 ) ( 361 56 16 ) floor_checkertiles [ 1 0 0 0 ] [ 0 -1 0 -96 ] 0 0.25 0.25 -( 360 104 16 ) ( 361 104 16 ) ( 360 104 17 ) skip [ -1 0 0 -32 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 448 56 16 ) ( 448 56 17 ) ( 448 57 16 ) skip [ 0 1 0 24 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -} -// brush 39 -{ -( 320 -32 104 ) ( 320 -32 96 ) ( 320 16 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.99997 ] [ 0 0.9999999999999866 1.6292067950285372e-07 48 ] 90 0.5 0.5 -( 328 -24 104 ) ( 328 -24 96 ) ( 320 -24 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 16 96 ) ( 320 -32 96 ) ( 328 16 96 ) surface_beige_edge [ -0.9999999999999961 8.742278000372473e-08 0 16 ] [ 8.742278000372473e-08 0.9999999999999961 0 48 ] 180 0.5 0.5 -( 328 16 104 ) ( 328 -32 104 ) ( 320 16 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 320 8 104 ) ( 320 8 96 ) ( 328 8 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 16 104 ) ( 328 16 96 ) ( 328 -32 104 ) surface_beige [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 40 -{ -( 312 -24 104 ) ( 312 -24 96 ) ( 312 24 104 ) surface_beige [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.99997 ] [ 0 0.9999999999999866 1.6292067950285372e-07 31.999998 ] 90 0.5 0.5 -( 320 8 104 ) ( 320 8 96 ) ( 312 8 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 312 24 96 ) ( 312 -24 96 ) ( 320 24 96 ) surface_beige_corner [ -4.371139006309477e-08 -0.999999999999999 0 -32 ] [ -0.999999999999999 4.371139006309477e-08 0 48 ] 90 0.5 0.5 -( 320 24 104 ) ( 320 -24 104 ) ( 312 24 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 312 16 104 ) ( 312 16 96 ) ( 320 16 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 -( 320 24 104 ) ( 320 24 96 ) ( 320 -24 104 ) skip [ 0 1 0 32 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 41 -{ -( 320 -24 104 ) ( 320 -24 96 ) ( 320 24 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.99997 ] [ 0 0.9999999999999866 1.6292067950285372e-07 31.999998 ] 90 0.5 0.5 -( 328 8 104 ) ( 328 8 96 ) ( 320 8 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 24 96 ) ( 320 -24 96 ) ( 328 24 96 ) surface_beige_corner [ -0.9999999999999961 8.742277995965608e-08 0 16 ] [ 8.742277995965608e-08 0.9999999999999961 0 32 ] 180 0.5 0.5 -( 328 24 104 ) ( 328 -24 104 ) ( 320 24 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 320 16 104 ) ( 320 16 96 ) ( 328 16 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 24 104 ) ( 328 24 96 ) ( 328 -24 104 ) surface_beige [ 0 1 0 32 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 42 -{ -( 312 -40 104 ) ( 312 -40 96 ) ( 312 8 104 ) surface_beige [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.999954 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 320 -32 104 ) ( 320 -32 96 ) ( 312 -32 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 312 8 96 ) ( 312 -40 96 ) ( 320 8 96 ) surface_beige_corner [ 1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 320 8 104 ) ( 320 -40 104 ) ( 312 8 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 -24 104 ) ( 312 -24 96 ) ( 320 -24 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 -( 320 8 104 ) ( 320 8 96 ) ( 320 -40 104 ) skip [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 43 -{ -( 320 -40 104 ) ( 320 -40 96 ) ( 320 8 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.999954 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 328 -32 104 ) ( 328 -32 96 ) ( 320 -32 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 8 96 ) ( 320 -40 96 ) ( 328 8 96 ) surface_beige_corner [ 1.3113417006681922e-07 0.9999999999999912 0 0 ] [ 0.9999999999999912 -1.3113417006681922e-07 0 48 ] 270 0.5 0.5 -( 328 8 104 ) ( 328 -40 104 ) ( 320 8 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 320 -24 104 ) ( 320 -24 96 ) ( 328 -24 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 8 104 ) ( 328 8 96 ) ( 328 -40 104 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 44 -{ -( 320 -56 104 ) ( 320 -56 96 ) ( 320 -8 104 ) skip [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.999954 ] [ 0 0.9999999999999866 1.6292067950285372e-07 32.000004 ] 90 0.5 0.5 -( 328 -48 104 ) ( 328 -48 96 ) ( 320 -48 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 -8 96 ) ( 320 -56 96 ) ( 328 -8 96 ) skip [ 1.3113417006681922e-07 0.9999999999999912 0 32 ] [ 0.9999999999999912 -1.3113417006681922e-07 0 48 ] 270 0.5 0.5 -( 328 -8 104 ) ( 328 -56 104 ) ( 320 -8 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 320 -32 104 ) ( 320 -32 96 ) ( 328 -32 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 -8 104 ) ( 328 -8 96 ) ( 328 -56 104 ) surface_beige [ 0 1 0 32 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 45 -{ -( 480 -40 16 ) ( 480 -39 16 ) ( 480 -40 17 ) surface_beige [ 0 -1 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 480 -40 16 ) ( 480 -40 17 ) ( 481 -40 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 480 -40 16 ) ( 481 -40 16 ) ( 480 -39 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 488 -24 104 ) ( 488 -23 104 ) ( 489 -24 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 488 136 24 ) ( 489 136 24 ) ( 488 136 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 488 -24 24 ) ( 488 -24 25 ) ( 488 -23 24 ) skip [ 0 1 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 46 -{ -( 432 -48 96 ) ( 432 -56 96 ) ( 432 -48 16 ) wall_brick_scrungly [ 0 1 0 224 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 -56 16 ) ( 432 -56 16 ) ( 640 -56 96 ) wall_brick_scrungly [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 -48 16 ) ( 432 -48 16 ) ( 640 -56 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 640 -56 96 ) ( 432 -56 96 ) ( 640 -48 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 640 -48 96 ) ( 432 -48 96 ) ( 640 -48 16 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 -56 96 ) ( 640 -48 96 ) ( 640 -56 16 ) wall_brick_scrungly [ 0 1 0 224 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 47 -{ -( 312 -56 16 ) ( 312 -48 16 ) ( 312 -56 96 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 312 -56 96 ) ( 384 -56 96 ) ( 312 -56 16 ) wall_brick_scrungly [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 312 -56 16 ) ( 384 -56 16 ) ( 312 -48 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 312 -48 96 ) ( 384 -48 96 ) ( 312 -56 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 312 -48 16 ) ( 384 -48 16 ) ( 312 -48 96 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 384 -56 16 ) ( 384 -56 96 ) ( 384 -48 16 ) wall_brick_scrungly [ 0 -1 0 -224 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 48 -{ -( 432 -40 104 ) ( 432 -48 104 ) ( 432 -40 16 ) surface_beige_edge [ 0 -0.9999999999999961 8.742278000372473e-08 -16 ] [ 0 8.742278000372473e-08 0.9999999999999961 0 ] 180 0.5 0.5 -( 448 -48 16 ) ( 432 -48 16 ) ( 448 -48 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 448 -40 16 ) ( 432 -40 16 ) ( 448 -48 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 448 -48 104 ) ( 432 -48 104 ) ( 448 -40 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 448 -40 104 ) ( 432 -40 104 ) ( 448 -40 16 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 480 -48 104 ) ( 480 -40 104 ) ( 480 -48 16 ) skip [ 0 1 0 56 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 49 -{ -( 328 -48 16 ) ( 328 -40 16 ) ( 328 -48 104 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 -( 328 -48 104 ) ( 384 -48 104 ) ( 328 -48 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 328 -48 16 ) ( 384 -48 16 ) ( 328 -40 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 328 -40 104 ) ( 384 -40 104 ) ( 328 -48 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 328 -40 16 ) ( 384 -40 16 ) ( 328 -40 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 384 -48 16 ) ( 384 -48 104 ) ( 384 -40 16 ) surface_beige_edge [ 0 -1 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 50 -{ -( 392 -48 104 ) ( 392 -48 96 ) ( 392 -40 104 ) surface_beige [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 -( 432 -48 104 ) ( 432 -48 96 ) ( 384 -48 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 432 -48 96 ) ( 432 -40 96 ) ( 384 -48 96 ) surface_beige_edge [ -4.371139006309477e-08 -0.999999999999999 0 -16 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.5 0.5 -( 432 -48 104 ) ( 384 -48 104 ) ( 432 -40 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 384 -40 104 ) ( 384 -40 96 ) ( 432 -40 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 424 -40 104 ) ( 424 -40 96 ) ( 424 -48 104 ) surface_beige [ 0 1 0 56 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 51 -{ -( 384 -56 8 ) ( 384 -55 8 ) ( 384 -56 9 ) ground_cobblestone1 [ 0 -1 0 -224 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 384 -56 8 ) ( 384 -56 9 ) ( 385 -56 8 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 384 -56 8 ) ( 385 -56 8 ) ( 384 -55 8 ) ground_cobblestone1 [ -1 0 0 0 ] [ 0 -1 0 -30 ] 0 0.25 0.25 -( 432 -48 16 ) ( 432 -47 16 ) ( 433 -48 16 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 -1 0 -30 ] 0 0.25 0.25 -( 432 -48 16 ) ( 433 -48 16 ) ( 432 -48 17 ) ground_cobblestone1 [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 432 -48 16 ) ( 432 -48 17 ) ( 432 -47 16 ) ground_cobblestone1 [ 0 1 0 224 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 52 -{ -( 312 -56 96 ) ( 312 -55 96 ) ( 312 -56 97 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 312 -56 96 ) ( 312 -56 97 ) ( 313 -56 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 312 -56 96 ) ( 313 -56 96 ) ( 312 -55 96 ) wall_brick [ -1 0 0 0 ] [ 0 -1 0 -118 ] 0 0.25 0.25 -( 360 -48 104 ) ( 360 -47 104 ) ( 361 -48 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.25 0.25 -( 360 -48 104 ) ( 361 -48 104 ) ( 360 -48 105 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 -48 104 ) ( 640 -48 105 ) ( 640 -47 104 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 53 -{ -( 80 48 152 ) ( 80 49 152 ) ( 80 48 153 ) wall_brick [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 176 -56 152 ) ( 176 -56 153 ) ( 177 -56 152 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 176 48 152 ) ( 177 48 152 ) ( 176 49 152 ) wall_brick [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 208 80 256 ) ( 208 81 256 ) ( 209 80 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 208 264 168 ) ( 209 264 168 ) ( 208 264 169 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 312 80 168 ) ( 312 80 169 ) ( 312 81 168 ) wall_brick [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 54 -{ -( 328 136 104 ) ( 328 137 104 ) ( 328 136 105 ) skip [ 0 -1 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 -( 392 -40 104 ) ( 392 -40 105 ) ( 393 -40 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 -( 392 136 104 ) ( 393 136 104 ) ( 392 137 104 ) ground_wood [ -1 0 0 0 ] [ 0 -1 0 -64 ] 0 0.5 0.5 -( 424 168 112 ) ( 424 169 112 ) ( 425 168 112 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 424 136 112 ) ( 425 136 112 ) ( 424 136 113 ) skip [ -1 0 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 -( 480 168 112 ) ( 480 168 113 ) ( 480 169 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 -} -// brush 55 -{ -( 424 -48 104 ) ( 424 -48 96 ) ( 424 -40 104 ) surface_beige [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 -( 440 -48 104 ) ( 440 -48 96 ) ( 392 -48 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 440 -48 96 ) ( 440 -40 96 ) ( 392 -48 96 ) surface_beige_corner [ -0.9999999999999961 8.742277995965608e-08 0 32 ] [ 8.742277995965608e-08 0.9999999999999961 0 16 ] 180 0.5 0.5 -( 440 -48 104 ) ( 392 -48 104 ) ( 440 -40 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 392 -40 104 ) ( 392 -40 96 ) ( 440 -40 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 432 -40 104 ) ( 432 -40 96 ) ( 432 -48 104 ) surface_beige [ 0 1 0 56 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 56 -{ -( 384 -48 104 ) ( 384 -48 96 ) ( 384 -40 104 ) surface_beige [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 -( 400 -48 104 ) ( 400 -48 96 ) ( 352 -48 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 -48 96 ) ( 400 -40 96 ) ( 352 -48 96 ) surface_beige_corner [ -4.371139006309477e-08 -0.999999999999999 0 -16 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.5 0.5 -( 400 -48 104 ) ( 352 -48 104 ) ( 400 -40 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 352 -40 104 ) ( 352 -40 96 ) ( 400 -40 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 392 -40 104 ) ( 392 -40 96 ) ( 392 -48 104 ) surface_beige [ 0 1 0 56 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 57 -{ -( 328 112 16 ) ( 328 113 16 ) ( 328 112 17 ) redplaid [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 -( 328 104 16 ) ( 328 104 17 ) ( 329 104 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 328 112 16 ) ( 329 112 16 ) ( 328 113 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 -( 352 136 48 ) ( 352 137 48 ) ( 353 136 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 -( 352 136 24 ) ( 353 136 24 ) ( 352 136 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 136 24 ) ( 400 136 25 ) ( 400 137 24 ) redplaid [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 58 -{ -( 328 56 16 ) ( 328 57 16 ) ( 328 56 17 ) redplaid [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 -( 328 24 16 ) ( 328 24 17 ) ( 329 24 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 328 56 16 ) ( 329 56 16 ) ( 328 57 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 -( 360 104 48 ) ( 360 105 48 ) ( 361 104 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 -( 360 104 24 ) ( 361 104 24 ) ( 360 104 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 360 104 24 ) ( 360 104 25 ) ( 360 105 24 ) redplaid [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 59 -{ -( 448 -8 16 ) ( 448 -7 16 ) ( 448 -8 17 ) redplaid [ 0 -1 0 -184 ] [ 0 0 -1 0 ] 0 1 1 -( 448 -40 16 ) ( 448 -40 17 ) ( 449 -40 16 ) redplaid [ 1 0 0 -120 ] [ 0 0 -1 0 ] 0 1 1 -( 448 -8 16 ) ( 449 -8 16 ) ( 448 -7 16 ) redplaid [ -1 0 0 120 ] [ 0 -1 0 -184 ] 0 1 1 -( 480 40 48 ) ( 480 41 48 ) ( 481 40 48 ) redplaid [ 1 0 0 -120 ] [ 0 -1 0 -184 ] 0 1 1 -( 480 136 24 ) ( 481 136 24 ) ( 480 136 25 ) redplaid [ -1 0 0 120 ] [ 0 0 -1 0 ] 0 1 1 -( 480 40 24 ) ( 480 40 25 ) ( 480 41 24 ) redplaid [ 0 1 0 184 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 60 -{ -( -16 360 -20 ) ( -16 361 -20 ) ( -16 360 -19 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( -64 360 -20 ) ( -64 360 -19 ) ( -63 360 -20 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( -64 360 -20 ) ( -63 360 -20 ) ( -64 361 -20 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 64 488 12 ) ( 64 489 12 ) ( 65 488 12 ) asphalt [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 64 600 12 ) ( 65 600 12 ) ( 64 600 13 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 784 488 12 ) ( 784 488 13 ) ( 784 489 12 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 61 -{ -( -16 360 -16 ) ( -16 361 -16 ) ( -16 360 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 -( -64 360 -16 ) ( -64 360 -15 ) ( -63 360 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 -( -64 360 12 ) ( -63 360 12 ) ( -64 361 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 64 488 16 ) ( 64 489 16 ) ( 65 488 16 ) ground_greybrick [ -4.371139006309477e-08 -0.999999999999999 0 0 ] [ -0.999999999999999 4.371139006309477e-08 0 73 ] 90 0.5 0.5 -( 64 600 16 ) ( 65 600 16 ) ( 64 600 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 -( 80 488 16 ) ( 80 488 17 ) ( 80 489 16 ) wall_concrete1 [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 1 1 -} -// brush 62 -{ -( -16 600 -16 ) ( -16 601 -16 ) ( -16 600 -15 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 16 ] 0 0.5 0.5 -( -64 600 -16 ) ( -64 600 -15 ) ( -63 600 -16 ) wall_concrete1 [ 1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 -( -64 600 12 ) ( -63 600 12 ) ( -64 601 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 64 728 16 ) ( 64 729 16 ) ( 65 728 16 ) ground_greybrick [ 1 0 0 0 ] [ 0 -1 0 48 ] 0 0.5 0.5 -( 64 704 16 ) ( 65 704 16 ) ( 64 704 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 -( 576 728 16 ) ( 576 728 17 ) ( 576 729 16 ) wall_concrete1 [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 63 -{ -( 736 600 -16 ) ( 736 601 -16 ) ( 736 600 -15 ) wall_concrete1 [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 144 600 -16 ) ( 144 600 -15 ) ( 145 600 -16 ) wall_concrete1 [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 144 600 12 ) ( 145 600 12 ) ( 144 601 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 272 728 16 ) ( 272 729 16 ) ( 273 728 16 ) ground_greybrick [ 1 0 0 0 ] [ 0 -1 0 48 ] 0 0.5 0.5 -( 272 720 16 ) ( 273 720 16 ) ( 272 720 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 784 728 16 ) ( 784 728 17 ) ( 784 729 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 64 -{ -( 576 600 -20 ) ( 576 601 -20 ) ( 576 600 -19 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( -112 600 -20 ) ( -112 600 -19 ) ( -111 600 -20 ) skip [ 1 0 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( -112 600 -20 ) ( -111 600 -20 ) ( -112 601 -20 ) skip [ -1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 16 728 12 ) ( 16 729 12 ) ( 17 728 12 ) asphalt [ 1 0 0 96 ] [ 0 -1 0 40 ] 0 0.5 0.5 -( 16 720 12 ) ( 17 720 12 ) ( 16 720 13 ) skip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 736 728 12 ) ( 736 728 13 ) ( 736 729 12 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 65 -{ -( 64 336 24 ) ( 64 337 24 ) ( 64 336 25 ) redplaid [ 0 -1 0 0 ] [ 0 0 -1 8 ] 0 1 1 -( 56 344 24 ) ( 56 344 25 ) ( 57 344 24 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 8 ] 0 1 1 -( 56 336 24 ) ( 57 336 24 ) ( 56 337 24 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 80 360 152 ) ( 80 361 152 ) ( 81 360 152 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 80 352 32 ) ( 81 352 32 ) ( 80 352 33 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 8 ] 0 1 1 -( 72 360 32 ) ( 72 360 33 ) ( 72 361 32 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 8 ] 0 1 1 -} -// brush 66 -{ -( 56 336 16 ) ( 56 337 16 ) ( 56 336 17 ) redplaid [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 56 336 16 ) ( 56 336 17 ) ( 57 336 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 56 336 16 ) ( 57 336 16 ) ( 56 337 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 80 360 18 ) ( 80 361 18 ) ( 81 360 18 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 80 360 24 ) ( 81 360 24 ) ( 80 360 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 80 360 24 ) ( 80 360 25 ) ( 80 361 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 67 -{ -( 64 344 24 ) ( 56 336 18 ) ( 56 360 18 ) redplaid [ 0 -1.0000000000000002 0 0 ] [ 1.0000000000000002 0 0 -70.43137 ] 0 1 1 -( 72 344 24 ) ( 80 336 18 ) ( 56 336 18 ) redplaid [ 1.0000000000000002 0 0 0 ] [ 0 1.0000000000000002 0 -94.58823 ] 0 1 1 -( 80 336 18 ) ( 80 360 18 ) ( 56 360 18 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 64 352 24 ) ( 72 352 24 ) ( 72 344 24 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 72 352 24 ) ( 64 352 24 ) ( 56 360 18 ) redplaid [ -1.0000000000000002 0 0 0 ] [ 0 -1.0000000000000002 0 89.568634 ] 0 1 1 -( 72 352 24 ) ( 80 360 18 ) ( 80 336 18 ) redplaid [ 0 1.0000000000000002 0 0 ] [ -1.0000000000000002 0 0 68 ] 0 1 1 -} -// brush 68 -{ -( 60 336 152 ) ( 60 337 152 ) ( 60 336 153 ) redplaid [ 0 -1 0 24 ] [ 0 0 -1 8 ] 0 1 1 -( 56 340 152 ) ( 56 340 153 ) ( 57 340 152 ) redplaid [ 1 0 0 -8 ] [ 0 0 -1 8 ] 0 1 1 -( 56 336 152 ) ( 57 336 152 ) ( 56 337 152 ) redplaid [ -1 0 0 8 ] [ 0 -1 0 24 ] 0 1 1 -( 88 368 156 ) ( 88 369 156 ) ( 89 368 156 ) redplaid [ 1 0 0 -8 ] [ 0 -1 0 24 ] 0 1 1 -( 88 356 160 ) ( 89 356 160 ) ( 88 356 161 ) redplaid [ -1 0 0 8 ] [ 0 0 -1 8 ] 0 1 1 -( 76 368 160 ) ( 76 368 161 ) ( 76 369 160 ) redplaid [ 0 1 0 -24 ] [ 0 0 -1 8 ] 0 1 1 -} -// brush 69 -{ -( 64 344 186 ) ( 54 334 180 ) ( 54 362 180 ) redplaid [ 0 -1.0000000000000002 0 24 ] [ 1.0000000000000002 0 0 -200.0878 ] 0 1 1 -( 72 344 186 ) ( 82 334 180 ) ( 54 334 180 ) redplaid [ 1.0000000000000002 0 0 -8 ] [ 0 1.0000000000000002 0 -222 ] 0 1 1 -( 82 334 180 ) ( 82 362 180 ) ( 54 362 180 ) redplaid [ -1 0 0 8 ] [ 0 -1 0 24 ] 0 1 1 -( 64 352 186 ) ( 72 352 186 ) ( 72 344 186 ) redplaid [ 1 0 0 -8 ] [ 0 -1 0 24 ] 0 1 1 -( 54 362 180 ) ( 82 362 180 ) ( 72 352 186 ) redplaid [ -1.0000000000000002 0 0 8 ] [ 0 -1.0000000000000002 0 215.36586 ] 0 1 1 -( 72 352 186 ) ( 82 362 180 ) ( 82 334 180 ) redplaid [ 0 1.0000000000000002 0 -24 ] [ -1.0000000000000002 0 0 -62 ] 0 1 1 -} -// brush 70 -{ -( 60 354 156 ) ( 60 356 156 ) ( 54 362 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 56 360 180 ) ( 62 354 156 ) ( 60 354 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 62 354 156 ) ( 62 356 156 ) ( 60 356 156 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 56 360 180 ) ( 54 360 180 ) ( 54 362 180 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 60 356 156 ) ( 62 356 156 ) ( 56 362 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 56 362 180 ) ( 62 356 156 ) ( 62 354 156 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 71 -{ -( 60 340 156 ) ( 60 342 156 ) ( 54 336 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 56 334 180 ) ( 62 340 156 ) ( 60 340 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 62 340 156 ) ( 62 342 156 ) ( 60 342 156 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 56 334 180 ) ( 54 334 180 ) ( 54 336 180 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 60 342 156 ) ( 62 342 156 ) ( 56 336 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 56 336 180 ) ( 62 342 156 ) ( 62 340 156 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 72 -{ -( 74 342 156 ) ( 80 336 180 ) ( 80 334 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 80 334 180 ) ( 82 334 180 ) ( 76 340 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 76 342 156 ) ( 74 342 156 ) ( 74 340 156 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 80 336 180 ) ( 82 336 180 ) ( 82 334 180 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 76 342 156 ) ( 82 336 180 ) ( 80 336 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 76 342 156 ) ( 76 340 156 ) ( 82 334 180 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 73 -{ -( 74 356 156 ) ( 80 362 180 ) ( 80 360 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 80 360 180 ) ( 82 360 180 ) ( 76 354 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 76 356 156 ) ( 74 356 156 ) ( 74 354 156 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 80 362 180 ) ( 82 362 180 ) ( 82 360 180 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 76 356 156 ) ( 82 362 180 ) ( 80 362 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 76 356 156 ) ( 76 354 156 ) ( 82 360 180 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 74 -{ -( 80 360 16 ) ( 80 360 12 ) ( 80 368 12 ) clip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 80 360 16 ) ( 784 360 16 ) ( 784 360 12 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 784 360 12 ) ( 784 368 12 ) ( 80 368 12 ) clip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 80 368 12 ) ( 784 368 12 ) ( 784 360 16 ) clip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 784 360 16 ) ( 784 368 12 ) ( 784 360 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 75 -{ -( 400 104 16 ) ( 400 105 16 ) ( 400 104 17 ) redplaid [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 -( 400 104 16 ) ( 400 104 17 ) ( 401 104 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 104 16 ) ( 401 104 16 ) ( 400 105 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 -( 448 136 96 ) ( 448 137 96 ) ( 449 136 96 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 -( 448 136 24 ) ( 449 136 24 ) ( 448 136 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 448 136 24 ) ( 448 136 25 ) ( 448 137 24 ) redplaid [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 76 -{ -( 328 136 16 ) ( 328 137 16 ) ( 328 136 17 ) skip [ 0 -1 0 8 ] [ 0 0 -1 0 ] 0 1 1 -( 328 136 16 ) ( 328 136 17 ) ( 329 136 16 ) surface_beige [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 328 136 4 ) ( 329 136 4 ) ( 328 137 4 ) skip [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 1 1 -( 448 144 120 ) ( 448 145 120 ) ( 449 144 120 ) skip [ 1 0 0 0 ] [ 0 -1 0 8 ] 0 1 1 -( 448 264 24 ) ( 449 264 24 ) ( 448 264 25 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 488 144 24 ) ( 488 144 25 ) ( 488 145 24 ) skip [ 0 1 0 -8 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 77 -{ -( 80 600 16 ) ( 80 592 12 ) ( 80 600 12 ) clip [ -1.2246467991473532e-16 -1 0 0 ] [ 0 0 -1 0 ] 180 1 1 -( 784 592 12 ) ( 80 592 12 ) ( 80 600 16 ) clip [ -1 1.2246467991473532e-16 0 32 ] [ 1.2246467991473532e-16 1 0 0 ] 180 1 1 -( 80 600 12 ) ( 80 592 12 ) ( 784 592 12 ) clip [ 1 -1.2246467991473532e-16 0 -32 ] [ 1.2246467991473532e-16 1 0 0 ] 180 1 1 -( 784 600 16 ) ( 80 600 16 ) ( 80 600 12 ) clip [ -1 1.2246467991473532e-16 0 32 ] [ 0 0 -1 0 ] 180 1 1 -( 576 600 16 ) ( 576 600 12 ) ( 576 592 12 ) clip [ 1.2246467991473532e-16 1 0 0 ] [ 0 0 -1 0 ] 180 1 1 -} -// brush 78 -{ -( 80 936 16 ) ( 80 232 16 ) ( 80 232 12 ) clip [ -1.8369701987210297e-16 -1 0 56 ] [ 0 0 -1 0 ] 180 1 1 -( 80 360 16 ) ( 88 360 12 ) ( 80 360 12 ) clip [ 1 -1.8369701987210297e-16 0 23.999992 ] [ 0 0 -1 0 ] 180 1 1 -( 80 232 12 ) ( 88 232 12 ) ( 88 936 12 ) clip [ 1.8369701987210297e-16 1 0 -56 ] [ -1 1.8369701987210297e-16 0 -24 ] 270 1 1 -( 80 600 16 ) ( 80 600 12 ) ( 88 600 12 ) clip [ -1 1.8369701987210297e-16 0 -23.999992 ] [ 0 0 -1 0 ] 180 1 1 -( 88 936 12 ) ( 88 232 12 ) ( 80 232 16 ) clip [ -1.8369701987210297e-16 -1 0 56 ] [ -1 1.8369701987210297e-16 0 -24 ] 96.379364 1 1 -} -// brush 79 -{ -( 96 704 16 ) ( 96 705 16 ) ( 96 704 17 ) wall_brick [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 544 704 16 ) ( 544 704 17 ) ( 545 704 16 ) wall_brick [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 0.25 0.25 -( 544 704 12 ) ( 545 704 12 ) ( 544 705 12 ) skip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 0.25 0.25 -( 576 736 64 ) ( 576 737 64 ) ( 577 736 64 ) wall_brick [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 576 720 32 ) ( 577 720 32 ) ( 576 720 33 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 576 736 32 ) ( 576 736 33 ) ( 576 737 32 ) wall_brick [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 80 -{ -( 96 744 -20 ) ( 96 745 -20 ) ( 96 744 -19 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( -112 720 -20 ) ( -112 720 -19 ) ( -111 720 -20 ) skip [ 1 0 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( -112 744 -20 ) ( -111 744 -20 ) ( -112 745 -20 ) skip [ -1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 16 872 12 ) ( 16 873 12 ) ( 17 872 12 ) asphalt [ 1 0 0 96 ] [ 0 -1 0 108 ] 0 0.5 0.5 -( 16 1136 12 ) ( 17 1136 12 ) ( 16 1136 13 ) skip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 736 872 12 ) ( 736 872 13 ) ( 736 873 12 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 81 -{ -( 736 712 -16 ) ( 736 713 -16 ) ( 736 712 -15 ) wall_concrete1 [ 0 -1 0 112 ] [ 0 0 -1 0 ] 0 1 1 -( 144 720 -16 ) ( 144 720 -15 ) ( 145 720 -16 ) wall_concrete1 [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 144 712 12 ) ( 145 712 12 ) ( 144 713 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 272 840 16 ) ( 272 841 16 ) ( 273 840 16 ) ground_greybrick [ 1 0 0 0 ] [ 0 -1 0 -112 ] 0 0.5 0.5 -( 272 864 16 ) ( 273 864 16 ) ( 272 864 17 ) wall_concrete1 [ -1 0 0 128 ] [ 0 0 -1 0 ] 0 1 1 -( 848 840 16 ) ( 848 840 17 ) ( 848 841 16 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 82 -{ -( 784 704 16 ) ( 784 705 16 ) ( 784 704 17 ) wall_brick [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1344 704 16 ) ( 1344 704 17 ) ( 1345 704 16 ) wall_brick [ 1 0 0 128 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1344 704 12 ) ( 1345 704 12 ) ( 1344 705 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 1376 736 64 ) ( 1376 737 64 ) ( 1377 736 64 ) wall_brick [ 1 0 0 128 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 1376 720 32 ) ( 1377 720 32 ) ( 1376 720 33 ) wall_brick [ -1 0 0 -128 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1168 736 32 ) ( 1168 736 33 ) ( 1168 737 32 ) wall_brick [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 83 -{ -( 736 728 -20 ) ( 736 729 -20 ) ( 736 728 -19 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 608 864 -20 ) ( 608 864 -19 ) ( 609 864 -20 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 608 728 -20 ) ( 609 728 -20 ) ( 608 729 -20 ) skip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 736 856 12 ) ( 736 857 12 ) ( 737 856 12 ) asphalt [ 1 0 0 64 ] [ 0 -1 0 76 ] 0 0.5 0.5 -( 736 1136 12 ) ( 737 1136 12 ) ( 736 1136 13 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 848 856 12 ) ( 848 856 13 ) ( 848 857 12 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 84 -{ -( 848 872 -16 ) ( 848 873 -16 ) ( 848 872 -15 ) wall_concrete1 [ 0 -1 0 272 ] [ 0 0 -1 0 ] 0 1 1 -( 304 800 -16 ) ( 304 800 -15 ) ( 305 800 -16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 304 872 12 ) ( 305 872 12 ) ( 304 873 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 432 1000 16 ) ( 432 1001 16 ) ( 433 1000 16 ) ground_greybrick [ 1 0 0 -96 ] [ 0 -1 0 -112 ] 0 0.5 0.5 -( 432 1136 16 ) ( 433 1136 16 ) ( 432 1136 17 ) skip [ -1 0 0 32 ] [ 0 0 -1 0 ] 0 1 1 -( 944 1000 16 ) ( 944 1000 17 ) ( 944 1001 16 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 85 -{ -( 736 600 16 ) ( 736 592 12 ) ( 736 600 12 ) clip [ -0 -1 0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 992 592 12 ) ( 288 592 12 ) ( 288 600 16 ) clip [ 1 0 -0 0 ] [ 0 -0.894427190999916 -0.447213595499958 0 ] 0 1 1 -( 288 600 12 ) ( 288 592 12 ) ( 992 592 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 992 600 16 ) ( 288 600 16 ) ( 288 600 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 784 600 16 ) ( 784 600 12 ) ( 784 592 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 86 -{ -( 576 1048 16 ) ( 576 344 16 ) ( 576 344 12 ) clip [ 0 -1 0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 576 600 16 ) ( 584 600 12 ) ( 576 600 12 ) clip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 576 344 12 ) ( 584 344 12 ) ( 584 1048 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 576 704 16 ) ( 576 704 12 ) ( 584 704 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 584 1048 12 ) ( 584 344 12 ) ( 576 344 16 ) clip [ 0.894427190999916 0 -0.447213595499958 0 ] [ 0 -1 0 0 ] 0 1 1 -} -// brush 87 -{ -( 728 1048 12 ) ( 736 344 16 ) ( 728 344 12 ) clip [ 0.894427190999916 0 0.447213595499958 -29.020447 ] [ 0 -1 0 0 ] 0 1 1 -( 736 600 16 ) ( 736 600 12 ) ( 728 600 12 ) clip [ 1 0 0 -40 ] [ 0 0 -1 0 ] 0 1 1 -( 736 344 12 ) ( 728 1048 12 ) ( 728 344 12 ) clip [ -1 0 0 40 ] [ 0 -1 0 0 ] 0 1 1 -( 736 864 16 ) ( 728 864 12 ) ( 736 864 12 ) clip [ -1 0 0 40 ] [ 0 0 -1 0 ] 0 1 1 -( 736 1048 16 ) ( 736 344 12 ) ( 736 344 16 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 88 -{ -( 840 1312 12 ) ( 848 608 16 ) ( 840 608 12 ) clip [ 0.894427190999916 -0 0.447213595499958 0 ] [ -0 -1 0 0 ] 0 1 1 -( 848 864 16 ) ( 848 864 12 ) ( 840 864 12 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 848 608 12 ) ( 840 1312 12 ) ( 840 608 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 848 1136 16 ) ( 840 1136 12 ) ( 848 1136 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 848 1312 16 ) ( 848 608 12 ) ( 848 608 16 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 89 -{ -( 736 864 16 ) ( 736 864 12 ) ( 736 872 12 ) clip [ 0 -1 0 -8 ] [ 0 0 -1 0 ] 0 1 1 -( 144 864 16 ) ( 848 864 16 ) ( 848 864 12 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 848 864 12 ) ( 848 872 12 ) ( 144 872 12 ) clip [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 1 1 -( 144 872 12 ) ( 848 872 12 ) ( 848 864 16 ) clip [ 1 0 0 0 ] [ 0 -1 0 -8 ] 0 1 1 -( 848 864 16 ) ( 848 872 12 ) ( 848 864 12 ) clip [ 0 1 0 8 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 90 -{ -( 728 872 12 ) ( 736 864 16 ) ( 728 864 12 ) clip [ 0.894427190999916 -0 0.447213595499958 0 ] [ -0 -1 0 0 ] 0 1 1 -( 728 864 12 ) ( 736 864 16 ) ( 736 864 12 ) clip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 736 864 12 ) ( 736 872 12 ) ( 728 872 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 728 872 12 ) ( 736 872 12 ) ( 736 864 16 ) clip [ 1 -0 0 0 ] [ -0 -0.894427190999916 0.447213595499958 0 ] 0 1 1 -( 736 864 16 ) ( 736 872 12 ) ( 736 864 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 91 -{ -( 728 592 12 ) ( 728 600 12 ) ( 736 600 16 ) clip [ 0.894427190999916 -0 0.447213595499958 0 ] [ -0 -1 0 0 ] 0 1 1 -( 728 592 12 ) ( 736 600 16 ) ( 736 592 12 ) clip [ 1 0 -0 0 ] [ 0 -0.894427190999916 -0.447213595499958 0 ] 0 1 1 -( 736 600 12 ) ( 728 592 12 ) ( 736 592 12 ) clip [ -1 0 -0 0 ] [ -0 -1 0 0 ] 0 1 1 -( 728 600 12 ) ( 736 600 12 ) ( 736 600 16 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 736 600 16 ) ( 736 600 12 ) ( 736 592 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 92 -{ -( 576 600 16 ) ( 576 592 12 ) ( 576 600 12 ) clip [ -0 -1 0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 584 592 12 ) ( 576 592 12 ) ( 576 600 16 ) clip [ 1 0 -0 0 ] [ 0 -0.894427190999916 -0.447213595499958 0 ] 0 1 1 -( 576 600 12 ) ( 576 592 12 ) ( 584 592 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 584 600 12 ) ( 576 600 16 ) ( 576 600 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 584 592 12 ) ( 576 600 16 ) ( 584 600 12 ) clip [ 0.894427190999916 0 -0.447213595499958 0 ] [ 0 -1 -0 0 ] 0 1 1 -} -// brush 93 -{ -( 576 704 16 ) ( 576 704 12 ) ( 576 712 12 ) clip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 584 704 12 ) ( 576 704 12 ) ( 576 704 16 ) clip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 576 704 12 ) ( 584 712 12 ) ( 576 712 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 584 712 12 ) ( 576 704 16 ) ( 576 712 12 ) clip [ 1 0 0 0 ] [ 0 -0.894427190999916 0.447213595499958 0 ] 0 1 1 -( 584 712 12 ) ( 584 704 12 ) ( 576 704 16 ) clip [ 0.894427190999916 0 -0.447213595499958 0 ] [ 0 -1 0 0 ] 0 1 1 -} -// brush 94 -{ -( 312 248 16 ) ( 312 249 16 ) ( 312 248 17 ) skip [ 0 -1 0 -48 ] [ 0 0 -1 0 ] 0 1 1 -( 312 256 16 ) ( 312 256 17 ) ( 313 256 16 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 312 248 16 ) ( 313 248 16 ) ( 312 249 16 ) skip [ -1 0 0 24 ] [ 0 -1 0 -48 ] 0 1 1 -( 328 264 120 ) ( 328 265 120 ) ( 329 264 120 ) skip [ 1 0 0 -24 ] [ 0 -1 0 -48 ] 0 1 1 -( 328 264 24 ) ( 329 264 24 ) ( 328 264 25 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 328 264 24 ) ( 328 264 25 ) ( 328 265 24 ) skip [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 95 -{ -( 80 160 0 ) ( 80 161 0 ) ( 80 160 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 160 0 ) ( 80 160 1 ) ( 81 160 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 160 52 ) ( 81 160 52 ) ( 80 161 52 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 192 96 ) ( 112 193 96 ) ( 113 192 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 168 16 ) ( 113 168 16 ) ( 112 168 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 88 192 16 ) ( 88 192 17 ) ( 88 193 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 96 -{ -( 80 48 0 ) ( 80 49 0 ) ( 80 48 1 ) surface_green [ 0 -1 0 -32 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 48 0 ) ( 80 48 1 ) ( 81 48 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 48 52 ) ( 81 48 52 ) ( 80 49 52 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 112 80 96 ) ( 112 81 96 ) ( 113 80 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 112 56 16 ) ( 113 56 16 ) ( 112 56 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 88 80 16 ) ( 88 80 17 ) ( 88 81 16 ) surface_green [ 0 1 0 32 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 97 -{ -( 72 -248 88 ) ( 72 -247 88 ) ( 72 -248 89 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 -63.999992 ] 90 0.5 0.5 -( 80 -64 88 ) ( 80 -64 89 ) ( 81 -64 88 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 -32 ] [ -0.999999999999999 0 4.371139006309477e-08 16 ] 90 0.5 0.5 -( 80 -248 104 ) ( 81 -248 104 ) ( 80 -247 104 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 -( 112 -216 112 ) ( 112 -215 112 ) ( 113 -216 112 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 -( 112 -48 104 ) ( 113 -48 104 ) ( 112 -48 105 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 -( 312 -216 104 ) ( 312 -216 105 ) ( 312 -215 104 ) surface_green_edge [ 0 -4.371139006309477e-08 -0.999999999999999 32 ] [ 0 -0.999999999999999 4.371139006309477e-08 16.000008 ] 90 0.5 0.5 -} -// brush 98 -{ -( 224 8 16 ) ( 224 9 16 ) ( 224 8 17 ) redplaid [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 -( 224 104 16 ) ( 224 104 17 ) ( 225 104 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 224 8 16 ) ( 225 8 16 ) ( 224 9 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 -( 248 96 48 ) ( 248 97 48 ) ( 249 96 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 -( 248 136 24 ) ( 249 136 24 ) ( 248 136 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 312 96 24 ) ( 312 96 25 ) ( 312 97 24 ) redplaid [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 99 -{ -( 80 -56 48 ) ( 80 -55 48 ) ( 80 -56 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 -15.999992 ] 90 0.5 0.5 -( 80 -56 48 ) ( 80 -56 49 ) ( 81 -56 48 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 -32 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 -56 120 ) ( 81 -56 120 ) ( 80 -55 120 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 112 -24 144 ) ( 112 -23 144 ) ( 113 -24 144 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 112 -48 64 ) ( 113 -48 64 ) ( 112 -48 65 ) skip [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 312 -24 64 ) ( 312 -24 65 ) ( 312 -23 64 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 100 -{ -( 80 -56 0 ) ( 80 -55 0 ) ( 80 -56 1 ) surface_green [ 0 -1 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 -56 0 ) ( 80 -56 1 ) ( 81 -56 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 -56 48 ) ( 81 -56 48 ) ( 80 -55 48 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 112 -24 96 ) ( 112 -23 96 ) ( 113 -24 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 112 -48 16 ) ( 113 -48 16 ) ( 112 -48 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 88 -24 16 ) ( 88 -24 17 ) ( 88 -23 16 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 101 -{ -( 224 -48 16 ) ( 224 -47 16 ) ( 224 -48 17 ) redplaid [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 -( 224 -48 16 ) ( 224 -48 17 ) ( 225 -48 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 224 -48 16 ) ( 225 -48 16 ) ( 224 -47 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 -( 248 40 48 ) ( 248 41 48 ) ( 249 40 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 -( 248 64 24 ) ( 249 64 24 ) ( 248 64 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 248 40 24 ) ( 248 40 25 ) ( 248 41 24 ) redplaid [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 102 -{ -( 72 -248 128 ) ( 72 -247 128 ) ( 72 -248 129 ) surface_green [ 0 -1 0 8 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 80 -64 128 ) ( 80 -64 129 ) ( 81 -64 128 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 80 -248 144 ) ( 81 -248 144 ) ( 80 -247 144 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 -( 112 -216 152 ) ( 112 -215 152 ) ( 113 -216 152 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 112 -48 144 ) ( 113 -48 144 ) ( 112 -48 145 ) skip [ -1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 312 -216 144 ) ( 312 -216 145 ) ( 312 -215 144 ) surface_green [ 0 1 0 -8 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -} -// brush 103 -{ -( 80 -56 0 ) ( 80 -55 0 ) ( 80 -56 1 ) surface_green [ 0 -1 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 -56 0 ) ( 80 -56 1 ) ( 81 -56 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 -56 16 ) ( 81 -56 16 ) ( 80 -55 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 112 -24 52 ) ( 112 -23 52 ) ( 113 -24 52 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 112 -48 16 ) ( 113 -48 16 ) ( 112 -48 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 224 -24 16 ) ( 224 -24 17 ) ( 224 -23 16 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 104 -{ -( 224 -56 0 ) ( 224 -55 0 ) ( 224 -56 1 ) surface_green [ 0 -1 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 224 -56 0 ) ( 224 -56 1 ) ( 225 -56 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 224 -56 16 ) ( 225 -56 16 ) ( 224 -55 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 256 -24 96 ) ( 256 -23 96 ) ( 257 -24 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 256 -48 16 ) ( 257 -48 16 ) ( 256 -48 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 312 -24 16 ) ( 312 -24 17 ) ( 312 -23 16 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 105 -{ -( 80 -56 -8 ) ( 80 -55 -8 ) ( 80 -56 -7 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 16 ] [ 0 0.999999999999999 4.371139006309477e-08 -15.999992 ] 90 0.5 0.5 -( 176 -56 -8 ) ( 176 -56 -7 ) ( 177 -56 -8 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 16 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 176 -56 96 ) ( 177 -56 96 ) ( 176 -55 96 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 208 -24 104 ) ( 208 -23 104 ) ( 209 -24 104 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 208 -48 8 ) ( 209 -48 8 ) ( 208 -48 9 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 312 -24 8 ) ( 312 -24 9 ) ( 312 -23 8 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 106 -{ -( 944 584 -20 ) ( 944 585 -20 ) ( 944 584 -19 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 816 720 -20 ) ( 816 720 -19 ) ( 817 720 -20 ) skip [ 1 0 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 816 584 -20 ) ( 817 584 -20 ) ( 816 585 -20 ) skip [ -1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 944 712 12 ) ( 944 713 12 ) ( 945 712 12 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 944 800 12 ) ( 945 800 12 ) ( 944 800 13 ) skip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1408 712 12 ) ( 1408 712 13 ) ( 1408 713 12 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 107 -{ -( 848 792 -16 ) ( 848 793 -16 ) ( 848 792 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 304 720 -16 ) ( 304 720 -15 ) ( 305 720 -16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 304 792 12 ) ( 305 792 12 ) ( 304 793 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 432 920 16 ) ( 432 921 16 ) ( 433 920 16 ) ground_greybrick [ 1 0 0 -96 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 432 800 16 ) ( 433 800 16 ) ( 432 800 17 ) skip [ -1 0 0 32 ] [ 0 0 -1 0 ] 0 1 1 -( 944 920 16 ) ( 944 920 17 ) ( 944 921 16 ) wall_concrete1 [ 0 1 0 0 ] [ 0 0 -1 -32 ] 0 1 1 -} -// brush 108 -{ -( 80 256 40 ) ( 80 257 40 ) ( 80 256 41 ) surface_green [ 0 4.371139006309477e-08 -0.999999999999999 -47.999954 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 256 40 ) ( 80 256 41 ) ( 81 256 40 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -56 ] 0 0.5 0.5 -( 80 256 112 ) ( 81 256 112 ) ( 80 257 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 288 120 ) ( 112 289 120 ) ( 113 288 120 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 264 56 ) ( 113 264 56 ) ( 112 264 57 ) surface_green [ 4.371139006309477e-08 0 -0.999999999999999 -47.999954 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 312 288 56 ) ( 312 288 57 ) ( 312 289 56 ) skip [ 0 1 0 0 ] [ 0 0 -1 -56 ] 0 0.5 0.5 -} -// brush 109 -{ -( 80 -56 40 ) ( 80 -55 40 ) ( 80 -56 41 ) surface_green [ 0 4.371139006309477e-08 -0.999999999999999 -48 ] [ 0 0.999999999999999 4.371139006309477e-08 -16 ] 90 0.5 0.5 -( 80 -56 40 ) ( 80 -56 41 ) ( 81 -56 40 ) surface_green [ -4.371139006309477e-08 0 -0.999999999999999 -48.000015 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 -56 112 ) ( 81 -56 112 ) ( 80 -55 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 112 -24 120 ) ( 112 -23 120 ) ( 113 -24 120 ) skip [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 112 -48 56 ) ( 113 -48 56 ) ( 112 -48 57 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -56 ] 0 0.5 0.5 -( 312 -24 56 ) ( 312 -24 57 ) ( 312 -23 56 ) skip [ 0 1 0 -16 ] [ 0 0 -1 -56 ] 0 0.5 0.5 -} -// brush 110 -{ -( 312 -32 120 ) ( 312 -32 112 ) ( 312 16 120 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -15.9999695 ] [ 0 0.9999999999999866 1.6292067950285372e-07 47.999992 ] 90 0.5 0.5 -( 320 -32 120 ) ( 320 -32 112 ) ( 312 -32 120 ) skip [ 1 0 0 -16 ] [ 0 0 -1 16 ] 0 1 1 -( 312 16 104 ) ( 312 -32 104 ) ( 320 16 104 ) skip [ 1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 320 16 120 ) ( 320 -32 120 ) ( 312 16 120 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 312 16 120 ) ( 312 16 112 ) ( 320 16 120 ) skip [ -1 0 0 16 ] [ 0 0 -1 16 ] 0 1 1 -( 320 16 120 ) ( 320 16 112 ) ( 320 -32 120 ) skip [ 0 1 0 48 ] [ 0 0 -1 48 ] 0 0.5 0.5 -} -} -// entity 1 -{ -"classname" "func_group" -"_tb_type" "_tb_group" -"_tb_name" "motelroomlayout" -"_tb_id" "4" -"_tb_linked_group_id" "{64d2ce3b-d5a0-495e-b5f7-459c62d5e742}" -"_tb_transformation" "1 0 0 0 0 1 0 80 0 0 1 0 0 0 0 1" -// brush 0 -{ -( 1186 1276 16 ) ( 1186 1277 16 ) ( 1186 1276 17 ) clip [ 0 -1 0 -4 ] [ 0 0 -1 0 ] 0 1 1 -( 1180 1278 16 ) ( 1180 1278 17 ) ( 1181 1278 16 ) clip [ 1 0 0 20 ] [ 0 0 -1 0 ] 0 1 1 -( 1180 1276 16 ) ( 1181 1276 16 ) ( 1180 1277 16 ) clip [ -1 0 0 -20 ] [ 0 -1 0 -4 ] 0 1 1 -( 1276 1372 44 ) ( 1276 1373 44 ) ( 1277 1372 44 ) clip [ 1 0 0 20 ] [ 0 -1 0 -4 ] 0 1 1 -( 1276 1360 32 ) ( 1277 1360 32 ) ( 1276 1360 33 ) clip [ -1 0 0 -20 ] [ 0 0 -1 0 ] 0 1 1 -( 1256 1372 32 ) ( 1256 1372 33 ) ( 1256 1373 32 ) clip [ 0 1 0 4 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 1 -{ -( 944 1264 16 ) ( 944 1265 16 ) ( 944 1264 17 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 952 1264 16 ) ( 952 1264 17 ) ( 953 1264 16 ) surface_beige [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 952 1264 16 ) ( 953 1264 16 ) ( 952 1265 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 1000 1272 80 ) ( 1000 1273 80 ) ( 1001 1272 80 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 1000 1272 24 ) ( 1001 1272 24 ) ( 1000 1272 25 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 992 1272 24 ) ( 992 1272 25 ) ( 992 1273 24 ) surface_beige_edge [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 2 -{ -( 1074 1276 16 ) ( 1074 1277 16 ) ( 1074 1276 17 ) clip [ 0 -1 0 -4 ] [ 0 0 -1 0 ] 0 1 1 -( 1068 1278 16 ) ( 1068 1278 17 ) ( 1069 1278 16 ) clip [ 1 0 0 4 ] [ 0 0 -1 0 ] 0 1 1 -( 1068 1276 16 ) ( 1069 1276 16 ) ( 1068 1277 16 ) clip [ -1 0 0 -4 ] [ 0 -1 0 -4 ] 0 1 1 -( 1164 1372 44 ) ( 1164 1373 44 ) ( 1165 1372 44 ) clip [ 1 0 0 4 ] [ 0 -1 0 -4 ] 0 1 1 -( 1164 1360 32 ) ( 1165 1360 32 ) ( 1164 1360 33 ) clip [ -1 0 0 -4 ] [ 0 0 -1 0 ] 0 1 1 -( 1144 1372 32 ) ( 1144 1372 33 ) ( 1144 1373 32 ) clip [ 0 1 0 4 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 3 -{ -( 992 1264 16 ) ( 992 1265 16 ) ( 992 1264 17 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1000 1264 16 ) ( 1000 1264 17 ) ( 1001 1264 16 ) surface_beige [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1000 1264 80 ) ( 1001 1264 80 ) ( 1000 1265 80 ) surface_beige_edge [ 4.371138994063005e-08 0.9999999999999989 0 32 ] [ -0.9999999999999989 4.371138994063005e-08 0 0 ] 270 0.5 0.5 -( 1048 1272 96 ) ( 1048 1273 96 ) ( 1049 1272 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 1048 1272 24 ) ( 1049 1272 24 ) ( 1048 1272 25 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1040 1272 24 ) ( 1040 1272 25 ) ( 1040 1273 24 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 4 -{ -( 1148 1340 16 ) ( 1148 1341 16 ) ( 1148 1340 17 ) clip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1148 1340 16 ) ( 1148 1340 17 ) ( 1149 1340 16 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1148 1340 16 ) ( 1149 1340 16 ) ( 1148 1341 16 ) clip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 1180 1360 34 ) ( 1180 1361 34 ) ( 1181 1360 34 ) clip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 1180 1360 20 ) ( 1181 1360 20 ) ( 1180 1360 21 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1182 1360 20 ) ( 1182 1360 21 ) ( 1182 1361 20 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 5 -{ -( 944 1168 0 ) ( 944 1169 0 ) ( 944 1168 1 ) skip [ 0 -1 0 0 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -( 1024 1176 0 ) ( 1024 1176 1 ) ( 1025 1176 0 ) skip [ 1 0 0 32 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -( 1024 1168 0 ) ( 1025 1168 0 ) ( 1024 1169 0 ) skip [ -1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 1056 1216 16 ) ( 1056 1217 16 ) ( 1057 1216 16 ) carpet_dullgreen [ 1 0 0 96 ] [ 0 -1 0 -64 ] 0 0.5 0.5 -( 1056 1360 16 ) ( 1057 1360 16 ) ( 1056 1360 17 ) skip [ -1 0 0 -32 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -( 1296 1216 16 ) ( 1296 1216 17 ) ( 1296 1217 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -} -// brush 6 -{ -( 1128 1176 16 ) ( 1128 1177 16 ) ( 1128 1176 17 ) clip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1104 1176 16 ) ( 1104 1176 17 ) ( 1105 1176 16 ) clip [ 1 0 0 32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1104 1176 16 ) ( 1105 1176 16 ) ( 1104 1177 16 ) clip [ -1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 1176 1208 48 ) ( 1176 1209 48 ) ( 1177 1208 48 ) clip [ 1 0 0 32 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 1176 1200 24 ) ( 1177 1200 24 ) ( 1176 1200 25 ) clip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1192 1208 24 ) ( 1192 1208 25 ) ( 1192 1209 24 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 7 -{ -( 1040 1312 32 ) ( 1040 1313 32 ) ( 1040 1312 33 ) skip [ 0 -1 0 0 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -( 1040 1264 32 ) ( 1040 1264 33 ) ( 1041 1264 32 ) surface_beige_edge [ -0.9999999999999961 0 8.742278000372473e-08 -16 ] [ 8.742278000372473e-08 0 0.9999999999999961 32 ] 180 0.5 0.5 -( 1040 1312 80 ) ( 1041 1312 80 ) ( 1040 1313 80 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 1048 1352 96 ) ( 1048 1353 96 ) ( 1049 1352 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 1048 1272 40 ) ( 1049 1272 40 ) ( 1048 1272 41 ) skip [ -1 0 0 0 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -( 1048 1352 40 ) ( 1048 1352 41 ) ( 1048 1353 40 ) surface_beige_edge [ 0 1 0 32 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -} -// brush 8 -{ -( 1040 1320 16 ) ( 1040 1321 16 ) ( 1040 1320 17 ) surface_beige [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1040 1272 16 ) ( 1040 1272 17 ) ( 1041 1272 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1040 1320 16 ) ( 1041 1320 16 ) ( 1040 1321 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 1048 1360 96 ) ( 1048 1361 96 ) ( 1049 1360 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 1048 1360 24 ) ( 1049 1360 24 ) ( 1048 1360 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1048 1360 24 ) ( 1048 1360 25 ) ( 1048 1361 24 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 9 -{ -( 944 1264 16 ) ( 944 1265 16 ) ( 944 1264 17 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 944 1264 16 ) ( 944 1264 17 ) ( 945 1264 16 ) surface_beige [ 1 0 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 944 1264 80 ) ( 945 1264 80 ) ( 944 1265 80 ) skip [ -1 0 0 -48 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 992 1272 96 ) ( 992 1273 96 ) ( 993 1272 96 ) skip [ 1 0 0 48 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 992 1272 24 ) ( 993 1272 24 ) ( 992 1272 25 ) surface_beige [ -1 0 0 -48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 992 1272 24 ) ( 992 1272 25 ) ( 992 1273 24 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 10 -{ -( 1040 1312 16 ) ( 1040 1313 16 ) ( 1040 1312 17 ) surface_beige_edge [ 0 0.9999999999999961 8.742278000372473e-08 32 ] [ 0 -8.742278000372473e-08 0.9999999999999961 0 ] 180 0.5 0.5 -( 1040 1264 16 ) ( 1040 1264 17 ) ( 1041 1264 16 ) surface_beige_edge [ -0.9999999999999961 0 8.742278000372473e-08 -16 ] [ 8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 -( 1040 1312 16 ) ( 1041 1312 16 ) ( 1040 1313 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 1048 1352 80 ) ( 1048 1353 80 ) ( 1049 1352 80 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 1048 1272 24 ) ( 1049 1272 24 ) ( 1048 1272 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1048 1352 24 ) ( 1048 1352 25 ) ( 1048 1353 24 ) surface_beige_edge [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -} diff --git a/maps/autosave/cafemotel.7.map.import b/maps/autosave/cafemotel.7.map.import deleted file mode 100644 index e8caec9..0000000 --- a/maps/autosave/cafemotel.7.map.import +++ /dev/null @@ -1,14 +0,0 @@ -[remap] - -importer="func_godot.map" -type="Resource" -uid="uid://bp8nk5lxhq08o" -path="res://.godot/imported/cafemotel.7.map-b5abd06e937cb0c051ce59b35633dd67.tres" - -[deps] - -source_file="res://maps/autosave/cafemotel.7.map" -dest_files=["res://.godot/imported/cafemotel.7.map-b5abd06e937cb0c051ce59b35633dd67.tres"] - -[params] - diff --git a/maps/autosave/cafemotel.8.map b/maps/autosave/cafemotel.8.map deleted file mode 100644 index 97aeb35..0000000 --- a/maps/autosave/cafemotel.8.map +++ /dev/null @@ -1,1264 +0,0 @@ -// Game: maskmaker -// Format: Valve -// entity 0 -{ -"mapversion" "220" -"classname" "worldspawn" -// brush 0 -{ -( -16 -184 -16 ) ( -16 -183 -16 ) ( -16 -184 -15 ) skip [ 0 -1 0 32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( -64 -184 -16 ) ( -64 -184 -15 ) ( -63 -184 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( -64 -184 -16 ) ( -63 -184 -16 ) ( -64 -183 -16 ) skip [ -1 0 0 0 ] [ 0 -1 0 32 ] 0 0.25 0.25 -( 64 -56 16 ) ( 64 -55 16 ) ( 65 -56 16 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 -1 0 120 ] 0 0.25 0.25 -( 64 -56 16 ) ( 65 -56 16 ) ( 64 -56 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 784 -56 16 ) ( 784 -56 17 ) ( 784 -55 16 ) skip [ 0 1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 1 -{ -( 80 72 0 ) ( 80 73 0 ) ( 80 72 1 ) surface_green [ 0 4.371139006309477e-08 -0.999999999999999 32 ] [ 0 0.999999999999999 4.371139006309477e-08 24 ] 90 0.5 0.5 -( 80 -48 0 ) ( 80 -48 1 ) ( 81 -48 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 72 16 ) ( 81 72 16 ) ( 80 73 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 104 52 ) ( 112 105 52 ) ( 113 104 52 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 256 16 ) ( 113 256 16 ) ( 112 256 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 88 104 16 ) ( 88 104 17 ) ( 88 105 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 2 -{ -( 80 256 0 ) ( 80 257 0 ) ( 80 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 256 0 ) ( 80 256 1 ) ( 81 256 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 256 16 ) ( 81 256 16 ) ( 80 257 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 288 96 ) ( 112 289 96 ) ( 113 288 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 264 16 ) ( 113 264 16 ) ( 112 264 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 88 288 16 ) ( 88 288 17 ) ( 88 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 3 -{ -( 80 256 -8 ) ( 80 257 -8 ) ( 80 256 -7 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 16 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 176 256 -8 ) ( 176 256 -7 ) ( 177 256 -8 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 176 256 96 ) ( 177 256 96 ) ( 176 257 96 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 208 288 104 ) ( 208 289 104 ) ( 209 288 104 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 208 264 8 ) ( 209 264 8 ) ( 208 264 9 ) surface_green_edge [ 4.371139006309477e-08 0 -0.999999999999999 16 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 312 288 8 ) ( 312 288 9 ) ( 312 289 8 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 4 -{ -( 80 72 72 ) ( 80 73 72 ) ( 80 72 73 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 16 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 -48 72 ) ( 80 -48 73 ) ( 81 -48 72 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 80 72 96 ) ( 81 72 96 ) ( 80 73 96 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 104 104 ) ( 112 105 104 ) ( 113 104 104 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 256 88 ) ( 113 256 88 ) ( 112 256 89 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 88 104 88 ) ( 88 104 89 ) ( 88 105 88 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 5 -{ -( 88 256 0 ) ( 88 257 0 ) ( 88 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 256 0 ) ( 80 256 1 ) ( 81 256 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 256 16 ) ( 81 256 16 ) ( 80 257 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 288 52 ) ( 112 289 52 ) ( 113 288 52 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 264 16 ) ( 113 264 16 ) ( 112 264 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 144 288 16 ) ( 144 288 17 ) ( 144 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 6 -{ -( 144 256 0 ) ( 144 257 0 ) ( 144 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 144 256 0 ) ( 144 256 1 ) ( 145 256 0 ) surface_green [ 1 0 0 32 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 144 256 16 ) ( 145 256 16 ) ( 144 257 16 ) surface_green [ -1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 176 288 96 ) ( 176 289 96 ) ( 177 288 96 ) surface_green [ 1 0 0 32 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 176 264 16 ) ( 177 264 16 ) ( 176 264 17 ) surface_green [ -1 0 0 -32 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 160 288 16 ) ( 160 288 17 ) ( 160 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 7 -{ -( 208 256 0 ) ( 208 257 0 ) ( 208 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 208 256 0 ) ( 208 256 1 ) ( 209 256 0 ) surface_green [ 1 0 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 208 256 16 ) ( 209 256 16 ) ( 208 257 16 ) surface_green [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 240 288 96 ) ( 240 289 96 ) ( 241 288 96 ) surface_green [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 240 264 16 ) ( 241 264 16 ) ( 240 264 17 ) surface_green [ -1 0 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 224 288 16 ) ( 224 288 17 ) ( 224 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 8 -{ -( 88 128 8 ) ( 88 129 8 ) ( 88 128 9 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 88 -56 8 ) ( 88 -56 9 ) ( 89 -56 8 ) skip [ 1 0 0 0 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 88 128 8 ) ( 89 128 8 ) ( 88 129 8 ) skip [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.25 0.25 -( 128 176 16 ) ( 128 177 16 ) ( 129 176 16 ) floor_wood [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.25 0.25 -( 128 264 16 ) ( 129 264 16 ) ( 128 264 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 320 176 16 ) ( 320 176 17 ) ( 320 177 16 ) skip [ 0 1 0 56 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -} -// brush 9 -{ -( -16 64 -16 ) ( -16 65 -16 ) ( -16 64 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( -64 -56 -16 ) ( -64 -56 -15 ) ( -63 -56 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( -64 64 -16 ) ( -63 64 -16 ) ( -64 65 -16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 64 192 16 ) ( 64 193 16 ) ( 65 192 16 ) ground_cobblestone1 [ -4.371139006309477e-08 -0.999999999999999 0 0 ] [ -0.999999999999999 4.371139006309477e-08 0 106 ] 90 0.25 0.25 -( 64 264 16 ) ( 65 264 16 ) ( 64 264 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 80 192 16 ) ( 80 192 17 ) ( 80 193 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 10 -{ -( 72 72 88 ) ( 72 73 88 ) ( 72 72 89 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 16 ] 90 0.5 0.5 -( 80 256 88 ) ( 80 256 89 ) ( 81 256 88 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 -( 80 72 104 ) ( 81 72 104 ) ( 80 73 104 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 104 112 ) ( 112 105 112 ) ( 113 104 112 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 272 104 ) ( 113 272 104 ) ( 112 272 105 ) surface_green_edge [ 4.371139006309477e-08 0 -0.999999999999999 -32 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 312 104 104 ) ( 312 104 105 ) ( 312 105 104 ) surface_green_edge [ 0 -4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 -0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -} -// brush 11 -{ -( 72 -112 88 ) ( 72 -111 88 ) ( 72 -112 89 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 16 ] 90 0.5 0.5 -( 80 -48 88 ) ( 80 -48 89 ) ( 81 -48 88 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 -( 80 -112 104 ) ( 81 -112 104 ) ( 80 -111 104 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 -( 112 -80 112 ) ( 112 -79 112 ) ( 113 -80 112 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 -( 112 256 104 ) ( 113 256 104 ) ( 112 256 105 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 -( 88 -80 104 ) ( 88 -80 105 ) ( 88 -79 104 ) surface_green [ 0 1 0 -8 ] [ 0 0 -1 -24 ] 0 0.5 0.5 -} -// brush 12 -{ -( 72 72 128 ) ( 72 73 128 ) ( 72 72 129 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 80 256 128 ) ( 80 256 129 ) ( 81 256 128 ) skip [ 1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 80 72 144 ) ( 81 72 144 ) ( 80 73 144 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 104 152 ) ( 112 105 152 ) ( 113 104 152 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 272 144 ) ( 113 272 144 ) ( 112 272 145 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 312 104 144 ) ( 312 104 145 ) ( 312 105 144 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -} -// brush 13 -{ -( 72 -112 128 ) ( 72 -111 128 ) ( 72 -112 129 ) surface_green [ 0 -1 0 8 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 80 -48 128 ) ( 80 -48 129 ) ( 81 -48 128 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 80 -112 144 ) ( 81 -112 144 ) ( 80 -111 144 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 -( 112 -80 152 ) ( 112 -79 152 ) ( 113 -80 152 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 256 144 ) ( 113 256 144 ) ( 112 256 145 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 88 -80 144 ) ( 88 -80 145 ) ( 88 -79 144 ) skip [ 0 1 0 -8 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 14 -{ -( 80 256 48 ) ( 80 257 48 ) ( 80 256 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -31.99997 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 256 48 ) ( 80 256 49 ) ( 81 256 48 ) skip [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 80 256 120 ) ( 81 256 120 ) ( 80 257 120 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 288 144 ) ( 112 289 144 ) ( 113 288 144 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 264 64 ) ( 113 264 64 ) ( 112 264 65 ) surface_green_edge [ 4.371139006309477e-08 0 -0.999999999999999 -31.99997 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 312 288 64 ) ( 312 288 65 ) ( 312 289 64 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 15 -{ -( 80 248 48 ) ( 80 249 48 ) ( 80 248 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32.000015 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 -48 48 ) ( 80 -48 49 ) ( 81 -48 48 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 80 248 120 ) ( 81 248 120 ) ( 80 249 120 ) skip [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 -( 112 280 144 ) ( 112 281 144 ) ( 113 280 144 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 -( 112 256 64 ) ( 113 256 64 ) ( 112 256 65 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 88 280 64 ) ( 88 280 65 ) ( 88 281 64 ) skip [ 0 1 0 8 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 16 -{ -( 88 128 120 ) ( 88 129 120 ) ( 88 128 121 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 56 ] 0 0.25 0.25 -( 88 -48 120 ) ( 88 -48 121 ) ( 89 -48 120 ) skip [ 1 0 0 0 ] [ 0 0 -1 56 ] 0 0.25 0.25 -( 88 128 120 ) ( 89 128 120 ) ( 88 129 120 ) ground_wood [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.5 0.5 -( 128 176 128 ) ( 128 177 128 ) ( 129 176 128 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.25 0.25 -( 128 256 128 ) ( 129 256 128 ) ( 128 256 129 ) skip [ -1 0 0 0 ] [ 0 0 -1 56 ] 0 0.25 0.25 -( 312 176 128 ) ( 312 176 129 ) ( 312 177 128 ) skip [ 0 1 0 56 ] [ 0 0 -1 56 ] 0 0.25 0.25 -} -// brush 17 -{ -( 224 256 0 ) ( 224 257 0 ) ( 224 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 216 256 0 ) ( 216 256 1 ) ( 217 256 0 ) surface_green [ 1 0 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 216 256 16 ) ( 217 256 16 ) ( 216 257 16 ) surface_green [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 248 288 52 ) ( 248 289 52 ) ( 249 288 52 ) surface_green [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 248 264 16 ) ( 249 264 16 ) ( 248 264 17 ) surface_green [ -1 0 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 296 288 16 ) ( 296 288 17 ) ( 296 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 18 -{ -( 296 256 0 ) ( 296 257 0 ) ( 296 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 296 256 0 ) ( 296 256 1 ) ( 297 256 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 296 256 16 ) ( 297 256 16 ) ( 296 257 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 328 288 96 ) ( 328 289 96 ) ( 329 288 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 328 264 16 ) ( 329 264 16 ) ( 328 264 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 312 288 16 ) ( 312 288 17 ) ( 312 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 19 -{ -( 640 64 0 ) ( 640 65 0 ) ( 640 64 1 ) skip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 0.5 0.5 -( 640 -56 0 ) ( 640 -56 1 ) ( 641 -56 0 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 640 64 0 ) ( 641 64 0 ) ( 640 65 0 ) skip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 0.5 0.5 -( 656 112 16 ) ( 656 113 16 ) ( 657 112 16 ) ground_cobblestone1 [ -4.371139006309477e-08 -0.999999999999999 0 0 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.25 0.25 -( 656 264 16 ) ( 657 264 16 ) ( 656 264 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 736 112 16 ) ( 736 112 17 ) ( 736 113 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 20 -{ -( 736 72 16 ) ( 736 73 16 ) ( 736 72 17 ) wall_brick_scrungly [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 472 -56 16 ) ( 472 -56 17 ) ( 473 -56 16 ) wall_brick_scrungly [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 472 72 16 ) ( 473 72 16 ) ( 472 73 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 504 104 96 ) ( 504 105 96 ) ( 505 104 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 504 264 32 ) ( 505 264 32 ) ( 504 264 33 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 784 104 32 ) ( 784 104 33 ) ( 784 105 32 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 21 -{ -( 640 64 96 ) ( 640 65 96 ) ( 640 64 97 ) skip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 0.25 0.25 -( 640 -56 96 ) ( 640 -56 97 ) ( 641 -56 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 64 96 ) ( 641 64 96 ) ( 640 65 96 ) wall_brick_scrungly [ 4.371139006309477e-08 -0.999999999999999 0 0 ] [ 0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.25 0.25 -( 656 112 256 ) ( 656 113 256 ) ( 657 112 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 656 264 112 ) ( 657 264 112 ) ( 656 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 736 112 112 ) ( 736 112 113 ) ( 736 113 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 22 -{ -( 736 72 96 ) ( 736 73 96 ) ( 736 72 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 472 -56 96 ) ( 472 -56 97 ) ( 473 -56 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 472 72 96 ) ( 473 72 96 ) ( 472 73 96 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 504 104 256 ) ( 504 105 256 ) ( 505 104 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 504 264 112 ) ( 505 264 112 ) ( 504 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 784 104 112 ) ( 784 104 113 ) ( 784 105 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 23 -{ -( 312 -56 96 ) ( 312 -55 96 ) ( 312 -56 97 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 368 -56 96 ) ( 368 -56 97 ) ( 369 -56 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 368 -56 104 ) ( 369 -56 104 ) ( 368 -55 104 ) skip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.25 0.25 -( 400 -24 256 ) ( 400 -23 256 ) ( 401 -24 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.25 0.25 -( 400 -48 112 ) ( 401 -48 112 ) ( 400 -48 113 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 -24 112 ) ( 640 -24 113 ) ( 640 -23 112 ) skip [ 0 1 0 32 ] [ 0 0 -1 11 ] 0 0.25 0.25 -} -// brush 24 -{ -( -16 264 -16 ) ( -16 265 -16 ) ( -16 264 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( -64 264 -16 ) ( -64 264 -15 ) ( -63 264 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( -64 264 12 ) ( -63 264 12 ) ( -64 265 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 64 392 16 ) ( 64 393 16 ) ( 65 392 16 ) ground_greybrick [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 64 360 16 ) ( 65 360 16 ) ( 64 360 17 ) wall_concrete1 [ -1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 -( 784 392 16 ) ( 784 392 17 ) ( 784 393 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -} -// brush 25 -{ -( 632 72 96 ) ( 632 73 96 ) ( 632 72 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 368 -48 96 ) ( 368 -48 97 ) ( 369 -48 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 368 72 112 ) ( 369 72 112 ) ( 368 73 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 400 104 256 ) ( 400 105 256 ) ( 401 104 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 400 264 112 ) ( 401 264 112 ) ( 400 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 104 112 ) ( 640 104 113 ) ( 640 105 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 26 -{ -( 320 72 96 ) ( 320 73 96 ) ( 320 72 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 360 -48 96 ) ( 360 -48 97 ) ( 361 -48 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 360 72 120 ) ( 361 72 120 ) ( 360 73 120 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 392 104 256 ) ( 392 105 256 ) ( 393 104 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 392 264 112 ) ( 393 264 112 ) ( 392 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 632 104 112 ) ( 632 104 113 ) ( 632 105 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 27 -{ -( 312 256 104 ) ( 312 257 104 ) ( 312 256 105 ) skip [ 0 1.6292067950285372e-07 -0.9999999999999866 -16 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 312 72 104 ) ( 312 72 105 ) ( 313 72 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 312 256 120 ) ( 313 256 120 ) ( 312 257 120 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 344 288 256 ) ( 344 289 256 ) ( 345 288 256 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 344 264 120 ) ( 345 264 120 ) ( 344 264 121 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 288 120 ) ( 320 288 121 ) ( 320 289 120 ) skip [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 28 -{ -( 312 144 32 ) ( 312 16 32 ) ( 312 144 16 ) surface_beige_edge [ 0 -1.3113417006681922e-07 0.9999999999999913 31.99997 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 -48 ] 270 0.5 0.5 -( 320 16 16 ) ( 312 16 16 ) ( 320 16 32 ) surface_beige_edge [ 0.9999999999999957 0 8.742277997596912e-08 16 ] [ -8.742277997596912e-08 0 0.9999999999999957 0 ] 180 0.5 0.5 -( 312 144 16 ) ( 312 16 16 ) ( 320 144 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -56 ] 0 1 1 -( 320 144 32 ) ( 320 16 32 ) ( 312 144 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 312 248 16 ) ( 320 248 16 ) ( 312 248 32 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 144 16 ) ( 320 16 16 ) ( 320 144 32 ) skip [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 29 -{ -( 312 -48 16 ) ( 312 -32 16 ) ( 312 -48 32 ) surface_beige_edge [ 0 -1.3113417006681922e-07 0.9999999999999913 31.999966 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 -47.999992 ] 270 0.5 0.5 -( 312 -40 32 ) ( 320 -40 32 ) ( 312 -40 16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 -48 16 ) ( 320 -32 16 ) ( 312 -48 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -56 ] 0 1 1 -( 312 -48 32 ) ( 312 -32 32 ) ( 320 -48 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 312 -32 32 ) ( 312 -32 16 ) ( 320 -32 32 ) surface_beige_edge [ 1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 -48 32 ) ( 320 -32 32 ) ( 320 -48 16 ) skip [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 30 -{ -( 312 144 88 ) ( 312 16 88 ) ( 312 144 32 ) surface_beige [ 0 -1.3113417006681922e-07 0.9999999999999913 31.999962 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 -48 ] 270 0.5 0.5 -( 320 16 32 ) ( 312 16 32 ) ( 320 16 88 ) surface_beige_edge [ 0.9999999999999961 0 8.742278000372473e-08 16 ] [ -8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 -( 312 144 32 ) ( 312 16 32 ) ( 320 144 32 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 320 144 104 ) ( 320 16 104 ) ( 312 144 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 312 248 32 ) ( 320 248 32 ) ( 312 248 88 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 144 32 ) ( 320 16 32 ) ( 320 144 88 ) skip [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 31 -{ -( 312 -48 32 ) ( 312 -32 32 ) ( 312 -48 88 ) surface_beige_edge [ 0 0.9999999999999785 2.0663206962145964e-07 31.999962 ] [ 0 -2.0663206962145964e-07 0.9999999999999785 -48 ] 180 0.5 0.5 -( 312 -48 88 ) ( 320 -48 88 ) ( 312 -48 32 ) skip [ 1 0 0 -16 ] [ 0 0 -1 16 ] 0 0.5 0.5 -( 320 -48 32 ) ( 320 -32 32 ) ( 312 -48 32 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 312 -48 96 ) ( 312 -32 96 ) ( 320 -48 96 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 312 -32 88 ) ( 312 -32 32 ) ( 320 -32 88 ) surface_beige_edge [ 0.9999999999999998 0 1.3234889800848443e-23 16 ] [ 1.3234889800848443e-23 0 -0.9999999999999998 0 ] 0 0.5 0.5 -( 320 -48 88 ) ( 320 -32 88 ) ( 320 -48 32 ) skip [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 32 -{ -( 312 144 120 ) ( 312 16 120 ) ( 312 144 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -15.9999695 ] [ 0 0.9999999999999866 1.6292067950285372e-07 48 ] 90 0.5 0.5 -( 320 16 104 ) ( 312 16 104 ) ( 320 16 120 ) surface_beige_edge [ 0.9999999999999961 0 8.742277995965608e-08 16 ] [ -8.742277995965608e-08 0 0.9999999999999961 -32 ] 180 0.5 0.5 -( 312 144 104 ) ( 312 16 104 ) ( 320 144 104 ) surface_beige_edge [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 320 144 120 ) ( 320 16 120 ) ( 312 144 120 ) surface_beige_edge [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 312 248 104 ) ( 320 248 104 ) ( 312 248 120 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 144 104 ) ( 320 16 104 ) ( 320 144 120 ) skip [ 0 1 0 48 ] [ 0 0 -1 48 ] 0 0.5 0.5 -} -// brush 33 -{ -( 312 -48 104 ) ( 312 -32 104 ) ( 312 -48 120 ) surface_beige_corner [ 0 0.9999999999999961 8.742278000372473e-08 -32 ] [ 0 -8.742278000372473e-08 0.9999999999999961 -48 ] 180 0.5 0.5 -( 312 -48 120 ) ( 320 -48 120 ) ( 312 -48 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 48 ] 0 0.5 0.5 -( 320 -48 96 ) ( 320 -32 96 ) ( 312 -48 96 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 312 -48 120 ) ( 312 -32 120 ) ( 320 -48 120 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 312 -32 120 ) ( 312 -32 104 ) ( 320 -32 120 ) skip [ 1 0 0 16 ] [ 0 0 -1 32 ] 0 0.5 0.5 -( 320 -48 120 ) ( 320 -32 120 ) ( 320 -48 104 ) skip [ 0 1 0 48 ] [ 0 0 -1 48 ] 0 0.5 0.5 -} -// brush 34 -{ -( 312 -32 104 ) ( 312 -32 96 ) ( 312 16 104 ) surface_beige [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.99997 ] [ 0 0.9999999999999866 1.6292067950285372e-07 48 ] 90 0.5 0.5 -( 320 -24 104 ) ( 320 -24 96 ) ( 312 -24 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 312 16 96 ) ( 312 -32 96 ) ( 320 16 96 ) surface_beige_edge [ 1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 320 16 104 ) ( 320 -32 104 ) ( 312 16 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 312 8 104 ) ( 312 8 96 ) ( 320 8 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 -( 320 16 104 ) ( 320 16 96 ) ( 320 -32 104 ) skip [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 35 -{ -( 488 264 96 ) ( 488 72 96 ) ( 488 264 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 640 -48 16 ) ( 328 -48 16 ) ( 640 -48 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 264 4 ) ( 328 264 4 ) ( 640 72 4 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 640 72 120 ) ( 328 72 120 ) ( 640 264 120 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 1 1 -( 640 264 96 ) ( 328 264 96 ) ( 640 264 16 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 72 96 ) ( 640 264 96 ) ( 640 72 16 ) wall_brick_scrungly [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 36 -{ -( 320 144 96 ) ( 320 16 96 ) ( 320 144 16 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 16 96 ) ( 328 16 96 ) ( 320 16 16 ) surface_beige_edge [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 144 16 ) ( 320 16 16 ) ( 328 144 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -56 ] 0 1 1 -( 328 144 112 ) ( 328 16 112 ) ( 320 144 112 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -56 ] 0 1 1 -( 320 136 16 ) ( 328 136 16 ) ( 320 136 96 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 328 144 16 ) ( 328 16 16 ) ( 328 144 96 ) surface_beige [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 37 -{ -( 320 -48 16 ) ( 320 -32 16 ) ( 320 -48 96 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 -48 96 ) ( 328 -48 96 ) ( 320 -48 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 328 -48 16 ) ( 328 -32 16 ) ( 320 -48 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -56 ] 0 1 1 -( 320 -48 96 ) ( 320 -32 96 ) ( 328 -48 96 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -56 ] 0 1 1 -( 320 -32 96 ) ( 320 -32 16 ) ( 328 -32 96 ) surface_beige_edge [ -0.9999999999999961 0 8.742278000372473e-08 16 ] [ 8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 -( 328 -48 96 ) ( 328 -32 96 ) ( 328 -48 16 ) surface_beige [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 38 -{ -( 320 8 8 ) ( 320 9 8 ) ( 320 8 9 ) skip [ 0 -1 0 -24 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 320 -48 8 ) ( 320 -48 9 ) ( 321 -48 8 ) skip [ 1 0 0 32 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 320 8 8 ) ( 321 8 8 ) ( 320 9 8 ) skip [ -1 0 0 -32 ] [ 0 -1 0 -24 ] 0 0.25 0.25 -( 360 56 16 ) ( 360 57 16 ) ( 361 56 16 ) floor_checkertiles [ 1 0 0 0 ] [ 0 -1 0 -96 ] 0 0.25 0.25 -( 360 104 16 ) ( 361 104 16 ) ( 360 104 17 ) skip [ -1 0 0 -32 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 448 56 16 ) ( 448 56 17 ) ( 448 57 16 ) skip [ 0 1 0 24 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -} -// brush 39 -{ -( 320 -32 104 ) ( 320 -32 96 ) ( 320 16 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.99997 ] [ 0 0.9999999999999866 1.6292067950285372e-07 48 ] 90 0.5 0.5 -( 328 -24 104 ) ( 328 -24 96 ) ( 320 -24 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 16 96 ) ( 320 -32 96 ) ( 328 16 96 ) surface_beige_edge [ -0.9999999999999961 8.742278000372473e-08 0 16 ] [ 8.742278000372473e-08 0.9999999999999961 0 48 ] 180 0.5 0.5 -( 328 16 104 ) ( 328 -32 104 ) ( 320 16 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 320 8 104 ) ( 320 8 96 ) ( 328 8 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 16 104 ) ( 328 16 96 ) ( 328 -32 104 ) surface_beige [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 40 -{ -( 312 -24 104 ) ( 312 -24 96 ) ( 312 24 104 ) surface_beige [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.99997 ] [ 0 0.9999999999999866 1.6292067950285372e-07 31.999998 ] 90 0.5 0.5 -( 320 8 104 ) ( 320 8 96 ) ( 312 8 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 312 24 96 ) ( 312 -24 96 ) ( 320 24 96 ) surface_beige_corner [ -4.371139006309477e-08 -0.999999999999999 0 -32 ] [ -0.999999999999999 4.371139006309477e-08 0 48 ] 90 0.5 0.5 -( 320 24 104 ) ( 320 -24 104 ) ( 312 24 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 312 16 104 ) ( 312 16 96 ) ( 320 16 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 -( 320 24 104 ) ( 320 24 96 ) ( 320 -24 104 ) skip [ 0 1 0 32 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 41 -{ -( 320 -24 104 ) ( 320 -24 96 ) ( 320 24 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.99997 ] [ 0 0.9999999999999866 1.6292067950285372e-07 31.999998 ] 90 0.5 0.5 -( 328 8 104 ) ( 328 8 96 ) ( 320 8 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 24 96 ) ( 320 -24 96 ) ( 328 24 96 ) surface_beige_corner [ -0.9999999999999961 8.742277995965608e-08 0 16 ] [ 8.742277995965608e-08 0.9999999999999961 0 32 ] 180 0.5 0.5 -( 328 24 104 ) ( 328 -24 104 ) ( 320 24 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 320 16 104 ) ( 320 16 96 ) ( 328 16 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 24 104 ) ( 328 24 96 ) ( 328 -24 104 ) surface_beige [ 0 1 0 32 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 42 -{ -( 312 -40 104 ) ( 312 -40 96 ) ( 312 8 104 ) surface_beige [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.999954 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 320 -32 104 ) ( 320 -32 96 ) ( 312 -32 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 312 8 96 ) ( 312 -40 96 ) ( 320 8 96 ) surface_beige_corner [ 1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 320 8 104 ) ( 320 -40 104 ) ( 312 8 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 -24 104 ) ( 312 -24 96 ) ( 320 -24 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 -( 320 8 104 ) ( 320 8 96 ) ( 320 -40 104 ) skip [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 43 -{ -( 320 -40 104 ) ( 320 -40 96 ) ( 320 8 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.999954 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 328 -32 104 ) ( 328 -32 96 ) ( 320 -32 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 8 96 ) ( 320 -40 96 ) ( 328 8 96 ) surface_beige_corner [ 1.3113417006681922e-07 0.9999999999999912 0 0 ] [ 0.9999999999999912 -1.3113417006681922e-07 0 48 ] 270 0.5 0.5 -( 328 8 104 ) ( 328 -40 104 ) ( 320 8 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 320 -24 104 ) ( 320 -24 96 ) ( 328 -24 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 8 104 ) ( 328 8 96 ) ( 328 -40 104 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 44 -{ -( 320 -56 104 ) ( 320 -56 96 ) ( 320 -8 104 ) skip [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.999954 ] [ 0 0.9999999999999866 1.6292067950285372e-07 32.000004 ] 90 0.5 0.5 -( 328 -48 104 ) ( 328 -48 96 ) ( 320 -48 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 -8 96 ) ( 320 -56 96 ) ( 328 -8 96 ) skip [ 1.3113417006681922e-07 0.9999999999999912 0 32 ] [ 0.9999999999999912 -1.3113417006681922e-07 0 48 ] 270 0.5 0.5 -( 328 -8 104 ) ( 328 -56 104 ) ( 320 -8 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 320 -32 104 ) ( 320 -32 96 ) ( 328 -32 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 -8 104 ) ( 328 -8 96 ) ( 328 -56 104 ) surface_beige [ 0 1 0 32 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 45 -{ -( 480 -40 16 ) ( 480 -39 16 ) ( 480 -40 17 ) surface_beige [ 0 -1 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 480 -40 16 ) ( 480 -40 17 ) ( 481 -40 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 480 -40 16 ) ( 481 -40 16 ) ( 480 -39 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 488 -24 104 ) ( 488 -23 104 ) ( 489 -24 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 488 136 24 ) ( 489 136 24 ) ( 488 136 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 488 -24 24 ) ( 488 -24 25 ) ( 488 -23 24 ) skip [ 0 1 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 46 -{ -( 432 -48 96 ) ( 432 -56 96 ) ( 432 -48 16 ) wall_brick_scrungly [ 0 1 0 224 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 -56 16 ) ( 432 -56 16 ) ( 640 -56 96 ) wall_brick_scrungly [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 -48 16 ) ( 432 -48 16 ) ( 640 -56 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 640 -56 96 ) ( 432 -56 96 ) ( 640 -48 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 640 -48 96 ) ( 432 -48 96 ) ( 640 -48 16 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 -56 96 ) ( 640 -48 96 ) ( 640 -56 16 ) wall_brick_scrungly [ 0 1 0 224 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 47 -{ -( 312 -56 16 ) ( 312 -48 16 ) ( 312 -56 96 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 312 -56 96 ) ( 384 -56 96 ) ( 312 -56 16 ) wall_brick_scrungly [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 312 -56 16 ) ( 384 -56 16 ) ( 312 -48 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 312 -48 96 ) ( 384 -48 96 ) ( 312 -56 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 312 -48 16 ) ( 384 -48 16 ) ( 312 -48 96 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 384 -56 16 ) ( 384 -56 96 ) ( 384 -48 16 ) wall_brick_scrungly [ 0 -1 0 -224 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 48 -{ -( 432 -40 104 ) ( 432 -48 104 ) ( 432 -40 16 ) surface_beige_edge [ 0 -0.9999999999999961 8.742278000372473e-08 -16 ] [ 0 8.742278000372473e-08 0.9999999999999961 0 ] 180 0.5 0.5 -( 448 -48 16 ) ( 432 -48 16 ) ( 448 -48 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 448 -40 16 ) ( 432 -40 16 ) ( 448 -48 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 448 -48 104 ) ( 432 -48 104 ) ( 448 -40 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 448 -40 104 ) ( 432 -40 104 ) ( 448 -40 16 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 480 -48 104 ) ( 480 -40 104 ) ( 480 -48 16 ) skip [ 0 1 0 56 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 49 -{ -( 328 -48 16 ) ( 328 -40 16 ) ( 328 -48 104 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 -( 328 -48 104 ) ( 384 -48 104 ) ( 328 -48 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 328 -48 16 ) ( 384 -48 16 ) ( 328 -40 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 328 -40 104 ) ( 384 -40 104 ) ( 328 -48 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 328 -40 16 ) ( 384 -40 16 ) ( 328 -40 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 384 -48 16 ) ( 384 -48 104 ) ( 384 -40 16 ) surface_beige_edge [ 0 -1 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 50 -{ -( 392 -48 104 ) ( 392 -48 96 ) ( 392 -40 104 ) surface_beige [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 -( 432 -48 104 ) ( 432 -48 96 ) ( 384 -48 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 432 -48 96 ) ( 432 -40 96 ) ( 384 -48 96 ) surface_beige_edge [ -4.371139006309477e-08 -0.999999999999999 0 -16 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.5 0.5 -( 432 -48 104 ) ( 384 -48 104 ) ( 432 -40 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 384 -40 104 ) ( 384 -40 96 ) ( 432 -40 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 424 -40 104 ) ( 424 -40 96 ) ( 424 -48 104 ) surface_beige [ 0 1 0 56 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 51 -{ -( 384 -56 8 ) ( 384 -55 8 ) ( 384 -56 9 ) ground_cobblestone1 [ 0 -1 0 -224 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 384 -56 8 ) ( 384 -56 9 ) ( 385 -56 8 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 384 -56 8 ) ( 385 -56 8 ) ( 384 -55 8 ) ground_cobblestone1 [ -1 0 0 0 ] [ 0 -1 0 -30 ] 0 0.25 0.25 -( 432 -48 16 ) ( 432 -47 16 ) ( 433 -48 16 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 -1 0 -30 ] 0 0.25 0.25 -( 432 -48 16 ) ( 433 -48 16 ) ( 432 -48 17 ) ground_cobblestone1 [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 432 -48 16 ) ( 432 -48 17 ) ( 432 -47 16 ) ground_cobblestone1 [ 0 1 0 224 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 52 -{ -( 312 -56 96 ) ( 312 -55 96 ) ( 312 -56 97 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 312 -56 96 ) ( 312 -56 97 ) ( 313 -56 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 312 -56 96 ) ( 313 -56 96 ) ( 312 -55 96 ) wall_brick [ -1 0 0 0 ] [ 0 -1 0 -118 ] 0 0.25 0.25 -( 360 -48 104 ) ( 360 -47 104 ) ( 361 -48 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.25 0.25 -( 360 -48 104 ) ( 361 -48 104 ) ( 360 -48 105 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 -48 104 ) ( 640 -48 105 ) ( 640 -47 104 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 53 -{ -( 80 48 152 ) ( 80 49 152 ) ( 80 48 153 ) wall_brick [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 176 -56 152 ) ( 176 -56 153 ) ( 177 -56 152 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 176 48 152 ) ( 177 48 152 ) ( 176 49 152 ) wall_brick [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 208 80 256 ) ( 208 81 256 ) ( 209 80 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 208 264 168 ) ( 209 264 168 ) ( 208 264 169 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 312 80 168 ) ( 312 80 169 ) ( 312 81 168 ) wall_brick [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 54 -{ -( 328 136 104 ) ( 328 137 104 ) ( 328 136 105 ) skip [ 0 -1 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 -( 392 -40 104 ) ( 392 -40 105 ) ( 393 -40 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 -( 392 136 104 ) ( 393 136 104 ) ( 392 137 104 ) ground_wood [ -1 0 0 0 ] [ 0 -1 0 -64 ] 0 0.5 0.5 -( 424 168 112 ) ( 424 169 112 ) ( 425 168 112 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 424 136 112 ) ( 425 136 112 ) ( 424 136 113 ) skip [ -1 0 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 -( 480 168 112 ) ( 480 168 113 ) ( 480 169 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 -} -// brush 55 -{ -( 424 -48 104 ) ( 424 -48 96 ) ( 424 -40 104 ) surface_beige [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 -( 440 -48 104 ) ( 440 -48 96 ) ( 392 -48 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 440 -48 96 ) ( 440 -40 96 ) ( 392 -48 96 ) surface_beige_corner [ -0.9999999999999961 8.742277995965608e-08 0 32 ] [ 8.742277995965608e-08 0.9999999999999961 0 16 ] 180 0.5 0.5 -( 440 -48 104 ) ( 392 -48 104 ) ( 440 -40 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 392 -40 104 ) ( 392 -40 96 ) ( 440 -40 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 432 -40 104 ) ( 432 -40 96 ) ( 432 -48 104 ) surface_beige [ 0 1 0 56 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 56 -{ -( 384 -48 104 ) ( 384 -48 96 ) ( 384 -40 104 ) surface_beige [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 -( 400 -48 104 ) ( 400 -48 96 ) ( 352 -48 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 -48 96 ) ( 400 -40 96 ) ( 352 -48 96 ) surface_beige_corner [ -4.371139006309477e-08 -0.999999999999999 0 -16 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.5 0.5 -( 400 -48 104 ) ( 352 -48 104 ) ( 400 -40 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 352 -40 104 ) ( 352 -40 96 ) ( 400 -40 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 392 -40 104 ) ( 392 -40 96 ) ( 392 -48 104 ) surface_beige [ 0 1 0 56 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 57 -{ -( 328 112 16 ) ( 328 113 16 ) ( 328 112 17 ) redplaid [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 -( 328 104 16 ) ( 328 104 17 ) ( 329 104 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 328 112 16 ) ( 329 112 16 ) ( 328 113 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 -( 352 136 48 ) ( 352 137 48 ) ( 353 136 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 -( 352 136 24 ) ( 353 136 24 ) ( 352 136 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 136 24 ) ( 400 136 25 ) ( 400 137 24 ) redplaid [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 58 -{ -( 328 56 16 ) ( 328 57 16 ) ( 328 56 17 ) redplaid [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 -( 328 24 16 ) ( 328 24 17 ) ( 329 24 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 328 56 16 ) ( 329 56 16 ) ( 328 57 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 -( 360 104 48 ) ( 360 105 48 ) ( 361 104 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 -( 360 104 24 ) ( 361 104 24 ) ( 360 104 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 360 104 24 ) ( 360 104 25 ) ( 360 105 24 ) redplaid [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 59 -{ -( 448 -8 16 ) ( 448 -7 16 ) ( 448 -8 17 ) redplaid [ 0 -1 0 -184 ] [ 0 0 -1 0 ] 0 1 1 -( 448 -40 16 ) ( 448 -40 17 ) ( 449 -40 16 ) redplaid [ 1 0 0 -120 ] [ 0 0 -1 0 ] 0 1 1 -( 448 -8 16 ) ( 449 -8 16 ) ( 448 -7 16 ) redplaid [ -1 0 0 120 ] [ 0 -1 0 -184 ] 0 1 1 -( 480 40 48 ) ( 480 41 48 ) ( 481 40 48 ) redplaid [ 1 0 0 -120 ] [ 0 -1 0 -184 ] 0 1 1 -( 480 136 24 ) ( 481 136 24 ) ( 480 136 25 ) redplaid [ -1 0 0 120 ] [ 0 0 -1 0 ] 0 1 1 -( 480 40 24 ) ( 480 40 25 ) ( 480 41 24 ) redplaid [ 0 1 0 184 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 60 -{ -( -16 360 -20 ) ( -16 361 -20 ) ( -16 360 -19 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( -64 360 -20 ) ( -64 360 -19 ) ( -63 360 -20 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( -64 360 -20 ) ( -63 360 -20 ) ( -64 361 -20 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 64 488 12 ) ( 64 489 12 ) ( 65 488 12 ) asphalt [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 64 600 12 ) ( 65 600 12 ) ( 64 600 13 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 784 488 12 ) ( 784 488 13 ) ( 784 489 12 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 61 -{ -( -16 360 -16 ) ( -16 361 -16 ) ( -16 360 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 -( -64 360 -16 ) ( -64 360 -15 ) ( -63 360 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 -( -64 360 12 ) ( -63 360 12 ) ( -64 361 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 64 488 16 ) ( 64 489 16 ) ( 65 488 16 ) ground_greybrick [ -4.371139006309477e-08 -0.999999999999999 0 0 ] [ -0.999999999999999 4.371139006309477e-08 0 73 ] 90 0.5 0.5 -( 64 600 16 ) ( 65 600 16 ) ( 64 600 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 -( 80 488 16 ) ( 80 488 17 ) ( 80 489 16 ) wall_concrete1 [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 1 1 -} -// brush 62 -{ -( -16 600 -16 ) ( -16 601 -16 ) ( -16 600 -15 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 16 ] 0 0.5 0.5 -( -64 600 -16 ) ( -64 600 -15 ) ( -63 600 -16 ) wall_concrete1 [ 1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 -( -64 600 12 ) ( -63 600 12 ) ( -64 601 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 64 728 16 ) ( 64 729 16 ) ( 65 728 16 ) ground_greybrick [ 1 0 0 0 ] [ 0 -1 0 48 ] 0 0.5 0.5 -( 64 704 16 ) ( 65 704 16 ) ( 64 704 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 -( 576 728 16 ) ( 576 728 17 ) ( 576 729 16 ) wall_concrete1 [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 63 -{ -( 736 600 -16 ) ( 736 601 -16 ) ( 736 600 -15 ) wall_concrete1 [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 144 600 -16 ) ( 144 600 -15 ) ( 145 600 -16 ) wall_concrete1 [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 144 600 12 ) ( 145 600 12 ) ( 144 601 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 272 728 16 ) ( 272 729 16 ) ( 273 728 16 ) ground_greybrick [ 1 0 0 0 ] [ 0 -1 0 48 ] 0 0.5 0.5 -( 272 720 16 ) ( 273 720 16 ) ( 272 720 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 784 728 16 ) ( 784 728 17 ) ( 784 729 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 64 -{ -( 576 600 -20 ) ( 576 601 -20 ) ( 576 600 -19 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( -112 600 -20 ) ( -112 600 -19 ) ( -111 600 -20 ) skip [ 1 0 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( -112 600 -20 ) ( -111 600 -20 ) ( -112 601 -20 ) skip [ -1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 16 728 12 ) ( 16 729 12 ) ( 17 728 12 ) asphalt [ 1 0 0 96 ] [ 0 -1 0 40 ] 0 0.5 0.5 -( 16 720 12 ) ( 17 720 12 ) ( 16 720 13 ) skip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 736 728 12 ) ( 736 728 13 ) ( 736 729 12 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 65 -{ -( 64 336 24 ) ( 64 337 24 ) ( 64 336 25 ) redplaid [ 0 -1 0 0 ] [ 0 0 -1 8 ] 0 1 1 -( 56 344 24 ) ( 56 344 25 ) ( 57 344 24 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 8 ] 0 1 1 -( 56 336 24 ) ( 57 336 24 ) ( 56 337 24 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 80 360 152 ) ( 80 361 152 ) ( 81 360 152 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 80 352 32 ) ( 81 352 32 ) ( 80 352 33 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 8 ] 0 1 1 -( 72 360 32 ) ( 72 360 33 ) ( 72 361 32 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 8 ] 0 1 1 -} -// brush 66 -{ -( 56 336 16 ) ( 56 337 16 ) ( 56 336 17 ) redplaid [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 56 336 16 ) ( 56 336 17 ) ( 57 336 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 56 336 16 ) ( 57 336 16 ) ( 56 337 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 80 360 18 ) ( 80 361 18 ) ( 81 360 18 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 80 360 24 ) ( 81 360 24 ) ( 80 360 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 80 360 24 ) ( 80 360 25 ) ( 80 361 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 67 -{ -( 64 344 24 ) ( 56 336 18 ) ( 56 360 18 ) redplaid [ 0 -1.0000000000000002 0 0 ] [ 1.0000000000000002 0 0 -70.43137 ] 0 1 1 -( 72 344 24 ) ( 80 336 18 ) ( 56 336 18 ) redplaid [ 1.0000000000000002 0 0 0 ] [ 0 1.0000000000000002 0 -94.58823 ] 0 1 1 -( 80 336 18 ) ( 80 360 18 ) ( 56 360 18 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 64 352 24 ) ( 72 352 24 ) ( 72 344 24 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 72 352 24 ) ( 64 352 24 ) ( 56 360 18 ) redplaid [ -1.0000000000000002 0 0 0 ] [ 0 -1.0000000000000002 0 89.568634 ] 0 1 1 -( 72 352 24 ) ( 80 360 18 ) ( 80 336 18 ) redplaid [ 0 1.0000000000000002 0 0 ] [ -1.0000000000000002 0 0 68 ] 0 1 1 -} -// brush 68 -{ -( 60 336 152 ) ( 60 337 152 ) ( 60 336 153 ) redplaid [ 0 -1 0 24 ] [ 0 0 -1 8 ] 0 1 1 -( 56 340 152 ) ( 56 340 153 ) ( 57 340 152 ) redplaid [ 1 0 0 -8 ] [ 0 0 -1 8 ] 0 1 1 -( 56 336 152 ) ( 57 336 152 ) ( 56 337 152 ) redplaid [ -1 0 0 8 ] [ 0 -1 0 24 ] 0 1 1 -( 88 368 156 ) ( 88 369 156 ) ( 89 368 156 ) redplaid [ 1 0 0 -8 ] [ 0 -1 0 24 ] 0 1 1 -( 88 356 160 ) ( 89 356 160 ) ( 88 356 161 ) redplaid [ -1 0 0 8 ] [ 0 0 -1 8 ] 0 1 1 -( 76 368 160 ) ( 76 368 161 ) ( 76 369 160 ) redplaid [ 0 1 0 -24 ] [ 0 0 -1 8 ] 0 1 1 -} -// brush 69 -{ -( 64 344 186 ) ( 54 334 180 ) ( 54 362 180 ) redplaid [ 0 -1.0000000000000002 0 24 ] [ 1.0000000000000002 0 0 -200.0878 ] 0 1 1 -( 72 344 186 ) ( 82 334 180 ) ( 54 334 180 ) redplaid [ 1.0000000000000002 0 0 -8 ] [ 0 1.0000000000000002 0 -222 ] 0 1 1 -( 82 334 180 ) ( 82 362 180 ) ( 54 362 180 ) redplaid [ -1 0 0 8 ] [ 0 -1 0 24 ] 0 1 1 -( 64 352 186 ) ( 72 352 186 ) ( 72 344 186 ) redplaid [ 1 0 0 -8 ] [ 0 -1 0 24 ] 0 1 1 -( 54 362 180 ) ( 82 362 180 ) ( 72 352 186 ) redplaid [ -1.0000000000000002 0 0 8 ] [ 0 -1.0000000000000002 0 215.36586 ] 0 1 1 -( 72 352 186 ) ( 82 362 180 ) ( 82 334 180 ) redplaid [ 0 1.0000000000000002 0 -24 ] [ -1.0000000000000002 0 0 -62 ] 0 1 1 -} -// brush 70 -{ -( 60 354 156 ) ( 60 356 156 ) ( 54 362 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 56 360 180 ) ( 62 354 156 ) ( 60 354 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 62 354 156 ) ( 62 356 156 ) ( 60 356 156 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 56 360 180 ) ( 54 360 180 ) ( 54 362 180 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 60 356 156 ) ( 62 356 156 ) ( 56 362 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 56 362 180 ) ( 62 356 156 ) ( 62 354 156 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 71 -{ -( 60 340 156 ) ( 60 342 156 ) ( 54 336 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 56 334 180 ) ( 62 340 156 ) ( 60 340 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 62 340 156 ) ( 62 342 156 ) ( 60 342 156 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 56 334 180 ) ( 54 334 180 ) ( 54 336 180 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 60 342 156 ) ( 62 342 156 ) ( 56 336 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 56 336 180 ) ( 62 342 156 ) ( 62 340 156 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 72 -{ -( 74 342 156 ) ( 80 336 180 ) ( 80 334 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 80 334 180 ) ( 82 334 180 ) ( 76 340 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 76 342 156 ) ( 74 342 156 ) ( 74 340 156 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 80 336 180 ) ( 82 336 180 ) ( 82 334 180 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 76 342 156 ) ( 82 336 180 ) ( 80 336 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 76 342 156 ) ( 76 340 156 ) ( 82 334 180 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 73 -{ -( 74 356 156 ) ( 80 362 180 ) ( 80 360 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 80 360 180 ) ( 82 360 180 ) ( 76 354 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 76 356 156 ) ( 74 356 156 ) ( 74 354 156 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 80 362 180 ) ( 82 362 180 ) ( 82 360 180 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 76 356 156 ) ( 82 362 180 ) ( 80 362 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 76 356 156 ) ( 76 354 156 ) ( 82 360 180 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 74 -{ -( 80 360 16 ) ( 80 360 12 ) ( 80 368 12 ) clip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 80 360 16 ) ( 784 360 16 ) ( 784 360 12 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 784 360 12 ) ( 784 368 12 ) ( 80 368 12 ) clip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 80 368 12 ) ( 784 368 12 ) ( 784 360 16 ) clip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 784 360 16 ) ( 784 368 12 ) ( 784 360 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 75 -{ -( 400 104 16 ) ( 400 105 16 ) ( 400 104 17 ) redplaid [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 -( 400 104 16 ) ( 400 104 17 ) ( 401 104 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 104 16 ) ( 401 104 16 ) ( 400 105 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 -( 448 136 96 ) ( 448 137 96 ) ( 449 136 96 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 -( 448 136 24 ) ( 449 136 24 ) ( 448 136 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 448 136 24 ) ( 448 136 25 ) ( 448 137 24 ) redplaid [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 76 -{ -( 328 136 16 ) ( 328 137 16 ) ( 328 136 17 ) skip [ 0 -1 0 8 ] [ 0 0 -1 0 ] 0 1 1 -( 328 136 16 ) ( 328 136 17 ) ( 329 136 16 ) surface_beige [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 328 136 4 ) ( 329 136 4 ) ( 328 137 4 ) skip [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 1 1 -( 448 144 120 ) ( 448 145 120 ) ( 449 144 120 ) skip [ 1 0 0 0 ] [ 0 -1 0 8 ] 0 1 1 -( 448 264 24 ) ( 449 264 24 ) ( 448 264 25 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 488 144 24 ) ( 488 144 25 ) ( 488 145 24 ) skip [ 0 1 0 -8 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 77 -{ -( 80 600 16 ) ( 80 592 12 ) ( 80 600 12 ) clip [ -1.2246467991473532e-16 -1 0 0 ] [ 0 0 -1 0 ] 180 1 1 -( 784 592 12 ) ( 80 592 12 ) ( 80 600 16 ) clip [ -1 1.2246467991473532e-16 0 32 ] [ 1.2246467991473532e-16 1 0 0 ] 180 1 1 -( 80 600 12 ) ( 80 592 12 ) ( 784 592 12 ) clip [ 1 -1.2246467991473532e-16 0 -32 ] [ 1.2246467991473532e-16 1 0 0 ] 180 1 1 -( 784 600 16 ) ( 80 600 16 ) ( 80 600 12 ) clip [ -1 1.2246467991473532e-16 0 32 ] [ 0 0 -1 0 ] 180 1 1 -( 576 600 16 ) ( 576 600 12 ) ( 576 592 12 ) clip [ 1.2246467991473532e-16 1 0 0 ] [ 0 0 -1 0 ] 180 1 1 -} -// brush 78 -{ -( 80 936 16 ) ( 80 232 16 ) ( 80 232 12 ) clip [ -1.8369701987210297e-16 -1 0 56 ] [ 0 0 -1 0 ] 180 1 1 -( 80 360 16 ) ( 88 360 12 ) ( 80 360 12 ) clip [ 1 -1.8369701987210297e-16 0 23.999992 ] [ 0 0 -1 0 ] 180 1 1 -( 80 232 12 ) ( 88 232 12 ) ( 88 936 12 ) clip [ 1.8369701987210297e-16 1 0 -56 ] [ -1 1.8369701987210297e-16 0 -24 ] 270 1 1 -( 80 600 16 ) ( 80 600 12 ) ( 88 600 12 ) clip [ -1 1.8369701987210297e-16 0 -23.999992 ] [ 0 0 -1 0 ] 180 1 1 -( 88 936 12 ) ( 88 232 12 ) ( 80 232 16 ) clip [ -1.8369701987210297e-16 -1 0 56 ] [ -1 1.8369701987210297e-16 0 -24 ] 96.379364 1 1 -} -// brush 79 -{ -( 96 704 16 ) ( 96 705 16 ) ( 96 704 17 ) wall_brick [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 544 704 16 ) ( 544 704 17 ) ( 545 704 16 ) wall_brick [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 0.25 0.25 -( 544 704 12 ) ( 545 704 12 ) ( 544 705 12 ) skip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 0.25 0.25 -( 576 736 64 ) ( 576 737 64 ) ( 577 736 64 ) wall_brick [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 576 720 32 ) ( 577 720 32 ) ( 576 720 33 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 576 736 32 ) ( 576 736 33 ) ( 576 737 32 ) wall_brick [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 80 -{ -( 96 744 -20 ) ( 96 745 -20 ) ( 96 744 -19 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( -112 720 -20 ) ( -112 720 -19 ) ( -111 720 -20 ) skip [ 1 0 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( -112 744 -20 ) ( -111 744 -20 ) ( -112 745 -20 ) skip [ -1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 16 872 12 ) ( 16 873 12 ) ( 17 872 12 ) asphalt [ 1 0 0 96 ] [ 0 -1 0 108 ] 0 0.5 0.5 -( 16 1136 12 ) ( 17 1136 12 ) ( 16 1136 13 ) skip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 736 872 12 ) ( 736 872 13 ) ( 736 873 12 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 81 -{ -( 736 712 -16 ) ( 736 713 -16 ) ( 736 712 -15 ) wall_concrete1 [ 0 -1 0 112 ] [ 0 0 -1 0 ] 0 1 1 -( 144 720 -16 ) ( 144 720 -15 ) ( 145 720 -16 ) wall_concrete1 [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 144 712 12 ) ( 145 712 12 ) ( 144 713 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 272 840 16 ) ( 272 841 16 ) ( 273 840 16 ) ground_greybrick [ 1 0 0 0 ] [ 0 -1 0 -112 ] 0 0.5 0.5 -( 272 864 16 ) ( 273 864 16 ) ( 272 864 17 ) wall_concrete1 [ -1 0 0 128 ] [ 0 0 -1 0 ] 0 1 1 -( 848 840 16 ) ( 848 840 17 ) ( 848 841 16 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 82 -{ -( 784 704 16 ) ( 784 705 16 ) ( 784 704 17 ) wall_brick [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1344 704 16 ) ( 1344 704 17 ) ( 1345 704 16 ) wall_brick [ 1 0 0 128 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1344 704 12 ) ( 1345 704 12 ) ( 1344 705 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 1376 736 64 ) ( 1376 737 64 ) ( 1377 736 64 ) wall_brick [ 1 0 0 128 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 1376 720 32 ) ( 1377 720 32 ) ( 1376 720 33 ) wall_brick [ -1 0 0 -128 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1168 736 32 ) ( 1168 736 33 ) ( 1168 737 32 ) wall_brick [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 83 -{ -( 736 728 -20 ) ( 736 729 -20 ) ( 736 728 -19 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 608 864 -20 ) ( 608 864 -19 ) ( 609 864 -20 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 608 728 -20 ) ( 609 728 -20 ) ( 608 729 -20 ) skip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 736 856 12 ) ( 736 857 12 ) ( 737 856 12 ) asphalt [ 1 0 0 64 ] [ 0 -1 0 76 ] 0 0.5 0.5 -( 736 1136 12 ) ( 737 1136 12 ) ( 736 1136 13 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 848 856 12 ) ( 848 856 13 ) ( 848 857 12 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 84 -{ -( 848 872 -16 ) ( 848 873 -16 ) ( 848 872 -15 ) wall_concrete1 [ 0 -1 0 272 ] [ 0 0 -1 0 ] 0 1 1 -( 304 800 -16 ) ( 304 800 -15 ) ( 305 800 -16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 304 872 12 ) ( 305 872 12 ) ( 304 873 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 432 1000 16 ) ( 432 1001 16 ) ( 433 1000 16 ) ground_greybrick [ 1 0 0 -96 ] [ 0 -1 0 -112 ] 0 0.5 0.5 -( 432 1136 16 ) ( 433 1136 16 ) ( 432 1136 17 ) skip [ -1 0 0 32 ] [ 0 0 -1 0 ] 0 1 1 -( 944 1000 16 ) ( 944 1000 17 ) ( 944 1001 16 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 85 -{ -( 736 600 16 ) ( 736 592 12 ) ( 736 600 12 ) clip [ -0 -1 0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 992 592 12 ) ( 288 592 12 ) ( 288 600 16 ) clip [ 1 0 -0 0 ] [ 0 -0.894427190999916 -0.447213595499958 0 ] 0 1 1 -( 288 600 12 ) ( 288 592 12 ) ( 992 592 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 992 600 16 ) ( 288 600 16 ) ( 288 600 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 784 600 16 ) ( 784 600 12 ) ( 784 592 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 86 -{ -( 576 1048 16 ) ( 576 344 16 ) ( 576 344 12 ) clip [ 0 -1 0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 576 600 16 ) ( 584 600 12 ) ( 576 600 12 ) clip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 576 344 12 ) ( 584 344 12 ) ( 584 1048 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 576 704 16 ) ( 576 704 12 ) ( 584 704 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 584 1048 12 ) ( 584 344 12 ) ( 576 344 16 ) clip [ 0.894427190999916 0 -0.447213595499958 0 ] [ 0 -1 0 0 ] 0 1 1 -} -// brush 87 -{ -( 728 1048 12 ) ( 736 344 16 ) ( 728 344 12 ) clip [ 0.894427190999916 0 0.447213595499958 -29.020447 ] [ 0 -1 0 0 ] 0 1 1 -( 736 600 16 ) ( 736 600 12 ) ( 728 600 12 ) clip [ 1 0 0 -40 ] [ 0 0 -1 0 ] 0 1 1 -( 736 344 12 ) ( 728 1048 12 ) ( 728 344 12 ) clip [ -1 0 0 40 ] [ 0 -1 0 0 ] 0 1 1 -( 736 864 16 ) ( 728 864 12 ) ( 736 864 12 ) clip [ -1 0 0 40 ] [ 0 0 -1 0 ] 0 1 1 -( 736 1048 16 ) ( 736 344 12 ) ( 736 344 16 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 88 -{ -( 840 1312 12 ) ( 848 608 16 ) ( 840 608 12 ) clip [ 0.894427190999916 -0 0.447213595499958 0 ] [ -0 -1 0 0 ] 0 1 1 -( 848 864 16 ) ( 848 864 12 ) ( 840 864 12 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 848 608 12 ) ( 840 1312 12 ) ( 840 608 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 848 1136 16 ) ( 840 1136 12 ) ( 848 1136 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 848 1312 16 ) ( 848 608 12 ) ( 848 608 16 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 89 -{ -( 736 864 16 ) ( 736 864 12 ) ( 736 872 12 ) clip [ 0 -1 0 -8 ] [ 0 0 -1 0 ] 0 1 1 -( 144 864 16 ) ( 848 864 16 ) ( 848 864 12 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 848 864 12 ) ( 848 872 12 ) ( 144 872 12 ) clip [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 1 1 -( 144 872 12 ) ( 848 872 12 ) ( 848 864 16 ) clip [ 1 0 0 0 ] [ 0 -1 0 -8 ] 0 1 1 -( 848 864 16 ) ( 848 872 12 ) ( 848 864 12 ) clip [ 0 1 0 8 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 90 -{ -( 728 872 12 ) ( 736 864 16 ) ( 728 864 12 ) clip [ 0.894427190999916 -0 0.447213595499958 0 ] [ -0 -1 0 0 ] 0 1 1 -( 728 864 12 ) ( 736 864 16 ) ( 736 864 12 ) clip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 736 864 12 ) ( 736 872 12 ) ( 728 872 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 728 872 12 ) ( 736 872 12 ) ( 736 864 16 ) clip [ 1 -0 0 0 ] [ -0 -0.894427190999916 0.447213595499958 0 ] 0 1 1 -( 736 864 16 ) ( 736 872 12 ) ( 736 864 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 91 -{ -( 728 592 12 ) ( 728 600 12 ) ( 736 600 16 ) clip [ 0.894427190999916 -0 0.447213595499958 0 ] [ -0 -1 0 0 ] 0 1 1 -( 728 592 12 ) ( 736 600 16 ) ( 736 592 12 ) clip [ 1 0 -0 0 ] [ 0 -0.894427190999916 -0.447213595499958 0 ] 0 1 1 -( 736 600 12 ) ( 728 592 12 ) ( 736 592 12 ) clip [ -1 0 -0 0 ] [ -0 -1 0 0 ] 0 1 1 -( 728 600 12 ) ( 736 600 12 ) ( 736 600 16 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 736 600 16 ) ( 736 600 12 ) ( 736 592 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 92 -{ -( 576 600 16 ) ( 576 592 12 ) ( 576 600 12 ) clip [ -0 -1 0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 584 592 12 ) ( 576 592 12 ) ( 576 600 16 ) clip [ 1 0 -0 0 ] [ 0 -0.894427190999916 -0.447213595499958 0 ] 0 1 1 -( 576 600 12 ) ( 576 592 12 ) ( 584 592 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 584 600 12 ) ( 576 600 16 ) ( 576 600 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 584 592 12 ) ( 576 600 16 ) ( 584 600 12 ) clip [ 0.894427190999916 0 -0.447213595499958 0 ] [ 0 -1 -0 0 ] 0 1 1 -} -// brush 93 -{ -( 576 704 16 ) ( 576 704 12 ) ( 576 712 12 ) clip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 584 704 12 ) ( 576 704 12 ) ( 576 704 16 ) clip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 576 704 12 ) ( 584 712 12 ) ( 576 712 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 584 712 12 ) ( 576 704 16 ) ( 576 712 12 ) clip [ 1 0 0 0 ] [ 0 -0.894427190999916 0.447213595499958 0 ] 0 1 1 -( 584 712 12 ) ( 584 704 12 ) ( 576 704 16 ) clip [ 0.894427190999916 0 -0.447213595499958 0 ] [ 0 -1 0 0 ] 0 1 1 -} -// brush 94 -{ -( 312 248 16 ) ( 312 249 16 ) ( 312 248 17 ) skip [ 0 -1 0 -48 ] [ 0 0 -1 0 ] 0 1 1 -( 312 256 16 ) ( 312 256 17 ) ( 313 256 16 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 312 248 16 ) ( 313 248 16 ) ( 312 249 16 ) skip [ -1 0 0 24 ] [ 0 -1 0 -48 ] 0 1 1 -( 328 264 120 ) ( 328 265 120 ) ( 329 264 120 ) skip [ 1 0 0 -24 ] [ 0 -1 0 -48 ] 0 1 1 -( 328 264 24 ) ( 329 264 24 ) ( 328 264 25 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 328 264 24 ) ( 328 264 25 ) ( 328 265 24 ) skip [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 95 -{ -( 80 160 0 ) ( 80 161 0 ) ( 80 160 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 160 0 ) ( 80 160 1 ) ( 81 160 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 160 52 ) ( 81 160 52 ) ( 80 161 52 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 192 96 ) ( 112 193 96 ) ( 113 192 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 168 16 ) ( 113 168 16 ) ( 112 168 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 88 192 16 ) ( 88 192 17 ) ( 88 193 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 96 -{ -( 80 48 0 ) ( 80 49 0 ) ( 80 48 1 ) surface_green [ 0 -1 0 -32 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 48 0 ) ( 80 48 1 ) ( 81 48 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 48 52 ) ( 81 48 52 ) ( 80 49 52 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 112 80 96 ) ( 112 81 96 ) ( 113 80 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 112 56 16 ) ( 113 56 16 ) ( 112 56 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 88 80 16 ) ( 88 80 17 ) ( 88 81 16 ) surface_green [ 0 1 0 32 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 97 -{ -( 72 -248 88 ) ( 72 -247 88 ) ( 72 -248 89 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 -63.999992 ] 90 0.5 0.5 -( 80 -64 88 ) ( 80 -64 89 ) ( 81 -64 88 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 -32 ] [ -0.999999999999999 0 4.371139006309477e-08 16 ] 90 0.5 0.5 -( 80 -248 104 ) ( 81 -248 104 ) ( 80 -247 104 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 -( 112 -216 112 ) ( 112 -215 112 ) ( 113 -216 112 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 -( 112 -48 104 ) ( 113 -48 104 ) ( 112 -48 105 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 -( 312 -216 104 ) ( 312 -216 105 ) ( 312 -215 104 ) surface_green_edge [ 0 -4.371139006309477e-08 -0.999999999999999 32 ] [ 0 -0.999999999999999 4.371139006309477e-08 16.000008 ] 90 0.5 0.5 -} -// brush 98 -{ -( 224 8 16 ) ( 224 9 16 ) ( 224 8 17 ) redplaid [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 -( 224 104 16 ) ( 224 104 17 ) ( 225 104 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 224 8 16 ) ( 225 8 16 ) ( 224 9 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 -( 248 96 48 ) ( 248 97 48 ) ( 249 96 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 -( 248 136 24 ) ( 249 136 24 ) ( 248 136 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 312 96 24 ) ( 312 96 25 ) ( 312 97 24 ) redplaid [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 99 -{ -( 80 -56 48 ) ( 80 -55 48 ) ( 80 -56 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 -15.999992 ] 90 0.5 0.5 -( 80 -56 48 ) ( 80 -56 49 ) ( 81 -56 48 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 -32 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 -56 120 ) ( 81 -56 120 ) ( 80 -55 120 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 112 -24 144 ) ( 112 -23 144 ) ( 113 -24 144 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 112 -48 64 ) ( 113 -48 64 ) ( 112 -48 65 ) skip [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 312 -24 64 ) ( 312 -24 65 ) ( 312 -23 64 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 100 -{ -( 80 -56 0 ) ( 80 -55 0 ) ( 80 -56 1 ) surface_green [ 0 -1 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 -56 0 ) ( 80 -56 1 ) ( 81 -56 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 -56 48 ) ( 81 -56 48 ) ( 80 -55 48 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 112 -24 96 ) ( 112 -23 96 ) ( 113 -24 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 112 -48 16 ) ( 113 -48 16 ) ( 112 -48 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 88 -24 16 ) ( 88 -24 17 ) ( 88 -23 16 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 101 -{ -( 224 -48 16 ) ( 224 -47 16 ) ( 224 -48 17 ) redplaid [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 -( 224 -48 16 ) ( 224 -48 17 ) ( 225 -48 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 224 -48 16 ) ( 225 -48 16 ) ( 224 -47 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 -( 248 40 48 ) ( 248 41 48 ) ( 249 40 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 -( 248 64 24 ) ( 249 64 24 ) ( 248 64 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 248 40 24 ) ( 248 40 25 ) ( 248 41 24 ) redplaid [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 102 -{ -( 72 -248 128 ) ( 72 -247 128 ) ( 72 -248 129 ) surface_green [ 0 -1 0 8 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 80 -64 128 ) ( 80 -64 129 ) ( 81 -64 128 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 80 -248 144 ) ( 81 -248 144 ) ( 80 -247 144 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 -( 112 -216 152 ) ( 112 -215 152 ) ( 113 -216 152 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 112 -48 144 ) ( 113 -48 144 ) ( 112 -48 145 ) skip [ -1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 312 -216 144 ) ( 312 -216 145 ) ( 312 -215 144 ) surface_green [ 0 1 0 -8 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -} -// brush 103 -{ -( 80 -56 0 ) ( 80 -55 0 ) ( 80 -56 1 ) surface_green [ 0 -1 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 -56 0 ) ( 80 -56 1 ) ( 81 -56 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 -56 16 ) ( 81 -56 16 ) ( 80 -55 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 112 -24 52 ) ( 112 -23 52 ) ( 113 -24 52 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 112 -48 16 ) ( 113 -48 16 ) ( 112 -48 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 224 -24 16 ) ( 224 -24 17 ) ( 224 -23 16 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 104 -{ -( 224 -56 0 ) ( 224 -55 0 ) ( 224 -56 1 ) surface_green [ 0 -1 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 224 -56 0 ) ( 224 -56 1 ) ( 225 -56 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 224 -56 16 ) ( 225 -56 16 ) ( 224 -55 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 256 -24 96 ) ( 256 -23 96 ) ( 257 -24 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 256 -48 16 ) ( 257 -48 16 ) ( 256 -48 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 312 -24 16 ) ( 312 -24 17 ) ( 312 -23 16 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 105 -{ -( 80 -56 -8 ) ( 80 -55 -8 ) ( 80 -56 -7 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 16 ] [ 0 0.999999999999999 4.371139006309477e-08 -15.999992 ] 90 0.5 0.5 -( 176 -56 -8 ) ( 176 -56 -7 ) ( 177 -56 -8 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 16 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 176 -56 96 ) ( 177 -56 96 ) ( 176 -55 96 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 208 -24 104 ) ( 208 -23 104 ) ( 209 -24 104 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 208 -48 8 ) ( 209 -48 8 ) ( 208 -48 9 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 312 -24 8 ) ( 312 -24 9 ) ( 312 -23 8 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 106 -{ -( 944 584 -20 ) ( 944 585 -20 ) ( 944 584 -19 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 816 720 -20 ) ( 816 720 -19 ) ( 817 720 -20 ) skip [ 1 0 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 816 584 -20 ) ( 817 584 -20 ) ( 816 585 -20 ) skip [ -1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 944 712 12 ) ( 944 713 12 ) ( 945 712 12 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 944 800 12 ) ( 945 800 12 ) ( 944 800 13 ) skip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1408 712 12 ) ( 1408 712 13 ) ( 1408 713 12 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 107 -{ -( 848 792 -16 ) ( 848 793 -16 ) ( 848 792 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 304 720 -16 ) ( 304 720 -15 ) ( 305 720 -16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 304 792 12 ) ( 305 792 12 ) ( 304 793 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 432 920 16 ) ( 432 921 16 ) ( 433 920 16 ) ground_greybrick [ 1 0 0 -96 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 432 800 16 ) ( 433 800 16 ) ( 432 800 17 ) skip [ -1 0 0 32 ] [ 0 0 -1 0 ] 0 1 1 -( 944 920 16 ) ( 944 920 17 ) ( 944 921 16 ) wall_concrete1 [ 0 1 0 0 ] [ 0 0 -1 -32 ] 0 1 1 -} -// brush 108 -{ -( 80 256 40 ) ( 80 257 40 ) ( 80 256 41 ) surface_green [ 0 4.371139006309477e-08 -0.999999999999999 -47.999954 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 256 40 ) ( 80 256 41 ) ( 81 256 40 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -56 ] 0 0.5 0.5 -( 80 256 112 ) ( 81 256 112 ) ( 80 257 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 288 120 ) ( 112 289 120 ) ( 113 288 120 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 264 56 ) ( 113 264 56 ) ( 112 264 57 ) surface_green [ 4.371139006309477e-08 0 -0.999999999999999 -47.999954 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 312 288 56 ) ( 312 288 57 ) ( 312 289 56 ) skip [ 0 1 0 0 ] [ 0 0 -1 -56 ] 0 0.5 0.5 -} -// brush 109 -{ -( 80 -56 40 ) ( 80 -55 40 ) ( 80 -56 41 ) surface_green [ 0 4.371139006309477e-08 -0.999999999999999 -48 ] [ 0 0.999999999999999 4.371139006309477e-08 -16 ] 90 0.5 0.5 -( 80 -56 40 ) ( 80 -56 41 ) ( 81 -56 40 ) surface_green [ -4.371139006309477e-08 0 -0.999999999999999 -48.000015 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 -56 112 ) ( 81 -56 112 ) ( 80 -55 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 112 -24 120 ) ( 112 -23 120 ) ( 113 -24 120 ) skip [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 112 -48 56 ) ( 113 -48 56 ) ( 112 -48 57 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -56 ] 0 0.5 0.5 -( 312 -24 56 ) ( 312 -24 57 ) ( 312 -23 56 ) skip [ 0 1 0 -16 ] [ 0 0 -1 -56 ] 0 0.5 0.5 -} -// brush 110 -{ -( 312 -32 120 ) ( 312 -32 112 ) ( 312 16 120 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -15.9999695 ] [ 0 0.9999999999999866 1.6292067950285372e-07 47.999992 ] 90 0.5 0.5 -( 320 -32 120 ) ( 320 -32 112 ) ( 312 -32 120 ) skip [ 1 0 0 -16 ] [ 0 0 -1 16 ] 0 1 1 -( 312 16 104 ) ( 312 -32 104 ) ( 320 16 104 ) skip [ 1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 320 16 120 ) ( 320 -32 120 ) ( 312 16 120 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 312 16 120 ) ( 312 16 112 ) ( 320 16 120 ) skip [ -1 0 0 16 ] [ 0 0 -1 16 ] 0 1 1 -( 320 16 120 ) ( 320 16 112 ) ( 320 -32 120 ) skip [ 0 1 0 48 ] [ 0 0 -1 48 ] 0 0.5 0.5 -} -// brush 111 -{ -( 312 -56 16 ) ( 312 -40 16 ) ( 312 -56 32 ) surface_beige_corner [ 0 -1.3113417006681922e-07 0.9999999999999913 32 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 -32 ] 270 0.5 0.5 -( 312 -48 32 ) ( 320 -48 32 ) ( 312 -48 16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 -56 16 ) ( 320 -40 16 ) ( 312 -56 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 312 -56 32 ) ( 312 -40 32 ) ( 320 -56 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 -40 32 ) ( 312 -40 16 ) ( 320 -40 32 ) skip [ 1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 -56 32 ) ( 320 -40 32 ) ( 320 -56 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 112 -{ -( 312 152 32 ) ( 312 24 32 ) ( 312 152 16 ) surface_beige_corner [ 0 -0.9999999999999997 -1.224647977550801e-16 0 ] [ -0 1.224647977550801e-16 -0.9999999999999997 32 ] 0 0.5 0.5 -( 320 248 16 ) ( 312 248 16 ) ( 320 248 32 ) skip [ 0.9999999999999957 0 8.742277997596912e-08 16 ] [ -8.742277997596912e-08 0 0.9999999999999957 0 ] 180 0.5 0.5 -( 312 152 16 ) ( 312 24 16 ) ( 320 152 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 1 1 -( 320 152 32 ) ( 320 24 32 ) ( 312 152 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 312 256 16 ) ( 320 256 16 ) ( 312 256 32 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 152 16 ) ( 320 24 16 ) ( 320 152 32 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 113 -{ -( 312 152 48 ) ( 312 24 48 ) ( 312 152 32 ) surface_beige_edge [ 0 -0.9999999999999998 0 0 ] [ 0 0 -0.9999999999999998 -32 ] 0 0.5 0.5 -( 320 248 32 ) ( 312 248 32 ) ( 320 248 48 ) skip [ 0.9999999999999957 0 8.742277997596912e-08 16 ] [ -8.742277997596912e-08 0 0.9999999999999957 -32 ] 180 0.5 0.5 -( 312 152 32 ) ( 312 24 32 ) ( 320 152 32 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 1 1 -( 320 152 104 ) ( 320 24 104 ) ( 312 152 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 312 256 32 ) ( 320 256 32 ) ( 312 256 48 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 152 32 ) ( 320 24 32 ) ( 320 152 48 ) skip [ 0 1 0 32 ] [ 0 0 -1 32 ] 0 0.5 0.5 -} -// brush 114 -{ -( 312 152 120 ) ( 312 24 120 ) ( 312 152 104 ) surface_beige_corner [ 0 1.6292067950285372e-07 -0.9999999999999866 48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 320 248 104 ) ( 312 248 104 ) ( 320 248 120 ) skip [ 0.9999999999999957 0 8.742277997596912e-08 16 ] [ -8.742277997596912e-08 0 0.9999999999999957 -48 ] 180 0.5 0.5 -( 312 152 104 ) ( 312 24 104 ) ( 320 152 104 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 1 1 -( 320 152 120 ) ( 320 24 120 ) ( 312 152 120 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 312 256 104 ) ( 320 256 104 ) ( 312 256 120 ) skip [ -1 0 0 0 ] [ 0 0 -1 32 ] 0 0.25 0.25 -( 320 152 104 ) ( 320 24 104 ) ( 320 152 120 ) skip [ 0 1 0 32 ] [ 0 0 -1 48 ] 0 0.5 0.5 -} -// brush 115 -{ -( 80 -48 40 ) ( 80 -47 40 ) ( 80 -48 41 ) surface_green [ 0 4.371139006309477e-08 -0.999999999999999 -48 ] [ 0 0.999999999999999 4.371139006309477e-08 -32 ] 90 0.5 0.5 -( 80 -48 40 ) ( 80 -48 41 ) ( 81 -48 40 ) skip [ -4.371139006309477e-08 0 -0.999999999999999 -48 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 -48 112 ) ( 81 -48 112 ) ( 80 -47 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 32 ] 0 0.5 0.5 -( 112 -16 120 ) ( 112 -15 120 ) ( 113 -16 120 ) skip [ 1 0 0 0 ] [ 0 -1 0 32 ] 0 0.5 0.5 -( 112 256 56 ) ( 113 256 56 ) ( 112 256 57 ) skip [ -1 0 0 0 ] [ 0 0 -1 -56 ] 0 0.5 0.5 -( 88 -16 56 ) ( 88 -16 57 ) ( 88 -15 56 ) surface_green [ 0 1 0 -32 ] [ 0 0 -1 -56 ] 0 0.5 0.5 -} -// brush 116 -{ -( 944 800 0 ) ( 944 801 0 ) ( 944 800 1 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 944 800 0 ) ( 944 800 1 ) ( 945 800 0 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 944 800 0 ) ( 945 800 0 ) ( 944 801 0 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 992 848 16 ) ( 992 849 16 ) ( 993 848 16 ) floor_checkertiles [ 1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.25 0.25 -( 992 1024 16 ) ( 993 1024 16 ) ( 992 1024 17 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 -( 1264 848 16 ) ( 1264 848 17 ) ( 1264 849 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 117 -{ -( 944 800 16 ) ( 944 801 16 ) ( 944 800 17 ) redplaid [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 944 800 16 ) ( 944 800 17 ) ( 945 800 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 944 800 16 ) ( 945 800 16 ) ( 944 801 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 952 840 96 ) ( 952 841 96 ) ( 953 840 96 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 952 824 24 ) ( 953 824 24 ) ( 952 824 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 952 840 24 ) ( 952 840 25 ) ( 952 841 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 118 -{ -( 944 872 16 ) ( 944 873 16 ) ( 944 872 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 944 872 16 ) ( 944 872 17 ) ( 945 872 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 944 872 16 ) ( 945 872 16 ) ( 944 873 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 952 912 112 ) ( 952 913 112 ) ( 953 912 112 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 952 888 24 ) ( 953 888 24 ) ( 952 888 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 952 912 24 ) ( 952 912 25 ) ( 952 913 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 119 -{ -( 944 848 32 ) ( 944 849 32 ) ( 944 848 33 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 944 800 32 ) ( 944 800 33 ) ( 945 800 32 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 944 848 96 ) ( 945 848 96 ) ( 944 849 96 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 952 888 112 ) ( 952 889 112 ) ( 953 888 112 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 952 872 40 ) ( 953 872 40 ) ( 952 872 41 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 952 888 40 ) ( 952 888 41 ) ( 952 889 40 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 120 -{ -( 944 888 16 ) ( 944 889 16 ) ( 944 888 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 944 888 16 ) ( 944 888 17 ) ( 945 888 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 944 888 16 ) ( 945 888 16 ) ( 944 889 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 952 928 48 ) ( 952 929 48 ) ( 953 928 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 952 992 24 ) ( 953 992 24 ) ( 952 992 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 952 928 24 ) ( 952 928 25 ) ( 952 929 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 121 -{ -( 944 888 16 ) ( 944 889 16 ) ( 944 888 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 944 888 16 ) ( 944 888 17 ) ( 945 888 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 944 888 96 ) ( 945 888 96 ) ( 944 889 96 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 952 928 112 ) ( 952 929 112 ) ( 953 928 112 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 952 992 24 ) ( 953 992 24 ) ( 952 992 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 952 928 24 ) ( 952 928 25 ) ( 952 929 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 122 -{ -( 944 992 16 ) ( 944 993 16 ) ( 944 992 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 944 992 16 ) ( 944 992 17 ) ( 945 992 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 944 992 16 ) ( 945 992 16 ) ( 944 993 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 952 1032 112 ) ( 952 1033 112 ) ( 953 1032 112 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 952 1024 24 ) ( 953 1024 24 ) ( 952 1024 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 952 1032 24 ) ( 952 1032 25 ) ( 952 1033 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 123 -{ -( 224 260 52 ) ( 224 261 52 ) ( 224 260 53 ) skip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 284 260 52 ) ( 284 260 53 ) ( 285 260 52 ) skip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 284 260 52 ) ( 285 260 52 ) ( 284 261 52 ) skip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 296 262 96 ) ( 296 263 96 ) ( 297 262 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 296 262 54 ) ( 297 262 54 ) ( 296 262 55 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 296 262 54 ) ( 296 262 55 ) ( 296 263 54 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 124 -{ -( 88 260 52 ) ( 88 261 52 ) ( 88 260 53 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 148 260 52 ) ( 148 260 53 ) ( 149 260 52 ) skip [ 1 0 0 8 ] [ 0 0 -1 0 ] 0 1 1 -( 148 260 52 ) ( 149 260 52 ) ( 148 261 52 ) skip [ -1 0 0 -8 ] [ 0 -1 0 0 ] 0 1 1 -( 160 262 96 ) ( 160 263 96 ) ( 161 262 96 ) skip [ 1 0 0 8 ] [ 0 -1 0 0 ] 0 1 1 -( 160 262 54 ) ( 161 262 54 ) ( 160 262 55 ) skip [ -1 0 0 -8 ] [ 0 0 -1 0 ] 0 1 1 -( 144 262 54 ) ( 144 262 55 ) ( 144 263 54 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 125 -{ -( 82 246 52 ) ( 82 247 52 ) ( 82 246 53 ) skip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 82 168 52 ) ( 82 168 53 ) ( 83 168 52 ) skip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 82 246 52 ) ( 83 246 52 ) ( 82 247 52 ) skip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 84 256 96 ) ( 84 257 96 ) ( 85 256 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 84 256 54 ) ( 85 256 54 ) ( 84 256 55 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 84 256 54 ) ( 84 256 55 ) ( 84 257 54 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 126 -{ -( 82 136 52 ) ( 82 137 52 ) ( 82 136 53 ) skip [ 0 -1 0 -46 ] [ 0 0 -1 0 ] 0 1 1 -( 82 56 52 ) ( 82 56 53 ) ( 83 56 52 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 82 136 52 ) ( 83 136 52 ) ( 82 137 52 ) skip [ -1 0 0 0 ] [ 0 -1 0 -46 ] 0 1 1 -( 84 146 96 ) ( 84 147 96 ) ( 85 146 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 -46 ] 0 1 1 -( 84 160 54 ) ( 85 160 54 ) ( 84 160 55 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 84 146 54 ) ( 84 146 55 ) ( 84 147 54 ) skip [ 0 1 0 46 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 127 -{ -( 82 24 52 ) ( 82 25 52 ) ( 82 24 53 ) skip [ 0 -1 0 -30 ] [ 0 0 -1 0 ] 0 1 1 -( 82 -48 52 ) ( 82 -48 53 ) ( 83 -48 52 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 82 24 52 ) ( 83 24 52 ) ( 82 25 52 ) skip [ -1 0 0 0 ] [ 0 -1 0 -30 ] 0 1 1 -( 84 34 96 ) ( 84 35 96 ) ( 85 34 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 -30 ] 0 1 1 -( 84 48 54 ) ( 85 48 54 ) ( 84 48 55 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 84 34 54 ) ( 84 34 55 ) ( 84 35 54 ) skip [ 0 1 0 30 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 128 -{ -( 88 -54 52 ) ( 88 -53 52 ) ( 88 -54 53 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 88 -54 52 ) ( 88 -54 53 ) ( 89 -54 52 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 88 -54 52 ) ( 89 -54 52 ) ( 88 -53 52 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 96 -52 96 ) ( 96 -51 96 ) ( 97 -52 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 96 -52 54 ) ( 97 -52 54 ) ( 96 -52 55 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 224 -52 54 ) ( 224 -52 55 ) ( 224 -51 54 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -} -// entity 1 -{ -"classname" "func_group" -"_tb_type" "_tb_group" -"_tb_name" "motelroomlayout" -"_tb_id" "4" -"_tb_linked_group_id" "{64d2ce3b-d5a0-495e-b5f7-459c62d5e742}" -"_tb_transformation" "1 0 0 0 0 1 0 -72 0 0 1 0 0 0 0 1" -// brush 0 -{ -( 1186 1124 16 ) ( 1186 1125 16 ) ( 1186 1124 17 ) clip [ 0 -1 0 -28 ] [ 0 0 -1 0 ] 0 1 1 -( 1180 1126 16 ) ( 1180 1126 17 ) ( 1181 1126 16 ) clip [ 1 0 0 20 ] [ 0 0 -1 0 ] 0 1 1 -( 1180 1124 16 ) ( 1181 1124 16 ) ( 1180 1125 16 ) clip [ -1 0 0 -20 ] [ 0 -1 0 -28 ] 0 1 1 -( 1276 1220 44 ) ( 1276 1221 44 ) ( 1277 1220 44 ) clip [ 1 0 0 20 ] [ 0 -1 0 -28 ] 0 1 1 -( 1276 1208 32 ) ( 1277 1208 32 ) ( 1276 1208 33 ) clip [ -1 0 0 -20 ] [ 0 0 -1 0 ] 0 1 1 -( 1256 1220 32 ) ( 1256 1220 33 ) ( 1256 1221 32 ) clip [ 0 1 0 28 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 1 -{ -( 944 1112 16 ) ( 944 1113 16 ) ( 944 1112 17 ) skip [ 0 -1 0 -48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 952 1112 16 ) ( 952 1112 17 ) ( 953 1112 16 ) surface_beige [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 952 1112 16 ) ( 953 1112 16 ) ( 952 1113 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 1000 1120 80 ) ( 1000 1121 80 ) ( 1001 1120 80 ) skip [ 1 0 0 0 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 1000 1120 24 ) ( 1001 1120 24 ) ( 1000 1120 25 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 992 1120 24 ) ( 992 1120 25 ) ( 992 1121 24 ) surface_beige_edge [ 0 1 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 2 -{ -( 1074 1124 16 ) ( 1074 1125 16 ) ( 1074 1124 17 ) clip [ 0 -1 0 -28 ] [ 0 0 -1 0 ] 0 1 1 -( 1068 1126 16 ) ( 1068 1126 17 ) ( 1069 1126 16 ) clip [ 1 0 0 4 ] [ 0 0 -1 0 ] 0 1 1 -( 1068 1124 16 ) ( 1069 1124 16 ) ( 1068 1125 16 ) clip [ -1 0 0 -4 ] [ 0 -1 0 -28 ] 0 1 1 -( 1164 1220 44 ) ( 1164 1221 44 ) ( 1165 1220 44 ) clip [ 1 0 0 4 ] [ 0 -1 0 -28 ] 0 1 1 -( 1164 1208 32 ) ( 1165 1208 32 ) ( 1164 1208 33 ) clip [ -1 0 0 -4 ] [ 0 0 -1 0 ] 0 1 1 -( 1144 1220 32 ) ( 1144 1220 33 ) ( 1144 1221 32 ) clip [ 0 1 0 28 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 3 -{ -( 992 1112 16 ) ( 992 1113 16 ) ( 992 1112 17 ) skip [ 0 -1 0 -48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1000 1112 16 ) ( 1000 1112 17 ) ( 1001 1112 16 ) surface_beige [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1000 1112 80 ) ( 1001 1112 80 ) ( 1000 1113 80 ) surface_beige_edge [ 4.371138994063005e-08 0.9999999999999989 0 16 ] [ -0.9999999999999989 4.371138994063005e-08 0 0 ] 270 0.5 0.5 -( 1048 1120 96 ) ( 1048 1121 96 ) ( 1049 1120 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 1048 1120 24 ) ( 1049 1120 24 ) ( 1048 1120 25 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1040 1120 24 ) ( 1040 1120 25 ) ( 1040 1121 24 ) skip [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 4 -{ -( 1148 1188 16 ) ( 1148 1189 16 ) ( 1148 1188 17 ) clip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1148 1188 16 ) ( 1148 1188 17 ) ( 1149 1188 16 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1148 1188 16 ) ( 1149 1188 16 ) ( 1148 1189 16 ) clip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.25 0.25 -( 1180 1208 34 ) ( 1180 1209 34 ) ( 1181 1208 34 ) clip [ 1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.25 0.25 -( 1180 1208 20 ) ( 1181 1208 20 ) ( 1180 1208 21 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1182 1208 20 ) ( 1182 1208 21 ) ( 1182 1209 20 ) clip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 5 -{ -( 944 1016 0 ) ( 944 1017 0 ) ( 944 1016 1 ) skip [ 0 -1 0 -48 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -( 1024 1024 0 ) ( 1024 1024 1 ) ( 1025 1024 0 ) skip [ 1 0 0 32 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -( 1024 1016 0 ) ( 1025 1016 0 ) ( 1024 1017 0 ) skip [ -1 0 0 -32 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 1056 1064 16 ) ( 1056 1065 16 ) ( 1057 1064 16 ) carpet_dullgreen [ 1 0 0 96 ] [ 0 -1 0 -112 ] 0 0.5 0.5 -( 1056 1208 16 ) ( 1057 1208 16 ) ( 1056 1208 17 ) skip [ -1 0 0 -32 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -( 1296 1064 16 ) ( 1296 1064 17 ) ( 1296 1065 16 ) skip [ 0 1 0 48 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -} -// brush 6 -{ -( 1128 1024 16 ) ( 1128 1025 16 ) ( 1128 1024 17 ) clip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1104 1024 16 ) ( 1104 1024 17 ) ( 1105 1024 16 ) clip [ 1 0 0 32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1104 1024 16 ) ( 1105 1024 16 ) ( 1104 1025 16 ) clip [ -1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.25 0.25 -( 1176 1056 48 ) ( 1176 1057 48 ) ( 1177 1056 48 ) clip [ 1 0 0 32 ] [ 0 -1 0 -32 ] 0 0.25 0.25 -( 1176 1048 24 ) ( 1177 1048 24 ) ( 1176 1048 25 ) clip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1192 1056 24 ) ( 1192 1056 25 ) ( 1192 1057 24 ) clip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 7 -{ -( 1040 1160 32 ) ( 1040 1161 32 ) ( 1040 1160 33 ) skip [ 0 -1 0 -48 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -( 1040 1112 32 ) ( 1040 1112 33 ) ( 1041 1112 32 ) surface_beige_edge [ -0.9999999999999961 0 8.742278000372473e-08 -16 ] [ 8.742278000372473e-08 0 0.9999999999999961 32 ] 180 0.5 0.5 -( 1040 1160 80 ) ( 1041 1160 80 ) ( 1040 1161 80 ) skip [ -1 0 0 0 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 1048 1200 96 ) ( 1048 1201 96 ) ( 1049 1200 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 1048 1120 40 ) ( 1049 1120 40 ) ( 1048 1120 41 ) skip [ -1 0 0 0 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -( 1048 1200 40 ) ( 1048 1200 41 ) ( 1048 1201 40 ) surface_beige_edge [ 0 1 0 16 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -} -// brush 8 -{ -( 1040 1168 16 ) ( 1040 1169 16 ) ( 1040 1168 17 ) surface_beige [ 0 -1 0 -48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1040 1120 16 ) ( 1040 1120 17 ) ( 1041 1120 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1040 1168 16 ) ( 1041 1168 16 ) ( 1040 1169 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 1048 1208 96 ) ( 1048 1209 96 ) ( 1049 1208 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 1048 1208 24 ) ( 1049 1208 24 ) ( 1048 1208 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1048 1208 24 ) ( 1048 1208 25 ) ( 1048 1209 24 ) surface_beige [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 9 -{ -( 944 1112 16 ) ( 944 1113 16 ) ( 944 1112 17 ) skip [ 0 -1 0 -48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 944 1112 16 ) ( 944 1112 17 ) ( 945 1112 16 ) surface_beige [ 1 0 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 944 1112 80 ) ( 945 1112 80 ) ( 944 1113 80 ) skip [ -1 0 0 -48 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 992 1120 96 ) ( 992 1121 96 ) ( 993 1120 96 ) skip [ 1 0 0 48 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 992 1120 24 ) ( 993 1120 24 ) ( 992 1120 25 ) surface_beige [ -1 0 0 -48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 992 1120 24 ) ( 992 1120 25 ) ( 992 1121 24 ) skip [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 10 -{ -( 1040 1160 16 ) ( 1040 1161 16 ) ( 1040 1160 17 ) surface_beige_edge [ 0 0.9999999999999961 8.742278000372473e-08 16 ] [ 0 -8.742278000372473e-08 0.9999999999999961 0 ] 180 0.5 0.5 -( 1040 1112 16 ) ( 1040 1112 17 ) ( 1041 1112 16 ) surface_beige_edge [ -0.9999999999999961 0 8.742278000372473e-08 -16 ] [ 8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 -( 1040 1160 16 ) ( 1041 1160 16 ) ( 1040 1161 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 1048 1200 80 ) ( 1048 1201 80 ) ( 1049 1200 80 ) skip [ 1 0 0 0 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 1048 1120 24 ) ( 1049 1120 24 ) ( 1048 1120 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1048 1200 24 ) ( 1048 1200 25 ) ( 1048 1201 24 ) surface_beige_edge [ 0 1 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -} diff --git a/maps/autosave/cafemotel.8.map.import b/maps/autosave/cafemotel.8.map.import deleted file mode 100644 index f47d565..0000000 --- a/maps/autosave/cafemotel.8.map.import +++ /dev/null @@ -1,14 +0,0 @@ -[remap] - -importer="func_godot.map" -type="Resource" -uid="uid://ddxvcex0hc0b6" -path="res://.godot/imported/cafemotel.8.map-15104dba74e9cec2e6122b8eb18ca6b4.tres" - -[deps] - -source_file="res://maps/autosave/cafemotel.8.map" -dest_files=["res://.godot/imported/cafemotel.8.map-15104dba74e9cec2e6122b8eb18ca6b4.tres"] - -[params] - diff --git a/maps/autosave/cafemotel.9.map b/maps/autosave/cafemotel.9.map deleted file mode 100644 index a072dbd..0000000 --- a/maps/autosave/cafemotel.9.map +++ /dev/null @@ -1,1268 +0,0 @@ -// Game: maskmaker -// Format: Valve -// entity 0 -{ -"mapversion" "220" -"classname" "worldspawn" -// brush 0 -{ -( -16 -184 -16 ) ( -16 -183 -16 ) ( -16 -184 -15 ) skip [ 0 -1 0 32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( -64 -184 -16 ) ( -64 -184 -15 ) ( -63 -184 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( -64 -184 -16 ) ( -63 -184 -16 ) ( -64 -183 -16 ) skip [ -1 0 0 0 ] [ 0 -1 0 32 ] 0 0.25 0.25 -( 64 -56 16 ) ( 64 -55 16 ) ( 65 -56 16 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 -1 0 120 ] 0 0.25 0.25 -( 64 -56 16 ) ( 65 -56 16 ) ( 64 -56 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 784 -56 16 ) ( 784 -56 17 ) ( 784 -55 16 ) skip [ 0 1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 1 -{ -( 80 72 0 ) ( 80 73 0 ) ( 80 72 1 ) surface_green [ 0 4.371139006309477e-08 -0.999999999999999 32 ] [ 0 0.999999999999999 4.371139006309477e-08 24 ] 90 0.5 0.5 -( 80 -48 0 ) ( 80 -48 1 ) ( 81 -48 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 72 16 ) ( 81 72 16 ) ( 80 73 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 104 52 ) ( 112 105 52 ) ( 113 104 52 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 256 16 ) ( 113 256 16 ) ( 112 256 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 88 104 16 ) ( 88 104 17 ) ( 88 105 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 2 -{ -( 80 256 0 ) ( 80 257 0 ) ( 80 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 256 0 ) ( 80 256 1 ) ( 81 256 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 256 16 ) ( 81 256 16 ) ( 80 257 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 288 96 ) ( 112 289 96 ) ( 113 288 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 264 16 ) ( 113 264 16 ) ( 112 264 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 88 288 16 ) ( 88 288 17 ) ( 88 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 3 -{ -( 80 256 -8 ) ( 80 257 -8 ) ( 80 256 -7 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 16 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 176 256 -8 ) ( 176 256 -7 ) ( 177 256 -8 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 176 256 96 ) ( 177 256 96 ) ( 176 257 96 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 208 288 104 ) ( 208 289 104 ) ( 209 288 104 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 208 264 8 ) ( 209 264 8 ) ( 208 264 9 ) surface_green_edge [ 4.371139006309477e-08 0 -0.999999999999999 16 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 312 288 8 ) ( 312 288 9 ) ( 312 289 8 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 4 -{ -( 80 72 72 ) ( 80 73 72 ) ( 80 72 73 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 16 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 -48 72 ) ( 80 -48 73 ) ( 81 -48 72 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 80 72 96 ) ( 81 72 96 ) ( 80 73 96 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 104 104 ) ( 112 105 104 ) ( 113 104 104 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 256 88 ) ( 113 256 88 ) ( 112 256 89 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 88 104 88 ) ( 88 104 89 ) ( 88 105 88 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 5 -{ -( 88 256 0 ) ( 88 257 0 ) ( 88 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 256 0 ) ( 80 256 1 ) ( 81 256 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 256 16 ) ( 81 256 16 ) ( 80 257 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 288 52 ) ( 112 289 52 ) ( 113 288 52 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 264 16 ) ( 113 264 16 ) ( 112 264 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 144 288 16 ) ( 144 288 17 ) ( 144 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 6 -{ -( 144 256 0 ) ( 144 257 0 ) ( 144 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 144 256 0 ) ( 144 256 1 ) ( 145 256 0 ) surface_green [ 1 0 0 32 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 144 256 16 ) ( 145 256 16 ) ( 144 257 16 ) surface_green [ -1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 176 288 96 ) ( 176 289 96 ) ( 177 288 96 ) surface_green [ 1 0 0 32 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 176 264 16 ) ( 177 264 16 ) ( 176 264 17 ) surface_green [ -1 0 0 -32 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 160 288 16 ) ( 160 288 17 ) ( 160 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 7 -{ -( 208 256 0 ) ( 208 257 0 ) ( 208 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 208 256 0 ) ( 208 256 1 ) ( 209 256 0 ) surface_green [ 1 0 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 208 256 16 ) ( 209 256 16 ) ( 208 257 16 ) surface_green [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 240 288 96 ) ( 240 289 96 ) ( 241 288 96 ) surface_green [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 240 264 16 ) ( 241 264 16 ) ( 240 264 17 ) surface_green [ -1 0 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 224 288 16 ) ( 224 288 17 ) ( 224 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 8 -{ -( 88 128 8 ) ( 88 129 8 ) ( 88 128 9 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 88 -56 8 ) ( 88 -56 9 ) ( 89 -56 8 ) skip [ 1 0 0 0 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 88 128 8 ) ( 89 128 8 ) ( 88 129 8 ) skip [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.25 0.25 -( 128 176 16 ) ( 128 177 16 ) ( 129 176 16 ) floor_wood [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.25 0.25 -( 128 264 16 ) ( 129 264 16 ) ( 128 264 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 320 176 16 ) ( 320 176 17 ) ( 320 177 16 ) skip [ 0 1 0 56 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -} -// brush 9 -{ -( -16 64 -16 ) ( -16 65 -16 ) ( -16 64 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( -64 -56 -16 ) ( -64 -56 -15 ) ( -63 -56 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( -64 64 -16 ) ( -63 64 -16 ) ( -64 65 -16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 64 192 16 ) ( 64 193 16 ) ( 65 192 16 ) ground_cobblestone1 [ -4.371139006309477e-08 -0.999999999999999 0 0 ] [ -0.999999999999999 4.371139006309477e-08 0 106 ] 90 0.25 0.25 -( 64 264 16 ) ( 65 264 16 ) ( 64 264 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 80 192 16 ) ( 80 192 17 ) ( 80 193 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 10 -{ -( 72 72 88 ) ( 72 73 88 ) ( 72 72 89 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 16 ] 90 0.5 0.5 -( 80 256 88 ) ( 80 256 89 ) ( 81 256 88 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 -( 80 72 104 ) ( 81 72 104 ) ( 80 73 104 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 104 112 ) ( 112 105 112 ) ( 113 104 112 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 272 104 ) ( 113 272 104 ) ( 112 272 105 ) surface_green_edge [ 4.371139006309477e-08 0 -0.999999999999999 -32 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 312 104 104 ) ( 312 104 105 ) ( 312 105 104 ) surface_green_edge [ 0 -4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 -0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -} -// brush 11 -{ -( 72 -112 88 ) ( 72 -111 88 ) ( 72 -112 89 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 16 ] 90 0.5 0.5 -( 80 -48 88 ) ( 80 -48 89 ) ( 81 -48 88 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 -( 80 -112 104 ) ( 81 -112 104 ) ( 80 -111 104 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 -( 112 -80 112 ) ( 112 -79 112 ) ( 113 -80 112 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 -( 112 256 104 ) ( 113 256 104 ) ( 112 256 105 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 -( 88 -80 104 ) ( 88 -80 105 ) ( 88 -79 104 ) surface_green [ 0 1 0 -8 ] [ 0 0 -1 -24 ] 0 0.5 0.5 -} -// brush 12 -{ -( 72 72 128 ) ( 72 73 128 ) ( 72 72 129 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 80 256 128 ) ( 80 256 129 ) ( 81 256 128 ) skip [ 1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 80 72 144 ) ( 81 72 144 ) ( 80 73 144 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 104 152 ) ( 112 105 152 ) ( 113 104 152 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 272 144 ) ( 113 272 144 ) ( 112 272 145 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 312 104 144 ) ( 312 104 145 ) ( 312 105 144 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -} -// brush 13 -{ -( 72 -112 128 ) ( 72 -111 128 ) ( 72 -112 129 ) surface_green [ 0 -1 0 8 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 80 -48 128 ) ( 80 -48 129 ) ( 81 -48 128 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 80 -112 144 ) ( 81 -112 144 ) ( 80 -111 144 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 -( 112 -80 152 ) ( 112 -79 152 ) ( 113 -80 152 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 256 144 ) ( 113 256 144 ) ( 112 256 145 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 88 -80 144 ) ( 88 -80 145 ) ( 88 -79 144 ) skip [ 0 1 0 -8 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 14 -{ -( 80 256 48 ) ( 80 257 48 ) ( 80 256 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -31.99997 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 256 48 ) ( 80 256 49 ) ( 81 256 48 ) skip [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 80 256 120 ) ( 81 256 120 ) ( 80 257 120 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 288 144 ) ( 112 289 144 ) ( 113 288 144 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 264 64 ) ( 113 264 64 ) ( 112 264 65 ) surface_green_edge [ 4.371139006309477e-08 0 -0.999999999999999 -31.99997 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 312 288 64 ) ( 312 288 65 ) ( 312 289 64 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 15 -{ -( 80 248 48 ) ( 80 249 48 ) ( 80 248 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32.000015 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 -48 48 ) ( 80 -48 49 ) ( 81 -48 48 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 80 248 120 ) ( 81 248 120 ) ( 80 249 120 ) skip [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 -( 112 280 144 ) ( 112 281 144 ) ( 113 280 144 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 -8 ] 0 0.5 0.5 -( 112 256 64 ) ( 113 256 64 ) ( 112 256 65 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 88 280 64 ) ( 88 280 65 ) ( 88 281 64 ) skip [ 0 1 0 8 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 16 -{ -( 88 128 120 ) ( 88 129 120 ) ( 88 128 121 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 56 ] 0 0.25 0.25 -( 88 -48 120 ) ( 88 -48 121 ) ( 89 -48 120 ) skip [ 1 0 0 0 ] [ 0 0 -1 56 ] 0 0.25 0.25 -( 88 128 120 ) ( 89 128 120 ) ( 88 129 120 ) ground_wood [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.5 0.5 -( 128 176 128 ) ( 128 177 128 ) ( 129 176 128 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 0.25 0.25 -( 128 256 128 ) ( 129 256 128 ) ( 128 256 129 ) skip [ -1 0 0 0 ] [ 0 0 -1 56 ] 0 0.25 0.25 -( 312 176 128 ) ( 312 176 129 ) ( 312 177 128 ) skip [ 0 1 0 56 ] [ 0 0 -1 56 ] 0 0.25 0.25 -} -// brush 17 -{ -( 224 256 0 ) ( 224 257 0 ) ( 224 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 216 256 0 ) ( 216 256 1 ) ( 217 256 0 ) surface_green [ 1 0 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 216 256 16 ) ( 217 256 16 ) ( 216 257 16 ) surface_green [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 248 288 52 ) ( 248 289 52 ) ( 249 288 52 ) surface_green [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 248 264 16 ) ( 249 264 16 ) ( 248 264 17 ) surface_green [ -1 0 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 296 288 16 ) ( 296 288 17 ) ( 296 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 18 -{ -( 296 256 0 ) ( 296 257 0 ) ( 296 256 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 296 256 0 ) ( 296 256 1 ) ( 297 256 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 296 256 16 ) ( 297 256 16 ) ( 296 257 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 328 288 96 ) ( 328 289 96 ) ( 329 288 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 328 264 16 ) ( 329 264 16 ) ( 328 264 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 312 288 16 ) ( 312 288 17 ) ( 312 289 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 19 -{ -( 640 64 0 ) ( 640 65 0 ) ( 640 64 1 ) skip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 0.5 0.5 -( 640 -56 0 ) ( 640 -56 1 ) ( 641 -56 0 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 640 64 0 ) ( 641 64 0 ) ( 640 65 0 ) skip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 0.5 0.5 -( 656 112 16 ) ( 656 113 16 ) ( 657 112 16 ) ground_cobblestone1 [ -4.371139006309477e-08 -0.999999999999999 0 0 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.25 0.25 -( 656 264 16 ) ( 657 264 16 ) ( 656 264 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 736 112 16 ) ( 736 112 17 ) ( 736 113 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 20 -{ -( 736 72 16 ) ( 736 73 16 ) ( 736 72 17 ) wall_brick_scrungly [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 472 -56 16 ) ( 472 -56 17 ) ( 473 -56 16 ) wall_brick_scrungly [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 472 72 16 ) ( 473 72 16 ) ( 472 73 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 504 104 96 ) ( 504 105 96 ) ( 505 104 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 504 264 32 ) ( 505 264 32 ) ( 504 264 33 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 784 104 32 ) ( 784 104 33 ) ( 784 105 32 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 21 -{ -( 640 64 96 ) ( 640 65 96 ) ( 640 64 97 ) skip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 0.25 0.25 -( 640 -56 96 ) ( 640 -56 97 ) ( 641 -56 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 64 96 ) ( 641 64 96 ) ( 640 65 96 ) wall_brick_scrungly [ 4.371139006309477e-08 -0.999999999999999 0 0 ] [ 0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.25 0.25 -( 656 112 256 ) ( 656 113 256 ) ( 657 112 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 656 264 112 ) ( 657 264 112 ) ( 656 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 736 112 112 ) ( 736 112 113 ) ( 736 113 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 22 -{ -( 736 72 96 ) ( 736 73 96 ) ( 736 72 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 472 -56 96 ) ( 472 -56 97 ) ( 473 -56 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 472 72 96 ) ( 473 72 96 ) ( 472 73 96 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 504 104 256 ) ( 504 105 256 ) ( 505 104 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 504 264 112 ) ( 505 264 112 ) ( 504 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 784 104 112 ) ( 784 104 113 ) ( 784 105 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 23 -{ -( 312 -56 96 ) ( 312 -55 96 ) ( 312 -56 97 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 368 -56 96 ) ( 368 -56 97 ) ( 369 -56 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 368 -56 104 ) ( 369 -56 104 ) ( 368 -55 104 ) skip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.25 0.25 -( 400 -24 256 ) ( 400 -23 256 ) ( 401 -24 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.25 0.25 -( 400 -48 112 ) ( 401 -48 112 ) ( 400 -48 113 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 -24 112 ) ( 640 -24 113 ) ( 640 -23 112 ) skip [ 0 1 0 32 ] [ 0 0 -1 11 ] 0 0.25 0.25 -} -// brush 24 -{ -( -16 264 -16 ) ( -16 265 -16 ) ( -16 264 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( -64 264 -16 ) ( -64 264 -15 ) ( -63 264 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( -64 264 12 ) ( -63 264 12 ) ( -64 265 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 64 392 16 ) ( 64 393 16 ) ( 65 392 16 ) ground_greybrick [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 64 360 16 ) ( 65 360 16 ) ( 64 360 17 ) wall_concrete1 [ -1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 -( 784 392 16 ) ( 784 392 17 ) ( 784 393 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -} -// brush 25 -{ -( 632 72 96 ) ( 632 73 96 ) ( 632 72 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 368 -48 96 ) ( 368 -48 97 ) ( 369 -48 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 368 72 112 ) ( 369 72 112 ) ( 368 73 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 400 104 256 ) ( 400 105 256 ) ( 401 104 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 400 264 112 ) ( 401 264 112 ) ( 400 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 104 112 ) ( 640 104 113 ) ( 640 105 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 26 -{ -( 320 72 96 ) ( 320 73 96 ) ( 320 72 97 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 360 -48 96 ) ( 360 -48 97 ) ( 361 -48 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 360 72 120 ) ( 361 72 120 ) ( 360 73 120 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 392 104 256 ) ( 392 105 256 ) ( 393 104 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 392 264 112 ) ( 393 264 112 ) ( 392 264 113 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 632 104 112 ) ( 632 104 113 ) ( 632 105 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 27 -{ -( 312 256 104 ) ( 312 257 104 ) ( 312 256 105 ) skip [ 0 1.6292067950285372e-07 -0.9999999999999866 -16 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 312 72 104 ) ( 312 72 105 ) ( 313 72 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 312 256 120 ) ( 313 256 120 ) ( 312 257 120 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 344 288 256 ) ( 344 289 256 ) ( 345 288 256 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 344 264 120 ) ( 345 264 120 ) ( 344 264 121 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 288 120 ) ( 320 288 121 ) ( 320 289 120 ) skip [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 28 -{ -( 312 144 32 ) ( 312 16 32 ) ( 312 144 16 ) surface_beige_edge [ 0 -1.3113417006681922e-07 0.9999999999999913 31.99997 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 -48 ] 270 0.5 0.5 -( 320 16 16 ) ( 312 16 16 ) ( 320 16 32 ) surface_beige_edge [ 0.9999999999999957 0 8.742277997596912e-08 16 ] [ -8.742277997596912e-08 0 0.9999999999999957 0 ] 180 0.5 0.5 -( 312 144 16 ) ( 312 16 16 ) ( 320 144 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -56 ] 0 1 1 -( 320 144 32 ) ( 320 16 32 ) ( 312 144 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 312 248 16 ) ( 320 248 16 ) ( 312 248 32 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 144 16 ) ( 320 16 16 ) ( 320 144 32 ) skip [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 29 -{ -( 312 -48 16 ) ( 312 -32 16 ) ( 312 -48 32 ) surface_beige_edge [ 0 -1.3113417006681922e-07 0.9999999999999913 31.999966 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 -47.999992 ] 270 0.5 0.5 -( 312 -40 32 ) ( 320 -40 32 ) ( 312 -40 16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 -48 16 ) ( 320 -32 16 ) ( 312 -48 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -56 ] 0 1 1 -( 312 -48 32 ) ( 312 -32 32 ) ( 320 -48 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 312 -32 32 ) ( 312 -32 16 ) ( 320 -32 32 ) surface_beige_edge [ 1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 -48 32 ) ( 320 -32 32 ) ( 320 -48 16 ) skip [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 30 -{ -( 312 144 88 ) ( 312 16 88 ) ( 312 144 32 ) surface_beige [ 0 -1.3113417006681922e-07 0.9999999999999913 31.999962 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 -48 ] 270 0.5 0.5 -( 320 16 32 ) ( 312 16 32 ) ( 320 16 88 ) surface_beige_edge [ 0.9999999999999961 0 8.742278000372473e-08 16 ] [ -8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 -( 312 144 32 ) ( 312 16 32 ) ( 320 144 32 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 320 144 104 ) ( 320 16 104 ) ( 312 144 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 312 248 32 ) ( 320 248 32 ) ( 312 248 88 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 144 32 ) ( 320 16 32 ) ( 320 144 88 ) skip [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 31 -{ -( 312 -48 32 ) ( 312 -32 32 ) ( 312 -48 88 ) surface_beige_edge [ 0 0.9999999999999785 2.0663206962145964e-07 31.999962 ] [ 0 -2.0663206962145964e-07 0.9999999999999785 -48 ] 180 0.5 0.5 -( 312 -48 88 ) ( 320 -48 88 ) ( 312 -48 32 ) skip [ 1 0 0 -16 ] [ 0 0 -1 16 ] 0 0.5 0.5 -( 320 -48 32 ) ( 320 -32 32 ) ( 312 -48 32 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 312 -48 96 ) ( 312 -32 96 ) ( 320 -48 96 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 312 -32 88 ) ( 312 -32 32 ) ( 320 -32 88 ) surface_beige_edge [ 0.9999999999999998 0 1.3234889800848443e-23 16 ] [ 1.3234889800848443e-23 0 -0.9999999999999998 0 ] 0 0.5 0.5 -( 320 -48 88 ) ( 320 -32 88 ) ( 320 -48 32 ) skip [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 32 -{ -( 312 144 120 ) ( 312 16 120 ) ( 312 144 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -15.9999695 ] [ 0 0.9999999999999866 1.6292067950285372e-07 48 ] 90 0.5 0.5 -( 320 16 104 ) ( 312 16 104 ) ( 320 16 120 ) surface_beige_edge [ 0.9999999999999961 0 8.742277995965608e-08 16 ] [ -8.742277995965608e-08 0 0.9999999999999961 -32 ] 180 0.5 0.5 -( 312 144 104 ) ( 312 16 104 ) ( 320 144 104 ) surface_beige_edge [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 320 144 120 ) ( 320 16 120 ) ( 312 144 120 ) surface_beige_edge [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 312 248 104 ) ( 320 248 104 ) ( 312 248 120 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 144 104 ) ( 320 16 104 ) ( 320 144 120 ) skip [ 0 1 0 48 ] [ 0 0 -1 48 ] 0 0.5 0.5 -} -// brush 33 -{ -( 312 -48 104 ) ( 312 -32 104 ) ( 312 -48 120 ) surface_beige_corner [ 0 0.9999999999999961 8.742278000372473e-08 -32 ] [ 0 -8.742278000372473e-08 0.9999999999999961 -48 ] 180 0.5 0.5 -( 312 -48 120 ) ( 320 -48 120 ) ( 312 -48 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 48 ] 0 0.5 0.5 -( 320 -48 96 ) ( 320 -32 96 ) ( 312 -48 96 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 312 -48 120 ) ( 312 -32 120 ) ( 320 -48 120 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 312 -32 120 ) ( 312 -32 104 ) ( 320 -32 120 ) skip [ 1 0 0 16 ] [ 0 0 -1 32 ] 0 0.5 0.5 -( 320 -48 120 ) ( 320 -32 120 ) ( 320 -48 104 ) skip [ 0 1 0 48 ] [ 0 0 -1 48 ] 0 0.5 0.5 -} -// brush 34 -{ -( 312 -32 104 ) ( 312 -32 96 ) ( 312 16 104 ) surface_beige [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.99997 ] [ 0 0.9999999999999866 1.6292067950285372e-07 48 ] 90 0.5 0.5 -( 320 -24 104 ) ( 320 -24 96 ) ( 312 -24 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 312 16 96 ) ( 312 -32 96 ) ( 320 16 96 ) surface_beige_edge [ 1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 320 16 104 ) ( 320 -32 104 ) ( 312 16 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 312 8 104 ) ( 312 8 96 ) ( 320 8 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 -( 320 16 104 ) ( 320 16 96 ) ( 320 -32 104 ) skip [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 35 -{ -( 488 264 96 ) ( 488 72 96 ) ( 488 264 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 640 -48 16 ) ( 328 -48 16 ) ( 640 -48 96 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 264 4 ) ( 328 264 4 ) ( 640 72 4 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 640 72 120 ) ( 328 72 120 ) ( 640 264 120 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 1 1 -( 640 264 96 ) ( 328 264 96 ) ( 640 264 16 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 72 96 ) ( 640 264 96 ) ( 640 72 16 ) wall_brick_scrungly [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 36 -{ -( 320 144 96 ) ( 320 16 96 ) ( 320 144 16 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 16 96 ) ( 328 16 96 ) ( 320 16 16 ) surface_beige_edge [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 144 16 ) ( 320 16 16 ) ( 328 144 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -56 ] 0 1 1 -( 328 144 112 ) ( 328 16 112 ) ( 320 144 112 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -56 ] 0 1 1 -( 320 136 16 ) ( 328 136 16 ) ( 320 136 96 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 328 144 16 ) ( 328 16 16 ) ( 328 144 96 ) surface_beige [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 37 -{ -( 320 -48 16 ) ( 320 -32 16 ) ( 320 -48 96 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 -48 96 ) ( 328 -48 96 ) ( 320 -48 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 328 -48 16 ) ( 328 -32 16 ) ( 320 -48 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -56 ] 0 1 1 -( 320 -48 96 ) ( 320 -32 96 ) ( 328 -48 96 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -56 ] 0 1 1 -( 320 -32 96 ) ( 320 -32 16 ) ( 328 -32 96 ) surface_beige_edge [ -0.9999999999999961 0 8.742278000372473e-08 16 ] [ 8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 -( 328 -48 96 ) ( 328 -32 96 ) ( 328 -48 16 ) surface_beige [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 38 -{ -( 320 8 8 ) ( 320 9 8 ) ( 320 8 9 ) skip [ 0 -1 0 -24 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 320 -48 8 ) ( 320 -48 9 ) ( 321 -48 8 ) skip [ 1 0 0 32 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 320 8 8 ) ( 321 8 8 ) ( 320 9 8 ) skip [ -1 0 0 -32 ] [ 0 -1 0 -24 ] 0 0.25 0.25 -( 360 56 16 ) ( 360 57 16 ) ( 361 56 16 ) floor_checkertiles [ 1 0 0 0 ] [ 0 -1 0 -96 ] 0 0.25 0.25 -( 360 104 16 ) ( 361 104 16 ) ( 360 104 17 ) skip [ -1 0 0 -32 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -( 448 56 16 ) ( 448 56 17 ) ( 448 57 16 ) skip [ 0 1 0 24 ] [ 0 0 -1 -8 ] 0 0.25 0.25 -} -// brush 39 -{ -( 320 -32 104 ) ( 320 -32 96 ) ( 320 16 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.99997 ] [ 0 0.9999999999999866 1.6292067950285372e-07 48 ] 90 0.5 0.5 -( 328 -24 104 ) ( 328 -24 96 ) ( 320 -24 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 16 96 ) ( 320 -32 96 ) ( 328 16 96 ) surface_beige_edge [ -0.9999999999999961 8.742278000372473e-08 0 16 ] [ 8.742278000372473e-08 0.9999999999999961 0 48 ] 180 0.5 0.5 -( 328 16 104 ) ( 328 -32 104 ) ( 320 16 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 320 8 104 ) ( 320 8 96 ) ( 328 8 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 16 104 ) ( 328 16 96 ) ( 328 -32 104 ) surface_beige [ 0 1 0 48 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 40 -{ -( 312 -24 104 ) ( 312 -24 96 ) ( 312 24 104 ) surface_beige [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.99997 ] [ 0 0.9999999999999866 1.6292067950285372e-07 31.999998 ] 90 0.5 0.5 -( 320 8 104 ) ( 320 8 96 ) ( 312 8 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 312 24 96 ) ( 312 -24 96 ) ( 320 24 96 ) surface_beige_corner [ -4.371139006309477e-08 -0.999999999999999 0 -32 ] [ -0.999999999999999 4.371139006309477e-08 0 48 ] 90 0.5 0.5 -( 320 24 104 ) ( 320 -24 104 ) ( 312 24 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 312 16 104 ) ( 312 16 96 ) ( 320 16 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 -( 320 24 104 ) ( 320 24 96 ) ( 320 -24 104 ) skip [ 0 1 0 32 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 41 -{ -( 320 -24 104 ) ( 320 -24 96 ) ( 320 24 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.99997 ] [ 0 0.9999999999999866 1.6292067950285372e-07 31.999998 ] 90 0.5 0.5 -( 328 8 104 ) ( 328 8 96 ) ( 320 8 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 24 96 ) ( 320 -24 96 ) ( 328 24 96 ) surface_beige_corner [ -0.9999999999999961 8.742277995965608e-08 0 16 ] [ 8.742277995965608e-08 0.9999999999999961 0 32 ] 180 0.5 0.5 -( 328 24 104 ) ( 328 -24 104 ) ( 320 24 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 320 16 104 ) ( 320 16 96 ) ( 328 16 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 24 104 ) ( 328 24 96 ) ( 328 -24 104 ) surface_beige [ 0 1 0 32 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 42 -{ -( 312 -40 104 ) ( 312 -40 96 ) ( 312 8 104 ) surface_beige [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.999954 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 320 -32 104 ) ( 320 -32 96 ) ( 312 -32 104 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 312 8 96 ) ( 312 -40 96 ) ( 320 8 96 ) surface_beige_corner [ 1 0 0 16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 320 8 104 ) ( 320 -40 104 ) ( 312 8 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 -24 104 ) ( 312 -24 96 ) ( 320 -24 104 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 -( 320 8 104 ) ( 320 8 96 ) ( 320 -40 104 ) skip [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 43 -{ -( 320 -40 104 ) ( 320 -40 96 ) ( 320 8 104 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.999954 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 328 -32 104 ) ( 328 -32 96 ) ( 320 -32 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 8 96 ) ( 320 -40 96 ) ( 328 8 96 ) surface_beige_corner [ 1.3113417006681922e-07 0.9999999999999912 0 0 ] [ 0.9999999999999912 -1.3113417006681922e-07 0 48 ] 270 0.5 0.5 -( 328 8 104 ) ( 328 -40 104 ) ( 320 8 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 320 -24 104 ) ( 320 -24 96 ) ( 328 -24 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 8 104 ) ( 328 8 96 ) ( 328 -40 104 ) surface_beige [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 44 -{ -( 320 -56 104 ) ( 320 -56 96 ) ( 320 -8 104 ) skip [ 0 1.6292067950285372e-07 -0.9999999999999866 -47.999954 ] [ 0 0.9999999999999866 1.6292067950285372e-07 32.000004 ] 90 0.5 0.5 -( 328 -48 104 ) ( 328 -48 96 ) ( 320 -48 104 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 320 -8 96 ) ( 320 -56 96 ) ( 328 -8 96 ) skip [ 1.3113417006681922e-07 0.9999999999999912 0 32 ] [ 0.9999999999999912 -1.3113417006681922e-07 0 48 ] 270 0.5 0.5 -( 328 -8 104 ) ( 328 -56 104 ) ( 320 -8 104 ) skip [ 1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 320 -32 104 ) ( 320 -32 96 ) ( 328 -32 104 ) skip [ -1 0 0 24 ] [ 0 0 -1 0 ] 0 1 1 -( 328 -8 104 ) ( 328 -8 96 ) ( 328 -56 104 ) surface_beige [ 0 1 0 32 ] [ 0 0 -1 16 ] 0 0.5 0.5 -} -// brush 45 -{ -( 480 -40 16 ) ( 480 -39 16 ) ( 480 -40 17 ) surface_beige [ 0 -1 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 480 -40 16 ) ( 480 -40 17 ) ( 481 -40 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 480 -40 16 ) ( 481 -40 16 ) ( 480 -39 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 488 -24 104 ) ( 488 -23 104 ) ( 489 -24 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 488 136 24 ) ( 489 136 24 ) ( 488 136 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 488 -24 24 ) ( 488 -24 25 ) ( 488 -23 24 ) skip [ 0 1 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 46 -{ -( 432 -48 96 ) ( 432 -56 96 ) ( 432 -48 16 ) wall_brick_scrungly [ 0 1 0 224 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 -56 16 ) ( 432 -56 16 ) ( 640 -56 96 ) wall_brick_scrungly [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 -48 16 ) ( 432 -48 16 ) ( 640 -56 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 640 -56 96 ) ( 432 -56 96 ) ( 640 -48 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 640 -48 96 ) ( 432 -48 96 ) ( 640 -48 16 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 -56 96 ) ( 640 -48 96 ) ( 640 -56 16 ) wall_brick_scrungly [ 0 1 0 224 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 47 -{ -( 312 -56 16 ) ( 312 -48 16 ) ( 312 -56 96 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 312 -56 96 ) ( 384 -56 96 ) ( 312 -56 16 ) wall_brick_scrungly [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 312 -56 16 ) ( 384 -56 16 ) ( 312 -48 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 312 -48 96 ) ( 384 -48 96 ) ( 312 -56 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 312 -48 16 ) ( 384 -48 16 ) ( 312 -48 96 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 384 -56 16 ) ( 384 -56 96 ) ( 384 -48 16 ) wall_brick_scrungly [ 0 -1 0 -224 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 48 -{ -( 432 -40 104 ) ( 432 -48 104 ) ( 432 -40 16 ) surface_beige_edge [ 0 -0.9999999999999961 8.742278000372473e-08 -16 ] [ 0 8.742278000372473e-08 0.9999999999999961 0 ] 180 0.5 0.5 -( 448 -48 16 ) ( 432 -48 16 ) ( 448 -48 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 448 -40 16 ) ( 432 -40 16 ) ( 448 -48 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 448 -48 104 ) ( 432 -48 104 ) ( 448 -40 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 448 -40 104 ) ( 432 -40 104 ) ( 448 -40 16 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 480 -48 104 ) ( 480 -40 104 ) ( 480 -48 16 ) skip [ 0 1 0 56 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 49 -{ -( 328 -48 16 ) ( 328 -40 16 ) ( 328 -48 104 ) skip [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 -( 328 -48 104 ) ( 384 -48 104 ) ( 328 -48 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 328 -48 16 ) ( 384 -48 16 ) ( 328 -40 16 ) surface_beige [ -1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 328 -40 104 ) ( 384 -40 104 ) ( 328 -48 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 328 -40 16 ) ( 384 -40 16 ) ( 328 -40 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 384 -48 16 ) ( 384 -48 104 ) ( 384 -40 16 ) surface_beige_edge [ 0 -1 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 50 -{ -( 392 -48 104 ) ( 392 -48 96 ) ( 392 -40 104 ) surface_beige [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 -( 432 -48 104 ) ( 432 -48 96 ) ( 384 -48 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 432 -48 96 ) ( 432 -40 96 ) ( 384 -48 96 ) surface_beige_edge [ -4.371139006309477e-08 -0.999999999999999 0 -16 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.5 0.5 -( 432 -48 104 ) ( 384 -48 104 ) ( 432 -40 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 384 -40 104 ) ( 384 -40 96 ) ( 432 -40 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 424 -40 104 ) ( 424 -40 96 ) ( 424 -48 104 ) surface_beige [ 0 1 0 56 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 51 -{ -( 384 -56 8 ) ( 384 -55 8 ) ( 384 -56 9 ) ground_cobblestone1 [ 0 -1 0 -224 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 384 -56 8 ) ( 384 -56 9 ) ( 385 -56 8 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 384 -56 8 ) ( 385 -56 8 ) ( 384 -55 8 ) ground_cobblestone1 [ -1 0 0 0 ] [ 0 -1 0 -30 ] 0 0.25 0.25 -( 432 -48 16 ) ( 432 -47 16 ) ( 433 -48 16 ) ground_cobblestone1 [ 1 0 0 0 ] [ 0 -1 0 -30 ] 0 0.25 0.25 -( 432 -48 16 ) ( 433 -48 16 ) ( 432 -48 17 ) ground_cobblestone1 [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 432 -48 16 ) ( 432 -48 17 ) ( 432 -47 16 ) ground_cobblestone1 [ 0 1 0 224 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 52 -{ -( 312 -56 96 ) ( 312 -55 96 ) ( 312 -56 97 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 312 -56 96 ) ( 312 -56 97 ) ( 313 -56 96 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 312 -56 96 ) ( 313 -56 96 ) ( 312 -55 96 ) wall_brick [ -1 0 0 0 ] [ 0 -1 0 -118 ] 0 0.25 0.25 -( 360 -48 104 ) ( 360 -47 104 ) ( 361 -48 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.25 0.25 -( 360 -48 104 ) ( 361 -48 104 ) ( 360 -48 105 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 640 -48 104 ) ( 640 -48 105 ) ( 640 -47 104 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 53 -{ -( 80 48 152 ) ( 80 49 152 ) ( 80 48 153 ) wall_brick [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 176 -56 152 ) ( 176 -56 153 ) ( 177 -56 152 ) wall_brick [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 176 48 152 ) ( 177 48 152 ) ( 176 49 152 ) wall_brick [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 208 80 256 ) ( 208 81 256 ) ( 209 80 256 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 208 264 168 ) ( 209 264 168 ) ( 208 264 169 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 312 80 168 ) ( 312 80 169 ) ( 312 81 168 ) wall_brick [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 54 -{ -( 328 136 104 ) ( 328 137 104 ) ( 328 136 105 ) skip [ 0 -1 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 -( 392 -40 104 ) ( 392 -40 105 ) ( 393 -40 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 -( 392 136 104 ) ( 393 136 104 ) ( 392 137 104 ) ground_wood [ -1 0 0 0 ] [ 0 -1 0 -64 ] 0 0.5 0.5 -( 424 168 112 ) ( 424 169 112 ) ( 425 168 112 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 424 136 112 ) ( 425 136 112 ) ( 424 136 113 ) skip [ -1 0 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 -( 480 168 112 ) ( 480 168 113 ) ( 480 169 112 ) skip [ 0 1 0 0 ] [ 0 0 -1 48 ] 0 0.5 0.5 -} -// brush 55 -{ -( 424 -48 104 ) ( 424 -48 96 ) ( 424 -40 104 ) surface_beige [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 -( 440 -48 104 ) ( 440 -48 96 ) ( 392 -48 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 440 -48 96 ) ( 440 -40 96 ) ( 392 -48 96 ) surface_beige_corner [ -0.9999999999999961 8.742277995965608e-08 0 32 ] [ 8.742277995965608e-08 0.9999999999999961 0 16 ] 180 0.5 0.5 -( 440 -48 104 ) ( 392 -48 104 ) ( 440 -40 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 392 -40 104 ) ( 392 -40 96 ) ( 440 -40 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 432 -40 104 ) ( 432 -40 96 ) ( 432 -48 104 ) surface_beige [ 0 1 0 56 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 56 -{ -( 384 -48 104 ) ( 384 -48 96 ) ( 384 -40 104 ) surface_beige [ 0 -1 0 -56 ] [ 0 0 -1 0 ] 0 1 1 -( 400 -48 104 ) ( 400 -48 96 ) ( 352 -48 104 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 -48 96 ) ( 400 -40 96 ) ( 352 -48 96 ) surface_beige_corner [ -4.371139006309477e-08 -0.999999999999999 0 -16 ] [ -0.999999999999999 4.371139006309477e-08 0 0 ] 90 0.5 0.5 -( 400 -48 104 ) ( 352 -48 104 ) ( 400 -40 104 ) skip [ 1 0 0 0 ] [ 0 -1 0 -56 ] 0 1 1 -( 352 -40 104 ) ( 352 -40 96 ) ( 400 -40 104 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 392 -40 104 ) ( 392 -40 96 ) ( 392 -48 104 ) surface_beige [ 0 1 0 56 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 57 -{ -( 328 112 16 ) ( 328 113 16 ) ( 328 112 17 ) redplaid [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 -( 328 104 16 ) ( 328 104 17 ) ( 329 104 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 328 112 16 ) ( 329 112 16 ) ( 328 113 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 -( 352 136 48 ) ( 352 137 48 ) ( 353 136 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 -( 352 136 24 ) ( 353 136 24 ) ( 352 136 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 136 24 ) ( 400 136 25 ) ( 400 137 24 ) redplaid [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 58 -{ -( 328 56 16 ) ( 328 57 16 ) ( 328 56 17 ) redplaid [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 -( 328 24 16 ) ( 328 24 17 ) ( 329 24 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 328 56 16 ) ( 329 56 16 ) ( 328 57 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 -( 360 104 48 ) ( 360 105 48 ) ( 361 104 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 -( 360 104 24 ) ( 361 104 24 ) ( 360 104 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 360 104 24 ) ( 360 104 25 ) ( 360 105 24 ) redplaid [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 59 -{ -( 448 -8 16 ) ( 448 -7 16 ) ( 448 -8 17 ) redplaid [ 0 -1 0 -184 ] [ 0 0 -1 0 ] 0 1 1 -( 448 -40 16 ) ( 448 -40 17 ) ( 449 -40 16 ) redplaid [ 1 0 0 -120 ] [ 0 0 -1 0 ] 0 1 1 -( 448 -8 16 ) ( 449 -8 16 ) ( 448 -7 16 ) redplaid [ -1 0 0 120 ] [ 0 -1 0 -184 ] 0 1 1 -( 480 40 48 ) ( 480 41 48 ) ( 481 40 48 ) redplaid [ 1 0 0 -120 ] [ 0 -1 0 -184 ] 0 1 1 -( 480 136 24 ) ( 481 136 24 ) ( 480 136 25 ) redplaid [ -1 0 0 120 ] [ 0 0 -1 0 ] 0 1 1 -( 480 40 24 ) ( 480 40 25 ) ( 480 41 24 ) redplaid [ 0 1 0 184 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 60 -{ -( -16 360 -20 ) ( -16 361 -20 ) ( -16 360 -19 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( -64 360 -20 ) ( -64 360 -19 ) ( -63 360 -20 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( -64 360 -20 ) ( -63 360 -20 ) ( -64 361 -20 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 64 488 12 ) ( 64 489 12 ) ( 65 488 12 ) asphalt [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 64 600 12 ) ( 65 600 12 ) ( 64 600 13 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 784 488 12 ) ( 784 488 13 ) ( 784 489 12 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 61 -{ -( -16 360 -16 ) ( -16 361 -16 ) ( -16 360 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 -( -64 360 -16 ) ( -64 360 -15 ) ( -63 360 -16 ) skip [ 1 0 0 0 ] [ 0 0 -1 16 ] 0 0.5 0.5 -( -64 360 12 ) ( -63 360 12 ) ( -64 361 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 64 488 16 ) ( 64 489 16 ) ( 65 488 16 ) ground_greybrick [ -4.371139006309477e-08 -0.999999999999999 0 0 ] [ -0.999999999999999 4.371139006309477e-08 0 73 ] 90 0.5 0.5 -( 64 600 16 ) ( 65 600 16 ) ( 64 600 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 -( 80 488 16 ) ( 80 488 17 ) ( 80 489 16 ) wall_concrete1 [ 0 1 0 0 ] [ 0 0 -1 16 ] 0 1 1 -} -// brush 62 -{ -( -16 600 -16 ) ( -16 601 -16 ) ( -16 600 -15 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 16 ] 0 0.5 0.5 -( -64 600 -16 ) ( -64 600 -15 ) ( -63 600 -16 ) wall_concrete1 [ 1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 -( -64 600 12 ) ( -63 600 12 ) ( -64 601 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 64 728 16 ) ( 64 729 16 ) ( 65 728 16 ) ground_greybrick [ 1 0 0 0 ] [ 0 -1 0 48 ] 0 0.5 0.5 -( 64 704 16 ) ( 65 704 16 ) ( 64 704 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 16 ] 0 1 1 -( 576 728 16 ) ( 576 728 17 ) ( 576 729 16 ) wall_concrete1 [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 63 -{ -( 736 600 -16 ) ( 736 601 -16 ) ( 736 600 -15 ) wall_concrete1 [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 144 600 -16 ) ( 144 600 -15 ) ( 145 600 -16 ) wall_concrete1 [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 144 600 12 ) ( 145 600 12 ) ( 144 601 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 272 728 16 ) ( 272 729 16 ) ( 273 728 16 ) ground_greybrick [ 1 0 0 0 ] [ 0 -1 0 48 ] 0 0.5 0.5 -( 272 720 16 ) ( 273 720 16 ) ( 272 720 17 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 784 728 16 ) ( 784 728 17 ) ( 784 729 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 64 -{ -( 576 600 -20 ) ( 576 601 -20 ) ( 576 600 -19 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( -112 600 -20 ) ( -112 600 -19 ) ( -111 600 -20 ) skip [ 1 0 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( -112 600 -20 ) ( -111 600 -20 ) ( -112 601 -20 ) skip [ -1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 16 728 12 ) ( 16 729 12 ) ( 17 728 12 ) asphalt [ 1 0 0 96 ] [ 0 -1 0 40 ] 0 0.5 0.5 -( 16 720 12 ) ( 17 720 12 ) ( 16 720 13 ) skip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 736 728 12 ) ( 736 728 13 ) ( 736 729 12 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 65 -{ -( 64 336 24 ) ( 64 337 24 ) ( 64 336 25 ) redplaid [ 0 -1 0 0 ] [ 0 0 -1 8 ] 0 1 1 -( 56 344 24 ) ( 56 344 25 ) ( 57 344 24 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 8 ] 0 1 1 -( 56 336 24 ) ( 57 336 24 ) ( 56 337 24 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 80 360 152 ) ( 80 361 152 ) ( 81 360 152 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 80 352 32 ) ( 81 352 32 ) ( 80 352 33 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 8 ] 0 1 1 -( 72 360 32 ) ( 72 360 33 ) ( 72 361 32 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 8 ] 0 1 1 -} -// brush 66 -{ -( 56 336 16 ) ( 56 337 16 ) ( 56 336 17 ) redplaid [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 56 336 16 ) ( 56 336 17 ) ( 57 336 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 56 336 16 ) ( 57 336 16 ) ( 56 337 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 80 360 18 ) ( 80 361 18 ) ( 81 360 18 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 80 360 24 ) ( 81 360 24 ) ( 80 360 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 80 360 24 ) ( 80 360 25 ) ( 80 361 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 67 -{ -( 64 344 24 ) ( 56 336 18 ) ( 56 360 18 ) redplaid [ 0 -1.0000000000000002 0 0 ] [ 1.0000000000000002 0 0 -70.43137 ] 0 1 1 -( 72 344 24 ) ( 80 336 18 ) ( 56 336 18 ) redplaid [ 1.0000000000000002 0 0 0 ] [ 0 1.0000000000000002 0 -94.58823 ] 0 1 1 -( 80 336 18 ) ( 80 360 18 ) ( 56 360 18 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 64 352 24 ) ( 72 352 24 ) ( 72 344 24 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 72 352 24 ) ( 64 352 24 ) ( 56 360 18 ) redplaid [ -1.0000000000000002 0 0 0 ] [ 0 -1.0000000000000002 0 89.568634 ] 0 1 1 -( 72 352 24 ) ( 80 360 18 ) ( 80 336 18 ) redplaid [ 0 1.0000000000000002 0 0 ] [ -1.0000000000000002 0 0 68 ] 0 1 1 -} -// brush 68 -{ -( 60 336 152 ) ( 60 337 152 ) ( 60 336 153 ) redplaid [ 0 -1 0 24 ] [ 0 0 -1 8 ] 0 1 1 -( 56 340 152 ) ( 56 340 153 ) ( 57 340 152 ) redplaid [ 1 0 0 -8 ] [ 0 0 -1 8 ] 0 1 1 -( 56 336 152 ) ( 57 336 152 ) ( 56 337 152 ) redplaid [ -1 0 0 8 ] [ 0 -1 0 24 ] 0 1 1 -( 88 368 156 ) ( 88 369 156 ) ( 89 368 156 ) redplaid [ 1 0 0 -8 ] [ 0 -1 0 24 ] 0 1 1 -( 88 356 160 ) ( 89 356 160 ) ( 88 356 161 ) redplaid [ -1 0 0 8 ] [ 0 0 -1 8 ] 0 1 1 -( 76 368 160 ) ( 76 368 161 ) ( 76 369 160 ) redplaid [ 0 1 0 -24 ] [ 0 0 -1 8 ] 0 1 1 -} -// brush 69 -{ -( 64 344 186 ) ( 54 334 180 ) ( 54 362 180 ) redplaid [ 0 -1.0000000000000002 0 24 ] [ 1.0000000000000002 0 0 -200.0878 ] 0 1 1 -( 72 344 186 ) ( 82 334 180 ) ( 54 334 180 ) redplaid [ 1.0000000000000002 0 0 -8 ] [ 0 1.0000000000000002 0 -222 ] 0 1 1 -( 82 334 180 ) ( 82 362 180 ) ( 54 362 180 ) redplaid [ -1 0 0 8 ] [ 0 -1 0 24 ] 0 1 1 -( 64 352 186 ) ( 72 352 186 ) ( 72 344 186 ) redplaid [ 1 0 0 -8 ] [ 0 -1 0 24 ] 0 1 1 -( 54 362 180 ) ( 82 362 180 ) ( 72 352 186 ) redplaid [ -1.0000000000000002 0 0 8 ] [ 0 -1.0000000000000002 0 215.36586 ] 0 1 1 -( 72 352 186 ) ( 82 362 180 ) ( 82 334 180 ) redplaid [ 0 1.0000000000000002 0 -24 ] [ -1.0000000000000002 0 0 -62 ] 0 1 1 -} -// brush 70 -{ -( 60 354 156 ) ( 60 356 156 ) ( 54 362 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 56 360 180 ) ( 62 354 156 ) ( 60 354 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 62 354 156 ) ( 62 356 156 ) ( 60 356 156 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 56 360 180 ) ( 54 360 180 ) ( 54 362 180 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 60 356 156 ) ( 62 356 156 ) ( 56 362 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 56 362 180 ) ( 62 356 156 ) ( 62 354 156 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 71 -{ -( 60 340 156 ) ( 60 342 156 ) ( 54 336 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 56 334 180 ) ( 62 340 156 ) ( 60 340 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 62 340 156 ) ( 62 342 156 ) ( 60 342 156 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 56 334 180 ) ( 54 334 180 ) ( 54 336 180 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 60 342 156 ) ( 62 342 156 ) ( 56 336 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 56 336 180 ) ( 62 342 156 ) ( 62 340 156 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 72 -{ -( 74 342 156 ) ( 80 336 180 ) ( 80 334 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 80 334 180 ) ( 82 334 180 ) ( 76 340 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 76 342 156 ) ( 74 342 156 ) ( 74 340 156 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 80 336 180 ) ( 82 336 180 ) ( 82 334 180 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 76 342 156 ) ( 82 336 180 ) ( 80 336 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 76 342 156 ) ( 76 340 156 ) ( 82 334 180 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 73 -{ -( 74 356 156 ) ( 80 362 180 ) ( 80 360 180 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 80 360 180 ) ( 82 360 180 ) ( 76 354 156 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 76 356 156 ) ( 74 356 156 ) ( 74 354 156 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 80 362 180 ) ( 82 362 180 ) ( 82 360 180 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 76 356 156 ) ( 82 362 180 ) ( 80 362 180 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 76 356 156 ) ( 76 354 156 ) ( 82 360 180 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 74 -{ -( 80 360 16 ) ( 80 360 12 ) ( 80 368 12 ) clip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 80 360 16 ) ( 784 360 16 ) ( 784 360 12 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 784 360 12 ) ( 784 368 12 ) ( 80 368 12 ) clip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 80 368 12 ) ( 784 368 12 ) ( 784 360 16 ) clip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 784 360 16 ) ( 784 368 12 ) ( 784 360 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 75 -{ -( 400 104 16 ) ( 400 105 16 ) ( 400 104 17 ) redplaid [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 -( 400 104 16 ) ( 400 104 17 ) ( 401 104 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 400 104 16 ) ( 401 104 16 ) ( 400 105 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 -( 448 136 96 ) ( 448 137 96 ) ( 449 136 96 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 -( 448 136 24 ) ( 449 136 24 ) ( 448 136 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 448 136 24 ) ( 448 136 25 ) ( 448 137 24 ) redplaid [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 76 -{ -( 328 136 16 ) ( 328 137 16 ) ( 328 136 17 ) skip [ 0 -1 0 8 ] [ 0 0 -1 0 ] 0 1 1 -( 328 136 16 ) ( 328 136 17 ) ( 329 136 16 ) surface_beige [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 328 136 4 ) ( 329 136 4 ) ( 328 137 4 ) skip [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 1 1 -( 448 144 120 ) ( 448 145 120 ) ( 449 144 120 ) skip [ 1 0 0 0 ] [ 0 -1 0 8 ] 0 1 1 -( 448 264 24 ) ( 449 264 24 ) ( 448 264 25 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 488 144 24 ) ( 488 144 25 ) ( 488 145 24 ) skip [ 0 1 0 -8 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 77 -{ -( 80 600 16 ) ( 80 592 12 ) ( 80 600 12 ) clip [ -1.2246467991473532e-16 -1 0 0 ] [ 0 0 -1 0 ] 180 1 1 -( 784 592 12 ) ( 80 592 12 ) ( 80 600 16 ) clip [ -1 1.2246467991473532e-16 0 32 ] [ 1.2246467991473532e-16 1 0 0 ] 180 1 1 -( 80 600 12 ) ( 80 592 12 ) ( 784 592 12 ) clip [ 1 -1.2246467991473532e-16 0 -32 ] [ 1.2246467991473532e-16 1 0 0 ] 180 1 1 -( 784 600 16 ) ( 80 600 16 ) ( 80 600 12 ) clip [ -1 1.2246467991473532e-16 0 32 ] [ 0 0 -1 0 ] 180 1 1 -( 576 600 16 ) ( 576 600 12 ) ( 576 592 12 ) clip [ 1.2246467991473532e-16 1 0 0 ] [ 0 0 -1 0 ] 180 1 1 -} -// brush 78 -{ -( 80 936 16 ) ( 80 232 16 ) ( 80 232 12 ) clip [ -1.8369701987210297e-16 -1 0 56 ] [ 0 0 -1 0 ] 180 1 1 -( 80 360 16 ) ( 88 360 12 ) ( 80 360 12 ) clip [ 1 -1.8369701987210297e-16 0 23.999992 ] [ 0 0 -1 0 ] 180 1 1 -( 80 232 12 ) ( 88 232 12 ) ( 88 936 12 ) clip [ 1.8369701987210297e-16 1 0 -56 ] [ -1 1.8369701987210297e-16 0 -24 ] 270 1 1 -( 80 600 16 ) ( 80 600 12 ) ( 88 600 12 ) clip [ -1 1.8369701987210297e-16 0 -23.999992 ] [ 0 0 -1 0 ] 180 1 1 -( 88 936 12 ) ( 88 232 12 ) ( 80 232 16 ) clip [ -1.8369701987210297e-16 -1 0 56 ] [ -1 1.8369701987210297e-16 0 -24 ] 96.379364 1 1 -} -// brush 79 -{ -( 96 704 16 ) ( 96 705 16 ) ( 96 704 17 ) wall_brick [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 544 704 16 ) ( 544 704 17 ) ( 545 704 16 ) wall_brick [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 0.25 0.25 -( 544 704 12 ) ( 545 704 12 ) ( 544 705 12 ) skip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 0.25 0.25 -( 576 736 64 ) ( 576 737 64 ) ( 577 736 64 ) wall_brick [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 576 720 32 ) ( 577 720 32 ) ( 576 720 33 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 576 736 32 ) ( 576 736 33 ) ( 576 737 32 ) wall_brick [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 80 -{ -( 96 744 -20 ) ( 96 745 -20 ) ( 96 744 -19 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( -112 720 -20 ) ( -112 720 -19 ) ( -111 720 -20 ) skip [ 1 0 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( -112 744 -20 ) ( -111 744 -20 ) ( -112 745 -20 ) skip [ -1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 16 872 12 ) ( 16 873 12 ) ( 17 872 12 ) asphalt [ 1 0 0 96 ] [ 0 -1 0 108 ] 0 0.5 0.5 -( 16 1136 12 ) ( 17 1136 12 ) ( 16 1136 13 ) skip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 736 872 12 ) ( 736 872 13 ) ( 736 873 12 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 81 -{ -( 736 712 -16 ) ( 736 713 -16 ) ( 736 712 -15 ) wall_concrete1 [ 0 -1 0 112 ] [ 0 0 -1 0 ] 0 1 1 -( 144 720 -16 ) ( 144 720 -15 ) ( 145 720 -16 ) wall_concrete1 [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 144 712 12 ) ( 145 712 12 ) ( 144 713 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 272 840 16 ) ( 272 841 16 ) ( 273 840 16 ) ground_greybrick [ 1 0 0 0 ] [ 0 -1 0 -112 ] 0 0.5 0.5 -( 272 864 16 ) ( 273 864 16 ) ( 272 864 17 ) wall_concrete1 [ -1 0 0 128 ] [ 0 0 -1 0 ] 0 1 1 -( 848 840 16 ) ( 848 840 17 ) ( 848 841 16 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 82 -{ -( 784 704 16 ) ( 784 705 16 ) ( 784 704 17 ) wall_brick [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1344 704 16 ) ( 1344 704 17 ) ( 1345 704 16 ) wall_brick [ 1 0 0 128 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1344 704 12 ) ( 1345 704 12 ) ( 1344 705 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 1376 736 64 ) ( 1376 737 64 ) ( 1377 736 64 ) wall_brick [ 1 0 0 128 ] [ 0 -1 0 0 ] 0 0.25 0.25 -( 1376 720 32 ) ( 1377 720 32 ) ( 1376 720 33 ) wall_brick [ -1 0 0 -128 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1168 736 32 ) ( 1168 736 33 ) ( 1168 737 32 ) wall_brick [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 83 -{ -( 736 728 -20 ) ( 736 729 -20 ) ( 736 728 -19 ) skip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 608 864 -20 ) ( 608 864 -19 ) ( 609 864 -20 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 608 728 -20 ) ( 609 728 -20 ) ( 608 729 -20 ) skip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 736 856 12 ) ( 736 857 12 ) ( 737 856 12 ) asphalt [ 1 0 0 64 ] [ 0 -1 0 76 ] 0 0.5 0.5 -( 736 1136 12 ) ( 737 1136 12 ) ( 736 1136 13 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 848 856 12 ) ( 848 856 13 ) ( 848 857 12 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 84 -{ -( 848 872 -16 ) ( 848 873 -16 ) ( 848 872 -15 ) wall_concrete1 [ 0 -1 0 272 ] [ 0 0 -1 0 ] 0 1 1 -( 304 800 -16 ) ( 304 800 -15 ) ( 305 800 -16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 304 872 12 ) ( 305 872 12 ) ( 304 873 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 432 1000 16 ) ( 432 1001 16 ) ( 433 1000 16 ) ground_greybrick [ 1 0 0 -96 ] [ 0 -1 0 -112 ] 0 0.5 0.5 -( 432 1136 16 ) ( 433 1136 16 ) ( 432 1136 17 ) skip [ -1 0 0 32 ] [ 0 0 -1 0 ] 0 1 1 -( 944 1000 16 ) ( 944 1000 17 ) ( 944 1001 16 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 85 -{ -( 736 600 16 ) ( 736 592 12 ) ( 736 600 12 ) clip [ -0 -1 0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 992 592 12 ) ( 288 592 12 ) ( 288 600 16 ) clip [ 1 0 -0 0 ] [ 0 -0.894427190999916 -0.447213595499958 0 ] 0 1 1 -( 288 600 12 ) ( 288 592 12 ) ( 992 592 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 992 600 16 ) ( 288 600 16 ) ( 288 600 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 784 600 16 ) ( 784 600 12 ) ( 784 592 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 86 -{ -( 576 1048 16 ) ( 576 344 16 ) ( 576 344 12 ) clip [ 0 -1 0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 576 600 16 ) ( 584 600 12 ) ( 576 600 12 ) clip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 576 344 12 ) ( 584 344 12 ) ( 584 1048 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 576 704 16 ) ( 576 704 12 ) ( 584 704 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 584 1048 12 ) ( 584 344 12 ) ( 576 344 16 ) clip [ 0.894427190999916 0 -0.447213595499958 0 ] [ 0 -1 0 0 ] 0 1 1 -} -// brush 87 -{ -( 728 1048 12 ) ( 736 344 16 ) ( 728 344 12 ) clip [ 0.894427190999916 0 0.447213595499958 -29.020447 ] [ 0 -1 0 0 ] 0 1 1 -( 736 600 16 ) ( 736 600 12 ) ( 728 600 12 ) clip [ 1 0 0 -40 ] [ 0 0 -1 0 ] 0 1 1 -( 736 344 12 ) ( 728 1048 12 ) ( 728 344 12 ) clip [ -1 0 0 40 ] [ 0 -1 0 0 ] 0 1 1 -( 736 864 16 ) ( 728 864 12 ) ( 736 864 12 ) clip [ -1 0 0 40 ] [ 0 0 -1 0 ] 0 1 1 -( 736 1048 16 ) ( 736 344 12 ) ( 736 344 16 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 88 -{ -( 840 1312 12 ) ( 848 608 16 ) ( 840 608 12 ) clip [ 0.894427190999916 -0 0.447213595499958 0 ] [ -0 -1 0 0 ] 0 1 1 -( 848 864 16 ) ( 848 864 12 ) ( 840 864 12 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 848 608 12 ) ( 840 1312 12 ) ( 840 608 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 848 1136 16 ) ( 840 1136 12 ) ( 848 1136 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 848 1312 16 ) ( 848 608 12 ) ( 848 608 16 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 89 -{ -( 736 864 16 ) ( 736 864 12 ) ( 736 872 12 ) clip [ 0 -1 0 -8 ] [ 0 0 -1 0 ] 0 1 1 -( 144 864 16 ) ( 848 864 16 ) ( 848 864 12 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 848 864 12 ) ( 848 872 12 ) ( 144 872 12 ) clip [ -1 0 0 0 ] [ 0 -1 0 -8 ] 0 1 1 -( 144 872 12 ) ( 848 872 12 ) ( 848 864 16 ) clip [ 1 0 0 0 ] [ 0 -1 0 -8 ] 0 1 1 -( 848 864 16 ) ( 848 872 12 ) ( 848 864 12 ) clip [ 0 1 0 8 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 90 -{ -( 728 872 12 ) ( 736 864 16 ) ( 728 864 12 ) clip [ 0.894427190999916 -0 0.447213595499958 0 ] [ -0 -1 0 0 ] 0 1 1 -( 728 864 12 ) ( 736 864 16 ) ( 736 864 12 ) clip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 736 864 12 ) ( 736 872 12 ) ( 728 872 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 728 872 12 ) ( 736 872 12 ) ( 736 864 16 ) clip [ 1 -0 0 0 ] [ -0 -0.894427190999916 0.447213595499958 0 ] 0 1 1 -( 736 864 16 ) ( 736 872 12 ) ( 736 864 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 91 -{ -( 728 592 12 ) ( 728 600 12 ) ( 736 600 16 ) clip [ 0.894427190999916 -0 0.447213595499958 0 ] [ -0 -1 0 0 ] 0 1 1 -( 728 592 12 ) ( 736 600 16 ) ( 736 592 12 ) clip [ 1 0 -0 0 ] [ 0 -0.894427190999916 -0.447213595499958 0 ] 0 1 1 -( 736 600 12 ) ( 728 592 12 ) ( 736 592 12 ) clip [ -1 0 -0 0 ] [ -0 -1 0 0 ] 0 1 1 -( 728 600 12 ) ( 736 600 12 ) ( 736 600 16 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 736 600 16 ) ( 736 600 12 ) ( 736 592 12 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 92 -{ -( 576 600 16 ) ( 576 592 12 ) ( 576 600 12 ) clip [ -0 -1 0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 584 592 12 ) ( 576 592 12 ) ( 576 600 16 ) clip [ 1 0 -0 0 ] [ 0 -0.894427190999916 -0.447213595499958 0 ] 0 1 1 -( 576 600 12 ) ( 576 592 12 ) ( 584 592 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 584 600 12 ) ( 576 600 16 ) ( 576 600 12 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 584 592 12 ) ( 576 600 16 ) ( 584 600 12 ) clip [ 0.894427190999916 0 -0.447213595499958 0 ] [ 0 -1 -0 0 ] 0 1 1 -} -// brush 93 -{ -( 576 704 16 ) ( 576 704 12 ) ( 576 712 12 ) clip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 584 704 12 ) ( 576 704 12 ) ( 576 704 16 ) clip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 576 704 12 ) ( 584 712 12 ) ( 576 712 12 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 584 712 12 ) ( 576 704 16 ) ( 576 712 12 ) clip [ 1 0 0 0 ] [ 0 -0.894427190999916 0.447213595499958 0 ] 0 1 1 -( 584 712 12 ) ( 584 704 12 ) ( 576 704 16 ) clip [ 0.894427190999916 0 -0.447213595499958 0 ] [ 0 -1 0 0 ] 0 1 1 -} -// brush 94 -{ -( 312 248 16 ) ( 312 249 16 ) ( 312 248 17 ) skip [ 0 -1 0 -48 ] [ 0 0 -1 0 ] 0 1 1 -( 312 256 16 ) ( 312 256 17 ) ( 313 256 16 ) skip [ 1 0 0 -24 ] [ 0 0 -1 0 ] 0 1 1 -( 312 248 16 ) ( 313 248 16 ) ( 312 249 16 ) skip [ -1 0 0 24 ] [ 0 -1 0 -48 ] 0 1 1 -( 328 264 120 ) ( 328 265 120 ) ( 329 264 120 ) skip [ 1 0 0 -24 ] [ 0 -1 0 -48 ] 0 1 1 -( 328 264 24 ) ( 329 264 24 ) ( 328 264 25 ) wall_brick [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 328 264 24 ) ( 328 264 25 ) ( 328 265 24 ) skip [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 95 -{ -( 80 160 0 ) ( 80 161 0 ) ( 80 160 1 ) surface_green [ 0 -1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 160 0 ) ( 80 160 1 ) ( 81 160 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 160 52 ) ( 81 160 52 ) ( 80 161 52 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 192 96 ) ( 112 193 96 ) ( 113 192 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 168 16 ) ( 113 168 16 ) ( 112 168 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 88 192 16 ) ( 88 192 17 ) ( 88 193 16 ) surface_green [ 0 1 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 96 -{ -( 80 48 0 ) ( 80 49 0 ) ( 80 48 1 ) surface_green [ 0 -1 0 -32 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 48 0 ) ( 80 48 1 ) ( 81 48 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 48 52 ) ( 81 48 52 ) ( 80 49 52 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 112 80 96 ) ( 112 81 96 ) ( 113 80 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 112 56 16 ) ( 113 56 16 ) ( 112 56 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 88 80 16 ) ( 88 80 17 ) ( 88 81 16 ) surface_green [ 0 1 0 32 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 97 -{ -( 72 -248 88 ) ( 72 -247 88 ) ( 72 -248 89 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 -63.999992 ] 90 0.5 0.5 -( 80 -64 88 ) ( 80 -64 89 ) ( 81 -64 88 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 -32 ] [ -0.999999999999999 0 4.371139006309477e-08 16 ] 90 0.5 0.5 -( 80 -248 104 ) ( 81 -248 104 ) ( 80 -247 104 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 -( 112 -216 112 ) ( 112 -215 112 ) ( 113 -216 112 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 -( 112 -48 104 ) ( 113 -48 104 ) ( 112 -48 105 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -24 ] 0 0.5 0.5 -( 312 -216 104 ) ( 312 -216 105 ) ( 312 -215 104 ) surface_green_edge [ 0 -4.371139006309477e-08 -0.999999999999999 32 ] [ 0 -0.999999999999999 4.371139006309477e-08 16.000008 ] 90 0.5 0.5 -} -// brush 98 -{ -( 224 8 16 ) ( 224 9 16 ) ( 224 8 17 ) redplaid [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 -( 224 104 16 ) ( 224 104 17 ) ( 225 104 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 224 8 16 ) ( 225 8 16 ) ( 224 9 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 -( 248 96 48 ) ( 248 97 48 ) ( 249 96 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 -( 248 136 24 ) ( 249 136 24 ) ( 248 136 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 312 96 24 ) ( 312 96 25 ) ( 312 97 24 ) redplaid [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 99 -{ -( 80 -56 48 ) ( 80 -55 48 ) ( 80 -56 49 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 -32 ] [ 0 0.999999999999999 4.371139006309477e-08 -15.999992 ] 90 0.5 0.5 -( 80 -56 48 ) ( 80 -56 49 ) ( 81 -56 48 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 -32 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 -56 120 ) ( 81 -56 120 ) ( 80 -55 120 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 112 -24 144 ) ( 112 -23 144 ) ( 113 -24 144 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 112 -48 64 ) ( 113 -48 64 ) ( 112 -48 65 ) skip [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 312 -24 64 ) ( 312 -24 65 ) ( 312 -23 64 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 100 -{ -( 80 -56 0 ) ( 80 -55 0 ) ( 80 -56 1 ) surface_green [ 0 -1 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 -56 0 ) ( 80 -56 1 ) ( 81 -56 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 -56 48 ) ( 81 -56 48 ) ( 80 -55 48 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 112 -24 96 ) ( 112 -23 96 ) ( 113 -24 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 112 -48 16 ) ( 113 -48 16 ) ( 112 -48 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 88 -24 16 ) ( 88 -24 17 ) ( 88 -23 16 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 101 -{ -( 224 -48 16 ) ( 224 -47 16 ) ( 224 -48 17 ) redplaid [ 0 -1 0 -120 ] [ 0 0 -1 0 ] 0 1 1 -( 224 -48 16 ) ( 224 -48 17 ) ( 225 -48 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 224 -48 16 ) ( 225 -48 16 ) ( 224 -47 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 -( 248 40 48 ) ( 248 41 48 ) ( 249 40 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 -120 ] 0 1 1 -( 248 64 24 ) ( 249 64 24 ) ( 248 64 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 248 40 24 ) ( 248 40 25 ) ( 248 41 24 ) redplaid [ 0 1 0 120 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 102 -{ -( 72 -248 128 ) ( 72 -247 128 ) ( 72 -248 129 ) surface_green [ 0 -1 0 8 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 80 -64 128 ) ( 80 -64 129 ) ( 81 -64 128 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 80 -248 144 ) ( 81 -248 144 ) ( 80 -247 144 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 8 ] 0 0.5 0.5 -( 112 -216 152 ) ( 112 -215 152 ) ( 113 -216 152 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 112 -48 144 ) ( 113 -48 144 ) ( 112 -48 145 ) skip [ -1 0 0 0 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -( 312 -216 144 ) ( 312 -216 145 ) ( 312 -215 144 ) surface_green [ 0 1 0 -8 ] [ 0 0 -1 -48 ] 0 0.5 0.5 -} -// brush 103 -{ -( 80 -56 0 ) ( 80 -55 0 ) ( 80 -56 1 ) surface_green [ 0 -1 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 -56 0 ) ( 80 -56 1 ) ( 81 -56 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 80 -56 16 ) ( 81 -56 16 ) ( 80 -55 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 112 -24 52 ) ( 112 -23 52 ) ( 113 -24 52 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 112 -48 16 ) ( 113 -48 16 ) ( 112 -48 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 224 -24 16 ) ( 224 -24 17 ) ( 224 -23 16 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 104 -{ -( 224 -56 0 ) ( 224 -55 0 ) ( 224 -56 1 ) surface_green [ 0 -1 0 16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 224 -56 0 ) ( 224 -56 1 ) ( 225 -56 0 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 224 -56 16 ) ( 225 -56 16 ) ( 224 -55 16 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 256 -24 96 ) ( 256 -23 96 ) ( 257 -24 96 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 256 -48 16 ) ( 257 -48 16 ) ( 256 -48 17 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -( 312 -24 16 ) ( 312 -24 17 ) ( 312 -23 16 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -16 ] 0 0.5 0.5 -} -// brush 105 -{ -( 80 -56 -8 ) ( 80 -55 -8 ) ( 80 -56 -7 ) surface_green_edge [ 0 4.371139006309477e-08 -0.999999999999999 16 ] [ 0 0.999999999999999 4.371139006309477e-08 -15.999992 ] 90 0.5 0.5 -( 176 -56 -8 ) ( 176 -56 -7 ) ( 177 -56 -8 ) surface_green_edge [ -4.371139006309477e-08 0 -0.999999999999999 16 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 176 -56 96 ) ( 177 -56 96 ) ( 176 -55 96 ) surface_green [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 208 -24 104 ) ( 208 -23 104 ) ( 209 -24 104 ) surface_green [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 208 -48 8 ) ( 209 -48 8 ) ( 208 -48 9 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -( 312 -24 8 ) ( 312 -24 9 ) ( 312 -23 8 ) surface_green [ 0 1 0 -16 ] [ 0 0 -1 -40 ] 0 0.5 0.5 -} -// brush 106 -{ -( 944 584 -20 ) ( 944 585 -20 ) ( 944 584 -19 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 816 720 -20 ) ( 816 720 -19 ) ( 817 720 -20 ) skip [ 1 0 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 816 584 -20 ) ( 817 584 -20 ) ( 816 585 -20 ) skip [ -1 0 0 -32 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 944 712 12 ) ( 944 713 12 ) ( 945 712 12 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 944 800 12 ) ( 945 800 12 ) ( 944 800 13 ) skip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1408 712 12 ) ( 1408 712 13 ) ( 1408 713 12 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 107 -{ -( 848 792 -16 ) ( 848 793 -16 ) ( 848 792 -15 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 304 720 -16 ) ( 304 720 -15 ) ( 305 720 -16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 304 792 12 ) ( 305 792 12 ) ( 304 793 12 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 432 920 16 ) ( 432 921 16 ) ( 433 920 16 ) ground_greybrick [ 1 0 0 -96 ] [ 0 -1 0 -16 ] 0 0.5 0.5 -( 432 800 16 ) ( 433 800 16 ) ( 432 800 17 ) skip [ -1 0 0 32 ] [ 0 0 -1 0 ] 0 1 1 -( 944 920 16 ) ( 944 920 17 ) ( 944 921 16 ) wall_concrete1 [ 0 1 0 0 ] [ 0 0 -1 -32 ] 0 1 1 -} -// brush 108 -{ -( 80 256 40 ) ( 80 257 40 ) ( 80 256 41 ) surface_green [ 0 4.371139006309477e-08 -0.999999999999999 -47.999954 ] [ 0 0.999999999999999 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 256 40 ) ( 80 256 41 ) ( 81 256 40 ) surface_green [ 1 0 0 0 ] [ 0 0 -1 -56 ] 0 0.5 0.5 -( 80 256 112 ) ( 81 256 112 ) ( 80 257 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 288 120 ) ( 112 289 120 ) ( 113 288 120 ) skip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 112 264 56 ) ( 113 264 56 ) ( 112 264 57 ) surface_green [ 4.371139006309477e-08 0 -0.999999999999999 -47.999954 ] [ 0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 312 288 56 ) ( 312 288 57 ) ( 312 289 56 ) skip [ 0 1 0 0 ] [ 0 0 -1 -56 ] 0 0.5 0.5 -} -// brush 109 -{ -( 80 -56 40 ) ( 80 -55 40 ) ( 80 -56 41 ) surface_green [ 0 4.371139006309477e-08 -0.999999999999999 -48 ] [ 0 0.999999999999999 4.371139006309477e-08 -16 ] 90 0.5 0.5 -( 80 -56 40 ) ( 80 -56 41 ) ( 81 -56 40 ) surface_green [ -4.371139006309477e-08 0 -0.999999999999999 -48.000015 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 -56 112 ) ( 81 -56 112 ) ( 80 -55 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 112 -24 120 ) ( 112 -23 120 ) ( 113 -24 120 ) skip [ 1 0 0 0 ] [ 0 -1 0 16 ] 0 0.5 0.5 -( 112 -48 56 ) ( 113 -48 56 ) ( 112 -48 57 ) surface_green [ -1 0 0 0 ] [ 0 0 -1 -56 ] 0 0.5 0.5 -( 312 -24 56 ) ( 312 -24 57 ) ( 312 -23 56 ) skip [ 0 1 0 -16 ] [ 0 0 -1 -56 ] 0 0.5 0.5 -} -// brush 110 -{ -( 312 -32 120 ) ( 312 -32 112 ) ( 312 16 120 ) surface_beige_edge [ 0 1.6292067950285372e-07 -0.9999999999999866 -15.9999695 ] [ 0 0.9999999999999866 1.6292067950285372e-07 47.999992 ] 90 0.5 0.5 -( 320 -32 120 ) ( 320 -32 112 ) ( 312 -32 120 ) skip [ 1 0 0 -16 ] [ 0 0 -1 16 ] 0 1 1 -( 312 16 104 ) ( 312 -32 104 ) ( 320 16 104 ) skip [ 1 0 0 16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 320 16 120 ) ( 320 -32 120 ) ( 312 16 120 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 312 16 120 ) ( 312 16 112 ) ( 320 16 120 ) skip [ -1 0 0 16 ] [ 0 0 -1 16 ] 0 1 1 -( 320 16 120 ) ( 320 16 112 ) ( 320 -32 120 ) skip [ 0 1 0 48 ] [ 0 0 -1 48 ] 0 0.5 0.5 -} -// brush 111 -{ -( 312 -56 16 ) ( 312 -40 16 ) ( 312 -56 32 ) surface_beige_corner [ 0 -1.3113417006681922e-07 0.9999999999999913 32 ] [ 0 -0.9999999999999913 -1.3113417006681922e-07 -32 ] 270 0.5 0.5 -( 312 -48 32 ) ( 320 -48 32 ) ( 312 -48 16 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 -56 16 ) ( 320 -40 16 ) ( 312 -56 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 312 -56 32 ) ( 312 -40 32 ) ( 320 -56 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 0 ] 0 0.5 0.5 -( 312 -40 32 ) ( 312 -40 16 ) ( 320 -40 32 ) skip [ 1 0 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 320 -56 32 ) ( 320 -40 32 ) ( 320 -56 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 112 -{ -( 312 152 32 ) ( 312 24 32 ) ( 312 152 16 ) surface_beige_corner [ 0 -0.9999999999999997 -1.224647977550801e-16 0 ] [ -0 1.224647977550801e-16 -0.9999999999999997 32 ] 0 0.5 0.5 -( 320 248 16 ) ( 312 248 16 ) ( 320 248 32 ) skip [ 0.9999999999999957 0 8.742277997596912e-08 16 ] [ -8.742277997596912e-08 0 0.9999999999999957 0 ] 180 0.5 0.5 -( 312 152 16 ) ( 312 24 16 ) ( 320 152 16 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 1 1 -( 320 152 32 ) ( 320 24 32 ) ( 312 152 32 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 312 256 16 ) ( 320 256 16 ) ( 312 256 32 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 152 16 ) ( 320 24 16 ) ( 320 152 32 ) skip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 113 -{ -( 312 152 48 ) ( 312 24 48 ) ( 312 152 32 ) surface_beige_edge [ 0 -0.9999999999999998 0 0 ] [ 0 0 -0.9999999999999998 -32 ] 0 0.5 0.5 -( 320 248 32 ) ( 312 248 32 ) ( 320 248 48 ) skip [ 0.9999999999999957 0 8.742277997596912e-08 16 ] [ -8.742277997596912e-08 0 0.9999999999999957 -32 ] 180 0.5 0.5 -( 312 152 32 ) ( 312 24 32 ) ( 320 152 32 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 1 1 -( 320 152 104 ) ( 320 24 104 ) ( 312 152 104 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 312 256 32 ) ( 320 256 32 ) ( 312 256 48 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 320 152 32 ) ( 320 24 32 ) ( 320 152 48 ) skip [ 0 1 0 32 ] [ 0 0 -1 32 ] 0 0.5 0.5 -} -// brush 114 -{ -( 312 152 120 ) ( 312 24 120 ) ( 312 152 104 ) surface_beige_corner [ 0 1.6292067950285372e-07 -0.9999999999999866 48 ] [ 0 0.9999999999999866 1.6292067950285372e-07 0 ] 90 0.5 0.5 -( 320 248 104 ) ( 312 248 104 ) ( 320 248 120 ) skip [ 0.9999999999999957 0 8.742277997596912e-08 16 ] [ -8.742277997596912e-08 0 0.9999999999999957 -48 ] 180 0.5 0.5 -( 312 152 104 ) ( 312 24 104 ) ( 320 152 104 ) skip [ -1 0 0 16 ] [ 0 -1 0 -48 ] 0 1 1 -( 320 152 120 ) ( 320 24 120 ) ( 312 152 120 ) skip [ 1 0 0 -16 ] [ 0 -1 0 -32 ] 0 0.5 0.5 -( 312 256 104 ) ( 320 256 104 ) ( 312 256 120 ) skip [ -1 0 0 0 ] [ 0 0 -1 32 ] 0 0.25 0.25 -( 320 152 104 ) ( 320 24 104 ) ( 320 152 120 ) skip [ 0 1 0 32 ] [ 0 0 -1 48 ] 0 0.5 0.5 -} -// brush 115 -{ -( 80 -48 40 ) ( 80 -47 40 ) ( 80 -48 41 ) surface_green [ 0 4.371139006309477e-08 -0.999999999999999 -48 ] [ 0 0.999999999999999 4.371139006309477e-08 -32 ] 90 0.5 0.5 -( 80 -48 40 ) ( 80 -48 41 ) ( 81 -48 40 ) skip [ -4.371139006309477e-08 0 -0.999999999999999 -48 ] [ -0.999999999999999 0 4.371139006309477e-08 0 ] 90 0.5 0.5 -( 80 -48 112 ) ( 81 -48 112 ) ( 80 -47 112 ) skip [ -1 0 0 0 ] [ 0 -1 0 32 ] 0 0.5 0.5 -( 112 -16 120 ) ( 112 -15 120 ) ( 113 -16 120 ) skip [ 1 0 0 0 ] [ 0 -1 0 32 ] 0 0.5 0.5 -( 112 256 56 ) ( 113 256 56 ) ( 112 256 57 ) skip [ -1 0 0 0 ] [ 0 0 -1 -56 ] 0 0.5 0.5 -( 88 -16 56 ) ( 88 -16 57 ) ( 88 -15 56 ) surface_green [ 0 1 0 -32 ] [ 0 0 -1 -56 ] 0 0.5 0.5 -} -// brush 116 -{ -( 944 800 0 ) ( 944 801 0 ) ( 944 800 1 ) skip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 944 800 0 ) ( 944 800 1 ) ( 945 800 0 ) skip [ 1 0 0 -16 ] [ 0 0 -1 0 ] 0 1 1 -( 944 800 0 ) ( 945 800 0 ) ( 944 801 0 ) skip [ -1 0 0 16 ] [ 0 -1 0 0 ] 0 1 1 -( 992 848 16 ) ( 992 849 16 ) ( 993 848 16 ) floor_checkertiles [ 1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.25 0.25 -( 992 1024 16 ) ( 993 1024 16 ) ( 992 1024 17 ) skip [ -1 0 0 16 ] [ 0 0 -1 0 ] 0 1 1 -( 1264 848 16 ) ( 1264 848 17 ) ( 1264 849 16 ) skip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 117 -{ -( 944 800 16 ) ( 944 801 16 ) ( 944 800 17 ) redplaid [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 944 800 16 ) ( 944 800 17 ) ( 945 800 16 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 944 800 16 ) ( 945 800 16 ) ( 944 801 16 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 952 840 96 ) ( 952 841 96 ) ( 953 840 96 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 952 824 24 ) ( 953 824 24 ) ( 952 824 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 952 840 24 ) ( 952 840 25 ) ( 952 841 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 118 -{ -( 944 872 16 ) ( 944 873 16 ) ( 944 872 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 944 872 16 ) ( 944 872 17 ) ( 945 872 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 944 872 16 ) ( 945 872 16 ) ( 944 873 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 952 912 112 ) ( 952 913 112 ) ( 953 912 112 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 952 888 24 ) ( 953 888 24 ) ( 952 888 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 952 912 24 ) ( 952 912 25 ) ( 952 913 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 119 -{ -( 944 848 32 ) ( 944 849 32 ) ( 944 848 33 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 944 800 32 ) ( 944 800 33 ) ( 945 800 32 ) redplaid [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 944 848 96 ) ( 945 848 96 ) ( 944 849 96 ) redplaid [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 952 888 112 ) ( 952 889 112 ) ( 953 888 112 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 952 872 40 ) ( 953 872 40 ) ( 952 872 41 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 952 888 40 ) ( 952 888 41 ) ( 952 889 40 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 120 -{ -( 944 888 16 ) ( 944 889 16 ) ( 944 888 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 944 888 16 ) ( 944 888 17 ) ( 945 888 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 944 888 16 ) ( 945 888 16 ) ( 944 889 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 952 928 48 ) ( 952 929 48 ) ( 953 928 48 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 952 992 24 ) ( 953 992 24 ) ( 952 992 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 952 928 24 ) ( 952 928 25 ) ( 952 929 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 121 -{ -( 944 888 16 ) ( 944 889 16 ) ( 944 888 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 944 888 16 ) ( 944 888 17 ) ( 945 888 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 944 888 96 ) ( 945 888 96 ) ( 944 889 96 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 952 928 112 ) ( 952 929 112 ) ( 953 928 112 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 952 992 24 ) ( 953 992 24 ) ( 952 992 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 952 928 24 ) ( 952 928 25 ) ( 952 929 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 122 -{ -( 944 992 16 ) ( 944 993 16 ) ( 944 992 17 ) redplaid [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 944 992 16 ) ( 944 992 17 ) ( 945 992 16 ) redplaid [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 944 992 16 ) ( 945 992 16 ) ( 944 993 16 ) redplaid [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 952 1032 112 ) ( 952 1033 112 ) ( 953 1032 112 ) redplaid [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 952 1024 24 ) ( 953 1024 24 ) ( 952 1024 25 ) redplaid [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 952 1032 24 ) ( 952 1032 25 ) ( 952 1033 24 ) redplaid [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 123 -{ -( 88 260 52 ) ( 88 261 52 ) ( 88 260 53 ) clip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 148 260 52 ) ( 148 260 53 ) ( 149 260 52 ) clip [ 1 0 0 8 ] [ 0 0 -1 0 ] 0 1 1 -( 148 260 52 ) ( 149 260 52 ) ( 148 261 52 ) clip [ -1 0 0 -8 ] [ 0 -1 0 0 ] 0 1 1 -( 160 262 96 ) ( 160 263 96 ) ( 161 262 96 ) clip [ 1 0 0 8 ] [ 0 -1 0 0 ] 0 1 1 -( 160 262 54 ) ( 161 262 54 ) ( 160 262 55 ) clip [ -1 0 0 -8 ] [ 0 0 -1 0 ] 0 1 1 -( 144 262 54 ) ( 144 262 55 ) ( 144 263 54 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 124 -{ -( 82 246 52 ) ( 82 247 52 ) ( 82 246 53 ) clip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 82 168 52 ) ( 82 168 53 ) ( 83 168 52 ) clip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 82 246 52 ) ( 83 246 52 ) ( 82 247 52 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 84 256 96 ) ( 84 257 96 ) ( 85 256 96 ) clip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 84 256 54 ) ( 85 256 54 ) ( 84 256 55 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 84 256 54 ) ( 84 256 55 ) ( 84 257 54 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 125 -{ -( 82 136 52 ) ( 82 137 52 ) ( 82 136 53 ) clip [ 0 -1 0 -46 ] [ 0 0 -1 0 ] 0 1 1 -( 82 56 52 ) ( 82 56 53 ) ( 83 56 52 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 82 136 52 ) ( 83 136 52 ) ( 82 137 52 ) clip [ -1 0 0 0 ] [ 0 -1 0 -46 ] 0 1 1 -( 84 146 96 ) ( 84 147 96 ) ( 85 146 96 ) clip [ 1 0 0 0 ] [ 0 -1 0 -46 ] 0 1 1 -( 84 160 54 ) ( 85 160 54 ) ( 84 160 55 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 84 146 54 ) ( 84 146 55 ) ( 84 147 54 ) clip [ 0 1 0 46 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 126 -{ -( 82 24 52 ) ( 82 25 52 ) ( 82 24 53 ) clip [ 0 -1 0 -30 ] [ 0 0 -1 0 ] 0 1 1 -( 82 -48 52 ) ( 82 -48 53 ) ( 83 -48 52 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 82 24 52 ) ( 83 24 52 ) ( 82 25 52 ) clip [ -1 0 0 0 ] [ 0 -1 0 -30 ] 0 1 1 -( 84 34 96 ) ( 84 35 96 ) ( 85 34 96 ) clip [ 1 0 0 0 ] [ 0 -1 0 -30 ] 0 1 1 -( 84 48 54 ) ( 85 48 54 ) ( 84 48 55 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 84 34 54 ) ( 84 34 55 ) ( 84 35 54 ) clip [ 0 1 0 30 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 127 -{ -( 88 -54 52 ) ( 88 -53 52 ) ( 88 -54 53 ) clip [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 88 -54 52 ) ( 88 -54 53 ) ( 89 -54 52 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 88 -54 52 ) ( 89 -54 52 ) ( 88 -53 52 ) clip [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 96 -52 96 ) ( 96 -51 96 ) ( 97 -52 96 ) clip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 96 -52 54 ) ( 97 -52 54 ) ( 96 -52 55 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 224 -52 54 ) ( 224 -52 55 ) ( 224 -51 54 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -} -// entity 1 -{ -"classname" "func_group" -"_tb_type" "_tb_group" -"_tb_name" "motelroomlayout" -"_tb_id" "4" -"_tb_linked_group_id" "{64d2ce3b-d5a0-495e-b5f7-459c62d5e742}" -"_tb_transformation" "1 0 0 0 0 1 0 -72 0 0 1 0 0 0 0 1" -// brush 0 -{ -( 1186 1124 16 ) ( 1186 1125 16 ) ( 1186 1124 17 ) clip [ 0 -1 0 -28 ] [ 0 0 -1 0 ] 0 1 1 -( 1180 1126 16 ) ( 1180 1126 17 ) ( 1181 1126 16 ) clip [ 1 0 0 20 ] [ 0 0 -1 0 ] 0 1 1 -( 1180 1124 16 ) ( 1181 1124 16 ) ( 1180 1125 16 ) clip [ -1 0 0 -20 ] [ 0 -1 0 -28 ] 0 1 1 -( 1276 1220 44 ) ( 1276 1221 44 ) ( 1277 1220 44 ) clip [ 1 0 0 20 ] [ 0 -1 0 -28 ] 0 1 1 -( 1276 1208 32 ) ( 1277 1208 32 ) ( 1276 1208 33 ) clip [ -1 0 0 -20 ] [ 0 0 -1 0 ] 0 1 1 -( 1256 1220 32 ) ( 1256 1220 33 ) ( 1256 1221 32 ) clip [ 0 1 0 28 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 1 -{ -( 944 1112 16 ) ( 944 1113 16 ) ( 944 1112 17 ) skip [ 0 -1 0 -48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 952 1112 16 ) ( 952 1112 17 ) ( 953 1112 16 ) surface_beige [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 952 1112 16 ) ( 953 1112 16 ) ( 952 1113 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 1000 1120 80 ) ( 1000 1121 80 ) ( 1001 1120 80 ) skip [ 1 0 0 0 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 1000 1120 24 ) ( 1001 1120 24 ) ( 1000 1120 25 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 992 1120 24 ) ( 992 1120 25 ) ( 992 1121 24 ) surface_beige_edge [ 0 1 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 2 -{ -( 1074 1124 16 ) ( 1074 1125 16 ) ( 1074 1124 17 ) clip [ 0 -1 0 -28 ] [ 0 0 -1 0 ] 0 1 1 -( 1068 1126 16 ) ( 1068 1126 17 ) ( 1069 1126 16 ) clip [ 1 0 0 4 ] [ 0 0 -1 0 ] 0 1 1 -( 1068 1124 16 ) ( 1069 1124 16 ) ( 1068 1125 16 ) clip [ -1 0 0 -4 ] [ 0 -1 0 -28 ] 0 1 1 -( 1164 1220 44 ) ( 1164 1221 44 ) ( 1165 1220 44 ) clip [ 1 0 0 4 ] [ 0 -1 0 -28 ] 0 1 1 -( 1164 1208 32 ) ( 1165 1208 32 ) ( 1164 1208 33 ) clip [ -1 0 0 -4 ] [ 0 0 -1 0 ] 0 1 1 -( 1144 1220 32 ) ( 1144 1220 33 ) ( 1144 1221 32 ) clip [ 0 1 0 28 ] [ 0 0 -1 0 ] 0 1 1 -} -// brush 3 -{ -( 992 1112 16 ) ( 992 1113 16 ) ( 992 1112 17 ) skip [ 0 -1 0 -48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1000 1112 16 ) ( 1000 1112 17 ) ( 1001 1112 16 ) surface_beige [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1000 1112 80 ) ( 1001 1112 80 ) ( 1000 1113 80 ) surface_beige_edge [ 4.371138994063005e-08 0.9999999999999989 0 16 ] [ -0.9999999999999989 4.371138994063005e-08 0 0 ] 270 0.5 0.5 -( 1048 1120 96 ) ( 1048 1121 96 ) ( 1049 1120 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 1048 1120 24 ) ( 1049 1120 24 ) ( 1048 1120 25 ) surface_beige [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1040 1120 24 ) ( 1040 1120 25 ) ( 1040 1121 24 ) skip [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 4 -{ -( 1148 1188 16 ) ( 1148 1189 16 ) ( 1148 1188 17 ) clip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1148 1188 16 ) ( 1148 1188 17 ) ( 1149 1188 16 ) clip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1148 1188 16 ) ( 1149 1188 16 ) ( 1148 1189 16 ) clip [ -1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.25 0.25 -( 1180 1208 34 ) ( 1180 1209 34 ) ( 1181 1208 34 ) clip [ 1 0 0 0 ] [ 0 -1 0 -32 ] 0 0.25 0.25 -( 1180 1208 20 ) ( 1181 1208 20 ) ( 1180 1208 21 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1182 1208 20 ) ( 1182 1208 21 ) ( 1182 1209 20 ) clip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 5 -{ -( 944 1016 0 ) ( 944 1017 0 ) ( 944 1016 1 ) skip [ 0 -1 0 -48 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -( 1024 1024 0 ) ( 1024 1024 1 ) ( 1025 1024 0 ) skip [ 1 0 0 32 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -( 1024 1016 0 ) ( 1025 1016 0 ) ( 1024 1017 0 ) skip [ -1 0 0 -32 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 1056 1064 16 ) ( 1056 1065 16 ) ( 1057 1064 16 ) carpet_dullgreen [ 1 0 0 96 ] [ 0 -1 0 -112 ] 0 0.5 0.5 -( 1056 1208 16 ) ( 1057 1208 16 ) ( 1056 1208 17 ) skip [ -1 0 0 -32 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -( 1296 1064 16 ) ( 1296 1064 17 ) ( 1296 1065 16 ) skip [ 0 1 0 48 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -} -// brush 6 -{ -( 1128 1024 16 ) ( 1128 1025 16 ) ( 1128 1024 17 ) clip [ 0 -1 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1104 1024 16 ) ( 1104 1024 17 ) ( 1105 1024 16 ) clip [ 1 0 0 32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1104 1024 16 ) ( 1105 1024 16 ) ( 1104 1025 16 ) clip [ -1 0 0 -32 ] [ 0 -1 0 -32 ] 0 0.25 0.25 -( 1176 1056 48 ) ( 1176 1057 48 ) ( 1177 1056 48 ) clip [ 1 0 0 32 ] [ 0 -1 0 -32 ] 0 0.25 0.25 -( 1176 1048 24 ) ( 1177 1048 24 ) ( 1176 1048 25 ) clip [ -1 0 0 -32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -( 1192 1056 24 ) ( 1192 1056 25 ) ( 1192 1057 24 ) clip [ 0 1 0 32 ] [ 0 0 -1 0 ] 0 0.25 0.25 -} -// brush 7 -{ -( 1040 1160 32 ) ( 1040 1161 32 ) ( 1040 1160 33 ) skip [ 0 -1 0 -48 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -( 1040 1112 32 ) ( 1040 1112 33 ) ( 1041 1112 32 ) surface_beige_edge [ -0.9999999999999961 0 8.742278000372473e-08 -16 ] [ 8.742278000372473e-08 0 0.9999999999999961 32 ] 180 0.5 0.5 -( 1040 1160 80 ) ( 1041 1160 80 ) ( 1040 1161 80 ) skip [ -1 0 0 0 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 1048 1200 96 ) ( 1048 1201 96 ) ( 1049 1200 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 1048 1120 40 ) ( 1049 1120 40 ) ( 1048 1120 41 ) skip [ -1 0 0 0 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -( 1048 1200 40 ) ( 1048 1200 41 ) ( 1048 1201 40 ) surface_beige_edge [ 0 1 0 16 ] [ 0 0 -1 -32 ] 0 0.5 0.5 -} -// brush 8 -{ -( 1040 1168 16 ) ( 1040 1169 16 ) ( 1040 1168 17 ) surface_beige [ 0 -1 0 -48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1040 1120 16 ) ( 1040 1120 17 ) ( 1041 1120 16 ) skip [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1040 1168 16 ) ( 1041 1168 16 ) ( 1040 1169 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 1048 1208 96 ) ( 1048 1209 96 ) ( 1049 1208 96 ) skip [ 1 0 0 0 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 1048 1208 24 ) ( 1049 1208 24 ) ( 1048 1208 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1048 1208 24 ) ( 1048 1208 25 ) ( 1048 1209 24 ) surface_beige [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 9 -{ -( 944 1112 16 ) ( 944 1113 16 ) ( 944 1112 17 ) skip [ 0 -1 0 -48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 944 1112 16 ) ( 944 1112 17 ) ( 945 1112 16 ) surface_beige [ 1 0 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 944 1112 80 ) ( 945 1112 80 ) ( 944 1113 80 ) skip [ -1 0 0 -48 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 992 1120 96 ) ( 992 1121 96 ) ( 993 1120 96 ) skip [ 1 0 0 48 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 992 1120 24 ) ( 993 1120 24 ) ( 992 1120 25 ) surface_beige [ -1 0 0 -48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 992 1120 24 ) ( 992 1120 25 ) ( 992 1121 24 ) skip [ 0 1 0 48 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -// brush 10 -{ -( 1040 1160 16 ) ( 1040 1161 16 ) ( 1040 1160 17 ) surface_beige_edge [ 0 0.9999999999999961 8.742278000372473e-08 16 ] [ 0 -8.742278000372473e-08 0.9999999999999961 0 ] 180 0.5 0.5 -( 1040 1112 16 ) ( 1040 1112 17 ) ( 1041 1112 16 ) surface_beige_edge [ -0.9999999999999961 0 8.742278000372473e-08 -16 ] [ 8.742278000372473e-08 0 0.9999999999999961 0 ] 180 0.5 0.5 -( 1040 1160 16 ) ( 1041 1160 16 ) ( 1040 1161 16 ) skip [ -1 0 0 0 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 1048 1200 80 ) ( 1048 1201 80 ) ( 1049 1200 80 ) skip [ 1 0 0 0 ] [ 0 -1 0 -48 ] 0 0.5 0.5 -( 1048 1120 24 ) ( 1049 1120 24 ) ( 1048 1120 25 ) skip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 0.5 0.5 -( 1048 1200 24 ) ( 1048 1200 25 ) ( 1048 1201 24 ) surface_beige_edge [ 0 1 0 16 ] [ 0 0 -1 0 ] 0 0.5 0.5 -} -} -// entity 2 -{ -"classname" "func_transparent" -// brush 0 -{ -( 224 260 52 ) ( 224 261 52 ) ( 224 260 53 ) clip [ 0 -1 0 0 ] [ -0 -0 -1 0 ] 0 1 1 -( 284 260 52 ) ( 284 260 53 ) ( 285 260 52 ) clip [ 1 0 -0 0 ] [ 0 -0 -1 0 ] 0 1 1 -( 284 260 52 ) ( 285 260 52 ) ( 284 261 52 ) clip [ -1 0 0 0 ] [ -0 -1 -0 0 ] 0 1 1 -( 296 262 96 ) ( 296 263 96 ) ( 297 262 96 ) clip [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1 -( 296 262 54 ) ( 297 262 54 ) ( 296 262 55 ) clip [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1 -( 296 262 54 ) ( 296 262 55 ) ( 296 263 54 ) clip [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1 -} -} diff --git a/maps/autosave/cafemotel.9.map.import b/maps/autosave/cafemotel.9.map.import deleted file mode 100644 index fc64651..0000000 --- a/maps/autosave/cafemotel.9.map.import +++ /dev/null @@ -1,14 +0,0 @@ -[remap] - -importer="func_godot.map" -type="Resource" -uid="uid://b2pl1ib43kb1k" -path="res://.godot/imported/cafemotel.9.map-314401240a63c36835e205de8f16beb5.tres" - -[deps] - -source_file="res://maps/autosave/cafemotel.9.map" -dest_files=["res://.godot/imported/cafemotel.9.map-314401240a63c36835e205de8f16beb5.tres"] - -[params] - diff --git a/maps/cafemotel.exr b/maps/cafemotel.exr index bedd61b43ceb42d408ebbb0c13b11a2677bc213a..a178e35f6705384cddc09bccb2b0fbed9e70631e 100644 GIT binary patch literal 3836565 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

*|fp-kXK0Qwuh)SyhB-+HPl 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�gDfD7{Z(jK4jl{pApB?#j&Fq-*%YI1L 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�lDcrIQ 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

>7vkmO$A$fr@6OjglK$radQ9N56iX)e*d+z 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